<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.4 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-alias-proxy-status-06" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.2 -->
  <front>
    <title abbrev="DNS Aliases Proxy-Status">HTTP Proxy-Status Parameter for Next-Hop Aliases</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-alias-proxy-status-06"/>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly">
      <organization>Apple, Inc.</organization>
      <address>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <date/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <keyword>proxy status</keyword>
    <abstract>
      <?line 33?>

<t>This document defines the <tt>next-hop-aliases</tt> HTTP Proxy-Status Parameter. This parameter carries
the list of aliases and canonical names an intermediary received during DNS resolution as part
of establishing a connection to the next hop.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-alias-proxy-status/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTP Working Group mailing list (<eref target="mailto:ietf-http-wg@w3.org"/>),
        which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/"/>.
        Working Group information can be found at <eref target="https://httpwg.org/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/httpwg/http-extensions/labels/alias-proxy-status"/>.</t>
    </note>
  </front>
  <middle>
    <?line 39?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>The Proxy-Status HTTP response field <xref target="PROXY-STATUS"/> allows intermediaries to convey
information about how they handled the request in HTTP responses sent to clients.
It defines a set of parameters that provide information, such as the name of the next
hop.</t>
      <t><xref target="PROXY-STATUS"/> defines a <tt>next-hop</tt> parameter, which can contain a hostname,
IP address, or alias of the next hop. This parameter can contain only one such item,
so it cannot be used to communicate a chain of aliases encountered during DNS resolution
when connecting to the next hop.</t>
      <t>Knowing the full chain of names that were used during DNS resolution via CNAME records
<xref target="DNS"/> is particularly useful for clients of forward proxies, in which the
client is requesting to connect to a specific target hostname using the CONNECT method
<xref target="HTTP"/> or UDP proxying <xref target="CONNECT-UDP"/>. CNAME records can be used to
"cloak" hosts that perform tracking or malicious activity behind more innocuous hostnames,
and clients such as web browsers use the chain of DNS names to influence behavior like cookie
usage policies <xref target="COOKIES"/> or blocking of malicious hosts.</t>
      <t>This document allows clients to receive the CNAME chain of DNS names for the next hop
by including the list of names in a new <tt>next-hop-aliases</tt> Proxy-Status parameter.</t>
      <section anchor="requirements">
        <name>Requirements</name>
        <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.
<?line -6?>
        </t>
      </section>
    </section>
    <section anchor="parameter">
      <name>next-hop-aliases Parameter</name>
      <t>The <tt>next-hop-aliases</tt> parameter's value is a String <xref target="STRUCTURED-FIELDS"/> that contains
one or more DNS names in a comma-separated list. The items in the list include all alias names and
canonical names received in CNAME records <xref target="DNS"/> during the course of resolving the next hop's
hostname using DNS, and MAY include the original requested hostname itself. The names SHOULD
appear in the order in which they were received in DNS. If there are multiple CNAME records
in the chain, the first name in the <tt>next-hop-aliases</tt> list would be the value in the CNAME
record for the original hostname, and the final name in the <tt>next-hop-aliases</tt> list would
be the name that ultimately resolved to one or more addresses.</t>
      <t>The list of DNS names in <tt>next-hop-aliases</tt> uses a comma (",") as a separator between names.
Note that if a comma is included in a name itself, the comma must be encoded as described in
<xref target="encoding"/>.</t>
      <t>For example, consider a proxy "proxy.example.net" that receives the following records when
performing DNS resolution for the next hop "host.example.com":</t>
      <sourcecode type="dns-example"><![CDATA[
host.example.com.           CNAME   tracker.example.com.
tracker.example.com.        CNAME   service1.example.com.
service1.example.com.       AAAA    2001:db8::1
]]></sourcecode>
      <t>The proxy could include the following proxy status in its response:</t>
      <sourcecode type="http-message"><![CDATA[
Proxy-Status: proxy.example.net; next-hop="2001:db8::1";
    next-hop-aliases="tracker.example.com,service1.example.com"
]]></sourcecode>
      <t>This indicates that proxy.example.net, which used the IP address "2001:db8::1" as the next hop
for this request, encountered the names "tracker.example.com" and "service1.example.com"
in the DNS resolution chain. Note that while this example includes both the <tt>next-hop</tt> and
<tt>next-hop-aliases</tt> parameters, <tt>next-hop-aliases</tt> can be included without including <tt>next-hop</tt>.</t>
      <t>The proxy can also include the name of the next hop as the first item in the list. This is
