<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.9 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-httpbis-h2-websockets-02" category="std" updates="6455">

  <front>
    <title abbrev="H2 Websockets">Bootstrapping WebSockets with HTTP/2</title>

    <author initials="P." surname="McManus" fullname="Patrick McManus">
      <organization>Mozilla</organization>
      <address>
        <email>mcmanus@ducksong.com</email>
      </address>
    </author>

    <date />

    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document defines a mechanism for running the WebSocket Protocol
over a single stream of an HTTP/2 connection.</t>



    </abstract>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>The Hypertext Transfer Protocol (HTTP) provides compatible resource-level
semantics across different versions but it does not offer
compatibility at the connection management level. Other protocols,
such as WebSockets, that rely on connection management details of HTTP
must be updated for new versions of HTTP.</t>

<t>The WebSocket Protocol <xref target="RFC6455"/> uses the HTTP/1.1 <xref target="RFC7230"/>
Upgrade mechanism to transition a TCP connection from HTTP into a
WebSocket connection. A different approach must be taken with HTTP/2
<xref target="RFC7540"/>. HTTP/2 does not allow connection-wide headers and status
codes such as the Upgrade and Connection request headers or the 101
response code due to its multiplexing nature. These are all required
by the <xref target="RFC6455"/> opening handshake.</t>

<t>Being able to bootstrap WebSockets from HTTP/2 allows one TCP
connection to be shared by both protocols and extends HTTP/2’s
more efficient use of the network to WebSockets.</t>

<t>This document extends the HTTP/2 CONNECT method. The extension allows
the substitution of a new protocol name to connect to rather than the
external host normally used by CONNECT. The result is a tunnel on a
single HTTP/2 stream that can carry data for WebSockets (or any other
protocol). The other streams on the connection may carry more extended
CONNECT tunnels, traditional HTTP/2 data, or a mixture of both.</t>

<t>This tunneled stream will be multiplexed with other regular streams on
the connection and enjoys the normal priority, cancellation, and flow
control features of HTTP/2.</t>

<t>Streams that successfully establish a WebSocket connection using a
tunneled stream and the modifications to the opening handshake defined
in this document then use the traditional WebSocket Protocol, treating
the stream as if were the TCP connection in that specification.</t>

</section>
<section anchor="terminology" title="Terminology">

<t>In this document, the key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”,
“SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” are to be interpreted as
described in BCP 14, <xref target="RFC2119"/>.</t>

</section>
<section anchor="the-settingsenableconnectprotocol-settings-parameter" title="The SETTINGS_ENABLE_CONNECT_PROTOCOL SETTINGS Parameter">

<t>This document adds a new SETTINGS Parameter to those defined by
<xref target="RFC7540"/>, Section 6.5.2.</t>

<t>The new parameter name is SETTINGS_ENABLE_CONNECT_PROTOCOL. The value
of the parameter MUST be 0 or 1.</t>

<t>Upon receipt of SETTINGS_ENABLE_CONNECT_PROTOCOL with a value of 1, a client
MAY use the Extended CONNECT definition of this document when creating new
streams. Receipt of this parameter by a server does not have any
impact.</t>

<t>A sender MUST NOT send a SETTINGS_ENABLE_CONNECT_PROTOCOL parameter with the
value of 0 after previously sending a value of 1.</t>

<t>The use of a SETTINGS Parameter to opt-in to an otherwise incompatible
protocol change is a use of “Extending HTTP/2” defined by Section 5.5
of <xref target="RFC7540"/>. If a client were to use the provisions of the extended
CONNECT method defined in this document without first receiving a
SETTINGS_ENABLE_CONNECT_PROTOCOL parameter, a non-supporting peer would
detect a malformed request and generate a stream error (Section
8.1.2.6 of <xref target="RFC7540"/>).</t>

</section>
<section anchor="the-extended-connect-method" title="The Extended CONNECT Method">

<t>Usage of the CONNECT method in HTTP/2 is defined by Section 8.3 of
<xref target="RFC7540"/>. This extension modifies the method in the following ways:</t>

<t><list style="symbols">
  <t>A new pseudo-header :protocol MAY be included on request HEADERS
