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