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