]> git.meshlink.io Git - meshlink/blob - src/meshlink.c
Enable Catta by default, as documented.
[meshlink] / src / meshlink.c
1 /*
2     meshlink.c -- Implementation of the MeshLink API.
3     Copyright (C) 2014, 2017 Guus Sliepen <guus@meshlink.io>
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 #define VAR_SERVER 1    /* Should be in meshlink.conf */
20 #define VAR_HOST 2      /* Can be in host config file */
21 #define VAR_MULTIPLE 4  /* Multiple statements allowed */
22 #define VAR_OBSOLETE 8  /* Should not be used anymore */
23 #define VAR_SAFE 16     /* Variable is safe when accepting invitations */
24 #define MAX_ADDRESS_LENGTH 45 /* Max length of an (IPv6) address */
25 #define MAX_PORT_LENGTH 5 /* 0-65535 */
26 typedef struct {
27         const char *name;
28         int type;
29 } var_t;
30
31 #include "system.h"
32 #include <pthread.h>
33
34 #include "crypto.h"
35 #include "ecdsagen.h"
36 #include "logger.h"
37 #include "meshlink_internal.h"
38 #include "netutl.h"
39 #include "node.h"
40 #include "protocol.h"
41 #include "route.h"
42 #include "sockaddr.h"
43 #include "utils.h"
44 #include "xalloc.h"
45 #include "ed25519/sha512.h"
46 #include "discovery.h"
47
48 #ifndef MSG_NOSIGNAL
49 #define MSG_NOSIGNAL 0
50 #endif
51
52 __thread meshlink_errno_t meshlink_errno;
53 meshlink_log_cb_t global_log_cb;
54 meshlink_log_level_t global_log_level;
55
56 //TODO: this can go away completely
57 const var_t variables[] = {
58         /* Server configuration */
59         {"AddressFamily", VAR_SERVER},
60         {"AutoConnect", VAR_SERVER | VAR_SAFE},
61         {"BindToAddress", VAR_SERVER | VAR_MULTIPLE},
62         {"BindToInterface", VAR_SERVER},
63         {"Broadcast", VAR_SERVER | VAR_SAFE},
64         {"ConnectTo", VAR_SERVER | VAR_MULTIPLE | VAR_SAFE},
65         {"DecrementTTL", VAR_SERVER},
66         {"Device", VAR_SERVER},
67         {"DeviceType", VAR_SERVER},
68         {"DirectOnly", VAR_SERVER},
69         {"ECDSAPrivateKeyFile", VAR_SERVER},
70         {"ExperimentalProtocol", VAR_SERVER},
71         {"Forwarding", VAR_SERVER},
72         {"GraphDumpFile", VAR_SERVER | VAR_OBSOLETE},
73         {"Hostnames", VAR_SERVER},
74         {"IffOneQueue", VAR_SERVER},
75         {"Interface", VAR_SERVER},
76         {"KeyExpire", VAR_SERVER},
77         {"ListenAddress", VAR_SERVER | VAR_MULTIPLE},
78         {"LocalDiscovery", VAR_SERVER},
79         {"MACExpire", VAR_SERVER},
80         {"MaxConnectionBurst", VAR_SERVER},
81         {"MaxOutputBufferSize", VAR_SERVER},
82         {"MaxTimeout", VAR_SERVER},
83         {"Mode", VAR_SERVER | VAR_SAFE},
84         {"Name", VAR_SERVER},
85         {"PingInterval", VAR_SERVER},
86         {"PingTimeout", VAR_SERVER},
87         {"PriorityInheritance", VAR_SERVER},
88         {"PrivateKey", VAR_SERVER | VAR_OBSOLETE},
89         {"PrivateKeyFile", VAR_SERVER},
90         {"ProcessPriority", VAR_SERVER},
91         {"Proxy", VAR_SERVER},
92         {"ReplayWindow", VAR_SERVER},
93         {"ScriptsExtension", VAR_SERVER},
94         {"ScriptsInterpreter", VAR_SERVER},
95         {"StrictSubnets", VAR_SERVER},
96         {"TunnelServer", VAR_SERVER},
97         {"VDEGroup", VAR_SERVER},
98         {"VDEPort", VAR_SERVER},
99         /* Host configuration */
100         {"Address", VAR_HOST | VAR_MULTIPLE},
101         {"Cipher", VAR_SERVER | VAR_HOST},
102         {"ClampMSS", VAR_SERVER | VAR_HOST},
103         {"Compression", VAR_SERVER | VAR_HOST},
104         {"Digest", VAR_SERVER | VAR_HOST},
105         {"ECDSAPublicKey", VAR_HOST},
106         {"ECDSAPublicKeyFile", VAR_SERVER | VAR_HOST},
107         {"IndirectData", VAR_SERVER | VAR_HOST},
108         {"MACLength", VAR_SERVER | VAR_HOST},
109         {"PMTU", VAR_SERVER | VAR_HOST},
110         {"PMTUDiscovery", VAR_SERVER | VAR_HOST},
111         {"Port", VAR_HOST},
112         {"PublicKey", VAR_HOST | VAR_OBSOLETE},
113         {"PublicKeyFile", VAR_SERVER | VAR_HOST | VAR_OBSOLETE},
114         {"Subnet", VAR_HOST | VAR_MULTIPLE | VAR_SAFE},
115         {"TCPOnly", VAR_SERVER | VAR_HOST},
116         {"Weight", VAR_HOST | VAR_SAFE},
117         {NULL, 0}
118 };
119
120 static bool fcopy(FILE *out, const char *filename) {
121         FILE *in = fopen(filename, "r");
122
123         if(!in) {
124                 logger(NULL, MESHLINK_ERROR, "Could not open %s: %s\n", filename, strerror(errno));
125                 return false;
126         }
127
128         char buf[1024];
129         size_t len;
130
131         while((len = fread(buf, 1, sizeof(buf), in))) {
132                 fwrite(buf, len, 1, out);
133         }
134
135         fclose(in);
136         return true;
137 }
138
139 static int rstrip(char *value) {
140         int len = strlen(value);
141
142         while(len && strchr("\t\r\n ", value[len - 1])) {
143                 value[--len] = 0;
144         }
145
146         return len;
147 }
148
149 static void scan_for_hostname(const char *filename, char **hostname, char **port) {
150         char line[4096];
151
152         if(!filename || (*hostname && *port)) {
153                 return;
154         }
155
156         FILE *f = fopen(filename, "r");
157
158         if(!f) {
159                 return;
160         }
161
162         while(fgets(line, sizeof(line), f)) {
163                 if(!rstrip(line)) {
164                         continue;
165                 }
166
167                 char *p = line, *q;
168                 p += strcspn(p, "\t =");
169
170                 if(!*p) {
171                         continue;
172                 }
173
174                 q = p + strspn(p, "\t ");
175
176                 if(*q == '=') {
177                         q += 1 + strspn(q + 1, "\t ");
178                 }
179
180                 // q is now pointing to the hostname
181                 *p = 0;
182                 p = q + strcspn(q, "\t ");
183
184                 if(*p) {
185                         *p++ = 0;
186                 }
187
188                 p += strspn(p, "\t ");
189                 p[strcspn(p, "\t ")] = 0;
190                 // p is now pointing to the port
191
192                 // Check that the hostname is a symbolic name (it's not a numeric IPv4 or IPv6 address)
193                 if(!q[strspn(q, "0123456789.")] || strchr(q, ':')) {
194                         continue;
195                 }
196
197                 if(!*port && !strcasecmp(line, "Port")) {
198                         *port = xstrdup(q);
199                 } else if(!*hostname && !strcasecmp(line, "Address")) {
200                         *hostname = xstrdup(q);
201
202                         if(*p) {
203                                 free(*port);
204                                 *port = xstrdup(p);
205                         }
206                 }
207
208                 if(*hostname && *port) {
209                         break;
210                 }
211         }
212
213         fclose(f);
214 }
215
216 static bool is_valid_hostname(const char *hostname) {
217         for(const char *p = hostname; *p; p++) {
218                 if(!(isalnum(*p) || *p == '-' || *p == '.' || *p == ':')) {
219                         return false;
220                 }
221         }
222
223         return true;
224 }
225
226 static void set_timeout(int sock, int timeout) {
227 #ifdef _WIN32
228         DWORD tv = timeout;
229 #else
230         struct timeval tv;
231         tv.tv_sec = timeout / 1000;
232         tv.tv_usec = (timeout - tv.tv_sec * 1000) * 1000;
233 #endif
234         setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
235         setsockopt(sock, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv));
236 }
237
238 // Find out what local address a socket would use if we connect to the given address.
239 // We do this using connect() on a UDP socket, so the kernel has to resolve the address
240 // of both endpoints, but this will actually not send any UDP packet.
241 static bool getlocaladdrname(char *destaddr, char *host, socklen_t hostlen) {
242         struct addrinfo *rai = NULL;
243         const struct addrinfo hint = {
244                 .ai_family = AF_UNSPEC,
245                 .ai_socktype = SOCK_DGRAM,
246                 .ai_protocol = IPPROTO_UDP,
247         };
248
249         if(getaddrinfo(destaddr, "80", &hint, &rai) || !rai) {
250                 return false;
251         }
252
253         int sock = socket(rai->ai_family, rai->ai_socktype, rai->ai_protocol);
254
255         if(sock == -1) {
256                 freeaddrinfo(rai);
257                 return false;
258         }
259
260         if(connect(sock, rai->ai_addr, rai->ai_addrlen) && !sockwouldblock(errno)) {
261                 freeaddrinfo(rai);
262                 return false;
263         }
264
265         freeaddrinfo(rai);
266
267         struct sockaddr_storage sn;
268         socklen_t sl = sizeof(sn);
269
270         if(getsockname(sock, (struct sockaddr *)&sn, &sl)) {
271                 return false;
272         }
273
274         if(getnameinfo((struct sockaddr *)&sn, sl, host, hostlen, NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV)) {
275                 return false;
276         }
277
278         return true;
279 }
280
281 char *meshlink_get_external_address(meshlink_handle_t *mesh) {
282         return meshlink_get_external_address_for_family(mesh, AF_UNSPEC);
283 }
284
285 char *meshlink_get_external_address_for_family(meshlink_handle_t *mesh, int family) {
286         char *hostname = NULL;
287
288         logger(mesh, MESHLINK_DEBUG, "Trying to discover externally visible hostname...\n");
289         struct addrinfo *ai = str2addrinfo("meshlink.io", "80", SOCK_STREAM);
290         static const char request[] = "GET http://www.meshlink.io/host.cgi HTTP/1.0\r\n\r\n";
291         char line[256];
292
293         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
294                 if(family != AF_UNSPEC && aip->ai_family != family) {
295                         continue;
296                 }
297
298                 int s = socket(aip->ai_family, aip->ai_socktype, aip->ai_protocol);
299
300                 if(s >= 0) {
301                         set_timeout(s, 5000);
302
303                         if(connect(s, aip->ai_addr, aip->ai_addrlen)) {
304                                 closesocket(s);
305                                 s = -1;
306                         }
307                 }
308
309                 if(s >= 0) {
310                         send(s, request, sizeof(request) - 1, 0);
311                         int len = recv(s, line, sizeof(line) - 1, MSG_WAITALL);
312
313                         if(len > 0) {
314                                 line[len] = 0;
315
316                                 if(line[len - 1] == '\n') {
317                                         line[--len] = 0;
318                                 }
319
320                                 char *p = strrchr(line, '\n');
321
322                                 if(p && p[1]) {
323                                         hostname = xstrdup(p + 1);
324                                 }
325                         }
326
327                         closesocket(s);
328
329                         if(hostname) {
330                                 break;
331                         }
332                 }
333         }
334
335         if(ai) {
336                 freeaddrinfo(ai);
337         }
338
339         // Check that the hostname is reasonable
340         if(hostname && !is_valid_hostname(hostname)) {
341                 free(hostname);
342                 hostname = NULL;
343         }
344
345         // If there is no hostname, determine the address used for an outgoing connection.
346         if(!hostname) {
347                 char localaddr[NI_MAXHOST];
348                 bool success = false;
349
350                 if(family == AF_INET) {
351                         success = getlocaladdrname("93.184.216.34", localaddr, sizeof(localaddr));
352                 } else if(family == AF_INET6) {
353                         success = getlocaladdrname("2606:2800:220:1:248:1893:25c8:1946", localaddr, sizeof(localaddr));
354                 }
355
356                 if(success) {
357                         hostname = xstrdup(localaddr);
358                 }
359         }
360
361         if(!hostname) {
362                 meshlink_errno = MESHLINK_ERESOLV;
363         }
364
365         return hostname;
366 }
367
368 // This gets the hostname part for use in invitation URLs
369 static char *get_my_hostname(meshlink_handle_t *mesh) {
370         char *hostname[2] = {NULL};
371         char *port = NULL;
372         char *hostport = NULL;
373         char *name = mesh->self->name;
374         char filename[PATH_MAX] = "";
375
376         // Use first Address statement in own host config file
377         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
378         scan_for_hostname(filename, &hostname[0], &port);
379
380         if(hostname[0]) {
381                 goto done;
382         }
383
384         hostname[0] = meshlink_get_external_address_for_family(mesh, AF_INET);
385         hostname[1] = meshlink_get_external_address_for_family(mesh, AF_INET6);
386
387         if(!hostname[0] && !hostname[1]) {
388                 return NULL;
389         }
390
391         if(!strcmp(hostname[0], hostname[1])) {
392                 free(hostname[1]);
393                 hostname[1] = NULL;
394         }
395
396         port = xstrdup(mesh->myport);
397
398         for(int i = 0; i < 2; i++) {
399                 if(hostname[i]) {
400                         char *tmphostport;
401                         xasprintf(&tmphostport, "%s %s", hostname[i], port);
402                         append_config_file(mesh, mesh->self->name, "Address", tmphostport);
403                         free(tmphostport);
404                 }
405         }
406
407 done:
408
409         for(int i = 0; i < 2; i++) {
410                 if(!hostname[i]) {
411                         continue;
412                 }
413
414                 char *newhostport;
415                 xasprintf(&newhostport, (strchr(hostname[i], ':') ? "%s%s[%s]" : "%s%s%s"), hostport ? hostport : "", hostport ? "," : "", hostname[i]);
416                 free(hostname[i]);
417                 free(hostport);
418                 hostport = newhostport;
419         }
420
421         if(port) {
422                 char *newhostport;
423                 xasprintf(&newhostport, "%s:%s", hostport, port);
424                 free(port);
425                 free(hostport);
426                 hostport = newhostport;
427         }
428
429         return hostport;
430 }
431
432 static char *get_line(const char **data) {
433         if(!data || !*data) {
434                 return NULL;
435         }
436
437         if(! **data) {
438                 *data = NULL;
439                 return NULL;
440         }
441
442         static char line[1024];
443         const char *end = strchr(*data, '\n');
444         size_t len = end ? (size_t)(end - *data) : strlen(*data);
445
446         if(len >= sizeof(line)) {
447                 logger(NULL, MESHLINK_ERROR, "Maximum line length exceeded!\n");
448                 return NULL;
449         }
450
451         if(len && !isprint(**data)) {
452                 abort();
453         }
454
455         memcpy(line, *data, len);
456         line[len] = 0;
457
458         if(end) {
459                 *data = end + 1;
460         } else {
461                 *data = NULL;
462         }
463
464         return line;
465 }
466
467 static char *get_value(const char *data, const char *var) {
468         char *line = get_line(&data);
469
470         if(!line) {
471                 return NULL;
472         }
473
474         char *sep = line + strcspn(line, " \t=");
475         char *val = sep + strspn(sep, " \t");
476
477         if(*val == '=') {
478                 val += 1 + strspn(val + 1, " \t");
479         }
480
481         *sep = 0;
482
483         if(strcasecmp(line, var)) {
484                 return NULL;
485         }
486
487         return val;
488 }
489
490 static bool try_bind(int port) {
491         struct addrinfo *ai = NULL;
492         struct addrinfo hint = {
493                 .ai_flags = AI_PASSIVE,
494                 .ai_family = AF_UNSPEC,
495                 .ai_socktype = SOCK_STREAM,
496                 .ai_protocol = IPPROTO_TCP,
497         };
498
499         char portstr[16];
500         snprintf(portstr, sizeof(portstr), "%d", port);
501
502         if(getaddrinfo(NULL, portstr, &hint, &ai) || !ai) {
503                 return false;
504         }
505
506         while(ai) {
507                 int fd = socket(ai->ai_family, SOCK_STREAM, IPPROTO_TCP);
508
509                 if(!fd) {
510                         freeaddrinfo(ai);
511                         return false;
512                 }
513
514                 int result = bind(fd, ai->ai_addr, ai->ai_addrlen);
515                 closesocket(fd);
516
517                 if(result) {
518                         freeaddrinfo(ai);
519                         return false;
520                 }
521
522                 ai = ai->ai_next;
523         }
524
525         freeaddrinfo(ai);
526         return true;
527 }
528
529 int check_port(meshlink_handle_t *mesh) {
530         for(int i = 0; i < 1000; i++) {
531                 int port = 0x1000 + (rand() & 0x7fff);
532
533                 if(try_bind(port)) {
534                         char filename[PATH_MAX];
535                         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->name);
536                         FILE *f = fopen(filename, "a");
537
538                         if(!f) {
539                                 meshlink_errno = MESHLINK_ESTORAGE;
540                                 logger(mesh, MESHLINK_DEBUG, "Could not store Port.\n");
541                                 return 0;
542                         }
543
544                         fprintf(f, "Port = %d\n", port);
545                         fclose(f);
546                         return port;
547                 }
548         }
549
550         meshlink_errno = MESHLINK_ENETWORK;
551         logger(mesh, MESHLINK_DEBUG, "Could not find any available network port.\n");
552         return 0;
553 }
554
555 static bool finalize_join(meshlink_handle_t *mesh) {
556         char *name = xstrdup(get_value(mesh->data, "Name"));
557
558         if(!name) {
559                 logger(mesh, MESHLINK_DEBUG, "No Name found in invitation!\n");
560                 return false;
561         }
562
563         if(!check_id(name)) {
564                 logger(mesh, MESHLINK_DEBUG, "Invalid Name found in invitation: %s!\n", name);
565                 return false;
566         }
567
568         char filename[PATH_MAX];
569         snprintf(filename, sizeof(filename), "%s" SLASH "meshlink.conf", mesh->confbase);
570
571         FILE *f = fopen(filename, "w");
572
573         if(!f) {
574                 logger(mesh, MESHLINK_DEBUG, "Could not create file %s: %s\n", filename, strerror(errno));
575                 return false;
576         }
577
578         fprintf(f, "Name = %s\n", name);
579
580         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
581         FILE *fh = fopen(filename, "w");
582
583         if(!fh) {
584                 logger(mesh, MESHLINK_DEBUG, "Could not create file %s: %s\n", filename, strerror(errno));
585                 fclose(f);
586                 return false;
587         }
588
589         // Filter first chunk on approved keywords, split between meshlink.conf and hosts/Name
590         // Other chunks go unfiltered to their respective host config files
591         const char *p = mesh->data;
592         char *l, *value;
593
594         while((l = get_line(&p))) {
595                 // Ignore comments
596                 if(*l == '#') {
597                         continue;
598                 }
599
600                 // Split line into variable and value
601                 int len = strcspn(l, "\t =");
602                 value = l + len;
603                 value += strspn(value, "\t ");
604
605                 if(*value == '=') {
606                         value++;
607                         value += strspn(value, "\t ");
608                 }
609
610                 l[len] = 0;
611
612                 // Is it a Name?
613                 if(!strcasecmp(l, "Name"))
614                         if(strcmp(value, name)) {
615                                 break;
616                         } else {
617                                 continue;
618                         } else if(!strcasecmp(l, "NetName")) {
619                         continue;
620                 }
621
622                 // Check the list of known variables //TODO: most variables will not be available in meshlink, only name and key will be absolutely necessary
623                 bool found = false;
624                 int i;
625
626                 for(i = 0; variables[i].name; i++) {
627                         if(strcasecmp(l, variables[i].name)) {
628                                 continue;
629                         }
630
631                         found = true;
632                         break;
633                 }
634
635                 // Ignore unknown and unsafe variables
636                 if(!found) {
637                         logger(mesh, MESHLINK_DEBUG, "Ignoring unknown variable '%s' in invitation.\n", l);
638                         continue;
639                 } else if(!(variables[i].type & VAR_SAFE)) {
640                         logger(mesh, MESHLINK_DEBUG, "Ignoring unsafe variable '%s' in invitation.\n", l);
641                         continue;
642                 }
643
644                 // Copy the safe variable to the right config file
645                 fprintf(variables[i].type & VAR_HOST ? fh : f, "%s = %s\n", l, value);
646         }
647
648         fclose(f);
649
650         while(l && !strcasecmp(l, "Name")) {
651                 if(!check_id(value)) {
652                         logger(mesh, MESHLINK_DEBUG, "Invalid Name found in invitation.\n");
653                         return false;
654                 }
655
656                 if(!strcmp(value, name)) {
657                         logger(mesh, MESHLINK_DEBUG, "Secondary chunk would overwrite our own host config file.\n");
658                         return false;
659                 }
660
661                 snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, value);
662                 f = fopen(filename, "w");
663
664                 if(!f) {
665                         logger(mesh, MESHLINK_DEBUG, "Could not create file %s: %s\n", filename, strerror(errno));
666                         return false;
667                 }
668
669                 while((l = get_line(&p))) {
670                         if(!strcmp(l, "#---------------------------------------------------------------#")) {
671                                 continue;
672                         }
673
674                         int len = strcspn(l, "\t =");
675
676                         if(len == 4 && !strncasecmp(l, "Name", 4)) {
677                                 value = l + len;
678                                 value += strspn(value, "\t ");
679
680                                 if(*value == '=') {
681                                         value++;
682                                         value += strspn(value, "\t ");
683                                 }
684
685                                 l[len] = 0;
686                                 break;
687                         }
688
689                         fputs(l, f);
690                         fputc('\n', f);
691                 }
692
693                 fclose(f);
694         }
695
696         char *b64key = ecdsa_get_base64_public_key(mesh->self->connection->ecdsa);
697
698         if(!b64key) {
699                 fclose(fh);
700                 return false;
701         }
702
703         fprintf(fh, "ECDSAPublicKey = %s\n", b64key);
704         fprintf(fh, "Port = %s\n", mesh->myport);
705
706         fclose(fh);
707
708         sptps_send_record(&(mesh->sptps), 1, b64key, strlen(b64key));
709         free(b64key);
710
711         free(mesh->self->name);
712         free(mesh->self->connection->name);
713         mesh->self->name = xstrdup(name);
714         mesh->self->connection->name = name;
715
716         logger(mesh, MESHLINK_DEBUG, "Configuration stored in: %s\n", mesh->confbase);
717
718         load_all_nodes(mesh);
719
720         return true;
721 }
722
723 static bool invitation_send(void *handle, uint8_t type, const void *data, size_t len) {
724         (void)type;
725         meshlink_handle_t *mesh = handle;
726         const char *ptr = data;
727
728         while(len) {
729                 int result = send(mesh->sock, ptr, len, 0);
730
731                 if(result == -1 && errno == EINTR) {
732                         continue;
733                 } else if(result <= 0) {
734                         return false;
735                 }
736
737                 ptr += result;
738                 len -= result;
739         }
740
741         return true;
742 }
743
744 static bool invitation_receive(void *handle, uint8_t type, const void *msg, uint16_t len) {
745         meshlink_handle_t *mesh = handle;
746
747         switch(type) {
748         case SPTPS_HANDSHAKE:
749                 return sptps_send_record(&(mesh->sptps), 0, mesh->cookie, sizeof(mesh)->cookie);
750
751         case 0:
752                 mesh->data = xrealloc(mesh->data, mesh->thedatalen + len + 1);
753                 memcpy(mesh->data + mesh->thedatalen, msg, len);
754                 mesh->thedatalen += len;
755                 mesh->data[mesh->thedatalen] = 0;
756                 break;
757
758         case 1:
759                 mesh->thedatalen = 0;
760                 return finalize_join(mesh);
761
762         case 2:
763                 logger(mesh, MESHLINK_DEBUG, "Invitation succesfully accepted.\n");
764                 shutdown(mesh->sock, SHUT_RDWR);
765                 mesh->success = true;
766                 break;
767
768         default:
769                 return false;
770         }
771
772         return true;
773 }
774
775 static bool recvline(meshlink_handle_t *mesh, size_t len) {
776         char *newline = NULL;
777
778         if(!mesh->sock) {
779                 abort();
780         }
781
782         while(!(newline = memchr(mesh->buffer, '\n', mesh->blen))) {
783                 int result = recv(mesh->sock, mesh->buffer + mesh->blen, sizeof(mesh)->buffer - mesh->blen, 0);
784
785                 if(result == -1 && errno == EINTR) {
786                         continue;
787                 } else if(result <= 0) {
788                         return false;
789                 }
790
791                 mesh->blen += result;
792         }
793
794         if((size_t)(newline - mesh->buffer) >= len) {
795                 return false;
796         }
797
798         len = newline - mesh->buffer;
799
800         memcpy(mesh->line, mesh->buffer, len);
801         mesh->line[len] = 0;
802         memmove(mesh->buffer, newline + 1, mesh->blen - len - 1);
803         mesh->blen -= len + 1;
804
805         return true;
806 }
807 static bool sendline(int fd, char *format, ...) {
808         static char buffer[4096];
809         char *p = buffer;
810         int blen = 0;
811         va_list ap;
812
813         va_start(ap, format);
814         blen = vsnprintf(buffer, sizeof(buffer), format, ap);
815         va_end(ap);
816
817         if(blen < 1 || (size_t)blen >= sizeof(buffer)) {
818                 return false;
819         }
820
821         buffer[blen] = '\n';
822         blen++;
823
824         while(blen) {
825                 int result = send(fd, p, blen, MSG_NOSIGNAL);
826
827                 if(result == -1 && errno == EINTR) {
828                         continue;
829                 } else if(result <= 0) {
830                         return false;
831                 }
832
833                 p += result;
834                 blen -= result;
835         }
836
837         return true;
838 }
839
840 static const char *errstr[] = {
841         [MESHLINK_OK] = "No error",
842         [MESHLINK_EINVAL] = "Invalid argument",
843         [MESHLINK_ENOMEM] = "Out of memory",
844         [MESHLINK_ENOENT] = "No such node",
845         [MESHLINK_EEXIST] = "Node already exists",
846         [MESHLINK_EINTERNAL] = "Internal error",
847         [MESHLINK_ERESOLV] = "Could not resolve hostname",
848         [MESHLINK_ESTORAGE] = "Storage error",
849         [MESHLINK_ENETWORK] = "Network error",
850         [MESHLINK_EPEER] = "Error communicating with peer",
851 };
852
853 const char *meshlink_strerror(meshlink_errno_t err) {
854         if((int)err < 0 || err >= sizeof(errstr) / sizeof(*errstr)) {
855                 return "Invalid error code";
856         }
857
858         return errstr[err];
859 }
860
861 static bool ecdsa_keygen(meshlink_handle_t *mesh) {
862         ecdsa_t *key;
863         FILE *f;
864         char pubname[PATH_MAX], privname[PATH_MAX];
865
866         logger(mesh, MESHLINK_DEBUG, "Generating ECDSA keypair:\n");
867
868         if(!(key = ecdsa_generate())) {
869                 logger(mesh, MESHLINK_DEBUG, "Error during key generation!\n");
870                 meshlink_errno = MESHLINK_EINTERNAL;
871                 return false;
872         } else {
873                 logger(mesh, MESHLINK_DEBUG, "Done.\n");
874         }
875
876         if(snprintf(privname, sizeof(privname), "%s" SLASH "ecdsa_key.priv", mesh->confbase) >= PATH_MAX) {
877                 logger(mesh, MESHLINK_DEBUG, "Filename too long: %s" SLASH "ecdsa_key.priv\n", mesh->confbase);
878                 meshlink_errno = MESHLINK_ESTORAGE;
879                 return false;
880         }
881
882         f = fopen(privname, "wb");
883
884         if(!f) {
885                 meshlink_errno = MESHLINK_ESTORAGE;
886                 return false;
887         }
888
889 #ifdef HAVE_FCHMOD
890         fchmod(fileno(f), 0600);
891 #endif
892
893         if(!ecdsa_write_pem_private_key(key, f)) {
894                 logger(mesh, MESHLINK_DEBUG, "Error writing private key!\n");
895                 ecdsa_free(key);
896                 fclose(f);
897                 meshlink_errno = MESHLINK_EINTERNAL;
898                 return false;
899         }
900
901         fclose(f);
902
903         snprintf(pubname, sizeof(pubname), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->name);
904         f = fopen(pubname, "a");
905
906         if(!f) {
907                 meshlink_errno = MESHLINK_ESTORAGE;
908                 return false;
909         }
910
911         char *pubkey = ecdsa_get_base64_public_key(key);
912         fprintf(f, "ECDSAPublicKey = %s\n", pubkey);
913         free(pubkey);
914
915         fclose(f);
916         ecdsa_free(key);
917
918         return true;
919 }
920
921 static struct timeval idle(event_loop_t *loop, void *data) {
922         (void)loop;
923         meshlink_handle_t *mesh = data;
924         struct timeval t, tmin = {3600, 0};
925
926         for splay_each(node_t, n, mesh->nodes) {
927                 if(!n->utcp) {
928                         continue;
929                 }
930
931                 t = utcp_timeout(n->utcp);
932
933                 if(timercmp(&t, &tmin, <)) {
934                         tmin = t;
935                 }
936         }
937
938         return tmin;
939 }
940
941 // Get our local address(es) by simulating connecting to an Internet host.
942 static void add_local_addresses(meshlink_handle_t *mesh) {
943         char host[NI_MAXHOST];
944         char entry[MAX_STRING_SIZE];
945
946         // IPv4 example.org
947
948         if(getlocaladdrname("93.184.216.34", host, sizeof(host))) {
949                 snprintf(entry, sizeof(entry), "%s %s", host, mesh->myport);
950                 append_config_file(mesh, mesh->name, "Address", entry);
951         }
952
953         // IPv6 example.org
954
955         if(getlocaladdrname("2606:2800:220:1:248:1893:25c8:1946", host, sizeof(host))) {
956                 snprintf(entry, sizeof(entry), "%s %s", host, mesh->myport);
957                 append_config_file(mesh, mesh->name, "Address", entry);
958         }
959 }
960
961 static bool meshlink_setup(meshlink_handle_t *mesh) {
962         if(mkdir(mesh->confbase, 0777) && errno != EEXIST) {
963                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", mesh->confbase, strerror(errno));
964                 meshlink_errno = MESHLINK_ESTORAGE;
965                 return false;
966         }
967
968         char filename[PATH_MAX];
969         snprintf(filename, sizeof(filename), "%s" SLASH "hosts", mesh->confbase);
970
971         if(mkdir(filename, 0777) && errno != EEXIST) {
972                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", filename, strerror(errno));
973                 meshlink_errno = MESHLINK_ESTORAGE;
974                 return false;
975         }
976
977         snprintf(filename, sizeof(filename), "%s" SLASH "meshlink.conf", mesh->confbase);
978
979         if(!access(filename, F_OK)) {
980                 logger(mesh, MESHLINK_DEBUG, "Configuration file %s already exists!\n", filename);
981                 meshlink_errno = MESHLINK_EEXIST;
982                 return false;
983         }
984
985         FILE *f = fopen(filename, "w");
986
987         if(!f) {
988                 logger(mesh, MESHLINK_DEBUG, "Could not create file %s: %s\n", filename, strerror(errno));
989                 meshlink_errno = MESHLINK_ESTORAGE;
990                 return false;
991         }
992
993         fprintf(f, "Name = %s\n", mesh->name);
994         fclose(f);
995
996         if(!ecdsa_keygen(mesh)) {
997                 meshlink_errno = MESHLINK_EINTERNAL;
998                 unlink(filename);
999                 return false;
1000         }
1001
1002         if(check_port(mesh) == 0) {
1003                 meshlink_errno = MESHLINK_ENETWORK;
1004                 unlink(filename);
1005                 return false;
1006         }
1007
1008         return true;
1009 }
1010
1011 meshlink_handle_t *meshlink_open(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
1012         // Validate arguments provided by the application
1013         bool usingname = false;
1014
1015         logger(NULL, MESHLINK_DEBUG, "meshlink_open called\n");
1016
1017         if(!confbase || !*confbase) {
1018                 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
1019                 meshlink_errno = MESHLINK_EINVAL;
1020                 return NULL;
1021         }
1022
1023         if(!appname || !*appname) {
1024                 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
1025                 meshlink_errno = MESHLINK_EINVAL;
1026                 return NULL;
1027         }
1028
1029         if(!name || !*name) {
1030                 logger(NULL, MESHLINK_ERROR, "No name given!\n");
1031                 //return NULL;
1032         } else { //check name only if there is a name != NULL
1033
1034                 if(!check_id(name)) {
1035                         logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
1036                         meshlink_errno = MESHLINK_EINVAL;
1037                         return NULL;
1038                 } else {
1039                         usingname = true;
1040                 }
1041         }
1042
1043         if((int)devclass < 0 || devclass > _DEV_CLASS_MAX) {
1044                 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
1045                 meshlink_errno = MESHLINK_EINVAL;
1046                 return NULL;
1047         }
1048
1049         meshlink_handle_t *mesh = xzalloc(sizeof(meshlink_handle_t));
1050         mesh->confbase = xstrdup(confbase);
1051         mesh->appname = xstrdup(appname);
1052         mesh->devclass = devclass;
1053         mesh->discovery = true;
1054
1055         if(usingname) {
1056                 mesh->name = xstrdup(name);
1057         }
1058
1059         // initialize mutex
1060         pthread_mutexattr_t attr;
1061         pthread_mutexattr_init(&attr);
1062         pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
1063         pthread_mutex_init(&(mesh->mesh_mutex), &attr);
1064
1065         mesh->threadstarted = false;
1066         event_loop_init(&mesh->loop);
1067         mesh->loop.data = mesh;
1068
1069         meshlink_queue_init(&mesh->outpacketqueue);
1070
1071         // Check whether meshlink.conf already exists
1072
1073         char filename[PATH_MAX];
1074         snprintf(filename, sizeof(filename), "%s" SLASH "meshlink.conf", confbase);
1075
1076         if(access(filename, R_OK)) {
1077                 if(errno == ENOENT) {
1078                         // If not, create it
1079                         if(!meshlink_setup(mesh)) {
1080                                 // meshlink_errno is set by meshlink_setup()
1081                                 return NULL;
1082                         }
1083                 } else {
1084                         logger(NULL, MESHLINK_ERROR, "Cannot not read from %s: %s\n", filename, strerror(errno));
1085                         meshlink_close(mesh);
1086                         meshlink_errno = MESHLINK_ESTORAGE;
1087                         return NULL;
1088                 }
1089         }
1090
1091         // Read the configuration
1092
1093         init_configuration(&mesh->config);
1094
1095         if(!read_server_config(mesh)) {
1096                 meshlink_close(mesh);
1097                 meshlink_errno = MESHLINK_ESTORAGE;
1098                 return NULL;
1099         };
1100
1101 #ifdef HAVE_MINGW
1102         struct WSAData wsa_state;
1103
1104         WSAStartup(MAKEWORD(2, 2), &wsa_state);
1105
1106 #endif
1107
1108         // Setup up everything
1109         // TODO: we should not open listening sockets yet
1110
1111         if(!setup_network(mesh)) {
1112                 meshlink_close(mesh);
1113                 meshlink_errno = MESHLINK_ENETWORK;
1114                 return NULL;
1115         }
1116
1117         add_local_addresses(mesh);
1118
1119         idle_set(&mesh->loop, idle, mesh);
1120
1121         logger(NULL, MESHLINK_DEBUG, "meshlink_open returning\n");
1122         return mesh;
1123 }
1124
1125 static void *meshlink_main_loop(void *arg) {
1126         meshlink_handle_t *mesh = arg;
1127
1128         pthread_mutex_lock(&(mesh->mesh_mutex));
1129
1130         try_outgoing_connections(mesh);
1131
1132         logger(mesh, MESHLINK_DEBUG, "Starting main_loop...\n");
1133         main_loop(mesh);
1134         logger(mesh, MESHLINK_DEBUG, "main_loop returned.\n");
1135
1136         pthread_mutex_unlock(&(mesh->mesh_mutex));
1137         return NULL;
1138 }
1139
1140 bool meshlink_start(meshlink_handle_t *mesh) {
1141         if(!mesh) {
1142                 meshlink_errno = MESHLINK_EINVAL;
1143                 return false;
1144         }
1145
1146         logger(mesh, MESHLINK_DEBUG, "meshlink_start called\n");
1147
1148         pthread_mutex_lock(&(mesh->mesh_mutex));
1149
1150         if(mesh->threadstarted) {
1151                 logger(mesh, MESHLINK_DEBUG, "thread was already running\n");
1152                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1153                 return true;
1154         }
1155
1156         if(mesh->listen_socket[0].tcp.fd < 0) {
1157                 logger(mesh, MESHLINK_ERROR, "Listening socket not open\n");
1158                 meshlink_errno = MESHLINK_ENETWORK;
1159                 return false;
1160         }
1161
1162         mesh->thedatalen = 0;
1163
1164         // TODO: open listening sockets first
1165
1166         //Check that a valid name is set
1167         if(!mesh->name) {
1168                 logger(mesh, MESHLINK_DEBUG, "No name given!\n");
1169                 meshlink_errno = MESHLINK_EINVAL;
1170                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1171                 return false;
1172         }
1173
1174         // Start the main thread
1175
1176         event_loop_start(&mesh->loop);
1177
1178         if(pthread_create(&mesh->thread, NULL, meshlink_main_loop, mesh) != 0) {
1179                 logger(mesh, MESHLINK_DEBUG, "Could not start thread: %s\n", strerror(errno));
1180                 memset(&mesh->thread, 0, sizeof(mesh)->thread);
1181                 meshlink_errno = MESHLINK_EINTERNAL;
1182                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1183                 return false;
1184         }
1185
1186         mesh->threadstarted = true;
1187
1188         if(mesh->discovery) {
1189                 discovery_start(mesh);
1190         }
1191
1192         pthread_mutex_unlock(&(mesh->mesh_mutex));
1193         return true;
1194 }
1195
1196 void meshlink_stop(meshlink_handle_t *mesh) {
1197         if(!mesh) {
1198                 meshlink_errno = MESHLINK_EINVAL;
1199                 return;
1200         }
1201
1202         pthread_mutex_lock(&(mesh->mesh_mutex));
1203         logger(mesh, MESHLINK_DEBUG, "meshlink_stop called\n");
1204
1205         // Stop discovery
1206         if(mesh->discovery) {
1207                 discovery_stop(mesh);
1208         }
1209
1210         // Shut down the main thread
1211         event_loop_stop(&mesh->loop);
1212
1213         // Send ourselves a UDP packet to kick the event loop
1214         listen_socket_t *s = &mesh->listen_socket[0];
1215
1216         if(sendto(s->udp.fd, "", 1, MSG_NOSIGNAL, &s->sa.sa, SALEN(s->sa.sa)) == -1) {
1217                 logger(mesh, MESHLINK_ERROR, "Could not send a UDP packet to ourself");
1218         }
1219
1220         // Wait for the main thread to finish
1221         pthread_mutex_unlock(&(mesh->mesh_mutex));
1222         pthread_join(mesh->thread, NULL);
1223         pthread_mutex_lock(&(mesh->mesh_mutex));
1224
1225         mesh->threadstarted = false;
1226
1227         // Close all metaconnections
1228         if(mesh->connections) {
1229                 for(list_node_t *node = mesh->connections->head, *next; node; node = next) {
1230                         next = node->next;
1231                         connection_t *c = node->data;
1232                         c->outgoing = NULL;
1233                         terminate_connection(mesh, c, false);
1234                 }
1235         }
1236
1237         if(mesh->outgoings) {
1238                 list_delete_list(mesh->outgoings);
1239         }
1240
1241         mesh->outgoings = NULL;
1242
1243         pthread_mutex_unlock(&(mesh->mesh_mutex));
1244 }
1245
1246 void meshlink_close(meshlink_handle_t *mesh) {
1247         if(!mesh || !mesh->confbase) {
1248                 meshlink_errno = MESHLINK_EINVAL;
1249                 return;
1250         }
1251
1252         // stop can be called even if mesh has not been started
1253         meshlink_stop(mesh);
1254
1255         // lock is not released after this
1256         pthread_mutex_lock(&(mesh->mesh_mutex));
1257
1258         // Close and free all resources used.
1259
1260         close_network_connections(mesh);
1261
1262         logger(mesh, MESHLINK_INFO, "Terminating");
1263
1264         exit_configuration(&mesh->config);
1265         event_loop_exit(&mesh->loop);
1266
1267 #ifdef HAVE_MINGW
1268
1269         if(mesh->confbase) {
1270                 WSACleanup();
1271         }
1272
1273 #endif
1274
1275         ecdsa_free(mesh->invitation_key);
1276
1277         free(mesh->name);
1278         free(mesh->appname);
1279         free(mesh->confbase);
1280         pthread_mutex_destroy(&(mesh->mesh_mutex));
1281
1282         memset(mesh, 0, sizeof(*mesh));
1283
1284         free(mesh);
1285 }
1286
1287 static void deltree(const char *dirname) {
1288         DIR *d = opendir(dirname);
1289
1290         if(d) {
1291                 struct dirent *ent;
1292
1293                 while((ent = readdir(d))) {
1294                         if(ent->d_name[0] == '.') {
1295                                 continue;
1296                         }
1297
1298                         char filename[PATH_MAX];
1299                         snprintf(filename, sizeof(filename), "%s" SLASH "%s", dirname, ent->d_name);
1300
1301                         if(unlink(filename)) {
1302                                 deltree(filename);
1303                         }
1304                 }
1305
1306                 closedir(d);
1307         }
1308
1309         rmdir(dirname);
1310         return;
1311 }
1312
1313 bool meshlink_destroy(const char *confbase) {
1314         if(!confbase) {
1315                 meshlink_errno = MESHLINK_EINVAL;
1316                 return false;
1317         }
1318
1319         char filename[PATH_MAX];
1320         snprintf(filename, sizeof(filename), "%s" SLASH "meshlink.conf", confbase);
1321
1322         if(unlink(filename)) {
1323                 if(errno == ENOENT) {
1324                         meshlink_errno = MESHLINK_ENOENT;
1325                         return false;
1326                 } else {
1327                         logger(NULL, MESHLINK_ERROR, "Cannot delete %s: %s\n", filename, strerror(errno));
1328                         meshlink_errno = MESHLINK_ESTORAGE;
1329                         return false;
1330                 }
1331         }
1332
1333         deltree(confbase);
1334
1335         return true;
1336 }
1337
1338 void meshlink_set_receive_cb(meshlink_handle_t *mesh, meshlink_receive_cb_t cb) {
1339         if(!mesh) {
1340                 meshlink_errno = MESHLINK_EINVAL;
1341                 return;
1342         }
1343
1344         pthread_mutex_lock(&(mesh->mesh_mutex));
1345         mesh->receive_cb = cb;
1346         pthread_mutex_unlock(&(mesh->mesh_mutex));
1347 }
1348
1349 void meshlink_set_node_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
1350         if(!mesh) {
1351                 meshlink_errno = MESHLINK_EINVAL;
1352                 return;
1353         }
1354
1355         pthread_mutex_lock(&(mesh->mesh_mutex));
1356         mesh->node_status_cb = cb;
1357         pthread_mutex_unlock(&(mesh->mesh_mutex));
1358 }
1359
1360 void meshlink_set_log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, meshlink_log_cb_t cb) {
1361         if(mesh) {
1362                 pthread_mutex_lock(&(mesh->mesh_mutex));
1363                 mesh->log_cb = cb;
1364                 mesh->log_level = cb ? level : 0;
1365                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1366         } else {
1367                 global_log_cb = cb;
1368                 global_log_level = cb ? level : 0;
1369         }
1370 }
1371
1372 bool meshlink_send(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len) {
1373         meshlink_packethdr_t *hdr;
1374
1375         // Validate arguments
1376         if(!mesh || !destination || len >= MAXSIZE - sizeof(*hdr)) {
1377                 meshlink_errno = MESHLINK_EINVAL;
1378                 return false;
1379         }
1380
1381         if(!len) {
1382                 return true;
1383         }
1384
1385         if(!data) {
1386                 meshlink_errno = MESHLINK_EINVAL;
1387                 return false;
1388         }
1389
1390         // Prepare the packet
1391         vpn_packet_t *packet = malloc(sizeof(*packet));
1392
1393         if(!packet) {
1394                 meshlink_errno = MESHLINK_ENOMEM;
1395                 return false;
1396         }
1397
1398         packet->probe = false;
1399         packet->tcp = false;
1400         packet->len = len + sizeof(*hdr);
1401
1402         hdr = (meshlink_packethdr_t *)packet->data;
1403         memset(hdr, 0, sizeof(*hdr));
1404         // leave the last byte as 0 to make sure strings are always
1405         // null-terminated if they are longer than the buffer
1406         strncpy((char *)hdr->destination, destination->name, (sizeof(hdr)->destination) - 1);
1407         strncpy((char *)hdr->source, mesh->self->name, (sizeof(hdr)->source) - 1);
1408
1409         memcpy(packet->data + sizeof(*hdr), data, len);
1410
1411         // Queue it
1412         if(!meshlink_queue_push(&mesh->outpacketqueue, packet)) {
1413                 free(packet);
1414                 meshlink_errno = MESHLINK_ENOMEM;
1415                 return false;
1416         }
1417
1418         // Notify event loop
1419         signal_trigger(&(mesh->loop), &(mesh->datafromapp));
1420
1421         return true;
1422 }
1423
1424 void meshlink_send_from_queue(event_loop_t *loop, meshlink_handle_t *mesh) {
1425         (void)loop;
1426         vpn_packet_t *packet = meshlink_queue_pop(&mesh->outpacketqueue);
1427
1428         if(!packet) {
1429                 return;
1430         }
1431
1432         mesh->self->in_packets++;
1433         mesh->self->in_bytes += packet->len;
1434         route(mesh, mesh->self, packet);
1435 }
1436
1437 ssize_t meshlink_get_pmtu(meshlink_handle_t *mesh, meshlink_node_t *destination) {
1438         if(!mesh || !destination) {
1439                 meshlink_errno = MESHLINK_EINVAL;
1440                 return -1;
1441         }
1442
1443         pthread_mutex_lock(&(mesh->mesh_mutex));
1444
1445         node_t *n = (node_t *)destination;
1446
1447         if(!n->status.reachable) {
1448                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1449                 return 0;
1450
1451         } else if(n->mtuprobes > 30 && n->minmtu) {
1452                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1453                 return n->minmtu;
1454         } else {
1455                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1456                 return MTU;
1457         }
1458 }
1459
1460 char *meshlink_get_fingerprint(meshlink_handle_t *mesh, meshlink_node_t *node) {
1461         if(!mesh || !node) {
1462                 meshlink_errno = MESHLINK_EINVAL;
1463                 return NULL;
1464         }
1465
1466         pthread_mutex_lock(&(mesh->mesh_mutex));
1467
1468         node_t *n = (node_t *)node;
1469
1470         if(!node_read_ecdsa_public_key(mesh, n) || !n->ecdsa) {
1471                 meshlink_errno = MESHLINK_EINTERNAL;
1472                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1473                 return false;
1474         }
1475
1476         char *fingerprint = ecdsa_get_base64_public_key(n->ecdsa);
1477
1478         if(!fingerprint) {
1479                 meshlink_errno = MESHLINK_EINTERNAL;
1480         }
1481
1482         pthread_mutex_unlock(&(mesh->mesh_mutex));
1483         return fingerprint;
1484 }
1485
1486 meshlink_node_t *meshlink_get_self(meshlink_handle_t *mesh) {
1487         if(!mesh) {
1488                 meshlink_errno = MESHLINK_EINVAL;
1489                 return NULL;
1490         }
1491
1492         return (meshlink_node_t *)mesh->self;
1493 }
1494
1495 meshlink_node_t *meshlink_get_node(meshlink_handle_t *mesh, const char *name) {
1496         if(!mesh || !name) {
1497                 meshlink_errno = MESHLINK_EINVAL;
1498                 return NULL;
1499         }
1500
1501         meshlink_node_t *node = NULL;
1502
1503         pthread_mutex_lock(&(mesh->mesh_mutex));
1504         node = (meshlink_node_t *)lookup_node(mesh, (char *)name); // TODO: make lookup_node() use const
1505         pthread_mutex_unlock(&(mesh->mesh_mutex));
1506         return node;
1507 }
1508
1509 meshlink_node_t **meshlink_get_all_nodes(meshlink_handle_t *mesh, meshlink_node_t **nodes, size_t *nmemb) {
1510         if(!mesh || !nmemb || (*nmemb && !nodes)) {
1511                 meshlink_errno = MESHLINK_EINVAL;
1512                 return NULL;
1513         }
1514
1515         meshlink_node_t **result;
1516
1517         //lock mesh->nodes
1518         pthread_mutex_lock(&(mesh->mesh_mutex));
1519
1520         *nmemb = mesh->nodes->count;
1521         result = realloc(nodes, *nmemb * sizeof(*nodes));
1522
1523         if(result) {
1524                 meshlink_node_t **p = result;
1525
1526                 for splay_each(node_t, n, mesh->nodes) {
1527                         *p++ = (meshlink_node_t *)n;
1528                 }
1529         } else {
1530                 *nmemb = 0;
1531                 free(nodes);
1532                 meshlink_errno = MESHLINK_ENOMEM;
1533         }
1534
1535         pthread_mutex_unlock(&(mesh->mesh_mutex));
1536
1537         return result;
1538 }
1539
1540 bool meshlink_sign(meshlink_handle_t *mesh, const void *data, size_t len, void *signature, size_t *siglen) {
1541         if(!mesh || !data || !len || !signature || !siglen) {
1542                 meshlink_errno = MESHLINK_EINVAL;
1543                 return false;
1544         }
1545
1546         if(*siglen < MESHLINK_SIGLEN) {
1547                 meshlink_errno = MESHLINK_EINVAL;
1548                 return false;
1549         }
1550
1551         pthread_mutex_lock(&(mesh->mesh_mutex));
1552
1553         if(!ecdsa_sign(mesh->self->connection->ecdsa, data, len, signature)) {
1554                 meshlink_errno = MESHLINK_EINTERNAL;
1555                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1556                 return false;
1557         }
1558
1559         *siglen = MESHLINK_SIGLEN;
1560         pthread_mutex_unlock(&(mesh->mesh_mutex));
1561         return true;
1562 }
1563
1564 bool meshlink_verify(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len, const void *signature, size_t siglen) {
1565         if(!mesh || !data || !len || !signature) {
1566                 meshlink_errno = MESHLINK_EINVAL;
1567                 return false;
1568         }
1569
1570         if(siglen != MESHLINK_SIGLEN) {
1571                 meshlink_errno = MESHLINK_EINVAL;
1572                 return false;
1573         }
1574
1575         pthread_mutex_lock(&(mesh->mesh_mutex));
1576
1577         bool rval = false;
1578
1579         struct node_t *n = (struct node_t *)source;
1580         node_read_ecdsa_public_key(mesh, n);
1581
1582         if(!n->ecdsa) {
1583                 meshlink_errno = MESHLINK_EINTERNAL;
1584                 rval = false;
1585         } else {
1586                 rval = ecdsa_verify(((struct node_t *)source)->ecdsa, data, len, signature);
1587         }
1588
1589         pthread_mutex_unlock(&(mesh->mesh_mutex));
1590         return rval;
1591 }
1592
1593 static bool refresh_invitation_key(meshlink_handle_t *mesh) {
1594         char filename[PATH_MAX];
1595
1596         pthread_mutex_lock(&(mesh->mesh_mutex));
1597
1598         snprintf(filename, sizeof(filename), "%s" SLASH "invitations", mesh->confbase);
1599
1600         if(mkdir(filename, 0700) && errno != EEXIST) {
1601                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", filename, strerror(errno));
1602                 meshlink_errno = MESHLINK_ESTORAGE;
1603                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1604                 return false;
1605         }
1606
1607         // Count the number of valid invitations, clean up old ones
1608         DIR *dir = opendir(filename);
1609
1610         if(!dir) {
1611                 logger(mesh, MESHLINK_DEBUG, "Could not read directory %s: %s\n", filename, strerror(errno));
1612                 meshlink_errno = MESHLINK_ESTORAGE;
1613                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1614                 return false;
1615         }
1616
1617         errno = 0;
1618         int count = 0;
1619         struct dirent *ent;
1620         time_t deadline = time(NULL) - 604800; // 1 week in the past
1621
1622         while((ent = readdir(dir))) {
1623                 if(strlen(ent->d_name) != 24) {
1624                         continue;
1625                 }
1626
1627                 char invname[PATH_MAX];
1628                 struct stat st;
1629
1630                 if(snprintf(invname, sizeof(invname), "%s" SLASH "%s", filename, ent->d_name) >= PATH_MAX) {
1631                         logger(mesh, MESHLINK_DEBUG, "Filename too long: %s" SLASH "%s", filename, ent->d_name);
1632                         continue;
1633                 }
1634
1635                 if(!stat(invname, &st)) {
1636                         if(mesh->invitation_key && deadline < st.st_mtime) {
1637                                 count++;
1638                         } else {
1639                                 unlink(invname);
1640                         }
1641                 } else {
1642                         logger(mesh, MESHLINK_DEBUG, "Could not stat %s: %s\n", invname, strerror(errno));
1643                         errno = 0;
1644                 }
1645         }
1646
1647         if(errno) {
1648                 logger(mesh, MESHLINK_DEBUG, "Error while reading directory %s: %s\n", filename, strerror(errno));
1649                 closedir(dir);
1650                 meshlink_errno = MESHLINK_ESTORAGE;
1651                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1652                 return false;
1653         }
1654
1655         closedir(dir);
1656
1657         snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "ecdsa_key.priv", mesh->confbase);
1658
1659         // Remove the key if there are no outstanding invitations.
1660         if(!count) {
1661                 unlink(filename);
1662
1663                 if(mesh->invitation_key) {
1664                         ecdsa_free(mesh->invitation_key);
1665                         mesh->invitation_key = NULL;
1666                 }
1667         }
1668
1669         if(mesh->invitation_key) {
1670                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1671                 return true;
1672         }
1673
1674         // Create a new key if necessary.
1675         FILE *f = fopen(filename, "rb");
1676
1677         if(!f) {
1678                 if(errno != ENOENT) {
1679                         logger(mesh, MESHLINK_DEBUG, "Could not read %s: %s\n", filename, strerror(errno));
1680                         meshlink_errno = MESHLINK_ESTORAGE;
1681                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1682                         return false;
1683                 }
1684
1685                 mesh->invitation_key = ecdsa_generate();
1686
1687                 if(!mesh->invitation_key) {
1688                         logger(mesh, MESHLINK_DEBUG, "Could not generate a new key!\n");
1689                         meshlink_errno = MESHLINK_EINTERNAL;
1690                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1691                         return false;
1692                 }
1693
1694                 f = fopen(filename, "wb");
1695
1696                 if(!f) {
1697                         logger(mesh, MESHLINK_DEBUG, "Could not write %s: %s\n", filename, strerror(errno));
1698                         meshlink_errno = MESHLINK_ESTORAGE;
1699                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1700                         return false;
1701                 }
1702
1703                 chmod(filename, 0600);
1704                 ecdsa_write_pem_private_key(mesh->invitation_key, f);
1705                 fclose(f);
1706         } else {
1707                 mesh->invitation_key = ecdsa_read_pem_private_key(f);
1708                 fclose(f);
1709
1710                 if(!mesh->invitation_key) {
1711                         logger(mesh, MESHLINK_DEBUG, "Could not read private key from %s\n", filename);
1712                         meshlink_errno = MESHLINK_ESTORAGE;
1713                 }
1714         }
1715
1716         pthread_mutex_unlock(&(mesh->mesh_mutex));
1717         return mesh->invitation_key;
1718 }
1719
1720 bool meshlink_add_address(meshlink_handle_t *mesh, const char *address) {
1721         if(!mesh || !address) {
1722                 meshlink_errno = MESHLINK_EINVAL;
1723                 return false;
1724         }
1725
1726         if(!is_valid_hostname(address)) {
1727                 logger(mesh, MESHLINK_DEBUG, "Invalid character in address: %s\n", address);
1728                 meshlink_errno = MESHLINK_EINVAL;
1729                 return false;
1730         }
1731
1732         bool rval = false;
1733
1734         pthread_mutex_lock(&(mesh->mesh_mutex));
1735         rval = append_config_file(mesh, mesh->self->name, "Address", address);
1736         pthread_mutex_unlock(&(mesh->mesh_mutex));
1737
1738         return rval;
1739 }
1740
1741 bool meshlink_add_external_address(meshlink_handle_t *mesh) {
1742         if(!mesh) {
1743                 meshlink_errno = MESHLINK_EINVAL;
1744                 return false;
1745         }
1746
1747         char *address = meshlink_get_external_address(mesh);
1748
1749         if(!address) {
1750                 return false;
1751         }
1752
1753         bool rval = false;
1754
1755         pthread_mutex_lock(&(mesh->mesh_mutex));
1756         rval = append_config_file(mesh, mesh->self->name, "Address", address);
1757         pthread_mutex_unlock(&(mesh->mesh_mutex));
1758
1759         free(address);
1760         return rval;
1761 }
1762
1763 int meshlink_get_port(meshlink_handle_t *mesh) {
1764         if(!mesh) {
1765                 meshlink_errno = MESHLINK_EINVAL;
1766                 return -1;
1767         }
1768
1769         if(!mesh->myport) {
1770                 meshlink_errno = MESHLINK_EINTERNAL;
1771                 return -1;
1772         }
1773
1774         return atoi(mesh->myport);
1775 }
1776
1777 bool meshlink_set_port(meshlink_handle_t *mesh, int port) {
1778         if(!mesh || port < 0 || port >= 65536 || mesh->threadstarted) {
1779                 meshlink_errno = MESHLINK_EINVAL;
1780                 return false;
1781         }
1782
1783         if(mesh->myport && port == atoi(mesh->myport)) {
1784                 return true;
1785         }
1786
1787         if(!try_bind(port)) {
1788                 meshlink_errno = MESHLINK_ENETWORK;
1789                 return false;
1790         }
1791
1792         bool rval = false;
1793
1794         pthread_mutex_lock(&(mesh->mesh_mutex));
1795
1796         if(mesh->threadstarted) {
1797                 meshlink_errno = MESHLINK_EINVAL;
1798                 goto done;
1799         }
1800
1801         close_network_connections(mesh);
1802         exit_configuration(&mesh->config);
1803
1804         char portstr[10];
1805         snprintf(portstr, sizeof(portstr), "%d", port);
1806         portstr[sizeof(portstr) - 1] = 0;
1807
1808         modify_config_file(mesh, mesh->name, "Port", portstr, true);
1809
1810         init_configuration(&mesh->config);
1811
1812         if(!read_server_config(mesh)) {
1813                 meshlink_errno = MESHLINK_ESTORAGE;
1814         } else if(!setup_network(mesh)) {
1815                 meshlink_errno = MESHLINK_ENETWORK;
1816         } else {
1817                 rval = true;
1818         }
1819
1820 done:
1821         pthread_mutex_unlock(&(mesh->mesh_mutex));
1822
1823         return rval;
1824 }
1825
1826 char *meshlink_invite(meshlink_handle_t *mesh, const char *name) {
1827         if(!mesh) {
1828                 meshlink_errno = MESHLINK_EINVAL;
1829                 return NULL;
1830         }
1831
1832         pthread_mutex_lock(&(mesh->mesh_mutex));
1833
1834         // Check validity of the new node's name
1835         if(!check_id(name)) {
1836                 logger(mesh, MESHLINK_DEBUG, "Invalid name for node.\n");
1837                 meshlink_errno = MESHLINK_EINVAL;
1838                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1839                 return NULL;
1840         }
1841
1842         // Ensure no host configuration file with that name exists
1843         char filename[PATH_MAX];
1844         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
1845
1846         if(!access(filename, F_OK)) {
1847                 logger(mesh, MESHLINK_DEBUG, "A host config file for %s already exists!\n", name);
1848                 meshlink_errno = MESHLINK_EEXIST;
1849                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1850                 return NULL;
1851         }
1852
1853         // Ensure no other nodes know about this name
1854         if(meshlink_get_node(mesh, name)) {
1855                 logger(mesh, MESHLINK_DEBUG, "A node with name %s is already known!\n", name);
1856                 meshlink_errno = MESHLINK_EEXIST;
1857                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1858                 return NULL;
1859         }
1860
1861         // Get the local address
1862         char *address = get_my_hostname(mesh);
1863
1864         if(!address) {
1865                 logger(mesh, MESHLINK_DEBUG, "No Address known for ourselves!\n");
1866                 meshlink_errno = MESHLINK_ERESOLV;
1867                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1868                 return NULL;
1869         }
1870
1871         if(!refresh_invitation_key(mesh)) {
1872                 meshlink_errno = MESHLINK_EINTERNAL;
1873                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1874                 return NULL;
1875         }
1876
1877         char hash[64];
1878
1879         // Create a hash of the key.
1880         char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
1881         sha512(fingerprint, strlen(fingerprint), hash);
1882         b64encode_urlsafe(hash, hash, 18);
1883
1884         // Create a random cookie for this invitation.
1885         char cookie[25];
1886         randomize(cookie, 18);
1887
1888         // Create a filename that doesn't reveal the cookie itself
1889         char buf[18 + strlen(fingerprint)];
1890         char cookiehash[64];
1891         memcpy(buf, cookie, 18);
1892         memcpy(buf + 18, fingerprint, sizeof(buf) - 18);
1893         sha512(buf, sizeof(buf), cookiehash);
1894         b64encode_urlsafe(cookiehash, cookiehash, 18);
1895
1896         b64encode_urlsafe(cookie, cookie, 18);
1897
1898         free(fingerprint);
1899
1900         // Create a file containing the details of the invitation.
1901         snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "%s", mesh->confbase, cookiehash);
1902         int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
1903
1904         if(!ifd) {
1905                 logger(mesh, MESHLINK_DEBUG, "Could not create invitation file %s: %s\n", filename, strerror(errno));
1906                 meshlink_errno = MESHLINK_ESTORAGE;
1907                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1908                 return NULL;
1909         }
1910
1911         FILE *f = fdopen(ifd, "w");
1912
1913         if(!f) {
1914                 abort();
1915         }
1916
1917         // Fill in the details.
1918         fprintf(f, "Name = %s\n", name);
1919         //if(netname)
1920         //      fprintf(f, "NetName = %s\n", netname);
1921         fprintf(f, "ConnectTo = %s\n", mesh->self->name);
1922
1923         // Copy Broadcast and Mode
1924         snprintf(filename, sizeof(filename), "%s" SLASH "meshlink.conf", mesh->confbase);
1925         FILE *tc = fopen(filename,  "r");
1926
1927         if(tc) {
1928                 char buf[1024];
1929
1930                 while(fgets(buf, sizeof(buf), tc)) {
1931                         if((!strncasecmp(buf, "Mode", 4) && strchr(" \t=", buf[4]))
1932                                         || (!strncasecmp(buf, "Broadcast", 9) && strchr(" \t=", buf[9]))) {
1933                                 fputs(buf, f);
1934
1935                                 // Make sure there is a newline character.
1936                                 if(!strchr(buf, '\n')) {
1937                                         fputc('\n', f);
1938                                 }
1939                         }
1940                 }
1941
1942                 fclose(tc);
1943         } else {
1944                 logger(mesh, MESHLINK_DEBUG, "Could not create %s: %s\n", filename, strerror(errno));
1945                 meshlink_errno = MESHLINK_ESTORAGE;
1946                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1947                 return NULL;
1948         }
1949
1950         fprintf(f, "#---------------------------------------------------------------#\n");
1951         fprintf(f, "Name = %s\n", mesh->self->name);
1952
1953         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
1954         fcopy(f, filename);
1955         fclose(f);
1956
1957         // Create an URL from the local address, key hash and cookie
1958         char *url;
1959         xasprintf(&url, "%s/%s%s", address, hash, cookie);
1960         free(address);
1961
1962         pthread_mutex_unlock(&(mesh->mesh_mutex));
1963         return url;
1964 }
1965
1966 bool meshlink_join(meshlink_handle_t *mesh, const char *invitation) {
1967         if(!mesh || !invitation) {
1968                 meshlink_errno = MESHLINK_EINVAL;
1969                 return false;
1970         }
1971
1972         pthread_mutex_lock(&(mesh->mesh_mutex));
1973
1974         //Before doing meshlink_join make sure we are not connected to another mesh
1975         if(mesh->threadstarted) {
1976                 logger(mesh, MESHLINK_DEBUG, "Already connected to a mesh\n");
1977                 meshlink_errno = MESHLINK_EINVAL;
1978                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1979                 return false;
1980         }
1981
1982         //TODO: think of a better name for this variable, or of a different way to tokenize the invitation URL.
1983         char copy[strlen(invitation) + 1];
1984         strcpy(copy, invitation);
1985
1986         // Split the invitation URL into hostname, port, key hash and cookie.
1987
1988         char *slash = strchr(copy, '/');
1989
1990         if(!slash) {
1991                 goto invalid;
1992         }
1993
1994         *slash++ = 0;
1995
1996         if(strlen(slash) != 48) {
1997                 goto invalid;
1998         }
1999
2000         char *address = copy;
2001         char *port = strrchr(address, ':');
2002
2003         if(!port) {
2004                 goto invalid;
2005         }
2006
2007         *port++ = 0;
2008
2009         if(!b64decode(slash, mesh->hash, 18) || !b64decode(slash + 24, mesh->cookie, 18)) {
2010                 goto invalid;
2011         }
2012
2013         // Generate a throw-away key for the invitation.
2014         ecdsa_t *key = ecdsa_generate();
2015
2016         if(!key) {
2017                 meshlink_errno = MESHLINK_EINTERNAL;
2018                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2019                 return false;
2020         }
2021
2022         char *b64key = ecdsa_get_base64_public_key(key);
2023         char *comma;
2024         mesh->sock = -1;
2025
2026         while(address && *address) {
2027                 // We allow commas in the address part to support multiple addresses in one invitation URL.
2028                 comma = strchr(address, ',');
2029
2030                 if(comma) {
2031                         *comma++ = 0;
2032                 }
2033
2034                 // IPv6 address are enclosed in brackets, per RFC 3986
2035                 if(*address == '[') {
2036                         address++;
2037                         char *bracket = strchr(address, ']');
2038
2039                         if(!bracket) {
2040                                 goto invalid;
2041                         }
2042
2043                         *bracket++ = 0;
2044
2045                         if(comma && bracket != comma) {
2046                                 goto invalid;
2047                         }
2048                 }
2049
2050                 // Connect to the meshlink daemon mentioned in the URL.
2051                 struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
2052
2053                 if(ai) {
2054                         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
2055                                 mesh->sock = socket(aip->ai_family, aip->ai_socktype, aip->ai_protocol);
2056
2057                                 if(mesh->sock == -1) {
2058                                         logger(mesh, MESHLINK_DEBUG, "Could not open socket: %s\n", strerror(errno));
2059                                         meshlink_errno = MESHLINK_ENETWORK;
2060                                         continue;
2061                                 }
2062
2063                                 set_timeout(mesh->sock, 5000);
2064
2065                                 if(connect(mesh->sock, aip->ai_addr, aip->ai_addrlen)) {
2066                                         logger(mesh, MESHLINK_DEBUG, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
2067                                         meshlink_errno = MESHLINK_ENETWORK;
2068                                         closesocket(mesh->sock);
2069                                         mesh->sock = -1;
2070                                         continue;
2071                                 }
2072                         }
2073
2074                         freeaddrinfo(ai);
2075                 } else {
2076                         meshlink_errno = MESHLINK_ERESOLV;
2077                 }
2078
2079                 if(mesh->sock != -1 || !comma) {
2080                         break;
2081                 }
2082
2083                 address = comma;
2084         }
2085
2086         if(mesh->sock == -1) {
2087                 pthread_mutex_unlock(&mesh->mesh_mutex);
2088                 return false;
2089         }
2090
2091         logger(mesh, MESHLINK_DEBUG, "Connected to %s port %s...\n", address, port);
2092
2093         // Tell him we have an invitation, and give him our throw-away key.
2094
2095         mesh->blen = 0;
2096
2097         if(!sendline(mesh->sock, "0 ?%s %d.%d", b64key, PROT_MAJOR, 1)) {
2098                 logger(mesh, MESHLINK_DEBUG, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
2099                 closesocket(mesh->sock);
2100                 meshlink_errno = MESHLINK_ENETWORK;
2101                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2102                 return false;
2103         }
2104
2105         free(b64key);
2106
2107         char hisname[4096] = "";
2108         int code, hismajor, hisminor = 0;
2109
2110         if(!recvline(mesh, sizeof(mesh)->line) || sscanf(mesh->line, "%d %s %d.%d", &code, hisname, &hismajor, &hisminor) < 3 || code != 0 || hismajor != PROT_MAJOR || !check_id(hisname) || !recvline(mesh, sizeof(mesh)->line) || !rstrip(mesh->line) || sscanf(mesh->line, "%d ", &code) != 1 || code != ACK || strlen(mesh->line) < 3) {
2111                 logger(mesh, MESHLINK_DEBUG, "Cannot read greeting from peer\n");
2112                 closesocket(mesh->sock);
2113                 meshlink_errno = MESHLINK_ENETWORK;
2114                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2115                 return false;
2116         }
2117
2118         // Check if the hash of the key he gave us matches the hash in the URL.
2119         char *fingerprint = mesh->line + 2;
2120         char hishash[64];
2121
2122         if(sha512(fingerprint, strlen(fingerprint), hishash)) {
2123                 logger(mesh, MESHLINK_DEBUG, "Could not create hash\n%s\n", mesh->line + 2);
2124                 meshlink_errno = MESHLINK_EINTERNAL;
2125                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2126                 return false;
2127         }
2128
2129         if(memcmp(hishash, mesh->hash, 18)) {
2130                 logger(mesh, MESHLINK_DEBUG, "Peer has an invalid key!\n%s\n", mesh->line + 2);
2131                 meshlink_errno = MESHLINK_EPEER;
2132                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2133                 return false;
2134
2135         }
2136
2137         ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
2138
2139         if(!hiskey) {
2140                 meshlink_errno = MESHLINK_EINTERNAL;
2141                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2142                 return false;
2143         }
2144
2145         // Start an SPTPS session
2146         if(!sptps_start(&mesh->sptps, mesh, true, false, key, hiskey, meshlink_invitation_label, sizeof(meshlink_invitation_label), invitation_send, invitation_receive)) {
2147                 meshlink_errno = MESHLINK_EINTERNAL;
2148                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2149                 return false;
2150         }
2151
2152         // Feed rest of input buffer to SPTPS
2153         if(!sptps_receive_data(&mesh->sptps, mesh->buffer, mesh->blen)) {
2154                 meshlink_errno = MESHLINK_EPEER;
2155                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2156                 return false;
2157         }
2158
2159         int len;
2160
2161         while((len = recv(mesh->sock, mesh->line, sizeof(mesh)->line, 0))) {
2162                 if(len < 0) {
2163                         if(errno == EINTR) {
2164                                 continue;
2165                         }
2166
2167                         logger(mesh, MESHLINK_DEBUG, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
2168                         meshlink_errno = MESHLINK_ENETWORK;
2169                         pthread_mutex_unlock(&(mesh->mesh_mutex));
2170                         return false;
2171                 }
2172
2173                 if(!sptps_receive_data(&mesh->sptps, mesh->line, len)) {
2174                         meshlink_errno = MESHLINK_EPEER;
2175                         pthread_mutex_unlock(&(mesh->mesh_mutex));
2176                         return false;
2177                 }
2178         }
2179
2180         sptps_stop(&mesh->sptps);
2181         ecdsa_free(hiskey);
2182         ecdsa_free(key);
2183         closesocket(mesh->sock);
2184
2185         if(!mesh->success) {
2186                 logger(mesh, MESHLINK_DEBUG, "Connection closed by peer, invitation cancelled.\n");
2187                 meshlink_errno = MESHLINK_EPEER;
2188                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2189                 return false;
2190         }
2191
2192         pthread_mutex_unlock(&(mesh->mesh_mutex));
2193         return true;
2194
2195 invalid:
2196         logger(mesh, MESHLINK_DEBUG, "Invalid invitation URL\n");
2197         meshlink_errno = MESHLINK_EINVAL;
2198         pthread_mutex_unlock(&(mesh->mesh_mutex));
2199         return false;
2200 }
2201
2202 char *meshlink_export(meshlink_handle_t *mesh) {
2203         if(!mesh) {
2204                 meshlink_errno = MESHLINK_EINVAL;
2205                 return NULL;
2206         }
2207
2208         pthread_mutex_lock(&(mesh->mesh_mutex));
2209
2210         char filename[PATH_MAX];
2211         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
2212         FILE *f = fopen(filename, "r");
2213
2214         if(!f) {
2215                 logger(mesh, MESHLINK_DEBUG, "Could not open %s: %s\n", filename, strerror(errno));
2216                 meshlink_errno = MESHLINK_ESTORAGE;
2217                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2218                 return NULL;
2219         }
2220
2221         fseek(f, 0, SEEK_END);
2222         int fsize = ftell(f);
2223         rewind(f);
2224
2225         size_t len = fsize + 9 + strlen(mesh->self->name);
2226         char *buf = xmalloc(len);
2227         snprintf(buf, len, "Name = %s\n", mesh->self->name);
2228
2229         if(fread(buf + len - fsize - 1, fsize, 1, f) != 1) {
2230                 logger(mesh, MESHLINK_DEBUG, "Error reading from %s: %s\n", filename, strerror(errno));
2231                 fclose(f);
2232                 free(buf);
2233                 meshlink_errno = MESHLINK_ESTORAGE;
2234                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2235                 return NULL;
2236         }
2237
2238         fclose(f);
2239         buf[len - 1] = 0;
2240
2241         pthread_mutex_unlock(&(mesh->mesh_mutex));
2242         return buf;
2243 }
2244
2245 bool meshlink_import(meshlink_handle_t *mesh, const char *data) {
2246         if(!mesh || !data) {
2247                 meshlink_errno = MESHLINK_EINVAL;
2248                 return false;
2249         }
2250
2251         pthread_mutex_lock(&(mesh->mesh_mutex));
2252
2253         if(strncmp(data, "Name = ", 7)) {
2254                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
2255                 meshlink_errno = MESHLINK_EPEER;
2256                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2257                 return false;
2258         }
2259
2260         char *end = strchr(data + 7, '\n');
2261
2262         if(!end) {
2263                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
2264                 meshlink_errno = MESHLINK_EPEER;
2265                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2266                 return false;
2267         }
2268
2269         int len = end - (data + 7);
2270         char name[len + 1];
2271         memcpy(name, data + 7, len);
2272         name[len] = 0;
2273
2274         if(!check_id(name)) {
2275                 logger(mesh, MESHLINK_DEBUG, "Invalid Name\n");
2276                 meshlink_errno = MESHLINK_EPEER;
2277                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2278                 return false;
2279         }
2280
2281         char filename[PATH_MAX];
2282         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
2283
2284         if(!access(filename, F_OK)) {
2285                 logger(mesh, MESHLINK_DEBUG, "File %s already exists, not importing\n", filename);
2286                 meshlink_errno = MESHLINK_EEXIST;
2287                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2288                 return false;
2289         }
2290
2291         if(errno != ENOENT) {
2292                 logger(mesh, MESHLINK_DEBUG, "Error accessing %s: %s\n", filename, strerror(errno));
2293                 meshlink_errno = MESHLINK_ESTORAGE;
2294                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2295                 return false;
2296         }
2297
2298         FILE *f = fopen(filename, "w");
2299
2300         if(!f) {
2301                 logger(mesh, MESHLINK_DEBUG, "Could not create %s: %s\n", filename, strerror(errno));
2302                 meshlink_errno = MESHLINK_ESTORAGE;
2303                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2304                 return false;
2305         }
2306
2307         fwrite(end + 1, strlen(end + 1), 1, f);
2308         fclose(f);
2309
2310         load_all_nodes(mesh);
2311
2312         pthread_mutex_unlock(&(mesh->mesh_mutex));
2313         return true;
2314 }
2315
2316 void meshlink_blacklist(meshlink_handle_t *mesh, meshlink_node_t *node) {
2317         if(!mesh || !node) {
2318                 meshlink_errno = MESHLINK_EINVAL;
2319                 return;
2320         }
2321
2322         pthread_mutex_lock(&(mesh->mesh_mutex));
2323
2324         node_t *n;
2325         n = (node_t *)node;
2326         n->status.blacklisted = true;
2327         logger(mesh, MESHLINK_DEBUG, "Blacklisted %s.\n", node->name);
2328
2329         //Make blacklisting persistent in the config file
2330         append_config_file(mesh, n->name, "blacklisted", "yes");
2331
2332         pthread_mutex_unlock(&(mesh->mesh_mutex));
2333         return;
2334 }
2335
2336 void meshlink_whitelist(meshlink_handle_t *mesh, meshlink_node_t *node) {
2337         if(!mesh || !node) {
2338                 meshlink_errno = MESHLINK_EINVAL;
2339                 return;
2340         }
2341
2342         pthread_mutex_lock(&(mesh->mesh_mutex));
2343
2344         node_t *n = (node_t *)node;
2345         n->status.blacklisted = false;
2346
2347         //TODO: remove blacklisted = yes from the config file
2348
2349         pthread_mutex_unlock(&(mesh->mesh_mutex));
2350         return;
2351 }
2352
2353 void meshlink_set_default_blacklist(meshlink_handle_t *mesh, bool blacklist) {
2354         mesh->default_blacklist = blacklist;
2355 }
2356
2357 /* Hint that a hostname may be found at an address
2358  * See header file for detailed comment.
2359  */
2360 void meshlink_hint_address(meshlink_handle_t *mesh, meshlink_node_t *node, const struct sockaddr *addr) {
2361         if(!mesh || !node || !addr) {
2362                 return;
2363         }
2364
2365         // Ignore hints about ourself.
2366         if((node_t *)node == mesh->self) {
2367                 return;
2368         }
2369
2370         pthread_mutex_lock(&(mesh->mesh_mutex));
2371
2372         char *host = NULL, *port = NULL, *str = NULL;
2373         sockaddr2str((const sockaddr_t *)addr, &host, &port);
2374
2375         if(host && port) {
2376                 xasprintf(&str, "%s %s", host, port);
2377
2378                 if((strncmp("fe80", host, 4) != 0) && (strncmp("127.", host, 4) != 0) && (strcmp("localhost", host) != 0)) {
2379                         modify_config_file(mesh, node->name, "Address", str, 5);
2380                 } else {
2381                         logger(mesh, MESHLINK_DEBUG, "Not adding Link Local IPv6 Address to config\n");
2382                 }
2383         }
2384
2385         free(str);
2386         free(host);
2387         free(port);
2388
2389         pthread_mutex_unlock(&(mesh->mesh_mutex));
2390         // @TODO do we want to fire off a connection attempt right away?
2391 }
2392
2393 static bool channel_pre_accept(struct utcp *utcp, uint16_t port) {
2394         (void)port;
2395         node_t *n = utcp->priv;
2396         meshlink_handle_t *mesh = n->mesh;
2397         return mesh->channel_accept_cb;
2398 }
2399
2400 static ssize_t channel_recv(struct utcp_connection *connection, const void *data, size_t len) {
2401         meshlink_channel_t *channel = connection->priv;
2402
2403         if(!channel) {
2404                 abort();
2405         }
2406
2407         node_t *n = channel->node;
2408         meshlink_handle_t *mesh = n->mesh;
2409
2410         if(n->status.destroyed) {
2411                 meshlink_channel_close(mesh, channel);
2412         } else if(channel->receive_cb) {
2413                 channel->receive_cb(mesh, channel, data, len);
2414         }
2415
2416         return len;
2417 }
2418
2419 static void channel_accept(struct utcp_connection *utcp_connection, uint16_t port) {
2420         node_t *n = utcp_connection->utcp->priv;
2421
2422         if(!n) {
2423                 abort();
2424         }
2425
2426         meshlink_handle_t *mesh = n->mesh;
2427
2428         if(!mesh->channel_accept_cb) {
2429                 return;
2430         }
2431
2432         meshlink_channel_t *channel = xzalloc(sizeof(*channel));
2433         channel->node = n;
2434         channel->c = utcp_connection;
2435
2436         if(mesh->channel_accept_cb(mesh, channel, port, NULL, 0)) {
2437                 utcp_accept(utcp_connection, channel_recv, channel);
2438         } else {
2439                 free(channel);
2440         }
2441 }
2442
2443 static ssize_t channel_send(struct utcp *utcp, const void *data, size_t len) {
2444         node_t *n = utcp->priv;
2445         meshlink_handle_t *mesh = n->mesh;
2446         return meshlink_send(mesh, (meshlink_node_t *)n, data, len) ? (ssize_t)len : -1;
2447 }
2448
2449 void meshlink_set_channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_receive_cb_t cb) {
2450         if(!mesh || !channel) {
2451                 meshlink_errno = MESHLINK_EINVAL;
2452                 return;
2453         }
2454
2455         channel->receive_cb = cb;
2456 }
2457
2458 static void channel_receive(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len) {
2459         (void)mesh;
2460         node_t *n = (node_t *)source;
2461
2462         if(!n->utcp) {
2463                 abort();
2464         }
2465
2466         utcp_recv(n->utcp, data, len);
2467 }
2468
2469 static void channel_poll(struct utcp_connection *connection, size_t len) {
2470         meshlink_channel_t *channel = connection->priv;
2471
2472         if(!channel) {
2473                 abort();
2474         }
2475
2476         node_t *n = channel->node;
2477         meshlink_handle_t *mesh = n->mesh;
2478
2479         if(channel->poll_cb) {
2480                 channel->poll_cb(mesh, channel, len);
2481         }
2482 }
2483
2484 void meshlink_set_channel_poll_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_poll_cb_t cb) {
2485         (void)mesh;
2486         channel->poll_cb = cb;
2487         utcp_set_poll_cb(channel->c, cb ? channel_poll : NULL);
2488 }
2489
2490 void meshlink_set_channel_accept_cb(meshlink_handle_t *mesh, meshlink_channel_accept_cb_t cb) {
2491         if(!mesh) {
2492                 meshlink_errno = MESHLINK_EINVAL;
2493                 return;
2494         }
2495
2496         pthread_mutex_lock(&mesh->mesh_mutex);
2497         mesh->channel_accept_cb = cb;
2498         mesh->receive_cb = channel_receive;
2499
2500         for splay_each(node_t, n, mesh->nodes) {
2501                 if(!n->utcp && n != mesh->self) {
2502                         n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2503                 }
2504         }
2505
2506         pthread_mutex_unlock(&mesh->mesh_mutex);
2507 }
2508
2509 meshlink_channel_t *meshlink_channel_open_ex(meshlink_handle_t *mesh, meshlink_node_t *node, uint16_t port, meshlink_channel_receive_cb_t cb, const void *data, size_t len, uint32_t flags) {
2510         if(data || len) {
2511                 abort();        // TODO: handle non-NULL data
2512         }
2513
2514         if(!mesh || !node) {
2515                 meshlink_errno = MESHLINK_EINVAL;
2516                 return NULL;
2517         }
2518
2519         node_t *n = (node_t *)node;
2520
2521         if(!n->utcp) {
2522                 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2523                 mesh->receive_cb = channel_receive;
2524
2525                 if(!n->utcp) {
2526                         meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
2527                         return NULL;
2528                 }
2529         }
2530
2531         meshlink_channel_t *channel = xzalloc(sizeof(*channel));
2532         channel->node = n;
2533         channel->receive_cb = cb;
2534         channel->c = utcp_connect_ex(n->utcp, port, channel_recv, channel, flags);
2535
2536         if(!channel->c) {
2537                 meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
2538                 free(channel);
2539                 return NULL;
2540         }
2541
2542         return channel;
2543 }
2544
2545 meshlink_channel_t *meshlink_channel_open(meshlink_handle_t *mesh, meshlink_node_t *node, uint16_t port, meshlink_channel_receive_cb_t cb, const void *data, size_t len) {
2546         return meshlink_channel_open_ex(mesh, node, port, cb, data, len, MESHLINK_CHANNEL_TCP);
2547 }
2548
2549 void meshlink_channel_shutdown(meshlink_handle_t *mesh, meshlink_channel_t *channel, int direction) {
2550         if(!mesh || !channel) {
2551                 meshlink_errno = MESHLINK_EINVAL;
2552                 return;
2553         }
2554
2555         utcp_shutdown(channel->c, direction);
2556 }
2557
2558 void meshlink_channel_close(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
2559         if(!mesh || !channel) {
2560                 meshlink_errno = MESHLINK_EINVAL;
2561                 return;
2562         }
2563
2564         utcp_close(channel->c);
2565         free(channel);
2566 }
2567
2568 ssize_t meshlink_channel_send(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *data, size_t len) {
2569         if(!mesh || !channel) {
2570                 meshlink_errno = MESHLINK_EINVAL;
2571                 return -1;
2572         }
2573
2574         if(!len) {
2575                 return 0;
2576         }
2577
2578         if(!data) {
2579                 meshlink_errno = MESHLINK_EINVAL;
2580                 return -1;
2581         }
2582
2583         // TODO: more finegrained locking.
2584         // Ideally we want to put the data into the UTCP connection's send buffer.
2585         // Then, preferrably only if there is room in the receiver window,
2586         // kick the meshlink thread to go send packets.
2587
2588         pthread_mutex_lock(&mesh->mesh_mutex);
2589         ssize_t retval = utcp_send(channel->c, data, len);
2590         pthread_mutex_unlock(&mesh->mesh_mutex);
2591
2592         if(retval < 0) {
2593                 meshlink_errno = MESHLINK_ENETWORK;
2594         }
2595
2596         return retval;
2597 }
2598
2599 uint32_t meshlink_channel_get_flags(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
2600         if(!mesh || !channel) {
2601                 meshlink_errno = MESHLINK_EINVAL;
2602                 return -1;
2603         }
2604
2605         return channel->c->flags;
2606 }
2607
2608 void update_node_status(meshlink_handle_t *mesh, node_t *n) {
2609         if(n->status.reachable && mesh->channel_accept_cb && !n->utcp) {
2610                 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2611         }
2612
2613         if(mesh->node_status_cb) {
2614                 mesh->node_status_cb(mesh, (meshlink_node_t *)n, n->status.reachable);
2615         }
2616 }
2617
2618 void meshlink_enable_discovery(meshlink_handle_t *mesh, bool enable) {
2619         if(!mesh) {
2620                 meshlink_errno = MESHLINK_EINVAL;
2621                 return;
2622         }
2623
2624         pthread_mutex_lock(&mesh->mesh_mutex);
2625
2626         if(mesh->discovery == enable) {
2627                 goto end;
2628         }
2629
2630         if(mesh->threadstarted) {
2631                 if(enable) {
2632                         discovery_start(mesh);
2633                 } else {
2634                         discovery_stop(mesh);
2635                 }
2636         }
2637
2638         mesh->discovery = enable;
2639
2640 end:
2641         pthread_mutex_unlock(&mesh->mesh_mutex);
2642 }
2643
2644 static void __attribute__((constructor)) meshlink_init(void) {
2645         crypto_init();
2646         unsigned int seed;
2647         randomize(&seed, sizeof(seed));
2648         srand(seed);
2649 }
2650
2651 static void __attribute__((destructor)) meshlink_exit(void) {
2652         crypto_exit();
2653 }
2654
2655 /// Device class traits
2656 dev_class_traits_t dev_class_traits[_DEV_CLASS_MAX + 1] = {
2657         { .min_connects = 3, .max_connects = 10000, .edge_weight = 1 }, // DEV_CLASS_BACKBONE
2658         { .min_connects = 3, .max_connects = 100, .edge_weight = 3 },   // DEV_CLASS_STATIONARY
2659         { .min_connects = 3, .max_connects = 3, .edge_weight = 6 },             // DEV_CLASS_PORTABLE
2660         { .min_connects = 1, .max_connects = 1, .edge_weight = 9 },             // DEV_CLASS_UNKNOWN
2661 };