tinc/src/net_setup.c

785 lines
19 KiB
C
Raw Normal View History

2019-08-26 11:44:36 +00:00
/*
net_setup.c -- Setup.
2019-08-26 11:44:37 +00:00
Copyright (C) 1998-2005 Ivo Timmermans,
2019-08-26 11:44:49 +00:00
2000-2010 Guus Sliepen <guus@tinc-vpn.org>
2019-08-26 11:44:38 +00:00
2006 Scott Lamb <slamb@slamb.org>
2019-08-26 11:44:40 +00:00
2010 Brandon Black <blblack@gmail.com>
2019-08-26 11:44:36 +00:00
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.
2019-08-26 11:44:38 +00:00
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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2019-08-26 11:44:36 +00:00
*/
2019-08-26 11:44:36 +00:00
#include "system.h"
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
#include "splay_tree.h"
#include "cipher.h"
2019-08-26 11:44:36 +00:00
#include "conf.h"
#include "connection.h"
2019-08-26 11:44:49 +00:00
#include "control.h"
2019-08-26 11:44:36 +00:00
#include "device.h"
2019-08-26 11:44:49 +00:00
#include "digest.h"
#include "ecdsa.h"
2019-08-26 11:44:36 +00:00
#include "graph.h"
#include "logger.h"
2019-08-26 11:44:36 +00:00
#include "net.h"
#include "netutl.h"
#include "process.h"
#include "protocol.h"
#include "route.h"
2019-08-26 11:44:49 +00:00
#include "rsa.h"
2019-08-26 11:44:36 +00:00
#include "subnet.h"
#include "utils.h"
#include "xalloc.h"
2019-08-26 11:44:36 +00:00
char *myport;
2019-08-26 11:44:49 +00:00
static struct event device_ev;
2019-08-26 11:44:47 +00:00
2019-08-26 11:44:49 +00:00
bool node_read_ecdsa_public_key(node_t *n) {
if(ecdsa_active(&n->ecdsa))
return true;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
splay_tree_t *config_tree;
FILE *fp;
char *fname;
char *p;
bool result = false;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
xasprintf(&fname, "%s/hosts/%s", confbase, n->name);
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
init_configuration(&config_tree);
if(!read_config_file(config_tree, fname))
goto exit;
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
/* First, check for simple ECDSAPublicKey statement */
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
if(get_config_string(lookup_config(config_tree, "ECDSAPublicKey"), &p)) {
result = ecdsa_set_base64_public_key(&n->ecdsa, p);
free(p);
goto exit;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:49 +00:00
/* Else, check for ECDSAPublicKeyFile statement and read it */
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
free(fname);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(!get_config_string(lookup_config(config_tree, "ECDSAPublicKeyFile"), &fname))
xasprintf(&fname, "%s/hosts/%s", confbase, n->name);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
fp = fopen(fname, "r");
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(!fp) {
logger(LOG_ERR, "Error reading ECDSA public key file `%s': %s", fname, strerror(errno));
goto exit;
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
result = ecdsa_read_pem_public_key(&n->ecdsa, fp);
fclose(fp);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
exit:
exit_configuration(&config_tree);
free(fname);
return result;
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
bool read_ecdsa_public_key(connection_t *c) {
FILE *fp;
char *fname;
char *p;
bool result;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
/* First, check for simple ECDSAPublicKey statement */
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(get_config_string(lookup_config(c->config_tree, "ECDSAPublicKey"), &p)) {
result = ecdsa_set_base64_public_key(&c->ecdsa, p);
free(p);
return result;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:49 +00:00
/* Else, check for ECDSAPublicKeyFile statement and read it */
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(!get_config_string(lookup_config(c->config_tree, "ECDSAPublicKeyFile"), &fname))
xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
fp = fopen(fname, "r");
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:41 +00:00
if(!fp) {
2019-08-26 11:44:49 +00:00
logger(LOG_ERR, "Error reading ECDSA public key file `%s': %s",
fname, strerror(errno));
free(fname);
2019-08-26 11:44:41 +00:00
return false;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:49 +00:00
result = ecdsa_read_pem_public_key(&c->ecdsa, fp);
2019-08-26 11:44:41 +00:00
fclose(fp);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(!result)
logger(LOG_ERR, "Reading ECDSA public key file `%s' failed: %s", fname, strerror(errno));
free(fname);
return result;
}
bool read_rsa_public_key(connection_t *c) {
FILE *fp;
char *fname;
char *n;
bool result;
/* 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;
2019-08-26 11:44:43 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
/* Else, check for PublicKeyFile statement and read it */
if(!get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &fname))
xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
fp = fopen(fname, "r");
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:41 +00:00
if(!fp) {
2019-08-26 11:44:49 +00:00
logger(LOG_ERR, "Error reading RSA public key file `%s': %s",
fname, strerror(errno));
free(fname);
2019-08-26 11:44:41 +00:00
return false;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:49 +00:00
result = rsa_read_pem_public_key(&c->rsa, fp);
2019-08-26 11:44:41 +00:00
fclose(fp);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(!result)
logger(LOG_ERR, "Reading RSA public key file `%s' failed: %s", fname, strerror(errno));
free(fname);
return result;
}
static bool read_ecdsa_private_key(void) {
FILE *fp;
char *fname;
bool result;
/* Check for PrivateKeyFile statement and read it */
if(!get_config_string(lookup_config(config_tree, "ECDSAPrivateKeyFile"), &fname))
xasprintf(&fname, "%s/ecdsa_key.priv", confbase);
fp = fopen(fname, "r");
if(!fp) {
logger(LOG_ERR, "Error reading ECDSA private key file `%s': %s",
fname, strerror(errno));
free(fname);
return false;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
#if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
struct stat s;
if(fstat(fileno(fp), &s)) {
logger(LOG_ERR, "Could not stat ECDSA private key file `%s': %s'", fname, strerror(errno));
free(fname);
return false;
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(s.st_mode & ~0100700)
logger(LOG_WARNING, "Warning: insecure file permissions for ECDSA private key file `%s'!", fname);
#endif
result = ecdsa_read_pem_private_key(&myself->connection->ecdsa, fp);
fclose(fp);
if(!result)
logger(LOG_ERR, "Reading ECDSA private key file `%s' failed: %s", fname, strerror(errno));
free(fname);
return result;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:41 +00:00
static bool read_rsa_private_key(void) {
2019-08-26 11:44:36 +00:00
FILE *fp;
2019-08-26 11:44:49 +00:00
char *fname;
char *n, *d;
bool result;
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
/* First, check for simple PrivateKey statement */
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
if(get_config_string(lookup_config(config_tree, "PrivateKey"), &d)) {
if(!get_config_string(lookup_config(config_tree, "PublicKey"), &n)) {
2019-08-26 11:44:45 +00:00
logger(LOG_ERR, "PrivateKey used but no PublicKey found!");
2019-08-26 11:44:49 +00:00
free(d);
2019-08-26 11:44:43 +00:00
return false;
}
2019-08-26 11:44:49 +00:00
result = rsa_set_hex_private_key(&myself->connection->rsa, n, "FFFF", d);
free(n);
free(d);
2019-08-26 11:44:36 +00:00
return true;
}
2019-08-26 11:44:49 +00:00
/* Else, check for PrivateKeyFile statement and read it */
if(!get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
2019-08-26 11:44:38 +00:00
xasprintf(&fname, "%s/rsa_key.priv", confbase);
2019-08-26 11:44:36 +00:00
fp = fopen(fname, "r");
if(!fp) {
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "Error reading RSA private key file `%s': %s",
2019-08-26 11:44:49 +00:00
fname, strerror(errno));
2019-08-26 11:44:36 +00:00
free(fname);
return false;
}
2019-08-26 11:44:49 +00:00
#if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
2019-08-26 11:44:43 +00:00
struct stat s;
2019-08-26 11:44:49 +00:00
if(fstat(fileno(fp), &s)) {
logger(LOG_ERR, "Could not stat RSA private key file `%s': %s'", fname, strerror(errno));
free(fname);
return false;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
if(s.st_mode & ~0100700)
logger(LOG_WARNING, "Warning: insecure file permissions for RSA private key file `%s'!", fname);
2019-08-26 11:44:36 +00:00
#endif
2019-08-26 11:44:49 +00:00
result = rsa_read_pem_private_key(&myself->connection->rsa, fp);
2019-08-26 11:44:36 +00:00
fclose(fp);
2019-08-26 11:44:49 +00:00
if(!result)
logger(LOG_ERR, "Reading RSA private key file `%s' failed: %s", fname, strerror(errno));
free(fname);
return result;
}
static struct event keyexpire_event;
static void keyexpire_handler(int fd, short events, void *data) {
regenerate_key();
}
void regenerate_key(void) {
if(timeout_initialized(&keyexpire_event)) {
ifdebug(STATUS) logger(LOG_INFO, "Expiring symmetric keys");
event_del(&keyexpire_event);
send_key_changed();
} else {
timeout_set(&keyexpire_event, keyexpire_handler, NULL);
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:49 +00:00
event_add(&keyexpire_event, &(struct timeval){keylifetime, 0});
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:40 +00:00
/*
Read Subnets from all host config files
*/
void load_all_subnets(void) {
DIR *dir;
struct dirent *ent;
char *dname;
char *fname;
2019-08-26 11:44:49 +00:00
splay_tree_t *config_tree;
2019-08-26 11:44:40 +00:00
config_t *cfg;
subnet_t *s, *s2;
node_t *n;
2019-08-26 11:44:49 +00:00
bool result;
2019-08-26 11:44:40 +00:00
xasprintf(&dname, "%s/hosts", confbase);
dir = opendir(dname);
if(!dir) {
logger(LOG_ERR, "Could not open %s: %s", dname, strerror(errno));
free(dname);
return;
}
while((ent = readdir(dir))) {
2019-08-26 11:44:49 +00:00
if(!check_id(ent->d_name))
2019-08-26 11:44:40 +00:00
continue;
n = lookup_node(ent->d_name);
2019-08-26 11:44:49 +00:00
#ifdef _DIRENT_HAVE_D_TYPE
2019-08-26 11:44:40 +00:00
//if(ent->d_type != DT_REG)
2019-08-26 11:44:49 +00:00
// continue;
#endif
2019-08-26 11:44:40 +00:00
xasprintf(&fname, "%s/hosts/%s", confbase, ent->d_name);
init_configuration(&config_tree);
2019-08-26 11:44:49 +00:00
result = read_config_file(config_tree, fname);
2019-08-26 11:44:40 +00:00
free(fname);
2019-08-26 11:44:49 +00:00
if(!result)
continue;
2019-08-26 11:44:40 +00:00
if(!n) {
n = new_node();
n->name = xstrdup(ent->d_name);
node_add(n);
}
for(cfg = lookup_config(config_tree, "Subnet"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
2019-08-26 11:44:49 +00:00
if(!get_config_subnet(cfg, &s))
2019-08-26 11:44:40 +00:00
continue;
if((s2 = lookup_subnet(n, s))) {
s2->expires = -1;
} else {
subnet_add(n, s);
}
}
exit_configuration(&config_tree);
}
closedir(dir);
}
2019-08-26 11:44:36 +00:00
/*
Configure node_t myself and set up the local sockets (listen only)
*/
2019-08-26 11:44:41 +00:00
static bool setup_myself(void) {
2019-08-26 11:44:36 +00:00
config_t *cfg;
subnet_t *subnet;
2019-08-26 11:44:49 +00:00
char *name, *hostname, *mode, *afname, *cipher, *digest;
2019-08-26 11:44:40 +00:00
char *fname = NULL;
2019-08-26 11:44:36 +00:00
char *address = NULL;
2019-08-26 11:44:49 +00:00
char *envp[5];
2019-08-26 11:44:49 +00:00
struct addrinfo *ai, *aip, hint = {0};
2019-08-26 11:44:36 +00:00
bool choice;
int i, err;
2019-08-26 11:44:40 +00:00
int replaywin_int;
2019-08-26 11:44:36 +00:00
myself = new_node();
myself->connection = new_connection();
2019-08-26 11:44:39 +00:00
myself->hostname = xstrdup("MYSELF");
myself->connection->hostname = xstrdup("MYSELF");
2019-08-26 11:44:36 +00:00
myself->connection->options = 0;
2019-08-26 11:44:49 +00:00
myself->connection->protocol_major = PROT_MAJOR;
myself->connection->protocol_minor = PROT_MINOR;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(!get_config_string(lookup_config(config_tree, "Name"), &name)) { /* Not acceptable */
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "Name for tinc daemon required!");
2019-08-26 11:44:36 +00:00
return false;
}
2019-08-26 11:44:49 +00:00
if(!check_id(name)) {
logger(LOG_ERR, "Invalid name for myself!");
free(name);
return false;
}
2019-08-26 11:44:45 +00:00
2019-08-26 11:44:36 +00:00
myself->name = name;
myself->connection->name = xstrdup(name);
2019-08-26 11:44:40 +00:00
xasprintf(&fname, "%s/hosts/%s", confbase, name);
read_config_options(config_tree, name);
read_config_file(config_tree, fname);
free(fname);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
get_config_bool(lookup_config(config_tree, "ExperimentalProtocol"), &experimental);
if(experimental && !read_ecdsa_private_key())
2019-08-26 11:44:36 +00:00
return false;
2019-08-26 11:44:49 +00:00
if(!read_rsa_private_key())
return false;
2019-08-26 11:44:45 +00:00
2019-08-26 11:44:49 +00:00
if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
myport = xstrdup("655");
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:40 +00:00
if(!atoi(myport)) {
struct addrinfo *ai = str2addrinfo("localhost", myport, SOCK_DGRAM);
sockaddr_t sa;
2019-08-26 11:44:49 +00:00
if(!ai || !ai->ai_addr)
2019-08-26 11:44:40 +00:00
return false;
free(myport);
memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
sockaddr2str(&sa, NULL, &myport);
}
2019-08-26 11:44:36 +00:00
/* Read in all the subnets specified in the host configuration file */
2019-08-26 11:44:40 +00:00
cfg = lookup_config(config_tree, "Subnet");
2019-08-26 11:44:36 +00:00
while(cfg) {
2019-08-26 11:44:49 +00:00
if(!get_config_subnet(cfg, &subnet))
2019-08-26 11:44:36 +00:00
return false;
subnet_add(myself, subnet);
2019-08-26 11:44:40 +00:00
cfg = lookup_config_next(config_tree, cfg);
2019-08-26 11:44:36 +00:00
}
/* Check some options */
2019-08-26 11:44:49 +00:00
if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice)
2019-08-26 11:44:36 +00:00
myself->options |= OPTION_INDIRECT;
2019-08-26 11:44:49 +00:00
if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice) && choice)
2019-08-26 11:44:36 +00:00
myself->options |= OPTION_TCPONLY;
2019-08-26 11:44:49 +00:00
if(myself->options & OPTION_TCPONLY)
2019-08-26 11:44:36 +00:00
myself->options |= OPTION_INDIRECT;
2019-08-26 11:44:40 +00:00
get_config_bool(lookup_config(config_tree, "DirectOnly"), &directonly);
get_config_bool(lookup_config(config_tree, "StrictSubnets"), &strictsubnets);
2019-08-26 11:44:36 +00:00
get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
2019-08-26 11:44:40 +00:00
strictsubnets |= tunnelserver;
2019-08-26 11:44:36 +00:00
if(get_config_string(lookup_config(config_tree, "Mode"), &mode)) {
2019-08-26 11:44:49 +00:00
if(!strcasecmp(mode, "router"))
2019-08-26 11:44:36 +00:00
routing_mode = RMODE_ROUTER;
2019-08-26 11:44:49 +00:00
else if(!strcasecmp(mode, "switch"))
2019-08-26 11:44:36 +00:00
routing_mode = RMODE_SWITCH;
2019-08-26 11:44:49 +00:00
else if(!strcasecmp(mode, "hub"))
2019-08-26 11:44:36 +00:00
routing_mode = RMODE_HUB;
2019-08-26 11:44:49 +00:00
else {
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "Invalid routing mode!");
2019-08-26 11:44:36 +00:00
return false;
}
free(mode);
2019-08-26 11:44:40 +00:00
}
if(get_config_string(lookup_config(config_tree, "Forwarding"), &mode)) {
2019-08-26 11:44:49 +00:00
if(!strcasecmp(mode, "off"))
2019-08-26 11:44:40 +00:00
forwarding_mode = FMODE_OFF;
2019-08-26 11:44:49 +00:00
else if(!strcasecmp(mode, "internal"))
2019-08-26 11:44:40 +00:00
forwarding_mode = FMODE_INTERNAL;
2019-08-26 11:44:49 +00:00
else if(!strcasecmp(mode, "kernel"))
2019-08-26 11:44:40 +00:00
forwarding_mode = FMODE_KERNEL;
2019-08-26 11:44:49 +00:00
else {
2019-08-26 11:44:40 +00:00
logger(LOG_ERR, "Invalid forwarding mode!");
return false;
}
free(mode);
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
choice = true;
2019-08-26 11:44:39 +00:00
get_config_bool(lookup_config(config_tree, "PMTUDiscovery"), &choice);
2019-08-26 11:44:49 +00:00
if(choice)
2019-08-26 11:44:38 +00:00
myself->options |= OPTION_PMTU_DISCOVERY;
2019-08-26 11:44:39 +00:00
choice = true;
get_config_bool(lookup_config(config_tree, "ClampMSS"), &choice);
2019-08-26 11:44:49 +00:00
if(choice)
2019-08-26 11:44:39 +00:00
myself->options |= OPTION_CLAMP_MSS;
2019-08-26 11:44:36 +00:00
get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
2019-08-26 11:44:36 +00:00
#if !defined(SOL_IP) || !defined(IP_TOS)
2019-08-26 11:44:49 +00:00
if(priorityinheritance)
logger(LOG_WARNING, "%s not supported on this platform", "PriorityInheritance");
2019-08-26 11:44:46 +00:00
#endif
2019-08-26 11:44:49 +00:00
if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
2019-08-26 11:44:36 +00:00
macexpire = 600;
if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
if(maxtimeout <= 0) {
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "Bogus maximum timeout!");
2019-08-26 11:44:36 +00:00
return false;
}
2019-08-26 11:44:49 +00:00
} else
2019-08-26 11:44:36 +00:00
maxtimeout = 900;
2019-08-26 11:44:46 +00:00
2019-08-26 11:44:40 +00:00
if(get_config_int(lookup_config(config_tree, "UDPRcvBuf"), &udp_rcvbuf)) {
if(udp_rcvbuf <= 0) {
logger(LOG_ERR, "UDPRcvBuf cannot be negative!");
return false;
}
}
if(get_config_int(lookup_config(config_tree, "UDPSndBuf"), &udp_sndbuf)) {
if(udp_sndbuf <= 0) {
logger(LOG_ERR, "UDPSndBuf cannot be negative!");
return false;
}
}
if(get_config_int(lookup_config(config_tree, "ReplayWindow"), &replaywin_int)) {
if(replaywin_int < 0) {
logger(LOG_ERR, "ReplayWindow cannot be negative!");
return false;
}
replaywin = (unsigned)replaywin_int;
}
2019-08-26 11:44:36 +00:00
if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
2019-08-26 11:44:49 +00:00
if(!strcasecmp(afname, "IPv4"))
2019-08-26 11:44:36 +00:00
addressfamily = AF_INET;
2019-08-26 11:44:49 +00:00
else if(!strcasecmp(afname, "IPv6"))
2019-08-26 11:44:36 +00:00
addressfamily = AF_INET6;
2019-08-26 11:44:49 +00:00
else if(!strcasecmp(afname, "any"))
2019-08-26 11:44:36 +00:00
addressfamily = AF_UNSPEC;
2019-08-26 11:44:49 +00:00
else {
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "Invalid address family!");
2019-08-26 11:44:36 +00:00
return false;
}
free(afname);
}
get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
/* Generate packet encryption key */
2019-08-26 11:44:49 +00:00
if(!get_config_string(lookup_config(config_tree, "Cipher"), &cipher))
cipher = xstrdup("blowfish");
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(!cipher_open_by_name(&myself->incipher, cipher)) {
logger(LOG_ERR, "Unrecognized cipher type!");
return false;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
2019-08-26 11:44:36 +00:00
keylifetime = 3600;
2019-08-26 11:44:49 +00:00
regenerate_key();
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:36 +00:00
/* Check if we want to use message authentication codes... */
2019-08-26 11:44:49 +00:00
if(!get_config_string(lookup_config(config_tree, "Digest"), &digest))
digest = xstrdup("sha1");
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
int maclength = 4;
get_config_int(lookup_config(config_tree, "MACLength"), &maclength);
2019-08-26 11:44:45 +00:00
2019-08-26 11:44:49 +00:00
if(maclength < 0) {
logger(LOG_ERR, "Bogus MAC length!");
return false;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(!digest_open_by_name(&myself->indigest, digest, maclength)) {
logger(LOG_ERR, "Unrecognized digest type!");
return false;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
/* Compression */
2019-08-26 11:44:40 +00:00
if(get_config_int(lookup_config(config_tree, "Compression"), &myself->incompression)) {
2019-08-26 11:44:38 +00:00
if(myself->incompression < 0 || myself->incompression > 11) {
logger(LOG_ERR, "Bogus compression level!");
2019-08-26 11:44:36 +00:00
return false;
}
2019-08-26 11:44:49 +00:00
} else
2019-08-26 11:44:38 +00:00
myself->incompression = 0;
2019-08-26 11:44:36 +00:00
myself->connection->outcompression = 0;
/* Done */
myself->nexthop = myself;
myself->via = myself;
myself->status.reachable = true;
node_add(myself);
graph();
2019-08-26 11:44:49 +00:00
if(strictsubnets)
2019-08-26 11:44:40 +00:00
load_all_subnets();
2019-08-26 11:44:36 +00:00
/* Open device */
2019-08-26 11:44:49 +00:00
if(!setup_device())
return false;
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
if(device_fd >= 0) {
event_set(&device_ev, device_fd, EV_READ|EV_PERSIST, handle_device_data, NULL);
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
if (event_add(&device_ev, NULL) < 0) {
logger(LOG_ERR, "event_add failed: %s", strerror(errno));
close_device();
return false;
2019-08-26 11:44:48 +00:00
}
}
2019-08-26 11:44:36 +00:00
/* Run tinc-up script to further initialize the tap interface */
2019-08-26 11:44:49 +00:00
xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
xasprintf(&envp[1], "DEVICE=%s", device ? : "");
xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
2019-08-26 11:44:38 +00:00
xasprintf(&envp[3], "NAME=%s", myself->name);
2019-08-26 11:44:49 +00:00
envp[4] = NULL;
2019-08-26 11:44:36 +00:00
execute_script("tinc-up", envp);
2019-08-26 11:44:49 +00:00
for(i = 0; i < 4; i++)
2019-08-26 11:44:36 +00:00
free(envp[i]);
2019-08-26 11:44:36 +00:00
/* Run subnet-up scripts for our own subnets */
subnet_update(myself, NULL, true);
2019-08-26 11:44:36 +00:00
/* Open sockets */
2019-08-26 11:44:49 +00:00
get_config_string(lookup_config(config_tree, "BindToAddress"), &address);
2019-08-26 11:44:42 +00:00
2019-08-26 11:44:49 +00:00
hint.ai_family = addressfamily;
hint.ai_socktype = SOCK_STREAM;
hint.ai_protocol = IPPROTO_TCP;
hint.ai_flags = AI_PASSIVE;
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
err = getaddrinfo(address, myport, &hint, &ai);
2019-08-26 11:44:42 +00:00
2019-08-26 11:44:49 +00:00
if(err || !ai) {
logger(LOG_ERR, "System call `%s' failed: %s", "getaddrinfo",
gai_strerror(err));
return false;
}
2019-08-26 11:44:42 +00:00
2019-08-26 11:44:49 +00:00
listen_sockets = 0;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
for(aip = ai; aip; aip = aip->ai_next) {
listen_socket[listen_sockets].tcp =
setup_listen_socket((sockaddr_t *) aip->ai_addr);
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
if(listen_socket[listen_sockets].tcp < 0)
continue;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
listen_socket[listen_sockets].udp =
setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
2019-08-26 11:44:42 +00:00
2019-08-26 11:44:49 +00:00
if(listen_socket[listen_sockets].udp < 0) {
close(listen_socket[listen_sockets].tcp);
continue;
2019-08-26 11:44:41 +00:00
}
2019-08-26 11:44:49 +00:00
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_ERR, "event_add failed: %s", strerror(errno));
abort();
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
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_ERR, "event_add failed: %s", strerror(errno));
abort();
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
ifdebug(CONNECTIONS) {
hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
logger(LOG_NOTICE, "Listening on %s", hostname);
free(hostname);
}
2019-08-26 11:44:42 +00:00
2019-08-26 11:44:49 +00:00
memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
listen_sockets++;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(listen_sockets >= MAXSOCKETS) {
logger(LOG_WARNING, "Maximum of %d listening sockets reached", MAXSOCKETS);
break;
}
2019-08-26 11:44:42 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
freeaddrinfo(ai);
if(listen_sockets)
logger(LOG_NOTICE, "Ready");
else {
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "Unable to create any listening socket!");
2019-08-26 11:44:36 +00:00
return false;
}
return true;
2019-08-26 11:44:36 +00:00
}
/*
2019-08-26 11:44:38 +00:00
initialize network
2019-08-26 11:44:36 +00:00
*/
2019-08-26 11:44:38 +00:00
bool setup_network(void) {
2019-08-26 11:44:36 +00:00
init_connections();
init_subnets();
init_nodes();
init_edges();
init_requests();
2019-08-26 11:44:37 +00:00
if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
if(pinginterval < 1) {
pinginterval = 86400;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:49 +00:00
} else
2019-08-26 11:44:37 +00:00
pinginterval = 60;
2019-08-26 11:44:49 +00:00
if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
2019-08-26 11:44:37 +00:00
pingtimeout = 5;
2019-08-26 11:44:49 +00:00
if(pingtimeout < 1 || pingtimeout > pinginterval)
2019-08-26 11:44:37 +00:00
pingtimeout = pinginterval;
2019-08-26 11:44:49 +00:00
if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
2019-08-26 11:44:38 +00:00
maxoutbufsize = 10 * MTU;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(!setup_myself())
2019-08-26 11:44:36 +00:00
return false;
return true;
2019-08-26 11:44:36 +00:00
}
/*
close all open network connections
*/
2019-08-26 11:44:38 +00:00
void close_network_connections(void) {
2019-08-26 11:44:49 +00:00
splay_node_t *node, *next;
2019-08-26 11:44:36 +00:00
connection_t *c;
2019-08-26 11:44:49 +00:00
char *envp[5];
2019-08-26 11:44:36 +00:00
int i;
for(node = connection_tree->head; node; node = next) {
next = node->next;
c = node->data;
2019-08-26 11:44:38 +00:00
c->outgoing = NULL;
2019-08-26 11:44:36 +00:00
terminate_connection(c, false);
}
2019-08-26 11:44:38 +00:00
list_delete_list(outgoing_list);
2019-08-26 11:44:36 +00:00
if(myself && myself->connection) {
subnet_update(myself, NULL, false);
2019-08-26 11:44:36 +00:00
terminate_connection(myself->connection, false);
2019-08-26 11:44:38 +00:00
free_connection(myself->connection);
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:36 +00:00
for(i = 0; i < listen_sockets; i++) {
2019-08-26 11:44:49 +00:00
event_del(&listen_socket[i].ev_tcp);
event_del(&listen_socket[i].ev_udp);
2019-08-26 11:44:36 +00:00
close(listen_socket[i].tcp);
close(listen_socket[i].udp);
}
2019-08-26 11:44:49 +00:00
xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
xasprintf(&envp[1], "DEVICE=%s", device ? : "");
xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
2019-08-26 11:44:38 +00:00
xasprintf(&envp[3], "NAME=%s", myself->name);
2019-08-26 11:44:49 +00:00
envp[4] = NULL;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:37 +00:00
exit_requests();
exit_edges();
exit_subnets();
exit_nodes();
exit_connections();
2019-08-26 11:44:36 +00:00
execute_script("tinc-down", envp);
2019-08-26 11:44:49 +00:00
if(myport) free(myport);
2019-08-26 11:44:38 +00:00
2019-08-26 11:44:49 +00:00
for(i = 0; i < 4; i++)
2019-08-26 11:44:36 +00:00
free(envp[i]);
2019-08-26 11:44:49 +00:00
close_device();
2019-08-26 11:44:36 +00:00
return;
2019-08-26 11:44:36 +00:00
}