<?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.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-multipath-17" 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-17"/>
    <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>The peers 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 under the "QUIC Protocol" heading.</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 (current version uses 0x0f739bbc1b666d0d)</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 under the "QUIC Protocol" heading.</t>
      <table anchor="frame-types">
        <name>Addition to QUIC Frame Types Entries</name>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Frame Name</th>
            <th align="left">Specification</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">TBD-00 - TBD-01 (experiments use 0x15228c00-0x15228c01)</td>
            <td align="left">PATH_ACK</td>
            <td align="left">
              <xref target="mp-ack-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-02 (experiments use 0x15228c05)</td>
            <td align="left">PATH_ABANDON</td>
            <td align="left">
              <xref target="path-abandon-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-03 (experiments use 0x15228c07)</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 (experiments use 0x15228c08)</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 (experiments use 0x15228c09)</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 (experiments use 0x15228c0a)</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 (experiments use 0x15228c0c)</td>
            <td align="left">MAX_PATH_ID</td>
            <td align="left">
              <xref target="max-paths-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-08 (experiments use 0x15228c0d)</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 (experiments use 0x15228c0e)</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 under
the "QUIC Protocol" heading.</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 (experiments use 0x004150504142414e)</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 (experiments use 0x0052534c494d4954)</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 (experiments use 0x00554e5f494e5446)</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 (experiments use 0x004e4f5f4349445f)</td>
            <td align="left">NO_CID_AVAILABLE_FOR_PATH</td>
            <td align="left">Path abandoned due to no available connection IDs for the path</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The multipath extension retains all security properties of <xref target="QUIC-TRANSPORT"/> and <xref target="QUIC-TLS"/>
but requires some additional consideration regarding:</t>
      <ul spacing="normal">
        <li>
          <t>potential additional resource usage for per-path connection IDs and multiple concurrent path contexts;</t>
        </li>
        <li>
          <t>a potentially increased amplification risk for denial of service attacks if multiple paths are used simultaneously;</t>
        </li>
        <li>
          <t>changes to the nonce calculation due to the use of multiple packet number spaces.</t>
        </li>
      </ul>
      <section anchor="memory-allocation-for-per-path-resources">
        <name>Memory Allocation for Per-Path Resources</name>
        <t>The maximum path ID limit in initial_max_path_id or MAX_PATH_ID frame
limits the number of paths an endpoint is willing
to maintain and thereby also limits the associated path resources.
Furthermore, as connection IDs have to be issued by both endpoints for the
same path ID before an endpoint can open a path, each endpoint could also
control the per-path resource usage by only
issuing connection IDs for a limited number of paths. However, using
the maximum path ID limit in initial_max_path_id or the MAX_PATH_ID frame is preferred.</t>
        <t>To avoid unnecessary resource usage that could be exploited
in a resource exhaustion attack, endpoints SHOULD allocate additional path resources,
such as e.g., for packet number handling, only after path validation has successfully completed.</t>
      </section>
      <section anchor="denial-of-service-with-multiple-paths">
        <name>Denial of Service with Multiple Paths</name>
        <t>Path validation as specified in <xref section="8.2" sectionFormat="of" target="QUIC-TRANSPORT"/>
for migration is used
unchanged for path initiation in this extension.
Further, the multipath extension allows for the creation of multiple paths, which means
that in addition to the security considerations
on source address spoofing outlined in <xref section="21.5.4" sectionFormat="of" target="QUIC-TRANSPORT"/>,
there is a risk of amplified DoS attacks through simultaneous opening
or migration of multiple paths. For example, an attacker could set or spoof the
4-tuples used in multiple paths so that packets sent by the server would
travel through common network paths in an attempt to overwhelm a target.</t>
        <t><xref target="QUIC-TRANSPORT"/> only allows the use of one path
and the number of concurrent path validation attempts is
limited by number of issued connection IDs.
This extension, however, allows for multiple open paths that could in theory be migrated
all at the same time. Further, multiple paths could be initialized
simultaneously.
The anti-amplification limits as specified in <xref section="8" sectionFormat="of" target="QUIC-TRANSPORT"/>
limit the amplification risk for a given path,
but multiple paths could be used to further amplify an attack.</t>
        <t>Therefore, endpoints need to limit the maximum number of paths and might consider
additional measures to limit the number of concurrent path validation processes
e.g., by pacing them out or limiting the number of path initiation attempts
over a certain time period.</t>
      </section>
      <section anchor="cryptographic-handshake-and-aead-nonce">
        <name>Cryptographic Handshake and AEAD Nonce</name>
        <t>The multipath extension as specified in this document is only enabled after a
