<?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.19 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-masque-quic-proxy-04" category="exp" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.23.2 -->
  <front>
    <title abbrev="QUIC Proxy">QUIC-Aware Proxying Using HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-masque-quic-proxy-04"/>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <author initials="E." surname="Rosenberg" fullname="Eric Rosenberg">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>eric_rosenberg@apple.com</email>
      </address>
    </author>
    <author initials="D." surname="Schinazi" fullname="David Schinazi">
      <organization>Google LLC</organization>
      <address>
        <postal>
          <street>1600 Amphitheatre Parkway</street>
          <city>Mountain View, California 94043</city>
          <country>United States of America</country>
        </postal>
        <email>dschinazi.ietf@gmail.com</email>
      </address>
    </author>
    <date year="2024" month="October" day="19"/>
    <area>Transport</area>
    <workgroup>MASQUE</workgroup>
    <keyword>quic</keyword>
    <keyword>http</keyword>
    <keyword>datagram</keyword>
    <keyword>udp</keyword>
    <keyword>proxy</keyword>
    <keyword>tunnels</keyword>
    <keyword>quic in quic</keyword>
    <keyword>turtles all the way down</keyword>
    <keyword>masque</keyword>
    <keyword>http-ng</keyword>
    <abstract>
      <?line 70?>

<t>This document extends UDP Proxying over HTTP to add optimizations for proxied
QUIC connections. Specifically, it allows a proxy to reuse UDP 4-tuples for multiple
proxied connections, and adds a mode of proxying in which QUIC short header packets
can be forwarded and transformed through a HTTP/3 proxy rather than being fully
re-encapsulated and re-encrypted.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://ietf-wg-masque.github.io/draft-ietf-masque-quic-proxy/draft-ietf-masque-quic-proxy.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-masque-quic-proxy/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        MASQUE Working Group mailing list (<eref target="mailto:masque@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/masque/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/masque/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-masque/draft-ietf-masque-quic-proxy"/>.</t>
    </note>
  </front>
  <middle>
    <?line 78?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>UDP Proxying over HTTP <xref target="CONNECT-UDP"/>
defines a way to send datagrams through an HTTP proxy, where UDP is used to communicate
between the proxy and a target server. This can be used to proxy QUIC
connections <xref target="QUIC"/>, since QUIC runs over UDP datagrams.</t>
      <t>This document uses the term "target" to refer to the server that a client is
accessing via a proxy. This target may be an origin server hosting content, or
another proxy for cases where proxies are chained together.</t>
      <t>This document extends the UDP proxying protocol to add signalling about QUIC
Connection IDs. QUIC Connection IDs are used to identify QUIC connections in
scenarios where there is not a strict one-to-one mapping between QUIC
connections and UDP 4-tuples (pairs of IP addresses and ports).</t>
      <t>Once a proxy is aware of QUIC Connection IDs, it can reuse UDP 4-tuples between
itself and a target for multiple proxied QUIC connections.</t>
      <t>For proxies that are themselves running on HTTP/3 <xref target="HTTP3"/>, and thus
are accessed by clients over QUIC, QUIC Connection IDs can be used to treat
packets differently on the link between clients and proxies. New QUIC Connection IDs
can be assigned to perform transformations to the packets that allow for efficient
forwarding of packets that don't require full re-encapsulation and re-encryption
of proxied QUIC packets within datagrams inside the QUIC connection between
clients and proxies.</t>
      <t>This document defines two modes for proxying QUIC connections, "tunnelled" and
"forwarded":</t>
      <ol spacing="normal" type="1"><li>
          <t>Tunnelled is the default mode for UDP proxying, defined in <xref target="CONNECT-UDP"/>.
In this mode, packets in QUIC connection between the client and target are
encapsulated inside the QUIC connection between the client and proxy.
These packets use multiple layers of encryption and congestion control.</t>
        </li>
        <li>
          <t>Forwarded is the mode of proxying added by this document. In this mode,
packets in the QUIC connection between the client and target are sent with dedicated
QUIC Connection IDs between the client and proxy, and use special-purpose
tranforms instead of full re-encapsulation and re-encryption.</t>
        </li>
      </ol>
      <t>QUIC long header packets between clients and targets MUST be proxied in tunnelled
mode. QUIC short header packets between clients and targets MAY be proxied in
forwarded mode, subject to negotiation between a client and a proxy.</t>
      <t>Forwarded mode is an optimization to reduce CPU and memory cost to clients and
proxies and avoid encapsulation overhead for packets on the wire that reduce
the effective MTU (Maximum Transmission Unit). This makes it suitable for
deployment situations that otherwise relied on cleartext TCP
proxies, which cannot support QUIC and have inferior security and privacy
properties.</t>
      <t>The properties provided by the forwarded mode are as follows:</t>
      <ul spacing="normal">
        <li>
          <t>All packets sent between the client and the target traverse through the proxy
device.</t>
        </li>
        <li>
          <t>The target server cannot know the IP address of the client solely based on the
proxied packets the target receives.</t>
        </li>
        <li>
          <t>Observers of either or both of the links between client and proxy and between
proxy and target are not able to learn more about the client-to-target
communication than if no proxy was used.</t>
        </li>
      </ul>
      <t>Forwarded mode does not prevent correlation of packets on the link between
client and proxy and the link between proxy and target by an entity that
can observe both links. The precise risks depend on the negotiated transform
(<xref target="transforms"/>). See <xref target="security"/> for further discussion.</t>
      <t>Both clients and proxies can unilaterally choose to disable forwarded mode for
any client-to-target connection.</t>
      <t>The forwarded mode of proxying is only defined for HTTP/3 <xref target="HTTP3"/> and not
any earlier versions of HTTP.</t>
      <t>QUIC proxies only need to understand the Header Form bit, and the connection ID
fields from packets in client-to-target QUIC connections. Since these fields
are all in the QUIC invariants header <xref target="INVARIANTS"/>, QUIC proxies can
proxy all versions of QUIC.</t>
      <section anchor="conventions">
        <name>Conventions and Definitions</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.</t>
      </section>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>This document uses the following terms:</t>
        <ul spacing="normal">
          <li>
            <t>Client: the client of all QUIC connections discussed in this document.</t>
          </li>
          <li>
            <t>Proxy: the endpoint that responds to the UDP proxying request.</t>
          </li>
          <li>
            <t>Target: the server that a client is accessing via a proxy.</t>
          </li>
          <li>
            <t>Client-to-proxy 4-tuple: the UDP 4-tuple (client IP address, client UDP port,
proxy IP address, proxy UDP port) used to communicate between the client and
the proxy.</t>
          </li>
          <li>
            <t>Proxy-to-target 4-tuple: the UDP 4-tuple (proxy IP address, proxy UDP port,
target IP address, target UDP port) used to communicate between the proxy and
the target.</t>
          </li>
          <li>
            <t>Client Connection ID (CID): a QUIC Connection ID that is chosen by the client, and
is used in the Destination Connection ID field of packets from the target to
the client.</t>
          </li>
          <li>
            <t>Target Connection ID (CID): a QUIC Connection ID that is chosen by the target, and
is used in the Destination Connection ID field of packets from the client to
the target.</t>
          </li>
          <li>
            <t>Virtual Connection ID (VCID): a fake QUIC Connection ID chosen by the proxy
that is used on the client-to-proxy 4-tuple in forwarded mode.</t>
          </li>
          <li>
            <t>Client VCID: a VCID used by the proxy to send forwarded packets from the target
to the client.</t>
          </li>
          <li>
            <t>Target VCID: a VCID used by the client to send forwarded packets to the target
via the proxy.</t>
          </li>
          <li>
            <t>Packet Transform: the procedure used to modify packets before they enter the
client-proxy link.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="protocol-overview">
      <name>Protocol Overview</name>
      <t>QUIC-aware proxying involves a client, a proxy, and a target. Although
multiple proxies can be chained together in sequence (which is
a main motivation for enabling forwarded mode), each subsequent proxy
is just treated as a target by the preceding proxy.</t>
      <figure anchor="overview-diagram">
        <name>Diagram of roles in QUIC-aware proxying</name>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="224" width="496" viewBox="0 0 496 224" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,32 L 8,96" fill="none" stroke="black"/>
              <path d="M 80,32 L 80,96" fill="none" stroke="black"/>
              <path d="M 200,32 L 200,96" fill="none" stroke="black"/>
              <path d="M 296,32 L 296,96" fill="none" stroke="black"/>
              <path d="M 416,32 L 416,96" fill="none" stroke="black"/>
              <path d="M 488,32 L 488,96" fill="none" stroke="black"/>
              <path d="M 8,32 L 80,32" fill="none" stroke="black"/>
              <path d="M 200,32 L 296,32" fill="none" stroke="black"/>
              <path d="M 416,32 L 488,32" fill="none" stroke="black"/>
              <path d="M 80,64 L 200,64" fill="none" stroke="black"/>
              <path d="M 296,64 L 416,64" fill="none" stroke="black"/>
              <path d="M 8,96 L 80,96" fill="none" stroke="black"/>
              <path d="M 200,96 L 296,96" fill="none" stroke="black"/>
              <path d="M 416,96 L 488,96" fill="none" stroke="black"/>
              <path d="M 40,128 L 128,128" fill="none" stroke="black"/>
              <path d="M 368,128 L 456,128" fill="none" stroke="black"/>
              <path d="M 40,176 L 56,176" fill="none" stroke="black"/>
              <path d="M 200,176 L 216,176" fill="none" stroke="black"/>
              <path d="M 280,176 L 296,176" fill="none" stroke="black"/>
              <path d="M 440,176 L 456,176" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="464,176 452,170.4 452,181.6" fill="black" transform="rotate(0,456,176)"/>
              <polygon class="arrowhead" points="464,128 452,122.4 452,133.6" fill="black" transform="rotate(0,456,128)"/>
              <polygon class="arrowhead" points="288,176 276,170.4 276,181.6" fill="black" transform="rotate(180,280,176)"/>
              <polygon class="arrowhead" points="224,176 212,170.4 212,181.6" fill="black" transform="rotate(0,216,176)"/>
              <polygon class="arrowhead" points="48,176 36,170.4 36,181.6" fill="black" transform="rotate(180,40,176)"/>
              <polygon class="arrowhead" points="48,128 36,122.4 36,133.6" fill="black" transform="rotate(180,40,128)"/>
              <g class="text">
                <text x="44" y="68">Client</text>
                <text x="248" y="68">Proxy</text>
                <text x="452" y="68">Target</text>
                <text x="204" y="132">Client-to-target</text>
                <text x="316" y="132">connection</text>
                <text x="128" y="180">Client-to-proxy</text>
                <text x="368" y="180">Proxy-to-target</text>
                <text x="120" y="196">4-tuple</text>
                <text x="368" y="196">4-tuple</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
   +--------+              +-----------+              +--------+
   |        |              |           |              |        |
   | Client +--------------+   Proxy   +--------------+ Target |
   |        |              |           |              |        |
   +--------+              +-----------+              +--------+

       <----------- Client-to-target connection ----------->


       <-- Client-to-proxy -->       <-- Proxy-to-target -->
              4-tuple                        4-tuple
]]></artwork>
        </artset>
      </figure>
      <t>All QUIC-aware proxying relies on the proxy learning information about
