<?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.10 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-schinazi-masque-obfuscation-01" category="exp" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 2.40.1 -->
  <front>
    <title abbrev="MASQUE Obfuscation">MASQUE Obfuscation</title>
    <seriesInfo name="Internet-Draft" value="draft-schinazi-masque-obfuscation-01"/>
    <author initials="D." surname="Schinazi" fullname="David Schinazi">
      <organization>Google LLC</organization>
      <address>
        <postal>
          <street>1600 Amphitheatre Parkway</street>
          <city>Mountain View, California 94043</city>
          <country>United States of America</country>
        </postal>
        <email>dschinazi.ietf@gmail.com</email>
      </address>
    </author>
    <date year="2020" month="March" day="12"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document describes MASQUE Obfuscation. MASQUE Obfuscation is a mechanism
that allows co-locating and obfuscating networking applications behind an
HTTPS web server. The currently prevalent use-case is to allow running a proxy
or VPN server that is indistinguishable from an HTTPS server to any
unauthenticated observer. We do not expect major providers and CDNs to deploy
this behind their main TLS certificate, as they are not willing to take the
risk of getting blocked, as shown when domain fronting was blocked. An
expected use would be for individuals to enable this behind their personal
websites via easy to configure open-source software.</t>
      <t>This document is a straw-man proposal. It does not contain enough details to
implement the protocol, and is currently intended to spark discussions on
the approach it is taking. Discussion of this work is encouraged to happen on
the MASQUE IETF mailing list <eref target="mailto:masque@ietf.org">masque@ietf.org</eref> or on the GitHub repository
which contains the draft: <eref target="https://github.com/DavidSchinazi/masque-drafts">https://github.com/DavidSchinazi/masque-drafts</eref>.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>This document describes MASQUE Obfuscation. MASQUE Obfuscation is a mechanism
that allows co-locating and obfuscating networking applications behind an
HTTPS web server. The currently prevalent use-case is to allow running a proxy
or VPN server that is indistinguishable from an HTTPS server to any
unauthenticated observer. We do not expect major providers and CDNs to deploy
this behind their main TLS certificate, as they are not willing to take the
risk of getting blocked, as shown when domain fronting was blocked. An
expected use would be for individuals to enable this behind their personal
websites via easy to configure open-source software.</t>
      <t>This document is a straw-man proposal. It does not contain enough details to
implement the protocol, and is currently intended to spark discussions on
the approach it is taking. Discussion of this work is encouraged to happen on
the MASQUE IETF mailing list <eref target="mailto:masque@ietf.org">masque@ietf.org</eref> or on the GitHub repository
which contains the draft: <eref target="https://github.com/DavidSchinazi/masque-drafts">https://github.com/DavidSchinazi/masque-drafts</eref>.</t>
      <t>MASQUE Obfuscation is built upon the MASQUE protocol
<xref target="MASQUE" format="default"/>. MASQUE Obfuscation leverages the efficient
head-of-line blocking prevention features of the QUIC transport protocol
<xref target="QUIC" format="default"/> when MASQUE Obfuscation is used in an HTTP/3
<xref target="HTTP3" format="default"/> server. MASQUE Obfuscation can also run in an
HTTP/2 server <xref target="HTTP2" format="default"/> but at a performance cost.</t>
      <section anchor="conventions" numbered="true" toc="default">
        <name>Conventions and Definitions</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119" format="default"/> <xref target="RFC8174" format="default"/>
when, and only when, they appear in all capitals, as shown here.</t>
      </section>
    </section>
    <section anchor="usage-scenarios" numbered="true" toc="default">
      <name>Usage Scenarios</name>
      <t>There are currently multiple usage scenarios that can benefit from MASQUE
Obfuscation.</t>
      <section anchor="protection-providers" numbered="true" toc="default">
        <name>Protection from Network Providers</name>
        <t>Some users may wish to obfuscate the destination of their network traffic from
their network provider. This prevents network providers from using data
harvested from this network traffic in ways the user did not intend.</t>
      </section>
      <section anchor="protection-servers" numbered="true" toc="default">
        <name>Protection from Web Servers</name>
        <t>There are many clients who would rather not establish a direct connection to
