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