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

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>

<rfc ipr="trust200902" docName="draft-nygren-httpbis-httpssvc-00" category="std">

  <front>
    <title abbrev="HTTPSSVC RR for DNS">HTTPSSVC service location and parameter specification via the DNS (DNS HTTPSVC)</title>

    <author initials="B." surname="Schwartz" fullname="Ben Schwartz">
      <organization>Google</organization>
      <address>
        <email>bemasc@google.com</email>
      </address>
    </author>
    <author initials="M." surname="Bishop" fullname="Mike Bishop">
      <organization>Akamai Technologies</organization>
      <address>
        <email>mbishop@evequefou.be</email>
      </address>
    </author>
    <author initials="E." surname="Nygren" fullname="Erik Nygren">
      <organization>Akamai Technologies</organization>
      <address>
        <email>erik+ietf@nygren.org</email>
      </address>
    </author>

    <date />

    <area>General</area>
    <workgroup>HTTP Working Group</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document specifies an “HTTPSSVC” DNS resource record type to
facilitate the lookup of information needed to make connections for
HTTPS URIs.  The HTTPSSVC DNS RR mechanism allows an HTTPS origin
hostname to be served from multiple network services, each with
associated parameters (such as transport protocol and keying material
for encrypting TLS SNI).  It also provides a solution for the
inability of the DNS to allow a CNAME to be placed at the apex
of a domain name.  Finally, it provides a way to indicate that the origin
supports HTTPS without having to resort to redirects, allowing
clients to remove HTTP from the bootstrapping process.</t>

<t>By allowing this information to be bootstrapped in the DNS,
it allows for clients to learn of alternative services before their first
contact with the origin.  This arrangement offers potential benefits to
both performance and privacy.</t>

<t>TO BE REMOVED: This proposal is inspired by and based on recent DNS
usage proposals such as ALTSVC, ANAME, and ESNIKEYS (as well as
long standing desires to have SRV or a functional equivalent
implemented for HTTP).   These proposals each provide an important
function but are potentially incompatible with each other, such as
when an origin is load-balanced across multiple hosting providers (multi-CDN).
Furthermore, these each add potential cases for adding additional record
lookups in-addition to AAAA/A lookups. This design attempts to provide a unified
framework that encompasses the key functionality of these proposals,
as well as providing some extensibility for addressing similar
future challenges.</t>



    </abstract>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>The HTTPSSVC RR is intended to address a number of challenges
facing HTTPS clients and services, while also providing an extensible
model to handle similar use-cases without forcing clients to perform
additional DNS lookups and without forcing them to first make connections
to a default service for the origin.</t>

