<?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.21 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-gage-quic-pathmgmt-01" category="exp" submissionType="independent" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.25.0 -->
  <front>
    <title abbrev="QUIC Path Management">QUIC Path Management for Multi-Path Configurations</title>
    <seriesInfo name="Internet-Draft" value="draft-gage-quic-pathmgmt-01"/>
    <author initials="W." surname="Gage" fullname="Bill Gage">
      <organization>Unaffiliated</organization>
      <address>
        <postal>
          <city>Ottawa</city>
          <country>Canada</country>
        </postal>
        <email>billgage.ietf@gmail.com</email>
      </address>
    </author>
    <date year="2025" month="January" day="09"/>
    <area>Internet</area>
    <workgroup>QUIC Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 57?>

<t>This document defines path management procedures for QUIC that operate independently of the connection management procedures defined in RFC9000. The path management procedures enable a multipath configuration between endpoints by allowing QUIC packets associated with any connection identifier to be transported over any of the paths established between the endpoints. As a consequence, the principles and operations of RFC9000 are retained regardless of the path used to a convey QUIC packet.</t>
    </abstract>
  </front>
  <middle>
    <?line 62?>

<section anchor="intro">
      <name>Introduction</name>
      <t>Architecturally, one may consider two models for data transport over multiple paths: model (A) is a collection of uni-path connection constructs while model (B) is a uni-path connection construct operating over a collection of paths.</t>
      <t>Model (A) is like multipath TCP <xref target="MPTCP"/> that uses multiple TCP connections, one for each of the paths. Model (B) is like a single TCP connection operating over a layer 2 link aggregation group <xref target="LAG"/>. In model (B), a TCP segment can be transmitted in an IP datagram over any of the links in the LAG.</t>
      <t>In model (B), path management is distinct from connection management. Conceptually, a connection entity sits on top of a path management entity. A packet transmitted by a connection entity is redirected over one of the available paths by the path management entity. A packet received over any of the available paths is redirected by the path management entity to the connection associated with the packet. The addition, removal and maintenance of paths is handled by the path management entity in a way that is transparent to the connection entities.</t>
      <figure anchor="fig-path-model">
        <name>Model (B)</name>
        <artwork align="center"><![CDATA[
    +--------------+  +--------------+
    | connection X |  | connection Y |
    +--------------+  +--------------+
           |                 |
    +--------------------------------+
    |        path management         |
    +--------------------------------+
        |          |              |
   +--------+ +--------+     +--------+
   | path 1 | | path 2 | ... | path n |
   +--------+ +--------+     +--------+
]]></artwork>
      </figure>
      <t>This document describes multi-path QUIC procedures using model (B). In particular, a QUIC packet can be sent over any of the available (and unrestricted) paths. Since connection identifiers are independent of path, a QUIC packet received over any path is processed in the same way as a packet received over the single path construct of <xref target="RFC9000"/> -- i.e. there is a single application data packet number space and an ACK received over any path contains unambiguous packet numbers. While congestion control must clearly be path-specific, connection management, key management and packet loss recovery are not path-specific.</t>
      <section anchor="conventions">
        <name>Conventions</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.