web servers, for example to avoid location tracking. The clients can do that
by running their traffic through a MASQUE Obfuscation server. The web server
will only see the IP address of the MASQUE Obfuscation server, not that of the
client.</t>
      </section>
      <section anchor="onion" numbered="true" toc="default">
        <name>Onion Routing</name>
        <t>Routing traffic through a MASQUE Obfuscation server only provides partial
protection against tracking, because the MASQUE Obfuscation server knows the
address of the client. Onion routing as it exists today mitigates this issue
for TCP/TLS. A MASQUE Obfuscation server could allow onion routing over QUIC.</t>
        <t>In this scenario, the client establishes a connection to the MASQUE
Obfuscation server, then through that to another MASQUE Obfuscation server,
etc. This creates a tree of MASQUE servers rooted at the client. QUIC
connections are mapped to a specific branch of the tree. The first MASQUE
Obfuscation server knows the actual address of the client, but the other
MASQUE Obfuscation servers only know the address of the previous server.
To assure reasonable privacy, the path should include at least 3 MASQUE
Obfuscation servers.</t>
      </section>
    </section>
    <section anchor="requirements" numbered="true" toc="default">
      <name>Requirements</name>
      <t>This section describes the goals and requirements chosen for MASQUE
Obfuscation.</t>
      <section anchor="invisibility-usage" numbered="true" toc="default">
        <name>Invisibility of Usage</name>
        <t>An authenticated client using MASQUE Obfuscation appears to observers as a
regular HTTPS client. Observers only see that HTTP/3 or HTTP/2 is being used
over an encrypted channel. No part of the exchanges between client and server
may stick out. Note that traffic analysis is discussed in <xref target="traffic-analysis" format="default"/>.</t>
      </section>
      <section anchor="invisibility-server" numbered="true" toc="default">
        <name>Invisibility of the Server</name>
        <t>To anyone without private keys, the server is indistinguishable from a regular
web server. It is impossible to send an unauthenticated probe that the server
would reply to differently than if it were a normal web server.</t>
      </section>
      <section anchor="fallback-h2" numbered="true" toc="default">
        <name>Fallback to HTTP/2 over TLS over TCP</name>
        <t>When QUIC is blocked, MASQUE Obfuscation can run over TCP and still satisfy
previous requirements. Note that in this scenario performance may be
negatively impacted.</t>
      </section>
    </section>
    <section anchor="overview" numbered="true" toc="default">
      <name>Overview of the Mechanism</name>
      <t>The server runs an HTTPS server on port 443, and has a valid TLS certificate
for its domain. The client has a public/private key pair, and the server
maintains a list of authorized MASQUE Obfuscation clients, and their public
key. (Alternatively, clients can also be authenticated using a shared secret.)
The client starts by establishing a regular HTTPS connection to the server
(HTTP/3 over QUIC or HTTP/2 over TLS 1.3 <xref target="TLS13" format="default"/> over TCP), and
validates the server's TLS certificate as it normally would for HTTPS. If
validation fails, the connection is aborted. At this point the client can send
regular unauthenticated HTTP requests to the server. When it wishes to start
MASQUE Obfuscation, the client uses HTTP Transport Authentication
<xref target="TRANSPORT-AUTH" format="default"/> to prove its possession
of its associated key. The client sends the Transport-Authentication header
alongside its MASQUE Negotiation request.</t>
      <t>When the server receives the MASQUE Negotiation request, it authenticates the
client and if that fails responds with code "404 Not Found", making sure its
response is the same as what it would return for any unexpected POST
request. If authentication succeeds, the server sends its list of supported
MASQUE applications and the client can start using them.</t>
    </section>
    <section anchor="resumption" numbered="true" toc="default">
      <name>Connection Resumption</name>
      <t>Clients MUST NOT attempt to "resume" MASQUE Obfuscation state similarly to how
TLS sessions can be resumed. Every new QUIC or TLS connection requires fully
authenticating the client and server. QUIC 0-RTT and TLS early data MUST
NOT be used with MASQUE Obfuscation as they are not forward secure.</t>
    </section>
    <section anchor="pmtud" numbered="true" toc="default">
      <name>Path MTU Discovery</name>
      <t>In the main deployment of this mechanism, QUIC will be used between client
