/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2018, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "or/or.h" #include "or/addressmap.h" #include "common/buffers.h" #include "or/control.h" #include "or/config.h" #include "lib/crypt_ops/crypto_util.h" #include "or/ext_orport.h" #include "or/proto_socks.h" #include "or/reasons.h" #include "trunnel/socks5.h" #include "or/socks_request_st.h" static void socks_request_set_socks5_error(socks_request_t *req, socks5_reply_status_t reason); static int parse_socks(const char *data, size_t datalen, socks_request_t *req, int log_sockstype, int safe_socks, size_t *drain_out, size_t *want_length_out); static int parse_socks_client(const uint8_t *data, size_t datalen, int state, char **reason, ssize_t *drain_out); /** * Wait this many seconds before warning the user about using SOCKS unsafely * again. */ #define SOCKS_WARN_INTERVAL 5 /** Warn that the user application has made an unsafe socks request using * protocol socks_protocol on port port. Don't warn more than * once per SOCKS_WARN_INTERVAL, unless safe_socks is set. */ static void log_unsafe_socks_warning(int socks_protocol, const char *address, uint16_t port, int safe_socks) { static ratelim_t socks_ratelim = RATELIM_INIT(SOCKS_WARN_INTERVAL); if (safe_socks) { log_fn_ratelim(&socks_ratelim, LOG_WARN, LD_APP, "Your application (using socks%d to port %d) is giving " "Tor only an IP address. Applications that do DNS resolves " "themselves may leak information. Consider using Socks4A " "(e.g. via privoxy or socat) instead. For more information, " "please see https://wiki.torproject.org/TheOnionRouter/" "TorFAQ#SOCKSAndDNS.%s", socks_protocol, (int)port, safe_socks ? " Rejecting." : ""); } control_event_client_status(LOG_WARN, "DANGEROUS_SOCKS PROTOCOL=SOCKS%d ADDRESS=%s:%d", socks_protocol, address, (int)port); } /** Do not attempt to parse socks messages longer than this. This value is * actually significantly higher than the longest possible socks message. */ #define MAX_SOCKS_MESSAGE_LEN 512 /** Return a new socks_request_t. */ socks_request_t * socks_request_new(void) { return tor_malloc_zero(sizeof(socks_request_t)); } /** Free all storage held in the socks_request_t req. */ void socks_request_free_(socks_request_t *req) { if (!req) return; if (req->username) { memwipe(req->username, 0x10, req->usernamelen); tor_free(req->username); } if (req->password) { memwipe(req->password, 0x04, req->passwordlen); tor_free(req->password); } memwipe(req, 0xCC, sizeof(socks_request_t)); tor_free(req); } static int parse_socks4_request(const uint8_t *raw_data, socks_request_t *req, size_t datalen, int *is_socks4a, size_t *drain_out) { // http://ss5.sourceforge.net/socks4.protocol.txt // http://ss5.sourceforge.net/socks4A.protocol.txt int res = 1; tor_addr_t destaddr; tor_assert(is_socks4a); tor_assert(drain_out); *is_socks4a = 0; *drain_out = 0; req->socks_version = 4; socks4_client_request_t *trunnel_req; ssize_t parsed = socks4_client_request_parse(&trunnel_req, raw_data, datalen); if (parsed == -1) { log_warn(LD_APP, "socks4: parsing failed - invalid request."); res = -1; goto end; } else if (parsed == -2) { res = 0; if (datalen > 1024) { // XXX log_warn(LD_APP, "socks4: parsing failed - invalid request."); res = -1; } goto end; } tor_assert(parsed >= 0); *drain_out = (size_t)parsed; uint8_t command = socks4_client_request_get_command(trunnel_req); req->command = command; req->port = socks4_client_request_get_port(trunnel_req); uint32_t dest_ip = socks4_client_request_get_addr(trunnel_req); if ((!req->port && req->command != SOCKS_COMMAND_RESOLVE) || dest_ip == 0) { log_warn(LD_APP, "socks4: Port or DestIP is zero. Rejecting."); res = -1; goto end; } *is_socks4a = (dest_ip >> 8) == 0; const char *username = socks4_client_request_get_username(trunnel_req); size_t usernamelen = username ? strlen(username) : 0; if (username && usernamelen) { if (usernamelen > MAX_SOCKS_MESSAGE_LEN) { log_warn(LD_APP, "Socks4 user name too long; rejecting."); res = -1; goto end; } req->got_auth = 1; req->username = tor_strdup(username); req->usernamelen = usernamelen; } if (*is_socks4a) { // We cannot rely on trunnel here, as we want to detect if // we have abnormally long hostname field. const char *hostname = (char *)raw_data + SOCKS4_NETWORK_LEN + strlen(username) + 1; size_t hostname_len = (char *)raw_data + datalen - hostname; if (hostname_len <= sizeof(req->address)) { const char *trunnel_hostname = socks4_client_request_get_socks4a_addr_hostname(trunnel_req); if (trunnel_hostname) strlcpy(req->address, trunnel_hostname, sizeof(req->address)); } else { log_warn(LD_APP, "socks4: Destaddr too long. Rejecting."); res = -1; goto end; } } else { tor_addr_from_ipv4h(&destaddr, dest_ip); if (!tor_addr_to_str(req->address, &destaddr, MAX_SOCKS_ADDR_LEN, 0)) { res = -1; goto end; } } end: socks4_client_request_free(trunnel_req); return res; } /** * Validate SOCKS4/4a related fields in req. Expect SOCKS4a * if is_socks4a is true. If log_sockstype is true, * log a notice about possible DNS leaks on local system. If * safe_socks is true, reject insecure usage of SOCKS * protocol. * * Return SOCKS_RESULT_DONE if validation passed or * SOCKS_RESULT_INVALID if it failed. */ static socks_result_t process_socks4_request(const socks_request_t *req, int is_socks4a, int log_sockstype, int safe_socks) { if (is_socks4a && !addressmap_have_mapping(req->address, 0)) { log_unsafe_socks_warning(4, req->address, req->port, safe_socks); if (safe_socks) return -1; } if (req->command != SOCKS_COMMAND_CONNECT && req->command != SOCKS_COMMAND_RESOLVE) { /* not a connect or resolve? we don't support it. (No resolve_ptr with * socks4.) */ log_warn(LD_APP, "socks4: command %d not recognized. Rejecting.", req->command); return -1; } if (is_socks4a) { if (log_sockstype) log_notice(LD_APP, "Your application (using socks4a to port %d) instructed " "Tor to take care of the DNS resolution itself if " "necessary. This is good.", req->port); } if (!string_is_valid_dest(req->address)) { log_warn(LD_PROTOCOL, "Your application (using socks4 to port %d) gave Tor " "a malformed hostname: %s. Rejecting the connection.", req->port, escaped_safe_str_client(req->address)); return -1; } return 1; } static int parse_socks5_methods_request(const uint8_t *raw_data, socks_request_t *req, size_t datalen, int *have_user_pass, int *have_no_auth, size_t *drain_out) { int res = 1; socks5_client_version_t *trunnel_req; ssize_t parsed = socks5_client_version_parse(&trunnel_req, raw_data, datalen); (void)req; tor_assert(have_no_auth); tor_assert(have_user_pass); tor_assert(drain_out); *drain_out = 0; if (parsed == -1) { log_warn(LD_APP, "socks5: parsing failed - invalid version " "id/method selection message."); res = -1; goto end; } else if (parsed == -2) { res = 0; if (datalen > 1024) { // XXX log_warn(LD_APP, "socks5: parsing failed - invalid version " "id/method selection message."); res = -1; } goto end; } tor_assert(parsed >= 0); *drain_out = (size_t)parsed; size_t n_methods = (size_t)socks5_client_version_get_n_methods(trunnel_req); if (n_methods == 0) { res = -1; goto end; } *have_no_auth = 0; *have_user_pass = 0; for (size_t i = 0; i < n_methods; i++) { uint8_t method = socks5_client_version_get_methods(trunnel_req, i); if (method == SOCKS_USER_PASS) { *have_user_pass = 1; } else if (method == SOCKS_NO_AUTH) { *have_no_auth = 1; } } end: socks5_client_version_free(trunnel_req); return res; } static int process_socks5_methods_request(socks_request_t *req, int have_user_pass, int have_no_auth) { int res = 0; socks5_server_method_t *trunnel_resp = socks5_server_method_new(); socks5_server_method_set_version(trunnel_resp, 5); if (have_user_pass && !(have_no_auth && req->socks_prefer_no_auth)) { req->auth_type = SOCKS_USER_PASS; socks5_server_method_set_method(trunnel_resp, SOCKS_USER_PASS); req->socks_version = 5; // FIXME: come up with better way to remember // that we negotiated auth log_debug(LD_APP,"socks5: accepted method 2 (username/password)"); } else if (have_no_auth) { req->auth_type = SOCKS_NO_AUTH; socks5_server_method_set_method(trunnel_resp, SOCKS_NO_AUTH); req->socks_version = 5; log_debug(LD_APP,"socks5: accepted method 0 (no authentication)"); } else { log_warn(LD_APP, "socks5: offered methods don't include 'no auth' or " "username/password. Rejecting."); socks5_server_method_set_method(trunnel_resp, 0xFF); // reject all res = -1; } const char *errmsg = socks5_server_method_check(trunnel_resp); if (errmsg) { log_warn(LD_APP, "socks5: method selection validation failed: %s", errmsg); res = -1; } else { ssize_t encoded = socks5_server_method_encode(req->reply, sizeof(req->reply), trunnel_resp); if (encoded < 0) { log_warn(LD_APP, "socks5: method selection encoding failed"); res = -1; } else { req->replylen = (size_t)encoded; } } socks5_server_method_free(trunnel_resp); return res; } static int parse_socks5_userpass_auth(const uint8_t *raw_data, socks_request_t *req, size_t datalen, size_t *drain_out) { int res = 1; socks5_client_userpass_auth_t *trunnel_req = NULL; ssize_t parsed = socks5_client_userpass_auth_parse(&trunnel_req, raw_data, datalen); tor_assert(drain_out); *drain_out = 0; if (parsed == -1) { log_warn(LD_APP, "socks5: parsing failed - invalid user/pass " "authentication message."); res = -1; goto end; } else if (parsed == -2) { res = 0; goto end; } tor_assert(parsed >= 0); *drain_out = (size_t)parsed; uint8_t usernamelen = socks5_client_userpass_auth_get_username_len(trunnel_req); uint8_t passwordlen = socks5_client_userpass_auth_get_passwd_len(trunnel_req); const char *username = socks5_client_userpass_auth_getconstarray_username(trunnel_req); const char *password = socks5_client_userpass_auth_getconstarray_passwd(trunnel_req); if (usernamelen && username) { req->username = tor_memdup_nulterm(username, usernamelen); req->usernamelen = usernamelen; req->got_auth = 1; } if (passwordlen && password) { req->password = tor_memdup_nulterm(password, passwordlen); req->passwordlen = passwordlen; req->got_auth = 1; } end: socks5_client_userpass_auth_free(trunnel_req); return res; } static int process_socks5_userpass_auth(socks_request_t *req) { int res = 1; socks5_server_userpass_auth_t *trunnel_resp = socks5_server_userpass_auth_new(); if (req->socks_version != 5) { res = -1; goto end; } if (req->auth_type != SOCKS_USER_PASS && req->auth_type != SOCKS_NO_AUTH) { res = -1; goto end; } socks5_server_userpass_auth_set_version(trunnel_resp, 1); socks5_server_userpass_auth_set_status(trunnel_resp, 0); // auth OK const char *errmsg = socks5_server_userpass_auth_check(trunnel_resp); if (errmsg) { log_warn(LD_APP, "socks5: server userpass auth validation failed: %s", errmsg); res = -1; goto end; } ssize_t encoded = socks5_server_userpass_auth_encode(req->reply, sizeof(req->reply), trunnel_resp); if (encoded < 0) { log_warn(LD_APP, "socks5: server userpass auth encoding failed"); res = -1; goto end; } req->replylen = (size_t)encoded; end: socks5_server_userpass_auth_free(trunnel_resp); return res; } static int parse_socks5_client_request(const uint8_t *raw_data, socks_request_t *req, size_t datalen, size_t *drain_out) { int res = 1; tor_addr_t destaddr; socks5_client_request_t *trunnel_req = NULL; ssize_t parsed = socks5_client_request_parse(&trunnel_req, raw_data, datalen); if (parsed == -1) { log_warn(LD_APP, "socks5: parsing failed - invalid client request"); res = -1; goto end; } else if (parsed == -2) { res = 0; goto end; } tor_assert(parsed >= 0); *drain_out = (size_t)parsed; if (socks5_client_request_get_version(trunnel_req) != 5) { res = -1; goto end; } req->command = socks5_client_request_get_command(trunnel_req); req->port = socks5_client_request_get_dest_port(trunnel_req); uint8_t atype = socks5_client_request_get_atype(trunnel_req); req->socks5_atyp = atype; switch (atype) { case 1: { uint32_t ipv4 = socks5_client_request_get_dest_addr_ipv4(trunnel_req); tor_addr_from_ipv4h(&destaddr, ipv4); tor_addr_to_str(req->address, &destaddr, sizeof(req->address), 1); } break; case 3: { const struct domainname_st *dns_name = socks5_client_request_getconst_dest_addr_domainname(trunnel_req); const char *hostname = domainname_getconstarray_name(dns_name); strlcpy(req->address, hostname, sizeof(req->address)); } break; case 4: { const char *ipv6 = (const char *)socks5_client_request_getarray_dest_addr_ipv6(trunnel_req); tor_addr_from_ipv6_bytes(&destaddr, ipv6); tor_addr_to_str(req->address, &destaddr, sizeof(req->address), 1); } break; default: { res = -1; } break; } end: socks5_client_request_free(trunnel_req); return res; } static int process_socks5_client_request(socks_request_t *req, int log_sockstype, int safe_socks) { int res = 1; if (req->command != SOCKS_COMMAND_CONNECT && req->command != SOCKS_COMMAND_RESOLVE && req->command != SOCKS_COMMAND_RESOLVE_PTR) { socks_request_set_socks5_error(req,SOCKS5_COMMAND_NOT_SUPPORTED); res = -1; goto end; } if (req->command == SOCKS_COMMAND_RESOLVE_PTR && !string_is_valid_ipv4_address(req->address) && !string_is_valid_ipv6_address(req->address)) { socks_request_set_socks5_error(req, SOCKS5_ADDRESS_TYPE_NOT_SUPPORTED); log_warn(LD_APP, "socks5 received RESOLVE_PTR command with " "hostname type. Rejecting."); res = -1; goto end; } if (!string_is_valid_dest(req->address)) { socks_request_set_socks5_error(req, SOCKS5_GENERAL_ERROR); log_warn(LD_PROTOCOL, "Your application (using socks5 to port %d) gave Tor " "a malformed hostname: %s. Rejecting the connection.", req->port, escaped_safe_str_client(req->address)); res = -1; goto end;; } if (req->socks5_atyp == 1 || req->socks5_atyp == 4) { if (req->command != SOCKS_COMMAND_RESOLVE_PTR && !addressmap_have_mapping(req->address,0)) { log_unsafe_socks_warning(5, req->address, req->port, safe_socks); if (safe_socks) { socks_request_set_socks5_error(req, SOCKS5_NOT_ALLOWED); res = -1; goto end; } } } if (log_sockstype) log_notice(LD_APP, "Your application (using socks5 to port %d) instructed " "Tor to take care of the DNS resolution itself if " "necessary. This is good.", req->port); end: return res; } static int handle_socks_message(const uint8_t *raw_data, size_t datalen, socks_request_t *req, int log_sockstype, int safe_socks, size_t *drain_out) { int res = 1; uint8_t socks_version = raw_data[0]; if (socks_version == 1) socks_version = 5; // SOCKS5 username/pass subnegotiation if (socks_version == 4) { if (datalen < SOCKS4_NETWORK_LEN) { res = 0; goto end; } int is_socks4a = 0; int parse_status = parse_socks4_request((const uint8_t *)raw_data, req, datalen, &is_socks4a, drain_out); if (parse_status != 1) { res = parse_status; goto end; } int process_status = process_socks4_request(req, is_socks4a, log_sockstype, safe_socks); if (process_status != 1) { res = process_status; goto end; } res = 1; goto end; } else if (socks_version == 5) { if (datalen < 2) { /* version and another byte */ res = 0; goto end; } /* RFC1929 SOCKS5 username/password subnegotiation. */ if (!req->got_auth && (raw_data[0] == 1 || req->auth_type == SOCKS_USER_PASS)) { int parse_status = parse_socks5_userpass_auth(raw_data, req, datalen, drain_out); if (parse_status != 1) { res = parse_status; goto end; } int process_status = process_socks5_userpass_auth(req); if (process_status != 1) { res = process_status; goto end; } res = 0; goto end; } else if (req->socks_version != 5) { int have_user_pass, have_no_auth; int parse_status = parse_socks5_methods_request(raw_data, req, datalen, &have_user_pass, &have_no_auth, drain_out); if (parse_status != 1) { res = parse_status; goto end; } int process_status = process_socks5_methods_request(req, have_user_pass, have_no_auth); if (process_status == -1) { res = process_status; goto end; } res = 0; goto end; } else { int parse_status = parse_socks5_client_request(raw_data, req, datalen, drain_out); if (parse_status != 1) { socks_request_set_socks5_error(req, SOCKS5_GENERAL_ERROR); res = parse_status; goto end; } int process_status = process_socks5_client_request(req, log_sockstype, safe_socks); if (process_status != 1) { res = process_status; goto end; } } } else { *drain_out = datalen; res = -1; } end: return res; } /** There is a (possibly incomplete) socks handshake on buf, of one * of the forms * - socks4: "socksheader username\\0" * - socks4a: "socksheader username\\0 destaddr\\0" * - socks5 phase one: "version #methods methods" * - socks5 phase two: "version command 0 addresstype..." * If it's a complete and valid handshake, and destaddr fits in * MAX_SOCKS_ADDR_LEN bytes, then pull the handshake off the buf, * assign to req, and return 1. * * If it's invalid or too big, return -1. * * Else it's not all there yet, leave buf alone and return 0. * * If you want to specify the socks reply, write it into req->reply * and set req->replylen, else leave req->replylen alone. * * If log_sockstype is non-zero, then do a notice-level log of whether * the connection is possibly leaking DNS requests locally or not. * * If safe_socks is true, then reject unsafe socks protocols. * * If returning 0 or -1, req->address and req->port are * undefined. */ int fetch_from_buf_socks(buf_t *buf, socks_request_t *req, int log_sockstype, int safe_socks) { int res = 0; size_t datalen = buf_datalen(buf); size_t n_drain; size_t want_length = 128; const char *head = NULL; if (buf_datalen(buf) < 2) { /* version and another byte */ res = 0; goto end; } do { n_drain = 0; buf_pullup(buf, MAX(want_length, buf_datalen(buf)), &head, &datalen); tor_assert(head && datalen >= 2); want_length = 0; res = parse_socks(head, datalen, req, log_sockstype, safe_socks, &n_drain, &want_length); if (res == -1) buf_clear(buf); else if (n_drain > 0) buf_drain(buf, n_drain); } while (res == 0 && head && buf_datalen(buf) >= 2); end: return res; } /** Create a SOCKS5 reply message with reason in its REP field and * have Tor send it as error response to req. */ static void socks_request_set_socks5_error(socks_request_t *req, socks5_reply_status_t reason) { req->replylen = 10; memset(req->reply,0,10); req->reply[0] = 0x05; // VER field. req->reply[1] = reason; // REP field. req->reply[3] = 0x01; // ATYP field. } static const char SOCKS_PROXY_IS_NOT_AN_HTTP_PROXY_MSG[] = "HTTP/1.0 501 Tor is not an HTTP Proxy\r\n" "Content-Type: text/html; charset=iso-8859-1\r\n\r\n" "\n" "\n" "This is a SOCKS Proxy, Not An HTTP Proxy\n" "\n" "\n" "

