<?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-18" category="std" consensus="true" 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-18"/>
    <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 80?>

<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 88?>

<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 setup 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 simulatenous
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>
      <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 uses 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 Section <xref target="nonce"/>,
and new paths can be used, as specified in Section <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>
      <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 (current version uses 0x0f739bbc1b666d0d): 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 a
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 least
significant 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.
An endpoint 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 documents specfies 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 resource 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
Section <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 active path 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 it 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 an 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 send 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 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 TBD-00 and TBD-01)
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 TBD-01, 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) = TBD-00..TBD-01
         (experiments use  0x15228c00-0x15228c01),
    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) = TBD-02 (experiments use 0x15228c05),
    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 section <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 (TBD-10):</dt>
            <dd>
              <t>The endpoint is abandoning the path at the
request of the application.</t>
            </dd>
            <dt>PATH_RESOURCE_LIMIT_REACHED (TBD-11):</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 (TBD-12):</dt>
            <dd>
              <t>The endpoint is abandoning the path because
the used interface is observed to be unstable or performance is consider 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 (TBD-13):</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 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) = TBD-04 (experiments use 0x15228c08),
    Path Identifier (i),
    Path Status Sequence Number (i),
  }
]]></artwork>
        </figure>
        <t>PATH_STATUS_BACKUP frames 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) = TBD-03 (experiments use 0x15228c07)
    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=TBD-05)
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) = TBD-05 (experiments use 0x15228c09),
  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 (TBD-06)
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) = TBD-06 (experiments use 0x15228c0a),
  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=0x15228c0c) 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) = TBD-07 (experiments use 0x15228c0c),
  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=0x15228c0d) 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=0x15228c0e) 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) = TBD-08 (experiments use 0x15228c0d),
  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) = TBD-09 (experiments use 0x15228c0e),
  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 lost 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.</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 increased 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 e.g., on the used connection control.</t>
        <t>Congestion control state as defined in <xref target="QUIC-RECOVERY"/> is kept
per path ID. However, depending on which path acknowledgements 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 acknowledgement 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 acknowledgement 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 the delays measured when receiving new packet acknowledgements
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 acknowledgements are sent consistently over one path.
If at any time the acknowledgement sender revisits its sending preferences,
this can also change the paths that are used to send acknowledgements.
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 acknowledgement 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 acknowledgement path changes or is abandoned.
If acknowledgements are not send consistently over one path, the
acknowledgement receiver can monitor over which path acknowledgement
are received and only use samples for acknowledgements received on the same
path than the data was sent, if any.</t>
        <t>Further, congestion control functions that rely on delay estimates needs
to consider cases where acknowledgements 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 acknowledgement 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 redunancy.
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">TBD</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">TBD-00 - TBD-01</td>
            <td align="left">PATH_ACK</td>
            <td align="left">
              <xref target="mp-ack-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-02</td>
            <td align="left">PATH_ABANDON</td>
            <td align="left">
              <xref target="path-abandon-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-03</td>
            <td align="left">PATH_STATUS_BACKUP</td>
            <td align="left">
              <xref target="path-backup-available-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-04</td>
            <td align="left">PATH_STATUS_AVAILABLE</td>
            <td align="left">
              <xref target="path-backup-available-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-05</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">TBD-06</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">TBD-07</td>
            <td align="left">MAX_PATH_ID</td>
            <td align="left">
              <xref target="max-paths-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-08</td>
            <td align="left">PATHS_BLOCKED</td>
            <td align="left">
              <xref target="paths-and-cids-blocked-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-09</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">TBD-10</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">TBD-11</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">TBD-12</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">TBD-13</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 anchor="values-used-in-experiments">
        <name>Values used in experiments</name>
        <t>RFC Editor's Note: Please remove this section prior to publication of
a final version of this document.</t>
        <t>The experiments use the value defined in <xref target="transport-parameters-exp"/> for the transport parameter
defined in this document.</t>
        <table anchor="transport-parameters-exp">
          <name>Experimental Transport Parameter Value</name>
          <thead>
            <tr>
              <th align="left">Parameter Name.</th>
              <th align="left">Value</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">initial_max_path_id</td>
              <td align="left">0x0f739bbc1b666d0d</td>
            </tr>
          </tbody>
        </table>
        <t>The experiments use the values defined in <xref target="frame-types-exp"/> for the additional frame types
