2 protocol_auth.c -- handle the meta-protocol, authentication
3 Copyright (C) 1999-2005 Ivo Timmermans <ivo@tinc-vpn.org>,
4 2000-2005 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/sha.h>
26 #include <openssl/rand.h>
27 #include <openssl/err.h>
28 #include <openssl/evp.h>
32 #include "connection.h"
43 bool send_id(connection_t *c)
47 return send_request(c, "%d %s %d", ID, myself->connection->name,
48 myself->connection->protocol_version);
51 bool id_h(connection_t *c)
53 char name[MAX_STRING_SIZE];
57 if(sscanf(c->buffer, "%*d " MAX_STRING " %d", name, &c->protocol_version) != 2) {
58 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "ID", c->name,
63 /* Check if identity is a valid name */
66 logger(LOG_ERR, _("Got bad %s from %s (%s): %s"), "ID", c->name,
67 c->hostname, "invalid name");
71 /* If we set c->name in advance, make sure we are connected to the right host */
74 if(strcmp(c->name, name)) {
75 logger(LOG_ERR, _("Peer %s is %s instead of %s"), c->hostname, name,
82 c->name = xstrdup(name);
85 /* Check if version matches */
87 if(c->protocol_version != myself->connection->protocol_version) {
88 logger(LOG_ERR, _("Peer %s (%s) uses incompatible version %d"),
89 c->name, c->hostname, c->protocol_version);
95 init_configuration(&c->config_tree);
96 c->allow_request = ACK;
100 if(!c->config_tree) {
101 init_configuration(&c->config_tree);
103 if(!read_connection_config(c)) {
104 logger(LOG_ERR, _("Peer %s had unknown identity (%s)"), c->hostname,
110 if(!read_rsa_public_key(c)) {
114 c->allow_request = METAKEY;
116 return send_metakey(c);
119 bool send_metakey(connection_t *c)
127 len = RSA_size(c->rsa_key);
129 /* Allocate buffers for the meta key */
131 buffer = alloca(2 * len + 1);
134 c->outkey = xmalloc(len);
137 c->outctx = xmalloc_and_zero(sizeof(*c->outctx));
139 /* Copy random data to the buffer */
141 RAND_pseudo_bytes(c->outkey, len);
143 /* The message we send must be smaller than the modulus of the RSA key.
144 By definition, for a key of k bits, the following formula holds:
146 2^(k-1) <= modulus < 2^(k)
148 Where ^ means "to the power of", not "xor".
149 This means that to be sure, we must choose our message < 2^(k-1).
150 This can be done by setting the most significant bit to zero.
153 c->outkey[0] &= 0x7F;
155 ifdebug(SCARY_THINGS) {
156 bin2hex(c->outkey, buffer, len);
157 buffer[len * 2] = '\0';
158 logger(LOG_DEBUG, _("Generated random meta key (unencrypted): %s"),
162 /* Encrypt the random data
164 We do not use one of the PKCS padding schemes here.
165 This is allowed, because we encrypt a totally random string
166 with a length equal to that of the modulus of the RSA key.
169 if(RSA_public_encrypt(len, c->outkey, buffer, c->rsa_key, RSA_NO_PADDING) != len) {
170 logger(LOG_ERR, _("Error during encryption of meta key for %s (%s)"),
171 c->name, c->hostname);
175 /* Convert the encrypted random data to a hexadecimal formatted string */
177 bin2hex(buffer, buffer, len);
178 buffer[len * 2] = '\0';
180 /* Send the meta key */
182 x = send_request(c, "%d %d %d %d %d %s", METAKEY,
183 c->outcipher ? c->outcipher->nid : 0,
184 c->outdigest ? c->outdigest->type : 0, c->outmaclength,
185 c->outcompression, buffer);
187 /* Further outgoing requests are encrypted with the key we just generated */
190 if(!EVP_EncryptInit(c->outctx, c->outcipher,
191 c->outkey + len - c->outcipher->key_len,
192 c->outkey + len - c->outcipher->key_len -
193 c->outcipher->iv_len)) {
194 logger(LOG_ERR, _("Error during initialisation of cipher for %s (%s): %s"),
195 c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
199 c->status.encryptout = true;
205 bool metakey_h(connection_t *c)
207 char buffer[MAX_STRING_SIZE];
208 int cipher, digest, maclength, compression;
213 if(sscanf(c->buffer, "%*d %d %d %d %d " MAX_STRING, &cipher, &digest, &maclength, &compression, buffer) != 5) {
214 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "METAKEY", c->name,
219 len = RSA_size(myself->connection->rsa_key);
221 /* Check if the length of the meta key is all right */
223 if(strlen(buffer) != len * 2) {
224 logger(LOG_ERR, _("Possible intruder %s (%s): %s"), c->name, c->hostname, "wrong keylength");
228 /* Allocate buffers for the meta key */
231 c->inkey = xmalloc(len);
234 c->inctx = xmalloc_and_zero(sizeof(*c->inctx));
236 /* Convert the challenge from hexadecimal back to binary */
238 hex2bin(buffer, buffer, len);
240 /* Decrypt the meta key */
242 if(RSA_private_decrypt(len, buffer, c->inkey, myself->connection->rsa_key, RSA_NO_PADDING) != len) { /* See challenge() */
243 logger(LOG_ERR, _("Error during encryption of meta key for %s (%s)"),
244 c->name, c->hostname);
248 ifdebug(SCARY_THINGS) {
249 bin2hex(c->inkey, buffer, len);
250 buffer[len * 2] = '\0';
251 logger(LOG_DEBUG, _("Received random meta key (unencrypted): %s"), buffer);
254 /* All incoming requests will now be encrypted. */
256 /* Check and lookup cipher and digest algorithms */
259 c->incipher = EVP_get_cipherbynid(cipher);
262 logger(LOG_ERR, _("%s (%s) uses unknown cipher!"), c->name, c->hostname);
266 if(!EVP_DecryptInit(c->inctx, c->incipher,
267 c->inkey + len - c->incipher->key_len,
268 c->inkey + len - c->incipher->key_len -
269 c->incipher->iv_len)) {
270 logger(LOG_ERR, _("Error during initialisation of cipher from %s (%s): %s"),
271 c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
275 c->status.decryptin = true;
280 c->inmaclength = maclength;
283 c->indigest = EVP_get_digestbynid(digest);
286 logger(LOG_ERR, _("Node %s (%s) uses unknown digest!"), c->name, c->hostname);
290 if(c->inmaclength > c->indigest->md_size || c->inmaclength < 0) {
291 logger(LOG_ERR, _("%s (%s) uses bogus MAC length!"), c->name, c->hostname);
298 c->incompression = compression;
300 c->allow_request = CHALLENGE;
302 return send_challenge(c);
305 bool send_challenge(connection_t *c)
312 /* CHECKME: what is most reasonable value for len? */
314 len = RSA_size(c->rsa_key);
316 /* Allocate buffers for the challenge */
318 buffer = alloca(2 * len + 1);
321 c->hischallenge = xmalloc(len);
323 /* Copy random data to the buffer */
325 RAND_pseudo_bytes(c->hischallenge, len);
329 bin2hex(c->hischallenge, buffer, len);
330 buffer[len * 2] = '\0';
332 /* Send the challenge */
334 return send_request(c, "%d %s", CHALLENGE, buffer);
337 bool challenge_h(connection_t *c)
339 char buffer[MAX_STRING_SIZE];
344 if(sscanf(c->buffer, "%*d " MAX_STRING, buffer) != 1) {
345 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "CHALLENGE", c->name,
350 len = RSA_size(myself->connection->rsa_key);
352 /* Check if the length of the challenge is all right */
354 if(strlen(buffer) != len * 2) {
355 logger(LOG_ERR, _("Possible intruder %s (%s): %s"), c->name,
356 c->hostname, "wrong challenge length");
360 /* Allocate buffers for the challenge */
363 c->mychallenge = xmalloc(len);
365 /* Convert the challenge from hexadecimal back to binary */
367 hex2bin(buffer, c->mychallenge, len);
369 c->allow_request = CHAL_REPLY;
371 /* Rest is done by send_chal_reply() */
373 return send_chal_reply(c);
376 bool send_chal_reply(connection_t *c)
378 char hash[EVP_MAX_MD_SIZE * 2 + 1];
383 /* Calculate the hash from the challenge we received */
385 if(!EVP_DigestInit(&ctx, c->indigest)
386 || !EVP_DigestUpdate(&ctx, c->mychallenge, RSA_size(myself->connection->rsa_key))
387 || !EVP_DigestFinal(&ctx, hash, NULL)) {
388 logger(LOG_ERR, _("Error during calculation of response for %s (%s): %s"),
389 c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
393 /* Convert the hash to a hexadecimal formatted string */
395 bin2hex(hash, hash, c->indigest->md_size);
396 hash[c->indigest->md_size * 2] = '\0';
400 return send_request(c, "%d %s", CHAL_REPLY, hash);
403 bool chal_reply_h(connection_t *c)
405 char hishash[MAX_STRING_SIZE];
406 char myhash[EVP_MAX_MD_SIZE];
411 if(sscanf(c->buffer, "%*d " MAX_STRING, hishash) != 1) {
412 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "CHAL_REPLY", c->name,
417 /* Check if the length of the hash is all right */
419 if(strlen(hishash) != c->outdigest->md_size * 2) {
420 logger(LOG_ERR, _("Possible intruder %s (%s): %s"), c->name,
421 c->hostname, _("wrong challenge reply length"));
425 /* Convert the hash to binary format */
427 hex2bin(hishash, hishash, c->outdigest->md_size);
429 /* Calculate the hash from the challenge we sent */
431 if(!EVP_DigestInit(&ctx, c->outdigest)
432 || !EVP_DigestUpdate(&ctx, c->hischallenge, RSA_size(c->rsa_key))
433 || !EVP_DigestFinal(&ctx, myhash, NULL)) {
434 logger(LOG_ERR, _("Error during calculation of response from %s (%s): %s"),
435 c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
439 /* Verify the incoming hash with the calculated hash */
441 if(memcmp(hishash, myhash, c->outdigest->md_size)) {
442 logger(LOG_ERR, _("Possible intruder %s (%s): %s"), c->name,
443 c->hostname, _("wrong challenge reply"));
445 ifdebug(SCARY_THINGS) {
446 bin2hex(myhash, hishash, SHA_DIGEST_LENGTH);
447 hishash[SHA_DIGEST_LENGTH * 2] = '\0';
448 logger(LOG_DEBUG, _("Expected challenge reply: %s"), hishash);
454 /* Identity has now been positively verified.
455 Send an acknowledgement with the rest of the information needed.
458 c->allow_request = ACK;
463 bool send_ack(connection_t *c)
465 /* ACK message contains rest of the information the other end needs
466 to create node_t and edge_t structures. */
473 /* Estimate weight */
475 gettimeofday(&now, NULL);
476 c->estimated_weight = (now.tv_sec - c->start.tv_sec) * 1000 + (now.tv_usec - c->start.tv_usec) / 1000;
478 /* Check some options */
480 if((get_config_bool(lookup_config(c->config_tree, "IndirectData"), &choice) && choice) || myself->options & OPTION_INDIRECT)
481 c->options |= OPTION_INDIRECT;
483 if((get_config_bool(lookup_config(c->config_tree, "TCPOnly"), &choice) && choice) || myself->options & OPTION_TCPONLY)
484 c->options |= OPTION_TCPONLY | OPTION_INDIRECT;
486 if((get_config_bool(lookup_config(c->config_tree, "PMTUDiscovery"), &choice) && choice) || myself->options & OPTION_PMTU_DISCOVERY)
487 c->options |= OPTION_PMTU_DISCOVERY;
489 get_config_int(lookup_config(c->config_tree, "Weight"), &c->estimated_weight);
491 return send_request(c, "%d %s %d %lx", ACK, myport, c->estimated_weight, c->options);
494 static void send_everything(connection_t *c)
496 avl_node_t *node, *node2;
501 /* Send all known subnets and edges */
504 for(node = myself->subnet_tree->head; node; node = node->next) {
506 send_add_subnet(c, s);
512 for(node = node_tree->head; node; node = node->next) {
515 for(node2 = n->subnet_tree->head; node2; node2 = node2->next) {
517 send_add_subnet(c, s);
520 for(node2 = n->edge_tree->head; node2; node2 = node2->next) {
527 bool ack_h(connection_t *c)
529 char hisport[MAX_STRING_SIZE];
530 char *hisaddress, *dummy;
537 if(sscanf(c->buffer, "%*d " MAX_STRING " %d %lx", hisport, &weight, &options) != 3) {
538 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "ACK", c->name,
543 /* Check if we already have a node_t for him */
545 n = lookup_node(c->name);
549 n->name = xstrdup(c->name);
553 /* Oh dear, we already have a connection to this node. */
554 ifdebug(CONNECTIONS) logger(LOG_DEBUG, _("Established a second connection with %s (%s), closing old connection"),
555 n->name, n->hostname);
556 terminate_connection(n->connection, false);
557 /* Run graph algorithm to purge key and make sure up/down scripts are rerun with new IP addresses and stuff */
564 c->options |= options;
566 if(get_config_int(lookup_config(c->config_tree, "PMTU"), &mtu) && mtu < n->mtu)
569 if(get_config_int(lookup_config(myself->connection->config_tree, "PMTU"), &mtu) && mtu < n->mtu)
572 /* Activate this connection */
574 c->allow_request = ALL;
575 c->status.active = true;
577 ifdebug(CONNECTIONS) logger(LOG_NOTICE, _("Connection with %s (%s) activated"), c->name,
580 /* Send him everything we know */
584 /* Create an edge_t for this connection */
586 c->edge = new_edge();
588 c->edge->from = myself;
590 sockaddr2str(&c->address, &hisaddress, &dummy);
591 c->edge->address = str2sockaddr(hisaddress, hisport);
594 c->edge->weight = (weight + c->estimated_weight) / 2;
595 c->edge->connection = c;
596 c->edge->options = c->options;
600 /* Notify everyone of the new edge */
603 send_add_edge(c, c->edge);
605 send_add_edge(broadcast, c->edge);
607 /* Run MST and SSSP algorithms */