<?line -6?>
        </t>
      </section>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>This document uses the following terminology:</t>
        <dl>
          <dt>path:</dt>
          <dd>
            <t>an association with the 4-tuple of an IP/UDP datagram (source IP address, destination IP address, source UDP port, and destination UDP port). The term "path" is used for consistency with other multipath protocols such as <xref target="MPTCP"/> since, in fact, an endpoint has no knowledge of the path a datagram follows through the network beyond the first hop to a network access point.</t>
          </dd>
          <dt>PathID:</dt>
          <dd>
            <t>path identifier.</t>
          </dd>
          <dt>PMQUIC:</dt>
          <dd>
            <t>path-managed QUIC (as defined in this document).</t>
          </dd>
          <dt>session:</dt>
          <dd>
            <t>a collection of QUIC connections and paths used to exchange QUIC packets between two endpoints.</t>
          </dd>
        </dl>
      </section>
      <section anchor="notation">
        <name>Notation</name>
        <t>This document uses the field notation defined in <xref target="RFC9000"/> and quoted below:</t>
        <blockquote>
          <t>Individual fields use the following notational conventions, with all lengths in bits:</t>
          <t>x (A): Indicates that x is A bits long</t>
          <t>x (i): Indicates that x holds an integer value using the variable length encoding described in <xref target="RFC9000"/> Section 16</t>
          <t>x (A..B): Indicates that x can be any length from A to B; A can be omitted to indicate a minimum of zero bits, and B can be omitted to indicate no set upper limit; values in this format always end on a byte boundary</t>
          <t>x (L) = C: Indicates that x has a fixed value of C; the length of x is described by L, which can use any of the length forms above</t>
          <t>x (L) = C..D: Indicates that x has a value in the range from C to D, inclusive, with the length described by L, as above</t>
          <t>x (L)...: Indicates that x is repeated zero or more times and that each instance has a length of L</t>
        </blockquote>
      </section>
    </section>
    <section anchor="multipathmgmt">
      <name>Multipath Management</name>
      <t>Connection migration to a new path is already supported in <xref target="RFC9000"/>. While <xref target="RFC9000"/> only defines communication over one path at any given time, path-managed QUIC (PMQUIC) provides multiple paths between session endpoints where the paths can be simultaneously active and used to exchange QUIC packets. PMQUIC also provides facilities to explicitly manage the use of paths.</t>
      <t>PMQUIC is based on several basic design points:</t>
      <ul spacing="normal">
        <li>
          <t>Re-use the mechanisms of <xref target="RFC9000"/> as much as possible. In particular, PMQUIC uses path validation based on <xref target="RFC9000"/> and re-uses all of the connection management, key management and loss recovery procedures of <xref target="RFC9000"/>.</t>
        </li>
        <li>
          <t>Use the same packet header formats as <xref target="RFC9000"/> to avoid differences between multipath and non-multipath traffic over a particular path.</t>
        </li>
        <li>
          <t>Do not modify frame formats defined in <xref target="RFC9000"/>; if necessary, define new frame types for path management operations.</t>
        </li>
      </ul>
      <t>PMQUIC changes the path management mechanisms specified in Section 9 of <xref target="RFC9000"/>:</t>
      <ul spacing="normal">
        <li>
          <t>allow simultaneous transmission of non-probing frames on multiple paths;</t>
        </li>
        <li>
          <t>continue using an existing path even if non-probing frames have been received on another path;</t>
        </li>
        <li>
          <t>manage the removal of paths that have been abandoned or lost.</t>
        </li>
      </ul>
      <t>In addition, PMQUIC changes several QUIC path-specific procedures described in <xref target="RFC9002"/>:</t>
      <ul spacing="normal">
        <li>
          <t>congestion control;</t>
        </li>
        <li>
          <t>RTT measurements;</t>
        </li>
        <li>
          <t>path maximum payload size discovery.</t>
        </li>
      </ul>
    </section>
    <section anchor="highlevel">
      <name>High-level Overview</name>
      <t>PMQUIC enables the simultaneous use of different paths to exchange non-probing QUIC frames. This differs from <xref target="RFC9000"/> where the connection migration procedure selects only one path to exchange non-probing frames.</t>
      <t>A PMQUIC session between endpoints starts with a standard QUIC handshake over an initial (default) path. As indicated by <xref target="RFC9000"/>, an endpoint MUST NOT attempt to activate a new path before the handshake is confirmed. The endpoints use a new <tt>max_active_paths</tt> transport parameter during the initial cryptographic handshake to negotiate the use of path management capabilities (<xref target="transport_max_active_paths"/>). The <tt>max_active_paths</tt> transport parameter indicates support for path management operations and limits the maximum number of active paths that can be used between the endpoints.</t>
      <t>To add a new path to an existing PMQUIC session, a client starts a path validation on the chosen path. A new path can only be used to transport non-probing frames once the path has been validated using mechanisms similar to those described in Section 8 of <xref target="RFC9000"/>. New PM_CHALLENGE and PM_CHALLENGE_RESPONSE frames are used to validate the path and to assign an identifier to the path. A new PM_STATUS frame may be used to control use of a path and a new PM_ABANDON frame may be used to abandon a path between endpoints, preventing further use of that path to exchange QUIC packets.</t>
      <t>PM_STATUS and PM_ABANDON frames include a path identifier that is assigned to the affected path, allowing the frame to be forwarded over any of the (allowable) paths active at the time of transmission.</t>
      <t>PMQUIC operations do not change the basic operations described in <xref target="RFC9000"/>. In particular, <em>none</em> of the following procedures described in <xref target="RFC9000"/> are affected by the use of multiple paths:</t>
      <ul spacing="normal">
        <li>
          <t>connection management (e.g. the use of NEW_CONNECTION_ID frames and subsequent rotation of connection identifiers);</t>
        </li>
        <li>
          <t>key management (e.g. use of key phase bit) and derivation of AEAD parameters;</t>
        </li>
        <li>
          <t>packet loss detection and loss recovery (e.g. using type 0x02 ACK frames).</t>
        </li>
      </ul>
      <t>However, changes to <xref target="RFC9002"/> procedures are required to deal with path-dependent characteristics such as path MTU size, RTT and congestion.</t>
    </section>
    <section anchor="pathid">
      <name>Path Identification</name>
      <t>A path is associated with the 4-tuple of an IP/UDP datagram (source IP address, destination IP address, source UDP port, and destination UDP port). However, PMQUIC explicitly assigns an identifier to each path to decouple path management from the 4-tuple of the IP/UDP datagram used to transport a QUIC packet.</t>
      <t>A path identifier is an integer assigned to a path by an endpoint that unambiguously identifies the path within the session from the perspective of that endpoint. The initial (default) path (i.e. the path used for the exchange of QUIC initial and handshake packets) is implicitly assigned path identifier (PathID) 0 (zero) for the client and PathID 1 (one) for the server. Other than PathID 0 and PathID 1, each endpoint independently selects the path identifier that it wants to assign to a new path and communicates the chosen PathID to its peer in a PM_CHALLENGE/PM_CHALLENGE_RESPONSE transaction.</t>
      <t>An endpoint MUST choose a different PathID for each path in the session -- i.e. a path identifier assigned to one path MUST NOT be reused by the endpoint as the identifier for a different path within the session. For example, a PathID may be a monotonically increasing value, or a randomly generated value, or a sequence of bytes with some internal structure. Since each endpoint independently selects its path identifier, the two endpoints may choose different PathIDs to refer to the same path. A server MAY choose to use the PathID provided by the client in the PM_CHALLENGE frame or the server may choose a different PathID.</t>
      <t>A received path identifier that is invalid MUST be treated as a connection error using transport error code <tt>Error_pmInvalidPathID</tt> (<xref target="connectionerrors"/>).</t>
      <t>QUIC connections exist and are managed independently of paths. An outgoing QUIC packet may be transmitted over any of the available and active paths, subject to any constraints that may have been placed on path usage by either of the QUIC endpoints (<xref target="packetsched"/>). Similarly, an incoming QUIC packet received over any path will be processed according to <xref target="RFC9000"/>, as though it had been received over a uni-path transport between the QUIC endpoints.</t>
    </section>
    <section anchor="path-activation-and-removal">
      <name>Path Activation and Removal</name>
      <t>PMQUIC provides mechanisms for adding new paths to a session and for removing unused or unusable paths from a session.</t>
      <section anchor="pathactivation">
        <name>Path Activation</name>
        <t>To initiate communications over a new path, an endpoint MUST send a PM_CHALLENGE frame in the first QUIC packet conveyed over the new path. The PM_CHALLENGE frame contains a new path identifier (PathID) and an unpredictable nonce (<xref target="frame_challenge"/>).</t>
        <t>The PM_CHALLENGE frame is encapsulated (in a QUIC packet) in an IP/UDP datagram where the 4-tuple of the datagram corresponds to the new path. Discovery of an endpoint IP address and UDP port is outside the scope of this document.</t>
        <t>To protect against correlation of communications across different IP addresses, it is RECOMMENDED that an endpoint use a new destination connection identifier in the QUIC packet containing the PM_CHALLENGE frame. The new destination connection identifier would have been previously provided by the peer endpoint in a NEW_CONNECTION_ID frame (<xref target="RFC9000"/> Section 19.15).</t>
        <t>The peer endpoint confirms use of the new path by sending a PM_CHALLENGE_RESPONSE frame (<xref target="frame_response"/>) that echoes the received nonce and provides a local PathID as a reference for the path (<xref target="pathid"/>). Again, it is RECOMMENDED that the peer endpoint use a new destination connection identifier in the QUIC packet containing the PM_CHALLENGE_RESPONSE frame.</t>
        <t>In implementations with decoupling between the path management and connection management entities, the PM_CHALLENGE and PM_CHALLENGE_RESPONSE frames MAY be sent in a QUIC packet using a current connection identifier. An endpoint can disable this behaviour by including a <tt>disable_path_migration</tt> transport parameter in the initial cryptographic handshake (<xref target="transport_disable_path_migration"/>). An endpoint using a zero-length connection identifier MUST NOT include a <tt>disable_path_migration</tt> transport parameter in the initial handshake.</t>
        <t>The peer endpoint may refuse use of the new path by not sending a PM_CHALLENGE_RESPONSE in response to the PM_CHALLENGE or by sending a PM_CHALLENGE_RESPONSE with a path status parameter (<xref target="parameter_pathStatus"/>) set to <tt>Status_NotAvailable</tt>.</t>
        <t>If the initiating endpoint does not receive a confirming PM_CHALLENGE_RESPONSE frame, it may transmit a new PM_CHALLENGE frame using the same (or a different) IP/UDP 4-tuple but MUST use a new PathID and a different nonce.</t>
        <t>To guard against reception of a PM_CHALLENGE frame in an IP/UDP datagram with a spoofed source address, an endpoint receiving a PM_CHALLENGE frame on a new path SHOULD send its own PM_CHALLENGE frame in an IP/UDP datagram that is separate from the IP/UDP datagram used to convey its PM_CHALLENGE_RESPONSE frame.</t>
      </section>
      <section anchor="pathmigration">
        <name>Path Migration</name>
        <t>If an endpoint determines that a non-probing frame is received (in a QUIC packet) in an IP/UDP datagram where the 4-tuple of the datagram corresponds to a new path, this is considered a passive migration event (e.g. due to a NAT rebinding). Similar to <xref target="RFC9000"/> Section 9.3, the endpoint detecting the new path MUST initiate path validation (<xref target="pathactivation"/>) by sending a PM_CHALLENGE frame to the peer endpoint.</t>
        <t>The endpoint detecting the new path SHOULD send non-probing frames over a different path, if available (<xref target="packetsched"/>), until a subsequent PM_CHALLENGE_RESPONSE frame is received. The endpoint MAY send non-probing frames over the new path if no other path is available.</t>
      </section>
      <section anchor="pathremoval">
        <name>Path Removal</name>
        <t>To terminate communications over an established path, an endpoint sends a PM_ABANDON frame (<xref target="frame_abandon"/>) containing the PathID of the path to be abandoned. A PM_ABANDON frame may be transmitted over any path that is active (and allowable) at the time of transmission. Abandoning a path has no effect on a QUIC connection.</t>
        <t>If the endpoint does not receive an ACK to the QUIC packet containing the PM_ABANDON frame, the PM_ABANDON frame may be retransmitted over the same or a different path.</t>
        <t>The reason for abandoning a path may be one of the following (<xref target="iana_abandon_reason"/>):</t>
        <ul spacing="normal">
          <li>
            <dl>
              <dt><tt>Reason_Failing</tt></dt>
              <dd>
                <t>indicating that the path is failing (e.g. the path is experiencing excessive transmission errors);</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Reason_Lost</tt></dt>
              <dd>
                <t>indicating that the path is no longer available to the endpoint;</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Reason_NoAck</tt></dt>
              <dd>
                <t>indicating that the endpoint failed to received ACKs for QUIC packets transmitted over the path;</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Reason_Timeout</tt></dt>
              <dd>
                <t>indicating that a idle timer expired with no QUIC packets transmitted or received over the path;</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Reason_MaxData</tt></dt>
              <dd>
                <t>indicating that the maximum amount of data allowed to be sent on the path has been reached.</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Reason_Unspecified</tt></dt>
              <dd>
                <t>indicating that the reason is unknown or is otherwise unspecified.</t>
              </dd>
            </dl>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="pathmaintain">
      <name>Path Maintenance</name>
      <t>Once a path between endpoints has been validated, PMQUIC provides mechanisms for defining and updating operational parameters related to the path.</t>
      <section anchor="pathstatus">
        <name>Path Transmission Status</name>
        <t>An endpoint may indicate its initial path transmission status in a PM_CHALLENGE frame (<xref target="frame_challenge"/>) or in the corresponding PM_CHALLENGE_RESPONSE frame (<xref target="frame_response"/>). By default, the initial path transmission status is <tt>Status_Available</tt> (<xref target="pathstatusvalue"/>).</t>
        <t>Subsequently, an initiating endpoint may send a PM_STATUS frame (<xref target="frame_status"/>) to inform its peer endpoint of the desired status of a path (<xref target="pathstatusvalue"/>) and, optionally, to indicate the precedence assigned to the path by the initiating endpoint (<xref target="pathprecedence"/>).</t>
        <t>Each PM_STATUS frame includes a status sequence number that is generated by the initiating endpoint; each endpoint maintains it own status sequence number. The status sequence number MUST be a monotonically increasing value and MUST NOT be used more than once within a session.</t>
        <t>If the initiating endpoint does not receive an ACK to the QUIC packet containing the PM_STATUS frame, the PM_STATUS frame may be retransmitted over the same or a different path but MUST include a new status sequence number.</t>
        <t>The receiving endpoint MUST ignore an incoming PM_STATUS frame if it previously received another PM_STATUS frame with a status sequence number equal to or higher than the status sequence number of the incoming frame.</t>
        <t>If the receiving endpoint does not agree with the status change, the receiving endpoint may send a PM_STATUS frame to inform the initiator of its desired status of the path.</t>
        <t>A PM_STATUS frame may be transmitted over any path that is active (and allowable) at the time of transmission.</t>
      </section>
      <section anchor="pathstatusvalue">
        <name>Path Status</name>
        <t>The status of a path may be set to one of the following:</t>
        <ul spacing="normal">
          <li>
            <dl>
              <dt><tt>Status_Available</tt></dt>
              <dd>
                <t>indicates that the path may used for transmission of a QUIC packet.</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Status_Backup</tt></dt>
              <dd>
                <t>indicates that the path should not be used for transmission of a QUIC packet if another path exists in a <tt>Status_Available</tt> state. This path should only be used if no other path exists in a <tt>Status_Available state</tt>.</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Status_Blocked</tt></dt>
              <dd>
                <t>indicates that the initiating endpoint has reached the maximum transmitted data limit imposed by a previously received <tt>Parameter_pathMaxData</tt> path parameter (<xref target="parameter_pathMaxData"/>). The receiving endpoint may increase the maximum data limit (and change the status of the path) using a subsequent PATH_STATUS frame (<xref target="frame_status"/>).</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Status_NotAvailable</tt></dt>
              <dd>
                <t>indicates that the path should not be used for transmission of a QUIC packet. Unlike an abandoned path (<xref target="pathremoval"/>), a path with <tt>Status_NotAvailable</tt> may be moved to <tt>Status_Available</tt> or <tt>Status_Backup</tt> when and if allowed by operational considerations.</t>
              </dd>
            </dl>
          </li>
        </ul>
      </section>
      <section anchor="pathprecedence">
        <name>Path Precedence</name>
        <t>A path precedence is a variable-length integer value that may be used to distinguish between paths when scheduling the transmission of a QUIC packet:</t>
        <ul spacing="normal">
          <li>
            <t>in general, a path with a higher precedence value is preferred over a path with a lower precedence value;</t>
          </li>
          <li>
            <t>multiple paths may be assigned the same precedence value;</t>
          </li>
          <li>
            <t>congestion control may override precedence to allow transmission over a less congested path;</t>
          </li>
        </ul>
        <t>Each endpoint independently determines the precedence of a path and communicates that precedence to its peer (<xref target="parameter_pathPrecedence"/>). The use of the local and peer path precedence values by an endpoint is beyond the scope of this document.</t>
      </section>
      <section anchor="pathcc">
        <name>Path Congestion Control</name>
        <t>Congestion control is applied per path, as described in <xref target="RFC9002"/> Section 7. QUIC packets sent on one path do not affect the congestion state of another path.</t>
      </section>
      <section anchor="pathrtt">
        <name>Path RTT Measurements</name>
        <t>Round-Trip Time measurements are performed per path, as described in <xref target="RFC9002"/> Section 5. In general, different paths may exhibit different RTTs.</t>
      </section>
      <section anchor="pathmptu">
        <name>Path Maximum UDP Payload Size</name>
        <t>By default, the maximum UDP payload size for a path is the <tt>max_udp_payload_size</tt> transport parameter defined in <xref target="RFC9000"/> Section 18.2.</t>
        <t>The maximum UDP payload size for a path can be adjusted by including a <tt>Parameter_pathPayloadSize</tt> (<xref target="parameter_pathPayloadSize"/>) in the list of path parameters in a PM_CHALLENGE frame (<xref target="frame_challenge"/>) or in a PM_CHALLENGE_RESPONSE frame (<xref target="frame_response"/>).</t>
        <t>If a <tt>Parameter_pathPayloadSize</tt> is included in a PM_CHALLENGE frame, this value takes precedence over the <tt>max_udp_payload_size</tt> transport parameter.</t>
        <t>If a <tt>Parameter_pathPayloadSize</tt> is included in a PM_CHALLENGE_RESPONSE frame, this value must be less than the value included in (or defaulted by) the PM_CHALLENGE frame and takes precedence over the value included in (or defaulted by) the PM_CHALLENGE frame.</t>
        <t>The mechanism used by an endpoint to determine maximum UDP payload size for a path is beyond the scope of this document. For example, the value may be determined by pre-configuration, by using a Path MTU Discovery (PMTUD) mechanism, or as a property of the endpoint.</t>
      </section>
    </section>
    <section anchor="packetsched">
      <name>Packet Scheduling</name>
      <t>A QUIC packet may be scheduled for transmission over a given path only if:</t>
      <ul spacing="normal">
        <li>
          <t>the path status is either <tt>Status_Available</tt> or <tt>Status_Backup</tt> (<xref target="pathstatusvalue"/>);</t>
        </li>
        <li>
          <t>there is no outstanding PM_ABANDON frame that is pending acknowledgement;</t>
        </li>
        <li>
          <t>transmission of the packet does not increase the number of bytes-in-flight beyond the congestion window of the path (<xref target="pathcc"/>);</t>
        </li>
        <li>
          <t>transmission of the packet does not cause the path maximum data limit to be exceeded (<xref target="parameter_pathMaxData"/>).</t>
        </li>
      </ul>
      <t>An endpoint SHOULD schedule a transmission over a path with <tt>Status_Available</tt>. If this is not possible, the endpoint MAY attempt a transmission over a path with <tt>Status_Backup</tt>.</t>
      <t>If more than one path is eligible for transmission of a packet, the algorithm used to select the path is beyond the scope of this document. An implementation may, for example, use the precedence value provided in a PM_CHALLENGE, PM_CHALLENGE_RESPONSE or PM_STATUS frame (<xref target="pathprecedence"/>).</t>
      <t>Precedence should only used to distinguish between paths with the same status -- i.e. between paths with <tt>Status_Available</tt> or between paths with <tt>Status_Backup</tt>.</t>
    </section>
    <section anchor="packetloss">
      <name>Packet Loss Detection and Recovery</name>
      <t>QUIC senders use acknowledgements to detect lost packets and a probe timeout (PTO) to ensure acknowledgements are received. Loss detection through acknowledgements is performed as described in <xref target="RFC9002"/> Section 6.1.</t>
      <t>Timer-based loss detection (<xref target="RFC9002"/> Section 6.1.2) must recognise that different paths may exhibit different RTTs (<xref target="pathrtt"/>) and SHOULD adjust the packet loss time threshold to accommodate those differences. Probe timeout (<xref target="RFC9002"/> Section 6.2) requires derivation of a PTO period that should also accommodate the different RTT that may be experienced over different paths.</t>
      <t>The mechanism used to accommodate those differences in path RTT is beyond the scope of this document.</t>
    </section>
    <section anchor="connectionerrors">
      <name>Path Management Connection Errors</name>
      <t>This document extends the QUIC Transport Error Codes of <xref target="RFC9000"/> Section 22.5 with the following values (<xref target="iana_error_codes"/>):</t>
      <ul spacing="normal">
        <li>
          <dl>
            <dt><tt>Error_pmExceededMaxData</tt></dt>
            <dd>
              <t>indicates that the endpoint received more data than allowed over a path (<xref target="parameter_pathMaxData"/>).</t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt><tt>Error_pmInvalidPathID</tt></dt>
            <dd>
              <t>indicates the endpoint received an invalid path identifier (<xref target="pathid"/>) -- e.g. a duplicated path identifier, an unknown path identifier, or the identifier of an abandoned path.</t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt><tt>Error_pmPathParameter</tt></dt>
            <dd>
              <t>indicates that a received path parameter (<xref target="path_parameters"/>) was invalid -- e.g.