defined in this document.</t>
        <table anchor="frame-types-exp">
          <name>Experimental values for additions to QUIC Frame Types Entries</name>
          <thead>
            <tr>
              <th align="left">Frame Type Name</th>
              <th align="left">Value used in experiments</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">PATH_ACK</td>
              <td align="left">0x15228c00-0x15228c01</td>
            </tr>
            <tr>
              <td align="left">PATH_ABANDON</td>
              <td align="left">0x15228c05</td>
            </tr>
            <tr>
              <td align="left">PATH_STATUS_BACKUP</td>
              <td align="left">0x15228c07</td>
            </tr>
            <tr>
              <td align="left">PATH_STATUS_AVAILABLE</td>
              <td align="left">0x15228c08</td>
            </tr>
            <tr>
              <td align="left">PATH_NEW_CONNECTION_ID</td>
              <td align="left">0x15228c09</td>
            </tr>
            <tr>
              <td align="left">PATH_RETIRE_CONNECTION_ID</td>
              <td align="left">0x15228c0a</td>
            </tr>
            <tr>
              <td align="left">MAX_PATH_ID</td>
              <td align="left">0x15228c0c</td>
            </tr>
            <tr>
              <td align="left">PATHS_BLOCKED</td>
              <td align="left">0x15228c0d</td>
            </tr>
            <tr>
              <td align="left">PATH_CIDS_BLOCKED</td>
              <td align="left">0x15228c0e</td>
            </tr>
          </tbody>
        </table>
        <t>The experiments use the error code values defined in <xref target="tab-error-code-exp"/>.</t>
        <table anchor="tab-error-code-exp">
          <name>Error Codes Values for Multipath QUIC experiments</name>
          <thead>
            <tr>
              <th align="left">Error code</th>
              <th align="left">Value used in experiments</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">APPLICATION_ABANDON_PATH</td>
              <td align="left">0x004150504142414e)</td>
            </tr>
            <tr>
              <td align="left">PATH_RESOURCE_LIMIT_REACHED</td>
              <td align="left">0x0052534c494d4954)</td>
            </tr>
            <tr>
              <td align="left">PATH_UNSTABLE_OR_POOR</td>
              <td align="left">0x00554e5f494e5446)</td>
            </tr>
            <tr>
              <td align="left">NO_CID_AVAILABLE_FOR_PATH</td>
              <td align="left">0x004e4f5f4349445f)</td>
            </tr>
          </tbody>
        </table>
      </section>
    </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="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:
