Internet-Draft CONNECT-UDP Bind July 2024
Schinazi & Singh Expires 4 January 2025 [Page]
Workgroup:
MASQUE
Internet-Draft:
draft-ietf-masque-connect-udp-listen-03
Published:
Intended Status:
Standards Track
Expires:
Authors:
D. Schinazi
Google LLC
A. Singh
Google LLC

Proxying Bound UDP in HTTP

Abstract

The mechanism to proxy UDP in HTTP only allows each UDP Proxying request to transmit to a specific host and port. This is well suited for UDP client-server protocols such as HTTP/3, but is not sufficient for some UDP peer-to-peer protocols like WebRTC. This document proposes an extension to UDP Proxying in HTTP that enables such use-cases.

About This Document

This note is to be removed before publishing as an RFC.

The latest revision of this draft can be found at https://ietf-wg-masque.github.io/draft-ietf-masque-connect-udp-listen/draft-ietf-masque-connect-udp-listen.html. Status information for this document may be found at https://datatracker.ietf.org/doc/draft-ietf-masque-connect-udp-listen/.

Discussion of this document takes place on the MASQUE Working Group mailing list (mailto:masque@ietf.org), which is archived at https://mailarchive.ietf.org/arch/browse/masque/. Subscribe at https://www.ietf.org/mailman/listinfo/masque/.

Source for this draft and an issue tracker can be found at https://github.com/ietf-wg-masque/draft-ietf-masque-connect-udp-listen.

Status of This Memo

This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.

Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.

Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."

This Internet-Draft will expire on 4 January 2025.

Table of Contents

1. Introduction

The mechanism to proxy UDP in HTTP [CONNECT-UDP] allows creating tunnels for communicating UDP payloads [UDP] to a fixed host and port. Combined with the HTTP CONNECT method (see Section 9.3.6 of [HTTP]), it allows proxying the majority of a Web Browser's HTTP traffic. However WebRTC [WebRTC] relies on ICE [ICE] to provide connectivity between two Web browsers, and ICE relies on the ability to send and receive UDP packets to multiple hosts. While in theory it might be possible to accomplish this using multiple UDP Proxying HTTP requests, HTTP semantics [HTTP] do not guarantee that distinct requests will be handled by the same server. This can lead to the UDP packets being sent from distinct IP addresses, thereby preventing ICE from operating correctly. Consequently, UDP Proxying requests cannot enable WebRTC connectivity between peers.

This document describes an extension to UDP Proxying in HTTP that allows sending and receiving UDP payloads to multiple hosts within the scope of a single UDP Proxying HTTP request.

1.1. Conventions and Definitions

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 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.

This document uses terminology from [CONNECT-UDP] and notational conventions from [QUIC]. This document uses the terms Boolean, Integer, and List from Section 3 of [STRUCTURED-FIELDS] to specify syntax and parsing. This document uses Augmented Backus-Naur Form and parsing/serialization behaviors from [ABNF]

2. Proxied UDP Binding Mechanism

In unextended UDP Proxying requests, the target host is encoded in the HTTP request path or query. For Bound UDP Proxying, the target is either conveyed in each HTTP Datagram (see Section 4.1), or registered via capsules and then compressed (see Section 5.2).

When performing URI Template Expansion of the UDP Proxying template (see Section 3 of [CONNECT-UDP]), the client sets both the target_host and the target_port variables to the '*' character (ASCII character 0x2A).

When sending the UDP Proxying request to the proxy, the client adds the "Connect-UDP-Bind" header field to identify it as such. If the proxy accepts the CONNECT UDP Bind request, it adds the allocated public IP:port tuples for the client to the response; see Section 8. Both client and proxy can then negotiate even and odd numbered context IDs to send UDP payloads to each other.

Endpoints exchange COMPRESSION_ASSIGN capsules in order to establish which IP a given context ID corresponds to. The context ID can correspond to both compressed and uncompressed payloads to/from any target and are configured as defined in Section 5.

3. Context ID

This extension leverages context IDs (see Section 4 of [CONNECT-UDP]) to compress the target IP address and port when encoding datagrams on the wire. Endpoint start by registering a context ID and the IP/ports it's associated with by sending a COMPRESSION_ASSIGN capsule to its peer. The peer will then echo that capsule to indicate it's received it and estabished its own mapping. From then on, both endpoints are aware of the context ID and can send compressed datagrams. Later, any endpoint can decide to close the compression context by sending a COMPRESSION_CLOSE capsule.

