<?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.29 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-multipath-19" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="Multiple Paths for QUIC">Managing multiple paths for a QUIC connection</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-multipath-19"/>
    <author fullname="刘彦梅" asciiFullname="Yanmei Liu" role="editor">
      <organization>Alibaba Inc.</organization>
      <address>
        <email>miaoji.lym@alibaba-inc.com</email>
      </address>
    </author>
    <author fullname="马云飞" asciiFullname="Yunfei Ma">
      <organization>Uber Technologies Inc.</organization>
      <address>
        <email>yunfei.ma@uber.com</email>
      </address>
    </author>
    <author initials="Q." surname="De Coninck" fullname="Quentin De Coninck" role="editor">
      <organization>University of Mons (UMONS)</organization>
      <address>
        <email>quentin.deconinck@umons.ac.be</email>
      </address>
    </author>
    <author initials="O." surname="Bonaventure" fullname="Olivier Bonaventure">
      <organization>UCLouvain and Tessares</organization>
      <address>
        <email>olivier.bonaventure@uclouvain.be</email>
      </address>
    </author>
    <author initials="C." surname="Huitema" fullname="Christian Huitema">
      <organization>Private Octopus Inc.</organization>
      <address>
        <email>huitema@huitema.net</email>
      </address>
    </author>
    <author initials="M." surname="Kuehlewind" fullname="Mirja Kuehlewind" role="editor">
      <organization>Ericsson</organization>
      <address>
        <email>mirja.kuehlewind@ericsson.com</email>
      </address>
    </author>
    <date/>
    <area>Transport</area>
    <workgroup>QUIC Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 82?>