QUIC connection IDs on the client-to-target QUIC connection (<xref target="cid-awareness"/>).</t>
      <t>Forwarded mode adds the concept of Virtual Connection IDs that are assigned
by the proxy to use to identify packets on the client-to-proxy 4-tuple (<xref target="vcids"/>).</t>
      <t>Negotation of modes and assignment of connection IDs is described in <xref target="negotiation"/>.</t>
      <section anchor="cid-awareness">
        <name>Connection ID Awareness</name>
        <t>For a proxy to be aware of proxied QUIC connection IDs, it needs to know and
correlate three values:</t>
        <ol spacing="normal" type="1"><li>
            <t>The HTTP stream used to proxy a client-to-target QUIC connection</t>
          </li>
          <li>
            <t>The client-chosen connection ID on the client-to-target QUIC connection,
or the "client CID"</t>
          </li>
          <li>
            <t>The target-chosen connection ID on the client-to-target QUIC connection,
or the "target CID"</t>
          </li>
        </ol>
        <t>For example, consider a proxy using HTTP/3 that has two clients (A and B) connected
simultaneously, each client coming from a different IP address and port.
Each client makes a request to proxy a UDP flow to "target.example.net" on
port 443. If the proxy knows that client A's connection to the target
has negotiated a client CID <tt>AAAA0000</tt> and a target CID <tt>0000AAAA</tt>, and client B's
connection to the target has negotiated a client CID <tt>BBBB0000</tt> and a target CID
<tt>0000BBBB</tt>, then the proxy would be able to use the same proxy-to-target 4-tuple
for both connections, because it can route packets from the target to the
correct client based on CID <tt>AAAA0000</tt> or <tt>BBBB0000</tt>.</t>
        <figure anchor="sharing-tuple-diagram">
          <name>Example of sharing a proxy-to-target 4-tuple</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="288" width="496" viewBox="0 0 496 288" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,64 L 8,112" fill="none" stroke="black"/>
                <path d="M 8,176 L 8,224" fill="none" stroke="black"/>
                <path d="M 80,64 L 80,112" fill="none" stroke="black"/>
                <path d="M 80,176 L 80,224" fill="none" stroke="black"/>
                <path d="M 200,64 L 200,224" fill="none" stroke="black"/>
                <path d="M 296,64 L 296,224" fill="none" stroke="black"/>
                <path d="M 416,112 L 416,176" fill="none" stroke="black"/>
                <path d="M 488,112 L 488,176" fill="none" stroke="black"/>
                <path d="M 40,32 L 120,32" fill="none" stroke="black"/>
                <path d="M 376,32 L 456,32" fill="none" stroke="black"/>
                <path d="M 8,64 L 80,64" fill="none" stroke="black"/>
                <path d="M 200,64 L 296,64" fill="none" stroke="black"/>
                <path d="M 80,80 L 200,80" fill="none" stroke="black"/>
                <path d="M 8,112 L 80,112" fill="none" stroke="black"/>
                <path d="M 416,112 L 488,112" fill="none" stroke="black"/>
                <path d="M 296,144 L 416,144" fill="none" stroke="black"/>
                <path d="M 8,176 L 80,176" fill="none" stroke="black"/>
                <path d="M 416,176 L 488,176" fill="none" stroke="black"/>
                <path d="M 80,208 L 200,208" fill="none" stroke="black"/>
                <path d="M 8,224 L 80,224" fill="none" stroke="black"/>
                <path d="M 200,224 L 296,224" fill="none" stroke="black"/>
                <path d="M 40,256 L 120,256" fill="none" stroke="black"/>
                <path d="M 376,256 L 456,256" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="464,256 452,250.4 452,261.6" fill="black" transform="rotate(0,456,256)"/>
                <polygon class="arrowhead" points="464,32 452,26.4 452,37.6" fill="black" transform="rotate(0,456,32)"/>
                <polygon class="arrowhead" points="48,256 36,250.4 36,261.6" fill="black" transform="rotate(180,40,256)"/>
                <polygon class="arrowhead" points="48,32 36,26.4 36,37.6" fill="black" transform="rotate(180,40,32)"/>
                <g class="text">
                  <text x="156" y="36">Client</text>
                  <text x="232" y="36">A-to-target</text>
                  <text x="324" y="36">connection</text>
                  <text x="68" y="52">AAAA0000</text>
                  <text x="428" y="52">0000AAAA</text>
                  <text x="44" y="84">Client</text>
                  <text x="40" y="100">A</text>
                  <text x="348" y="132">Shared</text>
                  <text x="248" y="148">Proxy</text>
                  <text x="452" y="148">Target</text>
                  <text x="352" y="164">4-tuple</text>
                  <text x="44" y="196">Client</text>
                  <text x="40" y="212">B</text>
                  <text x="68" y="244">BBBB0000</text>
                  <text x="428" y="244">0000BBBB</text>
                  <text x="156" y="260">Client</text>
                  <text x="232" y="260">B-to-target</text>
                  <text x="324" y="260">connection</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
       <---------- Client A-to-target connection ---------->
       AAAA0000                                     0000AAAA
   +--------+              +-----------+
   | Client +--------------+           +
   |   A    |              |           |
   +--------+              |           |              +--------+
                           |           |   Shared     |        |
                           |   Proxy   +--------------+ Target |
                           |           |   4-tuple    |        |
   +--------+              |           |              +--------+
   | Client |              |           |
   |   B    +--------------+           |
   +--------+              +-----------+
       BBBB0000                                     0000BBBB
       <---------- Client B-to-target connection ---------->
]]></artwork>
          </artset>
        </figure>
        <t>In order to share a proxy-to-target 4-tuple between multiple proxied connections,
the proxy MUST guarantee that the client CIDs do not conflict. See <xref target="conflicts"/>
for more discussion of handlng CID conflicts.</t>
      </section>
      <section anchor="vcids">
        <name>Virtual Connection IDs</name>
        <t>Virtual Connection IDs (VCIDs) are QUIC Connection IDs used on the link between a
client and proxy that do not belong to the QUIC connection between the client
and proxy, but instead are aliases for particular client-to-target connections.
VCIDs are only used in forwarded mode. They are established using HTTP capsules
<xref target="HTTP-CAPSULES"/> as described in <xref target="cid-capsules"/>.</t>
        <t>For example, consider a proxy using HTTP/3 that has a single client connected
to it. The client-to-proxy QUIC connection has <tt>CCCC0000</tt> as the client CID
and <tt>0000CCCC</tt> as the proxy CID. The client has connected to a single target
through the proxy, and the client-to-target QUIC connection has <tt>CCCC1111</tt>
as the client CID and <tt>1111CCCC</tt> as the target CID. In order to use
forwarded mode, the proxy assigns VCIDs to use on the client-to-proxy link
to represent the client-to-target connection. In this case, the VCIDs could
be <tt>CCCC2222</tt> for the client's VCID and <tt>2222CCCC</tt> for the proxy's VCID that
it uses to forward to the target.</t>
        <figure anchor="vcid-diagram">
          <name>Diagram of VCIDs in forwarded mode</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="304" width="504" viewBox="0 0 504 304" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 16,32 L 16,96" fill="none" stroke="black"/>
                <path d="M 88,32 L 88,96" fill="none" stroke="black"/>
                <path d="M 208,32 L 208,96" fill="none" stroke="black"/>
                <path d="M 304,32 L 304,96" fill="none" stroke="black"/>
                <path d="M 424,32 L 424,96" fill="none" stroke="black"/>
                <path d="M 496,32 L 496,96" fill="none" stroke="black"/>
                <path d="M 16,32 L 88,32" fill="none" stroke="black"/>
                <path d="M 208,32 L 304,32" fill="none" stroke="black"/>
                <path d="M 424,32 L 496,32" fill="none" stroke="black"/>
                <path d="M 88,64 L 208,64" fill="none" stroke="black"/>
                <path d="M 304,64 L 424,64" fill="none" stroke="black"/>
                <path d="M 16,96 L 88,96" fill="none" stroke="black"/>
                <path d="M 208,96 L 304,96" fill="none" stroke="black"/>
                <path d="M 424,96 L 496,96" fill="none" stroke="black"/>
                <path d="M 48,144 L 64,144" fill="none" stroke="black"/>
                <path d="M 208,144 L 224,144" fill="none" stroke="black"/>
                <path d="M 48,208 L 136,208" fill="none" stroke="black"/>
                <path d="M 376,208 L 464,208" fill="none" stroke="black"/>
                <path d="M 48,256 L 64,256" fill="none" stroke="black"/>
                <path d="M 208,256 L 224,256" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="472,208 460,202.4 460,213.6" fill="black" transform="rotate(0,464,208)"/>
                <polygon class="arrowhead" points="232,256 220,250.4 220,261.6" fill="black" transform="rotate(0,224,256)"/>
                <polygon class="arrowhead" points="232,144 220,138.4 220,149.6" fill="black" transform="rotate(0,224,144)"/>
                <polygon class="arrowhead" points="56,256 44,250.4 44,261.6" fill="black" transform="rotate(180,48,256)"/>
                <polygon class="arrowhead" points="56,208 44,202.4 44,213.6" fill="black" transform="rotate(180,48,208)"/>
                <polygon class="arrowhead" points="56,144 44,138.4 44,149.6" fill="black" transform="rotate(180,48,144)"/>
                <g class="text">
                  <text x="52" y="68">Client</text>
                  <text x="256" y="68">Proxy</text>
                  <text x="460" y="68">Target</text>
                  <text x="76" y="132">CCCC0000</text>
                  <text x="196" y="132">0000CCCC</text>
                  <text x="136" y="148">Client-to-proxy</text>
                  <text x="140" y="164">connection</text>
                  <text x="76" y="196">CCCC1111</text>
                  <text x="436" y="196">1111CCCC</text>
                  <text x="212" y="212">Client-to-target</text>
                  <text x="324" y="212">connection</text>
                  <text x="36" y="244">CCCC2222</text>
                  <text x="116" y="244">(CCCC1111)</text>
                  <text x="212" y="244">2222CCCC</text>
                  <text x="292" y="244">(1111CCCC)</text>
                  <text x="136" y="260">Client-to-proxy</text>
                  <text x="136" y="276">VCIDs</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
   +--------+              +-----------+              +--------+
   |        |              |           |              |        |
   | Client +--------------+   Proxy   +--------------+ Target |
   |        |              |           |              |        |
   +--------+              +-----------+              +--------+

       CCCC0000       0000CCCC
       <-- Client-to-proxy -->
              connection

       CCCC1111                                     1111CCCC
       <----------- Client-to-target connection ----------->

  CCCC2222 (CCCC1111)   2222CCCC (1111CCCC)
       <-- Client-to-proxy -->
                VCIDs
]]></artwork>
          </artset>
        </figure>
        <t>In order for a proxy to correctly route packets using VCIDs from
client-to-target and target-to-client, the proxy MUST guarantee that
the mappings between VCIDs, CIDs, and 4-tuples are unique. Specifically,
in order to route packets sent by the client, the proxy needs to be able
to observe the VCID and the client-to-proxy 4-tuple, and map them
to a specific target CID and proxy-to-target 4-tuple. In order to route
packets sent by a target, the proxy needs to be able to observe the client
CID and the proxy-to-target 4-tuple, and map them to a specific VCID
and client-to-proxy 4-tuple. Since proxies choose the VCID values, they
can ensure that the VCIDs are distinguishable.</t>
        <t>Servers receiving QUIC packets can employ load balancing