The context ID 0 was reserved by unextended connect-udp and is not used by this extension. Once an endpoint has ascertained that the peer supports this extension (see Section 7), the endpoint MUST NOT send any datagrams with context ID set to 0, and MUST silently drop any received datagrams with context ID set to 0.

As mandated in Section 4 of [CONNECT-UDP], clients will allocate even context IDs while proxies will allocate odd ones. They MAY pre-emptively use Context IDs not yet acknowledged by the other party, knowing that those packets can be lost since the COMPRESSION_ASSIGN request receiving proxy or client is not guaranteed to be ready to accept payloads until a COMPRESSION_ASSIGN response is echoed back.

4. Uncompressed Operation

If the client wishes to send or receive uncompressed datagrams, it MUST first exchange the COMPRESSION_ASSIGN capsule (see Figure 3) with the proxy with an unused Context ID defined in Section 3 with the IP Version set to zero.

When HTTP Datagrams [HTTP-DGRAM] are associated with a Bound UDP Proxying request, the format of their UDP Proxying Payload field (see Section 5 of [CONNECT-UDP]) is defined by Figure 1 when uncompressed; every datagram carries addressing information.

4.1. Uncompressed Payload Format

Uncompressed Bound UDP Proxying Payload {
  IP Version (8),
  IP Address (32..128),
  UDP Port (16),
  UDP Payload (..),
}
Figure 1: Uncompressed Bound UDP Proxying HTTP Datagram Format

It contains the following fields:

IP Version:

The IP Version of the following IP Address field. MUST be 4 or 6.

IP Address:

The IP Address of this proxied UDP packet. When sent from client to proxy, this is the target host to which the proxy will send this UDP payload. When sent from proxy to client, this represents the source IP address of the UDP packet received by the proxy. This field has a length of 32 bits when the corresponding IP Version field value is 4, and 128 when the IP Version is 6.

UDP Port:

The UDP Port of this proxied UDP packet in network byte order. When sent from client to proxy, this is the target port to which the proxy will send this UDP payload. When sent from proxy to client, this represents the source UDP port of the UDP packet received by the proxy.

UDP Payload:

The unmodified UDP Payload of this proxied UDP packet (referred to as "data octets" in [UDP]).

4.2. Restricting IPs

If an uncompressed Context ID was set (via Section 4), the client MAY at any point request the proxy reject all traffic from uncompressed targets by using COMPRESSION_CLOSE (see Section 6.2) on said Context ID. Then the proxy effectively acts as a firewall against unwanted or unknown IPs.

5. Compressed Operation

Endpoints MAY choose to compress the IP and port information per datagram for a given target using Context IDs. In that case, the endpoint sends a COMPRESSION_ASSIGN capsule (see Figure 3) with the target information it wishes to compress and its peer responds with either a COMPRESSION_ASSIGN capsule if it accepts the compression request, or a COMPRESSION_CLOSE with the context ID (see Figure 4) if it doesn't wish to support compression for the given Context ID (For example, due to the memory cost of establishing a list of mappings per target per client). If the compression was rejected, the client and proxy will instead use an uncompressed context ID (See Section 4) to exhange UDP payloads for the given target, if those have been enabled.

5.1. Compression Mapping

When an endpoint receives a COMPRESSION_ASSIGN capsule with a non-zero IP length, it MUST decide whether to accept or reject the compression mapping:

  • if it accepts the mapping, first the receiver MUST save the mapping from context ID to address and port. Second, the receiver MUST echo an identical COMPRESSION_ASSIGN capsule back to its peer.

  • if it rejects the mapping, the receiver MUST respond by sending a COMPRESSION_CLOSE capsule with the context ID set to the one from the received COMPRESSION_ASSIGN capsule.

The endpoint MAY choose to close any context that it registered or was registered with it respectively using COMPRESSION_CLOSE (For example when a mapping is unused for a long time). Another potential use is Section 4.2.

5.2. Compressed Payload Format

When HTTP Datagrams [HTTP-DGRAM] are associated with this Bound UDP Proxying request, the format of their UDP Proxying Payload field (see Section 5 of [CONNECT-UDP]) is defined by Figure 1 when the context ID is set to one previously registered for compressed payloads. (See Section 3 for compressed and uncompressed assignments.)

