X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fmeta.c;h=e3f2999885f21320378f25f83c876b04401a8969;hb=a5c6c6ea1ab657d83a4d8b064ac9bfa9c16adf63;hp=0ff7bef0e868ac50d8871574931f57301bd49e9c;hpb=5a76af7839d3239a16a6a3f9dabe05768799de89;p=tinc diff --git a/src/meta.c b/src/meta.c index 0ff7bef0..e3f29998 100644 --- a/src/meta.c +++ b/src/meta.c @@ -30,6 +30,7 @@ #include "net.h" #include "protocol.h" #include "utils.h" +#include "proxy.h" #ifndef MIN static ssize_t MIN(ssize_t x, ssize_t y) { @@ -279,33 +280,8 @@ bool receive_meta(connection_t *c) { } if(!c->node) { - if(c->outgoing && proxytype == PROXY_SOCKS4 && c->allow_request == ID) { - if(tcpbuffer[0] == 0 && tcpbuffer[1] == 0x5a) { - logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Proxy request granted"); - } else { - logger(DEBUG_CONNECTIONS, LOG_ERR, "Proxy request rejected"); - return false; - } - } else if(c->outgoing && proxytype == PROXY_SOCKS5 && c->allow_request == ID) { - if(tcpbuffer[0] != 5) { - logger(DEBUG_CONNECTIONS, LOG_ERR, "Invalid response from proxy server"); - return false; - } - - if(tcpbuffer[1] == (char)0xff) { - logger(DEBUG_CONNECTIONS, LOG_ERR, "Proxy request rejected: unsuitable authentication method"); - return false; - } - - if(tcpbuffer[2] != 5) { - logger(DEBUG_CONNECTIONS, LOG_ERR, "Invalid response from proxy server"); - return false; - } - - if(tcpbuffer[3] == 0) { - logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Proxy request granted"); - } else { - logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Proxy request rejected"); + if(c->outgoing && c->allow_request == ID && (proxytype == PROXY_SOCKS4 || proxytype == PROXY_SOCKS5)) { + if(!check_socks_resp(proxytype, tcpbuffer, c->tcplen)) { return false; } } else {