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) {
407 get_config_string(lookup_config(config_tree, "Name"), &name);
412 returned_name = replace_name(name);
414 return returned_name;
417 bool setup_myself_reloadable(void) {
426 free(scriptinterpreter);
427 scriptinterpreter = NULL;
428 get_config_string(lookup_config(config_tree, "ScriptsInterpreter"), &scriptinterpreter);
431 free(scriptextension);
432 if(!get_config_string(lookup_config(config_tree, "ScriptsExtension"), &scriptextension))
433 scriptextension = xstrdup("");
435 get_config_string(lookup_config(config_tree, "Proxy"), &proxy);
437 if((space = strchr(proxy, ' ')))
440 if(!strcasecmp(proxy, "none")) {
441 proxytype = PROXY_NONE;
442 } else if(!strcasecmp(proxy, "socks4")) {
443 proxytype = PROXY_SOCKS4;
444 } else if(!strcasecmp(proxy, "socks4a")) {
445 proxytype = PROXY_SOCKS4A;
446 } else if(!strcasecmp(proxy, "socks5")) {
447 proxytype = PROXY_SOCKS5;
448 } else if(!strcasecmp(proxy, "http")) {
449 proxytype = PROXY_HTTP;
450 } else if(!strcasecmp(proxy, "exec")) {
451 proxytype = PROXY_EXEC;
453 logger(DEBUG_ALWAYS, LOG_ERR, "Unknown proxy type %s!", proxy);
463 if(!space || !*space) {
464 logger(DEBUG_ALWAYS, LOG_ERR, "Argument expected for proxy type exec!");
467 proxyhost = xstrdup(space);
475 if(space && (space = strchr(space, ' ')))
476 *space++ = 0, proxyport = space;
477 if(space && (space = strchr(space, ' ')))
478 *space++ = 0, proxyuser = space;
479 if(space && (space = strchr(space, ' ')))
480 *space++ = 0, proxypass = space;
481 if(!proxyhost || !*proxyhost || !proxyport || !*proxyport) {
482 logger(DEBUG_ALWAYS, LOG_ERR, "Host and port argument expected for proxy!");
485 proxyhost = xstrdup(proxyhost);
486 proxyport = xstrdup(proxyport);
487 if(proxyuser && *proxyuser)
488 proxyuser = xstrdup(proxyuser);
489 if(proxypass && *proxypass)
490 proxypass = xstrdup(proxypass);
497 if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice)
498 myself->options |= OPTION_INDIRECT;
500 if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice) && choice)
501 myself->options |= OPTION_TCPONLY;
503 if(myself->options & OPTION_TCPONLY)
504 myself->options |= OPTION_INDIRECT;
506 get_config_bool(lookup_config(config_tree, "DirectOnly"), &directonly);
507 get_config_bool(lookup_config(config_tree, "LocalDiscovery"), &localdiscovery);
509 if(get_config_string(lookup_config(config_tree, "Mode"), &rmode)) {
510 if(!strcasecmp(rmode, "router"))
511 routing_mode = RMODE_ROUTER;
512 else if(!strcasecmp(rmode, "switch"))
513 routing_mode = RMODE_SWITCH;
514 else if(!strcasecmp(rmode, "hub"))
515 routing_mode = RMODE_HUB;
517 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid routing mode!");
523 if(get_config_string(lookup_config(config_tree, "Forwarding"), &fmode)) {
524 if(!strcasecmp(fmode, "off"))
525 forwarding_mode = FMODE_OFF;
526 else if(!strcasecmp(fmode, "internal"))
527 forwarding_mode = FMODE_INTERNAL;
528 else if(!strcasecmp(fmode, "kernel"))
529 forwarding_mode = FMODE_KERNEL;
531 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid forwarding mode!");
538 get_config_bool(lookup_config(config_tree, "PMTUDiscovery"), &choice);
540 myself->options |= OPTION_PMTU_DISCOVERY;
543 get_config_bool(lookup_config(config_tree, "ClampMSS"), &choice);
545 myself->options |= OPTION_CLAMP_MSS;
547 get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
548 get_config_bool(lookup_config(config_tree, "DecrementTTL"), &decrement_ttl);
549 if(get_config_string(lookup_config(config_tree, "Broadcast"), &bmode)) {
550 if(!strcasecmp(bmode, "no"))
551 broadcast_mode = BMODE_NONE;
552 else if(!strcasecmp(bmode, "yes") || !strcasecmp(bmode, "mst"))
553 broadcast_mode = BMODE_MST;
554 else if(!strcasecmp(bmode, "direct"))
555 broadcast_mode = BMODE_DIRECT;
557 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid broadcast mode!");
563 const char* const DEFAULT_BROADCAST_SUBNETS[] = { "ff:ff:ff:ff:ff:ff", "255.255.255.255", "224.0.0.0/4", "ff00::/8" };
564 for (size_t i = 0; i < sizeof(DEFAULT_BROADCAST_SUBNETS) / sizeof(*DEFAULT_BROADCAST_SUBNETS); i++) {
565 subnet_t *s = new_subnet();
566 if (!str2net(s, DEFAULT_BROADCAST_SUBNETS[i]))
570 for (config_t* cfg = lookup_config(config_tree, "BroadcastSubnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
572 if (!get_config_subnet(cfg, &s))
577 #if !defined(SOL_IP) || !defined(IP_TOS)
578 if(priorityinheritance)
579 logger(DEBUG_ALWAYS, LOG_WARNING, "%s not supported on this platform", "PriorityInheritance");
582 if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
585 if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
586 if(maxtimeout <= 0) {
587 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus maximum timeout!");
593 if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
594 if(!strcasecmp(afname, "IPv4"))
595 addressfamily = AF_INET;
596 else if(!strcasecmp(afname, "IPv6"))
597 addressfamily = AF_INET6;
598 else if(!strcasecmp(afname, "any"))
599 addressfamily = AF_UNSPEC;
601 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid address family!");
607 get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
609 if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
612 config_t *cfg = lookup_config(config_tree, "AutoConnect");
614 if(!get_config_bool(cfg, &autoconnect)) {
615 // Some backwards compatibility with when this option was an int
617 get_config_int(cfg, &val);
622 get_config_bool(lookup_config(config_tree, "DisableBuggyPeers"), &disablebuggypeers);
624 read_invitation_key();
630 Add listening sockets.
632 static bool add_listen_address(char *address, bool bindto) {
636 char *space = strchr(address, ' ');
642 if(!strcmp(address, "*"))
646 struct addrinfo *ai, hint = {0};
647 hint.ai_family = addressfamily;
648 hint.ai_socktype = SOCK_STREAM;
649 hint.ai_protocol = IPPROTO_TCP;
650 hint.ai_flags = AI_PASSIVE;
652 int err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
656 logger(DEBUG_ALWAYS, LOG_ERR, "System call `%s' failed: %s", "getaddrinfo", err == EAI_SYSTEM ? strerror(err) : gai_strerror(err));
660 for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
661 // Ignore duplicate addresses
664 for(int i = 0; i < listen_sockets; i++)
665 if(!memcmp(&listen_socket[i].sa, aip->ai_addr, aip->ai_addrlen)) {
673 if(listen_sockets >= MAXSOCKETS) {
674 logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
678 int tcp_fd = setup_listen_socket((sockaddr_t *) aip->ai_addr);
683 int udp_fd = setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
690 io_add(&listen_socket[listen_sockets].tcp, handle_new_meta_connection, &listen_socket[listen_sockets], tcp_fd, IO_READ);
691 io_add(&listen_socket[listen_sockets].udp, handle_incoming_vpn_data, &listen_socket[listen_sockets], udp_fd, IO_READ);
693 if(debug_level >= DEBUG_CONNECTIONS) {
694 char *hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
695 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
699 listen_socket[listen_sockets].bindto = bindto;
700 memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
708 void device_enable(void) {
712 /* Run tinc-up script to further initialize the tap interface */
714 char *envp[5] = {NULL};
715 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
716 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
717 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
718 xasprintf(&envp[3], "NAME=%s", myself->name);
720 execute_script("tinc-up", envp);
722 for(int i = 0; i < 4; i++)
726 void device_disable(void) {
727 char *envp[5] = {NULL};
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);
733 execute_script("tinc-down", envp);
735 for(int i = 0; i < 4; i++)
743 Configure node_t myself and set up the local sockets (listen only)
745 static bool setup_myself(void) {
746 char *name, *hostname, *cipher, *digest, *type;
747 char *address = NULL;
748 bool port_specified = false;
750 if(!(name = get_name())) {
751 logger(DEBUG_ALWAYS, LOG_ERR, "Name for tinc daemon required!");
756 myself->connection = new_connection();
758 myself->connection->name = xstrdup(name);
759 read_host_config(config_tree, name);
761 if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
762 myport = xstrdup("655");
764 port_specified = true;
766 myself->connection->options = 0;
767 myself->connection->protocol_major = PROT_MAJOR;
768 myself->connection->protocol_minor = PROT_MINOR;
770 myself->options |= PROT_MINOR << 24;
772 if(!get_config_bool(lookup_config(config_tree, "ExperimentalProtocol"), &experimental)) {
773 experimental = read_ecdsa_private_key();
775 logger(DEBUG_ALWAYS, LOG_WARNING, "Support for SPTPS disabled.");
777 if(experimental && !read_ecdsa_private_key())
781 if(!read_rsa_private_key())
784 /* Ensure myport is numeric */
787 struct addrinfo *ai = str2addrinfo("localhost", myport, SOCK_DGRAM);
789 if(!ai || !ai->ai_addr)
792 memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
793 sockaddr2str(&sa, NULL, &myport);
796 /* Read in all the subnets specified in the host configuration file */
798 for(config_t *cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
801 if(!get_config_subnet(cfg, &subnet))
804 subnet_add(myself, subnet);
807 /* Check some options */
809 if(!setup_myself_reloadable())
812 get_config_bool(lookup_config(config_tree, "StrictSubnets"), &strictsubnets);
813 get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
814 strictsubnets |= tunnelserver;
816 if(get_config_int(lookup_config(config_tree, "MaxConnectionBurst"), &max_connection_burst)) {
817 if(max_connection_burst <= 0) {
818 logger(DEBUG_ALWAYS, LOG_ERR, "MaxConnectionBurst cannot be negative!");
823 if(get_config_int(lookup_config(config_tree, "UDPRcvBuf"), &udp_rcvbuf)) {
824 if(udp_rcvbuf <= 0) {
825 logger(DEBUG_ALWAYS, LOG_ERR, "UDPRcvBuf cannot be negative!");
830 if(get_config_int(lookup_config(config_tree, "UDPSndBuf"), &udp_sndbuf)) {
831 if(udp_sndbuf <= 0) {
832 logger(DEBUG_ALWAYS, LOG_ERR, "UDPSndBuf cannot be negative!");
838 if(get_config_int(lookup_config(config_tree, "ReplayWindow"), &replaywin_int)) {
839 if(replaywin_int < 0) {
840 logger(DEBUG_ALWAYS, LOG_ERR, "ReplayWindow cannot be negative!");
843 replaywin = (unsigned)replaywin_int;
844 sptps_replaywin = replaywin;
847 /* Generate packet encryption key */
849 if(!get_config_string(lookup_config(config_tree, "Cipher"), &cipher))
850 cipher = xstrdup("blowfish");
852 if(!strcasecmp(cipher, "none")) {
853 myself->incipher = NULL;
854 } else if(!(myself->incipher = cipher_open_by_name(cipher))) {
855 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized cipher type!");
861 timeout_add(&keyexpire_timeout, keyexpire_handler, &keyexpire_timeout, &(struct timeval){keylifetime, rand() % 100000});
863 /* Check if we want to use message authentication codes... */
866 get_config_int(lookup_config(config_tree, "MACLength"), &maclength);
869 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus MAC length!");
873 if(!get_config_string(lookup_config(config_tree, "Digest"), &digest))
874 digest = xstrdup("sha1");
876 if(!strcasecmp(digest, "none")) {
877 myself->indigest = NULL;
878 } else if(!(myself->indigest = digest_open_by_name(digest, maclength))) {
879 logger(DEBUG_ALWAYS, LOG_ERR, "Unrecognized digest type!");
887 if(get_config_int(lookup_config(config_tree, "Compression"), &myself->incompression)) {
888 if(myself->incompression < 0 || myself->incompression > 11) {
889 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus compression level!");
893 myself->incompression = 0;
895 myself->connection->outcompression = 0;
899 myself->nexthop = myself;
900 myself->via = myself;
901 myself->status.reachable = true;
902 myself->last_state_change = now.tv_sec;
903 myself->status.sptps = experimental;
917 if(get_config_string(lookup_config(config_tree, "DeviceType"), &type)) {
918 if(!strcasecmp(type, "dummy"))
919 devops = dummy_devops;
920 else if(!strcasecmp(type, "raw_socket"))
921 devops = raw_socket_devops;
922 else if(!strcasecmp(type, "multicast"))
923 devops = multicast_devops;
925 else if(!strcasecmp(type, "uml"))
929 else if(!strcasecmp(type, "vde"))
934 get_config_bool(lookup_config(config_tree, "DeviceStandby"), &device_standby);
940 io_add(&device_io, handle_device_data, NULL, device_fd, IO_READ);
944 if(!do_detach && getenv("LISTEN_FDS")) {
948 listen_sockets = atoi(getenv("LISTEN_FDS"));
950 unsetenv("LISTEN_FDS");
953 if(listen_sockets > MAXSOCKETS) {
954 logger(DEBUG_ALWAYS, LOG_ERR, "Too many listening sockets");
958 for(int i = 0; i < listen_sockets; i++) {
960 if(getsockname(i + 3, &sa.sa, &salen) < 0) {
961 logger(DEBUG_ALWAYS, LOG_ERR, "Could not get address of listen fd %d: %s", i + 3, sockstrerror(sockerrno));
966 fcntl(i + 3, F_SETFD, FD_CLOEXEC);
969 int udp_fd = setup_vpn_in_socket(&sa);
973 io_add(&listen_socket[i].tcp, (io_cb_t)handle_new_meta_connection, &listen_socket[i], i + 3, IO_READ);
974 io_add(&listen_socket[i].udp, (io_cb_t)handle_incoming_vpn_data, &listen_socket[i], udp_fd, IO_READ);
976 if(debug_level >= DEBUG_CONNECTIONS) {
977 hostname = sockaddr2hostname(&sa);
978 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Listening on %s", hostname);
982 memcpy(&listen_socket[i].sa, &sa, salen);
988 for(config_t *cfg = lookup_config(config_tree, "BindToAddress"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
990 get_config_string(cfg, &address);
991 if(!add_listen_address(address, true))
995 for(config_t *cfg = lookup_config(config_tree, "ListenAddress"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
997 get_config_string(cfg, &address);
998 if(!add_listen_address(address, false))
1003 if(!add_listen_address(address, NULL))
1007 if(!listen_sockets) {
1008 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to create any listening socket!");
1012 /* If no Port option was specified, set myport to the port used by the first listening socket. */
1014 if(!port_specified || atoi(myport) == 0) {
1016 socklen_t salen = sizeof sa;
1017 if(!getsockname(listen_socket[0].udp.fd, &sa.sa, &salen)) {
1019 sockaddr2str(&sa, NULL, &myport);
1021 myport = xstrdup("655");
1025 xasprintf(&myself->hostname, "MYSELF port %s", myport);
1026 myself->connection->hostname = xstrdup(myself->hostname);
1030 last_config_check = now.tv_sec;
1038 bool setup_network(void) {
1045 if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
1046 if(pinginterval < 1) {
1047 pinginterval = 86400;
1052 if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
1054 if(pingtimeout < 1 || pingtimeout > pinginterval)
1055 pingtimeout = pinginterval;
1057 if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
1058 maxoutbufsize = 10 * MTU;
1066 if (!device_standby)
1069 /* Run subnet-up scripts for our own subnets */
1071 subnet_update(myself, NULL, true);
1077 close all open network connections
1079 void close_network_connections(void) {
1080 for(list_node_t *node = connection_list->head, *next; node; node = next) {
1082 connection_t *c = node->data;
1083 /* Keep control connections open until the end, so they know when we really terminated */
1084 if(c->status.control)
1087 terminate_connection(c, false);
1091 list_delete_list(outgoing_list);
1093 if(myself && myself->connection) {
1094 subnet_update(myself, NULL, false);
1095 terminate_connection(myself->connection, false);
1096 free_connection(myself->connection);
1099 for(int i = 0; i < listen_sockets; i++) {
1100 io_del(&listen_socket[i].tcp);
1101 io_del(&listen_socket[i].udp);
1102 close(listen_socket[i].tcp.fd);
1103 close(listen_socket[i].udp.fd);
1112 if (!device_standby)
1115 if(myport) free(myport);