<?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.30 (Ruby 3.4.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-navarre-quic-flexicast-02" category="exp" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="FC-QUIC">Flexicast QUIC: combining unicast and multicast in a single QUIC connection</title>
    <seriesInfo name="Internet-Draft" value="draft-navarre-quic-flexicast-02"/>
    <author fullname="Louis Navarre">
      <organization>UCLouvain</organization>
      <address>
        <postal>
          <country>Belgium</country>
        </postal>
        <email>louis.navarre@uclouvain.be</email>
      </address>
    </author>
    <author fullname="Olivier Bonaventure">
      <organization>UCLouvain &amp; WELRI</organization>
      <address>
        <postal>
          <country>Belgium</country>
        </postal>
        <email>olivier.bonaventure@uclouvain.be</email>
      </address>
    </author>
    <date year="2026" month="February" day="28"/>
    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    <keyword>quic</keyword>
    <keyword>multicast</keyword>
    <keyword>flexicast</keyword>
    <abstract>
      <?line 69?>

<t>This document proposes Flexicast QUIC, a simple extension to Multipath
QUIC that enables a source to send the same information to a set of
receivers using a combination of unicast paths and IP multicast distribution trees.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-navarre-quic-flexicast/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        QUIC Working Group 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/louisna/draft-navarre-quic-flexicast"/>.</t>
    </note>
  </front>
  <middle>
    <?line 76?>

<section anchor="sec-intro">
      <name>Introduction</name>
      <t>Starting from the initial efforts of Steve Deering <xref target="RFC1112"/>, the IETF
has developed a range of IP multicast solutions that enable the efficient
transmission of a single packet to a group of receivers. In this document,
we focus on Source-Specific Multicast for IP <xref target="RFC4607"/>, but the solution
proposed could also be applied to other forms of IP Multicast.</t>
      <t>Although IP Multicast is not a new solution, it is not as widely used by
applications as popular transport protocols like TCP <xref target="RFC9293"/> or QUIC <xref target="QUIC-TRANSPORT"/>
do not support multicast.
Current IP Multicast applications include IP TV distribution in ISP networks
and trading services for financial institutions. Many reasons explain the difficulty
of deploying IP Multicast <xref target="DIOT"/>. From the application's viewpoint, a
key challenge with IP Multicast is that even if there exists a unicast path
between two hosts, there is no guarantee that it will be possible to create and
maintain a multicast tree between these two hosts to efficiently exchange
data using IP multicast. To cope with this problem, applications must
implement both a multicast solution and a unicast solution. This increases the
complexity and the cost of these applications.
For this reason, many applications that send
the same information to a large set of receivers, such as streaming services
or software updates, still rely on TCP or QUIC over unicast. This is inefficient from
the network viewpoint as the network carries the same information multiple
times.</t>
      <t>The deployment of QUIC opens an interesting opportunity to reconsider the
utilization of IP Multicast. As QUIC runs above UDP, it could easily use
IP multicast to deliver information along multicast trees, while offering the native reliability and security features of the protocol. Multicast
extensions to QUIC have already been proposed in
<xref target="I-D.pardue-quic-http-mcast"/> and <xref target="I-D.jholland-quic-multicast-08"/>.
To our knowledge, these extensions have not been fully implemented and deployed.
Additionally, these solutions suggest to share a QUIC connection between multiple receivers from a specific source, as well as individual connections.
This design requires applications to handle two distinct connections in case of packet losses and multicast failures.</t>
      <t>Flexicast QUIC takes a different approach. Instead of extending QUIC <xref target="QUIC-TRANSPORT"/>,
Flexicast QUIC extends Multipath QUIC <xref target="MULTIPATH-QUIC"/>. Multipath QUIC
already includes several features that are very useful to allow a QUIC
connection to use unicast and multicast simultaneously.</t>
      <t>Flexicast QUIC proposes a simple extension to Multipath QUIC that enables to share an
additional path between multiple receivers. The destination address of
this path can be a multicast IP address and rely on a multicast forwarding
mechanism (e.g., IP Multicast) to transmit the packets.
This document defines the core design of Flexicast QUIC starting from Multipath QUIC.
Side documents will further expand this design to add new features.</t>
      <t>This document is organized as follows. After having specified some conventions
in <xref target="sec-conventions"/>, we provide a brief overview of Flexicast QUIC in
<xref target="sec-flexicast"/>. We describe in more details the Flexicast QUIC handshake
in <xref target="sec-handshake"/> and then the new QUIC frames in <xref target="sec-frames"/>.</t>
    </section>
    <section anchor="sec-conventions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

</section>
    <section anchor="sec-flexicast">
      <name>Flexicast QUIC</name>
      <t>Multipath QUIC was designed to enable the simultaneous utilization of multiple
paths inside one QUIC connection. A Multipath QUIC connection
starts with a regular QUIC handshake, and adds the initial_max_path_id transport parameter
to negotiate the multipath extension. This parameter
specifies the maximum path identifier that an endpoint is willing to maintain
at connection establishment. Multipath QUIC requires the utilization of non-zero
connection identifiers and one packet number
space per path. Multipath QUIC assumes that the additional paths are created
by the client using the server address of the initial path.</t>
      <t>Consider as an example a smartphone that uses Multipath QUIC. This smartphone
has a Wi-Fi and a cellular interface. The smartphone has created the QUIC
connection over the cellular interface. After the handshake, the smartphone
and the server have exchanged additional connection identifiers. To create a
new path over the Wi-Fi interface, the smartphone sends a PATH_CHALLENGE over
this path using one of the connection identifiers advertised by the server.
The server replies with a PATH_RESPONSE using one of the connection
identifiers advertised by the smartphone. The smartphone confirms the establishment
of the second path using a PATH_RESPONSE. At this point that smartphone and the
server have two paths to exchange data: the first over the cellular interface
and the second over the Wi-Fi interface. Each path uses a different sequence number
space, but QUIC packets are encrypted using the same connection keys using a per-path IV construct.
When a QUIC packet needs to be sent, the packet scheduler selects the relevant path.
If a QUIC frame is lost over one path, it can be retransmitted over any other
path.</t>
      <t>Flexicast QUIC extends Multipath QUIC by using different
encryption and decryption keys. As such, multiple clients can share the same additional
path which is encrypted with a different key than their respective unicast path.
The IP destination address of this new, shared path <bcp14>MAY</bcp14> be a multicast address,
so that all receivers attached to this multicast tree receive the same packet.</t>
      <t>The case where the IP destination address is <em>not</em> an IP multicast address is discussed
later in this document. In this case, Flexicast QUIC uses packet replication at the
source, e.g., using sendmmsg, using the unicast destination address of the receivers.
This solution scales at the source because Flexicast QUIC generates and encrypts only one packet,
and duplicating the bytes is straightforward.</t>
      <t>A Flexicast QUIC connection starts with a unicast handshake, similarly to a regular QUIC
connection. Receivers R1, R2 and R3 establish a connection to source S using the
flexicast_support and the initial_max_path_id transport parameters.
The initial path between each receiver and the source are individually secured using
the keys derived at connection establishement. It remains open during the whole
flexicast session and constitute a unicast bidirectional path between the source and
each receiver. This path is used for two very different purposes.
First, it acts as a control channel and enables the source to
exchange control information with each receiver. Second, it can be used to transmit
or retransmit data that cannot be delivered along the multicast tree.</t>
      <t>Most of the data sent over a Flexicast QUIC connection is transmitted along what
we call a multicast flow. A multicast flow is a unidirectional multipath path from a source
to a group of receivers. An important characteristic of a multicast flow is that
all the packets sent by the source over this flow are secured using keys that are
shared between the source and the receivers attached to the multicast flow.</t>
      <t>The source advertises the existence of a multicast flow through the FC_ANNOUNCE frame, which is sent on the unicast path with the receiver.
This frame contains flow-specific information, such as the destination UDP port and IP address used by the source to send the packets, and the Flexicast Flow ID, i.e., the equivalent of the Connection ID for the multicast flow.
When a receiver joins a specific multicast flow, the source additionally sends an FC_KEY frame, which contains the secret required to derive the set of TLS keys used to decrypt packets of the multicast flow.</t>
      <t>Flexicast QUIC supports two types of multicast flows. The first type multicast flow
is an IP multicast tree, as illustrated in <xref target="fig-flexicast-2"/>. The source relies
on an underlying IP multicast network to create an IP multicast tree and selects a set
of encryption and authentication keys.
The FC_ANNOUNCE frame contains the IP address of the multicast group the source uses to send the data to the receivers.
The Flexicast QUIC source uses this multicast flow to efficiently send data to multiple receivers
simultaneously (R1 and R2 in <xref target="fig-flexicast-2"/>).
R1 and R2 use their unicast path, created at connection establishment, to return acknowledgments.
A source can retransmit lost data either on the multicast flow or over a specific unicast path,
e.g. when some data was missing at only one receiver.</t>
      <t>Flexicast QUIC supports non-multicast-capable receivers in two different ways. A first
approach is to use the unicast path to deliver the data to such receivers. This implies
that each data must be authenticated and encrypted using the TLS keys derived over each
unicast path. This is illustrated in <xref target="fig-flexicast-2"/> where receiver R3 lies in
a non-multicast-capable network and relies on unicast delivery.</t>
      <t>This is not efficient when there are multiple receivers.
Flexicast QUIC supports a second type of multicast flow which improves performance when
there are multiple unicast receivers. For these receivers, it is more efficient from the
source viewpoint to encrypt and authenticate a QUIC packet using shared keys and then
send a copy of this packet to all receivers, e.g. using system calls such as sendmmsg.
In this case, the source maintains a multicast flow where it replicates each packet
towards each receiver. It also sends an FC_ANNOUNCE frame to advertise the multicast flow,
using the receiver's IP address as a destination instead of a multicast address.</t>
      <figure anchor="fig-flexicast-2">
        <name>A Flexicast QUIC connection is composed of two types of paths: (1) one bidirectional, unique, unicast path between the source and each receiver and (2) a multicast flow from the source to a set of receivers relying on a multicast distribution tree</name>
        <artwork><![CDATA[
+----------------------------------------+
|   +----------------------------+       |    =======> multicast flow
|   |                            |       |
|   |                            |       |    <------> unicast path
|   v      239.239.23.35:4433    v       |
+-> S ==============+==========> R1      |
    ^               \\                   v
    |                +=================> R2
    |
    +----------------------------> R3
]]></artwork>
      </figure>
      <t>Transitions between sending application data on a multicast flow and a unicast path is seamless thanks to the underlying Multipath QUIC extension.
At any point in time, if the network conditions of a receiver of a multicast flow degrade,
e.g., because the underlying multicast tree fails or because the receiver moves into a
non-multicast network, it can leave the multicast flow and continue receiving content
through its unicast path.</t>
      <t>Flexicast QUIC offers full reliability by retransmitting lost frames either to all receivers
on the multicast flow, or per-receiver using their unicast path.</t>
      <section anchor="extensions-to-multipath-quic">
        <name>Extensions to Multipath QUIC.</name>
        <t>Flexicast QUIC modifies Multipath QUIC in three ways to enable the
utilization of a shared unidirectional path, the multicast flow, as one of the Multipath QUIC paths.
The multicast flow can be transported on top of an IP multicast distribution tree to reach several receivers simultaneously,
which brings several challenges:</t>
        <ol spacing="normal" type="1"><li>
            <t>An IP multicast tree is unidirectional, in contrast with a Multipath QUIC path.</t>
          </li>
          <li>
            <t>An IP multicast tree is identified by a pair &lt;source address, group address&gt;.</t>
          </li>
          <li>
            <t>All the receivers attached to an IP Multicast tree receive the same packet.</t>
          </li>
        </ol>
        <t>Since an IP multicast tree is unidirectional, it is impossible to use the QUIC
path challenge/response mechanism to create the multicast flow along an IP multicast tree.
Flexicast QUIC only uses path challenge/response on unicast paths.
Flexicast QUIC replaces the explicit path challenge/response from Multipath QUIC
to create the multicast flow by an implicit path creation.
Since the destination address of this new "path" is a multicast IP address, it is impossible for
receivers to test its reachability from the source.
An underlying mechanism (e.g., using IGMP) <bcp14>SHOULD</bcp14> provide feedback to the receiver on the
reachability of the multicast flow through the IP multicast address provided by the source.</t>
        <t>Furthermore, the data received over the multicast flow cannot be acknowledged over this path
since it is unidirectional.
Because Flexicast QUIC uses Multipath QUIC, ACK frames are replaced by PATH_ACK frames.
Flexicast QUIC receivers <bcp14>MUST</bcp14> send acknowledgments to the source using PATH_ACK frames
sent on their unicast path.</t>
        <t>In single-source multicast, an IP multicast group is represented by the (S,G) tuple,
respectively denoting the IP address of the multicast source and the multicast group.
To join the multicast flow, the receivers must be informed of the (S,G) tuple of the
underlying IP multicast tree. The server uses the FC_ANNOUNCE frame to
advertise the identifier of the multicast tree that the receivers can join.</t>
        <t>The Flexicast QUIC packets that are sent over the multicast flow are
encrypted and authenticated. However, these packets are not encrypted using
the TLS keys derived during the QUIC connection establishment since they are unique to the receiver. To secure the transmission of Flexicast QUIC
packets along the multicast flow, the source generates an independent set of
security keys and shares them using the FC_KEY frame (see <xref target="fc-key-frame"/>) to all receivers over
the unicast path. Since this frame is sent over the unicast paths, it is authenticated
and encrypted using the TLS keys associated to each unicast path.
The security questions related to the delivery of the TLS key secrets through the FC_KEY frame are discussed in <xref target="sec-security-aspect"/>.</t>
        <t><xref target="sec-packet-protection"/> gives more details on the modifications to <xref target="MULTIPATH-QUIC"/> to
protect packets sent on the multicast flow.</t>
      </section>
    </section>
    <section anchor="sec-handshake">
      <name>Handshake Negotiation and Transport parameter</name>
      <t>Flexicast QUIC defines a new transport parameter, used to negotiate the use of
the flexicast extension during the connection handshake, as specified in <xref target="QUIC-TRANSPORT"/>.
The new transport parameter is defined as follows:</t>
      <ul spacing="normal">
        <li>
          <t>flexicast_support (current version uses 0xedf3): this transport parameter indicates support of the flexicast extension. The transport parameter contains two boolean values, respectively indicating support of IPv4 and IPv6 for multicast addresses. If an endpoint receives the flexicast_support transport parameter with both IPv4 and IPv6 supports set to false (0), it must close the connection with an error type of FC_PROTOCOL_VIOLATION.
The support of the flexicast extension is conditioned to the support of the multipath extension, as defined in <xref target="MULTIPATH-QUIC"/>.
As a result, endpoint wishing to support the Flexicast extension <bcp14>MUST</bcp14> support <xref target="MULTIPATH-QUIC"/>.</t>
        </li>
      </ul>
      <t>An endpoint receiving the flexicast_support transport parameter from its peer, without support for multipath <bcp14>MUST</bcp14> ignore the flexicast_support transport parameter.</t>
      <t>The extension does not change the definition of the transport parameters defined in <xref section="18.2" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
    </section>
    <section anchor="initialisation-of-a-flexicast-flow">
      <name>Initialisation of a Flexicast Flow</name>
      <t>This section details how a Flexicast QUIC source advertises multicast flows and how receivers join them.</t>
      <t><xref target="fig-join-flexicast-flow"/> illustrates how a Flexicast QUIC source and receiver exchange frames on the unicast
path to advertise and join a multicast flow. The handshake uses the transport parameters defined in the previous section.
This handshake creates a QUIC connection between a source and a receiver. The source sends an FC_ANNOUNCE
frame over this connection to advertises the multicast flow, e.g. an IP multicast tree. The receiver
joins the tree and then sends an FC_STATE(JOIN) frame to the source to indicate that it is attached
to the tree. The source sends an FC_KEY frame containing the security keys associated to the
multicast flow. The receiver returns an FC_STATE(LISTEN) frame to indicate that it receives frames
over the multicast flow.</t>
      <figure anchor="fig-join-flexicast-flow">
        <name>Multicast flow announcement and join</name>
        <artwork><![CDATA[
Source (Unicast path)                         Receiver                      Source (multicast flow)

QUIC handshake      <------------>      QUIC handshake

FC_ANNOUNCE         ------------->
                    <-------------      FC_STATE(JOIN)
FC_KEY              ------------->
                    <-------------    FC_STATE(LISTEN)

                                                          <-------------    STREAM
                    <-------------    PATH_ACK
]]></artwork>
      </figure>
      <section anchor="flexicast-flow-announcement">
        <name>Flexicast Flow Announcement</name>
        <t>A Flexicast QUIC source announces a multicast flow using the FC_ANNOUNCE frame (see <xref target="fc-announce-frame"/>).
The initial Connection ID derived during connection establishment between the source and the receiver cannot be reused on the multicast flow since it is unique for each receiver.
On a multicast flow, Flexicast QUIC replaces the concept of Connection ID with the Flexicast Flow ID.
Similarly to the Connection ID from <xref target="MULTIPATH-QUIC"/>, the Flexicast Flow ID uniquely identifies a multicast flow. The Flexicast Flow ID <bcp14>MUST NOT</bcp14> be empty, as of <xref target="MULTIPATH-QUIC"/> specification. Using a Flexicast Flow ID, a multicast flow can change the addressing at lower protocol layers (UDP, IP) without causing packets to be delivered to the wrong endpoint.
In <xref target="QUIC-TRANSPORT"/> and <xref target="MULTIPATH-QUIC"/>, endhosts chose their source Connection IDs and advertise them to their peers using NEW_CONNECTION_ID frames.
In Flexicast QUIC, the source decides the Flexicast Flow ID identifying a multicast flow and sends this value to receivers.</t>
        <t>Through the FC_ANNOUNCE frame, the source advertises the Flexicast Flow ID of the multicast flow to listen to.
The advertised Flexicast Flow ID serves as the Destination Connection ID for packets sent on the multicast flow.
_TBD: how to avoid colission.</t>
        <t>The FC_ANNOUNCE frame also contains the source address, destination address and UDP destination port number of the
multicast flow. If the destination address is an IP multicast address, then the multicast flow uses an IP multicast
tree and the receiver <bcp14>MUST</bcp14> join this tree and listen to the specified UDP port number. If the destination address is the
unicast IP address of the receiver, then the receiver <bcp14>MUST</bcp14> listen to the specified UDP port number on this address.
_TBD: how to avoid colission with an already bound UDP destination port.</t>
        <t>The source <bcp14>MAY</bcp14> advertise multiple distinct multicast flows to a given receiver, i.e., multicast flows with
distinct Flexicast Flow ID.
The source <bcp14>MAY</bcp14> advertise updated information about a specific multicast flow by sending new FC_ANNOUNCE frames with increased sequence numbers.
Upon reception of a new FC_ANNOUNCE frame updating information of an existing multicast flow with a smaller sequence number compared to the last received FC_ANNOUNCE frame, a receiver <bcp14>MUST</bcp14> silently discard the new FC_ANNOUNCE frame.</t>
        <t>The source <bcp14>MAY</bcp14> withdraw a multicast flow by sending a new FC_ANNOUNCE frame, with an increased sequence number, with null source and destination IP addresses.
Upon reception of such frame, receivers <bcp14>MUST</bcp14> stop listening to packets received from the multicast flow.</t>
      </section>
      <section anchor="sec-join-fc-flow">
        <name>Joining a Flexicast Flow</name>
        <t><xref target="fig-join-fsm"/> illustrates the finite-state machine of a receiver from the start of the QUIC connection (Unaware) until it is ready to listen to packets on the multicast flow.
After receiving an FC_ANNOUNCE frame advertising a multicast flow, a receiver <bcp14>MAY</bcp14> decide to join it.
For example, the source can advertise multiple flows disseminating the same video stream in different qualities, letting the receiver choose the appropriate quality.
Due to the scalability benefits from the point of view of the source and the network, it is encouraged that receivers do join the multicast flow.
Multicast flow management is handled with the FC_STATE frame (see <xref target="fc-state-frame"/>).
The receiver sends an FC_STATE frame with the Flexicast Flow ID of the multicast flow it wants to join and the JOIN action.</t>
        <figure anchor="fig-join-fsm">
          <name>Receiver-side finite-state machine for a given multicast flow ID</name>
          <artwork><![CDATA[
.-----------------.
|     Unaware     |<-----------------------------.
.-----------------.                              |
         |                                       |
         | Receives FC_ANNOUNCE frame            |
         v                                       |
.-----------------.                              |
| Aware, unjoined |<---------------------------. |
.-----------------.                            | |
         |                                     | |
         | Sends FC_STATE frame                | |
         | with JOIN action                    | |
         v                                     | |
.-----------------.                            | |
|Joined, needs key|                            | |
.-----------------.                            | |
         |                                     | |
         | Receives FC_KEY frame               | |
         | with master secret                  | |
         v                      Receives/sends | |
.-----------------.             FC_STATE frame | |
|      Joined     |          with LEAVE action | |
.-----------------.                            | |
        |                                      | |
        | Sends FC_STATE frame                 | |
        | with LISTEN action                   | |
        v                                      | |
.-----------------.                            | |
| Ready to listen |----------------------------. |
.-----------------.                              |
        |        Receives a withdraw FC_ANNOUNCE |
        .----------------------------------------.
]]></artwork>
        </figure>
        <t>Upon reception of an FC_STATE frame with the JOIN action, the source sends an FC_KEY frame, containing the TLS master secret that will be used to derive the set of keys necessary for the receiver to decrypt packets
received on the multicast flow.
The frame contains an indication on the current packet number sequence such that the receiver can correctly reconstitute the full packet number when receiving a QUIC packet on the flexicast flow
The receiver <bcp14>SHOULD NOT</bcp14> process packets with a lower packet number, and applications <bcp14>SHOULD</bcp14> transmit through the unicast path any application data required for the receiver to correctly process subsequent packets received on the multicast flow ID.
Starting from the advertised first packet number of interest, the source <bcp14>MUST</bcp14> retransmit on any path any lost reliable frames.</t>
        <t>Once the receiver received the FC_KEY frame and its underlying multicast network is ready to receive packets on the multicast flow, it sends an FC_STATE frame to the source with the LISTEN action.</t>
        <t>The Flexicast QUIC source <bcp14>SHOULD NOT</bcp14> consider the receiver as an active member of the multicast flow before it has received an
FC_STATE with the LISTEN action from the receiver.
This process avoids the unlikely case where the receiver wants to join the multicast flow, but no underlying multicast distribution tree could be constructed toward the receiver (e.g., it lies in a unicast-only network).
By not considering such receiver as an active member of the group, the Flexicast QUIC source avoids considering all sent packets as lost, potentially impacting its congestion state.</t>
      </section>
      <section anchor="underlying-multicast-network">
        <name>Underlying (multicast) network</name>
        <t>If the IP destination address in the FC_ANNOUNCE frame is a multicast IP address, the receiver <bcp14>MUST</bcp14> notify the underlying network of its interest to receive multicast packets to this address. In an IP multicast network, this is done by sending an IGMP/MLD join on (S,G) in the case of single-source multicast.
If the IP destination address in the FC_ANNOUNCE frame is the unicast address of the receiver, it means that the source uses unicast-duplication.
The receiver <bcp14>MAY</bcp14> also wait to receive the FC_KEY frame of the corresponding multicast flow to avoid
receiving packets that it will not be able to process before receiving the required TLS keys.</t>
      </section>
    </section>
    <section anchor="sec-leave">
      <name>Multicast flow membership management</name>
      <t>Thanks to the FC_STATE frame, a Flexicast QUIC source knows the set of receivers listening to
a specific multicast flow. Receivers <bcp14>MAY</bcp14> decide, at any point in time during the communication,
to leave the multicast flow.</t>
      <section anchor="receiver-side-management">
        <name>Receiver-side management</name>
        <t>Receivers leave a multicast flow by sending an FC_STATE frame with the LEAVE action.
Upon reception of this frame, the Flexicast QUIC source <bcp14>MUST</bcp14> remove the receiver
from the members of the multicast flow, and it <bcp14>MAY</bcp14> continue transmitting data through the unicast path
with the receiver; the source <bcp14>MAY</bcp14> also decide to close the connection with the receiver, depending on the application.
The receiver <bcp14>MUST</bcp14> drop any path state for the multicast flow regarding this multicast flow.
The finite-state machine on the receiver-side <bcp14>MUST</bcp14> be reset to the same state as when it received
the FC_ANNOUNCE for the first time.</t>
        <t>A receiver that previously left a multicast flow <bcp14>MAY</bcp14> attempt to join again the same flow, or another flow by
restarting the phases from <xref target="sec-join-fc-flow"/>.</t>
      </section>
      <section anchor="sec-source-side-management">
        <name>Source-side management</name>
        <t>At any point in time, the Flexicast QUIC source <bcp14>MAY</bcp14> decide to unilaterally remove a receiver from a multicast flow, by sending an FC_STATE frame with the LEAVE action.</t>
        <t>There are two reasons to decide on the source-side to remove receivers from the multicast flow:
- A receiver is a bottleneck on the multicast flow, i.e., the bit-rate of the multicast flow becomes too low because of this receiver.
  In that case, the bottleneck receiver is removed from the specific multicast flow. The source can continue distributing the content either through
  the unicast path with this receiver, or by letting the receiver join another multicast flow.
- A receiver experiences too many losses. Receivers send feedback to the source. Too many losses degrade the quality of experience for the application.
  To recover from such losses, there is a need for retransmissions, which can take up to several RTTs. The source <bcp14>SHOULD</bcp14> decide to remove the receiver from the
  multicast flow and continue receiving data through unicast, even temporarilly. A reason why it would be better to continue through the unicast path
  is that the underlying IP multicast tree may be failing.</t>
      </section>
    </section>
    <section anchor="reliability">
      <name>Reliability</name>
      <t>The reliability mechanism of Flexicast QUIC uses the standard QUIC mechanisms.
This section only details the reliability mechanisms for frames sent on the multicast flow.
This document does not modify the reliability mechanism defined in <xref target="RFC9002"/> for packets sent on the unicast path.</t>
      <t>Receivers regularly send PATH_ACK frames back to the source on their unicast path. Receivers <bcp14>MUST</bcp14> send PATH_ACK frames for packets received on the multicast flow on their unicast path with the source.
A Flexicast QUIC source receiving an PATH_ACK from a receiver on the multicast flow <bcp14>MUST</bcp14> close the connection with this receiver with an error of type FC_PROTOCOL_VIOLATION.
The PATH_ACK frames sent by the receivers on their unicast path include the <tt>path_id</tt> field to refer to the multicast flow.</t>
      <t>A major change between <xref target="RFC9002"/>, and to some extent <xref target="MULTIPATH-QUIC"/> is that a Flexicast QUIC source receives
acknowledgments from multiple receivers for the same data.
A Flexicast QUIC source must wait for the acknowledgment from all receivers listening to the multicast flow before releasing state for the transmitted data.
An acknowledgment-aggregation mechanism <bcp14>MUST</bcp14> be implemented, at least on the Flexicast QUIC source, to advance its state when all members of the multicast flow sent PATH_ACK frames to acknowledge data sent on the multicast flow.</t>
      <t>Bottleneck or malicious receivers may slow down, and even block the transmission of data, thus impacting the quality of service for other receivers.
Similarly to <xref target="RFC9002"/>, a Flexicast QUIC source may decide to stop the communication with a specific receiver if it does
not regularly receive PATH_ACK frames from this receiver.
A Flexicast QUIC source <bcp14>SHOULD</bcp14> remove bottleneck-inducing or malicious receivers from the multicast flow in that case, and <bcp14>MAY</bcp14> continue transmitting data through the unicast path with these receivers instead, thus relying on <xref target="RFC9002"/>.</t>
      <t>The Flexicast QUIC source is responsible to decide whether to send retransmitted frames on the multicast flow to all receivers, or specifically to receivers individually on their unicast path.
Receivers are not impacted by this choice since the <xref target="MULTIPATH-QUIC"/> specification allows to retransmit frames on another path than the initial path on which they were sent.
The first case would be more efficient if multiple receivers lost the same packet; the second case is more interesting for isolated losses to avoid healthy receivers receiving duplicate frames.</t>
    </section>
    <section anchor="congestion-control">
      <name>Congestion Control</name>
      <t>There are currently several possibilities regarding congestion control for Flexicast QUIC.
A first idea is to maintain constant bit-rate delivery and exposing multiple multicast flows operating at different bit-rates.
As such, if a receiver sees degradation in its communication (e.g., congestion or increased delay in the network), it may switch to a lower bit-rate multicast flow. However, this idea does not solve the problem of increasing the congestion in the network.</t>
      <t>The other idea outlines the possibility to take into account all receiver-specific bit-rate to chose the overall bit-rate on the multicast flow, e.g., by requiring that the multicast flow bit-rate is the lowest bit-rate among all receivers listening to this multicast flow.
Since receivers regularly send PATH_ACK frames, it is possible for the source to adjust a per-receiver bit-rate (or congestion window) and use the minimum value as the value for the multicast flow.
Of course, such method paves the way to malicious receivers decreasing on-purpose the multicast flow bit-rate. Applications <bcp14>SHOULD</bcp14> provide to a Flexicast QUIC source a "minimum bit-rate" to ensure a minimum quality of service for the receivers.
Malicious or bottleneck receivers with a per-receiver bit-rate below this minimum bit-rate <bcp14>SHOULD</bcp14> be removed from the multicast flow membership.
Since the Flexicast QUIC source can unilaterally evict such receivers, it can adjust the multicast flow bit-rate without considering these receivers.</t>
      <t>A mix of both approaches is also possible. A Flexicast QUIC source may expose multiple multicast flow, each operating at different bit-rate windows. For example, a first window would operate at a minimum bit-rate of 2 Mbps and a maximum bit-rate of 5 Mbps; another multicast flow would operate between 5 Mbps and 10 Mbps,...
Receivers falling below the 2 Mbps bit-rate <bcp14>SHOULD</bcp14> be evicted from flexicast delivery; a Flexicast QUIC source <bcp14>MAY</bcp14> decide to continue the delivery through the unicast path.</t>
    </section>
    <section anchor="flow-control">
      <name>Flow Control</name>
      <t>Similarly to the congestion control, an aggregated flow control mechanism extends the standard QUIC flow control mechanism from <xref target="QUIC-TRANSPORT"/>.
The multicast flow <bcp14>MUST</bcp14> respect the flow control limits of active members.
Receivers actively listening to the multicast flow <bcp14>MUST</bcp14> send MAX_DATA and MAX_STREAM_DATA on their unicast path, similarly to <xref target="QUIC-TRANSPORT"/>.
The multicast flow aggregates all flow control limits from active members and <bcp14>MUST</bcp14> set its limits to the minimum among all limits from the receivers.</t>
      <t>To ensure that the flow control does not violates any limit, the flow control <bcp14>MAY</bcp14> use values from different active receivers to update its flow control limits.
For example with three receivers <tt>R0</tt>, <tt>R1</tt>, and <tt>R2</tt>, the multicast flow may update its max data using the value advertised by <tt>R0</tt>, its max stream data for stream id X using the value advertised by <tt>R1</tt>, and its max stream data for stream id Y using the value advertised by <tt>R2</tt>.</t>
      <t>The source <bcp14>MAY</bcp14> remove bottleneck receivers from the set of active members if such receivers fail to update their flow control to ensure a minimum quality of service.
In that case, the source <bcp14>MAY</bcp14> continue transmiting data to these receivers on their unicast path, again as a fall-back on unicast QUIC as defined in <xref target="QUIC-TRANSPORT"/>.</t>
      <t>Because the flow control limits are shared between multiple paths within the same connection, a receiver which previously fall backed on unicast delivery <bcp14>MAY</bcp14> rejoin a multicast flow if its flow control limits have been updated.</t>
    </section>
    <section anchor="sec-packet-protection">
      <name>Packet protection</name>
      <t>Packet protection for QUIC version 1 is specified in <xref section="5" sectionFormat="of" target="QUIC-TLS"/>.
<xref section="4" sectionFormat="of" target="MULTIPATH-QUIC"/> further expands this design when multiple paths with different packet number spaces are used.
Because the multicast flow is shared among multiple receivers, this document modifies the design from <xref section="4" sectionFormat="of" target="MULTIPATH-QUIC"/>.</t>
      <section anchor="protection-keys">
        <name>Protection Keys</name>
        <t>This document extends the design from <xref target="MULTIPATH-QUIC"/> by requiring that all multicast flows use different TLS protection keys. Of course, these protections keys <bcp14>MUST</bcp14> be different from the protection keys derived during the handshake between the source and any receiver.</t>
        <t>For each multicast flow, the Flexicast QUIC source derives new random TLS keys that will be used to encrypt and decrypt the packets.
The Flexicast QUIC source <bcp14>MUST</bcp14> derive these keys randomly, simulating a QUIC connection establishment alone.
The master secret and used algorithm is sent through the FC_KEY frame (<xref target="fc-key-frame"/>) on the unicast path to receivers joining a multicast flow. The master secret and algorithm are used to derive the TLS decryption keys on the receivers.</t>
        <t>Since no explicit path probing phase is used in Flexicast QUIC, the receiver can use the dedicated protection key context whenever receiving a packet from the multicast flow directly after receiving the FC_KEY frame from the source.</t>
      </section>
      <section anchor="nonce-calculation">
        <name>Nonce Calculation</name>
        <t><xref section="4" sectionFormat="of" target="MULTIPATH-QUIC"/> expands the computation of the Nonce from <xref section="5.3" sectionFormat="of" target="QUIC-TLS"/> to integrate the least significant 32 bits of the Path ID to guarantee its uniqueness.
A multicast flow is shared among multiple receivers simultaneously, thus requiring that all receivers share the same Path ID for the same multicast flow. Since receivers are allowed to dynamically change the multicast flows they listen, it is impossible to ensure that all receivers use the same Path ID for the same multicast flow.</t>
        <t>However, since each multicast flow uses its own set of TLS keys, the computation of the Nonce is decorelated between any pair of multicast flows, and between any multicast flow and any unicast path with a receiver. It is therefore not mandatory anymore to use the Path ID to ensure the uniqueness of the Nonce.
As such, this document removes the Path ID from the computation of the Nounce when sending packets on the multicast flows.</t>
      </section>
      <section anchor="key-update">
        <name>Key Update</name>
        <t>TODO in a future version of the draft.</t>
      </section>
    </section>
    <section anchor="sec-frames">
      <name>New Frames</name>
      <t>All frames defined in this document <bcp14>MUST</bcp14> only be sent in 1-RTT packets.</t>
      <t>If an endpoint receives a flexicast-specific frame in a different packet type, it <bcp14>MUST</bcp14> close the connection with an error of type FRAME_ENCODING_ERROR.</t>
      <t>Receipt of flexicast-specific frames related to a Flexicast Flow ID that is not unknown by endpoint <bcp14>MUST</bcp14> be treated as a connection error of type FC_PROTOCOL_VIOLATION.</t>
      <t>If an endpoint receives a flexicast-specific frame with a Flexicast Flow ID that it cannot process anymore (e.g., the multicast flow might have been abandoned), it <bcp14>MUST</bcp14> silently ignore the frame.</t>
      <t>The new frames introduced below are for control-specific purpose only, and <bcp14>MUST NOT</bcp14> be sent on the Multicast flow. Receipt of any of the following frames on the Multicast flow <bcp14>MUST</bcp14> be trated as a connection error of type FC_PROTOCOL_VIOLATION.</t>
      <section anchor="fc-announce-frame">
        <name>FC_ANNOUNCE frame</name>
        <t>The FC_ANNOUNCE frame informs the receiver that a Multicast flow is available or has been updated.
FC_ANNOUNCE frames <bcp14>MUST NOT</bcp14> be sent by the receiver. A Flexicast QUIC source receiving an FC_ANNOUNCE frame <bcp14>MUST</bcp14> close the connection with a connection error of type FC_PROTOCOL_VIOLATION.</t>
        <t>FC_ANNOUNCE frames are formatted as shown in <xref target="fig-fc-announce-frame-format"/>.</t>
        <figure anchor="fig-fc-announce-frame-format">
          <name>FC_ANNOUNCE Frame Format</name>
          <artwork><![CDATA[
FC_ANNOUNCE Frame {
    Type (i) = TBD-00,
    Length (8),
    Flexicast Flow ID (8..160),
    Sequence number (i),
    IP Version (8),
    Source IP (32, 128),
    Group IP (32, 128),
    UDP Port (16),
    Ack delay timer (64),
}
]]></artwork>
        </figure>
        <t>FC_ANNOUNCE frames contain the following fields:</t>
        <t>Length: An 8-bit unsigned integer containing the length of the Flexicast Flow ID. Values less than 1 and greater than 20 are invalid and <bcp14>MUST</bcp14> be treated as a connection error of type FRAME_ENCODING_ERROR.</t>
        <t>Flexicast Flow ID: A Flexicast Flow ID of the specified length.</t>
        <t>Sequence number: A variable-length integer indicating the sequence of the frame. The number is monotonically increasing within a QUIC connection and is chosen by the sender. It helps the receiver to order FC_ANNOUNCE frames by recency. A receiver <bcp14>SHOULD</bcp14> ignore frames with a Sequence Number lower or equal to the highest Sequence Number received.</t>
        <t>IP Version: An 8-bit unsigned integer containing the version of IP used to advertise the Source IP and Group IP. Values different than 4 (for IPv4) and 6 (IPv6) are invalid and <bcp14>MUST</bcp14> be treated as a connection error of type FRAME_ENCODING_ERROR.</t>
        <t>Source IP: The IP address of the multicast source, used for Single-Source Multicast.</t>
        <t>Group IP: Either an IP multicast address or the address of the receiver.</t>
        <t>UDP Port: The UDP destination port.</t>
        <t>Ack delay timer: A 64-bit unsigned integer containing the delay, in ms, between two acknowledgments from a receiver.</t>
        <t>FC_ANNOUNCE frames are ack-eliciting. If a packet containing an FC_ANNOUNCE frame is considered lost, the peer <bcp14>SHOULD</bcp14> repeat it.</t>
        <t>Sources are allowed to send multiple times FC_ANNOUNCE frames with an increasing sequence number for the same Flexicast Flow ID. New FC_ANNOUNCE frames <bcp14>MAY</bcp14> contain updated information, e.g., a new Ack delay timer.</t>
        <t>Sources are allowed to advertise multiple Multicast flows by sending multiple parallel FC_ANNOUNCE frames with distinct Flexicast Flow IDs. The Sequence number is linked to a specific Flexicast Flow ID. The same Sequence number can be used for two distinct Flexicast Flow IDs.</t>
        <t>A Flexicast QUIC can withdraw a multicast flow by sending an FC_ANNOUNCE frame with null Source IP and Group IPs and identifying the multicast flow using the Flexicast Flow ID.
Upon reception of a new FC_ANNOUNCE frame updating information of an existing multicast flow with an increased sequence number compared to the last received FC_ANNOUNCE frame, a receiver <bcp14>MUST</bcp14> update multicast flow information.</t>
      </section>
      <section anchor="fc-state-frame">
        <name>FC_STATE frame</name>
        <t>The FC_STATE frame informs the endpoint of the state of the Flexicast receiver in the Multicast flow.
FC_STATE frames <bcp14>MAY</bcp14> be sent by both endpoints (i.e., receiver and source).</t>
        <t>FC_STATE frames are formatted as shown in <xref target="fig-fc-state-frame-format"/>.</t>
        <figure anchor="fig-fc-state-frame-format">
          <name>FC_STATE Frame Format</name>
          <artwork><![CDATA[
FC_STATE frame {
    Type (i) = TDB-01,
    Length (8),
    Flexicast Flow ID (8..160),
    Sequence number (i),
    Action (u64),
}
]]></artwork>
        </figure>
        <t>FC_STATE frames contain the following fields:</t>
        <t>Length: An 8-bit unsigned integer containing the length of the Flexicast Flow ID. Values less than 1 and greater than 20 are invalid and <bcp14>MUST</bcp14> be treated as a connection error of type FRAME_ENCODING_ERROR.</t>
        <t>Flexicast Flow ID: The Flexicast Flow ID of the Multicast flow that this frame relates to.</t>
        <t>Sequence number: The monotically increasing sequence number related to the advertised Flexicast Flow ID.</t>
        <t>Action: The bit-encoded action, defined in Section <xref target="fc-state-action"/>.</t>
        <t>FC_STATE frames are ack-eliciting. If a packet containing an FC_STATE frame is considered lost, the peer <bcp14>SHOULD</bcp14> repeat it.</t>
        <t>For a given Multicast flow (i.e., identical Flexicast Flow ID), both endpoints use their own Sequence number.</t>
        <t>A receiver sending an FC_STATE frame informs the source of its status regarding the Multicast flow indicated by the Flexicast Flow ID.
The source <bcp14>MAY</bcp14> also send FC_STATE frames to a receiver to unilaterally change the status of the receiver within the Multicast flow indicated by the Flexicast Flow ID.</t>
        <section anchor="fc-state-action">
          <name>FC_STATE actions</name>
          <t>This section lists the defined Actions encoded in an FC_STATE frame. An endpoint receiving an unknown value <bcp14>MUST</bcp14> treat it as a connection error of type FC_PROTOCOL_VIOLATION.</t>
          <t>JOIN (0x01): The receiver joins the Multicast flow.</t>
          <t>LEAVE (0x02): The receiver leaves the Multicast flow.</t>
          <t>READY (0x03): The receiver is ready to receive content on the Multicast flow.</t>
          <t>The JOIN and READY actions are receiver-specific. These actions <bcp14>MUST NOT</bcp14> be sent inside an FC_STATE frame sent by the source. A receiver receiving an FC_STATE frame with any of the following actions <bcp14>MUST</bcp14> treat it as a connection error of type FC_PROTOCOL_VIOLATION.
The action LEAVE <bcp14>MAY</bcp14> be sent by both the receiver and the source, as detailed in <xref target="sec-leave"/>.</t>
        </section>
      </section>
      <section anchor="fc-key-frame">
        <name>FC_KEY frame</name>
        <t>The FC_KEY frame informs a receiver of the security keys used on a Multicast flow joined by the receiver.
FC_KEY frames <bcp14>MUST NOT</bcp14> be sent by the receiver. A Flexicast QUIC source receiving an FC_KEY frame <bcp14>MUST</bcp14> close the connection with a connection error of type FC_PROTOCOL_VIOLATION.</t>
        <t>FC_KEY frames are formatted as shown in <xref target="fig-fc-key-frame-format"/>.</t>
        <figure anchor="fig-fc-key-frame-format">
          <name>FC_KEY Frame Format</name>
          <artwork><![CDATA[
FC_KEY Frame {
    Type (i) = TDB-02,
    Length(8),
    Flexicast Flow ID(8..160),
    Sequence number (i),
    Packet number (i),
    Key length (i),
    Key (..),
    Algorithm (64),
}
]]></artwork>
        </figure>
        <t>FC_KEY frames contain the following fields:</t>
        <t>Length: An 8-bit unsigned integer containing the length of the Flexicast Flow ID. Values less than 1 and greater than 20 are invalid and <bcp14>MUST</bcp14> be treated as a connection error of type FRAME_ENCODING_ERROR.</t>
        <t>Flexicast Flow ID: The Flexicast Flow ID of the Multicast flow that this frame relates to.</t>
        <t>Sequence number: The monotically increasing sequence number related to the advertised Flexicast Flow ID.</t>
        <t>Packet number: The first packet number that the receiver must receive with this key,</t>
        <t>Key length: A var-int indicating the length of the security key.</t>
        <t>Key: Byte-sequence of the decryption key of the Multicast flow.</t>
        <t>Algorithm: The bit-encoded algorithm used for decryption, defined in Section <xref target="fc-key-algorithm"/>.</t>
        <t>FC_KEY frames are ack-eliciting. If a packet containing an FC_STATE frame is considered lost, the peer <bcp14>SHOULD</bcp14> repeat it.</t>
        <t>The source <bcp14>MAY</bcp14> send new FC_KEY frames with an increased sequence number to notify a new decryption key.
This mechanism can be used to provide backward and forward secrecy with dynamic Flexicast groups.</t>
        <section anchor="fc-key-algorithm">
          <name>FC_KEY algorithms</name>
          <t>The algorithms and their encoding follow <xref target="RFC8446"/> and {QUIC-TLS}.
TODO: expand this section.</t>
        </section>
      </section>
    </section>
    <section anchor="sec-further">
      <name>Discussion</name>
      <t>This document has defined a simple extension to Multipath QUIC that enables a
QUIC connection to simulatenously use unicast paths and multicast trees
to deliver the same data to a set of receivers. The proposed protocol can be extended
in different ways and improvements will be proposed in separate documents. We
briefly describe some of these possible extensions.</t>
      <t>This version of Flexicast QUIC uses the existing QUIC mechanisms to retransmit
lost frames. It is well known that Forward Erasure Correction can improve the
performance of multicast transmission when losses occur. Several authors have
proposed techniques to add Forward Erasure Correction to QUIC <xref target="QUIRL"/>, <xref target="rQUIC"/>,
<xref target="I-D.draft-michel-quic-fec"/>. FEC can be sent a priori to enable receivers
to recover from different packet losses without having to wait for retransmissions or
a posteriori by sending a repair symbol that enables different receivers to recover
different lost frames.</t>
      <t>This version of Flexicast QUIC uses a key shared between the source and all receivers
to authenticate and encrypt the data sent by the source over the multicast tree.
A malicious receiver who has received the shared key could inject fake data over
the multicast tree provided that it can spoof the IP address of the source. Techniques
have been proposed to authenticate the frames sent by the source <xref target="I-D.draft-krose-multicast-security"/>.
Subsequent documents will detail how Flexicast QUIC can be extended to support such
techniques.</t>
      <t>Multipath QUIC assumes that the congestion control mechanism operates per path. For
Flexicast QUIC, a different congestion control mechanism will be required for the
unicast paths and the multicast tree. For the former, the QUIC congestion control
mechanisms <xref target="RFC9002"/> are applicable. For the latter, multicast specific congestion
control mechanisms such as <xref target="RFC4654"/> will be required. The current prototype
uses a variant of the CUBIC congestion control.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This section highlights security considerations when operating a Flexicast QUIC communication between a single source and multiple receivers. Since a unique multicast flow is shared among multiple receivers, additional threats must be addresses compared to a one-to-one (Multipath) QUIC connection. The security considerations when falling-back on unicast are similar to <xref section="10" sectionFormat="of" target="MULTIPATH-QUIC"/>.</t>
      <t>TODO: this section will be expanded in future versions of this document.</t>
      <section anchor="sec-security-aspect">
        <name>Sending the TLS key secrets in FC_KEY frames</name>
        <t>TODO: discuss here the potential issues by sending the TLS key secrets in the FC_KEY frames.
I don't think there is any problem since the secrets are sent through a secure channel.</t>
      </section>
      <section anchor="malicious-receivers-in-a-flexicast-flow">
        <name>Malicious Receivers in a Flexicast Flow</name>
        <t>Malicious receivers may listen to a multicast flow in the presence of healthy receivers. This has several impacts that are addressed in this section.</t>
        <section anchor="cycling-between-joins-and-leaves">
          <name>Cycling Between Joins and Leaves</name>
          <t>A malicious receiver may issuing cycles of FC_STATE with JOINs and LEAVEs actions to the source, thus updating the state of the Flexicast QUIC source.
Since a Flexicast QUIC source can decide to unilaterally remove receivers from a multicast flow, the source can decide to reject FC_STATE JOINs from a malicious receiver. The source <bcp14>MAY</bcp14> send an FC_STATE frame withdrawing a multicast flow specifically for this receiver to avoid the receiver from perpetually sending FC_STATE JOINs frames.
Additionally, applications <bcp14>SHOULD</bcp14> provide a mechanism to avoid such receivers to periodically join and leave
the same multicast flow to saturate the Flexicast QUIC source.
The connection with such malicious receiver will fall-back on unicast delivery, thus relying on <xref target="QUIC-TRANSPORT"/> to deal with it.</t>
        </section>
        <section anchor="intentionally-decreasing-the-flexicast-flow-performance">
          <name>Intentionally Decreasing the Flexicast Flow Performance</name>
          <t><xref target="sec-source-side-management"/> mentions two reasons that could include malicious receivers wishing to degrade the overall perfomance of communication through the multicast flow.
By letting the source unilaterally decide to remove receivers from a multicast flow, the impact of malicious receivers is limited.</t>
        </section>
      </section>
    </section>
    <section anchor="sec-iana">
      <name>IANA Considerations</name>
      <t>IANA is requested to assign three new QUIC frame types from the
"QUIC Frame Types" registry available at
https://www.iana.org/assignments/quic/quic.xhtml#quic-frame-types</t>
      <ul spacing="normal">
        <li>
          <t>TBD-00 for the FC_ANNOUNCE frame defined in <xref target="fc-announce-frame"/></t>
        </li>
        <li>
          <t>TBD-01 for the FC_STATE frame defined in <xref target="fc-state-frame"/></t>
        </li>
        <li>
          <t>TBD-02 for the FC_KEY frame defined in <xref target="fc-key-frame"/></t>
        </li>
      </ul>
      <t>IANA is requested to assign a new QUIC transport parameter
from the "QUIC Transport Parameters" registry available at
https://www.iana.org/assignments/quic/quic.xhtml#quic-transport</t>
      <ul spacing="normal">
        <li>
          <t>TBD-03 for the flexicast_support transport parameter defined in <xref target="sec-handshake"/></t>
        </li>
      </ul>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <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="QUIC-TRANSPORT">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol. QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances. Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="QUIC-TLS">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="MULTIPATH-QUIC">
          <front>
            <title>Managing multiple paths for a QUIC connection</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 WELRI</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="20" month="February" year="2026"/>
            <abstract>
              <t>   This document specifies a multipath extension for the QUIC protocol
   to enable the simultaneous usage of multiple paths for a single
   connection.  It introduces explicit path identifiers to create,
   delete, and manage multiple paths.  This document does not specify
   address discovery or management, nor how applications using QUIC
   schedule traffic over multiple paths.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-multipath-20"/>
        </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="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.jholland-quic-multicast-08">
          <front>
            <title>Multicast Extension for QUIC</title>
            <author fullname="Jake Holland" initials="J." surname="Holland">
              <organization>Akamai Technologies, Inc.</organization>
            </author>
            <author fullname="Lucas Pardue" initials="L." surname="Pardue">
         </author>
            <author fullname="Max Franke" initials="M." surname="Franke">
              <organization>TU Berlin</organization>
            </author>
            <author fullname="Kyle Rose" initials="K." surname="Rose">
              <organization>Akamai Technologies, Inc.</organization>
            </author>
            <date day="2" month="January" year="2026"/>
            <abstract>
              <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>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-jholland-quic-multicast-08"/>
        </reference>
        <reference anchor="I-D.pardue-quic-http-mcast">
          <front>
            <title>Hypertext Transfer Protocol (HTTP) over multicast QUIC</title>
            <author fullname="Lucas Pardue" initials="L." surname="Pardue">
         </author>
            <author fullname="Richard Bradbury" initials="R." surname="Bradbury">
              <organization>BBC Research &amp; Development</organization>
            </author>
            <author fullname="Sam Hurst" initials="S." surname="Hurst">
              <organization>BBC Research &amp; Development</organization>
            </author>
            <date day="4" month="July" year="2022"/>
            <abstract>
              <t>   This document specifies a profile of the QUIC protocol and the HTTP/3
   mapping that facilitates the transfer of HTTP resources over
   multicast IP using the QUIC transport as its framing and
   packetisation layer.  Compatibility with the QUIC protocol's syntax
   and semantics is maintained as far as practical and additional
   features are specified where this is not possible.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-pardue-quic-http-mcast-11"/>
        </reference>
        <reference anchor="RFC1112">
          <front>
            <title>Host extensions for IP multicasting</title>
            <author fullname="S.E. Deering" initials="S.E." surname="Deering"/>
            <date month="August" year="1989"/>
            <abstract>
              <t>This memo specifies the extensions required of a host implementation of the Internet Protocol (IP) to support multicasting. Recommended procedure for IP multicasting in the Internet. This RFC obsoletes RFCs 998 and 1054. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="5"/>
          <seriesInfo name="RFC" value="1112"/>
          <seriesInfo name="DOI" value="10.17487/RFC1112"/>
        </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="RFC9293">
          <front>
            <title>Transmission Control Protocol (TCP)</title>
            <author fullname="W. Eddy" initials="W." role="editor" surname="Eddy"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document specifies the Transmission Control Protocol (TCP). TCP is an important transport-layer protocol in the Internet protocol stack, and it has continuously evolved over decades of use and growth of the Internet. Over this time, a number of changes have been made to TCP as it was specified in RFC 793, though these have only been documented in a piecemeal fashion. This document collects and brings those changes together with the protocol specification from RFC 793. This document obsoletes RFC 793, as well as RFCs 879, 2873, 6093, 6429, 6528, and 6691 that updated parts of RFC 793. It updates RFCs 1011 and 1122, and it should be considered as a replacement for the portions of those documents dealing with TCP requirements. It also updates RFC 5961 by adding a small clarification in reset handling while in the SYN-RECEIVED state. The TCP header control bits from RFC 793 have also been updated based on RFC 3168.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="7"/>
          <seriesInfo name="RFC" value="9293"/>
          <seriesInfo name="DOI" value="10.17487/RFC9293"/>
        </reference>
        <reference anchor="DIOT">
          <front>
            <title>Deployment issues for the IP multicast service and architecture</title>
            <author fullname="C. Diot" initials="C." surname="Diot">
              <organization/>
            </author>
            <author fullname="B.N. Levine" initials="B." surname="Levine">
              <organization/>
            </author>
            <author fullname="B. Lyles" initials="B." surname="Lyles">
              <organization/>
            </author>
            <author fullname="H. Kassem" initials="H." surname="Kassem">
              <organization/>
            </author>
            <author fullname="D. Balensiefen" initials="D." surname="Balensiefen">
              <organization/>
            </author>
            <date year="2000"/>
          </front>
          <seriesInfo name="IEEE Network" value="vol. 14, no. 1, pp. 78-88"/>
          <seriesInfo name="DOI" value="10.1109/65.819174"/>
          <refcontent>Institute of Electrical and Electronics Engineers (IEEE)</refcontent>
        </reference>
        <reference anchor="I-D.draft-michel-quic-fec">
          <front>
            <title>Forward Erasure Correction for QUIC loss recovery</title>
            <author fullname="François Michel" initials="F." surname="Michel">
              <organization>UCLouvain</organization>
            </author>
            <author fullname="Olivier Bonaventure" initials="O." surname="Bonaventure">
              <organization>UCLouvain, WEL RI</organization>
            </author>
            <date day="23" month="October" year="2023"/>
            <abstract>
              <t>   This documents lays down the QUIC protocol design considerations
   needed for QUIC to apply Forward Erasure Correction on the data sent
   through the network.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-michel-quic-fec-01"/>
        </reference>
        <reference anchor="QUIRL">
          <front>
            <title>QUIRL: Flexible QUIC Loss Recovery for Low Latency Applications</title>
            <author fullname="François Michel" initials="F." surname="Michel">
              <organization>UCLouvain, Ottignies-Louvain-la-Neuve, Belgium</organization>
            </author>
            <author fullname="Olivier Bonaventure" initials="O." surname="Bonaventure">
              <organization>WelRI, UCLouvain, Ottignies-Louvain-la-Neuve, Belgium</organization>
            </author>
            <date month="December" year="2024"/>
          </front>
          <seriesInfo name="IEEE/ACM Transactions on Networking" value="vol. 32, no. 6, pp. 5204-5215"/>
          <seriesInfo name="DOI" value="10.1109/tnet.2024.3453759"/>
          <refcontent>Institute of Electrical and Electronics Engineers (IEEE)</refcontent>
        </reference>
        <reference anchor="rQUIC">
          <front>
            <title>rQUIC: Integrating FEC with QUIC for Robust Wireless Communications</title>
            <author fullname="Pablo Garrido" initials="P." surname="Garrido">
              <organization/>
            </author>
            <author fullname="Isabel Sanchez" initials="I." surname="Sanchez">
              <organization/>
            </author>
            <author fullname="Simone Ferlin" initials="S." surname="Ferlin">
              <organization/>
            </author>
            <author fullname="Ramon Aguero" initials="R." surname="Aguero">
              <organization/>
            </author>
            <author fullname="Ozgu Alay" initials="O." surname="Alay">
              <organization/>
            </author>
            <date month="December" year="2019"/>
          </front>
          <seriesInfo name="2019 IEEE Global Communications Conference" value="(GLOBECOM)"/>
          <seriesInfo name="DOI" value="10.1109/globecom38437.2019.9013401"/>
          <refcontent>IEEE</refcontent>
        </reference>
        <reference anchor="FCQUIC" target="https://dial.uclouvain.be/pr/boreal/object/boreal:301111">
          <front>
            <title>AAA</title>
            <author initials="L." surname="Navarre" fullname="Louis Navarre">
              <organization/>
            </author>
            <date year="2025" month="March"/>
          </front>
          <refcontent>ACM SIGCOMM Computer Communication Review (CCR)</refcontent>
        </reference>
        <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="Max Franke" initials="M." surname="Franke">
              <organization>TU Berlin</organization>
            </author>
            <author fullname="Jake Holland" initials="J." surname="Holland">
              <organization>Akamai Technologies, Inc.</organization>
            </author>
            <date day="7" month="May" year="2025"/>
            <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-07"/>
        </reference>
        <reference anchor="RFC4654">
          <front>
            <title>TCP-Friendly Multicast Congestion Control (TFMCC): Protocol Specification</title>
            <author fullname="J. Widmer" initials="J." surname="Widmer"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <date month="August" year="2006"/>
            <abstract>
              <t>This document specifies TCP-Friendly Multicast Congestion Control (TFMCC). TFMCC is a congestion control mechanism for multicast transmissions in a best-effort Internet environment. It is a single-rate congestion control scheme, where the sending rate is adapted to the receiver experiencing the worst network conditions. TFMCC is reasonably fair when competing for bandwidth with TCP flows and has a relatively low variation of throughput over time, making it suitable for applications where a relatively smooth sending rate is of importance, such as streaming media. This memo defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4654"/>
          <seriesInfo name="DOI" value="10.17487/RFC4654"/>
        </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>
      </references>
    </references>
    <?line 800?>

<section anchor="existing-implementation-and-initial-results">
      <name>Existing implementation and initial results.</name>
      <t>The design of Flexicast QUIC is presented in a scientific paper, accepted at ACM SIGCOMM Computer Communication Review (CCR) <xref target="FCQUIC"/>.
We provide a proof of concept implementation of Flexicast QUIC, relying on Cloudflare quiche and the multipath extension.
The source code of Flexicast QUIC is freely available for experimentations at https://github.com/IPNetworkingLab/flexicast-quic.</t>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Louis Navarre was partially funded as an F.R.S-FNRS Research Fellow.
This work has been partially supported by the Walloon Region as part of the funding of the FRFS-WEL-T strategic axis.</t>
      <t>We thank Maxime Piraux and Gorry Fairhurst for their valuable reviews.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
