X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnet_setup.c;h=77e7a7c9eb52a2d6cf0fc0571848b872f738b626;hp=757121ae4bc8c985fc84e9ba5967463ccc7f654e;hb=0c16add71c6432c882c6d8f538a4b2db0026ec24;hpb=8c91fac31570594b6249d632cefe768f33c54b19 diff --git a/src/net_setup.c b/src/net_setup.c index 757121ae..77e7a7c9 100644 --- a/src/net_setup.c +++ b/src/net_setup.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: net_setup.c,v 1.1.2.2 2002/02/20 16:04:39 guus Exp $ + $Id: net_setup.c,v 1.1.2.9 2002/03/01 15:14:29 guus Exp $ */ #include "config.h" @@ -219,9 +219,9 @@ int setup_myself(void) { config_t *cfg; subnet_t *subnet; - char *name, *mode, *afname, *cipher, *digest; - struct addrinfo hint, *ai; - int choice; + char *name, *hostname, *mode, *afname, *cipher, *digest; + struct addrinfo hint, *ai, *aip; + int choice, err; cp myself = new_node(); myself->connection = new_connection(); @@ -326,6 +326,15 @@ cp else routing_mode = RMODE_ROUTER; + get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance); +#if !defined(SOL_IP) || !defined(IP_TOS) + if(priorityinheritance) + syslog(LOG_WARNING, _("PriorityInheritance not supported on this platform")); +#endif + + if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire)) + macexpire= 600; + if(get_config_int(lookup_config(myself->connection->config_tree, "MaxTimeout"), &maxtimeout)) { if(maxtimeout <= 0) @@ -382,13 +391,15 @@ cp else myself->keylength = 1; + myself->connection->outcipher = EVP_bf_ofb(); + myself->key = (char *)xmalloc(myself->keylength); RAND_pseudo_bytes(myself->key, myself->keylength); if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime)) keylifetime = 3600; - keyexpires = time(NULL) + keylifetime; + keyexpires = now + keylifetime; /* Check if we want to use message authentication codes... */ @@ -410,6 +421,8 @@ cp else myself->digest = EVP_sha1(); + myself->connection->outdigest = EVP_sha1(); + if(get_config_int(lookup_config(myself->connection->config_tree, "MACLength"), &myself->maclength)) { if(myself->digest) @@ -429,6 +442,8 @@ cp else myself->maclength = 4; + myself->connection->outmaclength = 0; + /* Compression */ if(get_config_int(lookup_config(myself->connection->config_tree, "Compression"), &myself->compression)) @@ -441,6 +456,8 @@ cp } else myself->compression = 0; + + myself->connection->outcompression = 0; cp /* Done */ @@ -454,45 +471,46 @@ cp cp /* Open sockets */ + memset(&hint, 0, sizeof(hint)); + hint.ai_family = addressfamily; hint.ai_socktype = SOCK_STREAM; hint.ai_protocol = IPPROTO_TCP; hint.ai_flags = AI_PASSIVE; - if(getaddrinfo(NULL, myport, &hint, &ai) || !ai) + if((err = getaddrinfo(NULL, myport, &hint, &ai)) || !ai) { - syslog(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo", strerror(errno)); + syslog(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo", gai_strerror(err)); return -1; } - if((tcp_socket = setup_listen_socket((sockaddr_t *)ai->ai_addr)) < 0) + for(aip = ai; aip; aip = aip->ai_next) { - syslog(LOG_ERR, _("Unable to set up a listening TCP socket!")); - return -1; - } + if((tcp_socket[listen_sockets] = setup_listen_socket((sockaddr_t *)aip->ai_addr)) < 0) + continue; - freeaddrinfo(ai); + if((udp_socket[listen_sockets] = setup_vpn_in_socket((sockaddr_t *)aip->ai_addr)) < 0) + continue; - hint.ai_family = addressfamily; - hint.ai_socktype = SOCK_DGRAM; - hint.ai_protocol = IPPROTO_UDP; - hint.ai_flags = AI_PASSIVE; + if(debug_lvl >= DEBUG_CONNECTIONS) + { + hostname = sockaddr2hostname((sockaddr_t *)aip->ai_addr); + syslog(LOG_NOTICE, _("Listening on %s"), hostname); + free(hostname); + } - if(getaddrinfo(NULL, myport, &hint, &ai) || !ai) - { - syslog(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo", strerror(errno)); - return -1; + listen_sockets++; } - if((udp_socket = setup_vpn_in_socket((sockaddr_t *)ai->ai_addr)) < 0) + freeaddrinfo(ai); + + if(listen_sockets) + syslog(LOG_NOTICE, _("Ready")); + else { - syslog(LOG_ERR, _("Unable to set up a listening UDP socket!")); + syslog(LOG_ERR, _("Unable to create any listening socket!")); return -1; } - - freeaddrinfo(ai); - - syslog(LOG_NOTICE, _("Ready: listening on port %s"), myport); cp return 0; } @@ -503,6 +521,8 @@ cp int setup_network_connections(void) { cp + now = time(NULL); + init_connections(); init_subnets(); init_nodes(); @@ -540,6 +560,7 @@ void close_network_connections(void) { avl_node_t *node, *next; connection_t *c; + int i; cp for(node = connection_tree->head; node; node = next) { @@ -553,8 +574,11 @@ cp if(myself && myself->connection) terminate_connection(myself->connection, 0); - close(udp_socket); - close(tcp_socket); + for(i = 0; i < listen_sockets; i++) + { + close(udp_socket[i]); + close(tcp_socket[i]); + } exit_events(); exit_edges();