Add missing brainpool.h.
[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                 if(!envname) {
415                         if(strcmp(name + 1, "HOST")) {
416                                 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid Name: environment variable %s does not exist\n", name + 1);
417                                 return false;
418                         }
419                         char envname[32];
420                         if(gethostname(envname, 32)) {
421                                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not get hostname: %s\n", strerror(errno));
422                                 return false;
423                         }
424                         envname[31] = 0;
425                 }
426                 free(name);
427                 name = xstrdup(envname);
428                 for(char *c = name; *c; c++)
429                         if(!isalnum(*c))
430                                 *c = '_';
431         }
432
433         if(!check_id(name)) {
434                 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid name for myself!");
435                 free(name);
436                 return false;
437         }
438
439         return name;
440 }
441
442 bool setup_myself_reloadable(void) {
443         char *proxy = NULL;
444         char *rmode = NULL;
445         char *fmode = NULL;
446         char *bmode = NULL;
447         char *afname = NULL;
448         char *address = NULL;
449         char *space;
450         bool choice;
451
452         free(scriptinterpreter);
453         scriptinterpreter = NULL;
454         get_config_string(lookup_config(config_tree, "ScriptsInterpreter"), &scriptinterpreter);
455
456
457         free(scriptextension);
458         if(!get_config_string(lookup_config(config_tree, "ScriptsExtension"), &scriptextension))
459                 scriptextension = xstrdup("");
460
461         get_config_string(lookup_config(config_tree, "Proxy"), &proxy);
462         if(proxy) {
463                 if((space = strchr(proxy, ' ')))
464                         *space++ = 0;
465
466                 if(!strcasecmp(proxy, "none")) {
467                         proxytype = PROXY_NONE;
468                 } else if(!strcasecmp(proxy, "socks4")) {
469                         proxytype = PROXY_SOCKS4;
470                 } else if(!strcasecmp(proxy, "socks4a")) {
471                         proxytype = PROXY_SOCKS4A;
472                 } else if(!strcasecmp(proxy, "socks5")) {
473                         proxytype = PROXY_SOCKS5;
474                 } else if(!strcasecmp(proxy, "http")) {
475                         proxytype = PROXY_HTTP;
476                 } else if(!strcasecmp(proxy, "exec")) {
477                         proxytype = PROXY_EXEC;
478                 } else {
479                         logger(DEBUG_ALWAYS, LOG_ERR, "Unknown proxy type %s!", proxy);
480                         return false;
481                 }
482
483                 switch(proxytype) {
484                         case PROXY_NONE:
485                         default:
486                                 break;
487
488                         case PROXY_EXEC:
489                                 if(!space || !*space) {
490                                         logger(DEBUG_ALWAYS, LOG_ERR, "Argument expected for proxy type exec!");
491                                         return false;
492                                 }
493                                 proxyhost =  xstrdup(space);
494                                 break;
495
496                         case PROXY_SOCKS4:
497                         case PROXY_SOCKS4A:
498                         case PROXY_SOCKS5:
499                         case PROXY_HTTP:
500                                 proxyhost = space;
501                                 if(space && (space = strchr(space, ' ')))
502                                         *space++ = 0, proxyport = space;
503                                 if(space && (space = strchr(space, ' ')))
504                                         *space++ = 0, proxyuser = space;
505                                 if(space && (space = strchr(space, ' ')))
506                                         *space++ = 0, proxypass = space;
507                                 if(!proxyhost || !*proxyhost || !proxyport || !*proxyport) {
508                                         logger(DEBUG_ALWAYS, LOG_ERR, "Host and port argument expected for proxy!");
509                                         return false;
510                                 }
511                                 proxyhost = xstrdup(proxyhost);
512                                 proxyport = xstrdup(proxyport);
513                                 if(proxyuser && *proxyuser)
514                                         proxyuser = xstrdup(proxyuser);
515                                 if(proxypass && *proxypass)
516                                         proxypass = xstrdup(proxypass);
517                                 break;
518                 }
519
520                 free(proxy);
521         }
522
523         if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice)
524                 myself->options |= OPTION_INDIRECT;
525
526         if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice) && choice)
527                 myself->options |= OPTION_TCPONLY;
528
529         if(myself->options & OPTION_TCPONLY)
530                 myself->options |= OPTION_INDIRECT;
531
532         get_config_bool(lookup_config(config_tree, "DirectOnly"), &directonly);
533         get_config_bool(lookup_config(config_tree, "LocalDiscovery"), &localdiscovery);
534
535         memset(&localdiscovery_address, 0, sizeof localdiscovery_address);
536         if(get_config_string(lookup_config(config_tree, "LocalDiscoveryAddress"), &address)) {
537                 struct addrinfo *ai = str2addrinfo(address, myport, SOCK_DGRAM);
538                 free(address);
539                 if(!ai)
540                         return false;
541                 memcpy(&localdiscovery_address, ai->ai_addr, ai->ai_addrlen);
542         }
543
544
545         if(get_config_string(lookup_config(config_tree, "Mode"), &rmode)) {
546                 if(!strcasecmp(rmode, "router"))
547                         routing_mode = RMODE_ROUTER;
548                 else if(!strcasecmp(rmode, "switch"))
549                         routing_mode = RMODE_SWITCH;
550                 else if(!strcasecmp(rmode, "hub"))
551                         routing_mode = RMODE_HUB;
552                 else {
553                         logger(DEBUG_ALWAYS, LOG_ERR, "Invalid routing mode!");
554                         return false;
555                 }
556                 free(rmode);
557         }
558
559         if(get_config_string(lookup_config(config_tree, "Forwarding"), &fmode)) {
560                 if(!strcasecmp(fmode, "off"))
561                         forwarding_mode = FMODE_OFF;
562                 else if(!strcasecmp(fmode, "internal"))
563                         forwarding_mode = FMODE_INTERNAL;
564                 else if(!strcasecmp(fmode, "kernel"))
565                         forwarding_mode = FMODE_KERNEL;
566                 else {
567                         logger(DEBUG_ALWAYS, LOG_ERR, "Invalid forwarding mode!");
568                         return false;
569                 }
570                 free(fmode);
571         }
572
573         choice = true;
574         get_config_bool(lookup_config(config_tree, "PMTUDiscovery"), &choice);
575         if(choice)
576                 myself->options |= OPTION_PMTU_DISCOVERY;
577
578         choice = true;
579         get_config_bool(lookup_config(config_tree, "ClampMSS"), &choice);
580         if(choice)
581                 myself->options |= OPTION_CLAMP_MSS;
582
583         get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
584         get_config_bool(lookup_config(config_tree, "DecrementTTL"), &decrement_ttl);
585         if(get_config_string(lookup_config(config_tree, "Broadcast"), &bmode)) {
586                 if(!strcasecmp(bmode, "no"))
587                         broadcast_mode = BMODE_NONE;
588                 else if(!strcasecmp(bmode, "yes") || !strcasecmp(bmode, "mst"))
589                         broadcast_mode = BMODE_MST;
590                 else if(!strcasecmp(bmode, "direct"))
591                         broadcast_mode = BMODE_DIRECT;
592                 else {
593                         logger(DEBUG_ALWAYS, LOG_ERR, "Invalid broadcast mode!");
594                         return false;
595                 }
596                 free(bmode);
597         }
598
599 #if !defined(SOL_IP) || !defined(IP_TOS)
600         if(priorityinheritance)
601                 logger(DEBUG_ALWAYS, LOG_WARNING, "%s not supported on this platform", "PriorityInheritance");
602 #endif
603
604         if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
605                 macexpire = 600;
606
607         if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
608                 if(maxtimeout <= 0) {
609                         logger(DEBUG_ALWAYS, LOG_ERR, "Bogus maximum timeout!");
610                         return false;
611                 }
612         } else
613                 maxtimeout = 900;
614
615         if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
616                 if(!strcasecmp(afname, "IPv4"))
617                         addressfamily = AF_INET;
618                 else if(!strcasecmp(afname, "IPv6"))
619                         addressfamily = AF_INET6;
620                 else if(!strcasecmp(afname, "any"))
621                         addressfamily = AF_UNSPEC;
622                 else {
623                         logger(DEBUG_ALWAYS, LOG_ERR, "Invalid address family!");
624                         return false;
625                 }
626                 free(afname);
627         }
628
629         get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
630
631         if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
632                 keylifetime = 3600;
633
634         get_config_int(lookup_config(config_tree, "AutoConnect"), &autoconnect);
635
636         get_config_bool(lookup_config(config_tree, "DisableBuggyPeers"), &disablebuggypeers);
637
638         read_invitation_key();
639
640         return true;
641 }
642
643 /*
644   Configure node_t myself and set up the local sockets (listen only)
645 */
646 static bool setup_myself(void) {
647         char *name, *hostname, *cipher, *digest, *type;
648         char *address = NULL;
649
650         if(!(name = get_name())) {
651                 logger(DEBUG_ALWAYS, LOG_ERR, "Name for tinc daemon required!");
652                 return false;
653         }
654
655         myself = new_node();
656         myself->connection = new_connection();
657         myself->name = name;
658         myself->connection->name = xstrdup(name);
659         read_host_config(config_tree, name);
660
661         if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
662                 myport = xstrdup("655");
663
664         xasprintf(&myself->hostname, "MYSELF port %s", myport);
665         myself->connection->hostname = xstrdup(myself->hostname);
666
667         myself->connection->options = 0;
668         myself->connection->protocol_major = PROT_MAJOR;
669         myself->connection->protocol_minor = PROT_MINOR;
670
671         myself->options |= PROT_MINOR << 24;
672
673         get_config_bool(lookup_config(config_tree, "ExperimentalProtocol"), &experimental);
674
675         if(experimental && !read_ecdsa_private_key())
676                 return false;
677
678         if(!read_rsa_private_key())
679                 return false;
680
681         if(!atoi(myport)) {
682                 struct addrinfo *ai = str2addrinfo("localhost", myport, SOCK_DGRAM);
683                 sockaddr_t sa;
684                 if(!ai || !ai->ai_addr)
685                         return false;
686                 free(myport);
687                 memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
688                 sockaddr2str(&sa, NULL, &myport);
689         }
690
691         /* Read in all the subnets specified in the host configuration file */
692
693         for(config_t *cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
694                 subnet_t *subnet;
695
696                 if(!get_config_subnet(cfg, &subnet))
697                         return false;
698
699                 subnet_add(myself, subnet);
700         }
701
702         /* Check some options */
703
704         if(!setup_myself_reloadable())
705                 return false;
706
707         get_config_bool(lookup_config(config_tree, "StrictSubnets"), &strictsubnets);
708         get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
709         strictsubnets |= tunnelserver;
710
711         if(get_config_int(lookup_config(config_tree, "MaxConnectionBurst"), &max_connection_burst)) {
712                 if(max_connection_burst <= 0) {
713                         logger(DEBUG_ALWAYS, LOG_ERR, "MaxConnectionBurst cannot be negative!");
714                         return false;
715                 }
716         }
717
718         if(get_config_int(lookup_config(config_tree, "UDPRcvBuf"), &udp_rcvbuf)) {
719                 if(udp_rcvbuf <= 0) {
720                         logger(DEBUG_ALWAYS, LOG_ERR, "UDPRcvBuf cannot be negative!");
721                         return false;
722                 }
723         }
724
725         if(get_config_int(lookup_config(config_tree, "UDPSndBuf"), &udp_sndbuf)) {
726                 if(udp_sndbuf <= 0) {
727                         logger(DEBUG_ALWAYS, LOG_ERR, "UDPSndBuf cannot be negative!");
728                         return false;
729                 }
730         }
731
732         int replaywin_int;
733         if(get_config_int(lookup_config(config_tree, "ReplayWindow"), &replaywin_int)) {
734                 if(replaywin_int < 0) {
735                         logger(DEBUG_ALWAYS, LOG_ERR, "ReplayWindow cannot be negative!");
736                         return false;
737                 }
738                 replaywin = (unsigned)replaywin_int;
739                 sptps_replaywin = replaywin;
740         }
741
742         /* Generate packet encryption key */
743
744         if(!get_config_string(lookup_config(config_tree, "Cipher"), &cipher))
745                 cipher = xstrdup("blowfish");
746
747         if(!(myself->incipher = cipher_open_by_name(cipher))) {
748                 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized cipher type!");
749                 return false;
750         }
751
752         free(cipher);
753
754         timeout_add(&keyexpire_timeout, keyexpire_handler, &keyexpire_timeout, &(struct timeval){keylifetime, rand() % 100000});
755
756         /* Check if we want to use message authentication codes... */
757
758         int maclength = 4;
759         get_config_int(lookup_config(config_tree, "MACLength"), &maclength);
760
761         if(maclength < 0) {
762                 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus MAC length!");
763                 return false;
764         }
765
766         if(!get_config_string(lookup_config(config_tree, "Digest"), &digest))
767                 digest = xstrdup("sha1");
768
769         if(!(myself->indigest = digest_open_by_name(digest, maclength))) {
770                 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized digest type!");
771                 return false;
772         }
773
774         free(digest);
775
776         /* Compression */
777
778         if(get_config_int(lookup_config(config_tree, "Compression"), &myself->incompression)) {
779                 if(myself->incompression < 0 || myself->incompression > 11) {
780                         logger(DEBUG_ALWAYS, LOG_ERR, "Bogus compression level!");
781                         return false;
782                 }
783         } else
784                 myself->incompression = 0;
785
786         myself->connection->outcompression = 0;
787
788         /* Done */
789
790         myself->nexthop = myself;
791         myself->via = myself;
792         myself->status.reachable = true;
793         myself->last_state_change = now.tv_sec;
794         myself->status.sptps = experimental;
795         node_add(myself);
796
797         graph();
798
799         if(strictsubnets)
800                 load_all_subnets();
801         else if(autoconnect)
802                 load_all_nodes();
803
804         /* Open device */
805
806         devops = os_devops;
807
808         if(get_config_string(lookup_config(config_tree, "DeviceType"), &type)) {
809                 if(!strcasecmp(type, "dummy"))
810                         devops = dummy_devops;
811                 else if(!strcasecmp(type, "raw_socket"))
812                         devops = raw_socket_devops;
813                 else if(!strcasecmp(type, "multicast"))
814                         devops = multicast_devops;
815 #ifdef ENABLE_UML
816                 else if(!strcasecmp(type, "uml"))
817                         devops = uml_devops;
818 #endif
819 #ifdef ENABLE_VDE
820                 else if(!strcasecmp(type, "vde"))
821                         devops = vde_devops;
822 #endif
823         }
824
825         if(!devops.setup())
826                 return false;
827
828         if(device_fd >= 0)
829                 io_add(&device_io, handle_device_data, NULL, device_fd, IO_READ);
830
831         /* Open sockets */
832
833         if(!do_detach && getenv("LISTEN_FDS")) {
834                 sockaddr_t sa;
835                 socklen_t salen;
836
837                 listen_sockets = atoi(getenv("LISTEN_FDS"));
838 #ifdef HAVE_UNSETENV
839                 unsetenv("LISTEN_FDS");
840 #endif
841
842                 if(listen_sockets > MAXSOCKETS) {
843                         logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
844                         return false;
845                 }
846
847                 for(int i = 0; i < listen_sockets; i++) {
848                         salen = sizeof sa;
849                         if(getsockname(i + 3, &sa.sa, &salen) < 0) {
850                                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not get address of listen fd %d: %s", i + 3, sockstrerror(errno));
851                                 return false;
852                         }
853
854 #ifdef FD_CLOEXEC
855                         fcntl(i + 3, F_SETFD, FD_CLOEXEC);
856 #endif
857
858                         int udp_fd = setup_vpn_in_socket(&sa);
859                         if(udp_fd < 0)
860                                 return false;
861
862                         io_add(&listen_socket[i].tcp, (io_cb_t)handle_new_meta_connection, &listen_socket[i], i + 3, IO_READ);
863                         io_add(&listen_socket[i].udp, (io_cb_t)handle_incoming_vpn_data, &listen_socket[i], udp_fd, IO_READ);
864
865                         if(debug_level >= DEBUG_CONNECTIONS) {
866                                 hostname = sockaddr2hostname(&sa);
867                                 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
868                                 free(hostname);
869                         }
870
871                         memcpy(&listen_socket[i].sa, &sa, salen);
872                 }
873         } else {
874                 listen_sockets = 0;
875                 config_t *cfg = lookup_config(config_tree, "BindToAddress");
876
877                 do {
878                         get_config_string(cfg, &address);
879                         if(cfg)
880                                 cfg = lookup_config_next(config_tree, cfg);
881
882                         char *port = myport;
883
884                         if(address) {
885                                 char *space = strchr(address, ' ');
886                                 if(space) {
887                                         *space++ = 0;
888                                         port = space;
889                                 }
890
891                                 if(!strcmp(address, "*"))
892                                         *address = 0;
893                         }
894
895                         struct addrinfo *ai, hint = {0};
896                         hint.ai_family = addressfamily;
897                         hint.ai_socktype = SOCK_STREAM;
898                         hint.ai_protocol = IPPROTO_TCP;
899                         hint.ai_flags = AI_PASSIVE;
900
901                         int err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
902                         free(address);
903
904                         if(err || !ai) {
905                                 logger(DEBUG_ALWAYS, LOG_ERR, "System call `%s' failed: %s", "getaddrinfo", err == EAI_SYSTEM ? strerror(err) : gai_strerror(err));
906                                 return false;
907                         }
908
909                         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
910                                 if(listen_sockets >= MAXSOCKETS) {
911                                         logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
912                                         return false;
913                                 }
914
915                                 int tcp_fd = setup_listen_socket((sockaddr_t *) aip->ai_addr);
916
917                                 if(tcp_fd < 0)
918                                         continue;
919
920                                 int udp_fd = setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
921
922                                 if(tcp_fd < 0) {
923                                         close(tcp_fd);
924                                         continue;
925                                 }
926
927                                 io_add(&listen_socket[listen_sockets].tcp, handle_new_meta_connection, &listen_socket[listen_sockets], tcp_fd, IO_READ);
928                                 io_add(&listen_socket[listen_sockets].udp, handle_incoming_vpn_data, &listen_socket[listen_sockets], udp_fd, IO_READ);
929
930                                 if(debug_level >= DEBUG_CONNECTIONS) {
931                                         hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
932                                         logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
933                                         free(hostname);
934                                 }
935
936                                 memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
937                                 listen_sockets++;
938                         }
939
940                         freeaddrinfo(ai);
941                 } while(cfg);
942         }
943
944         if(!listen_sockets) {
945                 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to create any listening socket!");
946                 return false;
947         }
948
949         last_config_check = now.tv_sec;
950
951         return true;
952 }
953
954 /*
955   initialize network
956 */
957 bool setup_network(void) {
958         init_connections();
959         init_subnets();
960         init_nodes();
961         init_edges();
962         init_requests();
963
964         if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
965                 if(pinginterval < 1) {
966                         pinginterval = 86400;
967                 }
968         } else
969                 pinginterval = 60;
970
971         if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
972                 pingtimeout = 5;
973         if(pingtimeout < 1 || pingtimeout > pinginterval)
974                 pingtimeout = pinginterval;
975
976         if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
977                 maxoutbufsize = 10 * MTU;
978
979         if(!setup_myself())
980                 return false;
981
982         if(!init_control())
983                 return false;
984
985         /* Run tinc-up script to further initialize the tap interface */
986
987         char *envp[5] = {NULL};
988         xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
989         xasprintf(&envp[1], "DEVICE=%s", device ? : "");
990         xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
991         xasprintf(&envp[3], "NAME=%s", myself->name);
992
993         execute_script("tinc-up", envp);
994
995         for(int i = 0; i < 4; i++)
996                 free(envp[i]);
997
998         /* Run subnet-up scripts for our own subnets */
999
1000         subnet_update(myself, NULL, true);
1001
1002         return true;
1003 }
1004
1005 /*
1006   close all open network connections
1007 */
1008 void close_network_connections(void) {
1009         for(list_node_t *node = connection_list->head, *next; node; node = next) {
1010                 next = node->next;
1011                 connection_t *c = node->data;
1012                 /* Keep control connections open until the end, so they know when we really terminated */
1013                 if(c->status.control)
1014                         c->socket = -1;
1015                 c->outgoing = NULL;
1016                 terminate_connection(c, false);
1017         }
1018
1019         list_delete_list(outgoing_list);
1020
1021         if(myself && myself->connection) {
1022                 subnet_update(myself, NULL, false);
1023                 terminate_connection(myself->connection, false);
1024                 free_connection(myself->connection);
1025         }
1026
1027         for(int i = 0; i < listen_sockets; i++) {
1028                 io_del(&listen_socket[i].tcp);
1029                 io_del(&listen_socket[i].udp);
1030                 close(listen_socket[i].tcp.fd);
1031                 close(listen_socket[i].udp.fd);
1032         }
1033
1034         char *envp[5] = {NULL};
1035         xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
1036         xasprintf(&envp[1], "DEVICE=%s", device ? : "");
1037         xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
1038         xasprintf(&envp[3], "NAME=%s", myself->name);
1039
1040         exit_requests();
1041         exit_edges();
1042         exit_subnets();
1043         exit_nodes();
1044         exit_connections();
1045
1046         execute_script("tinc-down", envp);
1047
1048         if(myport) free(myport);
1049
1050         for(int i = 0; i < 4; i++)
1051                 free(envp[i]);
1052
1053         devops.close();
1054
1055         exit_control();
1056
1057         return;
1058 }