Allow "none" for Cipher and Digest again.
[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         if(autoconnect < 0)
637                 autoconnect = 0;
638
639         get_config_bool(lookup_config(config_tree, "DisableBuggyPeers"), &disablebuggypeers);
640
641         read_invitation_key();
642
643         return true;
644 }
645
646 /*
647   Configure node_t myself and set up the local sockets (listen only)
648 */
649 static bool setup_myself(void) {
650         char *name, *hostname, *cipher, *digest, *type;
651         char *address = NULL;
652
653         if(!(name = get_name())) {
654                 logger(DEBUG_ALWAYS, LOG_ERR, "Name for tinc daemon required!");
655                 return false;
656         }
657
658         myself = new_node();
659         myself->connection = new_connection();
660         myself->name = name;
661         myself->connection->name = xstrdup(name);
662         read_host_config(config_tree, name);
663
664         if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
665                 myport = xstrdup("655");
666
667         xasprintf(&myself->hostname, "MYSELF port %s", myport);
668         myself->connection->hostname = xstrdup(myself->hostname);
669
670         myself->connection->options = 0;
671         myself->connection->protocol_major = PROT_MAJOR;
672         myself->connection->protocol_minor = PROT_MINOR;
673
674         myself->options |= PROT_MINOR << 24;
675
676         get_config_bool(lookup_config(config_tree, "ExperimentalProtocol"), &experimental);
677
678         if(experimental && !read_ecdsa_private_key())
679                 return false;
680
681         if(!read_rsa_private_key())
682                 return false;
683
684         if(!atoi(myport)) {
685                 struct addrinfo *ai = str2addrinfo("localhost", myport, SOCK_DGRAM);
686                 sockaddr_t sa;
687                 if(!ai || !ai->ai_addr)
688                         return false;
689                 free(myport);
690                 memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
691                 sockaddr2str(&sa, NULL, &myport);
692         }
693
694         /* Read in all the subnets specified in the host configuration file */
695
696         for(config_t *cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
697                 subnet_t *subnet;
698
699                 if(!get_config_subnet(cfg, &subnet))
700                         return false;
701
702                 subnet_add(myself, subnet);
703         }
704
705         /* Check some options */
706
707         if(!setup_myself_reloadable())
708                 return false;
709
710         get_config_bool(lookup_config(config_tree, "StrictSubnets"), &strictsubnets);
711         get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
712         strictsubnets |= tunnelserver;
713
714         if(get_config_int(lookup_config(config_tree, "MaxConnectionBurst"), &max_connection_burst)) {
715                 if(max_connection_burst <= 0) {
716                         logger(DEBUG_ALWAYS, LOG_ERR, "MaxConnectionBurst cannot be negative!");
717                         return false;
718                 }
719         }
720
721         if(get_config_int(lookup_config(config_tree, "UDPRcvBuf"), &udp_rcvbuf)) {
722                 if(udp_rcvbuf <= 0) {
723                         logger(DEBUG_ALWAYS, LOG_ERR, "UDPRcvBuf cannot be negative!");
724                         return false;
725                 }
726         }
727
728         if(get_config_int(lookup_config(config_tree, "UDPSndBuf"), &udp_sndbuf)) {
729                 if(udp_sndbuf <= 0) {
730                         logger(DEBUG_ALWAYS, LOG_ERR, "UDPSndBuf cannot be negative!");
731                         return false;
732                 }
733         }
734
735         int replaywin_int;
736         if(get_config_int(lookup_config(config_tree, "ReplayWindow"), &replaywin_int)) {
737                 if(replaywin_int < 0) {
738                         logger(DEBUG_ALWAYS, LOG_ERR, "ReplayWindow cannot be negative!");
739                         return false;
740                 }
741                 replaywin = (unsigned)replaywin_int;
742                 sptps_replaywin = replaywin;
743         }
744
745         /* Generate packet encryption key */
746
747         if(!get_config_string(lookup_config(config_tree, "Cipher"), &cipher))
748                 cipher = xstrdup("blowfish");
749
750         if(!strcasecmp(cipher, "none")) {
751                 myself->incipher = NULL;
752         } else if(!(myself->incipher = cipher_open_by_name(cipher))) {
753                 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized cipher type!");
754                 return false;
755         }
756
757         free(cipher);
758
759         timeout_add(&keyexpire_timeout, keyexpire_handler, &keyexpire_timeout, &(struct timeval){keylifetime, rand() % 100000});
760
761         /* Check if we want to use message authentication codes... */
762
763         int maclength = 4;
764         get_config_int(lookup_config(config_tree, "MACLength"), &maclength);
765
766         if(maclength < 0) {
767                 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus MAC length!");
768                 return false;
769         }
770
771         if(!get_config_string(lookup_config(config_tree, "Digest"), &digest))
772                 digest = xstrdup("sha1");
773
774         if(!strcasecmp(digest, "none")) {
775                 myself->indigest = NULL;
776         } else if(!(myself->indigest = digest_open_by_name(digest, maclength))) {
777                 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized digest type!");
778                 return false;
779         }
780
781         free(digest);
782
783         /* Compression */
784
785         if(get_config_int(lookup_config(config_tree, "Compression"), &myself->incompression)) {
786                 if(myself->incompression < 0 || myself->incompression > 11) {
787                         logger(DEBUG_ALWAYS, LOG_ERR, "Bogus compression level!");
788                         return false;
789                 }
790         } else
791                 myself->incompression = 0;
792
793         myself->connection->outcompression = 0;
794
795         /* Done */
796
797         myself->nexthop = myself;
798         myself->via = myself;
799         myself->status.reachable = true;
800         myself->last_state_change = now.tv_sec;
801         myself->status.sptps = experimental;
802         node_add(myself);
803
804         graph();
805
806         if(strictsubnets)
807                 load_all_subnets();
808         else if(autoconnect)
809                 load_all_nodes();
810
811         /* Open device */
812
813         devops = os_devops;
814
815         if(get_config_string(lookup_config(config_tree, "DeviceType"), &type)) {
816                 if(!strcasecmp(type, "dummy"))
817                         devops = dummy_devops;
818                 else if(!strcasecmp(type, "raw_socket"))
819                         devops = raw_socket_devops;
820                 else if(!strcasecmp(type, "multicast"))
821                         devops = multicast_devops;
822 #ifdef ENABLE_UML
823                 else if(!strcasecmp(type, "uml"))
824                         devops = uml_devops;
825 #endif
826 #ifdef ENABLE_VDE
827                 else if(!strcasecmp(type, "vde"))
828                         devops = vde_devops;
829 #endif
830         }
831
832         if(!devops.setup())
833                 return false;
834
835         if(device_fd >= 0)
836                 io_add(&device_io, handle_device_data, NULL, device_fd, IO_READ);
837
838         /* Open sockets */
839
840         if(!do_detach && getenv("LISTEN_FDS")) {
841                 sockaddr_t sa;
842                 socklen_t salen;
843
844                 listen_sockets = atoi(getenv("LISTEN_FDS"));
845 #ifdef HAVE_UNSETENV
846                 unsetenv("LISTEN_FDS");
847 #endif
848
849                 if(listen_sockets > MAXSOCKETS) {
850                         logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
851                         return false;
852                 }
853
854                 for(int i = 0; i < listen_sockets; i++) {
855                         salen = sizeof sa;
856                         if(getsockname(i + 3, &sa.sa, &salen) < 0) {
857                                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not get address of listen fd %d: %s", i + 3, sockstrerror(errno));
858                                 return false;
859                         }
860
861 #ifdef FD_CLOEXEC
862                         fcntl(i + 3, F_SETFD, FD_CLOEXEC);
863 #endif
864
865                         int udp_fd = setup_vpn_in_socket(&sa);
866                         if(udp_fd < 0)
867                                 return false;
868
869                         io_add(&listen_socket[i].tcp, (io_cb_t)handle_new_meta_connection, &listen_socket[i], i + 3, IO_READ);
870                         io_add(&listen_socket[i].udp, (io_cb_t)handle_incoming_vpn_data, &listen_socket[i], udp_fd, IO_READ);
871
872                         if(debug_level >= DEBUG_CONNECTIONS) {
873                                 hostname = sockaddr2hostname(&sa);
874                                 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
875                                 free(hostname);
876                         }
877
878                         memcpy(&listen_socket[i].sa, &sa, salen);
879                 }
880         } else {
881                 listen_sockets = 0;
882                 config_t *cfg = lookup_config(config_tree, "BindToAddress");
883
884                 do {
885                         get_config_string(cfg, &address);
886                         if(cfg)
887                                 cfg = lookup_config_next(config_tree, cfg);
888
889                         char *port = myport;
890
891                         if(address) {
892                                 char *space = strchr(address, ' ');
893                                 if(space) {
894                                         *space++ = 0;
895                                         port = space;
896                                 }
897
898                                 if(!strcmp(address, "*"))
899                                         *address = 0;
900                         }
901
902                         struct addrinfo *ai, hint = {0};
903                         hint.ai_family = addressfamily;
904                         hint.ai_socktype = SOCK_STREAM;
905                         hint.ai_protocol = IPPROTO_TCP;
906                         hint.ai_flags = AI_PASSIVE;
907
908                         int err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
909                         free(address);
910
911                         if(err || !ai) {
912                                 logger(DEBUG_ALWAYS, LOG_ERR, "System call `%s' failed: %s", "getaddrinfo", err == EAI_SYSTEM ? strerror(err) : gai_strerror(err));
913                                 return false;
914                         }
915
916                         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
917                                 if(listen_sockets >= MAXSOCKETS) {
918                                         logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
919                                         return false;
920                                 }
921
922                                 int tcp_fd = setup_listen_socket((sockaddr_t *) aip->ai_addr);
923
924                                 if(tcp_fd < 0)
925                                         continue;
926
927                                 int udp_fd = setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
928
929                                 if(tcp_fd < 0) {
930                                         close(tcp_fd);
931                                         continue;
932                                 }
933
934                                 io_add(&listen_socket[listen_sockets].tcp, handle_new_meta_connection, &listen_socket[listen_sockets], tcp_fd, IO_READ);
935                                 io_add(&listen_socket[listen_sockets].udp, handle_incoming_vpn_data, &listen_socket[listen_sockets], udp_fd, IO_READ);
936
937                                 if(debug_level >= DEBUG_CONNECTIONS) {
938                                         hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
939                                         logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
940                                         free(hostname);
941                                 }
942
943                                 memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
944                                 listen_sockets++;
945                         }
946
947                         freeaddrinfo(ai);
948                 } while(cfg);
949         }
950
951         if(!listen_sockets) {
952                 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to create any listening socket!");
953                 return false;
954         }
955
956         last_config_check = now.tv_sec;
957
958         return true;
959 }
960
961 /*
962   initialize network
963 */
964 bool setup_network(void) {
965         init_connections();
966         init_subnets();
967         init_nodes();
968         init_edges();
969         init_requests();
970
971         if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
972                 if(pinginterval < 1) {
973                         pinginterval = 86400;
974                 }
975         } else
976                 pinginterval = 60;
977
978         if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
979                 pingtimeout = 5;
980         if(pingtimeout < 1 || pingtimeout > pinginterval)
981                 pingtimeout = pinginterval;
982
983         if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
984                 maxoutbufsize = 10 * MTU;
985
986         if(!setup_myself())
987                 return false;
988
989         if(!init_control())
990                 return false;
991
992         /* Run tinc-up script to further initialize the tap interface */
993
994         char *envp[5] = {NULL};
995         xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
996         xasprintf(&envp[1], "DEVICE=%s", device ? : "");
997         xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
998         xasprintf(&envp[3], "NAME=%s", myself->name);
999
1000         execute_script("tinc-up", envp);
1001
1002         for(int i = 0; i < 4; i++)
1003                 free(envp[i]);
1004
1005         /* Run subnet-up scripts for our own subnets */
1006
1007         subnet_update(myself, NULL, true);
1008
1009         return true;
1010 }
1011
1012 /*
1013   close all open network connections
1014 */
1015 void close_network_connections(void) {
1016         for(list_node_t *node = connection_list->head, *next; node; node = next) {
1017                 next = node->next;
1018                 connection_t *c = node->data;
1019                 /* Keep control connections open until the end, so they know when we really terminated */
1020                 if(c->status.control)
1021                         c->socket = -1;
1022                 c->outgoing = NULL;
1023                 terminate_connection(c, false);
1024         }
1025
1026         list_delete_list(outgoing_list);
1027
1028         if(myself && myself->connection) {
1029                 subnet_update(myself, NULL, false);
1030                 terminate_connection(myself->connection, false);
1031                 free_connection(myself->connection);
1032         }
1033
1034         for(int i = 0; i < listen_sockets; i++) {
1035                 io_del(&listen_socket[i].tcp);
1036                 io_del(&listen_socket[i].udp);
1037                 close(listen_socket[i].tcp.fd);
1038                 close(listen_socket[i].udp.fd);
1039         }
1040
1041         char *envp[5] = {NULL};
1042         xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
1043         xasprintf(&envp[1], "DEVICE=%s", device ? : "");
1044         xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
1045         xasprintf(&envp[3], "NAME=%s", myself->name);
1046
1047         exit_requests();
1048         exit_edges();
1049         exit_subnets();
1050         exit_nodes();
1051         exit_connections();
1052
1053         execute_script("tinc-down", envp);
1054
1055         if(myport) free(myport);
1056
1057         for(int i = 0; i < 4; i++)
1058                 free(envp[i]);
1059
1060         devops.close();
1061
1062         exit_control();
1063
1064         return;
1065 }