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