Execute scripts when invitations are created or accepted.
[tinc] / src / invitation.c
1 /*
2     invitation.c -- Create and accept invitations
3     Copyright (C) 2013 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 "invitation.h"
27 #include "names.h"
28 #include "netutl.h"
29 #include "rsagen.h"
30 #include "sptps.h"
31 #include "tincctl.h"
32 #include "utils.h"
33 #include "xalloc.h"
34
35 int addressfamily = AF_UNSPEC;
36
37 char *get_my_hostname() {
38         char *hostname = NULL;
39         char *port = NULL;
40         char *hostport = NULL;
41         char *name = get_my_name(false);
42         char *filename = NULL;
43
44         // Use first Address statement in own host config file
45         if(check_id(name)) {
46                 xasprintf(&filename, "%s" SLASH "hosts" SLASH "%s", confbase, name);
47                 FILE *f = fopen(filename, "r");
48                 if(f) {
49                         while(fgets(line, sizeof line, f)) {
50                                 if(!rstrip(line))
51                                         continue;
52                                 char *p = line, *q;
53                                 p += strcspn(p, "\t =");
54                                 if(!*p)
55                                         continue;
56                                 q = p + strspn(p, "\t ");
57                                 if(*q == '=')
58                                         q += 1 + strspn(q + 1, "\t ");
59                                 *p = 0;
60                                 p = q + strcspn(q, "\t ");
61                                 if(*p)
62                                         *p++ = 0;
63                                 p += strspn(p, "\t ");
64                                 p[strcspn(p, "\t ")] = 0;
65                                 if(!port && !strcasecmp(line, "Port")) {
66                                         port = xstrdup(q);
67                                         continue;
68                                 }
69                                 if(strcasecmp(line, "Address"))
70                                         continue;
71                                 hostname = xstrdup(q);
72                                 if(*p) {
73                                         free(port);
74                                         port = xstrdup(p);
75                                 }
76                                 break;
77                         }
78                         fclose(f);
79                 }
80         }
81
82         if(hostname)
83                 goto done;
84
85         // If that doesn't work, guess externally visible hostname
86         fprintf(stderr, "Trying to discover externally visible hostname...\n");
87         struct addrinfo *ai = str2addrinfo("tinc-vpn.org", "80", SOCK_STREAM);
88         struct addrinfo *aip = ai;
89         static const char request[] = "GET http://tinc-vpn.org/host.cgi HTTP/1.0\r\n\r\n";
90
91         while(aip) {
92                 int s = socket(aip->ai_family, aip->ai_socktype, aip->ai_protocol);
93                 if(s >= 0) {
94                         if(connect(s, aip->ai_addr, aip->ai_addrlen)) {
95                                 closesocket(s);
96                                 s = -1;
97                         }
98                 }
99                 if(s >= 0) {
100                         send(s, request, sizeof request - 1, 0);
101                         int len = recv(s, line, sizeof line - 1, MSG_WAITALL);
102                         if(len > 0) {
103                                 line[len] = 0;
104                                 if(line[len - 1] == '\n')
105                                         line[--len] = 0;
106                                 char *p = strrchr(line, '\n');
107                                 if(p && p[1])
108                                         hostname = xstrdup(p + 1);
109                         }
110                         closesocket(s);
111                         if(hostname)
112                                 break;
113                 }
114                 aip = aip->ai_next;
115                 continue;
116         }
117
118         if(ai)
119                 freeaddrinfo(ai);
120
121         // Check that the hostname is reasonable
122         if(hostname) {
123                 for(char *p = hostname; *p; p++) {
124                         if(isalnum(*p) || *p == '-' || *p == '.' || *p == ':')
125                                 continue;
126                         // If not, forget it.
127                         free(hostname);
128                         hostname = NULL;
129                         break;
130                 }
131         }
132
133 again:
134         printf("Please enter your host's external address or hostname");
135         if(hostname)
136                 printf(" [%s]", hostname);
137         printf(": ");
138         fflush(stdout);
139
140         if(!fgets(line, sizeof line, stdin)) {
141                 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
142                 free(hostname);
143                 return NULL;
144         }
145
146         if(!rstrip(line)) {
147                 if(hostname)
148                         goto save;
149                 else
150                         goto again;
151         }
152
153         for(char *p = line; *p; p++) {
154                 if(isalnum(*p) || *p == '-' || *p == '.')
155                         continue;
156                 fprintf(stderr, "Invalid address or hostname.\n");
157                 goto again;
158         }
159
160         free(hostname);
161         hostname = xstrdup(line);
162
163 save:
164         if(filename) {
165                 FILE *f = fopen(filename, "a");
166                 if(f) {
167                         fprintf(f, "\nAddress = %s\n", hostname);
168                         fclose(f);
169                 } else {
170                         fprintf(stderr, "Could not append Address to %s: %s\n", filename, strerror(errno));
171                 }
172         }
173
174 done:
175         if(port) {
176                 if(strchr(hostname, ':'))
177                         xasprintf(&hostport, "[%s]:%s", hostname, port);
178                 else
179                         xasprintf(&hostport, "%s:%s", hostname, port);
180         } else {
181                 hostport = hostname;
182                 hostname = NULL;
183         }
184
185         free(hostname);
186         free(port);
187         free(filename);
188         return hostport;
189 }
190
191 static bool fcopy(FILE *out, const char *filename) {
192         FILE *in = fopen(filename, "r");
193         if(!in) {
194                 fprintf(stderr, "Could not open %s: %s\n", filename, strerror(errno));
195                 return false;
196         }
197
198         char buf[1024];
199         size_t len;
200         while((len = fread(buf, 1, sizeof buf, in)))
201                 fwrite(buf, len, 1, out);
202         fclose(in);
203         return true;
204 }
205
206 int cmd_invite(int argc, char *argv[]) {
207         if(argc < 2) {
208                 fprintf(stderr, "Not enough arguments!\n");
209                 return 1;
210         }
211
212         // Check validity of the new node's name
213         if(!check_id(argv[1])) {
214                 fprintf(stderr, "Invalid name for node.\n");
215                 return 1;
216         }
217
218         char *myname = get_my_name(true);
219         if(!myname)
220                 return 1;
221
222         // Ensure no host configuration file with that name exists
223         char *filename = NULL;
224         xasprintf(&filename, "%s" SLASH "hosts" SLASH "%s", confbase, argv[1]);
225         if(!access(filename, F_OK)) {
226                 free(filename);
227                 fprintf(stderr, "A host config file for %s already exists!\n", argv[1]);
228                 return 1;
229         }
230         free(filename);
231
232         // If a daemon is running, ensure no other nodes now about this name
233         bool found = false;
234         if(connect_tincd(false)) {
235                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
236
237                 while(recvline(fd, line, sizeof line)) {
238                         char node[4096];
239                         int code, req;
240                         if(sscanf(line, "%d %d %s", &code, &req, node) != 3)
241                                 break;
242                         if(!strcmp(node, argv[1]))
243                                 found = true;
244                 }
245
246                 if(found) {
247                         fprintf(stderr, "A node with name %s is already known!\n", argv[1]);
248                         return 1;
249                 }
250         }
251
252         char hash[25];
253
254         xasprintf(&filename, "%s" SLASH "invitations", confbase);
255         if(mkdir(filename, 0700) && errno != EEXIST) {
256                 fprintf(stderr, "Could not create directory %s: %s\n", filename, strerror(errno));
257                 free(filename);
258                 return 1;
259         }
260
261         // Count the number of valid invitations, clean up old ones
262         DIR *dir = opendir(filename);
263         if(!dir) {
264                 fprintf(stderr, "Could not read directory %s: %s\n", filename, strerror(errno));
265                 free(filename);
266                 return 1;
267         }
268
269         errno = 0;
270         int count = 0;
271         struct dirent *ent;
272         time_t deadline = time(NULL) - 604800; // 1 week in the past
273
274         while((ent = readdir(dir))) {
275                 if(strlen(ent->d_name) != 24)
276                         continue;
277                 char *invname;
278                 struct stat st;
279                 xasprintf(&invname, "%s" SLASH "%s", filename, ent->d_name);
280                 if(!stat(invname, &st)) {
281                         if(deadline < st.st_mtime)
282                                 count++;
283                         else
284                                 unlink(invname);
285                 } else {
286                         fprintf(stderr, "Could not stat %s: %s\n", invname, strerror(errno));
287                         errno = 0;
288                 }
289                 free(invname);
290         }
291
292         if(errno) {
293                 fprintf(stderr, "Error while reading directory %s: %s\n", filename, strerror(errno));
294                 closedir(dir);
295                 free(filename);
296                 return 1;
297         }
298                 
299         closedir(dir);
300         free(filename);
301
302         ecdsa_t *key;
303         xasprintf(&filename, "%s" SLASH "invitations" SLASH "ecdsa_key.priv", confbase);
304
305         // Remove the key if there are no outstanding invitations.
306         if(!count)
307                 unlink(filename);
308
309         // Create a new key if necessary.
310         FILE *f = fopen(filename, "r");
311         if(!f) {
312                 if(errno != ENOENT) {
313                         fprintf(stderr, "Could not read %s: %s\n", filename, strerror(errno));
314                         free(filename);
315                         return 1;
316                 }
317
318                 key = ecdsa_generate();
319                 if(!key) {
320                         free(filename);
321                         return 1;
322                 }
323                 f = fopen(filename, "w");
324                 if(!f) {
325                         fprintf(stderr, "Could not write %s: %s\n", filename, strerror(errno));
326                         free(filename);
327                         return 1;
328                 }
329                 chmod(filename, 0600);
330                 ecdsa_write_pem_private_key(key, f);
331         } else {
332                 key = ecdsa_read_pem_private_key(f);
333                 if(!key)
334                         fprintf(stderr, "Could not read private key from %s\n", filename);
335         }
336         fclose(f);
337         free(filename);
338         if(!key)
339                 return 1;
340
341         // Create a hash of the key.
342         char *fingerprint = ecdsa_get_base64_public_key(key);
343         digest_t *digest = digest_open_by_name("sha256", 18);
344         if(!digest)
345                 abort();
346         digest_create(digest, fingerprint, strlen(fingerprint), hash);
347         b64encode_urlsafe(hash, hash, 18);
348
349         // Create a random cookie for this invitation.
350         char cookie[25];
351         randomize(cookie, 18);
352
353         // Create a filename that doesn't reveal the cookie itself
354         char buf[18 + strlen(fingerprint)];
355         char cookiehash[25];
356         memcpy(buf, cookie, 18);
357         memcpy(buf + 18, fingerprint, sizeof buf - 18);
358         digest_create(digest, buf, sizeof buf, cookiehash);
359         b64encode_urlsafe(cookiehash, cookiehash, 18);
360
361         b64encode_urlsafe(cookie, cookie, 18);
362
363         // Create a file containing the details of the invitation.
364         xasprintf(&filename, "%s" SLASH "invitations" SLASH "%s", confbase, cookiehash);
365         int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
366         if(!ifd) {
367                 fprintf(stderr, "Could not create invitation file %s: %s\n", filename, strerror(errno));
368                 free(filename);
369                 return 1;
370         }
371         f = fdopen(ifd, "w");
372         if(!f)
373                 abort();
374
375         // Get the local address
376         char *address = get_my_hostname();
377
378         // Fill in the details.
379         fprintf(f, "Name = %s\n", argv[1]);
380         if(netname)
381                 fprintf(f, "NetName = %s\n", netname);
382         fprintf(f, "ConnectTo = %s\n", myname);
383         // TODO: copy Broadcast and Mode
384         fprintf(f, "#---------------------------------------------------------------#\n");
385         fprintf(f, "Name = %s\n", myname);
386
387         char *filename2;
388         xasprintf(&filename2, "%s" SLASH "hosts" SLASH "%s", confbase, myname);
389         fcopy(f, filename2);
390         fclose(f);
391         free(filename2);
392
393         // Create an URL from the local address, key hash and cookie
394         char *url;
395         xasprintf(&url, "%s/%s%s", address, hash, cookie);
396
397         // Call the inviation-created script
398         setenv("NAME", myname, true);
399         setenv("NETNAME", netname, true);
400         setenv("NODE", argv[1], true);
401         setenv("INVITATION_FILE", filename, true);
402         setenv("INVITATION_URL", url, true);
403         char *scriptname;
404         xasprintf(&scriptname, "\"%s" SLASH "invitation-created\"", confbase);
405         system(scriptname);
406         free(scriptname);
407         unsetenv("NODE");
408         unsetenv("INVITATION");
409
410         puts(url);
411         free(url);
412         free(filename);
413         free(address);
414
415         return 0;
416 }
417
418 static int sock;
419 static char cookie[18];
420 static sptps_t sptps;
421 static char *data;
422 static size_t datalen;
423 static bool success = false;
424
425 static char cookie[18], hash[18];
426
427 static char *get_line(const char **data) {
428         if(!data || !*data)
429                 return NULL;
430
431         if(!**data) {
432                 *data = NULL;
433                 return NULL;
434         }
435
436         static char line[1024];
437         const char *end = strchr(*data, '\n');
438         size_t len = end ? end - *data : strlen(*data);
439         if(len >= sizeof line) {
440                 fprintf(stderr, "Maximum line length exceeded!\n");
441                 return NULL;
442         }
443         if(len && !isprint(**data))
444                 abort();
445
446         memcpy(line, *data, len);
447         line[len] = 0;
448
449         if(end)
450                 *data = end + 1;
451         else
452                 *data = NULL;
453
454         return line;
455 }
456
457 static char *get_value(const char *data, const char *var) {
458         char *line = get_line(&data);
459         if(!line)
460                 return NULL;
461
462         char *sep = line + strcspn(line, " \t=");
463         char *val = sep + strspn(sep, " \t");
464         if(*val == '=')
465                 val += 1 + strspn(val + 1, " \t");
466         *sep = 0;
467         if(strcasecmp(line, var))
468                 return NULL;
469         return val;
470 }
471
472 static char *grep(const char *data, const char *var) {
473         static char value[1024];
474
475         const char *p = data;
476         int varlen = strlen(var);
477
478         // Skip all lines not starting with var
479         while(strncasecmp(p, var, varlen) || !strchr(" \t=", p[varlen])) {
480                 p = strchr(p, '\n');
481                 if(!p)
482                         break;
483                 else
484                         p++;
485         }
486
487         if(!p)
488                 return NULL;
489
490         p += varlen;
491         p += strspn(p, " \t");
492         if(*p == '=')
493                 p += 1 + strspn(p + 1, " \t");
494
495         const char *e = strchr(p, '\n');
496         if(!e)
497                 return xstrdup(p);
498
499         if(e - p >= sizeof value) {
500                 fprintf(stderr, "Maximum line length exceeded!\n");
501                 return NULL;
502         }
503
504         memcpy(value, p, e - p);
505         value[e - p] = 0;
506         return value;
507 }
508
509 static bool finalize_join(void) {
510         char *name = xstrdup(get_value(data, "Name"));
511         if(!name) {
512                 fprintf(stderr, "No Name found in invitation!\n");
513                 return false;
514         }
515
516         if(!check_id(name)) {
517                 fprintf(stderr, "Invalid Name found in invitation: %s!\n", name);
518                 return false;
519         }
520
521         if(!netname)
522                 netname = grep(data, "NetName");
523
524         bool ask_netname = false;
525         char temp_netname[32];
526
527 make_names:
528         if(!confbasegiven) {
529                 free(confbase);
530                 confbase = NULL;
531         }
532
533         make_names();
534
535         free(tinc_conf);
536         free(hosts_dir);
537
538         xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
539         xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
540
541         if(!access(tinc_conf, F_OK)) {
542                 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
543                 if(!tty || confbasegiven)
544                         return false;
545
546                 // Generate a random netname, ask for a better one later.
547                 ask_netname = true;
548                 snprintf(temp_netname, sizeof temp_netname, "join_%x", rand());
549                 netname = temp_netname;
550                 goto make_names;
551         }       
552
553         if(mkdir(confbase, 0777) && errno != EEXIST) {
554                 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
555                 return false;
556         }
557
558         if(mkdir(hosts_dir, 0777) && errno != EEXIST) {
559                 fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
560                 return false;
561         }
562
563         FILE *f = fopen(tinc_conf, "w");
564         if(!f) {
565                 fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
566                 return false;
567         }
568
569         fprintf(f, "Name = %s\n", name);
570
571         char *filename;
572         xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
573         FILE *fh = fopen(filename, "w");
574         if(!fh) {
575                 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
576                 return false;
577         }
578
579         // Filter first chunk on approved keywords, split between tinc.conf and hosts/Name
580         // Other chunks go unfiltered to their respective host config files
581         const char *p = data;
582         char *l, *value;
583
584         while((l = get_line(&p))) {
585                 // Ignore comments
586                 if(*l == '#')
587                         continue;
588
589                 // Split line into variable and value
590                 int len = strcspn(l, "\t =");
591                 value = l + len;
592                 value += strspn(value, "\t ");
593                 if(*value == '=') {
594                         value++;
595                         value += strspn(value, "\t ");
596                 }
597                 l[len] = 0;
598
599                 // Is it a Name?
600                 if(!strcasecmp(l, "Name"))
601                         if(strcmp(value, name))
602                                 break;
603                         else
604                                 continue;
605                 else if(!strcasecmp(l, "NetName"))
606                         continue;
607
608                 // Check the list of known variables
609                 bool found = false;
610                 int i;
611                 for(i = 0; variables[i].name; i++) {
612                         if(strcasecmp(l, variables[i].name))
613                                 continue;
614                         found = true;
615                         break;
616                 }
617
618                 // Ignore unknown and unsafe variables
619                 if(!found) {
620                         fprintf(stderr, "Ignoring unknown variable '%s' in invitation.\n", l);
621                         continue;
622                 } else if(!(variables[i].type & VAR_SAFE)) {
623                         fprintf(stderr, "Ignoring unsafe variable '%s' in invitation.\n", l);
624                         continue;
625                 }
626
627                 // Copy the safe variable to the right config file
628                 fprintf(variables[i].type & VAR_HOST ? fh : f, "%s = %s\n", l, value);
629         }
630
631         fclose(f);
632         free(filename);
633
634         while(l && !strcasecmp(l, "Name")) {
635                 if(!check_id(value)) {
636                         fprintf(stderr, "Invalid Name found in invitation.\n");
637                         return false;
638                 }
639
640                 if(!strcmp(value, name)) {
641                         fprintf(stderr, "Secondary chunk would overwrite our own host config file.\n");
642                         return false;
643                 }
644
645                 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, value);
646                 f = fopen(filename, "w");
647
648                 if(!f) {
649                         fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
650                         return false;
651                 }
652
653                 while((l = get_line(&p))) {
654                         if(!strcmp(l, "#---------------------------------------------------------------#"))
655                                 continue;
656                         int len = strcspn(l, "\t =");
657                         if(len == 4 && !strncasecmp(l, "Name", 4)) {
658                                 value = l + len;
659                                 value += strspn(value, "\t ");
660                                 if(*value == '=') {
661                                         value++;
662                                         value += strspn(value, "\t ");
663                                 }
664                                 l[len] = 0;
665                                 break;
666                         }
667
668                         fputs(l, f);
669                         fputc('\n', f);
670                 }
671
672                 fclose(f);
673                 free(filename);
674         }
675
676         // Generate our key and send a copy to the server
677         ecdsa_t *key = ecdsa_generate();
678         if(!key)
679                 return false;
680
681         char *b64key = ecdsa_get_base64_public_key(key);
682         if(!b64key)
683                 return false;
684
685         xasprintf(&filename, "%s" SLASH "ecdsa_key.priv", confbase);
686         f = fopenmask(filename, "w", 0600);
687
688         if(!ecdsa_write_pem_private_key(key, f)) {
689                 fprintf(stderr, "Error writing private key!\n");
690                 ecdsa_free(key);
691                 fclose(f);
692                 return false;
693         }
694
695         fclose(f);
696
697         fprintf(fh, "ECDSAPublicKey = %s\n", b64key);
698
699         sptps_send_record(&sptps, 1, b64key, strlen(b64key));
700         free(b64key);
701
702
703         rsa_t *rsa = rsa_generate(2048, 0x1001);
704         xasprintf(&filename, "%s" SLASH "rsa_key.priv", confbase);
705         f = fopenmask(filename, "w", 0600);
706
707         rsa_write_pem_private_key(rsa, f);
708         fclose(f);
709
710         rsa_write_pem_public_key(rsa, fh);
711         fclose(fh);
712
713         ecdsa_free(key);
714         rsa_free(rsa);
715
716         check_port(name);
717
718 ask_netname:
719         if(ask_netname) {
720                 fprintf(stderr, "Enter a new netname: ");
721                 if(!fgets(line, sizeof line, stdin)) {
722                         fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
723                         return false;
724                 }
725                 if(!*line || *line == '\n')
726                         goto ask_netname;
727
728                 line[strlen(line) - 1] = 0;
729
730                 char *newbase;
731                 xasprintf(&newbase, CONFDIR SLASH "tinc" SLASH "%s", line);
732                 if(rename(confbase, newbase)) {
733                         fprintf(stderr, "Error trying to rename %s to %s: %s\n", confbase, newbase, strerror(errno));
734                         free(newbase);
735                         goto ask_netname;
736                 }
737
738                 free(newbase);
739                 netname = line;
740                 make_names();
741         }
742
743         return true;
744 }
745
746
747 static bool invitation_send(void *handle, uint8_t type, const char *data, size_t len) {
748         while(len) {
749                 int result = send(sock, data, len, 0);
750                 if(result == -1 && errno == EINTR)
751                         continue;
752                 else if(result <= 0)
753                         return false;
754                 data += result;
755                 len -= result;
756         }
757         return true;
758 }
759
760 static bool invitation_receive(void *handle, uint8_t type, const char *msg, uint16_t len) {
761         switch(type) {
762                 case SPTPS_HANDSHAKE:
763                         return sptps_send_record(&sptps, 0, cookie, sizeof cookie);
764
765                 case 0:
766                         data = xrealloc(data, datalen + len + 1);
767                         memcpy(data + datalen, msg, len);
768                         datalen += len;
769                         data[datalen] = 0;
770                         break;
771
772                 case 1:
773                         return finalize_join();
774
775                 case 2:
776                         fprintf(stderr, "Invitation succesfully accepted.\n");
777                         shutdown(sock, SHUT_RDWR);
778                         success = true;
779                         break;
780
781                 default:
782                         return false;
783         }
784
785         return true;
786 }
787
788 int cmd_join(int argc, char *argv[]) {
789         free(data);
790         data = NULL;
791         datalen = 0;
792
793         if(argc > 2) {
794                 fprintf(stderr, "Too many arguments!\n");
795                 return 1;
796         }
797
798         // Make sure confbase exists and is accessible.
799         if(strcmp(confdir, confbase) && mkdir(confdir, 0755) && errno != EEXIST) {
800                 fprintf(stderr, "Could not create directory %s: %s\n", confdir, strerror(errno));
801                 return 1;
802         }
803
804         if(mkdir(confbase, 0777) && errno != EEXIST) {
805                 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
806                 return 1;
807         }
808
809         if(access(confbase, R_OK | W_OK | X_OK)) {
810                 fprintf(stderr, "No permission to write in directory %s: %s\n", confbase, strerror(errno));
811                 return 1;
812         }
813
814         // If a netname or explicit configuration directory is specified, check for an existing tinc.conf.
815         if((netname || confbasegiven) && !access(tinc_conf, F_OK)) {
816                 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
817                 return 1;
818         }
819
820         // Either read the invitation from the command line or from stdin.
821         char *invitation;
822
823         if(argc > 1) {
824                 invitation = argv[1];
825         } else {
826                 if(tty) {
827                         printf("Enter invitation URL: ");
828                         fflush(stdout);
829                 }
830                 errno = EPIPE;
831                 if(!fgets(line, sizeof line, stdin)) {
832                         fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
833                         return false;
834                 }
835                 invitation = line;
836         }
837
838         // Parse the invitation URL.
839         rstrip(line);
840
841         char *slash = strchr(invitation, '/');
842         if(!slash)
843                 goto invalid;
844
845         *slash++ = 0;
846
847         if(strlen(slash) != 48)
848                 goto invalid;
849
850         char *address = invitation;
851         char *port = NULL;
852         if(*address == '[') {
853                 address++;
854                 char *bracket = strchr(address, ']');
855                 if(!bracket)
856                         goto invalid;
857                 *bracket = 0;
858                 if(bracket[1] == ':')
859                         port = bracket + 2;
860         } else {
861                 port = strchr(address, ':');
862                 if(port)
863                         *port++ = 0;
864         }
865
866         if(!port || !*port)
867                 port = "655";
868
869         if(!b64decode(slash, hash, 18) || !b64decode(slash + 24, cookie, 18))
870                 goto invalid;
871
872         // Generate a throw-away key for the invitation.
873         ecdsa_t *key = ecdsa_generate();
874         if(!key)
875                 return 1;
876
877         char *b64key = ecdsa_get_base64_public_key(key);
878
879         // Connect to the tinc daemon mentioned in the URL.
880         struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
881         if(!ai)
882                 return 1;
883
884         sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
885         if(sock <= 0) {
886                 fprintf(stderr, "Could not open socket: %s\n", strerror(errno));
887                 return 1;
888         }
889
890         if(connect(sock, ai->ai_addr, ai->ai_addrlen)) {
891                 fprintf(stderr, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
892                 closesocket(sock);
893                 return 1;
894         }
895
896         fprintf(stderr, "Connected to %s port %s...\n", address, port);
897
898         // Tell him we have an invitation, and give him our throw-away key.
899         int len = snprintf(line, sizeof line, "0 ?%s %d.%d\n", b64key, PROT_MAJOR, PROT_MINOR);
900         if(len <= 0 || len >= sizeof line)
901                 abort();
902
903         if(!sendline(sock, "0 ?%s %d.%d", b64key, PROT_MAJOR, 1)) {
904                 fprintf(stderr, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
905                 closesocket(sock);
906                 return 1;
907         }
908
909         char hisname[4096] = "";
910         int code, hismajor, hisminor = 0;
911
912         if(!recvline(sock, line, sizeof line) || sscanf(line, "%d %s %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) {
913                 fprintf(stderr, "Cannot read greeting from peer\n");
914                 closesocket(sock);
915                 return 1;
916         }
917
918         // Check if the hash of the key he gave us matches the hash in the URL.
919         char *fingerprint = line + 2;
920         digest_t *digest = digest_open_by_name("sha256", 18);
921         if(!digest)
922                 abort();
923         char hishash[18];
924         if(!digest_create(digest, fingerprint, strlen(fingerprint), hishash)) {
925                 fprintf(stderr, "Could not create digest\n%s\n", line + 2);
926                 return 1;
927         }
928         if(memcmp(hishash, hash, 18)) {
929                 fprintf(stderr, "Peer has an invalid key!\n%s\n", line + 2);
930                 return 1;
931
932         }
933         
934         ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
935         if(!hiskey)
936                 return 1;
937
938         // Start an SPTPS session
939         if(!sptps_start(&sptps, NULL, true, false, key, hiskey, "tinc invitation", 15, invitation_send, invitation_receive))
940                 return 1;
941
942         // Feed rest of input buffer to SPTPS
943         if(!sptps_receive_data(&sptps, buffer, blen))
944                 return 1;
945
946         while((len = recv(sock, line, sizeof line, 0))) {
947                 if(len < 0) {
948                         if(errno == EINTR)
949                                 continue;
950                         fprintf(stderr, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
951                         return 1;
952                 }
953
954                 if(!sptps_receive_data(&sptps, line, len))
955                         return 1;
956         }
957         
958         sptps_stop(&sptps);
959         ecdsa_free(hiskey);
960         ecdsa_free(key);
961         closesocket(sock);
962
963         if(!success) {
964                 fprintf(stderr, "Connection closed by peer, invitation cancelled.\n");
965                 return 1;
966         }
967
968         return 0;
969
970 invalid:
971         fprintf(stderr, "Invalid invitation URL.\n");
972         return 1;
973 }