and server, and that will most likely be the smallest MTU link in the path
due to QUIC header and authentication tag overhead. The client is responsible
for not sending overly large UDP packets and notifying the server of the low
MTU. Therefore PMTUD is currently seen as out of scope of this document.</t>
    </section>
    <section anchor="http2" numbered="true" toc="default">
      <name>Operation over HTTP/2</name>
      <t>We will need to define the details of how to run MASQUE over HTTP/2.
When running over HTTP/2, MASQUE uses the Extended CONNECT method to negotiate
the use of datagrams over an HTTP/2 stream
<xref target="HTTP2-TRANSPORT" format="default"/>.</t>
      <t>MASQUE Obfuscation implementations SHOULD discover that HTTP/3 is available
(as opposed to only HTTP/2) using the same mechanism as regular HTTP traffic.
This current standardized mechanism for this is HTTP Alternative Services
<xref target="ALT-SVC" format="default"/>, but future mechanisms such as
<xref target="HTTPSSVC" format="default"/> can be used if they become
widespread.</t>
      <t>MASQUE Obfuscation implementations using HTTP/3 MUST support the fallback to
HTTP/2 to avoid incentivizing censors to block HTTP/3 or QUIC.</t>
      <t>When the client wishes to use the "UDP Proxying" MASQUE application over
HTTP/2, the client opens a new stream with a CONNECT request to the
"masque-udp-proxy" protocol and then sends datagrams encapsulated inside the
stream with a two-byte length prefix in network byte order. The target IP and
port are sent as part of the URL query. Resetting that stream instructs the
server to release any associated resources.</t>
      <t>When the client wishes to use the "IP Proxying" MASQUE application over
HTTP/2, the client opens a new stream with a CONNECT request to the
"masque-ip-proxy" protocol and then sends IP datagrams with a two byte length
prefix. The server can inspect the IP datagram to look for the destination
address in the IP header.</t>
    </section>
    <section anchor="security" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>Here be dragons. TODO: slay the dragons.</t>
      <section anchor="traffic-analysis" numbered="true" toc="default">
        <name>Traffic Analysis</name>
        <t>While MASQUE Obfuscation ensures that proxied traffic appears similar to
regular HTTP traffic, it doesn't inherently defeat traffic analysis. However,
the fact that MASQUE leverages QUIC allows it to segment STREAM frames over
multiple packets and add PADDING frames to change the observable
characteristics of its encrypted traffic. The exact details of how to change
traffic patterns to defeat traffic analysis is considered an open research
question and is out of scope for this document.</t>
        <t>When multiple MASQUE Obfuscation servers are available, a client can leverage
QUIC connection migration to seamlessly transition its end-to-end QUIC
connections by treating separate MASQUE Obfuscation servers as different paths.
This could afford an additional level of obfuscation in hopes of rendering
traffic analysis less effective.</t>
      </section>
      <section anchor="untrusted-servers" numbered="true" toc="default">
        <name>Untrusted Servers</name>
        <t>As with any proxy or VPN technology, MASQUE Obfuscation hides some of the
client's private information (such as who they are communicating with) from
their network provider by transferring that information to the MASQUE server.
It is paramount that clients only use MASQUE Obfuscation servers that they
trust, as a malicious actor could easily setup a MASQUE Obfuscation server and
advertise it as a privacy solution in hopes of attracting users to send it
their traffic.</t>
      </section>
    </section>
    <section anchor="iana" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>We will need to register the "masque-udp-proxy" and "masque-ip-proxy" extended
