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