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