<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.0.2) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="full3978trust200902" docName="draft-todo-chariton-dns-account-01-02" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="ACME-DNS-ACCOUNT-01">Automated Certificate Management Environment (ACME) DNS Labeled With ACME Account ID Challenge</title>

    <author fullname="Antonios A. Chariton">
      <organization>Google</organization>
      <address>
        <email>aac@google.com</email>
      </address>
    </author>
    <author fullname="Amir A. Omidi">
      <organization>Google</organization>
      <address>
        <email>aaomidi@google.com</email>
      </address>
    </author>
    <author fullname="James Kasten">
      <organization>Google</organization>
      <address>
        <email>jdkasten@google.com</email>
      </address>
    </author>
    <author fullname="Fotis Loukos">
      <organization>Google</organization>
      <address>
        <email>fotisl@google.com</email>
      </address>
    </author>
    <author fullname="Stanislaw A. Janikowski">
      <organization>Google</organization>
      <address>
        <email>stanwise@google.com</email>
      </address>
    </author>

    <date year="2022" month="November" day="10"/>

    <area>Security</area>
    <workgroup>Automated Certificate Management Environment</workgroup>
    <keyword>acme</keyword>

    <abstract>


<t>This document specifies a new challenge type for the Automated Certificate Management Environment (ACME) protocol which allows an ACME client to respond to a domain control validation challenge presented by an ACME server with a DNS resource that is keyed by the ACME account identification.</t>



    </abstract>

    <note title="About This Document" removeInRFC="true">
      <t>
        The latest revision of this draft can be found at <eref target="https://daknob.github.io/draft-todo-chariton-dns-account-01/"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-todo-chariton-dns-account-01/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        WG Working Group mailing list (<eref target="mailto:acme@ietf.org"/>),
        which is archived at <eref target="https://datatracker.ietf.org/wg/acme/about/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/acme/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/daknob/draft-todo-chariton-dns-account-01"/>.</t>
    </note>


  </front>

  <middle>


<section anchor="introduction"><name>Introduction</name>

<t>The <spanx style="verb">dns-01</spanx> challenge specified in section 8.4 of <xref target="RFC8555"/> requires that ACME clients validate the domain under the <spanx style="verb">_acme-challenge</spanx> label for the <spanx style="verb">TXT</spanx> record. This unique label creates an impediment limiting the number of other entities domain validation can be delegated to.</t>

<t>This document specifies a new challenge type, <spanx style="verb">dns-account-01</spanx>. This challenge leverages the ACME Account Resource URL to present an account-unique stable challenge to an ACME server. This challenge allows any domain name to delegate its domain validation to more than one service through ACME account-unique DNS records.</t>

<t>This RFC does not intend to deprecate the <spanx style="verb">dns-01</spanx> challenge specified in <xref target="RFC8555"/>. Since this new challenge does not modify or build on any pre-existing challenges, the ability to complete the <spanx style="verb">dns-account-01</spanx> challenge requires ACME server operators to deploy new changes to their codebase. This makes adopting and using this challenge an opt-in process.</t>

</section>
<section anchor="conventions-and-definitions"><name>Conventions and Definitions</name>

<t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

</section>
<section anchor="dns-account-01-challenge"><name>DNS-ACCOUNT-01 Challenge</name>

<t>When the identifier being validated is a domain name, the client can prove control of that domain by provisioning a <spanx style="verb">TXT</spanx> resource record containing a designated value for a specific validation domain name.</t>

<t><list style="symbols">
  <t>type (required, string): The string "dns-account-01".</t>
  <t>token (required, string): A random value that uniquely identifies the challenge. This value <bcp14>MUST</bcp14> have at least 128 bits of entropy. It <bcp14>MUST NOT</bcp14> contain any characters outside the base64url alphabet, including padding characters ("="). See <xref target="RFC4086"/> for additional information on additional requirements for secure randomness.</t>
</list></t>

<figure><artwork><![CDATA[
{
    "type": "dns-account-01",
    "url": "https://example.com/acme/chall/i00MGYwLWIx",
    "status": "pending",
    "token": "ODE4OWY4NTktYjhmYS00YmY1LTk5MDgtZTFjYTZmNjZlYTUx"
}
]]></artwork></figure>

<t>A client can fulfill this challenge by performing the following steps:</t>