strategies such as those described in <xref target="QUIC-LB"/>
that encode routing information in the connection ID. When operating in
forwarded mode, clients send QUIC packets destined for the target directly
to the proxy. Since these packets are generated using the target CID,
load balancers may not have the necessary information to route packets to the correct proxy. The target VCID
is a VCID chosen by the proxy that the client uses when sending
forwarded mode packets. The proxy replaces the target VCID
with the target CID prior to forwarding the packet to the target.</t>
        <t>Similarly, QUIC requires that connection IDs aren't reused over multiple network
paths to avoid linkability. The client VCID is a connection ID
chosen by the proxy that the proxy uses when sending forwarded mode packets.
The proxy replaces the client CID with the client VCID prior to
forwarding the packet to the client. Clients take advantage of this
to avoid linkability when migrating a client to proxy network path. The Virtual
client CID allows the connection ID bytes to change on the wire
without requiring the connection IDs on the client to target connection change.
To reduce the likelihood of connection ID conflicts, the proxy MUST choose a
client VCID that is at least as long as the original client CID. Similarly,
clients multiplexing connections on the same UDP 4-tuple SHOULD
choose a client CID that's sufficiently long to reduce the likelihood
of a conflict with the proxy-chosen client VCID. The client VCID MUST either be
constructed such that it is unpredictable to the client or to guarantee no
conflicts among all proxies sharing an IP address
and port. See <xref target="security"/> for more discussion on client VCID
construction.</t>
        <t>Clients and Proxies not implementing forwarded mode do not need to consider
VCIDs since all client-to-target datagrams will be encapsulated
within the client-to-proxy connection.</t>
      </section>
      <section anchor="negotiation">
        <name>Negotiating Modes and Connection IDs</name>
        <t>In order to support QUIC-aware proxying, both clients and proxies need
to support capsules <xref target="HTTP-CAPSULES"/>, which is indicated by including
the "Capsule-Protocol" header field in requests and responses. If this header
field is not included, none of the functionality in this document can be used.</t>
        <artwork><![CDATA[
  capsule-protocol = ?1
]]></artwork>
        <t>To support forwarded mode, both clients and proxies need to include
the "Proxy-QUIC-Forwarding" header field, as defined in <xref target="forwarding-header"/>.
This indicates support for forwarded mode, and allows negotiation of
packet transforms to apply when forwarding (<xref target="transforms"/>), along
with any parameters for specific transforms. Clients or proxies that
don't support forwarded mode will not include this header field.</t>
        <artwork><![CDATA[
  proxy-quic-forwarding = ?1; accept-transform=scramble,identity; \
      scramble-key=:abc...789=:
]]></artwork>
        <t>After negotiating support with header fields, clients and proxies use
the capsules defined in <xref target="cid-capsules"/> to communicate information
about CIDs and VCIDs.</t>
        <t>For QUIC-aware proxying without forwarded mode, the steps are as follows:</t>
        <ol spacing="normal" type="1"><li>
            <t>The client sends the <tt>REGISTER_CLIENT_CID</tt> capsule once it selects a
CID that it will use for receiving packets from a target.</t>
          </li>
          <li>
            <t>The proxy sends the <tt>ACK_CLIENT_CID</tt> capsule to acknowledge that CID,
with no associated client VCID; alternatively, the proxy can send the
<tt>CLOSE_CLIENT_CID</tt> if it detects a conflict with another CID.</t>
          </li>
          <li>
            <t>The client sends the <tt>REGISTER_TARGET_CID</tt> capsule as soon as it learns
the target CID on the client-to-target connection.</t>
          </li>
          <li>
            <t>The proxy sends the <tt>ACK_TARGET_CID</tt> capsule to acknowledge that CID,
with no associated target VCID; alternatively, the proxy can send the
<tt>CLOSE_TARGET_CID</tt> if it detects a conflict with another CID.</t>
          </li>
          <li>
            <t>The proxy sends the <tt>MAX_CONNECTION_IDS</tt> capsule to allow additional
registration of new connection IDs via future <tt>REGISTER_CLIENT_CID</tt> and
<tt>REGISTER_TARGET_CID</tt> capsules.</t>
          </li>
          <li>
            <t>Whenever a client or target stops uses a particular CID, the client
sends a <tt>CLOSE_CLIENT_CID</tt> or <tt>CLOSE_TARGET_CID</tt> capsule. The client
can also initiate new <tt>REGISTER_CLIENT_CID</tt> or <tt>REGISTER_TARGET_CID</tt>
exchanges at any time.</t>
          </li>
        </ol>
        <t>For QUIC-aware proxying with forwarded mode, the steps are as follows:</t>
        <ol spacing="normal" type="1"><li>
            <t>The client sends the <tt>REGISTER_CLIENT_CID</tt> capsule once it selects a
CID that it will use for receiving packets from a target.</t>
          </li>
          <li>
            <t>The proxy sends the <tt>ACK_CLIENT_CID</tt> capsule to acknowledge that CID,
with a client VCID; alternatively, the proxy can send the
<tt>CLOSE_CLIENT_CID</tt> if it detects a conflict with another CID.</t>
          </li>
          <li>
            <t>The client sends the <tt>ACK_CLIENT_VCID</tt> capsule to acknowledge the
client VCID, which allows forwarded packets for that VCID to be used.</t>
          </li>
          <li>
            <t>The client sends the <tt>REGISTER_TARGET_CID</tt> capsule as soon as it learns
the target CID on the client-to-target connection.</t>
          </li>
          <li>
            <t>The proxy sends the <tt>ACK_TARGET_CID</tt> capsule to acknowledge that CID,
with a target VCID; alternatively, the proxy can send the
<tt>CLOSE_TARGET_CID</tt> if it detects a conflict with another CID. Once
the client receives the target VCID, it can start sending forwarded
packets using the target VCID.</t>
          </li>
          <li>
            <t>The proxy sends the <tt>MAX_CONNECTION_IDS</tt> capsule to allow additional
registration of new connection IDs via future <tt>REGISTER_CLIENT_CID</tt> and
<tt>REGISTER_TARGET_CID</tt> capsules.</t>
          </li>
          <li>
            <t>Whenever a client or target stops uses a particular CID, the client
sends a <tt>CLOSE_CLIENT_CID</tt> or <tt>CLOSE_TARGET_CID</tt> capsule. The client
can also initiate new <tt>REGISTER_CLIENT_CID</tt> or <tt>REGISTER_TARGET_CID</tt>
exchanges at any time.</t>
          </li>
        </ol>
      </section>
    </section>
    <section anchor="forwarding-header">
      <name>Proxy-QUIC-Forwarding Header</name>
      <t>A client initiates UDP proxying via a CONNECT request as defined
in <xref target="CONNECT-UDP"/>. Within its request, it includes the "Proxy-QUIC-Forwarding"
header to indicate whether or not the request should support forwarding.
If this header is not included, the client MUST NOT send any connection ID
capsules.</t>
      <t>"Proxy-QUIC-Forwarding" is an Item Structured Header <xref target="RFC8941"/>. Its
value MUST be a Boolean.</t>
      <t>If the client wants to enable QUIC packet forwarding for this request, it sets
the value to "?1". If it doesn't want to enable forwarding, but instead only
provide information about QUIC Connection IDs for the purpose of allowing
the proxy to share a proxy-to-target 4-tuple, it sets the value to "?0".</t>
      <t>The client MUST add an "accept-transform" parameter whose value is an
<tt>sf-string</tt> containing the supported packet transforms (<xref target="transforms"/>)
in order of descending preference, separated by commas. If the proxy receives a
"Proxy-QUIC-Forwarding" header without the "accept-transform" parameters, it
MUST ignore the header and respond as if the client had not sent the
"Proxy-QUIC-Forwarding" header.</t>
      <t>If the proxy supports QUIC-aware proxying, it will include the
"Proxy-QUIC-Forwarding" header in successful HTTP responses. The value
indicates whether or not the proxy supports forwarding. If the client does
not receive this header in responses, the client SHALL assume that the proxy
does not support this extension.</t>
      <t>The proxy MUST include a "transform" parameter whose value is an <tt>sf-string</tt>
indicating the selected transform. If the proxy does not recognize or accept
any of the transforms offered by the client, it MUST omit this parameter and
set the header field value to "?0", or omit the header entirely.</t>
    </section>
    <section anchor="cid-capsules">
      <name>Connection ID Capsules</name>
      <t>Connection ID awareness relies on using capsules <xref target="HTTP-CAPSULES"/> to
signal addition and removal of Connection IDs. Clients send capsules
to let proxies know when Connection IDs on the client-to-target
QUIC connection are changing. Proxies send capsules to acknowledge or
reject these Connection IDs, and in forwarded mode to let clients know
about Virtual Connection IDs to use on the client-to-proxy link.</t>
      <t>Note that these capsules do not register contexts. QUIC packets are encoded
using HTTP Datagrams with the context ID set to zero as defined in
<xref target="CONNECT-UDP"/>.</t>
      <t>The REGISTER_CLIENT_CID (<xref target="capsule-reg-client"/>) and REGISTER_TARGET_CID
(<xref target="capsule-reg-target"/>) capsule types allow a client to inform
the proxy about a new client CID or a new target CID,
respectively. These capsule types MUST only be sent by a client. These capsule
types share a sequence number space which allows the proxy to limit the
number of active registrations. The first registration (of either client CID or target CID)
has sequence number 0, and subsequent registrations increment the sequence number
by 1.</t>
      <t>The ACK_CLIENT_CID (<xref target="capsule-ack-client"/>) and ACK_TARGET_CID
(<xref target="capsule-ack-target"/>) capsule types are sent by the proxy to the client
to indicate that a mapping was successfully created for a registered
connection ID as well as optionally provide the Virtual Connection IDs that can be
used in forwarded mode. These capsule types MUST only be sent by a proxy.</t>
      <t>The ACK_CLIENT_VCID (<xref target="capsule-ack-virtual"/>) capsule type MUST only be sent
by the client and only when forwarded mode is enabled. It is sent by the client
to the proxy in response to an ACK_CLIENT_CID capsule to indicate that the client
is ready to receive forwarded mode packets with the specified virtual connection ID.
The proxy MUST NOT send forwarded mode packets to the client prior to receiving this
acknowledgement. This capsule also contains a Stateless Reset Token the client
may respond with when receiving forwarded mode packets with the specified
virtual connection ID.</t>
      <t>The CLOSE_CLIENT_CID and CLOSE_TARGET_CID capsule types (<xref target="capsule-close"/>)
allow either a client or a proxy to remove a mapping for a connection ID.
These capsule types MAY be sent by either a client or the proxy. If a proxy sends a
CLOSE_CLIENT_CID without having sent an ACK_CLIENT_CID, or if a proxy
sends a CLOSE_TARGET_CID without having sent an ACK_TARGET_CID,
it is rejecting a Connection ID registration. Similarly, if a client sends
CLOSE_CLIENT_CID without having sent an ACK_CLIENT_VCID capsule, the client is
either rejecting the proxy-chosen client VCID or no longer
needs the connection ID registered.</t>
      <t>The MAX_CONNECTION_IDS capsule type <xref target="capsule-max-cids"/> MUST only be sent by the
