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