H4sIAAAAAAAAA829W28cWbYm9r5/RZh6aHKcmU1Slyppuo+bRbGq5NaFR6Sq
T02fgjoyM0hGKxmRJyJSFFtVB/MygF/9Zr/4wTMwYMC/wICf/E8Mj4H5F17X
vdfeEZGk+vQBRkB3SRm3fVl7Xb+11nQ6dV3ZrYpn2au8yi/L6jK73qy6cr0q
snXeXbXZRd1kefb3714cZ4u6qopFV9aVy+fzpvgIT+nNp/5mvNUt60WVX8Nr
l01+0U3LoruY/tOmXEz57XDz9OBrt8w7uOXz86Pzk1/cAv5xWTe3z7K2WzpX
rptnWdds2u5wf//p/qHLmyJ/lp03edWu66ZzN3Xz4bKpN+tnPLo/wL9x/N/h
b+5DcQs3LJ9lL6quaKqimz7HkTjXdnm1fJ+v6go+fVu0bl0+y/7Y1YtJ1sJr
m+Kihb/dXuNffnIu33RXdfPMTV2WXWxWK5oV/B3/PHuW7fzn/+F/+s//1//2
//2v/2FHfszbRQlv3Pkxr66LMntZbvBKU+MaF8uyqxv4Z91cPsuOVuU8n+cw
wsUMfiuu83L1LLsu8/rP5Wx1e/27nG+YlnDDor6mMaSDwDH8l//9//h//8//
8b/8x/9FxuCHsKkuYAivcvqdvvluXjTZebG4qupVfVkWrX5dP39Lz8yu899t
4Nbw2bJqYZ1n2fMiO64rGNEH/JX3+O83RdWVVXItmbJ8vyo/Fk1bdrdZfZG9
qqs223336s3rsz0zhn/i982WxYJf97vNNdw5yxezeWGG82aWfVNX+Ue4e9MU
YTxvVuXHEuaZXOQBHL+sNx9zGC2QAaxE2wJdtebjNT88m4eHf7dZrPih+PvH
s+z7TdnBg+Hbx1dN2XZlXtlL9OXTpvwIJJ69WXT1etNb+Cu+/Xfy3xmQrPnU
q1n2+01xtSpuymoZvvaqbP6cJ1cG1/2kKRdtCwc3M4QGz84++Gd/V8g9tOnO
VXVznXewXUhpeMKm52+PXp+dvnl7/ixrLhZP9/f3/ZWXZ/rbgf729uT4zQ8n
b3/UC4dwpqsL+9K33x4/efj4Cf71zcsXR0zRwo52Xp2eH59mZZtVdQesqCm6
elqvu/I6h7Gvi4beVC0KuKXdAB3Ddro8W9dtW86BH7X1aoOcio8EM5qdw/2D
Q/6hhckWLY4Hfj5t6kUBC1ZdtkiV3VWRfd1dwcIj58jxLfkKmd9F0RT4RVjG
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
ME3Ne/qEu4H5phSpDi7Ub3nYaJw0YNR4DoykQNYb3t8fBQlDcnoWgyfAu2Rl
u+67M7wpV+XlFQkdeDI9ca5sdc+XEzF86V8NH1byU6hao2RHy4NU0zQ1y+Lb
deG8RgGTe3v06uT85O37k7dv37yFYZPGpmJIOc29BZFfR0djwvU+o7CEKOYh
xHIcu31ooN6jyHyvnd1nEV1ET7pC3s+4yJvmNnhqyWNKHt88w08Ji3XRUR1a
XrRWxI1BPknzQLy4p2/fnL85fvPy/Q8v3rw8QiWfnbYD24ORpXKNO95ioF1W
IReeCNyg6ZQaDg6BGeAtwccuvobLgvQsso/G9LHsxQWfCBi3+SCzrBUMxiyY
8T0PMQF8hBVAJMNEBcvnSA+xIsJzcikRZtuIcIzhh6328omCDaysgaJzt9aF
fEQ1kq9mj2YHQ3r2HmsMbwsRSXDq39AqD+gLrVMrRyLOI6vGypF42oCu3ocx
wdTek9waOlSub+hYIdcXbvz61K+qsTTijpHVpqvxeHYwvBrpq0hkopHKUop1
wRolEnprl+yrEe8B/pPG4znigABD4x8lz3tZmRBjHWIy6CIpyZUzL5fLgnYH
GAsGCNsro5SKIYkS7letIUhxjs4yjXs4/zSpk7iEy2UpUAv/rpoIgOWld57u
qjesaUqW13jD//Pv/+c2OKjfy+17OGojJtnby+tCEox9x9467b1gmOWyS7h1
whjYLct7ZKN68nZ9lff6+qkIYzQKdjhtoh8lnjNiQHjiPMU7c7iezp7MDkcO
17vgCQx+fB1aLNJXNeiG/hpZNYGyKDjkiYVcyY6dgN4ffkVOSqOOzrIjHwsK
OipMwyWyE35NHF733BMc5T5zkO814nF0/Hu20VGbwH/AC/fJRiHVD//GbM/f
IFoPK8PX6ymIr6D2aHwX1Gr4vapvVsUSpplYPcdgAOYNe6Rx9P61QzEm73l4
Oub06PrDCwdldeu8aLULOxQE3BrCBQalr2/ZUxg81GOaqV0DmX1shVh9W2LB
4T3q0MBFrdgzK0ZAJMkm5jMMrKov3As5XriL33sWo2NATtiyy0mJgCeGIcmL
TvwLgTWhE3q1Wep0rVd9ZOpWdRVvJMq/eJvQB9Z2Rb7EfQ2/Aif1bixyjNfZ
RQ4MqDLLuRQq1RnxRMxKJs4TUPBWKwRHIUbFfEuEhtmn+L3w+YR4I5MrJ50c
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
AA==

-->

</rfc>