<t>When clients need to make a connection to fetch resources associated
with an HTTPS URI, they must first resolve A and/or AAAA address resource
records for the origin hostname.  This is adequate when clients default
to TCP port 443, do not support Encrypted SNI <xref target="ESNI"/>,
and where the origin service operator does not have a desire
to put an CNAME at a zone apex (such as for “https://example.com”).
Handling situations beyond this within the DNS requires learning additional
information, and it is highly desirable to minimize the number of round-trip
and lookups required to learn this additional information.</t>

<section anchor="introductory-example" title="Introductory Example">

<t>As an introductory example, a set of example HTTPSSVC and associated
A+AAAA records might be:</t>

<figure><artwork><![CDATA[
www.example.com.  2H  IN CNAME   svc.example.net.
example.com.      2H  IN HTTPSVC 0 0 svc.example.net.
svc.example.net.  2H  IN HTTPSVC 1 2 svc3.example.net. "hq=\":8003\" \
                                   esnikeys=\"...\""
svc.example.net.  2H  IN HTTPSVC 1 3 svc2.example.net. "h2=\":8002\" \
                                   esnikeys=\"...\""
svc2.example.net. 300 IN A       192.0.2.2
svc2.example.net. 300 IN AAAA    2001:db8::2
svc3.example.net. 300 IN A       192.0.2.3
svc3.example.net. 300 IN AAAA    2001:db8::3
]]></artwork></figure>

<t>In the preceding example, both of the “example.com” and
“www.example.com” origin names are aliased to use service endpoints
offered as “svc.example.net” (with “www.example.com” continuing to use
a CNAME alias).  HTTP/2 is available on a cluster of machines located
at svc2.example.net with TCP port 8002 and HTTP/3 is available on a
cluster of machines located at svc3.example.net with UDP port 8003.
An ESNI key is specified which allows the SNI values of “example.com”
and “www.example.com” to be encrypted in the handshake with these
service endpoints.  When connecting, clients will continue to treat
the authoritative origins as “https://example.com” and
“https://www.example.com”, respectively.</t>

</section>
<section anchor="goals-of-the-httpssvc-rr" title="Goals of the HTTPSSVC RR">

<t>The goal of the HTTSSVC RR is to allow clients to resolve a single
additional DNS RR in a way that:</t>

<t><list style="symbols">
  <t>Provides service endpoints authoritative for an origin,
along with parameters associated with each of these endpoints.
In particular:
  <list style="symbols">
      <t>to support connecting directly to <xref target="HTTP3"/> (QUIC transport)
service endpoints</t>
      <t>to obtain the <xref target="ESNI"/> keys associated with a service endpoint</t>
    </list></t>
  <t>Does not assume that all service endpoints have the same parameters
(such as ESNI keys) or capabilities (such as <xref target="HTTP3"/>) or are even
operated by the same entity.  This is important as DNS does not
provide any way to tie together multiple RRs for the same name.
For example, if www.example.com is a CNAME alias that switches
between one of three CDNs or hosting enviroments, records (such as A and AAAA)
for that name may have been sourced from different environments.</t>
  <t>Enables the functional equivalent of a CNAME at a zone apex (such as
“example.com”) for HTTPS traffic, and generally enables
delegation of operational authority for an HTTPS origin
within the DNS to an alternate name.  This addresses
a set of long-standing issues due to HTTP(S) clients
not implementing support for SRV records, as well as
due to a limitation that a DNS name can not have
both a CNAME record as well as NS RRs
(as is the case for zone apex names)</t>
</list></t>

</section>
<section anchor="overview-of-the-httpssvc-rr" title="Overview of the HTTPSSVC RR">

<t>This subsection briefly describes the HTTPSVC RR in
a non-normative manner.</t>

<t>The HTTPSSVC RR has four primary fields:</t>

<t><list style="numbers">
  <t>SvcRecordType: A numeric flag indicating how to interpret the
subsequent fields.  When “0”, it indicates that the RR contains an
alias.  When “1”, it indicates that the RR contains an alternative service
definition.</t>
  <t>SvcFieldPriority: The priority of this record (relative to others,
with lower values preferred).  Applicable when SvcRecordType is “1”,
and otherwise has value “0”.  (Described in <xref target="pri"/>.)</t>
  <t>SvcDomainName: The domain name of either the alias target (when
SvcRecordType is “0”) or the uri-host domain name of the alternative service
endpoint (when SvcRecordType is “1”).</t>
  <t>SvcFieldValue: An Alternative Service field value describing the
alternative service endpoint for the domain name specified in
SvcDomainName (only when SvcRecordType is “1” and otherwise empty).</t>
</list></t>

<t>Cooperating DNS recursive resolvers will perform subsequent record resolution (for
HTTPSSVC, A, and AAAA records) and return them in the Additional Section
of the response.  Clients must either use responses included
in the additional section returned by the recursive resolver
or perform necessary HTTPSSVC, A, and AAAA record resolutions.
DNS authoritative servers may attach in-bailiwick HTTPSVC, A, AAAA, and CNAME
records in the Additional Section to responses for an HTTPSVC query.</t>

<t>When SvcRecordType is “1”, the HTTPSSVC RR extends the concept
introduced in the HTTP Alternative Services proposed standard
<xref target="AltSvc"/>.  Alt-Svc defines:</t>

<t><list style="symbols">
  <t>an extensible data model for describing alternative network endpoints
that are authoritative for an origin</t>
  <t>the “Alt-Svc Field Value”, a text format for representing this
information</t>
  <t>standards for sending information in this format from a server to a
client over HTTP/1.1 and HTTP/2.</t>
</list></t>

<t>Together, these components provide a toolkit that has proven useful and
effective for informing a client of alternative services for an origin.
However, making use of an alternative service requires contacting the
origin server first.  This creates an obvious performance cost: users
wait for a full HTTP connection initiation (multiple roundtrips) before
learning of an alternative service that is preferred by the origin.  The
first connection also publicly reveals the user’s intended destination
to all entities along the network path.</t>

<t>The SvcFieldValue includes the Alt-Svc Field Value through
the DNS.  This is in its standard text format, with the uri-host
portion of the alt-authority component
moved into the SvcDomainName field of the HTTPSSVC RR.
A client receiving this information during DNS resolution
can skip the initial connection and proceed directly to an
alternative service.</t>

</section>
<section anchor="additional-alt-svc-parameters" title="Additional Alt-Svc parameters">

<t>This document also defines one additional Alt-Svc parameter
that can be used within SvcFieldValue:</t>

<t><list style="symbols">
  <t>esnikeys (<xref target="esnikeys"/>): The ESNIKeys structure from Section 4.1 of <xref target="ESNI"/>
for use in encrypting the actual origin hostname
in the TLS handshake.</t>
</list></t>

</section>
<section anchor="terminology" title="Terminology">

<t>For consistency with <xref target="AltSvc"/>, we adopt the following definitions:</t>

<t><list style="symbols">
  <t>An “origin” is an information source as in <xref target="RFC6454"/>.</t>
  <t>The “origin server” is the server that the client would reach when
accessing the origin in the absence of Alt-Svc.</t>
  <t>An “alternative service” is a different server that can serve the
origin.</t>
</list></t>

<t>Abstractly, the origin consists of a scheme (typically “https”), a host
name, and a port (typically “443”).</t>

<t>Additional DNS terminology intends to be consistent
with <xref target="DNSTerm"/>.</t>

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL
NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”,
“MAY”, and “OPTIONAL” 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>
<section anchor="the-httpssvc-record-type" title="The HTTPSSVC record type">

<t>The HTTPSSVC DNS resource record (RR) type (RRTYPE ???)
is used to locate endpoints that can service an “https” origin.
The presentation format of the record is:</t>

<t>RRName TTL Class HTTPSSVC SvcRecordType SvcFieldPriority \
                         SvcDomainName SvcFieldValue</t>

<t>where SvcRecordType is a numeric value of either “0” or “1”,
SvcFieldPriority is a number in the range 0-65535,
SvcDomainName is a domain name,
and SvcFieldValue is a string
present when SvcRecordType is “1”.</t>

<t>The algorithm for resolving HTTPSSVC records and associated
address records is specified in <xref target="resolution"/>.</t>

<section anchor="httpssvc-rdata-wire-format" title="HTTPSSVC RDATA Wire Format">

<t>The RDATA for the HTTPSSVC RR consists of:</t>

<t><list style="symbols">
  <t>a 1 octet flag field for SvcRecordType, interpreted
as an unsigned numeric value (0 to 255, with only values
“0” and “1” defined here)</t>
  <t>a 2 octet field for SvcFieldPriority as an integer in network
byte order. If SvcRecordType is “0”, SvcFieldPriority MUST be 0.</t>
  <t>a 1 octet length field for the SvcDomainName.  If SvcRecordType is
“1”, a length of 0 indicates that uri-host is omitted.  Otherwise,
this value MUST NOT be 0.</t>
  <t>the uncompressed SvcDomainName of the specified length, represented as
a sequence of length-prefixed labels as in Section 3.1 of <xref target="RFC1035"/>.</t>
  <t>a 2 octet length field for the SvcFieldValue</t>
  <t>the SvcFieldValue byte string of the specified
length (up to 65536 characters)</t>
</list></t>

<t>When SvcRecordType is “0”, the length of SvcFieldValue SHOULD be 0
and clients MUST ignore the contents of non-empty SvcFieldValue fields.</t>

</section>
<section anchor="rrnames" title="RRNames">

<t>In the case of the HTTPSSVC RR, an origin is translated into the RRName
in the following manner:</t>

<t><list style="numbers">
  <t>If the scheme is “https” and the port is 443,
then the RRName is equal to the origin host name.  Otherwise the
RRName is represented by prefixing the
port and scheme with “_”, then concatenating them with the host name,
resulting in a domain name like “_832._https.www.example.com.”.</t>
  <t>When a prior CNAME or HTTPSSVC record has aliased to
an HTTPSSVC record, RRName shall be the name of the alias target.</t>
</list></t>

<t>Note that none of these forms alter the HTTPS origin or authority.
For example, clients MUST continue to validate TLS certificate
hostnames based on the origin host.</t>

</section>
<section anchor="svcrecordtype" title="SvcRecordType">

<t>The SvcRecordType field is a numeric value defined to be either “0” or
“1”. Within an HTTPSSVC RRSet, all RRs must have the same value for
SvcRecordType.  Clients and recursive servers MUST ignore HTTPSSVC
resource records with other SvcRecordType values. If an RRSet contains
a record with type “0”, the client MUST ignore any records in the set
with type “1”.</t>

<t>When SvcRecordType is “0”, the HTTPSSVC is defined to be in “alias form”.</t>

<t>When SvcRecordType is “1”, the HTTPSSVC is defined to
be in “alternative service form”.</t>

</section>
<section anchor="httpssvc-records-alias-form" title="HTTPSSVC records: alias form">

<t>When SvcRecordType is “0”, the HTTPSSVC record is to be treated
similar to a CNAME alias pointing to the domain name specified in
SvcDomainName.  HTTPSSVC RRSets MUST only have a single resource
record in this form.  If multiple are present, clients or recursive
resolvers SHOULD pick one non-determinstically.</t>

<t>The common use-case for this form of the HTTPSVC record is as an
alternative to CNAMEs at the zone apex where they are not allowed.
For example, if an operator of https://example.com wanted to
point HTTPS requests to a service operating at svc.example.net,
they would publish a record such as:</t>

<figure><artwork><![CDATA[
example.com. 3600 IN HTTPSSVC 0 0 svc.example.net.
]]></artwork></figure>

<t>The SvcDomainName MUST point to a domain name that contains
another HTTPSSVC record and/or address (AAAA and/or A) records.</t>

<t>Note that the RRName and the SvcDomainName MAY themselves be CNAMEs.
Clients and recursive resolvers MUST follow CNAMEs as normal.</t>

<t>Due to the risk of loops, clients and recursive resolvers MUST
implement loop detection.  Chains of consecutive HTTPSSVC and CNAME
records SHOULD be limited to (8?) prior to reaching terminal address
records.</t>

<t>The SvcFieldValue in this form SHOULD be an empty string and
clients MUST ignore its contents.</t>

<t>As legacy clients will not know to use this record, service
operators will likely need to retain fallback AAAA and A records
alongside this HTTPSSVC record, although in a common case
the target of the HTTPSSVC record might have better performance, and
therefore would be preferable for clients implementing this specification
to use.</t>

</section>
<section anchor="httpssvc-records-alternative-service-form" title="HTTPSSVC records: alternative service form">

<t>When SvcRecordType is “1”, the combination of SvcDomainName and
SvcFieldValue within each resource record associates an Alternative
Service Field Value with an origin.</t>

<t>The SvcFieldValue of the HTTPSSVC resource record contains an Alt-Svc
Field Value, exactly as defined in Section 4 of <xref target="AltSvc"/>,
but with the uri-host moved to the SvcDomainName field.</t>

<t>For example, if the operator of https://www.example.com
intends to include an HTTP response header like</t>

<figure><artwork><![CDATA[
Alt-Svc: hq="svc.example.net:8003"; ma=3600, \
         h2="svc.example.net:8002"; ma=3600
]]></artwork></figure>

<t>they could also publish an HTTPSSVC DNS RRSet like</t>

<figure><artwork><![CDATA[
www.example.com. 3600 IN HTTPSSVC 1 2 svc.example.net. "hq=\":8003\""
                         HTTPSSVC 1 3 svc.example.net. "h2=\":8002\""
]]></artwork></figure>

<t>This data type can be represented as an Unknown RR as described in
<xref target="RFC3597"/>:</t>

<figure><artwork><![CDATA[
www.example.com. 3600 IN TYPE??? \\# TBD:WRITEME
]]></artwork></figure>

<t>This construction is intended to be extensible in two ways.  First,
any extensions that are made to the Alt-Svc format for transmission
over HTTPS are also applicable here, unless expressly mentioned
otherwise.</t>

<t>Second, by defining a way to map non-HTTPS schemes and non-default
ports (<xref target="rrnames"/>), we provide a way for the HTTPSSVC to be used for them as needed.
However, by using the origin name for the RRName for scheme https and
port 443 we allow HTTPSSVC records to be included at the end of CNAME
chains for existing site implementations without requiring changes in
the zone containing the origin.</t>

</section>
</section>
<section anchor="differences-from-alt-svc-as-transmitted-over-http" title="Differences from Alt-Svc as transmitted over HTTP">

<t>Publishing an alternative services form HTTPSSVC record in DNS is
intended to be equivalent to transmitting this field value over HTTPS,
and receiving an HTTPSSVC record is intended to be equivalent to
receiving this field value over HTTPS.  However, there are some small
differences in the intended client and server behavior.</t>

<section anchor="omitting-max-age-and-persist" title="Omitting Max Age and Persist">

<t>When publishing an HTTPSSVC record in DNS, server operators MUST omit the
“ma” parameter, which encodes the “max age” (i.e. expiration time) of
an Alt-Svc Field Value.  Instead, server operators SHOULD encode the
expiration time in the DNS TTL, and MUST NOT set a TTL longer than the
intended “max age”.</t>

<t>When receiving an HTTPSSVC record, clients SHOULD synthesize a new “ma”
parameter from the DNS TTL if the resulting alt-value is being passed to
a subsystem that might employ caching.</t>

<t>When publishing an HTTPSSVC record, server operators MUST omit the
“persist” parameter, which indicates whether the client should use
this record on other network paths.  When receiving an HTTPSSVC record,
clients MUST discard any records that contain a “persist” flag.
Disabling persistence is important to prevent a local adversary in one
network from implanting a forged DNS record that allows them to
track users or hinder their connections after they leave that network.</t>

</section>
<section anchor="pri" title="Multiple records and preference ordering">

<t>Server operators MAY publish multiple SvcRecordType “1” HTTPSSVC
records as an RRSET.  When converting a collection of alt-values
into an HTTPSSVC RRSET, the server operator MUST set the
overall TTL to a value no larger than the minimum
of the “max age” values (following Section 5.2 of <xref target="RFC2181"/>).</t>

<t>Each RR MUST contain exactly one alt-value, as described
in Section 3 of <xref target="AltSvc"/>.</t>

<t>As RRs within an RRSET are explicitly unordered collections, the
SvcFieldPriority value is introduced to indicate priority.
HTTPSSVC RRs with a smaller SvcFieldPriority value SHOULD be given
preference over RRs with a larger SvcFieldPriority value.</t>

<t>Alt-values received via HTTPS are preferred over any Alt-value received via DNS.</t>

<t>When receiving an RRSET containing multiple HTTPSSVC records with the
same SvcFieldPriority value, clients SHOULD apply a random shuffle within a
priority level to the records before using them, to ensure randomized
load-balancing.</t>

</section>
<section anchor="constructing-alt-svc-equivalent-headers" title="Constructing Alt-Svc equivalent headers">

<t>For a client to construct the equivalent of an Alt-Svc HTTP response header:</t>

<t><list style="numbers">
  <t>For each RR, the SvcDomainName MUST be inserted as the uri-host.</t>
  <t>The RRs SHOULD be ordered by increasing SvcFieldPriority, with shuffling
for equal SvcFieldPriority values.  Clients MAY choose to further
prioritize alt-values where address records are immediately
available for the alt-value’s SvcDomainName.</t>
  <t>The client SHOULD concatenate the thus-transformed-and-ordered SvcFieldValues
in the RRSET, separated by commas.  (This is semantically equivalent to
receiving multiple Alt-Svc HTTP response headers, according to Section 3.2.2
of <xref target="HTTP"/>).</t>
</list></t>

</section>
<section anchor="granularity-and-lifetime-control" title="Granularity and lifetime control">

<t>Sending Alt-Svc over HTTP allows the server to tailor the Alt-Svc
Field Value specifically to the client.  When using an HTTPSSVC DNS
record, groups of clients will necessarily receive the same Alt-Svc
Field Value.  Therefore, this standard is not suitable for uses that
require single-client granularity in Alt-Svc.</t>

<t>Some DNS caching systems incorrectly extend the lifetime of DNS
records beyond the stated TTL.  Server operators MUST NOT rely on
HTTPSSVC records expiring on time, and MAY shorten the TTL to compensate.</t>

</section>
</section>
<section anchor="client-behaviors" title="Client behaviors">

<section anchor="resolution" title="Client resolution">

<t>When attempting to resolve a name HOST, clients should follow in-order:</t>

<t><list style="numbers">
  <t>Issue parallel AAAA/A and HTTPSSVC queries for the name HOST.
The answers for these may or may not include CNAME pointers
before reaching one or more of these records.</t>
  <t>If an HTTPSSVC record of SvcRecordType “0” is returned for HOST,
clients should loop back to step 1 replacing HOST with SvcDomainName,
subject to loop detection heuristics.</t>
  <t>If one or more HTTPSSVC record of SvcRecordType “1” is returned for HOST,
clients should synthesize equivalent Alt-Svc Field Values based
on the SvcDomainName and SvcFieldValue.  If one of these alt-values
is selected to be used in a connection, the client will
need to resolve AAAA and/or A records for SvcDomainName.</t>
  <t>If only AAAA and/or A records are present for HOST (and no HTTPSSVC),
clients should make a connection to one of the IP addresses
contained in these records and proceed normally.</t>
</list></t>

<t>When selecting between AAAA and A records to use, clients may
use an approach such as <xref target="HappyEyeballsV2"/></t>

<t>Some possible optimizations are discussed in <xref target="optimizations"/>
to reduce latency impact in comparison to ordinary AAAA/A lookups.</t>

</section>
<section anchor="http-strict-transport-security" title="HTTP Strict Transport Security">

<t>By publishing an HTTPSSVC record, the server
operator indicates that all useful HTTP resources on that origin are
reachable over HTTPS, similar to HTTP Strict Transport Security
<xref target="HSTS"/>.  When an HTTPSSVC record is present for an origin,
all “http” scheme requests for that origin SHOULD logically be redirected
to “https”.</t>

<t>Prior to making an “http” scheme request, the client SHOULD perform a lookup
to determine if an HTTPSSVC record is available for that origin.  To do so,
the client SHOULD construct a corresponding “https” URL as follows:</t>

<t><list style="numbers">
  <t>Replace the “http” scheme with “https”.</t>
  <t>If the “http” URL explicitly specifies port 80, specify port 443.</t>
  <t>Do not alter any other aspect of the URL.</t>
</list></t>

<t>This construction is equivalent to Section 8.3 of <xref target="HSTS"/> , point 5.</t>

<t>If an HTTPSSVC record is present for this “https” URL, the client
should treat this as the equivalent of receiving an HTTP “302 Found”
redirect to the “https” URL.
Because HTTPSSVC is received over an often insecure channel (DNS),
clients MUST NOT place any more trust in this signal than if they
had received a 302 redirect over cleartext HTTP.</t>

<t>If the HTTPSSVC query results in a SERVFAIL error, and the connection
between the client and the recursive resolver is cryptographically protected
(e.g. using TLS <xref target="RFC7858"/> or HTTPS <xref target="RFC8484"/>), the client SHOULD
abandon the connection attempt and display an error message.  A SERVFAIL
error can occur if the domain is DNSSEC-signed, the recursive resolver is
DNSSEC-validating, and an active attacker between the recursive resolver
and the authoritative DNS server is attempting to prevent the upgrade to
HTTPS.</t>

<t>Similarly, if the client enforces DNSSEC validation on A/AAAA
RRs, it SHOULD abandon the connection attempt if the HTTPSSVC RR fails
to validate.</t>

</section>
<section anchor="cache-interaction" title="Cache interaction">

<t>If the client has an Alt-Svc cache, and a usable Alt-Svc value is
present in that cache, then the client SHOULD NOT issue an HTTPSSVC DNS
query.  Instead, the client SHOULD proceed with alternative service
connection as usual.</t>

<t>If the client has a cached Alt-Svc entry that is expiring, the
client MAY perform an HTTPSSVC query to refresh the entry.</t>

</section>
</section>
<section anchor="dns-server-behaviors" title="DNS Server Behaviors">

<t>Recursive DNS servers SHOULD resolve SvcDomainName records and include
them in the Additional Section (along with any relevant CNAME
records).  For SvcRecordType=0, recursive DNS servers SHOULD attempt
to resolve and include A, AAAA, and HTTPSSVC records.  For
SvcRecordType=1, recursive DNS servers SHOULD attempt to resolve and
include A and AAAA records.</t>

<t>Authoritative DNS servers SHOULD return A, AAAA, and HTTPSSVC records
(as well as any relevant CNAME records) in the Additional Section for
any in-bailiwick SvcDomainNames.</t>

</section>
<section anchor="optimizations" title="Performance optimizations">

<t>For optimal performance (i.e. minimum connection setup time), clients
SHOULD issue address (AAAA and/or A) and HTTPSSVC queries
simultaneously, and SHOULD implement a client-side DNS cache.
With these optimizations in place, and conforming DNS servers,
using HTTPSSVC does not add network latency to connection setup.</t>

<t>A nonconforming recursive resolver might return an HTTPSSVC response with
a nonempty SvcDomainName, without the corresponding address records.  If
all the HTTPSSVC RRs in the response have nonempty SvcDomainName values,
and the client does not have address records for any of these values in
its DNS cache, the client SHOULD perform an additional address query for
the selected SvcDomainName.</t>

<t>The additional DNS query in this case introduces a delay.  To avoid
causing a delay for clients using a nonconforming recursive resolver,
domain owners SHOULD choose the SvcDomainName to be a name in the
origin hostname’s CNAME chain if possible.  This will ensure that the required
address records are already present in the client’s DNS cache as part of the
responses to the address queries that were issued in parallel.</t>

<t>Highly performance-sensitive clients MAY implement the following special-
case shortcut to avoid increased connection time: if (1) one of the
HTTPSSVC records returned has SvcRecordType=0, (2) its SvcDomainName
is not in the DNS cache, and (3) the address queries for the
origin domain return usable IP addresses, then the client MAY ignore the
HTTPSSVC records and connect directly to the origin domain.  When the
SvcDomainNames and any needed HTTPSSVC records are available, the client
SHOULD make subsequent requests over connections specified by the HTTPSSVC
records.</t>

<t>Server operators can therefore expect that publishing HTTPSSVC records with
SvcRecordType=0 should not cause an additional DNS query for
performance-sensitive clients.  Server operators who wish to prevent this
optimization should use SvcRecordType=1.</t>

</section>
<section anchor="extensions-to-enhance-privacy" title="Extensions to enhance privacy">

<section anchor="esnikeys" title="Alt-Svc parameter for ESNI keys">

<t>An Alt-Svc “esnikeys” parameter is defined for specifying
ESNI keys corresponding to an alternative service.
The value of the parameter is an ESNIKeys structure <xref target="ESNI"/>
encoded in <xref target="base64"/>, or the empty string.  ESNI-aware
clients SHOULD prefer alt-values with nonempty esnikeys.</t>

<t>This parameter MAY also be sent in Alt-Svc HTTP response
headers and HTTP/2 ALTSVC frames.</t>

<t>The Alt-Svc specification states that “the client MAY fall back to using
the origin” in case of connection failure <xref target="AltSvc"/>.  This behavior is
not suitable for ESNI, because fallback would negate the privacy benefits of
ESNI.</t>

<t>Accordingly, any connection attempt that uses ESNI MUST fall back only to
another alt-value that also has the esnikeys parameter.  If the parameter’s
value is the empty string, the client SHOULD connect as it would in the
absence of any ESNIKeys information.</t>

<t>For example, suppose a server operator has two alternatives.  Alternative A
is reliably accessible but does not support ESNI.  Alternative B supports
ESNI but is not reliably accessible.  The server operator could include a
full esnikeys value in Alternative B, and mark Alternative A with esnikeys=””
to indicate that fallback from B to A is allowed.</t>

</section>
<section anchor="interaction-with-other-standards" title="Interaction with other standards">

<t>The purpose of this standard is to reduce connection latency and
improve user privacy.  Server operators implementing this standard
SHOULD also implement TLS 1.3 <xref target="I-D.ietf-tls-tls13"/> and OCSP Stapling
<xref target="RFC6066"/>, both of which confer substantial performance and privacy
benefits when used in combination with HTTPSSVC records.</t>

<t>To realize the greatest privacy benefits, this proposal is intended for
use with a privacy-preserving DNS transport (like DNS over TLS
<xref target="RFC7858"/> or DNS over HTTPS <xref target="RFC8484"/>).
However, performance improvements, and some modest privacy improvements,
are possible without the use of those standards.</t>

<t>This RRType could be extended to support schemes other than “https”.
Any such scheme MUST have an entry under the HTTPSSVC RRType in the IANA
DNS Underscore Global Scoped Entry Registry <xref target="Attrleaf"/>
The scheme SHOULD have an entry in the IANA URI Schemes Registry <xref target="RFC7595"/>.
The scheme SHOULD be one for which Alt-Svc is defined.</t>

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

<t>Alt-Svc Field Values are intended for distribution over untrusted
channels, and clients are REQUIRED to verify that the alternative
service is authoritative for the origin (Section 2.1 of <xref target="AltSvc"/>).
Therefore, DNSSEC signing and validation are OPTIONAL for publishing
and using HTTPSSVC records.</t>

<t>TBD: expand this section in more detail.  In particular:
* Just as with <xref target="AltSvc"/>, clients must validate the TLS server certificate
  against hostname associated with the origin.  Clients MUST NOT
  use the SvcDomainName as any part of the server TLS certificate validation.
* …</t>

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

<t>Per <xref target="RFC6895"/>, please add the following entry to the data type
range of the Resource Record (RR) TYPEs registry:</t>

<texttable>
      <ttcol align='left'>TYPE</ttcol>
      <ttcol align='left'>Meaning</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>HTTPSSVC</c>
      <c>HTTPS Service Location</c>
      <c>(This document)</c>
</texttable>

<t>Per <xref target="Attrleaf"/>, please add the following entries to the DNS Underscore
Global Scoped Entry Registry:</t>

<texttable>
      <ttcol align='left'>RR TYPE</ttcol>
      <ttcol align='left'>_NODE NAME</ttcol>
      <ttcol align='left'>Meaning</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>HTTPSSVC</c>
      <c>_https</c>
      <c>Alt-Svc for HTTPS</c>
      <c>(This document)</c>
</texttable>

<t>Per <xref target="AltSvc"/>, please add the following entries to the HTTP Alt-Svc
Parameter Registry:</t>

<texttable>
      <ttcol align='left'>Alt-Svc Parameter</ttcol>
      <ttcol align='left'>Meaning</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>esnikeys</c>
      <c>Encrypted SNI keys</c>
      <c>(This document)</c>
</texttable>

</section>
<section anchor="acknowledgements-and-related-proposals" title="Acknowledgements and Related Proposals">

<t>There have been a wide range of proposed solutions over the years to
the “CNAME at the Zone Apex” challenge proposed.  These include
<xref target="I-D.draft-bellis-dnsop-http-record-00"/>,
<xref target="I-D.draft-ietf-dnsop-aname-03"/>, and others.</t>

<t>Thank you to Ian Swett, Ralf Weber, Jon Reed, and others for their
feedback and suggestions on this draft.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference anchor="ESNI">
<front>
<title>Encrypted Server Name Indication for TLS 1.3</title>

<author initials='E' surname='Rescorla' fullname='Eric Rescorla'>
    <organization />
</author>

<author initials='K' surname='Oku' fullname='Kazuho Oku'>
    <organization />
</author>

<author initials='N' surname='Sullivan' fullname='Nick Sullivan'>
    <organization />
</author>

<author initials='C' surname='Wood' fullname='Christopher Wood'>
    <organization />
</author>

<date month='March' day='11' year='2019' />

<abstract><t>This document defines a simple mechanism for encrypting the Server Name Indication for TLS 1.3.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-tls-esni-03' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-esni-03.txt' />
</reference>



<reference anchor="HTTP3">
<front>
<title>Hypertext Transfer Protocol Version 3 (HTTP/3)</title>

<author initials='M' surname='Bishop' fullname='Mike Bishop'>
    <organization />
</author>

<date month='April' day='23' year='2019' />

<abstract><t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment.  This document describes a mapping of HTTP semantics over QUIC.  This document also identifies HTTP/2 features that are subsumed by QUIC, and describes how HTTP/2 extensions can be ported to HTTP/3.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-quic-http-20' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-quic-http-20.txt' />
</reference>



<reference  anchor="AltSvc" target='https://www.rfc-editor.org/info/rfc7838'>
<front>
<title>HTTP Alternative Services</title>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham'><organization /></author>
<author initials='P.' surname='McManus' fullname='P. McManus'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke'><organization /></author>
<date year='2016' month='April' />
<abstract><t>This document specifies &quot;Alternative Services&quot; for HTTP, which allow an origin's resources to be authoritatively available at a separate network location, possibly accessed with a different protocol configuration.</t></abstract>
</front>
<seriesInfo name='RFC' value='7838'/>
<seriesInfo name='DOI' value='10.17487/RFC7838'/>
</reference>



<reference  anchor="RFC6454" target='https://www.rfc-editor.org/info/rfc6454'>
<front>
<title>The Web Origin Concept</title>
<author initials='A.' surname='Barth' fullname='A. Barth'><organization /></author>
<date year='2011' month='December' />
<abstract><t>This document defines the concept of an &quot;origin&quot;, which is often used as the scope of authority or privilege by user agents.  Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites.  In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string.  It also defines an HTTP header field, named &quot;Origin&quot;, that indicates which origins are associated with an HTTP request.   [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6454'/>
<seriesInfo name='DOI' value='10.17487/RFC6454'/>
</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 initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<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 initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<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="RFC1035" target='https://www.rfc-editor.org/info/rfc1035'>
<front>
<title>Domain names - implementation and specification</title>
<author initials='P.V.' surname='Mockapetris' fullname='P.V. Mockapetris'><organization /></author>
<date year='1987' month='November' />
<abstract><t>This RFC is the revised specification of the protocol and format used in the implementation of the Domain Name System.  It obsoletes RFC-883. This memo documents the details of the domain name client - server communication.</t></abstract>
</front>
<seriesInfo name='STD' value='13'/>
<seriesInfo name='RFC' value='1035'/>
<seriesInfo name='DOI' value='10.17487/RFC1035'/>
</reference>



<reference  anchor="RFC3597" target='https://www.rfc-editor.org/info/rfc3597'>
<front>
<title>Handling of Unknown DNS Resource Record (RR) Types</title>
<author initials='A.' surname='Gustafsson' fullname='A. Gustafsson'><organization /></author>
<date year='2003' month='September' />
<abstract><t>Extending the Domain Name System (DNS) with new Resource Record (RR) types currently requires changes to name server software.  This document specifies the changes necessary to allow future DNS implementations to handle new RR types transparently.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='3597'/>
<seriesInfo name='DOI' value='10.17487/RFC3597'/>
</reference>



<reference  anchor="RFC2181" target='https://www.rfc-editor.org/info/rfc2181'>
<front>
<title>Clarifications to the DNS Specification</title>
<author initials='R.' surname='Elz' fullname='R. Elz'><organization /></author>
<author initials='R.' surname='Bush' fullname='R. Bush'><organization /></author>
<date year='1997' month='July' />
<abstract><t>This document considers some areas that have been identified as problems with the specification of the Domain Name System, and proposes remedies for the defects identified. [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2181'/>
<seriesInfo name='DOI' value='10.17487/RFC2181'/>
</reference>



<reference  anchor="HappyEyeballsV2" target='https://www.rfc-editor.org/info/rfc8305'>
<front>
<title>Happy Eyeballs Version 2: Better Connectivity Using Concurrency</title>
<author initials='D.' surname='Schinazi' fullname='D. Schinazi'><organization /></author>
<author initials='T.' surname='Pauly' fullname='T. Pauly'><organization /></author>
<date year='2017' month='December' />
<abstract><t>Many communication protocols operating over the modern Internet use hostnames.  These often resolve to multiple IP addresses, each of which may have different performance and connectivity characteristics.  Since specific addresses or address families (IPv4 or IPv6) may be blocked, broken, or sub-optimal on a network, clients that attempt multiple connections in parallel have a chance of establishing a connection more quickly.  This document specifies requirements for algorithms that reduce this user-visible delay and provides an example algorithm, referred to as &quot;Happy Eyeballs&quot;.  This document obsoletes the original algorithm description in RFC 6555.</t></abstract>
</front>
<seriesInfo name='RFC' value='8305'/>
<seriesInfo name='DOI' value='10.17487/RFC8305'/>
</reference>



<reference  anchor="HSTS" target='https://www.rfc-editor.org/info/rfc6797'>
<front>
<title>HTTP Strict Transport Security (HSTS)</title>
<author initials='J.' surname='Hodges' fullname='J. Hodges'><organization /></author>
<author initials='C.' surname='Jackson' fullname='C. Jackson'><organization /></author>
<author initials='A.' surname='Barth' fullname='A. Barth'><organization /></author>
<date year='2012' month='November' />
<abstract><t>This specification defines a mechanism enabling web sites to declare themselves accessible only via secure connections and/or for users to be able to direct their user agent(s) to interact with given sites only over secure connections.  This overall policy is referred to as HTTP Strict Transport Security (HSTS).  The policy is declared by web sites via the Strict-Transport-Security HTTP response header field and/or by other means, such as user agent configuration, for example. [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6797'/>
<seriesInfo name='DOI' value='10.17487/RFC6797'/>
</reference>



<reference  anchor="RFC7858" target='https://www.rfc-editor.org/info/rfc7858'>
<front>
<title>Specification for DNS over Transport Layer Security (TLS)</title>
<author initials='Z.' surname='Hu' fullname='Z. Hu'><organization /></author>
<author initials='L.' surname='Zhu' fullname='L. Zhu'><organization /></author>
<author initials='J.' surname='Heidemann' fullname='J. Heidemann'><organization /></author>
<author initials='A.' surname='Mankin' fullname='A. Mankin'><organization /></author>
<author initials='D.' surname='Wessels' fullname='D. Wessels'><organization /></author>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<date year='2016' month='May' />
<abstract><t>This document describes the use of Transport Layer Security (TLS) to provide privacy for DNS.  Encryption provided by TLS eliminates opportunities for eavesdropping and on-path tampering with DNS queries in the network, such as discussed in RFC 7626.  In addition, this document specifies two usage profiles for DNS over TLS and provides advice on performance considerations to minimize overhead from using TCP and TLS with DNS.</t><t>This document focuses on securing stub-to-recursive traffic, as per the charter of the DPRIVE Working Group.  It does not prevent future applications of the protocol to recursive-to-authoritative traffic.</t></abstract>
</front>
<seriesInfo name='RFC' value='7858'/>
<seriesInfo name='DOI' value='10.17487/RFC7858'/>
</reference>



<reference  anchor="RFC8484" target='https://www.rfc-editor.org/info/rfc8484'>
<front>
<title>DNS Queries over HTTPS (DoH)</title>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<author initials='P.' surname='McManus' fullname='P. McManus'><organization /></author>
<date year='2018' month='October' />
<abstract><t>This document defines a protocol for sending DNS queries and getting DNS responses over HTTPS.  Each DNS query-response pair is mapped into an HTTP exchange.</t></abstract>
</front>
<seriesInfo name='RFC' value='8484'/>
<seriesInfo name='DOI' value='10.17487/RFC8484'/>
</reference>



<reference  anchor="base64" target='https://www.rfc-editor.org/info/rfc4648'>
<front>
<title>The Base16, Base32, and Base64 Data Encodings</title>
<author initials='S.' surname='Josefsson' fullname='S. Josefsson'><organization /></author>
<date year='2006' month='October' />
<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>



<reference anchor="I-D.ietf-tls-tls13">
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>

<author initials='E' surname='Rescorla' fullname='Eric Rescorla'>
    <organization />
</author>

<date month='March' day='20' year='2018' />

<abstract><t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.  This document updates RFCs 4492, 5705, and 6066 and it obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-tls-tls13-28' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-tls13-28.txt' />
</reference>



<reference  anchor="RFC6066" target='https://www.rfc-editor.org/info/rfc6066'>
<front>
<title>Transport Layer Security (TLS) Extensions: Extension Definitions</title>
<author initials='D.' surname='Eastlake 3rd' fullname='D. Eastlake 3rd'><organization /></author>
<date year='2011' month='January' />
<abstract><t>This document provides specifications for existing TLS extensions.  It is a companion document for RFC 5246, &quot;The Transport Layer Security (TLS) Protocol Version 1.2&quot;.  The extensions specified are server_name, max_fragment_length, client_certificate_url, trusted_ca_keys, truncated_hmac, and status_request.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6066'/>
<seriesInfo name='DOI' value='10.17487/RFC6066'/>
</reference>



<reference anchor="Attrleaf">
<front>
<title>DNS Scoped Data Through "Underscore" Naming of Attribute Leaves</title>

<author initials='D' surname='Crocker' fullname='Dave Crocker'>
    <organization />
</author>

<date month='November' day='16' year='2018' />

<abstract><t>Formally, any DNS resource record may occur under any domain name. However some services use an operational convention for defining specific interpretations of an RRset, by locating the records in a DNS branch, under the parent domain to which the RRset actually applies.  The top of this subordinate branch is defined by a naming convention that uses a reserved node name, which begins with an _underscore.  The underscored naming construct defines a semantic scope for DNS record types that are associated with the parent domain, above the underscored branch.  This specification explores the nature of this DNS usage and defines the "DNS Global Underscore Scoped Entry Registry" with IANA.  The purpose of the Underscore registry is to avoid collisions resulting from the use of the same underscore-based name, for different services.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-dnsop-attrleaf-16' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-dnsop-attrleaf-16.txt' />
</reference>



<reference  anchor="RFC7595" target='https://www.rfc-editor.org/info/rfc7595'>
<front>
<title>Guidelines and Registration Procedures for URI Schemes</title>
<author initials='D.' surname='Thaler' fullname='D. Thaler' role='editor'><organization /></author>
<author initials='T.' surname='Hansen' fullname='T. Hansen'><organization /></author>
<author initials='T.' surname='Hardie' fullname='T. Hardie'><organization /></author>
<date year='2015' month='June' />
<abstract><t>This document updates the guidelines and recommendations, as well as the IANA registration processes, for the definition of Uniform Resource Identifier (URI) schemes.  It obsoletes RFC 4395.</t></abstract>
</front>
<seriesInfo name='BCP' value='35'/>
<seriesInfo name='RFC' value='7595'/>
<seriesInfo name='DOI' value='10.17487/RFC7595'/>
</reference>



<reference anchor="AltSvcSNI">
<front>
<title>The "SNI" Alt-Svc Parameter</title>

<author initials='M' surname='Bishop' fullname='Mike Bishop'>
    <organization />
</author>

<date month='May' day='24' year='2018' />

<abstract><t>HTTP Alternative Services provides a mechanism for an origin to declare that its content is accessible via some other combination of host, port, and protocol.  In the process of using such an alternative, an observer can identify that the client is requesting resources from a particular hostname.  This document extends HTTP Alternative Services, in combination with Secondary Certificate Authentication, to enable clients not to disclose the origin to which they intend to connect.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-bishop-httpbis-sni-altsvc-02' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-bishop-httpbis-sni-altsvc-02.txt' />
</reference>




    </references>

    <references title='Informative References'>





<reference  anchor="DNSTerm" target='https://www.rfc-editor.org/info/rfc8499'>
<front>
<title>DNS Terminology</title>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<author initials='A.' surname='Sullivan' fullname='A. Sullivan'><organization /></author>
<author initials='K.' surname='Fujiwara' fullname='K. Fujiwara'><organization /></author>
<date year='2019' month='January' />
<abstract><t>The Domain Name System (DNS) is defined in literally dozens of different RFCs.  The terminology used by implementers and developers of DNS protocols, and by operators of DNS systems, has sometimes changed in the decades since the DNS was first defined.  This document gives current definitions for many of the terms used in the DNS in a single document.</t><t>This document obsoletes RFC 7719 and updates RFC 2308.</t></abstract>
</front>
<seriesInfo name='BCP' value='219'/>
<seriesInfo name='RFC' value='8499'/>
<seriesInfo name='DOI' value='10.17487/RFC8499'/>
</reference>



<reference  anchor="HTTP" target='https://www.rfc-editor.org/info/rfc7230'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the &quot;http&quot; and &quot;https&quot; Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='7230'/>
<seriesInfo name='DOI' value='10.17487/RFC7230'/>
</reference>



<reference  anchor="RFC6895" target='https://www.rfc-editor.org/info/rfc6895'>
<front>
<title>Domain Name System (DNS) IANA Considerations</title>
<author initials='D.' surname='Eastlake 3rd' fullname='D. Eastlake 3rd'><organization /></author>
<date year='2013' month='April' />
<abstract><t>This document specifies Internet Assigned Numbers Authority (IANA) parameter assignment considerations for the allocation of Domain Name System (DNS) resource record types, CLASSes, operation codes, error codes, DNS protocol message header bits, and AFSDB resource record subtypes.  It obsoletes RFC 6195 and updates RFCs 1183, 2845, 2930, and 3597.</t></abstract>
</front>
<seriesInfo name='BCP' value='42'/>
<seriesInfo name='RFC' value='6895'/>
<seriesInfo name='DOI' value='10.17487/RFC6895'/>
</reference>



<reference anchor="I-D.draft-bellis-dnsop-http-record-00">
<front>
<title>A DNS Resource Record for HTTP</title>

<author initials='R' surname='Bellis' fullname='Ray Bellis'>
    <organization />
</author>

<date month='November' day='3' year='2018' />

<abstract><t>This document specifies an "HTTP" resource record type for the DNS to facilitate the lookup of the server hostname of HTTP(s) URIs.  It is intended to replace the use of CNAME records for this purpose, and in the process provides a solution for the inability of the DNS to allow a CNAME to be placed at the apex of a domain name.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-bellis-dnsop-http-record-00' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-bellis-dnsop-http-record-00.txt' />
</reference>



<reference anchor="I-D.draft-ietf-dnsop-aname-03">
<front>
<title>Address-specific DNS aliases (ANAME)</title>

<author initials='T' surname='Finch' fullname='Tony Finch'>
    <organization />
</author>

<author initials='E' surname='Hunt' fullname='Evan Hunt'>
    <organization />
</author>

<author initials='P' surname='Dijk' fullname='Peter van Dijk'>
    <organization />
</author>

<author initials='A' surname='Eden' fullname='Anthony Eden'>
    <organization />
</author>

<author initials='W' surname='Mekking' fullname='Willem Mekking'>
    <organization />
</author>

<date month='April' day='15' year='2019' />

<abstract><t>This document defines the "ANAME" DNS RR type, to provide similar functionality to CNAME, but only for type A and AAAA queries.  Unlike CNAME, an ANAME can coexist with other record types.  The ANAME RR allows zone owners to make an apex domain name into an alias in a standards compliant manner.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-dnsop-aname-03' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-dnsop-aname-03.txt' />
</reference>



<reference  anchor="RFC2782" target='https://www.rfc-editor.org/info/rfc2782'>
<front>
<title>A DNS RR for specifying the location of services (DNS SRV)</title>
<author initials='A.' surname='Gulbrandsen' fullname='A. Gulbrandsen'><organization /></author>
<author initials='P.' surname='Vixie' fullname='P. Vixie'><organization /></author>
<author initials='L.' surname='Esibov' fullname='L. Esibov'><organization /></author>
<date year='2000' month='February' />
<abstract><t>This document describes a DNS RR which specifies the location of the server(s) for a specific protocol and domain.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2782'/>
<seriesInfo name='DOI' value='10.17487/RFC2782'/>
</reference>




    </references>


<section anchor="comparison-with-alternatives" title="Comparison with alternatives">

<t>The HTTPSSVC record type closely resembles some existing record types
and proposals.  A complaint with all of the alternatives is that
web clients have seemed unenthusiastic about implementing them.
The hope here is that by providing an extensible solution that solves
multiple problems we will overcome the inertia and have a path
to achieve client implementation.</t>

<section anchor="differences-from-the-srv-rrtype" title="Differences from the SRV RRTYPE">

<t>An SRV record <xref target="RFC2782"/> can perform a similar function to the HTTPSSVC record,
informing a client to look in a different location for a service.
However, there are several differences:</t>

<t><list style="symbols">
  <t>SRV records are typically mandatory, whereas clients will always
continue to function correctly without making use of Alt-Svc or HTTPSSVC.</t>
  <t>SRV records cannot instruct the client to switch or upgrade
protocols, whereas Alt-Svc can signal such an upgrade (e.g. to
HTTP/2).</t>
  <t>SRV records are not extensible, whereas Alt-Svc and thus HTTPSSVC can be extended with
new parameters.  For example, this is what allows the incorporation of
ESNI keys in HTTPSSVC.</t>
  <t>Using SRV records would not allow a client to skip processing of the
Alt-Svc information in a subsequent connection, so it does not confer
a performance advantage.</t>
</list></t>

</section>
<section anchor="differences-from-the-proposed-http-record" title="Differences from the proposed HTTP record">

<t>Unlike <xref target="I-D.draft-bellis-dnsop-http-record-00"/>, this approach is
extensible to cover Alt-Svc and ESNIKeys use-cases.  Like that
proposal, this addresses the zone apex CNAME challenge.</t>

<t>Like that proposal it remains necessary to continue to include
address records at the zone apex for legacy clients.</t>

</section>
<section anchor="differences-from-the-proposed-aname-record" title="Differences from the proposed ANAME record">

<t>Unlike <xref target="I-D.draft-ietf-dnsop-aname-03"/>, this approach is extensible to
cover Alt-Svc and ESNIKeys use-cases.  This approach also does not
require any changes or special handling on either authoritative or
master servers, beyond optionally returning in-bailiwick additional records.</t>

<t>Like that proposal, this addresses the zone apex CNAME challenge
for clients that implement this.</t>

<t>However with this HTTPSSVC proposal it remains necessary to continue
to include address records at the zone apex for legacy clients.
If deployment of this standard is successful, the number of legacy clients
will fall over time.  As the number of legacy clients declines, the operational
effort required to serve these users without the benefit of HTTPSSVC indirection
should fall.  Server operators can easily observe how much traffic reaches this
legacy endpoint, and may remove the apex’s address records if the observed legacy
traffic has fallen to negligible levels.</t>

</section>
<section anchor="differences-from-the-proposed-esni-record" title="Differences from the proposed ESNI record">

<t>Unlike <xref target="ESNI"/>, this approach is extensible and covers
the Alt-Svc case as well as addresses the zone apex CNAME challenge.</t>

<t>By using the Alt-Svc model we also provide a way to solve
the ESNI multi-CDN challenges in a general case.</t>

<t>Unlike ESNI, this is focused on the specific case of HTTPS,
although this approach could be extended for other protocols.
It also allows specifying ESNI keys for a specific port, not an entire host.</t>

</section>
<section anchor="sni-alt-svc-parameter" title="SNI Alt-Svc parameter">

<t>Defining an Alt-Svc sni= parameter
(such as from <xref target="AltSvcSNI"/>) would
have provided some benefits to clients and servers not implementing ESNI,
such as for specifying that “_wildcard.example.com” could be sent as an SNI
value rather than the full name.  There is nothing precluding HTTPSSVC from
being used with an sni= parameter if one were to be defined, but it
is not included here to reduce scope, complexity, and additional potential
security and tracking risks.</t>

</section>
</section>
<section anchor="design-considerations-and-open-issues" title="Design Considerations and Open Issues">

<t>This draft is intended to be a work-in-progress for discussion.
Many details are expected to change with subsequent refinement.
Some known issues or topics for discussion are listed below.</t>

<section anchor="record-name" title="Record Name">

<t>Naming is hard.  The “HTTPSSVC” is proposed as a placeholder.
Other names for this record might include ALTSVC,
HTTPS, HTTPSSRV, B, or something else.</t>

</section>
<section anchor="applicability-to-other-schemes" title="Applicability to other schemes">

<t>The focus of this record is on optimizing the common case of the
“https” scheme.  It is worth discussing whether this is a valid
assumption or if a more general solution is applicable.  Past efforts
to over-generalize have not met with broad success.</t>

</section>
<section anchor="wire-format" title="Wire Format">

<t>The length of SvcFieldValue is redundant.  Should we eliminate this?</t>

<t>Advice from experts in DNS wire format best practices would be greatly
appreciated to refine the proposed details, overall.</t>

</section>
<section anchor="extensibility-of-svcrecordtype" title="Extensibility of SvcRecordType">

<t>Only values of “0” and “1” are allowed for SvcRecordType.  Should we give
more thought to potential future values?  The current version tries to
leave this open by indicating that resource records with unknown
SvcRecordType values should be ignored (and perhaps should be switched
to MUST be ignored)?</t>

</section>
<section anchor="where-to-include-priority" title="Where to include Priority">

<t>The SvcFieldPriority could alternately be included as a pri= Alt-Svc attribute.
It wouldn’t be applicable for Alt-Svc returned via HTTP, but it is also
not necessarily needed by DNS servers.  It is also not used when SvcRecordType=0.
A related question is whether to omit it from the textual representation
when SvcRecordType=0.  Regardless, having a series of sequential numeric
values in the textual representation has risk of user error, especially
as MX, SRV, and others all have their own variations here.</t>

</section>
<section anchor="whether-to-include-weight" title="Whether to include Weight">

<t>Some other similar mechanisms such as SRV have a weight in-addition
to priority.  That is excluded here for simplicity.  It could always be
added as an optional Alt-Svc attribute.</t>

</section>
</section>


  </back>

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

-->

</rfc>