was badly formatted, included an invalid type, included an invalid value, omitted a mandatory path parameter, included a forbidden path parameter, included a duplicated path parameter, or was otherwise in error.</t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt><tt>Error_pmProtocolViolation</tt></dt>
            <dd>
              <t>indicates an error with protocol compliance that is not covered by a more specific error code -- e.g. an endpoint received a path management frame when path management is not enabled.</t>
            </dd>
          </dl>
        </li>
      </ul>
      <t>Path management connection errors MUST be processed according to <xref target="RFC9000"/> Section 11.1.</t>
    </section>
    <section anchor="frametypes">
      <name>Path Management Frame Types</name>
      <t>PMQUIC procedures utilise four new QUIC frame types -- PM_CHALLENGE, PM_CHALLENGE_RESPONSE, PM_STATUS and PM_ABANDON:</t>
      <ul spacing="normal">
        <li>
          <t>all four path management frame types are ack-eliciting;</t>
        </li>
        <li>
          <t>PM_CHALLENGE and PM_CHALLENGE_RESPONSE frames are "probing frames";</t>
        </li>
        <li>
          <t>PM_STATUS and PM_ABANDON are "non-probing frames".</t>
        </li>
      </ul>
      <section anchor="frame_challenge">
        <name>PM_CHALLENGE frame</name>
        <t>When an endpoint (typically a client) wants to enable use of a new path, it initiates path validation by sending a PM_CHALLENGE frame over the new path. This is analogous to the use of a PATH_CHALLENGE frame in <xref target="RFC9000"/>.</t>
        <t>A PM_CHALLENGE frame (<xref target="fig-pm_challenge_frame"/>) includes the following fields:</t>
        <figure anchor="fig-pm_challenge_frame">
          <name>PM_CHALLENGE Frame Fields</name>
          <artwork><![CDATA[
   PM_CHALLENGE Frame {
     Type (i) = Type_pmChallenge,
     Initiator_PathID (i),
     Nonce (64),
     Path_Parameter (8..) ...,
   }
]]></artwork>
        </figure>
        <ul spacing="normal">
          <li>
            <dl>
              <dt><tt>Type</tt></dt>
              <dd>
                <t>is set to <tt>Type_pmChallenge</tt> (<xref target="iana_frame_types"/>).</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Initiator_PathID</tt></dt>
              <dd>
                <t>is the PathID assigned to the path by the endpoint sending the PM_CHALLENGE frame (<xref target="pathid"/>).</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Nonce</tt></dt>
              <dd>
                <t>is an unpredictable nonce generated by the endpoint for use in this instance of a PM_CHALLENGE frame (<xref target="pathactivation"/>).</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Path_Parameter</tt></dt>
              <dd>
                <t>is a list of path parameters (<xref target="path_parameters"/>) although the list may be an empty list (<xref target="parameter_empty"/>). Path parameters not included in the PM_CHALLENGE frame assume their default values.</t>
              </dd>
            </dl>
          </li>
        </ul>
        <t>The QUIC packet containing the PM_CHALLENGE frame MUST include PADDING frames to the maximum UDP payload size as defined by <tt>Parameter_pathPayloadSize</tt> (<xref target="parameter_pathPayloadSize"/>), if included in the path parameters, or by the default value if not included in the path parameters.</t>
      </section>
      <section anchor="frame_response">
        <name>PM_CHALLENGE_RESPONSE frame</name>
        <t>When an endpoint (typically a server) wants to acknowledge use of a new path, it confirms path validation by sending a PM_CHALLENGE_RESPONSE frame over the new path. This is analogous to the use of a PATH_RESPONSE frame in <xref target="RFC9000"/>.</t>
        <t>A PM_CHALLENGE_RESPONSE frame (<xref target="fig-pm_challenge_response_frame"/>) includes the following fields:</t>
        <figure anchor="fig-pm_challenge_response_frame">
          <name>PM_CHALLENGE_RESPONSE Frame Fields</name>
          <artwork><![CDATA[
   PM_CHALLENGE_RESPONSE Frame {
     Type (i) = Type_pmChallengeResponse,
     Initiator_PathID (i),
     Responder_PathID (i),
     Nonce (64),
     Path_Parameter (8..) ...,
   }
]]></artwork>
        </figure>
        <ul spacing="normal">
          <li>
            <dl>
              <dt><tt>Type</tt></dt>
              <dd>
                <t>is set to <tt>Type_pmChallengeResponse</tt> (<xref target="iana_frame_types"/>).</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Initiator_PathID</tt></dt>
              <dd>
                <t>is the PathID included in the corresponding PM_CHALLENGE frame (<xref target="frame_challenge"/>).</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Responder_PathID</tt></dt>
              <dd>
                <t>is the PathID assigned to the path by the endpoint sending the PM_CHALLENGE_RESPONSE frame (<xref target="pathid"/>).</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Nonce</tt></dt>
              <dd>
                <t>is the nonce included in the corresponding PM_CHALLENGE frame (<xref target="frame_challenge"/>).</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Path_Parameter</tt></dt>
              <dd>
                <t>is a list of path parameters (<xref target="path_parameters"/>) although the list may be an empty list (<xref target="parameter_empty"/>). Path parameters not included in the PM_CHALLENGE_RESPONSE frame assume the (default) values indicated by the corresponding PM_CHALLENGE frame.</t>
              </dd>
            </dl>
          </li>
        </ul>
        <t>The QUIC packet containing the PM_CHALLENGE_RESPONSE frame MUST include PADDING frames to the maximum UDP payload size as defined by <tt>Parameter_pathPayloadSize</tt> (<xref target="parameter_pathPayloadSize"/>), if specified, or by the default value, if not specified.</t>
      </section>
      <section anchor="frame_status">
        <name>PM_STATUS frame</name>
        <t>An endpoint uses a PM_STATUS frame to signal a change in a path parameter.</t>
        <t>A PM_STATUS frame (<xref target="fig-pm_status_frame"/>) includes the following fields:</t>
        <figure anchor="fig-pm_status_frame">
          <name>PM_STATUS Frame Fields</name>
          <artwork><![CDATA[
   PM_STATUS Frame {
     Type (i) = Type_pmStatus,
     Receiver_PathID (i),
     Path_Status_Sequence_Number (i),
     Path_Parameter (8..) ...,
    }
]]></artwork>
        </figure>
        <ul spacing="normal">
          <li>
            <dl>
              <dt><tt>Type</tt></dt>
              <dd>
                <t>is set to <tt>Type_pmStatus</tt> (<xref target="iana_frame_types"/>).</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Receiver_PathID</tt></dt>
              <dd>
                <t>is the PathID assigned to the path by the peer endpoint receiving the PM_STATUS frame.</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Path_Status_Sequence_Number</tt></dt>
              <dd>
                <t>is the sending endpoint's sequence number for this PM_STATUS frame (<xref target="pathstatus"/>).</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Path_Parameter</tt></dt>
              <dd>
                <t>is a list of path parameters (<xref target="path_parameters"/>) that MUST NOT be an empty list (<xref target="parameter_empty"/>) and MUST NOT include the following path parameters:
