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");
337 fprintf(stderr, "Too many arguments!\n");
341 // Check validity of the new node's name
342 if(!check_id(argv[1])) {
343 fprintf(stderr, "Invalid name for node.\n");
348 myname = get_my_name(true);
354 // Ensure no host configuration file with that name exists
355 char filename[PATH_MAX];
356 snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", confbase, argv[1]);
358 if(!access(filename, F_OK)) {
359 fprintf(stderr, "A host config file for %s already exists!\n", argv[1]);
363 // If a daemon is running, ensure no other nodes know about this name
364 if(connect_tincd(false)) {
366 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
368 while(recvline(fd, line, sizeof(line))) {
372 if(sscanf(line, "%d %d %4095s", &code, &req, node) != 3) {
376 if(!strcmp(node, argv[1])) {
382 fprintf(stderr, "A node with name %s is already known!\n", argv[1]);
387 snprintf(filename, sizeof(filename), "%s" SLASH "invitations", confbase);
389 if(mkdir(filename, 0700) && errno != EEXIST) {
390 fprintf(stderr, "Could not create directory %s: %s\n", filename, strerror(errno));
394 // Count the number of valid invitations, clean up old ones
395 DIR *dir = opendir(filename);
398 fprintf(stderr, "Could not read directory %s: %s\n", filename, strerror(errno));
405 time_t deadline = time(NULL) - 604800; // 1 week in the past
407 while((ent = readdir(dir))) {
408 if(strlen(ent->d_name) != 24) {
412 char invname[PATH_MAX];
415 if((size_t)snprintf(invname, sizeof(invname), "%s" SLASH "%s", filename, ent->d_name) >= sizeof(invname)) {
416 fprintf(stderr, "Filename too long: %s" SLASH "%s\n", filename, ent->d_name);
420 if(!stat(invname, &st)) {
421 if(deadline < st.st_mtime) {
427 fprintf(stderr, "Could not stat %s: %s\n", invname, strerror(errno));
435 fprintf(stderr, "Error while reading directory %s: %s\n", filename, strerror(errno));
440 snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "ed25519_key.priv", confbase);
442 // Remove the key if there are no outstanding invitations.
447 // Create a new key if necessary.
448 FILE *f = fopen(filename, "r");
451 if(errno != ENOENT) {
452 fprintf(stderr, "Could not read %s: %s\n", filename, strerror(errno));
456 key = ecdsa_generate();
462 f = fopen(filename, "w");
465 fprintf(stderr, "Could not write %s: %s\n", filename, strerror(errno));
470 chmod(filename, 0600);
472 if(!ecdsa_write_pem_private_key(key, f)) {
473 fprintf(stderr, "Could not write ECDSA private key\n");
481 if(connect_tincd(true)) {
482 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
484 fprintf(stderr, "Could not signal the tinc daemon. Please restart or reload it manually.\n");
487 key = ecdsa_read_pem_private_key(f);
491 fprintf(stderr, "Could not read private key from %s\n", filename);
499 // Create a hash of the key.
501 char *fingerprint = ecdsa_get_base64_public_key(key);
502 sha512(fingerprint, strlen(fingerprint), hash);
503 b64encode_tinc_urlsafe(hash, hash, 18);
507 // Create a random cookie for this invitation.
509 randomize(cookie, 18);
511 // Create a filename that doesn't reveal the cookie itself
512 const size_t buflen = 18 + strlen(fingerprint);
513 uint8_t *buf = alloca(buflen);
516 memcpy(buf, cookie, 18);
517 memcpy(buf + 18, fingerprint, buflen - 18);
518 sha512(buf, buflen, cookiehash);
519 b64encode_tinc_urlsafe(cookiehash, cookiehash, 18);
523 b64encode_tinc_urlsafe(cookie, cookie, 18);
525 // Create a file containing the details of the invitation.
526 snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "%s", confbase, cookiehash);
527 int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
530 memzero(cookie, sizeof(cookie));
531 fprintf(stderr, "Could not create invitation file %s: %s\n", filename, strerror(errno));
535 f = fdopen(ifd, "w");
541 // Get the local address
542 char *address = NULL;
545 if(!get_my_hostname(&address, &port)) {
546 memzero(cookie, sizeof(cookie));
550 // Create an URL from the local address, key hash and cookie
552 xasprintf(&url, "%s/%s%s", address, hash, cookie);
554 memzero(cookie, sizeof(cookie));
557 // Fill in the details.
558 fprintf(f, "Name = %s\n", argv[1]);
560 if(check_netname(netname, true)) {
561 fprintf(f, "NetName = %s\n", netname);
564 fprintf(f, "ConnectTo = %s\n", myname);
566 // Copy Broadcast and Mode
567 FILE *tc = fopen(tinc_conf, "r");
572 while(fgets(buf, sizeof(buf), tc)) {
573 if((!strncasecmp(buf, "Mode", 4) && strchr(" \t=", buf[4]))
574 || (!strncasecmp(buf, "Broadcast", 9) && strchr(" \t=", buf[9]))) {
577 // Make sure there is a newline character.
578 if(!strchr(buf, '\n')) {
587 fprintf(f, "#---------------------------------------------------------------#\n");
588 fprintf(f, "Name = %s\n", myname);
590 bool appended = append_host_config(f, myname, port);
594 fprintf(stderr, "Could not append my config to invitation file: %s.\n", strerror(errno));
599 // Call the inviation-created script
601 environment_init(&env);
602 environment_add(&env, "NODE=%s", argv[1]);
603 environment_add(&env, "INVITATION_FILE=%s", filename);
604 environment_add(&env, "INVITATION_URL=%s", url);
605 execute_script("invitation-created", &env);
606 environment_exit(&env);
615 static char cookie[18], hash[18];
616 static sptps_t sptps;
618 static size_t datalen;
619 static bool success = false;
621 static char *get_line(char *line, size_t linelen, const char **data) {
622 if(!data || !*data) {
631 const char *end = strchr(*data, '\n');
632 size_t len = end ? (size_t)(end - *data) : strlen(*data);
635 fprintf(stderr, "Maximum line length exceeded!\n");
639 if(len && !isprint((uint8_t) **data)) {
643 memcpy(line, *data, len);
655 static char *get_value(const char *data, const char *var) {
656 static char buf[1024];
658 char *line = get_line(buf, sizeof(buf), &data);
664 char *sep = line + strcspn(line, " \t=");
665 char *val = sep + strspn(sep, " \t");
668 val += 1 + strspn(val + 1, " \t");
673 if(strcasecmp(line, var)) {
680 static char *grep(const char *data, const char *var) {
683 const char *p = data;
684 size_t varlen = strlen(var);
686 // Skip all lines not starting with var
687 while(strncasecmp(p, var, varlen) || !strchr(" \t=", p[varlen])) {
702 p += strspn(p, " \t");
705 p += 1 + strspn(p + 1, " \t");
708 const char *e = strchr(p, '\n');
714 if((size_t)(e - p) >= sizeof(value)) {
715 fprintf(stderr, "Maximum line length exceeded!\n");
719 memcpy(value, p, e - p);
721 return xstrdup(value);
724 static bool finalize_join(void) {
725 const char *name = get_value(data, "Name");
728 fprintf(stderr, "No Name found in invitation!\n");
732 if(!check_id(name)) {
733 fprintf(stderr, "Invalid Name found in invitation!\n");
738 char *net = grep(data, "NetName");
743 if(!check_netname(netname, true)) {
744 fprintf(stderr, "Unsafe NetName found in invitation!\n");
750 bool ask_netname = false;
751 char temp_netname[32];
765 xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
766 xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
768 if(!access(tinc_conf, F_OK)) {
769 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
775 // Generate a random netname, ask for a better one later.
777 snprintf(temp_netname, sizeof(temp_netname), "join_%x", prng(UINT32_MAX));
778 netname = temp_netname;
782 if(mkdir(confbase, 0777) && errno != EEXIST) {
783 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
787 if(mkdir(hosts_dir, 0777) && errno != EEXIST) {
788 fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
792 FILE *f = fopen(tinc_conf, "w");
795 fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
799 fprintf(f, "Name = %s\n", name);
801 char filename[PATH_MAX];
802 snprintf(filename, sizeof(filename), "%s" SLASH "%s", hosts_dir, name);
803 FILE *fh = fopen(filename, "w");
806 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
811 snprintf(filename, sizeof(filename), "%s" SLASH "invitation-data", confbase);
812 FILE *finv = fopen(filename, "w");
814 if(!finv || fwrite(data, datalen, 1, finv) != 1) {
815 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
824 snprintf(filename, sizeof(filename), "%s" SLASH "tinc-up.invitation", confbase);
825 FILE *fup = fopen(filename, "w");
828 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
834 ifconfig_header(fup);
836 // Filter first chunk on approved keywords, split between tinc.conf and hosts/Name
837 // Generate a tinc-up script from Ifconfig and Route keywords.
838 // Other chunks go unfiltered to their respective host config files
839 const char *p = data;
842 static char line[1024];
844 while((l = get_line(line, sizeof(line), &p))) {
850 // Split line into variable and value
851 size_t len = strcspn(l, "\t =");
853 value += strspn(value, "\t ");
857 value += strspn(value, "\t ");
862 // Ignore lines with empty variable names
868 if(!strcasecmp(l, "Name")) {
869 if(strcmp(value, name)) {
874 } else if(!strcasecmp(l, "NetName")) {
878 // Check the list of known variables
882 for(i = 0; variables[i].name; i++) {
883 if(strcasecmp(l, variables[i].name)) {
891 // Handle Ifconfig and Route statements
893 if(!strcasecmp(l, "Ifconfig")) {
894 if(!strcasecmp(value, "dhcp")) {
896 } else if(!strcasecmp(value, "dhcp6")) {
898 } else if(!strcasecmp(value, "slaac")) {
901 ifconfig_address(fup, value);
905 } else if(!strcasecmp(l, "Route")) {
906 ifconfig_route(fup, value);
911 // Ignore unknown and unsafe variables
913 fprintf(stderr, "Ignoring unknown variable '%s' in invitation.\n", l);
915 } else if(!(variables[i].type & VAR_SAFE)) {
917 fprintf(stderr, "Warning: unsafe variable '%s' in invitation.\n", l);
919 fprintf(stderr, "Ignoring unsafe variable '%s' in invitation.\n", l);
924 // Copy the safe variable to the right config file
925 fprintf((variables[i].type & VAR_HOST) ? fh : f, "%s = %s\n", l, value);
929 bool valid_tinc_up = ifconfig_footer(fup);
932 while(l && !strcasecmp(l, "Name")) {
933 if(!check_id(value)) {
934 fprintf(stderr, "Invalid Name found in invitation.\n");
938 if(!strcmp(value, name)) {
939 fprintf(stderr, "Secondary chunk would overwrite our own host config file.\n");
943 snprintf(filename, sizeof(filename), "%s" SLASH "%s", hosts_dir, value);
944 f = fopen(filename, "w");
947 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
951 while((l = get_line(line, sizeof(line), &p))) {
952 if(!strcmp(l, "#---------------------------------------------------------------#")) {
956 size_t len = strcspn(l, "\t =");
958 if(len == 4 && !strncasecmp(l, "Name", 4)) {
960 value += strspn(value, "\t ");
964 value += strspn(value, "\t ");
978 // Generate our key and send a copy to the server
979 ecdsa_t *key = ecdsa_generate();
985 char *b64_pubkey = ecdsa_get_base64_public_key(key);
991 snprintf(filename, sizeof(filename), "%s" SLASH "ed25519_key.priv", confbase);
992 f = fopenmask(filename, "w", 0600);
998 if(!ecdsa_write_pem_private_key(key, f)) {
999 fprintf(stderr, "Error writing private key!\n");
1007 fprintf(fh, "Ed25519PublicKey = %s\n", b64_pubkey);
1009 sptps_send_record(&sptps, 1, b64_pubkey, strlen(b64_pubkey));
1013 #ifndef DISABLE_LEGACY
1014 rsa_t *rsa = rsa_generate(2048, 0x1001);
1015 snprintf(filename, sizeof(filename), "%s" SLASH "rsa_key.priv", confbase);
1016 f = fopenmask(filename, "w", 0600);
1018 if(!f || !rsa_write_pem_private_key(rsa, f)) {
1019 fprintf(stderr, "Could not write private RSA key\n");
1020 } else if(!rsa_write_pem_public_key(rsa, fh)) {
1021 fprintf(stderr, "Could not write public RSA key\n");
1035 if(ask_netname && tty) {
1036 fprintf(stderr, "Enter a new netname: ");
1038 if(!fgets(line, sizeof(line), stdin)) {
1039 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
1043 if(!*line || *line == '\n') {
1047 line[strlen(line) - 1] = 0;
1049 char newbase[PATH_MAX];
1051 if((size_t)snprintf(newbase, sizeof(newbase), CONFDIR SLASH "tinc" SLASH "%s", line) >= sizeof(newbase)) {
1052 fprintf(stderr, "Filename too long: " CONFDIR SLASH "tinc" SLASH "%s\n", line);
1056 if(rename(confbase, newbase)) {
1057 fprintf(stderr, "Error trying to rename %s to %s: %s\n", confbase, newbase, strerror(errno));
1065 char filename2[PATH_MAX];
1066 snprintf(filename, sizeof(filename), "%s" SLASH "tinc-up.invitation", confbase);
1069 snprintf(filename2, sizeof(filename2), "%s" SLASH "tinc-up.bat", confbase);
1071 snprintf(filename2, sizeof(filename2), "%s" SLASH "tinc-up", confbase);
1076 FILE *fup = fopen(filename, "r");
1079 fprintf(stderr, "\nPlease review the following tinc-up script:\n\n");
1083 while(fgets(buf, sizeof(buf), fup)) {
1092 fprintf(stderr, "\nDo you want to use this script [y]es/[n]o/[e]dit? ");
1093 response = tolower(getchar());
1094 } while(!strchr("yne", response));
1096 fprintf(stderr, "\n");
1098 if(response == 'e') {
1100 #ifndef HAVE_WINDOWS
1101 const char *editor = getenv("VISUAL");
1104 editor = getenv("EDITOR");
1111 xasprintf(&command, "\"%s\" \"%s\"", editor, filename);
1113 xasprintf(&command, "edit \"%s\"", filename);
1116 if(system(command)) {
1125 if(response == 'y') {
1126 rename(filename, filename2);
1127 chmod(filename2, 0755);
1128 fprintf(stderr, "tinc-up enabled.\n");
1130 fprintf(stderr, "tinc-up has been left disabled.\n");
1135 rename(filename, filename2);
1136 chmod(filename2, 0755);
1137 fprintf(stderr, "tinc-up enabled.\n");
1139 fprintf(stderr, "A tinc-up script was generated, but has been left disabled.\n");
1143 // A placeholder was generated.
1144 rename(filename, filename2);
1145 chmod(filename2, 0755);
1148 fprintf(stderr, "Configuration stored in: %s\n", confbase);
1154 static bool invitation_send(void *handle, uint8_t type, const void *vdata, size_t len) {
1157 const char *data = vdata;
1160 ssize_t result = send(sock, data, len, 0);
1162 if(result == -1 && sockwouldblock(sockerrno)) {
1164 } else if(result <= 0) {
1175 static bool invitation_receive(void *handle, uint8_t type, const void *msg, uint16_t len) {
1179 case SPTPS_HANDSHAKE:
1180 return sptps_send_record(&sptps, 0, cookie, sizeof(cookie));
1183 data = xrealloc(data, datalen + len + 1);
1184 memcpy(data + datalen, msg, len);
1190 return finalize_join();
1193 fprintf(stderr, "Invitation successfully accepted.\n");
1194 shutdown(sock, SHUT_RDWR);
1205 int cmd_join(int argc, char *argv[]) {
1211 fprintf(stderr, "Too many arguments!\n");
1215 // Make sure confbase exists and is accessible.
1216 if(!confbase_given && mkdir(confdir, 0755) && errno != EEXIST) {
1217 fprintf(stderr, "Could not create directory %s: %s\n", confdir, strerror(errno));
1221 if(mkdir(confbase, 0777) && errno != EEXIST) {
1222 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
1226 if(access(confbase, R_OK | W_OK | X_OK)) {
1227 fprintf(stderr, "No permission to write in directory %s: %s\n", confbase, strerror(errno));
1231 // If a netname or explicit configuration directory is specified, check for an existing tinc.conf.
1232 if((netname || confbasegiven) && !access(tinc_conf, F_OK)) {
1233 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
1237 // Either read the invitation from the command line or from stdin.
1241 invitation = argv[1];
1244 fprintf(stderr, "Enter invitation URL: ");
1249 if(!fgets(line, sizeof(line), stdin)) {
1250 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
1257 // Parse the invitation URL.
1260 char *slash = strchr(invitation, '/');
1268 if(strlen(slash) != 48) {
1272 char *address = invitation;
1275 if(*address == '[') {
1277 char *bracket = strchr(address, ']');
1285 if(bracket[1] == ':') {
1289 port = strchr(address, ':');
1296 if(!port || !*port) {
1297 static char default_port[] = "655";
1298 port = default_port;
1301 if(!b64decode_tinc(slash, hash, 24) || !b64decode_tinc(slash + 24, cookie, 24)) {
1305 // Generate a throw-away key for the invitation.
1306 ecdsa_t *key = ecdsa_generate();
1312 char *b64_pubkey = ecdsa_get_base64_public_key(key);
1314 // Connect to the tinc daemon mentioned in the URL.
1315 struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
1323 struct addrinfo *aip = NULL;
1339 sock = socket(aip->ai_family, aip->ai_socktype, aip->ai_protocol);
1342 fprintf(stderr, "Could not open socket: %s\n", strerror(errno));
1346 if(connect(sock, aip->ai_addr, aip->ai_addrlen)) {
1347 char *addrstr, *portstr;
1348 sockaddr2str((sockaddr_t *)aip->ai_addr, &addrstr, &portstr);
1349 fprintf(stderr, "Could not connect to %s port %s: %s\n", addrstr, portstr, strerror(errno));
1356 fprintf(stderr, "Connected to %s port %s...\n", address, port);
1358 // Tell him we have an invitation, and give him our throw-away key.
1359 ssize_t len = snprintf(line, sizeof(line), "0 ?%s %d.%d\n", b64_pubkey, PROT_MAJOR, PROT_MINOR);
1361 if(len <= 0 || (size_t)len >= sizeof(line)) {
1365 if(!sendline(sock, "0 ?%s %d.%d", b64_pubkey, PROT_MAJOR, 1)) {
1366 fprintf(stderr, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
1371 char hisname[4096] = "";
1372 int code, hismajor, hisminor = 0;
1374 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) {
1375 fprintf(stderr, "Cannot read greeting from peer\n");
1387 // Check if the hash of the key he gave us matches the hash in the URL.
1388 char *fingerprint = line + 2;
1391 if(sha512(fingerprint, strlen(fingerprint), hishash)) {
1392 fprintf(stderr, "Could not create digest\n%s\n", line + 2);
1397 if(memcmp(hishash, hash, 18)) {
1398 fprintf(stderr, "Peer has an invalid key!\n%s\n", line + 2);
1404 ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
1411 // Start an SPTPS session
1412 if(!sptps_start(&sptps, NULL, true, false, key, hiskey, "tinc invitation", 15, invitation_send, invitation_receive)) {
1418 // Feed rest of input buffer to SPTPS
1419 if(!sptps_receive_data(&sptps, buffer, blen)) {
1424 while((len = recv(sock, line, sizeof(line), 0))) {
1426 if(sockwouldblock(sockerrno)) {
1432 // If socket has been shut down, recv() on Windows returns -1 and sets sockerrno
1433 // to WSAESHUTDOWN, while on UNIX-like operating systems recv() returns 0, so we
1434 // have to do an explicit check here.
1435 if(sockshutdown(sockerrno)) {
1440 fprintf(stderr, "Error reading data from %s port %s: %s\n", address, port, sockstrerror(sockerrno));
1448 size_t done = sptps_receive_data(&sptps, p, len);
1455 len -= (ssize_t) done;
1467 fprintf(stderr, "Invitation cancelled.\n");
1474 fprintf(stderr, "Invalid invitation URL.\n");