<t>This document specifies a multipath extension for the QUIC protocol to
enable the simultaneous usage of multiple paths for a single connection.
It proposes a standard way to create, delete, and manage paths using identifiers.
It does not specify address discovery or management, nor
how applications using QUIC schedule traffic over multiple paths.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    QUIC Working Group mailing list (quic@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/quic/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/quicwg/multipath"/>.</t>
    </note>
  </front>
  <middle>
    <?line 90?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document specifies an extension to QUIC version 1 <xref target="QUIC-TRANSPORT"/>
to enable the simultaneous usage of multiple paths for a single
connection, using the same or different 4-tuples (of source/destination
port numbers and source/destination IP addresses).</t>
      <t>Connection migration as specified in <xref section="9" sectionFormat="of" target="QUIC-TRANSPORT"/>
directs a peer to switch sending through
a new preferred path, and, if successful, to release resources
associated with the old path. The multipath extension specified in this document
builds on this mechanism but introduces a path identifier, or path ID,
to manage connection IDs and packet number spaces per path, enabling the use
of multiple paths simultaneously.</t>
      <t>The connection ID of a packet binds the packet to a path ID, and therefore
to a packet number space. That means each connection ID is associated with exactly one path ID
but multiple connection IDs are usually issued for each path ID.
The same path ID is used in both directions, starting with 0 for the initial path.
Path IDs are generated monotonically increasing and cannot be reused.</t>
      <t>This extension uses multiple packet number spaces, one for each path.
Each path ID-specific packet number space starts at packet number 0.
As such, each path maintains distinct packet number states for sending and receiving packets, as in <xref target="QUIC-TRANSPORT"/>.
Using multiple packet number spaces enables direct use of the
loss detection and congestion control mechanisms defined in
<xref target="QUIC-RECOVERY"/> on a per-path basis.
However, use of multiple packet number spaces requires
non-zero connection IDs in order to identify the path and the respective
packet number space as well as a modified AEAD calculation including the
path ID (see <xref target="nonce"/>).</t>
      <t>As such, this extension specifies a departure from the specification of
path management in <xref section="9" sectionFormat="of" target="QUIC-TRANSPORT"/> and therefore
requires a new transport parameter, as specified in <xref target="nego"/>, to indicate
support of the multipath extension specified in this document.</t>
      <t>Further, this document specifies the needed path management mechanisms for path
initiation in <xref target="path-initiation"/>, handling of per-path connection IDs in <xref target="consume-retire-cid"/>,
signaling of preferred path usage in <xref target="path-state"/>, and explicit
removal of paths that have been abandoned in <xref target="path-close"/>.
Note that in this extension, a QUIC server does not initiate the creation
of a path, but it has to validate a new path created by a client.</t>
      <t>This extension does not cover address discovery and management. Addresses
and the actual decision to set up or tear down paths are assumed
to be handled by the application. But this document does not prevent future extensions from
defining mechanisms to cope with the remaining scenarios.</t>
      <t>Further, this document does not specify scheduling algorithms that define
how multiple, simultaneously open paths are used to send packets.
As these differ depending on application requirements,
only some basic implementation guidance is discussed in <xref target="impl-consideration"/>.
This extension can be used with different scheduling algorithms that,
e.g., can range from support for failover to simultaneous
use of the aggregated capacity across all open paths.
There are currently no IETF specifications that define scheduling
algorithms for simultaneously (i.e., concurrently) using multiple paths.</t>
      <t>Specifically, while failover between Wi-Fi
and mobile networks is a well-known multipath use case,
it only temporarily uses two paths at the same time
to avoid transmission pauses.
Simultaneous path usage generally, however, needs more consideration
than specified in this document to avoid negative performance
impacts, e.g., when stream data is distributed over multiple paths with
different delays.</t>
      <t>The operational considerations for QUIC are addressed in <xref target="RFC9312"/>.
They also apply to QUIC connections using the extensions defined in this
document. An additional complexity is that applications might use a combination
of monitored and non-monitored paths, but that complexity already
exists when using path migration as defined in <xref target="QUIC-TRANSPORT"/>.</t>
      <section anchor="definition">
        <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>
        <t>This document uses the terminology defined in <xref target="QUIC-TRANSPORT"/>.
When this document uses the term "path", it refers
to the notion of "network path" used in <xref target="QUIC-TRANSPORT"/>.</t>
        <t>The packet diagrams in this document use the conventions defined
in <xref section="1.3" sectionFormat="of" target="QUIC-TRANSPORT"/>, including the notation (i) to denote
variable-length integers, encoded as specified in <xref section="16" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
      </section>
    </section>
    <section anchor="connection-lifecycle-and-packet-protection">
      <name>Connection Lifecycle and Packet Protection</name>
      <t>This document defines a new transport parameter initial_max_path_id
to indicate the support of the multipath extension.
If either of the endpoints does not advertise the initial_max_path_id transport
parameter, then both endpoints MUST NOT use any frame or
mechanism defined in this document. Endpoints MUST NOT remember the value
of the initial_max_path_id transport parameter for use in a subsequent connection.
If both endpoints advertise the initial_max_path_id transport parameter, once the handshake is completed
a new AEAD usage applies to all 1-RTT packets, as specified in <xref target="nonce"/>,
and new paths can be used, as specified in <xref target="path-management"/>.
As specified in <xref target="frames"/>, the new frames defined in this document can
only be sent in 1-RTT packets.</t>
      <t>The transport parameter negotiation enables incremental deployment of implementations
of the multipath extension.</t>
      <section anchor="nego">
        <name>initial_max_path_id Transport Parameter</name>
        <t>The new transport parameter is defined as follows:</t>
        <ul spacing="normal">
          <li>
            <t>initial_max_path_id (parameter ID 0x3e): parameter value is a
variable-length integer specifying the maximum path ID
an endpoint is willing to maintain at connection initiation.
This value MUST NOT exceed 2<sup>32</sup>-1, the maximum allowed value for the path ID due to
restrictions on the nonce calculation (see <xref target="nonce"/>).</t>
          </li>
        </ul>
        <t>The initial_max_path_id transport parameter limits the initial
maximum number of open paths that can be used during a connection.
For example, if initial_max_path_id is set to 1, only connection IDs
associated with path IDs 0 and 1 should be issued by the peer.
If an endpoint receives an initial_max_path_id transport parameter with value 0,
the peer aims to enable the multipath extension without allowing extra paths immediately.</t>
        <t>Setting initial_max_path_id parameter is equivalent to sending a
MAX_PATH_ID frame (<xref target="max-paths-frame"/>) with the same value.
As such to allow for the use of more paths later,
endpoints can send the MAX_PATH_ID frame to increase the maximum allowed path ID.</t>
        <t>If an initial_max_path_id transport parameter value higher than 2<sup>32</sup>-1
is received, the receiver MUST close the connection with an error of type
TRANSPORT_PARAMETER_ERROR.</t>
        <t>When advertising the initial_max_path_id transport parameter, endpoints
MUST use Source and Destination Connection IDs with non-zero lengths.
If an initial_max_path_id transport
parameter is received and the carrying packet contains a zero-length
connection ID, the receiver MUST treat this as a connection error of type
PROTOCOL_VIOLATION and close the connection.</t>
        <t>Cipher suites with a nonce shorter than 12 bytes cannot be used together with
the multipath extension. If such a cipher suite is selected and the use of the
multipath extension is supported, endpoints MUST abort the handshake with
an error of type TRANSPORT_PARAMETER_ERROR.</t>
        <t>The initial_max_path_id parameter MUST NOT be remembered
for use in a subsequent connection (<xref section="7.4.1" sectionFormat="of" target="QUIC-TRANSPORT"/>).</t>
      </section>
      <section anchor="relation-to-other-transport-parameters">
        <name>Relation to Other Transport Parameters</name>
        <t>When the QUIC multipath extension is used, the active_connection_id_limit transport parameter
<xref target="QUIC-TRANSPORT"/> limits the maximum number of active connection IDs per path.
As defined in <xref section="5.1.1" sectionFormat="of" target="QUIC-TRANSPORT"/> connection IDs that are issued
and not retired are considered active.</t>
        <t>If an endpoint receives a disable_active_migration transport parameter,
it is forbidden to establish new paths to the peer's handshake address. However,
establishment of additional paths to other peer addresses
(e.g., carried by peer's preferred_address) is immediately valid.</t>
        <t>If the server uses the preferred_address transport parameter, clients
cannot assume that the initial server address and the addresses
contained in this parameter can be simultaneously used for multipath
(<xref section="9.6.2" sectionFormat="of" target="QUIC-TRANSPORT"/>).
Use of the preferred address with the same local address is considered as a migration event
that does not change the path ID. A such, the path ID for
the connection ID specified in the preferred_address transport parameter is 0.</t>
      </section>
      <section anchor="handling-ack-and-pathack-in-0-rtt-and-1-rtt">
        <name>Handling ACK and PATH_ACK in 0-RTT and 1-RTT</name>
        <t>The PATH_ACK frame (see <xref target="mp-ack-frame"/>) is used to
acknowledge 1-RTT packets.
Compared to the ACK frame, as specified in <xref section="19.3" sectionFormat="of" target="QUIC-TRANSPORT"/>, the PATH_ACK frame additionally
contains the path ID to identify the path-specific packet number space.
ACK frames when used with the multipath extension acknowledge packets for the path with path ID 0.
As multipath support is unknown during the handshake, acknowledgments of
Initial and Handshake packets are sent using ACK frames.</t>
        <t>After the handshake concluded with support for the multipath extension,
endpoints SHOULD use PATH_ACK frames instead of ACK frames,
including for so far unacknowledged 0-RTT packets using path ID 0.
Endpoints MUST still process ACK frames that acknowledge 0-RTT packets or 1-RTT packets.
For example, a sender could negotiate multipath support for later use and keep
only the initial path with path ID 0 for a while. During this single-path period,
the sender might prefer to send ACK frames.</t>
      </section>
      <section anchor="nonce">
        <name>Nonce Calculation after Handshake Completion</name>
        <t><xref section="5.3" sectionFormat="of" target="QUIC-TLS"/> specifies AEAD usage, and in particular
the use of a nonce, N, formed by combining the packet protection IV
with the packet number. When multiple packet number spaces are used,
the packet number alone would not guarantee the uniqueness of the nonce.
Therefore, the nonce N is calculated for 1-RTT if the multipath extension is used
by combining the packet protection
IV with the packet number and with the 32 bits of the
path ID. In order to guarantee the uniqueness of the nonce, the path ID
is limited to a max value of 2<sup>32</sup>-1, as specified in <xref target="nego"/>.</t>
        <t>To calculate the nonce, a 96-bit path-and-packet-number is composed of the
32 bits of the path ID in network byte order,
two zero bits, and the 62 bits of the reconstructed QUIC packet number in
network byte order. The IV length is equal to the nonce length. If the IV is larger than 96 bits, the path-and-packet-number
is left-padded with zeros to the size of the IV. The exclusive OR of the padded
packet number and the IV forms the AEAD nonce. An AEAD algorithm where the nonce length
is less than 12 bytes cannot be used with the QUIC multipath extension.</t>
        <t>For example, assuming the IV value is <tt>0x6b26114b9cba2b63a9e8dd4f</tt>,
the path ID is <tt>3</tt>, and the packet number is <tt>54321</tt> (hex value <tt>0xd431</tt>),
the nonce will be set to <tt>0x6b2611489cba2b63a9e8097e</tt>.</t>
      </section>
      <section anchor="multipath-key-update">
        <name>Key Phase Update Process</name>
        <t>The Key Phase bit update process is specified in
<xref section="6" sectionFormat="of" target="QUIC-TLS"/>. The general principles of key update
are not changed in this specification. Following <xref target="QUIC-TLS"/>, the Key Phase bit is used to
indicate which packet protection keys are used to protect the packet.
The Key Phase bit is toggled to signal each subsequent key update.</t>
        <t>Because of network delays, packets protected with the older key might
arrive later than the packets protected with the new key, however receivers
can solely rely on the Key Phase bit to determine the corresponding packet
protection key, assuming that there is sufficient interval between two
consecutive key updates (<xref section="6.5" sectionFormat="of" target="QUIC-TLS"/>).</t>
        <t>When this specification is used, endpoints SHOULD wait for at least three times
the largest Probe Timeout (PTO) (see <xref section="6.2" sectionFormat="of" target="QUIC-RECOVERY"/>)
among all the paths before initiating a new key update
after receiving an acknowledgment that confirms the receipt of the previous key
update. This interval is different from that in <xref target="QUIC-TLS"/>
which used three times the PTO of the sole single path.</t>
        <t>As packets that arrive after their decryption key has been discarded will be dropped,
the choice of three times the largest PTO is a trade-off: Longer delays
reduce the probability of losing packets but keeping old keys
longer can negatively impact the security of the protocol.
The use of three times the largest PTO aims to minimize packet lost for all paths
and therefore limits the impact on performance.</t>
        <t>Following <xref section="5.4" sectionFormat="of" target="QUIC-TLS"/>, the Key Phase bit is protected,
so sending multiple packets with Key Phase bit flipping at the same time
should not cause activity across different paths to be linkable by an observer.</t>
      </section>
      <section anchor="connection-closure">
        <name>Connection Closure</name>
        <t>CONNECTION_CLOSE frames and their processing are unchanged from <xref target="QUIC-TRANSPORT"/>.
They can be sent on any open path. <xref section="10.2" sectionFormat="of" target="QUIC-TRANSPORT"/> specifies that
the closing and draining connection states "SHOULD persist for at least three times the current PTO".
When this specification is used, these states SHOULD instead persist for at least three
times the largest PTO among all paths.</t>
      </section>
    </section>
    <section anchor="path-management">
      <name>Path Management</name>
      <t>After completing the handshake indicating
multipath support, endpoints can start using multiple paths.
Paths MUST only be opened by the client endpoint.
The client can open a new path when both endpoints
have issued available connection IDs for at least one unused, common path ID,
as the same path ID is used in both directions.</t>
      <t>This document specifies path initiation (see <xref target="path-initiation"/>),
issuing and retirement of per-path connection IDs (see
<xref target="consume-retire-cid"/>), path status management (see <xref target="path-state"/>) and
path closure (see <xref target="path-close"/>).
However, this document does not specify when a client decides to initiate or close a path,
or how multiple open paths are used for sending.</t>
      <t>For path management this extension specifies the following frames in <xref target="frames"/>:</t>
      <ul spacing="normal">
        <li>
          <t>PATH_ABANDON (see <xref target="path-abandon-frame"/>)</t>
        </li>
        <li>
          <t>PATH_STATUS_BACKUP (see <xref target="path-backup-available-frame"/>)</t>
        </li>
        <li>
          <t>PATH_STATUS_AVAILABLE (see <xref target="path-backup-available-frame"/>)</t>
        </li>
        <li>
          <t>PATH_NEW_CONNECTION_ID (see <xref target="mp-new-conn-id-frame"/>)</t>
        </li>
        <li>
          <t>PATH_RETIRE_CONNECTION_ID (see <xref target="mp-retire-conn-id-frame"/>)</t>
        </li>
        <li>
          <t>MAX_PATH_ID (see <xref target="max-paths-frame"/>)</t>
        </li>
        <li>
          <t>PATHS_BLOCKED (see <xref target="paths-and-cids-blocked-frame"/>)</t>
        </li>
        <li>
          <t>PATH_CIDS_BLOCKED (see <xref target="paths-and-cids-blocked-frame"/>)</t>
        </li>
      </ul>
      <section anchor="path-initiation">
        <name>Path Initiation and Validation</name>
        <t>To open a new path, an endpoint MUST use a new connection ID associated
with an unused path ID. An endpoint
MUST use a connection ID associated to the same path ID as used in the packet
received by the endpoint when it intends to send packets on the same path.</t>
        <t>A client that wants to use a
new path MUST validate the peer's address before sending any data
as described in <xref section="8.2" sectionFormat="of" target="QUIC-TRANSPORT"/>,
unless it has previously validated the 4-tuple used for that path.</t>
        <t>After receiving packets from the
client on a new path, if the server decides to use the new path,
the server MUST validate the peer's address before sending any data
as described in (<xref section="8.2" sectionFormat="of" target="QUIC-TRANSPORT"/>),
unless it has previously validated the 4-tuple used for that path.
Until the client's address is
validated, the anti-amplification limit from <xref section="8" sectionFormat="of" target="QUIC-TRANSPORT"/>
applies.</t>
        <t>If an endpoint sends a PATH_RESPONSE (<xref section="19.18" sectionFormat="of" target="QUIC-TRANSPORT"/>), it MUST be sent on the same path
as used by the packet that contained the PATH_CHALLENGE frame (<xref section="19.17" sectionFormat="of" target="QUIC-TRANSPORT"/>),
using a connection ID associated with the same path ID.</t>
        <t>The server might receive packets for a yet unused path ID that do not
contain a PATH_CHALLENGE frame. Such packets are valid if they can be properly decrypted
given a valid connection ID.</t>
        <t>Each endpoint MUST also validate that a minimum QUIC packet MTU of 1200 bytes is supported
on the path. This can be done during initial path validation or separately later if
the amplification limit prevents it initially, as specified in <xref section="8.2.1" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
        <t>An endpoint that receives packets on a new path and does not want to establish
this path is expected to close the path by sending a PATH_ABANDON
on another path, as specified in <xref target="path-close"/>.</t>
        <t>An endpoint that has no active connection ID for this path or
lacks other resources to immediately configure a new path could
delay sending the PATH_RESPONSE until sufficient resources are available.
Long delays might cause the peer to repeat the PATH_CHALLENGE and eventually
send a PATH_ABANDON, in which case the procedures specified in
<xref target="path-close"/> apply.</t>
        <t>PATH_ACK frames (see <xref target="mp-ack-frame"/>) can be returned on any path.
If the PATH_ACK is preferred to be sent on the same path as the acknowledged
packet (see <xref target="compute-rtt"/> for further guidance), it can be beneficial
to bundle a PATH_ACK frame with the PATH_RESPONSE frame during
path validation.</t>
        <t>If validation succeeds, the client can continue to use the path.
If validation fails, the client MUST NOT use the path and can
remove any status associated to the path initiation attempt.
As the used path ID is anyway consumed,
the endpoint MUST explicitly close the path, as specified in
<xref target="path-close"/>.</t>
        <section anchor="path-establishment-example">
          <name>Path Establishment Example</name>
          <t>In the example below it is assumed that both endpoints have
indicated an initial_max_path_id value of at least 2, which means
both endpoints can use path IDs 0, 1, and 2. Note that
path ID 0 is already used for the initial path.</t>
          <figure anchor="fig-example-new-path">
            <name>Example of new path establishment</name>
            <artwork><![CDATA[
   Client                                                  Server

   (Provide new CIDs for path 1 on an existing path 0)
   1-RTT[X]: DCID=S0, PATH_NEW_CONNECTION_ID[C1, Seq=0, PathID=1] -->
           <-- 1-RTT[Y]: DCID=C0,
                         PATH_NEW_CONNECTION_ID[S1, Seq=0, PathID=1],
                         PATH_ACK[PathID=0, PN=X]
           <-- 1-RTT[Y+1]: DCID=C0, PATH_NEW_CONNECTION_ID[S2, Seq=0,
                                                            PathID=2]
   ...
   (start sending packets on a new path using path ID 1)
   1-RTT[0]: DCID=S1, PATH_CHALLENGE[X] -->
        <-- 1-RTT[0]: DCID=C1, PATH_RESPONSE[X], PATH_CHALLENGE[Y],
                                             PATH_ACK[PathID=1, PN=0]
   1-RTT[1]: DCID=S1, PATH_RESPONSE[Y],
            PATH_ACK[PathID=1, PN=0], ... -->

]]></artwork>
          </figure>
          <t>In <xref target="fig-example-new-path"/>, the endpoints first exchange
new available connection IDs with the PATH_NEW_CONNECTION_ID frame,
as further explained in <xref target="consume-retire-cid"/>.
In this example, the client provides one connection ID (C1 with
path ID 1), and server provides two connection IDs
(S1 with path ID 1, and S2 with path ID 2).</t>
          <t>Before the client opens a new path by sending a packet on that path
with a PATH_CHALLENGE frame, it has to check whether there is
an unused connection ID for the same unused path ID available for each side.
In this example the path ID 1 is used which is the smallest unused path ID available
as recommended in <xref target="consume-retire-cid"/>.
Respectively, the client chooses the connection ID S1
as the Destination Connection ID of the new path when sending the PATH_CHALLENGE frame.
The server replies with a PATH_RESPONSE bundled with the PATH_ACK using connection ID S1
associated with the same path ID.</t>
        </section>
        <section anchor="relation-to-probing-and-migration">
          <name>Relation to Probing and Migration</name>
          <t><xref section="9.1" sectionFormat="of" target="QUIC-TRANSPORT"/> introduces the concept of
"probing" and "non-probing" frames. A packet that contains at least
one "non-probing" frame is a "non-probing" packet.
Migration as specified in <xref section="9.2" sectionFormat="of" target="QUIC-TRANSPORT"/> is initiated
by sending packets containing non-probing frames on a new (validated) path,
however, using the same path ID as on the old path.
When the multipath extension is negotiated, the reception of any packet,
no matter if "probing" or "non-probing", on a new path with a new, so far unused path ID
does not impact the path status of any existing
path. Therefore, any frame can be sent on a new path with a new path ID at any time
as long as the anti-amplification limits
(see <xref section="21.1.1.1" sectionFormat="of" target="QUIC-TRANSPORT"/>) and the congestion control
limits for this path are respected.</t>
          <t>An endpoint could receive a packet with a connection ID
associated to an active path ID where the packet's 4-tuple does not match the 4-tuple
currently used with that path ID. This MUST be treated as path migration,
as specified in <xref section="9.3" sectionFormat="of" target="QUIC-TRANSPORT"/>, with the constraint that
all connection IDs used during path migration MUST be
associated with the current path ID of the path being migrated.</t>
        </section>
        <section anchor="address-validation-token">
          <name>Address Validation Token</name>
          <t>As specified in <xref section="9.3" sectionFormat="of" target="QUIC-TRANSPORT"/>, the server is expected to send a new
address validation token to a client following the successful validation of a
new client address. The client will receive several tokens. When considering using a token
for subsequent connections, it might be difficult for the client
to pick the "right" token among multiple tokens obtained in a previous connection.
The client is likely to fall back to the strategy specified in <xref section="8.1.3" sectionFormat="of" target="QUIC-TRANSPORT"/>,
i.e., pick the last received token. To avoid issues when clients make the "wrong" choice,
a server SHOULD issue tokens that are capable of validating
any of the previously validated addresses. Including more addresses increases the
probability that the token will be useful in the future, but at the cost of a larger token.
Further guidance on token usage can be found in <xref section="8.1.3" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
        </section>
      </section>
      <section anchor="consume-retire-cid">
        <name>Handling Connection IDs</name>
        <t>When the multipath extension is used,
endpoints have to use the PATH_NEW_CONNECTION_ID and PATH_RETIRE_CONNECTION_ID frames
to indicate the respective path ID together with associated sequence number
(see <xref section="5.1.1" sectionFormat="of" target="QUIC-TRANSPORT"/>), at least for all paths with a path ID other than 0.
Each path ID has its own connection ID sequence number space whose initial value is 0.</t>
        <t>Endpoints SHOULD also use PATH_NEW_CONNECTION_ID and
PATH_RETIRE_CONNECTION_ID for the initial path with path ID 0.
However, the use of NEW_CONNECTION_ID and RETIRE_CONNECTION_ID
is still valid and endpoints need to process these frames
as corresponding to path ID 0.</t>
        <section anchor="issuing-new-connection-ids">
          <name>Issuing New Connection IDs</name>
          <t>In order to let the peer open new paths, it is RECOMMENDED to proactively
issue at least one Connection ID for each unused path ID up to the
minimum of the peer's and the local maximum path ID limits.</t>
          <t>If for any reason an endpoint does not want to issue connection IDs for all
unused path ID, it SHOULD NOT introduce discontinuity
in the issuing of path IDs as path initiation
requires available connection IDs for the same path ID on both sides. For instance,
if the maximum path ID limit is 2 and the endpoint wants to provide connection IDs
for only one path ID inside range [1, 2], it should select path ID 1 (and not path
ID 2).</t>
          <t>Similarly, endpoints SHOULD consume path IDs in a continuous way, i.e., when
creating paths. However, endpoints cannot expect to receive new connection IDs
or path initiation attempts with in-order use of path IDs
due to out-of-order delivery or path validation failure.</t>
          <t>Each endpoint maintains the set of connection IDs received from its peer for each path,
any of which it can use when sending packets on that path; see also <xref section="5.1" sectionFormat="of" target="QUIC-TRANSPORT"/>.
Usually, it is desired to provide at least one additional connection ID for
all used paths, to allow for (unintentional) migration events (<xref section="9.5" sectionFormat="of" target="QUIC-TRANSPORT"/>).</t>
          <t>As further specified in <xref section="5.1" sectionFormat="of" target="QUIC-TRANSPORT"/> connection IDs
cannot be issued more than once on the same connection
and therefore are unique for the scope of the connection,
regardless of the associated path ID.</t>
          <t>Endpoints MUST NOT issue new connection IDs with path IDs greater than
the Maximum Path Identifier field in MAX_PATH_ID frames (see <xref target="max-paths-frame"/>)
or the value of initial_max_path_id transport parameter if no MAX_PATH_ID frame was received yet.
Receipt of a frame with a greater path ID is a connection error as specified
in <xref target="frames"/>.</t>
          <t>When an endpoint finds it has not enough available unused path IDs,
it SHOULD either send a MAX_PATH_ID frame to increase the maximum path ID limit
(when limited by the sender) or a PATHS_BLOCKED frame
(see <xref target="paths-and-cids-blocked-frame"/>) to inform the peer that
its current limit prevented the creation of the new path.</t>
        </section>
        <section anchor="rotating-and-retiring-connection-ids">
          <name>Rotating and Retiring Connection IDs</name>
          <t><xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/> indicates that an endpoint
can change the connection ID it uses to another available one
at any time during the connection. For the extension specified in
this document, endpoints MUST only rotate to another connection ID associated
with the same path ID. Use of a connection ID associated with
another path ID will be considered as an attempt to open a new path instead.</t>
          <t>An endpoint is supposed to retire any connection ID that is not being used,
and the server is expected to provide
replacements, as specified in <xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/>.
As such, when receiving a PATH_RETIRE_CONNECTION_ID frame, an endpoint
SHOULD provide new connection IDs for that path, if still open, using PATH_NEW_CONNECTION_ID frames.</t>
          <t>While it is expected that the peer provides at least one unused connection ID
for all active paths using the PATH_NEW_CONNECTION_ID after retirement
of an old connection ID, an endpoint MAY send
a PATH_CIDS_BLOCKED (see <xref target="paths-and-cids-blocked-frame"/>)
if it wants to change the connection ID but no
unused connection ID for a that path is available. Further, an
endpoint MAY also send a PATH_CIDS_BLOCKED frame if it wants to
open a new path and has no connection IDs available for an unused
path ID even though the Maximum Path Identifier value would allow
for more paths.</t>
          <t>Retirement of connection IDs will not retire the path ID
that corresponds to the connection ID or any other path resources
as the packet number space is associated to the path ID.</t>
          <t>The peer that sends the PATH_RETIRE_CONNECTION_ID frame can keep sending data
on the path that the retired connection ID was used on but has
to use a different connection ID for the same path ID when doing so.</t>
        </section>
      </section>
      <section anchor="path-state">
        <name>Path Status Management</name>
        <t>An endpoint can send PATH_STATUS_BACKUP and PATH_STATUS_AVAILABLE frames (see
<xref target="path-backup-available-frame"/>) to inform the peer that it should
send packets on the paths with the preference expressed by these frames.
Note that an endpoint might not follow the peer's advertisements,
but these frames are still a clear signal of the peer's preference of path usage.</t>
        <t>Each peer indicates its preference of path usage independently of the other peer.
That means that peers could have different usage preferences for the same path.
Depending on the data sender's decisions, this might lead to usage of paths that have been
indicated as "backup" by the peer or non-usage of some locally available paths.</t>
        <t>PATH_STATUS_AVAILABLE indicates that a path is "available", i.e., it suggests to
the peer to use its own logic to split traffic among available paths.</t>
        <t>PATH_STATUS_BACKUP suggests that a path should only be used as backup, i.e., that no traffic
should be sent on that path if another path is available and usable.
If all established paths are indicated as backup paths, no guidance is provided about
which path should be used.</t>
        <t>Similarly, if no frame indicating a path usage preference was received for a certain path,
the preference of the peer is unknown and the sender needs to decide based on it
own local logic if the path should be used.</t>
        <t>If an endpoint starts using a backup path
because it has detected issues on the paths marked as "available", it is RECOMMENDED
to update its own path state signaling such that the peer avoids using the broken path.
An endpoint that detects a path breakage can also explicitly close the path
by sending a PATH_ABANDON frame (see <xref target="path-close"/>) in order to avoid
that its peer keeps using it and enable faster switchover to a backup path.
If the endpoints do not want to close the path immediately, as connectivity
could be re-established, PING frames can potentially be used to quickly detect
connectivity changes and switch back in a timely way.</t>
        <t>The PATH_STATUS_AVAILABLE and PATH_STATUS_BACKUP frames share a common, per-path sequence number space
to detect and ignore outdated information, as further described in <xref target="path-backup-available-frame"/>.
This is needed as they might arrive out-of-order,
e.g., if sent using different paths.</t>
      </section>
      <section anchor="path-close">
        <name>Path Close</name>
        <t>At any time in the connection, each endpoint can decide to
abandon a path, for example following changes in local
connectivity or local preferences.
An endpoint that wants to abandon a path MUST explicitly
close the path by sending a PATH_ABANDON frame (see <xref target="path-abandon-frame"/>).
This is true whether the decision to close the path results
from implicit signals such as an idle time-out (see <xref target="idle-time-close"/>)
or packet losses as well as for any other reason such as management
of local resources.</t>
        <t>Endpoints that send a PATH_ABANDON frame MUST treat all connection
IDs received from the peer for the path ID indicated in the PATH_ABANDON as immediately
retired, and subsequently cannot send any packet on that path anymore.
Note that while abandoning a path will cause
connection ID retirement, the inverse is not true: retiring the associated connection IDs
does not indicate path abandonment (see further <xref target="consume-retire-cid"/>).</t>
        <t>PATH_ABANDON frames can be sent on any open path,
not only on the path that is intended to be closed.
It is RECOMMENDED to send the PATH_ABANDON frames on another open path,
especially if connectivity on the to-be-abandoned path
is expected to be broken.</t>
        <t>When an endpoint receives a PATH_ABANDON frame, it MUST send a corresponding
PATH_ABANDON frame, if it has not already done so, and respectively treat all
connection IDs received from the peer for that path as immediately
retired. While that means retired connection IDs received from the peer cannot be used
for sending anymore, packets from the peer might still be in transit.
Therefore, knowledge of the
connection IDs issued to the peer and of the state
of the number space associated to the path SHOULD be retained for
3 PTO after the PATH_ABANDON frame has been received.
This avoids generating spurious stateless reset packets, as discussed in
<xref target="spurious-stateless-reset"/>, and helps acknowledge any
potentially reordered, outstanding packets from the peer (see <xref target="ack-after-abandon"/>).</t>
        <t>It is also possible that an endpoint will receive a PATH_ABANDON frame
before receiving or sending any traffic on a path. For example, if the client
tries to initiate a path and the path cannot be established, it will send a
PATH_ABANDON frame (see <xref target="path-initiation"/>). An endpoint could also decide
to abandon an unused path for any other reason, for example, removing a hole from
the sequence of path IDs in use. This is not an error.</t>
        <t>If a peer sends a PATH_ABANDON frame but never receives
a corresponding PATH_ABANDON frame, it might not be able to remove path state.
It is left to the implementation to handle this unexpected
behavior as it does not impact interoperability. If the endpoint is no longer
willing to process the issued connection IDs for the abandoned path,
it MAY close the connection, but SHOULD wait at least 3 PTOs after
sending the PATH_ABANDON frame.</t>
        <t>After a path is abandoned, the path ID MUST NOT be reused
for new paths, as the path ID is part of the nonce calculation <xref target="nonce"/>.</t>
        <t>If a PATH_ABANDON frame is received for the only open path of a QUIC
connection, the receiving peer SHOULD send a CONNECTION_CLOSE frame
and enter the closing state. Alternatively, a client MAY instead try to open a new path, if
available, and only initiate connection closure if path validation fails
or a CONNECTION_CLOSE frame is received from the server. Similarly,
the server MAY wait for a short, limited time such as one PTO if a
packet is received on a new path before sending the
CONNECTION_CLOSE frame.</t>
        <t>Note that other explicit closing mechanisms of <xref target="QUIC-TRANSPORT"/> still
apply on the whole connection. In particular, the reception of either a
CONNECTION_CLOSE (<xref section="10.2" sectionFormat="of" target="QUIC-TRANSPORT"/>) or a Stateless
Reset (<xref section="10.3" sectionFormat="of" target="QUIC-TRANSPORT"/>) closes the connection.</t>
        <section anchor="path-closure-example">
          <name>Path Closure Example</name>
          <t>In the example below, the client wants to close the path with path ID 0.
It sends the PATH_ABANDON frame to terminate the path with path ID 0
on the path with path ID 1 using the connection ID S1. After receiving
the PATH_ABANDON frame for path ID 0, the server also sends a
PATH_ABANDON frame with path ID 0 together with a PATH_ACK frame
on the same path using connection ID C1.</t>
          <figure anchor="fig-example-path-close1">
            <name>Example of closing a path.</name>
            <artwork><![CDATA[
Client                                                      Server

(client tells server to abandon a path with path ID 0)
1-RTT[X]: DCID=S1 PATH_ABANDON[path ID=0]->
                           (server tells client to abandon a path)
                    <-1-RTT[Y]: DCID=C1 PATH_ABANDON[path ID=0],
                                           PATH_ACK[PATH ID=1, PN=X]
1-RTT[U]: DCID=S1 PATH_ACK[path ID=1, PN=Y] ->
]]></artwork>
          </figure>
          <t>Note that if the PATH_ABANDON frame is instead sent on the to-be-abandoned path,
the last acknowledgment still needs to be sent on a different path
as no further packets can be sent on the abandoned path after the
PATH_ABANDON frame.</t>
        </section>
        <section anchor="spurious-stateless-reset">
          <name>Avoiding Spurious Stateless Resets</name>
          <t>Due to network delays, packets sent on an abandoned path can
arrive well after the connection IDs have been retired.
If not recognized as bound to the local
connection, such a packet triggers the peer to send a Stateless Reset
packet. The requirement to retain knowledge of connection ID and about
the packet number space for 3 PTOs
after receiving a PATH_ABANDON frame, as specified in <xref target="path-close"/> above,
is intended to reduce the risk of sending such spurious stateless
packets, but it cannot completely avoid that risk.</t>
          <t><xref section="10.3" sectionFormat="of" target="QUIC-TRANSPORT"/> specified that the Stateless Reset Tokens
associated with retired connection IDs cannot be used to identify Stateless Reset packets.
The immediate retirement of connection IDs received from the peer for an abandoned
path guarantees that spurious Stateless Reset packets
sent by the peer will not cause the closure of the QUIC connection.</t>
        </section>
        <section anchor="ack-after-abandon">
          <name>Handling PATH_ACK for Abandoned Paths</name>
          <t>When an endpoint sends a PATH_ABANDON frame, there might
still be some packets in transit from the peer.
Further, if an endpoint receives a PATH_ABANDON frame, it might still receive
reordered packets on the abandoned path. Endpoints SHOULD
promptly send PATH_ACK frames for all unacknowledged packets received on
an abandoned path if path state is still retained to do so.</t>
          <t>PATH_ACK frames have to be sent on a different path than the path being abandoned
after sending the PATH_ABANDON frame as connection IDs are immediately retired.</t>
          <t>When an endpoint finally deletes all state associated with the path,
the packets sent over the path and not yet acknowledged MUST be considered lost.
PATH_ACK frames received with an abandoned path ID are silently ignored,
as specified in <xref target="frames"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="frames">
      <name>New Frames</name>
      <t>All frames defined in this document MUST only be sent in 1-RTT packets.
If an endpoint receives a multipath-specific frame in a different packet type,
it MUST close the connection with an error of type PROTOCOL_VIOLATION.</t>
      <t>Receipt of multipath-specific frames
that use a path ID that is greater than the announced Maximum Paths value
in the MAX_PATH_ID frame or in the initial_max_path_id transport parameter,
if no MAX_PATH_ID frame was received yet,
MUST be treated as a connection error of type PROTOCOL_VIOLATION.</t>
      <t>If an endpoint receives a multipath-specific frame
with a path ID that it cannot process
anymore (e.g., because the path might have been abandoned), it
MUST silently ignore the frame.</t>
      <section anchor="mp-ack-frame">
        <name>PATH_ACK Frame</name>
        <t>The PATH_ACK frame (types 0x3e and 0x3f)
is an extension of the ACK frame specified in <xref section="19.3" sectionFormat="of" target="QUIC-TRANSPORT"/>. It is
used to acknowledge packets that were sent on different paths, as
each path has its own packet number space. If the frame type is 0x3f, PATH_ACK frames
also contain the sum of QUIC packets with associated ECN marks received
on the acknowledged packet number space up to this point.</t>
        <t>PATH_ACK frame is formatted as shown in <xref target="fig-mp-ack-format"/>.</t>
        <figure anchor="fig-mp-ack-format">
          <name>PATH_ACK Frame Format</name>
          <artwork><![CDATA[
  PATH_ACK Frame {
    Type (i) = 0x3e..0x3f,
    Path Identifier (i),
    Largest Acknowledged (i),
    ACK Delay (i),
    ACK Range Count (i),
    First ACK Range (i),
    ACK Range (..) ...,
    [ECN Counts (..)],
  }
]]></artwork>
        </figure>
        <t>Compared to the ACK frame specified in <xref target="QUIC-TRANSPORT"/>, the following
field is added:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated with the packet number space of the 0-RTT and 1-RTT packets
which are acknowledged by the PATH_ACK frame.</t>
          </dd>
        </dl>
      </section>
      <section anchor="path-abandon-frame">
        <name>PATH_ABANDON Frame</name>
        <t>The PATH_ABANDON frame informs the peer to abandon a path.
After the PATH_ABANDON frame is sent on a path, the path can no longer be used for sending.</t>
        <t>PATH_ABANDON frames are formatted as shown in <xref target="fig-path-abandon-format"/>.</t>
        <figure anchor="fig-path-abandon-format">
          <name>PATH_ABANDON Frame Format</name>
          <artwork><![CDATA[
  PATH_ABANDON Frame {
    Type (i) = 0x3e75,
    Path Identifier (i),
    Error Code (i),
  }
]]></artwork>
        </figure>
        <t>PATH_ABANDON frames contain the following fields:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated to the to-be-abandoned path.</t>
          </dd>
          <dt>Error Code:</dt>
          <dd>
            <t>A variable-length integer that indicates the reason for abandoning
this path. NO_ERROR(0x0) indicates that the path is being abandoned
without any error being encountered. Other error codes can be found in <xref target="error-codes"/>.</t>
          </dd>
        </dl>
        <t>PATH_ABANDON frames are ack-eliciting. If a packet containing
a PATH_ABANDON frame is considered lost, the peer SHOULD repeat it.</t>
        <t>Use of the PATH_ABANDON frame is specified in <xref target="path-close"/>.</t>
        <section anchor="error-codes">
          <name>Error Codes</name>
          <t>QUIC transport error codes are 62-bit unsigned integers
(see <xref section="20.1" sectionFormat="of" target="QUIC-TRANSPORT"/>. In addition to
NO_ERROR(0x0), the following QUIC error codes are defined
for use in the PATH_ABANDON frame:</t>
          <dl>
            <dt>APPLICATION_ABANDON_PATH (0x3e):</dt>
            <dd>
              <t>The endpoint is abandoning the path at the
request of the application.</t>
            </dd>
            <dt>PATH_RESOURCE_LIMIT_REACHED (0x3e75):</dt>
            <dd>
              <t>The endpoint is abandoning the path because
it cannot allocate sufficient resources to maintain it.</t>
            </dd>
            <dt>PATH_UNSTABLE_OR_POOR (0x3e76):</dt>
            <dd>
              <t>The endpoint is abandoning the path because
the used interface is observed to be unstable or performance is considered poor. This condition can occur, e.g.,
due to frequent handover events during high-speed mobility or due to a weak wireless signal.</t>
            </dd>
            <dt>NO_CID_AVAILABLE_FOR_PATH (0x3e77):</dt>
            <dd>
              <t>The endpoint is abandoning the path due to
the lack of a connection ID for this path.
This might occur when the peer initiates a new path
but has not provided a corresponding connection ID for the path ID
(or the packet containing the connection IDs has not arrived yet).</t>
            </dd>
          </dl>
        </section>
      </section>
      <section anchor="path-backup-available-frame">
        <name>PATH_STATUS_AVAILABLE and PATH_STATUS_BACKUP frames</name>
        <t>PATH_STATUS_AVAILABLE frames (type=0x3e77) are used by endpoints to inform the peer
that the indicated path is available for sending.</t>
        <t>PATH_STATUS_AVAILABLE frames are formatted as shown in <xref target="fig-path-available-format"/>.</t>
        <figure anchor="fig-path-available-format">
          <name>PATH_STATUS_AVAILABLE Frame Format</name>
          <artwork><![CDATA[
  PATH_STATUS_AVAILABLE Frame {
    Type (i) = 0x3e77,
    Path Identifier (i),
    Path Status Sequence Number (i),
  }
]]></artwork>
        </figure>
        <t>PATH_STATUS_BACKUP frames (type=0x3e76) are used by endpoints to inform the peer
about its preference to not use the indicated path for sending.</t>
        <t>PATH_STATUS_BACKUP frames are formatted as shown in <xref target="fig-path-backup-format"/>.</t>
        <figure anchor="fig-path-backup-format">
          <name>PATH_STATUS_BACKUP Frame Format</name>
          <artwork><![CDATA[
  PATH_STATUS_BACKUP Frame {
    Type (i) = 0x3e76
    Path Identifier (i),
    Path Status Sequence Number (i),
  }
]]></artwork>
        </figure>
        <t>Both PATH_STATUS_AVAILABLE and PATH_STATUS_BACKUP frames contain the following fields:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID that the status update corresponds to.
All path IDs below the maximum path ID limit can be indicated,
even if the path is not in active use yet.</t>
          </dd>
          <dt>Path Status Sequence Number:</dt>
          <dd>
            <t>A variable-length integer specifying the per-path sequence number assigned for
this frame.</t>
          </dd>
        </dl>
        <t>The sequence number space is common to the two frame types,
and monotonically increasing values MUST be used when sending PATH_STATUS_AVAILABLE or
PATH_STATUS_BACKUP frames for a given path ID.</t>
        <t>Frames might be received out of order. A peer MUST ignore an incoming
PATH_STATUS_AVAILABLE or
PATH_STATUS_BACKUP frame if it previously received another PATH_STATUS_BACKUP frame
or PATH_STATUS_AVAILABLE frame for the same path ID with a Path Status sequence number
equal to or higher than the Path Status sequence number of the incoming frame.</t>
        <t>The requirement of monotonically increasing sequence numbers
is per path. Receivers could very well receive the
same sequence number for PATH_STATUS_AVAILABLE or PATH_STATUS_BACKUP Frames
on different paths. As such, the receiver of
the PATH_STATUS_AVAILABLE or PATH_STATUS_BACKUP frame needs to use and compare the sequence numbers
separately for each path ID.</t>
        <t>PATH_STATUS_BACKUP and PATH_STATUS_AVAILABLE frames are ack-eliciting. If a packet containing a
PATH_STATUS_BACKUP or PATH_STATUS_AVAILABLE frame is considered lost, the peer SHOULD resend the frame
only if it contains the last status sent for that path -- as indicated
by the sequence number.</t>
        <t>A PATH_STATUS_BACKUP or a PATH_STATUS_AVAILABLE frame MAY be bundled with a PATH_NEW_CONNECTION_ID frame or
a PATH_RESPONSE frame in order to indicate the preferred path usage
before or during path initiation.</t>
      </section>
      <section anchor="mp-new-conn-id-frame">
        <name>PATH_NEW_CONNECTION_ID frame</name>
        <t>The PATH_NEW_CONNECTION_ID frame (type=0x3e78)
is an extension of the NEW_CONNECTION_ID frame specified in
<xref section="19.15" sectionFormat="of" target="QUIC-TRANSPORT"/>.
It is used to provide its peer with alternative connection IDs for 1-RTT packets
for a specific path. The peer can then use a different connection ID on the same path
to break linkability when migrating on that path; see also <xref section="9.5" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
        <t>PATH_NEW_CONNECTION_ID frames are formatted as shown in <xref target="fig-mp-connection-id-frame-format"/>.</t>
        <figure anchor="fig-mp-connection-id-frame-format">
          <name>PATH_NEW_CONNECTION_ID Frame Format</name>
          <artwork><![CDATA[
PATH_NEW_CONNECTION_ID Frame {
  Type (i) = 0x3e78,
  Path Identifier (i),
  Sequence Number (i),
  Retire Prior To (i),
  Length (8),
  Connection ID (8..160),
  Stateless Reset Token (128),
}
]]></artwork>
        </figure>
        <t>Compared to the NEW_CONNECTION_ID frame specified in
<xref section="19.15" sectionFormat="of" target="QUIC-TRANSPORT"/>, the following
field is added:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated with the connection ID. This
means the provided connection ID can only be used on the corresponding path.</t>
          </dd>
        </dl>
        <t>Note that, other than for the NEW_CONNECTION_ID frame of <xref section="19.15" sectionFormat="of" target="QUIC-TRANSPORT"/>,
the sequence number applies on a per-path context.
This means different connection IDs on different paths might have the same
sequence number value.</t>
        <t>The Retire Prior To field indicates which connection IDs
should be retired among those that share the path ID in the Path Identifier field.
Connection IDs associated with different path IDs are not affected.</t>
        <t>Note that the NEW_CONNECTION_ID frame can only be used to issue or retire
connection IDs for the initial path with path ID 0.</t>
        <t>The last paragraph of <xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/> specifies how to
verify the Retire Prior To field of an incoming NEW_CONNECTION_ID frame.
The same rule
applies for PATH_NEW_CONNECTION_ID frames, but it applies per path. If the
multipath extension is used, the rule
for NEW_CONNECTION_ID frame is only applied for path ID 0.</t>
      </section>
      <section anchor="mp-retire-conn-id-frame">
        <name>PATH_RETIRE_CONNECTION_ID frame</name>
        <t>The PATH_RETIRE_CONNECTION_ID frame (type=0x3e79)
is an extension of the RETIRE_CONNECTION_ID frame specified in
<xref section="19.16" sectionFormat="of" target="QUIC-TRANSPORT"/>. It is used
to indicate that an endpoint will no longer use a connection ID for a specific path ID
that was issued by its peer. To retire the connection ID used
during the handshake on the initial path, path ID 0 is used.
Sending a PATH_RETIRE_CONNECTION_ID frame also serves as a request to the peer
to send additional connection IDs for this path (see also <xref section="5.1" sectionFormat="of" target="QUIC-TRANSPORT"/>),
unless the path specified by the path ID has been abandoned. New path-specific connection IDs can be
delivered to a peer using the PATH_NEW_CONNECTION_ID frame (see <xref target="mp-new-conn-id-frame"/>).</t>
        <t>PATH_RETIRE_CONNECTION_ID frames are formatted as shown in <xref target="fig-mp-retire-connection-id-frame-format"/>.</t>
        <figure anchor="fig-mp-retire-connection-id-frame-format">
          <name>PATH_RETIRE_CONNECTION_ID Frame Format</name>
          <artwork><![CDATA[
PATH_RETIRE_CONNECTION_ID Frame {
  Type (i) = 0x3e79,
  Path Identifier (i),
  Sequence Number (i),
}
]]></artwork>
        </figure>
        <t>Compared to the RETIRE_CONNECTION_ID frame specified in
<xref section="19.16" sectionFormat="of" target="QUIC-TRANSPORT"/>, the following
field is added:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated with the connection ID to retire.</t>
          </dd>
        </dl>
        <t>Note that the RETIRE_CONNECTION_ID frame can only be used to retire
connection IDs for the initial path with path ID 0.</t>
        <t>As the PATH_NEW_CONNECTION_ID frames applies the sequence number per path,
the sequence number in the PATH_RETIRE_CONNECTION_ID frame is also per
path. The PATH_RETIRE_CONNECTION_ID frame retires the Connection ID with
the specified path ID and sequence number.</t>
        <t>The processing of an incoming RETIRE_CONNECTION_ID frame
is described in <xref section="19.16" sectionFormat="of" target="QUIC-TRANSPORT"/>. The same processing
applies for PATH_RETIRE_CONNECTION_ID frames per path, while with use of
the multipath extension the
processing of a RETIRE_CONNECTION_ID frame is only applied for path ID 0.</t>
      </section>
      <section anchor="max-paths-frame">
        <name>MAX_PATH_ID frame</name>
        <t>A MAX_PATH_ID frame (type=0x3e7a) informs the peer of the maximum path ID
it is permitted to use.</t>
        <t>MAX_PATH_ID frames are formatted as shown in <xref target="fig-max-paths-frame-format"/>.</t>
        <figure anchor="fig-max-paths-frame-format">
          <name>MAX_PATH_ID Frame Format</name>
          <artwork><![CDATA[
MAX_PATH_ID Frame {
  Type (i) = 0x3e7a,
  Maximum Path Identifier (i),
}
]]></artwork>
        </figure>
        <t>MAX_PATH_ID frames contain the following field:</t>
        <dl>
          <dt>Maximum Path Identifier:</dt>
          <dd>
            <t>The maximum path ID that the sending endpoint is willing to accept.
This value MUST NOT exceed 2<sup>32</sup>-1, which is the maximum allowed value for the path ID due to
restrictions on the nonce calculation (see <xref target="nonce"/>).
The Maximum Path Identifier value MUST NOT be lower than the value
advertised in the initial_max_path_id transport parameter.</t>
          </dd>
        </dl>
        <t>Receipt of an invalid Maximum Path Identifier value MUST be treated as a
connection error of type PROTOCOL_VIOLATION.</t>
        <t>Loss or reordering can cause an endpoint to receive a MAX_PATH_ID frame with
a smaller Maximum Path Identifier value than was previously received.
MAX_PATH_ID frames that do not increase the path limit MUST be ignored.</t>
        <t>MAX_PATH_ID frames are ack-eliciting and SHOULD be retransmitted when lost
and no more recent MAX_PATH_ID frame has been sent in the meantime.</t>
      </section>
      <section anchor="paths-and-cids-blocked-frame">
        <name>PATHS_BLOCKED and PATH_CIDS_BLOCKED frames</name>
        <t>A sender can send a PATHS_BLOCKED frame (type=0x3e7b) when
it wishes to open a path but is unable to do so due to the maximum path ID
limit set by its peer.</t>
        <t>A sender can send a PATH_CIDS_BLOCKED frame (type=0x3e7c) when
it wishes to open a path with a valid path ID or change the connection ID on an established path
but is unable to do so because there are no unused connection IDs available
for the corresponding path ID.</t>
        <t>Note that PATHS_BLOCKED and PATH_CIDS_BLOCKED frames are informational.
Sending a PATHS_BLOCKED or a PATH_CIDS_BLOCKED frame does not imply a particular action from the peer
like sending a MAX_PATH_ID frame with a new Maximum Path Identifier value,
but informs the peer that the maximum path ID limit
or the absence of unused connection IDs prevented the creation or the usage of paths.
If the successful reception of a PATHS_BLOCKED/PATH_CIDS_BLOCKED frame was acknowledged but
no action is taken by the peer, this is likely a deliberate decision by the peer and
repeating the PATHS_BLOCKED/PATH_CIDS_BLOCKED frame will not change that.</t>
        <t>PATHS_BLOCKED frames are formatted as shown in <xref target="fig-paths-blocked-frame-format"/>.</t>
        <figure anchor="fig-paths-blocked-frame-format">
          <name>PATHS_BLOCKED Frame Format</name>
          <artwork><![CDATA[
PATHS_BLOCKED Frame {
  Type (i) = 0x3e7b,
  Maximum Path Identifier (i),
}
]]></artwork>
        </figure>
        <t>PATHS_BLOCKED frames contain the following field:</t>
        <dl>
          <dt>Maximum Path Identifier:</dt>
          <dd>
            <t>A variable-length integer indicating the maximum path ID that was
allowed at the time the frame was sent. If the received value is lower than
the currently allowed maximum value, this frame can be ignored.</t>
          </dd>
        </dl>
        <t>PATH_CIDS_BLOCKED frames are formatted as shown in <xref target="fig-path-cid-blocked-frame-format"/>.</t>
        <figure anchor="fig-path-cid-blocked-frame-format">
          <name>PATH_CIDS_BLOCKED Frame Format</name>
          <artwork><![CDATA[
PATH_CIDS_BLOCKED Frame {
  Type (i) = 0x3e7c,
  Path Identifier (i),
  Next Sequence Number (i),
}
]]></artwork>
        </figure>
        <t>PATH_CIDS_BLOCKED frames contain the following fields:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>Identifier of the path for which unused connection IDs are not available.</t>
          </dd>
          <dt>Next Sequence Number:</dt>
          <dd>
            <t>The next sequence number that is expected to be issued for a connection ID for this path by the peer.</t>
          </dd>
        </dl>
        <t>Receipt of a value of Maximum Path Identifier or Path Identifier that is higher than
the local maximum value MUST be treated as a connection error of type PROTOCOL_VIOLATION.</t>
        <t>Receipt of a value of Next Sequence Number that is higher than
the sequence number of the next expected to be issued connection ID for this path
MUST be treated as a connection error of type PROTOCOL_VIOLATION.</t>
        <t>PATHS_BLOCKED and PATH_CIDS_BLOCKED frames are ack-eliciting and MAY be retransmitted
if the path is still blocked when the loss is detected.</t>
      </section>
    </section>
    <section anchor="impl-consideration">
      <name>Implementation Considerations</name>
      <t>This section provides informational guidance for implementors.</t>
      <section anchor="migration">
        <name>Connection ID Changes, Migration, and NAT Rebindings</name>
        <t>With the multipath extension, each
path uses a separate packet number space.
This is a major difference from
<xref target="QUIC-TRANSPORT"/>, which only defines three number spaces (Initial,
Handshake and Application data packets).</t>
        <t>For any given path, connection ID rotation, NAT rebinding, or client initiated migration
as specified in <xref target="QUIC-TRANSPORT"/> might occur, like on a single path.
These events do not change the path ID, and do not affect the packet number
space associated with the path.</t>
        <t>It is generally preferable to use multipath mechanisms such as
creating a new path and later abandoning the old path,
rather than doing migration of a single path as specified in <xref target="QUIC-TRANSPORT"/>.
This enables a smoother handover and allows a more controlled migration handling
at the server side. However, migration of a single path cannot be
avoided in case of NAT rebinding, or if the server requests migration
to a "preferred address" during the handshake.</t>
        <t><xref section="9.3" sectionFormat="of" target="QUIC-TRANSPORT"/> allows an endpoint to skip validation of
a peer address if that address has been seen recently. However, when the
multipath extension is used and an endpoint has multiple addresses that
could lead to switching between different paths, it should rather maintain
multiple open paths instead.</t>
        <t>Servers observing a 4-tuple change will
perform path validation (see <xref section="9" sectionFormat="of" target="QUIC-TRANSPORT"/>).
If path validation process succeeds, the endpoints set
the path's congestion controller and round-trip time
estimator according to <xref section="9.4" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
      </section>
      <section anchor="using-multiple-paths-on-the-same-4-tuple">
        <name>Using Multiple Paths on the Same 4-tuple</name>
        <t>It is possible to create paths that
refer to the same 4-tuple. For example, endpoints might want
to create paths that use different Differentiated Service <xref target="RFC2475"/> markings.
This could be done in conjunction with scheduling algorithms
that match streams to paths, so that for example data frames for
low priority streams are sent over low priority paths.
Since these paths use different path IDs, they can be managed
independently to suit the needs of the application. (The application
would need to manage how client and server use differentiated services
on a path. This is not specified in this document.)</t>
        <t>There might be cases in which paths are created with different 4-tuples,
but end up using the same 4-tuples as a consequence of path
migrations. Consider the following example where all paths use the same
source and destination ports:</t>
        <ul spacing="normal">
          <li>
            <t>Client starts path 1 from address 192.0.2.1 to server address 198.51.100.1</t>
          </li>
          <li>
            <t>Client starts path 2 from address 192.0.2.2 to server address 198.51.100.1</t>
          </li>
          <li>
            <t>Both paths are used for a while.</t>
          </li>
          <li>
            <t>Server sends packet from address 198.51.100.1 to client address 192.0.2.1, with Connection ID indicating path ID 2.</t>
          </li>
          <li>
            <t>Client receives the packet, recognizes a path migration, updates the source address of path 2 to 192.0.2.1.</t>
          </li>
        </ul>
        <t>Such unintentional use of the same 4-tuple on different paths ought to
be rare. When they happen, the two paths would be redundant, and the
endpoint could want to close one of them.</t>
      </section>
      <section anchor="congestion-control">
        <name>Congestion Control</name>
        <t>When the QUIC multipath extension is used, senders manage per-path
congestion status as required in <xref section="9.4" sectionFormat="of" target="QUIC-TRANSPORT"/>.
However, in <xref target="QUIC-TRANSPORT"/> only one active path is assumed and as such
the requirement is to reset the congestion control status on path migration.
With the multipath extension, multiple paths can be used simultaneously,
therefore separate congestion control state is maintained for each path.
This means a sender is not allowed to send more data on a given path
than congestion control for that path indicates.</t>
        <t>When a Multipath QUIC connection uses two or more paths, there is no
guarantee that these paths are fully disjoint. When two (or more paths)
share the same bottleneck, using a standard congestion control scheme
could result in an unfair distribution of the bandwidth with
the multipath connection getting more bandwidth than competing single
paths connections. Multipath TCP uses the linked increases algorithm (LIA)
congestion control scheme
specified in <xref target="RFC6356"/> to solve this problem.  This scheme can
immediately be adapted to Multipath QUIC. Other coupled congestion
control schemes have been proposed for Multipath TCP such as <xref target="OLIA"/>.
Designers of congestion control algorithms specialized for Multipath QUIC
are advised to follow BCP 133; see <xref section="7.10" sectionFormat="of" target="RFC9743"/>.</t>
        <t><xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/> indicates that an endpoint
can change the connection ID it uses to another available one
at any time during the connection. As such, a sole change of the Connection
ID without any change in the address does not indicate a path change and
the endpoint can keep the same congestion control and RTT measurement state.</t>
      </section>
      <section anchor="compute-rtt">
        <name>Computing Path RTT</name>
        <t>PATH_ACK frames indicate which path the acknowledged packets were sent on,
but they could be received through any open path. If successive acknowledgments are received
on different paths, the measured RTT samples can fluctuate widely,
which could result in poor performance depending on, for example, the congestion control
algorithm.</t>
        <t>Congestion control state as defined in <xref target="QUIC-RECOVERY"/> is kept
per path ID. However, depending on which path acknowledgments are
sent, the actual RTT of a path cannot be calculated or might not be
the right value to be used.</t>
        <t>Instead of using the real RTT of a path, it is recommended to consider
the sum of two one-way delays: the delay
on the packet sending path and the delay on the return path chosen
for the acknowledgments.  When different paths have different
characteristics, the delays can vary
widely. Consider for example a multipath transmission using both a
terrestrial path, with a latency of 50ms in each direction, and a
geostationary satellite path, with a latency of 300ms in each
direction.  The sum of the two one-way delays will depend on the combination
of paths used for the packet transmission and the acknowledgment transmission,
as shown in <xref target="fig-example-ack-delay"/>.</t>
        <table anchor="fig-example-ack-delay">
          <name>Example of ACK delays using multiple paths</name>
          <thead>
            <tr>
              <th align="left">ACK Path \ Data path</th>
              <th align="left">Terrestrial</th>
              <th align="left">Satellite</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Terrestrial</td>
              <td align="left">100ms</td>
              <td align="left">350ms</td>
            </tr>
            <tr>
              <td align="left">Satellite</td>
              <td align="left">350ms</td>
              <td align="left">600ms</td>
            </tr>
          </tbody>
        </table>
        <t>The computed values reflect both the state of the network path and the
scheduling decisions of the acknowledgment sender. If we
assume that the PATH_ACK will be sent over the terrestrial
link, because this decision provides the best response time, the
computed RTT value for the satellite path will be about 350ms. This is
lower than the 600ms that would be measured if the PATH_ACK came over
the satellite channel, but it is still the right value for computing
for example the PTO timeout: if a PATH_ACK is not received after more
than 350ms, either the packet or its PATH_ACK were probably lost.</t>
        <t>The simplest implementation is to use the delays measured when receiving new packet acknowledgments
to compute smoothed_rtt and rttvar per
<xref section="5.3" sectionFormat="of" target="QUIC-RECOVERY"/> regardless of the path through which PATH_ACK frames are
received. This approach will provide good results
as long as acknowledgments are sent consistently over one path.
If at any time the acknowledgment sender revisits its sending preferences,
this can also change the paths that are used to send acknowledgments.
However, this is not very
different from route changes on a single path.
The RTT, RTT variance and PTO estimates will rapidly converge to
reflect the new conditions.
There is one exception: the minimum RTT, which is also
a known challenge when route changes occurs on a single path.
An acknowledgment receiver
can, however, remember the path over which the PATH_ACK that produced
the minimum RTT was received, and restart the minimum RTT computation
if that acknowledgment path changes or is abandoned.
If acknowledgments are not sent consistently over one path, the
acknowledgment receiver can monitor over which path acknowledgments
are received and only use samples for acknowledgments received on the same
path on which the data was sent, if any.</t>
        <t>Further, congestion control functions that rely on delay estimates needs
to consider cases where acknowledgments are sent over multiple paths
with different delays explicitly.</t>
      </section>
      <section anchor="packet-scheduling">
        <name>Packet Scheduling</name>
        <t>The transmission of packets containing data is limited
by the arrival of data from the application and by congestion control.
Generally, QUIC packets that increase the number of bytes in flight can only be sent
when the congestion window for the selected path allows it.</t>
        <t>Most frames, including control frames (PATH_CHALLENGE and PATH_RESPONSE being the notable
exceptions), can be sent and received on any open path.
As such, a packet scheduler is needed to decide which path to use
for sending the next packet, among those paths with an open congestion window.
If multiple paths are used to send data frames belonging to the same stream,
data delivery will experience the maximum delay of all used paths due to in-order delivery.
The scheduling is a local decision, based on the preferences of the application and the
implementation.</t>
        <t>This implies that an endpoint might send and receive PATH_ACK
frames on a path different from the one that carried the acknowledged
packets. As noted in <xref target="compute-rtt"/>, RTT estimates computed using
the standard algorithm reflect both the characteristics of the
path and the scheduling algorithm of PATH_ACK frames. The estimates will converge
faster if the scheduling strategy of PATH_ACK frames is stable.
Implementations can choose different strategies such as, for instance, sending
PATH_ACK frames either simply on the path where the acknowledged packets was received,
or alternatively the shortest path, which results in shorter control loops
and potentially better performance.</t>
        <t>Since packets that only carry PATH_ACK frames
are not congestion controlled (see <xref section="7" sectionFormat="of" target="QUIC-RECOVERY"/>),
senders should carefully consider the load induced
by these packets, especially if the capacity is unknown on that path,
e.g., when that path is not used for sending data frames.</t>
      </section>
      <section anchor="retransmissions">
        <name>Retransmissions</name>
        <t>Simultaneous use of multiple paths enables different
retransmission strategies to cope with losses such as:
a) retransmitting lost frames over the
same path, b) retransmitting lost frames on a different or
dedicated path, and c) duplicate lost frames on several paths (not
recommended for general purpose use due to the network
overhead). While this document does not preclude a specific
strategy, more detailed specification is out of scope.</t>
        <t>As noted in <xref section="2.2" sectionFormat="of" target="QUIC-TRANSPORT"/>, STREAM frame boundaries are not