</t>
                <ul spacing="normal">
                  <li>
                    <t><tt>Parameter_pathPayloadSize</tt> (<xref target="parameter_pathPayloadSize"/>)</t>
                  </li>
                </ul>
              </dd>
            </dl>
          </li>
        </ul>
        <t>Note that the status of the path defaults to <tt>Status_Available</tt> unless explicitly defined by including a <tt>Parameter_pathStatus</tt> (<xref target="parameter_pathStatus"/>) in the list of path parameters.</t>
      </section>
      <section anchor="frame_abandon">
        <name>PM_ABANDON frame</name>
        <t>An endpoint uses a PM_ABANDON frame to to indicate that it will no longer use the indicated path.</t>
        <t>A PM_ABANDON frame (<xref target="fig-pm_abandon_frame"/>) includes the following fields:</t>
        <figure anchor="fig-pm_abandon_frame">
          <name>PM_ABANDON Frame Fields</name>
          <artwork><![CDATA[
   PM_ABANDON Frame {
     Type (i) = Type_pmAbandon,
     Receiver_PathID (i),
     Reason_Code (i)
   }
]]></artwork>
        </figure>
        <ul spacing="normal">
          <li>
            <dl>
              <dt><tt>Type</tt></dt>
              <dd>
                <t>is set to <tt>Type_pmAbandon</tt> (<xref target="iana_frame_types"/>).</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Receiver_PathID</tt></dt>
              <dd>
                <t>is the PathID assigned to the path by the peer endpoint receiving the PM_ABANDON frame.</t>
              </dd>
            </dl>
          </li>
          <li>
            <dl>
              <dt><tt>Reason_Code</tt></dt>
              <dd>
                <t>is the reason that the path is being abandoned (<xref target="pathremoval"/>).</t>
              </dd>
            </dl>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="path_parameters">
      <name>Path Parameters</name>
      <t>Each path parameter in a list of path parameters includes the following fields (<xref target="fig-path-parameter"/>):</t>
      <figure anchor="fig-path-parameter">
        <name>Path Parameter Encoding</name>
        <artwork><![CDATA[
Path_Parameter {
  End_of_List (1),
  Path_Parameter_ID (7),
  Path_Parameter_Value (i),
}
]]></artwork>
      </figure>
      <ul spacing="normal">
        <li>
          <dl>
            <dt><tt>End_of_List</tt></dt>
            <dd>
              <t>is a boolean value identifying the last parameter in a list of path parameters. A value of 0 (zero) indicates this is the last parameter; a value of 1 (one) indicates that there is at least one more parameter in the list of path parameters.</t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt><tt>Path_Parameter_ID</tt></dt>
            <dd>
              <t>uniquely identifies the path parameter (<xref target="iana_path_parameters"/>).</t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt><tt>Path_Parameter_Value</tt></dt>
            <dd>
              <t>is a variable-length integer value assigned to the path parameter.</t>
            </dd>
          </dl>
        </li>
      </ul>
      <t>A path parameter, or a list of path parameters, that is malformed or invalid MUST be treated as a connection error using transport error code <tt>Error_pmPathParameter</tt> (<xref target="connectionerrors"/>).</t>
      <section anchor="parameter_pathMaxData">
        <name>Parameter_pathMaxData</name>
        <t>The path maximum data parameter is a variable-length integer value that indicates the maximum amount of data that can be sent on the path by the peer endpoint, expressed as a number of octets. The mechanism used by an endpoint to determine this value is beyond the scope of this document.</t>
        <t>The maximum data limit applies only in a single direction -- i.e. from the peer endpoint towards the endpoint defining the path maximum data value. Each endpoint may specify a limit, corresponding to a different direction; the specified limits do not need to be the same.</t>
        <t>The maximum data limit applies only to the indicated path. A session that migrates to a different path cannot assume that the maximum data limit from an existing path applies to the new path.</t>
        <t>By default, the maximum amount of data that can be sent on the path is not limited.</t>
        <t>If included in a PM_STATUS frame (<xref target="frame_status"/>), a maximum data value that is less the previous maximum data value associated with the path MUST be treated as as an invalid path parameter.</t>
        <t>Receiving an ack-eliciting packet that exceeds the maximum data value previously authorised for a path MUST be treated as a connection error using transport error code <tt>Error_pmExceededMaxData</tt> (<xref target="connectionerrors"/>).</t>
      </section>
      <section anchor="parameter_pathPayloadSize">
        <name>Parameter_pathPayloadSize</name>
        <t>The path payload size parameter is a variable-length integer value that limits the size of UDP payloads that an endpoint believes can be transmitted over the path and/or the endpoint is willing to receive over the path (<xref target="pathmptu"/>), expressed as a number of octets. UDP datagrams with payloads larger than this limit are not likely to be received and/or processed by the endpoint.</t>
        <t>The default value for this parameter is the <tt>max_udp_payload_size</tt> transport parameter defined in <xref target="RFC9000"/> Section 18.2.</t>
      </section>
      <section anchor="parameter_pathPrecedence">
        <name>Parameter_pathPrecedence</name>
        <t>The path precedence parameter is a variable-length integer value that indicates the precedence of the path to be used in path selection algorithms (<xref target="pathprecedence"/>).</t>
        <t>There is no default value for this parameter. It is RECOMMENDED that precedence values be limited to the range 0..100.</t>
      </section>
      <section anchor="parameter_pathStatus">
        <name>Parameter_pathStatus</name>
        <t>The path status parameter is a variable-length integer value that indicates the current status of the path (<xref target="pathstatus"/>).</t>
        <t>The default value for this parameter is <tt>Status_Available</tt>.</t>
      </section>
      <section anchor="parameter_empty">
        <name>Parameter_empty</name>
        <t>The empty list parameter indicates that there are no entries in the list of path parameters. If specified, the empty list parameter MUST be the only entry in the list of path parameters. The empty list parameter MUST NOT be included if there are other path parameters in a list of path parameters.</t>
        <t>The empty list parameter MUST include a <tt>Path_Parameter_ID</tt> field but MUST NOT include a <tt>Path_Parameter_Value</tt> field. The <tt>End_of_List</tt> field MUST be set to 0 (zero).</t>
      </section>
    </section>
    <section anchor="transport_parameters">
      <name>Transport Parameters</name>
      <t>PMQUIC defines two new transport parameters that may be encoded in the initial cryptographic handshake (<xref target="RFC9000"/> Section 7.4) -- <tt>max_active_paths</tt> and <tt>disable_path_migration</tt>.</t>
      <section anchor="transport_max_active_paths">
        <name>max_active_paths</name>
        <t>An endpoint signals support for PMQUIC procedures by including a <tt>max_active_paths</tt> transport parameter in the initial handshake.</t>
        <t><tt>max_active_paths</tt> (<xref target="iana_transport_parameters"/>) is an integer value indicating the maximum number of active paths supported by the initiating endpoint. To enable PMQUIC, an endpoint MUST set the maximum number of active paths to a value greater that 1 (one). The maximum number of active paths allowed in the session is the minimum of the exchanged <tt>max_active_paths</tt> values.</t>
        <t>If a <tt>max_active_paths</tt> transport parameter value is received that is higher than 255 or less than 2, the receiving endpoint MUST close the connection with an error of type TRANSPORT_PARAMETER_ERROR.</t>
        <t>To enable use of PMQUIC procedures, both endpoints in a session MUST include a valid <tt>max_active_paths</tt> transport parameter in the initial handshake. If either of the endpoints does not include the <tt>max_active_paths</tt> transport parameter, then the endpoints MUST NOT use any of the PMQUIC procedures or frames defined in this document.</t>
      </section>
      <section anchor="transport_disable_path_migration">
        <name>disable_path_migration</name>
        <t>An endpoint can prevent use of a connection identifier on more than one path by including a <tt>disable_path_migration</tt> transport parameter in the initial handshake.</t>
        <t><tt>disable_path_migration</tt> (<xref target="iana_transport_parameters"/>) is a zero-length value where presence of the transport parameter indicates migration is disabled.</t>
        <t>If migration is disabled, a peer connection identifier is bound to a single path -- i.e. the peer connection identifier may be used as the destination connection identifier in a QUIC packet for transmission over only one path. The bound path is determined by the the first appearance of the peer connection identifier as the destination connection identifier in a QUIC packet.</t>
        <t>If migration is not disabled (i.e. the <tt>disable_path_migration</tt> transport parameter is not included in the initial handshake), a peer connection identifier may be used as the destination connection identifier in a QUIC packet used for transmission over any available path -- i.e. the connection identifier may appear as the destination connection identifier in different QUIC packets on different paths.</t>
        <t>Migration is disabled if at least one of the endpoints includes a <tt>disable_path_migration</tt> transport parameter in the initial cryptographic handshake.</t>
        <t>Receiving a <tt>disable_path_migration</tt> transport parameter without also receiving a <tt>max_active_paths</tt> transport parameter MUST be treated as a connection error using transport error code <tt>Error_pmProtocolViolation</tt> (<xref target="connectionerrors"/>).</t>
      </section>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>PMQUIC does not change the operating principles of <xref target="RFC9000"/> and, as such,