Compressed Bound UDP Proxying Payload {
  UDP Payload (..),
}
Figure 2: Compressed Bound UDP Proxying HTTP Datagram Format

It contains the following fields:

UDP Payload:

The unmodified UDP Payload of this proxied UDP packet (referred to as "data octets" in [UDP]).

6. Capsules

This document defines new capsule types that deal with registering context IDs.

6.1. The COMPRESSION_ASSIGN capsule

The Compression Assign capsule has two purposes. Either to request the assignment of a Context ID (see Section 3) to a corresponding target IP:Port. Or to accept a COMPRESSION_ASSIGN request from the other party.

Capsule {
  Type COMPRESSION_ASSIGN,
  Length (i),
  Context ID (i),
  IP Version (8),
  [IP Address (32..128)],
  [UDP Port (16)],
}
Figure 3: Compression Assign Capsule Format

The IP Length, Address and Port fields in Figure 3 are the same as those defined in Section 4.1.

When the IP Version is set to 0, the IP Address and UDP Port fields are omitted. This allows registering an uncompressed Context ID, as described in Section 3.

6.2. The COMPRESSION_CLOSE capsule

The Compression Close capsule serves two purposes. As a response to reject a COMPRESSION_ASSIGN request and to close or to clean up any existing compression mappings. Once an endpoint has either sent or received a COMPRESSION_CLOSE for a given context ID, it MUST NOT send any further datagrams with that Context ID.

Capsule {
  Type COMPRESSION_CLOSE,
  Length (i),
  Context ID (i),
}
Figure 4: Compression Close Capsule Format

6.3. Symmetry

As mandated in Section 4 of [CONNECT-UDP], clients can only allocate even context IDs, while proxies can only allocate odd ones. This makes the registration capsules above unambiguous. For example, if a client receives a COMPRESSION_ASSIGN capsule with an even context ID, it knows that this has to be an echo of a capsule it already sent.

7. The Connect-UDP-Bind Header Field

The "Connect-UDP-Bind" header field’s value is a Boolean Structured Field set to true. Clients and proxy both indicate support for this extension by sending the Connect-UDP-Bind header field with a value of ?1. Once an endpoint has both sent and received the Connect-UDP-Bind header field set to true, this extension is enabled. Any other value type MUST be handled as if the field were not present by the recipients (for example, if this field is defined multiple times, its type becomes a List and therefore is to be ignored). This document does not define any parameters for the Connect-UDP-Bind header field value, but future documents might define parameters. Receivers MUST ignore unknown parameters.

8. The Proxy-Public-Address Response Header Field

Upon accepting the request, the proxy MUST select at least one public IP address to bind. The proxy MAY assign more addresses. For each selected address, it MUST select an open port to bind to this request. From then and until the tunnel is closed, the proxy SHALL send packets received on these IP-port tuples to the client. The proxy MUST communicate the selected addresses and ports to the client using the "Proxy-Public-Address" header. The header is defined as a List of IP-Port-tuples. The format of the tuple is defined using IP-literal, IPv4address, IPv6address and port from Section 3.2 of [URI].

ip-port-tuple = ( IP-literal / IPv4address ) ":" port
Figure 5: Proxy Address Format

When a single IP-Port tuple is provided in the Proxy-Public-Address field, the proxy MUST use the same public IP and Port for the remainder of the connection. When multiple tuples are provided, maintaining address stability per address family is RECOMMENDED.

Note that since the addresses are conveyed in HTTP response headers, a subsequent change of addresses on the proxy cannot be conveyed to the client.

9. Proxy behavior

After accepting the Connect-UDP Binding proxying request, the proxy uses an assigned IP:port to transmit UDP payloads received from the client to the target IP Address and UDP Port specified in each binding Datagram Payload received from the client. The proxy uses the same ports to listen for UDP packets from any authorized target and encapsulates the packets in the Binding Datagram Payload format, and forwards it to the client if a corresponding Context ID mapping exists for the target.

If the proxy receives UDP payloads that don't correspond to any mapping i.e. no compression for the given target was ever established and a mapping for uncompressed or any target is missing, the proxy will either drop the datagram or temporarily buffer it (see Section 5 of [CONNECT-UDP]).

10. Security Considerations

The security considerations described in Section 7 of [CONNECT-UDP] also apply here. Since TURN can be run over this mechanism, implementors should review the security considerations in Section 21 of [TURN].