expected to be preserved when data is retransmitted. Especially when STREAM
frames have to be retransmitted over a different path with a smaller MTU limit,
smaller STREAM frames might need to be sent instead.</t>
      </section>
      <section anchor="pto-expiration">
        <name>PTO Expiration</name>
        <t>An implementation should follow the mechanism specified in <xref target="QUIC-RECOVERY"/>
for detecting packet loss on each individual path. A special case happens when
the PTO timer expires. According to <xref target="QUIC-RECOVERY"/>, no packet will be declared
lost until either the packet sender receives a new acknowledgment for this path,
or the path itself is finally declared broken. This cautious process minimizes
the risk of spurious retransmissions, but it might cause significant delivery delay
for the frames contained in these "lost packets".</t>
        <t>Endpoints could take advantage of the multipath extension, and retransmit the content
of the delayed packets on other available paths if the congestion control window on these
paths allows.</t>
      </section>
      <section anchor="paths-having-different-pmtu-sizes">
        <name>Paths Having Different PMTU Sizes</name>
        <t>An implementation should take care to handle different PMTU sizes across
multiple paths. As specified in <xref section="14.3" sectionFormat="of" target="QUIC-TRANSPORT"/> the
DPLPMTUD Maximum Packet Size (MPS) is maintained for each combination of local and remote IP addresses.
Note that with the multipath extension multiple paths could use the same 4-tuple
but might have different MPS.
One simple option, if the PMTUs are similar, is to apply the minimum PMTU of all paths to
each path, which could also help to simplify retransmission processing.</t>
      </section>
      <section anchor="idle-time-close">
        <name>Idle Timeout and Keep-Alives</name>
        <t><xref target="QUIC-TRANSPORT"/> defines an idle timeout for closing the connection
