Enforce maximum amount of bytes sent/received on meta-connections.
[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         c->outbudget = cipher_budget(c->outcipher);
440
441         if(!(c->outdigest = digest_open_by_name("sha256", -1)))
442                 return false;
443
444         const size_t len = rsa_size(c->rsa);
445         char key[len];
446         char enckey[len];
447         char hexkey[2 * len + 1];
448
449         /* Create a random key */
450
451         randomize(key, len);
452
453         /* The message we send must be smaller than the modulus of the RSA key.
454            By definition, for a key of k bits, the following formula holds:
455
456            2^(k-1) <= modulus < 2^(k)
457
458            Where ^ means "to the power of", not "xor".
459            This means that to be sure, we must choose our message < 2^(k-1).
460            This can be done by setting the most significant bit to zero.
461          */
462
463         key[0] &= 0x7F;
464
465         if(!cipher_set_key_from_rsa(c->outcipher, key, len, true))
466                 return false;
467
468         if(debug_level >= DEBUG_SCARY_THINGS) {
469                 bin2hex(key, hexkey, len);
470                 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Generated random meta key (unencrypted): %s", hexkey);
471         }
472
473         /* Encrypt the random data
474
475            We do not use one of the PKCS padding schemes here.
476            This is allowed, because we encrypt a totally random string
477            with a length equal to that of the modulus of the RSA key.
478          */
479
480         if(!rsa_public_encrypt(c->rsa, key, len, enckey)) {
481                 logger(DEBUG_ALWAYS, LOG_ERR, "Error during encryption of meta key for %s (%s)", c->name, c->hostname);
482                 return false;
483         }
484
485         /* Convert the encrypted random data to a hexadecimal formatted string */
486
487         bin2hex(enckey, hexkey, len);
488
489         /* Send the meta key */
490
491         bool result = send_request(c, "%d %d %d %d %d %s", METAKEY,
492                          cipher_get_nid(c->outcipher),
493                          digest_get_nid(c->outdigest), c->outmaclength,
494                          c->outcompression, hexkey);
495
496         c->status.encryptout = true;
497         return result;
498 #endif
499 }
500
501 bool metakey_h(connection_t *c, const char *request) {
502 #ifdef DISABLE_LEGACY
503         return false;
504 #else
505         if(!myself->connection->rsa)
506                 return false;
507
508         char hexkey[MAX_STRING_SIZE];
509         int cipher, digest, maclength, compression;
510         const size_t len = rsa_size(myself->connection->rsa);
511         char enckey[len];
512         char key[len];
513
514         if(sscanf(request, "%*d %d %d %d %d " MAX_STRING, &cipher, &digest, &maclength, &compression, hexkey) != 5) {
515                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "METAKEY", c->name, c->hostname);
516                 return false;
517         }
518
519         /* Convert the challenge from hexadecimal back to binary */
520
521         int inlen = hex2bin(hexkey, enckey, sizeof enckey);
522
523         /* Check if the length of the meta key is all right */
524
525         if(inlen != len) {
526                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong keylength");
527                 return false;
528         }
529
530         /* Decrypt the meta key */
531
532         if(!rsa_private_decrypt(myself->connection->rsa, enckey, len, key)) {
533                 logger(DEBUG_ALWAYS, LOG_ERR, "Error during decryption of meta key for %s (%s)", c->name, c->hostname);
534                 return false;
535         }
536
537         if(debug_level >= DEBUG_SCARY_THINGS) {
538                 bin2hex(key, hexkey, len);
539                 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Received random meta key (unencrypted): %s", hexkey);
540         }
541
542         /* Check and lookup cipher and digest algorithms */
543
544         if(cipher) {
545                 if(!(c->incipher = cipher_open_by_nid(cipher)) || !cipher_set_key_from_rsa(c->incipher, key, len, false)) {
546                         logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of cipher from %s (%s)", c->name, c->hostname);
547                         return false;
548                 }
549         } else {
550                 c->incipher = NULL;
551         }
552
553         c->inbudget = cipher_budget(c->incipher);
554
555         if(digest) {
556                 if(!(c->indigest = digest_open_by_nid(digest, -1))) {
557                         logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of digest from %s (%s)", c->name, c->hostname);
558                         return false;
559                 }
560         } else {
561                 c->indigest = NULL;
562         }
563
564         c->status.decryptin = true;
565
566         c->allow_request = CHALLENGE;
567
568         return send_challenge(c);
569 #endif
570 }
571
572 bool send_challenge(connection_t *c) {
573 #ifdef DISABLE_LEGACY
574         return false;
575 #else
576         const size_t len = rsa_size(c->rsa);
577         char buffer[len * 2 + 1];
578
579         if(!c->hischallenge)
580                 c->hischallenge = xrealloc(c->hischallenge, len);
581
582         /* Copy random data to the buffer */
583
584         randomize(c->hischallenge, len);
585
586         /* Convert to hex */
587
588         bin2hex(c->hischallenge, buffer, len);
589
590         /* Send the challenge */
591
592         return send_request(c, "%d %s", CHALLENGE, buffer);
593 #endif
594 }
595
596 bool challenge_h(connection_t *c, const char *request) {
597 #ifdef DISABLE_LEGACY
598         return false;
599 #else
600         if(!myself->connection->rsa)
601                 return false;
602
603         char buffer[MAX_STRING_SIZE];
604         const size_t len = rsa_size(myself->connection->rsa);
605         size_t digestlen = digest_length(c->indigest);
606         char digest[digestlen];
607
608         if(sscanf(request, "%*d " MAX_STRING, buffer) != 1) {
609                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHALLENGE", c->name, c->hostname);
610                 return false;
611         }
612
613         /* Convert the challenge from hexadecimal back to binary */
614
615         int inlen = hex2bin(buffer, buffer, sizeof buffer);
616
617         /* Check if the length of the challenge is all right */
618
619         if(inlen != len) {
620                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge length");
621                 return false;
622         }
623
624         /* Calculate the hash from the challenge we received */
625
626         if(!digest_create(c->indigest, buffer, len, digest))
627                 return false;
628
629         /* Convert the hash to a hexadecimal formatted string */
630
631         bin2hex(digest, buffer, digestlen);
632
633         /* Send the reply */
634
635         c->allow_request = CHAL_REPLY;
636
637         return send_request(c, "%d %s", CHAL_REPLY, buffer);
638 #endif
639 }
640
641 bool chal_reply_h(connection_t *c, const char *request) {
642 #ifdef DISABLE_LEGACY
643         return false;
644 #else
645         char hishash[MAX_STRING_SIZE];
646
647         if(sscanf(request, "%*d " MAX_STRING, hishash) != 1) {
648                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHAL_REPLY", c->name,
649                            c->hostname);
650                 return false;
651         }
652
653         /* Convert the hash to binary format */
654
655         int inlen = hex2bin(hishash, hishash, sizeof hishash);
656
657         /* Check if the length of the hash is all right */
658
659         if(inlen != digest_length(c->outdigest)) {
660                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply length");
661                 return false;
662         }
663
664
665         /* Verify the hash */
666
667         if(!digest_verify(c->outdigest, c->hischallenge, rsa_size(c->rsa), hishash)) {
668                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply");
669                 return false;
670         }
671
672         /* Identity has now been positively verified.
673            Send an acknowledgement with the rest of the information needed.
674          */
675
676         free(c->hischallenge);
677         c->hischallenge = NULL;
678         c->allow_request = ACK;
679
680         return send_ack(c);
681 #endif
682 }
683
684 static bool send_upgrade(connection_t *c) {
685 #ifdef DISABLE_LEGACY
686         return false;
687 #else
688         /* Special case when protocol_minor is 1: the other end is Ed25519 capable,
689          * but doesn't know our key yet. So send it now. */
690
691         char *pubkey = ecdsa_get_base64_public_key(myself->connection->ecdsa);
692
693         if(!pubkey)
694                 return false;
695
696         bool result = send_request(c, "%d %s", ACK, pubkey);
697         free(pubkey);
698         return result;
699 #endif
700 }
701
702 bool send_ack(connection_t *c) {
703         if(c->protocol_minor == 1)
704                 return send_upgrade(c);
705
706         /* ACK message contains rest of the information the other end needs
707            to create node_t and edge_t structures. */
708
709         struct timeval now;
710         bool choice;
711
712         /* Estimate weight */
713
714         gettimeofday(&now, NULL);
715         c->estimated_weight = (now.tv_sec - c->start.tv_sec) * 1000 + (now.tv_usec - c->start.tv_usec) / 1000;
716
717         /* Check some options */
718
719         if((get_config_bool(lookup_config(c->config_tree, "IndirectData"), &choice) && choice) || myself->options & OPTION_INDIRECT)
720                 c->options |= OPTION_INDIRECT;
721
722         if((get_config_bool(lookup_config(c->config_tree, "TCPOnly"), &choice) && choice) || myself->options & OPTION_TCPONLY)
723                 c->options |= OPTION_TCPONLY | OPTION_INDIRECT;
724
725         if(myself->options & OPTION_PMTU_DISCOVERY)
726                 c->options |= OPTION_PMTU_DISCOVERY;
727
728         choice = myself->options & OPTION_CLAMP_MSS;
729         get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice);
730         if(choice)
731                 c->options |= OPTION_CLAMP_MSS;
732
733         if(!get_config_int(lookup_config(c->config_tree, "Weight"), &c->estimated_weight))
734                 get_config_int(lookup_config(config_tree, "Weight"), &c->estimated_weight);
735
736         return send_request(c, "%d %s %d %x", ACK, myport, c->estimated_weight, (c->options & 0xffffff) | (experimental ? (PROT_MINOR << 24) : 0));
737 }
738
739 static void send_everything(connection_t *c) {
740         /* Send all known subnets and edges */
741
742         if(disablebuggypeers) {
743                 static struct {
744                         vpn_packet_t pkt;
745                         char pad[MAXBUFSIZE - MAXSIZE];
746                 } zeropkt;
747
748                 memset(&zeropkt, 0, sizeof zeropkt);
749                 zeropkt.pkt.len = MAXBUFSIZE;
750                 send_tcppacket(c, &zeropkt.pkt);
751         }
752
753         if(tunnelserver) {
754                 for splay_each(subnet_t, s, myself->subnet_tree)
755                         send_add_subnet(c, s);
756
757                 return;
758         }
759
760         for splay_each(node_t, n, node_tree) {
761                 for splay_each(subnet_t, s, n->subnet_tree)
762                         send_add_subnet(c, s);
763
764                 for splay_each(edge_t, e, n->edge_tree)
765                         send_add_edge(c, e);
766         }
767 }
768
769 static bool upgrade_h(connection_t *c, const char *request) {
770         char pubkey[MAX_STRING_SIZE];
771
772         if(sscanf(request, "%*d " MAX_STRING, pubkey) != 1) {
773                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name, c->hostname);
774                 return false;
775         }
776
777         if(ecdsa_active(c->ecdsa) || read_ecdsa_public_key(c)) {
778                 char *knownkey = ecdsa_get_base64_public_key(c->ecdsa);
779                 bool different = strcmp(knownkey, pubkey);
780                 free(knownkey);
781                 if(different) {
782                         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);
783                         return false;
784                 }
785                 logger(DEBUG_ALWAYS, LOG_INFO, "Already have Ed25519 public key from %s (%s), ignoring.", c->name, c->hostname);
786                 c->allow_request = TERMREQ;
787                 return send_termreq(c);
788         }
789
790         c->ecdsa = ecdsa_set_base64_public_key(pubkey);
791         if(!c->ecdsa) {
792                 logger(DEBUG_ALWAYS, LOG_INFO, "Got bad Ed25519 public key from %s (%s), not upgrading.", c->name, c->hostname);
793                 return false;
794         }
795
796         logger(DEBUG_ALWAYS, LOG_INFO, "Got Ed25519 public key from %s (%s), upgrading!", c->name, c->hostname);
797         append_config_file(c->name, "Ed25519PublicKey", pubkey);
798         c->allow_request = TERMREQ;
799         if(c->outgoing)
800                 c->outgoing->timeout = 0;
801         return send_termreq(c);
802 }
803
804 bool ack_h(connection_t *c, const char *request) {
805         if(c->protocol_minor == 1)
806                 return upgrade_h(c, request);
807
808         char hisport[MAX_STRING_SIZE];
809         int weight, mtu;
810         uint32_t options;
811         node_t *n;
812         bool choice;
813
814         if(sscanf(request, "%*d " MAX_STRING " %d %x", hisport, &weight, &options) != 3) {
815                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name,
816                            c->hostname);
817                 return false;
818         }
819
820         /* Check if we already have a node_t for him */
821
822         n = lookup_node(c->name);
823
824         if(!n) {
825                 n = new_node();
826                 n->name = xstrdup(c->name);
827                 node_add(n);
828         } else {
829                 if(n->connection) {
830                         /* Oh dear, we already have a connection to this node. */
831                         logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Established a second connection with %s (%s), closing old connection", n->connection->name, n->connection->hostname);
832
833                         if(n->connection->outgoing) {
834                                 if(c->outgoing)
835                                         logger(DEBUG_ALWAYS, LOG_WARNING, "Two outgoing connections to the same node!");
836                                 else
837                                         c->outgoing = n->connection->outgoing;
838
839                                 n->connection->outgoing = NULL;
840                         }
841
842                         terminate_connection(n->connection, false);
843                         /* Run graph algorithm to purge key and make sure up/down scripts are rerun with new IP addresses and stuff */
844                         graph();
845                 }
846         }
847
848         n->connection = c;
849         c->node = n;
850         if(!(c->options & options & OPTION_PMTU_DISCOVERY)) {
851                 c->options &= ~OPTION_PMTU_DISCOVERY;
852                 options &= ~OPTION_PMTU_DISCOVERY;
853         }
854         c->options |= options;
855
856         if(get_config_int(lookup_config(c->config_tree, "PMTU"), &mtu) && mtu < n->mtu)
857                 n->mtu = mtu;
858
859         if(get_config_int(lookup_config(config_tree, "PMTU"), &mtu) && mtu < n->mtu)
860                 n->mtu = mtu;
861
862         if(get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice)) {
863                 if(choice)
864                         c->options |= OPTION_CLAMP_MSS;
865                 else
866                         c->options &= ~OPTION_CLAMP_MSS;
867         }
868
869         /* Activate this connection */
870
871         c->allow_request = ALL;
872
873         logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Connection with %s (%s) activated", c->name,
874                            c->hostname);
875
876         /* Send him everything we know */
877
878         send_everything(c);
879
880         /* Create an edge_t for this connection */
881
882         c->edge = new_edge();
883         c->edge->from = myself;
884         c->edge->to = n;
885         sockaddrcpy(&c->edge->address, &c->address);
886         sockaddr_setport(&c->edge->address, hisport);
887         sockaddr_t local_sa;
888         socklen_t local_salen = sizeof local_sa;
889         if (getsockname(c->socket, &local_sa.sa, &local_salen) < 0)
890                 logger(DEBUG_ALWAYS, LOG_WARNING, "Could not get local socket address for connection with %s", c->name);
891         else
892                 sockaddr_setport(&local_sa, myport);
893         c->edge->weight = (weight + c->estimated_weight) / 2;
894         c->edge->connection = c;
895         c->edge->options = c->options;
896
897         edge_add(c->edge);
898
899         /* Notify everyone of the new edge */
900
901         if(tunnelserver)
902                 send_add_edge(c, c->edge);
903         else
904                 send_add_edge(everyone, c->edge);
905
906         /* Run MST and SSSP algorithms */
907
908         graph();
909
910         return true;
911 }