2002-02-11 10:05:58 +00:00
|
|
|
/*
|
|
|
|
protocol_key.c -- handle the meta-protocol, key exchange
|
2006-04-26 13:52:58 +00:00
|
|
|
Copyright (C) 1999-2005 Ivo Timmermans,
|
2009-03-05 13:12:36 +00:00
|
|
|
2000-2009 Guus Sliepen <guus@tinc-vpn.org>
|
2002-02-11 10:05:58 +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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "system.h"
|
2002-02-11 10:05:58 +00:00
|
|
|
|
2003-10-11 12:16:13 +00:00
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/err.h>
|
2009-04-02 23:05:23 +00:00
|
|
|
#include <openssl/rand.h>
|
2003-10-11 12:16:13 +00:00
|
|
|
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "avl_tree.h"
|
|
|
|
#include "connection.h"
|
|
|
|
#include "logger.h"
|
2002-02-11 10:05:58 +00:00
|
|
|
#include "net.h"
|
|
|
|
#include "netutl.h"
|
|
|
|
#include "node.h"
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "protocol.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "xalloc.h"
|
2002-02-11 10:05:58 +00:00
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
bool mykeyused = false;
|
2002-02-11 10:05:58 +00:00
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
bool send_key_changed()
|
2002-02-11 10:05:58 +00:00
|
|
|
{
|
2002-09-09 21:25:28 +00:00
|
|
|
cp();
|
|
|
|
|
|
|
|
/* Only send this message if some other daemon requested our key previously.
|
|
|
|
This reduces unnecessary key_changed broadcasts.
|
|
|
|
*/
|
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
if(!mykeyused)
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-09-14 21:06:00 +00:00
|
|
|
return send_request(broadcast, "%d %x %s", KEY_CHANGED, rand(), myself->name);
|
2002-02-11 10:05:58 +00:00
|
|
|
}
|
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
bool key_changed_h(connection_t *c)
|
2002-02-11 10:05:58 +00:00
|
|
|
{
|
2002-09-09 21:25:28 +00:00
|
|
|
char name[MAX_STRING_SIZE];
|
|
|
|
node_t *n;
|
|
|
|
|
|
|
|
cp();
|
|
|
|
|
|
|
|
if(sscanf(c->buffer, "%*d %*x " MAX_STRING, name) != 1) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Got bad %s from %s (%s)"), "KEY_CHANGED",
|
2002-09-09 21:25:28 +00:00
|
|
|
c->name, c->hostname);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(seen_request(c->buffer))
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
n = lookup_node(name);
|
|
|
|
|
|
|
|
if(!n) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist"),
|
2002-09-09 21:25:28 +00:00
|
|
|
"KEY_CHANGED", c->name, c->hostname, name);
|
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
|
|
|
n->status.validkey = false;
|
|
|
|
n->status.waitingforkey = false;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
/* Tell the others */
|
|
|
|
|
2003-11-17 15:30:18 +00:00
|
|
|
if(!tunnelserver)
|
|
|
|
forward_request(c);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2002-02-11 10:05:58 +00:00
|
|
|
}
|
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
bool send_req_key(node_t *to)
|
2002-02-11 10:05:58 +00:00
|
|
|
{
|
2002-09-09 21:25:28 +00:00
|
|
|
cp();
|
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
return send_request(to->nexthop->connection, "%d %s %s", REQ_KEY, myself->name, to->name);
|
2002-02-11 10:05:58 +00:00
|
|
|
}
|
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
bool req_key_h(connection_t *c)
|
2002-02-11 10:05:58 +00:00
|
|
|
{
|
2002-09-09 21:25:28 +00:00
|
|
|
char from_name[MAX_STRING_SIZE];
|
|
|
|
char to_name[MAX_STRING_SIZE];
|
|
|
|
node_t *from, *to;
|
|
|
|
|
|
|
|
cp();
|
|
|
|
|
|
|
|
if(sscanf(c->buffer, "%*d " MAX_STRING " " MAX_STRING, from_name, to_name) != 2) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Got bad %s from %s (%s)"), "REQ_KEY", c->name,
|
2002-09-09 21:25:28 +00:00
|
|
|
c->hostname);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
from = lookup_node(from_name);
|
|
|
|
|
|
|
|
if(!from) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist in our connection list"),
|
2002-09-09 21:25:28 +00:00
|
|
|
"REQ_KEY", c->name, c->hostname, from_name);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
to = lookup_node(to_name);
|
|
|
|
|
|
|
|
if(!to) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Got %s from %s (%s) destination %s which does not exist in our connection list"),
|
2002-09-09 21:25:28 +00:00
|
|
|
"REQ_KEY", c->name, c->hostname, to_name);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if this key request is for us */
|
|
|
|
|
|
|
|
if(to == myself) { /* Yes, send our own key back */
|
2009-04-02 23:05:23 +00:00
|
|
|
send_ans_key(from);
|
2002-09-09 21:25:28 +00:00
|
|
|
} else {
|
2003-11-17 15:30:18 +00:00
|
|
|
if(tunnelserver)
|
|
|
|
return false;
|
|
|
|
|
2008-10-25 19:54:00 +00:00
|
|
|
if(!to->status.reachable) {
|
|
|
|
logger(LOG_WARNING, _("Got %s from %s (%s) destination %s which is not reachable"),
|
|
|
|
"REQ_KEY", c->name, c->hostname, to_name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
send_request(to->nexthop->connection, "%s", c->buffer);
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
2002-02-11 10:05:58 +00:00
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2002-02-11 10:05:58 +00:00
|
|
|
}
|
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
bool send_ans_key(node_t *to)
|
2002-02-11 10:05:58 +00:00
|
|
|
{
|
2005-06-03 10:16:03 +00:00
|
|
|
char *key;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
cp();
|
|
|
|
|
2009-05-24 17:31:31 +00:00
|
|
|
// Set key parameters
|
|
|
|
to->incipher = myself->incipher;
|
|
|
|
to->inkeylength = myself->inkeylength;
|
|
|
|
to->indigest = myself->indigest;
|
2009-06-05 14:14:31 +00:00
|
|
|
to->inmaclength = myself->inmaclength;
|
2009-05-24 17:31:31 +00:00
|
|
|
to->incompression = myself->incompression;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-05-24 17:31:31 +00:00
|
|
|
// Allocate memory for key
|
|
|
|
to->inkey = xrealloc(to->inkey, to->inkeylength);
|
|
|
|
|
|
|
|
// Create a new key
|
|
|
|
RAND_pseudo_bytes((unsigned char *)to->inkey, to->inkeylength);
|
|
|
|
if(to->incipher)
|
|
|
|
EVP_DecryptInit_ex(&to->inctx, to->incipher, NULL, (unsigned char *)to->inkey, (unsigned char *)to->inkey + to->incipher->key_len);
|
|
|
|
|
|
|
|
// Reset sequence number and late packet window
|
|
|
|
mykeyused = true;
|
|
|
|
to->received_seqno = 0;
|
|
|
|
memset(to->late, 0, sizeof(to->late));
|
2009-04-02 23:05:23 +00:00
|
|
|
|
2009-05-24 17:31:31 +00:00
|
|
|
// Convert to hexadecimal and send
|
2009-04-02 23:05:23 +00:00
|
|
|
key = alloca(2 * to->inkeylength + 1);
|
|
|
|
bin2hex(to->inkey, key, to->inkeylength);
|
2009-05-24 18:32:24 +00:00
|
|
|
key[to->inkeylength * 2] = '\0';
|
2009-04-02 23:05:23 +00:00
|
|
|
|
|
|
|
return send_request(to->nexthop->connection, "%d %s %s %s %d %d %d %d", ANS_KEY,
|
|
|
|
myself->name, to->name, key,
|
|
|
|
to->incipher ? to->incipher->nid : 0,
|
|
|
|
to->indigest ? to->indigest->type : 0, to->inmaclength,
|
|
|
|
to->incompression);
|
2002-02-11 10:05:58 +00:00
|
|
|
}
|
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
bool ans_key_h(connection_t *c)
|
2002-02-11 10:05:58 +00:00
|
|
|
{
|
2002-09-09 21:25:28 +00:00
|
|
|
char from_name[MAX_STRING_SIZE];
|
|
|
|
char to_name[MAX_STRING_SIZE];
|
|
|
|
char key[MAX_STRING_SIZE];
|
|
|
|
int cipher, digest, maclength, compression;
|
|
|
|
node_t *from, *to;
|
|
|
|
|
|
|
|
cp();
|
|
|
|
|
|
|
|
if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING" "MAX_STRING" %d %d %d %d",
|
|
|
|
from_name, to_name, key, &cipher, &digest, &maclength,
|
|
|
|
&compression) != 7) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Got bad %s from %s (%s)"), "ANS_KEY", c->name,
|
2002-09-09 21:25:28 +00:00
|
|
|
c->hostname);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-02-11 10:05:58 +00:00
|
|
|
}
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
from = lookup_node(from_name);
|
|
|
|
|
|
|
|
if(!from) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist in our connection list"),
|
2002-09-09 21:25:28 +00:00
|
|
|
"ANS_KEY", c->name, c->hostname, from_name);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
to = lookup_node(to_name);
|
|
|
|
|
|
|
|
if(!to) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Got %s from %s (%s) destination %s which does not exist in our connection list"),
|
2002-09-09 21:25:28 +00:00
|
|
|
"ANS_KEY", c->name, c->hostname, to_name);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-02-11 10:05:58 +00:00
|
|
|
}
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
/* Forward it if necessary */
|
|
|
|
|
|
|
|
if(to != myself) {
|
2003-11-17 15:30:18 +00:00
|
|
|
if(tunnelserver)
|
|
|
|
return false;
|
|
|
|
|
2008-10-25 19:54:00 +00:00
|
|
|
if(!to->status.reachable) {
|
|
|
|
logger(LOG_WARNING, _("Got %s from %s (%s) destination %s which is not reachable"),
|
|
|
|
"ANS_KEY", c->name, c->hostname, to_name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
return send_request(to->nexthop->connection, "%s", c->buffer);
|
2002-02-11 10:05:58 +00:00
|
|
|
}
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
/* Update our copy of the origin's packet key */
|
2009-05-24 17:31:31 +00:00
|
|
|
from->outkey = xrealloc(from->outkey, strlen(key) / 2);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
from->outkey = xstrdup(key);
|
|
|
|
from->outkeylength = strlen(key) / 2;
|
2009-05-24 17:31:31 +00:00
|
|
|
hex2bin(key, from->outkey, from->outkeylength);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
from->status.waitingforkey = false;
|
2002-09-09 21:25:28 +00:00
|
|
|
/* Check and lookup cipher and digest algorithms */
|
|
|
|
|
|
|
|
if(cipher) {
|
2009-04-02 23:05:23 +00:00
|
|
|
from->outcipher = EVP_get_cipherbynid(cipher);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
if(!from->outcipher) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Node %s (%s) uses unknown cipher!"), from->name,
|
2002-09-09 21:25:28 +00:00
|
|
|
from->hostname);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
if(from->outkeylength != from->outcipher->key_len + from->outcipher->iv_len) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Node %s (%s) uses wrong keylength!"), from->name,
|
2002-09-09 21:25:28 +00:00
|
|
|
from->hostname);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
} else {
|
2009-04-02 23:05:23 +00:00
|
|
|
from->outcipher = NULL;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
from->outmaclength = maclength;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
if(digest) {
|
2009-04-02 23:05:23 +00:00
|
|
|
from->outdigest = EVP_get_digestbynid(digest);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
if(!from->outdigest) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Node %s (%s) uses unknown digest!"), from->name,
|
2002-09-09 21:25:28 +00:00
|
|
|
from->hostname);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
if(from->outmaclength > from->outdigest->md_size || from->outmaclength < 0) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Node %s (%s) uses bogus MAC length!"),
|
2002-09-09 21:25:28 +00:00
|
|
|
from->name, from->hostname);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
} else {
|
2009-04-02 23:05:23 +00:00
|
|
|
from->outdigest = NULL;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2003-05-06 21:13:18 +00:00
|
|
|
if(compression < 0 || compression > 11) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR, _("Node %s (%s) uses bogus compression level!"), from->name, from->hostname);
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2003-05-06 21:13:18 +00:00
|
|
|
}
|
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
from->outcompression = compression;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-04-02 23:05:23 +00:00
|
|
|
if(from->outcipher)
|
|
|
|
if(!EVP_EncryptInit_ex(&from->outctx, from->outcipher, NULL, (unsigned char *)from->outkey, (unsigned char *)from->outkey + from->outcipher->key_len)) {
|
2003-10-11 12:16:13 +00:00
|
|
|
logger(LOG_ERR, _("Error during initialisation of key from %s (%s): %s"),
|
|
|
|
from->name, from->hostname, ERR_error_string(ERR_get_error(), NULL));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-05-24 17:31:31 +00:00
|
|
|
from->status.validkey = true;
|
|
|
|
from->sent_seqno = 0;
|
|
|
|
|
2003-12-20 21:25:17 +00:00
|
|
|
if(from->options & OPTION_PMTU_DISCOVERY && !from->mtuprobes)
|
2003-12-20 19:47:53 +00:00
|
|
|
send_mtu_probe(from);
|
2003-05-06 21:13:18 +00:00
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2002-02-11 10:05:58 +00:00
|
|
|
}
|