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