which applies in case of multipath usage
if no packet is received on any path for the duration of the idle timeout.</t>
        <t>This document does not specify per-path idle timeouts. An endpoint
can decide to close a path at any time, whether the path is in active
use or not. For example, an endpoint might wait to send
the initial PATH_ABANDON frame until it anyway sends another frame.
Note that the receiver of an initial PATH_ABANDON frame is, however,
required to immediately reply (see <xref target="path-close"/>).</t>
        <t>If a path is not actively used for a while, it might not be usable anymore,
e.g., due to middlebox timeouts. To avoid such path breakage, endpoints
can send ack-eliciting packets such as packets containing PING frames
(<xref section="19.2" sectionFormat="of" target="QUIC-TRANSPORT"/>) on that path to keep it alive.
However, this specification does not recommend sending keep-alives as it can
create unnecessary overhead, especially if there are other, actively used paths.</t>
        <t><xref section="5.3" sectionFormat="of" target="QUIC-TRANSPORT"/> defines an optional keep-alive process.
This process can be applied to each path separately depending on application needs.
Some applications could decide to not keep any not-actively used path alive,
keep only one additional path alive, or multiple paths, e.g., for more redundancy.
As discussed in <xref section="10.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/>, the keep-alive interval
needs to incorporate timeouts in middleboxes on the path.</t>
        <t>If a path was not actively used for a while and no keep-alives have been sent,
