<?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.10 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-version-negotiation-08" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.10 -->
  <front>
    <title abbrev="QUIC Compatible VN">Compatible Version Negotiation for QUIC</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-version-negotiation-08"/>
    <author initials="D." surname="Schinazi" fullname="David Schinazi">
      <organization>Google LLC</organization>
      <address>
        <postal>
          <street>1600 Amphitheatre Parkway</street>
          <city>Mountain View</city>
          <region>CA</region>
          <code>94043</code>
          <country>United States of America</country>
        </postal>
        <email>dschinazi.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>Mozilla</organization>
      <address>
        <email>ekr@rtfm.com</email>
      </address>
    </author>
    <date year="2022" month="June" day="08"/>
    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    <keyword>quic</keyword>
    <keyword>version</keyword>
    <keyword>negotiation</keyword>
    <keyword>compatible</keyword>
    <keyword>incompatible</keyword>
    <keyword>not quite tls</keyword>
    <keyword>tls-ng</keyword>
    <abstract>
      <t>QUIC does not provide a complete version negotiation mechanism but instead only
provides a way for the server to indicate that the version the client chose is
unacceptable. This document describes a version negotiation mechanism that
allows a client and server to select a mutually supported version. Optionally,
if the client's chosen version and the negotiated version share a compatible
first flight format, the negotiation can take place without incurring an extra
round trip.</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/version-negotiation/draft-ietf-quic-version-negotiation.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-quic-version-negotiation/"/>.
      </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/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/quicwg/version-negotiation"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>The version-invariant properties of QUIC <xref target="INV"/> define a Version
Negotiation packet but do not specify how an endpoint reacts when it receives
one. QUIC version 1 <xref target="QUIC"/> allows the server to use a Version
Negotiation packet to indicate that the version the client chose is
unacceptable, but doesn't allow the client to safely make use of that
information to create a new connection with a mutually supported version.</t>
      <t>With proper safety mechanisms in place, the Version Negotiation packet can be
part of a mechanism to allow two QUIC implementations to negotiate between two
totally disjoint versions of QUIC. This document specifies version negotiation
using Version Negotiation packets, which adds an extra round trip to connection
establishment if needed.</t>
      <t>It is beneficial to avoid additional round trips whenever possible, especially
given that most incremental versions are broadly similar to the the previous
version. This specification also defines a simple version negotiation mechanism
which leverages similarities between versions and can negotiate between the set
of "compatible" versions without additional round trips.</t>
      <section anchor="conventions">
        <name>Conventions</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 anchor="definitions">
        <name>Definitions</name>
        <t>The document uses the following terms:</t>
        <ul spacing="normal">
          <li>In the context of a given QUIC connection, the "first flight" of packets
refers to the set of packets the client creates and sends to initiate the
connection before it has heard back from the server.</li>
          <li>In the context of a given QUIC connection, the "client's chosen version" is
the QUIC version of the connection's first flight.</li>
          <li>The "original version" is the QUIC version of the very first packet the client
sends to the server. If version negotiation spans multiple connections (see
<xref target="connections"/>), the original version is equal to the client's chosen version
of the first QUIC connection.</li>
          <li>The "negotiated version" is the QUIC version in use on the connection once the
version negotiation process completes.</li>
          <li>The "Maximum Segment Lifetime" (MSL) represents the time a QUIC packet can
exist in the network. Implementations can make this configurable, and a
<bcp14>RECOMMENDED</bcp14> value is one minute. Note that the term "segment" here originated
in <xref section="3.3" sectionFormat="of" target="TCP"/>.</li>
        </ul>
      </section>
    </section>
    <section anchor="version-negotiation-mechanism">
      <name>Version Negotiation Mechanism</name>
      <t>This document specifies two means of performing version negotiation: one
"incompatible" which requires a round trip and is applicable to all versions,
and one "compatible" that allows saving the round trip but only applies when the
versions are compatible.</t>
      <t>The client initiates a QUIC connection by choosing an initial version and
sending a first flight of QUIC packets with a long header to the server <xref target="INV"/>.
The client's first flight includes Version Information (see <xref target="vers-info"/>) which
will be used to optionally enable compatible version negotation (see
<xref target="compat-vn"/>), and to prevent version downgrade attacks (see <xref target="downgrade"/>).</t>
      <t>Upon receiving this first flight, the server verifies whether it knows how to