<t><list style="symbols">
  <t>Construct a key authorization from the <spanx style="verb">token</spanx> value provided in the challenge and the client's account key</t>
  <t>Compute the SHA-256 digest <xref target="FIPS180-4"/> of the key authorization</t>
  <t>Construct the validation domain name by prepending the following label to the domain name being validated:  <vspace blankLines='1'/>
    <figure><artwork><![CDATA[
"_acme-challenge_" || base32(SHA-256(Account Resource URL)[0:9])
]]></artwork></figure>
  <list style="symbols">
      <t>SHA-256 is the SHA hashing operation defined in <xref target="RFC6234"/></t>
      <t><spanx style="verb">[0:9]</spanx> is the operation that selects the first ten bytes (bytes 0 through 9 inclusive) from the previous SHA256 operation</t>
      <t>base32 is the operation defined in <xref target="RFC4648"/></t>
      <t>Account Resource URL is defined in <xref section="7.3" sectionFormat="comma" target="RFC8555"/> as the value in the Location header field</t>
      <t>The <spanx style="verb">"||"</spanx> operator indicates concatenation of strings</t>
    </list></t>
  <t>Provision a DNS <spanx style="verb">TXT</spanx> record with the base64url digest value under the constructed domain validation name</t>
</list></t>

<t>For example, if the domain name being validated is "www.example.org", and the account URL of "https://example.com/acme/acct/ExampleAccount" then the client would provision the following DNS record:</t>

<figure><artwork><![CDATA[
_acme-challenge_ujmmovf2vn55tgye.www.example.org 300 IN TXT "LoqXcYV8...jxAjEuX0.9jg46WB3...fm21mqTI"
]]></artwork></figure>

<t>(In the above, "..." indicates that the token and the JWK thumbprint in the key authorization have been truncated to fit on the page.)</t>

<t>Respond to the ACME server with an empty object ({}) to acknowledge that the challenge can be validated by the server</t>

<figure><artwork><![CDATA[
POST /acme/chall/Rg5dV14Gh1Q
Host: example.com
Content-Type: application/jose+json

{
  "protected": base64url({
    "alg": "ES256",
    "kid": "https://example.com/acme/acct/evOfKhNU60wg",
    "nonce": "SS2sSl1PtspvFZ08kNtzKd",
    "url": "https://example.com/acme/chall/Rg5dV14Gh1Q"
  }),
  "payload": base64url({}),
  "signature": "Q1bURgJoEslbD1c5...3pYdSMLio57mQNN4"
}
]]></artwork></figure>

<t>On receiving a response, the server constructs and stores the key authorization from the challenge <spanx style="verb">token</spanx> value and the current client account key.</t>

<t>To validate the <spanx style="verb">dns-account-01</spanx> challenge, the server performs the following steps:</t>

<t><list style="symbols">
  <t>Compute the SHA-256 digest <xref target="FIPS180-4"/> of the stored key authorization</t>
  <t>Compute the validation domain name with the account URL of the ACME account requesting validation</t>
  <t>Query for <spanx style="verb">TXT</spanx> records for the validation domain name</t>
  <t>Verify that the contents of one of the TXT records match the digest value</t>
</list></t>

<t>If all the above verifications succeed, then the validation is successful. If no DNS record is found, or DNS record and response payload do not pass these checks, then the server <bcp14>MUST</bcp14> fail the validation and mark the challenge as invalid.</t>

<t>The client <bcp14>SHOULD</bcp14> de-provision the resource record(s) provisioned for this challenge once the challenge is complete, i.e., once the "status" field of the challenge has the value "valid" or "invalid".</t>

</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t>As this challenge that is introduced only differs in the left-most label of the domain name from the existing <spanx style="verb">dns-01</spanx> challenge, the same security considerations apply.</t>

<t>In terms of the construction of the label prepended to the domain name, there is no need for a cryptographic hash. The purpose of that is to create a long-lived and statistically distinctive record of minimal size.</t>

<t>SHA-256 was picked due to its broad adoption, hardware support, and existing need in implementations that would likely support <spanx style="verb">dns-account-01</spanx>.</t>

<t>The first 10 bytes were picked as a tradeoff: the value needs to be short enough to not significantly impact DNS record and response size, long enough to provide sufficient probability of collision avoidance across ACME accounts, and just the right size to have Base32 require no padding. As the algorithm is used for uniform distribution of inputs, and not for integrity, we do not consider the trimming a security issue.</t>

</section>
<section anchor="iana-considerations"><name>IANA Considerations</name>

<section anchor="dns-parameters"><name>DNS Parameters</name>

<t>The Underscored and Globally Scoped DNS Node Names is to be updated to include the following entry:</t>

<figure><artwork><![CDATA[
RR Type: TXT
_NODE NAME: _acme-challenge_*
Reference: This document
]]></artwork></figure>

