<?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.39 (Ruby 3.4.9) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-reliable-stream-reset-08" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.34.0 -->
  <front>
    <title>QUIC Stream Resets with Partial Delivery</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-reliable-stream-reset-08"/>
    <author initials="M." surname="Seemann" fullname="Marten Seemann">
      <organization/>
      <address>
        <email>martenseemann@gmail.com</email>
      </address>
    </author>
    <author fullname="奥一穂" asciiFullname="Kazuho Oku">
      <organization>Fastly</organization>
      <address>
        <email>kazuhooku@gmail.com</email>
      </address>
    </author>
    <date year="2026" month="June" day="26"/>
    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 39?>

<t>QUIC defines a RESET_STREAM frame to abort sending on a stream. When a sender
resets a stream, it also stops retransmitting STREAM frames for this stream in
the event of packet loss. On the receiving side, there is no guarantee that any
data sent on that stream is delivered.</t>
      <t>This document defines a new QUIC frame, the RESET_STREAM_AT frame, that allows
resetting a stream, while guaranteeing delivery of stream data up to a certain
byte offset.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://quicwg.github.io/reliable-stream-reset/draft-ietf-quic-reliable-stream-reset.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-quic-reliable-stream-reset/"/>.
      </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/quicwg/reliable-stream-reset"/>.</t>
    </note>
  </front>
  <middle>
    <?line 50?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>QUIC version 1 (<xref target="RFC9000"/>) allows streams to be reset.  When a stream is
reset, the sender doesn't retransmit stream data for the respective stream. On
the receiving side, the QUIC stack is free to surface the stream reset to the
application immediately, without providing any stream data it has received for
that stream.</t>
      <t>Some applications running on top of QUIC use bytes at the beginning of the
stream to communicate critical information related to that stream.
For example, WebTransport (<xref target="WEBTRANSPORT"/>) uses a
variable-length encoded integer to associate a stream with a particular
WebTransport session.</t>
      <t>Since QUIC does not provide guaranteed delivery of steam data for reset streams,
it is possible that a receiver is unable to read critical information. In the
example above, a reset stream can cause the receiver to fail to associate
incoming streams with their respective subcomponent of the application.
Therefore, it is desirable that the receiver can rely on the delivery of
critical information to applications, even if the QUIC stream is reset before
data is read by the application.</t>
      <t>Another use case is relaying data from an external data source. When a relay is
sending data being read from an external source and encounters an error, it
might want to use a stream reset to signal that error, while at the same time
guaranteeing that all data received from the source is delivered to the peer.</t>
      <t>This document extends QUIC with a variant of stream resets that reliably
delivers the beginning of a stream up to a sender-specified offset, communicated
using the RESET_STREAM_AT frame. It can be considered a form of range-based
partial reliability. As a variant of reset, application protocols continue to
treat this stream function as an abrupt termination; see <xref section="2.4" sectionFormat="of" target="RFC9000"/>.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <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="transport-parameter">
      <name>Transport Parameter</name>
      <t>Support for receiving RESET_STREAM_AT frames is advertised by sending the
reset_stream_at (0x1d) transport parameter (<xref section="7.4" sectionFormat="of" target="RFC9000"/>) with an empty value. An implementation that understands this
transport parameter <bcp14>MUST</bcp14> treat the receipt of a non-empty value as a connection
error of type TRANSPORT_PARAMETER_ERROR.</t>
      <t>When using 0-RTT, both endpoints <bcp14>MUST</bcp14> remember the value of this transport
parameter. This allows use of this extension in 0-RTT packets. When the server
accepts 0-RTT data, the server <bcp14>MUST NOT</bcp14> disable this extension on the resumed
connection.</t>
    </section>
    <section anchor="resetstreamat-frame">
      <name>RESET_STREAM_AT Frame</name>
      <t>Conceptually, the RESET_STREAM_AT frame is a RESET_STREAM frame with an
