3 Copyright (C) 1998-2005 Ivo Timmermans,
4 2000-2016 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.
27 #include "connection.h"
52 static io_t device_io;
54 bool device_standby = false;
60 proxytype_t proxytype;
62 bool disablebuggypeers;
64 char *scriptinterpreter;
65 char *scriptextension;
67 bool node_read_ecdsa_public_key(node_t *n) {
68 if(ecdsa_active(n->ecdsa))
71 splay_tree_t *config_tree;
76 init_configuration(&config_tree);
77 if(!read_host_config(config_tree, n->name))
80 /* First, check for simple Ed25519PublicKey statement */
82 if(get_config_string(lookup_config(config_tree, "Ed25519PublicKey"), &p)) {
83 n->ecdsa = ecdsa_set_base64_public_key(p);
88 /* Else, check for Ed25519PublicKeyFile statement and read it */
90 if(!get_config_string(lookup_config(config_tree, "Ed25519PublicKeyFile"), &pubname))
91 xasprintf(&pubname, "%s" SLASH "hosts" SLASH "%s", confbase, n->name);
93 fp = fopen(pubname, "r");
98 n->ecdsa = ecdsa_read_pem_public_key(fp);
102 exit_configuration(&config_tree);
107 bool read_ecdsa_public_key(connection_t *c) {
108 if(ecdsa_active(c->ecdsa))
115 if(!c->config_tree) {
116 init_configuration(&c->config_tree);
117 if(!read_host_config(c->config_tree, c->name))
121 /* First, check for simple Ed25519PublicKey statement */
123 if(get_config_string(lookup_config(c->config_tree, "Ed25519PublicKey"), &p)) {
124 c->ecdsa = ecdsa_set_base64_public_key(p);
129 /* Else, check for Ed25519PublicKeyFile statement and read it */
131 if(!get_config_string(lookup_config(c->config_tree, "Ed25519PublicKeyFile"), &fname))
132 xasprintf(&fname, "%s" SLASH "hosts" SLASH "%s", confbase, c->name);
134 fp = fopen(fname, "r");
137 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading Ed25519 public key file `%s': %s",
138 fname, strerror(errno));
143 c->ecdsa = ecdsa_read_pem_public_key(fp);
145 if(!c->ecdsa && errno != ENOENT)
146 logger(DEBUG_ALWAYS, LOG_ERR, "Parsing Ed25519 public key file `%s' failed.", fname);
153 #ifndef DISABLE_LEGACY
154 bool read_rsa_public_key(connection_t *c) {
159 /* First, check for simple PublicKey statement */
161 if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &n)) {
162 c->rsa = rsa_set_hex_public_key(n, "FFFF");
167 /* Else, check for PublicKeyFile statement and read it */
169 if(!get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &fname))
170 xasprintf(&fname, "%s" SLASH "hosts" SLASH "%s", confbase, c->name);
172 fp = fopen(fname, "r");
175 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading RSA public key file `%s': %s", fname, strerror(errno));
180 c->rsa = rsa_read_pem_public_key(fp);
184 logger(DEBUG_ALWAYS, LOG_ERR, "Reading RSA public key file `%s' failed: %s", fname, strerror(errno));
190 static bool read_ecdsa_private_key(void) {
194 /* Check for PrivateKeyFile statement and read it */
196 if(!get_config_string(lookup_config(config_tree, "Ed25519PrivateKeyFile"), &fname))
197 xasprintf(&fname, "%s" SLASH "ed25519_key.priv", confbase);
199 fp = fopen(fname, "r");
202 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading Ed25519 private key file `%s': %s", fname, strerror(errno));
204 logger(DEBUG_ALWAYS, LOG_INFO, "Create an Ed25519 keypair with `tinc -n %s generate-ed25519-keys'.", netname ?: ".");
209 #if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
212 if(fstat(fileno(fp), &s)) {
213 logger(DEBUG_ALWAYS, LOG_ERR, "Could not stat Ed25519 private key file `%s': %s'", fname, strerror(errno));
218 if(s.st_mode & ~0100700)
219 logger(DEBUG_ALWAYS, LOG_WARNING, "Warning: insecure file permissions for Ed25519 private key file `%s'!", fname);
222 myself->connection->ecdsa = ecdsa_read_pem_private_key(fp);
225 if(!myself->connection->ecdsa)
226 logger(DEBUG_ALWAYS, LOG_ERR, "Reading Ed25519 private key file `%s' failed", fname);
228 return myself->connection->ecdsa;
231 static bool read_invitation_key(void) {
233 char fname[PATH_MAX];
236 ecdsa_free(invitation_key);
237 invitation_key = NULL;
240 snprintf(fname, sizeof fname, "%s" SLASH "invitations" SLASH "ed25519_key.priv", confbase);
242 fp = fopen(fname, "r");
245 invitation_key = ecdsa_read_pem_private_key(fp);
248 logger(DEBUG_ALWAYS, LOG_ERR, "Reading Ed25519 private key file `%s' failed", fname);
251 return invitation_key;
254 #ifndef DISABLE_LEGACY
255 static bool read_rsa_private_key(void) {
260 /* First, check for simple PrivateKey statement */
262 if(get_config_string(lookup_config(config_tree, "PrivateKey"), &d)) {
263 if(!get_config_string(lookup_config(config_tree, "PublicKey"), &n)) {
264 logger(DEBUG_ALWAYS, LOG_ERR, "PrivateKey used but no PublicKey found!");
268 myself->connection->rsa = rsa_set_hex_private_key(n, "FFFF", d);
271 return myself->connection->rsa;
274 /* Else, check for PrivateKeyFile statement and read it */
276 if(!get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
277 xasprintf(&fname, "%s" SLASH "rsa_key.priv", confbase);
279 fp = fopen(fname, "r");
282 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading RSA private key file `%s': %s",
283 fname, strerror(errno));
285 logger(DEBUG_ALWAYS, LOG_INFO, "Create an RSA keypair with `tinc -n %s generate-rsa-keys'.", netname ?: ".");
290 #if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
293 if(fstat(fileno(fp), &s)) {
294 logger(DEBUG_ALWAYS, LOG_ERR, "Could not stat RSA private key file `%s': %s'", fname, strerror(errno));
299 if(s.st_mode & ~0100700)
300 logger(DEBUG_ALWAYS, LOG_WARNING, "Warning: insecure file permissions for RSA private key file `%s'!", fname);
303 myself->connection->rsa = rsa_read_pem_private_key(fp);
306 if(!myself->connection->rsa)
307 logger(DEBUG_ALWAYS, LOG_ERR, "Reading RSA private key file `%s' failed: %s", fname, strerror(errno));
309 return myself->connection->rsa;
313 static timeout_t keyexpire_timeout;
315 static void keyexpire_handler(void *data) {
317 timeout_set(data, &(struct timeval){keylifetime, rand() % 100000});
320 void regenerate_key(void) {
321 logger(DEBUG_STATUS, LOG_INFO, "Expiring symmetric keys");
323 for splay_each(node_t, n, node_tree)
324 n->status.validkey_in = false;
327 void load_all_nodes(void) {
330 char dname[PATH_MAX];
332 snprintf(dname, sizeof dname, "%s" SLASH "hosts", confbase);
333 dir = opendir(dname);
335 logger(DEBUG_ALWAYS, LOG_ERR, "Could not open %s: %s", dname, strerror(errno));
339 while((ent = readdir(dir))) {
340 if(!check_id(ent->d_name))
343 node_t *n = lookup_node(ent->d_name);
345 splay_tree_t *config_tree;
346 init_configuration(&config_tree);
347 read_config_options(config_tree, ent->d_name);
348 read_host_config(config_tree, ent->d_name);
352 n->name = xstrdup(ent->d_name);
357 for(config_t *cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
360 if(!get_config_subnet(cfg, &s))
363 if((s2 = lookup_subnet(n, s))) {
372 if(lookup_config(config_tree, "Address"))
373 n->status.has_address = true;
375 exit_configuration(&config_tree);
381 char *get_name(void) {
385 get_config_string(lookup_config(config_tree, "Name"), &name);
390 returned_name = replace_name(name);
392 return returned_name;
395 bool setup_myself_reloadable(void) {
404 free(scriptinterpreter);
405 scriptinterpreter = NULL;
406 get_config_string(lookup_config(config_tree, "ScriptsInterpreter"), &scriptinterpreter);
409 free(scriptextension);
410 if(!get_config_string(lookup_config(config_tree, "ScriptsExtension"), &scriptextension))
411 scriptextension = xstrdup("");
413 get_config_string(lookup_config(config_tree, "Proxy"), &proxy);
415 if((space = strchr(proxy, ' ')))
418 if(!strcasecmp(proxy, "none")) {
419 proxytype = PROXY_NONE;
420 } else if(!strcasecmp(proxy, "socks4")) {
421 proxytype = PROXY_SOCKS4;
422 } else if(!strcasecmp(proxy, "socks4a")) {
423 proxytype = PROXY_SOCKS4A;
424 } else if(!strcasecmp(proxy, "socks5")) {
425 proxytype = PROXY_SOCKS5;
426 } else if(!strcasecmp(proxy, "http")) {
427 proxytype = PROXY_HTTP;
428 } else if(!strcasecmp(proxy, "exec")) {
429 proxytype = PROXY_EXEC;
431 logger(DEBUG_ALWAYS, LOG_ERR, "Unknown proxy type %s!", proxy);
441 if(!space || !*space) {
442 logger(DEBUG_ALWAYS, LOG_ERR, "Argument expected for proxy type exec!");
445 proxyhost = xstrdup(space);
453 if(space && (space = strchr(space, ' ')))
454 *space++ = 0, proxyport = space;
455 if(space && (space = strchr(space, ' ')))
456 *space++ = 0, proxyuser = space;
457 if(space && (space = strchr(space, ' ')))
458 *space++ = 0, proxypass = space;
459 if(!proxyhost || !*proxyhost || !proxyport || !*proxyport) {
460 logger(DEBUG_ALWAYS, LOG_ERR, "Host and port argument expected for proxy!");
463 proxyhost = xstrdup(proxyhost);
464 proxyport = xstrdup(proxyport);
465 if(proxyuser && *proxyuser)
466 proxyuser = xstrdup(proxyuser);
467 if(proxypass && *proxypass)
468 proxypass = xstrdup(proxypass);
475 if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice)
476 myself->options |= OPTION_INDIRECT;
478 if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice) && choice)
479 myself->options |= OPTION_TCPONLY;
481 if(myself->options & OPTION_TCPONLY)
482 myself->options |= OPTION_INDIRECT;
484 get_config_bool(lookup_config(config_tree, "UDPDiscovery"), &udp_discovery);
485 get_config_int(lookup_config(config_tree, "UDPDiscoveryKeepaliveInterval"), &udp_discovery_keepalive_interval);
486 get_config_int(lookup_config(config_tree, "UDPDiscoveryInterval"), &udp_discovery_interval);
487 get_config_int(lookup_config(config_tree, "UDPDiscoveryTimeout"), &udp_discovery_timeout);
489 get_config_int(lookup_config(config_tree, "MTUInfoInterval"), &mtu_info_interval);
490 get_config_int(lookup_config(config_tree, "UDPInfoInterval"), &udp_info_interval);
492 get_config_bool(lookup_config(config_tree, "DirectOnly"), &directonly);
493 get_config_bool(lookup_config(config_tree, "LocalDiscovery"), &localdiscovery);
495 if(get_config_string(lookup_config(config_tree, "Mode"), &rmode)) {
496 if(!strcasecmp(rmode, "router"))
497 routing_mode = RMODE_ROUTER;
498 else if(!strcasecmp(rmode, "switch"))
499 routing_mode = RMODE_SWITCH;
500 else if(!strcasecmp(rmode, "hub"))
501 routing_mode = RMODE_HUB;
503 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid routing mode!");
509 if(get_config_string(lookup_config(config_tree, "Forwarding"), &fmode)) {
510 if(!strcasecmp(fmode, "off"))
511 forwarding_mode = FMODE_OFF;
512 else if(!strcasecmp(fmode, "internal"))
513 forwarding_mode = FMODE_INTERNAL;
514 else if(!strcasecmp(fmode, "kernel"))
515 forwarding_mode = FMODE_KERNEL;
517 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid forwarding mode!");
524 get_config_bool(lookup_config(config_tree, "PMTUDiscovery"), &choice);
526 myself->options |= OPTION_PMTU_DISCOVERY;
529 get_config_bool(lookup_config(config_tree, "ClampMSS"), &choice);
531 myself->options |= OPTION_CLAMP_MSS;
533 get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
534 get_config_bool(lookup_config(config_tree, "DecrementTTL"), &decrement_ttl);
535 if(get_config_string(lookup_config(config_tree, "Broadcast"), &bmode)) {
536 if(!strcasecmp(bmode, "no"))
537 broadcast_mode = BMODE_NONE;
538 else if(!strcasecmp(bmode, "yes") || !strcasecmp(bmode, "mst"))
539 broadcast_mode = BMODE_MST;
540 else if(!strcasecmp(bmode, "direct"))
541 broadcast_mode = BMODE_DIRECT;
543 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid broadcast mode!");
549 const char* const DEFAULT_BROADCAST_SUBNETS[] = { "ff:ff:ff:ff:ff:ff", "255.255.255.255", "224.0.0.0/4", "ff00::/8" };
550 for (size_t i = 0; i < sizeof(DEFAULT_BROADCAST_SUBNETS) / sizeof(*DEFAULT_BROADCAST_SUBNETS); i++) {
551 subnet_t *s = new_subnet();
552 if (!str2net(s, DEFAULT_BROADCAST_SUBNETS[i]))
556 for (config_t* cfg = lookup_config(config_tree, "BroadcastSubnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
558 if (!get_config_subnet(cfg, &s))
563 #if !defined(IPPROTO_IP) || !defined(IP_TOS)
564 if(priorityinheritance)
565 logger(DEBUG_ALWAYS, LOG_WARNING, "%s not supported on this platform for IPv4 connections", "PriorityInheritance");
568 #if !defined(IPPROTO_IPV6) || !defined(IPV6_TCLASS)
569 if(priorityinheritance)
570 logger(DEBUG_ALWAYS, LOG_WARNING, "%s not supported on this platform for IPv6 connections", "PriorityInheritance");
573 if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
576 if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
577 if(maxtimeout <= 0) {
578 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus maximum timeout!");
584 if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
585 if(!strcasecmp(afname, "IPv4"))
586 addressfamily = AF_INET;
587 else if(!strcasecmp(afname, "IPv6"))
588 addressfamily = AF_INET6;
589 else if(!strcasecmp(afname, "any"))
590 addressfamily = AF_UNSPEC;
592 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid address family!");
598 get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
600 if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
603 config_t *cfg = lookup_config(config_tree, "AutoConnect");
605 if(!get_config_bool(cfg, &autoconnect)) {
606 // Some backwards compatibility with when this option was an int
608 get_config_int(cfg, &val);
613 get_config_bool(lookup_config(config_tree, "DisableBuggyPeers"), &disablebuggypeers);
615 read_invitation_key();
621 Add listening sockets.
623 static bool add_listen_address(char *address, bool bindto) {
627 char *space = strchr(address, ' ');
633 if(!strcmp(address, "*"))
637 struct addrinfo *ai, hint = {0};
638 hint.ai_family = addressfamily;
639 hint.ai_socktype = SOCK_STREAM;
640 hint.ai_protocol = IPPROTO_TCP;
641 hint.ai_flags = AI_PASSIVE;
643 #if HAVE_DECL_RES_INIT
646 int err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
650 logger(DEBUG_ALWAYS, LOG_ERR, "System call `%s' failed: %s", "getaddrinfo", err == EAI_SYSTEM ? strerror(err) : gai_strerror(err));
654 for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
655 // Ignore duplicate addresses
658 for(int i = 0; i < listen_sockets; i++)
659 if(!memcmp(&listen_socket[i].sa, aip->ai_addr, aip->ai_addrlen)) {
667 if(listen_sockets >= MAXSOCKETS) {
668 logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
672 int tcp_fd = setup_listen_socket((sockaddr_t *) aip->ai_addr);
677 int udp_fd = setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
684 io_add(&listen_socket[listen_sockets].tcp, handle_new_meta_connection, &listen_socket[listen_sockets], tcp_fd, IO_READ);
685 io_add(&listen_socket[listen_sockets].udp, handle_incoming_vpn_data, &listen_socket[listen_sockets], udp_fd, IO_READ);
687 if(debug_level >= DEBUG_CONNECTIONS) {
688 char *hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
689 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
693 listen_socket[listen_sockets].bindto = bindto;
694 memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
702 void device_enable(void) {
706 /* Run tinc-up script to further initialize the tap interface */
708 char *envp[5] = {NULL};
709 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
710 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
711 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
712 xasprintf(&envp[3], "NAME=%s", myname);
714 execute_script("tinc-up", envp);
716 for(int i = 0; i < 4; i++)
720 void device_disable(void) {
721 char *envp[5] = {NULL};
722 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
723 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
724 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
725 xasprintf(&envp[3], "NAME=%s", myname);
727 execute_script("tinc-down", envp);
729 for(int i = 0; i < 4; i++)
737 Configure node_t myself and set up the local sockets (listen only)
739 static bool setup_myself(void) {
740 char *name, *hostname, *cipher, *digest, *type;
741 char *address = NULL;
742 bool port_specified = false;
744 if(!(name = get_name())) {
745 logger(DEBUG_ALWAYS, LOG_ERR, "Name for tinc daemon required!");
749 myname = xstrdup(name);
751 myself->connection = new_connection();
753 myself->connection->name = xstrdup(name);
754 read_host_config(config_tree, name);
756 if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
757 myport = xstrdup("655");
759 port_specified = true;
761 myself->connection->options = 0;
762 myself->connection->protocol_major = PROT_MAJOR;
763 myself->connection->protocol_minor = PROT_MINOR;
765 myself->options |= PROT_MINOR << 24;
767 #ifdef DISABLE_LEGACY
768 experimental = read_ecdsa_private_key();
770 logger(DEBUG_ALWAYS, LOG_ERR, "No private key available, cannot start tinc!");
774 if(!get_config_bool(lookup_config(config_tree, "ExperimentalProtocol"), &experimental)) {
775 experimental = read_ecdsa_private_key();
777 logger(DEBUG_ALWAYS, LOG_WARNING, "Support for SPTPS disabled.");
779 if(experimental && !read_ecdsa_private_key())
783 if(!read_rsa_private_key()) {
785 logger(DEBUG_ALWAYS, LOG_WARNING, "Support for legacy protocol disabled.");
787 logger(DEBUG_ALWAYS, LOG_ERR, "No private keys available, cannot start tinc!");
793 /* Ensure myport is numeric */
796 struct addrinfo *ai = str2addrinfo("localhost", myport, SOCK_DGRAM);
798 if(!ai || !ai->ai_addr)
801 memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
802 sockaddr2str(&sa, NULL, &myport);
805 /* Read in all the subnets specified in the host configuration file */
807 for(config_t *cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
810 if(!get_config_subnet(cfg, &subnet))
813 subnet_add(myself, subnet);
816 /* Check some options */
818 if(!setup_myself_reloadable())
821 get_config_bool(lookup_config(config_tree, "StrictSubnets"), &strictsubnets);
822 get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
823 strictsubnets |= tunnelserver;
825 if(get_config_int(lookup_config(config_tree, "MaxConnectionBurst"), &max_connection_burst)) {
826 if(max_connection_burst <= 0) {
827 logger(DEBUG_ALWAYS, LOG_ERR, "MaxConnectionBurst cannot be negative!");
832 if(get_config_int(lookup_config(config_tree, "UDPRcvBuf"), &udp_rcvbuf)) {
834 logger(DEBUG_ALWAYS, LOG_ERR, "UDPRcvBuf cannot be negative!");
839 if(get_config_int(lookup_config(config_tree, "UDPSndBuf"), &udp_sndbuf)) {
841 logger(DEBUG_ALWAYS, LOG_ERR, "UDPSndBuf cannot be negative!");
847 if(get_config_int(lookup_config(config_tree, "ReplayWindow"), &replaywin_int)) {
848 if(replaywin_int < 0) {
849 logger(DEBUG_ALWAYS, LOG_ERR, "ReplayWindow cannot be negative!");
852 replaywin = (unsigned)replaywin_int;
853 sptps_replaywin = replaywin;
856 #ifndef DISABLE_LEGACY
857 /* Generate packet encryption key */
859 if(!get_config_string(lookup_config(config_tree, "Cipher"), &cipher))
860 cipher = xstrdup("aes-256-cbc");
862 if(!strcasecmp(cipher, "none")) {
863 myself->incipher = NULL;
864 } else if(!(myself->incipher = cipher_open_by_name(cipher))) {
865 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized cipher type!");
871 timeout_add(&keyexpire_timeout, keyexpire_handler, &keyexpire_timeout, &(struct timeval){keylifetime, rand() % 100000});
873 /* Check if we want to use message authentication codes... */
876 get_config_int(lookup_config(config_tree, "MACLength"), &maclength);
879 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus MAC length!");
883 if(!get_config_string(lookup_config(config_tree, "Digest"), &digest))
884 digest = xstrdup("sha256");
886 if(!strcasecmp(digest, "none")) {
887 myself->indigest = NULL;
888 } else if(!(myself->indigest = digest_open_by_name(digest, maclength))) {
889 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized digest type!");
898 if(get_config_int(lookup_config(config_tree, "Compression"), &myself->incompression)) {
899 if(myself->incompression < 0 || myself->incompression > 11) {
900 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus compression level!");
904 myself->incompression = 0;
906 myself->connection->outcompression = 0;
910 myself->nexthop = myself;
911 myself->via = myself;
912 myself->status.reachable = true;
913 myself->last_state_change = now.tv_sec;
914 myself->status.sptps = experimental;
925 if(get_config_string(lookup_config(config_tree, "DeviceType"), &type)) {
926 if(!strcasecmp(type, "dummy"))
927 devops = dummy_devops;
928 else if(!strcasecmp(type, "raw_socket"))
929 devops = raw_socket_devops;
930 else if(!strcasecmp(type, "multicast"))
931 devops = multicast_devops;
932 else if(!strcasecmp(type, "fd"))
935 else if(!strcasecmp(type, "uml"))
939 else if(!strcasecmp(type, "vde"))
945 get_config_bool(lookup_config(config_tree, "DeviceStandby"), &device_standby);
951 io_add(&device_io, handle_device_data, NULL, device_fd, IO_READ);
955 if(!do_detach && getenv("LISTEN_FDS")) {
959 listen_sockets = atoi(getenv("LISTEN_FDS"));
961 unsetenv("LISTEN_FDS");
964 if(listen_sockets > MAXSOCKETS) {
965 logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
969 for(int i = 0; i < listen_sockets; i++) {
971 if(getsockname(i + 3, &sa.sa, &salen) < 0) {
972 logger(DEBUG_ALWAYS, LOG_ERR, "Could not get address of listen fd %d: %s", i + 3, sockstrerror(sockerrno));
977 fcntl(i + 3, F_SETFD, FD_CLOEXEC);
980 int udp_fd = setup_vpn_in_socket(&sa);
984 io_add(&listen_socket[i].tcp, (io_cb_t)handle_new_meta_connection, &listen_socket[i], i + 3, IO_READ);
985 io_add(&listen_socket[i].udp, (io_cb_t)handle_incoming_vpn_data, &listen_socket[i], udp_fd, IO_READ);
987 if(debug_level >= DEBUG_CONNECTIONS) {
988 hostname = sockaddr2hostname(&sa);
989 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
993 memcpy(&listen_socket[i].sa, &sa, salen);
999 for(config_t *cfg = lookup_config(config_tree, "BindToAddress"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
1001 get_config_string(cfg, &address);
1002 if(!add_listen_address(address, true))
1006 for(config_t *cfg = lookup_config(config_tree, "ListenAddress"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
1008 get_config_string(cfg, &address);
1009 if(!add_listen_address(address, false))
1014 if(!add_listen_address(address, NULL))
1018 if(!listen_sockets) {
1019 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to create any listening socket!");
1023 /* If no Port option was specified, set myport to the port used by the first listening socket. */
1025 if(!port_specified || atoi(myport) == 0) {
1027 socklen_t salen = sizeof sa;
1028 if(!getsockname(listen_socket[0].udp.fd, &sa.sa, &salen)) {
1030 sockaddr2str(&sa, NULL, &myport);
1032 myport = xstrdup("655");
1036 xasprintf(&myself->hostname, "MYSELF port %s", myport);
1037 myself->connection->hostname = xstrdup(myself->hostname);
1040 get_config_string(lookup_config(config_tree, "UPnP"), &upnp);
1041 bool upnp_tcp = false;
1042 bool upnp_udp = false;
1044 if (!strcasecmp(upnp, "yes"))
1045 upnp_tcp = upnp_udp = true;
1046 else if (!strcasecmp(upnp, "udponly"))
1050 if (upnp_tcp || upnp_udp) {
1051 #ifdef HAVE_MINIUPNPC
1052 upnp_init(upnp_tcp, upnp_udp);
1054 logger(DEBUG_ALWAYS, LOG_WARNING, "UPnP was requested, but tinc isn't built with miniupnpc support!");
1060 last_config_check = now.tv_sec;
1068 bool setup_network(void) {
1075 if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
1076 if(pinginterval < 1) {
1077 pinginterval = 86400;
1082 if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
1084 if(pingtimeout < 1 || pingtimeout > pinginterval)
1085 pingtimeout = pinginterval;
1087 if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
1088 maxoutbufsize = 10 * MTU;
1096 if (!device_standby)
1099 /* Run subnet-up scripts for our own subnets */
1101 subnet_update(myself, NULL, true);
1107 close all open network connections
1109 void close_network_connections(void) {
1110 for(list_node_t *node = connection_list->head, *next; node; node = next) {
1112 connection_t *c = node->data;
1113 /* Keep control connections open until the end, so they know when we really terminated */
1114 if(c->status.control)
1117 terminate_connection(c, false);
1121 list_delete_list(outgoing_list);
1123 if(myself && myself->connection) {
1124 subnet_update(myself, NULL, false);
1125 connection_del(myself->connection);
1128 for(int i = 0; i < listen_sockets; i++) {
1129 io_del(&listen_socket[i].tcp);
1130 io_del(&listen_socket[i].udp);
1131 close(listen_socket[i].tcp.fd);
1132 close(listen_socket[i].udp.fd);
1141 if (!device_standby)
1154 free(scriptextension);
1155 free(scriptinterpreter);