Use AES256 and SHA256 by default, also for the meta-connections.
[tinc] / src / protocol_auth.c
1 /*
2     protocol_auth.c -- handle the meta-protocol, authentication
3     Copyright (C) 1999-2005 Ivo Timmermans,
4                   2000-2016 Guus Sliepen <guus@tinc-vpn.org>
5
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.
10
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.
15
16     You should have received a copy of the GNU General Public License along
17     with this program; if not, write to the Free Software Foundation, Inc.,
18     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #include "system.h"
22
23 #include <openssl/sha.h>
24 #include <openssl/rand.h>
25 #include <openssl/err.h>
26 #include <openssl/evp.h>
27
28 #include "avl_tree.h"
29 #include "conf.h"
30 #include "connection.h"
31 #include "edge.h"
32 #include "graph.h"
33 #include "logger.h"
34 #include "meta.h"
35 #include "net.h"
36 #include "netutl.h"
37 #include "node.h"
38 #include "protocol.h"
39 #include "proxy.h"
40 #include "utils.h"
41 #include "xalloc.h"
42
43 bool send_id(connection_t *c) {
44         if(proxytype && c->outgoing && !c->status.proxy_passed)
45                 return send_proxyrequest(c);
46
47         return send_request(c, "%d %s %d", ID, myself->connection->name,
48                                                 myself->connection->protocol_version);
49 }
50
51 bool id_h(connection_t *c) {
52         char name[MAX_STRING_SIZE];
53
54         if(sscanf(c->buffer, "%*d " MAX_STRING " %d", name, &c->protocol_version) != 2) {
55                 logger(LOG_ERR, "Got bad %s from %s (%s)", "ID", c->name,
56                            c->hostname);
57                 return false;
58         }
59
60         /* Check if identity is a valid name */
61
62         if(!check_id(name)) {
63                 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "ID", c->name,
64                            c->hostname, "invalid name");
65                 return false;
66         }
67
68         /* If this is an outgoing connection, make sure we are connected to the right host */
69
70         if(c->outgoing) {
71                 if(strcmp(c->name, name)) {
72                         logger(LOG_ERR, "Peer %s is %s instead of %s", c->hostname, name,
73                                    c->name);
74                         return false;
75                 }
76         } else {
77                 if(c->name)
78                         free(c->name);
79                 c->name = xstrdup(name);
80         }
81
82         /* Check if version matches */
83
84         if(c->protocol_version != myself->connection->protocol_version) {
85                 logger(LOG_ERR, "Peer %s (%s) uses incompatible version %d",
86                            c->name, c->hostname, c->protocol_version);
87                 return false;
88         }
89
90         if(bypass_security) {
91                 if(!c->config_tree)
92                         init_configuration(&c->config_tree);
93                 c->allow_request = ACK;
94                 return send_ack(c);
95         }
96
97         if(!c->config_tree) {
98                 init_configuration(&c->config_tree);
99
100                 if(!read_connection_config(c)) {
101                         logger(LOG_ERR, "Peer %s had unknown identity (%s)", c->hostname,
102                                    c->name);
103                         return false;
104                 }
105         }
106
107         if(!read_rsa_public_key(c)) {
108                 return false;
109         }
110
111         c->allow_request = METAKEY;
112
113         return send_metakey(c);
114 }
115
116 bool send_metakey(connection_t *c) {
117         bool x;
118
119         int len = RSA_size(c->rsa_key);
120
121         /* Allocate buffers for the meta key */
122
123         char buffer[2 * len + 1];
124         
125         c->outkey = xrealloc(c->outkey, len);
126
127         if(!c->outctx) {
128                 c->outctx = EVP_CIPHER_CTX_new();
129                 if(!c->outctx)
130                         abort();
131         }
132
133         /* Copy random data to the buffer */
134
135         if (1 != RAND_bytes((unsigned char *)c->outkey, len)) {
136                 int err = ERR_get_error();
137                 logger(LOG_ERR, "Failed to generate meta key (%s)", ERR_error_string(err, NULL));
138                 return false;
139         }
140
141
142         /* The message we send must be smaller than the modulus of the RSA key.
143            By definition, for a key of k bits, the following formula holds:
144
145            2^(k-1) <= modulus < 2^(k)
146
147            Where ^ means "to the power of", not "xor".
148            This means that to be sure, we must choose our message < 2^(k-1).
149            This can be done by setting the most significant bit to zero.
150          */
151
152         c->outkey[0] &= 0x7F;
153
154         ifdebug(SCARY_THINGS) {
155                 bin2hex(c->outkey, buffer, len);
156                 buffer[len * 2] = '\0';
157                 logger(LOG_DEBUG, "Generated random meta key (unencrypted): %s",
158                            buffer);
159         }
160
161         /* Encrypt the random data
162
163            We do not use one of the PKCS padding schemes here.
164            This is allowed, because we encrypt a totally random string
165            with a length equal to that of the modulus of the RSA key.
166          */
167
168         if(RSA_public_encrypt(len, (unsigned char *)c->outkey, (unsigned char *)buffer, c->rsa_key, RSA_NO_PADDING) != len) {
169                 logger(LOG_ERR, "Error during encryption of meta key for %s (%s): %s",
170                            c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
171                 return false;
172         }
173
174         /* Convert the encrypted random data to a hexadecimal formatted string */
175
176         bin2hex(buffer, buffer, len);
177         buffer[len * 2] = '\0';
178
179         /* Send the meta key */
180
181         x = send_request(c, "%d %d %d %d %d %s", METAKEY,
182                                          c->outcipher ? EVP_CIPHER_nid(c->outcipher) : 0,
183                                          c->outdigest ? EVP_MD_type(c->outdigest) : 0, c->outmaclength,
184                                          c->outcompression, buffer);
185
186         /* Further outgoing requests are encrypted with the key we just generated */
187
188         if(c->outcipher) {
189                 if(!EVP_EncryptInit(c->outctx, c->outcipher,
190                                         (unsigned char *)c->outkey + len - EVP_CIPHER_key_length(c->outcipher),
191                                         (unsigned char *)c->outkey + len - EVP_CIPHER_key_length(c->outcipher) -
192                                         EVP_CIPHER_iv_length(c->outcipher))) {
193                         logger(LOG_ERR, "Error during initialisation of cipher for %s (%s): %s",
194                                         c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
195                         return false;
196                 }
197
198                 c->status.encryptout = true;
199         }
200
201         return x;
202 }
203
204 bool metakey_h(connection_t *c) {
205         char buffer[MAX_STRING_SIZE];
206         int cipher, digest, maclength, compression;
207         int len;
208
209         if(sscanf(c->buffer, "%*d %d %d %d %d " MAX_STRING, &cipher, &digest, &maclength, &compression, buffer) != 5) {
210                 logger(LOG_ERR, "Got bad %s from %s (%s)", "METAKEY", c->name,
211                            c->hostname);
212                 return false;
213         }
214
215         len = RSA_size(myself->connection->rsa_key);
216
217         /* Check if the length of the meta key is all right */
218
219         if(strlen(buffer) != len * 2) {
220                 logger(LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong keylength");
221                 return false;
222         }
223
224         /* Allocate buffers for the meta key */
225
226         c->inkey = xrealloc(c->inkey, len);
227
228         if(!c->inctx) {
229                 c->inctx = EVP_CIPHER_CTX_new();
230                 if(!c->inctx)
231                         abort();
232         }
233
234         /* Convert the challenge from hexadecimal back to binary */
235
236         if(!hex2bin(buffer, buffer, len)) {
237                 logger(LOG_ERR, "Got bad %s from %s(%s): %s", "METAKEY", c->name, c->hostname, "invalid key");
238                 return false;
239         }
240
241         /* Decrypt the meta key */
242
243         if(RSA_private_decrypt(len, (unsigned char *)buffer, (unsigned char *)c->inkey, myself->connection->rsa_key, RSA_NO_PADDING) != len) {  /* See challenge() */
244                 logger(LOG_ERR, "Error during decryption of meta key for %s (%s): %s",
245                            c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
246                 return false;
247         }
248
249         ifdebug(SCARY_THINGS) {
250                 bin2hex(c->inkey, buffer, len);
251                 buffer[len * 2] = '\0';
252                 logger(LOG_DEBUG, "Received random meta key (unencrypted): %s", buffer);
253         }
254
255         /* All incoming requests will now be encrypted. */
256
257         /* Check and lookup cipher and digest algorithms */
258
259         if(cipher) {
260                 c->incipher = EVP_get_cipherbynid(cipher);
261                 
262                 if(!c->incipher) {
263                         logger(LOG_ERR, "%s (%s) uses unknown cipher!", c->name, c->hostname);
264                         return false;
265                 }
266
267                 if(!EVP_DecryptInit(c->inctx, c->incipher,
268                                         (unsigned char *)c->inkey + len - EVP_CIPHER_key_length(c->incipher),
269                                         (unsigned char *)c->inkey + len - EVP_CIPHER_key_length(c->incipher) -
270                                         EVP_CIPHER_iv_length(c->incipher))) {
271                         logger(LOG_ERR, "Error during initialisation of cipher from %s (%s): %s",
272                                         c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
273                         return false;
274                 }
275
276                 c->status.decryptin = true;
277         } else {
278                 c->incipher = NULL;
279         }
280
281         c->inmaclength = maclength;
282
283         if(digest) {
284                 c->indigest = EVP_get_digestbynid(digest);
285
286                 if(!c->indigest) {
287                         logger(LOG_ERR, "Node %s (%s) uses unknown digest!", c->name, c->hostname);
288                         return false;
289                 }
290
291                 if(c->inmaclength > EVP_MD_size(c->indigest) || c->inmaclength < 0) {
292                         logger(LOG_ERR, "%s (%s) uses bogus MAC length!", c->name, c->hostname);
293                         return false;
294                 }
295         } else {
296                 c->indigest = NULL;
297         }
298
299         c->incompression = compression;
300
301         c->allow_request = CHALLENGE;
302
303         return send_challenge(c);
304 }
305
306 bool send_challenge(connection_t *c) {
307         /* CHECKME: what is most reasonable value for len? */
308
309         int len = RSA_size(c->rsa_key);
310
311         /* Allocate buffers for the challenge */
312
313         char buffer[2 * len + 1];
314
315         c->hischallenge = xrealloc(c->hischallenge, len);
316
317         /* Copy random data to the buffer */
318
319         if (1 != RAND_bytes((unsigned char *)c->hischallenge, len)) {
320                 int err = ERR_get_error();
321                 logger(LOG_ERR, "Failed to generate challenge (%s)", ERR_error_string(err, NULL));
322                 return false; // Do not send predictable challenges, let connection attempt fail.
323         }
324
325         /* Convert to hex */
326
327         bin2hex(c->hischallenge, buffer, len);
328         buffer[len * 2] = '\0';
329
330         /* Send the challenge */
331
332         return send_request(c, "%d %s", CHALLENGE, buffer);
333 }
334
335 bool challenge_h(connection_t *c) {
336         char buffer[MAX_STRING_SIZE];
337         int len;
338
339         if(sscanf(c->buffer, "%*d " MAX_STRING, buffer) != 1) {
340                 logger(LOG_ERR, "Got bad %s from %s (%s)", "CHALLENGE", c->name,
341                            c->hostname);
342                 return false;
343         }
344
345         len = RSA_size(myself->connection->rsa_key);
346
347         /* Check if the length of the challenge is all right */
348
349         if(strlen(buffer) != len * 2) {
350                 logger(LOG_ERR, "Possible intruder %s (%s): %s", c->name,
351                            c->hostname, "wrong challenge length");
352                 return false;
353         }
354
355         /* Allocate buffers for the challenge */
356
357         c->mychallenge = xrealloc(c->mychallenge, len);
358
359         /* Convert the challenge from hexadecimal back to binary */
360
361         if(!hex2bin(buffer, c->mychallenge, len)) {
362                 logger(LOG_ERR, "Got bad %s from %s(%s): %s", "CHALLENGE", c->name, c->hostname, "invalid challenge");
363                 return false;
364         }
365
366         c->allow_request = CHAL_REPLY;
367
368         /* Rest is done by send_chal_reply() */
369
370         return send_chal_reply(c);
371 }
372
373 bool send_chal_reply(connection_t *c) {
374         char hash[EVP_MAX_MD_SIZE * 2 + 1];
375         EVP_MD_CTX *ctx;
376
377         /* Calculate the hash from the challenge we received */
378
379         ctx = EVP_MD_CTX_create();
380         if(!ctx)
381                 abort();
382
383         if(!EVP_DigestInit(ctx, c->indigest)
384                         || !EVP_DigestUpdate(ctx, c->mychallenge, RSA_size(myself->connection->rsa_key))
385                         || !EVP_DigestFinal(ctx, (unsigned char *)hash, NULL)) {
386                 EVP_MD_CTX_destroy(ctx);
387                 logger(LOG_ERR, "Error during calculation of response for %s (%s): %s",
388                         c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
389                 return false;
390         }
391
392         EVP_MD_CTX_destroy(ctx);
393
394         /* Convert the hash to a hexadecimal formatted string */
395
396         bin2hex(hash, hash, EVP_MD_size(c->indigest));
397         hash[EVP_MD_size(c->indigest) * 2] = '\0';
398
399         /* Send the reply */
400
401         return send_request(c, "%d %s", CHAL_REPLY, hash);
402 }
403
404 bool chal_reply_h(connection_t *c) {
405         char hishash[MAX_STRING_SIZE];
406         char myhash[EVP_MAX_MD_SIZE];
407         EVP_MD_CTX *ctx;
408
409         if(sscanf(c->buffer, "%*d " MAX_STRING, hishash) != 1) {
410                 logger(LOG_ERR, "Got bad %s from %s (%s)", "CHAL_REPLY", c->name,
411                            c->hostname);
412                 return false;
413         }
414
415         /* Check if the length of the hash is all right */
416
417         if(strlen(hishash) != EVP_MD_size(c->outdigest) * 2) {
418                 logger(LOG_ERR, "Possible intruder %s (%s): %s", c->name,
419                            c->hostname, "wrong challenge reply length");
420                 return false;
421         }
422
423         /* Convert the hash to binary format */
424
425         if(!hex2bin(hishash, hishash, EVP_MD_size(c->outdigest))) {
426                 logger(LOG_ERR, "Got bad %s from %s(%s): %s", "CHAL_REPLY", c->name, c->hostname, "invalid hash");
427                 return false;
428         }
429
430         /* Calculate the hash from the challenge we sent */
431
432         ctx = EVP_MD_CTX_create();
433         if(!ctx)
434                 abort();
435
436         if(!EVP_DigestInit(ctx, c->outdigest)
437                         || !EVP_DigestUpdate(ctx, c->hischallenge, RSA_size(c->rsa_key))
438                         || !EVP_DigestFinal(ctx, (unsigned char *)myhash, NULL)) {
439                 EVP_MD_CTX_destroy(ctx);
440                 logger(LOG_ERR, "Error during calculation of response from %s (%s): %s",
441                         c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
442                 return false;
443         }
444
445         EVP_MD_CTX_destroy(ctx);
446
447         /* Verify the incoming hash with the calculated hash */
448
449         if(memcmp(hishash, myhash, EVP_MD_size(c->outdigest))) {
450                 logger(LOG_ERR, "Possible intruder %s (%s): %s", c->name,
451                            c->hostname, "wrong challenge reply");
452
453                 ifdebug(SCARY_THINGS) {
454                         bin2hex(myhash, hishash, SHA_DIGEST_LENGTH);
455                         hishash[SHA_DIGEST_LENGTH * 2] = '\0';
456                         logger(LOG_DEBUG, "Expected challenge reply: %s", hishash);
457                 }
458
459                 return false;
460         }
461
462         /* Identity has now been positively verified.
463            Send an acknowledgement with the rest of the information needed.
464          */
465
466         c->allow_request = ACK;
467
468         return send_ack(c);
469 }
470
471 bool send_ack(connection_t *c) {
472         /* ACK message contains rest of the information the other end needs
473            to create node_t and edge_t structures. */
474
475         struct timeval now;
476         bool choice;
477
478         /* Estimate weight */
479
480         gettimeofday(&now, NULL);
481         c->estimated_weight = (now.tv_sec - c->start.tv_sec) * 1000 + (now.tv_usec - c->start.tv_usec) / 1000;
482
483         /* Check some options */
484
485         if((get_config_bool(lookup_config(c->config_tree, "IndirectData"), &choice) && choice) || myself->options & OPTION_INDIRECT)
486                 c->options |= OPTION_INDIRECT;
487
488         if((get_config_bool(lookup_config(c->config_tree, "TCPOnly"), &choice) && choice) || myself->options & OPTION_TCPONLY)
489                 c->options |= OPTION_TCPONLY | OPTION_INDIRECT;
490
491         if(myself->options & OPTION_PMTU_DISCOVERY)
492                 c->options |= OPTION_PMTU_DISCOVERY;
493
494         choice = myself->options & OPTION_CLAMP_MSS;
495         get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice);
496         if(choice)
497                 c->options |= OPTION_CLAMP_MSS;
498
499         get_config_int(lookup_config(c->config_tree, "Weight"), &c->estimated_weight);
500
501         return send_request(c, "%d %s %d %x", ACK, myport, c->estimated_weight, c->options);
502 }
503
504 static void send_everything(connection_t *c) {
505         avl_node_t *node, *node2;
506         node_t *n;
507         subnet_t *s;
508         edge_t *e;
509
510         /* Send all known subnets and edges */
511
512         if(tunnelserver) {
513                 for(node = myself->subnet_tree->head; node; node = node->next) {
514                         s = node->data;
515                         send_add_subnet(c, s);
516                 }
517
518                 return;
519         }
520
521         for(node = node_tree->head; node; node = node->next) {
522                 n = node->data;
523
524                 for(node2 = n->subnet_tree->head; node2; node2 = node2->next) {
525                         s = node2->data;
526                         send_add_subnet(c, s);
527                 }
528
529                 for(node2 = n->edge_tree->head; node2; node2 = node2->next) {
530                         e = node2->data;
531                         send_add_edge(c, e);
532                 }
533         }
534 }
535
536 bool ack_h(connection_t *c) {
537         char hisport[MAX_STRING_SIZE];
538         int weight, mtu;
539         uint32_t options;
540         node_t *n;
541         bool choice;
542
543         if(sscanf(c->buffer, "%*d " MAX_STRING " %d %x", hisport, &weight, &options) != 3) {
544                 logger(LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name,
545                            c->hostname);
546                 return false;
547         }
548
549         /* Check if we already have a node_t for him */
550
551         n = lookup_node(c->name);
552
553         if(!n) {
554                 n = new_node();
555                 n->name = xstrdup(c->name);
556                 node_add(n);
557         } else {
558                 if(n->connection) {
559                         /* Oh dear, we already have a connection to this node. */
560                         ifdebug(CONNECTIONS) logger(LOG_DEBUG, "Established a second connection with %s (%s), closing old connection",
561                                            n->name, n->hostname);
562                         terminate_connection(n->connection, false);
563                         /* Run graph algorithm to purge key and make sure up/down scripts are rerun with new IP addresses and stuff */
564                         graph();
565                 }
566         }
567
568         n->connection = c;
569         c->node = n;
570         if(!(c->options & options & OPTION_PMTU_DISCOVERY)) {
571                 c->options &= ~OPTION_PMTU_DISCOVERY;
572                 options &= ~OPTION_PMTU_DISCOVERY;
573         }
574         c->options |= options;
575
576         if(get_config_int(lookup_config(c->config_tree, "PMTU"), &mtu) && mtu < n->mtu)
577                 n->mtu = mtu;
578
579         if(get_config_int(lookup_config(config_tree, "PMTU"), &mtu) && mtu < n->mtu)
580                 n->mtu = mtu;
581
582         if(get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice)) {
583                 if(choice)
584                         c->options |= OPTION_CLAMP_MSS;
585                 else
586                         c->options &= ~OPTION_CLAMP_MSS;
587         }
588
589         /* Activate this connection */
590
591         c->allow_request = ALL;
592         c->status.active = true;
593
594         ifdebug(CONNECTIONS) logger(LOG_NOTICE, "Connection with %s (%s) activated", c->name,
595                            c->hostname);
596
597         /* Send him everything we know */
598
599         send_everything(c);
600
601         /* Create an edge_t for this connection */
602
603         c->edge = new_edge();
604         c->edge->from = myself;
605         c->edge->to = n;
606         sockaddrcpy(&c->edge->address, &c->address);
607         sockaddr_setport(&c->edge->address, hisport);
608         c->edge->weight = (weight + c->estimated_weight) / 2;
609         c->edge->connection = c;
610         c->edge->options = c->options;
611
612         edge_add(c->edge);
613
614         /* Notify everyone of the new edge */
615
616         if(tunnelserver)
617                 send_add_edge(c, c->edge);
618         else
619                 send_add_edge(everyone, c->edge);
620
621         /* Run MST and SSSP algorithms */
622
623         graph();
624
625         return true;
626 }