X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fnet_socket.c;h=63bf49ea3c6f0511de3322e9d84e21d8ddcc5092;hb=963c5055505f2fc117cd5efa06eaa02c9b2bf85d;hp=3d1be21ec84113319739dc5c9efe76489a0c6446;hpb=42e01abd54bd36ee84a45a2b646cfa27034de8d1;p=meshlink diff --git a/src/net_socket.c b/src/net_socket.c index 3d1be21e..63bf49ea 100644 --- a/src/net_socket.c +++ b/src/net_socket.c @@ -1,7 +1,6 @@ /* net_socket.c -- Handle various kinds of sockets. - Copyright (C) 1998-2003 Ivo Timmermans , - 2000-2003 Guus Sliepen + Copyright (C) 2014-2017 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -13,20 +12,18 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - - $Id: net_socket.c,v 1.1.2.38 2003/12/22 11:04:16 guus Exp $ + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "system.h" -#include "avl_tree.h" #include "conf.h" #include "connection.h" -#include "event.h" +#include "list.h" #include "logger.h" +#include "meshlink_internal.h" #include "meta.h" #include "net.h" #include "netutl.h" @@ -34,427 +31,543 @@ #include "utils.h" #include "xalloc.h" -#ifdef WSAEINPROGRESS -#define EINPROGRESS WSAEINPROGRESS +/* Needed on Mac OS/X */ +#ifndef SOL_TCP +#define SOL_TCP IPPROTO_TCP #endif -int addressfamily = AF_UNSPEC; -int maxtimeout = 900; -int seconds_till_retry = 5; +#ifndef MSG_NOSIGNAL +#define MSG_NOSIGNAL 0 +#endif -listen_socket_t listen_socket[MAXSOCKETS]; -int listen_sockets; +static const int max_connection_burst = 100; /* Setup sockets */ -int setup_listen_socket(const sockaddr_t *sa) -{ - int nfd; - char *addrstr; - int option; - char *iface; +static void configure_tcp(connection_t *c) { +#ifdef O_NONBLOCK + int flags = fcntl(c->socket, F_GETFL); - cp(); + if(fcntl(c->socket, F_SETFL, flags | O_NONBLOCK) < 0) { + logger(c->mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "fcntl", strerror(errno)); + } - nfd = socket(sa->sa.sa_family, SOCK_STREAM, IPPROTO_TCP); +#elif defined(WIN32) + unsigned long arg = 1; - if(nfd < 0) { - ifdebug(STATUS) logger(LOG_ERR, _("Creating metasocket failed: %s"), strerror(errno)); - return -1; + if(ioctlsocket(c->socket, FIONBIO, &arg) != 0) { + logger(c->mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "ioctlsocket", sockstrerror(sockerrno)); } -#ifdef O_NONBLOCK - { - int flags = fcntl(nfd, F_GETFL); - - if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0) { - closesocket(nfd); - logger(LOG_ERR, _("System call `%s' failed: %s"), "fcntl", - strerror(errno)); - return -1; - } - } #endif - /* Optimize TCP settings */ - - option = 1; - setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option)); - #if defined(SOL_TCP) && defined(TCP_NODELAY) - setsockopt(nfd, SOL_TCP, TCP_NODELAY, &option, sizeof(option)); + int nodelay = 1; + setsockopt(c->socket, SOL_TCP, TCP_NODELAY, (void *)&nodelay, sizeof(nodelay)); #endif -#if defined(SOL_IP) && defined(IP_TOS) && defined(IPTOS_LOWDELAY) - option = IPTOS_LOWDELAY; - setsockopt(nfd, SOL_IP, IP_TOS, &option, sizeof(option)); +#if defined(IP_TOS) && defined(IPTOS_LOWDELAY) + int lowdelay = IPTOS_LOWDELAY; + setsockopt(c->socket, IPPROTO_IP, IP_TOS, (void *)&lowdelay, sizeof(lowdelay)); #endif +} - if(get_config_string - (lookup_config(config_tree, "BindToInterface"), &iface)) { -#if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE) - struct ifreq ifr; +static void retry_outgoing_handler(event_loop_t *loop, void *data) { + assert(data); - memset(&ifr, 0, sizeof(ifr)); - strncpy(ifr.ifr_ifrn.ifrn_name, iface, IFNAMSIZ); + meshlink_handle_t *mesh = loop->data; + outgoing_t *outgoing = data; + setup_outgoing_connection(mesh, outgoing); +} - if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr))) { - closesocket(nfd); - logger(LOG_ERR, _("Can't bind to interface %s: %s"), iface, - strerror(errno)); - return -1; - } -#else - logger(LOG_WARNING, _("BindToInterface not supported on this platform")); -#endif +void retry_outgoing(meshlink_handle_t *mesh, outgoing_t *outgoing) { + if(!mesh->reachable && mesh->loop.now.tv_sec < mesh->last_unreachable + mesh->dev_class_traits[mesh->devclass].fast_retry_period) { + outgoing->timeout = 1; + } else { + outgoing->timeout += 5; } - if(bind(nfd, &sa->sa, SALEN(sa->sa))) { - closesocket(nfd); - addrstr = sockaddr2hostname(sa); - logger(LOG_ERR, _("Can't bind to %s/tcp: %s"), addrstr, - strerror(errno)); - free(addrstr); - return -1; + if(outgoing->timeout > mesh->maxtimeout) { + outgoing->timeout = mesh->maxtimeout; } - if(listen(nfd, 3)) { - closesocket(nfd); - logger(LOG_ERR, _("System call `%s' failed: %s"), "listen", - strerror(errno)); - return -1; - } + timeout_add(&mesh->loop, &outgoing->ev, retry_outgoing_handler, outgoing, &(struct timespec) { + outgoing->timeout, prng(mesh, TIMER_FUDGE) + }); - return nfd; + logger(mesh, MESHLINK_INFO, "Trying to re-establish outgoing connection in %d seconds", outgoing->timeout); } -int setup_vpn_in_socket(const sockaddr_t *sa) -{ - int nfd; - char *addrstr; - int option; +void finish_connecting(meshlink_handle_t *mesh, connection_t *c) { + logger(mesh, MESHLINK_INFO, "Connected to %s", c->name); - cp(); + c->last_ping_time = mesh->loop.now.tv_sec; + c->status.connecting = false; - nfd = socket(sa->sa.sa_family, SOCK_DGRAM, IPPROTO_UDP); + send_id(mesh, c); +} - if(nfd < 0) { - logger(LOG_ERR, _("Creating UDP socket failed: %s"), strerror(errno)); - return -1; +static void handle_meta_write(meshlink_handle_t *mesh, connection_t *c) { + if(c->outbuf.len <= c->outbuf.offset) { + return; } -#ifdef O_NONBLOCK - { - int flags = fcntl(nfd, F_GETFL); - - if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0) { - closesocket(nfd); - logger(LOG_ERR, _("System call `%s' failed: %s"), "fcntl", - strerror(errno)); - return -1; + ssize_t outlen = send(c->socket, c->outbuf.data + c->outbuf.offset, c->outbuf.len - c->outbuf.offset, MSG_NOSIGNAL); + + if(outlen <= 0) { + if(!errno || errno == EPIPE) { + logger(mesh, MESHLINK_INFO, "Connection closed by %s", c->name); + } else if(sockwouldblock(sockerrno)) { + logger(mesh, MESHLINK_DEBUG, "Sending %lu bytes to %s would block", (unsigned long)(c->outbuf.len - c->outbuf.offset), c->name); + return; + } else { + logger(mesh, MESHLINK_ERROR, "Could not send %lu bytes of data to %s: %s", (unsigned long)(c->outbuf.len - c->outbuf.offset), c->name, strerror(errno)); } - } -#endif - option = 1; - setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option)); + terminate_connection(mesh, c, c->status.active); + return; + } -#if defined(SOL_IP) && defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DO) - { - bool choice; + buffer_read(&c->outbuf, outlen); - if(get_config_bool(lookup_config(myself->connection->config_tree, "PMTUDiscovery"), &choice) && choice) { - option = IP_PMTUDISC_DO; - setsockopt(nfd, SOL_IP, IP_MTU_DISCOVER, &option, sizeof(option)); - } + if(!c->outbuf.len) { + io_set(&mesh->loop, &c->io, IO_READ); } -#endif +} + +static void handle_meta_io(event_loop_t *loop, void *data, int flags) { + meshlink_handle_t *mesh = loop->data; + connection_t *c = data; -#if defined(SOL_IPV6) && defined(IPV6_MTU_DISCOVER) && defined(IPV6_PMTUDISC_DO) - { - bool choice; + if(c->status.connecting) { + c->status.connecting = false; - if(get_config_bool(lookup_config(myself->connection->config_tree, "PMTUDiscovery"), &choice) && choice) { - option = IPV6_PMTUDISC_DO; - setsockopt(nfd, SOL_IPV6, IPV6_MTU_DISCOVER, &option, sizeof(option)); + int result; + socklen_t len = sizeof(result); + getsockopt(c->socket, SOL_SOCKET, SO_ERROR, (void *)&result, &len); + + if(!result) { + finish_connecting(mesh, c); + } else { + logger(mesh, MESHLINK_DEBUG, "Error while connecting to %s: %s", c->name, sockstrerror(result)); + terminate_connection(mesh, c, false); + return; } } -#endif -#if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE) - { - char *iface; - struct ifreq ifr; + if(flags & IO_WRITE) { + handle_meta_write(mesh, c); + } else { + handle_meta_connection_data(mesh, c); + } +} + +// Find edges pointing to this node, and use them to build a list of unique, known addresses. +static struct addrinfo *get_known_addresses(node_t *n) { + struct addrinfo *ai = NULL; + + for splay_each(edge_t, e, n->edge_tree) { + if(!e->reverse) { + continue; + } - if(get_config_string(lookup_config(config_tree, "BindToInterface"), &iface)) { - memset(&ifr, 0, sizeof(ifr)); - strncpy(ifr.ifr_ifrn.ifrn_name, iface, IFNAMSIZ); + bool found = false; - if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr))) { - closesocket(nfd); - logger(LOG_ERR, _("Can't bind to interface %s: %s"), iface, - strerror(errno)); - return -1; + for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) { + if(!sockaddrcmp(&e->reverse->address, (sockaddr_t *)aip->ai_addr)) { + found = true; + break; } } - } -#endif - if(bind(nfd, &sa->sa, SALEN(sa->sa))) { - closesocket(nfd); - addrstr = sockaddr2hostname(sa); - logger(LOG_ERR, _("Can't bind to %s/udp: %s"), addrstr, - strerror(errno)); - free(addrstr); - return -1; + if(found) { + continue; + } + + // Create a new struct addrinfo, and put it at the head of the list. + struct addrinfo *nai = xzalloc(sizeof(*nai) + SALEN(e->reverse->address.sa)); + nai->ai_next = ai; + ai = nai; + + ai->ai_family = e->reverse->address.sa.sa_family; + ai->ai_socktype = SOCK_STREAM; + ai->ai_protocol = IPPROTO_TCP; + ai->ai_addrlen = SALEN(e->reverse->address.sa); + ai->ai_addr = (struct sockaddr *)(nai + 1); + memcpy(ai->ai_addr, &e->reverse->address, ai->ai_addrlen); } - return nfd; + return ai; } -void retry_outgoing(outgoing_t *outgoing) -{ - event_t *event; +// Build a list of recently seen addresses. +static struct addrinfo *get_recent_addresses(node_t *n) { + struct addrinfo *ai = NULL; + struct addrinfo *aip; - cp(); + for(int i = 0; i < 5; i++) { + if(!n->recent[i].sa.sa_family) { + break; + } + + // Create a new struct addrinfo, and put it at the end of the list. + struct addrinfo *nai = xzalloc(sizeof(*nai) + SALEN(n->recent[i].sa)); + + if(!ai) { + ai = nai; + } else { + aip->ai_next = nai; + } - outgoing->timeout += 5; + aip = nai; - if(outgoing->timeout > maxtimeout) - outgoing->timeout = maxtimeout; + nai->ai_family = n->recent[i].sa.sa_family; + nai->ai_socktype = SOCK_STREAM; + nai->ai_protocol = IPPROTO_TCP; + nai->ai_addrlen = SALEN(n->recent[i].sa); + nai->ai_addr = (struct sockaddr *)(nai + 1); + memcpy(nai->ai_addr, &n->recent[i], nai->ai_addrlen); + } - event = new_event(); - event->handler = (event_handler_t) setup_outgoing_connection; - event->time = now + outgoing->timeout; - event->data = outgoing; - event_add(event); + return ai; +} - ifdebug(CONNECTIONS) logger(LOG_NOTICE, - _("Trying to re-establish outgoing connection in %d seconds"), - outgoing->timeout); +// Free struct addrinfo list from get_known_addresses(). +static void free_known_addresses(struct addrinfo *ai) { + for(struct addrinfo *aip = ai, *next; aip; aip = next) { + next = aip->ai_next; + free(aip); + } } -void finish_connecting(connection_t *c) -{ - cp(); +static struct addrinfo *get_canonical_address(node_t *n) { + if(!n->canonical_address) { + return false; + } + + char *address = xstrdup(n->canonical_address); + char *port = strchr(address, ' '); + + if(!port) { + free(address); + return false; + } - ifdebug(CONNECTIONS) logger(LOG_INFO, _("Connected to %s (%s)"), c->name, c->hostname); + *port++ = 0; - c->last_ping_time = now; + struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM); + free(address); - send_id(c); + return ai; } -void do_outgoing_connection(connection_t *c) -{ - char *address, *port; - int option, result, flags; +static bool get_next_outgoing_address(meshlink_handle_t *mesh, outgoing_t *outgoing) { + (void)mesh; - cp(); + bool start = false; -begin: - if(!c->outgoing->ai) { - if(!c->outgoing->cfg) { - ifdebug(CONNECTIONS) logger(LOG_ERR, _("Could not set up a meta connection to %s"), - c->name); - c->status.remove = true; - retry_outgoing(c->outgoing); - return; + if(outgoing->state == OUTGOING_START) { + start = true; + outgoing->state = OUTGOING_CANONICAL; + } + + if(outgoing->state == OUTGOING_CANONICAL) { + if(!outgoing->aip) { + outgoing->ai = get_canonical_address(outgoing->node); + outgoing->aip = outgoing->ai; + } else { + outgoing->aip = outgoing->aip->ai_next; } - get_config_string(c->outgoing->cfg, &address); + if(outgoing->aip) { + return true; + } - if(!get_config_string(lookup_config(c->config_tree, "Port"), &port)) - asprintf(&port, "655"); + freeaddrinfo(outgoing->ai); + outgoing->ai = NULL; + outgoing->aip = NULL; + outgoing->state = OUTGOING_RECENT; + } - c->outgoing->ai = str2addrinfo(address, port, SOCK_STREAM); - free(address); - free(port); + if(outgoing->state == OUTGOING_RECENT) { + if(!outgoing->aip) { + outgoing->ai = get_recent_addresses(outgoing->node); + outgoing->aip = outgoing->ai; + } else { + outgoing->aip = outgoing->aip->ai_next; + } - c->outgoing->aip = c->outgoing->ai; - c->outgoing->cfg = lookup_config_next(c->config_tree, c->outgoing->cfg); - } + if(outgoing->aip) { + return true; + } - if(!c->outgoing->aip) { - freeaddrinfo(c->outgoing->ai); - c->outgoing->ai = NULL; - goto begin; + free_known_addresses(outgoing->ai); + outgoing->ai = NULL; + outgoing->aip = NULL; + outgoing->state = OUTGOING_KNOWN; } - memcpy(&c->address, c->outgoing->aip->ai_addr, c->outgoing->aip->ai_addrlen); - c->outgoing->aip = c->outgoing->aip->ai_next; + if(outgoing->state == OUTGOING_KNOWN) { + if(!outgoing->aip) { + outgoing->ai = get_known_addresses(outgoing->node); + outgoing->aip = outgoing->ai; + } else { + outgoing->aip = outgoing->aip->ai_next; + } - if(c->hostname) - free(c->hostname); + if(outgoing->aip) { + return true; + } - c->hostname = sockaddr2hostname(&c->address); + free_known_addresses(outgoing->ai); + outgoing->ai = NULL; + outgoing->aip = NULL; + outgoing->state = OUTGOING_END; + } - ifdebug(CONNECTIONS) logger(LOG_INFO, _("Trying to connect to %s (%s)"), c->name, - c->hostname); + if(start) { + outgoing->state = OUTGOING_NO_KNOWN_ADDRESSES; + } - c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP); + return false; +} - if(c->socket == -1) { - ifdebug(CONNECTIONS) logger(LOG_ERR, _("Creating socket for %s failed: %s"), c->hostname, - strerror(errno)); +void do_outgoing_connection(meshlink_handle_t *mesh, outgoing_t *outgoing) { + struct addrinfo *proxyai = NULL; + int result; - goto begin; +begin: + + if(!get_next_outgoing_address(mesh, outgoing)) { + if(outgoing->state == OUTGOING_NO_KNOWN_ADDRESSES) { + logger(mesh, MESHLINK_ERROR, "No known addresses for %s", outgoing->node->name); + } else { + logger(mesh, MESHLINK_ERROR, "Could not set up a meta connection to %s", outgoing->node->name); + retry_outgoing(mesh, outgoing); + } + + return; } - /* Optimize TCP settings */ + connection_t *c = new_connection(); + c->outgoing = outgoing; -#if defined(SOL_TCP) && defined(TCP_NODELAY) - option = 1; - setsockopt(c->socket, SOL_TCP, TCP_NODELAY, &option, sizeof(option)); -#endif + memcpy(&c->address, outgoing->aip->ai_addr, outgoing->aip->ai_addrlen); -#if defined(SOL_IP) && defined(IP_TOS) - option = IPTOS_LOWDELAY; - setsockopt(c->socket, SOL_IP, IP_TOS, &option, sizeof(option)); -#endif + char *hostname = sockaddr2hostname(&c->address); - /* Non-blocking */ + logger(mesh, MESHLINK_INFO, "Trying to connect to %s at %s", outgoing->node->name, hostname); -#ifdef O_NONBLOCK - flags = fcntl(c->socket, F_GETFL); + if(!mesh->proxytype) { + c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP); + configure_tcp(c); + } else { + proxyai = str2addrinfo(mesh->proxyhost, mesh->proxyport, SOCK_STREAM); - if(fcntl(c->socket, F_SETFL, flags | O_NONBLOCK) < 0) { - logger(LOG_ERR, _("fcntl for %s: %s"), c->hostname, strerror(errno)); + if(!proxyai) { + free_connection(c); + free(hostname); + goto begin; + } + + logger(mesh, MESHLINK_INFO, "Using proxy at %s port %s", mesh->proxyhost, mesh->proxyport); + c->socket = socket(proxyai->ai_family, SOCK_STREAM, IPPROTO_TCP); + configure_tcp(c); + } + + if(c->socket == -1) { + logger(mesh, MESHLINK_ERROR, "Creating socket for %s at %s failed: %s", c->name, hostname, sockstrerror(sockerrno)); + free_connection(c); + free(hostname); + goto begin; } + + free(hostname); + +#ifdef FD_CLOEXEC + fcntl(c->socket, F_SETFD, FD_CLOEXEC); #endif - /* Connect */ +#if defined(IPV6_V6ONLY) - result = connect(c->socket, &c->address.sa, SALEN(c->address.sa)); + if(c->address.sa.sa_family == AF_INET6) { + static const int option = 1; + setsockopt(c->socket, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&option, sizeof(option)); + } - if(result == -1) { - if(errno == EINPROGRESS) { - c->status.connecting = true; - return; - } +#endif + + /* Connect */ - closesocket(c->socket); + if(!mesh->proxytype) { + result = connect(c->socket, &c->address.sa, SALEN(c->address.sa)); + } else { + result = connect(c->socket, proxyai->ai_addr, proxyai->ai_addrlen); + freeaddrinfo(proxyai); + } - ifdebug(CONNECTIONS) logger(LOG_ERR, _("%s: %s"), c->hostname, strerror(errno)); + if(result == -1 && !sockinprogress(sockerrno)) { + logger(mesh, MESHLINK_ERROR, "Could not connect to %s: %s", outgoing->node->name, sockstrerror(sockerrno)); + free_connection(c); goto begin; } - finish_connecting(c); + /* Now that there is a working socket, fill in the rest and register this connection. */ + + c->status.connecting = true; + c->status.initiator = true; + c->name = xstrdup(outgoing->node->name); + c->last_ping_time = mesh->loop.now.tv_sec; - return; + connection_add(mesh, c); + + io_add(&mesh->loop, &c->io, handle_meta_io, c, c->socket, IO_READ | IO_WRITE); } -void setup_outgoing_connection(outgoing_t *outgoing) -{ - connection_t *c; - node_t *n; +void reset_outgoing(outgoing_t *outgoing) { + if(outgoing->ai) { + if(outgoing->state == OUTGOING_RECENT || outgoing->state == OUTGOING_KNOWN) { + free_known_addresses(outgoing->ai); + } else { + freeaddrinfo(outgoing->ai); + } + } - cp(); + outgoing->ai = NULL; + outgoing->aip = NULL; + outgoing->state = OUTGOING_START; +} - n = lookup_node(outgoing->name); +void setup_outgoing_connection(meshlink_handle_t *mesh, outgoing_t *outgoing) { + timeout_del(&mesh->loop, &outgoing->ev); - if(n) - if(n->connection) { - ifdebug(CONNECTIONS) logger(LOG_INFO, _("Already connected to %s"), outgoing->name); + if(outgoing->node->connection) { + logger(mesh, MESHLINK_INFO, "Already connected to %s", outgoing->node->name); - n->connection->outgoing = outgoing; - return; - } + outgoing->node->connection->outgoing = outgoing; + return; + } - c = new_connection(); - c->name = xstrdup(outgoing->name); - c->outcipher = myself->connection->outcipher; - c->outdigest = myself->connection->outdigest; - c->outmaclength = myself->connection->outmaclength; - c->outcompression = myself->connection->outcompression; + reset_outgoing(outgoing); - init_configuration(&c->config_tree); - read_connection_config(c); + if(outgoing->node->status.blacklisted) { + return; + } - outgoing->cfg = lookup_config(c->config_tree, "Address"); + if(mesh->connection_try_cb) { + mesh->connection_try_cb(mesh, (meshlink_node_t *)outgoing->node); + } - if(!outgoing->cfg) { - logger(LOG_ERR, _("No address specified for %s"), c->name); - free_connection(c); - free(outgoing->name); - free(outgoing); + do_outgoing_connection(mesh, outgoing); +} + +/// Delayed close of a filedescriptor. +static void tarpit(meshlink_handle_t *mesh, int fd) { + if(!fd) { return; } - c->outgoing = outgoing; - c->last_ping_time = now; + if(mesh->pits[mesh->next_pit]) { + closesocket(mesh->pits[mesh->next_pit]); + } - connection_add(c); + mesh->pits[mesh->next_pit++] = fd; - do_outgoing_connection(c); + if(mesh->next_pit >= (int)(sizeof mesh->pits / sizeof mesh->pits[0])) { + mesh->next_pit = 0; + } } /* accept a new tcp connect and create a new connection */ -bool handle_new_meta_connection(int sock) -{ +void handle_new_meta_connection(event_loop_t *loop, void *data, int flags) { + (void)flags; + meshlink_handle_t *mesh = loop->data; + listen_socket_t *l = data; connection_t *c; sockaddr_t sa; - int fd, len = sizeof(sa); + int fd; + socklen_t len = sizeof(sa); - cp(); + memset(&sa, 0, sizeof(sa)); - fd = accept(sock, &sa.sa, &len); + fd = accept(l->tcp.fd, &sa.sa, &len); if(fd < 0) { - logger(LOG_ERR, _("Accepting a new connection failed: %s"), - strerror(errno)); - return false; + if(errno == EINVAL) { // TODO: check if Windows agrees + event_loop_stop(loop); + return; + } + + logger(mesh, MESHLINK_ERROR, "Accepting a new connection failed: %s", sockstrerror(sockerrno)); + return; } sockaddrunmap(&sa); + /* Rate limit incoming connections to max_connection_burst/second. */ + + if(mesh->loop.now.tv_sec != mesh->connection_burst_time) { + mesh->connection_burst_time = mesh->loop.now.tv_sec; + mesh->connection_burst = 0; + } + + if(mesh->connection_burst >= max_connection_burst) { + tarpit(mesh, fd); + return; + } + + mesh->connection_burst++; + + // Accept the new connection + c = new_connection(); - c->outcipher = myself->connection->outcipher; - c->outdigest = myself->connection->outdigest; - c->outmaclength = myself->connection->outmaclength; - c->outcompression = myself->connection->outcompression; + c->name = xstrdup(""); c->address = sa; - c->hostname = sockaddr2hostname(&sa); c->socket = fd; - c->last_ping_time = now; + c->last_ping_time = mesh->loop.now.tv_sec; - ifdebug(CONNECTIONS) logger(LOG_NOTICE, _("Connection from %s"), c->hostname); + char *hostname = sockaddr2hostname(&sa); + logger(mesh, MESHLINK_INFO, "Connection from %s", hostname); + free(hostname); - connection_add(c); + io_add(&mesh->loop, &c->io, handle_meta_io, c, c->socket, IO_READ); - c->allow_request = ID; - send_id(c); + configure_tcp(c); - return true; -} + connection_add(mesh, c); -void try_outgoing_connections(void) -{ - static config_t *cfg = NULL; - char *name; - outgoing_t *outgoing; + c->allow_request = ID; + send_id(mesh, c); +} - cp(); +static void free_outgoing(outgoing_t *outgoing) { + meshlink_handle_t *mesh = outgoing->node->mesh; - for(cfg = lookup_config(config_tree, "ConnectTo"); cfg; - cfg = lookup_config_next(config_tree, cfg)) { - get_config_string(cfg, &name); + timeout_del(&mesh->loop, &outgoing->ev); - if(!check_id(name)) { - logger(LOG_ERR, - _("Invalid name for outgoing connection in %s line %d"), - cfg->file, cfg->line); - free(name); - continue; + if(outgoing->ai) { + if(outgoing->state == OUTGOING_RECENT || outgoing->state == OUTGOING_KNOWN) { + free_known_addresses(outgoing->ai); + } else { + freeaddrinfo(outgoing->ai); } + } + + free(outgoing); +} + +void init_outgoings(meshlink_handle_t *mesh) { + mesh->outgoings = list_alloc((list_action_t)free_outgoing); +} - outgoing = xmalloc_and_zero(sizeof(*outgoing)); - outgoing->name = name; - setup_outgoing_connection(outgoing); +void exit_outgoings(meshlink_handle_t *mesh) { + if(mesh->outgoings) { + list_delete_list(mesh->outgoings); + mesh->outgoings = NULL; } }