Fix segfault when Name = $HOST but $HOST is not set.
[tinc] / src / net_setup.c
1 /*
2     net_setup.c -- Setup.
3     Copyright (C) 1998-2005 Ivo Timmermans,
4                   2000-2013 Guus Sliepen <guus@tinc-vpn.org>
5                   2006      Scott Lamb <slamb@slamb.org>
6                   2010      Brandon Black <blblack@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 "cipher.h"
26 #include "conf.h"
27 #include "connection.h"
28 #include "control.h"
29 #include "device.h"
30 #include "digest.h"
31 #include "ecdsa.h"
32 #include "graph.h"
33 #include "logger.h"
34 #include "names.h"
35 #include "net.h"
36 #include "netutl.h"
37 #include "process.h"
38 #include "protocol.h"
39 #include "route.h"
40 #include "rsa.h"
41 #include "script.h"
42 #include "subnet.h"
43 #include "utils.h"
44 #include "xalloc.h"
45
46 char *myport;
47 static io_t device_io;
48 devops_t devops;
49
50 char *proxyhost;
51 char *proxyport;
52 char *proxyuser;
53 char *proxypass;
54 proxytype_t proxytype;
55 int autoconnect;
56 bool disablebuggypeers;
57
58 char *scriptinterpreter;
59 char *scriptextension;
60
61 bool node_read_ecdsa_public_key(node_t *n) {
62         if(ecdsa_active(n->ecdsa))
63                 return true;
64
65         splay_tree_t *config_tree;
66         FILE *fp;
67         char *pubname = NULL;
68         char *p;
69
70         init_configuration(&config_tree);
71         if(!read_host_config(config_tree, n->name))
72                 goto exit;
73
74         /* First, check for simple ECDSAPublicKey statement */
75
76         if(get_config_string(lookup_config(config_tree, "ECDSAPublicKey"), &p)) {
77                 n->ecdsa = ecdsa_set_base64_public_key(p);
78                 free(p);
79                 goto exit;
80         }
81
82         /* Else, check for ECDSAPublicKeyFile statement and read it */
83
84         if(!get_config_string(lookup_config(config_tree, "ECDSAPublicKeyFile"), &pubname))
85                 xasprintf(&pubname, "%s" SLASH "hosts" SLASH "%s", confbase, n->name);
86
87         fp = fopen(pubname, "r");
88
89         if(!fp) {
90                 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading ECDSA public key file `%s': %s", pubname, strerror(errno));
91                 goto exit;
92         }
93
94         n->ecdsa = ecdsa_read_pem_public_key(fp);
95         fclose(fp);
96
97 exit:
98         exit_configuration(&config_tree);
99         free(pubname);
100         return n->ecdsa;
101 }
102
103 bool read_ecdsa_public_key(connection_t *c) {
104         if(ecdsa_active(c->ecdsa))
105                 return true;
106
107         FILE *fp;
108         char *fname;
109         char *p;
110
111         if(!c->config_tree) {
112                 init_configuration(&c->config_tree);
113                 if(!read_host_config(c->config_tree, c->name))
114                         return false;
115         }
116
117         /* First, check for simple ECDSAPublicKey statement */
118
119         if(get_config_string(lookup_config(c->config_tree, "ECDSAPublicKey"), &p)) {
120                 c->ecdsa = ecdsa_set_base64_public_key(p);
121                 free(p);
122                 return c->ecdsa;
123         }
124
125         /* Else, check for ECDSAPublicKeyFile statement and read it */
126
127         if(!get_config_string(lookup_config(c->config_tree, "ECDSAPublicKeyFile"), &fname))
128                 xasprintf(&fname, "%s" SLASH "hosts" SLASH "%s", confbase, c->name);
129
130         fp = fopen(fname, "r");
131
132         if(!fp) {
133                 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading ECDSA public key file `%s': %s",
134                            fname, strerror(errno));
135                 free(fname);
136                 return false;
137         }
138
139         c->ecdsa = ecdsa_read_pem_public_key(fp);
140         fclose(fp);
141
142         if(!c->ecdsa)
143                 logger(DEBUG_ALWAYS, LOG_ERR, "Parsing ECDSA public key file `%s' failed.", fname);
144         free(fname);
145         return c->ecdsa;
146 }
147
148 bool read_rsa_public_key(connection_t *c) {
149         if(ecdsa_active(c->ecdsa))
150                 return true;
151
152         FILE *fp;
153         char *fname;
154         char *n;
155
156         /* First, check for simple PublicKey statement */
157
158         if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &n)) {
159                 c->rsa = rsa_set_hex_public_key(n, "FFFF");
160                 free(n);
161                 return c->rsa;
162         }
163
164         /* Else, check for PublicKeyFile statement and read it */
165
166         if(!get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &fname))
167                 xasprintf(&fname, "%s" SLASH "hosts" SLASH "%s", confbase, c->name);
168
169         fp = fopen(fname, "r");
170
171         if(!fp) {
172                 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading RSA public key file `%s': %s", fname, strerror(errno));
173                 free(fname);
174                 return false;
175         }
176
177         c->rsa = rsa_read_pem_public_key(fp);
178         fclose(fp);
179
180         if(!c->rsa)
181                 logger(DEBUG_ALWAYS, LOG_ERR, "Reading RSA public key file `%s' failed: %s", fname, strerror(errno));
182         free(fname);
183         return c->rsa;
184 }
185
186 static bool read_ecdsa_private_key(void) {
187         FILE *fp;
188         char *fname;
189
190         /* Check for PrivateKeyFile statement and read it */
191
192         if(!get_config_string(lookup_config(config_tree, "ECDSAPrivateKeyFile"), &fname))
193                 xasprintf(&fname, "%s" SLASH "ecdsa_key.priv", confbase);
194
195         fp = fopen(fname, "r");
196
197         if(!fp) {
198                 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading ECDSA private key file `%s': %s", fname, strerror(errno));
199                 if(errno == ENOENT)
200                         logger(DEBUG_ALWAYS, LOG_INFO, "Create an ECDSA keypair with `tinc -n %s generate-ecdsa-keys'.", netname ?: ".");
201                 free(fname);
202                 return false;
203         }
204
205 #if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
206         struct stat s;
207
208         if(fstat(fileno(fp), &s)) {
209                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not stat ECDSA private key file `%s': %s'", fname, strerror(errno));
210                 free(fname);
211                 return false;
212         }
213
214         if(s.st_mode & ~0100700)
215                 logger(DEBUG_ALWAYS, LOG_WARNING, "Warning: insecure file permissions for ECDSA private key file `%s'!", fname);
216 #endif
217
218         myself->connection->ecdsa = ecdsa_read_pem_private_key(fp);
219         fclose(fp);
220
221         if(!myself->connection->ecdsa)
222                 logger(DEBUG_ALWAYS, LOG_ERR, "Reading ECDSA private key file `%s' failed: %s", fname, strerror(errno));
223         free(fname);
224         return myself->connection->ecdsa;
225 }
226
227 static bool read_invitation_key(void) {
228         FILE *fp;
229         char *fname;
230
231         if(invitation_key) {
232                 ecdsa_free(invitation_key);
233                 invitation_key = NULL;
234         }
235
236         xasprintf(&fname, "%s" SLASH "invitations" SLASH "ecdsa_key.priv", confbase);
237
238         fp = fopen(fname, "r");
239
240         if(fp) {
241                 invitation_key = ecdsa_read_pem_private_key(fp);
242                 fclose(fp);
243                 if(!invitation_key)
244                         logger(DEBUG_ALWAYS, LOG_ERR, "Reading ECDSA private key file `%s' failed: %s", fname, strerror(errno));
245         }
246
247         free(fname);
248         return invitation_key;
249 }
250
251 static bool read_rsa_private_key(void) {
252         FILE *fp;
253         char *fname;
254         char *n, *d;
255
256         /* First, check for simple PrivateKey statement */
257
258         if(get_config_string(lookup_config(config_tree, "PrivateKey"), &d)) {
259                 if(!get_config_string(lookup_config(config_tree, "PublicKey"), &n)) {
260                         logger(DEBUG_ALWAYS, LOG_ERR, "PrivateKey used but no PublicKey found!");
261                         free(d);
262                         return false;
263                 }
264                 myself->connection->rsa = rsa_set_hex_private_key(n, "FFFF", d);
265                 free(n);
266                 free(d);
267                 return myself->connection->rsa;
268         }
269
270         /* Else, check for PrivateKeyFile statement and read it */
271
272         if(!get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
273                 xasprintf(&fname, "%s" SLASH "rsa_key.priv", confbase);
274
275         fp = fopen(fname, "r");
276
277         if(!fp) {
278                 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading RSA private key file `%s': %s",
279                            fname, strerror(errno));
280                 free(fname);
281                 return false;
282         }
283
284 #if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
285         struct stat s;
286
287         if(fstat(fileno(fp), &s)) {
288                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not stat RSA private key file `%s': %s'", fname, strerror(errno));
289                 free(fname);
290                 return false;
291         }
292
293         if(s.st_mode & ~0100700)
294                 logger(DEBUG_ALWAYS, LOG_WARNING, "Warning: insecure file permissions for RSA private key file `%s'!", fname);
295 #endif
296
297         myself->connection->rsa = rsa_read_pem_private_key(fp);
298         fclose(fp);
299
300         if(!myself->connection->rsa)
301                 logger(DEBUG_ALWAYS, LOG_ERR, "Reading RSA private key file `%s' failed: %s", fname, strerror(errno));
302         free(fname);
303         return myself->connection->rsa;
304 }
305
306 static timeout_t keyexpire_timeout;
307
308 static void keyexpire_handler(void *data) {
309         regenerate_key();
310         timeout_set(data, &(struct timeval){keylifetime, rand() % 100000});
311 }
312
313 void regenerate_key(void) {
314         logger(DEBUG_STATUS, LOG_INFO, "Expiring symmetric keys");
315         send_key_changed();
316 }
317
318 /*
319   Read Subnets from all host config files
320 */
321 void load_all_subnets(void) {
322         DIR *dir;
323         struct dirent *ent;
324         char *dname;
325
326         xasprintf(&dname, "%s" SLASH "hosts", confbase);
327         dir = opendir(dname);
328         if(!dir) {
329                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not open %s: %s", dname, strerror(errno));
330                 free(dname);
331                 return;
332         }
333
334         while((ent = readdir(dir))) {
335                 if(!check_id(ent->d_name))
336                         continue;
337
338                 node_t *n = lookup_node(ent->d_name);
339                 #ifdef _DIRENT_HAVE_D_TYPE
340                 //if(ent->d_type != DT_REG)
341                 //      continue;
342                 #endif
343
344                 splay_tree_t *config_tree;
345                 init_configuration(&config_tree);
346                 read_config_options(config_tree, ent->d_name);
347                 read_host_config(config_tree, ent->d_name);
348
349                 if(!n) {
350                         n = new_node();
351                         n->name = xstrdup(ent->d_name);
352                         node_add(n);
353                 }
354
355                 for(config_t *cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
356                         subnet_t *s, *s2;
357
358                         if(!get_config_subnet(cfg, &s))
359                                 continue;
360
361                         if((s2 = lookup_subnet(n, s))) {
362                                 s2->expires = -1;
363                         } else {
364                                 subnet_add(n, s);
365                         }
366                 }
367
368                 exit_configuration(&config_tree);
369         }
370
371         closedir(dir);
372 }
373
374 void load_all_nodes(void) {
375         DIR *dir;
376         struct dirent *ent;
377         char *dname;
378
379         xasprintf(&dname, "%s" SLASH "hosts", confbase);
380         dir = opendir(dname);
381         if(!dir) {
382                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not open %s: %s", dname, strerror(errno));
383                 free(dname);
384                 return;
385         }
386
387         while((ent = readdir(dir))) {
388                 if(!check_id(ent->d_name))
389                         continue;
390
391                 node_t *n = lookup_node(ent->d_name);
392                 if(n)
393                         continue;
394
395                 n = new_node();
396                 n->name = xstrdup(ent->d_name);
397                 node_add(n);
398         }
399
400         closedir(dir);
401 }
402
403
404 char *get_name(void) {
405         char *name = NULL;
406
407         get_config_string(lookup_config(config_tree, "Name"), &name);
408
409         if(!name)
410                 return NULL;
411
412         if(*name == '$') {
413                 char *envname = getenv(name + 1);
414                 char hostname[32] = "";
415                 if(!envname) {
416                         if(strcmp(name + 1, "HOST")) {
417                                 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid Name: environment variable %s does not exist\n", name + 1);
418                                 return false;
419                         }
420                         if(gethostname(hostname, sizeof hostname) || !*hostname) {
421                                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not get hostname: %s\n", strerror(errno));
422                                 return false;
423                         }
424                         hostname[31] = 0;
425                         envname = hostname;
426                 }
427                 free(name);
428                 name = xstrdup(envname);
429                 for(char *c = name; *c; c++)
430                         if(!isalnum(*c))
431                                 *c = '_';
432         }
433
434         if(!check_id(name)) {
435                 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid name for myself!");
436                 free(name);
437                 return false;
438         }
439
440         return name;
441 }
442
443 bool setup_myself_reloadable(void) {
444         char *proxy = NULL;
445         char *rmode = NULL;
446         char *fmode = NULL;
447         char *bmode = NULL;
448         char *afname = NULL;
449         char *address = NULL;
450         char *space;
451         bool choice;
452
453         free(scriptinterpreter);
454         scriptinterpreter = NULL;
455         get_config_string(lookup_config(config_tree, "ScriptsInterpreter"), &scriptinterpreter);
456
457
458         free(scriptextension);
459         if(!get_config_string(lookup_config(config_tree, "ScriptsExtension"), &scriptextension))
460                 scriptextension = xstrdup("");
461
462         get_config_string(lookup_config(config_tree, "Proxy"), &proxy);
463         if(proxy) {
464                 if((space = strchr(proxy, ' ')))
465                         *space++ = 0;
466
467                 if(!strcasecmp(proxy, "none")) {
468                         proxytype = PROXY_NONE;
469                 } else if(!strcasecmp(proxy, "socks4")) {
470                         proxytype = PROXY_SOCKS4;
471                 } else if(!strcasecmp(proxy, "socks4a")) {
472                         proxytype = PROXY_SOCKS4A;
473                 } else if(!strcasecmp(proxy, "socks5")) {
474                         proxytype = PROXY_SOCKS5;
475                 } else if(!strcasecmp(proxy, "http")) {
476                         proxytype = PROXY_HTTP;
477                 } else if(!strcasecmp(proxy, "exec")) {
478                         proxytype = PROXY_EXEC;
479                 } else {
480                         logger(DEBUG_ALWAYS, LOG_ERR, "Unknown proxy type %s!", proxy);
481                         return false;
482                 }
483
484                 switch(proxytype) {
485                         case PROXY_NONE:
486                         default:
487                                 break;
488
489                         case PROXY_EXEC:
490                                 if(!space || !*space) {
491                                         logger(DEBUG_ALWAYS, LOG_ERR, "Argument expected for proxy type exec!");
492                                         return false;
493                                 }
494                                 proxyhost =  xstrdup(space);
495                                 break;
496
497                         case PROXY_SOCKS4:
498                         case PROXY_SOCKS4A:
499                         case PROXY_SOCKS5:
500                         case PROXY_HTTP:
501                                 proxyhost = space;
502                                 if(space && (space = strchr(space, ' ')))
503                                         *space++ = 0, proxyport = space;
504                                 if(space && (space = strchr(space, ' ')))
505                                         *space++ = 0, proxyuser = space;
506                                 if(space && (space = strchr(space, ' ')))
507                                         *space++ = 0, proxypass = space;
508                                 if(!proxyhost || !*proxyhost || !proxyport || !*proxyport) {
509                                         logger(DEBUG_ALWAYS, LOG_ERR, "Host and port argument expected for proxy!");
510                                         return false;
511                                 }
512                                 proxyhost = xstrdup(proxyhost);
513                                 proxyport = xstrdup(proxyport);
514                                 if(proxyuser && *proxyuser)
515                                         proxyuser = xstrdup(proxyuser);
516                                 if(proxypass && *proxypass)
517                                         proxypass = xstrdup(proxypass);
518                                 break;
519                 }
520
521                 free(proxy);
522         }
523
524         if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice)
525                 myself->options |= OPTION_INDIRECT;
526
527         if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice) && choice)
528                 myself->options |= OPTION_TCPONLY;
529
530         if(myself->options & OPTION_TCPONLY)
531                 myself->options |= OPTION_INDIRECT;
532
533         get_config_bool(lookup_config(config_tree, "DirectOnly"), &directonly);
534         get_config_bool(lookup_config(config_tree, "LocalDiscovery"), &localdiscovery);
535
536         memset(&localdiscovery_address, 0, sizeof localdiscovery_address);
537         if(get_config_string(lookup_config(config_tree, "LocalDiscoveryAddress"), &address)) {
538                 struct addrinfo *ai = str2addrinfo(address, myport, SOCK_DGRAM);
539                 free(address);
540                 if(!ai)
541                         return false;
542                 memcpy(&localdiscovery_address, ai->ai_addr, ai->ai_addrlen);
543         }
544
545
546         if(get_config_string(lookup_config(config_tree, "Mode"), &rmode)) {
547                 if(!strcasecmp(rmode, "router"))
548                         routing_mode = RMODE_ROUTER;
549                 else if(!strcasecmp(rmode, "switch"))
550                         routing_mode = RMODE_SWITCH;
551                 else if(!strcasecmp(rmode, "hub"))
552                         routing_mode = RMODE_HUB;
553                 else {
554                         logger(DEBUG_ALWAYS, LOG_ERR, "Invalid routing mode!");
555                         return false;
556                 }
557                 free(rmode);
558         }
559
560         if(get_config_string(lookup_config(config_tree, "Forwarding"), &fmode)) {
561                 if(!strcasecmp(fmode, "off"))
562                         forwarding_mode = FMODE_OFF;
563                 else if(!strcasecmp(fmode, "internal"))
564                         forwarding_mode = FMODE_INTERNAL;
565                 else if(!strcasecmp(fmode, "kernel"))
566                         forwarding_mode = FMODE_KERNEL;
567                 else {
568                         logger(DEBUG_ALWAYS, LOG_ERR, "Invalid forwarding mode!");
569                         return false;
570                 }
571                 free(fmode);
572         }
573
574         choice = true;
575         get_config_bool(lookup_config(config_tree, "PMTUDiscovery"), &choice);
576         if(choice)
577                 myself->options |= OPTION_PMTU_DISCOVERY;
578
579         choice = true;
580         get_config_bool(lookup_config(config_tree, "ClampMSS"), &choice);
581         if(choice)
582                 myself->options |= OPTION_CLAMP_MSS;
583
584         get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
585         get_config_bool(lookup_config(config_tree, "DecrementTTL"), &decrement_ttl);
586         if(get_config_string(lookup_config(config_tree, "Broadcast"), &bmode)) {
587                 if(!strcasecmp(bmode, "no"))
588                         broadcast_mode = BMODE_NONE;
589                 else if(!strcasecmp(bmode, "yes") || !strcasecmp(bmode, "mst"))
590                         broadcast_mode = BMODE_MST;
591                 else if(!strcasecmp(bmode, "direct"))
592                         broadcast_mode = BMODE_DIRECT;
593                 else {
594                         logger(DEBUG_ALWAYS, LOG_ERR, "Invalid broadcast mode!");
595                         return false;
596                 }
597                 free(bmode);
598         }
599
600 #if !defined(SOL_IP) || !defined(IP_TOS)
601         if(priorityinheritance)
602                 logger(DEBUG_ALWAYS, LOG_WARNING, "%s not supported on this platform", "PriorityInheritance");
603 #endif
604
605         if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
606                 macexpire = 600;
607
608         if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
609                 if(maxtimeout <= 0) {
610                         logger(DEBUG_ALWAYS, LOG_ERR, "Bogus maximum timeout!");
611                         return false;
612                 }
613         } else
614                 maxtimeout = 900;
615
616         if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
617                 if(!strcasecmp(afname, "IPv4"))
618                         addressfamily = AF_INET;
619                 else if(!strcasecmp(afname, "IPv6"))
620                         addressfamily = AF_INET6;
621                 else if(!strcasecmp(afname, "any"))
622                         addressfamily = AF_UNSPEC;
623                 else {
624                         logger(DEBUG_ALWAYS, LOG_ERR, "Invalid address family!");
625                         return false;
626                 }
627                 free(afname);
628         }
629
630         get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
631
632         if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
633                 keylifetime = 3600;
634
635         get_config_int(lookup_config(config_tree, "AutoConnect"), &autoconnect);
636
637         get_config_bool(lookup_config(config_tree, "DisableBuggyPeers"), &disablebuggypeers);
638
639         read_invitation_key();
640
641         return true;
642 }
643
644 /*
645   Configure node_t myself and set up the local sockets (listen only)
646 */
647 static bool setup_myself(void) {
648         char *name, *hostname, *cipher, *digest, *type;
649         char *address = NULL;
650
651         if(!(name = get_name())) {
652                 logger(DEBUG_ALWAYS, LOG_ERR, "Name for tinc daemon required!");
653                 return false;
654         }
655
656         myself = new_node();
657         myself->connection = new_connection();
658         myself->name = name;
659         myself->connection->name = xstrdup(name);
660         read_host_config(config_tree, name);
661
662         if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
663                 myport = xstrdup("655");
664
665         xasprintf(&myself->hostname, "MYSELF port %s", myport);
666         myself->connection->hostname = xstrdup(myself->hostname);
667
668         myself->connection->options = 0;
669         myself->connection->protocol_major = PROT_MAJOR;
670         myself->connection->protocol_minor = PROT_MINOR;
671
672         myself->options |= PROT_MINOR << 24;
673
674         get_config_bool(lookup_config(config_tree, "ExperimentalProtocol"), &experimental);
675
676         if(experimental && !read_ecdsa_private_key())
677                 return false;
678
679         if(!read_rsa_private_key())
680                 return false;
681
682         if(!atoi(myport)) {
683                 struct addrinfo *ai = str2addrinfo("localhost", myport, SOCK_DGRAM);
684                 sockaddr_t sa;
685                 if(!ai || !ai->ai_addr)
686                         return false;
687                 free(myport);
688                 memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
689                 sockaddr2str(&sa, NULL, &myport);
690         }
691
692         /* Read in all the subnets specified in the host configuration file */
693
694         for(config_t *cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
695                 subnet_t *subnet;
696
697                 if(!get_config_subnet(cfg, &subnet))
698                         return false;
699
700                 subnet_add(myself, subnet);
701         }
702
703         /* Check some options */
704
705         if(!setup_myself_reloadable())
706                 return false;
707
708         get_config_bool(lookup_config(config_tree, "StrictSubnets"), &strictsubnets);
709         get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
710         strictsubnets |= tunnelserver;
711
712         if(get_config_int(lookup_config(config_tree, "MaxConnectionBurst"), &max_connection_burst)) {
713                 if(max_connection_burst <= 0) {
714                         logger(DEBUG_ALWAYS, LOG_ERR, "MaxConnectionBurst cannot be negative!");
715                         return false;
716                 }
717         }
718
719         if(get_config_int(lookup_config(config_tree, "UDPRcvBuf"), &udp_rcvbuf)) {
720                 if(udp_rcvbuf <= 0) {
721                         logger(DEBUG_ALWAYS, LOG_ERR, "UDPRcvBuf cannot be negative!");
722                         return false;
723                 }
724         }
725
726         if(get_config_int(lookup_config(config_tree, "UDPSndBuf"), &udp_sndbuf)) {
727                 if(udp_sndbuf <= 0) {
728                         logger(DEBUG_ALWAYS, LOG_ERR, "UDPSndBuf cannot be negative!");
729                         return false;
730                 }
731         }
732
733         int replaywin_int;
734         if(get_config_int(lookup_config(config_tree, "ReplayWindow"), &replaywin_int)) {
735                 if(replaywin_int < 0) {
736                         logger(DEBUG_ALWAYS, LOG_ERR, "ReplayWindow cannot be negative!");
737                         return false;
738                 }
739                 replaywin = (unsigned)replaywin_int;
740                 sptps_replaywin = replaywin;
741         }
742
743         /* Generate packet encryption key */
744
745         if(!get_config_string(lookup_config(config_tree, "Cipher"), &cipher))
746                 cipher = xstrdup("blowfish");
747
748         if(!(myself->incipher = cipher_open_by_name(cipher))) {
749                 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized cipher type!");
750                 return false;
751         }
752
753         free(cipher);
754
755         timeout_add(&keyexpire_timeout, keyexpire_handler, &keyexpire_timeout, &(struct timeval){keylifetime, rand() % 100000});
756
757         /* Check if we want to use message authentication codes... */
758
759         int maclength = 4;
760         get_config_int(lookup_config(config_tree, "MACLength"), &maclength);
761
762         if(maclength < 0) {
763                 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus MAC length!");
764                 return false;
765         }
766
767         if(!get_config_string(lookup_config(config_tree, "Digest"), &digest))
768                 digest = xstrdup("sha1");
769
770         if(!(myself->indigest = digest_open_by_name(digest, maclength))) {
771                 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized digest type!");
772                 return false;
773         }
774
775         free(digest);
776
777         /* Compression */
778
779         if(get_config_int(lookup_config(config_tree, "Compression"), &myself->incompression)) {
780                 if(myself->incompression < 0 || myself->incompression > 11) {
781                         logger(DEBUG_ALWAYS, LOG_ERR, "Bogus compression level!");
782                         return false;
783                 }
784         } else
785                 myself->incompression = 0;
786
787         myself->connection->outcompression = 0;
788
789         /* Done */
790
791         myself->nexthop = myself;
792         myself->via = myself;
793         myself->status.reachable = true;
794         myself->last_state_change = now.tv_sec;
795         myself->status.sptps = experimental;
796         node_add(myself);
797
798         graph();
799
800         if(strictsubnets)
801                 load_all_subnets();
802         else if(autoconnect)
803                 load_all_nodes();
804
805         /* Open device */
806
807         devops = os_devops;
808
809         if(get_config_string(lookup_config(config_tree, "DeviceType"), &type)) {
810                 if(!strcasecmp(type, "dummy"))
811                         devops = dummy_devops;
812                 else if(!strcasecmp(type, "raw_socket"))
813                         devops = raw_socket_devops;
814                 else if(!strcasecmp(type, "multicast"))
815                         devops = multicast_devops;
816 #ifdef ENABLE_UML
817                 else if(!strcasecmp(type, "uml"))
818                         devops = uml_devops;
819 #endif
820 #ifdef ENABLE_VDE
821                 else if(!strcasecmp(type, "vde"))
822                         devops = vde_devops;
823 #endif
824         }
825
826         if(!devops.setup())
827                 return false;
828
829         if(device_fd >= 0)
830                 io_add(&device_io, handle_device_data, NULL, device_fd, IO_READ);
831
832         /* Open sockets */
833
834         if(!do_detach && getenv("LISTEN_FDS")) {
835                 sockaddr_t sa;
836                 socklen_t salen;
837
838                 listen_sockets = atoi(getenv("LISTEN_FDS"));
839 #ifdef HAVE_UNSETENV
840                 unsetenv("LISTEN_FDS");
841 #endif
842
843                 if(listen_sockets > MAXSOCKETS) {
844                         logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
845                         return false;
846                 }
847
848                 for(int i = 0; i < listen_sockets; i++) {
849                         salen = sizeof sa;
850                         if(getsockname(i + 3, &sa.sa, &salen) < 0) {
851                                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not get address of listen fd %d: %s", i + 3, sockstrerror(errno));
852                                 return false;
853                         }
854
855 #ifdef FD_CLOEXEC
856                         fcntl(i + 3, F_SETFD, FD_CLOEXEC);
857 #endif
858
859                         int udp_fd = setup_vpn_in_socket(&sa);
860                         if(udp_fd < 0)
861                                 return false;
862
863                         io_add(&listen_socket[i].tcp, (io_cb_t)handle_new_meta_connection, &listen_socket[i], i + 3, IO_READ);
864                         io_add(&listen_socket[i].udp, (io_cb_t)handle_incoming_vpn_data, &listen_socket[i], udp_fd, IO_READ);
865
866                         if(debug_level >= DEBUG_CONNECTIONS) {
867                                 hostname = sockaddr2hostname(&sa);
868                                 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
869                                 free(hostname);
870                         }
871
872                         memcpy(&listen_socket[i].sa, &sa, salen);
873                 }
874         } else {
875                 listen_sockets = 0;
876                 config_t *cfg = lookup_config(config_tree, "BindToAddress");
877
878                 do {
879                         get_config_string(cfg, &address);
880                         if(cfg)
881                                 cfg = lookup_config_next(config_tree, cfg);
882
883                         char *port = myport;
884
885                         if(address) {
886                                 char *space = strchr(address, ' ');
887                                 if(space) {
888                                         *space++ = 0;
889                                         port = space;
890                                 }
891
892                                 if(!strcmp(address, "*"))
893                                         *address = 0;
894                         }
895
896                         struct addrinfo *ai, hint = {0};
897                         hint.ai_family = addressfamily;
898                         hint.ai_socktype = SOCK_STREAM;
899                         hint.ai_protocol = IPPROTO_TCP;
900                         hint.ai_flags = AI_PASSIVE;
901
902                         int err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
903                         free(address);
904
905                         if(err || !ai) {
906                                 logger(DEBUG_ALWAYS, LOG_ERR, "System call `%s' failed: %s", "getaddrinfo", err == EAI_SYSTEM ? strerror(err) : gai_strerror(err));
907                                 return false;
908                         }
909
910                         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
911                                 if(listen_sockets >= MAXSOCKETS) {
912                                         logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
913                                         return false;
914                                 }
915
916                                 int tcp_fd = setup_listen_socket((sockaddr_t *) aip->ai_addr);
917
918                                 if(tcp_fd < 0)
919                                         continue;
920
921                                 int udp_fd = setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
922
923                                 if(tcp_fd < 0) {
924                                         close(tcp_fd);
925                                         continue;
926                                 }
927
928                                 io_add(&listen_socket[listen_sockets].tcp, handle_new_meta_connection, &listen_socket[listen_sockets], tcp_fd, IO_READ);
929                                 io_add(&listen_socket[listen_sockets].udp, handle_incoming_vpn_data, &listen_socket[listen_sockets], udp_fd, IO_READ);
930
931                                 if(debug_level >= DEBUG_CONNECTIONS) {
932                                         hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
933                                         logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
934                                         free(hostname);
935                                 }
936
937                                 memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
938                                 listen_sockets++;
939                         }
940
941                         freeaddrinfo(ai);
942                 } while(cfg);
943         }
944
945         if(!listen_sockets) {
946                 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to create any listening socket!");
947                 return false;
948         }
949
950         last_config_check = now.tv_sec;
951
952         return true;
953 }
954
955 /*
956   initialize network
957 */
958 bool setup_network(void) {
959         init_connections();
960         init_subnets();
961         init_nodes();
962         init_edges();
963         init_requests();
964
965         if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
966                 if(pinginterval < 1) {
967                         pinginterval = 86400;
968                 }
969         } else
970                 pinginterval = 60;
971
972         if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
973                 pingtimeout = 5;
974         if(pingtimeout < 1 || pingtimeout > pinginterval)
975                 pingtimeout = pinginterval;
976
977         if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
978                 maxoutbufsize = 10 * MTU;
979
980         if(!setup_myself())
981                 return false;
982
983         if(!init_control())
984                 return false;
985
986         /* Run tinc-up script to further initialize the tap interface */
987
988         char *envp[5] = {NULL};
989         xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
990         xasprintf(&envp[1], "DEVICE=%s", device ? : "");
991         xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
992         xasprintf(&envp[3], "NAME=%s", myself->name);
993
994         execute_script("tinc-up", envp);
995
996         for(int i = 0; i < 4; i++)
997                 free(envp[i]);
998
999         /* Run subnet-up scripts for our own subnets */
1000
1001         subnet_update(myself, NULL, true);
1002
1003         return true;
1004 }
1005
1006 /*
1007   close all open network connections
1008 */
1009 void close_network_connections(void) {
1010         for(list_node_t *node = connection_list->head, *next; node; node = next) {
1011                 next = node->next;
1012                 connection_t *c = node->data;
1013                 /* Keep control connections open until the end, so they know when we really terminated */
1014                 if(c->status.control)
1015                         c->socket = -1;
1016                 c->outgoing = NULL;
1017                 terminate_connection(c, false);
1018         }
1019
1020         list_delete_list(outgoing_list);
1021
1022         if(myself && myself->connection) {
1023                 subnet_update(myself, NULL, false);
1024                 terminate_connection(myself->connection, false);
1025                 free_connection(myself->connection);
1026         }
1027
1028         for(int i = 0; i < listen_sockets; i++) {
1029                 io_del(&listen_socket[i].tcp);
1030                 io_del(&listen_socket[i].udp);
1031                 close(listen_socket[i].tcp.fd);
1032                 close(listen_socket[i].udp.fd);
1033         }
1034
1035         char *envp[5] = {NULL};
1036         xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
1037         xasprintf(&envp[1], "DEVICE=%s", device ? : "");
1038         xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
1039         xasprintf(&envp[3], "NAME=%s", myself->name);
1040
1041         exit_requests();
1042         exit_edges();
1043         exit_subnets();
1044         exit_nodes();
1045         exit_connections();
1046
1047         execute_script("tinc-down", envp);
1048
1049         if(myport) free(myport);
1050
1051         for(int i = 0; i < 4; i++)
1052                 free(envp[i]);
1053
1054         devops.close();
1055
1056         exit_control();
1057
1058         return;
1059 }