indicating the desired protocol to be spoken on the tunnel created
by CONNECT. The pseudo-header is single valued and contains a value
from the HTTP Upgrade Token Registry defined by <xref target="RFC7230"/>.</t>
  <t>On requests bearing the :protocol pseudo-header, the :scheme and
:path pseudo-header fields MUST be included.</t>
  <t>On requests bearing the :protocol pseudo-header, the :authority
pseudo-header field is interpreted according to Section 8.1.2.3
of <xref target="RFC7540"/> instead of Section 8.3 of <xref target="RFC7540"/>. In particular the server
MUST not make a new TCP connection to the host and port indicated by
the :authority.</t>
</list></t>

<t>Upon receiving a CONNECT request bearing the :protocol pseudo-header
the server establishes a tunnel to another service of the protocol
type indicated by the pseudo-header. This service may or may not be
co-located with the server.</t>

</section>
<section anchor="using-extended-connect-to-bootstrap-the-websocket-protocol" title="Using Extended CONNECT To Bootstrap The WebSocket Protocol">

<t>The pseudo-header :protocol MUST be included in the CONNECT request
and it MUST have a value of <spanx style="verb">websocket</spanx> to initiate a WebSocket
connection on an HTTP/2 stream. Other HTTP request and response
headers, such as those for manipulating cookies, may be included in
the HEADERS with the CONNECT method as usual. This request replaces
the GET-based request in <xref target="RFC6455"/> and is used to process the
WebSockets opening handshake.</t>

<t>The scheme of the Target URI <xref target="RFC7230"/> MUST be <spanx style="verb">https</spanx> for <spanx style="verb">wss</spanx> schemed
WebSockets and <spanx style="verb">http</spanx> for <spanx style="verb">ws</spanx> schemed WebSockets. The websocket URI is
still used for proxy autoconfiguration.</t>

<t><xref target="RFC6455"/> requires the use of Connection and Upgrade headers that
are not part of HTTP/2. They MUST not be included in the CONNECT
request defined here.</t>

<t><xref target="RFC6455"/> requires the use of a Host header which is also not part of
HTTP/2. The Host information is conveyed as part of the :authority
pseudo-header which is required on every HTTP/2 transaction.</t>

<t>Implementations using this extended CONNECT to bootstrap WebSockets do
not do the processing of the <xref target="RFC6455"/> Sec-WebSocket-Key and
Sec-WebSocket-Accept headers as that functionality has been superseded
by the :protocol pseudo-header.</t>

<t>The Sec-WebSocket-Version, Origin <xref target="RFC6454"/>, Sec-WebSocket-Protocol,
and Sec-WebSocket-Extensions headers are used on the CONNECT request
and response headers in the same way as defined in <xref target="RFC6455"/>. Note
that HTTP/1 header names were case-insensitive and HTTP/2 requires
they be encoded as lower case.</t>

<t>After successfully processing the opening handshake, the peers should
proceed with The WebSocket Protocol <xref target="RFC6455"/> using the HTTP/2
stream from the CONNECT transaction as if it were the TCP connection
referred to in <xref target="RFC6455"/>. The state of the WebSocket connection at
this point is OPEN as defined by <xref target="RFC6455"/>, Section 4.1.</t>

<t>The HTTP/2 stream closure is also analagous to the TCP connection of
<xref target="RFC6455"/>. Orderly TCP level closures are represented as END_STREAM
(<xref target="RFC7540"/> Section 6.1) flags and RST exceptions are represented
with the RST_STREAM (<xref target="RFC7540"/> Section 6.4) frame with the CANCEL
(<xref target="RFC7540"/> Secion 7) error code.</t>

<section anchor="example" title="Example">
<figure><artwork><![CDATA[
[[ From Client ]]                       [[ From Server ]]

                                        SETTINGS
                                        SETTINGS_ENABLE_CONNECT_PROTOCOL = 1

HEADERS + END_HEADERS
:method = CONNECT
:protocol = websocket
:scheme = https
:path = /chat
:authority = server.example.com
sec-websocket-protocol = chat, superchat
sec-websocket-extensions = permessage-deflate
sec-websocket-version = 13
origin = http://www.example.com

                                        HEADERS + END_HEADERS
                                        :status = 200
                                        sec-websocket-protocol = chat

DATA
WebSocket Data

                                        DATA + END_STREAM
                                        WebSocket Data

DATA + END_STREAM
WebSocket Data
]]></artwork></figure>

