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