X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fnet_socket.c;h=7e05ab9362b4ecd9d6d81b268a25ff75d8f25f93;hb=2224a56ea44bffdafbe29ba7b74d1a0adb0cbd95;hp=6d1d8fb386952f1e49ea12fc0d9e7ca5740efe30;hpb=06a9d580c37d80c680c3dda2ff8f3c53f487c735;p=meshlink diff --git a/src/net_socket.c b/src/net_socket.c index 6d1d8fb3..7e05ab93 100644 --- a/src/net_socket.c +++ b/src/net_socket.c @@ -40,9 +40,7 @@ #define MSG_NOSIGNAL 0 #endif -int addressfamily = AF_UNSPEC; -int seconds_till_retry = 5; -int max_connection_burst = 100; +static const int max_connection_burst = 100; /* Setup sockets */ @@ -213,39 +211,19 @@ int setup_vpn_in_socket(meshlink_handle_t *mesh, const sockaddr_t *sa) { #endif #if defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DO) - - if(mesh->self->options & OPTION_PMTU_DISCOVERY) { - option = IP_PMTUDISC_DO; - setsockopt(nfd, IPPROTO_IP, IP_MTU_DISCOVER, (void *)&option, sizeof(option)); - } - + option = IP_PMTUDISC_DO; + setsockopt(nfd, IPPROTO_IP, IP_MTU_DISCOVER, (void *)&option, sizeof(option)); #elif defined(IP_DONTFRAGMENT) - - if(mesh->self->options & OPTION_PMTU_DISCOVERY) { - option = 1; - setsockopt(nfd, IPPROTO_IP, IP_DONTFRAGMENT, (void *)&option, sizeof(option)); - } - -#else -#warning No way to disable IPv4 fragmentation + option = 1; + setsockopt(nfd, IPPROTO_IP, IP_DONTFRAGMENT, (void *)&option, sizeof(option)); #endif #if defined(IPV6_MTU_DISCOVER) && defined(IPV6_PMTUDISC_DO) - - if(mesh->self->options & OPTION_PMTU_DISCOVERY) { - option = IPV6_PMTUDISC_DO; - setsockopt(nfd, IPPROTO_IPV6, IPV6_MTU_DISCOVER, (void *)&option, sizeof(option)); - } - + option = IPV6_PMTUDISC_DO; + setsockopt(nfd, IPPROTO_IPV6, IPV6_MTU_DISCOVER, (void *)&option, sizeof(option)); #elif defined(IPV6_DONTFRAG) - - if(mesh->self->options & OPTION_PMTU_DISCOVERY) { - option = 1; - setsockopt(nfd, IPPROTO_IPV6, IPV6_DONTFRAG, (void *)&option, sizeof(option)); - } - -#else -#warning No way to disable IPv6 fragmentation + option = 1; + setsockopt(nfd, IPPROTO_IPV6, IPV6_DONTFRAG, (void *)&option, sizeof(option)); #endif if(bind(nfd, &sa->sa, SALEN(sa->sa))) { @@ -260,20 +238,26 @@ int setup_vpn_in_socket(meshlink_handle_t *mesh, const sockaddr_t *sa) { } /* int setup_vpn_in_socket */ static void retry_outgoing_handler(event_loop_t *loop, void *data) { + assert(data); + meshlink_handle_t *mesh = loop->data; outgoing_t *outgoing = data; setup_outgoing_connection(mesh, outgoing); } void retry_outgoing(meshlink_handle_t *mesh, outgoing_t *outgoing) { - outgoing->timeout += 5; + 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(outgoing->timeout > mesh->maxtimeout) { outgoing->timeout = mesh->maxtimeout; } timeout_add(&mesh->loop, &outgoing->ev, retry_outgoing_handler, outgoing, &(struct timeval) { - outgoing->timeout, rand() % 100000 + outgoing->timeout, prng(mesh, TIMER_FUDGE) }); logger(mesh, MESHLINK_INFO, "Trying to re-establish outgoing connection in %d seconds", outgoing->timeout); @@ -381,6 +365,38 @@ static struct addrinfo *get_known_addresses(node_t *n) { return ai; } +// Build a list of recently seen addresses. +static struct addrinfo *get_recent_addresses(node_t *n) { + struct addrinfo *ai = NULL; + struct addrinfo *aip; + + 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; + } + + aip = nai; + + 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); + } + + return ai; +} + // 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) { @@ -389,62 +405,30 @@ static void free_known_addresses(struct addrinfo *ai) { } } -static bool get_recent(meshlink_handle_t *mesh, outgoing_t *outgoing) { - node_t *n = lookup_node(mesh, outgoing->name); - - if(!n) { +static struct addrinfo *get_canonical_address(node_t *n) { + if(!n->canonical_address) { return false; } - outgoing->ai = get_known_addresses(n); - outgoing->aip = outgoing->ai; - return outgoing->aip; -} - -static bool get_next_ai(meshlink_handle_t *mesh, outgoing_t *outgoing) { - if(!outgoing->ai) { - char *address = NULL; - - if(get_config_string(outgoing->cfg, &address)) { - char *port; - char *space = strchr(address, ' '); - - if(space) { - port = xstrdup(space + 1); - *space = 0; - } else { - if(!get_config_string(lookup_config(outgoing->config_tree, "Port"), &port)) { - logger(mesh, MESHLINK_ERROR, "No Port known for %s", outgoing->name); - return false; - } - } + char *address = xstrdup(n->canonical_address); + char *port = strchr(address, ' '); - outgoing->ai = str2addrinfo(address, port, SOCK_STREAM); - free(port); - free(address); - } - - outgoing->aip = outgoing->ai; - } else { - outgoing->aip = outgoing->aip->ai_next; + if(!port) { + free(address); + return false; } - return outgoing->aip; -} + *port++ = 0; -static bool get_next_cfg(meshlink_handle_t *mesh, outgoing_t *outgoing, char *variable) { - (void)mesh; + struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM); + free(address); - if(!outgoing->cfg) { - outgoing->cfg = lookup_config(outgoing->config_tree, variable); - } else { - outgoing->cfg = lookup_config_next(outgoing->config_tree, outgoing->cfg); - } - - return outgoing->cfg; + return ai; } static bool get_next_outgoing_address(meshlink_handle_t *mesh, outgoing_t *outgoing) { + (void)mesh; + bool start = false; if(outgoing->state == OUTGOING_START) { @@ -453,44 +437,56 @@ static bool get_next_outgoing_address(meshlink_handle_t *mesh, outgoing_t *outgo } if(outgoing->state == OUTGOING_CANONICAL) { - while(outgoing->aip || get_next_cfg(mesh, outgoing, "CanonicalAddress")) { - if(get_next_ai(mesh, outgoing)) { - return true; - } else { - freeaddrinfo(outgoing->ai); - outgoing->ai = NULL; - outgoing->aip = NULL; - } + if(!outgoing->aip) { + outgoing->ai = get_canonical_address(outgoing->node); + outgoing->aip = outgoing->ai; + } else { + outgoing->aip = outgoing->aip->ai_next; + } + + if(outgoing->aip) { + return true; } + freeaddrinfo(outgoing->ai); + outgoing->ai = NULL; + outgoing->aip = NULL; outgoing->state = OUTGOING_RECENT; } if(outgoing->state == OUTGOING_RECENT) { - while(outgoing->aip || get_next_cfg(mesh, outgoing, "Address")) { - if(get_next_ai(mesh, outgoing)) { - return true; - } else { - freeaddrinfo(outgoing->ai); - outgoing->ai = NULL; - outgoing->aip = NULL; - } + if(!outgoing->aip) { + outgoing->ai = get_recent_addresses(outgoing->node); + outgoing->aip = outgoing->ai; + } else { + outgoing->aip = outgoing->aip->ai_next; } + if(outgoing->aip) { + return true; + } + + free_known_addresses(outgoing->ai); + outgoing->ai = NULL; + outgoing->aip = NULL; outgoing->state = OUTGOING_KNOWN; } if(outgoing->state == OUTGOING_KNOWN) { - if(outgoing->aip || get_recent(mesh, outgoing)) { - if(get_next_ai(mesh, outgoing)) { - return true; - } else { - free_known_addresses(outgoing->ai); - outgoing->ai = NULL; - outgoing->aip = NULL; - } + if(!outgoing->aip) { + outgoing->ai = get_known_addresses(outgoing->node); + outgoing->aip = outgoing->ai; + } else { + outgoing->aip = outgoing->aip->ai_next; } + if(outgoing->aip) { + return true; + } + + free_known_addresses(outgoing->ai); + outgoing->ai = NULL; + outgoing->aip = NULL; outgoing->state = OUTGOING_END; } @@ -501,7 +497,7 @@ static bool get_next_outgoing_address(meshlink_handle_t *mesh, outgoing_t *outgo return false; } -bool do_outgoing_connection(meshlink_handle_t *mesh, outgoing_t *outgoing) { +void do_outgoing_connection(meshlink_handle_t *mesh, outgoing_t *outgoing) { struct addrinfo *proxyai = NULL; int result; @@ -509,13 +505,13 @@ 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->name); + 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->name); + logger(mesh, MESHLINK_ERROR, "Could not set up a meta connection to %s", outgoing->node->name); retry_outgoing(mesh, outgoing); } - return false; + return; } connection_t *c = new_connection(); @@ -525,7 +521,7 @@ begin: char *hostname = sockaddr2hostname(&c->address); - logger(mesh, MESHLINK_INFO, "Trying to connect to %s at %s", outgoing->name, hostname); + logger(mesh, MESHLINK_INFO, "Trying to connect to %s at %s", outgoing->node->name, hostname); if(!mesh->proxytype) { c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP); @@ -578,7 +574,7 @@ begin: } if(result == -1 && !sockinprogress(sockerrno)) { - logger(mesh, MESHLINK_ERROR, "Could not connect to %s: %s", outgoing->name, sockstrerror(sockerrno)); + logger(mesh, MESHLINK_ERROR, "Could not connect to %s: %s", outgoing->node->name, sockstrerror(sockerrno)); free_connection(c); goto begin; @@ -587,68 +583,66 @@ begin: /* Now that there is a working socket, fill in the rest and register this connection. */ c->status.connecting = true; - c->name = xstrdup(outgoing->name); - c->outcompression = mesh->self->connection->outcompression; + c->status.initiator = true; + c->name = xstrdup(outgoing->node->name); c->last_ping_time = mesh->loop.now.tv_sec; connection_add(mesh, c); io_add(&mesh->loop, &c->io, handle_meta_io, c, c->socket, IO_READ | IO_WRITE); - - return true; } -void setup_outgoing_connection(meshlink_handle_t *mesh, outgoing_t *outgoing) { - bool blacklisted = false; - timeout_del(&mesh->loop, &outgoing->ev); - - node_t *n = lookup_node(mesh, outgoing->name); - - if(n && n->connection) { - logger(mesh, MESHLINK_INFO, "Already connected to %s", outgoing->name); - - n->connection->outgoing = outgoing; - return; - } - - +void reset_outgoing(outgoing_t *outgoing) { if(outgoing->ai) { - if(outgoing->state == OUTGOING_KNOWN) { + if(outgoing->state == OUTGOING_RECENT || outgoing->state == OUTGOING_KNOWN) { free_known_addresses(outgoing->ai); } else { freeaddrinfo(outgoing->ai); } } - outgoing->cfg = NULL; + outgoing->ai = NULL; + outgoing->aip = NULL; + outgoing->state = OUTGOING_START; +} - exit_configuration(&outgoing->config_tree); // discard old configuration if present - init_configuration(&outgoing->config_tree); - read_host_config(mesh, outgoing->config_tree, outgoing->name); - get_config_bool(lookup_config(outgoing->config_tree, "blacklisted"), &blacklisted); +void setup_outgoing_connection(meshlink_handle_t *mesh, outgoing_t *outgoing) { + timeout_del(&mesh->loop, &outgoing->ev); - outgoing->state = OUTGOING_START; + if(outgoing->node->connection) { + logger(mesh, MESHLINK_INFO, "Already connected to %s", outgoing->node->name); - if(blacklisted) { + outgoing->node->connection->outgoing = outgoing; return; } + reset_outgoing(outgoing); + + if(outgoing->node->status.blacklisted) { + return; + } + + if(mesh->connection_try_cb) { + mesh->connection_try_cb(mesh, (meshlink_node_t *)outgoing->node); + } + do_outgoing_connection(mesh, outgoing); } /// Delayed close of a filedescriptor. -static void tarpit(int fd) { - static int pits[10] = {-1, -1, -1, -1, -1, -1, -1, -1, -1, -1}; - static int next_pit = 0; +static void tarpit(meshlink_handle_t *mesh, int fd) { + if(!fd) { + return; + } - if(pits[next_pit] != -1) { - closesocket(pits[next_pit]); + if(mesh->pits[mesh->next_pit]) { + closesocket(mesh->pits[mesh->next_pit]); } - pits[next_pit++] = fd; + mesh->pits[mesh->next_pit++] = fd; - if(next_pit >= (int)(sizeof pits / sizeof pits[0])) { - next_pit = 0; + if(mesh->next_pit >= (int)(sizeof mesh->pits / sizeof mesh->pits[0])) { + mesh->next_pit = 0; } } @@ -661,10 +655,12 @@ void handle_new_meta_connection(event_loop_t *loop, void *data, int flags) { meshlink_handle_t *mesh = loop->data; listen_socket_t *l = data; connection_t *c; - sockaddr_t sa = {0}; + sockaddr_t sa; int fd; socklen_t len = sizeof(sa); + memset(&sa, 0, sizeof(sa)); + fd = accept(l->tcp.fd, &sa.sa, &len); if(fd < 0) { @@ -681,26 +677,22 @@ void handle_new_meta_connection(event_loop_t *loop, void *data, int flags) { /* Rate limit incoming connections to max_connection_burst/second. */ - static int connection_burst; - static int connection_burst_time; - - if(mesh->loop.now.tv_sec != connection_burst_time) { - connection_burst_time = mesh->loop.now.tv_sec; - connection_burst = 0; + if(mesh->loop.now.tv_sec != mesh->connection_burst_time) { + mesh->connection_burst_time = mesh->loop.now.tv_sec; + mesh->connection_burst = 0; } - if(connection_burst >= max_connection_burst) { - tarpit(fd); + if(mesh->connection_burst >= max_connection_burst) { + tarpit(mesh, fd); return; } - connection_burst++; + mesh->connection_burst++; // Accept the new connection c = new_connection(); c->name = xstrdup(""); - c->outcompression = mesh->self->connection->outcompression; c->address = sa; c->socket = fd; @@ -721,88 +713,28 @@ void handle_new_meta_connection(event_loop_t *loop, void *data, int flags) { } static void free_outgoing(outgoing_t *outgoing) { - meshlink_handle_t *mesh = outgoing->mesh; + meshlink_handle_t *mesh = outgoing->node->mesh; timeout_del(&mesh->loop, &outgoing->ev); if(outgoing->ai) { - if(outgoing->state == OUTGOING_KNOWN) { + if(outgoing->state == OUTGOING_RECENT || outgoing->state == OUTGOING_KNOWN) { free_known_addresses(outgoing->ai); } else { freeaddrinfo(outgoing->ai); } } - if(outgoing->config_tree) { - exit_configuration(&outgoing->config_tree); - } - - if(outgoing->name) { - free(outgoing->name); - } - free(outgoing); } -void try_outgoing_connections(meshlink_handle_t *mesh) { - /* If there is no outgoing list yet, create one. Otherwise, mark all outgoings as deleted. */ - - if(!mesh->outgoings) { - mesh->outgoings = list_alloc((list_action_t)free_outgoing); - } else { - for list_each(outgoing_t, outgoing, mesh->outgoings) { - outgoing->timeout = -1; - } - } - - /* Make sure there is one outgoing_t in the list for each ConnectTo. */ - - // TODO: Drop support for ConnectTo since AutoConnect is now always on? - for(config_t *cfg = lookup_config(mesh->config, "ConnectTo"); cfg; cfg = lookup_config_next(mesh->config, cfg)) { - char *name; - get_config_string(cfg, &name); - - if(!check_id(name)) { - logger(mesh, MESHLINK_ERROR, - "Invalid name for outgoing connection in line %d", - cfg->line); - free(name); - continue; - } - - bool found = false; - - for list_each(outgoing_t, outgoing, mesh->outgoings) { - if(!strcmp(outgoing->name, name)) { - found = true; - outgoing->timeout = 0; - break; - } - } - - if(!found) { - outgoing_t *outgoing = xzalloc(sizeof(*outgoing)); - outgoing->mesh = mesh; - outgoing->name = name; - list_insert_tail(mesh->outgoings, outgoing); - setup_outgoing_connection(mesh, outgoing); - } - } - - /* Terminate any connections whose outgoing_t is to be deleted. */ +void init_outgoings(meshlink_handle_t *mesh) { + mesh->outgoings = list_alloc((list_action_t)free_outgoing); +} - for list_each(connection_t, c, mesh->connections) { - if(c->outgoing && c->outgoing->timeout == -1) { - c->outgoing = NULL; - logger(mesh, MESHLINK_INFO, "No more outgoing connection to %s", c->name); - terminate_connection(mesh, c, c->status.active); - } +void exit_outgoings(meshlink_handle_t *mesh) { + if(mesh->outgoings) { + list_delete_list(mesh->outgoings); + mesh->outgoings = NULL; } - - /* Delete outgoing_ts for which there is no ConnectTo. */ - - for list_each(outgoing_t, outgoing, mesh->outgoings) - if(outgoing->timeout == -1) { - list_delete_node(mesh->outgoings, node); - } }