3 Copyright (C) 1998-2005 Ivo Timmermans,
4 2000-2012 Guus Sliepen <guus@tinc-vpn.org>
5 2006 Scott Lamb <slamb@slamb.org>
6 2010 Brandon Black <blblack@gmail.com>
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.
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.
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.
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>
33 #include "connection.h"
50 bool read_rsa_public_key(connection_t *c) {
56 c->rsa_key = RSA_new();
57 // RSA_blinding_on(c->rsa_key, NULL);
60 /* First, check for simple PublicKey statement */
62 if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &key)) {
63 BN_hex2bn(&c->rsa_key->n, key);
64 BN_hex2bn(&c->rsa_key->e, "FFFF");
69 /* Else, check for PublicKeyFile statement and read it */
71 if(get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &fname)) {
72 fp = fopen(fname, "r");
75 logger(LOG_ERR, "Error reading RSA public key file `%s': %s",
76 fname, strerror(errno));
82 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
86 return true; /* Woohoo. */
88 /* If it fails, try PEM_read_RSA_PUBKEY. */
89 fp = fopen(fname, "r");
92 logger(LOG_ERR, "Error reading RSA public key file `%s': %s",
93 fname, strerror(errno));
99 c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
103 // RSA_blinding_on(c->rsa_key, NULL);
107 logger(LOG_ERR, "Reading RSA public key file `%s' failed: %s",
108 fname, strerror(errno));
112 /* Else, check if a harnessed public key is in the config file */
114 xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
115 fp = fopen(fname, "r");
118 logger(LOG_ERR, "Error reading RSA public key file `%s': %s", fname, strerror(errno));
123 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
130 /* Try again with PEM_read_RSA_PUBKEY. */
132 xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
133 fp = fopen(fname, "r");
136 logger(LOG_ERR, "Error reading RSA public key file `%s': %s", fname, strerror(errno));
141 c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
142 // RSA_blinding_on(c->rsa_key, NULL);
149 logger(LOG_ERR, "No public key for %s specified!", c->name);
154 static bool read_rsa_private_key(void) {
156 char *fname, *key, *pubkey;
159 if(get_config_string(lookup_config(config_tree, "PrivateKey"), &key)) {
160 if(!get_config_string(lookup_config(config_tree, "PublicKey"), &pubkey)) {
161 logger(LOG_ERR, "PrivateKey used but no PublicKey found!");
164 myself->connection->rsa_key = RSA_new();
165 // RSA_blinding_on(myself->connection->rsa_key, NULL);
166 BN_hex2bn(&myself->connection->rsa_key->d, key);
167 BN_hex2bn(&myself->connection->rsa_key->n, pubkey);
168 BN_hex2bn(&myself->connection->rsa_key->e, "FFFF");
174 if(!get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
175 xasprintf(&fname, "%s/rsa_key.priv", confbase);
177 fp = fopen(fname, "r");
180 logger(LOG_ERR, "Error reading RSA private key file `%s': %s",
181 fname, strerror(errno));
186 #if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
187 if(fstat(fileno(fp), &s)) {
188 logger(LOG_ERR, "Could not stat RSA private key file `%s': %s'",
189 fname, strerror(errno));
194 if(s.st_mode & ~0100700)
195 logger(LOG_WARNING, "Warning: insecure file permissions for RSA private key file `%s'!", fname);
198 myself->connection->rsa_key = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
201 if(!myself->connection->rsa_key) {
202 logger(LOG_ERR, "Reading RSA private key file `%s' failed: %s",
203 fname, strerror(errno));
213 Read Subnets from all host config files
215 void load_all_subnets(void) {
220 avl_tree_t *config_tree;
225 xasprintf(&dname, "%s/hosts", confbase);
226 dir = opendir(dname);
228 logger(LOG_ERR, "Could not open %s: %s", dname, strerror(errno));
233 while((ent = readdir(dir))) {
234 if(!check_id(ent->d_name))
237 n = lookup_node(ent->d_name);
238 #ifdef _DIRENT_HAVE_D_TYPE
239 //if(ent->d_type != DT_REG)
243 xasprintf(&fname, "%s/hosts/%s", confbase, ent->d_name);
244 init_configuration(&config_tree);
245 read_config_options(config_tree, ent->d_name);
246 read_config_file(config_tree, fname);
251 n->name = xstrdup(ent->d_name);
255 for(cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
256 if(!get_config_subnet(cfg, &s))
259 if((s2 = lookup_subnet(n, s))) {
266 exit_configuration(&config_tree);
273 Configure node_t myself and set up the local sockets (listen only)
275 static bool setup_myself(void) {
278 char *name, *hostname, *mode, *afname, *cipher, *digest, *type;
280 char *address = NULL;
282 struct addrinfo *ai, *aip, hint = {0};
288 myself->connection = new_connection();
290 myself->hostname = xstrdup("MYSELF");
291 myself->connection->hostname = xstrdup("MYSELF");
293 myself->connection->options = 0;
294 myself->connection->protocol_version = PROT_CURRENT;
296 if(!get_config_string(lookup_config(config_tree, "Name"), &name)) { /* Not acceptable */
297 logger(LOG_ERR, "Name for tinc daemon required!");
301 if(!check_id(name)) {
302 logger(LOG_ERR, "Invalid name for myself!");
308 myself->connection->name = xstrdup(name);
309 xasprintf(&fname, "%s/hosts/%s", confbase, name);
310 read_config_options(config_tree, name);
311 read_config_file(config_tree, fname);
314 if(!read_rsa_private_key())
317 if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
318 myport = xstrdup("655");
321 struct addrinfo *ai = str2addrinfo("localhost", myport, SOCK_DGRAM);
323 if(!ai || !ai->ai_addr)
326 memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
327 sockaddr2str(&sa, NULL, &myport);
330 /* Read in all the subnets specified in the host configuration file */
332 cfg = lookup_config(config_tree, "Subnet");
335 if(!get_config_subnet(cfg, &subnet))
338 subnet_add(myself, subnet);
340 cfg = lookup_config_next(config_tree, cfg);
343 /* Check some options */
345 if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice)
346 myself->options |= OPTION_INDIRECT;
348 if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice) && choice)
349 myself->options |= OPTION_TCPONLY;
351 if(myself->options & OPTION_TCPONLY)
352 myself->options |= OPTION_INDIRECT;
354 get_config_bool(lookup_config(config_tree, "DirectOnly"), &directonly);
355 get_config_bool(lookup_config(config_tree, "StrictSubnets"), &strictsubnets);
356 get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
357 get_config_bool(lookup_config(config_tree, "LocalDiscovery"), &localdiscovery);
358 strictsubnets |= tunnelserver;
360 if(get_config_string(lookup_config(config_tree, "Mode"), &mode)) {
361 if(!strcasecmp(mode, "router"))
362 routing_mode = RMODE_ROUTER;
363 else if(!strcasecmp(mode, "switch"))
364 routing_mode = RMODE_SWITCH;
365 else if(!strcasecmp(mode, "hub"))
366 routing_mode = RMODE_HUB;
368 logger(LOG_ERR, "Invalid routing mode!");
374 if(get_config_string(lookup_config(config_tree, "Forwarding"), &mode)) {
375 if(!strcasecmp(mode, "off"))
376 forwarding_mode = FMODE_OFF;
377 else if(!strcasecmp(mode, "internal"))
378 forwarding_mode = FMODE_INTERNAL;
379 else if(!strcasecmp(mode, "kernel"))
380 forwarding_mode = FMODE_KERNEL;
382 logger(LOG_ERR, "Invalid forwarding mode!");
389 get_config_bool(lookup_config(config_tree, "PMTUDiscovery"), &choice);
391 myself->options |= OPTION_PMTU_DISCOVERY;
394 get_config_bool(lookup_config(config_tree, "ClampMSS"), &choice);
396 myself->options |= OPTION_CLAMP_MSS;
398 get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
399 get_config_bool(lookup_config(config_tree, "DecrementTTL"), &decrement_ttl);
400 get_config_bool(lookup_config(config_tree, "Broadcast"), &broadcast);
402 #if !defined(SOL_IP) || !defined(IP_TOS)
403 if(priorityinheritance)
404 logger(LOG_WARNING, "%s not supported on this platform", "PriorityInheritance");
407 if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
410 if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
411 if(maxtimeout <= 0) {
412 logger(LOG_ERR, "Bogus maximum timeout!");
418 if(get_config_int(lookup_config(config_tree, "UDPRcvBuf"), &udp_rcvbuf)) {
419 if(udp_rcvbuf <= 0) {
420 logger(LOG_ERR, "UDPRcvBuf cannot be negative!");
425 if(get_config_int(lookup_config(config_tree, "UDPSndBuf"), &udp_sndbuf)) {
426 if(udp_sndbuf <= 0) {
427 logger(LOG_ERR, "UDPSndBuf cannot be negative!");
432 if(get_config_int(lookup_config(config_tree, "ReplayWindow"), &replaywin_int)) {
433 if(replaywin_int < 0) {
434 logger(LOG_ERR, "ReplayWindow cannot be negative!");
437 replaywin = (unsigned)replaywin_int;
440 if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
441 if(!strcasecmp(afname, "IPv4"))
442 addressfamily = AF_INET;
443 else if(!strcasecmp(afname, "IPv6"))
444 addressfamily = AF_INET6;
445 else if(!strcasecmp(afname, "any"))
446 addressfamily = AF_UNSPEC;
448 logger(LOG_ERR, "Invalid address family!");
454 get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
456 /* Generate packet encryption key */
459 (lookup_config(config_tree, "Cipher"), &cipher)) {
460 if(!strcasecmp(cipher, "none")) {
461 myself->incipher = NULL;
463 myself->incipher = EVP_get_cipherbyname(cipher);
465 if(!myself->incipher) {
466 logger(LOG_ERR, "Unrecognized cipher type!");
471 myself->incipher = EVP_bf_cbc();
474 myself->inkeylength = myself->incipher->key_len + myself->incipher->iv_len;
476 myself->inkeylength = 1;
478 myself->connection->outcipher = EVP_bf_ofb();
480 if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
483 keyexpires = now + keylifetime;
485 /* Check if we want to use message authentication codes... */
487 if(get_config_string(lookup_config(config_tree, "Digest"), &digest)) {
488 if(!strcasecmp(digest, "none")) {
489 myself->indigest = NULL;
491 myself->indigest = EVP_get_digestbyname(digest);
493 if(!myself->indigest) {
494 logger(LOG_ERR, "Unrecognized digest type!");
499 myself->indigest = EVP_sha1();
501 myself->connection->outdigest = EVP_sha1();
503 if(get_config_int(lookup_config(config_tree, "MACLength"), &myself->inmaclength)) {
504 if(myself->indigest) {
505 if(myself->inmaclength > myself->indigest->md_size) {
506 logger(LOG_ERR, "MAC length exceeds size of digest!");
508 } else if(myself->inmaclength < 0) {
509 logger(LOG_ERR, "Bogus MAC length!");
514 myself->inmaclength = 4;
516 myself->connection->outmaclength = 0;
520 if(get_config_int(lookup_config(config_tree, "Compression"), &myself->incompression)) {
521 if(myself->incompression < 0 || myself->incompression > 11) {
522 logger(LOG_ERR, "Bogus compression level!");
526 myself->incompression = 0;
528 myself->connection->outcompression = 0;
532 myself->nexthop = myself;
533 myself->via = myself;
534 myself->status.reachable = true;
546 if(get_config_string(lookup_config(config_tree, "DeviceType"), &type)) {
547 if(!strcasecmp(type, "dummy"))
548 devops = dummy_devops;
549 else if(!strcasecmp(type, "raw_socket"))
550 devops = raw_socket_devops;
552 else if(!strcasecmp(type, "uml"))
556 else if(!strcasecmp(type, "vde"))
564 /* Run tinc-up script to further initialize the tap interface */
565 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
566 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
567 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
568 xasprintf(&envp[3], "NAME=%s", myself->name);
571 execute_script("tinc-up", envp);
573 for(i = 0; i < 5; i++)
576 /* Run subnet-up scripts for our own subnets */
578 subnet_update(myself, NULL, true);
583 cfg = lookup_config(config_tree, "BindToAddress");
586 get_config_string(cfg, &address);
588 cfg = lookup_config_next(config_tree, cfg);
593 char *space = strchr(address, ' ');
599 if(!strcmp(address, "*"))
603 hint.ai_family = addressfamily;
604 hint.ai_socktype = SOCK_STREAM;
605 hint.ai_protocol = IPPROTO_TCP;
606 hint.ai_flags = AI_PASSIVE;
608 err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
612 logger(LOG_ERR, "System call `%s' failed: %s", "getaddrinfo",
617 for(aip = ai; aip; aip = aip->ai_next) {
618 if(listen_sockets >= MAXSOCKETS) {
619 logger(LOG_ERR, "Too many listening sockets");
623 listen_socket[listen_sockets].tcp =
624 setup_listen_socket((sockaddr_t *) aip->ai_addr);
626 if(listen_socket[listen_sockets].tcp < 0)
629 listen_socket[listen_sockets].udp =
630 setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
632 if(listen_socket[listen_sockets].udp < 0)
635 ifdebug(CONNECTIONS) {
636 hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
637 logger(LOG_NOTICE, "Listening on %s", hostname);
641 memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
649 logger(LOG_NOTICE, "Ready");
651 logger(LOG_ERR, "Unable to create any listening socket!");
661 bool setup_network(void) {
671 if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
672 if(pinginterval < 1) {
673 pinginterval = 86400;
678 if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
680 if(pingtimeout < 1 || pingtimeout > pinginterval)
681 pingtimeout = pinginterval;
683 if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
684 maxoutbufsize = 10 * MTU;
693 close all open network connections
695 void close_network_connections(void) {
696 avl_node_t *node, *next;
701 for(node = connection_tree->head; node; node = next) {
705 terminate_connection(c, false);
708 for(list_node_t *node = outgoing_list->head; node; node = node->next) {
709 outgoing_t *outgoing = node->data;
712 event_del(outgoing->event);
715 list_delete_list(outgoing_list);
717 if(myself && myself->connection) {
718 subnet_update(myself, NULL, false);
719 terminate_connection(myself->connection, false);
720 free_connection(myself->connection);
723 for(i = 0; i < listen_sockets; i++) {
724 close(listen_socket[i].tcp);
725 close(listen_socket[i].udp);
728 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
729 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
730 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
731 xasprintf(&envp[3], "NAME=%s", myself->name);
741 execute_script("tinc-down", envp);
743 if(myport) free(myport);
745 for(i = 0; i < 4; i++)