proxy. It indicates to the client the maximum permitted sequence number for
connection ID registrations. This allows the proxy to limit the number of active
registrations. The initial maximum is 1, allowing the client to send 2 registrations,
one with sequence number 0 and another with sequence number 1. A proxy MUST NOT
send a MAX_CONNECTION_IDS capsule with a value less than 1. Clients receiving a
MAX_CONNECTION_IDS capsule with a value less than 1 MUST reset the stream with
H3_DATAGRAM_ERROR error code.</t>
      <section anchor="capsule-reg-client">
        <name>REGISTER_CLIENT_CID</name>
        <t>The REGISTER_CLIENT_CID capsule is sent by the client and contains a single
connection ID that is the client-provided connection ID on the client-to-target QUIC
connection.</t>
        <figure anchor="fig-capsule-register-client-cid">
          <name>Register CID Capsule Format</name>
          <artwork><![CDATA[
Register CID Capsule {
  Type (i) = see {{iana}} for the value of the capsule type
  Length (i),
  Connection ID (0..2040),
}
]]></artwork>
        </figure>
        <dl>
          <dt>Connection ID:</dt>
          <dd>
            <t>A connection ID being registered, which is between 0 and 255 bytes in
length. The length of the connection ID is implied by the length of the
capsule. Note that in QUICv1, the length of the Connection ID is limited
to 20 bytes, but QUIC invariants allow up to 255 bytes.</t>
          </dd>
        </dl>
      </section>
      <section anchor="capsule-reg-target">
        <name>REGISTER_TARGET_CID</name>
        <t>The REGISTER_TARGET_CID capsule is sent by the client and includes the
target-provided connection ID on the client-to-target QUIC connection, and
the corresponding Stateless Reset Token.</t>
        <figure anchor="fig-capsule-register-target-cid">
          <name>Register Target CID Capsule Format</name>
          <artwork><![CDATA[
Register Target CID Capsule {
  Type (i) = see {{iana}} for the value of the capsule type
  Length (i),
  Connection ID Length (i)
  Connection ID (0..2040),
  Stateless Reset Token Length (i),
  Stateless Reset Token (..),
}
]]></artwork>
        </figure>
        <dl>
          <dt>Connection ID Length</dt>
          <dd>
            <t>The length of the connection ID being registered, which is between 0 and
255. Note that in QUICv1, the length of the Connection ID is limited to 20
bytes, but QUIC invariants allow up to 255 bytes.</t>
          </dd>
          <dt>Connection ID</dt>
          <dd>
            <t>A connection ID being registered whose length is equal to Connection ID
Length. This is the real target CID.</t>
          </dd>
          <dt>Stateless Reset Token Length</dt>
          <dd>
            <t>The length of the target-provided Stateless Reset Token.</t>
          </dd>
          <dt>Stateless Reset Token</dt>
          <dd>
            <t>The target-provided Stateless Reset token allowing the proxy to correctly
recognize Stateless Reset packets to be tunnelled to the client.</t>
          </dd>
        </dl>
      </section>
      <section anchor="capsule-ack-client">
        <name>ACK_CLIENT_CID</name>
        <t>The ACK_CLIENT_CID capsule is sent by the proxy in
response to a REGISTER_CLIENT_CID capsule. It optionally assigns a Virtual
Connection ID when forwarded mode is supported.</t>
        <figure anchor="fig-capsule-ack-client-cid">
          <name>Acknowledge Client CID Capsule Format</name>
          <artwork><![CDATA[
Acknowledge Client CID Capsule {
  Type (i) = see {{iana}} for the value of the capsule type
  Length (i)
  Connection ID Length (i)
  Connection ID (0..2040),
  Virtual Connection ID Length (i)
  Virtual Connection ID (0..2040),
}
]]></artwork>
        </figure>
        <dl>
          <dt>Connection ID Length</dt>
          <dd>
            <t>The length of the connection ID being acknowledged, which
is between 0 and 255. Note that in QUICv1, the length of the Connection ID
is limited to 20 bytes, but QUIC invariants allow up to 255 bytes.</t>
          </dd>
          <dt>Connection ID</dt>
          <dd>
            <t>A connection ID being acknowledged whose length is equal to
Connection ID Length. This is the real Cilent Connection ID.</t>
          </dd>
          <dt>Virtual Connection ID Length</dt>
          <dd>
            <t>The length of the client VCID being provided. This MUST be a
valid connection ID length for the QUIC version used in the client-to-proxy QUIC
connection. When forwarded mode is not negotiated, the length MUST be zero.
The Virtual Connection ID Length and Connection ID Length SHOULD be equal
when possible to avoid the need to resize packets during replacement. The
client VCID Length MUST be at least as large as the
Connection ID to reduce the likelihood of connection ID conflicts.</t>
          </dd>
          <dt>Virtual Connection ID</dt>
          <dd>
            <t>The proxy-chosen connection ID that the proxy MUST use when sending in
forwarded mode. The proxy rewrites forwarded mode packets to contain the
correct client VCID prior to sending them to the client.</t>
          </dd>
        </dl>
      </section>
      <section anchor="capsule-ack-target">
        <name>ACK_TARGET_CID</name>
        <t>The ACK_TARGET_CID capsule is sent by the proxy in
response to a REGISTER_TARGET_CID capsule. It optionally assigns a Virtual
Connection ID and Stateless Reset Token if forwarded mode is enabled.</t>
        <figure anchor="fig-capsule-ack-target-cid">
          <name>Acknowledge Target CID Capsule Format</name>
          <artwork><![CDATA[
Acknowledge Target CID Capsule {
  Type (i) = see {{iana}} for the value of the capsule type
  Length (i)
  Connection ID Length (i)
  Connection ID (0..2040),
  Virtual Connection ID Length (i)
  Virtual Connection ID (0..2040),
  Stateless Reset Token Length (i),
  Stateless Reset Token (..),
}
]]></artwork>
        </figure>
        <dl>
          <dt>Connection ID Length</dt>
          <dd>
            <t>The length of the connection ID being acknowledged, which
is between 0 and 255. Note that in QUICv1, the length of the Connection ID
is limited to 20 bytes, but QUIC invariants allow up to 255 bytes.</t>
          </dd>
          <dt>Connection ID</dt>
          <dd>
            <t>A connection ID being acknowledged whose length is equal to
Connection ID Length. This is the real target CID.</t>
          </dd>
          <dt>Virtual Connection ID Length</dt>
          <dd>
            <t>The length of the target VCID being provided. This MUST be a
valid connection ID length for the QUIC version used in the client-to-proxy QUIC
connection. When forwarded mode is not negotiated, the length MUST be zero.
The Virtual Connection ID Length and Connection ID Length SHOULD be equal
when possible to avoid the need to resize packets during replacement.</t>
          </dd>
          <dt>Virtual Connection ID</dt>
          <dd>
            <t>The proxy-chosen connection ID that the client MUST use when sending in
forwarded mode. The proxy rewrites forwarded mode packets to contain the
correct target CID prior to sending them.</t>
          </dd>
          <dt>Stateless Reset Token Length</dt>
          <dd>
            <t>The length of the Stateless Reset Token sent by the proxy in response to
forwarded mode packets in order to reset the client-to-target QUIC connection.
When forwarded mode is not negotiated, the length MUST be zero. Proxies choosing
not to support stateless resets MAY set the length to zero. Clients receiving a
zero-length stateless reset token MUST ignore it.</t>
          </dd>
          <dt>Stateless Reset Token</dt>
          <dd>
            <t>A Stateless Reset Token allowing reset of the client-to-target connection in
response to client-to-target forwarded mode packets.</t>
          </dd>
        </dl>
      </section>
      <section anchor="capsule-ack-virtual">
        <name>ACK_CLIENT_VCID</name>
        <t>The ACK_CLIENT_VCID capsule type is sent by the client in
response to an ACK_TARGET_CID capsule that contains a virtual connection ID.</t>
        <figure anchor="fig-capsule-ack-virtual-client-cid">
          <name>Acknowledge Client VCID Capsule Format</name>
          <artwork><![CDATA[
Acknowledge Client VCID Capsule {
  Type (i) = see {{iana}} for the value of the capsule type
  Length (i)
  Connection ID Length (i)
  Connection ID (0..2040),
  Virtual Connection ID Length (i)
  Virtual Connection ID (0..2040),
  Stateless Reset Token Length (i),
  Stateless Reset Token (..),
}
]]></artwork>
        </figure>
        <dl>
          <dt>Connection ID Length</dt>
          <dd>
            <t>The length of the connection ID being acknowledged, which
is between 0 and 255. Note that in QUICv1, the length of the Connection ID
is limited to 20 bytes, but QUIC invariants allow up to 255 bytes.</t>
          </dd>
          <dt>Connection ID</dt>
          <dd>
            <t>A connection ID being acknowledged whose length is equal to
Connection ID Length. This is the real Cilent Connection ID.</t>
          </dd>
          <dt>Virtual Connection ID Length</dt>
          <dd>
            <t>The length of the client VCID being acknowledged.</t>
          </dd>
          <dt>Virtual Connection ID</dt>
          <dd>
            <t>The proxy-chosen virtual connection ID being acknowledged whose length is
equal to Virtual Connection ID Length.</t>
          </dd>
          <dt>Stateless Reset Token Length</dt>
          <dd>
            <t>The length of the Stateless Reset Token that may be sent by the client in
response to forwarded mode packets to reset the client-to-target connection.
Clients choosing not to support stateless resets MAY set the length to zero.
Proxies receiving a zero-length stateless reset token MUST ignore it.</t>
          </dd>
          <dt>Stateless Reset Token</dt>
          <dd>
            <t>A Stateless Reset Token allowing reset of the target-to-client forwarding rule
in response to target-to-client forwarded mode packets.</t>
          </dd>
        </dl>
      </section>
      <section anchor="capsule-close">
        <name>CLOSE_CLIENT_CID and CLOSE_TARGET_CID</name>
        <t>CLOSE_CLIENT_CID and CLOSE_TARGET_CID capsule types include a single connection ID to close. They
can be sent by either clients or proxies.</t>
        <figure anchor="fig-capsule-close-cid">
          <name>Close CID Capsule Format</name>
          <artwork><![CDATA[
Close CID Capsule {
  Type (i) = see {{iana}} for the values of the capsule types
  Length (i),
  Connection ID (0..2040),
}
]]></artwork>
        </figure>
        <dl>
          <dt>Connection ID:</dt>
          <dd>
            <t>A connection ID being closed, which is between 0 and 255 bytes in
length. The length of the connection ID is implied by the length of the
capsule. Note that in QUICv1, the length of the Connection ID is limited
to 20 bytes, but QUIC invariants allow up to 255 bytes.</t>
          </dd>
        </dl>
      </section>
      <section anchor="capsule-max-cids">
        <name>MAX_CONNECTION_IDS</name>
        <t>The MAX_CONNECTION_IDS capsule is sent by the proxy
to permit additional connection ID registrations.</t>
        <figure anchor="fig-capsule-max-connection-ids">
          <name>Maximum Connection IDs Capsule Format</name>
          <artwork><![CDATA[
Maximum Connection IDs Capsule {
  Type (i) = see {{iana}} for the value of the capsule type
  Length (i)
  Maximum Sequence Number (i)
}
]]></artwork>
        </figure>
        <dl>
          <dt>Maximum Sequence Number</dt>
          <dd>
            <t>The maximum permitted sequence number for connection ID registrations. This MUST