parse first flights from the original version. If it does not, then it starts
incompatible version negotiation, see <xref target="incompat-vn"/>, which causes the client
to initiate a new connection with a different version. For instance, if the
client initiates a connection with version A and the server starts incompatible
version negotiation and the client then initiates a new connection with version
B, we say that the first connection's client chosen version is A, the second
connection's client chosen version is B, and the original version for the entire
sequence is A.</t>
      <t>If the server can parse the first flight, it can either establish the connection
using the client's chosen version, or it <bcp14>MAY</bcp14> select any other compatible
version, as described in <xref target="compat-vn"/>.</t>
      <t>Note that it is possible for a server to have the ability to parse the first
flight of a given version without fully supporting it, in the sense that it
implements enough of the version's specification to parse first flight packets
but not enough to fully establish a connection using that version.</t>
      <section anchor="incompat-vn">
        <name>Incompatible Version Negotiation</name>
        <t>The server starts incompatible version negotiation by sending a Version
Negotiation packet. This packet <bcp14>SHALL</bcp14> include each entry from the server's set
of Offered Versions (see <xref target="server-fleet"/>) in a Supported Version field. The
server <bcp14>MAY</bcp14> add reserved versions (as defined in <xref section="6.3" sectionFormat="of" target="QUIC"/>) in
Supported Version fields.</t>
        <t>Clients will ignore a Version Negotiation packet if it contains the original
version attempted by the client. The client also ignores a Version Negotiation
packet that contains incorrect connection ID fields; see <xref section="6" sectionFormat="of" target="INV"/>.</t>
        <t>Upon receiving the Version Negotiation packet, the client will search for a
version it supports in the list provided by the server. If it doesn't find one,
it aborts the connection attempt. Otherwise, it selects a mutually supported
version and sends a new first flight with that version - this version is now the
negotiated version.</t>
        <t>The new first flight will allow the endpoints to establish a connection using
the negotiated version. The handshake of the negotiated version will exchange
version information (see <xref target="vers-info"/>) required to ensure that version
negotiation was genuine, i.e. that no attacker injected packets in order to
influence the version negotiation process, see <xref target="downgrade"/>.</t>
      </section>
      <section anchor="compatible-versions">
        <name>Compatible Versions</name>
        <t>If A and B are two distinct versions of QUIC, A is said to be "compatible" with
B if it is possible to take a first flight of packets from version A and convert
it into a first flight of packets from version B. As an example, if versions A
and B are absolutely equal in their wire image and behavior during the handshake
but differ after the handshake, then A is compatible with B and B is compatible
with A. Note that the conversion of the first flight can be lossy: some data
such as QUIC version 1 0-RTT packets could be ignored during conversion and
retransmitted later.</t>
        <t>Version compatibility is not symmetric: it is possible for version A to be
compatible with version B and for B not to be compatible with A. This could
happen for example if version B is a strict superset of version A: if version A
includes the concept of streams and STREAM frames, and version B includes the
concepts of streams and tubes along with STREAM and TUBE frames, then A would be
compatible with B but B would not be compatible with A.</t>
        <t>Note that version compatibility does not mean that every single possible
instance of a first flight will succeed in conversion to the other version. A
first flight using version A is said to be "compatible" with version B if two
conditions are met: first that version A is compatible with version B, and
second that the conversion of this first flight to version B is well-defined.
For example, if version B is equal to A in all aspects except it introduced a
new frame in its first flight that version A cannot parse or even ignore, then B
could still be compatible with A as conversions would succeed for connections
where that frame is not used. In this example, first flights using version B
that carry this new frame would not be compatible with version A.</t>
        <t>When a new version of QUIC is defined, it is assumed to not be compatible with
any other version unless otherwise specified. Similarly, no other version is
compatible with the new version unless otherwise specified. Implementations <bcp14>MUST
NOT</bcp14> assume compatibility between versions unless explicitly specified.</t>
        <t>Note that both endpoints might disagree on whether two versions are compatible
or not. For example, two versions could have been defined concurrently and then
specified as compatible in a third document much later - in that scenario one
endpoint might be aware of the compatibility document while the other may not.</t>
      </section>
      <section anchor="compat-vn">
        <name>Compatible Version Negotiation</name>
        <t>When the server can parse the client's first flight using the client's chosen