successful handshake when both endpoints indicate support for this extension.
All new frames defined in this extension are only used in 1-RTT packets.</t>
        <t>As the handshake is not changed by this extension, the transport security mechanisms
as specified in <xref target="QUIC-TLS"/>, such as encryption key exchange and peer authentication,
remain unchanged. As such, the security considerations in <xref target="QUIC-TLS"/> apply unaltered.</t>
        <t>The limits as discussed on <xref section="B" sectionFormat="of" target="QUIC-TLS"/>
apply to the total number of packets sent on all paths,
not each path separately.</t>
        <t>This specification changes the AEAD calculation by using the path ID as part of
AEAD nonce (see <xref target="nonce"/>). To ensure unique nonces, path IDs
are limited to 32 bits and cannot be reused for another path of the same connection.</t>
      </section>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This document is a collaboration of authors that combines work from
three proposals. Further authors of one of the original proposals are Qing An and Zhenyu Li.</t>
      <t>Thanks to Marten Seemann, Kazuho Oku, Martin Thomson, Magnus Westerlund, Mike Bishop,
Lucas Pardue, Michael Eriksson, Yu Zhu, Gorry Fairhurst, Tilmann Zäschke, and Tommy Pauly
for their thorough reviews and valuable contributions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="QUIC-TRANSPORT">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol. QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances. Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="QUIC-TLS">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="QUIC-RECOVERY">
          <front>
            <title>QUIC Loss Detection and Congestion Control</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="I. Swett" initials="I." role="editor" surname="Swett"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes loss detection and congestion control mechanisms for QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9002"/>
          <seriesInfo name="DOI" value="10.17487/RFC9002"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC6356">
          <front>
            <title>Coupled Congestion Control for Multipath Transport Protocols</title>
            <author fullname="C. Raiciu" initials="C." surname="Raiciu"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="D. Wischik" initials="D." surname="Wischik"/>
            <date month="October" year="2011"/>
            <abstract>
              <t>Often endpoints are connected by multiple paths, but communications are usually restricted to a single path per connection. Resource usage within the network would be more efficient were it possible for these multiple paths to be used concurrently. Multipath TCP is a proposal to achieve multipath transport in TCP.</t>
              <t>New congestion control algorithms are needed for multipath transport protocols such as Multipath TCP, as single path algorithms have a series of issues in the multipath context. One of the prominent problems is that running existing algorithms such as standard TCP independently on each path would give the multipath flow more than its fair share at a bottleneck link traversed by more than one of its subflows. Further, it is desirable that a source with multiple paths available will transfer more traffic using the least congested of the paths, achieving a property called "resource pooling" where a bundle of links effectively behaves like one shared link with bigger capacity. This would increase the overall efficiency of the network and also its robustness to failure.</t>
              <t>This document presents a congestion control algorithm that couples the congestion control algorithms running on different subflows by linking their increase functions, and dynamically controls the overall aggressiveness of the multipath flow. The result is a practical algorithm that is fair to TCP at bottlenecks while moving traffic away from congested links. This document defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6356"/>
          <seriesInfo name="DOI" value="10.17487/RFC6356"/>
        </reference>
        <reference anchor="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:
H4sIAAAAAAAAA819W28c2bXe+/4VFerB5El3m6QuM9KxT8yhODOMJZGHpMae
+Azk6u5qsqzuqnZVtShanoO8BMhr3pKXPCRBgAD5BQHylH8S5AQ4/yLruvfa
dWlStg8QAfZI3V21b2uv67fWGo/HrsmbZfYieZ0W6XVeXCerzbLJ18ssWafN
TZ0syipJk799e3qczMqiyGZNXhYunU6r7AM8pT8+9z/Gn7p5OSvSFbx2XqWL
ZpxnzWL8+00+G/Pb4cfjgy/cPG3gJ59eHl2d/Ohm8I/rsrp7kdTN3Ll8Xb1I
mmpTN4f7+8/3D11aZemL5KpKi3pdVo27Lav311W5Wb/g2f0K/o3z/wY/c++z
O/jB/EVyWjRZVWTN+CXOxLm6SYv5u3RZFjD0XVa7df4i+U1TzkZJDa+tskUN
f7tb4V9+cC7dNDdl9cKNXZIsNsslrQr+jn9evEh2/uHf/vt/+J//9f/+p3+z
Ix+m9SyHN+58nxarLE9e5Rv8pipxj7N53pQV/LOsrl8kR8t8mk5TmOFsAp9l
qzRfvkhWeVr+Lp8s71a/SPkH4xx+MCtXNIf2JHAO//jf/vv/+R//7h//83+U
OfgpbIoFTOF1Sp/TmG+nWZVcZbObolyW13lW6+g6/B09M1mlv9jAT8OweVHD
Pk+Sl1lyXBYwo/f4KZ/x326yosmL1netJcv4Rf4hq+q8uUvKRfK6LOpk9+3r
szeXe2YOv+f3TebZjF/3i80KfjlJZ5NpZqZzNkm+Kov0A/x6U2VhPmfL/EMO
62x9yRM4flVuPqQwWyAD2Im6BrqqzeAlPzyZhod/sZkt+aF4/ONJ8u0mb+DB
MPbxTZXXTZ4W9isa+bzKPwCJJ2ezplxvOht/wz//hfx3AiRrhno9SX65yW6W
2W1ezMNor/Pqd2nrm959P6nyWV3DxU0MocGzk/f+2V9k8hs6dOeKslqlDRwX
UhresPHVxdGby/Ozi6sXSbWYPd/f3/ffvLrUzw70s4uT47PvTi6+1y8O4U4X
C/vSi6+Pnz1++gz/evbq9IgpWtjRzuvzq+PzJK+TomyAFVVZU47LdZOvUpj7
OqvoTcUsg5/UG6BjOE6XJuuyrvMp8KO6XG6QU/GVYEazc7h/cMgf1LDYrMb5
wMfnVTnLYMOK6xqpsrnJki+bG9h45BwpviVdIvNbZFWGI8I2nqyyirglHNOt
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
TnZev7282hnxf5M3Z/T3ixPg5BcnL/Hvl98evXrl/8K/cPCPs7ev5Hv8W3jy
+Oz165M3L/lh+DRpffT66PsdEklu5+z86vTszdGrne5eIq0zVyWvD/BI3JQU
Vbt6BnvE+//V8Xly8AR0vH928fXx4cHBc9A1+B9fHnzxBP6Bu8zyjwiK/wmE
c4csBxk6+h2XSwcXMG/SJeuw9Q0SJl65Sdv4ZyqEDYQ5rXJyJt0ZbbNX9/0V
nnQz/JpkB08X9gTIngR6jcRMmkcpOleyI/eHCGHH2zV9w9H5ijo5z1Ow1Fd1
d3/9DGaGcGQhLtLoDiaP+3S6Uax34lyZJe/me3hyoPSCruA+wO1FtX68zIpr
8eFdwxLRnJ2Vcz7TARfCwbO+gZHeE+OMeJUvstndDC4JHvM5L/y8KsVaaJ8g
r3GL7qk24LtV+vEdbve7nAS8Kp3Md+5VPCfudJFkOcpf/RXIu3WZozfSS+B0
Dte8yevMWp925DBDZ7TjBkmKjNrwTr2/xEfT4g6EEvuFXHBWGEqNVeHkpPse
lMFkjeDUQCvbkMfh3nmanURJg7PBSwZbNq0ziiTEbsRFeyGfsSfWYkBDh55A
Nay+Sd+TUjArUWEA3iEeJbKemPeT0pGRMoXy9mB8cXUV2bIRWSpRepNqROJN
VdTaqhLbniZ9OmihSM9HnRtAR1eTtUMGyC0fZj14gDg660owhVqssmhFLCb6
dtNH8ODy6Ml9ekTmFjOTwYsS5pOiWrFclrf1C+fGvcPsimrhPaTEgvY/7i++
ePx8Op0dTJ89ezbfn++9SDBGM8A4VGdVtgMjgGhfeTdSQl5ZoSWc4W2+ZKdZ
6T0dqDwYiyvYZxj+IW5B1B5uQvYRwxHJ4c/g2v/N48Of/RT/Oz4YRTNIcfnw
K35WHUpqjs83KM8w8JihjGc/FLsTkXci7Vqbvmu9X33GvVvmq7yp7fVxOktx
MMBFNlo76YxWFZ5vKtJ7o5v6NfqjPqYrMgHyRe9sYO9q9iMejFjkxqZtxzG7
VhfbPrHvAxS+m+WcBD97+sSaQn8xcQt7vuyDYlf8QzeHhuVD2h85fXWS5mxX
Gf98nzsBny7BlqPT5iATDCL7mK/AGMTFke/1MmvIxdg3segSocEDExIV0vvY
3OujX787P7r69h3QDzPz3U+f4C3kM6jH9BEQR7ACSRumpXlPn3A3MN+UItXB
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

-->

</rfc>