NOT be less than 1.</t>
          </dd>
        </dl>
      </section>
      <section anchor="conflicts">
        <name>Detecting Conflicts</name>
        <t>In order to be able to route packets correctly in both tunnelled and forwarded
mode, proxies check for conflicts before creating a new CID mapping. If a conflict
is detected, the proxy will reject the client's request using a CLOSE_CLIENT_CID
or CLOSE_TARGET_CID capsule.</t>
        <t>Two 4-tuples conflict if and only if all members of the 4-tuple (local IP
address, local UDP port, remote IP address, and remote UDP port) are identical.</t>
        <t>Two Connection IDs conflict if and only if one Connection ID is equal to or a
prefix of another. For example, a zero-length Connection ID conflicts with all
connection IDs. This definition of a conflict originates from the fact that
QUIC short headers do not carry the length of the Destination Connection ID
field, and therefore if two short headers with different Destination Connection
IDs are received on a shared 4-tuple, one being a prefix of the other prevents
the receiver from identifying which mapping this corresponds to.</t>
        <t>The proxy treats two mappings as being in conflict when a conflict is detected
for all elements on the left side of the mapping diagrams above.</t>
        <t>Since very short Connection IDs are more likely to lead to conflicts,
particularly zero-length Connection IDs, a proxy MAY choose to reject all
requests for very short Connection IDs as conflicts, in anticipation of future
conflicts.</t>
      </section>
      <section anchor="client-considerations">
        <name>Client Considerations</name>
        <t>The client sends a REGISTER_CLIENT_CID capsule whenever it advertises a new
client CID to the target, and a REGISTER_TARGET_CID capsule when
it has received a new target CID for the target. In order to change
the connection ID bytes on the wire, a client can solicit new virtual connection
IDs by re-registering the same connection IDs. The client may solicit a new
target VCID by sending a REGISTER_TARGET_CID capsule with a
previously registered target CID. Similarly, the client may solicit a
new client VCID by sending a REGISTER_CLIENT_CID with a
previously registered client CID. The client MUST acknowledge the new
client VCID with an ACK_CLIENT_VCID capsule or close the
registration. The proxy MUST NOT send in forwarded mode until ACK_CLIENT_VCID
has been received. Clients are responsible for changing Virtual Connection IDs
when the HTTP stream's network path changes to avoid linkability across network
paths. Note that initial REGISTER_CLIENT_CID capsules MAY be sent prior to
receiving an HTTP response from the proxy.</t>
        <t>Connection ID registrations are subject to a proxy-advertised limit. Each registration
has a corresponding sequence number. The client MUST NOT send a registration
capsule with a sequence number greater than what the proxy advertises via the
MAX_CONNECTION_IDS capsule. The initial MAX_CONNECTION_IDS value is 1, allowing both
sequence numbers 0 and 1 for a total of two registrations without receiving a
MAX_CONNECTION_IDS capsule from the proxy.</t>
        <t>Clients that cannot register new connection IDs within a reasonable time due to
the MAX_CONNECTION_IDS limit SHOULD abort the proxied connection by resetting the HTTP
stream with error code NO_ERROR. This may happen, for example, if the target server
sends a NEW_CONNECTION_ID frame with Sequence Number and Retire Prior To equal to the
same value.</t>
        <section anchor="new-proxied-connection-setup">
          <name>New Proxied Connection Setup</name>
          <t>To initiate QUIC-aware proxying, the client sends a REGISTER_CLIENT_CID
capsule containing the initial client CID that the client has
advertised to the target.</t>
          <t>If the mapping is created successfully, the client will receive a
ACK_CLIENT_CID capsule that contains the same client CID that was
requested as well as a client VCID that the client MUST use
when sending forwarded mode packets, assuming forwarded mode is supported.</t>
          <t>If forwarded mode is supported, the client MUST respond with an
ACK_CLIENT_VCID to signal to the proxy that it may start sending forwarded mode
packets. If forwarded mode is not supported, an ACK_CLIENT_VCID capsule MUST
NOT be sent.</t>
          <t>Since clients are always aware whether or not they are using a QUIC proxy,
clients are expected to cooperate with proxies in selecting client CIDs.
A proxy detects a conflict when it is not able to create a unique mapping
using the client CID (<xref target="conflicts"/>). It can reject requests that
would cause a conflict and indicate this to the client by replying with a
CLOSE_CLIENT_CID capsule. In order to avoid conflicts, clients SHOULD select
client CIDs of at least 8 bytes in length with unpredictable values.
A client also SHOULD NOT select a client CID that matches the ID used
for the QUIC connection to the proxy, as this inherently creates a conflict.</t>
          <t>If the rejection indicated a conflict due to the client CID, the
client MUST select a new Connection ID before sending a new request, and
generate a new packet. For example, if a client is sending a QUIC Initial
packet and chooses a Connection ID that conflicts with an existing mapping
to the same target server, it will need to generate a new QUIC Initial.</t>
        </section>
        <section anchor="adding-new-client-connection-ids">
          <name>Adding New Client Connection IDs</name>
          <t>Since QUIC connection IDs are chosen by the receiver, an endpoint needs to
communicate its chosen connection IDs to its peer before the peer can start
using them. In QUICv1, this is performed using the NEW_CONNECTION_ID frame.</t>
          <t>Prior to informing the target of a new chosen client CID, the client
MUST send a REGISTER_CLIENT_CID capsule to the proxy containing the new client
CID.</t>
          <t>The client should only inform the target of the new client CID once an
ACK_CLIENT_CID capsule is received that contains the echoed connection ID.</t>
          <t>If forwarded mode is enabled, the client MUST reply to the ACK_CLIENT_CID with
an ACK_CLIENT_VCID capsule with the real and virtual connection IDs along with
an optional Stateless Reset Token.</t>
        </section>
      </section>
      <section anchor="proxy-considerations">
        <name>Proxy Considerations</name>
        <t>The proxy MUST reply to each REGISTER_CLIENT_CID capsule with either
an ACK_CLIENT_CID or CLOSE_CLIENT_CID capsule containing the
Connection ID that was in the registration capsule.</t>
        <t>Similarly, the proxy MUST reply to each REGISTER_TARGET_CID capsule with
either an ACK_TARGET_CID or CLOSE_TARGET_CID capsule containing the
Connection ID that was in the registration capsule.</t>
        <t>The proxy then determines the proxy-to-target 4-tuple to associate with the
client's request. This will generally involve performing a DNS lookup for
the target hostname in the CONNECT request, or finding an existing proxy-to-target
4-tuple to the authority. The proxy-to-target 4-tuple might already be open due to a
previous request from this client, or another. If the 4-tuple is not already
created, the proxy creates a new one. Proxies can choose to reuse proxy-to-target
4-tuples across multiple UDP proxying requests, or have a unique proxy-to-target 4-tuple
for every UDP proxying request.</t>
        <t>If a proxy reuses proxy-to-target 4-tuples, it SHOULD store which authorities
(which could be a domain name or IP address literal) are being accessed over a
particular proxy-to-target 4-tuple so it can avoid performing a new DNS query and
potentially choosing a different target server IP address which could map to a
different target server.</t>
        <t>Proxy-to-target 4-tuples MUST NOT be reused across QUIC and non-QUIC UDP proxy
requests, since it might not be possible to correctly demultiplex or direct
the traffic. Any packets received on a proxy-to-target 4-tuple used for proxying
QUIC that does not correspond to a known CID MUST be dropped.</t>
        <t>When the proxy recieves a REGISTER_CLIENT_CID capsule, it is receiving a
request to be able to route traffic matching the client CID back to
the client using. If the pair of this client CID and the selected
proxy-to-target 4-tuple does not create a conflict, the proxy creates the mapping
and responds with an ACK_CLIENT_CID capsule. If forwarded mode is enabled, the
capsule contains a proxy-chosen client VCID. If forwarded mode
is enabled, and after receiving an ACK_CLIENT_VCID capsule from the client, any
packets received by the proxy from the proxy-to-target 4-tuple that match the
client CID can to be sent to the client after the proxy has replaced
the CID with the client VCID. If forwarded mode is
not supported, the proxy MUST NOT send a client VCID by setting
the length to zero. The proxy MUST use tunnelled mode (HTTP Datagram frames) for
any long header packets. The proxy SHOULD forward directly to the client for any
matching short header packets if forwarding is supported by the client, but the
proxy MAY tunnel these packets in HTTP Datagram frames instead. If the mapping
would create a conflict, the proxy responds with a CLOSE_CLIENT_CID capsule.</t>
        <t>When the proxy recieves a REGISTER_TARGET_CID capsule, it is receiving a
request to allow the client to forward packets to the target. The proxy
generates a target VCID for the client to use when sending
packets in forwarded mode. If forwarded mode is not supported, the proxy MUST
NOT send a target VCID by setting the length to zero. If
forwarded mode is supported, the proxy MUST use a target VCID
that does not introduce a conflict with any other Connection ID on the
client-to-proxy 4-tuple. The proxy creates the mapping and responds with an
ACK_TARGET_CID capsule. Once the successful response is sent, the proxy will
forward any short header packets received on the client-to-proxy 4-tuple that use
the target VCID using the correct proxy-to-target 4-tuple after
first rewriting the target VCID to be the correct target CID.</t>
        <t>Proxies MUST choose unpredictable client and target VCIDs to
avoid forwarding loop attacks.</t>
        <t>The proxy MUST only forward non-tunnelled packets from the client that are QUIC
short header packets (based on the Header Form bit) and have mapped target VCIDs.
Packets sent by the client that are forwarded SHOULD be
considered as activity for restarting QUIC's Idle Timeout <xref target="QUIC"/>.</t>
        <t>In order to permit the client to change client-to-target connection IDs, the proxy
SHOULD send MAX_CONNECTION_IDS capsules allowing the client additional connection ID
registrations.</t>
        <section anchor="closing-proxy-state">
          <name>Closing Proxy State</name>
          <t>For any registration capsule for which the proxy has sent an acknowledgement, any
mappings last until either endpoint sends a close capsule or the either side of the
HTTP stream closes.</t>
          <t>A client that no longer wants a given Connection ID to be forwarded by the
proxy sends a CLOSE_CLIENT_CID or CLOSE_TARGET_CID capsule.</t>
          <t>If a client's connection to the proxy is terminated for any reason, all
mappings associated with all requests are removed.</t>
          <t>A proxy can close its proxy-to-target 4-tuple once all UDP proxying requests mapped to
that 4-tuple have been removed.</t>
        </section>
      </section>
    </section>
    <section anchor="using-forwarded-mode">
      <name>Using Forwarded Mode</name>
      <t>All packets sent in forwarded mode use a transform in which CIDs are switched
into VCIDs, and the contents of packets are either left the same, or modified
(<xref target="transforms"/>).</t>
      <t>Forwarded mode also raises special considerations for handling connection
maintenance (<xref target="maintenance"/>), connection migration (<xref target="migration"/>),
ECN markings (<xref target="ecn"/>), and stateless resets (<xref target="resets"/>).</t>
      <section anchor="sending-with-forwarded-mode">
        <name>Sending With Forwarded Mode</name>
        <t>Support for forwarded mode is determined by the "Proxy-QUIC-Forwarding" header,
