<?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-13" category="std" consensus="true" submissionType="IETF" updates="8999" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.2 -->
  <front>
    <title abbrev="QUIC Compatible VN">Compatible Version Negotiation for QUIC</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-version-negotiation-13"/>
    <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="November" day="06"/>
    <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.
This document updates <xref target="QUIC-INVARIANTS"/> by defining version
negotiation mechanisms that leverage the Version Negotiation packet.</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 previous
version. This specification also defines a simple version negotiation mechanism
which leverages similarities between versions and can negotiate between
"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.4.1" 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 (see <xref target="compat"/>).</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 send 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>
        <t>Only servers can start incompatible version negotiation: clients <bcp14>MUST NOT</bcp14> send
Version Negotiation packets and servers <bcp14>MUST</bcp14> ignore all received Version
Negotiation packets.</t>
      </section>
      <section anchor="compat">
        <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). 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 Available Versions field of the Version
Information; see <xref target="vers-info"/>.</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, Available Versions = (A, B) ------------->
<------------------------ Version Negotiation = (D, C)

Chosen = C, Available Versions = (C, D) ------------->
<------------- Chosen = D, Available 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 available 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
"version_information" transport parameter; see <xref section="7.4" sectionFormat="of" target="QUIC"/>. 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),
  Available 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 Available Versions field depends on whether it is sent by
the client or by the server.</t>
      <dl spacing="compact">
        <dt>Client-Sent Available Versions:</dt>
        <dd>
          <t>When sent by a client, the Available 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 Available Versions:</dt>
        <dd>
          <t>When sent by a server, the Available Versions field lists all the
Fully-Deployed Versions of this server deployment, see <xref target="server-fleet"/>. The
ordering of the versions in this field does not carry any semantics. 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 Available 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 Available 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>A version downgrade is an attack where a malicious entity manages to make the
QUIC endpoints negotiate a QUIC version different from the one they would have
negotiated in the absence of the attack. The mechanism described in this
document is designed to prevent downgrade attacks.</t>
      <t>Clients <bcp14>MUST</bcp14> ignore any received Version Negotiation packets that contain the
original version. 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 that leads to a parsing failure (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 Available Version equal to zero,
it <bcp14>MUST</bcp14> treat it as a parsing failure. If a server receives a Version
Information where the Chosen Version is not included in Available Versions, 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>When a server receives a client's first flight, the server will first establish
which QUIC version is in use for this connection in order to properly parse the
first flight. For example, the server determines that QUIC version 1 is in use
by observing that the Version field of the first Long Header packet it receives
is set to 0x00000001. When the server then processes the client's Version
Information, the server <bcp14>MUST</bcp14> validate that the client's Chosen Version matches
the version in use for the connection. If the two differ, the server <bcp14>MUST</bcp14> close
the connection with a version negotiation error. For example, if a server
receives the client's Version Information over QUIC version 1 (as indicated by
the Version field of the Long Header packets that carried the transport
parameters) and the client's Chosen Version is not set to 0x00000001, the server
will close the connection with a version negotiation error.</t>
      <t>If a client receives a Version Information where the server's Chosen Version was
not sent by the client as part of its Available Versions, the client <bcp14>MUST</bcp14> close
the connection with a version negotiation 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 Available Versions field. The Available 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 Available 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 Available 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>As an example, let's assume a client supports hypothetical QUIC versions 10, 12,
and 14 with a preference for higher versions. The client initiates a connection
attempt with version 12. Let's explore two independent example scenarios:</t>
      <ul spacing="normal">
        <li>In the first scenario, the server supports versions 10, 13, and 14 but only 13
and 14 are Fully-Deployed (see <xref target="server-fleet"/>). The server sends a Version
Negotiation packet with versions 10, 13, and 14. This triggers an incompatible
version negotiation and the client initiates a new connection with version 14.
Then the server's Available Versions field contains 13 and 14. In that
scenario, the client would have also picked 14 if it had received a Version
Negotiation packet with versions 13 and 14, therefore the handshake succeeds
using negotiated version 14.</li>
        <li>In the second scenario, the server supports versions 10, 13, and 14 and they
are all Fully-Deployed. However, the attacker forges a Version Negotiation
packet with versions 10 and 13. This triggers an incompatible version
negotiation and the client initiates a new connection with version 10. Then
the server's Available Versions field contains 10, 13 and 14. In that
scenario, the client would have picked 14 instead of 10 if it had received a
Version Negotiation packet with versions 10, 13 and 14, therefore the client
aborts the handshake with a version negotiation error.</li>
      </ul>
      <t>This validation of Available 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, during the update window, connections are vulnerable to downgrade