particularly useful for reverse proxies when clients would not otherwise know the name of the
next hop, and the <tt>next-hop</tt> header is used to convey an IP address.</t>
      <t>For example, consider a proxy "reverseproxy.example.net" that receives the following records
when performing DNS resolution for the next hop "host.example.com":</t>
      <sourcecode type="dns-example"><![CDATA[
host2.example.com.          CNAME   service2.example.com.
service2.example.com.       AAAA    2001:db8::2
]]></sourcecode>
      <t>The proxy could include the following proxy status in its response:</t>
      <sourcecode type="http-message"><![CDATA[
Proxy-Status: reverseproxy.example.net; next-hop="2001:db8::2";
    next-hop-aliases="host2.example.com,service2.example.com"
]]></sourcecode>
      <t>The <tt>next-hop-aliases</tt> parameter only applies when DNS was used to resolve the next hop's name, and
does not apply in all situations. Clients can use the information in this parameter to determine
how to use the connection established through the proxy, but need to gracefully handle situations
in which this parameter is not present.</t>
      <t>The proxy MAY send the empty string ("") as the value of <tt>next-hop-aliases</tt> to indicate that
no CNAME records were encountered when resolving the next hop's name.</t>
      <section anchor="encoding">
        <name>Encoding special characters</name>
        <t>DNS names commonly just contain alphanumeric characters and hyphens ("-"), although they
are allowed to contain any character (<xref section="3.1" sectionFormat="comma" target="RFC1035"/>), including a comma. To
prevent commas or other special characters in names leading to incorrect parsing,
any characters that appear in names in this list that do not belong to the set of URI
Unreserved Characters (<xref section="2.3" sectionFormat="comma" target="RFC3986"/>) MUST be percent-encoded as
defined in <xref section="2.1" sectionFormat="comma" target="RFC3986"/>.</t>
        <t>For example, consider the DNS name <tt>comma,name.example.com</tt>. This name would be encoded
within a <tt>next-hop-aliases</tt> parameter as follows:</t>
        <sourcecode type="http-message"><![CDATA[
Proxy-Status: proxy.example.net; next-hop="2001:db8::1";
    next-hop-aliases="comma%2Cname.example.com,service1.example.com"
]]></sourcecode>
        <t>It is also possible for a DNS name to include a period character (".") within a label,
instead of as a label separator. In this case, the period character MUST be first escaped
as "\.". Since the "\" character itself will be percent-encoded, the name
"dot\.label.example.com" would be encoded within a <tt>next-hop-aliases</tt> parameter as follows:</t>
        <sourcecode type="http-message"><![CDATA[
Proxy-Status: proxy.example.net; next-hop="2001:db8::1";
    next-hop-aliases="dot%5C.label.example.com,service1.example.com"
]]></sourcecode>
        <t>Upon parsing this name, "dot%5C.label" MUST be treated as a single label.</t>
        <t>Similarly the "\" character in a label MUST be escaped as "\\" and then percent-encoded.
Other uses of "\" MUST NOT appear in the label after percent-decoding. For example,
if there is a DNS name "backslash\name.example.com", it would first be escaped as
"backslash\\name.example.com", and then percent-encoded as follows:</t>
        <sourcecode type="http-message"><![CDATA[
Proxy-Status: proxy.example.net; next-hop="2001:db8::1";
    next-hop-aliases="backslash%5C%5Cname.example.com,service1.example.com"
]]></sourcecode>
      </section>
    </section>
    <section anchor="implementation-considerations">
      <name>Implementation Considerations</name>
      <t>In order to include the <tt>next-hop-aliases</tt> parameter, a proxy needs to have access to the chain
of alias names and canonical names received in CNAME records.</t>
      <t>Implementations ought to note that the full chain of names might not be available in common DNS
resolution APIs, such as <tt>getaddrinfo</tt>. <tt>getaddrinfo</tt> does have an option for <tt>AI_CANONNAME</tt>
(<xref section="6.1" sectionFormat="of" target="RFC3493"/>), but this will only return the last name in the chain
(the canonical name), not the alias names.</t>
      <t>An implementation MAY include incomplete information in the <tt>next-hop-aliases</tt> parameter to accommodate cases where it is unable to include the full chain, such as only including the canonical name if the implementation can only use <tt>getaddrinfo</tt> as described above.</t>
    </section>
    <section anchor="sec-considerations">
      <name>Security Considerations</name>
      <t>The <tt>next-hop-aliases</tt> parameter does not include any DNSSEC information or imply that DNSSEC was used.
