<?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-11" category="std" consensus="true" submissionType="IETF" updates="8999" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.0 -->
  <front>
    <title abbrev="QUIC Compatible VN">Compatible Version Negotiation for QUIC</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-version-negotiation-11"/>
    <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="October" day="11"/>
    <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 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.</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="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). 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"/>. 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
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 Available 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 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. 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.</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>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 (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>
      <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+Vd624byZX+X0/RkX/EXpAcy3ZmMppMNpQlZwT4tpJmBkEQ
DJrsIlUx2c10NSVzDOdZ9ln2yfbc6tZdpDS5AAtsgiAW2azLqVPnfOfa4/FY
daZb6ZPiZbPelJ2ZrXTxg26taerirV42nYEP4d+Lpi3+6/uLl6qczVp9e0J/
JD96q6pmXpdrGKtqy0U3NrpbjP+2NfPxLQ84rsOA4+NjBaM8V3Y7WxuLX3e7
Dfz24vz6lZqXHTza7k4K21WqbHV5Uly3ZW03TdupuyVPr+rteqbbE1XB4ydq
3tRW13ZrT4qu3Wq13eDn8Ndvv/76a3Wr6y08VBTLttluToojHOEI/uZpj35s
2g+mXhZ/xK/x83VpVvA5buAPuJVJ0y7x87Kd38DnN123sSdffIGP4UfmVk/c
Y1/gB1/M2ubO6i9wgC/wh0vT3WxnMuTd8osMVfCxFS66i2bgxyf884lpcj/8
4gEkn9x069WR+qB3d01bISnGBT5L/5Dn6d/Rb+jvuT9l+tPUvQ/qpsOBOl10
K0ufwP+P66Uqt91N09JM8L8CfgmncTYproBcdfmzoQ+ZZc7KW1OlXwAhT4o/
Ns0SuOv165f0me1arYE4x18+fVpM15sbIIou4cPifdl+uCt39NTcdMA6b5pt
3ZWmLn4w+o4+b/US9gS8PuXHmgpm/vrF0xfP5W/4ATLd9zVsBlbT4VEUzQJm
0q2Zl/SUZsaorKyVTv0PS/x0AoRJN3s+KS61nTftqow2ew6DpZ/DXsva/Ew0
x5X/bFarZDr9of1D2y3WNIVS4/G4KGdAjXLeKUV3sWpgrXgUm7YBWuqipINb
aTgXOd34ZIu1nt/AnHZdzLYdrrbTZVU09WqnZAQLQwBJ6e4DmQurWxio6Bp4
ujJ4R+HjsqPv3Az47/nK6Lor5jeN1YWxaluX87nedCUwzKS4vjEWFjvfrvEh
mGXemhnNdXiVOJUqVyu4VLg1nqOsq2hZVq/0HD4s1ttuC4/uCrvdoMiAw5TB
J8W7DQ6M346UWUQL/rXlJdd+ITg6fu8WFIYp7A1IJSGxXIWFaW1XLFZmedMh
zdZlN0p+jr+bl0Cj8oMuNqtyros74N+GyD/fti3KH/hef4RzVSCHcPrWbPo0
E8FWXL56SbJtIgyxNlUF61CPigvg46bazukKq+twPmNT35atKWtik41uO8Mc
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

-->

</rfc>
