<?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-rfc2629 version 1.6.5 (Ruby 3.0.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-version-negotiation-07" category="std" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.3 -->
  <front>
    <title abbrev="QUIC Compatible VN">Compatible Version Negotiation for QUIC</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-version-negotiation-07"/>
    <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="April" 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.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://quicwg.github.io/version-negotiation/draft-ietf-quic-version-negotiation.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-quic-version-negotiation/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        QUIC Working Group mailing list (<eref target="mailto:quic@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/quic/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/quicwg/version-negotiation"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>The version-invariant properties of QUIC <xref target="INV"/> define a Version
Negotiation packet but do not specify how an endpoint reacts when it receives
one. QUIC version 1 <xref target="QUIC"/> allows the server to use a Version
Negotiation packet to indicate that the version the client chose is
unacceptable, but doesn't allow the client to safely make use of that
information to create a new connection with a mutually supported version.</t>
      <t>With proper safety mechanisms in place, the Version Negotiation packet can be
part of a mechanism to allow two QUIC implementations to negotiate between two
totally disjoint versions of QUIC. This document specifies version negotiation
using Version Negotiation packets, which adds an extra round trip to connection
establishment if needed.</t>
      <t>It is beneficial to avoid additional round trips whenever possible, especially
given that most incremental versions are broadly similar to the the previous
version. This specification also defines a simple version negotiation mechanism
which leverages similarities between versions and can negotiate between the set
of "compatible" versions without additional round trips.</t>
      <section anchor="conventions-and-definitions">
        <name>Conventions and Definitions</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
        <t>In this document, 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.</t>
      </section>
    </section>
    <section anchor="version-negotiation-mechanism">
      <name>Version Negotiation Mechanism</name>
      <t>This document specifies two means of performing version negotiation: one
"incompatible" which requires a round trip and is applicable to all versions,
and one "compatible" that allows saving the round trip but only applies when the
versions are compatible.</t>
      <t>The client initiates a QUIC connection by choosing an initial version and
sending a first flight of QUIC packets with a long header to the server <xref target="INV"/>.
The client's first flight includes Version Information (see <xref target="vers-info"/>) which
will be used to optionally enable compatible version negotation (see
<xref target="compat-vn"/>), and to prevent version downgrade attacks (see <xref target="downgrade"/>).
We'll refer to the version of the very first packets the client sends as the
"original version" and the version of the first packets the client sends in a
given QUIC connection as the "client's chosen version".</t>
      <t>Upon receiving this first flight, the server verifies whether it knows how to
parse first flights from the original version. If it does not, then it starts
incompatible version negotiation, see <xref target="incompat-vn"/>, which causes the client
to initiate a new connection with a different version. For instance, if the
client initiates a connection with version A and the server starts incompatible
version negotiation and the client then initiates a new connection with version
B, we say that the first connection's client chosen version is A, the second
connection's client chosen version is B, and the original version for the entire
sequence is A.</t>
      <t>If the server can parse the first flight, it can either establish the connection
using the client's chosen version, or it <bcp14>MAY</bcp14> select any other compatible
version, as described in <xref target="compat-vn"/>.</t>
      <t>Note that it is possible for a server to have the ability to parse the first
flight of a given version without fully supporting it, in the sense that it
implements enough of the version's specification to parse first flight packets
but not enough to fully establish a connection using that version.</t>
      <section anchor="incompat-vn">
        <name>Incompatible Version Negotiation</name>
        <t>The server starts incompatible version negotiation by sending a Version
Negotiation packet. This packet <bcp14>SHALL</bcp14> include each entry from the server's set
of Offered Versions (see <xref target="server-fleet"/>) in a Supported Version field. The
server <bcp14>MAY</bcp14> add reserved versions (as defined in <xref section="6.3" sectionFormat="of" target="QUIC"/>) in
Supported Version fields.</t>
        <t>Clients will ignore a Version Negotiation packet if it contains the original
version attempted by the client. The client also ignores a Version Negotiation
packet that contains incorrect connection ID fields; see <xref section="6" sectionFormat="of" target="INV"/>.</t>
        <t>Upon receiving the Version Negotiation packet, the client will search for a
version it supports in the list provided by the server. If it doesn't find one,
it aborts the connection attempt. Otherwise, it selects a mutually supported
version and sends a new first flight with that version - we refer to this
version as the "negotiated version".</t>
        <t>The new first flight will allow the endpoints to establish a connection using
the negotiated version. The handshake of the negotiated version will exchange
version information (see <xref target="vers-info"/>) required to ensure that version
negotiation was genuine, i.e. that no attacker injected packets in order to
influence the version negotiation process, see <xref target="downgrade"/>.</t>
      </section>
      <section anchor="compatible-versions">
        <name>Compatible Versions</name>
        <t>If A and B are two distinct versions of QUIC, A is said to be "compatible" with
B if it is possible to take a first flight of packets from version A and convert
it into a first flight of packets from version B. As an example, if versions A
and B are absolutely equal in their wire image and behavior during the handshake
but differ after the handshake, then A is compatible with B and B is compatible
with A. Note that the conversion of the first flight can be lossy: some data
such as QUIC version 1 0-RTT packets could be ignored during conversion and
retransmitted later.</t>
        <t>Version compatibility is not symmetric: it is possible for version A to be
compatible with version B and for B not to be compatible with A. This could
happen for example if version B is a strict superset of version A: if version A
includes the concept of streams and STREAM frames, and version B includes the
concepts of streams and tubes along with STREAM and TUBE frames, then A would be
compatible with B but B would not be compatible with A.</t>
        <t>Note that version compatibility does not mean that every single possible
instance of a first flight will succeed in conversion to the other version. A
first flight using version A is said to be "compatible" with version B if two
conditions are met: first that version A is compatible with version B, and
second that the conversion of this first flight to version B is well-defined.
For example, if version B is equal to A in all aspects except it introduced a
new frame in its first flight that version A cannot parse or even ignore, then B
could still be compatible with A as conversions would succeed for connections
where that frame is not used. In this example, first flights using version B
that carry this new frame would not be compatible with version A.</t>
        <t>When a new version of QUIC is defined, it is assumed to not be compatible with
any other version unless otherwise specified. Similarly, no other version is
compatible with the new version unless otherwise specified. Implementations <bcp14>MUST
NOT</bcp14> assume compatibility between versions unless explicitly specified.</t>
        <t>Note that both endpoints might disagree on whether two versions are compatible
or not. For example, two versions could have been defined concurrently and then
specified as compatible in a third document much later - in that scenario one
endpoint might be aware of the compatibility document while the other may not.</t>
      </section>
      <section anchor="compat-vn">
        <name>Compatible Version Negotiation</name>
        <t>When the server can parse the client's first flight using the client's chosen
version, it can extract the client's Version Information structure (see
<xref target="vers-info"/>). This contains the list of versions that the client knows its
first flight is compatible with.</t>
        <t>In order to perform compatible version negotiation, the server <bcp14>MUST</bcp14> select one