attacks for partially-deployed versions. This is because a client cannot
distinguish such a downgrade attack from legitimate exchanges 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
first send a Retry packet in the original version 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. This helps mitigate cross-protocol attacks.</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 Available 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.
That analysis is out of scope for this document.</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>References</name>
      <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="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>
      <references>
        <name>Informative References</name>
        <reference anchor="TCP">
          <front>
            <title>Transmission Control Protocol (TCP)</title>
            <author fullname="W. Eddy" initials="W." role="editor" surname="Eddy">
              <organization/>
            </author>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document specifies the Transmission Control Protocol (TCP).  TCP is an important transport-layer protocol in the Internet protocol stack, and it has continuously evolved over decades of use and growth of the Internet.  Over this time, a number of changes have been made to TCP as it was specified in RFC 793, though these have only been documented in a piecemeal fashion.  This document collects and brings those changes together with the protocol specification from RFC 793.  This document obsoletes RFC 793, as well as RFCs 879, 2873, 6093, 6429, 6528, and 6691 that updated parts of RFC 793.  It updates RFCs 1011 and 1122, and it should be considered as a replacement for the portions of those documents dealing with TCP requirements.  It also updates RFC 5961 by adding a small clarification in reset handling while in the SYN-RECEIVED state.  The TCP header control bits from RFC 793 have also been updated based on RFC 3168.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="7"/>
          <seriesInfo name="RFC" value="9293"/>
          <seriesInfo name="DOI" value="10.17487/RFC9293"/>
        </reference>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors would like to thank Nick Banks, Mike Bishop, Martin Duke, Ryan
Hamilton, Roberto Peon, Anthony Rossi, and Martin Thomson for their input and
contributions.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+U9a28byZHf+1dM5A+xDyRtrZ3HarO5UJadFWDLPkmbRRAE
iyGnSXVMzjDTQ8lcw/kt91vul129+jXTpORNAhxwGwQW59GPqup6V814PFad
6Vb6pHjZrDdlZ2YrXfxJt9Y0dXGhl01n4CL8vWja4r++P3+pytms1bcn9CN5
6UJVzbwu1zBW1ZaLbmx0txj/fWvm41secFyHAcfHzxWM8lzZ7WxtLN7udht4
9/zV9Ws1Lzt4tN2dFLarVNnq8qS4bsvabpq2U3dLnl7V2/VMtyeqgsdP1Lyp
ra7t1p4UXbvVarvB6/Drt19//bW61fUWHiqKZdtsNyfFEY5wBL952qMfmvaD
qZfFH/E2Xl+XZgXXcQN/wK1MmnaJ18t2fgPXb7puY0+ePsXH8JK51RP32FO8
8HTWNndWP8UBnuKLS9PdbGcy5N3yaQYq+NgKF91FM/DjE359Yprci08fAPLJ
TbdeHakPenfXtBWCYlzgs/SHPE9/R+/Q77nHMv00de9C3XQ4UKeLbmXpCvw7
rpeq3HY3TUszwf8LeBOwcTYprgBcdfmToYtMMmflranSGwDIk+KPTbME6nrz
5iVds12rNQDn+NfPnhXT9eYGgKJLuFi8L9sPd+WOnpqbDkjnbbOtu9LUxZ+M
vqPrrV7CnoDWp/xYU8HMX7949uK5/IYXkOi+r2EzsJoOUVE0C5hJt2Ze0lOa
CaOyslbC+h+WeHUCgEk3+2pSXGo7b9pVGW32FQyWXoe9lrX5iWCOK//JrFbJ
dPpD+4e2W6xpCqXG43FRzgAa5bxTis5i1cBaERWbtgFY6qIkxK004EWwG2O2
WOv5Dcxp18Vs2+FqO11WRVOvdkpGsDAEgJTOPoC5sLqFgYqugacrg2cULpcd
3XMz4N/zldF1V8xvGqsLY9W2LudzvelKIJhJcX1jLCx2vl3jQzDLvDUzmuvw
KnEqVa5WcKhwazxHWVfRsqxe6TlcLNbbbguP7gq73SDLAGTK4JPi3QYHxrsj
ZRbRgn9pecm1XwiOjvfdgsIwhb0BriQglqOwMK3tisXKLG86hNm67EbJ6/je
vAQYlR90sVmVc13cAf02BP75tm2R/8B9/RHwqoAP4fSt2fRhJoytuHz9knjb
RAhibaoK1qEeFedAx021ndMRVtcBP2NT35atKWsik41uO8MUTiT06dMv8N/x
+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

-->

</rfc>
