]> git.meshlink.io Git - meshlink/blob - src/meshlink.c
e70ac5f624589023139dc54fda2ba797dd391940
[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 ? 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         meshlink_handle_t *mesh = handle;
557         while(len) {
558                 int result = send(mesh->sock, data, len, 0);
559                 if(result == -1 && errno == EINTR)
560                         continue;
561                 else if(result <= 0)
562                         return false;
563                 data += result;
564                 len -= result;
565         }
566         return true;
567 }
568
569 static bool invitation_receive(void *handle, uint8_t type, const void *msg, uint16_t len) {
570         meshlink_handle_t *mesh = handle;
571         switch(type) {
572         case SPTPS_HANDSHAKE:
573                 return sptps_send_record(&(mesh->sptps), 0, mesh->cookie, sizeof(mesh)->cookie);
574
575         case 0:
576                 mesh->data = xrealloc(mesh->data, mesh->thedatalen + len + 1);
577                 memcpy(mesh->data + mesh->thedatalen, msg, len);
578                 mesh->thedatalen += len;
579                 mesh->data[mesh->thedatalen] = 0;
580                 break;
581
582         case 1:
583                 mesh->thedatalen = 0;
584                 return finalize_join(mesh);
585
586         case 2:
587                 logger(mesh, MESHLINK_DEBUG, "Invitation succesfully accepted.\n");
588                 shutdown(mesh->sock, SHUT_RDWR);
589                 mesh->success = true;
590                 break;
591
592         default:
593                 return false;
594         }
595
596         return true;
597 }
598
599 static bool recvline(meshlink_handle_t *mesh, size_t len) {
600         char *newline = NULL;
601
602         if(!mesh->sock)
603                 abort();
604
605         while(!(newline = memchr(mesh->buffer, '\n', mesh->blen))) {
606                 int result = recv(mesh->sock, mesh->buffer + mesh->blen, sizeof(mesh)->buffer - mesh->blen, 0);
607                 if(result == -1 && errno == EINTR)
608                         continue;
609                 else if(result <= 0)
610                         return false;
611                 mesh->blen += result;
612         }
613
614         if(newline - mesh->buffer >= len)
615                 return false;
616
617         len = newline - mesh->buffer;
618
619         memcpy(mesh->line, mesh->buffer, len);
620         mesh->line[len] = 0;
621         memmove(mesh->buffer, newline + 1, mesh->blen - len - 1);
622         mesh->blen -= len + 1;
623
624         return true;
625 }
626 static bool sendline(int fd, char *format, ...) {
627         static char buffer[4096];
628         char *p = buffer;
629         int blen = 0;
630         va_list ap;
631
632         va_start(ap, format);
633         blen = vsnprintf(buffer, sizeof(buffer), format, ap);
634         va_end(ap);
635
636         if(blen < 1 || blen >= sizeof(buffer))
637                 return false;
638
639         buffer[blen] = '\n';
640         blen++;
641
642         while(blen) {
643                 int result = send(fd, p, blen, MSG_NOSIGNAL);
644                 if(result == -1 && errno == EINTR)
645                         continue;
646                 else if(result <= 0)
647                         return false;
648                 p += result;
649                 blen -= result;
650         }
651
652         return true;
653 }
654
655 static const char *errstr[] = {
656         [MESHLINK_OK] = "No error",
657         [MESHLINK_EINVAL] = "Invalid argument",
658         [MESHLINK_ENOMEM] = "Out of memory",
659         [MESHLINK_ENOENT] = "No such node",
660         [MESHLINK_EEXIST] = "Node already exists",
661         [MESHLINK_EINTERNAL] = "Internal error",
662         [MESHLINK_ERESOLV] = "Could not resolve hostname",
663         [MESHLINK_ESTORAGE] = "Storage error",
664         [MESHLINK_ENETWORK] = "Network error",
665         [MESHLINK_EPEER] = "Error communicating with peer",
666 };
667
668 const char *meshlink_strerror(meshlink_errno_t err) {
669         if(err < 0 || err >= sizeof(errstr) / sizeof(*errstr))
670                 return "Invalid error code";
671         return errstr[err];
672 }
673
674 static bool ecdsa_keygen(meshlink_handle_t *mesh) {
675         ecdsa_t *key;
676         FILE *f;
677         char pubname[PATH_MAX], privname[PATH_MAX];
678
679         logger(mesh, MESHLINK_DEBUG, "Generating ECDSA keypair:\n");
680
681         if(!(key = ecdsa_generate())) {
682                 logger(mesh, MESHLINK_DEBUG, "Error during key generation!\n");
683                 meshlink_errno = MESHLINK_EINTERNAL;
684                 return false;
685         } else
686                 logger(mesh, MESHLINK_DEBUG, "Done.\n");
687
688         snprintf(privname, sizeof(privname), "%s" SLASH "ecdsa_key.priv", mesh->confbase);
689         f = fopen(privname, "wb");
690
691         if(!f) {
692                 meshlink_errno = MESHLINK_ESTORAGE;
693                 return false;
694         }
695
696 #ifdef HAVE_FCHMOD
697         fchmod(fileno(f), 0600);
698 #endif
699
700         if(!ecdsa_write_pem_private_key(key, f)) {
701                 logger(mesh, MESHLINK_DEBUG, "Error writing private key!\n");
702                 ecdsa_free(key);
703                 fclose(f);
704                 meshlink_errno = MESHLINK_EINTERNAL;
705                 return false;
706         }
707
708         fclose(f);
709
710         snprintf(pubname, sizeof(pubname), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->name);
711         f = fopen(pubname, "a");
712
713         if(!f) {
714                 meshlink_errno = MESHLINK_ESTORAGE;
715                 return false;
716         }
717
718         char *pubkey = ecdsa_get_base64_public_key(key);
719         fprintf(f, "ECDSAPublicKey = %s\n", pubkey);
720         free(pubkey);
721
722         fclose(f);
723         ecdsa_free(key);
724
725         return true;
726 }
727
728 static struct timeval idle(event_loop_t *loop, void *data) {
729         meshlink_handle_t *mesh = data;
730         struct timeval t, tmin = {3600, 0};
731         for splay_each(node_t, n, mesh->nodes) {
732                 if(!n->utcp)
733                         continue;
734                 t = utcp_timeout(n->utcp);
735                 if(timercmp(&t, &tmin, <))
736                         tmin = t;
737         }
738         return tmin;
739 }
740
741 // Find out what local address a socket would use if we connect to the given address.
742 // We do this using connect() on a UDP socket, so the kernel has to resolve the address
743 // of both endpoints, but this will actually not send any UDP packet.
744 static bool getlocaladdrname(char *destaddr, char *host, socklen_t hostlen) {
745         struct addrinfo *rai = NULL;
746         const struct addrinfo hint = {
747                 .ai_family = AF_UNSPEC,
748                 .ai_socktype = SOCK_DGRAM,
749                 .ai_protocol = IPPROTO_UDP,
750         };
751
752         if(getaddrinfo(destaddr, "80", &hint, &rai) || !rai)
753                 return false;
754
755         int sock = socket(rai->ai_family, rai->ai_socktype, rai->ai_protocol);
756         if(sock == -1) {
757                 freeaddrinfo(rai);
758                 return false;
759         }
760
761         if(connect(sock, rai->ai_addr, rai->ai_addrlen) && !sockwouldblock(errno)) {
762                 freeaddrinfo(rai);
763                 return false;
764         }
765
766         freeaddrinfo(rai);
767
768         struct sockaddr_storage sn;
769         socklen_t sl = sizeof(sn);
770
771         if(getsockname(sock, (struct sockaddr *)&sn, &sl))
772                 return false;
773
774         if(getnameinfo((struct sockaddr *)&sn, sl, host, hostlen, NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV))
775                 return false;
776
777         return true;
778 }
779
780 // Get our local address(es) by simulating connecting to an Internet host.
781 static void add_local_addresses(meshlink_handle_t *mesh) {
782         char host[NI_MAXHOST];
783         char entry[MAX_STRING_SIZE];
784
785         // IPv4 example.org
786
787         if(getlocaladdrname("93.184.216.34", host, sizeof(host))) {
788                 snprintf(entry, sizeof(entry), "%s %s", host, mesh->myport);
789                 append_config_file(mesh, mesh->name, "Address", entry);
790         }
791
792         // IPv6 example.org
793
794         if(getlocaladdrname("2606:2800:220:1:248:1893:25c8:1946", host, sizeof(host))) {
795                 snprintf(entry, sizeof(entry), "%s %s", host, mesh->myport);
796                 append_config_file(mesh, mesh->name, "Address", entry);
797         }
798 }
799
800 static bool meshlink_setup(meshlink_handle_t *mesh) {
801         if(mkdir(mesh->confbase, 0777) && errno != EEXIST) {
802                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", mesh->confbase, strerror(errno));
803                 meshlink_errno = MESHLINK_ESTORAGE;
804                 return false;
805         }
806
807         char filename[PATH_MAX];
808         snprintf(filename, sizeof(filename), "%s" SLASH "hosts", mesh->confbase);
809
810         if(mkdir(filename, 0777) && errno != EEXIST) {
811                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", filename, strerror(errno));
812                 meshlink_errno = MESHLINK_ESTORAGE;
813                 return false;
814         }
815
816         snprintf(filename, sizeof(filename), "%s" SLASH "meshlink.conf", mesh->confbase);
817
818         if(!access(filename, F_OK)) {
819                 logger(mesh, MESHLINK_DEBUG, "Configuration file %s already exists!\n", filename);
820                 meshlink_errno = MESHLINK_EEXIST;
821                 return false;
822         }
823
824         FILE *f = fopen(filename, "w");
825         if(!f) {
826                 logger(mesh, MESHLINK_DEBUG, "Could not create file %s: %s\n", filename, strerror(errno));
827                 meshlink_errno = MESHLINK_ESTORAGE;
828                 return false;
829         }
830
831         fprintf(f, "Name = %s\n", mesh->name);
832         fclose(f);
833
834         if(!ecdsa_keygen(mesh)) {
835                 meshlink_errno = MESHLINK_EINTERNAL;
836                 return false;
837         }
838
839         check_port(mesh);
840
841         return true;
842 }
843
844 meshlink_handle_t *meshlink_open(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
845         // Validate arguments provided by the application
846         bool usingname = false;
847
848         logger(NULL, MESHLINK_DEBUG, "meshlink_open called\n");
849
850         if(!confbase || !*confbase) {
851                 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
852                 meshlink_errno = MESHLINK_EINVAL;
853                 return NULL;
854         }
855
856         if(!appname || !*appname) {
857                 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
858                 meshlink_errno = MESHLINK_EINVAL;
859                 return NULL;
860         }
861
862         if(!name || !*name) {
863                 logger(NULL, MESHLINK_ERROR, "No name given!\n");
864                 //return NULL;
865         } else { //check name only if there is a name != NULL
866
867                 if(!check_id(name)) {
868                         logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
869                         meshlink_errno = MESHLINK_EINVAL;
870                         return NULL;
871                 } else
872                         usingname = true;
873         }
874
875         if(devclass < 0 || devclass > _DEV_CLASS_MAX) {
876                 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
877                 meshlink_errno = MESHLINK_EINVAL;
878                 return NULL;
879         }
880
881         meshlink_handle_t *mesh = xzalloc(sizeof(meshlink_handle_t));
882         mesh->confbase = xstrdup(confbase);
883         mesh->appname = xstrdup(appname);
884         mesh->devclass = devclass;
885         if(usingname) mesh->name = xstrdup(name);
886
887         // initialize mutex
888         pthread_mutexattr_t attr;
889         pthread_mutexattr_init(&attr);
890         pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
891         pthread_mutex_init(&(mesh->mesh_mutex), &attr);
892
893         mesh->threadstarted = false;
894         event_loop_init(&mesh->loop);
895         mesh->loop.data = mesh;
896
897         // Check whether meshlink.conf already exists
898
899         char filename[PATH_MAX];
900         snprintf(filename, sizeof(filename), "%s" SLASH "meshlink.conf", confbase);
901
902         if(access(filename, R_OK)) {
903                 if(errno == ENOENT) {
904                         // If not, create it
905                         if(!meshlink_setup(mesh)) {
906                                 // meshlink_errno is set by meshlink_setup()
907                                 return NULL;
908                         }
909                 } else {
910                         logger(NULL, MESHLINK_ERROR, "Cannot not read from %s: %s\n", filename, strerror(errno));
911                         meshlink_close(mesh);
912                         meshlink_errno = MESHLINK_ESTORAGE;
913                         return NULL;
914                 }
915         }
916
917         // Read the configuration
918
919         init_configuration(&mesh->config);
920
921         if(!read_server_config(mesh)) {
922                 meshlink_close(mesh);
923                 meshlink_errno = MESHLINK_ESTORAGE;
924                 return NULL;
925         };
926
927 #ifdef HAVE_MINGW
928         struct WSAData wsa_state;
929         WSAStartup(MAKEWORD(2, 2), &wsa_state);
930 #endif
931
932         // Setup up everything
933         // TODO: we should not open listening sockets yet
934
935         if(!setup_network(mesh)) {
936                 meshlink_close(mesh);
937                 meshlink_errno = MESHLINK_ENETWORK;
938                 return NULL;
939         }
940
941         add_local_addresses(mesh);
942
943         idle_set(&mesh->loop, idle, mesh);
944
945         logger(NULL, MESHLINK_DEBUG, "meshlink_open returning\n");
946         return mesh;
947 }
948
949 static void *meshlink_main_loop(void *arg) {
950         meshlink_handle_t *mesh = arg;
951
952         pthread_mutex_lock(&(mesh->mesh_mutex));
953
954         try_outgoing_connections(mesh);
955
956         logger(mesh, MESHLINK_DEBUG, "Starting main_loop...\n");
957         main_loop(mesh);
958         logger(mesh, MESHLINK_DEBUG, "main_loop returned.\n");
959
960         pthread_mutex_unlock(&(mesh->mesh_mutex));
961         return NULL;
962 }
963
964 bool meshlink_start(meshlink_handle_t *mesh) {
965         if(!mesh) {
966                 meshlink_errno = MESHLINK_EINVAL;
967                 return false;
968         }
969
970         logger(mesh, MESHLINK_DEBUG, "meshlink_start called\n");
971
972         pthread_mutex_lock(&(mesh->mesh_mutex));
973
974         if(mesh->threadstarted) {
975                 logger(mesh, MESHLINK_DEBUG, "thread was already running\n");
976                 pthread_mutex_unlock(&(mesh->mesh_mutex));
977                 return true;
978         }
979
980         if(mesh->listen_socket[0].tcp.fd < 0) {
981                 logger(mesh, MESHLINK_ERROR, "Listening socket not open\n");
982                 meshlink_errno = MESHLINK_ENETWORK;
983                 return false;
984         }
985
986         mesh->thedatalen = 0;
987
988         // TODO: open listening sockets first
989
990         //Check that a valid name is set
991         if(!mesh->name) {
992                 logger(mesh, MESHLINK_DEBUG, "No name given!\n");
993                 meshlink_errno = MESHLINK_EINVAL;
994                 pthread_mutex_unlock(&(mesh->mesh_mutex));
995                 return false;
996         }
997
998         // Start the main thread
999
1000         event_loop_start(&mesh->loop);
1001
1002         if(pthread_create(&mesh->thread, NULL, meshlink_main_loop, mesh) != 0) {
1003                 logger(mesh, MESHLINK_DEBUG, "Could not start thread: %s\n", strerror(errno));
1004                 memset(&mesh->thread, 0, sizeof(mesh)->thread);
1005                 meshlink_errno = MESHLINK_EINTERNAL;
1006                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1007                 return false;
1008         }
1009
1010         mesh->threadstarted = true;
1011
1012         if(mesh->discovery)
1013                 discovery_start(mesh);
1014
1015         pthread_mutex_unlock(&(mesh->mesh_mutex));
1016         return true;
1017 }
1018
1019 void meshlink_stop(meshlink_handle_t *mesh) {
1020         if(!mesh) {
1021                 meshlink_errno = MESHLINK_EINVAL;
1022                 return;
1023         }
1024
1025         pthread_mutex_lock(&(mesh->mesh_mutex));
1026         logger(mesh, MESHLINK_DEBUG, "meshlink_stop called\n");
1027
1028         // Stop discovery
1029         if(mesh->discovery)
1030                 discovery_stop(mesh);
1031
1032         // Shut down the main thread
1033         event_loop_stop(&mesh->loop);
1034
1035         // Send ourselves a UDP packet to kick the event loop
1036         listen_socket_t *s = &mesh->listen_socket[0];
1037         if(sendto(s->udp.fd, "", 1, MSG_NOSIGNAL, &s->sa.sa, SALEN(s->sa.sa)) == -1)
1038                 logger(mesh, MESHLINK_ERROR, "Could not send a UDP packet to ourself");
1039
1040         // Wait for the main thread to finish
1041         pthread_mutex_unlock(&(mesh->mesh_mutex));
1042         pthread_join(mesh->thread, NULL);
1043         pthread_mutex_lock(&(mesh->mesh_mutex));
1044
1045         mesh->threadstarted = false;
1046
1047         // Close all metaconnections
1048         if(mesh->connections) {
1049                 for(list_node_t *node = mesh->connections->head, *next; node; node = next) {
1050                         next = node->next;
1051                         connection_t *c = node->data;
1052                         c->outgoing = NULL;
1053                         terminate_connection(mesh, c, false);
1054                 }
1055         }
1056
1057         if(mesh->outgoings)
1058                 list_delete_list(mesh->outgoings);
1059         mesh->outgoings = NULL;
1060
1061         pthread_mutex_unlock(&(mesh->mesh_mutex));
1062 }
1063
1064 void meshlink_close(meshlink_handle_t *mesh) {
1065         if(!mesh || !mesh->confbase) {
1066                 meshlink_errno = MESHLINK_EINVAL;
1067                 return;
1068         }
1069
1070         // stop can be called even if mesh has not been started
1071         meshlink_stop(mesh);
1072
1073         // lock is not released after this
1074         pthread_mutex_lock(&(mesh->mesh_mutex));
1075
1076         // Close and free all resources used.
1077
1078         close_network_connections(mesh);
1079
1080         logger(mesh, MESHLINK_INFO, "Terminating");
1081
1082         exit_configuration(&mesh->config);
1083         event_loop_exit(&mesh->loop);
1084
1085 #ifdef HAVE_MINGW
1086         if(mesh->confbase)
1087                 WSACleanup();
1088 #endif
1089
1090         ecdsa_free(mesh->invitation_key);
1091
1092         free(mesh->name);
1093         free(mesh->appname);
1094         free(mesh->confbase);
1095         pthread_mutex_destroy(&(mesh->mesh_mutex));
1096
1097         memset(mesh, 0, sizeof(*mesh));
1098
1099         free(mesh);
1100 }
1101
1102 static void deltree(const char *dirname) {
1103         DIR *d = opendir(dirname);
1104         if(d) {
1105                 struct dirent *ent;
1106                 while((ent = readdir(d))) {
1107                         if(ent->d_name[0] == '.')
1108                                 continue;
1109                         char filename[PATH_MAX];
1110                         snprintf(filename, sizeof(filename), "%s" SLASH "%s", dirname, ent->d_name);
1111                         if(unlink(filename))
1112                                 deltree(filename);
1113                 }
1114                 closedir(d);
1115         }
1116         rmdir(dirname);
1117         return;
1118 }
1119
1120 bool meshlink_destroy(const char *confbase) {
1121         if(!confbase) {
1122                 meshlink_errno = MESHLINK_EINVAL;
1123                 return false;
1124         }
1125
1126         char filename[PATH_MAX];
1127         snprintf(filename, sizeof(filename), "%s" SLASH "meshlink.conf", confbase);
1128
1129         if(unlink(filename)) {
1130                 if(errno == ENOENT) {
1131                         meshlink_errno = MESHLINK_ENOENT;
1132                         return false;
1133                 } else {
1134                         logger(NULL, MESHLINK_ERROR, "Cannot delete %s: %s\n", filename, strerror(errno));
1135                         meshlink_errno = MESHLINK_ESTORAGE;
1136                         return false;
1137                 }
1138         }
1139
1140         deltree(confbase);
1141
1142         return true;
1143 }
1144
1145 void meshlink_set_receive_cb(meshlink_handle_t *mesh, meshlink_receive_cb_t cb) {
1146         if(!mesh) {
1147                 meshlink_errno = MESHLINK_EINVAL;
1148                 return;
1149         }
1150
1151         pthread_mutex_lock(&(mesh->mesh_mutex));
1152         mesh->receive_cb = cb;
1153         pthread_mutex_unlock(&(mesh->mesh_mutex));
1154 }
1155
1156 void meshlink_set_node_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
1157         if(!mesh) {
1158                 meshlink_errno = MESHLINK_EINVAL;
1159                 return;
1160         }
1161
1162         pthread_mutex_lock(&(mesh->mesh_mutex));
1163         mesh->node_status_cb = cb;
1164         pthread_mutex_unlock(&(mesh->mesh_mutex));
1165 }
1166
1167 void meshlink_set_log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, meshlink_log_cb_t cb) {
1168         if(mesh) {
1169                 pthread_mutex_lock(&(mesh->mesh_mutex));
1170                 mesh->log_cb = cb;
1171                 mesh->log_level = cb ? level : 0;
1172                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1173         } else {
1174                 global_log_cb = cb;
1175                 global_log_level = cb ? level : 0;
1176         }
1177 }
1178
1179 bool meshlink_send(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len) {
1180         meshlink_packethdr_t *hdr;
1181
1182         // Validate arguments
1183         if(!mesh || !destination || len >= MAXSIZE - sizeof(*hdr)) {
1184                 meshlink_errno = MESHLINK_EINVAL;
1185                 return false;
1186         }
1187
1188         if(!len)
1189                 return true;
1190
1191         if(!data) {
1192                 meshlink_errno = MESHLINK_EINVAL;
1193                 return false;
1194         }
1195
1196         // Prepare the packet
1197         vpn_packet_t *packet = malloc(sizeof(*packet));
1198         if(!packet) {
1199                 meshlink_errno = MESHLINK_ENOMEM;
1200                 return false;
1201         }
1202
1203         packet->probe = false;
1204         packet->tcp = false;
1205         packet->len = len + sizeof(*hdr);
1206
1207         hdr = (meshlink_packethdr_t *)packet->data;
1208         memset(hdr, 0, sizeof(*hdr));
1209         // leave the last byte as 0 to make sure strings are always
1210         // null-terminated if they are longer than the buffer
1211         strncpy((char *)hdr->destination, destination->name, (sizeof(hdr)->destination) - 1);
1212         strncpy((char *)hdr->source, mesh->self->name, (sizeof(hdr)->source) - 1);
1213
1214         memcpy(packet->data + sizeof(*hdr), data, len);
1215
1216         // Queue it
1217         if(!meshlink_queue_push(&mesh->outpacketqueue, packet)) {
1218                 free(packet);
1219                 meshlink_errno = MESHLINK_ENOMEM;
1220                 return false;
1221         }
1222
1223         // Notify event loop
1224         signal_trigger(&(mesh->loop), &(mesh->datafromapp));
1225
1226         return true;
1227 }
1228
1229 void meshlink_send_from_queue(event_loop_t *loop, meshlink_handle_t *mesh) {
1230         vpn_packet_t *packet = meshlink_queue_pop(&mesh->outpacketqueue);
1231         if(!packet)
1232                 return;
1233
1234         mesh->self->in_packets++;
1235         mesh->self->in_bytes += packet->len;
1236         route(mesh, mesh->self, packet);
1237 }
1238
1239 ssize_t meshlink_get_pmtu(meshlink_handle_t *mesh, meshlink_node_t *destination) {
1240         if(!mesh || !destination) {
1241                 meshlink_errno = MESHLINK_EINVAL;
1242                 return -1;
1243         }
1244         pthread_mutex_lock(&(mesh->mesh_mutex));
1245
1246         node_t *n = (node_t *)destination;
1247         if(!n->status.reachable) {
1248                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1249                 return 0;
1250
1251         } else if(n->mtuprobes > 30 && n->minmtu) {
1252                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1253                 return n->minmtu;
1254         } else {
1255                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1256                 return MTU;
1257         }
1258 }
1259
1260 char *meshlink_get_fingerprint(meshlink_handle_t *mesh, meshlink_node_t *node) {
1261         if(!mesh || !node) {
1262                 meshlink_errno = MESHLINK_EINVAL;
1263                 return NULL;
1264         }
1265         pthread_mutex_lock(&(mesh->mesh_mutex));
1266
1267         node_t *n = (node_t *)node;
1268
1269         if(!node_read_ecdsa_public_key(mesh, n) || !n->ecdsa) {
1270                 meshlink_errno = MESHLINK_EINTERNAL;
1271                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1272                 return false;
1273         }
1274
1275         char *fingerprint = ecdsa_get_base64_public_key(n->ecdsa);
1276
1277         if(!fingerprint)
1278                 meshlink_errno = MESHLINK_EINTERNAL;
1279
1280         pthread_mutex_unlock(&(mesh->mesh_mutex));
1281         return fingerprint;
1282 }
1283
1284 meshlink_node_t *meshlink_get_self(meshlink_handle_t *mesh) {
1285         if(!mesh) {
1286                 meshlink_errno = MESHLINK_EINVAL;
1287                 return NULL;
1288         }
1289
1290         return (meshlink_node_t *)mesh->self;
1291 }
1292
1293 meshlink_node_t *meshlink_get_node(meshlink_handle_t *mesh, const char *name) {
1294         if(!mesh || !name) {
1295                 meshlink_errno = MESHLINK_EINVAL;
1296                 return NULL;
1297         }
1298
1299         meshlink_node_t *node = NULL;
1300
1301         pthread_mutex_lock(&(mesh->mesh_mutex));
1302         node = (meshlink_node_t *)lookup_node(mesh, (char *)name); // TODO: make lookup_node() use const
1303         pthread_mutex_unlock(&(mesh->mesh_mutex));
1304         return node;
1305 }
1306
1307 meshlink_node_t **meshlink_get_all_nodes(meshlink_handle_t *mesh, meshlink_node_t **nodes, size_t *nmemb) {
1308         if(!mesh || !nmemb || (*nmemb && !nodes)) {
1309                 meshlink_errno = MESHLINK_EINVAL;
1310                 return NULL;
1311         }
1312
1313         meshlink_node_t **result;
1314
1315         //lock mesh->nodes
1316         pthread_mutex_lock(&(mesh->mesh_mutex));
1317
1318         *nmemb = mesh->nodes->count;
1319         result = realloc(nodes, *nmemb * sizeof(*nodes));
1320
1321         if(result) {
1322                 meshlink_node_t **p = result;
1323                 for splay_each(node_t, n, mesh->nodes)
1324                         *p++ = (meshlink_node_t *)n;
1325         } else {
1326                 *nmemb = 0;
1327                 free(nodes);
1328                 meshlink_errno = MESHLINK_ENOMEM;
1329         }
1330
1331         pthread_mutex_unlock(&(mesh->mesh_mutex));
1332
1333         return result;
1334 }
1335
1336 bool meshlink_sign(meshlink_handle_t *mesh, const void *data, size_t len, void *signature, size_t *siglen) {
1337         if(!mesh || !data || !len || !signature || !siglen) {
1338                 meshlink_errno = MESHLINK_EINVAL;
1339                 return false;
1340         }
1341
1342         if(*siglen < MESHLINK_SIGLEN) {
1343                 meshlink_errno = MESHLINK_EINVAL;
1344                 return false;
1345         }
1346
1347         pthread_mutex_lock(&(mesh->mesh_mutex));
1348
1349         if(!ecdsa_sign(mesh->self->connection->ecdsa, data, len, signature)) {
1350                 meshlink_errno = MESHLINK_EINTERNAL;
1351                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1352                 return false;
1353         }
1354
1355         *siglen = MESHLINK_SIGLEN;
1356         pthread_mutex_unlock(&(mesh->mesh_mutex));
1357         return true;
1358 }
1359
1360 bool meshlink_verify(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len, const void *signature, size_t siglen) {
1361         if(!mesh || !data || !len || !signature) {
1362                 meshlink_errno = MESHLINK_EINVAL;
1363                 return false;
1364         }
1365
1366         if(siglen != MESHLINK_SIGLEN) {
1367                 meshlink_errno = MESHLINK_EINVAL;
1368                 return false;
1369         }
1370
1371         pthread_mutex_lock(&(mesh->mesh_mutex));
1372
1373         bool rval = false;
1374
1375         struct node_t *n = (struct node_t *)source;
1376         node_read_ecdsa_public_key(mesh, n);
1377         if(!n->ecdsa) {
1378                 meshlink_errno = MESHLINK_EINTERNAL;
1379                 rval = false;
1380         } else
1381                 rval = ecdsa_verify(((struct node_t *)source)->ecdsa, data, len, signature);
1382         pthread_mutex_unlock(&(mesh->mesh_mutex));
1383         return rval;
1384 }
1385
1386 static bool refresh_invitation_key(meshlink_handle_t *mesh) {
1387         char filename[PATH_MAX];
1388
1389         pthread_mutex_lock(&(mesh->mesh_mutex));
1390
1391         snprintf(filename, sizeof(filename), "%s" SLASH "invitations", mesh->confbase);
1392         if(mkdir(filename, 0700) && errno != EEXIST) {
1393                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", filename, strerror(errno));
1394                 meshlink_errno = MESHLINK_ESTORAGE;
1395                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1396                 return false;
1397         }
1398
1399         // Count the number of valid invitations, clean up old ones
1400         DIR *dir = opendir(filename);
1401         if(!dir) {
1402                 logger(mesh, MESHLINK_DEBUG, "Could not read directory %s: %s\n", filename, strerror(errno));
1403                 meshlink_errno = MESHLINK_ESTORAGE;
1404                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1405                 return false;
1406         }
1407
1408         errno = 0;
1409         int count = 0;
1410         struct dirent *ent;
1411         time_t deadline = time(NULL) - 604800; // 1 week in the past
1412
1413         while((ent = readdir(dir))) {
1414                 if(strlen(ent->d_name) != 24)
1415                         continue;
1416                 char invname[PATH_MAX];
1417                 struct stat st;
1418                 snprintf(invname, sizeof(invname), "%s" SLASH "%s", filename, ent->d_name);
1419                 if(!stat(invname, &st)) {
1420                         if(mesh->invitation_key && deadline < st.st_mtime)
1421                                 count++;
1422                         else
1423                                 unlink(invname);
1424                 } else {
1425                         logger(mesh, MESHLINK_DEBUG, "Could not stat %s: %s\n", invname, strerror(errno));
1426                         errno = 0;
1427                 }
1428         }
1429
1430         if(errno) {
1431                 logger(mesh, MESHLINK_DEBUG, "Error while reading directory %s: %s\n", filename, strerror(errno));
1432                 closedir(dir);
1433                 meshlink_errno = MESHLINK_ESTORAGE;
1434                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1435                 return false;
1436         }
1437
1438         closedir(dir);
1439
1440         snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "ecdsa_key.priv", mesh->confbase);
1441
1442         // Remove the key if there are no outstanding invitations.
1443         if(!count) {
1444                 unlink(filename);
1445                 if(mesh->invitation_key) {
1446                         ecdsa_free(mesh->invitation_key);
1447                         mesh->invitation_key = NULL;
1448                 }
1449         }
1450
1451         if(mesh->invitation_key) {
1452                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1453                 return true;
1454         }
1455
1456         // Create a new key if necessary.
1457         FILE *f = fopen(filename, "rb");
1458         if(!f) {
1459                 if(errno != ENOENT) {
1460                         logger(mesh, MESHLINK_DEBUG, "Could not read %s: %s\n", filename, strerror(errno));
1461                         meshlink_errno = MESHLINK_ESTORAGE;
1462                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1463                         return false;
1464                 }
1465
1466                 mesh->invitation_key = ecdsa_generate();
1467                 if(!mesh->invitation_key) {
1468                         logger(mesh, MESHLINK_DEBUG, "Could not generate a new key!\n");
1469                         meshlink_errno = MESHLINK_EINTERNAL;
1470                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1471                         return false;
1472                 }
1473                 f = fopen(filename, "wb");
1474                 if(!f) {
1475                         logger(mesh, MESHLINK_DEBUG, "Could not write %s: %s\n", filename, strerror(errno));
1476                         meshlink_errno = MESHLINK_ESTORAGE;
1477                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1478                         return false;
1479                 }
1480                 chmod(filename, 0600);
1481                 ecdsa_write_pem_private_key(mesh->invitation_key, f);
1482                 fclose(f);
1483         } else {
1484                 mesh->invitation_key = ecdsa_read_pem_private_key(f);
1485                 fclose(f);
1486                 if(!mesh->invitation_key) {
1487                         logger(mesh, MESHLINK_DEBUG, "Could not read private key from %s\n", filename);
1488                         meshlink_errno = MESHLINK_ESTORAGE;
1489                 }
1490         }
1491
1492         pthread_mutex_unlock(&(mesh->mesh_mutex));
1493         return mesh->invitation_key;
1494 }
1495
1496 bool meshlink_add_address(meshlink_handle_t *mesh, const char *address) {
1497         if(!mesh || !address) {
1498                 meshlink_errno = MESHLINK_EINVAL;
1499                 return false;
1500         }
1501
1502         if(!is_valid_hostname(address)) {
1503                 logger(mesh, MESHLINK_DEBUG, "Invalid character in address: %s\n", address);
1504                 meshlink_errno = MESHLINK_EINVAL;
1505                 return false;
1506         }
1507
1508         bool rval = false;
1509
1510         pthread_mutex_lock(&(mesh->mesh_mutex));
1511         rval = append_config_file(mesh, mesh->self->name, "Address", address);
1512         pthread_mutex_unlock(&(mesh->mesh_mutex));
1513
1514         return rval;
1515 }
1516
1517 bool meshlink_add_external_address(meshlink_handle_t *mesh) {
1518         if(!mesh) {
1519                 meshlink_errno = MESHLINK_EINVAL;
1520                 return false;
1521         }
1522
1523         char *address = meshlink_get_external_address(mesh);
1524         if(!address)
1525                 return false;
1526
1527         bool rval = false;
1528
1529         pthread_mutex_lock(&(mesh->mesh_mutex));
1530         rval = append_config_file(mesh, mesh->self->name, "Address", address);
1531         pthread_mutex_unlock(&(mesh->mesh_mutex));
1532
1533         free(address);
1534         return rval;
1535 }
1536
1537 int meshlink_get_port(meshlink_handle_t *mesh) {
1538         if(!mesh) {
1539                 meshlink_errno = MESHLINK_EINVAL;
1540                 return -1;
1541         }
1542
1543         if(!mesh->myport) {
1544                 meshlink_errno = MESHLINK_EINTERNAL;
1545                 return -1;
1546         }
1547
1548         return atoi(mesh->myport);
1549 }
1550
1551 bool meshlink_set_port(meshlink_handle_t *mesh, int port) {
1552         if(!mesh || port < 0 || port >= 65536 || mesh->threadstarted) {
1553                 meshlink_errno = MESHLINK_EINVAL;
1554                 return false;
1555         }
1556
1557         if(mesh->myport && port == atoi(mesh->myport))
1558                 return true;
1559
1560         if(!try_bind(port)) {
1561                 meshlink_errno = MESHLINK_ENETWORK;
1562                 return false;
1563         }
1564
1565         bool rval = false;
1566
1567         pthread_mutex_lock(&(mesh->mesh_mutex));
1568         if(mesh->threadstarted) {
1569                 meshlink_errno = MESHLINK_EINVAL;
1570                 goto done;
1571         }
1572
1573         close_network_connections(mesh);
1574         exit_configuration(&mesh->config);
1575
1576         char portstr[10];
1577         snprintf(portstr, sizeof(portstr), "%d", port);
1578         portstr[sizeof(portstr) - 1] = 0;
1579
1580         modify_config_file(mesh, mesh->name, "Port", portstr, true);
1581
1582         init_configuration(&mesh->config);
1583
1584         if(!read_server_config(mesh))
1585                 meshlink_errno = MESHLINK_ESTORAGE;
1586         else if(!setup_network(mesh))
1587                 meshlink_errno = MESHLINK_ENETWORK;
1588         else
1589                 rval = true;
1590
1591 done:
1592         pthread_mutex_unlock(&(mesh->mesh_mutex));
1593
1594         return rval;
1595 }
1596
1597 char *meshlink_invite(meshlink_handle_t *mesh, const char *name) {
1598         if(!mesh) {
1599                 meshlink_errno = MESHLINK_EINVAL;
1600                 return NULL;
1601         }
1602
1603         pthread_mutex_lock(&(mesh->mesh_mutex));
1604
1605         // Check validity of the new node's name
1606         if(!check_id(name)) {
1607                 logger(mesh, MESHLINK_DEBUG, "Invalid name for node.\n");
1608                 meshlink_errno = MESHLINK_EINVAL;
1609                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1610                 return NULL;
1611         }
1612
1613         // Ensure no host configuration file with that name exists
1614         char filename[PATH_MAX];
1615         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
1616         if(!access(filename, F_OK)) {
1617                 logger(mesh, MESHLINK_DEBUG, "A host config file for %s already exists!\n", name);
1618                 meshlink_errno = MESHLINK_EEXIST;
1619                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1620                 return NULL;
1621         }
1622
1623         // Ensure no other nodes know about this name
1624         if(meshlink_get_node(mesh, name)) {
1625                 logger(mesh, MESHLINK_DEBUG, "A node with name %s is already known!\n", name);
1626                 meshlink_errno = MESHLINK_EEXIST;
1627                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1628                 return NULL;
1629         }
1630
1631         // Get the local address
1632         char *address = get_my_hostname(mesh);
1633         if(!address) {
1634                 logger(mesh, MESHLINK_DEBUG, "No Address known for ourselves!\n");
1635                 meshlink_errno = MESHLINK_ERESOLV;
1636                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1637                 return NULL;
1638         }
1639
1640         if(!refresh_invitation_key(mesh)) {
1641                 meshlink_errno = MESHLINK_EINTERNAL;
1642                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1643                 return NULL;
1644         }
1645
1646         char hash[64];
1647
1648         // Create a hash of the key.
1649         char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
1650         sha512(fingerprint, strlen(fingerprint), hash);
1651         b64encode_urlsafe(hash, hash, 18);
1652
1653         // Create a random cookie for this invitation.
1654         char cookie[25];
1655         randomize(cookie, 18);
1656
1657         // Create a filename that doesn't reveal the cookie itself
1658         char buf[18 + strlen(fingerprint)];
1659         char cookiehash[64];
1660         memcpy(buf, cookie, 18);
1661         memcpy(buf + 18, fingerprint, sizeof(buf) - 18);
1662         sha512(buf, sizeof(buf), cookiehash);
1663         b64encode_urlsafe(cookiehash, cookiehash, 18);
1664
1665         b64encode_urlsafe(cookie, cookie, 18);
1666
1667         free(fingerprint);
1668
1669         // Create a file containing the details of the invitation.
1670         snprintf(filename, sizeof(filename), "%s" SLASH "invitations" SLASH "%s", mesh->confbase, cookiehash);
1671         int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
1672         if(!ifd) {
1673                 logger(mesh, MESHLINK_DEBUG, "Could not create invitation file %s: %s\n", filename, strerror(errno));
1674                 meshlink_errno = MESHLINK_ESTORAGE;
1675                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1676                 return NULL;
1677         }
1678         FILE *f = fdopen(ifd, "w");
1679         if(!f)
1680                 abort();
1681
1682         // Fill in the details.
1683         fprintf(f, "Name = %s\n", name);
1684         //if(netname)
1685         //      fprintf(f, "NetName = %s\n", netname);
1686         fprintf(f, "ConnectTo = %s\n", mesh->self->name);
1687
1688         // Copy Broadcast and Mode
1689         snprintf(filename, sizeof(filename), "%s" SLASH "meshlink.conf", mesh->confbase);
1690         FILE *tc = fopen(filename,  "r");
1691         if(tc) {
1692                 char buf[1024];
1693                 while(fgets(buf, sizeof(buf), tc)) {
1694                         if((!strncasecmp(buf, "Mode", 4) && strchr(" \t=", buf[4]))
1695                                         || (!strncasecmp(buf, "Broadcast", 9) && strchr(" \t=", buf[9]))) {
1696                                 fputs(buf, f);
1697                                 // Make sure there is a newline character.
1698                                 if(!strchr(buf, '\n'))
1699                                         fputc('\n', f);
1700                         }
1701                 }
1702                 fclose(tc);
1703         } else {
1704                 logger(mesh, MESHLINK_DEBUG, "Could not create %s: %s\n", filename, strerror(errno));
1705                 meshlink_errno = MESHLINK_ESTORAGE;
1706                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1707                 return NULL;
1708         }
1709
1710         fprintf(f, "#---------------------------------------------------------------#\n");
1711         fprintf(f, "Name = %s\n", mesh->self->name);
1712
1713         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
1714         fcopy(f, filename);
1715         fclose(f);
1716
1717         // Create an URL from the local address, key hash and cookie
1718         char *url;
1719         xasprintf(&url, "%s/%s%s", address, hash, cookie);
1720         free(address);
1721
1722         pthread_mutex_unlock(&(mesh->mesh_mutex));
1723         return url;
1724 }
1725
1726 bool meshlink_join(meshlink_handle_t *mesh, const char *invitation) {
1727         if(!mesh || !invitation) {
1728                 meshlink_errno = MESHLINK_EINVAL;
1729                 return false;
1730         }
1731
1732         pthread_mutex_lock(&(mesh->mesh_mutex));
1733
1734         //TODO: think of a better name for this variable, or of a different way to tokenize the invitation URL.
1735         char copy[strlen(invitation) + 1];
1736         strcpy(copy, invitation);
1737
1738         // Split the invitation URL into hostname, port, key hash and cookie.
1739
1740         char *slash = strchr(copy, '/');
1741         if(!slash)
1742                 goto invalid;
1743
1744         *slash++ = 0;
1745
1746         if(strlen(slash) != 48)
1747                 goto invalid;
1748
1749         char *address = copy;
1750         char *port = NULL;
1751         if(*address == '[') {
1752                 address++;
1753                 char *bracket = strchr(address, ']');
1754                 if(!bracket)
1755                         goto invalid;
1756                 *bracket = 0;
1757                 if(bracket[1] == ':')
1758                         port = bracket + 2;
1759         } else {
1760                 port = strchr(address, ':');
1761                 if(port)
1762                         *port++ = 0;
1763         }
1764
1765         if(!port)
1766                 goto invalid;
1767
1768         if(!b64decode(slash, mesh->hash, 18) || !b64decode(slash + 24, mesh->cookie, 18))
1769                 goto invalid;
1770
1771         // Generate a throw-away key for the invitation.
1772         ecdsa_t *key = ecdsa_generate();
1773         if(!key) {
1774                 meshlink_errno = MESHLINK_EINTERNAL;
1775                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1776                 return false;
1777         }
1778
1779         char *b64key = ecdsa_get_base64_public_key(key);
1780
1781         //Before doing meshlink_join make sure we are not connected to another mesh
1782         if(mesh->threadstarted)
1783                 goto invalid;
1784
1785         // Connect to the meshlink daemon mentioned in the URL.
1786         struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
1787         if(!ai) {
1788                 meshlink_errno = MESHLINK_ERESOLV;
1789                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1790                 return false;
1791         }
1792
1793         mesh->sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1794         if(mesh->sock <= 0) {
1795                 logger(mesh, MESHLINK_DEBUG, "Could not open socket: %s\n", strerror(errno));
1796                 freeaddrinfo(ai);
1797                 meshlink_errno = MESHLINK_ENETWORK;
1798                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1799                 return false;
1800         }
1801
1802         set_timeout(mesh->sock, 5000);
1803
1804         if(connect(mesh->sock, ai->ai_addr, ai->ai_addrlen)) {
1805                 logger(mesh, MESHLINK_DEBUG, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
1806                 closesocket(mesh->sock);
1807                 freeaddrinfo(ai);
1808                 meshlink_errno = MESHLINK_ENETWORK;
1809                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1810                 return false;
1811         }
1812
1813         freeaddrinfo(ai);
1814
1815         logger(mesh, MESHLINK_DEBUG, "Connected to %s port %s...\n", address, port);
1816
1817         // Tell him we have an invitation, and give him our throw-away key.
1818
1819         mesh->blen = 0;
1820
1821         if(!sendline(mesh->sock, "0 ?%s %d.%d", b64key, PROT_MAJOR, 1)) {
1822                 logger(mesh, MESHLINK_DEBUG, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
1823                 closesocket(mesh->sock);
1824                 meshlink_errno = MESHLINK_ENETWORK;
1825                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1826                 return false;
1827         }
1828
1829         free(b64key);
1830
1831         char hisname[4096] = "";
1832         int code, hismajor, hisminor = 0;
1833
1834         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) {
1835                 logger(mesh, MESHLINK_DEBUG, "Cannot read greeting from peer\n");
1836                 closesocket(mesh->sock);
1837                 meshlink_errno = MESHLINK_ENETWORK;
1838                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1839                 return false;
1840         }
1841
1842         // Check if the hash of the key he gave us matches the hash in the URL.
1843         char *fingerprint = mesh->line + 2;
1844         char hishash[64];
1845         if(sha512(fingerprint, strlen(fingerprint), hishash)) {
1846                 logger(mesh, MESHLINK_DEBUG, "Could not create hash\n%s\n", mesh->line + 2);
1847                 meshlink_errno = MESHLINK_EINTERNAL;
1848                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1849                 return false;
1850         }
1851         if(memcmp(hishash, mesh->hash, 18)) {
1852                 logger(mesh, MESHLINK_DEBUG, "Peer has an invalid key!\n%s\n", mesh->line + 2);
1853                 meshlink_errno = MESHLINK_EPEER;
1854                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1855                 return false;
1856
1857         }
1858
1859         ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
1860         if(!hiskey) {
1861                 meshlink_errno = MESHLINK_EINTERNAL;
1862                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1863                 return false;
1864         }
1865
1866         // Start an SPTPS session
1867         if(!sptps_start(&mesh->sptps, mesh, true, false, key, hiskey, meshlink_invitation_label, sizeof(meshlink_invitation_label), invitation_send, invitation_receive)) {
1868                 meshlink_errno = MESHLINK_EINTERNAL;
1869                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1870                 return false;
1871         }
1872
1873         // Feed rest of input buffer to SPTPS
1874         if(!sptps_receive_data(&mesh->sptps, mesh->buffer, mesh->blen)) {
1875                 meshlink_errno = MESHLINK_EPEER;
1876                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1877                 return false;
1878         }
1879
1880         int len;
1881
1882         while((len = recv(mesh->sock, mesh->line, sizeof(mesh)->line, 0))) {
1883                 if(len < 0) {
1884                         if(errno == EINTR)
1885                                 continue;
1886                         logger(mesh, MESHLINK_DEBUG, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
1887                         meshlink_errno = MESHLINK_ENETWORK;
1888                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1889                         return false;
1890                 }
1891
1892                 if(!sptps_receive_data(&mesh->sptps, mesh->line, len)) {
1893                         meshlink_errno = MESHLINK_EPEER;
1894                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1895                         return false;
1896                 }
1897         }
1898
1899         sptps_stop(&mesh->sptps);
1900         ecdsa_free(hiskey);
1901         ecdsa_free(key);
1902         closesocket(mesh->sock);
1903
1904         if(!mesh->success) {
1905                 logger(mesh, MESHLINK_DEBUG, "Connection closed by peer, invitation cancelled.\n");
1906                 meshlink_errno = MESHLINK_EPEER;
1907                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1908                 return false;
1909         }
1910
1911         pthread_mutex_unlock(&(mesh->mesh_mutex));
1912         return true;
1913
1914 invalid:
1915         logger(mesh, MESHLINK_DEBUG, "Invalid invitation URL or you are already connected to a Mesh ?\n");
1916         meshlink_errno = MESHLINK_EINVAL;
1917         pthread_mutex_unlock(&(mesh->mesh_mutex));
1918         return false;
1919 }
1920
1921 char *meshlink_export(meshlink_handle_t *mesh) {
1922         if(!mesh) {
1923                 meshlink_errno = MESHLINK_EINVAL;
1924                 return NULL;
1925         }
1926
1927         pthread_mutex_lock(&(mesh->mesh_mutex));
1928
1929         char filename[PATH_MAX];
1930         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
1931         FILE *f = fopen(filename, "r");
1932         if(!f) {
1933                 logger(mesh, MESHLINK_DEBUG, "Could not open %s: %s\n", filename, strerror(errno));
1934                 meshlink_errno = MESHLINK_ESTORAGE;
1935                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1936                 return NULL;
1937         }
1938
1939         fseek(f, 0, SEEK_END);
1940         int fsize = ftell(f);
1941         rewind(f);
1942
1943         size_t len = fsize + 9 + strlen(mesh->self->name);
1944         char *buf = xmalloc(len);
1945         snprintf(buf, len, "Name = %s\n", mesh->self->name);
1946         if(fread(buf + len - fsize - 1, fsize, 1, f) != 1) {
1947                 logger(mesh, MESHLINK_DEBUG, "Error reading from %s: %s\n", filename, strerror(errno));
1948                 fclose(f);
1949                 free(buf);
1950                 meshlink_errno = MESHLINK_ESTORAGE;
1951                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1952                 return NULL;
1953         }
1954
1955         fclose(f);
1956         buf[len - 1] = 0;
1957
1958         pthread_mutex_unlock(&(mesh->mesh_mutex));
1959         return buf;
1960 }
1961
1962 bool meshlink_import(meshlink_handle_t *mesh, const char *data) {
1963         if(!mesh || !data) {
1964                 meshlink_errno = MESHLINK_EINVAL;
1965                 return false;
1966         }
1967
1968         pthread_mutex_lock(&(mesh->mesh_mutex));
1969
1970         if(strncmp(data, "Name = ", 7)) {
1971                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
1972                 meshlink_errno = MESHLINK_EPEER;
1973                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1974                 return false;
1975         }
1976
1977         char *end = strchr(data + 7, '\n');
1978         if(!end) {
1979                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
1980                 meshlink_errno = MESHLINK_EPEER;
1981                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1982                 return false;
1983         }
1984
1985         int len = end - (data + 7);
1986         char name[len + 1];
1987         memcpy(name, data + 7, len);
1988         name[len] = 0;
1989         if(!check_id(name)) {
1990                 logger(mesh, MESHLINK_DEBUG, "Invalid Name\n");
1991                 meshlink_errno = MESHLINK_EPEER;
1992                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1993                 return false;
1994         }
1995
1996         char filename[PATH_MAX];
1997         snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
1998         if(!access(filename, F_OK)) {
1999                 logger(mesh, MESHLINK_DEBUG, "File %s already exists, not importing\n", filename);
2000                 meshlink_errno = MESHLINK_EEXIST;
2001                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2002                 return false;
2003         }
2004
2005         if(errno != ENOENT) {
2006                 logger(mesh, MESHLINK_DEBUG, "Error accessing %s: %s\n", filename, strerror(errno));
2007                 meshlink_errno = MESHLINK_ESTORAGE;
2008                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2009                 return false;
2010         }
2011
2012         FILE *f = fopen(filename, "w");
2013         if(!f) {
2014                 logger(mesh, MESHLINK_DEBUG, "Could not create %s: %s\n", filename, strerror(errno));
2015                 meshlink_errno = MESHLINK_ESTORAGE;
2016                 pthread_mutex_unlock(&(mesh->mesh_mutex));
2017                 return false;
2018         }
2019
2020         fwrite(end + 1, strlen(end + 1), 1, f);
2021         fclose(f);
2022
2023         load_all_nodes(mesh);
2024
2025         pthread_mutex_unlock(&(mesh->mesh_mutex));
2026         return true;
2027 }
2028
2029 void meshlink_blacklist(meshlink_handle_t *mesh, meshlink_node_t *node) {
2030         if(!mesh || !node) {
2031                 meshlink_errno = MESHLINK_EINVAL;
2032                 return;
2033         }
2034
2035         pthread_mutex_lock(&(mesh->mesh_mutex));
2036
2037         node_t *n;
2038         n = (node_t *)node;
2039         n->status.blacklisted = true;
2040         logger(mesh, MESHLINK_DEBUG, "Blacklisted %s.\n", node->name);
2041
2042         //Make blacklisting persistent in the config file
2043         append_config_file(mesh, n->name, "blacklisted", "yes");
2044
2045         pthread_mutex_unlock(&(mesh->mesh_mutex));
2046         return;
2047 }
2048
2049 void meshlink_whitelist(meshlink_handle_t *mesh, meshlink_node_t *node) {
2050         if(!mesh || !node) {
2051                 meshlink_errno = MESHLINK_EINVAL;
2052                 return;
2053         }
2054
2055         pthread_mutex_lock(&(mesh->mesh_mutex));
2056
2057         node_t *n = (node_t *)node;
2058         n->status.blacklisted = false;
2059
2060         //TODO: remove blacklisted = yes from the config file
2061
2062         pthread_mutex_unlock(&(mesh->mesh_mutex));
2063         return;
2064 }
2065
2066 void meshlink_set_default_blacklist(meshlink_handle_t *mesh, bool blacklist) {
2067         mesh->default_blacklist = blacklist;
2068 }
2069
2070 /* Hint that a hostname may be found at an address
2071  * See header file for detailed comment.
2072  */
2073 void meshlink_hint_address(meshlink_handle_t *mesh, meshlink_node_t *node, const struct sockaddr *addr) {
2074         if(!mesh || !node || !addr)
2075                 return;
2076
2077         // Ignore hints about ourself.
2078         if((node_t *)node == mesh->self)
2079                 return;
2080
2081         pthread_mutex_lock(&(mesh->mesh_mutex));
2082
2083         char *host = NULL, *port = NULL, *str = NULL;
2084         sockaddr2str((const sockaddr_t *)addr, &host, &port);
2085
2086         if(host && port) {
2087                 xasprintf(&str, "%s %s", host, port);
2088                 if((strncmp("fe80", host, 4) != 0) && (strncmp("127.", host, 4) != 0) && (strcmp("localhost", host) != 0))
2089                         modify_config_file(mesh, node->name, "Address", str, 5);
2090                 else
2091                         logger(mesh, MESHLINK_DEBUG, "Not adding Link Local IPv6 Address to config\n");
2092         }
2093
2094         free(str);
2095         free(host);
2096         free(port);
2097
2098         pthread_mutex_unlock(&(mesh->mesh_mutex));
2099         // @TODO do we want to fire off a connection attempt right away?
2100 }
2101
2102 static bool channel_pre_accept(struct utcp *utcp, uint16_t port) {
2103         node_t *n = utcp->priv;
2104         meshlink_handle_t *mesh = n->mesh;
2105         return mesh->channel_accept_cb;
2106 }
2107
2108 static ssize_t channel_recv(struct utcp_connection *connection, const void *data, size_t len) {
2109         meshlink_channel_t *channel = connection->priv;
2110         if(!channel)
2111                 abort();
2112         node_t *n = channel->node;
2113         meshlink_handle_t *mesh = n->mesh;
2114         if(n->status.destroyed)
2115                 meshlink_channel_close(mesh, channel);
2116         else if(channel->receive_cb)
2117                 channel->receive_cb(mesh, channel, data, len);
2118         return len;
2119 }
2120
2121 static void channel_accept(struct utcp_connection *utcp_connection, uint16_t port) {
2122         node_t *n = utcp_connection->utcp->priv;
2123         if(!n)
2124                 abort();
2125         meshlink_handle_t *mesh = n->mesh;
2126         if(!mesh->channel_accept_cb)
2127                 return;
2128         meshlink_channel_t *channel = xzalloc(sizeof(*channel));
2129         channel->node = n;
2130         channel->c = utcp_connection;
2131         if(mesh->channel_accept_cb(mesh, channel, port, NULL, 0))
2132                 utcp_accept(utcp_connection, channel_recv, channel);
2133         else
2134                 free(channel);
2135 }
2136
2137 static ssize_t channel_send(struct utcp *utcp, const void *data, size_t len) {
2138         node_t *n = utcp->priv;
2139         meshlink_handle_t *mesh = n->mesh;
2140         return meshlink_send(mesh, (meshlink_node_t *)n, data, len) ? len : -1;
2141 }
2142
2143 void meshlink_set_channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_receive_cb_t cb) {
2144         if(!mesh || !channel) {
2145                 meshlink_errno = MESHLINK_EINVAL;
2146                 return;
2147         }
2148
2149         channel->receive_cb = cb;
2150 }
2151
2152 static void channel_receive(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len) {
2153         node_t *n = (node_t *)source;
2154         if(!n->utcp)
2155                 abort();
2156         utcp_recv(n->utcp, data, len);
2157 }
2158
2159 static void channel_poll(struct utcp_connection *connection, size_t len) {
2160         meshlink_channel_t *channel = connection->priv;
2161         if(!channel)
2162                 abort();
2163         node_t *n = channel->node;
2164         meshlink_handle_t *mesh = n->mesh;
2165         if(channel->poll_cb)
2166                 channel->poll_cb(mesh, channel, len);
2167 }
2168
2169 void meshlink_set_channel_poll_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_poll_cb_t cb) {
2170         channel->poll_cb = cb;
2171         utcp_set_poll_cb(channel->c, cb ? channel_poll : NULL);
2172 }
2173
2174 void meshlink_set_channel_accept_cb(meshlink_handle_t *mesh, meshlink_channel_accept_cb_t cb) {
2175         if(!mesh) {
2176                 meshlink_errno = MESHLINK_EINVAL;
2177                 return;
2178         }
2179
2180         pthread_mutex_lock(&mesh->mesh_mutex);
2181         mesh->channel_accept_cb = cb;
2182         mesh->receive_cb = channel_receive;
2183         for splay_each(node_t, n, mesh->nodes) {
2184                 if(!n->utcp && n != mesh->self)
2185                         n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2186         }
2187         pthread_mutex_unlock(&mesh->mesh_mutex);
2188 }
2189
2190 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) {
2191         if(!mesh || !node) {
2192                 meshlink_errno = MESHLINK_EINVAL;
2193                 return NULL;
2194         }
2195
2196         node_t *n = (node_t *)node;
2197         if(!n->utcp) {
2198                 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2199                 mesh->receive_cb = channel_receive;
2200                 if(!n->utcp) {
2201                         meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
2202                         return NULL;
2203                 }
2204         }
2205         meshlink_channel_t *channel = xzalloc(sizeof(*channel));
2206         channel->node = n;
2207         channel->receive_cb = cb;
2208         channel->c = utcp_connect_ex(n->utcp, port, channel_recv, channel, flags);
2209         if(!channel->c) {
2210                 meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
2211                 free(channel);
2212                 return NULL;
2213         }
2214         return channel;
2215 }
2216
2217 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) {
2218         return meshlink_channel_open_ex(mesh, node, port, cb, data, len, MESHLINK_CHANNEL_TCP);
2219 }
2220
2221 void meshlink_channel_shutdown(meshlink_handle_t *mesh, meshlink_channel_t *channel, int direction) {
2222         if(!mesh || !channel) {
2223                 meshlink_errno = MESHLINK_EINVAL;
2224                 return;
2225         }
2226
2227         utcp_shutdown(channel->c, direction);
2228 }
2229
2230 void meshlink_channel_close(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
2231         if(!mesh || !channel) {
2232                 meshlink_errno = MESHLINK_EINVAL;
2233                 return;
2234         }
2235
2236         utcp_close(channel->c);
2237         free(channel);
2238 }
2239
2240 ssize_t meshlink_channel_send(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *data, size_t len) {
2241         if(!mesh || !channel) {
2242                 meshlink_errno = MESHLINK_EINVAL;
2243                 return -1;
2244         }
2245
2246         if(!len)
2247                 return 0;
2248
2249         if(!data) {
2250                 meshlink_errno = MESHLINK_EINVAL;
2251                 return -1;
2252         }
2253
2254         // TODO: more finegrained locking.
2255         // Ideally we want to put the data into the UTCP connection's send buffer.
2256         // Then, preferrably only if there is room in the receiver window,
2257         // kick the meshlink thread to go send packets.
2258
2259         pthread_mutex_lock(&mesh->mesh_mutex);
2260         ssize_t retval = utcp_send(channel->c, data, len);
2261         pthread_mutex_unlock(&mesh->mesh_mutex);
2262
2263         if(retval < 0)
2264                 meshlink_errno = MESHLINK_ENETWORK;
2265         return retval;
2266 }
2267
2268 uint32_t meshlink_channel_get_flags(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
2269         if(!mesh || !channel) {
2270                 meshlink_errno = MESHLINK_EINVAL;
2271                 return -1;
2272         }
2273
2274         return channel->c->flags;
2275 }
2276
2277 void update_node_status(meshlink_handle_t *mesh, node_t *n) {
2278         if(n->status.reachable && mesh->channel_accept_cb && !n->utcp)
2279                 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2280         if(mesh->node_status_cb)
2281                 mesh->node_status_cb(mesh, (meshlink_node_t *)n, n->status.reachable);
2282 }
2283
2284 void meshlink_enable_discovery(meshlink_handle_t *mesh, bool enable) {
2285         if(!mesh) {
2286                 meshlink_errno = MESHLINK_EINVAL;
2287                 return;
2288         }
2289
2290         pthread_mutex_lock(&mesh->mesh_mutex);
2291
2292         if(mesh->discovery == enable)
2293                 goto end;
2294
2295         if(mesh->threadstarted) {
2296                 if(enable)
2297                         discovery_start(mesh);
2298                 else
2299                         discovery_stop(mesh);
2300         }
2301
2302         mesh->discovery = enable;
2303
2304 end:
2305         pthread_mutex_unlock(&mesh->mesh_mutex);
2306 }
2307
2308 static void __attribute__((constructor)) meshlink_init(void) {
2309         crypto_init();
2310         unsigned int seed;
2311         randomize(&seed, sizeof(seed));
2312         srand(seed);
2313 }
2314
2315 static void __attribute__((destructor)) meshlink_exit(void) {
2316         crypto_exit();
2317 }
2318
2319 /// Device class traits
2320 dev_class_traits_t dev_class_traits[_DEV_CLASS_MAX + 1] = {
2321         { .min_connects = 3, .max_connects = 10000, .edge_weight = 1 }, // DEV_CLASS_BACKBONE
2322         { .min_connects = 3, .max_connects = 100, .edge_weight = 3 },   // DEV_CLASS_STATIONARY
2323         { .min_connects = 3, .max_connects = 3, .edge_weight = 6 },             // DEV_CLASS_PORTABLE
2324         { .min_connects = 1, .max_connects = 1, .edge_weight = 9 },             // DEV_CLASS_UNKNOWN
2325 };