added Reliable Size field.</t>
      <figure anchor="reset-stream-at-format">
        <name>RESET_STREAM_AT Frame Format</name>
        <artwork><![CDATA[
RESET_STREAM_AT Frame {
  Type (i) = 0x24,
  Stream ID (i),
  Application Protocol Error Code (i),
  Final Size (i),
  Reliable Size (i),
}
]]></artwork>
      </figure>
      <t>The RESET_STREAM_AT frame contains the following fields:</t>
      <dl>
        <dt>Stream ID:</dt>
        <dd>
          <t>A variable-length integer encoding of the stream ID of the stream being
terminated.</t>
        </dd>
        <dt>Application Protocol Error Code:</dt>
        <dd>
          <t>A variable-length integer containing the application protocol error code
(<xref section="20.2" sectionFormat="of" target="RFC9000"/>) that indicates why the stream is being closed.</t>
        </dd>
        <dt>Final Size:</dt>
        <dd>
          <t>A variable-length integer indicating the final size of the stream by the
sender, in units of bytes; see <xref section="4.5" sectionFormat="of" target="RFC9000"/>.</t>
        </dd>
        <dt>Reliable Size:</dt>
        <dd>
          <t>A variable-length integer indicating the amount of data that needs to be
delivered to the application even though the stream is reset.</t>
        </dd>
      </dl>
      <t>If the Reliable Size is larger than the Final Size, the receiver <bcp14>MUST</bcp14> close the
connection with a connection error of type FRAME_ENCODING_ERROR.</t>
      <t>As with RESET_STREAM (<xref section="19.4" sectionFormat="of" target="RFC9000"/>), Final Size is subject to
stream and connection-level flow control. An endpoint <bcp14>MUST NOT</bcp14> send a
RESET_STREAM_AT frame that exceeds the largest maximum stream data value
advertised by the receiver for the stream, or that violates the receiver's
maximum data limit. Consequently, the sender might need to defer sending
RESET_STREAM_AT until enough stream or connection-level flow control credit is
available. If an endpoint receives a RESET_STREAM_AT frame that violates either
flow control limit, it <bcp14>MUST</bcp14> close the connection with an error of type
FLOW_CONTROL_ERROR.</t>
      <t>RESET_STREAM_AT frames are ack-eliciting, and <bcp14>MUST</bcp14> only be sent in the
application data packet number space. When lost, they <bcp14>MUST</bcp14> be retransmitted,
unless the stream state has transitioned to "Data Recvd" or "Reset Recvd" due to
transmission and acknowledgement of other frames (see <xref target="multiple-frames"/>).</t>
    </section>
    <section anchor="resetting-streams">
      <name>Resetting Streams</name>
      <t>A sender that wants to reset a stream but also deliver some bytes to the
receiver sends a RESET_STREAM_AT frame with the Reliable Size field specifying
the amount of data to be delivered.</t>
      <t>When using a RESET_STREAM_AT frame, the initiator <bcp14>MUST</bcp14> guarantee reliable
delivery of stream data of at least Reliable Size bytes. If STREAM frames
containing data up to that byte offset are lost, the initiator <bcp14>MUST</bcp14> retransmit
this data, as described in <xref section="13.3" sectionFormat="of" target="RFC9000"/>. Data sent beyond that
byte offset <bcp14>SHOULD NOT</bcp14> be retransmitted.</t>
      <t>As described in <xref section="3.2" sectionFormat="of" target="RFC9000"/>, a stream reset signal might be
suppressed or withheld, and the same applies to a stream reset signal carried in
a RESET_STREAM_AT frame. Similarly, the Reliable Size of the RESET_STREAM_AT
frame does not prevent a QUIC stack from delivering data beyond the specified
offset to the receiving application.</t>
      <t>Note that a Reliable Size value of zero is valid. A RESET_STREAM_AT frame with
this value is logically equivalent to a RESET_STREAM frame (<xref section="3.2" sectionFormat="of" target="RFC9000"/>). When resetting a stream without the intent to deliver any data to
the receiver, the sender <bcp14>MAY</bcp14> use either RESET_STREAM or
RESET_STREAM_AT with a Reliable Size of zero.</t>
      <t>As stated in <xref section="4.5" sectionFormat="of" target="RFC9000"/>, the final size for a stream cannot