</section>
</section>
<section anchor="design-considerations" title="Design Considerations">

<t>A more native integration with HTTP/2 is certainly possible with
larger additions to HTTP/2. This design was selected to minimize the
solution complexity while still addressing the primary concern of running
HTTP/2 and WebSockets concurrently.</t>

</section>
<section anchor="about-intermediaries" title="About Intermediaries">

<t>This document does not change how WebSockets interacts with HTTP forward
proxies. If a client wishing to speak WebSockets connects via HTTP/2
to an HTTP proxy it should continue to use a traditional (i.e. not with
a :protocol pseudo-header) CONNECT to tunnel through that proxy to the
WebSocket server via HTTP.</t>

<t>The resulting version of HTTP on that tunnel determines whether
WebSockets is initiated directly or via a modified CONNECT request
described in this document.</t>

</section>
<section anchor="security-considerations" title="Security Considerations">

<t><xref target="RFC6455"/> ensures that non-WebSockets clients, especially
XMLHttpRequest based clients, cannot make a WebSocket connection. Its
primary mechanism for doing that is the use of Sec- prefixed request
headers that cannot be created by XMLHttpRequest-based clients. This
specification addresses that concern in two ways:</t>

<t><list style="symbols">
  <t>The CONNECT method is prohibited from being used by XMLHttpRequest</t>
  <t>The use of a pseudo-header is something that is connection specific
and HTTP/2 does not ever allow to be created outside of the protocol stack.</t>
</list></t>

</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>This document establishes an entry for the HTTP/2 Settings Registry
that was established by Section 11.3 of <xref target="RFC7540"/>.</t>

<t>Name: SETTINGS_ENABLE_CONNECT_PROTOCOL</t>

<t>Code: 0x8</t>

<t>Initial Value: 0</t>

<t>Specification: This document</t>

</section>
<section anchor="acknowledgments" title="Acknowledgments">

<t>The 2017 HTTP Workshop had a very productive discussion that helped
determine the key problem and acceptable level of solution complexity.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC6455" target='https://www.rfc-editor.org/info/rfc6455'>
<front>
<title>The WebSocket Protocol</title>
<author initials='I.' surname='Fette' fullname='I. Fette'><organization /></author>
<author initials='A.' surname='Melnikov' fullname='A. Melnikov'><organization /></author>
<date year='2011' month='December' />
<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 &lt;iframe&gt;s and long polling).  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6455'/>
<seriesInfo name='DOI' value='10.17487/RFC6455'/>
</reference>



<reference  anchor="RFC7230" target='https://www.rfc-editor.org/info/rfc7230'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the &quot;http&quot; and &quot;https&quot; Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='7230'/>
<seriesInfo name='DOI' value='10.17487/RFC7230'/>
</reference>



<reference  anchor="RFC7540" target='https://www.rfc-editor.org/info/rfc7540'>
<front>
<title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
<author initials='M.' surname='Belshe' fullname='M. Belshe'><organization /></author>
<author initials='R.' surname='Peon' fullname='R. Peon'><organization /></author>
<author initials='M.' surname='Thomson' fullname='M. Thomson' role='editor'><organization /></author>
<date year='2015' month='May' />
<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 perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t><t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t></abstract>
</front>
<seriesInfo name='RFC' value='7540'/>
<seriesInfo name='DOI' value='10.17487/RFC7540'/>
</reference>



<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<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="RFC6454" target='https://www.rfc-editor.org/info/rfc6454'>
<front>
<title>The Web Origin Concept</title>
<author initials='A.' surname='Barth' fullname='A. Barth'><organization /></author>
<date year='2011' month='December' />
<abstract><t>This document defines the concept of an &quot;origin&quot;, which is often used as the scope of authority or privilege by user agents.  Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites.  In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string.  It also defines an HTTP header field, named &quot;Origin&quot;, that indicates which origins are associated with an HTTP request.   [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6454'/>
<seriesInfo name='DOI' value='10.17487/RFC6454'/>
</reference>




    </references>




  </back>

<!-- ##markdown-source:
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
Cp4Zww4H6gebg/7+D9xiX2xzJgAA

-->

</rfc>

