Fix building documentation when using OpenBSD's make.
[tinc] / src / net.c
1 /*
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>
7
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.
12
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.
17
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.
21 */
22
23 #include "system.h"
24
25 #include <openssl/rand.h>
26
27 #include "utils.h"
28 #include "avl_tree.h"
29 #include "conf.h"
30 #include "connection.h"
31 #include "device.h"
32 #include "event.h"
33 #include "graph.h"
34 #include "logger.h"
35 #include "meta.h"
36 #include "net.h"
37 #include "netutl.h"
38 #include "process.h"
39 #include "protocol.h"
40 #include "route.h"
41 #include "subnet.h"
42 #include "xalloc.h"
43
44 bool do_purge = false;
45 volatile bool running = false;
46 #ifdef HAVE_PSELECT
47 bool graph_dump = false;
48 #endif
49
50 time_t now = 0;
51 int contradicting_add_edge = 0;
52 int contradicting_del_edge = 0;
53 static int sleeptime = 10;
54
55 /* Purge edges and subnets of unreachable nodes. Use carefully. */
56
57 static void purge(void) {
58         avl_node_t *nnode, *nnext, *enode, *enext, *snode, *snext;
59         node_t *n;
60         edge_t *e;
61         subnet_t *s;
62
63         ifdebug(PROTOCOL) logger(LOG_DEBUG, "Purging unreachable nodes");
64
65         /* Remove all edges and subnets owned by unreachable nodes. */
66
67         for(nnode = node_tree->head; nnode; nnode = nnext) {
68                 nnext = nnode->next;
69                 n = nnode->data;
70
71                 if(!n->status.reachable) {
72                         ifdebug(SCARY_THINGS) logger(LOG_DEBUG, "Purging node %s (%s)", n->name,
73                                                      n->hostname);
74
75                         for(snode = n->subnet_tree->head; snode; snode = snext) {
76                                 snext = snode->next;
77                                 s = snode->data;
78                                 send_del_subnet(everyone, s);
79
80                                 if(!strictsubnets) {
81                                         subnet_del(n, s);
82                                 }
83                         }
84
85                         for(enode = n->edge_tree->head; enode; enode = enext) {
86                                 enext = enode->next;
87                                 e = enode->data;
88
89                                 if(!tunnelserver) {
90                                         send_del_edge(everyone, e);
91                                 }
92
93                                 edge_del(e);
94                         }
95                 }
96         }
97
98         /* Check if anyone else claims to have an edge to an unreachable node. If not, delete node. */
99
100         for(nnode = node_tree->head; nnode; nnode = nnext) {
101                 nnext = nnode->next;
102                 n = nnode->data;
103
104                 if(!n->status.reachable) {
105                         for(enode = edge_weight_tree->head; enode; enode = enext) {
106                                 enext = enode->next;
107                                 e = enode->data;
108
109                                 if(e->to == n) {
110                                         break;
111                                 }
112                         }
113
114                         if(!enode && (!strictsubnets || !n->subnet_tree->head))
115                                 /* in strictsubnets mode do not delete nodes with subnets */
116                         {
117                                 node_del(n);
118                         }
119                 }
120         }
121 }
122
123 /*
124   put all file descriptors in an fd_set array
125   While we're at it, purge stuff that needs to be removed.
126 */
127 static int build_fdset(fd_set *readset, fd_set *writeset) {
128         avl_node_t *node, *next;
129         connection_t *c;
130         int i, max = 0;
131
132         FD_ZERO(readset);
133         FD_ZERO(writeset);
134
135         for(node = connection_tree->head; node; node = next) {
136                 next = node->next;
137                 c = node->data;
138
139                 if(c->status.remove) {
140                         connection_del(c);
141
142                         if(!connection_tree->head) {
143                                 purge();
144                         }
145                 } else {
146                         FD_SET(c->socket, readset);
147
148                         if(c->outbuflen > 0 || c->status.connecting) {
149                                 FD_SET(c->socket, writeset);
150                         }
151
152                         if(c->socket > max) {
153                                 max = c->socket;
154                         }
155                 }
156         }
157
158         for(i = 0; i < listen_sockets; i++) {
159                 FD_SET(listen_socket[i].tcp, readset);
160
161                 if(listen_socket[i].tcp > max) {
162                         max = listen_socket[i].tcp;
163                 }
164
165                 FD_SET(listen_socket[i].udp, readset);
166
167                 if(listen_socket[i].udp > max) {
168                         max = listen_socket[i].udp;
169                 }
170         }
171
172         if(device_fd >= 0) {
173                 FD_SET(device_fd, readset);
174         }
175
176         if(device_fd > max) {
177                 max = device_fd;
178         }
179
180         return max;
181 }
182
183 /*
184   Terminate a connection:
185   - Close the socket
186   - Remove associated edge and tell other connections about it if report = true
187   - Check if we need to retry making an outgoing connection
188   - Deactivate the host
189 */
190 void terminate_connection(connection_t *c, bool report) {
191         if(c->status.remove) {
192                 return;
193         }
194
195         ifdebug(CONNECTIONS) logger(LOG_NOTICE, "Closing connection with %s (%s)",
196                                     c->name, c->hostname);
197
198         c->status.remove = true;
199         c->status.active = false;
200
201         if(c->node) {
202                 c->node->connection = NULL;
203         }
204
205         if(c->socket) {
206                 closesocket(c->socket);
207         }
208
209         if(c->edge) {
210                 if(!c->node) {
211                         logger(LOG_ERR, "Connection to %s (%s) has an edge but node is NULL!", c->name, c->hostname);
212                         // And that should never happen.
213                         abort();
214                 }
215
216                 if(report && !tunnelserver) {
217                         send_del_edge(everyone, c->edge);
218                 }
219
220                 edge_del(c->edge);
221
222                 /* Run MST and SSSP algorithms */
223
224                 graph();
225
226                 /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
227
228                 if(report && !c->node->status.reachable) {
229                         edge_t *e;
230                         e = lookup_edge(c->node, myself);
231
232                         if(e) {
233                                 if(!tunnelserver) {
234                                         send_del_edge(everyone, e);
235                                 }
236
237                                 edge_del(e);
238                         }
239                 }
240         }
241
242         free_connection_partially(c);
243
244         /* Check if this was our outgoing connection */
245
246         if(c->outgoing) {
247                 c->status.remove = false;
248                 do_outgoing_connection(c);
249         }
250
251 #ifndef HAVE_MINGW
252         /* Clean up dead proxy processes */
253
254         while(waitpid(-1, NULL, WNOHANG) > 0);
255
256 #endif
257 }
258
259 /*
260   Check if the other end is active.
261   If we have sent packets, but didn't receive any,
262   then possibly the other end is dead. We send a
263   PING request over the meta connection. If the other
264   end does not reply in time, we consider them dead
265   and close the connection.
266 */
267 static void check_dead_connections(void) {
268         avl_node_t *node, *next;
269         connection_t *c;
270
271         for(node = connection_tree->head; node; node = next) {
272                 next = node->next;
273                 c = node->data;
274
275                 if(c->last_ping_time + pingtimeout <= now) {
276                         if(c->status.active) {
277                                 if(c->status.pinged) {
278                                         ifdebug(CONNECTIONS) logger(LOG_INFO, "%s (%s) didn't respond to PING in %ld seconds",
279                                                                     c->name, c->hostname, (long)(now - c->last_ping_time));
280                                         c->status.timeout = true;
281                                         terminate_connection(c, true);
282                                 } else if(c->last_ping_time + pinginterval <= now) {
283                                         send_ping(c);
284                                 }
285                         } else {
286                                 if(c->status.remove) {
287                                         logger(LOG_WARNING, "Old connection_t for %s (%s) status %04x still lingering, deleting...",
288                                                c->name, c->hostname, bitfield_to_int(&c->status, sizeof(c->status)));
289                                         connection_del(c);
290                                         continue;
291                                 }
292
293                                 ifdebug(CONNECTIONS) logger(LOG_WARNING, "Timeout from %s (%s) during authentication",
294                                                             c->name, c->hostname);
295
296                                 if(c->status.connecting) {
297                                         c->status.connecting = false;
298                                         closesocket(c->socket);
299                                         do_outgoing_connection(c);
300                                 } else {
301                                         terminate_connection(c, false);
302                                 }
303                         }
304                 }
305
306                 if(c->outbuflen > 0 && c->last_flushed_time + pingtimeout <= now) {
307                         if(c->status.active) {
308                                 ifdebug(CONNECTIONS) logger(LOG_INFO,
309                                                             "%s (%s) could not flush for %ld seconds (%d bytes remaining)",
310                                                             c->name, c->hostname, (long)(now - c->last_flushed_time), c->outbuflen);
311                                 c->status.timeout = true;
312                                 terminate_connection(c, true);
313                         }
314                 }
315         }
316 }
317
318 /*
319   check all connections to see if anything
320   happened on their sockets
321 */
322 static void check_network_activity(fd_set *readset, fd_set *writeset) {
323         connection_t *c;
324         avl_node_t *node;
325         int result, i;
326         socklen_t len = sizeof(result);
327         vpn_packet_t packet;
328         static int errors = 0;
329
330         /* check input from kernel */
331         if(device_fd >= 0 && FD_ISSET(device_fd, readset)) {
332                 if(devops.read(&packet)) {
333                         if(packet.len) {
334                                 errors = 0;
335                                 packet.priority = 0;
336                                 route(myself, &packet);
337                         }
338                 } else {
339                         usleep(errors * 50000);
340                         errors++;
341
342                         if(errors > 10) {
343                                 logger(LOG_ERR, "Too many errors from %s, exiting!", device);
344                                 running = false;
345                         }
346                 }
347         }
348
349         /* check meta connections */
350         for(node = connection_tree->head; node; node = node->next) {
351                 c = node->data;
352
353                 if(c->status.remove) {
354                         continue;
355                 }
356
357                 if(FD_ISSET(c->socket, writeset)) {
358                         if(c->status.connecting) {
359                                 c->status.connecting = false;
360                                 getsockopt(c->socket, SOL_SOCKET, SO_ERROR, (void *)&result, &len);
361
362                                 if(!result) {
363                                         finish_connecting(c);
364                                 } else {
365                                         ifdebug(CONNECTIONS) logger(LOG_DEBUG,
366                                                                     "Error while connecting to %s (%s): %s",
367                                                                     c->name, c->hostname, sockstrerror(result));
368                                         closesocket(c->socket);
369                                         do_outgoing_connection(c);
370                                         continue;
371                                 }
372                         }
373
374                         if(!flush_meta(c)) {
375                                 terminate_connection(c, c->status.active);
376                                 continue;
377                         }
378                 }
379
380                 if(FD_ISSET(c->socket, readset)) {
381                         if(!receive_meta(c)) {
382                                 terminate_connection(c, c->status.active);
383                                 continue;
384                         }
385                 }
386         }
387
388         for(i = 0; i < listen_sockets; i++) {
389                 if(FD_ISSET(listen_socket[i].udp, readset)) {
390                         handle_incoming_vpn_data(i);
391                 }
392
393                 if(FD_ISSET(listen_socket[i].tcp, readset)) {
394                         handle_new_meta_connection(listen_socket[i].tcp);
395                 }
396         }
397 }
398
399 /*
400   this is where it all happens...
401 */
402 int main_loop(void) {
403         fd_set readset, writeset;
404 #ifdef HAVE_PSELECT
405         struct timespec tv;
406         sigset_t omask, block_mask;
407         time_t next_event;
408 #else
409         struct timeval tv;
410 #endif
411         int r, maxfd;
412         time_t last_ping_check, last_config_check, last_graph_dump;
413         event_t *event;
414
415         last_ping_check = now;
416         last_config_check = now;
417         last_graph_dump = now;
418
419         srand(now);
420
421 #ifdef HAVE_PSELECT
422
423         if(lookup_config(config_tree, "GraphDumpFile")) {
424                 graph_dump = true;
425         }
426
427         /* Block SIGHUP & SIGALRM */
428         sigemptyset(&block_mask);
429         sigaddset(&block_mask, SIGHUP);
430         sigaddset(&block_mask, SIGALRM);
431         sigprocmask(SIG_BLOCK, &block_mask, &omask);
432 #endif
433
434         running = true;
435
436         while(running) {
437 #ifdef HAVE_PSELECT
438                 next_event = last_ping_check + pingtimeout;
439
440                 if(graph_dump && next_event > last_graph_dump + 60) {
441                         next_event = last_graph_dump + 60;
442                 }
443
444                 if((event = peek_next_event()) && next_event > event->time) {
445                         next_event = event->time;
446                 }
447
448                 if(next_event <= now) {
449                         tv.tv_sec = 0;
450                 } else {
451                         tv.tv_sec = next_event - now;
452                 }
453
454                 tv.tv_nsec = 0;
455 #else
456                 tv.tv_sec = 1;
457                 tv.tv_usec = 0;
458 #endif
459
460                 maxfd = build_fdset(&readset, &writeset);
461
462 #ifdef HAVE_MINGW
463                 LeaveCriticalSection(&mutex);
464 #endif
465 #ifdef HAVE_PSELECT
466                 r = pselect(maxfd + 1, &readset, &writeset, NULL, &tv, &omask);
467 #else
468                 r = select(maxfd + 1, &readset, &writeset, NULL, &tv);
469 #endif
470                 now = time(NULL);
471 #ifdef HAVE_MINGW
472                 EnterCriticalSection(&mutex);
473 #endif
474
475                 if(r < 0) {
476                         if(!sockwouldblock(sockerrno)) {
477                                 logger(LOG_ERR, "Error while waiting for input: %s", sockstrerror(sockerrno));
478                                 dump_connections();
479                                 return 1;
480                         }
481                 }
482
483                 if(r > 0) {
484                         check_network_activity(&readset, &writeset);
485                 }
486
487                 if(do_purge) {
488                         purge();
489                         do_purge = false;
490                 }
491
492                 /* Let's check if everybody is still alive */
493
494                 if(last_ping_check + pingtimeout <= now) {
495                         check_dead_connections();
496                         last_ping_check = now;
497
498                         if(routing_mode == RMODE_SWITCH) {
499                                 age_subnets();
500                         }
501
502                         age_past_requests();
503
504                         /* Should we regenerate our key? */
505
506                         if(keyexpires <= now) {
507                                 avl_node_t *node;
508                                 node_t *n;
509
510                                 ifdebug(STATUS) logger(LOG_INFO, "Expiring symmetric keys");
511
512                                 for(node = node_tree->head; node; node = node->next) {
513                                         n = node->data;
514
515                                         if(n->inkey) {
516                                                 free(n->inkey);
517                                                 n->inkey = NULL;
518                                         }
519                                 }
520
521                                 send_key_changed();
522                                 keyexpires = now + keylifetime;
523                         }
524
525                         /* Detect ADD_EDGE/DEL_EDGE storms that are caused when
526                          * two tinc daemons with the same name are on the VPN.
527                          * If so, sleep a while. If this happens multiple times
528                          * in a row, sleep longer. */
529
530                         if(contradicting_del_edge > 100 && contradicting_add_edge > 100) {
531                                 logger(LOG_WARNING, "Possible node with same Name as us! Sleeping %d seconds.", sleeptime);
532                                 usleep(sleeptime * 1000000LL);
533                                 sleeptime *= 2;
534
535                                 if(sleeptime < 0) {
536                                         sleeptime = 3600;
537                                 }
538                         } else {
539                                 sleeptime /= 2;
540
541                                 if(sleeptime < 10) {
542                                         sleeptime = 10;
543                                 }
544                         }
545
546                         contradicting_add_edge = 0;
547                         contradicting_del_edge = 0;
548                 }
549
550                 if(sigalrm) {
551                         avl_node_t *node;
552                         logger(LOG_INFO, "Flushing event queue");
553                         expire_events();
554
555                         for(node = connection_tree->head; node; node = node->next) {
556                                 connection_t *c = node->data;
557
558                                 if(c->status.active) {
559                                         send_ping(c);
560                                 }
561                         }
562
563                         sigalrm = false;
564                 }
565
566                 while((event = get_expired_event())) {
567                         event->handler(event->data);
568                         free_event(event);
569                 }
570
571                 if(sighup) {
572                         connection_t *c;
573                         avl_node_t *node, *next;
574                         char *fname;
575                         struct stat s;
576
577                         sighup = false;
578
579                         reopenlogger();
580
581                         /* Reread our own configuration file */
582
583                         exit_configuration(&config_tree);
584                         init_configuration(&config_tree);
585
586                         if(!read_server_config()) {
587                                 logger(LOG_ERR, "Unable to reread configuration file, exitting.");
588                                 return 1;
589                         }
590
591                         /* Cancel non-active outgoing connections */
592
593                         for(node = connection_tree->head; node; node = next) {
594                                 next = node->next;
595                                 c = node->data;
596
597                                 c->outgoing = NULL;
598
599                                 if(c->status.connecting) {
600                                         terminate_connection(c, false);
601                                         connection_del(c);
602                                 }
603                         }
604
605                         /* Wipe list of outgoing connections */
606
607                         for(list_node_t *node = outgoing_list->head; node; node = node->next) {
608                                 outgoing_t *outgoing = node->data;
609
610                                 if(outgoing->event) {
611                                         event_del(outgoing->event);
612                                 }
613                         }
614
615                         list_delete_list(outgoing_list);
616
617                         /* Close connections to hosts that have a changed or deleted host config file */
618
619                         for(node = connection_tree->head; node; node = node->next) {
620                                 c = node->data;
621
622                                 xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
623
624                                 if(stat(fname, &s) || s.st_mtime > last_config_check) {
625                                         terminate_connection(c, c->status.active);
626                                 }
627
628                                 free(fname);
629                         }
630
631                         last_config_check = now;
632
633                         /* If StrictSubnet is set, expire deleted Subnets and read new ones in */
634
635                         if(strictsubnets) {
636                                 subnet_t *subnet;
637
638                                 for(node = subnet_tree->head; node; node = node->next) {
639                                         subnet = node->data;
640                                         subnet->expires = 1;
641                                 }
642
643                                 load_all_subnets();
644
645                                 for(node = subnet_tree->head; node; node = next) {
646                                         next = node->next;
647                                         subnet = node->data;
648
649                                         if(subnet->expires == 1) {
650                                                 send_del_subnet(everyone, subnet);
651
652                                                 if(subnet->owner->status.reachable) {
653                                                         subnet_update(subnet->owner, subnet, false);
654                                                 }
655
656                                                 subnet_del(subnet->owner, subnet);
657                                         } else if(subnet->expires == -1) {
658                                                 subnet->expires = 0;
659                                         } else {
660                                                 send_add_subnet(everyone, subnet);
661
662                                                 if(subnet->owner->status.reachable) {
663                                                         subnet_update(subnet->owner, subnet, true);
664                                                 }
665                                         }
666                                 }
667                         }
668
669                         /* Try to make outgoing connections */
670
671                         try_outgoing_connections();
672                 }
673
674                 /* Dump graph if wanted every 60 seconds*/
675
676                 if(last_graph_dump + 60 <= now) {
677                         dump_graph();
678                         last_graph_dump = now;
679                 }
680         }
681
682 #ifdef HAVE_PSELECT
683         /* Restore SIGHUP & SIGALARM mask */
684         sigprocmask(SIG_SETMASK, &omask, NULL);
685 #endif
686
687         return 0;
688 }