see <xref target="forwarding-header"/>.</t>
        <t>Once the client has learned the target server's Connection ID, such as in the
response to a QUIC Initial packet, it can send a REGISTER_TARGET_CID capsule
containing the target CID to request the ability to forward packets.</t>
        <t>The client MUST wait for an ACK_TARGET_CID capsule that contains the echoed
connection ID and target VCID before using forwarded mode.</t>
        <t>Prior to receiving the proxy server response, the client MUST send short header
packets tunnelled in HTTP Datagram frames. The client MAY also choose to tunnel
some short header packets even after receiving the successful response.</t>
        <t>If the target CID registration is rejected, for example with a
CLOSE_TARGET_CID capsule, it MUST NOT forward packets to the requested target CID,
but only use tunnelled mode. The request might also be rejected
if the proxy does not support forwarded mode or has it disabled by policy.</t>
        <t>QUIC long header packets MUST NOT be forwarded. These packets can only be
tunnelled within HTTP Datagram frames to avoid exposing unnecessary connection
metadata.</t>
        <t>When forwarding, the client sends a QUIC packet with the target VCID
in the QUIC short header, using the same 4-tuple between client and
proxy that was used for the main QUIC connection between client and proxy.</t>
        <t>When forwarding, the proxy sends a QUIC packet with the client VCID
in the QUIC short header, using the same 4-tuple between client
and proxy that was used for the main QUIC connection between client and proxy.</t>
        <t>Prior to sending a forwarded mode packet, the sender MUST replace the Connection
ID with the Virtual Connection ID. If the Virtual Connection ID is larger than
the Connection ID, the sender MUST extend the length of the packet by the
difference between the two lengths, to include the entire Virtual Connection ID.
If the Virtual Connection ID is smaller than the Connection ID, the sender MUST
shrink the length of the packet by the difference between the two lengths.</t>
        <t>Clients and proxies supporting forwarded mode MUST be able to handle Virtual
Connection IDs of different lengths than the corresponding Connection IDs.</t>
      </section>
      <section anchor="receiving-with-forwarded-mode">
        <name>Receiving With Forwarded Mode</name>
        <t>If the client has indicated support for forwarded mode with the "Proxy-QUIC-Forwarding"
header, the proxy MAY use forwarded mode for any client CID for which
it has a valid mapping.</t>
        <t>Once a client has sent an ACK_CLIENT_VCID capsule to the proxy, it MUST be
prepared to receive forwarded short header packets on the 4-tuple between itself
and the proxy for the specified client VCID.</t>
        <t>The client uses the Destination Connection ID field of the received packet to
determine if the packet was originated by the proxy, or merely forwarded from
the target. The client replaces the client VCID with the real
client CID before processing the packet further.</t>
      </section>
      <section anchor="transforms">
        <name>Packet Transforms</name>
        <t>A packet transform is the procedure applied to encode packets as they are sent
on the link between the client and proxy, along with the inverse decode step applied
on receipt. Simple transforms can be modeled as a function as follows:</t>
        <t>Inputs:</t>
        <ol spacing="normal" type="1"><li>
            <t>A QUIC short header packet (after Connection ID remapping).</t>
          </li>
          <li>
            <t>The mode (encode or decode).</t>
          </li>
          <li>
            <t>The direction (client-to-proxy or proxy-to-client).</t>
          </li>
          <li>
            <t>Any configuration information negotiated at startup.</t>
          </li>
        </ol>
        <t>Output:</t>
        <ul spacing="normal">
          <li>
            <t>A UDP payload that conforms to the QUIC invariants <xref target="RFC8999"/> and does not
modify the Connection ID.</t>
          </li>
        </ul>
        <t>More complex transform behaviors could have internal state, but no such transforms
are presented here.</t>
        <t>Packet transforms are identified by an IANA-registered name, and negotiated in
the HTTP headers (see <xref target="forwarding-header"/>).  This document defines two initial
transforms: the <tt>identity</tt> transform and the <tt>scramble</tt> transform.</t>
        <section anchor="identity-transform">
          <name>The identify transform</name>
          <t>The <tt>identity</tt> transform does not modify the packet in any way.  When this transform
is in use, a global passive adversary can trivially correlate pairs of packets
that crossed the forwarder, providing a compact proof that a specific client
was communicating to a specific target.</t>
          <t>The <tt>identity</tt> transform is identified by the value "identity" <xref target="iana-transforms"/>.</t>
          <t>Use of this transform is NOT RECOMMENDED if the <tt>scramble</tt> transform is supported
by both the client and the proxy. Implementations MAY choose to not implement or
support the <tt>identity</tt> transform, depending on the use cases and privacy requirements of
the deployment.</t>
        </section>
        <section anchor="scramble-transform">
          <name>The scramble transform</name>
          <t>The <tt>scramble</tt> transform implements length-preserving unauthenticated
re-encryption of QUIC packets while preserving the QUIC invariants.  When
the <tt>scramble</tt> transform is in use, a global passive adversary cannot simply compare the packet
contents on both sides of the proxy
to link the client and target.  However, the <tt>scramble</tt> transform does not defend against
analysis of packet sizes and timing, nor does it protect privacy against an
active attacker.</t>
          <t>Deployments that implement the version of the <tt>scramble</tt> transform defined in this
document MUST use the value "scramble-dt". The finalized version is expected
to use the reserved value "scramble" <xref target="iana-transforms"/>.</t>
          <t>The <tt>scramble</tt> transform is initialized using a 32-byte random symmetric key.
When offering or selecting this transform, the client and server each
generate the key that they will use to encrypt scrambled packets and MUST add it to the
"Proxy-QUIC-Transform" header in an <tt>sf-binary</tt> parameter named "scramble-key".
If either side receives a <tt>scramble</tt> transform without the "scramble-key" parameter,
forwarded mode MUST be disabled.</t>
          <t>This transform relies on the AES-128 block cipher, which is represented by the
syntax <tt>AES-ECB(key, plaintext_block)</tt> as in <xref target="RFC9001"/>.  The corresponding
decryption operation is written here as <tt>AES-ECB-inv(key, ciphertext_block)</tt>.
It also uses AES in Counter Mode (<xref target="SP800-38A"/>, Section 6.5), which is
represented by the syntax <tt>AES-CTR(key, iv, input)</tt> for encryption and
decryption (which are identical).  In this syntax, <tt>iv</tt> is an array of 16 bytes
containing the initial counter block.  The counter is incremented by the
standard incrementing function (<xref target="SP800-38A"/>, Appendix B.1) on the full block
width.</t>
          <t>In brief, the transform applies AES in counter mode (AES-CTR) using an
initialization vector drawn from the packet, then encrypts the initialization
vector with AES-ECB. The detailed procedure is as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <tt>k1, k2 = scramble_key[:16], scramble_key[16:32]</tt>.</t>
            </li>
            <li>
              <t>Let <tt>L</tt> be the Connection ID length.</t>
            </li>
            <li>
              <t>Let <tt>cid = packet[1:L+1]</tt>, i.e., the Connection ID.</t>
            </li>
            <li>
              <t>Let <tt>iv = packet[L+1:L+17]</tt>, i.e., the 16 bytes following the Connection ID.</t>
            </li>
            <li>
              <t>Let <tt>ctr_input = packet[0] | packet[L+17:]</tt>.</t>
            </li>
            <li>
              <t>Let <tt>ctr_output = AES-CTR(k1, iv, ctr_input)</tt>.</t>
            </li>
            <li>
              <t>Let <tt>header = ctr_output[0] &amp; 0x7F</tt>.  This ensures that the Header Form bit
is zero, as required by the QUIC invariants (<xref target="RFC8999"/>, Section 5.2).</t>
            </li>
            <li>
              <t>Encrypt <tt>iv</tt> with the block cipher: <tt>encrypted_iv = AES-ECB(k2, iv)</tt>.</t>
            </li>
            <li>
              <t>Produce the output packet as:<br/>
                <tt>header | cid | encrypted_iv | ctr_output[1:]</tt>.</t>
            </li>
          </ol>
          <t>The inverse transform operates as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>Decrypt the AES-CTR initialization vector:<br/>
                <tt>iv = AES-ECB-inv(k2, packet[L+1:L+17])</tt>.</t>
            </li>
            <li>
              <t>Compute the other variables exactly as in the forward transform.
(AES-CTR encryption and decryption are identical.)</t>
            </li>
            <li>
              <t>Produce the output: <tt>header | cid | iv | ctr_output[1:]</tt>.</t>
            </li>
          </ol>
          <t>The encryption keys used in this procedure do not depend on the packet contents,
so each party only needs to perform AES initialization once for each connection.</t>
          <t>NOTE: The security of this arrangement relies on every short-header QUIC packet
containing a distinct 16 bytes following the Connection ID.  This is true
for the original ciphersuites of QUICv1, but it is not guaranteed by the QUIC
Invariants. Future ciphersuites and QUIC versions could in principle produce
packets that are too short or repeat the values at this location. When using the
<tt>scramble</tt> transform, clients MUST NOT offer any configuration that could
cause the client or target to violate this requirement.</t>
        </section>
      </section>
      <section anchor="maintenance">
        <name>Connection Maintenance in Forwarded Mode</name>
        <t>When a client and proxy are using forwarded mode, it is possible that there can be
long periods of time in which no ack-eliciting packets
(see <xref section="2" sectionFormat="of" target="QUIC-RETRANSMISSION"/>) are exchanged
between the client and proxy. If these periods extend beyond the effective idle
timeout for the client-to-proxy QUIC connection (see <xref section="10.1" sectionFormat="of" target="QUIC"/>),
the QUIC connection might be closed by the proxy if the proxy does not use
forwarded packets as an explicit liveness signal. To avoid this, clients SHOULD
send keepalive packets to the proxy before the idle timeouts would be reached,
which can be done using a PING frame or another ack-eliciting frame as described
in <xref section="10.1.1" sectionFormat="of" target="QUIC"/>.</t>
      </section>
      <section anchor="migration">
        <name>Handling Connection Migration</name>
        <t>If a proxy supports QUIC connection migration, it needs to ensure that a migration
event does not end up sending too many tunnelled or forwarded packets on a new
path prior to path validation.</t>
        <t>Specifically, the proxy MUST limit the number of packets that it will proxy
to an unvalidated client address to the size of an initial congestion window.
Proxies additionally SHOULD pace the rate at which packets are sent over a new
path to avoid creating unintentional congestion on the new path.</t>
        <t>When operating in forwarded mode, the proxy reconfigures or removes forwarding
rules as the network path between the client and proxy changes. In the event of
passive migration, the proxy automatically reconfigures forwarding rules to use
the latest active and validated network path for the HTTP stream. In the event of
active migration, the proxy removes forwarding rules in order to not send
packets with the same connection ID bytes over multiple network paths. After
initiating active migration, clients are no longer able to send forwarded mode
packets since the proxy will have removed forwarding rules. Clients can proceed with
tunnelled mode or can request new forwarding rules via REGISTER_CLIENT_CID and
REGISTER_TARGET_CID capsules. Each of the acknowledging capsules will contain new
virtual connection IDs to prevent packets with the same connection ID bytes being
used over multiple network paths. Note that the client CID and target CID
can stay the same while the target VCID and client VCID change.</t>
      </section>
      <section anchor="ecn">
        <name>Handling ECN Marking</name>
        <t>Explicit Congestion Notification marking <xref target="ECN"/> uses two bits in the IP
