2 invitation.c -- Create and accept invitations
3 Copyright (C) 2013-2022 Guus Sliepen <guus@tinc-vpn.org>
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.
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.
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.
22 #include "control_common.h"
27 #include "invitation.h"
40 #include "ed25519/sha512.h"
42 int addressfamily = AF_UNSPEC;
44 static void scan_for_hostname(const char *filename, char **hostname, char **port) {
45 if(!filename || (*hostname && *port)) {
49 FILE *f = fopen(filename, "r");
55 while(fgets(line, sizeof(line), f)) {
61 p += strcspn(p, "\t =");
67 q = p + strspn(p, "\t ");
70 q += 1 + strspn(q + 1, "\t ");
74 p = q + strcspn(q, "\t ");
80 p += strspn(p, "\t ");
81 p[strcspn(p, "\t ")] = 0;
83 if(!*port && !strcasecmp(line, "Port")) {
86 } else if(!*hostname && !strcasecmp(line, "Address")) {
88 *hostname = xstrdup(q);
96 if(*hostname && *port) {
104 static bool get_my_hostname(char **out_address, char **out_port) {
105 char *hostname = NULL;
107 char *hostport = NULL;
108 char *name = get_my_name(false);
109 char filename[PATH_MAX] = {0};
111 // Use first Address statement in own host config file
113 snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", confbase, name);
114 scan_for_hostname(filename, &hostname, &port);
115 scan_for_hostname(tinc_conf, &hostname, &port);
121 if(!port || (is_decimal(port) && atoi(port) == 0)) {
122 pidfile_t *pidfile = read_pidfile();
126 port = xstrdup(pidfile->port);
129 fprintf(stderr, "tincd is using a dynamic port and is not running. Please start tincd or set the Port option to a non-zero value.\n");
138 // If that doesn't work, guess externally visible hostname
139 fprintf(stderr, "Trying to discover externally visible hostname...\n");
140 struct addrinfo *ai = str2addrinfo("tinc-vpn.org", "80", SOCK_STREAM);
141 struct addrinfo *aip = ai;
142 static const char request[] = "GET http://tinc-vpn.org/host.cgi HTTP/1.0\r\n\r\n";
145 int s = socket(aip->ai_family, aip->ai_socktype, aip->ai_protocol);
148 if(connect(s, aip->ai_addr, aip->ai_addrlen)) {
155 send(s, request, sizeof(request) - 1, 0);
156 ssize_t len = recv(s, line, sizeof(line) - 1, MSG_WAITALL);
161 if(line[len - 1] == '\n') {
165 char *p = strrchr(line, '\n');
168 hostname = xstrdup(p + 1);
187 // Check that the hostname is reasonable
189 for(char *p = hostname; *p; p++) {
190 if(isalnum((uint8_t) *p) || *p == '-' || *p == '.' || *p == ':') {
194 // If not, forget it.
203 fprintf(stderr, "Could not determine the external address or hostname. Please set Address manually.\n");
212 fprintf(stderr, "Please enter your host's external address or hostname");
215 fprintf(stderr, " [%s]", hostname);
218 fprintf(stderr, ": ");
220 if(!fgets(line, sizeof(line), stdin)) {
221 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
235 for(char *p = line; *p; p++) {
236 if(isalnum((uint8_t) *p) || *p == '-' || *p == '.') {
240 fprintf(stderr, "Invalid address or hostname.\n");
245 hostname = xstrdup(line);
250 FILE *f = fopen(filename, "a");
253 fprintf(f, "\nAddress = %s\n", hostname);
256 fprintf(stderr, "Could not append Address to %s: %s\n", filename, strerror(errno));
263 if(strchr(hostname, ':')) {
264 xasprintf(&hostport, "[%s]:%s", hostname, port);
266 xasprintf(&hostport, "%s:%s", hostname, port);
269 if(strchr(hostname, ':')) {
270 xasprintf(&hostport, "[%s]", hostname);
272 hostport = xstrdup(hostname);
279 if(hostport && port) {
280 *out_address = hostport;
290 // Copy host configuration file, replacing Port with the value passed here. Host
291 // configs may contain this clause: `Port = 0`, which means 'ask the operating
292 // system to allocate any available port'. This obviously won't do for invitation
293 // files, so replace it with an actual port we've obtained previously.
294 static bool copy_config_replacing_port(FILE *out, const char *filename, const char *port) {
295 FILE *in = fopen(filename, "r");
298 fprintf(stderr, "Could not open %s: %s\n", filename, strerror(errno));
304 while(fgets(line, sizeof(line), in)) {
305 const char *var_beg = line + strspn(line, "\t ");
306 const char *var_end = var_beg + strcspn(var_beg, "\t ");
308 // Check the name of the variable we've read. If it's Port, replace it with
309 // a port we'll use in invitation URL. Otherwise, just copy the line.
310 if(var_end > var_beg && !strncasecmp(var_beg, "Port", var_end - var_beg)) {
311 fprintf(out, "Port = %s\n", port);
313 fprintf(out, "%s", line);
317 memzero(line, sizeof(line));
322 static bool append_host_config(FILE *f, const char *nodename, const char *port) {
324 snprintf(path, sizeof(path), "%s" SLASH "hosts" SLASH "%s", confbase, nodename);
325 bool success = copy_config_replacing_port(f, path, port);
330 int cmd_invite(int argc, char *argv[]) {
332 fprintf(stderr, "Not enough arguments!\n");
336 // Check validity of the new node's name
337 if(!check_id(argv[1])) {
338 fprintf(stderr, "Invalid name for node.\n");
343 myname = get_my_name(true);
349 // Ensure no host configuration file with that name exists
350 char filename[PATH_MAX];
351 snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", confbase, argv[1]);
353 if(!access(filename, F_OK)) {
354 fprintf(stderr, "A host config file for %s already exists!\n", argv[1]);
358 // If a daemon is running, ensure no other nodes know about this name
359 if(connect_tincd(false)) {
361 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
363 while(recvline(fd, line, sizeof(line))) {
367 if(sscanf(line, "%d %d %4095s", &code, &req, node) != 3) {
371 if(!strcmp(node, argv[1])) {
377 fprintf(stderr, "A node with name %s is already known!\n", argv[1]);
382 snprintf(filename, sizeof(filename), "%s" SLASH "invitations", confbase);
384 if(mkdir(filename, 0700) && errno != EEXIST) {
385 fprintf(stderr, "Could not create directory %s: %s\n", filename, strerror(errno));
389 // Count the number of valid invitations, clean up old ones
390 DIR *dir = opendir(filename);
393 fprintf(stderr, "Could not read directory %s: %s\n", filename, strerror(errno));
400 time_t deadline = time(NULL) - 604800; // 1 week in the past
402 while((ent = readdir(dir))) {
403 if(strlen(ent->d_name) != 24) {
407 char invname[PATH_MAX];
410 if((size_t)snprintf(invname, sizeof(invname), "%s" SLASH "%s", filename, ent->d_name) >= sizeof(invname)) {
411 fprintf(stderr, "Filename too long: %s" SLASH "%s\n", filename, ent->d_name);
415 if(!stat(invname, &st)) {
416 if(deadline < st.st_mtime) {
422 fprintf(stderr, "Could not stat %s: %s\n", invname, strerror(errno));
430 fprintf(stderr, "Error while reading directory %s: %s\n", filename, strerror(errno));
435 snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "ed25519_key.priv", confbase);
437 // Remove the key if there are no outstanding invitations.
442 // Create a new key if necessary.
443 FILE *f = fopen(filename, "r");
446 if(errno != ENOENT) {
447 fprintf(stderr, "Could not read %s: %s\n", filename, strerror(errno));
451 key = ecdsa_generate();
457 f = fopen(filename, "w");
460 fprintf(stderr, "Could not write %s: %s\n", filename, strerror(errno));
465 chmod(filename, 0600);
467 if(!ecdsa_write_pem_private_key(key, f)) {
468 fprintf(stderr, "Could not write ECDSA private key\n");
476 if(connect_tincd(true)) {
477 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
479 fprintf(stderr, "Could not signal the tinc daemon. Please restart or reload it manually.\n");
482 key = ecdsa_read_pem_private_key(f);
486 fprintf(stderr, "Could not read private key from %s\n", filename);
494 // Create a hash of the key.
496 char *fingerprint = ecdsa_get_base64_public_key(key);
497 sha512(fingerprint, strlen(fingerprint), hash);
498 b64encode_tinc_urlsafe(hash, hash, 18);
502 // Create a random cookie for this invitation.
504 randomize(cookie, 18);
506 // Create a filename that doesn't reveal the cookie itself
507 const size_t buflen = 18 + strlen(fingerprint);
508 uint8_t *buf = alloca(buflen);
511 memcpy(buf, cookie, 18);
512 memcpy(buf + 18, fingerprint, buflen - 18);
513 sha512(buf, buflen, cookiehash);
514 b64encode_tinc_urlsafe(cookiehash, cookiehash, 18);
518 b64encode_tinc_urlsafe(cookie, cookie, 18);
520 // Create a file containing the details of the invitation.
521 snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "%s", confbase, cookiehash);
522 int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
525 memzero(cookie, sizeof(cookie));
526 fprintf(stderr, "Could not create invitation file %s: %s\n", filename, strerror(errno));
530 f = fdopen(ifd, "w");
536 // Get the local address
537 char *address = NULL;
540 if(!get_my_hostname(&address, &port)) {
541 memzero(cookie, sizeof(cookie));
545 // Create an URL from the local address, key hash and cookie
547 xasprintf(&url, "%s/%s%s", address, hash, cookie);
549 memzero(cookie, sizeof(cookie));
552 // Fill in the details.
553 fprintf(f, "Name = %s\n", argv[1]);
555 if(check_netname(netname, true)) {
556 fprintf(f, "NetName = %s\n", netname);
559 fprintf(f, "ConnectTo = %s\n", myname);
561 // Copy Broadcast and Mode
562 FILE *tc = fopen(tinc_conf, "r");
567 while(fgets(buf, sizeof(buf), tc)) {
568 if((!strncasecmp(buf, "Mode", 4) && strchr(" \t=", buf[4]))
569 || (!strncasecmp(buf, "Broadcast", 9) && strchr(" \t=", buf[9]))) {
572 // Make sure there is a newline character.
573 if(!strchr(buf, '\n')) {
582 fprintf(f, "#---------------------------------------------------------------#\n");
583 fprintf(f, "Name = %s\n", myname);
585 bool appended = append_host_config(f, myname, port);
589 fprintf(stderr, "Could not append my config to invitation file: %s.\n", strerror(errno));
594 // Call the inviation-created script
596 environment_init(&env);
597 environment_add(&env, "NODE=%s", argv[1]);
598 environment_add(&env, "INVITATION_FILE=%s", filename);
599 environment_add(&env, "INVITATION_URL=%s", url);
600 execute_script("invitation-created", &env);
601 environment_exit(&env);
610 static char cookie[18], hash[18];
611 static sptps_t sptps;
613 static size_t datalen;
614 static bool success = false;
616 static char *get_line(char *line, size_t linelen, const char **data) {
617 if(!data || !*data) {
626 const char *end = strchr(*data, '\n');
627 size_t len = end ? (size_t)(end - *data) : strlen(*data);
630 fprintf(stderr, "Maximum line length exceeded!\n");
634 if(len && !isprint((uint8_t) **data)) {
638 memcpy(line, *data, len);
650 static char *get_value(const char *data, const char *var) {
651 static char buf[1024];
653 char *line = get_line(buf, sizeof(buf), &data);
659 char *sep = line + strcspn(line, " \t=");
660 char *val = sep + strspn(sep, " \t");
663 val += 1 + strspn(val + 1, " \t");
668 if(strcasecmp(line, var)) {
675 static char *grep(const char *data, const char *var) {
676 static char value[1024];
678 const char *p = data;
679 size_t varlen = strlen(var);
681 // Skip all lines not starting with var
682 while(strncasecmp(p, var, varlen) || !strchr(" \t=", p[varlen])) {
697 p += strspn(p, " \t");
700 p += 1 + strspn(p + 1, " \t");
703 const char *e = strchr(p, '\n');
709 if((size_t)(e - p) >= sizeof(value)) {
710 fprintf(stderr, "Maximum line length exceeded!\n");
714 memcpy(value, p, e - p);
719 static bool finalize_join(void) {
720 const char *name = get_value(data, "Name");
723 fprintf(stderr, "No Name found in invitation!\n");
727 if(!check_id(name)) {
728 fprintf(stderr, "Invalid Name found in invitation!\n");
733 const char *net = grep(data, "NetName");
736 netname = xstrdup(net);
738 if(!check_netname(netname, true)) {
739 fprintf(stderr, "Unsafe NetName found in invitation!\n");
745 bool ask_netname = false;
746 char temp_netname[32];
760 xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
761 xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
763 if(!access(tinc_conf, F_OK)) {
764 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
770 // Generate a random netname, ask for a better one later.
772 snprintf(temp_netname, sizeof(temp_netname), "join_%x", prng(UINT32_MAX));
773 netname = temp_netname;
777 if(mkdir(confbase, 0777) && errno != EEXIST) {
778 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
782 if(mkdir(hosts_dir, 0777) && errno != EEXIST) {
783 fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
787 FILE *f = fopen(tinc_conf, "w");
790 fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
794 fprintf(f, "Name = %s\n", name);
796 char filename[PATH_MAX];
797 snprintf(filename, sizeof(filename), "%s" SLASH "%s", hosts_dir, name);
798 FILE *fh = fopen(filename, "w");
801 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
806 snprintf(filename, sizeof(filename), "%s" SLASH "invitation-data", confbase);
807 FILE *finv = fopen(filename, "w");
809 if(!finv || fwrite(data, datalen, 1, finv) != 1) {
810 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
819 snprintf(filename, sizeof(filename), "%s" SLASH "tinc-up.invitation", confbase);
820 FILE *fup = fopen(filename, "w");
823 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
829 ifconfig_header(fup);
831 // Filter first chunk on approved keywords, split between tinc.conf and hosts/Name
832 // Generate a tinc-up script from Ifconfig and Route keywords.
833 // Other chunks go unfiltered to their respective host config files
834 const char *p = data;
837 static char line[1024];
839 while((l = get_line(line, sizeof(line), &p))) {
845 // Split line into variable and value
846 size_t len = strcspn(l, "\t =");
848 value += strspn(value, "\t ");
852 value += strspn(value, "\t ");
857 // Ignore lines with empty variable names
863 if(!strcasecmp(l, "Name")) {
864 if(strcmp(value, name)) {
869 } else if(!strcasecmp(l, "NetName")) {
873 // Check the list of known variables
877 for(i = 0; variables[i].name; i++) {
878 if(strcasecmp(l, variables[i].name)) {
886 // Handle Ifconfig and Route statements
888 if(!strcasecmp(l, "Ifconfig")) {
889 if(!strcasecmp(value, "dhcp")) {
891 } else if(!strcasecmp(value, "dhcp6")) {
893 } else if(!strcasecmp(value, "slaac")) {
896 ifconfig_address(fup, value);
900 } else if(!strcasecmp(l, "Route")) {
901 ifconfig_route(fup, value);
906 // Ignore unknown and unsafe variables
908 fprintf(stderr, "Ignoring unknown variable '%s' in invitation.\n", l);
910 } else if(!(variables[i].type & VAR_SAFE)) {
912 fprintf(stderr, "Warning: unsafe variable '%s' in invitation.\n", l);
914 fprintf(stderr, "Ignoring unsafe variable '%s' in invitation.\n", l);
919 // Copy the safe variable to the right config file
920 fprintf((variables[i].type & VAR_HOST) ? fh : f, "%s = %s\n", l, value);
924 bool valid_tinc_up = ifconfig_footer(fup);
927 while(l && !strcasecmp(l, "Name")) {
928 if(!check_id(value)) {
929 fprintf(stderr, "Invalid Name found in invitation.\n");
933 if(!strcmp(value, name)) {
934 fprintf(stderr, "Secondary chunk would overwrite our own host config file.\n");
938 snprintf(filename, sizeof(filename), "%s" SLASH "%s", hosts_dir, value);
939 f = fopen(filename, "w");
942 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
946 while((l = get_line(line, sizeof(line), &p))) {
947 if(!strcmp(l, "#---------------------------------------------------------------#")) {
951 size_t len = strcspn(l, "\t =");
953 if(len == 4 && !strncasecmp(l, "Name", 4)) {
955 value += strspn(value, "\t ");
959 value += strspn(value, "\t ");
973 // Generate our key and send a copy to the server
974 ecdsa_t *key = ecdsa_generate();
980 char *b64_pubkey = ecdsa_get_base64_public_key(key);
986 snprintf(filename, sizeof(filename), "%s" SLASH "ed25519_key.priv", confbase);
987 f = fopenmask(filename, "w", 0600);
993 if(!ecdsa_write_pem_private_key(key, f)) {
994 fprintf(stderr, "Error writing private key!\n");
1002 fprintf(fh, "Ed25519PublicKey = %s\n", b64_pubkey);
1004 sptps_send_record(&sptps, 1, b64_pubkey, strlen(b64_pubkey));
1008 #ifndef DISABLE_LEGACY
1009 rsa_t *rsa = rsa_generate(2048, 0x1001);
1010 snprintf(filename, sizeof(filename), "%s" SLASH "rsa_key.priv", confbase);
1011 f = fopenmask(filename, "w", 0600);
1013 if(!f || !rsa_write_pem_private_key(rsa, f)) {
1014 fprintf(stderr, "Could not write private RSA key\n");
1015 } else if(!rsa_write_pem_public_key(rsa, fh)) {
1016 fprintf(stderr, "Could not write public RSA key\n");
1030 if(ask_netname && tty) {
1031 fprintf(stderr, "Enter a new netname: ");
1033 if(!fgets(line, sizeof(line), stdin)) {
1034 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
1038 if(!*line || *line == '\n') {
1042 line[strlen(line) - 1] = 0;
1044 char newbase[PATH_MAX];
1046 if((size_t)snprintf(newbase, sizeof(newbase), CONFDIR SLASH "tinc" SLASH "%s", line) >= sizeof(newbase)) {
1047 fprintf(stderr, "Filename too long: " CONFDIR SLASH "tinc" SLASH "%s\n", line);
1051 if(rename(confbase, newbase)) {
1052 fprintf(stderr, "Error trying to rename %s to %s: %s\n", confbase, newbase, strerror(errno));
1060 char filename2[PATH_MAX];
1061 snprintf(filename, sizeof(filename), "%s" SLASH "tinc-up.invitation", confbase);
1064 snprintf(filename2, sizeof(filename2), "%s" SLASH "tinc-up.bat", confbase);
1066 snprintf(filename2, sizeof(filename2), "%s" SLASH "tinc-up", confbase);
1071 FILE *fup = fopen(filename, "r");
1074 fprintf(stderr, "\nPlease review the following tinc-up script:\n\n");
1078 while(fgets(buf, sizeof(buf), fup)) {
1087 fprintf(stderr, "\nDo you want to use this script [y]es/[n]o/[e]dit? ");
1088 response = tolower(getchar());
1089 } while(!strchr("yne", response));
1091 fprintf(stderr, "\n");
1093 if(response == 'e') {
1095 #ifndef HAVE_WINDOWS
1096 const char *editor = getenv("VISUAL");
1099 editor = getenv("EDITOR");
1106 xasprintf(&command, "\"%s\" \"%s\"", editor, filename);
1108 xasprintf(&command, "edit \"%s\"", filename);
1111 if(system(command)) {
1120 if(response == 'y') {
1121 rename(filename, filename2);
1122 chmod(filename2, 0755);
1123 fprintf(stderr, "tinc-up enabled.\n");
1125 fprintf(stderr, "tinc-up has been left disabled.\n");
1130 rename(filename, filename2);
1131 chmod(filename2, 0755);
1132 fprintf(stderr, "tinc-up enabled.\n");
1134 fprintf(stderr, "A tinc-up script was generated, but has been left disabled.\n");
1138 // A placeholder was generated.
1139 rename(filename, filename2);
1140 chmod(filename2, 0755);
1143 fprintf(stderr, "Configuration stored in: %s\n", confbase);
1149 static bool invitation_send(void *handle, uint8_t type, const void *vdata, size_t len) {
1152 const char *data = vdata;
1155 ssize_t result = send(sock, data, len, 0);
1157 if(result == -1 && sockwouldblock(sockerrno)) {
1159 } else if(result <= 0) {
1170 static bool invitation_receive(void *handle, uint8_t type, const void *msg, uint16_t len) {
1174 case SPTPS_HANDSHAKE:
1175 return sptps_send_record(&sptps, 0, cookie, sizeof(cookie));
1178 data = xrealloc(data, datalen + len + 1);
1179 memcpy(data + datalen, msg, len);
1185 return finalize_join();
1188 fprintf(stderr, "Invitation successfully accepted.\n");
1189 shutdown(sock, SHUT_RDWR);
1200 int cmd_join(int argc, char *argv[]) {
1206 fprintf(stderr, "Too many arguments!\n");
1210 // Make sure confbase exists and is accessible.
1211 if(!confbase_given && mkdir(confdir, 0755) && errno != EEXIST) {
1212 fprintf(stderr, "Could not create directory %s: %s\n", confdir, strerror(errno));
1216 if(mkdir(confbase, 0777) && errno != EEXIST) {
1217 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
1221 if(access(confbase, R_OK | W_OK | X_OK)) {
1222 fprintf(stderr, "No permission to write in directory %s: %s\n", confbase, strerror(errno));
1226 // If a netname or explicit configuration directory is specified, check for an existing tinc.conf.
1227 if((netname || confbasegiven) && !access(tinc_conf, F_OK)) {
1228 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
1232 // Either read the invitation from the command line or from stdin.
1236 invitation = argv[1];
1239 fprintf(stderr, "Enter invitation URL: ");
1244 if(!fgets(line, sizeof(line), stdin)) {
1245 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
1252 // Parse the invitation URL.
1255 char *slash = strchr(invitation, '/');
1263 if(strlen(slash) != 48) {
1267 char *address = invitation;
1270 if(*address == '[') {
1272 char *bracket = strchr(address, ']');
1280 if(bracket[1] == ':') {
1284 port = strchr(address, ':');
1291 if(!port || !*port) {
1292 static char default_port[] = "655";
1293 port = default_port;
1296 if(!b64decode_tinc(slash, hash, 24) || !b64decode_tinc(slash + 24, cookie, 24)) {
1300 // Generate a throw-away key for the invitation.
1301 ecdsa_t *key = ecdsa_generate();
1307 char *b64_pubkey = ecdsa_get_base64_public_key(key);
1309 // Connect to the tinc daemon mentioned in the URL.
1310 struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
1318 struct addrinfo *aip = NULL;
1334 sock = socket(aip->ai_family, aip->ai_socktype, aip->ai_protocol);
1337 fprintf(stderr, "Could not open socket: %s\n", strerror(errno));
1341 if(connect(sock, aip->ai_addr, aip->ai_addrlen)) {
1342 char *addrstr, *portstr;
1343 sockaddr2str((sockaddr_t *)aip->ai_addr, &addrstr, &portstr);
1344 fprintf(stderr, "Could not connect to %s port %s: %s\n", addrstr, portstr, strerror(errno));
1351 fprintf(stderr, "Connected to %s port %s...\n", address, port);
1353 // Tell him we have an invitation, and give him our throw-away key.
1354 ssize_t len = snprintf(line, sizeof(line), "0 ?%s %d.%d\n", b64_pubkey, PROT_MAJOR, PROT_MINOR);
1356 if(len <= 0 || (size_t)len >= sizeof(line)) {
1360 if(!sendline(sock, "0 ?%s %d.%d", b64_pubkey, PROT_MAJOR, 1)) {
1361 fprintf(stderr, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
1366 char hisname[4096] = "";
1367 int code, hismajor, hisminor = 0;
1369 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) {
1370 fprintf(stderr, "Cannot read greeting from peer\n");
1382 // Check if the hash of the key he gave us matches the hash in the URL.
1383 char *fingerprint = line + 2;
1386 if(sha512(fingerprint, strlen(fingerprint), hishash)) {
1387 fprintf(stderr, "Could not create digest\n%s\n", line + 2);
1392 if(memcmp(hishash, hash, 18)) {
1393 fprintf(stderr, "Peer has an invalid key!\n%s\n", line + 2);
1399 ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
1406 // Start an SPTPS session
1407 if(!sptps_start(&sptps, NULL, true, false, key, hiskey, "tinc invitation", 15, invitation_send, invitation_receive)) {
1413 // Feed rest of input buffer to SPTPS
1414 if(!sptps_receive_data(&sptps, buffer, blen)) {
1419 while((len = recv(sock, line, sizeof(line), 0))) {
1421 if(sockwouldblock(sockerrno)) {
1427 // If socket has been shut down, recv() on Windows returns -1 and sets sockerrno
1428 // to WSAESHUTDOWN, while on UNIX-like operating systems recv() returns 0, so we
1429 // have to do an explicit check here.
1430 if(sockshutdown(sockerrno)) {
1435 fprintf(stderr, "Error reading data from %s port %s: %s\n", address, port, sockstrerror(sockerrno));
1443 size_t done = sptps_receive_data(&sptps, p, len);
1450 len -= (ssize_t) done;
1462 fprintf(stderr, "Invitation cancelled.\n");
1469 fprintf(stderr, "Invalid invitation URL.\n");