<?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.17 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-version-negotiation-10" category="std" consensus="true" submissionType="IETF" updates="8999" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.14.2 -->
  <front>
    <title abbrev="QUIC Compatible VN">Compatible Version Negotiation for QUIC</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-version-negotiation-10"/>
    <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="September" day="27"/>
    <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. This document updates RFC 8999.</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/"/>.
        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/version-negotiation"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>The version-invariant properties of QUIC <xref target="QUIC-INVARIANTS"/> 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 original version and
sending a first flight of QUIC packets with a long header to the server
<xref target="QUIC-INVARIANTS"/>. The client's first flight includes Version Information (see
<xref target="vers-info"/>) which will be used to optionally enable compatible version
negotiation (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; see <xref target="downgrade"/>. The client also ignores a
Version Negotiation packet that contains incorrect connection ID fields; see
<xref section="6" sectionFormat="of" target="QUIC-INVARIANTS"/>.</t>
        <t>Upon receiving the Version Negotiation packet, the client <bcp14>SHALL</bcp14> search for a
version it supports in the list provided by the server. If it doesn't find one,
it <bcp14>SHALL</bcp14> abort the connection attempt. Otherwise, it <bcp14>SHALL</bcp14> select 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
concept of streams and the hypothetical concept of 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. If the negotiated version has
requirements that apply during the handshake, those requirements apply to the
entire handshake, including the converted first flight. In particular, if the
negotiated version mandates that endpoints perform validations on handshake
packets, endpoints <bcp14>MUST</bcp14> also perform such validations on the converted first
flight. For instance, if the negotiated version requires that the 5-tuple remain
stable for the entire handshake (as QUIC version 1 does), then both endpoints
need to validate the 5-tuple of all handshake packets, including the converted
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 negotiation 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="QUIC-INVARIANTS"/>. 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 Acceptable 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 definition 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="QUIC-INVARIANTS">
        <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="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:
H4sIAAAAAAAAA+Vd644bx5X+X0/RO/rhmQVJS5Zjx+M4G45mFA8gjbQzYxtB
EBhNdpGsqNnNdDWHogXlWfZZ9sn2XOreRY6cbIAF1obhYV/qcurUOd+5VY/H
Y9GrvpbnxYt2vSl7Natl8aPstGqb4kYu217BRfh70XbFf/5w/UKUs1knH87p
R/TSjajaeVOuoa2qKxf9WMl+Mf7bVs3HD9zguPENjp89FdDKc6G3s7XSeLvf
b+Dd66v7l2Je9vBotz8vdF+JspPleXHflY3etF0vdkvuXjTb9Ux256KCx8/F
vG20bPRWnxd9t5Viu8Hr8Ou333zzjXiQzRYeKopl124358UJtnACv7nbk5/a
7p1qlsUf8TZeX5eqhus4gT/gVCZtt8TrZTdfwfVV32/0+eef42N4ST3IiX3s
c7zw+axrd1p+jg18ji8uVb/azkyTu+XnGargYzUOug964Mcn/PpEtbkXP/8E
kk9W/bo+Ee/kftd2FZJiXOCz9Id5nv4O3qHfc7fK9FM1yYWm7bGhXhZ9rekK
/H/cLEW57VdtRz3BfwW8CatxOSnugFxN+Yuii8wyl+WDquIbQMjz4o9tuwTu
evXqBV3TfSclEOfZV0+fFtP1ZgVEkSVcLN6W3btduaen5qoH1nndbpu+VE3x
o5I7ut7JJcwJeH3Kj7UV9PzNl0+/fG5+wwvIdD80MBkYTY9LUbQL6El2al7S
U5IZo9JmrLTqf1ji1QkQJp7s1aS4lXrednUZTPYKGouvw1zLRv1CNMeR/6Lq
OupOvuv+0PWLNXUhxHg8LsoZUKOc90LQXqxaGCsuxaZrgZayKGnhagnrYlY3
XNliLecr6FOvi9m2x9H2sqyKtqn3wrSgoQkgKe19IHOhZQcNFX0LT1cK9yhc
Lnu6Z3vAv+e1kk1fzFetloXSYtuU87nc9CUwzKS4XykNg51v1/gQ9DLv1Iz6
Oj5K7EqUdQ2bCqfGfZRNFQxLy1rO4WKx3vZbeHRf6O0GRQYspml8UrzZYMN4
dyTUIhjwZ5qH3LiBYOt43w7IN1PoFUglQ2KzFRaq032xqNVy1SPN1mU/il7H
9+Yl0Kh8J4tNXc5lsQP+bYn8823XofyB+/I9rKsAOYTdd2qT0swItuL25QuS
bRPDEGtVVTAO8aS4Bj5uq+2ctrC49+szVs1D2amyITbZyK5XzOHEQh8+/Bv+
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
tr098LqHKW57DlP9D6/XRbXweAAA

-->

</rfc>