header to signal congestion from a network to endpoints. When using forwarded mode,
the proxy replaces IP headers for packets exchanged between the client and target;
these headers can include ECN markings. Proxies SHOULD preserve ECN markings on
forwarded packets in both directions, to allow ECN to function end-to-end. If the proxy does not
preserve ECN markings, it MUST set ECN marks to zero on the IP headers it generates.</t>
        <t>Forwarded mode does not create an IP-in-IP tunnel, so the guidance in
<xref target="ECN-TUNNEL"/> about transferring ECN markings between inner and outer IP
headers does not apply.</t>
        <t>A proxy MAY additionally add ECN markings to signal congestion being experienced
on the proxy itself.</t>
      </section>
      <section anchor="resets">
        <name>Stateless Resets for Forwarded Mode QUIC Packets</name>
        <t>While the lifecycle of forwarding rules are bound to the lifecycle of the
client-to-proxy HTTP stream, a peer may not be aware that the stream has
terminated. If the above mappings are lost or removed without the peer's
knowledge, they may send forwarded mode packets even though the client
or proxy no longer has state for that connection. To allow the client or
proxy to reset the client-to-target connection in the absence of the mappings
above, a stateless reset token corresponding to the Virtual Connection ID
can be provided.</t>
        <t>Consider a proxy that initiates closure of a client-to-proxy QUIC connection.
If the client is temporarily unresponsive or unreachable, the proxy might have
considered the connection closed and removed all connection state (including
the stream mappings used for forwarding). If the client never learned about the closure, it
might send forwarded mode packets to the proxy, assuming the stream mappings
and client-to-proxy connection are still intact. The proxy will receive these
forwarded mode packets, but won't have any state corresponding to the
destination connection ID in the packet. If the proxy has provided a stateless
reset token for the target VCID, it can send a stateless reset
packet to quickly notify the client that the client-to-target connection is
broken.</t>
        <section anchor="stateless-resets-from-the-target">
          <name>Stateless Resets from the Target</name>
          <t>Reuse of proxy-to-target 4-tuples is only possible because QUIC connection IDs
allow distinguishing packets for multiple QUIC connections received with the
same 5-tuple. One exception to this is Stateless Reset packets, in which the
connection ID is not used, but rather populated with unpredictable bits followed
by a Stateless Reset token, to make it indistinguishable from a regular packet
with a short header. In order for the proxy to correctly recognize Stateless
Reset packets, the client SHOULD share the Stateless Reset token for each
registered target CID. When the proxy receives a Stateless Reset packet,
it can send the packet to the client as a tunnelled datagram. Although Stateless Reset packets
look like short header packets, they are not technically short header packets and do not contain
negotiated connection IDs, and thus are not eligible for forwarded mode.</t>
        </section>
      </section>
    </section>
    <section anchor="example-exchange">
      <name>Example Exchange</name>
      <t>Consider a client that is establishing a new QUIC connection through the proxy.
In this example, the client prefers the <tt>scramble</tt> transform, but also offers the <tt>identity</tt>
transform. It has selected a client CID of <tt>0x31323334</tt>. In order to inform a proxy
of the new QUIC client CID, the client also sends a
REGISTER_CLIENT_CID capsule.</t>
      <t>The client will also send the initial QUIC packet with the Long Header form in
an HTTP datagram.</t>
      <artwork><![CDATA[
Client                                             Server

STREAM(44): HEADERS             -------->
  :method = CONNECT
  :protocol = connect-udp
  :scheme = https
  :path = /target.example.com/443/
  :authority = proxy.example.org
  proxy-quic-forwarding = ?1; accept-transform=scramble,identity; \
      scramble-key=:abc...789=:
  capsule-protocol = ?1

STREAM(44): DATA                -------->
  Capsule Type = REGISTER_CLIENT_CID
  Connection ID = 0x31323334
  Stateless Reset Token = Token

           <--------  STREAM(44): DATA
                        Capsule Type = MAX_CONNECTION_IDS
                        Maximum Sequence Number = 3

DATAGRAM                        -------->
  Quarter Stream ID = 11
  Context ID = 0
  Payload = Encapsulated QUIC initial

           <--------  STREAM(44): HEADERS
                        :status = 200
                        proxy-quic-forwarding = ?1; \
                            transform=scramble; \
                            scramble-key=:ABC...321=:
                        capsule-protocol = ?1

           <--------  STREAM(44): DATA
                        Capsule Type = ACK_CLIENT_CID
                        Connection ID = 0x31323334
                        Virtual CID = 0x62646668
]]></artwork>
      <t>The proxy has acknowledged the client CID and provided a client VCID.
Even if there were Short Header packets to send, the proxy
cannot send forwarded mode packets because the client hasn't acknowledged the
client VCID.</t>
      <t>The proxy indicates to the client that it will allow connection ID registrations
with sequence numbers 0-3, allowing for registrations beyond the initial maximum
of 1.</t>
      <artwork><![CDATA[
STREAM(44): DATA                -------->
  Capsule Type = ACK_CLIENT_VCID
  Connection ID = 0x31323334
  Virtual CID = 0x62646668
  Stateless Reset Token = Token
]]></artwork>
      <t>The client acknowledges the client VCID. The proxy still
doesn't have any Short Header Packets to send, but, if it did, it would be able
to send with forwarded mode.</t>
      <artwork><![CDATA[
/* Wait for target server to respond to UDP packet. */

           <--------  DATAGRAM
                        Quarter Stream ID = 11
                        Context ID = 0
                        Payload = Encapsulated QUIC initial

/* All Client -> Target QUIC packets must still be encapsulated  */

DATAGRAM                        -------->
  Quarter Stream ID = 11
  Context ID = 0
  Payload = Encapsulated QUIC packet

/* Forwarded mode packets possible in Target -> Client direction  */

           <--------  UDP Datagram
                        Payload = Forwarded QUIC SH packet

]]></artwork>
      <t>The client may receive forwarded mode packets from the proxy with a Virtual
client CID of 0x62646668 which it will replace with the real client CID
of 0x31323334. All forwarded mode packets sent by the proxy
will have been modified to contain the client VCID instead
of the client CID, and processed by the negotiated "scramble"
packet transform. However, in the unlikely event that a forwarded packet
arrives before the proxy's HTTP response, the client will not know which
transform the proxy selected. In this case, the client will have to ignore
the packet or buffer it until the HTTP response is received.</t>
      <t>Once the client learns which Connection ID has been selected by the target
server, it can send a new request to the proxy to establish a mapping for
forwarding. In this case, that ID is 0x61626364. The client sends the
following capsule:</t>
      <artwork><![CDATA[
STREAM(44): DATA                -------->
  Capsule Type = REGISTER_TARGET_CID
  Connection ID = 0x61626364

           <--------  STREAM(44): DATA
                        Capsule Type = ACK_TARGET_CID
                        Connection ID = 0x61626364
                        Virtual Connection ID = 0x123412341234
                        Stateless Reset Token = Token

/* Client -> Target QUIC short header packets may use forwarded mode */

UDP Datagram                     -------->
  Payload = Forwarded QUIC SH packet

]]></artwork>
      <t>Upon receiving an ACK_TARGET_CID capsule, the client starts sending Short Header
packets with a Destination Connection ID of 0x123412341234 directly to the proxy
(not tunnelled), and these are rewritten by the proxy to have the Destination
Connection ID 0x61626364 prior to being forwarded directly to the target. In the
reverse direction, Short Header packets from the target with a Destination
Connection ID of 0x31323334 are modified to replace the Destination Connection
ID with the client VCID of 0x62646668 and forwarded directly to
the client.</t>
    </section>
    <section anchor="packet-size-considerations">
      <name>Packet Size Considerations</name>
      <t>Since Initial QUIC packets must be at least 1200 bytes in length, the HTTP
Datagram frames that are used for a QUIC-aware proxy MUST be able to carry at least
1200 bytes.</t>
      <t>Additionally, clients that connect to a proxy for purpose of proxying QUIC
SHOULD start their connection with a larger packet size than 1200 bytes, to
account for the overhead of tunnelling an Initial QUIC packet within an
HTTP Datagram frame. If the client does not begin with a larger packet size than
1200 bytes, it will need to perform Path MTU (Maximum Transmission Unit)
discovery to discover a larger path size prior to sending any tunnelled Initial
QUIC packets.</t>
      <t>Once a proxied QUIC connections moves into forwarded mode, the client SHOULD
initiate Path MTU discovery to increase its end-to-end MTU.</t>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>Proxies that support this extension SHOULD provide protections to rate-limit
or restrict clients from opening an excessive number of proxied connections, so
as to limit abuse or use of proxies to launch Denial-of-Service attacks.</t>
      <t>Sending QUIC packets by forwarding through a proxy without tunnelling exposes
clients to additional information exposure and deanonymization attacks which
need to be carefully considered. Analysis should consider both passive and
active attackers which may be global or localized to the network paths used
on one side of the proxy. The following sections highlight deanonymization risks with
using forwarded mode.</t>
      <section anchor="passive-attacks">
        <name>Passive Attacks</name>
        <t>A passive attacker aims to deanonymize a client by correlating traffic across
both sides of the proxy. When using forwarded mode with the <tt>identity</tt> packet
transform (see <xref target="identity-transform"/>), such correlation is trivial by matching
a subset of QUIC packet bytes as packets enter the proxy on one side and exit
on the other. Packet transforms such as <tt>scramble</tt> mitigate this by
cryptographically preventing such byte comparisons
(see <xref target="scramble-transform"/>).</t>
        <t>Regardless of which packet transform is used, both tunnelled and forwarded mode
are still vulnerable to size and timing attacks, without the addition of techniques that go beyond the analysis
in this document, such as padding and adding chaff packets.  Such techniques could be supported
in future packet transforms, subject to additional security analysis.</t>
        <t>Unlike tunnelled mode where packets are fully encapsulated in the client-to-proxy
connection, clients using forwarded mode to access multiple target servers
over the same client-to-proxy connection expose the number of target servers
they are communicating with on each connection to passive attackers that can
observe the client-to-proxy traffic. This additional metadata revealed on each
packet simplifies size and timing attacks.</t>
      </section>
      <section anchor="active-attacks">
        <name>Active Attacks</name>
        <t>An active attacker is an adversary that can inject, modify, drop, and view
packets in the network. Some active attacks have different effects between
forwarded mode and tunnelled mode, but active attacks can be used to correlate
flows in either mode.</t>
        <t>Both tunnelled mode and forwarded mode (regardless of packet transform) are
vulnerable to packet injection in the target-to-client direction. An attacker
can inject a burst of packets with a known QUIC Connection ID and see which
Connection ID is used for the corresponding burst on the proxy-to-client network path.</t>
        <t>Packet injection with a known QUIC Connection ID can also happen in the
client-to-proxy direction, which only affects forwarded mode since
tunnelled mode sends packets within an authenticated and integrity protected
QUIC connection to the proxy (see <xref target="RFC9001"/>). None of the packet transforms
defined in this document provide integrity protection. Even if a packet
transform did provide integrity protection, attackers can inject replayed
packets. Protection against replayed packets is similarly provided by QUIC in
tunnelled mode, but not provided by any of the forwarded mode packet transforms
defined in this document.</t>
        <t>An active attacker can modify packets in the client-to-proxy direction, which
