<?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  (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-webtrans-http3-07" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.3 -->
  <front>
    <title abbrev="WebTransport-H3">WebTransport over HTTP/3</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-http3-07"/>
    <author initials="A." surname="Frindell" fullname="Alan Frindell">
      <organization>Facebook</organization>
      <address>
        <email>afrind@fb.com</email>
      </address>
    </author>
    <author initials="E." surname="Kinnear" fullname="Eric Kinnear">
      <organization>Apple Inc.</organization>
      <address>
        <email>ekinnear@apple.com</email>
      </address>
    </author>
    <author initials="V." surname="Vasiliev" fullname="Victor Vasiliev">
      <organization>Google</organization>
      <address>
        <email>vasilvv@google.com</email>
      </address>
    </author>
    <date/>
    <area>Transport</area>
    <abstract>
      <t>WebTransport <xref target="OVERVIEW"/> is a protocol framework
that enables clients constrained by the Web security model to communicate with
a remote server using a secure multiplexed transport.  This document describes
a WebTransport protocol that is based on HTTP/3 <xref target="HTTP3"/> and provides
support for unidirectional streams, bidirectional streams and datagrams, all
multiplexed within the same HTTP/3 connection.</t>
    </abstract>
    <note>
      <name>Note to Readers</name>
      <t>Discussion of this draft takes place on the WebTransport mailing list
(webtransport@ietf.org), which is archived at
&lt;https://mailarchive.ietf.org/arch/search/?email_list=webtransport&gt;.</t>
      <t>The repository tracking the issues for this draft can be found at
&lt;https://github.com/ietf-wg-webtrans/draft-ietf-webtrans-http3/issues&gt;.  The
web API draft corresponding to this document can be found at
&lt;https://w3c.github.io/webtransport/&gt;.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>HTTP/3 <xref target="HTTP3"/> is a protocol defined on top of QUIC <xref target="RFC9000"/> that can
multiplex HTTP requests over a QUIC connection.  This document defines a
mechanism for multiplexing non-HTTP data with HTTP/3 in a manner that conforms
with the WebTransport protocol requirements and semantics<xref target="OVERVIEW"/>.  Using the
mechanism described here, multiple WebTransport instances can be multiplexed
simultaneously with regular HTTP traffic on the same HTTP/3 connection.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>
        <t>This document follows terminology defined in Section 1.2 of <xref target="OVERVIEW"/>.  Note
that this document distinguishes between a WebTransport server and an HTTP/3
server.  An HTTP/3 server is the server that terminates HTTP/3 connections; a
WebTransport server is an application that accepts WebTransport sessions, which
can be accessed via an HTTP/3 server.</t>
      </section>
    </section>
    <section anchor="protocol-overview">
      <name>Protocol Overview</name>
      <t>WebTransport servers in general are identified by a pair of authority value and
path value (defined in <xref target="RFC3986"/> Sections 3.2 and 3.3 correspondingly).</t>
      <t>When an HTTP/3 connection is established, both the client and server have to
send a SETTINGS_WEBTRANSPORT_MAX_SESSIONS setting in order to indicate that
they both support WebTransport over HTTP/3.  This process also negotiates the
use of additional HTTP/3 extensions.</t>
      <t>WebTransport sessions are initiated inside a given HTTP/3 connection by the
client, who sends an extended CONNECT request <xref target="RFC8441"/>.  If the server
accepts the request, a WebTransport session is established.  The resulting
stream will be further referred to as a <em>CONNECT stream</em>, and its stream ID is
used to uniquely identify a given WebTransport session within the connection.
The ID of the CONNECT stream that established a given WebTransport session will
be further referred to as a <em>Session ID</em>.</t>
      <t>After the session is established, the peers can exchange data using the
following mechanisms:</t>
      <ul spacing="normal">
        <li>A client can create a bidirectional stream and transfer its ownership to
WebTransport by providing a special signal in the first bytes.</li>
        <li>A server can create a bidirectional stream and transfer its ownership to
WebTransport by providing a special signal in the first bytes..</li>
        <li>Both client and server can create a unidirectional stream using a special
stream type.</li>
        <li>A datagram can be sent using HTTP Datagrams <xref target="HTTP-DATAGRAM"/>.</li>
      </ul>
      <t>A WebTransport session is terminated when the CONNECT stream that created it is
closed.</t>
    </section>
    <section anchor="session-establishment">
      <name>Session Establishment</name>
      <section anchor="establishing">
        <name>Establishing a Transport-Capable HTTP/3 Connection</name>
        <t>In order to indicate support for WebTransport, both the client and the server
MUST send a SETTINGS_WEBTRANSPORT_MAX_SESSIONS value greater than "0" in their
SETTINGS frame.  The default value for the SETTINGS_WEBTRANSPORT_MAX_SESSIONS
parameter is "0", meaning that the endpoint is not willing to receive any
WebTransport sessions.  Note that the client only needs to send a value greater
than "0"; since clients initiate WebTransport sessions, the actual value is
not significant.</t>
        <t>The client MUST NOT send a WebTransport request until it has received the
setting indicating WebTransport support from the server.</t>
        <t>[[RFC editor: please remove the following paragraph before publication.]]</t>
        <t>Similarly, the server MUST NOT process any incoming WebTransport requests until
the client settings have been received, as the client may be using a version of
the WebTransport extension that is different from the one used by the server.</t>
        <t>Because WebTransport over HTTP/3 requires support for HTTP/3 datagrams and the
Capsule Protocol, both the client and the server MUST indicate support for
HTTP/3 datagrams by sending a SETTINGS_H3_DATAGRAM value set to 1 in their
SETTINGS frame (see <xref section="2.1.1" sectionFormat="of" target="HTTP-DATAGRAM"/>).</t>
        <t>WebTransport over HTTP/3 also requires support for QUIC datagrams.  To indicate
support, both the client and the server MUST send a max_datagram_frame_size
transport parameter with a value greater than 0 (see <xref section="3" sectionFormat="of" target="QUIC-DATAGRAM"/>).</t>
      </section>
      <section anchor="extended-connect-in-http3">
        <name>Extended CONNECT in HTTP/3</name>
        <t><xref target="RFC8441"/> defines an extended CONNECT method in Section 4, enabled by the
SETTINGS_ENABLE_CONNECT_PROTOCOL setting.  That setting is defined for HTTP/3
by <xref target="RFC9220"/>.  A client supporting WebTransport over HTTP/3 MUST send the
SETTINGS_WEBTRANSPORT_MAX_SESSIONS setting with a value greater than "0". A
server supporting WebTransport over HTTP/3 MUST send both the
SETTINGS_WEBTRANSPORT_MAX_SESSIONS setting with a value greater than "0" and
the SETTINGS_ENABLE_CONNECT_PROTOCOL setting with a value of "1".</t>
      </section>
      <section anchor="creating-a-new-session">
        <name>Creating a New Session</name>
        <t>As WebTransport sessions are established over HTTP/3, they are identified using
the <tt>https</tt> URI scheme (<xref target="HTTP"/>, Section 4.2.2).</t>
        <t>In order to create a new WebTransport session, a client can send an HTTP CONNECT
request.  The <tt>:protocol</tt> pseudo-header field (<xref target="RFC8441"/>) MUST be set to
<tt>webtransport</tt>.  The <tt>:scheme</tt> field MUST be <tt>https</tt>.  Both the <tt>:authority</tt>
and the <tt>:path</tt> value MUST be set; those fields indicate the desired
WebTransport server.  If the WebTransport session is coming from a browser
client, an <tt>Origin</tt> header <xref target="RFC6454"/> MUST be provided within the request;
otherwise, the header is OPTIONAL.</t>
        <t>Upon receiving an extended CONNECT request with a <tt>:protocol</tt> field set to
<tt>webtransport</tt>, the HTTP/3 server can check if it has a WebTransport server
associated with the specified <tt>:authority</tt> and <tt>:path</tt> values.  If it does not,
it SHOULD reply with status code 404 (<xref section="15.5.5" sectionFormat="of" target="HTTP"/>).
When the request contains the <tt>Origin</tt> header, the WebTransport server MUST
verify the <tt>Origin</tt> header to ensure that the specified origin is allowed to
access the server in question. If the verification fails, the WebTransport
server SHOULD reply with status code 403 (<xref section="15.5.4" sectionFormat="of" target="HTTP"/>).  If all
checks pass, the WebTransport server MAY accept the session by replying with a
2xx series status code, as defined in <xref section="15.3" sectionFormat="of" target="HTTP"/>.</t>
        <t>From the client's perspective, a WebTransport session is established when the
client receives a 2xx response.  From the server's perspective, a session is
established once it sends a 2xx response.</t>
        <t>The server may reply with a 3xx response, indicating a redirection (<xref section="15.4" sectionFormat="of" target="HTTP"/>).  The user agent MUST NOT automatically follow such redirects,
as the client could potentially already have sent data for the WebTransport
session in question; it MAY notify the client about the redirect.</t>
        <t>Clients cannot initiate WebTransport in 0-RTT packets, as the CONNECT method is
not considered safe; see <xref section="10.9" sectionFormat="of" target="HTTP3"/>. However,
WebTransport-related SETTINGS parameters may be retained from the previous
session as described in Section 7.2.4.2 of <xref target="HTTP3"/>.  If the server accepts
0-RTT, the server MUST NOT reduce the limit of maximum open WebTransport
sessions from the one negotiated during the previous session; such change would
be deemed incompatible, and MUST result in a H3_SETTINGS_ERROR connection
error.</t>
        <t>The <tt>webtransport</tt> HTTP Upgrade Token uses the Capsule Protocol as defined in
<xref target="HTTP-DATAGRAM"/>.  The Capsule Protocol is negotiated when the server sends a
2xx response.  The <tt>capsule-protocol</tt> header field <xref section="3.4" sectionFormat="of" target="HTTP-DATAGRAM"/> is not required by WebTransport and can safely be ignored by WebTransport
endpoints.</t>
      </section>
      <section anchor="limiting-the-number-of-simultaneous-sessions">
        <name>Limiting the Number of Simultaneous Sessions</name>
        <t>This document defines a SETTINGS_WEBTRANSPORT_MAX_SESSIONS parameter that allows
the server to limit the maximum number of concurrent WebTransport sessions on a
single HTTP/3 connection.  The client MUST NOT open more sessions than
indicated in the server SETTINGS parameters.  The server MUST NOT close the
connection if the client opens sessions exceeding this limit, as the client and
the server do not have a consistent view of how many sessions are open due to
the asynchronous nature of the protocol; instead, it MUST reset all of the
CONNECT streams it is not willing to process with the <tt>HTTP_REQUEST_REJECTED</tt>
status defined in <xref target="HTTP3"/>.</t>
        <t>Just like other HTTP requests, WebTransport sessions, and data sent on those
sessions, are counted against flow control limits.  This document does not
introduce additional mechanisms for endpoints to limit the relative amount of
flow control credit consumed by different WebTransport sessions, however
servers that wish to limit the rate of incoming requests on any particular
session have alternative mechanisms:</t>
        <ul spacing="normal">
          <li>The <tt>HTTP_REQUEST_REJECTED</tt> error code defined in <xref target="HTTP3"/> indicates to the
receiving HTTP/3 stack that the request was not processed in any way.</li>
          <li>HTTP status code 429 indicates that the request was rejected due to rate
limiting <xref target="RFC6585"/>.  Unlike the previous method, this signal is directly
propagated to the application.</li>
        </ul>
      </section>
    </section>
    <section anchor="webtransport-features">
      <name>WebTransport Features</name>
      <t>WebTransport over HTTP/3 provides the following features described in
<xref target="OVERVIEW"/>: unidirectional streams, bidirectional streams and datagrams,
initiated by either endpoint.</t>
      <t>Session IDs are used to demultiplex streams and datagrams belonging to different
WebTransport sessions.  On the wire, session IDs are encoded using the QUIC
variable length integer scheme described in <xref target="RFC9000"/>.</t>
      <t>The client MAY optimistically open unidirectional and bidirectional streams, as
well as send datagrams, for a session that it has sent the CONNECT request for,
even if it has not yet received the server's response to the request. On the
server side, opening streams and sending datagrams is possible as soon as the
CONNECT request has been received.</t>
      <t>If at any point a session ID is received that cannot a valid ID for a
client-initiated bidirectional stream, the recipient MUST close the connection
with an H3_ID_ERROR error code.</t>
      <section anchor="unidirectional-streams">
        <name>Unidirectional streams</name>
        <t>WebTransport endpoints can initiate unidirectional streams.  The HTTP/3
unidirectional stream type SHALL be 0x54.  The body of the stream SHALL be the
stream type, followed by the session ID, encoded as a variable-length integer,
followed by the user-specified stream data (<xref target="fig-unidi"/>).</t>
        <figure anchor="fig-unidi">
          <name>Unidirectional WebTransport stream format</name>
          <sourcecode type="drawing"><![CDATA[
Unidirectional Stream {
    Stream Type (i) = 0x54,
    Session ID (i),
    Stream Body (..)
}
]]></sourcecode>
        </figure>
      </section>
      <section anchor="bidirectional-streams">
        <name>Bidirectional Streams</name>
        <t>All client-initiated bidirectional streams are reserved by HTTP/3 as request
streams, which are a sequence of HTTP/3 frames with a variety of rules; see
Sections <xref target="HTTP3" section="4.1" sectionFormat="bare"/> and <xref target="HTTP3" section="6.1" sectionFormat="bare"/> of <xref target="HTTP3"/>.</t>
        <t>WebTransport extends HTTP/3 to allow clients to declare and use alternative
request stream rules.  Once a client receives settings indicating WebTransport
support (<xref target="establishing"/>), it can send a special signal value, encoded as
a variable-length integer, as the first bytes of the stream in order to indicate
how the remaining bytes on the stream are used.</t>
        <t>WebTransport extends HTTP/3 by defining rules for all server-initiated
bidirectional streams.  Once a server receives settings indicating WebTransport
support (<xref target="establishing"/>), it can open a bidirectional stream and SHALL send a
special signal value, encoded as a variable-length integer, as the first bytes
of the stream in order to indicate how the remaining bytes on the stream are
used.</t>
        <t>The signal value, 0x41, is used by clients and servers to open a bidirectional
WebTransport stream.  Following this is the associated session ID, encoded as a
variable-length integer; the rest of the stream is the application payload of
the WebTransport stream (<xref target="fig-bidi-client"/>).</t>
        <figure anchor="fig-bidi-client">
          <name>Bidirectional WebTransport stream format</name>
          <sourcecode type="drawing"><![CDATA[
Bidirectional Stream {
    Signal Value (i) = 0x41,
    Session ID (i),
    Stream Body (..)
}
]]></sourcecode>
        </figure>
        <t>This document reserves the special signal value 0x41 as a WEBTRANSPORT_STREAM
frame type.  While it is registered as an HTTP/3 frame type to avoid
collisions, WEBTRANSPORT_STREAM is not a proper HTTP/3 frame, as it lacks
length; it is an extension of HTTP/3 frame syntax that MUST be supported by any
peer negotiating WebTransport.  Endpoints that implement this extension are
also subject to additional frame handling requirements. Endpoints MUST NOT send
WEBTRANSPORT_STREAM as a frame type on HTTP/3 streams other than the very first
bytes of a request stream.  Receiving this frame type in any other
circumstances MUST be treated as a connection error of type H3_FRAME_ERROR.</t>
      </section>
      <section anchor="resetting-data-streams">
        <name>Resetting Data Streams</name>
        <t>A WebTransport endpoint may send a RESET_STREAM or a STOP_SENDING frame for a
WebTransport data stream.  Those signals are propagated by the WebTransport
implementation to the application.</t>
        <t>A WebTransport application SHALL provide an error code for those operations.
Since WebTransport shares the error code space with HTTP/3, WebTransport
application errors for streams are limited to an unsigned 32-bit integer,
assuming values between 0x00000000 and 0xffffffff.  WebTransport
implementations SHALL remap those error codes into the error range reserved for
WEBTRANSPORT_APPLICATION_ERROR, where 0x00000000 corresponds to 0x52e4a40fa8db,
and 0xffffffff corresponds to 0x52e5ac983162.  Note that there are code points
inside that range of form "0x1f * N + 0x21" that are reserved by <xref section="8.1" sectionFormat="of" target="HTTP3"/>; those have to be skipped when mapping the error codes
(i.e. the two HTTP/3 error codepoints adjacent to a reserved
codepoint would map to two adjacent WebTransport application error codepoints).
An example pseudocode can be seen in <xref target="fig-remap-errors"/>.</t>
        <figure anchor="fig-remap-errors">
          <name>Pseudocode for converting between WebTransport application errors and HTTP/3 error codes</name>
          <artwork><![CDATA[
    first = 0x52e4a40fa8db
    last = 0x52e5ac983162

    def webtransport_code_to_http_code(n):
        return first + n + floor(n / 0x1e)

    def http_code_to_webtransport_code(h):
        assert(first <= h <= last)
        assert((h - 0x21) % 0x1f != 0)
        shifted = h - first
        return shifted - floor(shifted / 0x1f)
]]></artwork>
        </figure>
        <t>WebTransport data streams are associated with sessions through a header at the
beginning of the stream; resetting a stream may result in that data being
discarded.  Because of that, WebTransport application error codes are best
effort, as the WebTransport stack is not always capable of associating the
reset code with a session.  The only exception is the situation where there is
only one session on a given HTTP/3 connection, and no intermediaries between
the client and the server.</t>
        <t>WebTransport implementations SHALL forward the error code for a stream
associated with a known session to the application that owns that session;
similarly, the intermediaries SHALL reset the streams with corresponding error
code when receiving a reset from the peer.  If a WebTransport implementation
intentionally allows only one session over a given HTTP/3 connection, it SHALL
forward the error codes within WebTransport application error code range to the
application that owns the only session on that connection.</t>
      </section>
      <section anchor="datagrams">
        <name>Datagrams</name>
        <t>Datagrams can be sent using HTTP Datagrams. The WebTransport datagram payload is
sent unmodified in the "HTTP Datagram Payload" field of an HTTP Datagram
(Section 2.1 of <xref target="HTTP-DATAGRAM"/>). Note that the payload field directly
follows the Quarter Stream ID field, which is at the start of the QUIC DATAGRAM
frame payload and refers to the CONNECT stream that established the
WebTransport session.</t>
      </section>
      <section anchor="buffering-incoming-streams-and-datagrams">
        <name>Buffering Incoming Streams and Datagrams</name>
        <t>In WebTransport over HTTP/3, the client MAY send its SETTINGS frame, as well as
multiple WebTransport CONNECT requests, WebTransport data streams and
WebTransport datagrams, all within a single flight.  As those can arrive out of
order, a WebTransport server could be put into a situation where it receives a
stream or a datagram without a corresponding session.  Similarly, a client may
receive a server-initiated stream or a datagram before receiving the CONNECT
response headers from the server.</t>
        <t>To handle this case, WebTransport endpoints SHOULD buffer streams and datagrams
until those can be associated with an established session.  To avoid resource
exhaustion, the endpoints MUST limit the number of buffered streams and
datagrams.  When the number of buffered streams is exceeded, a stream SHALL be
closed by sending a RESET_STREAM and/or STOP_SENDING with the
<tt>WEBTRANSPORT_BUFFERED_STREAM_REJECTED</tt> error code.  When the number of
buffered datagrams is exceeded, a datagram SHALL be dropped.  It is up to an
implementation to choose what stream or datagram to discard.</t>
      </section>
      <section anchor="interaction-with-http3-goaway-frame">
        <name>Interaction with HTTP/3 GOAWAY frame</name>
        <t>HTTP/3 defines a graceful shutdown mechanism (Section 5.2 of <xref target="HTTP3"/>) that
allows a peer to send a GOAWAY frame indicating that it will no longer accept
any new incoming requests or pushes.  This mechanism applies to the CONNECT
requests for new WebTransport sessions.  A GOAWAY frame does not affect data
streams for existing WebTransport sessions; those can continue to be opened
even after the GOAWAY frame has been sent or received.</t>
        <t>To drain a WebTransport session, either endpoint can send a
DRAIN_WEBTRANSPORT_SESSION capsule.  After sending or receiving a
DRAIN_WEBTRANSPORT_SESSION (0x78ae) capsule, an endpoint MAY continue using the session
but SHOULD attempt to gracefully terminate the session as soon as possible.</t>
        <artwork><![CDATA[
DRAIN_WEBTRANSPORT_SESSION Capsule {
  Type (i) = DRAIN_WEBTRANSPORT_SESSION,
  Length (i) = 0
}
]]></artwork>
      </section>
    </section>
    <section anchor="session-termination">
      <name>Session Termination</name>
      <t>A WebTransport session over HTTP/3 is considered terminated when either of the
following conditions is met:</t>
      <ul spacing="normal">
        <li>the CONNECT stream is closed, either cleanly or abruptly, on either side; or</li>
        <li>a CLOSE_WEBTRANSPORT_SESSION capsule is either sent or received.</li>
      </ul>
      <t>Upon learning that the session has been terminated, the endpoint MUST reset the
send side and abort reading on the receive side of all of the streams
associated with the session (see Section 2.4 of <xref target="RFC9000"/>) using the
WEBTRANSPORT_SESSION_GONE error code; it MUST NOT send any new datagrams or
open any new streams.</t>
      <t>To terminate a session with a detailed error message, an application MAY send
an HTTP capsule <xref target="HTTP-DATAGRAM"/> of type CLOSE_WEBTRANSPORT_SESSION (0x2843).
The format of the capsule SHALL be as follows:</t>
      <artwork><![CDATA[
CLOSE_WEBTRANSPORT_SESSION Capsule {
  Type (i) = CLOSE_WEBTRANSPORT_SESSION,
  Length (i),
  Application Error Code (32),
  Application Error Message (..8192),
}
]]></artwork>
      <t>CLOSE_WEBTRANSPORT_SESSION has the following fields:</t>
      <dl>
        <dt>Application Error Code:</dt>
        <dd>
          <t>A 32-bit error code provided by the application closing the connection.</t>
        </dd>
        <dt>Application Error Message:</dt>
        <dd>
          <t>A UTF-8 encoded error message string provided by the application closing the
connection.  The message takes up the remainder of the capsule, and its
length MUST NOT exceed 1024 bytes.</t>
        </dd>
      </dl>
      <t>An endpoint that sends a CLOSE_WEBTRANSPORT_SESSION capsule MUST immediately
send a FIN.  The endpoint MAY send a STOP_SENDING to indicate it is no longer
reading from the CONNECT stream.  The recipient MUST close the stream upon
receiving a FIN.  If any additional stream data is received on the CONNECT
stream after receiving a CLOSE_WEBTRANSPORT_SESSION capsule, the stream MUST be
reset with code H3_MESSAGE_ERROR.</t>
      <t>Cleanly terminating a CONNECT stream without a CLOSE_WEBTRANSPORT_SESSION
capsule SHALL be semantically equivalent to terminating it with a
CLOSE_WEBTRANSPORT_SESSION capsule that has an error code of 0 and an empty
error string.</t>
      <t>In some scenarios, an endpoint might want to send a CLOSE_WEBTRANSPORT_SESSION
with detailed close information and then immediately close the underlying QUIC
connection.  If the endpoint were to do both of those simultaneously, the peer
could potentially receive the CONNECTION_CLOSE before receiving the
CLOSE_WEBTRANSPORT_SESSION, thus never receiving the application error data
contained in the latter.  To avoid this, the endpoint SHOULD wait until all of
the data on the CONNECT stream is acknowledged before sending the
CONNECTION_CLOSE; this gives CLOSE_WEBTRANSPORT_SESSION properties similar to
that of the QUIC CONNECTION_CLOSE mechanism as a best-effort mechanism of
delivering application close metadata.</t>
    </section>
    <section anchor="negotiating-the-draft-version">
      <name>Negotiating the Draft Version</name>
      <t>[[RFC editor: please remove this section before publication.]]</t>
      <t>The wire format aspects of the protocol are negotiated by changing the codepoint
used for the SETTINGS_WEBTRANSPORT_MAX_SESSIONS parameter.  Because of that,
any WebTransport endpoint MUST wait for the peer's SETTINGS frame before
sending or processing any WebTransport traffic.  When multiple versions are
supported by both of the peers, the most recent version supported by both is
selected.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>WebTransport over HTTP/3 satisfies all of the security requirements imposed by
<xref target="OVERVIEW"/> on WebTransport protocols, thus providing a secure framework for
client-server communication in cases when the client is potentially untrusted.</t>
      <t>WebTransport over HTTP/3 requires explicit opt-in through the use of an HTTP/3
setting; this avoids potential protocol confusion attacks by ensuring the
HTTP/3 server explicitly supports it.  It also requires the use of the Origin
header, providing the server with the ability to deny access to Web-based
clients that do not originate from a trusted origin.</t>
      <t>Just like HTTP traffic going over HTTP/3, WebTransport pools traffic to
different origins within a single connection.  Different origins imply
different trust domains, meaning that the implementations have to treat each
transport as potentially hostile towards others on the same connection.  One
potential attack is a resource exhaustion attack: since all of the transports
share both congestion control and flow control context, a single client
aggressively using up those resources can cause other transports to stall.  The
user agent thus SHOULD implement a fairness scheme that ensures that each
transport within connection gets a reasonable share of controlled resources;
this applies both to sending data and to opening new streams.</t>
      <t>A client could attempt to exhaust resources by opening too many WebTransport
sessions at once.  In cases when the client is untrusted, the user agent SHOULD
limit the number of outgoing sessions the client can open.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="upgrade-token-registration">
        <name>Upgrade Token Registration</name>
        <t>The following entry is added to the "Hypertext Transfer Protocol (HTTP) Upgrade
Token Registry" registry established by Section 16.7 of <xref target="HTTP"/>.</t>
        <t>The "webtransport" label identifies HTTP/3 used as a protocol for WebTransport:</t>
        <dl>
          <dt>Value:</dt>
          <dd>
            <t>webtransport</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>WebTransport over HTTP/3</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document and <xref target="I-D.ietf-webtrans-http2"/></t>
          </dd>
        </dl>
      </section>
      <section anchor="http3-settings-parameter-registration">
        <name>HTTP/3 SETTINGS Parameter Registration</name>
        <t>The following entry is added to the "HTTP/3 Settings" registry established by
<xref target="HTTP3"/>:</t>
        <t>The <tt>SETTINGS_WEBTRANSPORT_MAX_SESSIONS</tt> parameter indicates that the specified
HTTP/3 endpoint is WebTransport-capable and, for servers, the number of
concurrent sessions it is willing to receive. The default value for the
SETTINGS_WEBTRANSPORT_MAX_SESSIONS parameter is "0", meaning that the endpoint
is not willing to receive any WebTransport sessions.</t>
        <dl>
          <dt>Setting Name:</dt>
          <dd>
            <t>WEBTRANSPORT_MAX_SESSIONS</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0xc671706a</t>
          </dd>
          <dt>Default:</dt>
          <dd>
            <t>0</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
      </section>
      <section anchor="frame-type-registration">
        <name>Frame Type Registration</name>
        <t>The following entry is added to the "HTTP/3 Frame Type" registry established by
<xref target="HTTP3"/>:</t>
        <t>The <tt>WEBTRANSPORT_STREAM</tt> frame is reserved for the purpose of avoiding
collision with WebTransport HTTP/3 extensions:</t>
        <dl>
          <dt>Code:</dt>
          <dd>
            <t>0x41</t>
          </dd>
          <dt>Frame Type:</dt>
          <dd>
            <t>WEBTRANSPORT_STREAM</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
      </section>
      <section anchor="stream-type-registration">
        <name>Stream Type Registration</name>
        <t>The following entry is added to the "HTTP/3 Stream Type" registry established by
<xref target="HTTP3"/>:</t>
        <t>The "WebTransport stream" type allows unidirectional streams to be used by
WebTransport:</t>
        <dl>
          <dt>Code:</dt>
          <dd>
            <t>0x54</t>
          </dd>
          <dt>Stream Type:</dt>
          <dd>
            <t>WebTransport stream</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Sender:</dt>
          <dd>
            <t>Both</t>
          </dd>
        </dl>
      </section>
      <section anchor="http3-error-code-registration">
        <name>HTTP/3 Error Code Registration</name>
        <t>The following entry is added to the "HTTP/3 Error Code" registry established by
<xref target="HTTP3"/>:</t>
        <dl>
          <dt>Name:</dt>
          <dd>
            <t>WEBTRANSPORT_BUFFERED_STREAM_REJECTED</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x3994bd84</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>WebTransport data stream rejected due to lack of associated session.</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document.</t>
          </dd>
          <dt>Name:</dt>
          <dd>
            <t>WEBTRANSPORT_SESSION_GONE</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x170d7b68</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>WebTransport data stream aborted because the associated WebTransport session
has been closed.</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document.</t>
          </dd>
        </dl>
        <t>In addition, the following range of entries is registered:</t>
        <dl>
          <dt>Name:</dt>
          <dd>
            <t>WEBTRANSPORT_APPLICATION_ERROR</t>
          </dd>
          <dt>Value:</dt>
          <dd>
            <t>0x52e4a40fa8db to 0x52e5ac983162 inclusive, with the exception of
the codepoints of form 0x1f * N + 0x21.</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>WebTransport application error codes.</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document.</t>
          </dd>
        </dl>
      </section>
      <section anchor="capsule-types">
        <name>Capsule Types</name>
        <t>The following entries are added to the "HTTP Capsule Types" registry established
by <xref target="HTTP-DATAGRAM"/>:</t>
        <t>The <tt>CLOSE_WEBTRANSPORT_SESSION</tt> capsule.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x2843</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t>CLOSE_WEBTRANSPORT_SESSION</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
        <t>The <tt>DRAIN_WEBTRANSPORT_SESSION</tt> capsule.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x78ae</t>
          </dd>
          <dt>Capsule Type:</dt>
          <dd>
            <t>DRAIN_WEBTRANSPORT_SESSION</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>provisional (when this document is approved this will become permanent)</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>WebTransport Working Group <eref target="mailto:webtransport@ietf.org">webtransport@ietf.org</eref></t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="OVERVIEW">
          <front>
            <title>The WebTransport Protocol Framework</title>
            <author fullname="Victor Vasiliev" initials="V." surname="Vasiliev">
              <organization>Google</organization>
            </author>
            <date day="24" month="January" year="2023"/>
            <abstract>
              <t>   The WebTransport Protocol Framework enables clients constrained by
   the Web security model to communicate with a remote server using a
   secure multiplexed transport.  It consists of a set of individual
   protocols that are safe to expose to untrusted applications, combined
   with a model that allows them to be used interchangeably.

   This document defines the overall requirements on the protocols used
   in WebTransport, as well as the common features of the protocols,
   support for some of which may be optional.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-overview-05"/>
        </reference>
        <reference anchor="HTTP3">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment.  This document describes a mapping of HTTP semantics over QUIC.  This document also identifies HTTP/2 features that are subsumed by QUIC and describes how HTTP/2 extensions can be ported to HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9114"/>
          <seriesInfo name="DOI" value="10.17487/RFC9114"/>
        </reference>
        <reference anchor="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>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC8441">
          <front>
            <title>Bootstrapping WebSockets with HTTP/2</title>
            <author fullname="P. McManus" initials="P." surname="McManus">
              <organization/>
            </author>
            <date month="September" year="2018"/>
            <abstract>
              <t>This document defines a mechanism for running the WebSocket Protocol (RFC 6455) over a single stream of an HTTP/2 connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8441"/>
          <seriesInfo name="DOI" value="10.17487/RFC8441"/>
        </reference>
        <reference anchor="HTTP-DATAGRAM">
          <front>
            <title>HTTP Datagrams and the Capsule Protocol</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <author fullname="L. Pardue" initials="L." surname="Pardue">
              <organization/>
            </author>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document describes HTTP Datagrams, a convention for conveying multiplexed, potentially unreliable datagrams inside an HTTP connection.</t>
              <t>In HTTP/3, HTTP Datagrams can be sent unreliably using the QUIC DATAGRAM extension. When the QUIC DATAGRAM frame is unavailable or undesirable, HTTP Datagrams can be sent using the Capsule Protocol, which is a more general convention for conveying data in HTTP connections.</t>
              <t>HTTP Datagrams and the Capsule Protocol are intended for use by HTTP extensions, not applications.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9297"/>
          <seriesInfo name="DOI" value="10.17487/RFC9297"/>
        </reference>
        <reference anchor="QUIC-DATAGRAM">
          <front>
            <title>An Unreliable Datagram Extension to QUIC</title>
            <author fullname="T. Pauly" initials="T." surname="Pauly">
              <organization/>
            </author>
            <author fullname="E. Kinnear" initials="E." surname="Kinnear">
              <organization/>
            </author>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document defines an extension to the QUIC transport protocol to add support for sending and receiving unreliable datagrams over a QUIC connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9221"/>
          <seriesInfo name="DOI" value="10.17487/RFC9221"/>
        </reference>
        <reference anchor="RFC9220">
          <front>
            <title>Bootstrapping WebSockets with HTTP/3</title>
            <author fullname="R. Hamilton" initials="R." surname="Hamilton">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The mechanism for running the WebSocket Protocol over a single stream of an HTTP/2 connection is equally applicable to HTTP/3, but the HTTP-version-specific details need to be specified. This document describes how the mechanism is adapted for HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9220"/>
          <seriesInfo name="DOI" value="10.17487/RFC9220"/>
        </reference>
        <reference anchor="RFC6454">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth">
              <organization/>
            </author>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents.  Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites.  In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string.  It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes. </t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC6585">
          <front>
            <title>Additional HTTP Status Codes</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <date month="April" year="2012"/>
            <abstract>
              <t>This document specifies additional HyperText Transfer Protocol (HTTP) status codes for a variety of common situations.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6585"/>
          <seriesInfo name="DOI" value="10.17487/RFC6585"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="I-D.ietf-webtrans-http2">
          <front>
            <title>WebTransport over HTTP/2</title>
            <author fullname="Alan Frindell" initials="A." surname="Frindell">
              <organization>Facebook Inc.</organization>
            </author>
            <author fullname="Eric Kinnear" initials="E." surname="Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Martin Thomson" initials="M." surname="Thomson">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Victor Vasiliev" initials="V." surname="Vasiliev">
              <organization>Google</organization>
            </author>
            <author fullname="Guowu Xie" initials="G." surname="Xie">
              <organization>Facebook Inc.</organization>
            </author>
            <date day="13" month="March" year="2023"/>
            <abstract>
              <t>   WebTransport defines a set of low-level communications features
   designed for client-server interactions that are initiated by Web
   clients.  This document describes a protocol that can provide many of
   the capabilities of WebTransport over HTTP/2.  This protocol enables
   the use of WebTransport when a UDP-based protocol is not available.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-http2-05"/>
        </reference>
      </references>
    </references>
    <section anchor="changelog">
      <name>Changelog</name>
      <section anchor="changes-between-draft-versions-02-and-07">
        <name>Changes between draft versions 02 and 07</name>
        <t>The following changes make the draft-02 and draft-07 versions of this protocol
incompatible:</t>
        <ul spacing="normal">
          <li>draft-07 requires SETTINGS_WEBTRANSPORT_MAX_SESSIONS (#86) and uses it for
version negotiation (#129)</li>
          <li>draft-07 explicitly requires SETTINGS_ENABLE_CONNECT_PROTOCOL to be enabled
(#93)</li>
          <li>draft-07 explicitly requires SETTINGS_H3_DATAGRAM to be enabled (#106)</li>
          <li>draft-07 only allows WEBTRANSPORT_STREAM at the beginning of the stream</li>
        </ul>
        <t>The following changes that are present in draft-07 can be also implemented by a
draft-02 implementation safely:</t>
        <ul spacing="normal">
          <li>Expanding stream reset error code space from 8 to 32 bits (#115)</li>
          <li>H3_WEBTRANSPORT_SESSION_GONE error code (#75)</li>
          <li>Handling for HTTP GOAWAY (#76)</li>
          <li>DRAIN_WEBTRANSPORT_SESSION capsule (#79)</li>
          <li>Disallowing following redirects automatically (#113)</li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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
0I0dtRe1tS5zQ5CB9P8L+0hQEC5tAAA=

-->

</rfc>