version, it can extract the client's Version Information structure (see
<xref target="vers-info"/>). This contains the list of versions that the client knows its
first flight is compatible with.</t>
        <t>In order to perform compatible version negotiation, the server <bcp14>MUST</bcp14> select one
of these versions that (1) it supports and (2) it knows the client's chosen
version to be compatible with. This selected version is now the negotiated
version. After selecting it, the server attempts to convert the client's first
flight into that version, and replies to the client as if it had received the
converted first flight.</t>
        <t>If those formats are identical, as in cases where the negotiated version is the
same as the client's chosen version, then this will be the identity transform.
If the first flight is correctly formatted, then this conversion process cannot
fail by definition of the first flight being compatible; if the server is unable
to convert the first flight, it <bcp14>MUST</bcp14> abort the handshake.</t>
        <t>If a document specifies that a QUIC version is compatible with another, that
document <bcp14>MUST</bcp14> specify the mechanism by which clients are made aware of the
negotiated version. An example of such a mechanism is to have the client
determine the server's negotiated version by examining the QUIC long header
Version field. Note that, in this example mechanism, it is possible for the
server to initially send packets with the client's chosen version before
switching to the negotiated version (this can happen when the client's Version
Information structure spans multiple packets; in that case the server might
acknowledge the first packet in the client's chosen version and later switch to
a different negotiated version). Any set of mutually compatible versions <bcp14>SHOULD</bcp14>
use the same mechanism.</t>
        <t>Note that, after the first flight is converted to the negotiated version, the
handshake completes in the negotiated version. The entire handshake (including
the converted first flight) needs to conform to the rules of the negotiated
version. For instance, if the negotiated version requires that the 5-tuple
remain stable for the entire handshake (as QUIC version 1 does), then this
applies to the entire handshake, including the first flight.</t>
        <t>Note also that the client can disable compatible version negotiation by only
including the Chosen Version in the Other Versions field of the Version
Information transport parameter.</t>
        <t>If the server does not find a compatible version (including the client's chosen
version), it will perform incompatible version negotiation instead, see
<xref target="incompat-vn"/>.</t>
        <t>Note that it is possible to have incompatible version negotation followed by
compatible version negotiation. For instance, if version A is compatible with B
and C is compatible with D, the following scenario could occur:</t>
        <figure anchor="fig-dual-example">
          <name>Combined Negotiation Example</name>
          <artwork><![CDATA[
Client                                          Server

Chosen = A, Other Versions = (A, B) ----------------->
<------------------------ Version Negotiation = (D, C)

Chosen = C, Other Versions = (C, D) ----------------->
<----------------- Chosen = D, Other Versions = (D, C)
]]></artwork>
        </figure>
        <t>In this example, the client selected C from the server's Version Negotiation
packet, but the server preferred D and then selected it from the client's offer.</t>
      </section>
      <section anchor="connections">
        <name>Connections and Version Negotiation</name>
        <t>QUIC connections are shared state between a client and a server <xref target="INV"/>. The
compatible version negotiation mechanism defined in this document (see
<xref target="compat-vn"/>) is performed as part of a single QUIC connection; that is, the
packets with the client's chosen version are part of the same connection as the
packets with the negotiated version.</t>
        <t>In comparison, the incompatible version negotiation mechanism, which leverages
QUIC Version Negotiation packets (see <xref target="incompat-vn"/>) conceptually operates
across two QUIC connections: the connection attempt prior to receiving the
Version Negotiation packet is distinct from the connection with the incompatible
version that follows.</t>
        <t>Note that this separation across two connections is conceptual: it applies to
normative requirements on QUIC connections, but does not require implementations
to internally use two distinct connection objects.</t>
      </section>
      <section anchor="client-choice-of-original-version">
        <name>Client Choice of Original Version</name>
        <t>When the client picks its original version, it will try to avoid incompatible
version negotiation to save a round trip. Therefore, the client <bcp14>SHOULD</bcp14> pick an
original version to maximize the combined probability that both:</t>
        <ul spacing="normal">
          <li>The server knows how to parse first flights from the original version.</li>
          <li>The original version is compatible with the client's preferred version.</li>
        </ul>
        <t>Without additional information, this could mean selecting the oldest version
