Internet-Draft | SOCKS 6 | November 2020 |
Olteanu & Niculescu | Expires 6 May 2021 | [Page] |
The SOCKS protocol is used primarily to proxy TCP connections to arbitrary destinations via the use of a proxy server. Under the latest version of the protocol (version 5), it takes 2 RTTs (or 3, if authentication is used) before data can flow between the client and the server.¶
This memo proposes SOCKS version 6, which reduces the number of RTTs used, takes full advantage of TCP Fast Open, and adds support for 0-RTT authentication.¶
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 6 May 2021.¶
Copyright (c) 2020 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.¶
Versions 4 and 5 [RFC1928] of the SOCKS protocol were developed two decades ago and are in widespread use for circuit level gateways or as circumvention tools, and enjoy wide support and usage from various software, such as web browsers, SSH clients, and proxifiers. However, their design needs an update in order to take advantage of the new features of transport protocols, such as TCP Fast Open [RFC7413], or to better assist newer transport protocols, such as MPTCP [RFC6824].¶
One of the main issues faced by SOCKS version 5 is that, when taking into account the TCP handshake, method negotiation, authentication, connection request and grant, it may take up to 5 RTTs for a data exchange to take place at the application layer. This is especially costly in networks with a large delay at the access layer, such as 3G, 4G, or satellite.¶
The desire to reduce the number of RTTs manifests itself in the design of newer security protocols. TLS version 1.3 [RFC8446] defines a zero round trip (0-RTT) handshake mode for connections if the client and server had previously communicated.¶
TCP Fast Open [RFC7413] is a TCP option that allows TCP to send data in the SYN and receive a response in the first ACK, and aims at obtaining a data response in one RTT. The SOCKS protocol needs to concern itself with at least two TFO deployment scenarios: First, when TFO is available end-to-end (at the client, at the proxy, and at the server); second, when TFO is active between the client and the proxy, but not at the server.¶
This document describes the SOCKS protocol version 6. The key improvements over SOCKS version 5 are:¶
Typos and minor clarifications are not listed.¶
draft-11¶
Stack options:¶
draft-10¶
draft-09¶
Revamped UDP relay¶
draft-08¶
draft-07¶
Lots of changes to options¶
Authentication Reply: all authentication-related information is now in the options¶
Sessions¶
draft-06¶
Stack options¶
Idempotence options¶
Security Considerations¶
draft-05¶
Revamped the handling of the first bytes in the application data stream¶
Revamped UDP functionality¶
draft-04¶
draft-03¶
Options:¶
Idempotence options:¶
Revamped Socket options¶
draft-02¶
draft-01¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC2119].¶
When a TCP-based client wishes to establish a connection to a server, it must open a TCP connection to the appropriate SOCKS port on the SOCKS proxy. The client then enters a negotiation phase, by sending the request in Figure 1, that contains, in addition to fields present in SOCKS 5 [RFC1928], fields that facilitate low RTT usage and faster authentication negotiation.¶
Next, the server sends an authentication reply. If the request did not contain the necessary authentication information, the proxy indicates an authentication method that must proceed. This may trigger a longer authentication sequence that could include tokens for ulterior faster authentications. The part labeled "Authentication protocol" is specific to the authentication method employed and is not expected to be employed for every connection between a client and its proxy server. The authentication protocol typically takes up 1 RTT or more.¶
If the authentication is successful, an operation reply is generated by the proxy. It indicates whether the proxy was successful in creating the requested socket or not.¶
In the fast case, when authentication is properly set up, the proxy attempts to create the socket immediately after the receipt of the request, thus achieving an operational connection in one RTT (provided TFO functionality is available at the client, proxy, and server).¶
The client starts by sending a request to the proxy.¶
Command Code:¶
Address Type:¶
Address: this field's format depends on the address type:¶
The Address and Port fields have different meanings based on the Command Code:¶
Clients can advertise their supported authentication methods by including an Authentication Method Advertisement option (see Section 8.2).¶
Upon receipt of a request starting with a version number other than 6, the proxy sends the following response:¶
A client MUST close the connection after receiving such a reply.¶
Upon receipt of a valid request, the proxy sends an Authentication Reply:¶
Type:¶
If the server signals that the authentication has failed and does not signal that any authentication negotiation can continue (via an Authentication Method Selection option), the client MUST close the connection.¶
The client and proxy begin a method-specific negotiation. During such negotiations, the proxy MAY supply information that allows the client to authenticate a future request using an Authentication Data option. Application data is not subject to any encryption negotiated during this phase. Descriptions of such negotiations are beyond the scope of this memo.¶
When the negotiation is complete (either successfully or unsuccessfully), the proxy sends a second Authentication Reply. The second Authentication Reply MUST NOT allow for further negotiations.¶
After the authentication negotiations are complete, the proxy sends an Operation Reply:¶
Reply Code:¶
Address Type:¶
Bind Address: the proxy bound address in the following format:¶
Proxy implementations MAY support any subset of the client commands listed in Section 4.¶
If the proxy returns a reply code other than "Success", the client MUST close the connection.¶
If the client issued an NOOP command, the client MUST close the connection after receiving the Operation Reply.¶
In case the client has issued a CONNECT request, data can now pass.¶
In case the client has issued a BIND request, it must wait for a second Operation reply from the proxy, which signifies that a host has connected to the bound port. The Bind Address and Bind Port fields contain the address and port of the connecting host. Afterwards, application data may pass.¶
Proxies offering UDP functionality may be configured with a UDP port used for relaying UDP datagrams to and from the client, and/or a port used for relaying datagrams over DTLS.¶
Following a successful Operation Reply, the client and the proxy begin exchanging messages with the following header:¶
Message Type:¶
First, the proxy picks an Association ID sends a an Association Initialization message:¶
Proxy implementations SHOULD generate Association IDs randomly or pseudo-randomly.¶
Clients may start sending datagrams to the proxy either:¶
A client's datagrams are prefixed by a Datagram Header, indicating the remote host's address and port:¶
Address Type:¶
Address: this field's format depends on the address type:¶
Datagrams sent over UDP MAY be padded with arbitrary data (i. e., the Message Length MAY be smaller than the actual UDP/DTLS payload). Client and proxy implementations MUST ignore the padding. If the Message Length is larger than the size of the UDP or DTLS payload, the message MUST be silently ignored.¶
Following the receipt of the first datagram from the client, the proxy makes a one-way mapping between the Association ID and:¶
The proxy SHOULD close the TCP connection if the initial datagram is not received after a timeout.¶
Further datagrams carrying the same Association ID, but not matching the established mapping, are silently dropped.¶
The proxy then sends an UDP Association Confirmation message over the TCP connection with the client:¶
Following the confirmation message, UDP packets bound for the proxy's bind address and port are relayed to the client, also prefixed by a Datagram Header.¶
The UDP association remains active for as long as the TCP connection between the client and the proxy is kept open.¶
Under some circumstances (e.g. when hosting a server), the SOCKS client expects the remote host to send UDP datagrams first. As such, the SOCKS client must trigger a UDP Association Confirmation without having the proxy relay any datagrams on its behalf.¶
To that end, it sends an empty datagram prefixed by a Datagram Header with an IP address and port consisting of zeroes. If it is using UDP, the client SHOULD resend the empty datagram if an UDP Association Confirmation is not received after a timeout.¶
The use of multicast addresses is permitted for UDP traffic only.¶
If a client has opted in (see Section 8.1.8), the proxy MAY relay information contained in some ICMP Error packets. The message format is as follows:¶
Error code:¶
It is possible for ICMP Error packets to be spurious, and not be related to any UDP packet that was sent out. The proxy is not required to check the validity of ICMP Error packets before reporting them to the client.¶
Clients MUST NOT send Datagram Error messages to the proxy. Proxies MUST NOT send Error messages unless the clients have opted in.¶
SOCKS options have the following format:¶
Unless otherwise noted, client and proxy implementations MAY omit supporting any of the options described in this document. Upon encountering an unsupported option, a SOCKS endpoint MUST silently ignore it.¶
Stack options can be used by clients to alter the behavior of the protocols on top of which SOCKS is running, as well the protocols used by the proxy to communicate with the remote host (i.e. IP, TCP, UDP). A Stack option can affect either the proxy's protocol on the client-proxy leg or on the proxy-remote leg. Clients can only place Stack options inside SOCKS Requests.¶
Proxies MAY choose not to honor any Stack options sent by the client.¶
Proxies include Stack options in their Operation Replies to signal their behavior, and MUST do so for every supported Stack option sent by the client. Said options MAY also be unsolicited, i. e. the proxy MAY send them to signal behavior that was not explicitly requested by the client.¶
If a particular Stack option is unsupported, the proxy MUST silently ignore it.¶
In case of UDP ASSOCIATE, the stack options refer to the UDP traffic relayed by the proxy.¶
Stack options that are part of the same message MUST NOT contradict one another or contain duplicate information.¶
The client can use IP TOS options to request that the proxy use a certain value for the IP TOS field. Likewise, the proxy can use IP TOS options to advertise the TOS values being used.¶
Availability:¶
This memo provides enough features for clients to implement a mechanism analogous to Happy Eyeballs [RFC8305] over SOCKS. However, when the delay between the client and the proxy, or the proxy's vantage point, is high, doing so can become impractical or inefficient.¶
In such cases, the client can instruct the proxy to employ the Happy Eyeballs technique on its behalf when connecting to a remote host.¶
The client MUST supply a Domain Name as part of its Request. Otherwise, the proxy MUST silently ignore the option.¶
TODO: Figure out which knobs to include.¶
Availability:¶
A No Fragmentation option can be used to instruct the proxy to avoid IP fragmentation. In the case of IPv4, this also entails setting the DF bit on outgoing packets.¶
If a SOCKS Request contains a TFO option, the proxy SHOULD attempt to use TFO in case of a CONNECT command, or accept TFO in case of a BIND command. Otherwise, the proxy MUST NOT attempt to use TFO in case of a CONNECT command, or accept TFO in case of a BIND command.¶
In case of a CONNECT command, the client can indicate the desired payload size of the SYN. If the field is 0, the proxy can use an arbitrary payload size. If the field is non-zero, the proxy MUST NOT use a payload size larger than the one indicated. The proxy MAY use a smaller payload size than the one indicated.¶
In case of a CONNECT or BIND command, the client can inform the proxy whether MPTCP is desired on the proxy-remote leg by sending a Multipath option.¶
Conversely, the proxy can use a Multipath option to convey the following information:¶
Availability:¶
In the absence of such an option, the proxy SHOULD NOT enable MPTCP for CONNECT commands.¶
The default behavior of the BIND does not allow a client to simultaneously handle multiple connections to the same bind address. A client can alter BIND's behavior by adding a TCP Listen Backlog Option to a BIND Request, provided that the Request is part of a Session.¶
In response, the proxy sends a TCP Listen Backlog Option as part of the Operation Reply, with the Backlog field signaling the actual backlog used. The proxy SHOULD NOT use a backlog longer than requested.¶
Following the successful negotiation of a backlog, the proxy listens for incoming connections for as long as the initial connection stays open. The initial connection is not used to relay data between the client and a remote host.¶
To accept connections, the client issues further BIND Requests using the bind address and port supplied by the proxy in the initial Operation Reply. Said BIND requests must belong to the same Session as the original Request.¶
If no backlog is issued, the proxy signals a backlog length of 0, and BIND's behavior remains unaffected.¶
Availability:¶
Clients can use this option to turn on error reporting for a particular UDP association. See Section 7.3.3.¶
The RTP specification [RFC3550] recommends running the protocol on consecutive UDP ports, where the even port is the lower of the two.¶
SOCKS clients can specify the desired port parity when issuing a UDP ASSOCIATE command, and request that the port's counterpart be reserved.¶
If the UDP ASSOCIATE request does not have the Port field set to 0 (indicating that an arbitrary port can be chosen), the proxy MUST ignore the suggested parity.¶
A port's counterpart is determined as follows:¶
If the proxy can not or will not comply with the requested parity, it also does not reserve the allocated port's counterpart.¶
Port reservations are in place until either:¶
An association involving a reserved port can only be made if a client explicitly requests said port. Further, if the original association is part of a session (see Section 8.4), the reserved port can only be claimed from within the same session.¶
A client that is willing to go through the authentication phase MUST include an Authentication Method Advertisement option in its Request. In case of a CONNECT Request, the option is also used to specify the amount of initial data supplied before any method-specific authentication negotiations take place.¶
Clients MUST support the "No authentication required" method. Clients SHOULD omit advertising the "No authentication required" option.¶
The proxy indicates which authentication method must proceed by sending an Authentication Method Selection option in the corresponding Authentication Reply:¶
If the proxy selects "No Acceptable Methods", the client MUST close the connection.¶
If authentication is successful via some other means, or not required at all, the proxy silently ignores the Authentication Method Advertisement option.¶
Authentication Data options carry method-specific authentication data. They can be part of SOCKS Requests and Authentication Replies.¶
Authentication Data options have the following format:¶
Clients MUST only place one Authentication Data option per authentication method.¶
Clients and proxies can establish SOCKS sessions, which span one or more Requests. All session-related negotiations are done via Session Options, which are placed in Requests and Authentication Replies by the client and, respectively, by the proxy.¶
Client and proxy implementations MUST either support all Session Option Types, or none.¶
A client can initiate a session by sending a Session Request Option:¶
The proxy then replies with a Session ID Option in the successful Operation Reply:¶
The Session ID serves to identify the session and is opaque to the client.¶
The credentials, or lack thereof, used to initiate the session are tied to the session.¶
The SOCKS Request that initiated the session is considered part of the session. A client MUST NOT attempt to initiate a session from within a different session.¶
If the proxy can not or will not honor the Session Request, it does so silently.¶
Any further SOCKS Requests that are part of the session MUST include a Session ID Option (as seen in Figure 26). The proxy MUST silently ignore any authentication attempt in the Request, and MUST NOT require any authentication.¶
The proxy then replies by placing a Session OK option in the successful Authentication Reply:¶
If the Session ID is invalid, the first Authentication Reply MUST signal that authentication failed and can not continue (by setting the Type field to 0x01). Further, it SHALL contain a Session Invalid option:¶
Proxies can, at their discretion, tear down a session and free all associated state. Proxy implementations SHOULD feature a timeout mechanism that destroys sessions after a period of inactivity. When a session is terminated, the proxy MAY close all connections associated with said session.¶
Clients can signal that a session is no longer needed, and can be torn down, by sending a Session Teardown option in addition to the Session ID option:¶
After sending such an option, the client MUST assume that the session is no longer valid. The proxy MUST treat the session-terminating request as if it were not part of any session.¶
To protect against duplicate SOCKS Requests, clients can request, and then spend, idempotence tokens. A token can only be spent on a single SOCKS request.¶
Tokens are 4-byte unsigned integers in a modular 4-byte space. Therefore, if x and y are tokens, x is less than y if 0 < (y - x) < 2^31 in unsigned 32-bit arithmetic.¶
Proxies grant contiguous ranges of tokens called token windows. Token windows are defined by their base (the first token in the range) and size.¶
All token-related operations are done via Idempotence options.¶
Idempotence options are only valid in the context of a SOCKS Session. If a SOCKS Request is not part of a Session (either by supplying a valid Session ID or successfully initiating one via a Session Request), the proxy MUST silently ignore any Idempotence options.¶
Token windows are tracked by the proxy on a per-session basis. There can be at most one token window for every session and its tokens can only be spent from within said session.¶
Client and proxy implementations MUST either support all Idempotence Option Types, or none.¶
A client can obtain a window of tokens by sending an Idempotence Request option as part of a SOCKS Request:¶
Once a token window is issued, the proxy MUST include an Idempotence Window option in all subsequent successful Authentication Replies:¶
If no token window is issued, the proxy MUST silently ignore the Token Request. If there is already a token window associated with the session, the proxy MUST NOT issue a new window.¶
The client can attempt to spend a token by including a Idempotence Expenditure option in its SOCKS request:¶
Clients SHOULD prioritize spending the smaller tokens.¶
The proxy responds by sending either an Idempotence Accepted or Rejected option as part of the Authentication Reply:¶
If eligible, the token is spent before attempting to honor the Request. If the token is not eligible for spending, the Authentication Reply MUST indicate failure.¶
Windows can be shifted (i. e. have their base increased, while retaining their size) unilaterally by the proxy.¶
Proxy implementations SHOULD shift the window: * as soon as the lowest-order token in the window is spent and * when a sufficiently high-order token is spent.¶
Proxy implementations SHOULD NOT shift the window's base beyond the highest unspent token.¶
Even though the proxy increases the window's base monotonically, there is no mechanism whereby a SOCKS client can receive the Token Window Advertisements in order. As such, clients SHOULD disregard Token Window Advertisements with a Window Base less than the previously known value.¶
Username/Password authentication is carried out as in [RFC1929].¶
Clients can also attempt to authenticate by placing the Username/Password request in an Authentication Data Option.¶
Proxies reply by including a Authentication Data Option in the next Authentication Reply which contains the Username/Password reply:¶
TFO breaks TCP semantics, causing replays of the data in the SYN's payload under certain rare circumstances [RFC7413]. A replayed SOCKS Request could itself result in a replayed connection on behalf of the client.¶
As such, client implementations SHOULD NOT use TFO on the client-proxy leg unless:¶
In case of CONNECT Requests, the client MAY start sending application data as soon as possible, as long as doing so does not incur the risk of breaking the SOCKS protocol.¶
Clients must work around the authentication phase by doing any of the following:¶
Clients may require information typically obtained from DNS servers, albeit from the proxy's vantage point.¶
While the CONNECT command can work with domain names, some clients' workflows require that addresses be resolved as a separate step prior to connecting. Moreover, the SOCKS Datagram Header, as described in Section 7.3, can be reduced in size by providing the resolved destination IP address, rather than the FQDN.¶
Emerging techniques may also make use of DNS to deliver server-specific information to clients. For example, Encrypted SNI [I-D.ietf-tls-esni] relies on DNS to publish encryption keys.¶
Proxy implementations MAY provide a default plaintext DNS service. A client looking to make use of it issues a CONNECT Request to IP address 0.0.0.0 or 0:0:0:0:0:0:0:0 on port 53. Following successful authentication, the Operation Reply MAY indicate an unspecified bind address (0.0.0.0 or ::) and port (0). The client and proxy then behave as per [RFC7766].¶
The service itself can be provided directly by the proxy daemon, or by proxying the client's request to a pre-configured DNS server.¶
If the proxy does not implement such functionality, it MAY return an error code signaling "Connection refused".¶
Given the format of the request message, a malicious client could craft a request that is in excess of 16 KB and proxies could be prone to DDoS attacks.¶
To mitigate such attacks, proxy implementations SHOULD be able to incrementally parse the requests. Proxies MAY close the connection to the client if:¶
In TLS 1.3, early data (which is likely to contain a full SOCKS request) is prone to replay attacks.¶
While Token Expenditure options can be used to mitigate replay attacks, anything prior to the initial Token Request is still vulnerable. As such, client implementations SHOULD NOT make use of TLS early data unless the Request attempts to spend a token.¶
Malicious clients can issue a large number of Session Requests, forcing the proxy to keep large amounts of state.¶
To mitigate this, the proxy MAY implement policies restricting the number of concurrent sessions on a per-IP or per-user basis, or barring unauthenticated clients from establishing sessions.¶
The timing of Operation Replies can reveal some information about a proxy's recent usage:¶
This document requests that IANA allocate 2-byte option kinds for SOCKS 6 options. Further, this document requests the following option kinds:¶
This document also requests that IANA allocate a TCP and UDP port for SOCKS over TLS and DTLS, respectively.¶
The protocol described in this draft builds upon and is a direct continuation of SOCKS 5 [RFC1928].¶