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