that the client supports, while advertising newer compatible versions in the
client's first flight.</t>
      </section>
    </section>
    <section anchor="vers-info">
      <name>Version Information</name>
      <t>During the handshake, endpoints will exchange Version Information, which
consists of a chosen version and a list of other versions. Any version of QUIC
that supports this mechanism <bcp14>MUST</bcp14> provide a mechanism to exchange Version
Information in both directions during the handshake, such that this data is
authenticated.</t>
      <t>In QUIC version 1, the Version Information is transmitted using a new transport
parameter, version_information. The contents of Version Information are shown
below (using the notation from the "Notational Conventions" section of <xref target="QUIC"/>):</t>
      <figure anchor="fig-vi-format">
        <name>Version Information Format</name>
        <artwork><![CDATA[
Version Information {
  Chosen Version (32),
  Other Versions (32) ...,
}
]]></artwork>
      </figure>
      <t>The content of each field is described below:</t>
      <dl>
        <dt>Chosen Version:</dt>
        <dd>
          <t>The version that the sender has chosen to use for this connection. In most
cases, this field will be equal to the value of the Version field in the long
header that carries this data; however future versions or extensions can choose
to set different values in the long header Version field.</t>
        </dd>
      </dl>
      <t>The contents of the Other Versions field depends on whether it is sent by the
client or by the server.</t>
      <dl spacing="compact">
        <dt>Client-Sent Other Versions:</dt>
        <dd>
          <t>When sent by a client, the Other Versions field lists all the versions that
this first flight is compatible with, ordered by descending preference. Note
that the version in the Chosen Version field <bcp14>MUST</bcp14> be included in this list to
allow the client to communicate the chosen version's preference. Note that this
preference is only advisory, servers <bcp14>MAY</bcp14> choose to use their own preference
instead.</t>
        </dd>
        <dt>Server-Sent Other Versions:</dt>
        <dd>
          <t>When sent by a server, the Other Versions field lists all the Fully-Deployed
Versions of this server deployment, see <xref target="server-fleet"/>. Note that the version
in the Chosen Version field is not necessarily included in this list, because
the server operator could be in the process of removing support for this
version. For the same reason, the Other Versions field <bcp14>MAY</bcp14> be empty.</t>
        </dd>
      </dl>
      <t>Clients and servers <bcp14>MAY</bcp14> both include versions following the pattern 0x?a?a?a?a
in their Other Versions list. Those versions are reserved to exercise version
negotiation (see the Versions section of <xref target="QUIC"/>), and will never be selected
when choosing a version to use.</t>
    </section>
    <section anchor="downgrade">
      <name>Version Downgrade Prevention</name>
      <t>Clients <bcp14>MUST</bcp14> ignore any received Version Negotiation packets that contain the
version that they initially attempted. A client that makes a connection attempt
based on information received from a Version Negotiation packet <bcp14>MUST</bcp14> ignore any
Version Negotiation packets it receives in response to that connection attempt.</t>
      <t>Both endpoints <bcp14>MUST</bcp14> parse their peer's Version Information during the handshake.
If parsing the Version Information failed (for example, if it is too short or if
its length is not divisible by four), then the endpoint <bcp14>MUST</bcp14> close the
connection; if the connection was using QUIC version 1, that connection closure
<bcp14>MUST</bcp14> use a transport error of type TRANSPORT_PARAMETER_ERROR. If an endpoint
receives a Chosen Version equal to zero, or any Other Version equal to zero, it
<bcp14>MUST</bcp14> treat it as a parsing failure.</t>
      <t>Every QUIC version that supports version negotiation <bcp14>MUST</bcp14> define a method for
closing the connection with a version negotiation error. For QUIC version 1,
version negotiation errors are signaled using a transport error of type
VERSION_NEGOTIATION_ERROR; see <xref target="iana-error"/>.</t>
      <t>If the Version Information was missing, the endpoints <bcp14>MAY</bcp14> complete the
handshake. However, if a client has reacted to a Version Negotiation packet and
the Version Information was missing, the client <bcp14>MUST</bcp14> close the connection with a
version negotiation error.</t>
      <t>If the client received and acted on a Version Negotiation packet, the client
