Allow Cipher and Digest "none".
[tinc] / src / protocol_auth.c
1 /*
2     protocol_auth.c -- handle the meta-protocol, authentication
3     Copyright (C) 1999-2005 Ivo Timmermans,
4                   2000-2014 Guus Sliepen <guus@tinc-vpn.org>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License along
17     with this program; if not, write to the Free Software Foundation, Inc.,
18     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #include "system.h"
22
23 #include "conf.h"
24 #include "connection.h"
25 #include "control.h"
26 #include "control_common.h"
27 #include "cipher.h"
28 #include "crypto.h"
29 #include "device.h"
30 #include "digest.h"
31 #include "ecdsa.h"
32 #include "edge.h"
33 #include "graph.h"
34 #include "logger.h"
35 #include "meta.h"
36 #include "names.h"
37 #include "net.h"
38 #include "netutl.h"
39 #include "node.h"
40 #include "prf.h"
41 #include "protocol.h"
42 #include "rsa.h"
43 #include "script.h"
44 #include "sptps.h"
45 #include "utils.h"
46 #include "xalloc.h"
47
48 ecdsa_t *invitation_key = NULL;
49
50 static bool send_proxyrequest(connection_t *c) {
51         switch(proxytype) {
52                 case PROXY_HTTP: {
53                         char *host;
54                         char *port;
55
56                         sockaddr2str(&c->address, &host, &port);
57                         send_request(c, "CONNECT %s:%s HTTP/1.1\r\n\r", host, port);
58                         free(host);
59                         free(port);
60                         return true;
61                 }
62                 case PROXY_SOCKS4: {
63                         if(c->address.sa.sa_family != AF_INET) {
64                                 logger(DEBUG_ALWAYS, LOG_ERR, "Cannot connect to an IPv6 host through a SOCKS 4 proxy!");
65                                 return false;
66                         }
67                         char s4req[9 + (proxyuser ? strlen(proxyuser) : 0)];
68                         s4req[0] = 4;
69                         s4req[1] = 1;
70                         memcpy(s4req + 2, &c->address.in.sin_port, 2);
71                         memcpy(s4req + 4, &c->address.in.sin_addr, 4);
72                         if(proxyuser)
73                                 memcpy(s4req + 8, proxyuser, strlen(proxyuser));
74                         s4req[sizeof s4req - 1] = 0;
75                         c->tcplen = 8;
76                         return send_meta(c, s4req, sizeof s4req);
77                 }
78                 case PROXY_SOCKS5: {
79                         int len = 3 + 6 + (c->address.sa.sa_family == AF_INET ? 4 : 16);
80                         c->tcplen = 2;
81                         if(proxypass)
82                                 len += 3 + strlen(proxyuser) + strlen(proxypass);
83                         char s5req[len];
84                         int i = 0;
85                         s5req[i++] = 5;
86                         s5req[i++] = 1;
87                         if(proxypass) {
88                                 s5req[i++] = 2;
89                                 s5req[i++] = 1;
90                                 s5req[i++] = strlen(proxyuser);
91                                 memcpy(s5req + i, proxyuser, strlen(proxyuser));
92                                 i += strlen(proxyuser);
93                                 s5req[i++] = strlen(proxypass);
94                                 memcpy(s5req + i, proxypass, strlen(proxypass));
95                                 i += strlen(proxypass);
96                                 c->tcplen += 2;
97                         } else {
98                                 s5req[i++] = 0;
99                         }
100                         s5req[i++] = 5;
101                         s5req[i++] = 1;
102                         s5req[i++] = 0;
103                         if(c->address.sa.sa_family == AF_INET) {
104                                 s5req[i++] = 1;
105                                 memcpy(s5req + i, &c->address.in.sin_addr, 4);
106                                 i += 4;
107                                 memcpy(s5req + i, &c->address.in.sin_port, 2);
108                                 i += 2;
109                                 c->tcplen += 10;
110                         } else if(c->address.sa.sa_family == AF_INET6) {
111                                 s5req[i++] = 3;
112                                 memcpy(s5req + i, &c->address.in6.sin6_addr, 16);
113                                 i += 16;
114                                 memcpy(s5req + i, &c->address.in6.sin6_port, 2);
115                                 i += 2;
116                                 c->tcplen += 22;
117                         } else {
118                                 logger(DEBUG_ALWAYS, LOG_ERR, "Address family %hx not supported for SOCKS 5 proxies!", c->address.sa.sa_family);
119                                 return false;
120                         }
121                         if(i > len)
122                                 abort();
123                         return send_meta(c, s5req, sizeof s5req);
124                 }
125                 case PROXY_SOCKS4A:
126                         logger(DEBUG_ALWAYS, LOG_ERR, "Proxy type not implemented yet");
127                         return false;
128                 case PROXY_EXEC:
129                         return true;
130                 default:
131                         logger(DEBUG_ALWAYS, LOG_ERR, "Unknown proxy type");
132                         return false;
133         }
134 }
135
136 bool send_id(connection_t *c) {
137         gettimeofday(&c->start, NULL);
138
139         int minor = 0;
140
141         if(experimental) {
142                 if(c->outgoing && !read_ecdsa_public_key(c))
143                         minor = 1;
144                 else
145                         minor = myself->connection->protocol_minor;
146         }
147
148         if(proxytype && c->outgoing)
149                 if(!send_proxyrequest(c))
150                         return false;
151
152         return send_request(c, "%d %s %d.%d", ID, myself->connection->name, myself->connection->protocol_major, minor);
153 }
154
155 static bool finalize_invitation(connection_t *c, const char *data, uint16_t len) {
156         if(strchr(data, '\n')) {
157                 logger(DEBUG_ALWAYS, LOG_ERR, "Received invalid key from invited node %s (%s)!\n", c->name, c->hostname);
158                 return false;
159         }
160
161         // Create a new host config file
162         char filename[PATH_MAX];
163         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", confbase, c->name);
164         if(!access(filename, F_OK)) {
165                 logger(DEBUG_ALWAYS, LOG_ERR, "Host config file for %s (%s) already exists!\n", c->name, c->hostname);
166                 return false;
167         }
168
169         FILE *f = fopen(filename, "w");
170         if(!f) {
171                 logger(DEBUG_ALWAYS, LOG_ERR, "Error trying to create %s: %s\n", filename, strerror(errno));
172                 return false;
173         }
174
175         fprintf(f, "Ed25519PublicKey = %s\n", data);
176         fclose(f);
177
178         logger(DEBUG_CONNECTIONS, LOG_INFO, "Key succesfully received from %s (%s)", c->name, c->hostname);
179
180         // Call invitation-accepted script
181         char *envp[7] = {NULL};
182         char *address, *port;
183
184         xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
185         xasprintf(&envp[1], "DEVICE=%s", device ? : "");
186         xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
187         xasprintf(&envp[3], "NODE=%s", c->name);
188         sockaddr2str(&c->address, &address, &port);
189         xasprintf(&envp[4], "REMOTEADDRESS=%s", address);
190         xasprintf(&envp[5], "NAME=%s", myself->name);
191
192         execute_script("invitation-accepted", envp);
193
194         for(int i = 0; envp[i] && i < 7; i++)
195                 free(envp[i]);
196
197         sptps_send_record(&c->sptps, 2, data, 0);
198         return true;
199 }
200
201 static bool receive_invitation_sptps(void *handle, uint8_t type, const 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                         if(!read_ecdsa_public_key(c))
383                                 return false;
384         } else {
385                 if(c->protocol_minor && !ecdsa_active(c->ecdsa))
386                         c->protocol_minor = 1;
387         }
388
389         /* Forbid version rollback for nodes whose Ed25519 key we know */
390
391         if(ecdsa_active(c->ecdsa) && c->protocol_minor < 2) {
392                 logger(DEBUG_ALWAYS, LOG_ERR, "Peer %s (%s) tries to roll back protocol version to %d.%d",
393                         c->name, c->hostname, c->protocol_major, c->protocol_minor);
394                 return false;
395         }
396
397         c->allow_request = METAKEY;
398
399         if(c->protocol_minor >= 2) {
400                 c->allow_request = ACK;
401                 char label[25 + strlen(myself->name) + strlen(c->name)];
402
403                 if(c->outgoing)
404                         snprintf(label, sizeof label, "tinc TCP key expansion %s %s", myself->name, c->name);
405                 else
406                         snprintf(label, sizeof label, "tinc TCP key expansion %s %s", c->name, myself->name);
407
408                 return sptps_start(&c->sptps, c, c->outgoing, false, myself->connection->ecdsa, c->ecdsa, label, sizeof label, send_meta_sptps, receive_meta_sptps);
409         } else {
410                 return send_metakey(c);
411         }
412 }
413
414 bool send_metakey(connection_t *c) {
415         if(!read_rsa_public_key(c))
416                 return false;
417
418         if(!(c->outcipher = cipher_open_blowfish_ofb()))
419                 return false;
420
421         if(!(c->outdigest = digest_open_sha1(-1)))
422                 return false;
423
424         size_t len = rsa_size(c->rsa);
425         char key[len];
426         char enckey[len];
427         char hexkey[2 * len + 1];
428
429         /* Create a random key */
430
431         randomize(key, len);
432
433         /* The message we send must be smaller than the modulus of the RSA key.
434            By definition, for a key of k bits, the following formula holds:
435
436            2^(k-1) <= modulus < 2^(k)
437
438            Where ^ means "to the power of", not "xor".
439            This means that to be sure, we must choose our message < 2^(k-1).
440            This can be done by setting the most significant bit to zero.
441          */
442
443         key[0] &= 0x7F;
444
445         if(!cipher_set_key_from_rsa(c->outcipher, key, len, true))
446                 return false;
447
448         if(debug_level >= DEBUG_SCARY_THINGS) {
449                 bin2hex(key, hexkey, len);
450                 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Generated random meta key (unencrypted): %s", hexkey);
451         }
452
453         /* Encrypt the random data
454
455            We do not use one of the PKCS padding schemes here.
456            This is allowed, because we encrypt a totally random string
457            with a length equal to that of the modulus of the RSA key.
458          */
459
460         if(!rsa_public_encrypt(c->rsa, key, len, enckey)) {
461                 logger(DEBUG_ALWAYS, LOG_ERR, "Error during encryption of meta key for %s (%s)", c->name, c->hostname);
462                 return false;
463         }
464
465         /* Convert the encrypted random data to a hexadecimal formatted string */
466
467         bin2hex(enckey, hexkey, len);
468
469         /* Send the meta key */
470
471         bool result = send_request(c, "%d %d %d %d %d %s", METAKEY,
472                          cipher_get_nid(c->outcipher),
473                          digest_get_nid(c->outdigest), c->outmaclength,
474                          c->outcompression, hexkey);
475
476         c->status.encryptout = true;
477         return result;
478 }
479
480 bool metakey_h(connection_t *c, const char *request) {
481         char hexkey[MAX_STRING_SIZE];
482         int cipher, digest, maclength, compression;
483         size_t len = rsa_size(myself->connection->rsa);
484         char enckey[len];
485         char key[len];
486
487         if(sscanf(request, "%*d %d %d %d %d " MAX_STRING, &cipher, &digest, &maclength, &compression, hexkey) != 5) {
488                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "METAKEY", c->name, c->hostname);
489                 return false;
490         }
491
492         /* Convert the challenge from hexadecimal back to binary */
493
494         int inlen = hex2bin(hexkey, enckey, sizeof enckey);
495
496         /* Check if the length of the meta key is all right */
497
498         if(inlen != len) {
499                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong keylength");
500                 return false;
501         }
502
503         /* Decrypt the meta key */
504
505         if(!rsa_private_decrypt(myself->connection->rsa, enckey, len, key)) {
506                 logger(DEBUG_ALWAYS, LOG_ERR, "Error during decryption of meta key for %s (%s)", c->name, c->hostname);
507                 return false;
508         }
509
510         if(debug_level >= DEBUG_SCARY_THINGS) {
511                 bin2hex(key, hexkey, len);
512                 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Received random meta key (unencrypted): %s", hexkey);
513         }
514
515         /* Check and lookup cipher and digest algorithms */
516
517         if(cipher) {
518                 if(!(c->incipher = cipher_open_by_nid(cipher)) || !cipher_set_key_from_rsa(c->incipher, key, len, false)) {
519                         logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of cipher from %s (%s)", c->name, c->hostname);
520                         return false;
521                 }
522         } else {
523                 c->incipher = NULL;
524         }
525
526         if(digest) {
527                 if(!(c->indigest = digest_open_by_nid(digest, -1))) {
528                         logger(DEBUG_ALWAYS, LOG_ERR, "Error during initialisation of digest from %s (%s)", c->name, c->hostname);
529                         return false;
530                 }
531         } else {
532                 c->indigest = NULL;
533         }
534
535         c->status.decryptin = true;
536
537         c->allow_request = CHALLENGE;
538
539         return send_challenge(c);
540 }
541
542 bool send_challenge(connection_t *c) {
543         size_t len = rsa_size(c->rsa);
544         char buffer[len * 2 + 1];
545
546         if(!c->hischallenge)
547                 c->hischallenge = xrealloc(c->hischallenge, len);
548
549         /* Copy random data to the buffer */
550
551         randomize(c->hischallenge, len);
552
553         /* Convert to hex */
554
555         bin2hex(c->hischallenge, buffer, len);
556
557         /* Send the challenge */
558
559         return send_request(c, "%d %s", CHALLENGE, buffer);
560 }
561
562 bool challenge_h(connection_t *c, const char *request) {
563         char buffer[MAX_STRING_SIZE];
564         size_t len = rsa_size(myself->connection->rsa);
565         size_t digestlen = digest_length(c->indigest);
566         char digest[digestlen];
567
568         if(sscanf(request, "%*d " MAX_STRING, buffer) != 1) {
569                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHALLENGE", c->name, c->hostname);
570                 return false;
571         }
572
573         /* Convert the challenge from hexadecimal back to binary */
574
575         int inlen = hex2bin(buffer, buffer, sizeof buffer);
576
577         /* Check if the length of the challenge is all right */
578
579         if(inlen != len) {
580                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge length");
581                 return false;
582         }
583
584         /* Calculate the hash from the challenge we received */
585
586         if(!digest_create(c->indigest, buffer, len, digest))
587                 return false;
588
589         /* Convert the hash to a hexadecimal formatted string */
590
591         bin2hex(digest, buffer, digestlen);
592
593         /* Send the reply */
594
595         c->allow_request = CHAL_REPLY;
596
597         return send_request(c, "%d %s", CHAL_REPLY, buffer);
598 }
599
600 bool chal_reply_h(connection_t *c, const char *request) {
601         char hishash[MAX_STRING_SIZE];
602
603         if(sscanf(request, "%*d " MAX_STRING, hishash) != 1) {
604                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "CHAL_REPLY", c->name,
605                            c->hostname);
606                 return false;
607         }
608
609         /* Convert the hash to binary format */
610
611         int inlen = hex2bin(hishash, hishash, sizeof hishash);
612
613         /* Check if the length of the hash is all right */
614
615         if(inlen != digest_length(c->outdigest)) {
616                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply length");
617                 return false;
618         }
619
620
621         /* Verify the hash */
622
623         if(!digest_verify(c->outdigest, c->hischallenge, rsa_size(c->rsa), hishash)) {
624                 logger(DEBUG_ALWAYS, LOG_ERR, "Possible intruder %s (%s): %s", c->name, c->hostname, "wrong challenge reply");
625                 return false;
626         }
627
628         /* Identity has now been positively verified.
629            Send an acknowledgement with the rest of the information needed.
630          */
631
632         free(c->hischallenge);
633         c->hischallenge = NULL;
634         c->allow_request = ACK;
635
636         return send_ack(c);
637 }
638
639 static bool send_upgrade(connection_t *c) {
640         /* Special case when protocol_minor is 1: the other end is Ed25519 capable,
641          * but doesn't know our key yet. So send it now. */
642
643         char *pubkey = ecdsa_get_base64_public_key(myself->connection->ecdsa);
644
645         if(!pubkey)
646                 return false;
647
648         bool result = send_request(c, "%d %s", ACK, pubkey);
649         free(pubkey);
650         return result;
651 }
652
653 bool send_ack(connection_t *c) {
654         if(c->protocol_minor == 1)
655                 return send_upgrade(c);
656
657         /* ACK message contains rest of the information the other end needs
658            to create node_t and edge_t structures. */
659
660         struct timeval now;
661         bool choice;
662
663         /* Estimate weight */
664
665         gettimeofday(&now, NULL);
666         c->estimated_weight = (now.tv_sec - c->start.tv_sec) * 1000 + (now.tv_usec - c->start.tv_usec) / 1000;
667
668         /* Check some options */
669
670         if((get_config_bool(lookup_config(c->config_tree, "IndirectData"), &choice) && choice) || myself->options & OPTION_INDIRECT)
671                 c->options |= OPTION_INDIRECT;
672
673         if((get_config_bool(lookup_config(c->config_tree, "TCPOnly"), &choice) && choice) || myself->options & OPTION_TCPONLY)
674                 c->options |= OPTION_TCPONLY | OPTION_INDIRECT;
675
676         if(myself->options & OPTION_PMTU_DISCOVERY)
677                 c->options |= OPTION_PMTU_DISCOVERY;
678
679         choice = myself->options & OPTION_CLAMP_MSS;
680         get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice);
681         if(choice)
682                 c->options |= OPTION_CLAMP_MSS;
683
684         if(!get_config_int(lookup_config(c->config_tree, "Weight"), &c->estimated_weight))
685                 get_config_int(lookup_config(config_tree, "Weight"), &c->estimated_weight);
686
687         return send_request(c, "%d %s %d %x", ACK, myport, c->estimated_weight, (c->options & 0xffffff) | (experimental ? (PROT_MINOR << 24) : 0));
688 }
689
690 static void send_everything(connection_t *c) {
691         /* Send all known subnets and edges */
692
693         if(disablebuggypeers) {
694                 static struct {
695                         vpn_packet_t pkt;
696                         char pad[MAXBUFSIZE - MAXSIZE];
697                 } zeropkt;
698
699                 memset(&zeropkt, 0, sizeof zeropkt);
700                 zeropkt.pkt.len = MAXBUFSIZE;
701                 send_tcppacket(c, &zeropkt.pkt);
702         }
703
704         if(tunnelserver) {
705                 for splay_each(subnet_t, s, myself->subnet_tree)
706                         send_add_subnet(c, s);
707
708                 return;
709         }
710
711         for splay_each(node_t, n, node_tree) {
712                 for splay_each(subnet_t, s, n->subnet_tree)
713                         send_add_subnet(c, s);
714
715                 for splay_each(edge_t, e, n->edge_tree)
716                         send_add_edge(c, e);
717         }
718 }
719
720 static bool upgrade_h(connection_t *c, const char *request) {
721         char pubkey[MAX_STRING_SIZE];
722
723         if(sscanf(request, "%*d " MAX_STRING, pubkey) != 1) {
724                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name, c->hostname);
725                 return false;
726         }
727
728         if(ecdsa_active(c->ecdsa) || read_ecdsa_public_key(c)) {
729                 logger(DEBUG_ALWAYS, LOG_INFO, "Already have Ed25519 public key from %s (%s), not upgrading.", c->name, c->hostname);
730                 return false;
731         }
732
733         logger(DEBUG_ALWAYS, LOG_INFO, "Got Ed25519 public key from %s (%s), upgrading!", c->name, c->hostname);
734         append_config_file(c->name, "Ed25519PublicKey", pubkey);
735         c->allow_request = TERMREQ;
736         return send_termreq(c);
737 }
738
739 bool ack_h(connection_t *c, const char *request) {
740         if(c->protocol_minor == 1)
741                 return upgrade_h(c, request);
742
743         char hisport[MAX_STRING_SIZE];
744         char *hisaddress;
745         int weight, mtu;
746         uint32_t options;
747         node_t *n;
748         bool choice;
749
750         if(sscanf(request, "%*d " MAX_STRING " %d %x", hisport, &weight, &options) != 3) {
751                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ACK", c->name,
752                            c->hostname);
753                 return false;
754         }
755
756         /* Check if we already have a node_t for him */
757
758         n = lookup_node(c->name);
759
760         if(!n) {
761                 n = new_node();
762                 n->name = xstrdup(c->name);
763                 node_add(n);
764         } else {
765                 if(n->connection) {
766                         /* Oh dear, we already have a connection to this node. */
767                         logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Established a second connection with %s (%s), closing old connection", n->connection->name, n->connection->hostname);
768
769                         if(n->connection->outgoing) {
770                                 if(c->outgoing)
771                                         logger(DEBUG_ALWAYS, LOG_WARNING, "Two outgoing connections to the same node!");
772                                 else
773                                         c->outgoing = n->connection->outgoing;
774
775                                 n->connection->outgoing = NULL;
776                         }
777
778                         terminate_connection(n->connection, false);
779                         /* Run graph algorithm to purge key and make sure up/down scripts are rerun with new IP addresses and stuff */
780                         graph();
781                 }
782         }
783
784         n->connection = c;
785         c->node = n;
786         if(!(c->options & options & OPTION_PMTU_DISCOVERY)) {
787                 c->options &= ~OPTION_PMTU_DISCOVERY;
788                 options &= ~OPTION_PMTU_DISCOVERY;
789         }
790         c->options |= options;
791
792         if(get_config_int(lookup_config(c->config_tree, "PMTU"), &mtu) && mtu < n->mtu)
793                 n->mtu = mtu;
794
795         if(get_config_int(lookup_config(config_tree, "PMTU"), &mtu) && mtu < n->mtu)
796                 n->mtu = mtu;
797
798         if(get_config_bool(lookup_config(c->config_tree, "ClampMSS"), &choice)) {
799                 if(choice)
800                         c->options |= OPTION_CLAMP_MSS;
801                 else
802                         c->options &= ~OPTION_CLAMP_MSS;
803         }
804
805         /* Activate this connection */
806
807         c->allow_request = ALL;
808         c->status.active = true;
809
810         logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Connection with %s (%s) activated", c->name,
811                            c->hostname);
812
813         /* Send him everything we know */
814
815         send_everything(c);
816
817         /* Create an edge_t for this connection */
818
819         c->edge = new_edge();
820         c->edge->from = myself;
821         c->edge->to = n;
822         sockaddr2str(&c->address, &hisaddress, NULL);
823         c->edge->address = str2sockaddr(hisaddress, hisport);
824         free(hisaddress);
825         c->edge->weight = (weight + c->estimated_weight) / 2;
826         c->edge->connection = c;
827         c->edge->options = c->options;
828
829         edge_add(c->edge);
830
831         /* Notify everyone of the new edge */
832
833         if(tunnelserver)
834                 send_add_edge(c, c->edge);
835         else
836                 send_add_edge(everyone, c->edge);
837
838         /* Run MST and SSSP algorithms */
839
840         graph();
841
842         return true;
843 }