HTTP CONNECT protocols.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="MASQUE" target="http://www.ietf.org/internet-drafts/draft-schinazi-masque-02.txt">
          <front>
            <title>The MASQUE Protocol</title>
            <seriesInfo name="Internet-Draft" value="draft-schinazi-masque-02"/>
            <author initials="D" surname="Schinazi" fullname="David Schinazi">
              <organization/>
            </author>
            <date month="January" day="8" year="2020"/>
            <abstract>
              <t>This document describes MASQUE (Multiplexed Application Substrate over QUIC Encryption).  MASQUE is a framework that allows concurrently running multiple networking applications inside an HTTP/3 connection.  For example, MASQUE can allow a QUIC client to negotiate proxying capability with an HTTP/3 server, and subsequently make use of this functionality while concurrently processing HTTP/3 requests and responses.  This document is a straw-man proposal.  It does not contain enough details to implement the protocol, and is currently intended to spark discussions on the approach it is taking.  Discussion of this work is encouraged to happen on the MASQUE IETF mailing list masque@ietf.org (mailto:masque@ietf.org) or on the GitHub repository which contains the draft: https://github.com/DavidSchinazi/masque-drafts (https://github.com/DavidSchinazi/masque-drafts).</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="QUIC" target="http://www.ietf.org/internet-drafts/draft-ietf-quic-transport-27.txt">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-27"/>
            <author initials="J" surname="Iyengar" fullname="Jana Iyengar">
              <organization/>
            </author>
            <author initials="M" surname="Thomson" fullname="Martin Thomson">
              <organization/>
            </author>
            <date month="February" day="21" year="2020"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol. Accompanying documents describe QUIC's loss detection and congestion control and the use of TLS for key negotiation.  Note to Readers  Discussion of this draft takes place on the QUIC working group mailing list (quic@ietf.org), which is archived at &lt;https://mailarchive.ietf.org/arch/search/?email_list=quic&gt;.  Working Group information can be found at &lt;https://github.com/ quicwg&gt;; source code and issues list for this draft can be found at &lt;https://github.com/quicwg/base-drafts/labels/-transport&gt;.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="HTTP3" target="http://www.ietf.org/internet-drafts/draft-ietf-quic-http-27.txt">
          <front>
            <title>Hypertext Transfer Protocol Version 3 (HTTP/3)</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-27"/>
            <author initials="M" surname="Bishop" fullname="Mike Bishop">
              <organization/>
            </author>
            <date month="February" day="21" year="2020"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment.  This document describes a mapping of HTTP semantics over QUIC.  This document also identifies HTTP/2 features that are subsumed by QUIC, and describes how HTTP/2 extensions can be ported to HTTP/3.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="HTTP2" target="https://www.rfc-editor.org/info/rfc7540">
          <front>
            <title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
            <seriesInfo name="DOI" value="10.17487/RFC7540"/>
            <seriesInfo name="RFC" value="7540"/>
            <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>
        </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>
            <seriesInfo name="DOI" value="10.17487/RFC2119"/>
            <seriesInfo name="RFC" value="2119"/>
            <seriesInfo name="BCP" value="14"/>
            <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>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <seriesInfo name="DOI" value="10.17487/RFC8174"/>
            <seriesInfo name="RFC" value="8174"/>
            <seriesInfo name="BCP" value="14"/>
            <author initials="B." surname="Leiba" fullname="B. Leiba">
              <organization/>
            </author>
            <date year="2017" month="May"/>
            <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>
        </reference>
        <reference anchor="TLS13" target="https://www.rfc-editor.org/info/rfc8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <seriesInfo name="DOI" value="10.17487/RFC8446"/>
            <seriesInfo name="RFC" value="8446"/>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2018" month="August"/>
            <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>
        </reference>
        <reference anchor="TRANSPORT-AUTH" target="http://www.ietf.org/internet-drafts/draft-schinazi-httpbis-transport-auth-01.txt">
          <front>
            <title>HTTP Transport Authentication</title>
            <seriesInfo name="Internet-Draft" value="draft-schinazi-httpbis-transport-auth-01"/>
            <author initials="D" surname="Schinazi" fullname="David Schinazi">
              <organization/>
            </author>
            <date month="January" day="8" year="2020"/>
            <abstract>
              <t>The most common existing authentication mechanisms for HTTP are sent with each HTTP request, and authenticate that request instead of the underlying HTTP connection, or transport.  While these mechanisms work well for existing uses of HTTP, they are not suitable for emerging applications that multiplex non-HTTP traffic inside an HTTP connection.  This document describes the HTTP Transport Authentication Framework, a method of authenticating not only an HTTP request, but also its underlying transport.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="HTTP2-TRANSPORT" target="http://www.ietf.org/internet-drafts/draft-kinnear-httpbis-http2-transport-02.txt">
          <front>
            <title>Using HTTP/2 as a Transport for Arbitrary Bytestreams</title>
            <seriesInfo name="Internet-Draft" value="draft-kinnear-httpbis-http2-transport-02"/>
            <author initials="E" surname="Kinnear" fullname="Eric Kinnear">
              <organization/>
            </author>
            <author initials="T" surname="Pauly" fullname="Tommy Pauly">
              <organization/>
            </author>
            <date month="November" day="4" year="2019"/>
            <abstract>
              <t>HTTP/2 provides multiplexing of HTTP requests over a single underlying transport connection.  HTTP/2 Transport defines the use of the bidirectional extended CONNECT handshake to negotiate the use of application protocols using streams of an HTTP/2 connection as transport.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="ALT-SVC" target="https://www.rfc-editor.org/info/rfc7838">
          <front>
            <title>HTTP Alternative Services</title>
            <seriesInfo name="DOI" value="10.17487/RFC7838"/>
            <seriesInfo name="RFC" value="7838"/>
            <author initials="M." surname="Nottingham" fullname="M. Nottingham">
              <organization/>
            </author>
            <author initials="P." surname="McManus" fullname="P. McManus">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke">
              <organization/>
            </author>
            <date year="2016" month="April"/>
            <abstract>
              <t>This document specifies "Alternative Services" for HTTP, which allow an origin's resources to be authoritatively available at a separate network location, possibly accessed with a different protocol configuration.</t>
            </abstract>
          </front>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="HTTPSSVC" target="http://www.ietf.org/internet-drafts/draft-ietf-dnsop-svcb-httpssvc-02.txt">
          <front>
            <title>Service binding and parameter specification via the DNS (DNS SVCB and HTTPSSVC)</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-dnsop-svcb-httpssvc-02"/>
            <author initials="B" surname="Schwartz" fullname="Benjamin Schwartz">
              <organization/>
            </author>
            <author initials="M" surname="Bishop" fullname="Mike Bishop">
              <organization/>
            </author>
            <author initials="E" surname="Nygren" fullname="Erik Nygren">
              <organization/>
            </author>
            <date month="March" day="9" year="2020"/>
            <abstract>
              <t>This document specifies the "SVCB" and "HTTPSSVC" DNS resource record types to facilitate the lookup of information needed to make connections for origin resources, such as for HTTPS URLs.  SVCB records allow an origin to be served from multiple network locations, each with associated parameters (such as transport protocol configuration and keying material for encrypting TLS SNI).  They also enable aliasing of apex domains, which is not possible with CNAME. The HTTPSSVC DNS RR is a variation of SVCB for HTTPS and HTTP origins.  By providing more information to the client before it attempts to establish a connection, these records offer potential benefits to both performance and privacy.  TO BE REMOVED: This proposal is inspired by and based on recent DNS usage proposals such as ALTSVC, ANAME, and ESNIKEYS (as well as long standing desires to have SRV or a functional equivalent implemented for HTTP).  These proposals each provide an important function but are potentially incompatible with each other, such as when an origin is load-balanced across multiple hosting providers (multi-CDN). Furthermore, these each add potential cases for adding additional record lookups in-addition to AAAA/A lookups.  This design attempts to provide a unified framework that encompasses the key functionality of these proposals, as well as providing some extensibility for addressing similar future challenges.  TO BE REMOVED: The specific name for this RR type is an open topic for discussion.  "SVCB" and "HTTPSSVC" are meant as placeholders as they are easy to replace.  Other names might include "B", "SRV2", "SVCHTTPS", "HTTPS", and "ALTSVC".  TO BE REMOVED: This document is being collaborated on in Github at: https://github.com/MikeBishop/dns-alt-svc [1].  The most recent working version of the document, open issues, etc. should all be available there.  The authors (gratefully) accept pull requests.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.schwartz-httpbis-helium" target="http://www.ietf.org/internet-drafts/draft-schwartz-httpbis-helium-00.txt">
          <front>
            <title>Hybrid Encapsulation Layer for IP and UDP Messages (HELIUM)</title>
            <seriesInfo name="Internet-Draft" value="draft-schwartz-httpbis-helium-00"/>
            <author initials="B" surname="Schwartz" fullname="Benjamin Schwartz">
              <organization/>
            </author>
            <date month="June" day="25" year="2018"/>
            <abstract>
              <t>HELIUM is a protocol that can be used to implement a UDP proxy, a VPN, or a hybrid of these.  It is intended to run over a reliable, secure substrate transport.  It can serve a variety of use cases, but its initial purpose is to enable HTTP proxies to forward non-TCP flows.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.pardue-httpbis-http-network-tunnelling" target="http://www.ietf.org/internet-drafts/draft-pardue-httpbis-http-network-tunnelling-01.txt">
          <front>
            <title>HTTP-initiated Network Tunnelling (HiNT)</title>
            <seriesInfo name="Internet-Draft" value="draft-pardue-httpbis-http-network-tunnelling-01"/>
            <author initials="L" surname="Pardue" fullname="Lucas Pardue">
              <organization/>
            </author>
            <date month="October" day="18" year="2018"/>
            <abstract>
              <t>The HTTP CONNECT method allows an HTTP client to initiate, via a proxy, a TCP-based tunnel to a single destination origin.  This memo explores options for expanding HTTP-initiated Network Tunnelling (HiNT) to cater for diverse UDP and IP associations.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8441" target="https://www.rfc-editor.org/info/rfc8441">
          <front>
            <title>Bootstrapping WebSockets with HTTP/2</title>
            <seriesInfo name="DOI" value="10.17487/RFC8441"/>
            <seriesInfo name="RFC" value="8441"/>
            <author initials="P." surname="McManus" fullname="P. McManus">
              <organization/>
            </author>
            <date year="2018" month="September"/>
            <abstract>
              <t>This document defines a mechanism for running the WebSocket Protocol (RFC 6455) over a single stream of an HTTP/2 connection.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8471" target="https://www.rfc-editor.org/info/rfc8471">
          <front>
            <title>The Token Binding Protocol Version 1.0</title>
            <seriesInfo name="DOI" value="10.17487/RFC8471"/>
            <seriesInfo name="RFC" value="8471"/>
            <author initials="A." surname="Popov" fullname="A. Popov" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="Nystroem" fullname="M. Nystroem">
              <organization/>
            </author>
            <author initials="D." surname="Balfanz" fullname="D. Balfanz">
              <organization/>
            </author>
            <author initials="J." surname="Hodges" fullname="J. Hodges">
              <organization/>
            </author>
            <date year="2018" month="October"/>
            <abstract>
              <t>This document specifies version 1.0 of the Token Binding protocol. The Token Binding protocol allows client/server applications to create long-lived, uniquely identifiable TLS bindings spanning multiple TLS sessions and connections.  Applications are then enabled to cryptographically bind security tokens to the TLS layer, preventing token export and replay attacks.  To protect privacy, the Token Binding identifiers are only conveyed over TLS and can be reset by the user at any time.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.sullivan-tls-post-handshake-auth" target="http://www.ietf.org/internet-drafts/draft-sullivan-tls-post-handshake-auth-00.txt">
          <front>
            <title>Post-Handshake Authentication in TLS</title>
            <seriesInfo name="Internet-Draft" value="draft-sullivan-tls-post-handshake-auth-00"/>
            <author initials="N" surname="Sullivan" fullname="Nick Sullivan">
              <organization/>
            </author>
            <author initials="M" surname="Thomson" fullname="Martin Thomson">
              <organization/>
            </author>
            <author initials="M" surname="Bishop" fullname="Mike Bishop">
              <organization/>
            </author>
            <date month="August" day="5" year="2016"/>
            <abstract>
              <t>This document describes a mechanism for performing post-handshake certificate-based authentication in Transport Layer Security (TLS) versions 1.3 and later.  This includes both spontaneous and solicited authentication of both client and server.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.ietf-httpbis-http2-secondary-certs" target="http://www.ietf.org/internet-drafts/draft-ietf-httpbis-http2-secondary-certs-05.txt">
          <front>
            <title>Secondary Certificate Authentication in HTTP/2</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-http2-secondary-certs-05"/>
            <author initials="M" surname="Bishop" fullname="Mike Bishop">
              <organization/>
            </author>
            <author initials="N" surname="Sullivan" fullname="Nick Sullivan">
              <organization/>
            </author>
            <author initials="M" surname="Thomson" fullname="Martin Thomson">
              <organization/>
            </author>
            <date month="November" day="1" year="2019"/>
            <abstract>
              <t>A use of TLS Exported Authenticators is described which enables HTTP/2 clients and servers to offer additional certificate-based credentials after the connection is established.  The means by which these credentials are used with requests is defined.</t>
            </abstract>
          </front>
        </reference>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgments" toc="default">
      <name>Acknowledgments</name>
      <t>This proposal was inspired directly or indirectly by prior work from many