an endpoint can probe it before switching to active use if there are still other paths
that are currently usable.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document defines a new transport parameter to
enable simultaneous use of multiple paths within one QUIC connection.
Further, it specifies new frame types for path management and new error codes
when a path is abandoned.</t>
      <t>The current draft defines provisional values for experiments,
but, if the draft is approved, IANA is requested to allocate short values
as permanent with "IETF" as change controller and
the QUIC WG as contact to the respective registries under
<eref target="https://www.iana.org/assignments/quic/quic.xhtml">https://www.iana.org/assignments/quic/quic.xhtml</eref>.</t>
      <t>The following entry in <xref target="transport-parameters"/> should be added to
the "QUIC Transport Parameters" registry.</t>
      <table anchor="transport-parameters">
        <name>Addition to QUIC Transport Parameters Entries</name>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Parameter Name.</th>
            <th align="left">Specification</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">0x3e</td>
            <td align="left">initial_max_path_id</td>
            <td align="left">
              <xref target="nego"/></td>
          </tr>
        </tbody>
      </table>
      <t>The following frame types defined in <xref target="frame-types"/> should be added to
the "QUIC Frame Types" registry.</t>
      <table anchor="frame-types">
        <name>Addition to QUIC Frame Types Entries</name>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Frame Type Name</th>
            <th align="left">Specification</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">0x3e - 0x3f</td>
            <td align="left">PATH_ACK</td>
            <td align="left">
              <xref target="mp-ack-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e75</td>
            <td align="left">PATH_ABANDON</td>
            <td align="left">
              <xref target="path-abandon-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e76</td>
            <td align="left">PATH_STATUS_BACKUP</td>
            <td align="left">
              <xref target="path-backup-available-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e77</td>
            <td align="left">PATH_STATUS_AVAILABLE</td>
            <td align="left">
              <xref target="path-backup-available-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e78</td>
            <td align="left">PATH_NEW_CONNECTION_ID</td>
            <td align="left">
              <xref target="mp-new-conn-id-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e79</td>
            <td align="left">PATH_RETIRE_CONNECTION_ID</td>
            <td align="left">
              <xref target="mp-retire-conn-id-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e7a</td>
            <td align="left">MAX_PATH_ID</td>
            <td align="left">
              <xref target="max-paths-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e7b</td>
            <td align="left">PATHS_BLOCKED</td>
            <td align="left">
              <xref target="paths-and-cids-blocked-frame"/></td>
          </tr>
          <tr>
            <td align="left">0x3e7c</td>
            <td align="left">PATH_CIDS_BLOCKED</td>
            <td align="left">
              <xref target="paths-and-cids-blocked-frame"/></td>
          </tr>
        </tbody>
      </table>
      <t>The following transport error code defined in <xref target="tab-error-code"/> are to
