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