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