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);
83 for(enode = n->edge_tree->head; enode; enode = enext) {
87 send_del_edge(everyone, e);
93 /* Check if anyone else claims to have an edge to an unreachable node. If not, delete node. */
95 for(nnode = node_tree->head; nnode; nnode = nnext) {
99 if(!n->status.reachable) {
100 for(enode = edge_weight_tree->head; enode; enode = enext) {
108 if(!enode && (!strictsubnets || !n->subnet_tree->head))
109 /* in strictsubnets mode do not delete nodes with subnets */
116 put all file descriptors in an fd_set array
117 While we're at it, purge stuff that needs to be removed.
119 static int build_fdset(fd_set *readset, fd_set *writeset) {
120 avl_node_t *node, *next;
127 for(node = connection_tree->head; node; node = next) {
131 if(c->status.remove) {
133 if(!connection_tree->head)
136 FD_SET(c->socket, readset);
137 if(c->outbuflen > 0 || c->status.connecting)
138 FD_SET(c->socket, writeset);
144 for(i = 0; i < listen_sockets; i++) {
145 FD_SET(listen_socket[i].tcp, readset);
146 if(listen_socket[i].tcp > max)
147 max = listen_socket[i].tcp;
148 FD_SET(listen_socket[i].udp, readset);
149 if(listen_socket[i].udp > max)
150 max = listen_socket[i].udp;
154 FD_SET(device_fd, readset);
162 Terminate a connection:
164 - Remove associated edge and tell other connections about it if report = true
165 - Check if we need to retry making an outgoing connection
166 - Deactivate the host
168 void terminate_connection(connection_t *c, bool report) {
172 ifdebug(CONNECTIONS) logger(LOG_NOTICE, "Closing connection with %s (%s)",
173 c->name, c->hostname);
175 c->status.remove = true;
176 c->status.active = false;
179 c->node->connection = NULL;
182 closesocket(c->socket);
186 logger(LOG_ERR, "Connection to %s (%s) has an edge but node is NULL!", c->name, c->hostname);
187 // And that should never happen.
191 if(report && !tunnelserver)
192 send_del_edge(everyone, c->edge);
196 /* Run MST and SSSP algorithms */
200 /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
202 if(report && !c->node->status.reachable) {
204 e = lookup_edge(c->node, myself);
207 send_del_edge(everyone, e);
213 free_connection_partially(c);
215 /* Check if this was our outgoing connection */
218 c->status.remove = false;
219 do_outgoing_connection(c);
223 /* Clean up dead proxy processes */
225 while(waitpid(-1, NULL, WNOHANG) > 0);
230 Check if the other end is active.
231 If we have sent packets, but didn't receive any,
232 then possibly the other end is dead. We send a
233 PING request over the meta connection. If the other
234 end does not reply in time, we consider them dead
235 and close the connection.
237 static void check_dead_connections(void) {
238 avl_node_t *node, *next;
241 for(node = connection_tree->head; node; node = next) {
245 if(c->last_ping_time + pingtimeout <= now) {
246 if(c->status.active) {
247 if(c->status.pinged) {
248 ifdebug(CONNECTIONS) logger(LOG_INFO, "%s (%s) didn't respond to PING in %ld seconds",
249 c->name, c->hostname, (long)now - c->last_ping_time);
250 c->status.timeout = true;
251 terminate_connection(c, true);
252 } else if(c->last_ping_time + pinginterval <= now) {
256 if(c->status.remove) {
257 logger(LOG_WARNING, "Old connection_t for %s (%s) status %04x still lingering, deleting...",
258 c->name, c->hostname, bitfield_to_int(&c->status, sizeof c->status));
262 ifdebug(CONNECTIONS) logger(LOG_WARNING, "Timeout from %s (%s) during authentication",
263 c->name, c->hostname);
264 if(c->status.connecting) {
265 c->status.connecting = false;
266 closesocket(c->socket);
267 do_outgoing_connection(c);
269 terminate_connection(c, false);
274 if(c->outbuflen > 0 && c->last_flushed_time + pingtimeout <= now) {
275 if(c->status.active) {
276 ifdebug(CONNECTIONS) logger(LOG_INFO,
277 "%s (%s) could not flush for %ld seconds (%d bytes remaining)",
278 c->name, c->hostname, (long)now - c->last_flushed_time, c->outbuflen);
279 c->status.timeout = true;
280 terminate_connection(c, true);
287 check all connections to see if anything
288 happened on their sockets
290 static void check_network_activity(fd_set * readset, fd_set * writeset) {
294 socklen_t len = sizeof(result);
296 static int errors = 0;
298 /* check input from kernel */
299 if(device_fd >= 0 && FD_ISSET(device_fd, readset)) {
300 if(devops.read(&packet)) {
304 route(myself, &packet);
307 usleep(errors * 50000);
310 logger(LOG_ERR, "Too many errors from %s, exiting!", device);
316 /* check meta connections */
317 for(node = connection_tree->head; node; node = node->next) {
323 if(FD_ISSET(c->socket, writeset)) {
324 if(c->status.connecting) {
325 c->status.connecting = false;
326 getsockopt(c->socket, SOL_SOCKET, SO_ERROR, (void *)&result, &len);
329 finish_connecting(c);
331 ifdebug(CONNECTIONS) logger(LOG_DEBUG,
332 "Error while connecting to %s (%s): %s",
333 c->name, c->hostname, sockstrerror(result));
334 closesocket(c->socket);
335 do_outgoing_connection(c);
341 terminate_connection(c, c->status.active);
346 if(FD_ISSET(c->socket, readset)) {
347 if(!receive_meta(c)) {
348 terminate_connection(c, c->status.active);
354 for(i = 0; i < listen_sockets; i++) {
355 if(FD_ISSET(listen_socket[i].udp, readset))
356 handle_incoming_vpn_data(i);
358 if(FD_ISSET(listen_socket[i].tcp, readset))
359 handle_new_meta_connection(listen_socket[i].tcp);
364 this is where it all happens...
366 int main_loop(void) {
367 fd_set readset, writeset;
370 sigset_t omask, block_mask;
376 time_t last_ping_check, last_config_check, last_graph_dump;
379 last_ping_check = now;
380 last_config_check = now;
381 last_graph_dump = now;
386 if(lookup_config(config_tree, "GraphDumpFile"))
388 /* Block SIGHUP & SIGALRM */
389 sigemptyset(&block_mask);
390 sigaddset(&block_mask, SIGHUP);
391 sigaddset(&block_mask, SIGALRM);
392 sigprocmask(SIG_BLOCK, &block_mask, &omask);
399 next_event = last_ping_check + pingtimeout;
400 if(graph_dump && next_event > last_graph_dump + 60)
401 next_event = last_graph_dump + 60;
403 if((event = peek_next_event()) && next_event > event->time)
404 next_event = event->time;
406 if(next_event <= now)
409 tv.tv_sec = next_event - now;
416 maxfd = build_fdset(&readset, &writeset);
419 LeaveCriticalSection(&mutex);
422 r = pselect(maxfd + 1, &readset, &writeset, NULL, &tv, &omask);
424 r = select(maxfd + 1, &readset, &writeset, NULL, &tv);
428 EnterCriticalSection(&mutex);
432 if(!sockwouldblock(sockerrno)) {
433 logger(LOG_ERR, "Error while waiting for input: %s", sockstrerror(sockerrno));
440 check_network_activity(&readset, &writeset);
447 /* Let's check if everybody is still alive */
449 if(last_ping_check + pingtimeout <= now) {
450 check_dead_connections();
451 last_ping_check = now;
453 if(routing_mode == RMODE_SWITCH)
458 /* Should we regenerate our key? */
460 if(keyexpires <= now) {
464 ifdebug(STATUS) logger(LOG_INFO, "Expiring symmetric keys");
466 for(node = node_tree->head; node; node = node->next) {
475 keyexpires = now + keylifetime;
478 /* Detect ADD_EDGE/DEL_EDGE storms that are caused when
479 * two tinc daemons with the same name are on the VPN.
480 * If so, sleep a while. If this happens multiple times
481 * in a row, sleep longer. */
483 if(contradicting_del_edge > 100 && contradicting_add_edge > 100) {
484 logger(LOG_WARNING, "Possible node with same Name as us! Sleeping %d seconds.", sleeptime);
485 usleep(sleeptime * 1000000LL);
495 contradicting_add_edge = 0;
496 contradicting_del_edge = 0;
501 logger(LOG_INFO, "Flushing event queue");
503 for(node = connection_tree->head; node; node = node->next) {
504 connection_t *c = node->data;
511 while((event = get_expired_event())) {
512 event->handler(event->data);
518 avl_node_t *node, *next;
526 /* Reread our own configuration file */
528 exit_configuration(&config_tree);
529 init_configuration(&config_tree);
531 if(!read_server_config()) {
532 logger(LOG_ERR, "Unable to reread configuration file, exitting.");
536 /* Cancel non-active outgoing connections */
538 for(node = connection_tree->head; node; node = next) {
544 if(c->status.connecting) {
545 terminate_connection(c, false);
550 /* Wipe list of outgoing connections */
552 for(list_node_t *node = outgoing_list->head; node; node = node->next) {
553 outgoing_t *outgoing = node->data;
556 event_del(outgoing->event);
559 list_delete_list(outgoing_list);
561 /* Close connections to hosts that have a changed or deleted host config file */
563 for(node = connection_tree->head; node; node = node->next) {
566 xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
567 if(stat(fname, &s) || s.st_mtime > last_config_check)
568 terminate_connection(c, c->status.active);
572 last_config_check = now;
574 /* If StrictSubnet is set, expire deleted Subnets and read new ones in */
579 for(node = subnet_tree->head; node; node = node->next) {
586 for(node = subnet_tree->head; node; node = next) {
589 if(subnet->expires == 1) {
590 send_del_subnet(everyone, subnet);
591 if(subnet->owner->status.reachable)
592 subnet_update(subnet->owner, subnet, false);
593 subnet_del(subnet->owner, subnet);
594 } else if(subnet->expires == -1) {
597 send_add_subnet(everyone, subnet);
598 if(subnet->owner->status.reachable)
599 subnet_update(subnet->owner, subnet, true);
604 /* Try to make outgoing connections */
606 try_outgoing_connections();
609 /* Dump graph if wanted every 60 seconds*/
611 if(last_graph_dump + 60 <= now) {
613 last_graph_dump = now;
618 /* Restore SIGHUP & SIGALARM mask */
619 sigprocmask(SIG_SETMASK, &omask, NULL);