<bcp14>MUST</bcp14> validate the server's Other Versions field. The Other Versions field is
validated by confirming that the client would have attempted the same version
with knowledge of the versions the server supports. That is, the client would
have selected the same version if it received a Version Negotiation packet that
listed the versions in the server's Other Versions field, plus the negotiated
version. If the client would have selected a different version, the client <bcp14>MUST</bcp14>
close the connection with a version negotiation error. In particular, if the
client reacted to a Version Negotiation packet and the server's Other Versions
field is empty, the client <bcp14>MUST</bcp14> close the connection with a version negotiation
error. These connection closures prevent an attacker from being able to use
forged Version Negotiation packets to force a version downgrade.</t>
      <t>This validation of Other Versions is not sufficient to prevent downgrade.
Downgrade prevention also depends on the client ignoring Version Negotiation
packets that contain the original version; see <xref target="incompat-vn"/>.</t>
      <t>After the process of version negotiation in this document completes, the version
in use for the connection is the version that the server sent in the Chosen
Version field of its Version Information. That remains true even if other
versions were used in the Version field of long headers at any point in the
lifetime of the connection. In particular, since during compatible version
negotiation the client is made aware of the negotiated version by the QUIC long
header version (see <xref target="compat-vn"/>), clients <bcp14>MUST</bcp14> validate that the server's
Chosen Version is equal to the negotiated version; if they do not match, the
client <bcp14>MUST</bcp14> close the connection with a version negotiation error. This prevents
an attacker's ability to influence version negotiation by forging the Version
long header field.</t>
    </section>
    <section anchor="server-fleet">
      <name>Server Deployments of QUIC</name>
      <t>While this document mainly discusses a single QUIC server, it is common for
deployments of QUIC servers to include a fleet of multiple server instances. We
therefore define the following terms:</t>
      <dl spacing="compact">
        <dt>Acceptable Versions:</dt>
        <dd>
          <t>This is the set of versions supported by a given server instance. More
specifically, these are the versions that a given server instance will use if a
client sends a first flight using them.</t>
        </dd>
        <dt>Offered Versions:</dt>
        <dd>
          <t>This is the set of versions that a given server instance will send in a
Version Negotiation packet if it receives a first flight from an unknown
version. This set will most often be equal to the Acceptaple Versions set,
except during short transitions while versions are added or removed (see below).</t>
        </dd>
        <dt>Fully-Deployed Versions:</dt>
        <dd>
          <t>This is the set of QUIC versions that is supported and negotiated by every
single QUIC server instance in this deployment. If a deployment only contains a
single server instance, then this set is equal to the Offered Versions set,
except during short transitions while versions are added or removed (see below).</t>
        </dd>
      </dl>
      <t>If a deployment contains multiple server instances, software updates may not
happen at exactly the same time on all server instances. Because of this, a
client might receive a Version Negotiation packet from a server instance that
has already been updated and the client's resulting connection attempt might
reach a different server instance which hasn't been updated yet.</t>
      <t>However, even when there is only a single server instance, it is still possible
to receive a stale Version Negotiation packet if the server performs its
software update while the Version Negotiation packet is in flight.</t>
      <t>This could cause the version downgrade prevention mechanism described in
<xref target="downgrade"/> to falsely detect a downgrade attack. To avoid that, server
operators <bcp14>SHOULD</bcp14> perform a three-step process when they wish to add or remove
support for a version:</t>
      <t>When adding support for a new version:</t>
      <ul spacing="normal">
        <li>The first step is to progressively add support for the new version to all
server instances. This step updates the Acceptable Versions but not the
Offered Versions nor the Fully-Deployed Versions. Once all server instances
have been updated, operators wait for at least one MSL to allow any in-flight
Version Negotiation packets to arrive.</li>
        <li>Then, the second step is to progressively add the new version to Offered
Versions on all server instances. Once complete, operators wait for at least
another MSL.</li>
        <li>Finally, the third step is to progressively add the new version to
Fully-Deployed Versions on all server instances.</li>
      </ul>
      <t>When removing support for a version:</t>
      <ul spacing="normal">
        <li>The first step is to progressively remove the version from Fully-Deployed
Versions on all server instances. Once it has been removed on all server
instances, operators wait for at least one MSL to allow any in-flight Version
Negotiation packets to arrive.</li>
        <li>Then, the second step is to progressively remove the version from Offered
Versions on all server instances. Once complete, operators wait for at least
another MSL.</li>
        <li>Finally, the third step is to progressively remove support for the version