change once it is known.</t>
      <section anchor="sending-resetstreamat-after-fin">
        <name>Sending RESET_STREAM_AT after FIN</name>
        <t>Similar to how it is possible to send a RESET_STREAM frame after a STREAM frame
carrying the FIN bit, it is possible to send a RESET_STREAM_AT frame after a
STREAM frame carrying the FIN bit.</t>
        <t>Due to packet reordering, it is possible for a receiver to receive the
RESET_STREAM_AT frame before receiving the STREAM frame carrying the FIN bit.</t>
      </section>
      <section anchor="multiple-frames">
        <name>Multiple RESET_STREAM_AT / RESET_STREAM frames</name>
        <t>The initiator <bcp14>MAY</bcp14> send multiple RESET_STREAM_AT frames for the same stream in
order to reduce the Reliable Size.  It <bcp14>MAY</bcp14> also send a RESET_STREAM frame, which
is equivalent to sending a RESET_STREAM_AT frame with a Reliable Size of 0. When
reducing the Reliable Size, the sender <bcp14>MUST</bcp14> retransmit the RESET_STREAM_AT frame
carrying the smallest Reliable Size as well as stream data up to that size,
until all acknowledgements for the stream data and the RESET_STREAM_AT frame are
received.</t>
        <t>When sending multiple RESET_STREAM_AT or RESET_STREAM frames for the same
stream, the initiator <bcp14>MUST NOT</bcp14> increase the Reliable Size.</t>
        <t>When receiving a RESET_STREAM_AT frame with a lower Reliable Size, the receiver
only needs to provide data up the lower Reliable Size to the application. It
<bcp14>MUST NOT</bcp14> expect the sender to deliver any data beyond that byte offset.</t>
        <t>Reordering of packets might lead to a RESET_STREAM_AT frame with a higher
Reliable Size being received after a RESET_STREAM_AT frame with a lower
Reliable Size.  The receiver <bcp14>MUST</bcp14> ignore any RESET_STREAM_AT frame that
increases the Reliable Size.</t>
        <t>When sending another RESET_STREAM_AT, RESET_STREAM or STREAM frame carrying a FIN
bit for the same stream, the initiator <bcp14>MUST NOT</bcp14> change the Application Error
Code or the Final Size. If the receiver detects a change in those fields, it
<bcp14>MUST</bcp14> close the connection with a connection error of type STREAM_STATE_ERROR
or FINAL_SIZE_ERROR, respectively.</t>
        <t>While multiple RESET_STREAM_AT frames can reduce Reliable Size, some
applications might need to ensure that a minimum amount of data is always
delivered on a stream. Application protocols can establish rules for streams
that ensure that Reliable Size is not reduced below a certain threshold if that
is necessary to ensure correct operation of the protocol.</t>
      </section>
      <section anchor="stream-states">
        <name>Stream States</name>
        <t>In terms of stream state transitions (<xref section="3" sectionFormat="of" target="RFC9000"/>), the effect of a
RESET_STREAM_AT frame is equivalent to that of the FIN bit. Both the
RESET_STREAM_AT frame and the FIN bit on a STREAM frame serve the same role:
signaling the amount of data to be delivered.</t>
        <t>On the sending side, when the first RESET_STREAM_AT frame is sent, the sending
part of the stream enters the "Data Sent" state. Once the RESET_STREAM_AT frame
carrying the smallest Reliable Size and all stream data up to that byte offset
have been acknowledged, the sending part of the stream enters the "Data Recvd"
state. The transition from "Data Sent" to "Data Recvd" happens immediately if
the application resets a stream and all bytes up to the specified Reliable Size
have already been sent and acknowledged. Conversely, if bytes below that offset
still need to be sent or acknowledged, the transition might take multiple
network roundtrips and might require additional flow control credit issued by
the receiver.</t>
        <t>On the receiving side, when a RESET_STREAM_AT frame is received, the receiving