is subject to the same security considerations as <xref target="RFC9000"/> Section 21.</t>
      <t>Specific security considerations, associated with the use of path management procedures, include:</t>
      <ul spacing="normal">
        <li>
          <dl>
            <dt>resource usage:</dt>
            <dd>
              <t>Due to the simultaneous use of multiple paths between session endpoints, PMQUIC may require additional resources in a client and/or in a server. Resource usage associated with paths can be limited by each endpoint through the <tt>max_active_paths</tt> transport parameter (<xref target="transport_parameters"/>).</t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>data amplification:</dt>
            <dd>
              <t>The simultaneous use of multiple paths between session endpoints potentially allows for a higher rate of data exchange than might be possible with only a single path between session endpoints. Since PMQUIC uses a path validation mechanism similar to <xref target="RFC9000"/>, the anti-amplification limits of <xref target="RFC9000"/> Section 8.2 are also valid for PMQUIC.
</t>
              <t>Further, an endpoint can limit the maximum amount of data that can be sent on a particular path through the PMQUIC <tt>Parameter_pathMaxData</tt> path parameter (<xref target="parameter_pathMaxData"/>). This value may be initially set in a PM_CHALLENGE or PM_CHALLENGE_RESPONSE frame and may be subsequently adjusted in a PM_STATUS frame.</t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>address spoofing:</dt>
            <dd>
              <t>PMQUIC uses a path validation mechanism (<xref target="pathactivation"/>) similar to <xref target="RFC9000"/> to prevent address spoofing over a new path by a malicious intermediate node.</t>
            </dd>
          </dl>
        </li>
        <li>
          <dl>
            <dt>correlation of activity across multiple paths:</dt>
            <dd>
              <t>Due to the possible decoupling of connection management and path management, PMQUIC recommends but does not mandate that different connection identifiers be used on different paths (<xref target="pathactivation"/>). As discussed in <xref target="RFC9000"/> Section 9.5, using the same connection identifier on multiple paths would allow a passive observer to correlate activity between those paths. An endpoint can prevent use of a connection identifier on more than one path by including a <tt>disable_path_migration</tt> transport parameter in the initial cryptographic handshake (<xref target="transport_disable_path_migration"/>).</t>
            </dd>
          </dl>
        </li>
      </ul>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <aside>
        <t>The values in this section of the Internet Draft are preliminary, for testing purposes only.</t>
      </aside>
      <section anchor="iana_transport_parameters">
        <name>New QUIC transport parameters</name>
        <t>This document defines two new (preliminary) QUIC transport parameters (<xref target="transport_parameters"/>):</t>
        <ul spacing="normal">
          <li>
            <t><tt>max_active_paths</tt> (0x21c7948988209ada)</t>
          </li>
          <li>
            <t><tt>disable_path_migration</tt> (0x33186fc5d0c7cac3)</t>
          </li>
        </ul>
      </section>
      <section anchor="iana_frame_types">
        <name>New QUIC frame types</name>
        <t>This document defines four new (preliminary) QUIC frame types:</t>
        <ul spacing="normal">
          <li>
            <t>Type_pmChallenge (0x1ae4ea418795ad60) -- <xref target="frame_challenge"/></t>
          </li>
          <li>
            <t>Type_pmChallengeResponse (0x12c5938576430d3f) -- <xref target="frame_response"/></t>
          </li>
          <li>
            <t>Type_pmStatus (0x06614d6b80a40a24) -- <xref target="frame_status"/></t>
          </li>
          <li>
            <t>Type_pmAbandon (0x2dde9db26610d041) -- <xref target="frame_abandon"/></t>
          </li>
        </ul>
      </section>
      <section anchor="iana_path_parameters">
        <name>PMQUIC path parameters</name>
        <t>This document defines five PMQUIC path parameters:</t>
        <ul spacing="normal">
          <li>
            <t>Parameter_empty (0x00) -- <xref target="parameter_empty"/></t>
          </li>
          <li>
            <t>Parameter_pathMaxData (0x01) -- <xref target="parameter_pathMaxData"/></t>
          </li>
          <li>
            <t>Parameter_pathPayloadSize (0x02) -- <xref target="parameter_pathPayloadSize"/></t>
          </li>
          <li>
            <t>Parameter_pathPrecedence (0x03) -- <xref target="parameter_pathPrecedence"/></t>
          </li>
          <li>
            <t>Parameter_pathStatus (0x04) -- <xref target="parameter_pathStatus"/></t>
          </li>
        </ul>
      </section>
      <section anchor="iana_path_status">
        <name>PMQUIC path status</name>
        <t>This document defines four PMQUIC path status values:</t>
        <ul spacing="normal">
          <li>
            <t>Status_NotAvailable (0x01)</t>
          </li>
          <li>
            <t>Status_Blocked (0x02)</t>
          </li>
          <li>
            <t>Status_Backup (0x03)</t>
          </li>
          <li>
            <t>Status_Available (0x04)</t>
          </li>
        </ul>
      </section>
      <section anchor="iana_abandon_reason">
        <name>PMQUIC path abandon reasons</name>
        <t>This document defines five PMQUIC path abandon reason codes:</t>
        <ul spacing="normal">
          <li>
            <t>Reason_Unspecified (0x00)</t>
          </li>
          <li>
            <t>Reason_Failing (0x01)</t>
          </li>
          <li>
            <t>Reason_Lost (0x02)</t>
          </li>
          <li>
            <t>Reason_NoAck (0x03)</t>
          </li>
          <li>
            <t>Reason_Timeout (0x04)</t>
          </li>
          <li>
            <t>Reason_MaxData (0x05)</t>
          </li>
        </ul>
      </section>
      <section anchor="iana_error_codes">
        <name>PMQUIC transport error codes</name>
        <t>This document extends the QUIC Transport Error Codes of <xref target="RFC9000"/> Section 22.5 with the following (preliminary) values:</t>
        <ul spacing="normal">
          <li>
            <t>Error_pmExceededMaxData (0x165ee2f99e0d09fa)</t>
          </li>
          <li>
            <t>Error_pmInvalidPathID (0x07c0907b4c18170f)</t>
          </li>
          <li>
            <t>Error_pmPathParameter (0x0170789441bc48aa)</t>
          </li>
          <li>
            <t>Error_pmProtocolViolation (0x297abbb8bb0b3afa)</t>
          </li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC9000">
          <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="RFC9002">
          <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="MPTCP">
          <front>
            <title>TCP Extensions for Multipath Operation with Multiple Addresses</title>
            <author fullname="A. Ford" initials="A." surname="Ford"/>
            <author fullname="C. Raiciu" initials="C." surname="Raiciu"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="O. Bonaventure" initials="O." surname="Bonaventure"/>
            <author fullname="C. Paasch" initials="C." surname="Paasch"/>
            <date month="March" year="2020"/>
            <abstract>
              <t>TCP/IP communication is currently restricted to a single path per connection, yet multiple paths often exist between peers. The simultaneous use of these multiple paths for a TCP/IP session would improve resource usage within the network and thus improve user experience through higher throughput and improved resilience to network failure.</t>
              <t>Multipath TCP provides the ability to simultaneously use multiple paths between peers. This document presents a set of extensions to traditional TCP to support multipath operation. The protocol offers the same type of service to applications as TCP (i.e., a reliable bytestream), and it provides the components necessary to establish and use multiple TCP flows across potentially disjoint paths.</t>
              <t>This document specifies v1 of Multipath TCP, obsoleting v0 as specified in RFC 6824, through clarifications and modifications primarily driven by deployment experience.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8684"/>
          <seriesInfo name="DOI" value="10.17487/RFC8684"/>
        </reference>
        <reference anchor="MPQUIC-DRAFT">
          <front>
            <title>Multipath Extension for QUIC</title>
            <author fullname="Yanmei Liu" initials="Y." surname="Liu">
              <organization>Alibaba Inc.</organization>
            </author>
            <author fullname="Yunfei Ma" initials="Y." surname="Ma">
              <organization>Uber Technologies Inc.</organization>
            </author>
            <author fullname="Quentin De Coninck" initials="Q." surname="De Coninck">
              <organization>University of Mons (UMONS)</organization>
            </author>
            <author fullname="Olivier Bonaventure" initials="O." surname="Bonaventure">
              <organization>UCLouvain and Tessares</organization>
            </author>
            <author fullname="Christian Huitema" initials="C." surname="Huitema">
              <organization>Private Octopus Inc.</organization>
            </author>
            <author fullname="Mirja Kühlewind" initials="M." surname="Kühlewind">
              <organization>Ericsson</organization>
            </author>
            <date day="21" month="October" year="2024"/>
            <abstract>
              <t>   This document specifies a multipath extension for the QUIC protocol
   to enable the simultaneous usage of multiple paths for a single
   connection.

