2 net.c -- most of the network code
3 Copyright (C) 1998-2005 Ivo Timmermans,
4 2000-2015 Guus Sliepen <guus@tinc-vpn.org>
5 2006 Scott Lamb <slamb@slamb.org>
6 2011 Loïc Grenié <loic.grenie@gmail.com>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License along
19 with this program; if not, write to the Free Software Foundation, Inc.,
20 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include <openssl/rand.h>
30 #include "connection.h"
44 bool do_purge = false;
45 volatile bool running = false;
47 bool graph_dump = false;
51 int contradicting_add_edge = 0;
52 int contradicting_del_edge = 0;
53 static int sleeptime = 10;
55 /* Purge edges and subnets of unreachable nodes. Use carefully. */
57 static void purge(void) {
58 avl_node_t *nnode, *nnext, *enode, *enext, *snode, *snext;
63 ifdebug(PROTOCOL) logger(LOG_DEBUG, "Purging unreachable nodes");
65 /* Remove all edges and subnets owned by unreachable nodes. */
67 for(nnode = node_tree->head; nnode; nnode = nnext) {
71 if(!n->status.reachable) {
72 ifdebug(SCARY_THINGS) logger(LOG_DEBUG, "Purging node %s (%s)", n->name,
75 for(snode = n->subnet_tree->head; snode; snode = snext) {
78 send_del_subnet(everyone, s);
85 for(enode = n->edge_tree->head; enode; enode = enext) {
90 send_del_edge(everyone, e);
98 /* Check if anyone else claims to have an edge to an unreachable node. If not, delete node. */
100 for(nnode = node_tree->head; nnode; nnode = nnext) {
104 if(!n->status.reachable) {
105 for(enode = edge_weight_tree->head; enode; enode = enext) {
114 if(!enode && (!strictsubnets || !n->subnet_tree->head))
115 /* in strictsubnets mode do not delete nodes with subnets */
124 put all file descriptors in an fd_set array
125 While we're at it, purge stuff that needs to be removed.
127 static int build_fdset(fd_set *readset, fd_set *writeset) {
128 avl_node_t *node, *next;
135 for(node = connection_tree->head; node; node = next) {
139 if(c->status.remove) {
142 if(!connection_tree->head) {
146 FD_SET(c->socket, readset);
148 if(c->outbuflen > 0 || c->status.connecting) {
149 FD_SET(c->socket, writeset);
152 if(c->socket > max) {
158 for(i = 0; i < listen_sockets; i++) {
159 FD_SET(listen_socket[i].tcp, readset);
161 if(listen_socket[i].tcp > max) {
162 max = listen_socket[i].tcp;
165 FD_SET(listen_socket[i].udp, readset);
167 if(listen_socket[i].udp > max) {
168 max = listen_socket[i].udp;
173 FD_SET(device_fd, readset);
176 if(device_fd > max) {
183 /* Put a misbehaving connection in the tarpit */
184 void tarpit(int fd) {
185 static int pits[10] = {-1, -1, -1, -1, -1, -1, -1, -1, -1, -1};
186 static int next_pit = 0;
188 if(pits[next_pit] != -1) {
189 closesocket(pits[next_pit]);
192 pits[next_pit++] = fd;
194 if(next_pit >= (int)(sizeof pits / sizeof pits[0])) {
200 Terminate a connection:
202 - Remove associated edge and tell other connections about it if report = true
203 - Check if we need to retry making an outgoing connection
204 - Deactivate the host
206 void terminate_connection(connection_t *c, bool report) {
207 if(c->status.remove) {
211 ifdebug(CONNECTIONS) logger(LOG_NOTICE, "Closing connection with %s (%s)",
212 c->name, c->hostname);
214 c->status.remove = true;
215 c->status.active = false;
218 c->node->connection = NULL;
222 if(c->status.tarpit) {
225 closesocket(c->socket);
231 logger(LOG_ERR, "Connection to %s (%s) has an edge but node is NULL!", c->name, c->hostname);
232 // And that should never happen.
236 if(report && !tunnelserver) {
237 send_del_edge(everyone, c->edge);
243 /* Run MST and SSSP algorithms */
247 /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
249 if(report && !c->node->status.reachable) {
251 e = lookup_edge(c->node, myself);
255 send_del_edge(everyone, e);
263 free_connection_partially(c);
265 /* Check if this was our outgoing connection */
268 c->status.remove = false;
269 do_outgoing_connection(c);
273 /* Clean up dead proxy processes */
275 while(waitpid(-1, NULL, WNOHANG) > 0);
281 Check if the other end is active.
282 If we have sent packets, but didn't receive any,
283 then possibly the other end is dead. We send a
284 PING request over the meta connection. If the other
285 end does not reply in time, we consider them dead
286 and close the connection.
288 static void check_dead_connections(void) {
289 avl_node_t *node, *next;
292 for(node = connection_tree->head; node; node = next) {
296 if(c->last_ping_time + pingtimeout <= now) {
297 if(c->status.active) {
298 if(c->status.pinged) {
299 ifdebug(CONNECTIONS) logger(LOG_INFO, "%s (%s) didn't respond to PING in %ld seconds",
300 c->name, c->hostname, (long)(now - c->last_ping_time));
301 c->status.timeout = true;
302 terminate_connection(c, true);
303 } else if(c->last_ping_time + pinginterval <= now) {
307 if(c->status.remove) {
308 logger(LOG_WARNING, "Old connection_t for %s (%s) status %04x still lingering, deleting...",
309 c->name, c->hostname, bitfield_to_int(&c->status, sizeof(c->status)));
314 ifdebug(CONNECTIONS) logger(LOG_WARNING, "Timeout from %s (%s) during authentication",
315 c->name, c->hostname);
317 if(c->status.connecting) {
318 c->status.connecting = false;
319 closesocket(c->socket);
320 do_outgoing_connection(c);
322 c->status.tarpit = true;
323 terminate_connection(c, false);
328 if(c->outbuflen > 0 && c->last_flushed_time + pingtimeout <= now) {
329 if(c->status.active) {
330 ifdebug(CONNECTIONS) logger(LOG_INFO,
331 "%s (%s) could not flush for %ld seconds (%d bytes remaining)",
332 c->name, c->hostname, (long)(now - c->last_flushed_time), c->outbuflen);
333 c->status.timeout = true;
334 terminate_connection(c, true);
341 check all connections to see if anything
342 happened on their sockets
344 static void check_network_activity(fd_set *readset, fd_set *writeset) {
348 socklen_t len = sizeof(result);
350 static int errors = 0;
352 /* check input from kernel */
353 if(device_fd >= 0 && FD_ISSET(device_fd, readset)) {
354 if(devops.read(&packet)) {
358 route(myself, &packet);
361 usleep(errors * 50000);
365 logger(LOG_ERR, "Too many errors from %s, exiting!", device);
371 /* check meta connections */
372 for(node = connection_tree->head; node; node = node->next) {
375 if(c->status.remove) {
379 if(FD_ISSET(c->socket, writeset)) {
380 if(c->status.connecting) {
381 c->status.connecting = false;
382 getsockopt(c->socket, SOL_SOCKET, SO_ERROR, (void *)&result, &len);
385 finish_connecting(c);
387 ifdebug(CONNECTIONS) logger(LOG_DEBUG,
388 "Error while connecting to %s (%s): %s",
389 c->name, c->hostname, sockstrerror(result));
390 closesocket(c->socket);
391 do_outgoing_connection(c);
397 terminate_connection(c, c->status.active);
402 if(FD_ISSET(c->socket, readset)) {
403 if(!receive_meta(c)) {
404 c->status.tarpit = true;
405 terminate_connection(c, c->status.active);
411 for(i = 0; i < listen_sockets; i++) {
412 if(FD_ISSET(listen_socket[i].udp, readset)) {
413 handle_incoming_vpn_data(i);
416 if(FD_ISSET(listen_socket[i].tcp, readset)) {
417 handle_new_meta_connection(listen_socket[i].tcp);
423 this is where it all happens...
425 int main_loop(void) {
426 fd_set readset, writeset;
429 sigset_t omask, block_mask;
435 time_t last_ping_check, last_config_check, last_graph_dump;
438 last_ping_check = now;
439 last_config_check = now;
440 last_graph_dump = now;
446 if(lookup_config(config_tree, "GraphDumpFile")) {
450 /* Block SIGHUP & SIGALRM */
451 sigemptyset(&block_mask);
452 sigaddset(&block_mask, SIGHUP);
453 sigaddset(&block_mask, SIGALRM);
454 sigprocmask(SIG_BLOCK, &block_mask, &omask);
461 next_event = last_ping_check + pingtimeout;
463 if(graph_dump && next_event > last_graph_dump + 60) {
464 next_event = last_graph_dump + 60;
467 if((event = peek_next_event()) && next_event > event->time) {
468 next_event = event->time;
471 if(next_event <= now) {
474 tv.tv_sec = next_event - now;
483 maxfd = build_fdset(&readset, &writeset);
486 LeaveCriticalSection(&mutex);
489 r = pselect(maxfd + 1, &readset, &writeset, NULL, &tv, &omask);
491 r = select(maxfd + 1, &readset, &writeset, NULL, &tv);
495 EnterCriticalSection(&mutex);
499 if(!sockwouldblock(sockerrno)) {
500 logger(LOG_ERR, "Error while waiting for input: %s", sockstrerror(sockerrno));
507 check_network_activity(&readset, &writeset);
515 /* Let's check if everybody is still alive */
517 if(last_ping_check + pingtimeout <= now) {
518 check_dead_connections();
519 last_ping_check = now;
521 if(routing_mode == RMODE_SWITCH) {
527 /* Should we regenerate our key? */
529 if(keyexpires <= now) {
533 ifdebug(STATUS) logger(LOG_INFO, "Expiring symmetric keys");
535 for(node = node_tree->head; node; node = node->next) {
545 keyexpires = now + keylifetime;
548 /* Detect ADD_EDGE/DEL_EDGE storms that are caused when
549 * two tinc daemons with the same name are on the VPN.
550 * If so, sleep a while. If this happens multiple times
551 * in a row, sleep longer. */
553 if(contradicting_del_edge > 100 && contradicting_add_edge > 100) {
554 logger(LOG_WARNING, "Possible node with same Name as us! Sleeping %d seconds.", sleeptime);
555 usleep(sleeptime * 1000000LL);
569 contradicting_add_edge = 0;
570 contradicting_del_edge = 0;
575 logger(LOG_INFO, "Flushing event queue");
578 for(node = connection_tree->head; node; node = node->next) {
579 connection_t *c = node->data;
581 if(c->status.active) {
589 while((event = get_expired_event())) {
590 event->handler(event->data);
596 avl_node_t *node, *next;
604 /* Reread our own configuration file */
606 exit_configuration(&config_tree);
607 init_configuration(&config_tree);
609 if(!read_server_config()) {
610 logger(LOG_ERR, "Unable to reread configuration file, exitting.");
614 /* Cancel non-active outgoing connections */
616 for(node = connection_tree->head; node; node = next) {
622 if(c->status.connecting) {
623 terminate_connection(c, false);
628 /* Wipe list of outgoing connections */
630 for(list_node_t *node = outgoing_list->head; node; node = node->next) {
631 outgoing_t *outgoing = node->data;
633 if(outgoing->event) {
634 event_del(outgoing->event);
638 list_delete_list(outgoing_list);
640 /* Close connections to hosts that have a changed or deleted host config file */
642 for(node = connection_tree->head; node; node = node->next) {
645 xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
647 if(stat(fname, &s) || s.st_mtime > last_config_check) {
648 terminate_connection(c, c->status.active);
654 last_config_check = now;
656 /* If StrictSubnet is set, expire deleted Subnets and read new ones in */
661 for(node = subnet_tree->head; node; node = node->next) {
668 for(node = subnet_tree->head; node; node = next) {
672 if(subnet->expires == 1) {
673 send_del_subnet(everyone, subnet);
675 if(subnet->owner->status.reachable) {
676 subnet_update(subnet->owner, subnet, false);
679 subnet_del(subnet->owner, subnet);
680 } else if(subnet->expires == -1) {
683 send_add_subnet(everyone, subnet);
685 if(subnet->owner->status.reachable) {
686 subnet_update(subnet->owner, subnet, true);
692 /* Try to make outgoing connections */
694 try_outgoing_connections();
697 /* Dump graph if wanted every 60 seconds*/
699 if(last_graph_dump + 60 <= now) {
701 last_graph_dump = now;
706 /* Restore SIGHUP & SIGALARM mask */
707 sigprocmask(SIG_SETMASK, &omask, NULL);