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