6ed17ca16c655f24c5751eceb24becf17a1667cd
[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         b64encode_urlsafe(cookie, cookie, 18);
353
354         // Create a file containing the details of the invitation.
355         xasprintf(&filename, "%s" SLASH "invitations" SLASH "%s", confbase, cookie);
356         int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
357         if(!ifd) {
358                 fprintf(stderr, "Could not create invitation file %s: %s\n", filename, strerror(errno));
359                 free(filename);
360                 return 1;
361         }
362         free(filename);
363         f = fdopen(ifd, "w");
364         if(!f)
365                 abort();
366
367         // Get the local address
368         char *address = get_my_hostname();
369
370         // Fill in the details.
371         fprintf(f, "Name = %s\n", argv[1]);
372         if(netname)
373                 fprintf(f, "NetName = %s\n", netname);
374         fprintf(f, "ConnectTo = %s\n", myname);
375         // TODO: copy Broadcast and Mode
376         fprintf(f, "#---------------------------------------------------------------#\n");
377         fprintf(f, "Name = %s\n", myname);
378
379         xasprintf(&filename, "%s" SLASH "hosts" SLASH "%s", confbase, myname);
380         fcopy(f, filename);
381         fclose(f);
382
383         // Create an URL from the local address, key hash and cookie
384         printf("%s/%s%s\n", address, hash, cookie);
385         free(filename);
386         free(address);
387
388         return 0;
389 }
390
391 static int sock;
392 static char cookie[18];
393 static sptps_t sptps;
394 static char *data;
395 static size_t datalen;
396 static bool success = false;
397
398 static char cookie[18], hash[18];
399
400 static char *get_line(const char **data) {
401         if(!data || !*data)
402                 return NULL;
403
404         if(!**data) {
405                 *data = NULL;
406                 return NULL;
407         }
408
409         static char line[1024];
410         const char *end = strchr(*data, '\n');
411         size_t len = end ? end - *data : strlen(*data);
412         if(len >= sizeof line) {
413                 fprintf(stderr, "Maximum line length exceeded!\n");
414                 return NULL;
415         }
416         if(len && !isprint(**data))
417                 abort();
418
419         memcpy(line, *data, len);
420         line[len] = 0;
421
422         if(end)
423                 *data = end + 1;
424         else
425                 *data = NULL;
426
427         return line;
428 }
429
430 static char *get_value(const char *data, const char *var) {
431         char *line = get_line(&data);
432         if(!line)
433                 return NULL;
434
435         char *sep = line + strcspn(line, " \t=");
436         char *val = sep + strspn(sep, " \t");
437         if(*val == '=')
438                 val += 1 + strspn(val + 1, " \t");
439         *sep = 0;
440         if(strcasecmp(line, var))
441                 return NULL;
442         return val;
443 }
444
445 static char *grep(const char *data, const char *var) {
446         static char value[1024];
447
448         const char *p = data;
449         int varlen = strlen(var);
450
451         // Skip all lines not starting with var
452         while(strncasecmp(p, var, varlen) || !strchr(" \t=", p[varlen])) {
453                 p = strchr(p, '\n');
454                 if(!p)
455                         break;
456                 else
457                         p++;
458         }
459
460         if(!p)
461                 return NULL;
462
463         p += varlen;
464         p += strspn(p, " \t");
465         if(*p == '=')
466                 p += 1 + strspn(p + 1, " \t");
467
468         const char *e = strchr(p, '\n');
469         if(!e)
470                 return xstrdup(p);
471
472         if(e - p >= sizeof value) {
473                 fprintf(stderr, "Maximum line length exceeded!\n");
474                 return NULL;
475         }
476
477         memcpy(value, p, e - p);
478         value[e - p] = 0;
479         return value;
480 }
481
482 static bool finalize_join(void) {
483         char *name = xstrdup(get_value(data, "Name"));
484         if(!name) {
485                 fprintf(stderr, "No Name found in invitation!\n");
486                 return false;
487         }
488
489         if(!check_id(name)) {
490                 fprintf(stderr, "Invalid Name found in invitation: %s!\n", name);
491                 return false;
492         }
493
494         if(!netname)
495                 netname = grep(data, "NetName");
496
497         bool ask_netname = false;
498         char temp_netname[32];
499
500 make_names:
501         if(!confbasegiven) {
502                 free(confbase);
503                 confbase = NULL;
504         }
505
506         make_names();
507
508         free(tinc_conf);
509         free(hosts_dir);
510
511         xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
512         xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
513
514         if(!access(tinc_conf, F_OK)) {
515                 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
516                 if(!tty || confbasegiven)
517                         return false;
518
519                 // Generate a random netname, ask for a better one later.
520                 ask_netname = true;
521                 snprintf(temp_netname, sizeof temp_netname, "join_%x", rand());
522                 netname = temp_netname;
523                 goto make_names;
524         }       
525
526         if(mkdir(confbase, 0777) && errno != EEXIST) {
527                 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
528                 return false;
529         }
530
531         if(mkdir(hosts_dir, 0777) && errno != EEXIST) {
532                 fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
533                 return false;
534         }
535
536         FILE *f = fopen(tinc_conf, "w");
537         if(!f) {
538                 fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
539                 return false;
540         }
541
542         fprintf(f, "Name = %s\n", name);
543
544         char *filename;
545         xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
546         FILE *fh = fopen(filename, "w");
547         if(!fh) {
548                 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
549                 return false;
550         }
551
552         // Filter first chunk on approved keywords, split between tinc.conf and hosts/Name
553         // Other chunks go unfiltered to their respective host config files
554         const char *p = data;
555         char *l, *value;
556
557         while((l = get_line(&p))) {
558                 // Ignore comments
559                 if(*l == '#')
560                         continue;
561
562                 // Split line into variable and value
563                 int len = strcspn(l, "\t =");
564                 value = l + len;
565                 value += strspn(value, "\t ");
566                 if(*value == '=') {
567                         value++;
568                         value += strspn(value, "\t ");
569                 }
570                 l[len] = 0;
571
572                 // Is it a Name?
573                 if(!strcasecmp(l, "Name"))
574                         if(strcmp(value, name))
575                                 break;
576                         else
577                                 continue;
578                 else if(!strcasecmp(l, "NetName"))
579                         continue;
580
581                 // Check the list of known variables
582                 bool found = false;
583                 int i;
584                 for(i = 0; variables[i].name; i++) {
585                         if(strcasecmp(l, variables[i].name))
586                                 continue;
587                         found = true;
588                         break;
589                 }
590
591                 // Ignore unknown and unsafe variables
592                 if(!found) {
593                         fprintf(stderr, "Ignoring unknown variable '%s' in invitation.\n", l);
594                         continue;
595                 } else if(!(variables[i].type & VAR_SAFE)) {
596                         fprintf(stderr, "Ignoring unsafe variable '%s' in invitation.\n", l);
597                         continue;
598                 }
599
600                 // Copy the safe variable to the right config file
601                 fprintf(variables[i].type & VAR_HOST ? fh : f, "%s = %s\n", l, value);
602         }
603
604         fclose(f);
605         free(filename);
606
607         while(l && !strcasecmp(l, "Name")) {
608                 if(!check_id(value)) {
609                         fprintf(stderr, "Invalid Name found in invitation.\n");
610                         return false;
611                 }
612
613                 if(!strcmp(value, name)) {
614                         fprintf(stderr, "Secondary chunk would overwrite our own host config file.\n");
615                         return false;
616                 }
617
618                 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, value);
619                 f = fopen(filename, "w");
620
621                 if(!f) {
622                         fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
623                         return false;
624                 }
625
626                 while((l = get_line(&p))) {
627                         if(!strcmp(l, "#---------------------------------------------------------------#"))
628                                 continue;
629                         int len = strcspn(l, "\t =");
630                         if(len == 4 && !strncasecmp(l, "Name", 4)) {
631                                 value = l + len;
632                                 value += strspn(value, "\t ");
633                                 if(*value == '=') {
634                                         value++;
635                                         value += strspn(value, "\t ");
636                                 }
637                                 l[len] = 0;
638                                 break;
639                         }
640
641                         fputs(l, f);
642                         fputc('\n', f);
643                 }
644
645                 fclose(f);
646                 free(filename);
647         }
648
649         // Generate our key and send a copy to the server
650         ecdsa_t *key = ecdsa_generate();
651         if(!key)
652                 return false;
653
654         char *b64key = ecdsa_get_base64_public_key(key);
655         if(!b64key)
656                 return false;
657
658         xasprintf(&filename, "%s" SLASH "ecdsa_key.priv", confbase);
659         f = fopenmask(filename, "w", 0600);
660
661         if(!ecdsa_write_pem_private_key(key, f)) {
662                 fprintf(stderr, "Error writing private key!\n");
663                 ecdsa_free(key);
664                 fclose(f);
665                 return false;
666         }
667
668         fclose(f);
669
670         fprintf(fh, "ECDSAPublicKey = %s\n", b64key);
671
672         sptps_send_record(&sptps, 1, b64key, strlen(b64key));
673         free(b64key);
674
675
676         rsa_t *rsa = rsa_generate(2048, 0x1001);
677         xasprintf(&filename, "%s" SLASH "rsa_key.priv", confbase);
678         f = fopenmask(filename, "w", 0600);
679
680         rsa_write_pem_private_key(rsa, f);
681         fclose(f);
682
683         rsa_write_pem_public_key(rsa, fh);
684         fclose(fh);
685
686         ecdsa_free(key);
687         rsa_free(rsa);
688
689         check_port(name);
690
691         fprintf(stderr, "Invitation succesfully accepted.\n");
692         shutdown(sock, SHUT_RDWR);
693         success = true;
694
695 ask_netname:
696         if(ask_netname) {
697                 fprintf(stderr, "Enter a new netname: ");
698                 if(!fgets(line, sizeof line, stdin)) {
699                         fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
700                         return false;
701                 }
702                 if(!*line || *line == '\n')
703                         goto ask_netname;
704
705                 line[strlen(line) - 1] = 0;
706
707                 char *newbase;
708                 xasprintf(&newbase, CONFDIR SLASH "tinc" SLASH "%s", line);
709                 if(rename(confbase, newbase)) {
710                         fprintf(stderr, "Error trying to rename %s to %s: %s\n", confbase, newbase, strerror(errno));
711                         free(newbase);
712                         goto ask_netname;
713                 }
714
715                 free(newbase);
716                 netname = line;
717                 make_names();
718         }
719
720         return true;
721 }
722
723 static bool invitation_send(void *handle, uint8_t type, const char *data, size_t len) {
724         while(len) {
725                 int result = send(sock, data, len, 0);
726                 if(result == -1 && errno == EINTR)
727                         continue;
728                 else if(result <= 0)
729                         return false;
730                 data += result;
731                 len -= result;
732         }
733         return true;
734 }
735
736 static bool invitation_receive(void *handle, uint8_t type, const char *msg, uint16_t len) {
737         switch(type) {
738                 case SPTPS_HANDSHAKE:
739                         return sptps_send_record(&sptps, 0, cookie, sizeof cookie);
740
741                 case 0:
742                         data = xrealloc(data, datalen + len + 1);
743                         memcpy(data + datalen, msg, len);
744                         datalen += len;
745                         data[datalen] = 0;
746                         break;
747
748                 case 1:
749                         return finalize_join();
750
751                 default:
752                         return false;
753         }
754
755         return true;
756 }
757
758 int cmd_join(int argc, char *argv[]) {
759         free(data);
760         data = NULL;
761         datalen = 0;
762
763         if(argc > 2) {
764                 fprintf(stderr, "Too many arguments!\n");
765                 return 1;
766         }
767
768         // Make sure confbase exists and is accessible.
769         if(strcmp(confdir, confbase) && mkdir(confdir, 0755) && errno != EEXIST) {
770                 fprintf(stderr, "Could not create directory %s: %s\n", confdir, strerror(errno));
771                 return 1;
772         }
773
774         if(mkdir(confbase, 0777) && errno != EEXIST) {
775                 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
776                 return 1;
777         }
778
779         if(access(confbase, R_OK | W_OK | X_OK)) {
780                 fprintf(stderr, "No permission to write in directory %s: %s\n", confbase, strerror(errno));
781                 return 1;
782         }
783
784         // If a netname or explicit configuration directory is specified, check for an existing tinc.conf.
785         if((netname || confbasegiven) && !access(tinc_conf, F_OK)) {
786                 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
787                 return 1;
788         }
789
790         // Either read the invitation from the command line or from stdin.
791         char *invitation;
792
793         if(argc > 1) {
794                 invitation = argv[1];
795         } else {
796                 if(tty) {
797                         printf("Enter invitation URL: ");
798                         fflush(stdout);
799                 }
800                 errno = EPIPE;
801                 if(!fgets(line, sizeof line, stdin)) {
802                         fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
803                         return false;
804                 }
805                 invitation = line;
806         }
807
808         // Parse the invitation URL.
809         rstrip(line);
810
811         char *slash = strchr(invitation, '/');
812         if(!slash)
813                 goto invalid;
814
815         *slash++ = 0;
816
817         if(strlen(slash) != 48)
818                 goto invalid;
819
820         char *address = invitation;
821         char *port = NULL;
822         if(*address == '[') {
823                 address++;
824                 char *bracket = strchr(address, ']');
825                 if(!bracket)
826                         goto invalid;
827                 *bracket = 0;
828                 if(bracket[1] == ':')
829                         port = bracket + 2;
830         } else {
831                 port = strchr(address, ':');
832                 if(port)
833                         *port++ = 0;
834         }
835
836         if(!port || !*port)
837                 port = "655";
838
839         if(!b64decode(slash, hash, 18) || !b64decode(slash + 24, cookie, 18))
840                 goto invalid;
841
842         // Generate a throw-away key for the invitation.
843         ecdsa_t *key = ecdsa_generate();
844         if(!key)
845                 return 1;
846
847         char *b64key = ecdsa_get_base64_public_key(key);
848
849         // Connect to the tinc daemon mentioned in the URL.
850         struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
851         if(!ai)
852                 return 1;
853
854         sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
855         if(sock <= 0) {
856                 fprintf(stderr, "Could not open socket: %s\n", strerror(errno));
857                 return 1;
858         }
859
860         if(connect(sock, ai->ai_addr, ai->ai_addrlen)) {
861                 fprintf(stderr, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
862                 closesocket(sock);
863                 return 1;
864         }
865
866         fprintf(stderr, "Connected to %s port %s...\n", address, port);
867
868         // Tell him we have an invitation, and give him our throw-away key.
869         int len = snprintf(line, sizeof line, "0 ?%s %d.%d\n", b64key, PROT_MAJOR, PROT_MINOR);
870         if(len <= 0 || len >= sizeof line)
871                 abort();
872
873         if(!sendline(sock, "0 ?%s %d.%d", b64key, PROT_MAJOR, 1)) {
874                 fprintf(stderr, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
875                 closesocket(sock);
876                 return 1;
877         }
878
879         char hisname[4096] = "";
880         int code, hismajor, hisminor = 0;
881
882         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) {
883                 fprintf(stderr, "Cannot read greeting from peer\n");
884                 closesocket(sock);
885                 return 1;
886         }
887
888         // Check if the hash of the key he gave us matches the hash in the URL.
889         char *fingerprint = line + 2;
890         digest_t *digest = digest_open_by_name("sha256", 18);
891         if(!digest)
892                 abort();
893         char hishash[18];
894         if(!digest_create(digest, fingerprint, strlen(fingerprint), hishash)) {
895                 fprintf(stderr, "Could not create digest\n%s\n", line + 2);
896                 return 1;
897         }
898         if(memcmp(hishash, hash, 18)) {
899                 fprintf(stderr, "Peer has an invalid key!\n%s\n", line + 2);
900                 return 1;
901
902         }
903         
904         ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
905         if(!hiskey)
906                 return 1;
907
908         // Start an SPTPS session
909         if(!sptps_start(&sptps, NULL, true, false, key, hiskey, "tinc invitation", 15, invitation_send, invitation_receive))
910                 return 1;
911
912         // Feed rest of input buffer to SPTPS
913         if(!sptps_receive_data(&sptps, buffer, blen))
914                 return 1;
915
916         while((len = recv(sock, line, sizeof line, 0))) {
917                 if(len < 0) {
918                         if(errno == EINTR)
919                                 continue;
920                         fprintf(stderr, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
921                         return 1;
922                 }
923
924                 if(!sptps_receive_data(&sptps, line, len))
925                         return 1;
926         }
927         
928         sptps_stop(&sptps);
929         ecdsa_free(hiskey);
930         ecdsa_free(key);
931         closesocket(sock);
932
933         if(!success) {
934                 fprintf(stderr, "Connection closed by peer, invitation cancelled.\n");
935                 return 1;
936         }
937
938         return 0;
939
940 invalid:
941         fprintf(stderr, "Invalid invitation URL.\n");
942         return 1;
943 }