people. In particular, this work is related to
<xref target="I-D.schwartz-httpbis-helium" format="default"/> and
<xref target="I-D.pardue-httpbis-http-network-tunnelling" format="default"/>. The mechanism used to
run the MASQUE protocol over HTTP/2 streams was inspired by <xref target="RFC8441" format="default"/>.
Brendan Moran is to thank for the idea of leveraging connection migration
across MASQUE servers. The author would also like to thank
Nick Harper,
Christian Huitema,
Marcus Ihlar,
Eric Kinnear,
Mirja Kuehlewind,
Lucas Pardue,
Tommy Pauly,
Zaheduzzaman Sarker,
Ben Schwartz,
and
Christopher A. Wood
for their input.</t>
      <t>The author would like to express immense gratitude to Christophe A., an
inspiration and true leader of VPNs.</t>
    </section>
    <section numbered="false" anchor="design" toc="default">
      <name>Design Justifications</name>
      <t>Using an exported key as a nonce allows us to prevent replay attacks (since it
depends on randomness from both endpoints of the TLS connection) without
requiring the server to send an explicit nonce before it has authenticated the
client. Adding an explicit nonce mechanism would expose the server as it would
need to send these nonces to clients that have not been authenticated yet.</t>
      <t>The rationale for a separate MASQUE protocol stream is to allow
