Improve recently seen address cache
[tinc] / src / protocol_auth.c
1 /*
2     protocol_auth.c -- handle the meta-protocol, authentication
3     Copyright (C) 1999-2005 Ivo Timmermans,
4                   2000-2022 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 "conf.h"
24 #include "connection.h"
25 #include "control.h"
26 #include "control_common.h"
27 #include "cipher.h"
28 #include "digest.h"
29 #include "ecdsa.h"
30 #include "edge.h"
31 #include "graph.h"
32 #include "logger.h"
33 #include "meta.h"
34 #include "names.h"
35 #include "net.h"
36 #include "netutl.h"
37 #include "node.h"
38 #include "protocol.h"
39 #include "rsa.h"
40 #include "script.h"
41 #include "sptps.h"
42 #include "utils.h"
43 #include "xalloc.h"
44 #include "random.h"
45 #include "compression.h"
46 #include "proxy.h"
47 #include "address_cache.h"
48
49 #include "ed25519/sha512.h"
50 #include "keys.h"
51
52 /* If nonzero, use null ciphers and skip all key exchanges. */
53 bool bypass_security = false;
54
55 int invitation_lifetime;
56 ecdsa_t *invitation_key = NULL;
57
58 static bool send_proxyrequest(connection_t *c) {
59         switch(proxytype) {
60         case PROXY_HTTP: {
61                 char *host;
62                 char *port;
63
64                 sockaddr2str(&c->address, &host, &port);
65                 send_request(c, "CONNECT %s:%s HTTP/1.1\r\n\r", host, port);
66                 free(host);
67                 free(port);
68                 return true;
69         }
70
71         case PROXY_SOCKS4:
72         case PROXY_SOCKS5: {
73                 size_t reqlen = socks_req_len(proxytype, &c->address);
74                 uint8_t *req = alloca(reqlen);
75                 c->tcplen = create_socks_req(proxytype, req, &c->address);
76                 return c->tcplen ? send_meta(c, req, reqlen) : false;
77         }
78
79         case PROXY_SOCKS4A:
80                 logger(DEBUG_ALWAYS, LOG_ERR, "Proxy type not implemented yet");
81                 return false;
82
83         case PROXY_EXEC:
84                 return true;
85
86         case PROXY_NONE:
87         default:
88                 logger(DEBUG_ALWAYS, LOG_ERR, "Unknown proxy type");
89                 return false;
90         }
91 }
92
93 bool send_id(connection_t *c) {
94         gettimeofday(&c->start, NULL);
95
96         int minor = 0;
97
98         if(experimental) {
99                 if(c->outgoing && !ecdsa_active(c->ecdsa) && !(c->ecdsa = read_ecdsa_public_key(&c->config_tree, c->name))) {
100                         minor = 1;
101                 } else {
102                         minor = myself->connection->protocol_minor;
103                 }
104         }
105
106         if(proxytype && c->outgoing)
107                 if(!send_proxyrequest(c)) {
108                         return false;
109                 }
110
111         return send_request(c, "%d %s %d.%d", ID, myself->connection->name, myself->connection->protocol_major, minor);
112 }
113
114 static bool finalize_invitation(connection_t *c, const char *data, uint16_t len) {
115         (void)len;
116
117         if(strchr(data, '\n')) {
118                 logger(DEBUG_ALWAYS, LOG_ERR, "Received invalid key from invited node %s (%s)!\n", c->name, c->hostname);
119                 return false;
120         }
121
122         // Create a new host config file
123         char filename[PATH_MAX];
124         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", confbase, c->name);
125
126         if(!access(filename, F_OK)) {
127                 logger(DEBUG_ALWAYS, LOG_ERR, "Host config file for %s (%s) already exists!\n", c->name, c->hostname);
128                 return false;
129         }
130
131         FILE *f = fopen(filename, "w");
132
133         if(!f) {
134                 logger(DEBUG_ALWAYS, LOG_ERR, "Error trying to create %s: %s\n", filename, strerror(errno));
135                 return false;
136         }
137
138         fprintf(f, "Ed25519PublicKey = %s\n", data);
139         fclose(f);
140
141         logger(DEBUG_CONNECTIONS, LOG_INFO, "Key successfully received from %s (%s)", c->name, c->hostname);
142
143         if(!c->node) {
144                 c->node = lookup_node(c->name);
145         }
146
147         if(!c->node) {
148                 c->node = new_node(c->name);
149                 c->node->connection = c;
150                 node_add(c->node);
151         }
152
153         if(!c->node->address_cache) {
154                 c->node->address_cache = open_address_cache(c->node);
155         }
156
157         add_recent_address(c->node->address_cache, &c->address);
158
159         // Call invitation-accepted script
160         environment_t env;
161         char *address, *port;
162
163         environment_init(&env);
164         environment_add(&env, "NODE=%s", c->name);
165         sockaddr2str(&c->address, &address, &port);
166         environment_add(&env, "REMOTEADDRESS=%s", address);
167         environment_add(&env, "NAME=%s", myself->name);
168
169         free(address);
170         free(port);
171
172         execute_script("invitation-accepted", &env);
173
174         environment_exit(&env);
175
176         sptps_send_record(&c->sptps, 2, data, 0);
177         return true;
178 }
179
180 static bool receive_invitation_sptps(void *handle, uint8_t type, const void *data, uint16_t len) {
181         connection_t *c = handle;
182
183         if(type == 128) {
184                 return true;
185         }
186
187         if(type == 1 && c->status.invitation_used) {
188                 return finalize_invitation(c, data, len);
189         }
190
191         if(type != 0 || len != 18 || c->status.invitation_used) {
192                 return false;
193         }
194
195         // Recover the filename from the cookie and the key
196         char *fingerprint = ecdsa_get_base64_public_key(invitation_key);
197         const size_t hashbuflen = 18 + strlen(fingerprint);
198         char *hashbuf = alloca(hashbuflen);
199         char cookie[64];
200         memcpy(hashbuf, data, 18);
201         memcpy(hashbuf + 18, fingerprint, hashbuflen - 18);
202         sha512(hashbuf, hashbuflen, cookie);
203         b64encode_tinc_urlsafe(cookie, cookie, 18);
204         free(fingerprint);
205
206         char filename[PATH_MAX], usedname[PATH_MAX];
207         snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "%s", confbase, cookie);
208         snprintf(usedname, sizeof(usedname), "%s" SLASH "invitations" SLASH "%s.used", confbase, cookie);
209
210         // Atomically rename the invitation file
211         if(rename(filename, usedname)) {
212                 if(errno == ENOENT) {
213                         logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s tried to use non-existing invitation %s\n", c->hostname, cookie);
214                 } else {
215                         logger(DEBUG_ALWAYS, LOG_ERR, "Error trying to rename invitation %s\n", cookie);
216                 }
217
218                 return false;
219         }
220
221         // Check the timestamp of the invitation
222         struct stat st;
223
224         if(stat(usedname, &st)) {
225                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not stat %s", usedname);
226                 return false;
227         }
228
229         if(st.st_mtime + invitation_lifetime < now.tv_sec) {
230                 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s tried to use expired invitation %s", c->hostname, cookie);
231                 return false;
232         }
233
234         // Open the renamed file
235         FILE *f = fopen(usedname, "r");
236
237         if(!f) {
238                 logger(DEBUG_ALWAYS, LOG_ERR, "Error trying to open invitation %s\n", cookie);
239                 return false;
240         }
241
242         // Read the new node's Name from the file
243         char buf[1024] = "";
244
245         if(!fgets(buf, sizeof(buf), f)) {
246                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not read invitation file %s\n", cookie);
247                 fclose(f);
248                 return false;
249         }
250
251         size_t buflen = strlen(buf);
252
253         // Strip whitespace at the end
254         while(buflen && strchr(" \t\r\n", buf[buflen - 1])) {
255                 buf[--buflen] = 0;
256         }
257
258         // Split the first line into variable and value
259         len = strcspn(buf, " \t=");
260         char *name = buf + len;
261         name += strspn(name, " \t");
262
263         if(*name == '=') {
264                 name++;
265                 name += strspn(name, " \t");
266         }
267
268         buf[len] = 0;
269
270         // Check that it is a valid Name
271         if(!*buf || !*name || strcasecmp(buf, "Name") || !check_id(name) || !strcmp(name, myself->name)) {
272                 logger(DEBUG_ALWAYS, LOG_ERR, "Invalid invitation file %s\n", cookie);
273                 fclose(f);
274                 return false;
275         }
276
277         free(c->name);
278         c->name = xstrdup(name);
279
280         // Send the node the contents of the invitation file
281         rewind(f);
282         size_t result;
283
284         while((result = fread(buf, 1, sizeof(buf), f))) {
285                 sptps_send_record(&c->sptps, 0, buf, result);
286         }
287
288         if(!feof(f)) {
289                 logger(DEBUG_ALWAYS, LOG_ERR, "Could not read invitation file %s\n", cookie);
290                 fclose(f);
291                 return false;
292         }
293
294         sptps_send_record(&c->sptps, 1, buf, 0);
295         fclose(f);
296         unlink(usedname);
297
298         c->status.invitation_used = true;
299
300         logger(DEBUG_CONNECTIONS, LOG_INFO, "Invitation %s successfully sent to %s (%s)", cookie, c->name, c->hostname);
301         return true;
302 }
303
304 bool id_h(connection_t *c, const char *request) {
305         char name[MAX_STRING_SIZE];
306
307         if(sscanf(request, "%*d " MAX_STRING " %2d.%3d", name, &c->protocol_major, &c->protocol_minor) < 2) {
308                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ID", c->name,
309                        c->hostname);
310                 return false;
311         }
312
313         /* Check if this is a control connection */
314
315         if(name[0] == '^' && !strcmp(name + 1, controlcookie)) {
316                 c->status.control = true;
317                 c->allow_request = CONTROL;
318                 c->last_ping_time = now.tv_sec + 3600;
319
320                 free(c->name);
321                 c->name = xstrdup("<control>");
322
323                 if(!c->outgoing) {
324                         send_id(c);
325                 }
326
327                 return send_request(c, "%d %d %d", ACK, TINC_CTL_VERSION_CURRENT, getpid());
328         }
329
330         if(name[0] == '?') {
331                 if(!invitation_key) {
332                         logger(DEBUG_ALWAYS, LOG_ERR, "Got invitation from %s but we don't have an invitation key", c->hostname);
333                         return false;
334                 }
335
336                 c->ecdsa = ecdsa_set_base64_public_key(name + 1);
337
338                 if(!c->ecdsa) {
339                         logger(DEBUG_ALWAYS, LOG_ERR, "Got bad invitation from %s", c->hostname);
340                         return false;
341                 }
342
343                 c->status.invitation = true;
344                 char *mykey = ecdsa_get_base64_public_key(invitation_key);
345
346                 if(!mykey) {
347                         return false;
348                 }
349
350                 if(!c->outgoing) {
351                         send_id(c);
352                 }
353
354                 if(!send_request(c, "%d %s", ACK, mykey)) {
355                         return false;
356                 }
357
358                 free(mykey);
359
360                 c->protocol_minor = 2;
361
362                 return sptps_start(&c->sptps, c, false, false, invitation_key, c->ecdsa, "tinc invitation", 15, send_meta_sptps, receive_invitation_sptps);
363         }
364
365         /* Check if identity is a valid name */
366
367         if(!check_id(name) || !strcmp(name, myself->name)) {
368                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "ID", c->name,
369                        c->hostname, "invalid name");
370                 return false;
371         }
372
373         /* If this is an outgoing connection, make sure we are connected to the right host */
374
375         if(c->outgoing) {
376                 if(strcmp(c->name, name)) {
377                         logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s is %s instead of %s", c->hostname, name,
378                                c->name);
379                         return false;
380                 }
381         } else {
382                 free(c->name);
383                 c->name = xstrdup(name);
384         }
385
386         /* Check if version matches */
387
388         if(c->protocol_major != myself->connection->protocol_major) {
389                 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s (%s) uses incompatible version %d.%d",
390                        c->name, c->hostname, c->protocol_major, c->protocol_minor);
391                 return false;
392         }
393
394         if(bypass_security) {
395                 if(!c->config_tree) {
396                         c->config_tree = create_configuration();
397                 }
398
399                 c->allow_request = ACK;
400
401                 if(!c->outgoing) {
402                         send_id(c);
403                 }
404
405                 return send_ack(c);
406         }
407
408         if(!experimental) {
409                 c->protocol_minor = 0;
410         }
411
412         if(!c->config_tree) {
413                 c->config_tree = create_configuration();
414
415                 if(!read_host_config(c->config_tree, c->name, false)) {
416                         logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s had unknown identity (%s)", c->hostname, c->name);
417                         return false;
418                 }
419
420                 if(experimental && !ecdsa_active(c->ecdsa)) {
421                         c->ecdsa = read_ecdsa_public_key(&c->config_tree, c->name);
422                 }
423
424                 /* Ignore failures if no key known yet */
425         }
426
427         if(c->protocol_minor && !ecdsa_active(c->ecdsa)) {
428                 c->protocol_minor = 1;
429         }
430
431         /* Forbid version rollback for nodes whose Ed25519 key we know */
432
433         if(ecdsa_active(c->ecdsa) && c->protocol_minor < 1) {
434                 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s (%s) tries to roll back protocol version to %d.%d",
435                        c->name, c->hostname, c->protocol_major, c->protocol_minor);
436                 return false;
437         }
438
439         c->allow_request = METAKEY;
440
441         if(!c->outgoing) {
442                 send_id(c);
443         }
444
445         if(c->protocol_minor >= 2) {
446                 c->allow_request = ACK;
447
448                 const size_t labellen = 25 + strlen(myself->name) + strlen(c->name);
449                 char *label = alloca(labellen);
450
451                 if(c->outgoing) {
452                         snprintf(label, labellen, "tinc TCP key expansion %s %s", myself->name, c->name);
453                 } else {
454                         snprintf(label, labellen, "tinc TCP key expansion %s %s", c->name, myself->name);
455                 }
456
457                 return sptps_start(&c->sptps, c, c->outgoing, false, myself->connection->ecdsa, c->ecdsa, label, labellen, send_meta_sptps, receive_meta_sptps);
458         } else {
459                 return send_metakey(c);
460         }
461 }
462
463 #ifndef DISABLE_LEGACY
464 static const char *get_cipher_name(cipher_t *cipher) {
465         size_t keylen = cipher_keylength(cipher);
466
467         if(keylen <= 16) {
468                 return "aes-128-cfb";
469         } else if(keylen <= 24) {
470                 return "aes-192-cfb";
471         } else {
472                 return "aes-256-cfb";
473         }
474 }
475
476 bool send_metakey(connection_t *c) {
477         if(!myself->connection->legacy) {
478                 logger(DEBUG_CONNECTIONS, LOG_ERR, "Peer %s (%s) uses legacy protocol which we don't support", c->name, c->hostname);
479                 return false;
480         }
481
482         rsa_t *rsa = read_rsa_public_key(c->config_tree, c->name);
483
484         if(!rsa) {
485                 return false;
486         }
487
488         legacy_ctx_t *ctx = new_legacy_ctx(rsa);
489
490         /* We need to use a stream mode for the meta protocol. Use AES for this,
491            but try to match the key size with the one from the cipher selected
492            by Cipher.
493         */
494
495         const char *cipher_name = get_cipher_name(myself->incipher);
496
497         if(!init_crypto_by_name(&ctx->out, cipher_name, "sha256")) {
498                 logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of cipher or digest to %s (%s)", c->name, c->hostname);
499                 free_legacy_ctx(ctx);
500                 return false;
501         }
502
503         const size_t len = rsa_size(ctx->rsa);
504         const size_t hexkeylen = HEX_SIZE(len);
505         char *key = alloca(len);
506         char *enckey = alloca(len);
507         char *hexkey = alloca(hexkeylen);
508
509         /* Create a random key */
510
511         randomize(key, len);
512
513         /* The message we send must be smaller than the modulus of the RSA key.
514            By definition, for a key of k bits, the following formula holds:
515
516            2^(k-1) <= modulus < 2^(k)
517
518            Where ^ means "to the power of", not "xor".
519            This means that to be sure, we must choose our message < 2^(k-1).
520            This can be done by setting the most significant bit to zero.
521          */
522
523         key[0] &= 0x7F;
524
525         if(!cipher_set_key_from_rsa(&ctx->out.cipher, key, len, true)) {
526                 free_legacy_ctx(ctx);
527                 memzero(key, len);
528                 return false;
529         }
530
531         if(debug_level >= DEBUG_SCARY_THINGS) {
532                 bin2hex(key, hexkey, len);
533                 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Generated random meta key (unencrypted): %s", hexkey);
534                 memzero(hexkey, hexkeylen);
535         }
536
537         /* Encrypt the random data
538
539            We do not use one of the PKCS padding schemes here.
540            This is allowed, because we encrypt a totally random string
541            with a length equal to that of the modulus of the RSA key.
542          */
543
544         bool encrypted = rsa_public_encrypt(ctx->rsa, key, len, enckey);
545         memzero(key, len);
546
547         if(!encrypted) {
548                 free_legacy_ctx(ctx);
549                 logger(DEBUG_ALWAYS, LOG_ERR, "Error during encryption of meta key for %s (%s)", c->name, c->hostname);
550                 return false;
551         }
552
553         free_legacy_ctx(c->legacy);
554         c->legacy = ctx;
555
556         /* Convert the encrypted random data to a hexadecimal formatted string */
557
558         bin2hex(enckey, hexkey, len);
559
560         /* Send the meta key */
561
562         bool result = send_request(c, "%d %d %d %d %d %s", METAKEY,
563                                    cipher_get_nid(&c->legacy->out.cipher),
564                                    digest_get_nid(&c->legacy->out.digest), c->outmaclength,
565                                    COMPRESS_NONE, hexkey);
566
567         c->status.encryptout = true;
568         return result;
569 }
570
571 bool metakey_h(connection_t *c, const char *request) {
572         if(!myself->connection->legacy || !c->legacy) {
573                 return false;
574         }
575
576         char hexkey[MAX_STRING_SIZE];
577         int cipher, digest;
578         const size_t len = rsa_size(myself->connection->legacy->rsa);
579         char *enckey = alloca(len);
580         char *key = alloca(len);
581
582         if(sscanf(request, "%*d %d %d %*d %*d " MAX_STRING, &cipher, &digest, hexkey) != 3) {
583                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "METAKEY", c->name, c->hostname);
584                 return false;
585         }
586
587         if(!cipher || !digest) {
588                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): cipher %d, digest %d", c->name, c->hostname, cipher, digest);
589                 return false;
590         }
591
592         /* Convert the challenge from hexadecimal back to binary */
593
594         size_t inlen = hex2bin(hexkey, enckey, len);
595
596         /* Check if the length of the meta key is all right */
597
598         if(inlen != len) {
599                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong keylength");
600                 return false;
601         }
602
603         /* Decrypt the meta key */
604
605         if(!rsa_private_decrypt(myself->connection->legacy->rsa, enckey, len, key)) {
606                 logger(DEBUG_ALWAYS, LOG_ERR, "Error during decryption of meta key for %s (%s)", c->name, c->hostname);
607                 return false;
608         }
609
610         if(debug_level >= DEBUG_SCARY_THINGS) {
611                 bin2hex(key, hexkey, len);
612                 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Received random meta key (unencrypted): %s", hexkey);
613                 // Hopefully the user knew what he was doing leaking session keys into logs. We'll do the right thing here anyway.
614                 memzero(hexkey, HEX_SIZE(len));
615         }
616
617         /* Check and lookup cipher and digest algorithms */
618
619         if(!init_crypto_by_nid(&c->legacy->in, cipher, digest)) {
620                 memzero(key, len);
621                 logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of cipher or digest from %s (%s)", c->name, c->hostname);
622                 return false;
623         }
624
625         bool key_set = cipher_set_key_from_rsa(&c->legacy->in.cipher, key, len, false);
626         memzero(key, len);
627
628         if(!key_set) {
629                 logger(DEBUG_ALWAYS, LOG_ERR, "Error setting RSA key for %s (%s)", c->name, c->hostname);
630                 return false;
631         }
632
633         c->status.decryptin = true;
634
635         c->allow_request = CHALLENGE;
636
637         return send_challenge(c);
638 }
639
640 bool send_challenge(connection_t *c) {
641         const size_t len = rsa_size(c->legacy->rsa);
642         char *buffer = alloca(len * 2 + 1);
643
644         c->hischallenge = xrealloc(c->hischallenge, len);
645
646         /* Copy random data to the buffer */
647
648         randomize(c->hischallenge, len);
649
650         /* Convert to hex */
651
652         bin2hex(c->hischallenge, buffer, len);
653
654         /* Send the challenge */
655
656         return send_request(c, "%d %s", CHALLENGE, buffer);
657 }
658
659 bool challenge_h(connection_t *c, const char *request) {
660         if(!myself->connection->legacy) {
661                 return false;
662         }
663
664         char buffer[MAX_STRING_SIZE];
665         const size_t len = rsa_size(myself->connection->legacy->rsa);
666
667         if(sscanf(request, "%*d " MAX_STRING, buffer) != 1) {
668                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHALLENGE", c->name, c->hostname);
669                 return false;
670         }
671
672         /* Check if the length of the challenge is all right */
673
674         if(strlen(buffer) != (size_t)len * 2) {
675                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge length");
676                 return false;
677         }
678
679         c->mychallenge = xrealloc(c->mychallenge, len);
680
681         /* Convert the challenge from hexadecimal back to binary */
682
683         hex2bin(buffer, c->mychallenge, len);
684
685         /* The rest is done by send_chal_reply() */
686
687         c->allow_request = CHAL_REPLY;
688
689         if(c->outgoing) {
690                 return send_chal_reply(c);
691         } else {
692                 return true;
693         }
694 }
695
696 bool send_chal_reply(connection_t *c) {
697         const size_t len = rsa_size(myself->connection->legacy->rsa);
698         size_t digestlen = digest_length(&c->legacy->in.digest);
699         char *digest = alloca(digestlen * 2 + 1);
700
701         /* Calculate the hash from the challenge we received */
702
703         if(!digest_create(&c->legacy->in.digest, c->mychallenge, len, digest)) {
704                 return false;
705         }
706
707         free(c->mychallenge);
708         c->mychallenge = NULL;
709
710         /* Convert the hash to a hexadecimal formatted string */
711
712         bin2hex(digest, digest, digestlen);
713
714         /* Send the reply */
715
716         return send_request(c, "%d %s", CHAL_REPLY, digest);
717 }
718
719 bool chal_reply_h(connection_t *c, const char *request) {
720         char hishash[MAX_STRING_SIZE];
721
722         if(sscanf(request, "%*d " MAX_STRING, hishash) != 1) {
723                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHAL_REPLY", c->name,
724                        c->hostname);
725                 return false;
726         }
727
728         /* Convert the hash to binary format */
729
730         size_t inlen = hex2bin(hishash, hishash, sizeof(hishash));
731
732         /* Check if the length of the hash is all right */
733
734         if(inlen != digest_length(&c->legacy->out.digest)) {
735                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply length");
736                 return false;
737         }
738
739
740         /* Verify the hash */
741
742         if(!digest_verify(&c->legacy->out.digest, c->hischallenge, rsa_size(c->legacy->rsa), hishash)) {
743                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply");
744                 return false;
745         }
746
747         /* Identity has now been positively verified.
748            Send an acknowledgement with the rest of the information needed.
749          */
750
751         free(c->hischallenge);
752         c->hischallenge = NULL;
753         c->allow_request = ACK;
754
755         if(!c->outgoing) {
756                 send_chal_reply(c);
757         }
758
759         return send_ack(c);
760 }
761
762 static bool send_upgrade(connection_t *c) {
763         /* Special case when protocol_minor is 1: the other end is Ed25519 capable,
764          * but doesn't know our key yet. So send it now. */
765
766         char *pubkey = ecdsa_get_base64_public_key(myself->connection->ecdsa);
767
768         if(!pubkey) {
769                 return false;
770         }
771
772         bool result = send_request(c, "%d %s", ACK, pubkey);
773         free(pubkey);
774         return result;
775 }
776 #else
777 bool send_metakey(connection_t *c) {
778         (void)c;
779         return false;
780 }
781
782 bool metakey_h(connection_t *c, const char *request) {
783         (void)c;
784         (void)request;
785         return false;
786 }
787
788 bool send_challenge(connection_t *c) {
789         (void)c;
790         return false;
791 }
792
793 bool challenge_h(connection_t *c, const char *request) {
794         (void)c;
795         (void)request;
796         return false;
797 }
798
799 bool send_chal_reply(connection_t *c) {
800         (void)c;
801         return false;
802 }
803
804 bool chal_reply_h(connection_t *c, const char *request) {
805         (void)c;
806         (void)request;
807         return false;
808 }
809
810 static bool send_upgrade(connection_t *c) {
811         (void)c;
812         return false;
813 }
814 #endif
815
816 bool send_ack(connection_t *c) {
817         if(c->protocol_minor == 1) {
818                 return send_upgrade(c);
819         }
820
821         /* ACK message contains rest of the information the other end needs
822            to create node_t and edge_t structures. */
823
824         struct timeval now;
825         bool choice;
826
827         /* Estimate weight */
828
829         gettimeofday(&now, NULL);
830         c->estimated_weight = (int)((now.tv_sec - c->start.tv_sec) * 1000 + (now.tv_usec - c->start.tv_usec) / 1000);
831
832         /* Check some options */
833
834         if((get_config_bool(lookup_config(c->config_tree, "IndirectData"), &choice) && choice) || myself->options & OPTION_INDIRECT) {
835                 c->options |= OPTION_INDIRECT;
836         }
837
838         if((get_config_bool(lookup_config(c->config_tree, "TCPOnly"), &choice) && choice) || myself->options & OPTION_TCPONLY) {
839                 c->options |= OPTION_TCPONLY | OPTION_INDIRECT;
840         }
841
842         if(myself->options & OPTION_PMTU_DISCOVERY && !(c->options & OPTION_TCPONLY)) {
843                 c->options |= OPTION_PMTU_DISCOVERY;
844         }
845
846         choice = myself->options & OPTION_CLAMP_MSS;
847         get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice);
848
849         if(choice) {
850                 c->options |= OPTION_CLAMP_MSS;
851         }
852
853         if(!get_config_int(lookup_config(c->config_tree, "Weight"), &c->estimated_weight)) {
854                 get_config_int(lookup_config(&config_tree, "Weight"), &c->estimated_weight);
855         }
856
857         return send_request(c, "%d %s %d %x", ACK, myport.udp, c->estimated_weight, (c->options & 0xffffff) | (experimental ? (PROT_MINOR << 24) : 0));
858 }
859
860 static void send_everything(connection_t *c) {
861         /* Send all known subnets and edges */
862
863         if(disablebuggypeers) {
864                 static struct {
865                         vpn_packet_t pkt;
866                         char pad[MAXBUFSIZE - MAXSIZE];
867                 } zeropkt;
868
869                 memset(&zeropkt, 0, sizeof(zeropkt));
870                 zeropkt.pkt.len = MAXBUFSIZE;
871                 send_tcppacket(c, &zeropkt.pkt);
872         }
873
874         if(tunnelserver) {
875                 for splay_each(subnet_t, s, &myself->subnet_tree) {
876                         send_add_subnet(c, s);
877                 }
878
879                 return;
880         }
881
882         for splay_each(node_t, n, &node_tree) {
883                 for splay_each(subnet_t, s, &n->subnet_tree) {
884                         send_add_subnet(c, s);
885                 }
886
887                 for splay_each(edge_t, e, &n->edge_tree) {
888                         send_add_edge(c, e);
889                 }
890         }
891 }
892
893 static bool upgrade_h(connection_t *c, const char *request) {
894         char pubkey[MAX_STRING_SIZE];
895
896         if(sscanf(request, "%*d " MAX_STRING, pubkey) != 1) {
897                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name, c->hostname);
898                 return false;
899         }
900
901         if(ecdsa_active(c->ecdsa) || (c->ecdsa = read_ecdsa_public_key(&c->config_tree, c->name))) {
902                 char *knownkey = ecdsa_get_base64_public_key(c->ecdsa);
903                 bool different = strcmp(knownkey, pubkey);
904                 free(knownkey);
905
906                 if(different) {
907                         logger(DEBUG_ALWAYS, LOG_ERR, "Already have an Ed25519 public key from %s (%s) which is different from the one presented now!", c->name, c->hostname);
908                         return false;
909                 }
910
911                 logger(DEBUG_ALWAYS, LOG_INFO, "Already have Ed25519 public key from %s (%s), ignoring.", c->name, c->hostname);
912                 c->allow_request = TERMREQ;
913                 return send_termreq(c);
914         }
915
916         c->ecdsa = ecdsa_set_base64_public_key(pubkey);
917
918         if(!c->ecdsa) {
919                 logger(DEBUG_ALWAYS, LOG_INFO, "Got bad Ed25519 public key from %s (%s), not upgrading.", c->name, c->hostname);
920                 return false;
921         }
922
923         logger(DEBUG_ALWAYS, LOG_INFO, "Got Ed25519 public key from %s (%s), upgrading!", c->name, c->hostname);
924         append_config_file(c->name, "Ed25519PublicKey", pubkey);
925         c->allow_request = TERMREQ;
926
927         if(c->outgoing) {
928                 c->outgoing->timeout = 0;
929         }
930
931         return send_termreq(c);
932 }
933
934 bool ack_h(connection_t *c, const char *request) {
935         if(c->protocol_minor == 1) {
936                 return upgrade_h(c, request);
937         }
938
939         char hisport[MAX_STRING_SIZE];
940         int weight, mtu;
941         uint32_t options;
942         node_t *n;
943         bool choice;
944
945         if(sscanf(request, "%*d " MAX_STRING " %d %x", hisport, &weight, &options) != 3) {
946                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name,
947                        c->hostname);
948                 return false;
949         }
950
951         /* Check if we already have a node_t for him */
952
953         n = lookup_node(c->name);
954
955         if(!n) {
956                 n = new_node(c->name);
957                 node_add(n);
958         } else {
959                 if(n->connection) {
960                         /* Oh dear, we already have a connection to this node. */
961                         logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Established a second connection with %s (%s), closing old connection", n->connection->name, n->connection->hostname);
962
963                         if(n->connection->outgoing) {
964                                 if(c->outgoing) {
965                                         logger(DEBUG_ALWAYS, LOG_WARNING, "Two outgoing connections to the same node!");
966                                 } else {
967                                         c->outgoing = n->connection->outgoing;
968                                 }
969
970                                 n->connection->outgoing = NULL;
971                         }
972
973                         terminate_connection(n->connection, false);
974                         /* Run graph algorithm to purge key and make sure up/down scripts are rerun with new IP addresses and stuff */
975                         graph();
976                 }
977         }
978
979         n->connection = c;
980         c->node = n;
981
982         if(!(c->options & options & OPTION_PMTU_DISCOVERY)) {
983                 c->options &= ~OPTION_PMTU_DISCOVERY;
984                 options &= ~OPTION_PMTU_DISCOVERY;
985         }
986
987         c->options |= options;
988
989         if(get_config_int(lookup_config(c->config_tree, "PMTU"), &mtu) && mtu < n->mtu) {
990                 n->mtu = mtu;
991         }
992
993         if(get_config_int(lookup_config(&config_tree, "PMTU"), &mtu) && mtu < n->mtu) {
994                 n->mtu = mtu;
995         }
996
997         if(get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice)) {
998                 if(choice) {
999                         c->options |= OPTION_CLAMP_MSS;
1000                 } else {
1001                         c->options &= ~OPTION_CLAMP_MSS;
1002                 }
1003         }
1004
1005         /* Activate this connection */
1006
1007         c->allow_request = ALL;
1008
1009         logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Connection with %s (%s) activated", c->name,
1010                c->hostname);
1011
1012         /* Send him everything we know */
1013
1014         send_everything(c);
1015
1016         /* Create an edge_t for this connection */
1017
1018         c->edge = new_edge();
1019         c->edge->from = myself;
1020         c->edge->to = n;
1021         sockaddrcpy(&c->edge->address, &c->address);
1022         sockaddr_setport(&c->edge->address, hisport);
1023         sockaddr_t local_sa;
1024         socklen_t local_salen = sizeof(local_sa);
1025
1026         if(getsockname(c->socket, &local_sa.sa, &local_salen) < 0) {
1027                 logger(DEBUG_ALWAYS, LOG_WARNING, "Could not get local socket address for connection with %s", c->name);
1028         } else {
1029                 sockaddr_setport(&local_sa, myport.udp);
1030                 c->edge->local_address = local_sa;
1031         }
1032
1033         c->edge->weight = (weight + c->estimated_weight) / 2;
1034         c->edge->connection = c;
1035         c->edge->options = c->options;
1036
1037         edge_add(c->edge);
1038
1039         /* Notify everyone of the new edge */
1040
1041         if(tunnelserver) {
1042                 send_add_edge(c, c->edge);
1043         } else {
1044                 send_add_edge(everyone, c->edge);
1045         }
1046
1047         /* Run MST and SSSP algorithms */
1048
1049         graph();
1050
1051         return true;
1052 }