be added to the "QUIC Transport Error Codes" registry.</t>
      <table anchor="tab-error-code">
        <name>Error Codes for Multipath QUIC</name>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Code</th>
            <th align="left">Description</th>
            <th align="left">Specification</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">0x3e</td>
            <td align="left">APPLICATION_ABANDON_PATH</td>
            <td align="left">Path abandoned at the application's request</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
          <tr>
            <td align="left">0x3e75</td>
            <td align="left">PATH_RESOURCE_LIMIT_REACHED</td>
            <td align="left">Path abandoned due to resource limitations in the transport</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
          <tr>
            <td align="left">0x3e76</td>
            <td align="left">PATH_UNSTABLE_OR_POOR</td>
            <td align="left">Path abandoned due to unstable interfaces or poor performance</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
          <tr>
            <td align="left">0x3e77</td>
            <td align="left">NO_CID_AVAILABLE_FOR_PATH</td>
            <td align="left">Path abandoned due to no available connection IDs for the path</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The multipath extension retains all security properties of <xref target="QUIC-TRANSPORT"/> and <xref target="QUIC-TLS"/>
but requires some additional consideration regarding:</t>
      <ul spacing="normal">
        <li>
          <t>potential additional resource usage for per-path connection IDs and multiple concurrent path contexts;</t>
        </li>
        <li>
          <t>a potentially increased amplification risk for denial of service attacks if multiple paths are used simultaneously;</t>
        </li>
        <li>
          <t>changes to the nonce calculation due to the use of multiple packet number spaces.</t>
        </li>
      </ul>
      <section anchor="memory-allocation-for-per-path-resources">
        <name>Memory Allocation for Per-Path Resources</name>
        <t>The maximum path ID limit in initial_max_path_id or MAX_PATH_ID frame
