3 Copyright (C) 1998-2005 Ivo Timmermans,
4 2000-2014 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"
47 static io_t device_io;
49 bool device_standby = false;
55 proxytype_t proxytype;
57 bool disablebuggypeers;
59 char *scriptinterpreter;
60 char *scriptextension;
62 bool node_read_ecdsa_public_key(node_t *n) {
63 if(ecdsa_active(n->ecdsa))
66 splay_tree_t *config_tree;
71 init_configuration(&config_tree);
72 if(!read_host_config(config_tree, n->name))
75 /* First, check for simple Ed25519PublicKey statement */
77 if(get_config_string(lookup_config(config_tree, "Ed25519PublicKey"), &p)) {
78 n->ecdsa = ecdsa_set_base64_public_key(p);
83 /* Else, check for Ed25519PublicKeyFile statement and read it */
85 if(!get_config_string(lookup_config(config_tree, "Ed25519PublicKeyFile"), &pubname))
86 xasprintf(&pubname, "%s" SLASH "hosts" SLASH "%s", confbase, n->name);
88 fp = fopen(pubname, "r");
93 n->ecdsa = ecdsa_read_pem_public_key(fp);
97 exit_configuration(&config_tree);
102 bool read_ecdsa_public_key(connection_t *c) {
103 if(ecdsa_active(c->ecdsa))
110 if(!c->config_tree) {
111 init_configuration(&c->config_tree);
112 if(!read_host_config(c->config_tree, c->name))
116 /* First, check for simple Ed25519PublicKey statement */
118 if(get_config_string(lookup_config(c->config_tree, "Ed25519PublicKey"), &p)) {
119 c->ecdsa = ecdsa_set_base64_public_key(p);
124 /* Else, check for Ed25519PublicKeyFile statement and read it */
126 if(!get_config_string(lookup_config(c->config_tree, "Ed25519PublicKeyFile"), &fname))
127 xasprintf(&fname, "%s" SLASH "hosts" SLASH "%s", confbase, c->name);
129 fp = fopen(fname, "r");
132 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading Ed25519 public key file `%s': %s",
133 fname, strerror(errno));
138 c->ecdsa = ecdsa_read_pem_public_key(fp);
142 logger(DEBUG_ALWAYS, LOG_ERR, "Parsing Ed25519 public key file `%s' failed.", fname);
147 bool read_rsa_public_key(connection_t *c) {
148 if(ecdsa_active(c->ecdsa))
155 /* First, check for simple PublicKey statement */
157 if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &n)) {
158 c->rsa = rsa_set_hex_public_key(n, "FFFF");
163 /* Else, check for PublicKeyFile statement and read it */
165 if(!get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &fname))
166 xasprintf(&fname, "%s" SLASH "hosts" SLASH "%s", confbase, c->name);
168 fp = fopen(fname, "r");
171 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading RSA public key file `%s': %s", fname, strerror(errno));
176 c->rsa = rsa_read_pem_public_key(fp);
180 logger(DEBUG_ALWAYS, LOG_ERR, "Reading RSA public key file `%s' failed: %s", fname, strerror(errno));
185 static bool read_ecdsa_private_key(void) {
189 /* Check for PrivateKeyFile statement and read it */
191 if(!get_config_string(lookup_config(config_tree, "Ed25519PrivateKeyFile"), &fname))
192 xasprintf(&fname, "%s" SLASH "ed25519_key.priv", confbase);
194 fp = fopen(fname, "r");
197 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading Ed25519 private key file `%s': %s", fname, strerror(errno));
199 logger(DEBUG_ALWAYS, LOG_INFO, "Create an Ed25519 keypair with `tinc -n %s generate-ed25519-keys'.", netname ?: ".");
204 #if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
207 if(fstat(fileno(fp), &s)) {
208 logger(DEBUG_ALWAYS, LOG_ERR, "Could not stat Ed25519 private key file `%s': %s'", fname, strerror(errno));
213 if(s.st_mode & ~0100700)
214 logger(DEBUG_ALWAYS, LOG_WARNING, "Warning: insecure file permissions for Ed25519 private key file `%s'!", fname);
217 myself->connection->ecdsa = ecdsa_read_pem_private_key(fp);
220 if(!myself->connection->ecdsa)
221 logger(DEBUG_ALWAYS, LOG_ERR, "Reading Ed25519 private key file `%s' failed", fname);
223 return myself->connection->ecdsa;
226 static bool read_invitation_key(void) {
231 ecdsa_free(invitation_key);
232 invitation_key = NULL;
235 xasprintf(&fname, "%s" SLASH "invitations" SLASH "ed25519_key.priv", confbase);
237 fp = fopen(fname, "r");
240 invitation_key = ecdsa_read_pem_private_key(fp);
243 logger(DEBUG_ALWAYS, LOG_ERR, "Reading Ed25519 private key file `%s' failed", fname);
247 return invitation_key;
250 static bool read_rsa_private_key(void) {
255 /* First, check for simple PrivateKey statement */
257 if(get_config_string(lookup_config(config_tree, "PrivateKey"), &d)) {
258 if(!get_config_string(lookup_config(config_tree, "PublicKey"), &n)) {
259 logger(DEBUG_ALWAYS, LOG_ERR, "PrivateKey used but no PublicKey found!");
263 myself->connection->rsa = rsa_set_hex_private_key(n, "FFFF", d);
266 return myself->connection->rsa;
269 /* Else, check for PrivateKeyFile statement and read it */
271 if(!get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
272 xasprintf(&fname, "%s" SLASH "rsa_key.priv", confbase);
274 fp = fopen(fname, "r");
277 logger(DEBUG_ALWAYS, LOG_ERR, "Error reading RSA private key file `%s': %s",
278 fname, strerror(errno));
283 #if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
286 if(fstat(fileno(fp), &s)) {
287 logger(DEBUG_ALWAYS, LOG_ERR, "Could not stat RSA private key file `%s': %s'", fname, strerror(errno));
292 if(s.st_mode & ~0100700)
293 logger(DEBUG_ALWAYS, LOG_WARNING, "Warning: insecure file permissions for RSA private key file `%s'!", fname);
296 myself->connection->rsa = rsa_read_pem_private_key(fp);
299 if(!myself->connection->rsa)
300 logger(DEBUG_ALWAYS, LOG_ERR, "Reading RSA private key file `%s' failed: %s", fname, strerror(errno));
302 return myself->connection->rsa;
305 static timeout_t keyexpire_timeout;
307 static void keyexpire_handler(void *data) {
309 timeout_set(data, &(struct timeval){keylifetime, rand() % 100000});
312 void regenerate_key(void) {
313 logger(DEBUG_STATUS, LOG_INFO, "Expiring symmetric keys");
318 Read Subnets from all host config files
320 void load_all_subnets(void) {
325 xasprintf(&dname, "%s" SLASH "hosts", confbase);
326 dir = opendir(dname);
328 logger(DEBUG_ALWAYS, LOG_ERR, "Could not open %s: %s", dname, strerror(errno));
333 while((ent = readdir(dir))) {
334 if(!check_id(ent->d_name))
337 node_t *n = lookup_node(ent->d_name);
338 #ifdef _DIRENT_HAVE_D_TYPE
339 //if(ent->d_type != DT_REG)
343 splay_tree_t *config_tree;
344 init_configuration(&config_tree);
345 read_config_options(config_tree, ent->d_name);
346 read_host_config(config_tree, ent->d_name);
350 n->name = xstrdup(ent->d_name);
354 for(config_t *cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
357 if(!get_config_subnet(cfg, &s))
360 if((s2 = lookup_subnet(n, s))) {
367 exit_configuration(&config_tree);
373 void load_all_nodes(void) {
378 xasprintf(&dname, "%s" SLASH "hosts", confbase);
379 dir = opendir(dname);
381 logger(DEBUG_ALWAYS, LOG_ERR, "Could not open %s: %s", dname, strerror(errno));
386 while((ent = readdir(dir))) {
387 if(!check_id(ent->d_name))
390 node_t *n = lookup_node(ent->d_name);
395 n->name = xstrdup(ent->d_name);
403 char *get_name(void) {
406 get_config_string(lookup_config(config_tree, "Name"), &name);
412 char *envname = getenv(name + 1);
413 char hostname[32] = "";
415 if(strcmp(name + 1, "HOST")) {
416 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid Name: environment variable %s does not exist\n", name + 1);
419 if(gethostname(hostname, sizeof hostname) || !*hostname) {
420 logger(DEBUG_ALWAYS, LOG_ERR, "Could not get hostname: %s\n", sockstrerror(sockerrno));
427 name = xstrdup(envname);
428 for(char *c = name; *c; c++)
433 if(!check_id(name)) {
434 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid name for myself!");
442 bool setup_myself_reloadable(void) {
451 free(scriptinterpreter);
452 scriptinterpreter = NULL;
453 get_config_string(lookup_config(config_tree, "ScriptsInterpreter"), &scriptinterpreter);
456 free(scriptextension);
457 if(!get_config_string(lookup_config(config_tree, "ScriptsExtension"), &scriptextension))
458 scriptextension = xstrdup("");
460 get_config_string(lookup_config(config_tree, "Proxy"), &proxy);
462 if((space = strchr(proxy, ' ')))
465 if(!strcasecmp(proxy, "none")) {
466 proxytype = PROXY_NONE;
467 } else if(!strcasecmp(proxy, "socks4")) {
468 proxytype = PROXY_SOCKS4;
469 } else if(!strcasecmp(proxy, "socks4a")) {
470 proxytype = PROXY_SOCKS4A;
471 } else if(!strcasecmp(proxy, "socks5")) {
472 proxytype = PROXY_SOCKS5;
473 } else if(!strcasecmp(proxy, "http")) {
474 proxytype = PROXY_HTTP;
475 } else if(!strcasecmp(proxy, "exec")) {
476 proxytype = PROXY_EXEC;
478 logger(DEBUG_ALWAYS, LOG_ERR, "Unknown proxy type %s!", proxy);
488 if(!space || !*space) {
489 logger(DEBUG_ALWAYS, LOG_ERR, "Argument expected for proxy type exec!");
492 proxyhost = xstrdup(space);
500 if(space && (space = strchr(space, ' ')))
501 *space++ = 0, proxyport = space;
502 if(space && (space = strchr(space, ' ')))
503 *space++ = 0, proxyuser = space;
504 if(space && (space = strchr(space, ' ')))
505 *space++ = 0, proxypass = space;
506 if(!proxyhost || !*proxyhost || !proxyport || !*proxyport) {
507 logger(DEBUG_ALWAYS, LOG_ERR, "Host and port argument expected for proxy!");
510 proxyhost = xstrdup(proxyhost);
511 proxyport = xstrdup(proxyport);
512 if(proxyuser && *proxyuser)
513 proxyuser = xstrdup(proxyuser);
514 if(proxypass && *proxypass)
515 proxypass = xstrdup(proxypass);
522 if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice)
523 myself->options |= OPTION_INDIRECT;
525 if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice) && choice)
526 myself->options |= OPTION_TCPONLY;
528 if(myself->options & OPTION_TCPONLY)
529 myself->options |= OPTION_INDIRECT;
531 get_config_bool(lookup_config(config_tree, "DirectOnly"), &directonly);
532 get_config_bool(lookup_config(config_tree, "LocalDiscovery"), &localdiscovery);
534 if(get_config_string(lookup_config(config_tree, "Mode"), &rmode)) {
535 if(!strcasecmp(rmode, "router"))
536 routing_mode = RMODE_ROUTER;
537 else if(!strcasecmp(rmode, "switch"))
538 routing_mode = RMODE_SWITCH;
539 else if(!strcasecmp(rmode, "hub"))
540 routing_mode = RMODE_HUB;
542 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid routing mode!");
548 if(get_config_string(lookup_config(config_tree, "Forwarding"), &fmode)) {
549 if(!strcasecmp(fmode, "off"))
550 forwarding_mode = FMODE_OFF;
551 else if(!strcasecmp(fmode, "internal"))
552 forwarding_mode = FMODE_INTERNAL;
553 else if(!strcasecmp(fmode, "kernel"))
554 forwarding_mode = FMODE_KERNEL;
556 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid forwarding mode!");
563 get_config_bool(lookup_config(config_tree, "PMTUDiscovery"), &choice);
565 myself->options |= OPTION_PMTU_DISCOVERY;
568 get_config_bool(lookup_config(config_tree, "ClampMSS"), &choice);
570 myself->options |= OPTION_CLAMP_MSS;
572 get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
573 get_config_bool(lookup_config(config_tree, "DecrementTTL"), &decrement_ttl);
574 if(get_config_string(lookup_config(config_tree, "Broadcast"), &bmode)) {
575 if(!strcasecmp(bmode, "no"))
576 broadcast_mode = BMODE_NONE;
577 else if(!strcasecmp(bmode, "yes") || !strcasecmp(bmode, "mst"))
578 broadcast_mode = BMODE_MST;
579 else if(!strcasecmp(bmode, "direct"))
580 broadcast_mode = BMODE_DIRECT;
582 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid broadcast mode!");
588 const char* const DEFAULT_BROADCAST_SUBNETS[] = { "ff:ff:ff:ff:ff:ff", "255.255.255.255", "224.0.0.0/4", "ff00::/8" };
589 for (size_t i = 0; i < sizeof(DEFAULT_BROADCAST_SUBNETS) / sizeof(*DEFAULT_BROADCAST_SUBNETS); i++) {
590 subnet_t *s = new_subnet();
591 if (!str2net(s, DEFAULT_BROADCAST_SUBNETS[i]))
595 for (config_t* cfg = lookup_config(config_tree, "BroadcastSubnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
597 if (!get_config_subnet(cfg, &s))
602 #if !defined(SOL_IP) || !defined(IP_TOS)
603 if(priorityinheritance)
604 logger(DEBUG_ALWAYS, LOG_WARNING, "%s not supported on this platform", "PriorityInheritance");
607 if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
610 if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
611 if(maxtimeout <= 0) {
612 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus maximum timeout!");
618 if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
619 if(!strcasecmp(afname, "IPv4"))
620 addressfamily = AF_INET;
621 else if(!strcasecmp(afname, "IPv6"))
622 addressfamily = AF_INET6;
623 else if(!strcasecmp(afname, "any"))
624 addressfamily = AF_UNSPEC;
626 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid address family!");
632 get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
634 if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
637 config_t *cfg = lookup_config(config_tree, "AutoConnect");
639 if(!get_config_bool(cfg, &autoconnect)) {
640 // Some backwards compatibility with when this option was an int
642 get_config_int(cfg, &val);
647 get_config_bool(lookup_config(config_tree, "DisableBuggyPeers"), &disablebuggypeers);
649 read_invitation_key();
655 Add listening sockets.
657 static bool add_listen_address(char *address, bool bindto) {
661 char *space = strchr(address, ' ');
667 if(!strcmp(address, "*"))
671 struct addrinfo *ai, hint = {0};
672 hint.ai_family = addressfamily;
673 hint.ai_socktype = SOCK_STREAM;
674 hint.ai_protocol = IPPROTO_TCP;
675 hint.ai_flags = AI_PASSIVE;
677 int err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
681 logger(DEBUG_ALWAYS, LOG_ERR, "System call `%s' failed: %s", "getaddrinfo", err == EAI_SYSTEM ? strerror(err) : gai_strerror(err));
685 for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
686 // Ignore duplicate addresses
689 for(int i = 0; i < listen_sockets; i++)
690 if(!memcmp(&listen_socket[i].sa, aip->ai_addr, aip->ai_addrlen)) {
698 if(listen_sockets >= MAXSOCKETS) {
699 logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
703 int tcp_fd = setup_listen_socket((sockaddr_t *) aip->ai_addr);
708 int udp_fd = setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
715 io_add(&listen_socket[listen_sockets].tcp, handle_new_meta_connection, &listen_socket[listen_sockets], tcp_fd, IO_READ);
716 io_add(&listen_socket[listen_sockets].udp, handle_incoming_vpn_data, &listen_socket[listen_sockets], udp_fd, IO_READ);
718 if(debug_level >= DEBUG_CONNECTIONS) {
719 char *hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
720 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
724 listen_socket[listen_sockets].bindto = bindto;
725 memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
733 void device_enable(void) {
737 /* Run tinc-up script to further initialize the tap interface */
739 char *envp[5] = {NULL};
740 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
741 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
742 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
743 xasprintf(&envp[3], "NAME=%s", myself->name);
745 execute_script("tinc-up", envp);
747 for(int i = 0; i < 4; i++)
751 void device_disable(void) {
752 char *envp[5] = {NULL};
753 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
754 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
755 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
756 xasprintf(&envp[3], "NAME=%s", myself->name);
758 execute_script("tinc-down", envp);
760 for(int i = 0; i < 4; i++)
768 Configure node_t myself and set up the local sockets (listen only)
770 static bool setup_myself(void) {
771 char *name, *hostname, *cipher, *digest, *type;
772 char *address = NULL;
773 bool port_specified = false;
775 if(!(name = get_name())) {
776 logger(DEBUG_ALWAYS, LOG_ERR, "Name for tinc daemon required!");
781 myself->connection = new_connection();
783 myself->connection->name = xstrdup(name);
784 read_host_config(config_tree, name);
786 if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
787 myport = xstrdup("655");
789 port_specified = true;
791 myself->connection->options = 0;
792 myself->connection->protocol_major = PROT_MAJOR;
793 myself->connection->protocol_minor = PROT_MINOR;
795 myself->options |= PROT_MINOR << 24;
797 if(!get_config_bool(lookup_config(config_tree, "ExperimentalProtocol"), &experimental)) {
798 experimental = read_ecdsa_private_key();
800 logger(DEBUG_ALWAYS, LOG_WARNING, "Support for SPTPS disabled.");
802 if(experimental && !read_ecdsa_private_key())
806 if(!read_rsa_private_key())
809 /* Ensure myport is numeric */
812 struct addrinfo *ai = str2addrinfo("localhost", myport, SOCK_DGRAM);
814 if(!ai || !ai->ai_addr)
817 memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
818 sockaddr2str(&sa, NULL, &myport);
821 /* Read in all the subnets specified in the host configuration file */
823 for(config_t *cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
826 if(!get_config_subnet(cfg, &subnet))
829 subnet_add(myself, subnet);
832 /* Check some options */
834 if(!setup_myself_reloadable())
837 get_config_bool(lookup_config(config_tree, "StrictSubnets"), &strictsubnets);
838 get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
839 strictsubnets |= tunnelserver;
841 if(get_config_int(lookup_config(config_tree, "MaxConnectionBurst"), &max_connection_burst)) {
842 if(max_connection_burst <= 0) {
843 logger(DEBUG_ALWAYS, LOG_ERR, "MaxConnectionBurst cannot be negative!");
848 if(get_config_int(lookup_config(config_tree, "UDPRcvBuf"), &udp_rcvbuf)) {
849 if(udp_rcvbuf <= 0) {
850 logger(DEBUG_ALWAYS, LOG_ERR, "UDPRcvBuf cannot be negative!");
855 if(get_config_int(lookup_config(config_tree, "UDPSndBuf"), &udp_sndbuf)) {
856 if(udp_sndbuf <= 0) {
857 logger(DEBUG_ALWAYS, LOG_ERR, "UDPSndBuf cannot be negative!");
863 if(get_config_int(lookup_config(config_tree, "ReplayWindow"), &replaywin_int)) {
864 if(replaywin_int < 0) {
865 logger(DEBUG_ALWAYS, LOG_ERR, "ReplayWindow cannot be negative!");
868 replaywin = (unsigned)replaywin_int;
869 sptps_replaywin = replaywin;
872 /* Generate packet encryption key */
874 if(!get_config_string(lookup_config(config_tree, "Cipher"), &cipher))
875 cipher = xstrdup("blowfish");
877 if(!strcasecmp(cipher, "none")) {
878 myself->incipher = NULL;
879 } else if(!(myself->incipher = cipher_open_by_name(cipher))) {
880 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized cipher type!");
886 timeout_add(&keyexpire_timeout, keyexpire_handler, &keyexpire_timeout, &(struct timeval){keylifetime, rand() % 100000});
888 /* Check if we want to use message authentication codes... */
891 get_config_int(lookup_config(config_tree, "MACLength"), &maclength);
894 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus MAC length!");
898 if(!get_config_string(lookup_config(config_tree, "Digest"), &digest))
899 digest = xstrdup("sha1");
901 if(!strcasecmp(digest, "none")) {
902 myself->indigest = NULL;
903 } else if(!(myself->indigest = digest_open_by_name(digest, maclength))) {
904 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized digest type!");
912 if(get_config_int(lookup_config(config_tree, "Compression"), &myself->incompression)) {
913 if(myself->incompression < 0 || myself->incompression > 11) {
914 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus compression level!");
918 myself->incompression = 0;
920 myself->connection->outcompression = 0;
924 myself->nexthop = myself;
925 myself->via = myself;
926 myself->status.reachable = true;
927 myself->last_state_change = now.tv_sec;
928 myself->status.sptps = experimental;
942 if(get_config_string(lookup_config(config_tree, "DeviceType"), &type)) {
943 if(!strcasecmp(type, "dummy"))
944 devops = dummy_devops;
945 else if(!strcasecmp(type, "raw_socket"))
946 devops = raw_socket_devops;
947 else if(!strcasecmp(type, "multicast"))
948 devops = multicast_devops;
950 else if(!strcasecmp(type, "uml"))
954 else if(!strcasecmp(type, "vde"))
959 get_config_bool(lookup_config(config_tree, "DeviceStandby"), &device_standby);
965 io_add(&device_io, handle_device_data, NULL, device_fd, IO_READ);
969 if(!do_detach && getenv("LISTEN_FDS")) {
973 listen_sockets = atoi(getenv("LISTEN_FDS"));
975 unsetenv("LISTEN_FDS");
978 if(listen_sockets > MAXSOCKETS) {
979 logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
983 for(int i = 0; i < listen_sockets; i++) {
985 if(getsockname(i + 3, &sa.sa, &salen) < 0) {
986 logger(DEBUG_ALWAYS, LOG_ERR, "Could not get address of listen fd %d: %s", i + 3, sockstrerror(sockerrno));
991 fcntl(i + 3, F_SETFD, FD_CLOEXEC);
994 int udp_fd = setup_vpn_in_socket(&sa);
998 io_add(&listen_socket[i].tcp, (io_cb_t)handle_new_meta_connection, &listen_socket[i], i + 3, IO_READ);
999 io_add(&listen_socket[i].udp, (io_cb_t)handle_incoming_vpn_data, &listen_socket[i], udp_fd, IO_READ);
1001 if(debug_level >= DEBUG_CONNECTIONS) {
1002 hostname = sockaddr2hostname(&sa);
1003 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
1007 memcpy(&listen_socket[i].sa, &sa, salen);
1013 for(config_t *cfg = lookup_config(config_tree, "BindToAddress"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
1015 get_config_string(cfg, &address);
1016 if(!add_listen_address(address, true))
1020 for(config_t *cfg = lookup_config(config_tree, "ListenAddress"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
1022 get_config_string(cfg, &address);
1023 if(!add_listen_address(address, false))
1028 if(!add_listen_address(address, NULL))
1032 if(!listen_sockets) {
1033 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to create any listening socket!");
1037 /* If no Port option was specified, set myport to the port used by the first listening socket. */
1039 if(!port_specified || atoi(myport) == 0) {
1041 socklen_t salen = sizeof sa;
1042 if(!getsockname(listen_socket[0].udp.fd, &sa.sa, &salen)) {
1044 sockaddr2str(&sa, NULL, &myport);
1046 myport = xstrdup("655");
1050 xasprintf(&myself->hostname, "MYSELF port %s", myport);
1051 myself->connection->hostname = xstrdup(myself->hostname);
1055 last_config_check = now.tv_sec;
1063 bool setup_network(void) {
1070 if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
1071 if(pinginterval < 1) {
1072 pinginterval = 86400;
1077 if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
1079 if(pingtimeout < 1 || pingtimeout > pinginterval)
1080 pingtimeout = pinginterval;
1082 if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
1083 maxoutbufsize = 10 * MTU;
1091 if (!device_standby)
1094 /* Run subnet-up scripts for our own subnets */
1096 subnet_update(myself, NULL, true);
1102 close all open network connections
1104 void close_network_connections(void) {
1105 for(list_node_t *node = connection_list->head, *next; node; node = next) {
1107 connection_t *c = node->data;
1108 /* Keep control connections open until the end, so they know when we really terminated */
1109 if(c->status.control)
1112 terminate_connection(c, false);
1116 list_delete_list(outgoing_list);
1118 if(myself && myself->connection) {
1119 subnet_update(myself, NULL, false);
1120 terminate_connection(myself->connection, false);
1121 free_connection(myself->connection);
1124 for(int i = 0; i < listen_sockets; i++) {
1125 io_del(&listen_socket[i].tcp);
1126 io_del(&listen_socket[i].udp);
1127 close(listen_socket[i].tcp.fd);
1128 close(listen_socket[i].udp.fd);
1137 if (!device_standby)
1140 if(myport) free(myport);