The information included in the parameter can only be trusted to be valid insofar as the client
trusts the proxy to provide accurate information. This information is intended to be used as
a hint, and SHOULD NOT be used for making security decisions about the identity of a resource accessed
through the proxy.</t>
      <t>Inspecting CNAME chains can be used to detect cloaking of trackers or malicious hosts. However, the
CNAME records could be omitted by a recursive or authoritative resolver that is trying to hide this form of cloaking.
In particular, recursive or authoritative resolvers can omit these records for both clients directly performing DNS name
resolution and proxies performing DNS name resolution on behalf of client. A malicious proxy could
also choose to not report these CNAME chains in order to hide the cloaking. In general, clients can
trust information included (or not included) in the <tt>next-hop-aliases</tt> parameter to the degree
that the proxy and any resolvers used by the proxy are trusted.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document registers the "next-hop-aliases" parameter
in the "HTTP Proxy-Status Parameters" registry
&lt;<eref target="https://www.iana.org/assignments/http-proxy-status"/>&gt;.</t>
      <dl>
        <dt>Name:</dt>
        <dd>
          <t>next-hop-aliases</t>
        </dd>
        <dt>Description:</dt>
        <dd>
          <t>A string containing one or more DNS aliases or canonical names used to establish a
proxied connection to the next hop.</t>
        </dd>
        <dt>Reference:</dt>
        <dd>
          <t>This document</t>
        </dd>
      </dl>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="PROXY-STATUS">
          <front>
            <title>The Proxy-Status HTTP Response Header Field</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="P. Sikora" initials="P." surname="Sikora"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This document defines the Proxy-Status HTTP response field to convey the details of an intermediary's response handling, including generated errors.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9209"/>
          <seriesInfo name="DOI" value="10.17487/RFC9209"/>
        </reference>
        <reference anchor="DNS">
          <front>
            <title>Domain names - concepts and facilities</title>
            <author fullname="P. Mockapetris" initials="P." surname="Mockapetris"/>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised basic definition of The Domain Name System. It obsoletes RFC-882. This memo describes the domain style names and their used for host address look up and electronic mail forwarding. It discusses the clients and servers in the domain name system and the protocol used between them.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1034"/>
          <seriesInfo name="DOI" value="10.17487/RFC1034"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="CONNECT-UDP">
          <front>
            <title>Proxying UDP in HTTP</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document describes how to proxy UDP in HTTP, similar to how the HTTP CONNECT method allows proxying TCP in HTTP. More specifically, this document defines a protocol that allows an HTTP client to create a tunnel for UDP communications through an HTTP server that acts as a proxy.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9298"/>
          <seriesInfo name="DOI" value="10.17487/RFC9298"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <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">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <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="STRUCTURED-FIELDS">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="P-H. Kamp" surname="P-H. Kamp"/>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8941"/>
          <seriesInfo name="DOI" value="10.17487/RFC8941"/>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="COOKIES">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol. Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet. This document obsoletes RFC 2965. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="RFC1035">
          <front>
            <title>Domain names - implementation and specification</title>
            <author fullname="P. Mockapetris" initials="P." surname="Mockapetris"/>
            <date month="November" year="1987"/>
            <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="RFC3493">
          <front>
            <title>Basic Socket Interface Extensions for IPv6</title>
            <author fullname="R. Gilligan" initials="R." surname="Gilligan"/>
            <author fullname="S. Thomson" initials="S." surname="Thomson"/>
            <author fullname="J. Bound" initials="J." surname="Bound"/>
            <author fullname="J. McCann" initials="J." surname="McCann"/>
            <author fullname="W. Stevens" initials="W." surname="Stevens"/>
            <date month="February" year="2003"/>
            <abstract>
              <t>The de facto standard Application Program Interface (API) for TCP/IP applications is the "sockets" interface. Although this API was developed for Unix in the early 1980s it has also been implemented on a wide variety of non-Unix systems. TCP/IP applications written using the sockets API have in the past enjoyed a high degree of portability and we would like the same portability with IPv6 applications. But changes are required to the sockets API to support IPv6 and this memo describes these changes. These include a new socket address structure to carry IPv6 addresses, new address conversion functions, and some new socket options. These extensions are designed to provide access to the basic IPv6 features required by TCP and UDP applications, including multicasting, while introducing a minimum of change into the system and providing complete compatibility for existing IPv4 applications. Additional extensions for advanced IPv6 features (raw sockets and access to the IPv6 extension headers) are defined in another document. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3493"/>
          <seriesInfo name="DOI" value="10.17487/RFC3493"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