part of the stream enters the "Size Known" state. Once all data up to the
smallest Reliable Size have been received, it enters the "Data Recvd" state.
Similarly to the sending side, transition from "Size Known" to "Data Recvd"
might happen immediately, or might require additional network roundtrips while
the sender transmits remaining bytes up to the smallest Reliable Size. This might
require the receiver to issue additional flow control credit.</t>
      </section>
    </section>
    <section anchor="implementation-guidance">
      <name>Implementation Guidance</name>
      <t>In terms of transport machinery, the RESET_STREAM_AT frame is more akin to the
FIN bit than to the RESET_STREAM frame (see <xref target="stream-states"/>). By sending a
RESET_STREAM_AT frame, the sender commits to delivering all bytes up to the
Reliable Size.</t>
      <t>To the endpoints, the main differences from closing a stream by using the FIN
bit are:</t>
      <ul spacing="normal">
        <li>
          <t>the offset up to which the sender commits to sending might be smaller than
Final Size,</t>
        </li>
        <li>
          <t>this offset might get reduced by subsequent RESET_STREAM_AT frames, and</t>
        </li>
        <li>
          <t>the closure is accompanied by an error code.</t>
        </li>
      </ul>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>As the RESET_STREAM_AT frame is an extension to the stream machinery defined in
QUIC version 1, the security considerations of <xref target="RFC9000"/> apply accordingly.
Specifically, given that RESET_STREAM_AT frames indicate the offset up to which
data is reliably transmitted, endpoints <bcp14>SHOULD</bcp14> remain vigilant against resource
commitment and exhaustion attacks even after sending or receiving RESET_STREAM_AT
frames, until the stream reaches the terminal state.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="quic-transport-parameter">
        <name>QUIC Transport Parameter</name>
        <t>This document registers the reset_stream_at transport parameter in the
"QUIC Transport Parameters" registry established in <xref section="22.3" sectionFormat="of" target="RFC9000"/>.
The following fields are registered:</t>
        <dl>
          <dt>Value:</dt>
          <dd>
            <t>0x1d</t>
          </dd>
          <dt>Parameter Name:</dt>
          <dd>
            <t>reset_stream_at</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>Provisional (note that, prior to publication, the value will be replaced by a new value lower than 64)</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF (iesg@ietf.org)</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>QUIC Working Group (quic@ietf.org)</t>
          </dd>
        </dl>
      </section>
      <section anchor="quic-frame-types">
        <name>QUIC Frame Types</name>
        <t>This document registers one new value in the "QUIC Frame Types" registry
established in <xref section="22.4" sectionFormat="of" target="RFC9000"/>. The following fields are registered:</t>
        <dl>
          <dt>Value:</dt>
          <dd>
            <t>0x24</t>
          </dd>
          <dt>Frame Type Name:</dt>
          <dd>
            <t>RESET_STREAM_AT</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>Provisional (will become Permanent once this document is approved)</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Change Controller:</dt>
          <dd>
            <t>IETF (iesg@ietf.org)</t>
          </dd>
          <dt>Contact:</dt>
          <dd>
            <t>QUIC Working Group (quic@ietf.org)</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC9000">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol. QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances. Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="WEBTRANSPORT">
          <front>
            <title>WebTransport over HTTP/3</title>
            <author fullname="Alan Frindell" initials="A." surname="Frindell">
              <organization>Facebook</organization>
            </author>
            <author fullname="Eric Kinnear" initials="E." surname="Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Victor Vasiliev" initials="V." surname="Vasiliev">
              <organization>Google</organization>
            </author>
            <date day="2" month="March" year="2026"/>
            <abstract>
              <t>   WebTransport [OVERVIEW] is a protocol framework that enables
   application clients constrained by the Web security model to
   communicate with a remote application server using a secure
   multiplexed transport.  This document describes a WebTransport
   protocol that is based on HTTP/3 [HTTP3] and provides support for
   unidirectional streams, bidirectional streams, and datagrams, all
   multiplexed within the same HTTP/3 connection.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-http3-15"/>
        </reference>
      </references>
    </references>
    <?line 348?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