<t>Where <spanx style="verb">_acme-challenge_*</spanx> denotes all node names beginning with the string <spanx style="verb">_acme-challenge_</spanx>. It does NOT refer to a DNS wildcard specification.</t>

</section>
<section anchor="acme-validation-method"><name>ACME Validation Method</name>

<t>The "ACME Validation Methods" registry is to be updated to include the following entry:</t>

<figure><artwork><![CDATA[
label: dns-account-01
identifier-type: dns
ACME: Y
Reference: This document
]]></artwork></figure>

</section>
</section>


  </middle>

  <back>


    <references title='Normative References'>

<reference anchor="FIPS180-4" target="https://csrc.nist.gov/publications/detail/fips/180/4/final">
  <front>
    <title>Secure Hash Standard (SHS)</title>
    <author >
      <organization>National Institute of Standards and Technology</organization>
    </author>
    <date year="2015" month="August"/>
  </front>
</reference>




<reference anchor='RFC8555' target='https://www.rfc-editor.org/info/rfc8555'>
<front>
<title>Automatic Certificate Management Environment (ACME)</title>
<author fullname='R. Barnes' initials='R.' surname='Barnes'><organization/></author>
<author fullname='J. Hoffman-Andrews' initials='J.' surname='Hoffman-Andrews'><organization/></author>
<author fullname='D. McCarney' initials='D.' surname='McCarney'><organization/></author>
<author fullname='J. Kasten' initials='J.' surname='Kasten'><organization/></author>
<date month='March' year='2019'/>
<abstract><t>Public Key Infrastructure using X.509 (PKIX) certificates are used for a number of purposes, the most significant of which is the authentication of domain names.  Thus, certification authorities (CAs) in the Web PKI are trusted to verify that an applicant for a certificate legitimately represents the domain name(s) in the certificate.  As of this writing, this verification is done through a collection of ad hoc mechanisms.  This document describes a protocol that a CA and an applicant can use to automate the process of verification and certificate issuance.  The protocol also provides facilities for other certificate management functions, such as certificate revocation.</t></abstract>
</front>
<seriesInfo name='RFC' value='8555'/>
<seriesInfo name='DOI' value='10.17487/RFC8555'/>
</reference>



<reference anchor='RFC2119' target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author fullname='S. Bradner' initials='S.' surname='Bradner'><organization/></author>
<date month='March' year='1997'/>
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference anchor='RFC8174' target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author fullname='B. Leiba' initials='B.' surname='Leiba'><organization/></author>
<date month='May' year='2017'/>
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>



<reference anchor='RFC4086' target='https://www.rfc-editor.org/info/rfc4086'>
<front>
<title>Randomness Requirements for Security</title>
<author fullname='D. Eastlake 3rd' initials='D.' surname='Eastlake 3rd'><organization/></author>
<author fullname='J. Schiller' initials='J.' surname='Schiller'><organization/></author>
<author fullname='S. Crocker' initials='S.' surname='Crocker'><organization/></author>
<date month='June' year='2005'/>
<abstract><t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts.  However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities.  The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t><t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult.  This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities.  It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='106'/>
<seriesInfo name='RFC' value='4086'/>
<seriesInfo name='DOI' value='10.17487/RFC4086'/>
</reference>



<reference anchor='RFC6234' target='https://www.rfc-editor.org/info/rfc6234'>
<front>
<title>US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF)</title>
<author fullname='D. Eastlake 3rd' initials='D.' surname='Eastlake 3rd'><organization/></author>
<author fullname='T. Hansen' initials='T.' surname='Hansen'><organization/></author>
<date month='May' year='2011'/>
<abstract><t>Federal Information Processing Standard, FIPS</t></abstract>
</front>
<seriesInfo name='RFC' value='6234'/>
<seriesInfo name='DOI' value='10.17487/RFC6234'/>
</reference>



<reference anchor='RFC4648' target='https://www.rfc-editor.org/info/rfc4648'>
<front>
<title>The Base16, Base32, and Base64 Data Encodings</title>
<author fullname='S. Josefsson' initials='S.' surname='Josefsson'><organization/></author>
<date month='October' year='2006'/>
<abstract><t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes.  It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4648'/>
<seriesInfo name='DOI' value='10.17487/RFC4648'/>
</reference>




    </references>



<section numbered="false" anchor="acknowledgments"><name>Acknowledgments</name>

</section>


  </back>

<!-- ##markdown-source:
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

-->

</rfc>