of these versions that (1) it supports and (2) it knows the client's chosen
version to be compatible with. Once the server has selected a version, termed
the "negotiated version", it then 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>Clients can determine the server's negotiated version by examining the QUIC long
header Version field. It is possible for the server to initially send packets
with the client's chosen version before switching to the negotiated version (for
example, 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).</t>
        <t>Note that, after the first flight is converted to the negotiated version, the
handshake completes in the negotiated version. The entire handshake (including
the converted first flight) needs to conform to the rules of the negotiated
version. For instance, if the negotiated version requires that the 5-tuple
remain stable for the entire handshake (as QUIC version 1 does), then this
applies to the entire handshake, including the first flight.</t>
        <t>Note also that the client can disable compatible version negotiation by only
including the Chosen Version in the Other Versions field of the Version
Information transport parameter.</t>
        <t>If the server does not find a compatible version (including the client's chosen
version), it will perform incompatible version negotiation instead, see
<xref target="incompat-vn"/>.</t>
        <t>Note that it is possible to have incompatible version negotation followed by
compatible version negotiation. For instance, if version A is compatible with B
and C is compatible with D, the following scenario could occur:</t>
        <figure anchor="fig-dual-example">
          <name>Combined Negotiation Example</name>
          <artwork><![CDATA[
Client                                          Server

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

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

-->

</rfc>