from all server instances. That step updates the Acceptable Versions.</li>
      </ul>
      <t>Note that this opens connections to version downgrades (but only for
partially-deployed versions) during the update window, since those could be due
to clients communicating with both updated and non-updated server instances.</t>
    </section>
    <section anchor="application-layer-protocol-considerations">
      <name>Application Layer Protocol Considerations</name>
      <t>When a client creates a QUIC connection, its goal is to use an application layer
protocol. Therefore, when considering which versions are compatible, clients
will only consider versions that support one of the intended application layer
protocols. If the client's first flight advertises multiple Application Layer
Protocol Negotiation (ALPN) <xref target="ALPN"/> tokens and multiple compatible
versions, it is possible for some application layer protocols to not be able to
run over some of the offered compatible versions. It is the server's
responsibility to only select an ALPN token that can run over the compatible
QUIC version that it selects.</t>
      <t>A given ALPN token <bcp14>MUST NOT</bcp14> be used with a new QUIC version different from the
version for which the ALPN token was originally defined, unless all the
following requirements are met:</t>
      <ul spacing="normal">
        <li>The new QUIC version supports the transport features required by the
application protocol.</li>
        <li>The new QUIC version supports ALPN.</li>
        <li>The version of QUIC for which the ALPN token was originally defined is
compatible with the new QUIC version.</li>
      </ul>
      <t>When incompatible version negotiation is in use, the second connection which is
created in response to the received version negotiation packet <bcp14>MUST</bcp14> restart its
application layer protocol negotiation process without taking into account the
original version.</t>
    </section>
    <section anchor="considerations-for-future-versions">
      <name>Considerations for Future Versions</name>
      <t>In order to facilitate the deployment of future versions of QUIC, designers of
future versions <bcp14>SHOULD</bcp14> attempt to design their new version such that commonly
deployed versions are compatible with it.</t>
      <t>QUIC version 1 defines multiple features which are not documented in the QUIC
invariants. Since at the time of writing QUIC version 1 is widely deployed,
this section discusses considerations for future versions to help with
compatibility with QUIC version 1.</t>
      <section anchor="interaction-with-retry">
        <name>Interaction with Retry</name>
        <t>QUIC version 1 features Retry packets, which the server can send to validate the
client's IP address before parsing the client's first flight. A server that
sends a Retry packet can do so before parsing the client's first flight. A
server that sends a Retry packet therefore might not have processed the client's
Version Information before doing so.</t>
        <t>If a future document wishes to define compatibility between two versions that
support retry, that document <bcp14>MUST</bcp14> specify how version negotiation (both
compatible and incompatible) interacts with retry during a handshake that
requires both. For example, that could be accomplished by having the server send
a Retry packet in the original version first thereby validating the client's IP
address before attempting compatible version negotiation. If both versions
support authenticating Retry packets, the compatibility defition needs to define
how to authenticate the Retry in the negotiated version handshake even though
the Retry itself was sent using the client's chosen version.</t>
      </section>
      <section anchor="interaction-with-tls-resumption">
        <name>Interaction with TLS resumption</name>
        <t>QUIC version 1 uses TLS 1.3, which supports session resumption by sending
session tickets in one connection that can be used in a later connection; see
<xref section="2.2" sectionFormat="of" target="TLS"/>. New versions that also use TLS 1.3 <bcp14>SHOULD</bcp14>
mandate that their session tickets are tightly scoped to one version of QUIC;
i.e., require that clients not use them across multiple version and that servers
validate this client requirement.</t>
      </section>
      <section anchor="interaction-with-0-rtt">
        <name>Interaction with 0-RTT</name>
        <t>QUIC version 1 allows sending data from the client to the server during the
handshake, by using 0-RTT packets. If a future document wishes to define
compatibility between two versions that support 0-RTT, that document <bcp14>MUST</bcp14>
address the scenario where there are 0-RTT packets in the client's first flight.
For example, this could be accomplished by defining which transformations are
applied to 0-RTT packets. That document could specify that compatible version
negotiation causes 0-RTT data to be rejected by the server.</t>
      </section>
    </section>
    <section anchor="special-handling-for-quic-version-1">
      <name>Special Handling for QUIC Version 1</name>
      <t>Because QUIC version 1 was the only IETF Standards Track version of QUIC
