2c07ec63ebac40f4141fe85c6ae4906a6169dc5c
[tinc] / src / net_setup.c
1 /*
2     net_setup.c -- Setup.
3     Copyright (C) 1998-2003 Ivo Timmermans <ivo@o2w.nl>,
4                   2000-2003 Guus Sliepen <guus@sliepen.eu.org>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: net_setup.c,v 1.1.2.47 2003/12/07 14:28:39 guus Exp $
21 */
22
23 #include "system.h"
24
25 #include <openssl/pem.h>
26 #include <openssl/rsa.h>
27 #include <openssl/rand.h>
28 #include <openssl/err.h>
29 #include <openssl/evp.h>
30
31 #include "avl_tree.h"
32 #include "conf.h"
33 #include "connection.h"
34 #include "device.h"
35 #include "event.h"
36 #include "graph.h"
37 #include "logger.h"
38 #include "net.h"
39 #include "netutl.h"
40 #include "process.h"
41 #include "protocol.h"
42 #include "route.h"
43 #include "subnet.h"
44 #include "utils.h"
45 #include "xalloc.h"
46
47 char *myport;
48
49 bool read_rsa_public_key(connection_t *c)
50 {
51         FILE *fp;
52         char *fname;
53         char *key;
54
55         cp();
56
57         if(!c->rsa_key) {
58                 c->rsa_key = RSA_new();
59 //              RSA_blinding_on(c->rsa_key, NULL);
60         }
61
62         /* First, check for simple PublicKey statement */
63
64         if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &key)) {
65                 BN_hex2bn(&c->rsa_key->n, key);
66                 BN_hex2bn(&c->rsa_key->e, "FFFF");
67                 free(key);
68                 return true;
69         }
70
71         /* Else, check for PublicKeyFile statement and read it */
72
73         if(get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &fname)) {
74                 fp = fopen(fname, "r");
75
76                 if(!fp) {
77                         logger(LOG_ERR, _("Error reading RSA public key file `%s': %s"),
78                                    fname, strerror(errno));
79                         free(fname);
80                         return false;
81                 }
82
83                 free(fname);
84                 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
85                 fclose(fp);
86
87                 if(c->rsa_key)
88                         return true;            /* Woohoo. */
89
90                 /* If it fails, try PEM_read_RSA_PUBKEY. */
91                 fp = fopen(fname, "r");
92
93                 if(!fp) {
94                         logger(LOG_ERR, _("Error reading RSA public key file `%s': %s"),
95                                    fname, strerror(errno));
96                         free(fname);
97                         return false;
98                 }
99
100                 free(fname);
101                 c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
102                 fclose(fp);
103
104                 if(c->rsa_key) {
105 //                              RSA_blinding_on(c->rsa_key, NULL);
106                         return true;
107                 }
108
109                 logger(LOG_ERR, _("Reading RSA public key file `%s' failed: %s"),
110                            fname, strerror(errno));
111                 return false;
112         }
113
114         /* Else, check if a harnessed public key is in the config file */
115
116         asprintf(&fname, "%s/hosts/%s", confbase, c->name);
117         fp = fopen(fname, "r");
118
119         if(fp) {
120                 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
121                 fclose(fp);
122         }
123
124         free(fname);
125
126         if(c->rsa_key)
127                 return true;
128
129         /* Try again with PEM_read_RSA_PUBKEY. */
130
131         asprintf(&fname, "%s/hosts/%s", confbase, c->name);
132         fp = fopen(fname, "r");
133
134         if(fp) {
135                 c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
136 //              RSA_blinding_on(c->rsa_key, NULL);
137                 fclose(fp);
138         }
139
140         free(fname);
141
142         if(c->rsa_key)
143                 return true;
144
145         logger(LOG_ERR, _("No public key for %s specified!"), c->name);
146
147         return false;
148 }
149
150 bool read_rsa_private_key(void)
151 {
152         FILE *fp;
153         char *fname, *key;
154         struct stat s;
155
156         cp();
157
158         if(get_config_string(lookup_config(config_tree, "PrivateKey"), &key)) {
159                 myself->connection->rsa_key = RSA_new();
160 //              RSA_blinding_on(myself->connection->rsa_key, NULL);
161                 BN_hex2bn(&myself->connection->rsa_key->d, key);
162                 BN_hex2bn(&myself->connection->rsa_key->e, "FFFF");
163                 free(key);
164                 return true;
165         }
166
167         if(!get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
168                 asprintf(&fname, "%s/rsa_key.priv", confbase);
169
170         fp = fopen(fname, "r");
171
172         if(!fp) {
173                 logger(LOG_ERR, _("Error reading RSA private key file `%s': %s"),
174                            fname, strerror(errno));
175                 free(fname);
176                 return false;
177         }
178
179 #if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
180         if(fstat(fileno(fp), &s)) {
181                 logger(LOG_ERR, _("Could not stat RSA private key file `%s': %s'"),
182                                 fname, strerror(errno));
183                 free(fname);
184                 return false;
185         }
186
187         if(s.st_mode & ~0100700)
188                 logger(LOG_WARNING, _("Warning: insecure file permissions for RSA private key file `%s'!"), fname);
189 #endif
190
191         myself->connection->rsa_key = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
192         fclose(fp);
193
194         if(!myself->connection->rsa_key) {
195                 logger(LOG_ERR, _("Reading RSA private key file `%s' failed: %s"),
196                            fname, strerror(errno));
197                 free(fname);
198                 return false;
199         }
200
201         free(fname);
202         return true;
203 }
204
205 /*
206   Configure node_t myself and set up the local sockets (listen only)
207 */
208 bool setup_myself(void)
209 {
210         config_t *cfg;
211         subnet_t *subnet;
212         char *name, *hostname, *mode, *afname, *cipher, *digest;
213         char *address = NULL;
214         char *envp[5];
215         struct addrinfo *ai, *aip, hint = {0};
216         bool choice;
217         int i, err;
218
219         cp();
220
221         myself = new_node();
222         myself->connection = new_connection();
223         init_configuration(&myself->connection->config_tree);
224
225         asprintf(&myself->hostname, _("MYSELF"));
226         asprintf(&myself->connection->hostname, _("MYSELF"));
227
228         myself->connection->options = 0;
229         myself->connection->protocol_version = PROT_CURRENT;
230
231         if(!get_config_string(lookup_config(config_tree, "Name"), &name)) {     /* Not acceptable */
232                 logger(LOG_ERR, _("Name for tinc daemon required!"));
233                 return false;
234         }
235
236         if(!check_id(name)) {
237                 logger(LOG_ERR, _("Invalid name for myself!"));
238                 free(name);
239                 return false;
240         }
241
242         myself->name = name;
243         myself->connection->name = xstrdup(name);
244
245         if(!read_rsa_private_key())
246                 return false;
247
248         if(!read_connection_config(myself->connection)) {
249                 logger(LOG_ERR, _("Cannot open host configuration file for myself!"));
250                 return false;
251         }
252
253         if(!read_rsa_public_key(myself->connection))
254                 return false;
255
256         if(!get_config_string
257            (lookup_config(myself->connection->config_tree, "Port"), &myport))
258                 asprintf(&myport, "655");
259
260         /* Read in all the subnets specified in the host configuration file */
261
262         cfg = lookup_config(myself->connection->config_tree, "Subnet");
263
264         while(cfg) {
265                 if(!get_config_subnet(cfg, &subnet))
266                         return false;
267
268                 subnet_add(myself, subnet);
269
270                 cfg = lookup_config_next(myself->connection->config_tree, cfg);
271         }
272
273         /* Check some options */
274
275         if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice))
276                 if(choice)
277                         myself->options |= OPTION_INDIRECT;
278
279         if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice))
280                 if(choice)
281                         myself->options |= OPTION_TCPONLY;
282
283         if(get_config_bool(lookup_config(myself->connection->config_tree, "IndirectData"), &choice))
284                 if(choice)
285                         myself->options |= OPTION_INDIRECT;
286
287         if(get_config_bool(lookup_config(myself->connection->config_tree, "TCPOnly"), &choice))
288                 if(choice)
289                         myself->options |= OPTION_TCPONLY;
290
291         if(myself->options & OPTION_TCPONLY)
292                 myself->options |= OPTION_INDIRECT;
293
294         get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
295
296         if(get_config_string(lookup_config(config_tree, "Mode"), &mode)) {
297                 if(!strcasecmp(mode, "router"))
298                         routing_mode = RMODE_ROUTER;
299                 else if(!strcasecmp(mode, "switch"))
300                         routing_mode = RMODE_SWITCH;
301                 else if(!strcasecmp(mode, "hub"))
302                         routing_mode = RMODE_HUB;
303                 else {
304                         logger(LOG_ERR, _("Invalid routing mode!"));
305                         return false;
306                 }
307                 free(mode);
308         } else
309                 routing_mode = RMODE_ROUTER;
310
311         get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
312
313 #if !defined(SOL_IP) || !defined(IP_TOS)
314         if(priorityinheritance)
315                 logger(LOG_WARNING, _("PriorityInheritance not supported on this platform"));
316 #endif
317
318         if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
319                 macexpire = 600;
320
321         if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
322                 if(maxtimeout <= 0) {
323                         logger(LOG_ERR, _("Bogus maximum timeout!"));
324                         return false;
325                 }
326         } else
327                 maxtimeout = 900;
328
329         if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
330                 if(!strcasecmp(afname, "IPv4"))
331                         addressfamily = AF_INET;
332                 else if(!strcasecmp(afname, "IPv6"))
333                         addressfamily = AF_INET6;
334                 else if(!strcasecmp(afname, "any"))
335                         addressfamily = AF_UNSPEC;
336                 else {
337                         logger(LOG_ERR, _("Invalid address family!"));
338                         return false;
339                 }
340                 free(afname);
341         }
342
343         get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
344
345         /* Generate packet encryption key */
346
347         if(get_config_string
348            (lookup_config(myself->connection->config_tree, "Cipher"), &cipher)) {
349                 if(!strcasecmp(cipher, "none")) {
350                         myself->cipher = NULL;
351                 } else {
352                         myself->cipher = EVP_get_cipherbyname(cipher);
353
354                         if(!myself->cipher) {
355                                 logger(LOG_ERR, _("Unrecognized cipher type!"));
356                                 return false;
357                         }
358                 }
359         } else
360                 myself->cipher = EVP_bf_cbc();
361
362         if(myself->cipher)
363                 myself->keylength = myself->cipher->key_len + myself->cipher->iv_len;
364         else
365                 myself->keylength = 1;
366
367         myself->connection->outcipher = EVP_bf_ofb();
368
369         myself->key = xmalloc(myself->keylength);
370         RAND_pseudo_bytes(myself->key, myself->keylength);
371
372         if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
373                 keylifetime = 3600;
374
375         keyexpires = now + keylifetime;
376         
377         if(myself->cipher) {
378                 EVP_CIPHER_CTX_init(&packet_ctx);
379                 if(!EVP_DecryptInit_ex(&packet_ctx, myself->cipher, NULL, myself->key, myself->key + myself->cipher->key_len)) {
380                         logger(LOG_ERR, _("Error during initialisation of cipher for %s (%s): %s"),
381                                         myself->name, myself->hostname, ERR_error_string(ERR_get_error(), NULL));
382                         return false;
383                 }
384
385         }
386
387         /* Check if we want to use message authentication codes... */
388
389         if(get_config_string
390            (lookup_config(myself->connection->config_tree, "Digest"), &digest)) {
391                 if(!strcasecmp(digest, "none")) {
392                         myself->digest = NULL;
393                 } else {
394                         myself->digest = EVP_get_digestbyname(digest);
395
396                         if(!myself->digest) {
397                                 logger(LOG_ERR, _("Unrecognized digest type!"));
398                                 return false;
399                         }
400                 }
401         } else
402                 myself->digest = EVP_sha1();
403
404         myself->connection->outdigest = EVP_sha1();
405
406         if(get_config_int(lookup_config(myself->connection->config_tree, "MACLength"),
407                 &myself->maclength)) {
408                 if(myself->digest) {
409                         if(myself->maclength > myself->digest->md_size) {
410                                 logger(LOG_ERR, _("MAC length exceeds size of digest!"));
411                                 return false;
412                         } else if(myself->maclength < 0) {
413                                 logger(LOG_ERR, _("Bogus MAC length!"));
414                                 return false;
415                         }
416                 }
417         } else
418                 myself->maclength = 4;
419
420         myself->connection->outmaclength = 0;
421
422         /* Compression */
423
424         if(get_config_int(lookup_config(myself->connection->config_tree, "Compression"),
425                 &myself->compression)) {
426                 if(myself->compression < 0 || myself->compression > 11) {
427                         logger(LOG_ERR, _("Bogus compression level!"));
428                         return false;
429                 }
430         } else
431                 myself->compression = 0;
432
433         myself->connection->outcompression = 0;
434
435         /* Done */
436
437         myself->nexthop = myself;
438         myself->via = myself;
439         myself->status.active = true;
440         myself->status.reachable = true;
441         node_add(myself);
442
443         graph();
444
445         /* Open device */
446
447         if(!setup_device())
448                 return false;
449
450         /* Run tinc-up script to further initialize the tap interface */
451         asprintf(&envp[0], "NETNAME=%s", netname ? : "");
452         asprintf(&envp[1], "DEVICE=%s", device ? : "");
453         asprintf(&envp[2], "INTERFACE=%s", iface ? : "");
454         asprintf(&envp[3], "NAME=%s", myself->name);
455         envp[4] = NULL;
456
457         execute_script("tinc-up", envp);
458
459         for(i = 0; i < 5; i++)
460                 free(envp[i]);
461
462         /* Open sockets */
463
464         get_config_string(lookup_config(config_tree, "BindToAddress"), &address);
465
466         hint.ai_family = addressfamily;
467         hint.ai_socktype = SOCK_STREAM;
468         hint.ai_protocol = IPPROTO_TCP;
469         hint.ai_flags = AI_PASSIVE;
470
471         err = getaddrinfo(address, myport, &hint, &ai);
472
473         if(err || !ai) {
474                 logger(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo",
475                            gai_strerror(err));
476                 return false;
477         }
478
479         listen_sockets = 0;
480
481         for(aip = ai; aip; aip = aip->ai_next) {
482                 listen_socket[listen_sockets].tcp =
483                         setup_listen_socket((sockaddr_t *) aip->ai_addr);
484
485                 if(listen_socket[listen_sockets].tcp < 0)
486                         continue;
487
488                 listen_socket[listen_sockets].udp =
489                         setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
490
491                 if(listen_socket[listen_sockets].udp < 0)
492                         continue;
493
494                 ifdebug(CONNECTIONS) {
495                         hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
496                         logger(LOG_NOTICE, _("Listening on %s"), hostname);
497                         free(hostname);
498                 }
499
500                 listen_socket[listen_sockets].sa.sa = *aip->ai_addr;
501                 listen_sockets++;
502         }
503
504         freeaddrinfo(ai);
505
506         if(listen_sockets)
507                 logger(LOG_NOTICE, _("Ready"));
508         else {
509                 logger(LOG_ERR, _("Unable to create any listening socket!"));
510                 return false;
511         }
512
513         return true;
514 }
515
516 /*
517   setup all initial network connections
518 */
519 bool setup_network_connections(void)
520 {
521         cp();
522
523         now = time(NULL);
524
525         init_connections();
526         init_subnets();
527         init_nodes();
528         init_edges();
529         init_events();
530         init_requests();
531
532         if(get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout)) {
533                 if(pingtimeout < 1) {
534                         pingtimeout = 86400;
535                 }
536         } else
537                 pingtimeout = 60;
538
539         if(!setup_myself())
540                 return false;
541
542         try_outgoing_connections();
543
544         return true;
545 }
546
547 /*
548   close all open network connections
549 */
550 void close_network_connections(void)
551 {
552         avl_node_t *node, *next;
553         connection_t *c;
554         char *envp[5];
555         int i;
556
557         cp();
558
559         for(node = connection_tree->head; node; node = next) {
560                 next = node->next;
561                 c = node->data;
562
563                 if(c->outgoing)
564                         free(c->outgoing->name), free(c->outgoing), c->outgoing = NULL;
565                 terminate_connection(c, false);
566         }
567
568         if(myself && myself->connection)
569                 terminate_connection(myself->connection, false);
570
571         for(i = 0; i < listen_sockets; i++) {
572                 close(listen_socket[i].tcp);
573                 close(listen_socket[i].udp);
574         }
575
576         exit_requests();
577         exit_events();
578         exit_edges();
579         exit_subnets();
580         exit_nodes();
581         exit_connections();
582
583         asprintf(&envp[0], "NETNAME=%s", netname ? : "");
584         asprintf(&envp[1], "DEVICE=%s", device ? : "");
585         asprintf(&envp[2], "INTERFACE=%s", iface ? : "");
586         asprintf(&envp[3], "NAME=%s", myself->name);
587         envp[4] = NULL;
588
589         execute_script("tinc-down", envp);
590
591         for(i = 0; i < 4; i++)
592                 free(envp[i]);
593
594         close_device();
595
596         return;
597 }