<?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.4 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-jholland-quic-multicast-04" category="exp" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.1 -->
  <front>
    <title abbrev="Multicast QUIC">Multicast Extension for QUIC</title>
    <seriesInfo name="Internet-Draft" value="draft-jholland-quic-multicast-04"/>
    <author fullname="Jake Holland">
      <organization>Akamai Technologies, Inc.</organization>
      <address>
        <email>jakeholland.net@gmail.com</email>
      </address>
    </author>
    <author fullname="Lucas Pardue">
      <organization/>
      <address>
        <email>lucaspardue.24.7@gmail.com</email>
      </address>
    </author>
    <author fullname="Max Franke">
      <organization>TU Berlin</organization>
      <address>
        <email>mfranke@inet.tu-berlin.de</email>
      </address>
    </author>
    <date year="2024" month="January" day="09"/>
    <area>TSV</area>
    <workgroup>QUIC Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 67?>

<t>This document defines a multicast extension to QUIC to enable the efficient use of multicast-capable networks to send identical data streams to many clients at once, coordinated through individual unicast QUIC connections.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://GrumpyOldTroll.github.io/draft-jholland-quic-multicast/draft-jholland-quic-multicast.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-jholland-quic-multicast/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        QUIC Individual Draft mailing list (<eref target="mailto:quic@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/quic/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/quic/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/GrumpyOldTroll/draft-jholland-quic-multicast"/>.</t>
    </note>
  </front>
  <middle>
    <?line 71?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document specifies an extension to QUIC version 1 <xref target="RFC9000"/> to enable the use of multicast IP transport of identical packets for use in many individual QUIC connections.</t>
      <t>The multicast data can only be consumed in conjunction with a unicast QUIC connection.
When the client has support for multicast as described in <xref target="transport-parameter"/>, the server can tell the client about multicast channels and ask the client to join and leave them as described in <xref target="channel-management"/>.</t>
      <t>The client reports its joins and leaves to the server and acknowledges the packets received via multicast after verifying their integrity.</t>
      <t>The purpose of this multicast extension is to realize the large scalability benefits for popular traffic over multicast-capable networks without compromising on security, network safety, or implementation reliability.
Thus, this specification has several design goals:</t>
      <ul spacing="normal">
        <li>
          <t>Re-use as much as possible the mechanisms and packet formats of QUIC version 1</t>
        </li>
        <li>
          <t>Provide flow control and congestion control mechanisms that work with multicast traffic</t>
        </li>
        <li>
          <t>Maintain the confidentiality, integrity, and authentication guarantees of QUIC as appropriate for multicast traffic, fully meeting the security goals described in <xref target="I-D.draft-krose-multicast-security"/></t>
        </li>
        <li>
          <t>Leverage the scalability of multicast IP for data that is transmitted identically to many clients</t>
        </li>
      </ul>
      <t>This document does not define any multicast transport except server to client and only includes semantics for source-specific multicast.</t>
      <section anchor="conventions-and-definitions">
        <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.
<?line -6?>
        </t>
        <t>Commonly used terms in this document are described below.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Term</th>
              <th align="left">Definition</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">SSM</td>
              <td align="left">Source-specific multicast, as described in <xref target="RFC4607"/></td>
            </tr>
            <tr>
              <td align="left">ASM</td>
              <td align="left">Any-source multicast, as distinguished from SSM in <xref target="RFC4607"/></td>
            </tr>
            <tr>
              <td align="left">(S,G)</td>
              <td align="left">A tuple of IP addresses (Source IP, Group IP) identifying a source-specific multicast channel as described in <xref target="RFC4607"/></td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
    <section anchor="multicast-channel">
      <name>Multicast Channel</name>
      <t>A QUIC multicast channel (or just channel) is a one-way network path that a server can use as an alternate path to send QUIC connection data to a client.</t>
      <t>Multicast channels are designed to leverage multicast IP and to be shared by many different connections simultaneously for unidirectional server-initiated data.</t>
      <t>One or more servers can use the same QUIC multicast channel to send the same data to many clients, as a supplement to the individual QUIC connections between those servers and clients.
(Note that QUIC connections are defined in <xref section="5" sectionFormat="of" target="RFC9000"/> and are not changed in this document; each connection is a shared state between a client and a server.)</t>
      <t>Each QUIC multicast channel has exactly one associated (S,G) that is used for the delivery of the multicast packets on the IP layer. Channels only support source-specific multicast (SSM) and do not support any-source multicast (ASM) semantics.</t>
      <t>Channels carry only 1-RTT packets.
Packets associated with a channel contain a Channel ID in place of a Destination Connection ID.
(A Channel ID cannot be zero length.)
This adds a layer of indirection to the process described in <xref section="5.2" sectionFormat="of" target="RFC9000"/> for matching packets to connections upon receipt.
Incoming packets received on the network path associated with a channel use the Channel ID to associate the packet with a joined channel.</t>
      <t>A client with a matching joined channel always has at least one connection associated with the channel.
If a client has no matching joined channel, the packet is discarded.</t>
      <t>Each channel has an independent packet number space. To enable clients to detect lost packets, packet numbers in channels MUST be continuous.
Since the network path for a channel is unidirectional and uses a different packet number space than the unicast part of the connection, packets associated with a channel are acknowledged with MC_ACK frames <xref target="channel-ack-frame"/> instead of ACK frames.</t>
      <t>The use of any particular channel is OPTIONAL for both the server and the client.
It is recommended that applications designed to leverage the multicast capabilities of this extension also provide graceful degradation for endpoints that do not or cannot make use of the multicast functionality (see <xref target="graceful-degradation"/>).</t>
      <t>The server has access to all data transmitted on any multicast channel it uses, and could optionally send this data with unicast instead.</t>
      <t>No special handling of the data is required in a client application that has enabled multicast.
A datagram or any particular bytes from a server-initiated unidirectional stream can be delivered over the unicast connection or a multicast channel transparently to a client application consuming the stream or datagram.</t>
      <t>Client applications should have a mechanism that disables the use of multicast on connections with enhanced privacy requirements for the privacy-related reasons covered in <xref target="I-D.draft-krose-multicast-security"/>.</t>
    </section>
    <section anchor="transport-parameter">
      <name>Transport Parameters</name>
      <t>Support for multicast extensions in a client is advertised by means of QUIC transport parameters:</t>
      <ul spacing="normal">
        <li>
          <t>name: multicast_server_support (TBD - experiments use 0xff3e808)</t>
        </li>
        <li>
          <t>name: multicast_client_params (TBD - experiments use 0xff3e800)</t>
        </li>
      </ul>
      <t>If a multicast_server_support transport parameter is not included, clients MUST NOT send any frames defined in this document.</t>
      <t>If a multicast_client_params transport parameter is not included, servers MUST NOT send any frames defined in this document.</t>
      <t>The multicast_server_support parameter is a 0-length value.
Presence indicates that multicast-capable clients MAY send frames defined in this document, and SHOULD send MC_LIMITS (<xref target="client-limits-frame"/>) frames as appropriate when their capabilities or client-side limitations change.</t>
      <t>The multicast_client_params parameter has the structure shown below in <xref target="fig-transport-parameter-format"/>.</t>
      <figure anchor="fig-transport-parameter-format">
        <name>multicast_client_params Format</name>
        <artwork><![CDATA[
multicast_client_params {
  Reserved (6),
  IPv6 Channels Allowed (1),
  IPv4 Channels Allowed (1),
  Max Aggregate Rate (i),
  Max Channel IDs (i),
  Hash Algorithms Supported (i),
  Encryption Algorithms Supported (i),
  Hash Algorithms List (16 * Hash Algorithms Supported),
  Encryption Algorithms List (16 * Encryption Algorithms Supported)
}
]]></artwork>
      </figure>
      <t>The Reserved, IPv6 Channels Allowed, IPv4 Channels Allowed, Max Aggregate Rate, and Max Channel ID fields are identical to their analogous fields in the MC_LIMITS frame (<xref target="client-limits-frame"/>) and hold the initial values.</t>
      <t>A server MUST NOT send MC_ANNOUNCE (<xref target="channel-announce-frame"/>) frames with addresses using an IP Family that is not allowed according to the IPv4 and IPv6 Channels Allowed fields in the multicast_client_params, unless and until a later MC_LIMITS (<xref target="client-limits-frame"/>) frame adds permission for a different address family.</t>
      <t>The Encryption Algorithms List field is in order of preference (most preferred occurring first) using values from the TLS Cipher Suite registry (<eref target="https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-4">https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-4</eref>). It lists the algorithms the client is willing to use to decrypt data in multicast channels, and the server MUST NOT send an MC_ANNOUNCE to this client for any channels using unsupported algorithms.
If the server does send an MC_ANNOUNCE with an unsupported cipher suite, the client SHOULD treat it as a connection error of type MC_EXTENSION_ERROR.</t>
      <t>The Hash Algorithms List field is in order of preference (most preferred occurring first) using values from the registry below. It lists the algorithms the client is willing to use to check integrity of data in multicast channels, and the server MUST NOT send an MC_ANNOUNCE to this client for any channels using unsupported algorithms, or the client SHOULD treat it as a connection error of type MC_EXTENSION_ERROR:</t>
      <ul spacing="normal">
        <li>
          <t><eref target="https://www.iana.org/assignments/named-information/named-information.xhtml#hash-alg">https://www.iana.org/assignments/named-information/named-information.xhtml#hash-alg</eref></t>
        </li>
      </ul>
    </section>
    <section anchor="extension-overview">
      <name>Extension Overview</name>
      <t>A client has the option of refusal and the power to impose upper bound maxima on several resources (see <xref target="flow-control"/>), but otherwise its join status for all multicast channels is entirely managed by the server.</t>
      <ul spacing="normal">
        <li>
          <t>A client MUST NOT join a channel without receiving instructions from a server to do so.</t>
        </li>
        <li>
          <t>A client MUST leave joined channels when instructed by the server to do so.</t>
        </li>
        <li>
          <t>A client MAY leave channels or refuse to join channels, regardless of instructions from the server.</t>
        </li>
      </ul>
      <section anchor="channel-management">
        <name>Channel Management</name>
        <t>The client tells its server about some restrictions on resources that it is capable of processing with the initial values in the multicast_client_params transport parameter (<xref target="transport-parameter"/>) and later can update these limits with MC_LIMITS <xref target="client-limits-frame"/> frames. Servers ensure the set of channels the client is currently requested to join remains within these advertised client limits as covered in <xref target="flow-control"/>.</t>
        <t>The server asks the client to join channels with MC_JOIN (<xref target="channel-join-frame"/>) frames and to leave channels with MC_LEAVE (<xref target="channel-leave-frame"/>) frames.</t>
        <t>The server uses the MC_ANNOUNCE (<xref target="channel-announce-frame"/>) frame before any join or leave frames for the channel to describe the channel properties to the client, including values the client can use to ensure the server's requests remain within the limits it has sent to the server, as well as the secrets necessary to decode the headers of packets in the channel.
