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>
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"
54 proxytype_t proxytype;
56 bool read_rsa_public_key(connection_t *c) {
63 c->rsa_key = RSA_new();
64 // RSA_blinding_on(c->rsa_key, NULL);
67 /* First, check for simple PublicKey statement */
69 if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &key)) {
70 if(BN_hex2bn(&c->rsa_key->n, key) != strlen(key)) {
71 logger(LOG_ERR, "Invalid PublicKey for %s!", c->name);
74 BN_hex2bn(&c->rsa_key->e, "FFFF");
79 /* Else, check for PublicKeyFile statement and read it */
81 if(get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &pubname)) {
82 fp = fopen(pubname, "r");
85 logger(LOG_ERR, "Error reading RSA public key file `%s': %s", pubname, strerror(errno));
90 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
95 return true; /* Woohoo. */
98 /* If it fails, try PEM_read_RSA_PUBKEY. */
99 fp = fopen(pubname, "r");
102 logger(LOG_ERR, "Error reading RSA public key file `%s': %s", pubname, strerror(errno));
107 c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
111 // RSA_blinding_on(c->rsa_key, NULL);
116 logger(LOG_ERR, "Reading RSA public key file `%s' failed: %s", pubname, strerror(errno));
121 /* Else, check if a harnessed public key is in the config file */
123 xasprintf(&hcfname, "%s/hosts/%s", confbase, c->name);
124 fp = fopen(hcfname, "r");
127 logger(LOG_ERR, "Error reading RSA public key file `%s': %s", hcfname, strerror(errno));
132 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
140 /* Try again with PEM_read_RSA_PUBKEY. */
142 fp = fopen(hcfname, "r");
145 logger(LOG_ERR, "Error reading RSA public key file `%s': %s", hcfname, strerror(errno));
151 c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
152 // RSA_blinding_on(c->rsa_key, NULL);
158 logger(LOG_ERR, "No public key for %s specified!", c->name);
163 static bool read_rsa_private_key(void) {
165 char *fname, *key, *pubkey;
167 if(get_config_string(lookup_config(config_tree, "PrivateKey"), &key)) {
168 if(!get_config_string(lookup_config(config_tree, "PublicKey"), &pubkey)) {
169 logger(LOG_ERR, "PrivateKey used but no PublicKey found!");
172 myself->connection->rsa_key = RSA_new();
173 // RSA_blinding_on(myself->connection->rsa_key, NULL);
174 if(BN_hex2bn(&myself->connection->rsa_key->d, key) != strlen(key)) {
175 logger(LOG_ERR, "Invalid PrivateKey for myself!");
178 if(BN_hex2bn(&myself->connection->rsa_key->n, pubkey) != strlen(pubkey)) {
179 logger(LOG_ERR, "Invalid PublicKey for myself!");
182 BN_hex2bn(&myself->connection->rsa_key->e, "FFFF");
188 if(!get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
189 xasprintf(&fname, "%s/rsa_key.priv", confbase);
191 fp = fopen(fname, "r");
194 logger(LOG_ERR, "Error reading RSA private key file `%s': %s",
195 fname, strerror(errno));
200 #if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
203 if(fstat(fileno(fp), &s)) {
204 logger(LOG_ERR, "Could not stat RSA private key file `%s': %s'",
205 fname, strerror(errno));
210 if(s.st_mode & ~0100700)
211 logger(LOG_WARNING, "Warning: insecure file permissions for RSA private key file `%s'!", fname);
214 myself->connection->rsa_key = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
217 if(!myself->connection->rsa_key) {
218 logger(LOG_ERR, "Reading RSA private key file `%s' failed: %s",
219 fname, strerror(errno));
229 Read Subnets from all host config files
231 void load_all_subnets(void) {
236 avl_tree_t *config_tree;
241 xasprintf(&dname, "%s/hosts", confbase);
242 dir = opendir(dname);
244 logger(LOG_ERR, "Could not open %s: %s", dname, strerror(errno));
249 while((ent = readdir(dir))) {
250 if(!check_id(ent->d_name))
253 n = lookup_node(ent->d_name);
254 #ifdef _DIRENT_HAVE_D_TYPE
255 //if(ent->d_type != DT_REG)
259 xasprintf(&fname, "%s/hosts/%s", confbase, ent->d_name);
260 init_configuration(&config_tree);
261 read_config_options(config_tree, ent->d_name);
262 read_config_file(config_tree, fname);
267 n->name = xstrdup(ent->d_name);
271 for(cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
272 if(!get_config_subnet(cfg, &s))
275 if((s2 = lookup_subnet(n, s))) {
282 exit_configuration(&config_tree);
288 char *get_name(void) {
291 get_config_string(lookup_config(config_tree, "Name"), &name);
297 char *envname = getenv(name + 1);
298 char hostname[32] = "";
300 if(strcmp(name + 1, "HOST")) {
301 fprintf(stderr, "Invalid Name: environment variable %s does not exist\n", name + 1);
304 if(gethostname(hostname, sizeof hostname) || !*hostname) {
305 fprintf(stderr, "Could not get hostname: %s\n", strerror(errno));
312 name = xstrdup(envname);
313 for(char *c = name; *c; c++)
318 if(!check_id(name)) {
319 logger(LOG_ERR, "Invalid name for myself!");
328 Configure node_t myself and set up the local sockets (listen only)
330 static bool setup_myself(void) {
333 char *name, *hostname, *mode, *afname, *cipher, *digest, *type;
335 char *address = NULL;
338 char *envp[5] = {NULL};
339 struct addrinfo *ai, *aip, hint = {0};
343 bool port_specified = false;
346 myself->connection = new_connection();
348 myself->hostname = xstrdup("MYSELF");
349 myself->connection->hostname = xstrdup("MYSELF");
351 myself->connection->options = 0;
352 myself->connection->protocol_version = PROT_CURRENT;
354 if(!(name = get_name())) {
355 logger(LOG_ERR, "Name for tinc daemon required!");
359 /* Read tinc.conf and our own host config file */
362 myself->connection->name = xstrdup(name);
363 xasprintf(&fname, "%s/hosts/%s", confbase, name);
364 read_config_options(config_tree, name);
365 read_config_file(config_tree, fname);
368 if(!read_rsa_private_key())
371 if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
372 myport = xstrdup("655");
374 port_specified = true;
376 /* Ensure myport is numeric */
379 struct addrinfo *ai = str2addrinfo("localhost", myport, SOCK_DGRAM);
381 if(!ai || !ai->ai_addr)
384 memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
385 sockaddr2str(&sa, NULL, &myport);
388 get_config_string(lookup_config(config_tree, "Proxy"), &proxy);
390 if((space = strchr(proxy, ' ')))
393 if(!strcasecmp(proxy, "none")) {
394 proxytype = PROXY_NONE;
395 } else if(!strcasecmp(proxy, "socks4")) {
396 proxytype = PROXY_SOCKS4;
397 } else if(!strcasecmp(proxy, "socks4a")) {
398 proxytype = PROXY_SOCKS4A;
399 } else if(!strcasecmp(proxy, "socks5")) {
400 proxytype = PROXY_SOCKS5;
401 } else if(!strcasecmp(proxy, "http")) {
402 proxytype = PROXY_HTTP;
403 } else if(!strcasecmp(proxy, "exec")) {
404 proxytype = PROXY_EXEC;
406 logger(LOG_ERR, "Unknown proxy type %s!", proxy);
416 if(!space || !*space) {
417 logger(LOG_ERR, "Argument expected for proxy type exec!");
420 proxyhost = xstrdup(space);
428 if(space && (space = strchr(space, ' ')))
429 *space++ = 0, proxyport = space;
430 if(space && (space = strchr(space, ' ')))
431 *space++ = 0, proxyuser = space;
432 if(space && (space = strchr(space, ' ')))
433 *space++ = 0, proxypass = space;
434 if(!proxyhost || !*proxyhost || !proxyport || !*proxyport) {
435 logger(LOG_ERR, "Host and port argument expected for proxy!");
438 proxyhost = xstrdup(proxyhost);
439 proxyport = xstrdup(proxyport);
440 if(proxyuser && *proxyuser)
441 proxyuser = xstrdup(proxyuser);
442 if(proxypass && *proxypass)
443 proxypass = xstrdup(proxypass);
450 /* Read in all the subnets specified in the host configuration file */
452 cfg = lookup_config(config_tree, "Subnet");
455 if(!get_config_subnet(cfg, &subnet))
458 subnet_add(myself, subnet);
460 cfg = lookup_config_next(config_tree, cfg);
463 /* Check some options */
465 if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice)
466 myself->options |= OPTION_INDIRECT;
468 if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice) && choice)
469 myself->options |= OPTION_TCPONLY;
471 if(myself->options & OPTION_TCPONLY)
472 myself->options |= OPTION_INDIRECT;
474 get_config_bool(lookup_config(config_tree, "DirectOnly"), &directonly);
475 get_config_bool(lookup_config(config_tree, "StrictSubnets"), &strictsubnets);
476 get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
477 get_config_bool(lookup_config(config_tree, "LocalDiscovery"), &localdiscovery);
478 strictsubnets |= tunnelserver;
480 if(get_config_string(lookup_config(config_tree, "Mode"), &mode)) {
481 if(!strcasecmp(mode, "router"))
482 routing_mode = RMODE_ROUTER;
483 else if(!strcasecmp(mode, "switch"))
484 routing_mode = RMODE_SWITCH;
485 else if(!strcasecmp(mode, "hub"))
486 routing_mode = RMODE_HUB;
488 logger(LOG_ERR, "Invalid routing mode!");
494 if(get_config_string(lookup_config(config_tree, "Forwarding"), &mode)) {
495 if(!strcasecmp(mode, "off"))
496 forwarding_mode = FMODE_OFF;
497 else if(!strcasecmp(mode, "internal"))
498 forwarding_mode = FMODE_INTERNAL;
499 else if(!strcasecmp(mode, "kernel"))
500 forwarding_mode = FMODE_KERNEL;
502 logger(LOG_ERR, "Invalid forwarding mode!");
509 get_config_bool(lookup_config(config_tree, "PMTUDiscovery"), &choice);
511 myself->options |= OPTION_PMTU_DISCOVERY;
514 get_config_bool(lookup_config(config_tree, "ClampMSS"), &choice);
516 myself->options |= OPTION_CLAMP_MSS;
518 get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
519 get_config_bool(lookup_config(config_tree, "DecrementTTL"), &decrement_ttl);
520 if(get_config_string(lookup_config(config_tree, "Broadcast"), &mode)) {
521 if(!strcasecmp(mode, "no"))
522 broadcast_mode = BMODE_NONE;
523 else if(!strcasecmp(mode, "yes") || !strcasecmp(mode, "mst"))
524 broadcast_mode = BMODE_MST;
525 else if(!strcasecmp(mode, "direct"))
526 broadcast_mode = BMODE_DIRECT;
528 logger(LOG_ERR, "Invalid broadcast mode!");
534 #if !defined(SOL_IP) || !defined(IP_TOS)
535 if(priorityinheritance)
536 logger(LOG_WARNING, "%s not supported on this platform", "PriorityInheritance");
539 if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
542 if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
543 if(maxtimeout <= 0) {
544 logger(LOG_ERR, "Bogus maximum timeout!");
550 if(get_config_int(lookup_config(config_tree, "UDPRcvBuf"), &udp_rcvbuf)) {
551 if(udp_rcvbuf <= 0) {
552 logger(LOG_ERR, "UDPRcvBuf cannot be negative!");
557 if(get_config_int(lookup_config(config_tree, "UDPSndBuf"), &udp_sndbuf)) {
558 if(udp_sndbuf <= 0) {
559 logger(LOG_ERR, "UDPSndBuf cannot be negative!");
564 if(get_config_int(lookup_config(config_tree, "ReplayWindow"), &replaywin_int)) {
565 if(replaywin_int < 0) {
566 logger(LOG_ERR, "ReplayWindow cannot be negative!");
569 replaywin = (unsigned)replaywin_int;
572 if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
573 if(!strcasecmp(afname, "IPv4"))
574 addressfamily = AF_INET;
575 else if(!strcasecmp(afname, "IPv6"))
576 addressfamily = AF_INET6;
577 else if(!strcasecmp(afname, "any"))
578 addressfamily = AF_UNSPEC;
580 logger(LOG_ERR, "Invalid address family!");
586 get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
588 /* Generate packet encryption key */
591 (lookup_config(config_tree, "Cipher"), &cipher)) {
592 if(!strcasecmp(cipher, "none")) {
593 myself->incipher = NULL;
595 myself->incipher = EVP_get_cipherbyname(cipher);
597 if(!myself->incipher) {
598 logger(LOG_ERR, "Unrecognized cipher type!");
603 myself->incipher = EVP_bf_cbc();
606 myself->inkeylength = myself->incipher->key_len + myself->incipher->iv_len;
608 myself->inkeylength = 1;
610 myself->connection->outcipher = EVP_bf_ofb();
612 if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
615 keyexpires = now + keylifetime;
617 /* Check if we want to use message authentication codes... */
619 if(get_config_string(lookup_config(config_tree, "Digest"), &digest)) {
620 if(!strcasecmp(digest, "none")) {
621 myself->indigest = NULL;
623 myself->indigest = EVP_get_digestbyname(digest);
625 if(!myself->indigest) {
626 logger(LOG_ERR, "Unrecognized digest type!");
631 myself->indigest = EVP_sha1();
633 myself->connection->outdigest = EVP_sha1();
635 if(get_config_int(lookup_config(config_tree, "MACLength"), &myself->inmaclength)) {
636 if(myself->indigest) {
637 if(myself->inmaclength > myself->indigest->md_size) {
638 logger(LOG_ERR, "MAC length exceeds size of digest!");
640 } else if(myself->inmaclength < 0) {
641 logger(LOG_ERR, "Bogus MAC length!");
646 myself->inmaclength = 4;
648 myself->connection->outmaclength = 0;
652 if(get_config_int(lookup_config(config_tree, "Compression"), &myself->incompression)) {
653 if(myself->incompression < 0 || myself->incompression > 11) {
654 logger(LOG_ERR, "Bogus compression level!");
658 myself->incompression = 0;
660 myself->connection->outcompression = 0;
664 myself->nexthop = myself;
665 myself->via = myself;
666 myself->status.reachable = true;
678 if(get_config_string(lookup_config(config_tree, "DeviceType"), &type)) {
679 if(!strcasecmp(type, "dummy"))
680 devops = dummy_devops;
681 else if(!strcasecmp(type, "raw_socket"))
682 devops = raw_socket_devops;
683 else if(!strcasecmp(type, "multicast"))
684 devops = multicast_devops;
686 else if(!strcasecmp(type, "uml"))
690 else if(!strcasecmp(type, "vde"))
698 /* Run tinc-up script to further initialize the tap interface */
699 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
700 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
701 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
702 xasprintf(&envp[3], "NAME=%s", myself->name);
704 execute_script("tinc-up", envp);
706 for(i = 0; i < 4; i++)
709 /* Run subnet-up scripts for our own subnets */
711 subnet_update(myself, NULL, true);
715 if(!do_detach && getenv("LISTEN_FDS")) {
719 listen_sockets = atoi(getenv("LISTEN_FDS"));
721 unsetenv("LISTEN_FDS");
724 if(listen_sockets > MAXSOCKETS) {
725 logger(LOG_ERR, "Too many listening sockets");
729 for(i = 0; i < listen_sockets; i++) {
731 if(getsockname(i + 3, &sa.sa, &salen) < 0) {
732 logger(LOG_ERR, "Could not get address of listen fd %d: %s", i + 3, sockstrerror(errno));
736 listen_socket[i].tcp = i + 3;
739 fcntl(i + 3, F_SETFD, FD_CLOEXEC);
742 listen_socket[i].udp = setup_vpn_in_socket(&sa);
743 if(listen_socket[i].udp < 0)
746 ifdebug(CONNECTIONS) {
747 hostname = sockaddr2hostname(&sa);
748 logger(LOG_NOTICE, "Listening on %s", hostname);
752 memcpy(&listen_socket[i].sa, &sa, salen);
756 cfg = lookup_config(config_tree, "BindToAddress");
759 get_config_string(cfg, &address);
761 cfg = lookup_config_next(config_tree, cfg);
766 char *space = strchr(address, ' ');
772 if(!strcmp(address, "*"))
776 hint.ai_family = addressfamily;
777 hint.ai_socktype = SOCK_STREAM;
778 hint.ai_protocol = IPPROTO_TCP;
779 hint.ai_flags = AI_PASSIVE;
781 err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
785 logger(LOG_ERR, "System call `%s' failed: %s", "getaddrinfo",
790 for(aip = ai; aip; aip = aip->ai_next) {
791 if(listen_sockets >= MAXSOCKETS) {
792 logger(LOG_ERR, "Too many listening sockets");
796 listen_socket[listen_sockets].tcp =
797 setup_listen_socket((sockaddr_t *) aip->ai_addr);
799 if(listen_socket[listen_sockets].tcp < 0)
802 listen_socket[listen_sockets].udp =
803 setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
805 if(listen_socket[listen_sockets].udp < 0)
808 ifdebug(CONNECTIONS) {
809 hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
810 logger(LOG_NOTICE, "Listening on %s", hostname);
814 memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
822 if(!listen_sockets) {
823 logger(LOG_ERR, "Unable to create any listening socket!");
827 /* If no Port option was specified, set myport to the port used by the first listening socket. */
829 if(!port_specified) {
831 socklen_t salen = sizeof sa;
832 if(!getsockname(listen_socket[0].udp, &sa.sa, &salen)) {
834 sockaddr2str(&sa, NULL, &myport);
836 myport = xstrdup("655");
842 logger(LOG_NOTICE, "Ready");
849 bool setup_network(void) {
859 if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
860 if(pinginterval < 1) {
861 pinginterval = 86400;
866 if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
868 if(pingtimeout < 1 || pingtimeout > pinginterval)
869 pingtimeout = pinginterval;
871 if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
872 maxoutbufsize = 10 * MTU;
881 close all open network connections
883 void close_network_connections(void) {
884 avl_node_t *node, *next;
886 char *envp[5] = {NULL};
889 for(node = connection_tree->head; node; node = next) {
893 terminate_connection(c, false);
896 for(list_node_t *node = outgoing_list->head; node; node = node->next) {
897 outgoing_t *outgoing = node->data;
900 event_del(outgoing->event);
903 list_delete_list(outgoing_list);
905 if(myself && myself->connection) {
906 subnet_update(myself, NULL, false);
907 terminate_connection(myself->connection, false);
908 free_connection(myself->connection);
911 for(i = 0; i < listen_sockets; i++) {
912 close(listen_socket[i].tcp);
913 close(listen_socket[i].udp);
916 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
917 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
918 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
919 xasprintf(&envp[3], "NAME=%s", myself->name);
928 execute_script("tinc-down", envp);
930 if(myport) free(myport);
932 for(i = 0; i < 4; i++)