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