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