limits the number of paths an endpoint is willing
to maintain and thereby also limits the associated path resources.
Furthermore, as connection IDs have to be issued by both endpoints for the
same path ID before an endpoint can open a path, each endpoint could also
control the per-path resource usage by only
issuing connection IDs for a limited number of paths. However, using
the maximum path ID limit in initial_max_path_id or the MAX_PATH_ID frame is preferred.</t>
        <t>To avoid unnecessary resource usage that could be exploited
in a resource exhaustion attack, endpoints SHOULD allocate additional path resources,
such as e.g., for packet number handling, only after path validation has successfully completed.</t>
      </section>
      <section anchor="denial-of-service-with-multiple-paths">
        <name>Denial of Service with Multiple Paths</name>
        <t>Path validation as specified in <xref section="8.2" sectionFormat="of" target="QUIC-TRANSPORT"/>
for migration is used
unchanged for path initiation in this extension.
Further, the multipath extension allows for the creation of multiple paths, which means
that in addition to the security considerations
on source address spoofing outlined in <xref section="21.5.4" sectionFormat="of" target="QUIC-TRANSPORT"/>,
there is a risk of amplified DoS attacks through simultaneous opening
or migration of multiple paths. For example, an attacker could set or spoof the
4-tuples used in multiple paths so that packets sent by the server would
travel through common network paths in an attempt to overwhelm a target.</t>
        <t><xref target="QUIC-TRANSPORT"/> only allows the use of one path
