tinc/src/net_setup.c

1128 lines
25 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:48 +00:00
2000-2017 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
#include <openssl/pem.h>
#include <openssl/rsa.h>
#include <openssl/rand.h>
2019-08-26 11:44:36 +00:00
#include <openssl/err.h>
#include <openssl/evp.h>
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
#include "avl_tree.h"
2019-08-26 11:44:36 +00:00
#include "conf.h"
#include "connection.h"
2019-08-26 11:44:36 +00:00
#include "device.h"
#include "event.h"
#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"
2019-08-26 11:44:46 +00:00
#include "proxy.h"
2019-08-26 11:44:36 +00:00
#include "route.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:41 +00:00
devops_t devops;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:47 +00:00
#ifndef HAVE_RSA_SET0_KEY
int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d) {
2019-08-26 11:44:48 +00:00
BN_free(r->n);
r->n = n;
BN_free(r->e);
r->e = e;
BN_free(r->d);
r->d = d;
2019-08-26 11:44:47 +00:00
return 1;
}
#endif
2019-08-26 11:44:38 +00:00
bool read_rsa_public_key(connection_t *c) {
2019-08-26 11:44:36 +00:00
FILE *fp;
2019-08-26 11:44:43 +00:00
char *pubname;
char *hcfname;
2019-08-26 11:44:36 +00:00
char *key;
2019-08-26 11:44:47 +00:00
BIGNUM *n = NULL;
BIGNUM *e = NULL;
2019-08-26 11:44:36 +00:00
if(!c->rsa_key) {
c->rsa_key = RSA_new();
// RSA_blinding_on(c->rsa_key, NULL);
}
/* First, check for simple PublicKey statement */
if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &key)) {
2019-08-26 11:44:48 +00:00
if((size_t)BN_hex2bn(&n, key) != strlen(key)) {
2019-08-26 11:44:47 +00:00
free(key);
2019-08-26 11:44:43 +00:00
logger(LOG_ERR, "Invalid PublicKey for %s!", c->name);
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:36 +00:00
free(key);
2019-08-26 11:44:47 +00:00
BN_hex2bn(&e, "FFFF");
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:47 +00:00
if(!n || !e || RSA_set0_key(c->rsa_key, n, e, NULL) != 1) {
BN_free(e);
BN_free(n);
logger(LOG_ERR, "RSA_set0_key() failed with PublicKey for %s!", c->name);
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:36 +00:00
return true;
}
/* Else, check for PublicKeyFile statement and read it */
2019-08-26 11:44:43 +00:00
if(get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &pubname)) {
fp = fopen(pubname, "r");
2019-08-26 11:44:36 +00:00
if(!fp) {
2019-08-26 11:44:43 +00:00
logger(LOG_ERR, "Error reading RSA public key file `%s': %s", pubname, strerror(errno));
free(pubname);
2019-08-26 11:44:36 +00:00
return false;
}
c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
fclose(fp);
2019-08-26 11:44:43 +00:00
if(c->rsa_key) {
free(pubname);
2019-08-26 11:44:48 +00:00
return true; /* Woohoo. */
2019-08-26 11:44:43 +00:00
}
2019-08-26 11:44:36 +00:00
/* If it fails, try PEM_read_RSA_PUBKEY. */
2019-08-26 11:44:43 +00:00
fp = fopen(pubname, "r");
2019-08-26 11:44:36 +00:00
if(!fp) {
2019-08-26 11:44:43 +00:00
logger(LOG_ERR, "Error reading RSA public key file `%s': %s", pubname, strerror(errno));
free(pubname);
2019-08-26 11:44:36 +00:00
return false;
}
c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
fclose(fp);
if(c->rsa_key) {
// RSA_blinding_on(c->rsa_key, NULL);
2019-08-26 11:44:43 +00:00
free(pubname);
2019-08-26 11:44:36 +00:00
return true;
}
2019-08-26 11:44:43 +00:00
logger(LOG_ERR, "Reading RSA public key file `%s' failed: %s", pubname, strerror(errno));
free(pubname);
2019-08-26 11:44:36 +00:00
return false;
}
/* Else, check if a harnessed public key is in the config file */
2019-08-26 11:44:43 +00:00
xasprintf(&hcfname, "%s/hosts/%s", confbase, c->name);
fp = fopen(hcfname, "r");
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:41 +00:00
if(!fp) {
2019-08-26 11:44:43 +00:00
logger(LOG_ERR, "Error reading RSA public key file `%s': %s", hcfname, strerror(errno));
free(hcfname);
2019-08-26 11:44:41 +00:00
return false;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:41 +00:00
c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
fclose(fp);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:43 +00:00
if(c->rsa_key) {
free(hcfname);
2019-08-26 11:44:36 +00:00
return true;
2019-08-26 11:44:43 +00:00
}
2019-08-26 11:44:36 +00:00
/* Try again with PEM_read_RSA_PUBKEY. */
2019-08-26 11:44:43 +00:00
fp = fopen(hcfname, "r");
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:41 +00:00
if(!fp) {
2019-08-26 11:44:43 +00:00
logger(LOG_ERR, "Error reading RSA public key file `%s': %s", hcfname, strerror(errno));
free(hcfname);
2019-08-26 11:44:41 +00:00
return false;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:43 +00:00
free(hcfname);
2019-08-26 11:44:41 +00:00
c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
// RSA_blinding_on(c->rsa_key, NULL);
fclose(fp);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +00:00
if(c->rsa_key) {
2019-08-26 11:44:36 +00:00
return true;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "No public key for %s specified!", c->name);
2019-08-26 11:44:36 +00:00
return false;
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;
char *fname, *key, *pubkey;
2019-08-26 11:44:47 +00:00
BIGNUM *n = NULL;
BIGNUM *e = NULL;
BIGNUM *d = NULL;
2019-08-26 11:44:36 +00:00
if(get_config_string(lookup_config(config_tree, "PrivateKey"), &key)) {
myself->connection->rsa_key = RSA_new();
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:36 +00:00
// RSA_blinding_on(myself->connection->rsa_key, NULL);
2019-08-26 11:44:48 +00:00
if((size_t)BN_hex2bn(&d, key) != strlen(key)) {
2019-08-26 11:44:43 +00:00
logger(LOG_ERR, "Invalid PrivateKey for myself!");
2019-08-26 11:44:45 +00:00
free(key);
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:45 +00:00
free(key);
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:45 +00:00
if(!get_config_string(lookup_config(config_tree, "PublicKey"), &pubkey)) {
2019-08-26 11:44:47 +00:00
BN_free(d);
2019-08-26 11:44:45 +00:00
logger(LOG_ERR, "PrivateKey used but no PublicKey found!");
2019-08-26 11:44:43 +00:00
return false;
}
2019-08-26 11:44:48 +00:00
if((size_t)BN_hex2bn(&n, pubkey) != strlen(pubkey)) {
2019-08-26 11:44:45 +00:00
free(pubkey);
2019-08-26 11:44:47 +00:00
BN_free(d);
logger(LOG_ERR, "Invalid PublicKey for myself!");
2019-08-26 11:44:43 +00:00
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:36 +00:00
free(pubkey);
2019-08-26 11:44:47 +00:00
BN_hex2bn(&e, "FFFF");
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:47 +00:00
if(!n || !e || !d || RSA_set0_key(myself->connection->rsa_key, n, e, d) != 1) {
BN_free(d);
BN_free(e);
BN_free(n);
logger(LOG_ERR, "RSA_set0_key() failed with PrivateKey for myself!");
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:36 +00:00
return true;
}
2019-08-26 11:44:48 +00:00
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:48 +00:00
}
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:48 +00:00
fname, strerror(errno));
2019-08-26 11:44:36 +00:00
free(fname);
return false;
}
2019-08-26 11:44:48 +00:00
#if !defined(HAVE_MINGW) && !defined(HAVE___CYGWIN32__)
2019-08-26 11:44:43 +00:00
struct stat s;
2019-08-26 11:44:45 +00:00
if(!fstat(fileno(fp), &s)) {
2019-08-26 11:44:48 +00:00
if(s.st_mode & ~0100700) {
2019-08-26 11:44:45 +00:00
logger(LOG_WARNING, "Warning: insecure file permissions for RSA private key file `%s'!", fname);
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:45 +00:00
} else {
logger(LOG_WARNING, "Could not stat RSA private key file `%s': %s'", fname, strerror(errno));
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:36 +00:00
#endif
myself->connection->rsa_key = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
fclose(fp);
if(!myself->connection->rsa_key) {
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "Reading RSA private key file `%s' failed: %s",
2019-08-26 11:44:48 +00:00
fname, strerror(errno));
2019-08-26 11:44:36 +00:00
free(fname);
return false;
}
free(fname);
return true;
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;
avl_tree_t *config_tree;
config_t *cfg;
subnet_t *s, *s2;
node_t *n;
xasprintf(&dname, "%s/hosts", confbase);
dir = opendir(dname);
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:40 +00:00
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:48 +00:00
if(!check_id(ent->d_name)) {
2019-08-26 11:44:40 +00:00
continue;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:40 +00:00
n = lookup_node(ent->d_name);
2019-08-26 11:44:48 +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:48 +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:41 +00:00
read_config_options(config_tree, ent->d_name);
read_config_file(config_tree, fname);
2019-08-26 11:44:40 +00:00
free(fname);
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:48 +00:00
if(!get_config_subnet(cfg, &s)) {
2019-08-26 11:44:40 +00:00
continue;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:40 +00:00
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:42 +00:00
char *get_name(void) {
char *name = NULL;
get_config_string(lookup_config(config_tree, "Name"), &name);
2019-08-26 11:44:48 +00:00
if(!name) {
2019-08-26 11:44:42 +00:00
return NULL;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:42 +00:00
if(*name == '$') {
char *envname = getenv(name + 1);
2019-08-26 11:44:44 +00:00
char hostname[32] = "";
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:42 +00:00
if(!envname) {
if(strcmp(name + 1, "HOST")) {
fprintf(stderr, "Invalid Name: environment variable %s does not exist\n", name + 1);
2019-08-26 11:44:45 +00:00
free(name);
2019-08-26 11:44:42 +00:00
return false;
}
2019-08-26 11:44:48 +00:00
if(gethostname(hostname, sizeof(hostname)) || !*hostname) {
2019-08-26 11:44:42 +00:00
fprintf(stderr, "Could not get hostname: %s\n", strerror(errno));
2019-08-26 11:44:45 +00:00
free(name);
2019-08-26 11:44:42 +00:00
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:44 +00:00
hostname[31] = 0;
envname = hostname;
2019-08-26 11:44:42 +00:00
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:42 +00:00
free(name);
name = xstrdup(envname);
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:42 +00:00
for(char *c = name; *c; c++)
2019-08-26 11:44:48 +00:00
if(!isalnum(*c)) {
2019-08-26 11:44:42 +00:00
*c = '_';
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:42 +00:00
}
if(!check_id(name)) {
logger(LOG_ERR, "Invalid name for myself!");
free(name);
return false;
}
return name;
}
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:41 +00:00
char *name, *hostname, *mode, *afname, *cipher, *digest, *type;
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:42 +00:00
char *proxy = NULL;
char *space;
2019-08-26 11:44:48 +00:00
char *envp[5] = {};
struct addrinfo *ai, *aip, hint = {};
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:45 +00:00
bool port_specified = false;
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;
myself->connection->protocol_version = PROT_CURRENT;
2019-08-26 11:44:42 +00:00
if(!(name = get_name())) {
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:45 +00:00
/* Read tinc.conf and our own host config file */
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:48 +00:00
if(!read_rsa_private_key()) {
2019-08-26 11:44:36 +00:00
return false;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +00:00
if(!get_config_string(lookup_config(config_tree, "Port"), &myport)) {
2019-08-26 11:44:39 +00:00
myport = xstrdup("655");
2019-08-26 11:44:48 +00:00
} else {
2019-08-26 11:44:45 +00:00
port_specified = true;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:45 +00:00
/* Ensure myport is numeric */
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:48 +00:00
if(!ai || !ai->ai_addr) {
2019-08-26 11:44:40 +00:00
return false;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:40 +00:00
free(myport);
memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
sockaddr2str(&sa, NULL, &myport);
}
2019-08-26 11:44:45 +00:00
if(get_config_string(lookup_config(config_tree, "Proxy"), &proxy)) {
2019-08-26 11:44:48 +00:00
if((space = strchr(proxy, ' '))) {
2019-08-26 11:44:42 +00:00
*space++ = 0;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:42 +00:00
if(!strcasecmp(proxy, "none")) {
proxytype = PROXY_NONE;
} else if(!strcasecmp(proxy, "socks4")) {
proxytype = PROXY_SOCKS4;
} else if(!strcasecmp(proxy, "socks4a")) {
proxytype = PROXY_SOCKS4A;
} else if(!strcasecmp(proxy, "socks5")) {
proxytype = PROXY_SOCKS5;
} else if(!strcasecmp(proxy, "http")) {
proxytype = PROXY_HTTP;
} else if(!strcasecmp(proxy, "exec")) {
proxytype = PROXY_EXEC;
} else {
logger(LOG_ERR, "Unknown proxy type %s!", proxy);
2019-08-26 11:44:45 +00:00
free(proxy);
2019-08-26 11:44:42 +00:00
return false;
}
switch(proxytype) {
2019-08-26 11:44:48 +00:00
case PROXY_NONE:
default:
break;
case PROXY_EXEC:
if(!space || !*space) {
logger(LOG_ERR, "Argument expected for proxy type exec!");
free(proxy);
return false;
}
proxyhost = xstrdup(space);
break;
case PROXY_SOCKS4:
case PROXY_SOCKS4A:
case PROXY_SOCKS5:
case PROXY_HTTP:
proxyhost = space;
if(space && (space = strchr(space, ' '))) {
*space++ = 0, proxyport = space;
}
if(space && (space = strchr(space, ' '))) {
*space++ = 0, proxyuser = space;
}
if(space && (space = strchr(space, ' '))) {
*space++ = 0, proxypass = space;
}
if(!proxyhost || !*proxyhost || !proxyport || !*proxyport) {
logger(LOG_ERR, "Host and port argument expected for proxy!");
free(proxy);
return false;
}
proxyhost = xstrdup(proxyhost);
proxyport = xstrdup(proxyport);
if(proxyuser && *proxyuser) {
proxyuser = xstrdup(proxyuser);
}
if(proxypass && *proxypass) {
proxypass = xstrdup(proxypass);
}
break;
2019-08-26 11:44:42 +00:00
}
free(proxy);
}
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:48 +00:00
if(!get_config_subnet(cfg, &subnet)) {
2019-08-26 11:44:36 +00:00
return false;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
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:48 +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:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +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:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +00:00
if(myself->options & OPTION_TCPONLY) {
2019-08-26 11:44:36 +00:00
myself->options |= OPTION_INDIRECT;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
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:41 +00:00
get_config_bool(lookup_config(config_tree, "LocalDiscovery"), &localdiscovery);
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:48 +00:00
if(!strcasecmp(mode, "router")) {
2019-08-26 11:44:36 +00:00
routing_mode = RMODE_ROUTER;
2019-08-26 11:44:48 +00:00
} else if(!strcasecmp(mode, "switch")) {
2019-08-26 11:44:36 +00:00
routing_mode = RMODE_SWITCH;
2019-08-26 11:44:48 +00:00
} else if(!strcasecmp(mode, "hub")) {
2019-08-26 11:44:36 +00:00
routing_mode = RMODE_HUB;
2019-08-26 11:44:48 +00:00
} else {
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "Invalid routing mode!");
2019-08-26 11:44:45 +00:00
free(mode);
2019-08-26 11:44:36 +00:00
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:36 +00:00
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:48 +00:00
if(!strcasecmp(mode, "off")) {
2019-08-26 11:44:40 +00:00
forwarding_mode = FMODE_OFF;
2019-08-26 11:44:48 +00:00
} else if(!strcasecmp(mode, "internal")) {
2019-08-26 11:44:40 +00:00
forwarding_mode = FMODE_INTERNAL;
2019-08-26 11:44:48 +00:00
} else if(!strcasecmp(mode, "kernel")) {
2019-08-26 11:44:40 +00:00
forwarding_mode = FMODE_KERNEL;
2019-08-26 11:44:48 +00:00
} else {
2019-08-26 11:44:40 +00:00
logger(LOG_ERR, "Invalid forwarding mode!");
2019-08-26 11:44:45 +00:00
free(mode);
2019-08-26 11:44:40 +00:00
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:40 +00:00
free(mode);
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +00:00
choice = !(myself->options & OPTION_TCPONLY);
2019-08-26 11:44:39 +00:00
get_config_bool(lookup_config(config_tree, "PMTUDiscovery"), &choice);
2019-08-26 11:44:48 +00:00
if(choice) {
2019-08-26 11:44:38 +00:00
myself->options |= OPTION_PMTU_DISCOVERY;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:38 +00:00
2019-08-26 11:44:39 +00:00
choice = true;
get_config_bool(lookup_config(config_tree, "ClampMSS"), &choice);
2019-08-26 11:44:48 +00:00
if(choice) {
2019-08-26 11:44:39 +00:00
myself->options |= OPTION_CLAMP_MSS;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:39 +00:00
2019-08-26 11:44:36 +00:00
get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
2019-08-26 11:44:41 +00:00
get_config_bool(lookup_config(config_tree, "DecrementTTL"), &decrement_ttl);
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:42 +00:00
if(get_config_string(lookup_config(config_tree, "Broadcast"), &mode)) {
2019-08-26 11:44:48 +00:00
if(!strcasecmp(mode, "no")) {
2019-08-26 11:44:42 +00:00
broadcast_mode = BMODE_NONE;
2019-08-26 11:44:48 +00:00
} else if(!strcasecmp(mode, "yes") || !strcasecmp(mode, "mst")) {
2019-08-26 11:44:42 +00:00
broadcast_mode = BMODE_MST;
2019-08-26 11:44:48 +00:00
} else if(!strcasecmp(mode, "direct")) {
2019-08-26 11:44:42 +00:00
broadcast_mode = BMODE_DIRECT;
2019-08-26 11:44:48 +00:00
} else {
2019-08-26 11:44:42 +00:00
logger(LOG_ERR, "Invalid broadcast mode!");
2019-08-26 11:44:45 +00:00
free(mode);
2019-08-26 11:44:42 +00:00
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:42 +00:00
free(mode);
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
#if !defined(SOL_IP) || !defined(IP_TOS)
2019-08-26 11:44:48 +00:00
if(priorityinheritance) {
2019-08-26 11:44:46 +00:00
logger(LOG_WARNING, "%s not supported on this platform for IPv4 connection", "PriorityInheritance");
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:46 +00:00
#endif
#if !defined(IPPROTO_IPV6) || !defined(IPV6_TCLASS)
2019-08-26 11:44:48 +00:00
if(priorityinheritance) {
2019-08-26 11:44:46 +00:00
logger(LOG_WARNING, "%s not supported on this platform for IPv6 connection", "PriorityInheritance");
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
#endif
2019-08-26 11:44:48 +00:00
if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire)) {
2019-08-26 11:44:36 +00:00
macexpire = 600;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
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:48 +00:00
} else {
2019-08-26 11:44:36 +00:00
maxtimeout = 900;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:46 +00:00
if(get_config_int(lookup_config(config_tree, "MinTimeout"), &mintimeout)) {
2019-08-26 11:44:48 +00:00
if(mintimeout < 0) {
logger(LOG_ERR, "Bogus minimum timeout!");
return false;
}
if(mintimeout > maxtimeout) {
logger(LOG_WARNING, "Minimum timeout (%d s) cannot be larger than maximum timeout (%d s). Correcting !", mintimeout, maxtimeout);
mintimeout = maxtimeout;
}
} else {
mintimeout = 0;
}
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;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:40 +00:00
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:48 +00:00
if(!strcasecmp(afname, "IPv4")) {
2019-08-26 11:44:36 +00:00
addressfamily = AF_INET;
2019-08-26 11:44:48 +00:00
} else if(!strcasecmp(afname, "IPv6")) {
2019-08-26 11:44:36 +00:00
addressfamily = AF_INET6;
2019-08-26 11:44:48 +00:00
} else if(!strcasecmp(afname, "any")) {
2019-08-26 11:44:36 +00:00
addressfamily = AF_UNSPEC;
2019-08-26 11:44:48 +00:00
} else {
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "Invalid address family!");
2019-08-26 11:44:45 +00:00
free(afname);
2019-08-26 11:44:36 +00:00
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:36 +00:00
free(afname);
}
get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
/* Generate packet encryption key */
2019-08-26 11:44:45 +00:00
if(get_config_string(lookup_config(config_tree, "Cipher"), &cipher)) {
2019-08-26 11:44:36 +00:00
if(!strcasecmp(cipher, "none")) {
2019-08-26 11:44:38 +00:00
myself->incipher = NULL;
2019-08-26 11:44:36 +00:00
} else {
2019-08-26 11:44:38 +00:00
myself->incipher = EVP_get_cipherbyname(cipher);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
if(!myself->incipher) {
logger(LOG_ERR, "Unrecognized cipher type!");
2019-08-26 11:44:45 +00:00
free(cipher);
2019-08-26 11:44:36 +00:00
return false;
}
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:45 +00:00
free(cipher);
2019-08-26 11:44:48 +00:00
} else {
2019-08-26 11:44:47 +00:00
myself->incipher = EVP_aes_256_cbc();
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +00:00
if(myself->incipher) {
2019-08-26 11:44:47 +00:00
myself->inkeylength = EVP_CIPHER_key_length(myself->incipher) + EVP_CIPHER_iv_length(myself->incipher);
2019-08-26 11:44:48 +00:00
} else {
2019-08-26 11:44:38 +00:00
myself->inkeylength = 1;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:47 +00:00
/* We need to use a stream mode for the meta protocol. Use AES for this,
but try to match the key size with the one from the cipher selected
by Cipher.
2019-08-26 11:44:48 +00:00
If Cipher is set to none, still use a low level of encryption for the
meta protocol.
2019-08-26 11:44:47 +00:00
*/
2019-08-26 11:44:48 +00:00
int keylen = myself->incipher ? EVP_CIPHER_key_length(myself->incipher) : 0;
2019-08-26 11:44:48 +00:00
if(keylen <= 16) {
2019-08-26 11:44:47 +00:00
myself->connection->outcipher = EVP_aes_128_cfb();
2019-08-26 11:44:48 +00:00
} else if(keylen <= 24) {
2019-08-26 11:44:47 +00:00
myself->connection->outcipher = EVP_aes_192_cfb();
2019-08-26 11:44:48 +00:00
} else {
2019-08-26 11:44:47 +00:00
myself->connection->outcipher = EVP_aes_256_cfb();
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +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:48 +00:00
}
2019-08-26 11:44:36 +00:00
keyexpires = now + keylifetime;
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:40 +00:00
if(get_config_string(lookup_config(config_tree, "Digest"), &digest)) {
2019-08-26 11:44:36 +00:00
if(!strcasecmp(digest, "none")) {
2019-08-26 11:44:38 +00:00
myself->indigest = NULL;
2019-08-26 11:44:36 +00:00
} else {
2019-08-26 11:44:38 +00:00
myself->indigest = EVP_get_digestbyname(digest);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
if(!myself->indigest) {
logger(LOG_ERR, "Unrecognized digest type!");
2019-08-26 11:44:45 +00:00
free(digest);
2019-08-26 11:44:36 +00:00
return false;
}
}
2019-08-26 11:44:45 +00:00
free(digest);
2019-08-26 11:44:48 +00:00
} else {
2019-08-26 11:44:47 +00:00
myself->indigest = EVP_sha256();
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:47 +00:00
myself->connection->outdigest = EVP_sha256();
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:40 +00:00
if(get_config_int(lookup_config(config_tree, "MACLength"), &myself->inmaclength)) {
2019-08-26 11:44:38 +00:00
if(myself->indigest) {
2019-08-26 11:44:47 +00:00
if(myself->inmaclength > EVP_MD_size(myself->indigest)) {
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "MAC length exceeds size of digest!");
2019-08-26 11:44:36 +00:00
return false;
2019-08-26 11:44:38 +00:00
} else if(myself->inmaclength < 0) {
logger(LOG_ERR, "Bogus MAC length!");
2019-08-26 11:44:36 +00:00
return false;
}
}
2019-08-26 11:44:48 +00:00
} else {
2019-08-26 11:44:38 +00:00
myself->inmaclength = 4;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
myself->connection->outmaclength = 0;
/* 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:48 +00:00
} else {
2019-08-26 11:44:38 +00:00
myself->incompression = 0;
2019-08-26 11:44:48 +00:00
}
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:48 +00:00
if(strictsubnets) {
2019-08-26 11:44:40 +00:00
load_all_subnets();
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:40 +00:00
2019-08-26 11:44:36 +00:00
/* Open device */
2019-08-26 11:44:41 +00:00
devops = os_devops;
if(get_config_string(lookup_config(config_tree, "DeviceType"), &type)) {
2019-08-26 11:44:48 +00:00
if(!strcasecmp(type, "dummy")) {
2019-08-26 11:44:41 +00:00
devops = dummy_devops;
2019-08-26 11:44:48 +00:00
} else if(!strcasecmp(type, "raw_socket")) {
2019-08-26 11:44:41 +00:00
devops = raw_socket_devops;
2019-08-26 11:44:48 +00:00
} else if(!strcasecmp(type, "multicast")) {
2019-08-26 11:44:42 +00:00
devops = multicast_devops;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:41 +00:00
#ifdef ENABLE_UML
2019-08-26 11:44:48 +00:00
else if(!strcasecmp(type, "uml")) {
2019-08-26 11:44:41 +00:00
devops = uml_devops;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:41 +00:00
#endif
#ifdef ENABLE_VDE
2019-08-26 11:44:48 +00:00
else if(!strcasecmp(type, "vde")) {
2019-08-26 11:44:41 +00:00
devops = vde_devops;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:41 +00:00
#endif
2019-08-26 11:44:45 +00:00
free(type);
2019-08-26 11:44:41 +00:00
}
2019-08-26 11:44:48 +00:00
if(!devops.setup()) {
2019-08-26 11:44:36 +00:00
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:38 +00:00
xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
xasprintf(&envp[1], "DEVICE=%s", device ? : "");
xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
xasprintf(&envp[3], "NAME=%s", myself->name);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:46 +00:00
#ifdef HAVE_MINGW
Sleep(1000);
#endif
2019-08-26 11:44:48 +00:00
#ifdef HAVE___CYGWIN32__
2019-08-26 11:44:46 +00:00
sleep(1);
#endif
2019-08-26 11:44:36 +00:00
execute_script("tinc-up", envp);
2019-08-26 11:44:48 +00:00
for(i = 0; i < 4; i++) {
2019-08-26 11:44:36 +00:00
free(envp[i]);
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
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:42 +00:00
if(!do_detach && getenv("LISTEN_FDS")) {
sockaddr_t sa;
socklen_t salen;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:42 +00:00
listen_sockets = atoi(getenv("LISTEN_FDS"));
#ifdef HAVE_UNSETENV
unsetenv("LISTEN_FDS");
#endif
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:42 +00:00
if(listen_sockets > MAXSOCKETS) {
logger(LOG_ERR, "Too many listening sockets");
return false;
}
2019-08-26 11:44:42 +00:00
2019-08-26 11:44:42 +00:00
for(i = 0; i < listen_sockets; i++) {
2019-08-26 11:44:48 +00:00
salen = sizeof(sa);
2019-08-26 11:44:42 +00:00
if(getsockname(i + 3, &sa.sa, &salen) < 0) {
logger(LOG_ERR, "Could not get address of listen fd %d: %s", i + 3, sockstrerror(errno));
return false;
2019-08-26 11:44:42 +00:00
}
2019-08-26 11:44:42 +00:00
listen_socket[i].tcp = i + 3;
2019-08-26 11:44:42 +00:00
2019-08-26 11:44:42 +00:00
#ifdef FD_CLOEXEC
2019-08-26 11:44:48 +00:00
fcntl(i + 3, F_SETFD, FD_CLOEXEC);
2019-08-26 11:44:42 +00:00
#endif
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:42 +00:00
listen_socket[i].udp = setup_vpn_in_socket(&sa);
2019-08-26 11:44:48 +00:00
if(listen_socket[i].udp < 0) {
2019-08-26 11:44:42 +00:00
return false;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:42 +00:00
ifdebug(CONNECTIONS) {
hostname = sockaddr2hostname(&sa);
logger(LOG_NOTICE, "Listening on %s", hostname);
free(hostname);
}
memcpy(&listen_socket[i].sa, &sa, salen);
2019-08-26 11:44:41 +00:00
}
2019-08-26 11:44:42 +00:00
} else {
listen_sockets = 0;
cfg = lookup_config(config_tree, "BindToAddress");
do {
get_config_string(cfg, &address);
2019-08-26 11:44:48 +00:00
if(cfg) {
2019-08-26 11:44:42 +00:00
cfg = lookup_config_next(config_tree, cfg);
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:42 +00:00
char *port = myport;
if(address) {
char *space = strchr(address, ' ');
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:42 +00:00
if(space) {
*space++ = 0;
port = space;
}
2019-08-26 11:44:48 +00:00
if(!strcmp(address, "*")) {
2019-08-26 11:44:42 +00:00
*address = 0;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:42 +00:00
}
2019-08-26 11:44:41 +00:00
2019-08-26 11:44:42 +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:46 +00:00
#if HAVE_DECL_RES_INIT
// ensure glibc reloads /etc/resolv.conf.
res_init();
#endif
2019-08-26 11:44:42 +00:00
err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
free(address);
if(err || !ai) {
logger(LOG_ERR, "System call `%s' failed: %s", "getaddrinfo",
2019-08-26 11:44:48 +00:00
gai_strerror(err));
2019-08-26 11:44:41 +00:00
return false;
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:42 +00:00
for(aip = ai; aip; aip = aip->ai_next) {
if(listen_sockets >= MAXSOCKETS) {
logger(LOG_ERR, "Too many listening sockets");
return false;
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:42 +00:00
listen_socket[listen_sockets].tcp =
2019-08-26 11:44:48 +00:00
setup_listen_socket((sockaddr_t *) aip->ai_addr);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +00:00
if(listen_socket[listen_sockets].tcp < 0) {
2019-08-26 11:44:42 +00:00
continue;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:42 +00:00
listen_socket[listen_sockets].udp =
2019-08-26 11:44:48 +00:00
setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +00:00
if(listen_socket[listen_sockets].udp < 0) {
2019-08-26 11:44:42 +00:00
continue;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:42 +00:00
ifdebug(CONNECTIONS) {
hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
logger(LOG_NOTICE, "Listening on %s", hostname);
free(hostname);
}
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:42 +00:00
freeaddrinfo(ai);
} while(cfg);
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:45 +00:00
if(!listen_sockets) {
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;
}
2019-08-26 11:44:45 +00:00
/* If no Port option was specified, set myport to the port used by the first listening socket. */
if(!port_specified) {
sockaddr_t sa;
2019-08-26 11:44:48 +00:00
socklen_t salen = sizeof(sa);
2019-08-26 11:44:45 +00:00
if(!getsockname(listen_socket[0].udp, &sa.sa, &salen)) {
free(myport);
sockaddr2str(&sa, NULL, &myport);
2019-08-26 11:44:48 +00:00
if(!myport) {
2019-08-26 11:44:45 +00:00
myport = xstrdup("655");
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:45 +00:00
}
}
/* Done. */
logger(LOG_NOTICE, "Ready");
2019-08-26 11:44:36 +00:00
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
now = time(NULL);
2019-08-26 11:44:37 +00:00
init_events();
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:48 +00:00
} else {
2019-08-26 11:44:37 +00:00
pinginterval = 60;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:37 +00:00
2019-08-26 11:44:48 +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:48 +00:00
}
if(pingtimeout < 1 || pingtimeout > pinginterval) {
2019-08-26 11:44:37 +00:00
pingtimeout = pinginterval;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:37 +00:00
2019-08-26 11:44:48 +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:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:48 +00:00
if(!setup_myself()) {
2019-08-26 11:44:36 +00:00
return false;
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
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:36 +00:00
avl_node_t *node, *next;
connection_t *c;
2019-08-26 11:44:48 +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
for(list_node_t *node = outgoing_list->head; node; node = node->next) {
outgoing_t *outgoing = node->data;
2019-08-26 11:44:48 +00:00
if(outgoing->event) {
2019-08-26 11:44:38 +00:00
event_del(outgoing->event);
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:38 +00:00
}
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++) {
close(listen_socket[i].tcp);
close(listen_socket[i].udp);
}
2019-08-26 11:44:38 +00:00
xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
xasprintf(&envp[1], "DEVICE=%s", device ? : "");
xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
xasprintf(&envp[3], "NAME=%s", myself->name);
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();
exit_events();
2019-08-26 11:44:36 +00:00
execute_script("tinc-down", envp);
2019-08-26 11:44:48 +00:00
if(myport) {
free(myport);
}
2019-08-26 11:44:38 +00:00
2019-08-26 11:44:48 +00:00
for(i = 0; i < 4; i++) {
2019-08-26 11:44:36 +00:00
free(envp[i]);
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:41 +00:00
devops.close();
2019-08-26 11:44:36 +00:00
return;
2019-08-26 11:44:36 +00:00
}