Discussion Venues

   This note is to be removed before publishing as an RFC.

   Discussion of this document takes place on the QUIC Working Group
   mailing list (quic@ietf.org), which is archived at
   https://mailarchive.ietf.org/arch/browse/quic/.

   Source for this draft and an issue tracker can be found at
   https://github.com/quicwg/multipath.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-multipath-11"/>
        </reference>
        <reference anchor="LAG" target="https://en.wikipedia.org/wiki/Link_aggregation">
          <front>
            <title>Link aggregation</title>
            <author>
              <organization>Wikipedia</organization>
            </author>
            <date year="2023" month="October" day="18"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 705?>

<section numbered="false" anchor="appendix_mpquic">
      <name>Appendix A: Comparison to <xref target="MPQUIC-DRAFT"/></name>
      <aside>
        <t>This section is provided for information only.</t>
      </aside>
      <t><xref target="MPQUIC-DRAFT"/> diverges from the principles of <xref target="RFC9000"/> in a number of areas, as described below.</t>
      <section numbered="false" anchor="a1-connection-identifiers">
        <name>A.1 Connection identifiers</name>
        <t><xref target="MPQUIC-DRAFT"/> binds every connection identifier to a specific path. A path may be associated with multiple connection identifiers but a connection identifier can only be used on a pre-defined path. A change in in the connection identifier used in a QUIC packet header is used to signal an explicit change in the path.</t>
        <t>By contrast, <xref target="RFC9000"/> (and PMQUIC) does not associate a connection identifier with a path -- i.e. connection identifiers are independent of paths.</t>
      </section>
      <section numbered="false" anchor="a2-connection-identifier-sequence-numbers">
        <name>A.2 Connection identifier sequence numbers</name>
        <t><xref target="MPQUIC-DRAFT"/> introduces the concept of multiple connection identifier sequence number spaces with a different connection identifier sequence number space for each path. As a consequence, it is possible for different connection identifiers associated with different paths to be assigned the same connection identifier sequence number.</t>
        <t>By contrast <xref target="RFC9000"/> (and PMQUIC) define a single connection identifier sequence number space.</t>
      </section>
      <section numbered="false" anchor="a3-application-data-packet-number-spaces">
        <name>A.3 Application data packet number spaces</name>
        <t><xref target="MPQUIC-DRAFT"/> introduces the concept of multiple application data (1RTT) packet number spaces with a different application data number space for each path. As a consequence, it is possible for different QUIC packets transmitted over different paths to be assigned the same packet number.</t>
        <t>By contrast <xref target="RFC9000"/> (and PMQUIC) define a single application data packet number space.</t>
      </section>
      <section numbered="false" anchor="a4-aead-encryption-nonce">
        <name>A.4 AEAD encryption nonce</name>
        <t>Due to the use of a different application data number space for each path, it is possible for different QUIC packets transmitted over different paths to be assigned the same packet number. As a consequence, <xref target="MPQUIC-DRAFT"/> changes the AEAD calculation by using the path identifier as part of AEAD encryption nonce.</t>
        <t>By contrast <xref target="RFC9000"/> (and PMQUIC) use a single application data packet number space which ensures that different QUIC packets are assigned different packet numbers regardless of the path used to convey a packet.</t>
      </section>
      <section numbered="false" anchor="a5-multipath-specific-frames-and-procedures">
        <name>A.5 Multipath-specific frames and procedures</name>
        <t>Due to the use of a different application data number space for each path and the use of a different connection identifier sequence number space for each path, endpoints must use multipath-specific frames for packet acknowledgement (PATH_ACK), assignment of new connection identifiers (PATH_NEW_CONNECTION_ID), and retirement of connection identifier (PATH_RETIRE_CONNECTION_ID).</t>
        <t>By contrast, <xref target="RFC9000"/> operations are not affected by the use of PMQUIC procedures which obviates the need for multipath-specific connection management procedures and frames.</t>
      </section>
      <section numbered="false" anchor="a6-zero-length-connection-identifiers">
        <name>A.6 Zero-length connection identifiers</name>
        <t>Because <xref target="MPQUIC-DRAFT"/> uses connection identifiers to identify paths, a zero-length connection identifier cannot be used with multipath operations.</t>
        <t>By contrast, PMQUIC does not associate a connection identifier with a path and allows a QUIC packet to be transmitted over any path, including a QUIC packet with a zero-length connection identifier.</t>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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
0XX3SN9zh7ofyuh3Lhgdmf8X0fBhdcmrAAA=

-->

</rfc>
