500f2434b77e150a0d2f566e2fa89e6693d13380
[tinc] / src / invitation.c
1 /*
2     invitation.c -- Create and accept invitations
3     Copyright (C) 2013-2017 Guus Sliepen <guus@tinc-vpn.org>
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 "control_common.h"
23 #include "crypto.h"
24 #include "ecdsa.h"
25 #include "ecdsagen.h"
26 #include "ifconfig.h"
27 #include "invitation.h"
28 #include "names.h"
29 #include "netutl.h"
30 #include "rsagen.h"
31 #include "script.h"
32 #include "sptps.h"
33 #include "subnet.h"
34 #include "tincctl.h"
35 #include "utils.h"
36 #include "xalloc.h"
37
38 #include "ed25519/sha512.h"
39
40 int addressfamily = AF_UNSPEC;
41
42 static void scan_for_hostname(const char *filename, char **hostname, char **port) {
43         if(!filename || (*hostname && *port)) {
44                 return;
45         }
46
47         FILE *f = fopen(filename, "r");
48
49         if(!f) {
50                 return;
51         }
52
53         while(fgets(line, sizeof(line), f)) {
54                 if(!rstrip(line)) {
55                         continue;
56                 }
57
58                 char *p = line, *q;
59                 p += strcspn(p, "\t =");
60
61                 if(!*p) {
62                         continue;
63                 }
64
65                 q = p + strspn(p, "\t ");
66
67                 if(*q == '=') {
68                         q += 1 + strspn(q + 1, "\t ");
69                 }
70
71                 *p = 0;
72                 p = q + strcspn(q, "\t ");
73
74                 if(*p) {
75                         *p++ = 0;
76                 }
77
78                 p += strspn(p, "\t ");
79                 p[strcspn(p, "\t ")] = 0;
80
81                 if(!*port && !strcasecmp(line, "Port")) {
82                         *port = xstrdup(q);
83                 } else if(!*hostname && !strcasecmp(line, "Address")) {
84                         *hostname = xstrdup(q);
85
86                         if(*p) {
87                                 free(*port);
88                                 *port = xstrdup(p);
89                         }
90                 }
91
92                 if(*hostname && *port) {
93                         break;
94                 }
95         }
96
97         fclose(f);
98 }
99
100 char *get_my_hostname() {
101         char *hostname = NULL;
102         char *port = NULL;
103         char *hostport = NULL;
104         char *name = get_my_name(false);
105         char filename[PATH_MAX] = {0};
106
107         // Use first Address statement in own host config file
108         if(check_id(name)) {
109                 snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", confbase, name);
110                 scan_for_hostname(filename, &hostname, &port);
111                 scan_for_hostname(tinc_conf, &hostname, &port);
112         }
113
114         if(hostname) {
115                 goto done;
116         }
117
118         // If that doesn't work, guess externally visible hostname
119         fprintf(stderr, "Trying to discover externally visible hostname...\n");
120         struct addrinfo *ai = str2addrinfo("tinc-vpn.org", "80", SOCK_STREAM);
121         struct addrinfo *aip = ai;
122         static const char request[] = "GET http://tinc-vpn.org/host.cgi HTTP/1.0\r\n\r\n";
123
124         while(aip) {
125                 int s = socket(aip->ai_family, aip->ai_socktype, aip->ai_protocol);
126
127                 if(s >= 0) {
128                         if(connect(s, aip->ai_addr, aip->ai_addrlen)) {
129                                 closesocket(s);
130                                 s = -1;
131                         }
132                 }
133
134                 if(s >= 0) {
135                         send(s, request, sizeof(request) - 1, 0);
136                         int len = recv(s, line, sizeof(line) - 1, MSG_WAITALL);
137
138                         if(len > 0) {
139                                 line[len] = 0;
140
141                                 if(line[len - 1] == '\n') {
142                                         line[--len] = 0;
143                                 }
144
145                                 char *p = strrchr(line, '\n');
146
147                                 if(p && p[1]) {
148                                         hostname = xstrdup(p + 1);
149                                 }
150                         }
151
152                         closesocket(s);
153
154                         if(hostname) {
155                                 break;
156                         }
157                 }
158
159                 aip = aip->ai_next;
160                 continue;
161         }
162
163         if(ai) {
164                 freeaddrinfo(ai);
165         }
166
167         // Check that the hostname is reasonable
168         if(hostname) {
169                 for(char *p = hostname; *p; p++) {
170                         if(isalnum(*p) || *p == '-' || *p == '.' || *p == ':') {
171                                 continue;
172                         }
173
174                         // If not, forget it.
175                         free(hostname);
176                         hostname = NULL;
177                         break;
178                 }
179         }
180
181         if(!tty) {
182                 if(!hostname) {
183                         fprintf(stderr, "Could not determine the external address or hostname. Please set Address manually.\n");
184                         free(port);
185                         return NULL;
186                 }
187
188                 goto save;
189         }
190
191 again:
192         fprintf(stderr, "Please enter your host's external address or hostname");
193
194         if(hostname) {
195                 fprintf(stderr, " [%s]", hostname);
196         }
197
198         fprintf(stderr, ": ");
199
200         if(!fgets(line, sizeof(line), stdin)) {
201                 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
202                 free(hostname);
203                 free(port);
204                 return NULL;
205         }
206
207         if(!rstrip(line)) {
208                 if(hostname) {
209                         goto save;
210                 } else {
211                         goto again;
212                 }
213         }
214
215         for(char *p = line; *p; p++) {
216                 if(isalnum(*p) || *p == '-' || *p == '.') {
217                         continue;
218                 }
219
220                 fprintf(stderr, "Invalid address or hostname.\n");
221                 goto again;
222         }
223
224         free(hostname);
225         hostname = xstrdup(line);
226
227 save:
228
229         if(*filename) {
230                 FILE *f = fopen(filename, "a");
231
232                 if(f) {
233                         fprintf(f, "\nAddress = %s\n", hostname);
234                         fclose(f);
235                 } else {
236                         fprintf(stderr, "Could not append Address to %s: %s\n", filename, strerror(errno));
237                 }
238         }
239
240 done:
241
242         if(port) {
243                 if(strchr(hostname, ':')) {
244                         xasprintf(&hostport, "[%s]:%s", hostname, port);
245                 } else {
246                         xasprintf(&hostport, "%s:%s", hostname, port);
247                 }
248         } else {
249                 if(strchr(hostname, ':')) {
250                         xasprintf(&hostport, "[%s]", hostname);
251                 } else {
252                         hostport = xstrdup(hostname);
253                 }
254         }
255
256         free(hostname);
257         free(port);
258         return hostport;
259 }
260
261 static bool fcopy(FILE *out, const char *filename) {
262         FILE *in = fopen(filename, "r");
263
264         if(!in) {
265                 fprintf(stderr, "Could not open %s: %s\n", filename, strerror(errno));
266                 return false;
267         }
268
269         char buf[1024];
270         size_t len;
271
272         while((len = fread(buf, 1, sizeof(buf), in))) {
273                 fwrite(buf, len, 1, out);
274         }
275
276         fclose(in);
277         return true;
278 }
279
280 int cmd_invite(int argc, char *argv[]) {
281         if(argc < 2) {
282                 fprintf(stderr, "Not enough arguments!\n");
283                 return 1;
284         }
285
286         // Check validity of the new node's name
287         if(!check_id(argv[1])) {
288                 fprintf(stderr, "Invalid name for node.\n");
289                 return 1;
290         }
291
292         myname = get_my_name(true);
293
294         if(!myname) {
295                 return 1;
296         }
297
298         // Ensure no host configuration file with that name exists
299         char filename[PATH_MAX];
300         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", confbase, argv[1]);
301
302         if(!access(filename, F_OK)) {
303                 fprintf(stderr, "A host config file for %s already exists!\n", argv[1]);
304                 return 1;
305         }
306
307         // If a daemon is running, ensure no other nodes know about this name
308         if(connect_tincd(false)) {
309                 bool found = false;
310                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
311
312                 while(recvline(fd, line, sizeof(line))) {
313                         char node[4096];
314                         int code, req;
315
316                         if(sscanf(line, "%d %d %4095s", &code, &req, node) != 3) {
317                                 break;
318                         }
319
320                         if(!strcmp(node, argv[1])) {
321                                 found = true;
322                         }
323                 }
324
325                 if(found) {
326                         fprintf(stderr, "A node with name %s is already known!\n", argv[1]);
327                         return 1;
328                 }
329         }
330
331         snprintf(filename, sizeof(filename), "%s" SLASH "invitations", confbase);
332
333         if(mkdir(filename, 0700) && errno != EEXIST) {
334                 fprintf(stderr, "Could not create directory %s: %s\n", filename, strerror(errno));
335                 return 1;
336         }
337
338         // Count the number of valid invitations, clean up old ones
339         DIR *dir = opendir(filename);
340
341         if(!dir) {
342                 fprintf(stderr, "Could not read directory %s: %s\n", filename, strerror(errno));
343                 return 1;
344         }
345
346         errno = 0;
347         int count = 0;
348         struct dirent *ent;
349         time_t deadline = time(NULL) - 604800; // 1 week in the past
350
351         while((ent = readdir(dir))) {
352                 if(strlen(ent->d_name) != 24) {
353                         continue;
354                 }
355
356                 char invname[PATH_MAX];
357                 struct stat st;
358
359                 if((size_t)snprintf(invname, sizeof(invname), "%s" SLASH "%s", filename, ent->d_name) >= sizeof(invname)) {
360                         fprintf(stderr, "Filename too long: %s" SLASH "%s\n", filename, ent->d_name);
361                         continue;
362                 }
363
364                 if(!stat(invname, &st)) {
365                         if(deadline < st.st_mtime) {
366                                 count++;
367                         } else {
368                                 unlink(invname);
369                         }
370                 } else {
371                         fprintf(stderr, "Could not stat %s: %s\n", invname, strerror(errno));
372                         errno = 0;
373                 }
374         }
375
376         closedir(dir);
377
378         if(errno) {
379                 fprintf(stderr, "Error while reading directory %s: %s\n", filename, strerror(errno));
380                 return 1;
381         }
382
383         ecdsa_t *key;
384         snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "ed25519_key.priv", confbase);
385
386         // Remove the key if there are no outstanding invitations.
387         if(!count) {
388                 unlink(filename);
389         }
390
391         // Create a new key if necessary.
392         FILE *f = fopen(filename, "r");
393
394         if(!f) {
395                 if(errno != ENOENT) {
396                         fprintf(stderr, "Could not read %s: %s\n", filename, strerror(errno));
397                         return 1;
398                 }
399
400                 key = ecdsa_generate();
401
402                 if(!key) {
403                         return 1;
404                 }
405
406                 f = fopen(filename, "w");
407
408                 if(!f) {
409                         fprintf(stderr, "Could not write %s: %s\n", filename, strerror(errno));
410                         return 1;
411                 }
412
413                 chmod(filename, 0600);
414
415                 if(!ecdsa_write_pem_private_key(key, f)) {
416                         fprintf(stderr, "Could not write ECDSA private key\n");
417                         fclose(f);
418                         return 1;
419                 }
420
421                 fclose(f);
422
423                 if(connect_tincd(true)) {
424                         sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
425                 } else {
426                         fprintf(stderr, "Could not signal the tinc daemon. Please restart or reload it manually.\n");
427                 }
428         } else {
429                 key = ecdsa_read_pem_private_key(f);
430                 fclose(f);
431
432                 if(!key) {
433                         fprintf(stderr, "Could not read private key from %s\n", filename);
434                 }
435         }
436
437         if(!key) {
438                 return 1;
439         }
440
441         // Create a hash of the key.
442         char hash[64];
443         char *fingerprint = ecdsa_get_base64_public_key(key);
444         sha512(fingerprint, strlen(fingerprint), hash);
445         b64encode_urlsafe(hash, hash, 18);
446
447         // Create a random cookie for this invitation.
448         char cookie[25];
449         randomize(cookie, 18);
450
451         // Create a filename that doesn't reveal the cookie itself
452         char buf[18 + strlen(fingerprint)];
453         char cookiehash[64];
454         memcpy(buf, cookie, 18);
455         memcpy(buf + 18, fingerprint, sizeof(buf) - 18);
456         sha512(buf, sizeof(buf), cookiehash);
457         b64encode_urlsafe(cookiehash, cookiehash, 18);
458
459         b64encode_urlsafe(cookie, cookie, 18);
460
461         // Create a file containing the details of the invitation.
462         snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "%s", confbase, cookiehash);
463         int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
464
465         if(!ifd) {
466                 fprintf(stderr, "Could not create invitation file %s: %s\n", filename, strerror(errno));
467                 return 1;
468         }
469
470         f = fdopen(ifd, "w");
471
472         if(!f) {
473                 abort();
474         }
475
476         // Get the local address
477         char *address = get_my_hostname();
478
479         // Fill in the details.
480         fprintf(f, "Name = %s\n", argv[1]);
481
482         if(check_netname(netname, true)) {
483                 fprintf(f, "NetName = %s\n", netname);
484         }
485
486         fprintf(f, "ConnectTo = %s\n", myname);
487
488         // Copy Broadcast and Mode
489         FILE *tc = fopen(tinc_conf, "r");
490
491         if(tc) {
492                 char buf[1024];
493
494                 while(fgets(buf, sizeof(buf), tc)) {
495                         if((!strncasecmp(buf, "Mode", 4) && strchr(" \t=", buf[4]))
496                                         || (!strncasecmp(buf, "Broadcast", 9) && strchr(" \t=", buf[9]))) {
497                                 fputs(buf, f);
498
499                                 // Make sure there is a newline character.
500                                 if(!strchr(buf, '\n')) {
501                                         fputc('\n', f);
502                                 }
503                         }
504                 }
505
506                 fclose(tc);
507         }
508
509         fprintf(f, "#---------------------------------------------------------------#\n");
510         fprintf(f, "Name = %s\n", myname);
511
512         char filename2[PATH_MAX];
513         snprintf(filename2, sizeof(filename2), "%s" SLASH "hosts" SLASH "%s", confbase, myname);
514         fcopy(f, filename2);
515         fclose(f);
516
517         // Create an URL from the local address, key hash and cookie
518         char *url;
519         xasprintf(&url, "%s/%s%s", address, hash, cookie);
520
521         // Call the inviation-created script
522         environment_t env;
523         environment_init(&env);
524         environment_add(&env, "NODE=%s", argv[1]);
525         environment_add(&env, "INVITATION_FILE=%s", filename);
526         environment_add(&env, "INVITATION_URL=%s", url);
527         execute_script("invitation-created", &env);
528         environment_exit(&env);
529
530         puts(url);
531         free(url);
532         free(address);
533
534         return 0;
535 }
536
537 static int sock;
538 static char cookie[18];
539 static sptps_t sptps;
540 static char *data;
541 static size_t datalen;
542 static bool success = false;
543
544 static char cookie[18], hash[18];
545
546 static char *get_line(const char **data) {
547         if(!data || !*data) {
548                 return NULL;
549         }
550
551         if(! **data) {
552                 *data = NULL;
553                 return NULL;
554         }
555
556         static char line[1024];
557         const char *end = strchr(*data, '\n');
558         size_t len = end ? (size_t)(end - *data) : strlen(*data);
559
560         if(len >= sizeof(line)) {
561                 fprintf(stderr, "Maximum line length exceeded!\n");
562                 return NULL;
563         }
564
565         if(len && !isprint(**data)) {
566                 abort();
567         }
568
569         memcpy(line, *data, len);
570         line[len] = 0;
571
572         if(end) {
573                 *data = end + 1;
574         } else {
575                 *data = NULL;
576         }
577
578         return line;
579 }
580
581 static char *get_value(const char *data, const char *var) {
582         char *line = get_line(&data);
583
584         if(!line) {
585                 return NULL;
586         }
587
588         char *sep = line + strcspn(line, " \t=");
589         char *val = sep + strspn(sep, " \t");
590
591         if(*val == '=') {
592                 val += 1 + strspn(val + 1, " \t");
593         }
594
595         *sep = 0;
596
597         if(strcasecmp(line, var)) {
598                 return NULL;
599         }
600
601         return val;
602 }
603
604 static char *grep(const char *data, const char *var) {
605         static char value[1024];
606
607         const char *p = data;
608         int varlen = strlen(var);
609
610         // Skip all lines not starting with var
611         while(strncasecmp(p, var, varlen) || !strchr(" \t=", p[varlen])) {
612                 p = strchr(p, '\n');
613
614                 if(!p) {
615                         break;
616                 } else {
617                         p++;
618                 }
619         }
620
621         if(!p) {
622                 return NULL;
623         }
624
625         p += varlen;
626         p += strspn(p, " \t");
627
628         if(*p == '=') {
629                 p += 1 + strspn(p + 1, " \t");
630         }
631
632         const char *e = strchr(p, '\n');
633
634         if(!e) {
635                 return xstrdup(p);
636         }
637
638         if((size_t)(e - p) >= sizeof(value)) {
639                 fprintf(stderr, "Maximum line length exceeded!\n");
640                 return NULL;
641         }
642
643         memcpy(value, p, e - p);
644         value[e - p] = 0;
645         return value;
646 }
647
648 static bool finalize_join(void) {
649         const char *temp_name = get_value(data, "Name");
650
651         if(!temp_name) {
652                 fprintf(stderr, "No Name found in invitation!\n");
653                 return false;
654         }
655
656         size_t len = strlen(temp_name);
657         char name[len + 1];
658         memcpy(name, temp_name, len);
659         name[len] = 0;
660
661         if(!check_id(name)) {
662                 fprintf(stderr, "Invalid Name found in invitation!\n");
663                 return false;
664         }
665
666         if(!netname) {
667                 netname = grep(data, "NetName");
668
669                 if(netname && !check_netname(netname, true)) {
670                         fprintf(stderr, "Unsafe NetName found in invitation!\n");
671                         return false;
672                 }
673         }
674
675         bool ask_netname = false;
676         char temp_netname[32];
677
678 make_names:
679
680         if(!confbasegiven) {
681                 free(confbase);
682                 confbase = NULL;
683         }
684
685         make_names(false);
686
687         free(tinc_conf);
688         free(hosts_dir);
689
690         xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
691         xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
692
693         if(!access(tinc_conf, F_OK)) {
694                 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
695
696                 if(confbasegiven) {
697                         return false;
698                 }
699
700                 // Generate a random netname, ask for a better one later.
701                 ask_netname = true;
702                 snprintf(temp_netname, sizeof(temp_netname), "join_%x", rand());
703                 netname = temp_netname;
704                 goto make_names;
705         }
706
707         if(mkdir(confbase, 0777) && errno != EEXIST) {
708                 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
709                 return false;
710         }
711
712         if(mkdir(hosts_dir, 0777) && errno != EEXIST) {
713                 fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
714                 return false;
715         }
716
717         FILE *f = fopen(tinc_conf, "w");
718
719         if(!f) {
720                 fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
721                 return false;
722         }
723
724         fprintf(f, "Name = %s\n", name);
725
726         char filename[PATH_MAX];
727         snprintf(filename, sizeof(filename), "%s" SLASH "%s", hosts_dir, name);
728         FILE *fh = fopen(filename, "w");
729
730         if(!fh) {
731                 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
732                 fclose(f);
733                 return false;
734         }
735
736         snprintf(filename, sizeof(filename), "%s" SLASH "invitation-data", confbase);
737         FILE *finv = fopen(filename, "w");
738
739         if(!finv || fwrite(data, datalen, 1, finv) != 1) {
740                 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
741                 fclose(fh);
742                 fclose(f);
743                 fclose(finv);
744                 return false;
745         }
746
747         fclose(finv);
748
749         snprintf(filename, sizeof(filename), "%s" SLASH "tinc-up.invitation", confbase);
750         FILE *fup = fopen(filename, "w");
751
752         if(!fup) {
753                 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
754                 fclose(f);
755                 fclose(fh);
756                 return false;
757         }
758
759         ifconfig_header(fup);
760
761         // Filter first chunk on approved keywords, split between tinc.conf and hosts/Name
762         // Generate a tinc-up script from Ifconfig and Route keywords.
763         // Other chunks go unfiltered to their respective host config files
764         const char *p = data;
765         char *l, *value;
766
767         while((l = get_line(&p))) {
768                 // Ignore comments
769                 if(*l == '#') {
770                         continue;
771                 }
772
773                 // Split line into variable and value
774                 int len = strcspn(l, "\t =");
775                 value = l + len;
776                 value += strspn(value, "\t ");
777
778                 if(*value == '=') {
779                         value++;
780                         value += strspn(value, "\t ");
781                 }
782
783                 l[len] = 0;
784
785                 // Ignore lines with empty variable names
786                 if(!*l) {
787                         continue;
788                 }
789
790                 // Is it a Name?
791                 if(!strcasecmp(l, "Name")) {
792                         if(strcmp(value, name)) {
793                                 break;
794                         } else {
795                                 continue;
796                         }
797                 } else if(!strcasecmp(l, "NetName")) {
798                         continue;
799                 }
800
801                 // Check the list of known variables
802                 bool found = false;
803                 int i;
804
805                 for(i = 0; variables[i].name; i++) {
806                         if(strcasecmp(l, variables[i].name)) {
807                                 continue;
808                         }
809
810                         found = true;
811                         break;
812                 }
813
814                 // Handle Ifconfig and Route statements
815                 if(!found) {
816                         if(!strcasecmp(l, "Ifconfig")) {
817                                 if(!strcasecmp(value, "dhcp")) {
818                                         ifconfig_dhcp(fup);
819                                 } else if(!strcasecmp(value, "dhcp6")) {
820                                         ifconfig_dhcp6(fup);
821                                 } else if(!strcasecmp(value, "slaac")) {
822                                         ifconfig_slaac(fup);
823                                 } else {
824                                         ifconfig_address(fup, value);
825                                 }
826
827                                 continue;
828                         } else if(!strcasecmp(l, "Route")) {
829                                 ifconfig_route(fup, value);
830                                 continue;
831                         }
832                 }
833
834                 // Ignore unknown and unsafe variables
835                 if(!found) {
836                         fprintf(stderr, "Ignoring unknown variable '%s' in invitation.\n", l);
837                         continue;
838                 } else if(!(variables[i].type & VAR_SAFE)) {
839                         fprintf(stderr, "Ignoring unsafe variable '%s' in invitation.\n", l);
840                         continue;
841                 }
842
843                 // Copy the safe variable to the right config file
844                 fprintf((variables[i].type & VAR_HOST) ? fh : f, "%s = %s\n", l, value);
845         }
846
847         fclose(f);
848         bool valid_tinc_up = ifconfig_footer(fup);
849         fclose(fup);
850
851         while(l && !strcasecmp(l, "Name")) {
852                 if(!check_id(value)) {
853                         fprintf(stderr, "Invalid Name found in invitation.\n");
854                         return false;
855                 }
856
857                 if(!strcmp(value, name)) {
858                         fprintf(stderr, "Secondary chunk would overwrite our own host config file.\n");
859                         return false;
860                 }
861
862                 snprintf(filename, sizeof(filename), "%s" SLASH "%s", hosts_dir, value);
863                 f = fopen(filename, "w");
864
865                 if(!f) {
866                         fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
867                         return false;
868                 }
869
870                 while((l = get_line(&p))) {
871                         if(!strcmp(l, "#---------------------------------------------------------------#")) {
872                                 continue;
873                         }
874
875                         int len = strcspn(l, "\t =");
876
877                         if(len == 4 && !strncasecmp(l, "Name", 4)) {
878                                 value = l + len;
879                                 value += strspn(value, "\t ");
880
881                                 if(*value == '=') {
882                                         value++;
883                                         value += strspn(value, "\t ");
884                                 }
885
886                                 l[len] = 0;
887                                 break;
888                         }
889
890                         fputs(l, f);
891                         fputc('\n', f);
892                 }
893
894                 fclose(f);
895         }
896
897         // Generate our key and send a copy to the server
898         ecdsa_t *key = ecdsa_generate();
899
900         if(!key) {
901                 return false;
902         }
903
904         char *b64key = ecdsa_get_base64_public_key(key);
905
906         if(!b64key) {
907                 return false;
908         }
909
910         snprintf(filename, sizeof(filename), "%s" SLASH "ed25519_key.priv", confbase);
911         f = fopenmask(filename, "w", 0600);
912
913         if(!f) {
914                 return false;
915         }
916
917         if(!ecdsa_write_pem_private_key(key, f)) {
918                 fprintf(stderr, "Error writing private key!\n");
919                 ecdsa_free(key);
920                 fclose(f);
921                 return false;
922         }
923
924         fclose(f);
925
926         fprintf(fh, "Ed25519PublicKey = %s\n", b64key);
927
928         sptps_send_record(&sptps, 1, b64key, strlen(b64key));
929         free(b64key);
930         ecdsa_free(key);
931
932 #ifndef DISABLE_LEGACY
933         rsa_t *rsa = rsa_generate(2048, 0x1001);
934         snprintf(filename, sizeof(filename), "%s" SLASH "rsa_key.priv", confbase);
935         f = fopenmask(filename, "w", 0600);
936
937         if(!f || !rsa_write_pem_private_key(rsa, f)) {
938                 fprintf(stderr, "Could not write private RSA key\n");
939         } else if(!rsa_write_pem_public_key(rsa, fh)) {
940                 fprintf(stderr, "Could not write public RSA key\n");
941         }
942
943         fclose(f);
944
945         fclose(fh);
946
947         rsa_free(rsa);
948 #endif
949
950         check_port(name);
951
952 ask_netname:
953
954         if(ask_netname && tty) {
955                 fprintf(stderr, "Enter a new netname: ");
956
957                 if(!fgets(line, sizeof(line), stdin)) {
958                         fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
959                         return false;
960                 }
961
962                 if(!*line || *line == '\n') {
963                         goto ask_netname;
964                 }
965
966                 line[strlen(line) - 1] = 0;
967
968                 char newbase[PATH_MAX];
969
970                 if((size_t)snprintf(newbase, sizeof(newbase), CONFDIR SLASH "tinc" SLASH "%s", line) >= sizeof(newbase)) {
971                         fprintf(stderr, "Filename too long: " CONFDIR SLASH "tinc" SLASH "%s\n", line);
972                         goto ask_netname;
973                 }
974
975                 if(rename(confbase, newbase)) {
976                         fprintf(stderr, "Error trying to rename %s to %s: %s\n", confbase, newbase, strerror(errno));
977                         goto ask_netname;
978                 }
979
980                 netname = line;
981                 make_names(false);
982         }
983
984         char filename2[PATH_MAX];
985         snprintf(filename, sizeof(filename), "%s" SLASH "tinc-up.invitation", confbase);
986         snprintf(filename2, sizeof(filename2), "%s" SLASH "tinc-up", confbase);
987
988         if(valid_tinc_up) {
989                 if(tty) {
990                         FILE *fup = fopen(filename, "r");
991
992                         if(fup) {
993                                 fprintf(stderr, "\nPlease review the following tinc-up script:\n\n");
994
995                                 char buf[MAXSIZE];
996
997                                 while(fgets(buf, sizeof(buf), fup)) {
998                                         fputs(buf, stderr);
999                                 }
1000
1001                                 fclose(fup);
1002
1003                                 int response = 0;
1004
1005                                 do {
1006                                         fprintf(stderr, "\nDo you want to use this script [y]es/[n]o/[e]dit? ");
1007                                         response = tolower(getchar());
1008                                 } while(!strchr("yne", response));
1009
1010                                 fprintf(stderr, "\n");
1011
1012                                 if(response == 'e') {
1013                                         char *command;
1014 #ifndef HAVE_MINGW
1015                                         const char *editor = getenv("VISUAL");
1016                                         if (!editor)
1017                                                 editor = getenv("EDITOR");
1018                                         if (!editor)
1019                                                 editor = "vi";
1020
1021                                         xasprintf(&command, "\"%s\" \"%s\"", editor, filename);
1022 #else
1023                                         xasprintf(&command, "edit \"%s\"", filename);
1024 #endif
1025
1026                                         if(system(command)) {
1027                                                 response = 'n';
1028                                         } else {
1029                                                 response = 'y';
1030                                         }
1031
1032                                         free(command);
1033                                 }
1034
1035                                 if(response == 'y') {
1036                                         rename(filename, filename2);
1037                                         chmod(filename2, 0755);
1038                                         fprintf(stderr, "tinc-up enabled.\n");
1039                                 } else {
1040                                         fprintf(stderr, "tinc-up has been left disabled.\n");
1041                                 }
1042                         }
1043                 } else {
1044                         fprintf(stderr, "A tinc-up script was generated, but has been left disabled.\n");
1045                 }
1046         } else {
1047                 // A placeholder was generated.
1048                 rename(filename, filename2);
1049                 chmod(filename2, 0755);
1050         }
1051
1052         fprintf(stderr, "Configuration stored in: %s\n", confbase);
1053
1054         return true;
1055 }
1056
1057
1058 static bool invitation_send(void *handle, uint8_t type, const void *vdata, size_t len) {
1059         (void)handle;
1060         (void)type;
1061         const char *data = vdata;
1062
1063         while(len) {
1064                 int result = send(sock, data, len, 0);
1065
1066                 if(result == -1 && errno == EINTR) {
1067                         continue;
1068                 } else if(result <= 0) {
1069                         return false;
1070                 }
1071
1072                 data += result;
1073                 len -= result;
1074         }
1075
1076         return true;
1077 }
1078
1079 static bool invitation_receive(void *handle, uint8_t type, const void *msg, uint16_t len) {
1080         (void)handle;
1081
1082         switch(type) {
1083         case SPTPS_HANDSHAKE:
1084                 return sptps_send_record(&sptps, 0, cookie, sizeof(cookie));
1085
1086         case 0:
1087                 data = xrealloc(data, datalen + len + 1);
1088                 memcpy(data + datalen, msg, len);
1089                 datalen += len;
1090                 data[datalen] = 0;
1091                 break;
1092
1093         case 1:
1094                 return finalize_join();
1095
1096         case 2:
1097                 fprintf(stderr, "Invitation successfully accepted.\n");
1098                 shutdown(sock, SHUT_RDWR);
1099                 success = true;
1100                 break;
1101
1102         default:
1103                 return false;
1104         }
1105
1106         return true;
1107 }
1108
1109 int cmd_join(int argc, char *argv[]) {
1110         free(data);
1111         data = NULL;
1112         datalen = 0;
1113
1114         if(argc > 2) {
1115                 fprintf(stderr, "Too many arguments!\n");
1116                 return 1;
1117         }
1118
1119         // Make sure confbase exists and is accessible.
1120         if(!confbase_given && mkdir(confdir, 0755) && errno != EEXIST) {
1121                 fprintf(stderr, "Could not create directory %s: %s\n", confdir, strerror(errno));
1122                 return 1;
1123         }
1124
1125         if(mkdir(confbase, 0777) && errno != EEXIST) {
1126                 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
1127                 return 1;
1128         }
1129
1130         if(access(confbase, R_OK | W_OK | X_OK)) {
1131                 fprintf(stderr, "No permission to write in directory %s: %s\n", confbase, strerror(errno));
1132                 return 1;
1133         }
1134
1135         // If a netname or explicit configuration directory is specified, check for an existing tinc.conf.
1136         if((netname || confbasegiven) && !access(tinc_conf, F_OK)) {
1137                 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
1138                 return 1;
1139         }
1140
1141         // Either read the invitation from the command line or from stdin.
1142         char *invitation;
1143
1144         if(argc > 1) {
1145                 invitation = argv[1];
1146         } else {
1147                 if(tty) {
1148                         fprintf(stderr, "Enter invitation URL: ");
1149                 }
1150
1151                 errno = EPIPE;
1152
1153                 if(!fgets(line, sizeof(line), stdin)) {
1154                         fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
1155                         return false;
1156                 }
1157
1158                 invitation = line;
1159         }
1160
1161         // Parse the invitation URL.
1162         rstrip(line);
1163
1164         char *slash = strchr(invitation, '/');
1165
1166         if(!slash) {
1167                 goto invalid;
1168         }
1169
1170         *slash++ = 0;
1171
1172         if(strlen(slash) != 48) {
1173                 goto invalid;
1174         }
1175
1176         char *address = invitation;
1177         char *port = NULL;
1178
1179         if(*address == '[') {
1180                 address++;
1181                 char *bracket = strchr(address, ']');
1182
1183                 if(!bracket) {
1184                         goto invalid;
1185                 }
1186
1187                 *bracket = 0;
1188
1189                 if(bracket[1] == ':') {
1190                         port = bracket + 2;
1191                 }
1192         } else {
1193                 port = strchr(address, ':');
1194
1195                 if(port) {
1196                         *port++ = 0;
1197                 }
1198         }
1199
1200         if(!port || !*port) {
1201                 port = "655";
1202         }
1203
1204         if(!b64decode(slash, hash, 24) || !b64decode(slash + 24, cookie, 24)) {
1205                 goto invalid;
1206         }
1207
1208         // Generate a throw-away key for the invitation.
1209         ecdsa_t *key = ecdsa_generate();
1210
1211         if(!key) {
1212                 return 1;
1213         }
1214
1215         char *b64key = ecdsa_get_base64_public_key(key);
1216
1217         // Connect to the tinc daemon mentioned in the URL.
1218         struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
1219
1220         if(!ai) {
1221                 return 1;
1222         }
1223
1224         struct addrinfo *aip = NULL;
1225
1226 next:
1227         if(!aip) {
1228                 aip = ai;
1229         } else {
1230                 aip = aip->ai_next;
1231
1232                 if(!aip) {
1233                         freeaddrinfo(ai);
1234                         return 1;
1235                 }
1236         }
1237
1238         sock = socket(aip->ai_family, aip->ai_socktype, aip->ai_protocol);
1239
1240         if(sock <= 0) {
1241                 fprintf(stderr, "Could not open socket: %s\n", strerror(errno));
1242                 goto next;
1243         }
1244
1245         if(connect(sock, aip->ai_addr, aip->ai_addrlen)) {
1246                 char *addrstr, *portstr;
1247                 sockaddr2str((sockaddr_t *)aip->ai_addr, &addrstr, &portstr);
1248                 fprintf(stderr, "Could not connect to %s port %s: %s\n", addrstr, portstr, strerror(errno));
1249                 free(addrstr);
1250                 free(portstr);
1251                 closesocket(sock);
1252                 goto next;
1253         }
1254
1255         fprintf(stderr, "Connected to %s port %s...\n", address, port);
1256
1257         // Tell him we have an invitation, and give him our throw-away key.
1258         int len = snprintf(line, sizeof(line), "0 ?%s %d.%d\n", b64key, PROT_MAJOR, PROT_MINOR);
1259
1260         if(len <= 0 || (size_t)len >= sizeof(line)) {
1261                 abort();
1262         }
1263
1264         if(!sendline(sock, "0 ?%s %d.%d", b64key, PROT_MAJOR, 1)) {
1265                 fprintf(stderr, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
1266                 closesocket(sock);
1267                 goto next;
1268         }
1269
1270         char hisname[4096] = "";
1271         int code, hismajor, hisminor = 0;
1272
1273         if(!recvline(sock, line, sizeof(line)) || sscanf(line, "%d %4095s %d.%d", &code, hisname, &hismajor, &hisminor) < 3 || code != 0 || hismajor != PROT_MAJOR || !check_id(hisname) || !recvline(sock, line, sizeof(line)) || !rstrip(line) || sscanf(line, "%d ", &code) != 1 || code != ACK || strlen(line) < 3) {
1274                 fprintf(stderr, "Cannot read greeting from peer\n");
1275                 closesocket(sock);
1276                 goto next;
1277         }
1278
1279         freeaddrinfo(ai);
1280
1281         // Check if the hash of the key he gave us matches the hash in the URL.
1282         char *fingerprint = line + 2;
1283         char hishash[64];
1284
1285         if(sha512(fingerprint, strlen(fingerprint), hishash)) {
1286                 fprintf(stderr, "Could not create digest\n%s\n", line + 2);
1287                 return 1;
1288         }
1289
1290         if(memcmp(hishash, hash, 18)) {
1291                 fprintf(stderr, "Peer has an invalid key!\n%s\n", line + 2);
1292                 return 1;
1293
1294         }
1295
1296         ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
1297
1298         if(!hiskey) {
1299                 return 1;
1300         }
1301
1302         // Start an SPTPS session
1303         if(!sptps_start(&sptps, NULL, true, false, key, hiskey, "tinc invitation", 15, invitation_send, invitation_receive)) {
1304                 return 1;
1305         }
1306
1307         // Feed rest of input buffer to SPTPS
1308         if(!sptps_receive_data(&sptps, buffer, blen)) {
1309                 return 1;
1310         }
1311
1312         while((len = recv(sock, line, sizeof(line), 0))) {
1313                 if(len < 0) {
1314                         if(errno == EINTR) {
1315                                 continue;
1316                         }
1317
1318                         fprintf(stderr, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
1319                         return 1;
1320                 }
1321
1322                 char *p = line;
1323
1324                 while(len) {
1325                         int done = sptps_receive_data(&sptps, p, len);
1326
1327                         if(!done) {
1328                                 return 1;
1329                         }
1330
1331                         len -= done;
1332                         p += done;
1333                 }
1334         }
1335
1336         sptps_stop(&sptps);
1337         ecdsa_free(hiskey);
1338         ecdsa_free(key);
1339         closesocket(sock);
1340
1341         if(!success) {
1342                 fprintf(stderr, "Connection closed by peer, invitation cancelled.\n");
1343                 return 1;
1344         }
1345
1346         return 0;
1347
1348 invalid:
1349         fprintf(stderr, "Invalid invitation URL.\n");
1350         return 1;
1351 }