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