Check all EVP_ function calls.
[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.45 2003/10/11 12:16:12 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         if(get_config_string(lookup_config(config_tree, "Mode"), &mode)) {
295                 if(!strcasecmp(mode, "router"))
296                         routing_mode = RMODE_ROUTER;
297                 else if(!strcasecmp(mode, "switch"))
298                         routing_mode = RMODE_SWITCH;
299                 else if(!strcasecmp(mode, "hub"))
300                         routing_mode = RMODE_HUB;
301                 else {
302                         logger(LOG_ERR, _("Invalid routing mode!"));
303                         return false;
304                 }
305                 free(mode);
306         } else
307                 routing_mode = RMODE_ROUTER;
308
309         get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
310
311 #if !defined(SOL_IP) || !defined(IP_TOS)
312         if(priorityinheritance)
313                 logger(LOG_WARNING, _("PriorityInheritance not supported on this platform"));
314 #endif
315
316         if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
317                 macexpire = 600;
318
319         if(get_config_int(lookup_config(myself->connection->config_tree, "MaxTimeout"), &maxtimeout)) {
320                 if(maxtimeout <= 0) {
321                         logger(LOG_ERR, _("Bogus maximum timeout!"));
322                         return false;
323                 }
324         } else
325                 maxtimeout = 900;
326
327         if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
328                 if(!strcasecmp(afname, "IPv4"))
329                         addressfamily = AF_INET;
330                 else if(!strcasecmp(afname, "IPv6"))
331                         addressfamily = AF_INET6;
332                 else if(!strcasecmp(afname, "any"))
333                         addressfamily = AF_UNSPEC;
334                 else {
335                         logger(LOG_ERR, _("Invalid address family!"));
336                         return false;
337                 }
338                 free(afname);
339         }
340
341         get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
342
343         /* Generate packet encryption key */
344
345         if(get_config_string
346            (lookup_config(myself->connection->config_tree, "Cipher"), &cipher)) {
347                 if(!strcasecmp(cipher, "none")) {
348                         myself->cipher = NULL;
349                 } else {
350                         myself->cipher = EVP_get_cipherbyname(cipher);
351
352                         if(!myself->cipher) {
353                                 logger(LOG_ERR, _("Unrecognized cipher type!"));
354                                 return false;
355                         }
356                 }
357         } else
358                 myself->cipher = EVP_bf_cbc();
359
360         if(myself->cipher)
361                 myself->keylength = myself->cipher->key_len + myself->cipher->iv_len;
362         else
363                 myself->keylength = 1;
364
365         myself->connection->outcipher = EVP_bf_ofb();
366
367         myself->key = xmalloc(myself->keylength);
368         RAND_pseudo_bytes(myself->key, myself->keylength);
369
370         if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
371                 keylifetime = 3600;
372
373         keyexpires = now + keylifetime;
374         
375         if(myself->cipher) {
376                 EVP_CIPHER_CTX_init(&packet_ctx);
377                 if(!EVP_DecryptInit_ex(&packet_ctx, myself->cipher, NULL, myself->key, myself->key + myself->cipher->key_len)) {
378                         logger(LOG_ERR, _("Error during initialisation of cipher for %s (%s): %s"),
379                                         myself->name, myself->hostname, ERR_error_string(ERR_get_error(), NULL));
380                         return false;
381                 }
382
383         }
384
385         /* Check if we want to use message authentication codes... */
386
387         if(get_config_string
388            (lookup_config(myself->connection->config_tree, "Digest"), &digest)) {
389                 if(!strcasecmp(digest, "none")) {
390                         myself->digest = NULL;
391                 } else {
392                         myself->digest = EVP_get_digestbyname(digest);
393
394                         if(!myself->digest) {
395                                 logger(LOG_ERR, _("Unrecognized digest type!"));
396                                 return false;
397                         }
398                 }
399         } else
400                 myself->digest = EVP_sha1();
401
402         myself->connection->outdigest = EVP_sha1();
403
404         if(get_config_int(lookup_config(myself->connection->config_tree, "MACLength"),
405                 &myself->maclength)) {
406                 if(myself->digest) {
407                         if(myself->maclength > myself->digest->md_size) {
408                                 logger(LOG_ERR, _("MAC length exceeds size of digest!"));
409                                 return false;
410                         } else if(myself->maclength < 0) {
411                                 logger(LOG_ERR, _("Bogus MAC length!"));
412                                 return false;
413                         }
414                 }
415         } else
416                 myself->maclength = 4;
417
418         myself->connection->outmaclength = 0;
419
420         /* Compression */
421
422         if(get_config_int(lookup_config(myself->connection->config_tree, "Compression"),
423                 &myself->compression)) {
424                 if(myself->compression < 0 || myself->compression > 11) {
425                         logger(LOG_ERR, _("Bogus compression level!"));
426                         return false;
427                 }
428         } else
429                 myself->compression = 0;
430
431         myself->connection->outcompression = 0;
432
433         /* Done */
434
435         myself->nexthop = myself;
436         myself->via = myself;
437         myself->status.active = true;
438         myself->status.reachable = true;
439         node_add(myself);
440
441         graph();
442
443         /* Open device */
444
445         if(!setup_device())
446                 return false;
447
448         /* Run tinc-up script to further initialize the tap interface */
449         asprintf(&envp[0], "NETNAME=%s", netname ? : "");
450         asprintf(&envp[1], "DEVICE=%s", device ? : "");
451         asprintf(&envp[2], "INTERFACE=%s", iface ? : "");
452         asprintf(&envp[3], "NAME=%s", myself->name);
453         envp[4] = NULL;
454
455         execute_script("tinc-up", envp);
456
457         for(i = 0; i < 5; i++)
458                 free(envp[i]);
459
460         /* Open sockets */
461
462         get_config_string(lookup_config(config_tree, "BindToAddress"), &address);
463
464         hint.ai_family = addressfamily;
465         hint.ai_socktype = SOCK_STREAM;
466         hint.ai_protocol = IPPROTO_TCP;
467         hint.ai_flags = AI_PASSIVE;
468
469         err = getaddrinfo(address, myport, &hint, &ai);
470
471         if(err || !ai) {
472                 logger(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo",
473                            gai_strerror(err));
474                 return false;
475         }
476
477         listen_sockets = 0;
478
479         for(aip = ai; aip; aip = aip->ai_next) {
480                 listen_socket[listen_sockets].tcp =
481                         setup_listen_socket((sockaddr_t *) aip->ai_addr);
482
483                 if(listen_socket[listen_sockets].tcp < 0)
484                         continue;
485
486                 listen_socket[listen_sockets].udp =
487                         setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
488
489                 if(listen_socket[listen_sockets].udp < 0)
490                         continue;
491
492                 ifdebug(CONNECTIONS) {
493                         hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
494                         logger(LOG_NOTICE, _("Listening on %s"), hostname);
495                         free(hostname);
496                 }
497
498                 listen_socket[listen_sockets].sa.sa = *aip->ai_addr;
499                 listen_sockets++;
500         }
501
502         freeaddrinfo(ai);
503
504         if(listen_sockets)
505                 logger(LOG_NOTICE, _("Ready"));
506         else {
507                 logger(LOG_ERR, _("Unable to create any listening socket!"));
508                 return false;
509         }
510
511         return true;
512 }
513
514 /*
515   setup all initial network connections
516 */
517 bool setup_network_connections(void)
518 {
519         cp();
520
521         now = time(NULL);
522
523         init_connections();
524         init_subnets();
525         init_nodes();
526         init_edges();
527         init_events();
528         init_requests();
529
530         if(get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout)) {
531                 if(pingtimeout < 1) {
532                         pingtimeout = 86400;
533                 }
534         } else
535                 pingtimeout = 60;
536
537         if(!setup_myself())
538                 return false;
539
540         try_outgoing_connections();
541
542         return true;
543 }
544
545 /*
546   close all open network connections
547 */
548 void close_network_connections(void)
549 {
550         avl_node_t *node, *next;
551         connection_t *c;
552         char *envp[5];
553         int i;
554
555         cp();
556
557         for(node = connection_tree->head; node; node = next) {
558                 next = node->next;
559                 c = node->data;
560
561                 if(c->outgoing)
562                         free(c->outgoing->name), free(c->outgoing), c->outgoing = NULL;
563                 terminate_connection(c, false);
564         }
565
566         if(myself && myself->connection)
567                 terminate_connection(myself->connection, false);
568
569         for(i = 0; i < listen_sockets; i++) {
570                 close(listen_socket[i].tcp);
571                 close(listen_socket[i].udp);
572         }
573
574         exit_requests();
575         exit_events();
576         exit_edges();
577         exit_subnets();
578         exit_nodes();
579         exit_connections();
580
581         asprintf(&envp[0], "NETNAME=%s", netname ? : "");
582         asprintf(&envp[1], "DEVICE=%s", device ? : "");
583         asprintf(&envp[2], "INTERFACE=%s", iface ? : "");
584         asprintf(&envp[3], "NAME=%s", myself->name);
585         envp[4] = NULL;
586
587         execute_script("tinc-down", envp);
588
589         for(i = 0; i < 4; i++)
590                 free(envp[i]);
591
592         close_device();
593
594         return;
595 }