tinc/src/net_setup.c

562 lines
14 KiB
C
Raw Normal View History

/*
net_setup.c -- Setup.
Copyright (C) 1998-2005 Ivo Timmermans,
2000-2006 Guus Sliepen <guus@tinc-vpn.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id$
*/
#include "system.h"
2007-05-18 10:05:26 +00:00
#include "splay_tree.h"
#include "cipher.h"
#include "conf.h"
#include "connection.h"
#include "control.h"
#include "device.h"
#include "digest.h"
#include "graph.h"
#include "logger.h"
#include "net.h"
#include "netutl.h"
#include "process.h"
#include "protocol.h"
#include "route.h"
#include "rsa.h"
#include "subnet.h"
#include "utils.h"
#include "xalloc.h"
char *myport;
static struct event device_ev;
2007-05-18 10:00:00 +00:00
bool read_rsa_public_key(connection_t *c) {
2002-09-09 21:25:28 +00:00
FILE *fp;
char *fname;
char *n;
bool result;
2002-09-09 21:25:28 +00:00
cp();
/* First, check for simple PublicKey statement */
if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &n)) {
result = rsa_set_hex_public_key(&c->rsa, n, "FFFF");
free(n);
return result;
}
/* Else, check for PublicKeyFile statement and read it */
if(!get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &fname))
asprintf(&fname, "%s/hosts/%s", confbase, c->name);
2002-09-09 21:25:28 +00:00
fp = fopen(fname, "r");
2003-07-22 20:55:21 +00:00
if(!fp) {
logger(LOG_ERR, _("Error reading RSA public key file `%s': %s"),
2003-07-22 20:55:21 +00:00
fname, strerror(errno));
free(fname);
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
}
result = rsa_read_pem_public_key(&c->rsa, fp);
fclose(fp);
2002-09-09 21:25:28 +00:00
if(!result)
logger(LOG_ERR, _("Reading RSA public key file `%s' failed: %s"), fname, strerror(errno));
2002-09-09 21:25:28 +00:00
free(fname);
return result;
}
bool read_rsa_private_key() {
2002-09-09 21:25:28 +00:00
FILE *fp;
char *fname;
char *n, *d;
bool result;
2002-09-09 21:25:28 +00:00
cp();
/* First, check for simple PrivateKey statement */
if(get_config_string(lookup_config(config_tree, "PrivateKey"), &d)) {
if(!get_config_string(lookup_config(myself->connection->config_tree, "PublicKey"), &n)) {
logger(LOG_ERR, _("PrivateKey used but no PublicKey found!"));
free(d);
return false;
}
result = rsa_set_hex_private_key(&myself->connection->rsa, n, "FFFF", d);
free(n);
free(d);
return true;
}
/* Else, check for PrivateKeyFile statement and read it */
2002-09-09 21:25:28 +00:00
if(!get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
asprintf(&fname, "%s/rsa_key.priv", confbase);
fp = fopen(fname, "r");
2002-09-09 21:25:28 +00:00
if(!fp) {
logger(LOG_ERR, _("Error reading RSA private key file `%s': %s"),
fname, strerror(errno));
free(fname);
return false;
}
2002-09-09 21:25:28 +00:00
#if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
struct stat s;
if(fstat(fileno(fp), &s)) {
logger(LOG_ERR, _("Could not stat RSA private key file `%s': %s'"), fname, strerror(errno));
2002-09-09 21:25:28 +00:00
free(fname);
return false;
}
2002-09-09 21:25:28 +00:00
if(s.st_mode & ~0100700)
logger(LOG_WARNING, _("Warning: insecure file permissions for RSA private key file `%s'!"), fname);
#endif
2002-09-09 21:25:28 +00:00
result = rsa_read_pem_private_key(&myself->connection->rsa, fp);
fclose(fp);
if(!result)
logger(LOG_ERR, _("Reading RSA private key file `%s' failed: %s"), fname, strerror(errno));
2002-09-09 21:25:28 +00:00
free(fname);
return result;
}
static struct event keyexpire_event;
static void keyexpire_handler(int fd, short events, void *data) {
regenerate_key();
}
void regenerate_key() {
ifdebug(STATUS) logger(LOG_INFO, _("Regenerating symmetric key"));
if(!cipher_regenerate_key(&myself->cipher, true)) {
logger(LOG_ERR, _("Error regenerating key!"));
abort();
}
if(timeout_initialized(&keyexpire_event)) {
event_del(&keyexpire_event);
send_key_changed(broadcast, myself);
} else {
timeout_set(&keyexpire_event, keyexpire_handler, NULL);
}
event_add(&keyexpire_event, &(struct timeval){keylifetime, 0});
}
/*
Configure node_t myself and set up the local sockets (listen only)
*/
2007-05-18 10:00:00 +00:00
bool setup_myself(void) {
2002-09-09 21:25:28 +00:00
config_t *cfg;
subnet_t *subnet;
char *name, *hostname, *mode, *afname, *cipher, *digest;
char *address = NULL;
char *envp[5];
struct addrinfo *ai, *aip, hint = {0};
2003-07-22 20:55:21 +00:00
bool choice;
int i, err;
2002-09-09 21:25:28 +00:00
cp();
myself = new_node();
myself->connection = new_connection();
init_configuration(&myself->connection->config_tree);
asprintf(&myself->hostname, _("MYSELF"));
asprintf(&myself->connection->hostname, _("MYSELF"));
myself->connection->options = 0;
myself->connection->protocol_version = PROT_CURRENT;
if(!get_config_string(lookup_config(config_tree, "Name"), &name)) { /* Not acceptable */
logger(LOG_ERR, _("Name for tinc daemon required!"));
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
}
2003-07-22 20:55:21 +00:00
if(!check_id(name)) {
logger(LOG_ERR, _("Invalid name for myself!"));
2002-09-09 21:25:28 +00:00
free(name);
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
}
myself->name = name;
myself->connection->name = xstrdup(name);
2003-07-22 20:55:21 +00:00
if(!read_connection_config(myself->connection)) {
logger(LOG_ERR, _("Cannot open host configuration file for myself!"));
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
}
if(!read_rsa_private_key())
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
if(!get_config_string(lookup_config(myself->connection->config_tree, "Port"), &myport))
2002-09-09 21:25:28 +00:00
asprintf(&myport, "655");
/* Read in all the subnets specified in the host configuration file */
cfg = lookup_config(myself->connection->config_tree, "Subnet");
while(cfg) {
if(!get_config_subnet(cfg, &subnet))
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
subnet_add(myself, subnet);
cfg = lookup_config_next(myself->connection->config_tree, cfg);
}
/* Check some options */
if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice)
myself->options |= OPTION_INDIRECT;
2002-09-09 21:25:28 +00:00
if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice) && choice)
myself->options |= OPTION_TCPONLY;
2002-09-09 21:25:28 +00:00
if(get_config_bool(lookup_config(myself->connection->config_tree, "IndirectData"), &choice) && choice)
myself->options |= OPTION_INDIRECT;
2002-09-09 21:25:28 +00:00
if(get_config_bool(lookup_config(myself->connection->config_tree, "TCPOnly"), &choice) && choice)
myself->options |= OPTION_TCPONLY;
if(get_config_bool(lookup_config(myself->connection->config_tree, "PMTUDiscovery"), &choice) && choice)
2003-12-20 21:25:17 +00:00
myself->options |= OPTION_PMTU_DISCOVERY;
2002-09-09 21:25:28 +00:00
if(myself->options & OPTION_TCPONLY)
myself->options |= OPTION_INDIRECT;
get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
2002-09-09 21:25:28 +00:00
if(get_config_string(lookup_config(config_tree, "Mode"), &mode)) {
if(!strcasecmp(mode, "router"))
routing_mode = RMODE_ROUTER;
else if(!strcasecmp(mode, "switch"))
routing_mode = RMODE_SWITCH;
else if(!strcasecmp(mode, "hub"))
routing_mode = RMODE_HUB;
else {
logger(LOG_ERR, _("Invalid routing mode!"));
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
}
free(mode);
} else
routing_mode = RMODE_ROUTER;
2003-07-22 20:55:21 +00:00
get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
#if !defined(SOL_IP) || !defined(IP_TOS)
2002-09-09 21:25:28 +00:00
if(priorityinheritance)
logger(LOG_WARNING, _("PriorityInheritance not supported on this platform"));
#endif
2002-03-01 12:25:58 +00:00
2002-09-09 21:25:28 +00:00
if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
macexpire = 600;
if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
2002-09-09 21:25:28 +00:00
if(maxtimeout <= 0) {
logger(LOG_ERR, _("Bogus maximum timeout!"));
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
}
} else
maxtimeout = 900;
if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
if(!strcasecmp(afname, "IPv4"))
addressfamily = AF_INET;
else if(!strcasecmp(afname, "IPv6"))
addressfamily = AF_INET6;
else if(!strcasecmp(afname, "any"))
addressfamily = AF_UNSPEC;
else {
logger(LOG_ERR, _("Invalid address family!"));
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
}
free(afname);
}
2002-09-09 21:25:28 +00:00
get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
/* Generate packet encryption key */
if(!get_config_string(lookup_config(myself->connection->config_tree, "Cipher"), &cipher))
cipher = xstrdup("blowfish");
2002-09-09 21:25:28 +00:00
if(!cipher_open_by_name(&myself->cipher, cipher)) {
logger(LOG_ERR, _("Unrecognized cipher type!"));
return false;
}
2002-09-09 21:25:28 +00:00
if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
keylifetime = 3600;
regenerate_key();
2002-09-09 21:25:28 +00:00
/* Check if we want to use message authentication codes... */
if(!get_config_string(lookup_config(myself->connection->config_tree, "Digest"), &digest))
digest = xstrdup("sha1");
2002-09-09 21:25:28 +00:00
if(!digest_open_by_name(&myself->digest, digest)) {
logger(LOG_ERR, _("Unrecognized digest type!"));
return false;
}
if(!get_config_int(lookup_config(myself->connection->config_tree, "MACLength"), &myself->maclength))
if(digest_active(&myself->digest)) {
if(myself->maclength > digest_length(&myself->digest)) {
logger(LOG_ERR, _("MAC length exceeds size of digest!"));
return false;
} else if(myself->maclength < 0) {
logger(LOG_ERR, _("Bogus MAC length!"));
return false;
}
}
2002-09-09 21:25:28 +00:00
/* Compression */
if(get_config_int(lookup_config(myself->connection->config_tree, "Compression"), &myself->compression)) {
if(myself->compression < 0 || myself->compression > 11) {
logger(LOG_ERR, _("Bogus compression level!"));
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
}
} else
myself->compression = 0;
myself->connection->outcompression = 0;
/* Done */
myself->nexthop = myself;
myself->via = myself;
2003-07-22 20:55:21 +00:00
myself->status.reachable = true;
2002-09-09 21:25:28 +00:00
node_add(myself);
graph();
/* Open device */
if(!setup_device())
return false;
event_set(&device_ev, device_fd, EV_READ|EV_PERSIST, handle_device_data, NULL);
if (event_add(&device_ev, NULL) < 0) {
logger(LOG_ERR, _("event_add failed: %s"), strerror(errno));
close_device();
return false;
}
/* Run tinc-up script to further initialize the tap interface */
asprintf(&envp[0], "NETNAME=%s", netname ? : "");
asprintf(&envp[1], "DEVICE=%s", device ? : "");
asprintf(&envp[2], "INTERFACE=%s", iface ? : "");
asprintf(&envp[3], "NAME=%s", myself->name);
envp[4] = NULL;
execute_script("tinc-up", envp);
for(i = 0; i < 5; i++)
free(envp[i]);
2004-12-01 20:06:05 +00:00
/* Run subnet-up scripts for our own subnets */
subnet_update(myself, NULL, true);
2002-09-09 21:25:28 +00:00
/* Open sockets */
get_config_string(lookup_config(config_tree, "BindToAddress"), &address);
hint.ai_family = addressfamily;
hint.ai_socktype = SOCK_STREAM;
hint.ai_protocol = IPPROTO_TCP;
hint.ai_flags = AI_PASSIVE;
2002-09-09 21:25:28 +00:00
err = getaddrinfo(address, myport, &hint, &ai);
if(err || !ai) {
logger(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo",
2002-09-09 21:25:28 +00:00
gai_strerror(err));
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
}
listen_sockets = 0;
for(aip = ai; aip; aip = aip->ai_next) {
listen_socket[listen_sockets].tcp =
setup_listen_socket((sockaddr_t *) aip->ai_addr);
if(listen_socket[listen_sockets].tcp < 0)
continue;
listen_socket[listen_sockets].udp =
setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
if(listen_socket[listen_sockets].udp < 0) {
close(listen_socket[listen_sockets].tcp);
continue;
}
event_set(&listen_socket[listen_sockets].ev_tcp,
listen_socket[listen_sockets].tcp,
EV_READ|EV_PERSIST,
handle_new_meta_connection, NULL);
if(event_add(&listen_socket[listen_sockets].ev_tcp, NULL) < 0) {
logger(LOG_EMERG, _("event_add failed: %s"), strerror(errno));
abort();
}
event_set(&listen_socket[listen_sockets].ev_udp,
listen_socket[listen_sockets].udp,
EV_READ|EV_PERSIST,
handle_incoming_vpn_data, NULL);
if(event_add(&listen_socket[listen_sockets].ev_udp, NULL) < 0) {
logger(LOG_EMERG, _("event_add failed: %s"), strerror(errno));
abort();
}
2002-09-09 21:25:28 +00:00
ifdebug(CONNECTIONS) {
2002-09-09 21:25:28 +00:00
hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
logger(LOG_NOTICE, _("Listening on %s"), hostname);
2002-09-09 21:25:28 +00:00
free(hostname);
}
memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
2002-09-09 21:25:28 +00:00
listen_sockets++;
if(listen_sockets >= MAXSOCKETS) {
logger(LOG_WARNING, _("Maximum of %d listening sockets reached"), MAXSOCKETS);
break;
}
2002-02-26 23:26:41 +00:00
}
2002-09-09 21:25:28 +00:00
freeaddrinfo(ai);
if(listen_sockets)
logger(LOG_NOTICE, _("Ready"));
2002-09-09 21:25:28 +00:00
else {
logger(LOG_ERR, _("Unable to create any listening socket!"));
2003-07-22 20:55:21 +00:00
return false;
2002-09-09 21:25:28 +00:00
}
2003-07-22 20:55:21 +00:00
return true;
}
/*
setup all initial network connections
*/
2007-05-18 10:00:00 +00:00
bool setup_network_connections(void) {
2002-09-09 21:25:28 +00:00
cp();
init_connections();
init_subnets();
init_nodes();
init_edges();
init_requests();
if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
if(pinginterval < 1) {
pinginterval = 86400;
2002-09-09 21:25:28 +00:00
}
} else
pinginterval = 60;
if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
pingtimeout = 5;
if(pingtimeout < 1 || pingtimeout > pinginterval)
pingtimeout = pinginterval;
if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
maxoutbufsize = 4 * MTU;
2002-09-09 21:25:28 +00:00
2003-07-22 20:55:21 +00:00
if(!setup_myself())
return false;
2003-01-14 12:53:59 +00:00
2002-09-09 21:25:28 +00:00
try_outgoing_connections();
2003-07-22 20:55:21 +00:00
return true;
}
/*
close all open network connections
*/
2007-05-18 10:00:00 +00:00
void close_network_connections(void) {
2007-05-18 10:05:26 +00:00
splay_node_t *node, *next;
2002-09-09 21:25:28 +00:00
connection_t *c;
2003-01-14 12:53:59 +00:00
char *envp[5];
2002-09-09 21:25:28 +00:00
int i;
cp();
for(node = connection_tree->head; node; node = next) {
next = node->next;
2003-08-28 21:05:11 +00:00
c = node->data;
2002-09-09 21:25:28 +00:00
if(c->outgoing) {
if(c->outgoing->ai)
freeaddrinfo(c->outgoing->ai);
free(c->outgoing->name);
free(c->outgoing);
c->outgoing = NULL;
}
2003-07-22 20:55:21 +00:00
terminate_connection(c, false);
2002-09-09 21:25:28 +00:00
}
2004-12-01 20:06:05 +00:00
if(myself && myself->connection) {
subnet_update(myself, NULL, false);
2003-07-22 20:55:21 +00:00
terminate_connection(myself->connection, false);
2004-12-01 20:06:05 +00:00
}
2002-09-09 21:25:28 +00:00
for(i = 0; i < listen_sockets; i++) {
event_del(&listen_socket[i].ev_tcp);
event_del(&listen_socket[i].ev_udp);
2002-09-09 21:25:28 +00:00
close(listen_socket[i].tcp);
close(listen_socket[i].udp);
}
asprintf(&envp[0], "NETNAME=%s", netname ? : "");
asprintf(&envp[1], "DEVICE=%s", device ? : "");
asprintf(&envp[2], "INTERFACE=%s", iface ? : "");
asprintf(&envp[3], "NAME=%s", myself->name);
envp[4] = NULL;
2002-09-09 21:25:28 +00:00
exit_requests();
exit_edges();
exit_subnets();
exit_nodes();
exit_connections();
execute_script("tinc-down", envp);
for(i = 0; i < 4; i++)
free(envp[i]);
close_device();
return;
}