This is a SOCKs proxy, not an HTTP proxy.

\n" "

\n" "It appears you have configured your web browser to use this Tor port as\n" "an HTTP proxy.\n" "

\n" "This is not correct: This port is configured as a SOCKS proxy, not\n" "an HTTP proxy. If you need an HTTP proxy tunnel, use the HTTPTunnelPort\n" "configuration option in place of, or in addition to, SOCKSPort.\n" "Please configure your client accordingly.\n" "

\n" "

\n" "See " "https://www.torproject.org/documentation.html for more " "information.\n" "

\n" "\n" "\n"; /** Implementation helper to implement fetch_from_*_socks. Instead of looking * at a buffer's contents, we look at the datalen bytes of data in * data. Instead of removing data from the buffer, we set * drain_out to the amount of data that should be removed (or -1 if the * buffer should be cleared). Instead of pulling more data into the first * chunk of the buffer, we set *want_length_out to the number of bytes * we'd like to see in the input buffer, if they're available. */ static int parse_socks(const char *data, size_t datalen, socks_request_t *req, int log_sockstype, int safe_socks, size_t *drain_out, size_t *want_length_out) { unsigned int len; char tmpbuf[TOR_ADDR_BUF_LEN+1]; tor_addr_t destaddr; uint8_t socksver; if (datalen < 2) { /* We always need at least 2 bytes. */ *want_length_out = 2; return 0; } socksver = get_uint8(data); if (socksver == 5 || socksver == 4 || socksver == 1) { // XXX: RFC 1929 *want_length_out = 128; // TODO remove this arg later return handle_socks_message((const uint8_t *)data, datalen, req, log_sockstype, safe_socks, drain_out); } switch (socksver) { /* which version of socks? */ case 5: /* socks5 */ if (req->auth_type != SOCKS_NO_AUTH && !req->got_auth) { log_warn(LD_APP, "socks5: negotiated authentication, but none provided"); return -1; } /* we know the method; read in the request */ log_debug(LD_APP,"socks5: checking request"); if (datalen < 7) {/* basic info plus >=1 for addr plus 2 for port */ *want_length_out = 7; return 0; /* not yet */ } req->command = (unsigned char) *(data+1); if (req->command != SOCKS_COMMAND_CONNECT && req->command != SOCKS_COMMAND_RESOLVE && req->command != SOCKS_COMMAND_RESOLVE_PTR) { /* not a connect or resolve or a resolve_ptr? we don't support it. */ socks_request_set_socks5_error(req,SOCKS5_COMMAND_NOT_SUPPORTED); log_warn(LD_APP,"socks5: command %d not recognized. Rejecting.", req->command); return -1; } switch (*(data+3)) { /* address type */ case 1: /* IPv4 address */ case 4: /* IPv6 address */ { const int is_v6 = *(data+3) == 4; const unsigned addrlen = is_v6 ? 16 : 4; log_debug(LD_APP,"socks5: ipv4 address type"); if (datalen < 6+addrlen) {/* ip/port there? */ *want_length_out = 6+addrlen; return 0; /* not yet */ } if (is_v6) tor_addr_from_ipv6_bytes(&destaddr, data+4); else tor_addr_from_ipv4n(&destaddr, get_uint32(data+4)); tor_addr_to_str(tmpbuf, &destaddr, sizeof(tmpbuf), 1); if (BUG(strlen(tmpbuf)+1 > MAX_SOCKS_ADDR_LEN)) { /* LCOV_EXCL_START -- This branch is unreachable, given the * size of tmpbuf and the actual value of MAX_SOCKS_ADDR_LEN */ socks_request_set_socks5_error(req, SOCKS5_GENERAL_ERROR); log_warn(LD_APP, "socks5 IP takes %d bytes, which doesn't fit in %d. " "Rejecting.", (int)strlen(tmpbuf)+1,(int)MAX_SOCKS_ADDR_LEN); return -1; /* LCOV_EXCL_STOP */ } strlcpy(req->address,tmpbuf,sizeof(req->address)); req->port = ntohs(get_uint16(data+4+addrlen)); *drain_out = 6+addrlen; if (req->command != SOCKS_COMMAND_RESOLVE_PTR && !addressmap_have_mapping(req->address,0)) { log_unsafe_socks_warning(5, req->address, req->port, safe_socks); if (safe_socks) { socks_request_set_socks5_error(req, SOCKS5_NOT_ALLOWED); return -1; } } return 1; } case 3: /* fqdn */ log_debug(LD_APP,"socks5: fqdn address type"); if (req->command == SOCKS_COMMAND_RESOLVE_PTR) { socks_request_set_socks5_error(req, SOCKS5_ADDRESS_TYPE_NOT_SUPPORTED); log_warn(LD_APP, "socks5 received RESOLVE_PTR command with " "hostname type. Rejecting."); return -1; } len = (unsigned char)*(data+4); if (datalen < 7+len) { /* addr/port there? */ *want_length_out = 7+len; return 0; /* not yet */ } if (BUG(len+1 > MAX_SOCKS_ADDR_LEN)) { /* LCOV_EXCL_START -- unreachable, since len is at most 255, * and MAX_SOCKS_ADDR_LEN is 256. */ socks_request_set_socks5_error(req, SOCKS5_GENERAL_ERROR); log_warn(LD_APP, "socks5 hostname is %d bytes, which doesn't fit in " "%d. Rejecting.", len+1,MAX_SOCKS_ADDR_LEN); return -1; /* LCOV_EXCL_STOP */ } memcpy(req->address,data+5,len); req->address[len] = 0; req->port = ntohs(get_uint16(data+5+len)); *drain_out = 5+len+2; if (!string_is_valid_dest(req->address)) { socks_request_set_socks5_error(req, SOCKS5_GENERAL_ERROR); log_warn(LD_PROTOCOL, "Your application (using socks5 to port %d) gave Tor " "a malformed hostname: %s. Rejecting the connection.", req->port, escaped_safe_str_client(req->address)); return -1; } if (log_sockstype) log_notice(LD_APP, "Your application (using socks5 to port %d) instructed " "Tor to take care of the DNS resolution itself if " "necessary. This is good.", req->port); return 1; default: /* unsupported */ socks_request_set_socks5_error(req, SOCKS5_ADDRESS_TYPE_NOT_SUPPORTED); log_warn(LD_APP,"socks5: unsupported address type %d. Rejecting.", (int) *(data+3)); return -1; } tor_assert(0); break; case 'G': /* get */ case 'H': /* head */ case 'P': /* put/post */ case 'C': /* connect */ strlcpy((char*)req->reply, SOCKS_PROXY_IS_NOT_AN_HTTP_PROXY_MSG, MAX_SOCKS_REPLY_LEN); req->replylen = strlen((char*)req->reply)+1; /* fall through */ default: /* version is not socks4 or socks5 */ log_warn(LD_APP, "Socks version %d not recognized. (This port is not an " "HTTP proxy; did you want to use HTTPTunnelPort?)", *(data)); { /* Tell the controller the first 8 bytes. */ char *tmp = tor_strndup(data, datalen < 8 ? datalen : 8); control_event_client_status(LOG_WARN, "SOCKS_UNKNOWN_PROTOCOL DATA=\"%s\"", escaped(tmp)); tor_free(tmp); } return -1; } tor_assert_unreached(); return -1; } /** Inspect a reply from SOCKS server stored in buf according * to state, removing the protocol data upon success. Return 0 on * incomplete response, 1 on success and -1 on error, in which case * reason is set to a descriptive message (free() when finished * with it). * * As a special case, 2 is returned when user/pass is required * during SOCKS5 handshake and user/pass is configured. */ int fetch_from_buf_socks_client(buf_t *buf, int state, char **reason) { ssize_t drain = 0; int r; const char *head = NULL; size_t datalen = 0; if (buf_datalen(buf) < 2) return 0; buf_pullup(buf, MAX_SOCKS_MESSAGE_LEN, &head, &datalen); tor_assert(head && datalen >= 2); r = parse_socks_client((uint8_t*)head, datalen, state, reason, &drain); if (drain > 0) buf_drain(buf, drain); else if (drain < 0) buf_clear(buf); return r; } /** Implementation logic for fetch_from_*_socks_client. */ static int parse_socks_client(const uint8_t *data, size_t datalen, int state, char **reason, ssize_t *drain_out) { unsigned int addrlen; *drain_out = 0; if (datalen < 2) return 0; switch (state) { case PROXY_SOCKS4_WANT_CONNECT_OK: /* Wait for the complete response */ if (datalen < 8) return 0; if (data[1] != 0x5a) { *reason = tor_strdup(socks4_response_code_to_string(data[1])); return -1; } /* Success */ *drain_out = 8; return 1; case PROXY_SOCKS5_WANT_AUTH_METHOD_NONE: /* we don't have any credentials */ if (data[1] != 0x00) { *reason = tor_strdup("server doesn't support any of our " "available authentication methods"); return -1; } log_info(LD_NET, "SOCKS 5 client: continuing without authentication"); *drain_out = -1; return 1; case PROXY_SOCKS5_WANT_AUTH_METHOD_RFC1929: /* we have a username and password. return 1 if we can proceed without * providing authentication, or 2 otherwise. */ switch (data[1]) { case 0x00: log_info(LD_NET, "SOCKS 5 client: we have auth details but server " "doesn't require authentication."); *drain_out = -1; return 1; case 0x02: log_info(LD_NET, "SOCKS 5 client: need authentication."); *drain_out = -1; return 2; /* fall through */ } *reason = tor_strdup("server doesn't support any of our available " "authentication methods"); return -1; case PROXY_SOCKS5_WANT_AUTH_RFC1929_OK: /* handle server reply to rfc1929 authentication */ if (data[1] != 0x00) { *reason = tor_strdup("authentication failed"); return -1; } log_info(LD_NET, "SOCKS 5 client: authentication successful."); *drain_out = -1; return 1; case PROXY_SOCKS5_WANT_CONNECT_OK: /* response is variable length. BND.ADDR, etc, isn't needed * (don't bother with buf_pullup()), but make sure to eat all * the data used */ /* wait for address type field to arrive */ if (datalen < 4) return 0; switch (data[3]) { case 0x01: /* ip4 */ addrlen = 4; break; case 0x04: /* ip6 */ addrlen = 16; break; case 0x03: /* fqdn (can this happen here?) */ if (datalen < 5) return 0; addrlen = 1 + data[4]; break; default: *reason = tor_strdup("invalid response to connect request"); return -1; } /* wait for address and port */ if (datalen < 6 + addrlen) return 0; if (data[1] != 0x00) { *reason = tor_strdup(socks5_response_code_to_string(data[1])); return -1; } *drain_out = 6 + addrlen; return 1; } /* LCOV_EXCL_START */ /* shouldn't get here if the input state is one we know about... */ tor_assert(0); return -1; /* LCOV_EXCL_STOP */ }