<?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.6.26 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-shi-quic-structured-connection-id-00" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.16.0 -->
  <front>
    <title abbrev="Structured Connection ID">Structured Connection ID Carrying Metadata</title>
    <seriesInfo name="Internet-Draft" value="draft-shi-quic-structured-connection-id-00"/>
    <author initials="H." surname="Shi" fullname="Hang Shi">
      <organization>Huawei Technologies</organization>
      <address>
        <postal>
          <country>China</country>
        </postal>
        <email>shihang9@huawei.com</email>
      </address>
    </author>
    <date year="2023" month="March" day="13"/>
    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document describes a mechanism to carry the metadata in the QUIC connection ID so that the intermediary can perform optimization.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Nowadays, the media application are usually able to dynamically adjust the size and quality of the stream to adapt to the fluctuating network conditions. However, for the high throughput and low latency media traffic, adaptation only by the endpoint is not good enough, especially when the network condition is challenging, such as the wireless networks discussed in <xref target="I-D.kaippallimalil-tsvwg-media-hdr-wireless"/> and <xref target="I-D.defoy-moq-relay-network-handling"/>. To this end, it is desirable to have the intermediary performing optimization for the endpoint. For example, low priority packets can be dropped to save the resource when network is congested.</t>
      <t>One example of such an intermediary is the relay in the Media over QUIC working group. To quote the charter from the MoQ working group. "Media over QUIC (moq) will develop a simple low-latency media delivery solution for ingest and distribution of media. This solution addresses use cases including live streaming, gaming, and media conferencing and will scale efficiently." "Even when media content is end-to-end encrypted, the relays can access metadata needed for caching (such as timestamp), making media forwarding decisions (such as drop or delay under congestion), and so on."</t>
      <t>Due to the end-to-end encryption of the QUIC, the intermediary does not have the necessary metadata to perform optimization. Similar problem exists when the media is encrypted and transferred using SRTP <xref target="RFC3711"/>. To solve the problem, <xref target="I-D.ietf-avtext-framemarking"/> defines an extension of the RTP header containing the video frame information. This document defines an extension of QUIC header, using the connection ID to carry the necessary metadata. To mitigate the linkability between the multiple connection IDs of the same connection and protect the privacy, the metadata <bcp14>MAY</bcp14> be encrypted and only decrypted by authenticated intermediary. Similar to <xref target="I-D.ietf-quic-load-balancers"/>, a configuration agent is used to distribute the encryption parameters and the template of the metadata.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>This document uses terms in the <xref target="I-D.ietf-quic-load-balancers"/>:</t>
      <ul spacing="normal">
        <li>"client" and "server" refer to the QUIC endpoint.</li>
        <li>Intermediary refers to a network element which forwards QUIC packets and does not possess the QUIC connection keys. Such an intermediary can be QUIC proxy defined in the MASQUE working group, wireless node described in the <xref target="I-D.kaippallimalil-tsvwg-media-hdr-wireless"/> and relay defined in the Media over QUIC working group.</li>
        <li>CID: Connection ID in the QUIC header.</li>
        <li>Configuration agent: An entity that distributes the encryption parameter and the template of the metadata field.</li>
      </ul>
      <t>All wire formats will be depicted using the notation defined in <xref section="1.3" sectionFormat="of" target="RFC9000"/>.</t>
      <section anchor="requirements-language">
        <name>Requirements Language</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>
      </section>
    </section>
    <section anchor="architecture">
      <name>Architecture</name>
      <figure anchor="arch">
        <name>Architecture of the intermediary</name>
        <artwork><![CDATA[
                             + --------------+
                             | Configuration |
         +-------------------+     agent     +-------------------+
        /                    +------+--------+                    \
       /Config Parameters and template of the Metadata field in CID\
      /                             |                               \
     /          _______             |              _______           \
+---V----+     (       )     +------v-------+     (       )     +-----v----+
| Client +----( Network )----+ Intermediary +----( Network )----+  Server  |
+--------+     (_______)     +--------------+     (_______)     +----------+

]]></artwork>
      </figure>
      <t><xref target="arch"/> shows the architecture of the optimization intermediary. The sender endpoint encode the metadata into the connection ID field (See <xref target="format"/>). The intermediary performs the related optimization based on the metadata. Since different applications may need to expose different metadata to the intermediary, a template is used to define the content and the format of metadata. The template is determined and distributed by a configuration agent. If the network between the intermediary and endpoints is not trusted by endpoints, the metadata <bcp14>MAY</bcp14> be encrypted. In this case, the parameter for encryption <bcp14>MUST</bcp14> be shared only to the authenticated intermediary through the configuration agent. The means of the authentication and the distribution of these parameters and template is not in the scope of this document.</t>
    </section>
    <section anchor="format">
      <name>Structured Connection ID</name>
      <figure anchor="cid-format">
        <name>Format of structured CID</name>
        <artwork><![CDATA[
Structured Connection ID {
  Config Parameters (8),
  Metadata (40...152),
}
]]></artwork>
      </figure>
      <t>The format of the structured connection ID is shown in <xref target="cid-format"/>. The content and the format of the metadata field is defined by a template and shared between an endpoint and the intermediary. For example, the media frame information in <xref section="3.1" sectionFormat="of" target="I-D.ietf-avtext-framemarking"/> and the service requirement such as delay and importance in <xref section="5" sectionFormat="of" target="I-D.kaippallimalil-tsvwg-media-hdr-wireless-01"/> can be used as a template.</t>
      <t>If an intermediary acts as both the load balancer and the optimization point and they share the same trust relationship, the Metadata and the Server ID defined in <xref target="I-D.ietf-quic-load-balancers"/> can be put together and share the same Config Parameter. Otherwise, if a QUIC connection goes through both load balancer and optimization point, additional mechanism is needed for the coexist of the metadata and the Server ID. The detail will be worked out in the later version.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>TBD</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC3711">
          <front>
            <title>The Secure Real-time Transport Protocol (SRTP)</title>
            <author fullname="M. Baugher" initials="M." surname="Baugher">
              <organization/>
            </author>
            <author fullname="D. McGrew" initials="D." surname="McGrew">
              <organization/>
            </author>
            <author fullname="M. Naslund" initials="M." surname="Naslund">
              <organization/>
            </author>
            <author fullname="E. Carrara" initials="E." surname="Carrara">
              <organization/>
            </author>
            <author fullname="K. Norrman" initials="K." surname="Norrman">
              <organization/>
            </author>
            <date month="March" year="2004"/>
            <abstract>
              <t>This document describes the Secure Real-time Transport Protocol (SRTP), a profile of the Real-time Transport Protocol (RTP), which can provide confidentiality, message authentication, and replay protection to the RTP traffic and to the control traffic for RTP, the Real-time Transport Control Protocol (RTCP).   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3711"/>
          <seriesInfo name="DOI" value="10.17487/RFC3711"/>
        </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">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <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="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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>
        <name>Informative References</name>
        <reference anchor="I-D.kaippallimalil-tsvwg-media-hdr-wireless">
          <front>
            <title>Media Header Extensions for Wireless Networks</title>
            <author fullname="John Kaippallimalil" initials="J." surname="Kaippallimalil">
              <organization>Futurewei</organization>
            </author>
            <author fullname="Sri Gundavelli" initials="S." surname="Gundavelli">
              <organization>Cisco</organization>
            </author>
            <date day="20" month="February" year="2023"/>
            <abstract>
              <t>   Wireless networks like 5G cellular or Wi-Fi experience significant
   variations in link capacity over short intervals due to wireless
   channel conditions, interference, or the end-user's movement.  These
   variations in capacity take place in the order of hundreds of
   milliseconds and is much too fast for end-to-end congestion signaling
   by itself to convey the changes for an application to adapt.  Media
   applications on the other hand demand both high throughput and low
   latency, and are able to dynamically adjust the size and quality of a
   stream to match available network bandwidth.  However, catering to
   such media flows over a radio link where the capacity changes rapidly
   requires the buffers and QoS in general to be managed carefully.
   This draft proposes additional information about the media
   transported in each packet to manage the buffers and optimize the
   scheduling of radio resources.  The set of information proposed here
   includes importance of the packet, burst length and time budget to be
   conveyed by the media application in a new UDP option.  The metadata
   in the UDP option is used to provide the wireless network the
   flexibility to prioritize packets that are essential when the radio
   capacity is temporarily low, defer packets that can tolerate some
   additional delay, or even drop packets selectively in more extreme
   conditions.

   This draft defines media metadata, a new UDP option to carry this
   metadata and the operational aspects for using it between a UDP
   source and a on-path wireless entity.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-kaippallimalil-tsvwg-media-hdr-wireless-01"/>
        </reference>
        <reference anchor="I-D.defoy-moq-relay-network-handling">
          <front>
            <title>MOQ Relays for Support of High-Throughput Low-Latency Traffic</title>
            <author fullname="Xavier de Foy" initials="X." surname="de Foy">
              <organization>InterDigital</organization>
            </author>
            <author fullname="Renan Krishna" initials="R." surname="Krishna">
              <organization>InterDigital</organization>
            </author>
            <date day="23" month="January" year="2023"/>
            <abstract>
              <t>   This document describes a mechanism to convey information about media
   frames.  The information is used for specific handling in functions
   such as error recovery and congestion handling.  These functions can
   be critical to improve energy efficiency and network capacity in some
   (especially wireless) networks.  Due to end-to-end encryption, MOQ
   relays are expected to extract the metadata required by these
   functions.  This document aims to enable a level of wireless network
   support for MOQ equivalent to what is possible for RTP.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-defoy-moq-relay-network-handling-01"/>
        </reference>
        <reference anchor="I-D.ietf-avtext-framemarking">
          <front>
            <title>Frame Marking RTP Header Extension</title>
            <author fullname="Mo Zanaty" initials="M." surname="Zanaty">
              <organization>Cisco Systems</organization>
            </author>
            <author fullname="Espen Berger" initials="E." surname="Berger">
              <organization>Cisco Systems</organization>
            </author>
            <author fullname="Suhas Nandakumar" initials="S." surname="Nandakumar">
              <organization>Cisco Systems</organization>
            </author>
            <date day="11" month="November" year="2021"/>
            <abstract>
              <t>   This document describes a Frame Marking RTP header extension used to
   convey information about video frames that is critical for error
   recovery and packet forwarding in RTP middleboxes or network nodes.
   It is most useful when media is encrypted, and essential when the
   middlebox or node has no access to the media decryption keys.  It is
   also useful for codec-agnostic processing of encrypted or unencrypted
   media, while it also supports extensions for codec-specific
   information.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-avtext-framemarking-13"/>
        </reference>
        <reference anchor="I-D.ietf-quic-load-balancers">
          <front>
            <title>QUIC-LB: Generating Routable QUIC Connection IDs</title>
            <author fullname="Martin Duke" initials="M." surname="Duke">
              <organization>Google</organization>
            </author>
            <author fullname="Nick Banks" initials="N." surname="Banks">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Christian Huitema" initials="C." surname="Huitema">
              <organization>Private Octopus Inc.</organization>
            </author>
            <date day="24" month="October" year="2022"/>
            <abstract>
              <t>   QUIC address migration allows clients to change their IP address
   while maintaining connection state.  To reduce the ability of an
   observer to link two IP addresses, clients and servers use new
   connection IDs when they communicate via different client addresses.
   This poses a problem for traditional "layer-4" load balancers that
   route packets via the IP address and port 4-tuple.  This
   specification provides a standardized means of securely encoding
   routing information in the server's connection IDs so that a properly
   configured load balancer can route packets with migrated addresses
   correctly.  As it proposes a structured connection ID format, it also
   provides a means of connection IDs self-encoding their length to aid
   some hardware offloads.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-load-balancers-15"/>
        </reference>
        <reference anchor="I-D.kaippallimalil-tsvwg-media-hdr-wireless-01">
          <front>
            <title>Media Header Extensions for Wireless Networks</title>
            <author fullname="John Kaippallimalil" initials="J." surname="Kaippallimalil">
              <organization>Futurewei</organization>
            </author>
            <author fullname="Sri Gundavelli" initials="S." surname="Gundavelli">
              <organization>Cisco</organization>
            </author>
            <date day="20" month="February" year="2023"/>
            <abstract>
              <t>   Wireless networks like 5G cellular or Wi-Fi experience significant
   variations in link capacity over short intervals due to wireless
   channel conditions, interference, or the end-user's movement.  These
   variations in capacity take place in the order of hundreds of
   milliseconds and is much too fast for end-to-end congestion signaling
   by itself to convey the changes for an application to adapt.  Media
   applications on the other hand demand both high throughput and low
   latency, and are able to dynamically adjust the size and quality of a
   stream to match available network bandwidth.  However, catering to
   such media flows over a radio link where the capacity changes rapidly
   requires the buffers and QoS in general to be managed carefully.
   This draft proposes additional information about the media
   transported in each packet to manage the buffers and optimize the
   scheduling of radio resources.  The set of information proposed here
   includes importance of the packet, burst length and time budget to be
   conveyed by the media application in a new UDP option.  The metadata
   in the UDP option is used to provide the wireless network the
   flexibility to prioritize packets that are essential when the radio
   capacity is temporarily low, defer packets that can tolerate some
   additional delay, or even drop packets selectively in more extreme
   conditions.

   This draft defines media metadata, a new UDP option to carry this
   metadata and the operational aspects for using it between a UDP
   source and a on-path wireless entity.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-kaippallimalil-tsvwg-media-hdr-wireless-01"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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
XLlrVWhvJBKqt4Hz3LcXg/8Bgp8uZ3YaAAA=

-->

</rfc>
