<?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.39 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-schwartz-httpbis-optimistic-upgrade-00" category="std" consensus="true" submissionType="IETF" updates="9298" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.0 -->
  <front>
    <title abbrev="Optimistic HTTP Upgrade Security">Security Considerations for Optimistic Use of HTTP Upgrade</title>
    <seriesInfo name="Internet-Draft" value="draft-schwartz-httpbis-optimistic-upgrade-00"/>
    <author fullname="Benjamin M. Schwartz">
      <organization>Meta Platforms, Inc.</organization>
      <address>
        <email>ietf@bemasc.net</email>
      </address>
    </author>
    <date year="2023" month="August" day="21"/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTPBIS</workgroup>
    <abstract>
      <?line 30?>

<t>The HTTP/1.1 Upgrade mechanism allows the client to request a change to a new protocol.  This document discusses the security considerations that apply to data sent by the client before this request is confirmed, and updates RFC 9298 to avoid related security issues.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-schwartz-httpbis-optimistic-upgrade/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/bemasc/http-upgrade"/>.</t>
    </note>
  </front>
  <middle>
    <?line 35?>

<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>
      <?line -18?>

</section>
    <section anchor="background">
      <name>Background</name>
      <t>In HTTP/1.1, a client is permitted to send an "Upgrade" request header field (<xref section="7.8" sectionFormat="comma" target="RFC9110"/>) to indicate that it would like to use this connection for a protocol other than HTTP/1.1.  The server replies with a "101 (Switching Protocols)" status code if it accepts the protocol change.  However, that specification also permits the server to reject the upgrade request:</t>
      <ul empty="true">
        <li>
          <t>A server <bcp14>MAY</bcp14> ignore a received Upgrade header field if it wishes to continue using the current protocol on that connection.</t>
        </li>
      </ul>
      <t>This rejection of the upgrade is common, and can happen for a variety of reasons:</t>
      <ul spacing="normal">
        <li>The server does not support any of the client's indicated Upgrade Tokens (i.e., the client's proposed new protocols), so it continues to use HTTP/1.1.</li>
        <li>The server knows that an upgrade to the offered protocol will not provide any improvement over HTTP/1.1 for this request to this resource, so it chooses to respond in HTTP/1.1.</li>
        <li>The server requires the client to authenticate before upgrading the protocol, so it replies with the status code "401 (Authentication Required)" and provides a challenge in an "Authorization" response header (<xref section="11.6.2" sectionFormat="comma" target="RFC9110"/>).</li>
        <li>The resource has moved, so the server replies with a 3XX redirect status code (<xref section="3.4" sectionFormat="comma" target="RFC9110"/>).</li>
      </ul>
      <t>After rejecting the upgrade, the server will continue to interpret subsequent bytes on that connection in accordance with HTTP/1.1.</t>
      <t><xref target="RFC9110"/> also states:</t>
      <ul empty="true">
        <li>
          <t>A client cannot begin using an upgraded protocol on the connection until it has completely sent the request message (i.e., the client can't change the protocol it is sending in the middle of a message).</t>
        </li>
      </ul>
      <t>However, because of the possibility of rejection, the converse is not true: a client cannot necessarily begin using an upgraded protocol merely because it has finished sending the upgrade request message.</t>
      <t>In some cases, the client might expect that the upgrade will succeed.  If this expectation is correct, the client might be able to reduce delay by immediately sending the first bytes of the upgraded protocol "optimistically", without waiting for the server's response.  This document explores the security implications of this "optimistic" behavior.</t>
    </section>
    <section anchor="possible-security-issues">
      <name>Possible Security Issues</name>
      <t>When there are only two distinct parties involved in an HTTP/1.1 connection (i.e., the client and the server), HTTP Upgrade introduces no new security issues: each party must already be prepared for the other to send arbitrary data on the connection at any time.  However, HTTP connections often involve more than two parties, if the requests or responses include third-party data.  For example, a browser (party 1) might send an HTTP request to an origin (party 2) with path, headers, or body controlled by a website from a different origin (party 3).  Post-upgrade protocols such as WebSocket similarly are often used to convey data chosen by a third party.</t>
      <t>If the third-party data source is untrusted, we call the data it provides "attacker-controlled".  The combination of attacker-controlled data and optimistic HTTP Upgrade results in two significant security issues.</t>
      <section anchor="request-smuggling">
        <name>Request Smuggling</name>
        <t>In a Request Smuggling attack (<xref section="11.2" sectionFormat="comma" target="RFC9112"/>) the attacker-controlled data is chosen in such a way that it is interpreted by the server as an additional HTTP request.  These attacks allow the attacker to speak on behalf of the client while bypassing the client's own rules about what requests it will issue.  Request Smuggling can occur if the client and server have distinct interpretations of the data that flows between them.</t>
        <t>If the server accepts an HTTP Upgrade, it interprets the subsequent bytes in accordance with the new protocol.  If it rejects the upgrade, it interprets those bytes as HTTP/1.1.  However, the client doesn't know which interpretation the server will take until it receives the server's response status code.  If it uses the new protocol optimistically, this creates a risk that the server will interpret attacker-controlled data in the upgraded protocol as an additional HTTP request issued by the client.</t>
        <t>As a trivial example, consider an upgraded protocol in which the entire post-upgrade content might be freely attacker-controlled (e.g., "connect-tcp" <xref target="I-D.ietf-httpbis-connect-tcp"/>).  If the client is authenticated to the server using a connection-level authentication method such as TLS Client Certificates, the attacker could send an HTTP/1.1 POST request in the post-upgrade payload.  If the client delivers this payload optimistically, and the upgrade request fails, the server would interpret the payload as a subsequent authenticated request issued by the client.</t>
      </section>
      <section anchor="parser-exploits">
        <name>Parser Exploits</name>
        <t>A related category of attacks use protocol disagreement to exploit vulnerabilities in the server's request parsing logic.  These attacks apply when the HTTP client is trusted by the server, but the post-upgrade data source is not.  If the server software was developed under the assumption that some or all of the HTTP request data is not attacker-controlled, optimistic use of HTTP Upgrade can cause this assumption to be violated, exposing vulnerabilities in the server's HTTP request parser.</t>
      </section>
    </section>
    <section anchor="operational-issues">
      <name>Operational Issues</name>
      <t>If the server rejects the upgrade, the connection can continue to be used for HTTP/1.1.  There is no requirement to close the connection in response to an upgrade rejection, and keeping the connection open has performance advantages if additional HTTP requests to this server are likely.  Thus, it is normally inappropriate to close the connection in response to a rejected upgrade.</t>
    </section>
    <section anchor="impact-on-existing-upgrade-tokens">
      <name>Impact on Existing Upgrade Tokens</name>
      <t>At the time of writing, there are four distinct Upgrade Tokens that are registered, associated with published documents, and not marked obsolete.  This section considers the impact of this document's considerations on each registered Upgrade Token.</t>
      <section anchor="http">
        <name>"HTTP"</name>
        <t><xref target="RFC9110"/> is the source of the requirement quoted in <xref target="background"/>.  It also defines the "HTTP/*.*" family of Upgrade Tokens.  In HTTP/1.1, the only potentially applicable versions of this token are "0.9", "1.0", "1.1", and "2.0".</t>
        <t>Versions "0.9" and "1.0" are sufficiently syntactically similar to HTTP/1.1 that any such "downward upgrade" would be unlikely to result in the security concerns discussed here.  (An "upgrade" to version 1.1 has no effect at all.)</t>
        <t>A version number of "2.0" corresponds to HTTP/2.  Every HTTP/2 connection begins with a Client Connection Preface (<xref section="3.4" sectionFormat="of" target="RFC9113"/>) that was selected to ensure that a compliant HTTP/1.1 server will not process further data on this connection.  This avoids security issues if an "HTTP/2.0" Upgrade Token is used optimistically.</t>
      </section>
      <section anchor="tls">
        <name>"TLS"</name>
        <t><xref target="RFC2817"/> correctly highlights the possibility of the server rejecting the upgrade.  The security considerations documented here are applicable to any use of the "TLS" Upgrade Token, but no change is required in <xref target="RFC2817"/>.</t>
      </section>
      <section anchor="websocketwebsocket">
        <name>"WebSocket"/"websocket"</name>
        <t><xref section="4.1" sectionFormat="of" target="RFC6455"/> says:</t>
        <ul empty="true">
          <li>
            <t>Once the client's opening handshake has been sent, the client <bcp14>MUST</bcp14> wait for a response from the server before sending any further data.</t>
          </li>
        </ul>
        <t>Thus, optimistic use of HTTP Upgrade is already forbidden in the WebSocket protocol.  Additionally, the WebSocket protocol requires high-entropy masking of client-to-server frames (<xref section="5.1" sectionFormat="of" target="RFC6455"/>).</t>
      </section>
      <section anchor="connect-udp">
        <name>"connect-udp"</name>
        <t><xref section="5" sectionFormat="of" target="RFC9298"/> says:</t>
        <ul empty="true">
          <li>
            <t>A client <bcp14>MAY</bcp14> optimistically start sending UDP packets in HTTP Datagrams before receiving the response to its UDP proxying request.</t>
          </li>
        </ul>
        <t>However, in HTTP/1.1, this "proxying request" is an HTTP Upgrade request.  This upgrade is likely to be rejected in certain circumstances, such as when the UDP destination address (which is attacker-controlled) is invalid.  Additionally, the contents of the "connect-udp" protocol stream can include untrusted material (i.e., the UDP packets, which might come from other applications on the client device).  This creates the possibility of Request Smuggling attacks.  To avoid these concerns, this text is updated as follows:</t>
        <ul empty="true">
          <li>
            <t>When using HTTP/2 or later, a client <bcp14>MAY</bcp14> optimistically ...</t>
          </li>
        </ul>
        <t><xref section="3.3" sectionFormat="of" target="RFC9298"/> describes the requirement for a successful proxy setup response, including upgrading to the "connect-udp" protocol, and says:</t>
        <ul empty="true">
          <li>
            <t>If any of these requirements are not met, the client <bcp14>MUST</bcp14> treat this proxying attempt as failed and abort the connection.</t>
          </li>
        </ul>
        <t>However, this could be interpreted as an instruction to abort the underlying TLS and TCP connections in the event of an unsuccessful response such as "407 ("Proxy Authentication Required)".  To avoid an unnecessary delay in this case, this text is hereby updated as follows:</t>
        <ul empty="true">
          <li>
            <t>If any of these requirements are not met, the client <bcp14>MUST</bcp14> treat this proxying attempt as failed.  If the "Upgrade" response header field is absent, the client <bcp14>MAY</bcp14> reuse the connection for further HTTP/1.1 requests; otherwise it <bcp14>MUST</bcp14> abort the underlying connection.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="guidance-for-future-upgrade-tokens">
      <name>Guidance for Future Upgrade Tokens</name>
      <t>There are now several good examples of designs that prevent the security concerns discussed in this document and may be applicable in future specifications:</t>
      <ul spacing="normal">
        <li>Forbid optimistic use of HTTP Upgrade (WebSocket, <xref section="4.1" sectionFormat="of" target="RFC6455"/>).</li>
        <li>Embed a fixed preamble that terminates HTTP/1.1 processing (HTTP/2, <xref section="3.4" sectionFormat="of" target="RFC9113"/>).</li>
        <li>Apply high-entropy masking of client-to-server data (WebSocket, <xref section="5.1" sectionFormat="of" target="RFC6455"/>).</li>
      </ul>
      <t>Future specifications for Upgrade Tokens <bcp14>MUST</bcp14> account for the security issues discussed here and provide clear guidance on how clients can avoid them.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <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"/>
            <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="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC9298">
          <front>
            <title>Proxying UDP in HTTP</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document describes how to proxy UDP in HTTP, similar to how the HTTP CONNECT method allows proxying TCP in HTTP. More specifically, this document defines a protocol that allows an HTTP client to create a tunnel for UDP communications through an HTTP server that acts as a proxy.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9298"/>
          <seriesInfo name="DOI" value="10.17487/RFC9298"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC9112">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns.</t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="I-D.ietf-httpbis-connect-tcp">
          <front>
            <title>Template-Driven HTTP CONNECT Proxying for TCP</title>
            <author fullname="Benjamin M. Schwartz" initials="B. M." surname="Schwartz">
              <organization>Meta Platforms, Inc.</organization>
            </author>
            <date day="17" month="May" year="2023"/>
            <abstract>
              <t>   TCP proxying using HTTP CONNECT has long been part of the core HTTP
   specification.  However, this proxying functionality has several
   important deficiencies in modern HTTP environments.  This
   specification defines an alternative HTTP proxy service configuration
   for TCP connections.  This configuration is described by a URI
   Template, similar to the CONNECT-UDP and CONNECT-IP protocols.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-connect-tcp-00"/>
        </reference>
        <reference anchor="RFC9113">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2). HTTP/2 enables a more efficient use of network resources and a reduced latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t>
              <t>This document obsoletes RFCs 7540 and 8740.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9113"/>
          <seriesInfo name="DOI" value="10.17487/RFC9113"/>
        </reference>
        <reference anchor="RFC2817">
          <front>
            <title>Upgrading to TLS Within HTTP/1.1</title>
            <author fullname="R. Khare" initials="R." surname="Khare"/>
            <author fullname="S. Lawrence" initials="S." surname="Lawrence"/>
            <date month="May" year="2000"/>
            <abstract>
              <t>This memo explains how to use the Upgrade mechanism in HTTP/1.1 to initiate Transport Layer Security (TLS) over an existing TCP connection. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2817"/>
          <seriesInfo name="DOI" value="10.17487/RFC2817"/>
        </reference>
        <reference anchor="RFC6455">
          <front>
            <title>The WebSocket Protocol</title>
            <author fullname="I. Fette" initials="I." surname="Fette"/>
            <author fullname="A. Melnikov" initials="A." surname="Melnikov"/>
            <date month="December" year="2011"/>
            <abstract>
              <t>The WebSocket Protocol enables two-way communication between a client running untrusted code in a controlled environment to a remote host that has opted-in to communications from that code. The security model used for this is the origin-based security model commonly used by web browsers. The protocol consists of an opening handshake followed by basic message framing, layered over TCP. The goal of this technology is to provide a mechanism for browser-based applications that need two-way communication with servers that does not rely on opening multiple HTTP connections (e.g., using XMLHttpRequest or s and long polling). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6455"/>
          <seriesInfo name="DOI" value="10.17487/RFC6455"/>
        </reference>
      </references>
    </references>
    <?line 161?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Thanks to Mark Nottingham and Lucas Pardue for early reviews of this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
/wXyFoU8jSsAAA==

-->

</rfc>
