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