Sending an MC_ANNOUNCE before an MC_JOIN ensures the client can establish the necessary state required to join and retire any connection IDs that might collide with channel IDs.
MC_KEY frames provide the secrets necessary to decode the payload of packets in the channel.
<xref target="fig-client-channel-states"/> shows the states a channel has from the clients point of view.</t>
        <t>Joining a channel after receiving an MC_JOIN frame is OPTIONAL for clients. If a client decides not to join after being asked to do so, it can indicate this decision by sending an MC_STATE (<xref target="client-channel-state-frame"/>) frame with state DECLINED_JOIN and an appropriate reason.</t>
        <t>The server ensures that in aggregate, all channels that the client has currently been asked to join and that the client has not left or declined to join fit within the limits indicated by the initial values in the transport parameter or last MC_LIMITS (<xref target="client-limits-frame"/>) frame the server received.</t>
        <figure anchor="fig-client-channel-states">
          <name>States a channel from the clients point of view.</name>
          <artwork><![CDATA[
                            o
                            |
----------------------->|   | Receive MC_ANNOUNCE and/or MC_KEY
^                       |   |
|                       |   |
|  Receive MC_JOIN (and v   v
|     unable to join) +----------+
|<--------------------*          |
                      | unjoined | Receive MC_RETIRE
--------------------->|          *------------------------>|
^                     +----*-----+                         |
|                          | Receive MC_JOIN               |
|                          |   (and able to join)          |
|                          |                               |
|                          v                               v
|                     +----------+                    +---------+
|    Receive MC_LEAVE |          |                    |         |
|     (or error case) |  joined  | Receive MC_RETIRE  | retired |
|<--------------------*          *------------------->|         |
                      +----------+                    +---------+

*: Each transition except the initial receiving of MC_ANNOUNCE
   and MC_KEY frames causes the client to send an MC_STATE frame
   describing the state transition (for LEFT or DECLINED_JOIN, this
   includes a reason for the transition).

"able to join" means:
- Both MC_KEY and MC_ANNOUNCE have been received
- Result will be within latest advertised client limits
- Nothing preventing a join is active (e.g. a hold-down timer,
  administrative blocking, etc.)
]]></artwork>
        </figure>
        <t>When the server has asked the client to join a channel and has not received any MC_STATE frames <xref target="client-channel-state-frame"/> with state DECLINED_JOIN or LEFT, it also sends MC_INTEGRITY frames (<xref target="channel-integrity-frame"/>) to enable the client to verify packet integrity before processing the packet.
A client MUST NOT decode packets for a channel for which it has not received an applicable MC_ANNOUNCE (<xref target="channel-announce-frame"/>), or for which it has not received a matching packet hash in an MC_INTEGRITY (<xref target="channel-integrity-frame"/>) frame, or for which it has not received an applicable MC_KEY frame <xref target="channel-key-frame"/>.</t>
        <t><xref target="fig-frame-exchange"/> shows the frames that are being exchanged about and over a channel during the lifetime of an example channel.</t>
        <figure anchor="fig-frame-exchange">
          <name>Example flow of frames for a channel. Frames in square brackets are sent over multicast.</name>
          <artwork><![CDATA[
Client                                        Server

MC_LIMITS/initial_limits  --->

                                              MC_ANNOUNCE
                                              MC_KEY
                                       <----  MC_JOIN

MC_STATE(JOINED)  --->

                                              MC_INTEGRITY
                                       <----  [STREAM(...)]
MC_ACK  --->                                  ...
...                                    <----  MC_KEY
...
MC_LIMITS  --->

                                       <----  MC_LEAVE

MC_STATE(LEFT)  --->

                                       <----  MC_JOIN

MC_STATE(JOINED)  --->

                                              MC_INTEGRITY
                                       <----  [STREAM(...)]
MC_ACK  --->                                  ...
...

                                       <----  MC_LEAVE

MC_STATE(LEFT)  --->

                                       <----  MC_RETIRE

MC_STATE(RETIRED)  --->
]]></artwork>
        </figure>
        <t>TODO: incorporate server-side state diagram and explanation, latest proposed sketch at <eref target="https://github.com/GrumpyOldTroll/draft-jholland-quic-multicast/issues/62">https://github.com/GrumpyOldTroll/draft-jholland-quic-multicast/issues/62</eref></t>
      </section>
      <section anchor="client-response">
        <name>Client Response</name>
        <t>The client sends back information about how it has responded to the server's requests to join and leave channels in MC_STATE (<xref target="client-channel-state-frame"/>) frames.
MC_STATE frames are only sent for channels after the server has requested the client to join the channel, and are thereafter sent any time the state changes.</t>
        <t>Clients that receive and decode data on a multicast channel send acknowledgements for the data on the unicast connection using MC_ACK (<xref target="channel-ack-frame"/>) frames.</t>
        <t>A server can determine if a client receives packets for a multicast channel if it receives MC_ACK frames associated with that channel.
As such, it is in general up to the server to decide on the time after which it deems a client to be unable to receive packets on a given channel and take appropriate steps, e.g. sending an MC_LEAVE frame to the client.
Note that clients willing to join a channel SHOULD remain joined to the channel even if they receive no channel data for an extended period, to enable multicast-capable networks to perform popularity-based admission control for multicast channels.</t>
      </section>
      <section anchor="data-carried-in-channels">
        <name>Data Carried in Channels</name>
        <t>Data transmitted in a multicast channel is encrypted with symmetric keys so that on-path observers without access to these keys cannot decode the data.
However, since potentially many receivers receive identical packets and identical keys for the multicast channel and some receivers might be malicious, the packets are also protected by MC_INTEGRITY (<xref target="channel-integrity-frame"/>) frames transmitted over a separate integrity-protected path.</t>
        <t>A client MUST NOT decode packets on a multicast channel for which it has not received a matching hash in an MC_INTEGRITY frame over a different integrity-protected communication path.
The different path can be either the unicast connection or another multicast channel with packets that were verified with an earlier MC_INTEGRITY frame.</t>
        <t>Note that MC_INTEGRITY frames MAY be carried in packets on multicast channels, however such packets will not be accepted unless another accepted MC_INTEGRITY frame contains its packet hash.
Hashes of packets containing hashes of other packets can thus form a Merkle tree <xref target="MERKLE"/> with a root that is carried in the unicast connection.</t>
        <t>See <xref target="data-integrity"/> for a more complete overview of the security issues involved here.</t>
      </section>
      <section anchor="stream-processing">
        <name>Stream Processing</name>
        <t>Stream IDs in channels are restricted to unidirectional server initiated streams, or those with the least significant 2 bits of the stream ID equal to 3 (see <xref section="2.1" sectionFormat="of" target="RFC9000"/>).</t>
        <t>When a channel contains streams with IDs above the client's unidirectional MAX_STREAMS, the server MUST NOT instruct the client to join that channel and SHOULD send a STREAMS_BLOCKED frame, as described in Sections <xref target="RFC9000" section="4.6" sectionFormat="bare"/> and <xref target="RFC9000" section="19.14" sectionFormat="bare"/> of <xref target="RFC9000"/>.</t>
        <t>If the client is already joined to a channel that carries streams that exceed or will soon exceed the client's unidirectional MAX_STREAMS, the server SHOULD send an MC_LEAVE frame.</t>
        <t>If a client receives a STREAM frame with an ID above its MAX_STREAMS on a channel, the client MAY increase its unidirectional MAX_STREAMS to a value greater than the new ID and send an update to the server, otherwise it MUST drop the packet and leave the channel with reason "MAX_STREAMS_EXCEEDED".</t>
        <t>Since clients can join later than a channel began, it is RECOMMENDED that clients supporting the multicast extensions to QUIC be prepared to handle stream IDs that do not begin at early values, since by the time a client joins a channel in progress the stream ID count might have been increasing for a long time.
Clients should therefore begin with a high initial_max_streams_uni or send an early MAX_STREAMS type 0x13 value (see <xref section="19.11" sectionFormat="of" target="RFC9000"/>) with a high limit.
Clients MAY use the maximum 2^60 for this high initial limit, but the specific choice is implementation-dependent.</t>
        <t>The same stream ID may be used in both one or more multicast channels and the unicast connection.  As described in <xref section="2.2" sectionFormat="of" target="RFC9000"/>, stream data received multiple times for the same offset MUST be identical, even across different network paths; if it's not identical it MAY be treated as a connection error of type MC_EXTENSION_ERROR.</t>
      </section>
    </section>
    <section anchor="flow-control">
      <name>Flow Control</name>
      <t>The values used for unicast flow control cannot be used to limit the transmission rate of a multicast channel because a single client with a low MAX_STREAM_DATA or MAX_DATA value that did not acknowledge receipt could block many other receivers if the servers had to ensure that channels responded to each client's limits.</t>
      <t>Instead, clients advertise resource limits via MC_LIMITS (<xref target="client-limits-frame"/>) frames and their initial values from the transport parameter (<xref target="transport-parameter"/>).