Since unextended UDP Proxying requests carry the target as part of the request, the proxy can protect unauthorized targets by rejecting requests before creating the tunnel, and communicate the rejection reason in response header fields. Bound UDP Proxying requests do not have this ability. Therefore, proxies MUST validate the target on every datagram and MUST NOT forward individual datagrams with unauthorized targets. Proxies can either silently discard such datagrams or abort the corresponding request stream.

Note that if the compression response (COMPRESSION_ASSIGN OR COMPRESSION_CLOSE) cannot be immediately sent due to flow or congestion control, an upper limit on how many compression responses the endpoint is willing to buffer MUST be set to prevent memory exhaustion. The proxy MAY close the connection if such conditions occur.

11. IANA Considerations

This document will request IANA to register the following entry in the "HTTP

Field Name" registry maintained at

<https://www.iana.org/assignments/http-fields>:

Connect-UDP-Bind

Template:

None

Status:

provisional (permanent if this document is approved)

Reference:

This document

Comments:

None

This document also requests IANA to register the following new items to the "HTTP Capsule Types" registry maintained at <https://www.iana.org/assignments/masque>:

Table 1: New Capsules
Value Capsule Type
0x1C0FE323 COMPRESSION_ASSIGN
0x1C0FE324 COMPRESSION_CLOSE

All of these new entries use the following values for these fields:

Status:

provisional (permanent if this document is approved)

Reference:

This document

Comments:

None

12. References

12.1. Normative References

[ABNF]
Crocker, D., Ed. and P. Overell, "Augmented BNF for Syntax Specifications: ABNF", STD 68, RFC 5234, DOI 10.17487/RFC5234, , <https://www.rfc-editor.org/rfc/rfc5234>.
[CONNECT-UDP]
Schinazi, D., "Proxying UDP in HTTP", RFC 9298, DOI 10.17487/RFC9298, , <https://www.rfc-editor.org/rfc/rfc9298>.
[HTTP]
Fielding, R., Ed., Nottingham, M., Ed., and J. Reschke, Ed., "HTTP Semantics", STD 97, RFC 9110, DOI 10.17487/RFC9110, , <https://www.rfc-editor.org/rfc/rfc9110>.
[HTTP-DGRAM]
Schinazi, D. and L. Pardue, "HTTP Datagrams and the Capsule Protocol", RFC 9297, DOI 10.17487/RFC9297, , <https://www.rfc-editor.org/rfc/rfc9297>.
[QUIC]
Iyengar, J., Ed. and M. Thomson, Ed., "QUIC: A UDP-Based Multiplexed and Secure Transport", RFC 9000, DOI 10.17487/RFC9000, , <https://www.rfc-editor.org/rfc/rfc9000>.
[RFC2119]
Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, , <https://www.rfc-editor.org/rfc/rfc2119>.
[RFC8174]
Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, , <https://www.rfc-editor.org/rfc/rfc8174>.
[STRUCTURED-FIELDS]
Nottingham, M. and P. Kamp, "Structured Field Values for HTTP", RFC 8941, DOI 10.17487/RFC8941, , <https://www.rfc-editor.org/rfc/rfc8941>.
[UDP]
Postel, J., "User Datagram Protocol", STD 6, RFC 768, DOI 10.17487/RFC0768, , <https://www.rfc-editor.org/rfc/rfc768>.
[URI]
Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform Resource Identifier (URI): Generic Syntax", STD 66, RFC 3986, DOI 10.17487/RFC3986, , <https://www.rfc-editor.org/rfc/rfc3986>.

12.2. Informative References

[CONNECT-IP]
Pauly, T., Ed., Schinazi, D., Chernyakhovsky, A., Kühlewind, M., and M. Westerlund, "Proxying IP in HTTP", RFC 9484, DOI 10.17487/RFC9484, , <https://www.rfc-editor.org/rfc/rfc9484>.
[ICE]
Keranen, A., Holmberg, C., and J. Rosenberg, "Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal", RFC 8445, DOI 10.17487/RFC8445, , <https://www.rfc-editor.org/rfc/rfc8445>.
[TURN]
Reddy, T., Ed., Johnston, A., Ed., Matthews, P., and J. Rosenberg, "Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN)", RFC 8656, DOI 10.17487/RFC8656, , <https://www.rfc-editor.org/rfc/rfc8656>.
[WebRTC]
"WebRTC", W3C Recommendation, , <https://www.w3.org/TR/webrtc/>.

