Send gratuitous type 2 probe replies.
[tinc] / src / net.c
1 /*
2     net.c -- most of the network code
3     Copyright (C) 1998-2005 Ivo Timmermans,
4                   2000-2013 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 "utils.h"
26 #include "conf.h"
27 #include "connection.h"
28 #include "device.h"
29 #include "graph.h"
30 #include "logger.h"
31 #include "meta.h"
32 #include "names.h"
33 #include "net.h"
34 #include "netutl.h"
35 #include "protocol.h"
36 #include "subnet.h"
37 #include "xalloc.h"
38
39 #ifdef HAVE_RESOLV_H
40 #include <resolv.h>
41 #endif
42
43 int contradicting_add_edge = 0;
44 int contradicting_del_edge = 0;
45 static int sleeptime = 10;
46 time_t last_config_check = 0;
47 static timeout_t pingtimer;
48 static timeout_t periodictimer;
49
50 /* Purge edges and subnets of unreachable nodes. Use carefully. */
51
52 void purge(void) {
53         logger(DEBUG_PROTOCOL, LOG_DEBUG, "Purging unreachable nodes");
54
55         /* Remove all edges and subnets owned by unreachable nodes. */
56
57         for splay_each(node_t, n, node_tree) {
58                 if(!n->status.reachable) {
59                         logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Purging node %s (%s)", n->name, n->hostname);
60
61                         for splay_each(subnet_t, s, n->subnet_tree) {
62                                 send_del_subnet(everyone, s);
63                                 if(!strictsubnets)
64                                         subnet_del(n, s);
65                         }
66
67                         for splay_each(edge_t, e, n->edge_tree) {
68                                 if(!tunnelserver)
69                                         send_del_edge(everyone, e);
70                                 edge_del(e);
71                         }
72                 }
73         }
74
75         /* Check if anyone else claims to have an edge to an unreachable node. If not, delete node. */
76
77         for splay_each(node_t, n, node_tree) {
78                 if(!n->status.reachable) {
79                         for splay_each(edge_t, e, edge_weight_tree)
80                                 if(e->to == n)
81                                         return;
82
83                         if(!autoconnect && (!strictsubnets || !n->subnet_tree->head))
84                                 /* in strictsubnets mode do not delete nodes with subnets */
85                                 node_del(n);
86                 }
87         }
88 }
89
90 /*
91   Terminate a connection:
92   - Mark it as inactive
93   - Remove the edge representing this connection
94   - Kill it with fire
95   - Check if we need to retry making an outgoing connection
96 */
97 void terminate_connection(connection_t *c, bool report) {
98         logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Closing connection with %s (%s)", c->name, c->hostname);
99
100         if(c->node && c->node->connection == c)
101                 c->node->connection = NULL;
102
103         if(c->edge) {
104                 if(report && !tunnelserver)
105                         send_del_edge(everyone, c->edge);
106
107                 edge_del(c->edge);
108                 c->edge = NULL;
109
110                 /* Run MST and SSSP algorithms */
111
112                 graph();
113
114                 /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
115
116                 if(report && !c->node->status.reachable) {
117                         edge_t *e;
118                         e = lookup_edge(c->node, myself);
119                         if(e) {
120                                 if(!tunnelserver)
121                                         send_del_edge(everyone, e);
122                                 edge_del(e);
123                         }
124                 }
125         }
126
127         outgoing_t *outgoing = c->outgoing;
128         connection_del(c);
129
130         /* Check if this was our outgoing connection */
131
132         if(outgoing)
133                 do_outgoing_connection(outgoing);
134
135 #ifndef HAVE_MINGW
136         /* Clean up dead proxy processes */
137
138         while(waitpid(-1, NULL, WNOHANG) > 0);
139 #endif
140 }
141
142 /*
143   Check if the other end is active.
144   If we have sent packets, but didn't receive any,
145   then possibly the other end is dead. We send a
146   PING request over the meta connection. If the other
147   end does not reply in time, we consider them dead
148   and close the connection.
149 */
150 static void timeout_handler(void *data) {
151         for list_each(connection_t, c, connection_list) {
152                 if(c->status.control)
153                         continue;
154
155                 if(c->last_ping_time + pingtimeout <= now.tv_sec) {
156                         if(c->edge) {
157                                 try_tx(c->node, false);
158                                 if(c->status.pinged) {
159                                         logger(DEBUG_CONNECTIONS, LOG_INFO, "%s (%s) didn't respond to PING in %ld seconds", c->name, c->hostname, (long)now.tv_sec - c->last_ping_time);
160                                 } else if(c->last_ping_time + pinginterval <= now.tv_sec) {
161                                         send_ping(c);
162                                         continue;
163                                 } else {
164                                         continue;
165                                 }
166                         } else {
167                                 if(c->status.connecting)
168                                         logger(DEBUG_CONNECTIONS, LOG_WARNING, "Timeout while connecting to %s (%s)", c->name, c->hostname);
169                                 else
170                                         logger(DEBUG_CONNECTIONS, LOG_WARNING, "Timeout from %s (%s) during authentication", c->name, c->hostname);
171                         }
172                         terminate_connection(c, c->edge);
173                 }
174
175         }
176
177         timeout_set(data, &(struct timeval){1, rand() % 100000});
178 }
179
180 static void periodic_handler(void *data) {
181         /* Check if there are too many contradicting ADD_EDGE and DEL_EDGE messages.
182            This usually only happens when another node has the same Name as this node.
183            If so, sleep for a short while to prevent a storm of contradicting messages.
184         */
185
186         if(contradicting_del_edge > 100 && contradicting_add_edge > 100) {
187                 logger(DEBUG_ALWAYS, LOG_WARNING, "Possible node with same Name as us! Sleeping %d seconds.", sleeptime);
188                 usleep(sleeptime * 1000000LL);
189                 sleeptime *= 2;
190                 if(sleeptime < 0)
191                         sleeptime = 3600;
192         } else {
193                 sleeptime /= 2;
194                 if(sleeptime < 10)
195                         sleeptime = 10;
196         }
197
198         contradicting_add_edge = 0;
199         contradicting_del_edge = 0;
200
201         /* If AutoConnect is set, check if we need to make or break connections. */
202
203         if(autoconnect && node_tree->count > 1) {
204                 /* Count number of active connections */
205                 int nc = 0;
206                 for list_each(connection_t, c, connection_list) {
207                         if(c->edge)
208                                 nc++;
209                 }
210
211                 if(nc < 3) {
212                         /* Not enough active connections, try to add one.
213                            Choose a random node, if we don't have a connection to it,
214                            and we are not already trying to make one, create an
215                            outgoing connection to this node.
216                         */
217                         int r = rand() % node_tree->count;
218                         int i = 0;
219
220                         for splay_each(node_t, n, node_tree) {
221                                 if(i++ != r)
222                                         continue;
223
224                                 if(n->connection)
225                                         break;
226
227                                 bool found = false;
228
229                                 for list_each(outgoing_t, outgoing, outgoing_list) {
230                                         if(!strcmp(outgoing->name, n->name)) {
231                                                 found = true;
232                                                 break;
233                                         }
234                                 }
235
236                                 if(!found) {
237                                         logger(DEBUG_CONNECTIONS, LOG_INFO, "Autoconnecting to %s", n->name);
238                                         outgoing_t *outgoing = xzalloc(sizeof *outgoing);
239                                         outgoing->name = xstrdup(n->name);
240                                         list_insert_tail(outgoing_list, outgoing);
241                                         setup_outgoing_connection(outgoing);
242                                 }
243                                 break;
244                         }
245                 } else if(nc > 3) {
246                         /* Too many active connections, try to remove one.
247                            Choose a random outgoing connection to a node
248                            that has at least one other connection.
249                         */
250                         int r = rand() % nc;
251                         int i = 0;
252
253                         for list_each(connection_t, c, connection_list) {
254                                 if(!c->edge)
255                                         continue;
256
257                                 if(i++ != r)
258                                         continue;
259
260                                 if(!c->outgoing || !c->node || c->node->edge_tree->count < 2)
261                                         break;
262
263                                 logger(DEBUG_CONNECTIONS, LOG_INFO, "Autodisconnecting from %s", c->name);
264                                 list_delete(outgoing_list, c->outgoing);
265                                 c->outgoing = NULL;
266                                 terminate_connection(c, c->edge);
267                                 break;
268                         }
269                 }
270
271                 if(nc >= 3) {
272                         /* If we have enough active connections,
273                            remove any pending outgoing connections.
274                         */
275                         for list_each(outgoing_t, o, outgoing_list) {
276                                 bool found = false;
277                                 for list_each(connection_t, c, connection_list) {
278                                         if(c->outgoing == o) {
279                                                 found = true;
280                                                 break;
281                                         }
282                                 }
283                                 if(!found) {
284                                         logger(DEBUG_CONNECTIONS, LOG_INFO, "Cancelled outgoing connection to %s", o->name);
285                                         list_delete_node(outgoing_list, node);
286                                 }
287                         }
288                 }
289         }
290
291         timeout_set(data, &(struct timeval){5, rand() % 100000});
292 }
293
294 void handle_meta_connection_data(connection_t *c) {
295         if (!receive_meta(c)) {
296                 terminate_connection(c, c->edge);
297                 return;
298         }
299 }
300
301 #ifndef HAVE_MINGW
302 static void sigterm_handler(void *data) {
303         logger(DEBUG_ALWAYS, LOG_NOTICE, "Got %s signal", strsignal(((signal_t *)data)->signum));
304         event_exit();
305 }
306
307 static void sighup_handler(void *data) {
308         logger(DEBUG_ALWAYS, LOG_NOTICE, "Got %s signal", strsignal(((signal_t *)data)->signum));
309         reopenlogger();
310         if(reload_configuration())
311                 exit(1);
312 }
313
314 static void sigalrm_handler(void *data) {
315         logger(DEBUG_ALWAYS, LOG_NOTICE, "Got %s signal", strsignal(((signal_t *)data)->signum));
316 #ifdef HAVE_DECL_RES_INIT
317         res_init();
318 #endif
319         retry();
320 }
321 #endif
322
323 int reload_configuration(void) {
324         char *fname = NULL;
325
326         /* Reread our own configuration file */
327
328         exit_configuration(&config_tree);
329         init_configuration(&config_tree);
330
331         if(!read_server_config()) {
332                 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to reread configuration file.");
333                 return EINVAL;
334         }
335
336         read_config_options(config_tree, NULL);
337
338         xasprintf(&fname, "%s" SLASH "hosts" SLASH "%s", confbase, myself->name);
339         read_config_file(config_tree, fname);
340         free(fname);
341
342         /* Parse some options that are allowed to be changed while tinc is running */
343
344         setup_myself_reloadable();
345
346         /* If StrictSubnet is set, expire deleted Subnets and read new ones in */
347
348         if(strictsubnets) {
349                 for splay_each(subnet_t, subnet, subnet_tree)
350                         if (subnet->owner)
351                                 subnet->expires = 1;
352
353                 load_all_subnets();
354
355                 for splay_each(subnet_t, subnet, subnet_tree) {
356                         if (!subnet->owner)
357                                 continue;
358                         if(subnet->expires == 1) {
359                                 send_del_subnet(everyone, subnet);
360                                 if(subnet->owner->status.reachable)
361                                         subnet_update(subnet->owner, subnet, false);
362                                 subnet_del(subnet->owner, subnet);
363                         } else if(subnet->expires == -1) {
364                                 subnet->expires = 0;
365                         } else {
366                                 send_add_subnet(everyone, subnet);
367                                 if(subnet->owner->status.reachable)
368                                         subnet_update(subnet->owner, subnet, true);
369                         }
370                 }
371         } else { /* Only read our own subnets back in */
372                 for splay_each(subnet_t, subnet, myself->subnet_tree)
373                         if(!subnet->expires)
374                                 subnet->expires = 1;
375
376                 config_t *cfg = lookup_config(config_tree, "Subnet");
377
378                 while(cfg) {
379                         subnet_t *subnet, *s2;
380
381                         if(!get_config_subnet(cfg, &subnet))
382                                 continue;
383
384                         if((s2 = lookup_subnet(myself, subnet))) {
385                                 if(s2->expires == 1)
386                                         s2->expires = 0;
387
388                                 free_subnet(subnet);
389                         } else {
390                                 subnet_add(myself, subnet);
391                                 send_add_subnet(everyone, subnet);
392                                 subnet_update(myself, subnet, true);
393                         }
394
395                         cfg = lookup_config_next(config_tree, cfg);
396                 }
397
398                 for splay_each(subnet_t, subnet, myself->subnet_tree) {
399                         if(subnet->expires == 1) {
400                                 send_del_subnet(everyone, subnet);
401                                 subnet_update(myself, subnet, false);
402                                 subnet_del(myself, subnet);
403                         }
404                 }
405         }
406
407         /* Try to make outgoing connections */
408
409         try_outgoing_connections();
410
411         /* Close connections to hosts that have a changed or deleted host config file */
412
413         for list_each(connection_t, c, connection_list) {
414                 if(c->status.control)
415                         continue;
416
417                 xasprintf(&fname, "%s" SLASH "hosts" SLASH "%s", confbase, c->name);
418                 struct stat s;
419                 if(stat(fname, &s) || s.st_mtime > last_config_check) {
420                         logger(DEBUG_CONNECTIONS, LOG_INFO, "Host config file of %s has been changed", c->name);
421                         terminate_connection(c, c->edge);
422                 }
423                 free(fname);
424         }
425
426         last_config_check = now.tv_sec;
427
428         return 0;
429 }
430
431 void retry(void) {
432         /* Reset the reconnection timers for all outgoing connections */
433         for list_each(outgoing_t, outgoing, outgoing_list) {
434                 outgoing->timeout = 0;
435                 if(outgoing->ev.cb)
436                         timeout_set(&outgoing->ev, &(struct timeval){0, 0});
437         }
438
439         /* Check for outgoing connections that are in progress, and reset their ping timers */
440         for list_each(connection_t, c, connection_list) {
441                 if(c->outgoing && !c->node)
442                         c->last_ping_time = 0;
443         }
444
445         /* Kick the ping timeout handler */
446         timeout_set(&pingtimer, &(struct timeval){0, 0});
447 }
448
449 /*
450   this is where it all happens...
451 */
452 int main_loop(void) {
453         timeout_add(&pingtimer, timeout_handler, &pingtimer, &(struct timeval){pingtimeout, rand() % 100000});
454         timeout_add(&periodictimer, periodic_handler, &periodictimer, &(struct timeval){pingtimeout, rand() % 100000});
455
456 #ifndef HAVE_MINGW
457         signal_t sighup = {0};
458         signal_t sigterm = {0};
459         signal_t sigquit = {0};
460         signal_t sigint = {0};
461         signal_t sigalrm = {0};
462
463         signal_add(&sighup, sighup_handler, &sighup, SIGHUP);
464         signal_add(&sigterm, sigterm_handler, &sigterm, SIGTERM);
465         signal_add(&sigquit, sigterm_handler, &sigquit, SIGQUIT);
466         signal_add(&sigint, sigterm_handler, &sigint, SIGINT);
467         signal_add(&sigalrm, sigalrm_handler, &sigalrm, SIGALRM);
468 #endif
469
470         if(!event_loop()) {
471                 logger(DEBUG_ALWAYS, LOG_ERR, "Error while waiting for input: %s", sockstrerror(sockerrno));
472                 return 1;
473         }
474
475 #ifndef HAVE_MINGW
476         signal_del(&sighup);
477         signal_del(&sigterm);
478         signal_del(&sigquit);
479         signal_del(&sigint);
480         signal_del(&sigalrm);
481 #endif
482
483         timeout_del(&periodictimer);
484         timeout_del(&pingtimer);
485
486         return 0;
487 }