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