Appendix A. Example

In the example below, the client is configured with URI Template "https://example.org/.well-known/masque/udp/{target_host}/{target_port}/" and wishes to use WebRTC with another browser over a Bound UDP Proxying tunnel. It contacts a STUN server at 192.0.2.42. The STUN server, in response, sends the proxy's IP address to the other browser at 203.0.113.33. Using this information, the other browser sends a UDP packet to the proxy, which is proxied over HTTP back to the client.

 Client                                             Server

 STREAM(44): HEADERS            -------->
   :method = CONNECT
   :protocol = connect-udp
   :scheme = https
   :path = /.well-known/masque/udp/*/*/
   :authority = proxy.example.org
   connect-udp-bind = ?1
   capsule-protocol = ?1

            <--------  STREAM(44): HEADERS
                         :status = 200
                         connect-udp-bind = ?1
                         capsule-protocol = ?1
                         proxy-public-address = 192.0.2.45:54321,  \
                                            [2001:db8::1234]:54321

/* Request Context ID 2 to be used for uncompressed UDP payloads
 from/to any target */
 CAPSULE                       -------->
   Type = COMPRESSION_ASSIGN
   Context ID = 2
   IP Version = 0


/*Proxy confirms registration.*/
            <-------- CAPSULE
                        Type = COMPRESSION_ASSIGN
                        Context ID = 2
                        IP Version = 0

 DATAGRAM                       -------->
   Quarter Stream ID = 11
   Context ID = 2
   IP Version = 4
   IP Address = 192.0.2.42
   UDP Port = 1234
   UDP Payload = Encapsulated UDP Payload

/* Wait for STUN server to respond to UDP packet. */

            <--------  DATAGRAM
                         Quarter Stream ID = 11
                         Context ID = 2
                         IP Version = 4
                         IP Address = 192.0.2.42
                         UDP Port = 1234
                         UDP Payload = Encapsulated UDP Payload

/* Wait for the STUN server to send the proxy's IP and */
/* port to the other browser and for the other browser */
/* to send a UDP packet to the proxy. */

            <--------  DATAGRAM
                         Quarter Stream ID = 11
                         Context ID = 2
                         IP Version = 4
                         IP Address = 203.0.113.33
                         UDP Port = 4321
                         UDP Payload = Encapsulated UDP Payload

/* Register 203.0.113.33:1234 to compress it in the future*/
 CAPSULE                       -------->
   Type = COMPRESSION_ASSIGN
   Context ID = 4
   IP Version = 4
   IP Address = 203.0.113.33
   UDP Port = 1234


/*Proxy confirms registration.*/
            <-------- CAPSULE
                        Type = COMPRESSION_ASSIGN
                        Context ID = 4
                        IP Version = 4
                        IP Address = 203.0.113.33
                        UDP Port = 1234

/* Omit IP and Port for future packets intended for*/
/*203.0.113.33:1234 hereon */
 DATAGRAM                       -------->
   Context ID = 4
   UDP Payload = Encapsulated UDP Payload

            <--------  DATAGRAM
                        Context ID = 4
                        UDP Payload = Encapsulated UDP Payload

/* Request packets without a corresponding context to be dropped*/
 CAPSULE                       -------->
   Type = COMPRESSION_CLOSE
   Context ID = 2



/* Proxy confirms unmapped IP rejection. */
            <-------- CAPSULE
                        Type = COMPRESSION_CLOSE
                        Context ID = 2
/* Proxy drops any packets received on the
bound IP(s):Port */

Appendix B. Comparison with CONNECT-IP

While the use-cases described in Section 1 could be supported using IP Proxying in HTTP [CONNECT-IP], it would require that every HTTP Datagram carries a complete IP header. This would lead to both inefficiencies in the wire encoding and reduction in available Maximum Transmission Unit (MTU). Furthermore, Web browsers would need to support IPv4 and IPv6 header generation, parsing, validation and error handling.

Acknowledgments

This proposal is the result of many conversations with MASQUE working group participants.

Authors' Addresses

David Schinazi
Google LLC
1600 Amphitheatre Parkway
Mountain View, CA 94043
United States of America
Abhi Singh
Google LLC
1600 Amphitheatre Parkway
Mountain View, CA 94043
United States of America