3 Copyright (C) 1998-2002 Ivo Timmermans <itimmermans@bigfoot.com>,
4 2000-2002 Guus Sliepen <guus@sliepen.warande.net>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 $Id: net_setup.c,v 1.2 2002/04/09 15:26:00 zarq Exp $
28 #include <netinet/in.h>
30 #include <netinet/ip.h>
31 #include <netinet/tcp.h>
38 #include <sys/types.h>
41 #include <sys/ioctl.h>
42 /* SunOS really wants sys/socket.h BEFORE net/if.h,
43 and FreeBSD wants these lines below the rest. */
44 #include <arpa/inet.h>
45 #include <sys/socket.h>
48 #include <openssl/pem.h>
49 #include <openssl/rsa.h>
50 #include <openssl/rand.h>
58 #include "connection.h"
75 int read_rsa_public_key(connection_t *c)
82 c->rsa_key = RSA_new();
84 /* First, check for simple PublicKey statement */
86 if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &key))
88 BN_hex2bn(&c->rsa_key->n, key);
89 BN_hex2bn(&c->rsa_key->e, "FFFF");
94 /* Else, check for PublicKeyFile statement and read it */
96 if(get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &fname))
98 if(is_safe_path(fname))
100 if((fp = fopen(fname, "r")) == NULL)
102 syslog(LOG_ERR, _("Error reading RSA public key file `%s': %s"),
103 fname, strerror(errno));
108 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
112 syslog(LOG_ERR, _("Reading RSA public key file `%s' failed: %s"),
113 fname, strerror(errno));
125 /* Else, check if a harnessed public key is in the config file */
127 asprintf(&fname, "%s/hosts/%s", confbase, c->name);
128 if((fp = fopen(fname, "r")))
130 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
140 syslog(LOG_ERR, _("No public key for %s specified!"), c->name);
145 int read_rsa_private_key(void)
150 if(get_config_string(lookup_config(config_tree, "PrivateKey"), &key))
152 myself->connection->rsa_key = RSA_new();
153 BN_hex2bn(&myself->connection->rsa_key->d, key);
154 BN_hex2bn(&myself->connection->rsa_key->e, "FFFF");
159 if(!get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
160 asprintf(&fname, "%s/rsa_key.priv", confbase);
162 if(is_safe_path(fname))
164 if((fp = fopen(fname, "r")) == NULL)
166 syslog(LOG_ERR, _("Error reading RSA private key file `%s': %s"),
167 fname, strerror(errno));
172 myself->connection->rsa_key = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
174 if(!myself->connection->rsa_key)
176 syslog(LOG_ERR, _("Reading RSA private key file `%s' failed: %s"),
177 fname, strerror(errno));
188 Configure node_t myself and set up the local sockets (listen only)
190 int setup_myself(void)
194 char *name, *hostname, *mode, *afname, *cipher, *digest;
195 struct addrinfo hint, *ai, *aip;
199 myself->connection = new_connection();
200 init_configuration(&myself->connection->config_tree);
202 asprintf(&myself->hostname, _("MYSELF"));
203 asprintf(&myself->connection->hostname, _("MYSELF"));
205 myself->connection->options = 0;
206 myself->connection->protocol_version = PROT_CURRENT;
208 if(!get_config_string(lookup_config(config_tree, "Name"), &name)) /* Not acceptable */
210 syslog(LOG_ERR, _("Name for tinc daemon required!"));
216 syslog(LOG_ERR, _("Invalid name for myself!"));
222 myself->connection->name = xstrdup(name);
225 if(read_rsa_private_key())
228 if(read_connection_config(myself->connection))
230 syslog(LOG_ERR, _("Cannot open host configuration file for myself!"));
234 if(read_rsa_public_key(myself->connection))
238 if(!get_config_string(lookup_config(myself->connection->config_tree, "Port"), &myport))
239 asprintf(&myport, "655");
241 /* Read in all the subnets specified in the host configuration file */
243 cfg = lookup_config(myself->connection->config_tree, "Subnet");
247 if(!get_config_subnet(cfg, &subnet))
250 subnet_add(myself, subnet);
252 cfg = lookup_config_next(myself->connection->config_tree, cfg);
256 /* Check some options */
258 if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice))
260 myself->options |= OPTION_INDIRECT;
262 if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice))
264 myself->options |= OPTION_TCPONLY;
266 if(get_config_bool(lookup_config(myself->connection->config_tree, "IndirectData"), &choice))
268 myself->options |= OPTION_INDIRECT;
270 if(get_config_bool(lookup_config(myself->connection->config_tree, "TCPOnly"), &choice))
272 myself->options |= OPTION_TCPONLY;
274 if(myself->options & OPTION_TCPONLY)
275 myself->options |= OPTION_INDIRECT;
277 if(get_config_string(lookup_config(config_tree, "Mode"), &mode))
279 if(!strcasecmp(mode, "router"))
280 routing_mode = RMODE_ROUTER;
281 else if (!strcasecmp(mode, "switch"))
282 routing_mode = RMODE_SWITCH;
283 else if (!strcasecmp(mode, "hub"))
284 routing_mode = RMODE_HUB;
287 syslog(LOG_ERR, _("Invalid routing mode!"));
293 routing_mode = RMODE_ROUTER;
295 get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
296 #if !defined(SOL_IP) || !defined(IP_TOS)
297 if(priorityinheritance)
298 syslog(LOG_WARNING, _("PriorityInheritance not supported on this platform"));
301 if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
304 if(get_config_int(lookup_config(myself->connection->config_tree, "MaxTimeout"), &maxtimeout))
308 syslog(LOG_ERR, _("Bogus maximum timeout!"));
315 if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname))
317 if(!strcasecmp(afname, "IPv4"))
318 addressfamily = AF_INET;
319 else if (!strcasecmp(afname, "IPv6"))
320 addressfamily = AF_INET6;
321 else if (!strcasecmp(afname, "any"))
322 addressfamily = AF_UNSPEC;
325 syslog(LOG_ERR, _("Invalid address family!"));
331 addressfamily = AF_INET;
333 get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
335 /* Generate packet encryption key */
337 if(get_config_string(lookup_config(myself->connection->config_tree, "Cipher"), &cipher))
339 if(!strcasecmp(cipher, "none"))
341 myself->cipher = NULL;
345 if(!(myself->cipher = EVP_get_cipherbyname(cipher)))
347 syslog(LOG_ERR, _("Unrecognized cipher type!"));
353 myself->cipher = EVP_bf_cbc();
356 myself->keylength = myself->cipher->key_len + myself->cipher->iv_len;
358 myself->keylength = 1;
360 myself->connection->outcipher = EVP_bf_ofb();
362 myself->key = (char *)xmalloc(myself->keylength);
363 RAND_pseudo_bytes(myself->key, myself->keylength);
365 if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
368 keyexpires = now + keylifetime;
370 /* Check if we want to use message authentication codes... */
372 if(get_config_string(lookup_config(myself->connection->config_tree, "Digest"), &digest))
374 if(!strcasecmp(digest, "none"))
376 myself->digest = NULL;
380 if(!(myself->digest = EVP_get_digestbyname(digest)))
382 syslog(LOG_ERR, _("Unrecognized digest type!"));
388 myself->digest = EVP_sha1();
390 myself->connection->outdigest = EVP_sha1();
392 if(get_config_int(lookup_config(myself->connection->config_tree, "MACLength"), &myself->maclength))
396 if(myself->maclength > myself->digest->md_size)
398 syslog(LOG_ERR, _("MAC length exceeds size of digest!"));
401 else if (myself->maclength < 0)
403 syslog(LOG_ERR, _("Bogus MAC length!"));
409 myself->maclength = 4;
411 myself->connection->outmaclength = 0;
415 if(get_config_int(lookup_config(myself->connection->config_tree, "Compression"), &myself->compression))
417 if(myself->compression < 0 || myself->compression > 9)
419 syslog(LOG_ERR, _("Bogus compression level!"));
424 myself->compression = 0;
426 myself->connection->outcompression = 0;
430 myself->nexthop = myself;
431 myself->via = myself;
432 myself->status.active = 1;
433 myself->status.reachable = 1;
441 memset(&hint, 0, sizeof(hint));
443 hint.ai_family = addressfamily;
444 hint.ai_socktype = SOCK_STREAM;
445 hint.ai_protocol = IPPROTO_TCP;
446 hint.ai_flags = AI_PASSIVE;
448 if((err = getaddrinfo(NULL, myport, &hint, &ai)) || !ai)
450 syslog(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo", gai_strerror(err));
454 for(aip = ai; aip; aip = aip->ai_next)
456 if((listen_socket[listen_sockets].tcp = setup_listen_socket((sockaddr_t *)aip->ai_addr)) < 0)
459 if((listen_socket[listen_sockets].udp = setup_vpn_in_socket((sockaddr_t *)aip->ai_addr)) < 0)
462 if(debug_lvl >= DEBUG_CONNECTIONS)
464 hostname = sockaddr2hostname((sockaddr_t *)aip->ai_addr);
465 syslog(LOG_NOTICE, _("Listening on %s"), hostname);
469 listen_socket[listen_sockets].sa.sa = *aip->ai_addr;
476 syslog(LOG_NOTICE, _("Ready"));
479 syslog(LOG_ERR, _("Unable to create any listening socket!"));
487 setup all initial network connections
489 int setup_network_connections(void)
501 if(get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
511 if(setup_device() < 0)
514 /* Run tinc-up script to further initialize the tap interface */
515 execute_script("tinc-up");
517 if(setup_myself() < 0)
520 try_outgoing_connections();
526 close all open network connections
528 void close_network_connections(void)
530 avl_node_t *node, *next;
534 for(node = connection_tree->head; node; node = next)
537 c = (connection_t *)node->data;
539 free(c->outgoing->name), free(c->outgoing), c->outgoing = NULL;
540 terminate_connection(c, 0);
543 if(myself && myself->connection)
544 terminate_connection(myself->connection, 0);
546 for(i = 0; i < listen_sockets; i++)
548 close(listen_socket[i].tcp);
549 close(listen_socket[i].udp);
559 execute_script("tinc-down");