would cause a tunnelling proxy to silently drop packets, while a forwarding proxy
would forward the packets. In this way, forwarded mode is less vulnerable to
flow recognition based on corrupting a portion of packets in a burst.</t>
        <t>Chaining of proxies using forwarded mode introduces the risk of forwarding loop
attacks. Preventing client VCID conflicts across proxies
sharing an IP address and port mitigates one such forwarding loop attack.
Conflicts can be avoided by partitioning the client VCID space
across proxies, using sufficiently long and random values, or by other means.</t>
      </section>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <section anchor="iana-header">
        <name>HTTP Header</name>
        <t>This document registers the "Proxy-QUIC-Forwarding" header in the "Hypertext Transfer
Protocol (HTTP) Field Name Registry" &lt;<eref target="https://www.iana.org/assignments/http-fields"/>&gt;.</t>
        <figure anchor="iana-header-type-table">
          <name>Registered HTTP Header</name>
          <artwork><![CDATA[
    +-----------------------+----------+--------+---------------+
    | Header Field Name     | Protocol | Status |   Reference   |
    +-----------------------+----------+--------+---------------+
    | Proxy-QUIC-Forwarding |   http   |  exp   | This document |
    +-----------------------+----------+--------+---------------+
]]></artwork>
        </figure>
      </section>
      <section anchor="proxy-quic-forwarding-parameter-names">
        <name>Proxy QUIC Forwarding Parameter Names</name>
        <t>This document establishes a new registry, "Proxy QUIC Forwarding Parameter Names",
for parameter names to use with the "Proxy-QUIC-Forwarding" header field,
in &lt;<eref target="https://www.iana.org/assignments/masque/masque.xhtml"/>&gt;.
Registrations in this registry are assigned using the
Specification Required policy (Section 4.6 of [IANA-POLICY]).</t>
        <figure anchor="iana-parameter-names-table">
          <name>Initial Proxy QUIC Forwarding Parameter Names</name>
          <artwork><![CDATA[
    +-----------------------+-------------------------------------+---------------+--------------------------------+
    | Parameter Name        | Description                         | Reference     | Notes                          |
    +-----------------------+-------------------------------------+---------------+--------------------------------+
    | accept-transform      | contains supported transforms       | This document | Section {{forwarding-header}}  |
    +-----------------------+-------------------------------------+---------------+--------------------------------+
    | transform             | indicates selected transforms       | This document | Section {{forwarding-header}}  |
    +-----------------------+-------------------------------------+---------------+--------------------------------+
    | scramble-key          | contains key for scramble transform | This document | Section {{scramble-transform}} |
    +-----------------------+-------------------------------------+---------------+--------------------------------+
]]></artwork>
        </figure>
      </section>
      <section anchor="iana-transforms">
        <name>Packet Transform Names</name>
        <t>This document establishes a new registry for packet transform names
in &lt;<eref target="https://www.iana.org/assignments/masque/masque.xhtml"/>&gt;
and defines two initial transforms: "identity" and "scramble".
Prior to finalization, deployments that implement the version of
the <tt>scramble</tt> transform defined in this document should use the value
"scramble-dt". Once the design team proposal is adopted and a new draft is submitted,
the wire identifier will become "scramble-XX" where XX is the draft number.
Registrations in this registry are assigned using the
Specification Required policy (Section 4.6 of [IANA-POLICY]).</t>
        <table anchor="iana-packet-transforms-table">
          <name>Initial Packet Transform Names</name>
          <thead>
            <tr>
              <th align="left">Transform Name</th>
              <th align="left">Description</th>
              <th align="left">Specification</th>
              <th align="left">Notes</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">identity</td>
              <td align="left">no transformation</td>
              <td align="left">This Document</td>
              <td align="left">Section <xref target="identity-transform"/></td>
            </tr>
            <tr>
              <td align="left">scramble</td>
              <td align="left">Reserved (will be used for final version)</td>
              <td align="left">This Document</td>
              <td align="left">Section <xref target="scramble-transform"/></td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="iana-capsule-types">
        <name>Capsule Types</name>
        <t>This document registers six new values in the "HTTP Capsule Types"
registry established by <xref target="HTTP-CAPSULES"/>. Note that the codepoints below
will be replaced with lower values before publication.</t>
        <table anchor="iana-capsule-type-table">
          <name>Registered Capsule Types</name>
          <thead>
            <tr>
              <th align="left">Capule Type</th>
              <th align="left">Value</th>
              <th align="left">Specification</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">REGISTER_CLIENT_CID</td>
              <td align="left">0xffe600</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">REGISTER_TARGET_CID</td>
              <td align="left">0xffe601</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">ACK_CLIENT_CID</td>
              <td align="left">0xffe602</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">ACK_CLIENT_VCID</td>
              <td align="left">0xffe603</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">ACK_TARGET_CID</td>
              <td align="left">0xffe604</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">CLOSE_CLIENT_CID</td>
              <td align="left">0xffe605</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">CLOSE_TARGET_CID</td>
              <td align="left">0xffe606</td>
              <td align="left">This Document</td>
            </tr>
            <tr>
              <td align="left">MAX_CONNECTION_IDS</td>
              <td align="left">0xffe607</td>
              <td align="left">This Document</td>
            </tr>
          </tbody>
        </table>
        <t>All of these new entries use the following values for these fields:</t>
        <dl spacing="compact" newline="false">
          <dt>Status:</dt>
          <dd>
            <t>provisional (permanent when this document is published)</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>masque@ietf.org</t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="SP800-38A" target="https://nvlpubs.nist.gov/nistpubs/legacy/sp/nistspecialpublication800-38a.pdf">
          <front>
            <title>Recommendation for Block Cipher Modes of Operation: Methods and Techniques</title>
            <author initials="M." surname="Dworkin" fullname="Morris Dworkin">
              <organization/>
            </author>
            <date year="2001" month="December" day="01"/>
          </front>
        </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="QUIC">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol. QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances. Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="HTTP3">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop"/>
            <date month="June" year="2022"/>
            <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="RFC" value="9114"/>
          <seriesInfo name="DOI" value="10.17487/RFC9114"/>
        </reference>
        <reference anchor="INVARIANTS">
          <front>
            <title>Version-Independent Properties of QUIC</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the properties of the QUIC transport protocol that are common to all versions of the protocol.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8999"/>
          <seriesInfo name="DOI" value="10.17487/RFC8999"/>
        </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="HTTP-CAPSULES">
          <front>
            <title>HTTP Datagrams and the Capsule Protocol</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <author fullname="L. Pardue" initials="L." surname="Pardue"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document describes HTTP Datagrams, a convention for conveying multiplexed, potentially unreliable datagrams inside an HTTP connection.</t>
              <t>In HTTP/3, HTTP Datagrams can be sent unreliably using the QUIC DATAGRAM extension. When the QUIC DATAGRAM frame is unavailable or undesirable, HTTP Datagrams can be sent using the Capsule Protocol, which is a more general convention for conveying data in HTTP connections.</t>
              <t>HTTP Datagrams and the Capsule Protocol are intended for use by HTTP extensions, not applications.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9297"/>
          <seriesInfo name="DOI" value="10.17487/RFC9297"/>
        </reference>
        <reference anchor="RFC8941">
          <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="QUIC-RETRANSMISSION">
          <front>
            <title>QUIC Loss Detection and Congestion Control</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="I. Swett" initials="I." role="editor" surname="Swett"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes loss detection and congestion control mechanisms for QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9002"/>
          <seriesInfo name="DOI" value="10.17487/RFC9002"/>
        </reference>
        <reference anchor="ECN">
          <front>
            <title>The Addition of Explicit Congestion Notification (ECN) to IP</title>
            <author fullname="K. Ramakrishnan" initials="K." surname="Ramakrishnan"/>
            <author fullname="S. Floyd" initials="S." surname="Floyd"/>
            <author fullname="D. Black" initials="D." surname="Black"/>
            <date month="September" year="2001"/>
            <abstract>
              <t>This memo specifies the incorporation of ECN (Explicit Congestion Notification) to TCP and IP, including ECN's use of two bits in the IP header. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3168"/>
          <seriesInfo name="DOI" value="10.17487/RFC3168"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="QUIC-LB">
          <front>
            <title>QUIC-LB: Generating Routable QUIC Connection IDs</title>
            <author fullname="Martin Duke" initials="M." surname="Duke">
              <organization>Google</organization>
            </author>
            <author fullname="Nick Banks" initials="N." surname="Banks">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Christian Huitema" initials="C." surname="Huitema">
              <organization>Private Octopus Inc.</organization>
            </author>
            <date day="5" month="February" year="2024"/>
            <abstract>
              <t>   QUIC address migration allows clients to change their IP address
   while maintaining connection state.  To reduce the ability of an
   observer to link two IP addresses, clients and servers use new
   connection IDs when they communicate via different client addresses.
   This poses a problem for traditional "layer-4" load balancers that
   route packets via the IP address and port 4-tuple.  This
   specification provides a standardized means of securely encoding
   routing information in the server's connection IDs so that a properly
   configured load balancer can route packets with migrated addresses
   correctly.  As it proposes a structured connection ID format, it also
   provides a means of connection IDs self-encoding their length to aid
   some hardware offloads.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-load-balancers-19"/>
        </reference>
        <reference anchor="RFC8999">
          <front>
            <title>Version-Independent Properties of QUIC</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the properties of the QUIC transport protocol that are common to all versions of the protocol.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8999"/>
          <seriesInfo name="DOI" value="10.17487/RFC8999"/>
        </reference>
        <reference anchor="RFC9001">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="ECN-TUNNEL">
          <front>
            <title>Tunnelling of Explicit Congestion Notification</title>
            <author fullname="B. Briscoe" initials="B." surname="Briscoe"/>
            <date month="November" year="2010"/>
            <abstract>
              <t>This document redefines how the explicit congestion notification (ECN) field of the IP header should be constructed on entry to and exit from any IP-in-IP tunnel. On encapsulation, it updates RFC 3168 to bring all IP-in-IP tunnels (v4 or v6) into line with RFC 4301 IPsec ECN processing. On decapsulation, it updates both RFC 3168 and RFC 4301 to add new behaviours for previously unused combinations of inner and outer headers. The new rules ensure the ECN field is correctly propagated across a tunnel whether it is used to signal one or two severity levels of congestion; whereas before, only one severity level was supported. Tunnel endpoints can be updated in any order without affecting pre-existing uses of the ECN field, thus ensuring backward compatibility. Nonetheless, operators wanting to support two severity levels (e.g., for pre-congestion notification -- PCN) can require compliance with this new specification. A thorough analysis of the reasoning for these changes and the implications is included. In the unlikely event that the new rules do not meet a specific need, RFC 4774 gives guidance on designing alternate ECN semantics, and this document extends that to include tunnelling issues. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6040"/>
          <seriesInfo name="DOI" value="10.17487/RFC6040"/>
        </reference>
      </references>
    </references>
    <?line 1528?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Thanks to Lucas Pardue, Ryan Hamilton, and Mirja Kühlewind for their inputs
on this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