The server is responsible for keeping the client within its advertised limits, by ensuring via MC_JOIN and MC_LEAVE frames that the set of channels the client is asked to be joined to will not, in aggregate, exceed the client's advertised limits.
The server also advertises the expected maxima of the values that can contribute toward client resource limits within a channel in an MC_ANNOUNCE (<xref target="channel-announce-frame"/>) frame, and the client also ensures that the set of channels it's joined to does not exceed its limits, according to the advertised values.
The client also monitors the packets received to ensure that channels don't exceed their advertised values, and leaves channels that do.</t>
      <t>If the server asks the client to join a channel that would exceed the client's limits with an up-to-date Client Limit Sequence Number, the client should send back an MC_STATE frame (<xref target="client-channel-state-frame"/>) with "DECLINED_JOIN" and reason "PROPERTY_VIOLATION".
If the server asks the client to join a channel that would exceed the client's limits with an out-of-date Client Limit Sequence Number or a Channel Key Sequence Number that the client has not yet seen, the client should instead send back a "DECLINED_JOIN" with "UNSYNCHRONIZED_PROPERTIES".
If the actual contents sent in the channel exceed the advertised limits from the MC_ANNOUNCE, clients SHOULD leave the stream and send an MC_STATE(LEFT) frame, using the Limit Violated reason.</t>
    </section>
    <section anchor="congestion-control">
      <name>Congestion Control</name>
      <t>Both the server and the client perform congestion control operations, so that according to the guidelines in <xref section="4.1" sectionFormat="of" target="RFC8085"/>, mechanisms for both feedback-based and receiver-driven styles of congestion control are present and operational.</t>
      <t>The server maintains a full view of the traffic received by the client via the MC_ACK (<xref target="channel-ack-frame"/>) frames and ACK frames it receives, and can detect loss experienced by the client.
Under sustained persistent loss that exceeds server-configured thresholds, the server SHOULD instruct the client to leave channels as appropriate to avoid having the client continue to see sustained persistent loss.</t>
      <t>Under sustained persistent loss that exceeds client-configured thresholds, the client SHOULD reduce its Max Rate and tell the server via MC_LIMITS frames, which also will result in the server instructing the client to leave channels until the clients aggregate rate is below its advertised Max Rate.
Under a higher threshold of sustained persistent loss, the client also SHOULD leave channels, using an MC_STATE(LEFT) frame with the "HIGH_LOSS" reason, as well as reducing the Max Rate in MC_LIMITS.</t>
      <t>The unicast connection's congestion control is unaffected.
However a few potential interactions with the unicast connection are worth highlighting:</t>
      <ul spacing="normal">
        <li>
          <t>if the client notices high loss on the unicast connection while multicast channel packets are arriving, the client MAY leave channels with reason "HIGH_LOSS".</t>
        </li>
        <li>
          <t>if the client notices congestion from unicast this MAY also drive reductions in the client's Max Rate, and a lack of unicast congestion under unicast load MAY also drive increases to the client's Max Rate (along with an updated MC_LIMITS frame).</t>
        </li>
      </ul>
      <t>Hybrid multicast-unicast congestion control is still an experimental research topic.
