From 4bfb68d289305a884d0f11bd4fa216a8cc0b36ac Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sun, 8 Oct 2017 20:27:30 +0200 Subject: [PATCH] Remove PROXY_EXEC support. This calls fork(), which is not desirable from a library. --- src/meshlink_internal.h | 1 - src/net_socket.c | 65 ++++------------------------------------- src/protocol_auth.c | 3 -- 3 files changed, 5 insertions(+), 64 deletions(-) diff --git a/src/meshlink_internal.h b/src/meshlink_internal.h index 46cbbb1e..15390253 100644 --- a/src/meshlink_internal.h +++ b/src/meshlink_internal.h @@ -55,7 +55,6 @@ typedef enum proxytype_t { PROXY_SOCKS4A, PROXY_SOCKS5, PROXY_HTTP, - PROXY_EXEC, } proxytype_t; /// A handle for an instance of MeshLink. diff --git a/src/net_socket.c b/src/net_socket.c index df1bbf13..93bd62dd 100644 --- a/src/net_socket.c +++ b/src/net_socket.c @@ -286,55 +286,6 @@ void finish_connecting(meshlink_handle_t *mesh, connection_t *c) { send_id(mesh, c); } -static void do_outgoing_pipe(meshlink_handle_t *mesh, connection_t *c, char *command) { -#ifndef HAVE_MINGW - int fd[2]; - - if(socketpair(AF_UNIX, SOCK_STREAM, 0, fd)) { - logger(mesh, MESHLINK_ERROR, "Could not create socketpair: %s", strerror(errno)); - return; - } - - if(fork()) { - c->socket = fd[0]; - close(fd[1]); - logger(mesh, MESHLINK_DEBUG, "Using proxy %s", command); - return; - } - - close(0); - close(1); - close(fd[0]); - dup2(fd[1], 0); - dup2(fd[1], 1); - close(fd[1]); - - // Other filedescriptors should be closed automatically by CLOEXEC - - char *host = NULL; - char *port = NULL; - - sockaddr2str(&c->address, &host, &port); - setenv("REMOTEADDRESS", host, true); - setenv("REMOTEPORT", port, true); - setenv("NODE", c->name, true); - setenv("NAME", mesh->self->name, true); - - int result = system(command); - - if(result < 0) { - logger(mesh, MESHLINK_ERROR, "Could not execute %s: %s", command, strerror(errno)); - } else if(result) { - logger(mesh, MESHLINK_ERROR, "%s exited with non-zero status %d", command, result); - } - - exit(result); -#else - logger(mesh, MESHLINK_ERROR, "Proxy type exec not supported on this platform!"); - return; -#endif -} - static void handle_meta_write(meshlink_handle_t *mesh, connection_t *c) { if(c->outbuf.len <= c->outbuf.offset) { return; @@ -503,8 +454,6 @@ begin: if(!mesh->proxytype) { c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP); configure_tcp(c); - } else if(mesh->proxytype == PROXY_EXEC) { - do_outgoing_pipe(mesh, c, mesh->proxyhost); } else { proxyai = str2addrinfo(mesh->proxyhost, mesh->proxyport, SOCK_STREAM); @@ -532,25 +481,21 @@ begin: fcntl(c->socket, F_SETFD, FD_CLOEXEC); #endif - if(mesh->proxytype != PROXY_EXEC) { #if defined(SOL_IPV6) && defined(IPV6_V6ONLY) - int option = 1; - if(c->address.sa.sa_family == AF_INET6) { - setsockopt(c->socket, SOL_IPV6, IPV6_V6ONLY, (void *)&option, sizeof(option)); - } + if(c->address.sa.sa_family == AF_INET6) { + static const int option = 1; + setsockopt(c->socket, SOL_IPV6, IPV6_V6ONLY, (void *)&option, sizeof(option)); + } #endif - bind_to_address(mesh, c); - } + bind_to_address(mesh, c); /* Connect */ if(!mesh->proxytype) { result = connect(c->socket, &c->address.sa, SALEN(c->address.sa)); - } else if(mesh->proxytype == PROXY_EXEC) { - result = 0; } else { result = connect(c->socket, proxyai->ai_addr, proxyai->ai_addrlen); freeaddrinfo(proxyai); diff --git a/src/protocol_auth.c b/src/protocol_auth.c index 610cbaf8..b11acaef 100644 --- a/src/protocol_auth.c +++ b/src/protocol_auth.c @@ -136,9 +136,6 @@ static bool send_proxyrequest(meshlink_handle_t *mesh, connection_t *c) { logger(mesh, MESHLINK_ERROR, "Proxy type not implemented yet"); return false; - case PROXY_EXEC: - return true; - default: logger(mesh, MESHLINK_ERROR, "Unknown proxy type"); return false; -- 2.39.2