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