published before this document, it is handled specially as follows: if a client
is starting a QUIC version 1 connection in response to a received Version
Negotiation packet, and the version_information transport parameter is missing
from the server's transport parameters, then the client <bcp14>SHALL</bcp14> proceed as if the
server's transport parameters contained a version_information transport
parameter with a Chosen Version set to 0x00000001 and an Other Version list
containing exactly one version set to 0x00000001. This allows version
negotiation to work with servers that only support QUIC version 1. Note that
implementations which wish to use version negotiation to negotiate versions
other than QUIC version 1 will need to implement the version negotiation
mechanism defined in this document.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The security of this version negotiation mechanism relies on the authenticity of
the Version Information exchanged during the handshake. In QUIC version 1,
transport parameters are authenticated ensuring the security of this mechanism.
Negotiation between compatible versions will have the security of the weakest
common version.</t>
      <t>The requirement that versions not be assumed compatible mitigates the
possibility of cross-protocol attacks, but more analysis is still needed here.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="quic-transport-parameter">
        <name>QUIC Transport Parameter</name>
        <t>This document registers a new value in the "QUIC Transport Parameters" registry
maintained at &lt;<eref target="https://www.iana.org/assignments/quic"/>&gt;.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0xFF73DB</t>
          </dd>
          <dt>Parameter Name:</dt>
          <dd>
            <t>version_information</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>provisional</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
        <t>When this document is approved, it will request permanent allocation of a
codepoint in the 0-63 range to replace the provisional codepoint described above.</t>
      </section>
      <section anchor="iana-error">
        <name>QUIC Transport Error Code</name>
        <t>This document registers a new value in the "QUIC Transport Error Codes" registry
maintained at &lt;<eref target="https://www.iana.org/assignments/quic"/>&gt;.</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x53F8</t>
          </dd>
          <dt>Code:</dt>
          <dd>
            <t>VERSION_NEGOTIATION_ERROR</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>Error negotiating version</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>provisional</t>
          </dd>
          <dt>Specification:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
        <t>When this document is approved, it will request permanent allocation of a
codepoint in the 0-63 range to replace the provisional codepoint described above.</t>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>Normative References</name>
      <reference anchor="INV">
        <front>
          <title>Version-Independent Properties of QUIC</title>
          <author fullname="M. Thomson" initials="M." surname="Thomson">
            <organization/>
          </author>
          <date month="May" year="2021"/>
          <abstract>
            <t>This document defines the properties of the QUIC transport protocol that are common to all versions of the protocol.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="8999"/>
        <seriesInfo name="DOI" value="10.17487/RFC8999"/>
      </reference>
      <reference anchor="QUIC">
        <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="TCP">
        <front>
          <title>Transmission Control Protocol</title>
          <author fullname="J. Postel" initials="J." surname="Postel">
            <organization/>
          </author>
          <date month="September" year="1981"/>
        </front>
        <seriesInfo name="STD" value="7"/>
        <seriesInfo name="RFC" value="793"/>
        <seriesInfo name="DOI" value="10.17487/RFC0793"/>
      </reference>
      <reference anchor="ALPN">
        <front>
          <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
          <author fullname="S. Friedl" initials="S." surname="Friedl">
            <organization/>
          </author>
          <author fullname="A. Popov" initials="A." surname="Popov">
            <organization/>
          </author>
          <author fullname="A. Langley" initials="A." surname="Langley">
            <organization/>
          </author>
          <author fullname="E. Stephan" initials="E." surname="Stephan">
            <organization/>
          </author>
          <date month="July" year="2014"/>
          <abstract>
            <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="7301"/>
        <seriesInfo name="DOI" value="10.17487/RFC7301"/>
      </reference>
      <reference anchor="TLS">
        <front>
          <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
          <author fullname="E. Rescorla" initials="E." surname="Rescorla">
            <organization/>
          </author>
          <date month="August" year="2018"/>
          <abstract>
            <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
            <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="8446"/>
        <seriesInfo name="DOI" value="10.17487/RFC8446"/>
      </reference>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors would like to thank Nick Banks, Mike Bishop, Ryan Hamilton, Roberto
Peon, Anthony Rossi, and Martin Thomson for their input and contributions.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
Du7Y5gGmuB04SPU/jQYuQ0R3AAA=

-->

</rfc>