server-initiated messages. If we were to use HTTP semantics, we would only be
able to support the client-initiated request-response model. We could have used
WebSocket for this purpose but that would have added wire overhead and
dependencies without providing useful features.</t>
      <t>There are many other ways to authenticate HTTP, however the authentication
used here needs to work in a single client-initiated message to meet the
requirement of not exposing the server.</t>
      <t>The current proposal would also work with TLS 1.2, but in that case TLS false
start and renegotiation must be disabled, and the extended master secret and
renegotiation indication TLS extensions must be enabled.</t>
      <t>If the server or client want to hide that HTTP/2 is used, the client can set
its ALPN to an older version of HTTP and then use the Upgrade header to
upgrade to HTTP/2 inside the TLS encryption.</t>
      <t>The client authentication used here is similar to how Token
Binding <xref target="RFC8471" format="default"/> operates, but it has very different goals. MASQUE does
not use token binding directly because using token binding requires sending
the token_binding TLS extension in the TLS ClientHello, and that would stick
out compared to a regular TLS connection.</t>
      <t>TLS post-handshake authentication <xref target="I-D.sullivan-tls-post-handshake-auth" format="default"/>
is not used by this proposal because that requires sending the
"post_handshake_auth" extension in the TLS ClientHello, and that would stick
out from a regular HTTPS connection.</t>
      <t>Client authentication could have benefited from Secondary Certificate
Authentication in HTTP/2 <xref target="I-D.ietf-httpbis-http2-secondary-certs" format="default"/>,
however that has two downsides: it requires the server advertising that
it supports it in its SETTINGS, and it cannot be sent unprompted by the
client, so the server would have to request authentication.
Both of these would make the server stick out from regular HTTP/2 servers.</t>
      <t>MASQUE proposes a new client authentication method (as opposed to reusing
something like HTTP basic authentication) because HTTP authentication methods
are conceptually per-request (they need to be repeated on each request)
whereas the new method is bound to the underlying connection (be it QUIC or
TLS). In particular, this allows sending QUIC DATAGRAM frames without
authenticating every frame individually. Additionally, HMAC and asymmetric
keying are preferred to sending a password for client authentication since
they have a tighter security bound. Going into the design rationale, HMACs
(and signatures) need some data to sign, and to avoid replay attacks that
should be a fresh nonce provided by the remote peer. Having the server
provide an explicit nonce would leak the existence of the server so we use
TLS keying material exporters as they provide us with a nonce that contains
entropy from the server without requiring explicit communication.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
9xggzrD/Da1IzQj6OwAA

-->

</rfc>