and the number of concurrent path validation attempts is
limited by number of issued connection IDs.
This extension, however, allows for multiple open paths that could in theory be migrated
all at the same time. Further, multiple paths could be initialized
simultaneously.
The anti-amplification limits as specified in <xref section="8" sectionFormat="of" target="QUIC-TRANSPORT"/>
limit the amplification risk for a given path,
but multiple paths could be used to further amplify an attack.</t>
        <t>Therefore, endpoints need to limit the maximum number of paths and might consider
additional measures to limit the number of concurrent path validation processes
e.g., by pacing them out or limiting the number of path initiation attempts
over a certain time period.</t>
      </section>
      <section anchor="cryptographic-handshake-and-aead-nonce">
        <name>Cryptographic Handshake and AEAD Nonce</name>
        <t>The multipath extension as specified in this document is only enabled after a
successful handshake when both endpoints indicate support for this extension.
All new frames defined in this extension are only used in 1-RTT packets.</t>
        <t>As the handshake is not changed by this extension, the transport security mechanisms
as specified in <xref target="QUIC-TLS"/>, such as encryption key exchange and peer authentication,
remain unchanged. As such, the security considerations in <xref target="QUIC-TLS"/> apply unaltered.</t>
        <t>The limits as discussed on <xref section="B" sectionFormat="of" target="QUIC-TLS"/>
apply to the total number of packets sent on all paths,
not each path separately.</t>
        <t>This specification changes the AEAD calculation by using the path ID as part of
AEAD nonce (see <xref target="nonce"/>). To ensure unique nonces, path IDs
are limited to 32 bits and cannot be reused for another path of the same connection.</t>
      </section>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This document is a collaboration of authors that combines work from
three proposals. Further authors of one of the original proposals are Qing An and Zhenyu Li.</t>
      <t>Thanks to Marten Seemann, Kazuho Oku, Martin Thomson, Magnus Westerlund, Mike Bishop,
Lucas Pardue, Michael Eriksson, Yu Zhu, Gorry Fairhurst, Tilmann Zäschke, and Tommy Pauly
for their thorough reviews and valuable contributions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="QUIC-TRANSPORT">
          <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="QUIC-TLS">
          <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="QUIC-RECOVERY">
          <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="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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC6356">
          <front>
            <title>Coupled Congestion Control for Multipath Transport Protocols</title>
            <author fullname="C. Raiciu" initials="C." surname="Raiciu"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="D. Wischik" initials="D." surname="Wischik"/>
            <date month="October" year="2011"/>
            <abstract>
              <t>Often endpoints are connected by multiple paths, but communications are usually restricted to a single path per connection. Resource usage within the network would be more efficient were it possible for these multiple paths to be used concurrently. Multipath TCP is a proposal to achieve multipath transport in TCP.</t>
              <t>New congestion control algorithms are needed for multipath transport protocols such as Multipath TCP, as single path algorithms have a series of issues in the multipath context. One of the prominent problems is that running existing algorithms such as standard TCP independently on each path would give the multipath flow more than its fair share at a bottleneck link traversed by more than one of its subflows. Further, it is desirable that a source with multiple paths available will transfer more traffic using the least congested of the paths, achieving a property called "resource pooling" where a bundle of links effectively behaves like one shared link with bigger capacity. This would increase the overall efficiency of the network and also its robustness to failure.</t>
              <t>This document presents a congestion control algorithm that couples the congestion control algorithms running on different subflows by linking their increase functions, and dynamically controls the overall aggressiveness of the multipath flow. The result is a practical algorithm that is fair to TCP at bottlenecks while moving traffic away from congested links. This document defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6356"/>
          <seriesInfo name="DOI" value="10.17487/RFC6356"/>
        </reference>
        <reference anchor="RFC9312">
          <front>
            <title>Manageability of the QUIC Transport Protocol</title>
            <author fullname="M. Kühlewind" initials="M." surname="Kühlewind"/>
            <author fullname="B. Trammell" initials="B." surname="Trammell"/>
            <date month="September" year="2022"/>
            <abstract>
              <t>This document discusses manageability of the QUIC transport protocol and focuses on the implications of QUIC's design and wire image on network operations involving QUIC traffic. It is intended as a "user's manual" for the wire image to provide guidance for network operators and equipment vendors who rely on the use of transport-aware network functions.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9312"/>
          <seriesInfo name="DOI" value="10.17487/RFC9312"/>
        </reference>
        <reference anchor="OLIA">
          <front>
            <title>MPTCP is not pareto-optimal: performance issues and a possible solution</title>
            <author initials="R." surname="Khalili">
              <organization/>
            </author>
            <author initials="N." surname="Gast">
              <organization/>
            </author>
            <author initials="M." surname="Popovic">
              <organization/>
            </author>
            <author initials="U." surname="Upadhyay">
              <organization/>
            </author>
            <author initials="J." surname="Le Boudec">
              <organization/>
            </author>
            <date year="2012"/>
          </front>
          <seriesInfo name="Proceedings of the 8th international conference on Emerging networking experiments and technologies, ACM" value=""/>
        </reference>
        <reference anchor="RFC2475">
          <front>
            <title>An Architecture for Differentiated Services</title>
            <author fullname="S. Blake" initials="S." surname="Blake"/>
            <author fullname="D. Black" initials="D." surname="Black"/>
            <author fullname="M. Carlson" initials="M." surname="Carlson"/>
            <author fullname="E. Davies" initials="E." surname="Davies"/>
            <author fullname="Z. Wang" initials="Z." surname="Wang"/>
            <author fullname="W. Weiss" initials="W." surname="Weiss"/>
            <date month="December" year="1998"/>
            <abstract>
              <t>This document defines an architecture for implementing scalable service differentiation in the Internet. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2475"/>
          <seriesInfo name="DOI" value="10.17487/RFC2475"/>
        </reference>
        <reference anchor="RFC9743">
          <front>
            <title>Specifying New Congestion Control Algorithms</title>
            <author fullname="M. Duke" initials="M." role="editor" surname="Duke"/>
            <author fullname="G. Fairhurst" initials="G." role="editor" surname="Fairhurst"/>
            <date month="March" year="2025"/>
            <abstract>
              <t>RFC 5033 discusses the principles and guidelines for standardizing new congestion control algorithms. This document obsoletes RFC 5033 to reflect changes in the congestion control landscape by providing a framework for the development and assessment of congestion control mechanisms, promoting stability across diverse network paths. This document seeks to ensure that proposed congestion control algorithms operate efficiently and without harm when used in the global Internet. It emphasizes the need for comprehensive testing and validation to prevent adverse interactions with existing flows.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="133"/>
          <seriesInfo name="RFC" value="9743"/>
          <seriesInfo name="DOI" value="10.17487/RFC9743"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA8293W4cSZYmeG9P4UtdFNkbEUVSmcqUpqq3mBQzk1uSyCap
rM6pTqicEU7SS0H3aHcPUSxl9t0Ce7t3e7UXM4MBFtgnWGCv5lVmFpi32PNr
dszcPUhVVwObQHeJEeHm9nPs/H7nnOl06rqyWxYvstd5lV+X1XV2u1525WpZ
ZKu8u2mzq7rJ8uwf3h4fZvO6qop5V9aVyy8vm+IDPKU/PvU/xp+6RT2v8lsY
dtHkV920LLqr6T+vy/mUR4cfT/eeu0XewU8+vTy4OPrFzeGP67q5f5G13cK1
XVPkty+y46OLb50rV82LrGvWbbe/u/t8d9/l8O2L7KLJq3ZVN527q5v31029
Xr3gqf4B/sbFfIefuffFPfxgAaNVXdFURTd9idNy8Ja8WrzLl3UF87gvWrcq
X2R/7Or5JGth2Ka4auFf97f4j5+cy9fdTd28cFOXZVfr5ZKWCP/G/168yLb+
2//6v/+3/+c//7//4X/Zkg/zdl7CiFs/5tVtUWavyjV+09S44cWi7OoG/qyb
6xfZwbK8zC9zmOF8Bp8Vt3m5fJHdlnn953K2vL/9Xc4/mJbwg3l9S3NIJ4Fz
+O//5//1X//v/+2//8f/Q+bgp7CurmAKr3P6nN759rJosotiflPVy/q6LFp9
u77+np6Z3ea/W8NPw2vLqoV9nmUvi+ywrmBG7/FTPvB/WBdVV1bJd8mS5f1V
+aFo2rK7z+qr7HVdtdn229cnb853zBz+mcebLYo5D/e79S38cpbPZ5eFmc7J
LPumrvIP8Ot1U4T5nCzLDyWsM/mSJ3D4ql5/yGG2QAawE20LdNWal9f88Owy
PPy79XzJD8XvP5xl36/LDh4M7z68acq2K/PKfkVvPm3KD0Dv2cm8q1fr3sbf
8M9/J/87A5I1r3o9y36/Lm6WxV1ZLcLbXpfNn/Pkm8F9P2rKedvCLc4MocGz
s/f+2d8V8hs6dOequrnNOzgupDS8YdOLs4M356cnZxcvsuZq/nx3d9d/8+pc
P9vTz86ODk9+ODr7Ub/YhztdXdlBz749fPb0y2fyz+dP9/bxnyevjg+YuIVN
bb0+vTg8zco2q+oOWFRTdPW0XnXlbQ7LWBUNDVrNC/hJuwaShpN1ebaq27a8
BD7V1ss1cjC+HcyAtvZ39/b5gxbWXbQ4Nfj4tKnnBexddd0igXY3RfZ1dwNn
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
wRdgAH7w/wHt3qG+SR4BAA==

-->

</rfc>
