[tor-commits] [torsocks/master] Fix: SOCKS5 connect reply was not receiving the correct len

dgoulet at torproject.org dgoulet at torproject.org
Fri Apr 4 22:40:25 UTC 2014


commit 3a3c756cf8dd590e8fa2d92c8dadf66ba4ff66f7
Author: David Goulet <dgoulet at ev0ke.net>
Date:   Sat Jun 22 20:16:03 2013 -0400

    Fix: SOCKS5 connect reply was not receiving the correct len
    
    Signed-off-by: David Goulet <dgoulet at ev0ke.net>
---
 src/common/socks5.c |   21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/src/common/socks5.c b/src/common/socks5.c
index 4e218e3..8a16b9a 100644
--- a/src/common/socks5.c
+++ b/src/common/socks5.c
@@ -303,17 +303,36 @@ int socks5_recv_connect_reply(struct connection *conn)
 {
 	int ret;
 	ssize_t ret_recv;
+	char buffer[22];	/* Maximum size possible (with IPv6). */
 	struct socks5_reply msg;
+	size_t recv_len;
 
 	assert(conn);
 	assert(conn >= 0);
 
-	ret_recv = recv_data(conn->fd, &msg, sizeof(msg));
+	/* Beginning of the payload we are receiving. */
+	recv_len = sizeof(msg);
+	/* Len of BND.PORT */
+	recv_len += sizeof(uint16_t);
+
+	switch (tsocks_config.socks5_addr.domain) {
+	case CONNECTION_DOMAIN_INET:
+		recv_len+= 4;
+		break;
+	case CONNECTION_DOMAIN_INET6:
+		recv_len += 16;
+		break;
+	}
+
+	ret_recv = recv_data(conn->fd, buffer, recv_len);
 	if (ret_recv < 0) {
 		ret = ret_recv;
 		goto error;
 	}
 
+	/* Copy the beginning of the reply so we can parse it easily. */
+	memcpy(&msg, buffer, sizeof(msg));
+
 	DBG("Socks5 received connect reply - ver: %d, rep: 0x%02x, atype: 0x%02x",
 			msg.ver, msg.rep, msg.atyp);
 





More information about the tor-commits mailing list