Implementations SHOULD follow the guidelines given in <xref section="4.1.1" sectionFormat="of" target="RFC8085"/> under the assumption that applications using QUIC multicast will operate as Bulk-Transfer applications.</t>
    </section>
    <section anchor="data-integrity">
      <name>Data Integrity</name>
      <t>TODO: import the <xref target="I-D.draft-krose-multicast-security"/> explanation for why extra integrity protection is necessary (many client have the shared key, so AEAD doesn't provide authentication against other valid clients on its own, since the same key is given to multiple clients and as the client count grows so does the chance that at least one client is controlled by an attacker.)</t>
      <section anchor="packet-hashes">
        <name>Packet Hashes</name>
        <t>TODO: explanation and example for how to calculate the packet hash.
Note that the hash is on the encrypted packet to avoid leaking data about the encrypted contents to those who can see a hash but not the key.
(This approach also may help make better use of <xref target="I-D.draft-ietf-mboned-ambi"/> by making it possible to generate the same hashes for use in both AMBI and QUIC MC_INTEGRITY frames.)</t>
      </section>
    </section>
    <section anchor="recovery">
      <name>Recovery</name>
      <t>TODO: Articulate key differences with <xref target="RFC9002"/>.
The main known difference is that servers might not be running on the same devices that are sending the channel packets, therefore the RTT for channel packets might use an estimated send time that can vary according to the clock synchronization among servers and the deployment and implementation details of how the servers find out the sending timestamps of channel packets.
Experience-based guidance on the recovery timing estimates is one anticipated outcome of experimenting with deployments of this experimental extension.</t>
      <t>All the new frames defined in this document except MC_ACK are ack-eliciting and are retransmitted until acknowledged to provide reliable, though possibly out of order, delivery.</t>
      <t>Note that recovery MAY be achieved either by retransmitting frame data that was lost and needs reliable transport either by sending the frame data on the unicast connection or by coordinating to cause an aggregated retransmission of widely dropped data on a multicast channel, at the server's discretion.
However, the server in each connection is responsible for ensuring that any necessary server-to-client frame data lost by a multicast channel packet loss ultimately arrives at the client.</t>
    </section>
    <section anchor="connection-termination">
      <name>Connection Termination</name>
      <t>Termination of the unicast connection behaves as described in <xref section="10" sectionFormat="of" target="RFC9000"/>, with the following notable differences:</t>
      <ul spacing="normal">
        <li>
          <t>On the client side, termination of the unicast connection means that it MUST leave all multicast channels and discard any state associated with them. Servers MAY stop sending to multicast channels if there are no unicast connections left that are associated with them.</t>
        </li>
        <li>
          <t>For determining the liveness of a connection, the client MUST only consider packets received on the unicast connection. Any packets received on a multicast channel MUST NOT be used to reset a timer checking if a potentially specified max_idle_timeout has been reached. If the unicast connection becomes idle, as described in <xref section="10.1" sectionFormat="of" target="RFC9000"/>, the client MUST terminate the connection as described above.</t>
        </li>
      </ul>
      <section anchor="stateless-reset">
        <name>Stateless Reset</name>
        <t>As clients can unilaterally stop the delivery of multicast packets by leaving the relevant (S,G), channels do not need stateless reset tokens.
Clients therefore do not share the stateless reset tokens of channels with the server. Instead, if an endpoint receives packets addressed to an (S,G) that it can not associate with any existing channel,
it MAY take the necessary steps to prevent the reception of further such packets, without the need to signal to the server that it should stop sending.</t>
        <t>If a server or client detect a stateless reset for a channel, they MUST ignore it.</t>
      </section>
      <section anchor="connection-migration">
        <name>Connection Migration</name>
        <t>If the unicast connection migrated, e.g. due to a change of the NAT binding or because the UE has changed to a different network, the client properties might change.
For example, the client might switch from a network that supports both IPv6 and IPv4 multicast to a network that only support IPv4. As such, it MUST immediately send an MC_LIMITS frame after it has noticed that it migrated.
The client MAY rejoin any previously joined channels, if its limits still allow it to. It MUST send MC_STATE(LEFT) frames with reason LIMIT_VIOLATION for any channels it does not rejoin.</t>
        <t>The server SHOULD take notice of migrating clients as the delay that is being caused by rejoining a multicast group can lead to exceeding the expected MAX_ACK_DELAY, which a server might interpret as a loss of multicast connectivity.
Instead, the server SHOULD treat all multicast channels of a client whose unicast connection just migrated as if it had just joined these channels initially and allow for ample time before expecting the first MC_ACK frames.</t>
      </section>
    </section>
    <section anchor="new-frames">
      <name>New Frames</name>
      <section anchor="channel-announce-frame">
        <name>MC_ANNOUNCE</name>
        <t>Once a server learns that a client supports multicast through its transport parameters, it can send one or multiple MC_ANNOUNCE frames (type=TBD-11..TBD-12) to share information about available channels with the client.
The MC_ANNOUNCE frame contains the properties of a channel that do not change during its lifetime.</t>
        <t>MC_ANNOUNCE frames are formatted as shown in <xref target="fig-mc-channel-announce"/>.</t>
        <figure anchor="fig-mc-channel-announce">
          <name>MC_ANNOUNCE Frame Format</name>
          <artwork><![CDATA[
MC_ANNOUNCE Frame {
  Type (i) = TBD-11..TBD-12 (experiments use 0xff3e811/0xff3e812),
  ID Length (8),
  Channel ID (8..160),
  Source IP (32..128),
  Group IP (32..128),
  UDP Port (16),
  Header Protection Algorithm (16),
  Header Secret Length (i),
  Header Secret (..),
  AEAD Algorithm (16),
  Integrity Hash Algorithm (16),
  Max Rate (i),
  Max ACK Delay (i)
}
]]></artwork>
        </figure>
        <t>Frames of type TBD-11 are used for IPv4 and both Source and Group address are 32 bits long. Frames of type TBD-12 are used for IPv6 and both Source and Group address are 128 bits long.</t>
        <t>MC_ANNOUNCE frames contain the following fields:</t>
        <ul spacing="normal">
          <li>
            <t>ID Length: The length in bytes of the Channel ID field.</t>
          </li>
          <li>
            <t>Channel ID: The channel ID of the channel that is getting announced.</t>
          </li>
          <li>
            <t>Source IP: The IP Address of the source of the (S,G) for the channel.  Either a 32-bit IPv4 address or a 128-bit IPv6 address, as indicated by the frame type (TBD-11 indicates IPv4, TBD-12 indicates IPv6).</t>
          </li>
          <li>
            <t>Group IP: The IP Address of the group of the (S,G) for the channel.  Either a 32-bit IPv4 address or a 128-bit IPv6 address, as indicated by the frame type (TBD-11 indicates IPv4, TBD-12 indicates IPv6).</t>
          </li>
          <li>
            <t>UDP Port: The 16-bit UDP Port of traffic for the channel.</t>
          </li>
          <li>
            <t>Header Protection Algorithm: A value from the TLS Cipher Suite registry (<eref target="https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-4">https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-4</eref>), used to protect the header fields in the channel packets.  The value MUST match a value provided in the "AEAD Algorithms List" of the transport parameter (see <xref target="transport-parameter"/>).</t>
          </li>
          <li>
            <t>Header Secret Length: Provides the length of the Secret field.</t>
          </li>
          <li>
            <t>Header Secret: A secret for use with the Header Protection Algorithm for protecting the header fields of 1-RTT packets in the channel as described in <xref target="RFC9001"/>.  The Key and Initial Vector for the application data carried in the 1-RTT packet header fields are derived from this secret as described in <xref section="7.3" sectionFormat="of" target="RFC8446"/>.</t>
          </li>
          <li>
            <t>AEAD Algorithm: A value from the TLS Cipher Suite registry (<eref target="https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-4">https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-4</eref>), used to protect the payloads in the channel packets.  The value MUST match a value provided in the "AEAD Algorithms List" of the transport parameter (see <xref target="transport-parameter"/>).</t>
          </li>
          <li>
            <t>Integrity Hash Algorithm: The hash algorithm used in integrity frames.
            </t>
            <ul spacing="normal">
              <li>
                <t><strong>Author's Note:</strong> Several candidate IANA registries, not sure which one to use?  Some have only text for some possibly useful values.  For now we use the first of these:
                </t>
                <ul spacing="normal">
                  <li>
                    <t><eref target="https://www.iana.org/assignments/named-information/named-information.xhtml#hash-alg">https://www.iana.org/assignments/named-information/named-information.xhtml#hash-alg</eref></t>
                  </li>
                  <li>
                    <t><eref target="https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-18">https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-18</eref></t>
                  </li>
                  <li>
                    <t>(text-only): <eref target="https://www.iana.org/assignments/hash-function-text-names/hash-function-text-names.xhtml">https://www.iana.org/assignments/hash-function-text-names/hash-function-text-names.xhtml</eref></t>
                  </li>
                </ul>
              </li>
            </ul>
          </li>
          <li>
            <t>Max Rate: The maximum rate in Kibps of the payload data for this channel. Channel data MUST NOT exceed this rate over any 5s window, if it does clients SHOULD leave the channel with reason "MAX_RATE_EXCEEDED".</t>
          </li>
          <li>
            <t>Max ACK Delay: A value used similarly to max_ack_delay (<xref section="18.2" sectionFormat="of" target="RFC9000"/>) that applies to traffic in this channel.  Clients SHOULD NOT intentionally add delay to MC_ACK frames for traffic in this channel beyond this value, in milliseconds, and SHOULD NOT add any delay to the first MC_ACK of data packets for a channel.  As long as they stay inside these limits, clients can improve efficiency and network load for the uplink by aggregating MC_ACK frames whenever possible.</t>
          </li>
        </ul>
        <t>A client MUST NOT use the channel ID included in an MC_ANNOUNCE frame as a connection ID for the unicast connection. If it is already in use, the client should retire it as soon as possible.
As the server knows which connection IDs are in use by the client, it MUST wait with the sending of an MC_JOIN frame until the channel ID associated with it has been retired by the client.</t>
        <t>As all the properties in MC_ANNOUNCE frames are immutable during the lifetime of a channel, a server SHOULD NOT send an MC_ANNOUNCE frame for the same channel more than once to each client except as needed for recovery.</t>
        <t>A server SHOULD send an MC_ANNOUNCE frame for a channel before sending an MC_KEY and SHOULD send an MC_KEY frame for a channel before sending an MC_JOIN frame for it.
Each of these recommended orderings MAY occur within the same packet.</t>
      </section>
      <section anchor="channel-key-frame">
        <name>MC_KEY</name>
        <t>An MC_KEY frame (type=TBD-01) is sent from server to client, either with the unicast connection or in an existing joined multicast channel.
The MC_KEY frame contains an updated secret that is used to generate the keying material for the payload of 1-RTT packets received on the multicast channel.</t>
        <t>A server can send a new MC_KEY frame with a sequence number increased by one.
A server MUST generate continuous sequence numbers, and MAY start at a value higher than 0.
Note that while not joined, a client will not receive updates to channel secrets, and thus may see jumps in the Key Sequence Number values between MC_KEY frames.
However, while joined the Key Sequence Numbers in the MC_KEY frames MUST increment by 1 for each new secret.</t>
        <t>Secrets with even-valued Key Sequence Numbers have a Key Phase of 0 in the 1-RTT packet, and secrets with odd-valued Key Sequence Numbers have a Key Phase of 1 in the 1-RTT packet.
Secrets with a Key Phase indicating an unknown key SHOULD be discarded without attempting to decrypt them.
(An unknown key might happen after loss of the latest MC_KEY frame, so that packets on a channel have an updated Key Phase starting at a particular packet number, but the client does not yet know about the key change.)</t>
        <t>Should a client receive two different Keys with the same Key Sequence Number and Channel ID, e.g. one over the unicast connection and one over the multicast channel, it SHOULD close the connection with reason MC_EXTENSION_ERROR.</t>
        <t>It is RECOMMENDED that servers send regular secret updates.</t>
        <t>MC_KEY frames are formatted as shown in <xref target="fig-mc-channel-key-format"/>.</t>
        <figure anchor="fig-mc-channel-key-format">
          <name>MC_KEY Frame Format</name>
          <artwork><![CDATA[
MC_KEY Frame {
  Type (i) = TBD-01 (experiments use 0xff3e801),
  ID Length (8),
  Channel ID (8..160),
  Key Sequence Number (i),
  From Packet Number (i),
  Secret Length (i),
  Secret (..)
}
]]></artwork>
        </figure>
        <t>MC_KEY frames contain the following fields:</t>
        <ul spacing="normal">
          <li>
            <t>ID Length: The length in bytes of the Channel ID field.</t>
          </li>
          <li>
            <t>Channel ID: The channel ID for the channel associated with this frame.</t>
          </li>
          <li>
            <t>Key Sequence Number: Increases by 1 each time the secret for the channel is changed by the server.  If there is a gap in sequence numbers due to reordering or retransmission of packets, on receipt of the older MC_KEY frame, the client MUST apply the secret contained and the packet numbers on which it applies as if they arrived in order.</t>
          </li>
          <li>
            <t>From Packet Number: The values in this MC_KEY frame apply only to packets starting at From Packet Number and continuing until they are overwritten by a new MC_KEY frame with a higher From Packet Number.  The Packet Number MUST never decrease with an increased Key Sequence Number.</t>
          </li>
          <li>
            <t>Secret Length: Provides the length of the secret field.</t>
          </li>
          <li>
            <t>Secret: Used to protect the packet contents of 1-RTT packets for the channel as described in <xref target="RFC9001"/>.  The Key and Initial Vector for the application data carried in the 1-RTT packet payloads are derived from the secret as described in <xref section="7.3" sectionFormat="of" target="RFC8446"/>.
To maintain forward secrecy and prevent malicious clients from decrypting packets long after they have left or were removed from the unicast connection, servers SHOULD periodically send key updates using only unicast.</t>
          </li>
        </ul>
        <t>Clients MUST delete old secrets and the keys derived from them after receiving new MC_KEY frames.
Deleting old keys prevents later compromise of a client from discovering an otherwise uncompromised key, thus improving the chances of achieving forward secrecy for data sent before a key rotation.</t>
        <t>Client implementations MAY institute a delay before deleting secrets to allow for decoding of packets for the channel that arrive shortly after a new MC_KEY frame.
For this experimental specification, it is RECOMMENDED that clients delete old keys 10 seconds after receiving a new key or after 3 seconds that elapse without receiving any new data to decode with the old key, whichever is shorter.
Clients MUST NOT delay more than 60 seconds before deleting the old keys.</t>
        <t>The delay values for this specification are somewhat arbitrary and allow for implementation-dependent experimentation.
One of the target discoveries for experimental evaluation is to determine good default delay values to use, and to understand whether there are use cases that would benefit from a negotiation between server and client to determine the delays to use dynamically.
(A poor delay choice results in either overhead from dropping packets instead of decoding them with old keys for too short a delay or in extra forward secrecy exposure time for too long a delay, and the purpose of the delays are to bound the forward secrecy exposure without inducing unreasonable overhead.)</t>
        <t>The From Packet Number is used to indicate the starting packet number (<xref section="17.1" sectionFormat="of" target="RFC9000"/>) of the 1-RTT packets for which the secret contained in an MC_KEY frame is applicable.
This secret is applicable to all future packets until it is updated by a new MC_KEY frame.</t>
        <t>A server SHOULD NOT send MC_KEY frames for channels except those the client has joined or will be imminently asked to join.</t>
      </section>
      <section anchor="channel-join-frame">
        <name>MC_JOIN</name>
        <t>An MC_JOIN frame (type TBD-02) is sent from server to client and requests that a client join the given transport addresses and ports and process packets with the given Channel ID according to the corresponding MC_ANNOUNCE frame and the latest MC_KEY frame for the channel.</t>
        <t>A client cannot join a multicast channel without first receiving an MC_ANNOUNCE frame and an MC_KEY frame, which together set all the values necessary to process the channel.</t>
        <t>If a client receives an MC_JOIN for a channel for which it has not received both an MC_ANNOUNCE frame and an MC_KEY frame, it MUST respond with an MC_STATE with State "DECLINED_JOIN" and reason "Missing Properties". The server MAY send another MC_JOIN after receiving an acknowledgement indicating receipt of the MC_ANNOUNCE frame and the MC_KEY frame.</t>
        <t>MC_JOIN frames are formatted as shown in <xref target="fig-mc-channel-join-format"/>.</t>
        <figure anchor="fig-mc-channel-join-format">
          <name>MC_JOIN Frame Format</name>
          <artwork><![CDATA[
MC_JOIN Frame {
  Type (i) = TBD-02 (experiments use 0xff3e802),
  ID Length (8),
  Channel ID (8..160),
  MC_LIMITS Sequence Number (i),
  MC_STATE Sequence Number (i),
  MC_KEY Sequence Number (i)
}
]]></artwork>
        </figure>
        <t>The sequence numbers are the most recently processed sequence number by the server from the respective frame type. They are present to allow the client to distinguish between a broken server that has performed an illegal action and an instruction that's based on updates that are out of sync (either one or more missing updates to MC_KEY not yet received by the client or one or more missing updates to MC_LIMITS or MC_STATE not yet received by the server).</t>
        <t>A client MAY perform the join if it has the sequence number of the corresponding channel properties and the client's limits will not be exceeded, even if the client sequence numbers are not up-to-date.</t>
        <t>If the client does not join, it MUST send an MC_STATE frame with "DECLINED_JOIN" and a reason.</t>
        <t>If the client does join, it MUST send an MC_STATE frame with "JOINED".</t>
      </section>
      <section anchor="channel-leave-frame">
        <name>MC_LEAVE</name>
        <t>An MC_LEAVE frame (type=TBD-03) is sent from server to client, and requests that a client leave the given channel.</t>
        <t>If the client has already left or declined to join the channel, the MC_LEAVE is ignored.</t>
        <t>If an MC_JOIN or an MC_LEAVE with the same Channel ID and a higher MC_STATE Sequence number has previously been received, the MC_LEAVE is ignored.</t>
        <t>Otherwise, the client MUST leave the channel and send a new MC_STATE frame with reason LEFT as requested by server.</t>
        <t>MC_LEAVE frames are formatted as shown in <xref target="fig-mc-channel-leave-format"/>.</t>
        <figure anchor="fig-mc-channel-leave-format">
          <name>MC_LEAVE Frame Format</name>
          <artwork><![CDATA[
MC_LEAVE Frame {
  Type (i) = TBD-03 (experiments use 0xff3e803),
  ID Length (8),
  Channel ID (8..160),
  MC_STATE Sequence Number (i),
  After Packet Number (i)
}
]]></artwork>
        </figure>
        <t>If After Packet Number is nonzero, wait until receiving that packet or a higher valued number before leaving.</t>
      </section>
      <section anchor="channel-integrity-frame">
        <name>MC_INTEGRITY</name>
        <t>MC_INTEGRITY frames are sent from server to client and are used to convey packet hashes for validating the integrity of packets received over the multicast channel as described in <xref target="packet-hashes"/>.</t>
        <t>MC_INTEGRITY frames are formatted as shown in <xref target="fig-mc-channel-integrity-format"/>.</t>
        <figure anchor="fig-mc-channel-integrity-format">
          <name>MC_INTEGRITY Frame Format</name>
          <artwork><![CDATA[
MC_INTEGRITY Frame {
  Type (i) = TBD-04..TBD-05 (experiments use 0xff3e804/0xff3e805),
  ID Length (8),
  Channel ID (8..160),
  Packet Number Start (i),
  [Length (i)],
  Packet Hashes (..)
}
]]></artwork>
        </figure>
        <t>For type TBD-05, Length is present and is a count of packet hashes.  For TBD-04, Length is not present and the packet hashes extend to the end of the packet.</t>
        <t>The first hash in the Packet Hashes list is a hash of a 1-RTT packet with the Channel ID equal to the Channel ID in the MC_INTEGRITY frame and packet number equal to the Packet Number Start field.
Subsequent hashes refer to the packets for the channel with packet numbers increasing by 1.</t>
        <t>Packet hashes MUST have length with an integer multiple of the length indicated by the Hash Algorithm from the MC_ANNOUNCE frame.</t>
        <t>See <xref target="packet-hashes"/> for a description of the packet hash calculation.</t>
      </section>
      <section anchor="channel-ack-frame">
        <name>MC_ACK</name>
        <t>The MC_ACK frame (types TBD-06 and TBD-07; experiments use 0xff3e806..0xff3e807) is an extension of the ACK frame defined by <xref target="RFC9000"/>. It is used to acknowledge packets that were sent on multicast channels. If the frame type is TBD-07, MC_ACK frames also contain the sum of QUIC packets with associated ECN marks received on the connection up to this point.</t>
        <t>(TODO: Would there be value in reusing the multiple packet number space version of ACK_MP from <xref section="12.2" sectionFormat="of" target="I-D.draft-ietf-quic-multipath"/>, defining channel ID as the packet number space?  at 2022-05 they're identical except the Channel ID and types.)</t>
        <t>MC_ACK frames are formatted as shown in <xref target="fig-mc-channel-ack-format"/>.</t>
        <figure anchor="fig-mc-channel-ack-format">
          <name>MC_ACK Frame Format</name>
          <artwork><![CDATA[
MC_ACK Frame {
  Type (i) = TBD-06..TBD-07 (experiments use 0xff3e806, 0xff3e807),
  ID Length (8),
  Channel ID (8..160),
  Largest Acknowledged (i),
  ACK Delay (i),
  ACK Range Count (i),
  First ACK Range (i),
  ACK Range (..) ...,
  [ECN Counts (..)],
}
]]></artwork>
        </figure>
      </section>
      <section anchor="client-limits-frame">
        <name>MC_LIMITS</name>
        <t>MC_LIMITS frames are formatted as shown in <xref target="fig-mc-client-limits-format"/>.</t>
        <figure anchor="fig-mc-client-limits-format">
          <name>MC_LIMITS Frame Format</name>
          <artwork><![CDATA[
MC_LIMITS Frame {
  Type (i) = TBD-09 (experiments use 0xff3e809),
  Client Limits Sequence Number (i),
  Reserved (6),
  IPv6 Channels Allowed (1),
  IPv4 Channels Allowed (1),
  Max Aggregate Rate (i),
  Max Channel IDs (i),
  Max Joined Count (i),
}
]]></artwork>
        </figure>
        <t>The sequence number is implicitly 0 before the first MC_LIMITS frame from the client, and increases by 1 each new frame that's sent.
Newer frames override older ones.</t>
        <t>The 6 Reserved bits MUST be set to 0 by the client and MUST be ignored by the server.
These are reserved to advertise future capabilities.</t>
        <t>IPv6 Channels Allowed is a 1-bit field set to 1 if IPv6 channels can be joined and 0 if IPv6 channels cannot be joined.</t>
        <t>IPv4 Channels Allowed is a 1-bit field set to 1 if IPv4 channels can be joined and 0 if IPv4 channels cannot be joined.</t>
        <t>Max Aggregate Rate allowed across all joined channels is in Kibps.</t>
        <t>Max Channel IDs is the count of channel IDs that can be announced to this client and have keys.  Retired Channel IDs don't count against this value.</t>
        <t>Max Joined Count is the count of channels that are allowed to be joined concurrently.</t>
      </section>
      <section anchor="channel-retire-frame">
        <name>MC_RETIRE</name>
        <t>MC_RETIRE frames are formatted as shown in <xref target="fig-mc-channel-retire-format"/>.</t>
        <figure anchor="fig-mc-channel-retire-format">
          <name>MC_RETIRE Frame Format</name>
          <artwork><![CDATA[
MC_RETIRE Frame {
  Type (i) = TBD-0a (experiments use 0xff3e80a),
  ID Length (8),
  Channel ID (8..160),
  After Packet Number (i)
}
]]></artwork>
        </figure>
        <t>Retires a channel by ID, discarding any state associated with it.   (Author comment: We can't use RETIRE_CONNECTION_ID because we don't have a coherent sequence number.)
If After Packet Number is nonzero and the channel is joined and has received any data, the channel will be retired after receiving that packet or a higher valued number, otherwise it will be retired immediately.</t>
        <t>After receiving an MC_RETIRE and retiring a channel, the client MUST send a new MC_STATE frame with reason RETIRED to the server.</t>
        <t>If the client is still joined in the channel that is being retired, it MUST also leave it. If a channel is left this way, it does not need to send an additional MC_STATE frame with state LEFT, as state RETIRED also implies the channel was left.</t>
      </section>
      <section anchor="client-channel-state-frame">
        <name>MC_STATE</name>
        <t>MC_STATE frames (type=TBD-0b or TBD-0c) are sent from client to server to report changes in the client's channel state.
Each time the channel state changes, the Client Channel State Sequence number is increased by one.
It is a state change to the channel if the server requests that a client join a channel and the client declines the join, even though no join occurs on the network.</t>
        <t>Frames of type TBD-0b are used for cases in which the reason for the state change occur in the QUIC multicast layer while frames of type TBD-0c are used for reasons that are application specific.</t>
        <t>MC_STATE frames are formatted as shown in <xref target="fig-mc-client-channel-state-format"/>.</t>
        <figure anchor="fig-mc-client-channel-state-format">
          <name>MC_STATE Frame Format</name>
          <artwork><![CDATA[
MC_STATE Frame {
  Type (i) = TBD-0b..TBD-0c (experiments use 0xff3e80b and 0xff3e80c),
  ID Length (8),
  Channel ID (8..160),
  Client Channel State Sequence Number (i),
  State (8),
  Reason Code (i),
  Reason Phrase Length (i),
  Reason Phrase (..)
}
]]></artwork>
        </figure>
        <t>State has these defined values:</t>
        <ul spacing="normal">
          <li>
            <t>0x1: LEFT</t>
          </li>
          <li>
            <t>0x2: DECLINED_JOIN</t>
          </li>
          <li>
            <t>0x3: JOINED</t>
          </li>
          <li>
            <t>0x4: RETIRED</t>
          </li>
        </ul>
        <t>If a server receives an undefined value, it SHOULD close the connection with reason MC_EXTENSION_ERROR.</t>
        <t>If State is JOINED or RETIRED, the Reason Code MUST be REQUESTED_BY_SERVER (0x1).</t>
        <t>If State is LEFT or DECLINED_JOIN, for frames of type TBD-0b the Reason Code field is set to one of:</t>
        <ul spacing="normal">
          <li>
            <t>0x0: UNSPECIFIED_OTHER</t>
          </li>
          <li>
            <t>0x1: REQUESTED_BY_SERVER</t>
          </li>
          <li>
            <t>0x2: ADMINISTRATIVE_BLOCK</t>
          </li>
          <li>
            <t>0x3: PROTOCOL_ERROR</t>
          </li>
          <li>
            <t>0x4: PROPERTY_VIOLATION</t>
          </li>
          <li>
            <t>0x5: UNSYNCHRONIZED_PROPERTIES</t>
          </li>
          <li>
            <t>0x6: ID_COLLISION</t>
          </li>
          <li>
            <t>0x10: HELD_DOWN</t>
          </li>
          <li>
            <t>0x12: MAX_RATE_EXCEEDED</t>
          </li>
          <li>
            <t>0x13: HIGH_LOSS</t>
          </li>
          <li>
            <t>0x14: EXCESSIVE_SPURIOUS_TRAFFIC</t>
          </li>
          <li>
            <t>0x15: MAX_STREAMS_EXCEEDED</t>
          </li>
          <li>
            <t>0x16: LIMIT_VIOLATION</t>
          </li>
        </ul>
        <t>(Author's note TODO: consider whether that these reasons should be added to the QUIC Transport Error Codes registry (<xref section="22.5" sectionFormat="of" target="RFC9000"/>) instead of defining a new registry specific to multicast.)</t>
        <t>For frames of type TBD-0c, the Reason Code is left to the application, as described in <xref section="20.2" sectionFormat="of" target="RFC9000"/></t>
        <t>The Reason Phrase field, in combination with the Reason Phrase Length field, can optionally be used to give further details for the state change.</t>
        <t>A client might receive multicast packets that it can not associate with any channel ID, or that cannot be verified as matching hashes from MC_INTEGRITY frames, or cannot be decrypted.
This traffic is presumed either to have been corrupted in transit or to have been sent by someone other than the legitimate sender of traffic for the channel, possibly by an attacker or a misconfigured sender.
If these packets are addressed to an (S,G) that is used for reception in one or more known channels, the client MAY leave these channels with reason "Excessive Spurious traffic".</t>
      </section>
    </section>
    <section anchor="frames-carried-in-channel-packets">
      <name>Frames Carried in Channel Packets</name>
      <t>Multicast channels will contain normal QUIC 1-RTT data packets (see <xref section="17.3.1" sectionFormat="of" target="RFC9000"/>) except using the Channel ID instead of a Connection ID.  The packets are protected with the keys derived from the secrets in MC_KEY frames for the corresponding channel.</t>
      <t>Data packet hashes will also be sent in MC_INTEGRITY frames, as keys cannot be trusted for integrity due to giving them to too many receivers, as described in <xref target="I-D.draft-krose-multicast-security"/>.</t>
      <t>The 1-RTT packets in multicast channels will have a restricted set of frames.
Since the channel is strictly 1-way server to client, the general principle is that broadcastable shared server-&gt;client data frames can be sent, but frames that make sense only for individualized connections or that are sent client-to-server cannot.</t>
      <t>Should a not permitted frame arrive on a multicast channel, the connection MUST be closed with a connection error of type MC_EXTENSION_ERROR.</t>
      <t>Permitted:</t>
      <ul spacing="normal">
        <li>
          <t>PADDING Frames (<xref section="19.1" sectionFormat="of" target="RFC9000"/> )</t>
        </li>
        <li>
          <t>PING Frames (<xref section="19.2" sectionFormat="of" target="RFC9000"/> )</t>
        </li>
        <li>
          <t>RESET_STREAM Frames (<xref section="19.4" sectionFormat="of" target="RFC9000"/> )</t>
        </li>
        <li>
          <t>STREAM Frames (<xref section="19.8" sectionFormat="of" target="RFC9000"/> )</t>
        </li>
        <li>
          <t>DATAGRAM Frames (both types) (<xref section="4" sectionFormat="of" target="RFC9221"/>)</t>
        </li>
        <li>
          <t>MC_KEY</t>
        </li>
        <li>
          <t>MC_LEAVE (however, join must come over unicast?)</t>
        </li>
        <li>
          <t>MC_INTEGRITY (not for this channel, only for another)</t>
        </li>
        <li>
          <t>MC_RETIRE</t>
        </li>
      </ul>
      <t>Not permitted:</t>
      <ul spacing="normal">
        <li>
          <t>19.3.  ACK Frames</t>
        </li>
        <li>
          <t>19.6.  CRYPTO Frames (crypto handshake does not happen on mc channels)</t>
        </li>
        <li>
          <t>19.7.  NEW_TOKEN Frames</t>
        </li>
        <li>
          <t>Flow control is different:
          </t>
          <ul spacing="normal">
            <li>
              <t>19.5.  STOP_SENDING Frames</t>
            </li>
            <li>
              <t>19.9.  MAX_DATA Frames  (flow control for mc channels is by rate)</t>
            </li>
            <li>
              <t>19.10. MAX_STREAM_DATA Frames</t>
            </li>
            <li>
              <t>19.11. MAX_STREAMS Frames</t>
            </li>
            <li>
              <t>19.12. DATA_BLOCKED Frames</t>
            </li>
            <li>
              <t>19.13. STREAM_DATA_BLOCKED Frames</t>
            </li>
            <li>
              <t>19.14. STREAMS_BLOCKED Frames</t>
            </li>
          </ul>
        </li>
        <li>
          <t>Channel ID Migration can't use the "prior to" concept within a channel, not 0-starting
          </t>
          <ul spacing="normal">
            <li>
              <t>19.15. NEW_CONNECTION_ID Frames</t>
            </li>
            <li>
              <t>19.16. RETIRE_CONNECTION_ID Frames</t>
            </li>
          </ul>
        </li>
        <li>
          <t>Channels don't have the same kind of path validation, as there's a unicast anchor with acks for the multicast packets:
          </t>
          <ul spacing="normal">
            <li>
              <t>19.17. PATH_CHALLENGE Frames</t>
            </li>
            <li>
              <t>19.18. PATH_RESPONSE Frames</t>
            </li>
          </ul>
        </li>
        <li>
          <t>19.19. CONNECTION_CLOSE Frames</t>
        </li>
        <li>
          <t>19.20. HANDSHAKE_DONE Frames</t>
        </li>
        <li>
          <t>MC_ANNOUNCE</t>
        </li>
        <li>
          <t>MC_LIMITS</t>
        </li>
        <li>
          <t>MC_STATE</t>
        </li>
        <li>
          <t>MC_ACK</t>
        </li>
      </ul>
    </section>
    <section anchor="implementation-and-operational-considerations">
      <name>Implementation and Operational Considerations</name>
      <section anchor="constraints-on-stream-data">
        <name>Constraints on Stream Data</name>
        <t>Note that when a newly connected client joins a channel, the client will only be able to receive application data carried in stream frames delivered on that channel when they have received the stream data starting from offset 0 of the stream.</t>
        <t>This usually means that new streams must be started for application data carried in channel packets whenever there might be new clients that have joined since an earlier stream started. If the server deems it convenient, it could also send preceding data for that stream over the unicast connection to catch the client up.</t>
        <t>With broadcast video, this usually means a new stream is necessary for every video segment or group of video frames since new clients will join throughout the broadcast, whereas for video conferencing, it could be possible to start a new stream whenever new clients join the conference without needing a new stream per object.</t>
      </section>
      <section anchor="application-use-cases">
        <name>Application Use Cases</name>
        <t>There are several known applications that could benefit from using multicast QUIC, either with their own custom application-layer transport or with one of the transports discussed in <xref target="data-use-cases"/>.  A few examples include:</t>
        <ul spacing="normal">
          <li>
            <t>Existing multicast-capable applications that are modified to use QUIC datagrams instead of UDP payloads can potentially get improved encryption and congestion feedback, while keeping existing error recovery techniques (e.g. techniques based on the forward error correction (FEC) framework in <xref target="RFC6363"/>).
            </t>
            <ul spacing="normal">
              <li>
                <t>An external tunnel could supply this kind of encapsulation without modification to the sender or receiver for some applications, while retaining the benefits of multicast scalability</t>
              </li>
              <li>
                <t>Using QUIC datagrams in place of UDP packets could usefully support existing implementations of file-transfer protocols like FLUTE <xref target="RFC6726"/> or FCAST <xref target="RFC6968"/> to enable file downloads such as operating system updates or popular game downloads, but adding encryption, packet-level authentication, and congestion control as provided by QUIC.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Conferencing systems, especially within an enterprise that can deploy multicast network support, often can save significantly on server costs by using multicast</t>
          </li>
          <li>
            <t>The traditional multicast use case of broadcasting of live sports with a set-top box would benefit from an interoperable system such as these QUIC extensions that can fall back to unicast transparently as needed, for example if there are a few customers who installed a non-multicast-capable home router.</t>
          </li>
          <li>
            <t>Smart TVs or other video playing in-home devices could interoperate with a standard sender using multicast QUIC, rather than requiring proprietary integrations with TV operators.</t>
          </li>
        </ul>
      </section>
      <section anchor="data-use-cases">
        <name>Data Transport Use Cases</name>
        <t>This section outlines considerations for some known transport mechanisms that are worth highlighting as potentially useful with multicast QUIC.</t>
        <section anchor="server-push">
          <name>HTTP/3 Server Push</name>
          <t>HTTP/3 Server Push is defined in <xref section="4.6" sectionFormat="of" target="RFC9114"/>.</t>
          <t>Server push is a good use case for multicast transport because the same data can be pushed to many different receivers on a multicast channel.
Applications designed to work well with server push can leverage multicast QUIC very effectively with only a few extra considerations.</t>
          <t>A QUIC connection using HTTP/3 can use multicast channels to deliver server-initiated streams that implement HTTP/3 Server Push.</t>
          <t>Applications expecting to use server push with multicast SHOULD use a high MAX_PUSH_ID in order to work with channels that have been active for a long time already when the connection is first established.
Servers SHOULD NOT allow clients to remain joined to channels if their MAX_PUSH_ID will be exceeded by push streams that are to be sent imminently.</t>
          <t>If a client receives data from a push ID that exceeds its MAX_PUSH_ID causing an H3_ID_ERROR on a multicast channel, it SHOULD leave the channel with reason 0x1000108 (computed by adding the H3_ID_ERROR value 0x0108 to the Application-defined Reason start value 0x1000000).
This SHOULD NOT cause a close of the whole connection but MAY cause a stream error and reset of the stream.</t>
          <t>TODO: flesh out this principle for application-level error code assignment in general for known error code values, and specifically all HTTP/3 ones? (Or is there a better approach?)</t>
        </section>
        <section anchor="webtransport">
          <name>HTTP/3 WebTransport Streams</name>
          <t>WebTransport over HTTP/3 is defined in <xref target="I-D.draft-ietf-webtrans-http3"/>.</t>
          <t>Popular data that can be sent with server-initiated streams and carried over WebTransport is a good use cases for multicast transport because the same server-to-client data can be pushed to many different receivers on a multicast channel.</t>
          <t>A QUIC connection using HTTP/3 and WebTransport can use multicast channels to deliver WebTransport server-initiated streams.</t>
          <t>However, because the WebTransport Session ID is a client-specific value, the bytes that carry the WebTransport Session ID value within the stream would need to be carried over unicast, since it's not the same for different clients.</t>
          <t>For this situation, note that the Session ID is a variable length integer, and that a variable length integer can be encoded in any size that's big enough to hold it.  In particular, it's possible to use the largest size of any Session IDs of any of the WebTransport sessions of any clients (or 8 octets, the maximum size for a variable length integer), and that all clients receiving stream data on a channel will need to use the same size for the Session ID so that the rest of the stream data will be at the same offset for every client.</t>
        </section>
        <section anchor="datagrams">
          <name>Datagrams</name>
          <t>DATAGRAM frames (<xref target="RFC9221"/>) can be carried in multicast channels, and can be a good way to deliver popular content to receivers.
Doing so can align well with existing multicast UDP-based applications, since a datagram API in a QUIC application offers similar functionality to a UDP API for sending and receiving packets.</t>
          <t>However, at the time of this writing (version -05 of <xref target="I-D.draft-ietf-masque-h3-datagram"/>) multicast channels generally cannot deliver HTTP/3 datagrams, including WebTransport datagrams (version -02 of <xref target="I-D.draft-ietf-webtrans-http3"/>), since the demuxing of WebTransport datagrams uses a Session ID based on a client-specific value (the HTTP/3 Session ID comes from the Stream ID of the client-initiated stream that issued the initial extended CONNECT request).</t>
          <t>It is therefore hoped that an extension or revision to WebTransport and HTTP/3 datagrams can be adopted in a future version of their specifications that make it possible to use a server-chosen Session ID value for demuxing WebTransport datagrams (and HTTP/3 datagrams in general).</t>
          <t>Such a value could for instance be sent in an HTTP/3 response header, and as long as it is unique within the connection and avoids collision with any client-initiated stream ID values, it could still be used to multiplex data associated with different HTTP/3 traffic and different WebTransport sessions carried on the same connection.
Then by choosing the same server-chosen session ID for all the connections, the server would be able to use the same channel to carry the identical complete datagrams, including the server-chosen Session ID, to multiple receivers that the server asks to join the same channel.
Such a change could either replace the current client-chosen definition for Session ID in server-to-client datagrams, or could add new HTTP/3 frame types that allow a server-chosen Session ID when the client has advertised support for this extended functionality.</t>
        </section>
      </section>
      <section anchor="graceful-degradation">
        <name>Graceful Degradation</name>
        <t>Clients with multicast QUIC support can stop accepting multicast for a variety of reasons.</t>
        <t>Applications like live broadcast-scale video that rely on multicast QUIC may benefit from anticipating that clients might stop using multicast and providing data feeds with similar content that can scale even if many clients stop using multicast, for example by ensuring that a lower-bitrate rendition can still be delivered over unicast to all or most of the clients simultaneously, and ensuring that the server has a way to make the client start using the low-bitrate version when it switches to unicast.</t>
        <t>While some existing Adaptive Bitrate video players might have an easy way to provide this, other video players might need specialized logic to provide the server a way to control what bitrate individual clients consume.
Although under ideal conditions it may often be possible using features like server push (<xref target="server-push"/>) to use unmodified existing HTTP-based video players with multicast QUIC, in practice it may require extra development at the application level to make a player that robustly delivers a good user experience under variable network conditions, depending on the scalability gains that multicast transport is providing and the Adaptive Bitrate algorithms the player is using.</t>
        <section anchor="circuit-breakers">
          <name>Circuit Breakers</name>
          <t>Operators of multicast QUIC services should consider that some networks may implement circuit breakers such as the one described in <xref target="I-D.draft-ietf-mboned-cbacc"/>, or similar network-level safety features that might cut off previously operational multicast transport under certain conditions.</t>
          <t>The servers will notice the transport loss from the lack of MC_ACK frames from receivers in a network that cut off multicast transport, but it may be beneficial when possible in a transport cutoff event correlated across many clients to pace the recovery response according to aggregations of the affected clients so that a sudden unicast storm doesn't overload the network further.</t>
        </section>
      </section>
      <section anchor="server-scalability">
        <name>Server Scalability</name>
        <t>Use of QUIC multicast channels can provide large scalability gains, but there still will be significant scaling requirements on server operators to support a large client footprint.</t>
        <t>Servers, possibly many of them, still will be required to maintain unicast connections with all the clients and provide for handling MC_ACK frames from the clients, delivering MC_INTEGRITY frames, managing the clients' channel join states, and providing recovery for lost packets.</t>
        <t>Further, the use of multicast channels likely requires increased coordination between the different servers, relative to services that operate completely independently.</t>
        <t>For large deployments, server implementations will often need to operate on separate devices from the ones generating the multicast channel packets, and will need to be designed accordingly.</t>
      </section>
      <section anchor="address-collisions">
        <name>Address Collisions</name>
        <t>Multicast channels at the network layer are addressed with a source IP, a destination group IP address, and a destination UDP port.</t>
        <t>These offers a number of potential address collision considerations that are worth mentioning:</t>
        <ol spacing="normal" type="1"><li>
            <t>If properties change for the data being used in a channel (for example, new video encoding settings might result in a change to the expected max rate for a video feed), a server might reuse the same network addresses in a new QUIC multicast channel, and might send a join for the new channel and a leave for the old channel to clients that can support the new max rate.  If they arrive together, this could be handled by the client without making a change to the IGMP or MLD membership state, as an optimization that can prevent the need for some recovery, or even by reusing the same UDP socket.  Doing so does not change any requirements for the channel state management at the QUIC layer, and as long as the situation is transient, should not result in leaving due to Excessive Spurious Traffic even if some packets were reordered or may still be in flight.</t>
          </li>
          <li>
            <t>As described in <xref section="6" sectionFormat="of" target="RFC4607"/>, link-layer addresses can be linked to the low-order bits of multicast addresses, and may be the same for different group destinations.  Collisions in the link-layer addressing, even with traffic that comes from other sources, can cause congestion or receiver CPU load for colliding channels that might be different from that seen with other channels that were delivered with apparently the same network paths.</t>
          </li>
          <li>
            <t>Even though multicast QUIC uses only source-specific multicast, older networks with devices that don't have IGMPv3 or MLDv2 support can propagate the joins as any-source multicast. If there are active senders sending to that destination, this can cause network congestion and CPU load due to discarding packets from the wrong source, even though at the application layer the UDP socket won't receive those packets from the wrong source.</t>
          </li>
          <li>
            <t>If different channels use the same (S,G) but different UDP ports, they will share the same multicast forwarding tree in an IP network. This is often useful when the data in the channels are linked, for example if MC_INTEGRITY frames are carried on one channel for packets carried on another channel, because it provides some fate-sharing for the linked data.  However, for data that is not so linked, it would generally be a disadvantage to share the (S,G) because the network link of any receiver joined to one of those channels but not the other would receive both packets and throw away the data for the un-joined port, causing extra congestion and CPU load for the receiving device.</t>
          </li>
        </ol>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>(Authors comment: Mostly incorporate <xref target="I-D.draft-krose-multicast-security"/>.  Anything else?</t>
      <t>e.g. if a different legitimate quic connection says someone
else's quic multicast stream is theirs, that's maybe a problem
worth protecting against.  Maybe we need a periodic asymmetric
challenge?  I'm thinking send a public key on the multicast
channel and in the unicast channels send an individualized MAC
signed with the private key and verify it with the public key,
so that in addition to validating that the unicast server knows
the contents of the multicast packets via the hashes it supplies,
the multicast stream provides a way for the client to validate
that the unicast stream is authorized to use it for data transport
via proof they know the private key corresponding to the public
key that arrived on the multicast channel.
Note this doesn't prevent unauthorized receipt of multicast
data packets, but does prevent a quic server from lying when
claiming a multicast data channel belongs to it, preventing
legit receivers from consuming it.</t>
      <t>alternatively, can the multicast channel just periodically say
what domain name is expected for the quic connection and get the
same crypto guarantee of a proper sender via the domain's cert,
which was already checked on the unicast channel?)</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>TODO: MC_EXTENSION_ERROR error code</t>
      <t>TODO: lots</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="I-D.draft-krose-multicast-security">
          <front>
            <title>Security and Privacy Considerations for Multicast Transports</title>
            <author fullname="Kyle Rose" initials="K." surname="Rose">
              <organization>Akamai Technologies, Inc.</organization>
            </author>
            <author fullname="Jake Holland" initials="J." surname="Holland">
              <organization>Akamai Technologies, Inc.</organization>
            </author>
            <date day="27" month="December" year="2023"/>
            <abstract>
              <t>   Interdomain multicast has unique potential to solve delivery
   scalability for popular content, but it carries a set of security and
   privacy issues that differ from those in unicast delivery.  This
   document analyzes the security threats unique to multicast-based
   delivery for Internet and Web traffic under the Internet and Web
   threat models.

Discussion Venues

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

   Source for this draft and an issue tracker can be found at
   https://github.com/squarooticus/draft-krose-multicast-security.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-krose-multicast-security-06"/>
        </reference>
        <reference anchor="I-D.draft-ietf-mboned-ambi">
          <front>
            <title>Asymmetric Manifest Based Integrity</title>
            <author fullname="Jake Holland" initials="J." surname="Holland">
              <organization>Akamai Technologies, Inc.</organization>
            </author>
            <author fullname="Kyle Rose" initials="K." surname="Rose">
              <organization>Akamai Technologies, Inc.</organization>
            </author>
            <date day="7" month="March" year="2022"/>
            <abstract>
              <t>   This document defines Asymmetric Manifest-Based Integrity (AMBI).
   AMBI allows each receiver or forwarder of a stream of multicast
   packets to check the integrity of the contents of each packet in the
   data stream.  AMBI operates by passing cryptographically verifiable
   hashes of the data packets inside manifest messages, and sending the
   manifests over authenticated out-of-band communication channels.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-mboned-ambi-03"/>
        </reference>
        <reference anchor="I-D.draft-ietf-mboned-cbacc">
          <front>
            <title>Circuit Breaker Assisted Congestion Control</title>
            <author fullname="Jake Holland" initials="J." surname="Holland">
              <organization>Akamai Technologies, Inc.</organization>
            </author>
            <date day="7" month="March" year="2022"/>
            <abstract>
              <t>   This document specifies Circuit Breaker Assisted Congestion Control
   (CBACC).  CBACC enables fast-trip Circuit Breakers by publishing rate
   metadata about multicast channels from senders to intermediate
   network nodes or receivers.  The circuit breaker behavior is defined
   as a supplement to receiver driven congestion control systems, to
   preserve network health if misbehaving or malicious receiver
   applications subscribe to a volume of traffic that exceeds capacity
   policies or capability for a network or receiving device.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-mboned-cbacc-04"/>
        </reference>
        <reference anchor="I-D.draft-ietf-quic-multipath">
          <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="23" month="October" year="2023"/>
            <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/mirjak/draft-lmbdhk-quic-multipath.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-multipath-06"/>
        </reference>
        <reference anchor="RFC8085">
          <front>
            <title>UDP Usage Guidelines</title>
            <author fullname="L. Eggert" initials="L." surname="Eggert"/>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst"/>
            <author fullname="G. Shepherd" initials="G." surname="Shepherd"/>
            <date month="March" year="2017"/>
            <abstract>
              <t>The User Datagram Protocol (UDP) provides a minimal message-passing transport that has no inherent congestion control mechanisms. This document provides guidelines on the use of UDP for the designers of applications, tunnels, and other protocols that use UDP. Congestion control guidelines are a primary focus, but the document also provides guidance on other topics, including message sizes, reliability, checksums, middlebox traversal, the use of Explicit Congestion Notification (ECN), Differentiated Services Code Points (DSCPs), and ports.</t>
              <t>Because congestion control is critical to the stable operation of the Internet, applications and other protocols that choose to use UDP as an Internet transport must employ mechanisms to prevent congestion collapse and to establish some degree of fairness with concurrent traffic. They may also need to implement additional mechanisms, depending on how they use UDP.</t>
              <t>Some guidance is also applicable to the design of other protocols (e.g., protocols layered directly on IP or via IP-based tunnels), especially when these protocols do not themselves provide congestion control.</t>
              <t>This document obsoletes RFC 5405 and adds guidelines for multicast UDP usage.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="145"/>
          <seriesInfo name="RFC" value="8085"/>
          <seriesInfo name="DOI" value="10.17487/RFC8085"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <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="RFC9001">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="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="RFC9221">
          <front>
            <title>An Unreliable Datagram Extension to QUIC</title>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <author fullname="E. Kinnear" initials="E." surname="Kinnear"/>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document defines an extension to the QUIC transport protocol to add support for sending and receiving unreliable datagrams over a QUIC connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9221"/>
          <seriesInfo name="DOI" value="10.17487/RFC9221"/>
        </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="I-D.draft-ietf-webtrans-http3">
          <front>
            <title>WebTransport over HTTP/3</title>
            <author fullname="Alan Frindell" initials="A." surname="Frindell">
              <organization>Facebook</organization>
            </author>
            <author fullname="Eric Kinnear" initials="E." surname="Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Victor Vasiliev" initials="V." surname="Vasiliev">
              <organization>Google</organization>
            </author>
            <date day="23" month="October" year="2023"/>
            <abstract>
              <t>   WebTransport [OVERVIEW] is a protocol framework that enables clients
   constrained by the Web security model to communicate with a remote
   server using a secure multiplexed transport.  This document describes
   a WebTransport protocol that is based on HTTP/3 [HTTP3] and provides
   support for unidirectional streams, bidirectional streams and
   datagrams, all multiplexed within the same HTTP/3 connection.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-http3-08"/>
        </reference>
        <reference anchor="I-D.draft-ietf-masque-h3-datagram">
          <front>
            <title>HTTP Datagrams and the Capsule Protocol</title>
            <author fullname="David Schinazi" initials="D." surname="Schinazi">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Lucas Pardue" initials="L." surname="Pardue">
              <organization>Cloudflare</organization>
            </author>
            <date day="17" month="June" year="2022"/>
            <abstract>
              <t>This document describes HTTP Datagrams, a convention for conveying multiplexed, potentially unreliable datagrams inside an HTTP connection.

 In HTTP/3, HTTP Datagrams can be sent unreliably using the QUIC DATAGRAM extension. When the QUIC DATAGRAM frame is unavailable or undesirable, HTTP Datagrams can be sent using the Capsule Protocol, which is a more general convention for conveying data in HTTP connections.

 HTTP Datagrams and the Capsule Protocol are intended for use by HTTP extensions, not applications.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-masque-h3-datagram-11"/>
        </reference>
        <reference anchor="RFC4607">
          <front>
            <title>Source-Specific Multicast for IP</title>
            <author fullname="H. Holbrook" initials="H." surname="Holbrook"/>
            <author fullname="B. Cain" initials="B." surname="Cain"/>
            <date month="August" year="2006"/>
            <abstract>
              <t>IP version 4 (IPv4) addresses in the 232/8 (232.0.0.0 to 232.255.255.255) range are designated as source-specific multicast (SSM) destination addresses and are reserved for use by source-specific applications and protocols. For IP version 6 (IPv6), the address prefix FF3x::/32 is reserved for source-specific multicast use. This document defines an extension to the Internet network service that applies to datagrams sent to SSM addresses and defines the host and router requirements to support this extension. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4607"/>
          <seriesInfo name="DOI" value="10.17487/RFC4607"/>
        </reference>
        <reference anchor="RFC6363">
          <front>
            <title>Forward Error Correction (FEC) Framework</title>
            <author fullname="M. Watson" initials="M." surname="Watson"/>
            <author fullname="A. Begen" initials="A." surname="Begen"/>
            <author fullname="V. Roca" initials="V." surname="Roca"/>
            <date month="October" year="2011"/>
            <abstract>
              <t>This document describes a framework for using Forward Error Correction (FEC) codes with applications in public and private IP networks to provide protection against packet loss. The framework supports applying FEC to arbitrary packet flows over unreliable transport and is primarily intended for real-time, or streaming, media. This framework can be used to define Content Delivery Protocols that provide FEC for streaming media delivery or other packet flows. Content Delivery Protocols defined using this framework can support any FEC scheme (and associated FEC codes) that is compliant with various requirements defined in this document. Thus, Content Delivery Protocols can be defined that are not specific to a particular FEC scheme, and FEC schemes can be defined that are not specific to a particular Content Delivery Protocol. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6363"/>
          <seriesInfo name="DOI" value="10.17487/RFC6363"/>
        </reference>
        <reference anchor="RFC6726">
          <front>
            <title>FLUTE - File Delivery over Unidirectional Transport</title>
            <author fullname="T. Paila" initials="T." surname="Paila"/>
            <author fullname="R. Walsh" initials="R." surname="Walsh"/>
            <author fullname="M. Luby" initials="M." surname="Luby"/>
            <author fullname="V. Roca" initials="V." surname="Roca"/>
            <author fullname="R. Lehtonen" initials="R." surname="Lehtonen"/>
            <date month="November" year="2012"/>
            <abstract>
              <t>This document defines File Delivery over Unidirectional Transport (FLUTE), a protocol for the unidirectional delivery of files over the Internet, which is particularly suited to multicast networks. The specification builds on Asynchronous Layered Coding, the base protocol designed for massively scalable multicast distribution. This document obsoletes RFC 3926. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6726"/>
          <seriesInfo name="DOI" value="10.17487/RFC6726"/>
        </reference>
        <reference anchor="RFC6968">
          <front>
            <title>FCAST: Object Delivery for the Asynchronous Layered Coding (ALC) and NACK-Oriented Reliable Multicast (NORM) Protocols</title>
            <author fullname="V. Roca" initials="V." surname="Roca"/>
            <author fullname="B. Adamson" initials="B." surname="Adamson"/>
            <date month="July" year="2013"/>
            <abstract>
              <t>This document introduces the FCAST reliable object (e.g., file) delivery application. It is designed to operate either on top of the underlying Asynchronous Layered Coding (ALC) / Layered Coding Transport (LCT) reliable multicast transport protocol or the NACK-Oriented Reliable Multicast (NORM) transport protocol.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6968"/>
          <seriesInfo name="DOI" value="10.17487/RFC6968"/>
        </reference>
        <reference anchor="RFC9114">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment. This document describes a mapping of HTTP semantics over QUIC. This document also identifies HTTP/2 features that are subsumed by QUIC and describes how HTTP/2 extensions can be ported to HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9114"/>
          <seriesInfo name="DOI" value="10.17487/RFC9114"/>
        </reference>
        <reference anchor="MERKLE">
          <front>
            <title>Secrecy, Authentication, and Public Key Systems</title>
            <author initials="R." surname="Merkle">
              <organization/>
            </author>
            <date year="1983"/>
          </front>
          <seriesInfo name="Computer Science Series, UMI Research Press, ISBN: 9780835713849" value=""/>
        </reference>
      </references>
    </references>
    <?line 929?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Thanks to Louis Navarre on his comments and text contributions to the multipath and FEC sections.</t>
      <t>Thanks to Martin Duke, Sam Hurst, Kyle Rose, Michael Welzl and Momoka Yamamoto for their helpful reviews and comments.</t>
      <t>This work has been supported by the Federal Ministry of Education and Research of Germany in the programme of “Souverän. Digital. Vernetzt.” Joint project 6G-RIC, project identification number (PIN): FKZ 16KISK030</t>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
e9j7P5lx+NUIBQEA

-->

</rfc>
