3 Copyright (C) 1998-2005 Ivo Timmermans,
4 2000-2006 Guus Sliepen <guus@tinc-vpn.org>
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.
25 #include <openssl/pem.h>
26 #include <openssl/rsa.h>
27 #include <openssl/rand.h>
28 #include <openssl/err.h>
29 #include <openssl/evp.h>
33 #include "connection.h"
49 bool read_rsa_public_key(connection_t *c)
58 c->rsa_key = RSA_new();
59 // RSA_blinding_on(c->rsa_key, NULL);
62 /* First, check for simple PublicKey statement */
64 if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &key)) {
65 BN_hex2bn(&c->rsa_key->n, key);
66 BN_hex2bn(&c->rsa_key->e, "FFFF");
71 /* Else, check for PublicKeyFile statement and read it */
73 if(get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &fname)) {
74 fp = fopen(fname, "r");
77 logger(LOG_ERR, _("Error reading RSA public key file `%s': %s"),
78 fname, strerror(errno));
84 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
88 return true; /* Woohoo. */
90 /* If it fails, try PEM_read_RSA_PUBKEY. */
91 fp = fopen(fname, "r");
94 logger(LOG_ERR, _("Error reading RSA public key file `%s': %s"),
95 fname, strerror(errno));
101 c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
105 // RSA_blinding_on(c->rsa_key, NULL);
109 logger(LOG_ERR, _("Reading RSA public key file `%s' failed: %s"),
110 fname, strerror(errno));
114 /* Else, check if a harnessed public key is in the config file */
116 asprintf(&fname, "%s/hosts/%s", confbase, c->name);
117 fp = fopen(fname, "r");
120 c->rsa_key = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
129 /* Try again with PEM_read_RSA_PUBKEY. */
131 asprintf(&fname, "%s/hosts/%s", confbase, c->name);
132 fp = fopen(fname, "r");
135 c->rsa_key = PEM_read_RSA_PUBKEY(fp, &c->rsa_key, NULL, NULL);
136 // RSA_blinding_on(c->rsa_key, NULL);
145 logger(LOG_ERR, _("No public key for %s specified!"), c->name);
150 bool read_rsa_private_key(void)
153 char *fname, *key, *pubkey;
158 if(get_config_string(lookup_config(config_tree, "PrivateKey"), &key)) {
159 if(!get_config_string(lookup_config(myself->connection->config_tree, "PublicKey"), &pubkey)) {
160 logger(LOG_ERR, _("PrivateKey used but no PublicKey found!"));
163 myself->connection->rsa_key = RSA_new();
164 // RSA_blinding_on(myself->connection->rsa_key, NULL);
165 BN_hex2bn(&myself->connection->rsa_key->d, key);
166 BN_hex2bn(&myself->connection->rsa_key->n, pubkey);
167 BN_hex2bn(&myself->connection->rsa_key->e, "FFFF");
173 if(!get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
174 asprintf(&fname, "%s/rsa_key.priv", confbase);
176 fp = fopen(fname, "r");
179 logger(LOG_ERR, _("Error reading RSA private key file `%s': %s"),
180 fname, strerror(errno));
185 #if !defined(HAVE_MINGW) && !defined(HAVE_CYGWIN)
186 if(fstat(fileno(fp), &s)) {
187 logger(LOG_ERR, _("Could not stat RSA private key file `%s': %s'"),
188 fname, strerror(errno));
193 if(s.st_mode & ~0100700)
194 logger(LOG_WARNING, _("Warning: insecure file permissions for RSA private key file `%s'!"), fname);
197 myself->connection->rsa_key = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
200 if(!myself->connection->rsa_key) {
201 logger(LOG_ERR, _("Reading RSA private key file `%s' failed: %s"),
202 fname, strerror(errno));
212 Configure node_t myself and set up the local sockets (listen only)
214 bool setup_myself(void)
218 char *name, *hostname, *mode, *afname, *cipher, *digest;
219 char *address = NULL;
221 struct addrinfo *ai, *aip, hint = {0};
228 myself->connection = new_connection();
229 init_configuration(&myself->connection->config_tree);
231 asprintf(&myself->hostname, _("MYSELF"));
232 asprintf(&myself->connection->hostname, _("MYSELF"));
234 myself->connection->options = 0;
235 myself->connection->protocol_version = PROT_CURRENT;
237 if(!get_config_string(lookup_config(config_tree, "Name"), &name)) { /* Not acceptable */
238 logger(LOG_ERR, _("Name for tinc daemon required!"));
242 if(!check_id(name)) {
243 logger(LOG_ERR, _("Invalid name for myself!"));
249 myself->connection->name = xstrdup(name);
251 if(!read_connection_config(myself->connection)) {
252 logger(LOG_ERR, _("Cannot open host configuration file for myself!"));
256 if(!read_rsa_private_key())
259 if(!get_config_string(lookup_config(myself->connection->config_tree, "Port"), &myport))
260 asprintf(&myport, "655");
262 /* Read in all the subnets specified in the host configuration file */
264 cfg = lookup_config(myself->connection->config_tree, "Subnet");
267 if(!get_config_subnet(cfg, &subnet))
270 subnet_add(myself, subnet);
272 cfg = lookup_config_next(myself->connection->config_tree, cfg);
275 /* Check some options */
277 if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice)
278 myself->options |= OPTION_INDIRECT;
280 if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice) && choice)
281 myself->options |= OPTION_TCPONLY;
283 if(get_config_bool(lookup_config(myself->connection->config_tree, "IndirectData"), &choice) && choice)
284 myself->options |= OPTION_INDIRECT;
286 if(get_config_bool(lookup_config(myself->connection->config_tree, "TCPOnly"), &choice) && choice)
287 myself->options |= OPTION_TCPONLY;
289 if(get_config_bool(lookup_config(myself->connection->config_tree, "PMTUDiscovery"), &choice) && choice)
290 myself->options |= OPTION_PMTU_DISCOVERY;
292 if(myself->options & OPTION_TCPONLY)
293 myself->options |= OPTION_INDIRECT;
295 get_config_bool(lookup_config(config_tree, "TunnelServer"), &tunnelserver);
297 if(get_config_string(lookup_config(config_tree, "Mode"), &mode)) {
298 if(!strcasecmp(mode, "router"))
299 routing_mode = RMODE_ROUTER;
300 else if(!strcasecmp(mode, "switch"))
301 routing_mode = RMODE_SWITCH;
302 else if(!strcasecmp(mode, "hub"))
303 routing_mode = RMODE_HUB;
305 logger(LOG_ERR, _("Invalid routing mode!"));
310 routing_mode = RMODE_ROUTER;
312 get_config_bool(lookup_config(config_tree, "PriorityInheritance"), &priorityinheritance);
314 #if !defined(SOL_IP) || !defined(IP_TOS)
315 if(priorityinheritance)
316 logger(LOG_WARNING, _("PriorityInheritance not supported on this platform"));
319 if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire))
322 if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) {
323 if(maxtimeout <= 0) {
324 logger(LOG_ERR, _("Bogus maximum timeout!"));
330 if(get_config_string(lookup_config(config_tree, "AddressFamily"), &afname)) {
331 if(!strcasecmp(afname, "IPv4"))
332 addressfamily = AF_INET;
333 else if(!strcasecmp(afname, "IPv6"))
334 addressfamily = AF_INET6;
335 else if(!strcasecmp(afname, "any"))
336 addressfamily = AF_UNSPEC;
338 logger(LOG_ERR, _("Invalid address family!"));
344 get_config_bool(lookup_config(config_tree, "Hostnames"), &hostnames);
346 /* Generate packet encryption key */
349 (lookup_config(myself->connection->config_tree, "Cipher"), &cipher)) {
350 if(!strcasecmp(cipher, "none")) {
351 myself->cipher = NULL;
353 myself->cipher = EVP_get_cipherbyname(cipher);
355 if(!myself->cipher) {
356 logger(LOG_ERR, _("Unrecognized cipher type!"));
361 myself->cipher = EVP_bf_cbc();
364 myself->keylength = myself->cipher->key_len + myself->cipher->iv_len;
366 myself->keylength = 1;
368 myself->connection->outcipher = EVP_bf_ofb();
370 myself->key = xmalloc(myself->keylength);
371 RAND_pseudo_bytes((unsigned char *)myself->key, myself->keylength);
373 if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
376 keyexpires = now + keylifetime;
379 EVP_CIPHER_CTX_init(&packet_ctx);
380 if(!EVP_DecryptInit_ex(&packet_ctx, myself->cipher, NULL, (unsigned char *)myself->key, (unsigned char *)myself->key + myself->cipher->key_len)) {
381 logger(LOG_ERR, _("Error during initialisation of cipher for %s (%s): %s"),
382 myself->name, myself->hostname, ERR_error_string(ERR_get_error(), NULL));
388 /* Check if we want to use message authentication codes... */
391 (lookup_config(myself->connection->config_tree, "Digest"), &digest)) {
392 if(!strcasecmp(digest, "none")) {
393 myself->digest = NULL;
395 myself->digest = EVP_get_digestbyname(digest);
397 if(!myself->digest) {
398 logger(LOG_ERR, _("Unrecognized digest type!"));
403 myself->digest = EVP_sha1();
405 myself->connection->outdigest = EVP_sha1();
407 if(get_config_int(lookup_config(myself->connection->config_tree, "MACLength"),
408 &myself->maclength)) {
410 if(myself->maclength > myself->digest->md_size) {
411 logger(LOG_ERR, _("MAC length exceeds size of digest!"));
413 } else if(myself->maclength < 0) {
414 logger(LOG_ERR, _("Bogus MAC length!"));
419 myself->maclength = 4;
421 myself->connection->outmaclength = 0;
425 if(get_config_int(lookup_config(myself->connection->config_tree, "Compression"),
426 &myself->compression)) {
427 if(myself->compression < 0 || myself->compression > 11) {
428 logger(LOG_ERR, _("Bogus compression level!"));
432 myself->compression = 0;
434 myself->connection->outcompression = 0;
438 myself->nexthop = myself;
439 myself->via = myself;
440 myself->status.active = true;
441 myself->status.reachable = true;
451 /* Run tinc-up script to further initialize the tap interface */
452 asprintf(&envp[0], "NETNAME=%s", netname ? : "");
453 asprintf(&envp[1], "DEVICE=%s", device ? : "");
454 asprintf(&envp[2], "INTERFACE=%s", iface ? : "");
455 asprintf(&envp[3], "NAME=%s", myself->name);
458 execute_script("tinc-up", envp);
460 for(i = 0; i < 5; i++)
463 /* Run subnet-up scripts for our own subnets */
465 subnet_update(myself, NULL, true);
469 get_config_string(lookup_config(config_tree, "BindToAddress"), &address);
471 hint.ai_family = addressfamily;
472 hint.ai_socktype = SOCK_STREAM;
473 hint.ai_protocol = IPPROTO_TCP;
474 hint.ai_flags = AI_PASSIVE;
476 err = getaddrinfo(address, myport, &hint, &ai);
479 logger(LOG_ERR, _("System call `%s' failed: %s"), "getaddrinfo",
486 for(aip = ai; aip; aip = aip->ai_next) {
487 listen_socket[listen_sockets].tcp =
488 setup_listen_socket((sockaddr_t *) aip->ai_addr);
490 if(listen_socket[listen_sockets].tcp < 0)
493 listen_socket[listen_sockets].udp =
494 setup_vpn_in_socket((sockaddr_t *) aip->ai_addr);
496 if(listen_socket[listen_sockets].udp < 0)
499 ifdebug(CONNECTIONS) {
500 hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
501 logger(LOG_NOTICE, _("Listening on %s"), hostname);
505 memcpy(&listen_socket[listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
512 logger(LOG_NOTICE, _("Ready"));
514 logger(LOG_ERR, _("Unable to create any listening socket!"));
522 setup all initial network connections
524 bool setup_network_connections(void)
537 if(get_config_int(lookup_config(config_tree, "PingInterval"), &pinginterval)) {
538 if(pinginterval < 1) {
539 pinginterval = 86400;
544 if(!get_config_int(lookup_config(config_tree, "PingTimeout"), &pingtimeout))
546 if(pingtimeout < 1 || pingtimeout > pinginterval)
547 pingtimeout = pinginterval;
549 if(!get_config_int(lookup_config(config_tree, "MaxOutputBufferSize"), &maxoutbufsize))
550 maxoutbufsize = 4 * MTU;
555 try_outgoing_connections();
561 close all open network connections
563 void close_network_connections(void)
565 avl_node_t *node, *next;
572 for(node = connection_tree->head; node; node = next) {
577 free(c->outgoing->name), free(c->outgoing), c->outgoing = NULL;
578 terminate_connection(c, false);
581 if(myself && myself->connection) {
582 subnet_update(myself, NULL, false);
583 terminate_connection(myself->connection, false);
586 for(i = 0; i < listen_sockets; i++) {
587 close(listen_socket[i].tcp);
588 close(listen_socket[i].udp);
591 asprintf(&envp[0], "NETNAME=%s", netname ? : "");
592 asprintf(&envp[1], "DEVICE=%s", device ? : "");
593 asprintf(&envp[2], "INTERFACE=%s", iface ? : "");
594 asprintf(&envp[3], "NAME=%s", myself->name);
604 execute_script("tinc-down", envp);
606 for(i = 0; i < 4; i++)