3 Copyright (C) 1998-2005 Ivo Timmermans,
4 2000-2010 Guus Sliepen <guus@tinc-vpn.org>
5 2006 Scott Lamb <slamb@slamb.org>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <openssl/pem.h>
25 #include <openssl/rsa.h>
26 #include <openssl/rand.h>
27 #include <openssl/err.h>
28 #include <openssl/evp.h>
32 #include "connection.h"
48 bool read_rsa_public_key(connection_t *c) {
54 c->rsa_key = RSA_new();
55 // RSA_blinding_on(c->rsa_key, NULL);
58 /* First, check for simple PublicKey statement */
60 if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &key)) {
61 BN_hex2bn(&c->rsa_key->n, key);
62 BN_hex2bn(&c->rsa_key->e, "FFFF");
67 /* Else, check for PublicKeyFile statement and read it */
69 if(get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &fname)) {
70 fp = fopen(fname, "r");
73 logger(LOG_ERR, "Error reading RSA public key file `%s': %s",
74 fname, strerror(errno));
80 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
84 return true; /* Woohoo. */
86 /* If it fails, try PEM_read_RSA_PUBKEY. */
87 fp = fopen(fname, "r");
90 logger(LOG_ERR, "Error reading RSA public key file `%s': %s",
91 fname, strerror(errno));
97 c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
101 // RSA_blinding_on(c->rsa_key, NULL);
105 logger(LOG_ERR, "Reading RSA public key file `%s' failed: %s",
106 fname, strerror(errno));
110 /* Else, check if a harnessed public key is in the config file */
112 xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
113 fp = fopen(fname, "r");
116 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
125 /* Try again with PEM_read_RSA_PUBKEY. */
127 xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
128 fp = fopen(fname, "r");
131 c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
132 // RSA_blinding_on(c->rsa_key, NULL);
141 logger(LOG_ERR, "No public key for %s specified!", c->name);
146 bool read_rsa_private_key(void) {
148 char *fname, *key, *pubkey;
151 if(get_config_string(lookup_config(config_tree, "PrivateKey"), &key)) {
152 if(!get_config_string(lookup_config(config_tree, "PublicKey"), &pubkey)) {
153 logger(LOG_ERR, "PrivateKey used but no PublicKey found!");
156 myself->connection->rsa_key = RSA_new();
157 // RSA_blinding_on(myself->connection->rsa_key, NULL);
158 BN_hex2bn(&myself->connection->rsa_key->d, key);
159 BN_hex2bn(&myself->connection->rsa_key->n, pubkey);
160 BN_hex2bn(&myself->connection->rsa_key->e, "FFFF");
166 if(!get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
167 xasprintf(&fname, "%s/rsa_key.priv", confbase);
169 fp = fopen(fname, "r");
172 logger(LOG_ERR, "Error reading RSA private key file `%s': %s",
173 fname, strerror(errno));
178 #if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
179 if(fstat(fileno(fp), &s)) {
180 logger(LOG_ERR, "Could not stat RSA private key file `%s': %s'",
181 fname, strerror(errno));
186 if(s.st_mode & ~0100700)
187 logger(LOG_WARNING, "Warning: insecure file permissions for RSA private key file `%s'!", fname);
190 myself->connection->rsa_key = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
193 if(!myself->connection->rsa_key) {
194 logger(LOG_ERR, "Reading RSA private key file `%s' failed: %s",
195 fname, strerror(errno));
205 Read Subnets from all host config files
207 void load_all_subnets(void) {
212 avl_tree_t *config_tree;
218 xasprintf(&dname, "%s/hosts", confbase);
219 dir = opendir(dname);
221 logger(LOG_ERR, "Could not open %s: %s", dname, strerror(errno));
226 while((ent = readdir(dir))) {
227 if(!check_id(ent->d_name))
230 n = lookup_node(ent->d_name);
231 #ifdef _DIRENT_HAVE_D_TYPE
232 //if(ent->d_type != DT_REG)
236 xasprintf(&fname, "%s/hosts/%s", confbase, ent->d_name);
237 init_configuration(&config_tree);
238 result = read_config_file(config_tree, fname);
245 n->name = xstrdup(ent->d_name);
249 for(cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
250 if(!get_config_subnet(cfg, &s))
253 if((s2 = lookup_subnet(n, s))) {
260 exit_configuration(&config_tree);
267 Configure node_t myself and set up the local sockets (listen only)
269 bool setup_myself(void) {
272 char *name, *hostname, *mode, *afname, *cipher, *digest;
274 char *address = NULL;
276 struct addrinfo *ai, *aip, hint = {0};
281 myself->connection = new_connection();
283 myself->hostname = xstrdup("MYSELF");
284 myself->connection->hostname = xstrdup("MYSELF");
286 myself->connection->options = 0;
287 myself->connection->protocol_version = PROT_CURRENT;
289 if(!get_config_string(lookup_config(config_tree, "Name"), &name)) { /* Not acceptable */
290 logger(LOG_ERR, "Name for tinc daemon required!");
294 if(!check_id(name)) {
295 logger(LOG_ERR, "Invalid name for myself!");
301 myself->connection->name = xstrdup(name);
302 xasprintf(&fname, "%s/hosts/%s", confbase, name);
303 read_config_file(config_tree, fname);
306 if(!read_rsa_private_key())
309 if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
310 myport = xstrdup("655");
313 struct addrinfo *ai = str2addrinfo("localhost", myport, SOCK_DGRAM);
315 if(!ai || !ai->ai_addr)
318 memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
319 sockaddr2str(&sa, NULL, &myport);
322 /* Read in all the subnets specified in the host configuration file */
324 cfg = lookup_config(config_tree, "Subnet");
327 if(!get_config_subnet(cfg, &subnet))
330 subnet_add(myself, subnet);
332 cfg = lookup_config_next(config_tree, cfg);
335 /* Check some options */
337 if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice)
338 myself->options |= OPTION_INDIRECT;
340 if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice) && choice)
341 myself->options |= OPTION_TCPONLY;
343 if(myself->options & OPTION_TCPONLY)
344 myself->options |= OPTION_INDIRECT;
346 get_config_bool(lookup_config(config_tree, "DirectOnly"), &directonly);
347 get_config_bool(lookup_config(config_tree, "StrictSubnets"), &strictsubnets);
348 get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
349 strictsubnets |= tunnelserver;
351 if(get_config_string(lookup_config(config_tree, "Mode"), &mode)) {
352 if(!strcasecmp(mode, "router"))
353 routing_mode = RMODE_ROUTER;
354 else if(!strcasecmp(mode, "switch"))
355 routing_mode = RMODE_SWITCH;
356 else if(!strcasecmp(mode, "hub"))
357 routing_mode = RMODE_HUB;
359 logger(LOG_ERR, "Invalid routing mode!");
365 if(get_config_string(lookup_config(config_tree, "Forwarding"), &mode)) {
366 if(!strcasecmp(mode, "off"))
367 forwarding_mode = FMODE_OFF;
368 else if(!strcasecmp(mode, "internal"))
369 forwarding_mode = FMODE_INTERNAL;
370 else if(!strcasecmp(mode, "kernel"))
371 forwarding_mode = FMODE_KERNEL;
373 logger(LOG_ERR, "Invalid forwarding mode!");
380 get_config_bool(lookup_config(config_tree, "PMTUDiscovery"), &choice);
382 myself->options |= OPTION_PMTU_DISCOVERY;
385 get_config_bool(lookup_config(config_tree, "ClampMSS"), &choice);
387 myself->options |= OPTION_CLAMP_MSS;
389 get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
391 #if !defined(SOL_IP) || !defined(IP_TOS)
392 if(priorityinheritance)
393 logger(LOG_WARNING, "%s not supported on this platform", "PriorityInheritance");
396 if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
399 if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
400 if(maxtimeout <= 0) {
401 logger(LOG_ERR, "Bogus maximum timeout!");
407 if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
408 if(!strcasecmp(afname, "IPv4"))
409 addressfamily = AF_INET;
410 else if(!strcasecmp(afname, "IPv6"))
411 addressfamily = AF_INET6;
412 else if(!strcasecmp(afname, "any"))
413 addressfamily = AF_UNSPEC;
415 logger(LOG_ERR, "Invalid address family!");
421 get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
423 /* Generate packet encryption key */
426 (lookup_config(config_tree, "Cipher"), &cipher)) {
427 if(!strcasecmp(cipher, "none")) {
428 myself->incipher = NULL;
430 myself->incipher = EVP_get_cipherbyname(cipher);
432 if(!myself->incipher) {
433 logger(LOG_ERR, "Unrecognized cipher type!");
438 myself->incipher = EVP_bf_cbc();
441 myself->inkeylength = myself->incipher->key_len + myself->incipher->iv_len;
443 myself->inkeylength = 1;
445 myself->connection->outcipher = EVP_bf_ofb();
447 if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
450 keyexpires = now + keylifetime;
452 /* Check if we want to use message authentication codes... */
454 if(get_config_string(lookup_config(config_tree, "Digest"), &digest)) {
455 if(!strcasecmp(digest, "none")) {
456 myself->indigest = NULL;
458 myself->indigest = EVP_get_digestbyname(digest);
460 if(!myself->indigest) {
461 logger(LOG_ERR, "Unrecognized digest type!");
466 myself->indigest = EVP_sha1();
468 myself->connection->outdigest = EVP_sha1();
470 if(get_config_int(lookup_config(config_tree, "MACLength"), &myself->inmaclength)) {
471 if(myself->indigest) {
472 if(myself->inmaclength > myself->indigest->md_size) {
473 logger(LOG_ERR, "MAC length exceeds size of digest!");
475 } else if(myself->inmaclength < 0) {
476 logger(LOG_ERR, "Bogus MAC length!");
481 myself->inmaclength = 4;
483 myself->connection->outmaclength = 0;
487 if(get_config_int(lookup_config(config_tree, "Compression"), &myself->incompression)) {
488 if(myself->incompression < 0 || myself->incompression > 11) {
489 logger(LOG_ERR, "Bogus compression level!");
493 myself->incompression = 0;
495 myself->connection->outcompression = 0;
499 myself->nexthop = myself;
500 myself->via = myself;
501 myself->status.reachable = true;
514 /* Run tinc-up script to further initialize the tap interface */
515 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
516 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
517 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
518 xasprintf(&envp[3], "NAME=%s", myself->name);
521 execute_script("tinc-up", envp);
523 for(i = 0; i < 5; i++)
526 /* Run subnet-up scripts for our own subnets */
528 subnet_update(myself, NULL, true);
532 get_config_string(lookup_config(config_tree, "BindToAddress"), &address);
534 hint.ai_family = addressfamily;
535 hint.ai_socktype = SOCK_STREAM;
536 hint.ai_protocol = IPPROTO_TCP;
537 hint.ai_flags = AI_PASSIVE;
539 err = getaddrinfo(address, myport, &hint, &ai);
542 logger(LOG_ERR, "System call `%s' failed: %s", "getaddrinfo",
549 for(aip = ai; aip; aip = aip->ai_next) {
550 listen_socket[listen_sockets].tcp =
551 setup_listen_socket((sockaddr_t *) aip->ai_addr);
553 if(listen_socket[listen_sockets].tcp < 0)
556 listen_socket[listen_sockets].udp =
557 setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
559 if(listen_socket[listen_sockets].udp < 0)
562 ifdebug(CONNECTIONS) {
563 hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
564 logger(LOG_NOTICE, "Listening on %s", hostname);
568 memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
575 logger(LOG_NOTICE, "Ready");
577 logger(LOG_ERR, "Unable to create any listening socket!");
587 bool setup_network(void) {
597 if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
598 if(pinginterval < 1) {
599 pinginterval = 86400;
604 if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
606 if(pingtimeout < 1 || pingtimeout > pinginterval)
607 pingtimeout = pinginterval;
609 if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
610 maxoutbufsize = 10 * MTU;
619 close all open network connections
621 void close_network_connections(void) {
622 avl_node_t *node, *next;
627 for(node = connection_tree->head; node; node = next) {
631 terminate_connection(c, false);
634 for(list_node_t *node = outgoing_list->head; node; node = node->next) {
635 outgoing_t *outgoing = node->data;
638 event_del(outgoing->event);
641 list_delete_list(outgoing_list);
643 if(myself && myself->connection) {
644 subnet_update(myself, NULL, false);
645 terminate_connection(myself->connection, false);
646 free_connection(myself->connection);
649 for(i = 0; i < listen_sockets; i++) {
650 close(listen_socket[i].tcp);
651 close(listen_socket[i].udp);
654 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
655 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
656 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
657 xasprintf(&envp[3], "NAME=%s", myself->name);
667 execute_script("tinc-down", envp);
669 if(myport) free(myport);
671 for(i = 0; i < 4; i++)