]> git.meshlink.io Git - meshlink/blob - src/meshlink.c
Update UTCP to the latest commit, which changes the return value of utcp_timeout().
[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, "wb");
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 struct timeval idle(event_loop_t *loop, void *data) {
703         meshlink_handle_t *mesh = data;
704         struct timeval t, tmin = {3600, 0};
705         for splay_each(node_t, n, mesh->nodes) {
706                 if(!n->utcp)
707                         continue;
708                 t = utcp_timeout(n->utcp);
709                 if(timercmp(&t, &tmin, <))
710                         tmin = t;
711         }
712         return tmin;
713 }
714
715 static bool meshlink_setup(meshlink_handle_t *mesh) {
716         if(mkdir(mesh->confbase, 0777) && errno != EEXIST) {
717                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", mesh->confbase, strerror(errno));
718                 meshlink_errno = MESHLINK_ESTORAGE;
719                 return false;
720         }
721
722         char filename[PATH_MAX];
723         snprintf(filename, sizeof filename, "%s" SLASH "hosts", mesh->confbase);
724
725         if(mkdir(filename, 0777) && errno != EEXIST) {
726                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", filename, strerror(errno));
727                 meshlink_errno = MESHLINK_ESTORAGE;
728                 return false;
729         }
730
731         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
732
733         if(!access(filename, F_OK)) {
734                 logger(mesh, MESHLINK_DEBUG, "Configuration file %s already exists!\n", filename);
735                 meshlink_errno = MESHLINK_EEXIST;
736                 return false;
737         }
738
739         FILE *f = fopen(filename, "w");
740         if(!f) {
741                 logger(mesh, MESHLINK_DEBUG, "Could not create file %s: %s\n", filename, strerror(errno));
742                 meshlink_errno = MESHLINK_ESTORAGE;
743                 return false;
744         }
745
746         fprintf(f, "Name = %s\n", mesh->name);
747         fclose(f);
748
749         if(!ecdsa_keygen(mesh)) {
750                 meshlink_errno = MESHLINK_EINTERNAL;
751                 return false;
752         }
753
754         check_port(mesh);
755
756         return true;
757 }
758
759 meshlink_handle_t *meshlink_open(const char *confbase, const char *name, const char* appname, dev_class_t devclass) {
760         // Validate arguments provided by the application
761         bool usingname = false;
762         
763         logger(NULL, MESHLINK_DEBUG, "meshlink_open called\n");
764
765         if(!confbase || !*confbase) {
766                 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
767                 meshlink_errno = MESHLINK_EINVAL;
768                 return NULL;
769         }
770
771         if(!appname || !*appname) {
772                 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
773                 meshlink_errno = MESHLINK_EINVAL;
774                 return NULL;
775         }
776
777         if(!name || !*name) {
778                 logger(NULL, MESHLINK_ERROR, "No name given!\n");
779                 //return NULL;
780         }
781         else { //check name only if there is a name != NULL
782
783                 if(!check_id(name)) {
784                         logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
785                         meshlink_errno = MESHLINK_EINVAL;
786                         return NULL;
787                 } else { usingname = true;}
788         }
789
790         if(devclass < 0 || devclass > _DEV_CLASS_MAX) {
791                 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
792                 meshlink_errno = MESHLINK_EINVAL;
793                 return NULL;
794         }
795
796         meshlink_handle_t *mesh = xzalloc(sizeof(meshlink_handle_t));
797         mesh->confbase = xstrdup(confbase);
798         mesh->appname = xstrdup(appname);
799         mesh->devclass = devclass;
800         if (usingname) mesh->name = xstrdup(name);
801
802         // initialize mutex
803         pthread_mutexattr_t attr;
804         pthread_mutexattr_init(&attr);
805         pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
806         pthread_mutex_init(&(mesh->mesh_mutex), &attr);
807         
808         mesh->threadstarted = false;
809         event_loop_init(&mesh->loop);
810         mesh->loop.data = mesh;
811
812         // Check whether meshlink.conf already exists
813
814         char filename[PATH_MAX];
815         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", confbase);
816
817         if(access(filename, R_OK)) {
818                 if(errno == ENOENT) {
819                         // If not, create it
820                         if(!meshlink_setup(mesh)) {
821                                 // meshlink_errno is set by meshlink_setup()
822                                 return NULL;
823                         }
824                 } else {
825                         logger(NULL, MESHLINK_ERROR, "Cannot not read from %s: %s\n", filename, strerror(errno));
826                         meshlink_close(mesh);
827                         meshlink_errno = MESHLINK_ESTORAGE;
828                         return NULL;
829                 }
830         }
831
832         // Read the configuration
833
834         init_configuration(&mesh->config);
835
836         if(!read_server_config(mesh)) {
837                 meshlink_close(mesh);
838                 meshlink_errno = MESHLINK_ESTORAGE;
839                 return NULL;
840         };
841
842 #ifdef HAVE_MINGW
843         struct WSAData wsa_state;
844         WSAStartup(MAKEWORD(2, 2), &wsa_state);
845 #endif
846
847         // Setup up everything
848         // TODO: we should not open listening sockets yet
849
850         if(!setup_network(mesh)) {
851                 meshlink_close(mesh);
852                 meshlink_errno = MESHLINK_ENETWORK;
853                 return NULL;
854         }
855
856         idle_set(&mesh->loop, idle, mesh);
857
858         logger(NULL, MESHLINK_DEBUG, "meshlink_open returning\n");
859         return mesh;
860 }
861
862 static void *meshlink_main_loop(void *arg) {
863         meshlink_handle_t *mesh = arg;
864
865         pthread_mutex_lock(&(mesh->mesh_mutex));
866
867         try_outgoing_connections(mesh);
868
869         logger(mesh, MESHLINK_DEBUG, "Starting main_loop...\n");
870         main_loop(mesh);
871         logger(mesh, MESHLINK_DEBUG, "main_loop returned.\n");
872
873         pthread_mutex_unlock(&(mesh->mesh_mutex));
874         return NULL;
875 }
876
877 bool meshlink_start(meshlink_handle_t *mesh) {
878         if(!mesh) {
879                 meshlink_errno = MESHLINK_EINVAL;
880                 return false;
881         }
882         pthread_mutex_lock(&(mesh->mesh_mutex));
883         
884         logger(mesh, MESHLINK_DEBUG, "meshlink_start called\n");
885
886         mesh->thedatalen = 0;
887
888         // TODO: open listening sockets first
889
890         //Check that a valid name is set
891         if(!mesh->name ) {
892                 logger(mesh, MESHLINK_DEBUG, "No name given!\n");
893                 meshlink_errno = MESHLINK_EINVAL;
894                 pthread_mutex_unlock(&(mesh->mesh_mutex));
895                 return false;
896         }
897
898         // Start the main thread
899
900         if(pthread_create(&mesh->thread, NULL, meshlink_main_loop, mesh) != 0) {
901                 logger(mesh, MESHLINK_DEBUG, "Could not start thread: %s\n", strerror(errno));
902                 memset(&mesh->thread, 0, sizeof mesh->thread);
903                 meshlink_errno = MESHLINK_EINTERNAL;
904                 pthread_mutex_unlock(&(mesh->mesh_mutex));
905                 return false;
906         }
907
908         mesh->threadstarted=true;
909
910         discovery_start(mesh);
911
912         pthread_mutex_unlock(&(mesh->mesh_mutex));
913         return true;
914 }
915
916 void meshlink_stop(meshlink_handle_t *mesh) {
917         if(!mesh) {
918                 meshlink_errno = MESHLINK_EINVAL;
919                 return;
920         }
921
922         pthread_mutex_lock(&(mesh->mesh_mutex));
923         logger(mesh, MESHLINK_DEBUG, "meshlink_stop called\n");
924
925         // Stop discovery
926         discovery_stop(mesh);
927
928         // Shut down a listening socket to signal the main thread to shut down
929
930         listen_socket_t *s = &mesh->listen_socket[0];
931         shutdown(s->tcp.fd, SHUT_RDWR);
932
933         // Wait for the main thread to finish
934         pthread_mutex_unlock(&(mesh->mesh_mutex));
935         pthread_join(mesh->thread, NULL);
936         pthread_mutex_lock(&(mesh->mesh_mutex));
937
938         mesh->threadstarted = false;
939
940         // Fix the socket
941         
942         closesocket(s->tcp.fd);
943         io_del(&mesh->loop, &s->tcp);
944         s->tcp.fd = setup_listen_socket(&s->sa);
945         if(s->tcp.fd < 0)
946                 logger(mesh, MESHLINK_ERROR, "Could not repair listenen socket!");
947         else
948                 io_add(&mesh->loop, &s->tcp, handle_new_meta_connection, s, s->tcp.fd, IO_READ);
949         
950         pthread_mutex_unlock(&(mesh->mesh_mutex));
951 }
952
953 void meshlink_close(meshlink_handle_t *mesh) {
954         if(!mesh || !mesh->confbase) {
955                 meshlink_errno = MESHLINK_EINVAL;
956                 return;
957         }
958
959         // stop can be called even if mesh has not been started
960         meshlink_stop(mesh);
961
962         // lock is not released after this
963         pthread_mutex_lock(&(mesh->mesh_mutex));
964
965         // Close and free all resources used.
966
967         close_network_connections(mesh);
968
969         logger(mesh, MESHLINK_INFO, "Terminating");
970
971         exit_configuration(&mesh->config);
972         event_loop_exit(&mesh->loop);
973
974 #ifdef HAVE_MINGW
975         if(mesh->confbase)
976                 WSACleanup();
977 #endif
978
979         ecdsa_free(mesh->invitation_key);
980
981         free(mesh->name);
982         free(mesh->appname);
983         free(mesh->confbase);
984         pthread_mutex_destroy(&(mesh->mesh_mutex));
985
986         memset(mesh, 0, sizeof *mesh);
987
988         free(mesh);
989 }
990
991 void meshlink_set_receive_cb(meshlink_handle_t *mesh, meshlink_receive_cb_t cb) {
992         if(!mesh) {
993                 meshlink_errno = MESHLINK_EINVAL;
994                 return;
995         }
996
997         pthread_mutex_lock(&(mesh->mesh_mutex));
998         mesh->receive_cb = cb;
999         pthread_mutex_unlock(&(mesh->mesh_mutex));
1000 }
1001
1002 void meshlink_set_node_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
1003         if(!mesh) {
1004                 meshlink_errno = MESHLINK_EINVAL;
1005                 return;
1006         }
1007
1008         pthread_mutex_lock(&(mesh->mesh_mutex));
1009         mesh->node_status_cb = cb;
1010         pthread_mutex_unlock(&(mesh->mesh_mutex));
1011 }
1012
1013 void meshlink_set_log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, meshlink_log_cb_t cb) {
1014         if(mesh) {
1015                 pthread_mutex_lock(&(mesh->mesh_mutex));
1016                 mesh->log_cb = cb;
1017                 mesh->log_level = cb ? level : 0;
1018                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1019         } else {
1020                 global_log_cb = cb;
1021                 global_log_level = cb ? level : 0;
1022         }
1023 }
1024
1025 bool meshlink_send(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len) {
1026         meshlink_packethdr_t *hdr;
1027
1028         // Validate arguments
1029         if(!mesh || !destination || len >= MAXSIZE - sizeof *hdr) {
1030                 meshlink_errno = MESHLINK_EINVAL;
1031                 return false;
1032         }
1033
1034         if(!len)
1035                 return true;
1036
1037         if(!data) {
1038                 meshlink_errno = MESHLINK_EINVAL;
1039                 return false;
1040         }
1041
1042         // Prepare the packet
1043         vpn_packet_t *packet = malloc(sizeof *packet);
1044         if(!packet) {
1045                 meshlink_errno = MESHLINK_ENOMEM;
1046                 return false;
1047         }
1048
1049         packet->probe = false;
1050         packet->tcp = false;
1051         packet->len = len + sizeof *hdr;
1052
1053         hdr = (meshlink_packethdr_t *)packet->data;
1054         memset(hdr, 0, sizeof *hdr);
1055         // leave the last byte as 0 to make sure strings are always
1056         // null-terminated if they are longer than the buffer
1057         strncpy(hdr->destination, destination->name, (sizeof hdr->destination) - 1);
1058         strncpy(hdr->source, mesh->self->name, (sizeof hdr->source) -1 );
1059
1060         memcpy(packet->data + sizeof *hdr, data, len);
1061
1062         // Queue it
1063         if(!meshlink_queue_push(&mesh->outpacketqueue, packet)) {
1064                 free(packet);
1065                 meshlink_errno = MESHLINK_ENOMEM;
1066                 return false;
1067         }
1068
1069         // Notify event loop
1070         signal_trigger(&(mesh->loop),&(mesh->datafromapp));
1071         
1072         return true;
1073 }
1074
1075 void meshlink_send_from_queue(event_loop_t *loop, meshlink_handle_t *mesh) {
1076         vpn_packet_t *packet = meshlink_queue_pop(&mesh->outpacketqueue);
1077         if(!packet)
1078                 return;
1079
1080         mesh->self->in_packets++;
1081         mesh->self->in_bytes += packet->len;
1082         route(mesh, mesh->self, packet);
1083 }
1084
1085 ssize_t meshlink_get_pmtu(meshlink_handle_t *mesh, meshlink_node_t *destination) {
1086         if(!mesh || !destination) {
1087                 meshlink_errno = MESHLINK_EINVAL;
1088                 return -1;
1089         }
1090         pthread_mutex_lock(&(mesh->mesh_mutex));
1091
1092         node_t *n = (node_t *)destination;
1093         if(!n->status.reachable) {
1094                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1095                 return 0;
1096         
1097         }
1098         else if(n->mtuprobes > 30 && n->minmtu) {
1099                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1100                 return n->minmtu;
1101         }
1102         else {
1103                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1104                 return MTU;
1105         }
1106 }
1107
1108 char *meshlink_get_fingerprint(meshlink_handle_t *mesh, meshlink_node_t *node) {
1109         if(!mesh || !node) {
1110                 meshlink_errno = MESHLINK_EINVAL;
1111                 return NULL;
1112         }
1113         pthread_mutex_lock(&(mesh->mesh_mutex));
1114
1115         node_t *n = (node_t *)node;
1116
1117         if(!node_read_ecdsa_public_key(mesh, n) || !n->ecdsa) {
1118                 meshlink_errno = MESHLINK_EINTERNAL;
1119                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1120                 return false;
1121         }
1122
1123         char *fingerprint = ecdsa_get_base64_public_key(n->ecdsa);
1124
1125         if(!fingerprint)
1126                 meshlink_errno = MESHLINK_EINTERNAL;
1127
1128         pthread_mutex_unlock(&(mesh->mesh_mutex));
1129         return fingerprint;
1130 }
1131
1132 meshlink_node_t *meshlink_get_node(meshlink_handle_t *mesh, const char *name) {
1133         if(!mesh || !name) {
1134                 meshlink_errno = MESHLINK_EINVAL;
1135                 return NULL;
1136         }
1137
1138         meshlink_node_t *node = NULL;
1139
1140         pthread_mutex_lock(&(mesh->mesh_mutex));
1141         node = (meshlink_node_t *)lookup_node(mesh, (char *)name); // TODO: make lookup_node() use const
1142         pthread_mutex_unlock(&(mesh->mesh_mutex));
1143         return node;
1144 }
1145
1146 meshlink_node_t **meshlink_get_all_nodes(meshlink_handle_t *mesh, meshlink_node_t **nodes, size_t *nmemb) {
1147         if(!mesh || !nmemb || (*nmemb && !nodes)) {
1148                 meshlink_errno = MESHLINK_EINVAL;
1149                 return NULL;
1150         }
1151
1152         meshlink_node_t **result;
1153
1154         //lock mesh->nodes
1155         pthread_mutex_lock(&(mesh->mesh_mutex));
1156
1157         *nmemb = mesh->nodes->count;
1158         result = realloc(nodes, *nmemb * sizeof *nodes);
1159
1160         if(result) {
1161                 meshlink_node_t **p = result;
1162                 for splay_each(node_t, n, mesh->nodes)
1163                         *p++ = (meshlink_node_t *)n;
1164         } else {
1165                 *nmemb = 0;
1166                 free(nodes);
1167                 meshlink_errno = MESHLINK_ENOMEM;
1168         }
1169
1170         pthread_mutex_unlock(&(mesh->mesh_mutex));
1171
1172         return result;
1173 }
1174
1175 bool meshlink_sign(meshlink_handle_t *mesh, const void *data, size_t len, void *signature, size_t *siglen) {
1176         if(!mesh || !data || !len || !signature || !siglen) {
1177                 meshlink_errno = MESHLINK_EINVAL;
1178                 return false;
1179         }
1180
1181         if(*siglen < MESHLINK_SIGLEN) {
1182                 meshlink_errno = MESHLINK_EINVAL;
1183                 return false;
1184         }
1185
1186         pthread_mutex_lock(&(mesh->mesh_mutex));
1187
1188         if(!ecdsa_sign(mesh->self->connection->ecdsa, data, len, signature)) {
1189                 meshlink_errno = MESHLINK_EINTERNAL;
1190                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1191                 return false;
1192         }
1193
1194         *siglen = MESHLINK_SIGLEN;
1195         pthread_mutex_unlock(&(mesh->mesh_mutex));
1196         return true;
1197 }
1198
1199 bool meshlink_verify(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len, const void *signature, size_t siglen) {
1200         if(!mesh || !data || !len || !signature) {
1201                 meshlink_errno = MESHLINK_EINVAL;
1202                 return false;
1203         }
1204
1205         if(siglen != MESHLINK_SIGLEN) {
1206                 meshlink_errno = MESHLINK_EINVAL;
1207                 return false;
1208         }
1209
1210         pthread_mutex_lock(&(mesh->mesh_mutex));
1211
1212         bool rval = false;
1213
1214         struct node_t *n = (struct node_t *)source;
1215         node_read_ecdsa_public_key(mesh, n);
1216         if(!n->ecdsa) {
1217                 meshlink_errno = MESHLINK_EINTERNAL;
1218                 rval = false;
1219         } else {
1220                 rval = ecdsa_verify(((struct node_t *)source)->ecdsa, data, len, signature);
1221         }
1222         pthread_mutex_unlock(&(mesh->mesh_mutex));
1223         return rval;
1224 }
1225
1226 static bool refresh_invitation_key(meshlink_handle_t *mesh) {
1227         char filename[PATH_MAX];
1228         
1229         pthread_mutex_lock(&(mesh->mesh_mutex));
1230
1231         snprintf(filename, sizeof filename, "%s" SLASH "invitations", mesh->confbase);
1232         if(mkdir(filename, 0700) && errno != EEXIST) {
1233                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", filename, strerror(errno));
1234                 meshlink_errno = MESHLINK_ESTORAGE;
1235                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1236                 return false;
1237         }
1238
1239         // Count the number of valid invitations, clean up old ones
1240         DIR *dir = opendir(filename);
1241         if(!dir) {
1242                 logger(mesh, MESHLINK_DEBUG, "Could not read directory %s: %s\n", filename, strerror(errno));
1243                 meshlink_errno = MESHLINK_ESTORAGE;
1244                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1245                 return false;
1246         }
1247
1248         errno = 0;
1249         int count = 0;
1250         struct dirent *ent;
1251         time_t deadline = time(NULL) - 604800; // 1 week in the past
1252
1253         while((ent = readdir(dir))) {
1254                 if(strlen(ent->d_name) != 24)
1255                         continue;
1256                 char invname[PATH_MAX];
1257                 struct stat st;
1258                 snprintf(invname, sizeof invname, "%s" SLASH "%s", filename, ent->d_name);
1259                 if(!stat(invname, &st)) {
1260                         if(mesh->invitation_key && deadline < st.st_mtime)
1261                                 count++;
1262                         else
1263                                 unlink(invname);
1264                 } else {
1265                         logger(mesh, MESHLINK_DEBUG, "Could not stat %s: %s\n", invname, strerror(errno));
1266                         errno = 0;
1267                 }
1268         }
1269
1270         if(errno) {
1271                 logger(mesh, MESHLINK_DEBUG, "Error while reading directory %s: %s\n", filename, strerror(errno));
1272                 closedir(dir);
1273                 meshlink_errno = MESHLINK_ESTORAGE;
1274                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1275                 return false;
1276         }
1277
1278         closedir(dir);
1279
1280         snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "ecdsa_key.priv", mesh->confbase);
1281
1282         // Remove the key if there are no outstanding invitations.
1283         if(!count) {
1284                 unlink(filename);
1285                 if(mesh->invitation_key) {
1286                         ecdsa_free(mesh->invitation_key);
1287                         mesh->invitation_key = NULL;
1288                 }
1289         }
1290
1291         if(mesh->invitation_key) {
1292                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1293                 return true;
1294         }
1295
1296         // Create a new key if necessary.
1297         FILE *f = fopen(filename, "rb");
1298         if(!f) {
1299                 if(errno != ENOENT) {
1300                         logger(mesh, MESHLINK_DEBUG, "Could not read %s: %s\n", filename, strerror(errno));
1301                         meshlink_errno = MESHLINK_ESTORAGE;
1302                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1303                         return false;
1304                 }
1305
1306                 mesh->invitation_key = ecdsa_generate();
1307                 if(!mesh->invitation_key) {
1308                         logger(mesh, MESHLINK_DEBUG, "Could not generate a new key!\n");
1309                         meshlink_errno = MESHLINK_EINTERNAL;
1310                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1311                         return false;
1312                 }
1313                 f = fopen(filename, "wb");
1314                 if(!f) {
1315                         logger(mesh, MESHLINK_DEBUG, "Could not write %s: %s\n", filename, strerror(errno));
1316                         meshlink_errno = MESHLINK_ESTORAGE;
1317                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1318                         return false;
1319                 }
1320                 chmod(filename, 0600);
1321                 ecdsa_write_pem_private_key(mesh->invitation_key, f);
1322                 fclose(f);
1323         } else {
1324                 mesh->invitation_key = ecdsa_read_pem_private_key(f);
1325                 fclose(f);
1326                 if(!mesh->invitation_key) {
1327                         logger(mesh, MESHLINK_DEBUG, "Could not read private key from %s\n", filename);
1328                         meshlink_errno = MESHLINK_ESTORAGE;
1329                 }
1330         }
1331
1332         pthread_mutex_unlock(&(mesh->mesh_mutex));
1333         return mesh->invitation_key;
1334 }
1335
1336 bool meshlink_add_address(meshlink_handle_t *mesh, const char *address) {
1337         if(!mesh || !address) {
1338                 meshlink_errno = MESHLINK_EINVAL;
1339                 return false;
1340         }
1341         
1342         bool rval = false;
1343
1344         pthread_mutex_lock(&(mesh->mesh_mutex));
1345
1346         for(const char *p = address; *p; p++) {
1347                 if(isalnum(*p) || *p == '-' || *p == '.' || *p == ':')
1348                         continue;
1349                 logger(mesh, MESHLINK_DEBUG, "Invalid character in address: %s\n", address);
1350                 meshlink_errno = MESHLINK_EINVAL;
1351                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1352                 return false;
1353         }
1354
1355         rval = append_config_file(mesh, mesh->self->name, "Address", address);
1356         pthread_mutex_unlock(&(mesh->mesh_mutex));
1357         return rval;
1358 }
1359
1360 char *meshlink_invite(meshlink_handle_t *mesh, const char *name) {
1361         if(!mesh) {
1362                 meshlink_errno = MESHLINK_EINVAL;
1363                 return NULL;
1364         }
1365         
1366         pthread_mutex_lock(&(mesh->mesh_mutex));
1367
1368         // Check validity of the new node's name
1369         if(!check_id(name)) {
1370                 logger(mesh, MESHLINK_DEBUG, "Invalid name for node.\n");
1371                 meshlink_errno = MESHLINK_EINVAL;
1372                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1373                 return NULL;
1374         }
1375
1376         // Ensure no host configuration file with that name exists
1377         char filename[PATH_MAX];
1378         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
1379         if(!access(filename, F_OK)) {
1380                 logger(mesh, MESHLINK_DEBUG, "A host config file for %s already exists!\n", name);
1381                 meshlink_errno = MESHLINK_EEXIST;
1382                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1383                 return NULL;
1384         }
1385
1386         // Ensure no other nodes know about this name
1387         if(meshlink_get_node(mesh, name)) {
1388                 logger(mesh, MESHLINK_DEBUG, "A node with name %s is already known!\n", name);
1389                 meshlink_errno = MESHLINK_EEXIST;
1390                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1391                 return NULL;
1392         }
1393
1394         // Get the local address
1395         char *address = get_my_hostname(mesh);
1396         if(!address) {
1397                 logger(mesh, MESHLINK_DEBUG, "No Address known for ourselves!\n");
1398                 meshlink_errno = MESHLINK_ERESOLV;
1399                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1400                 return NULL;
1401         }
1402
1403         if(!refresh_invitation_key(mesh)) {
1404                 meshlink_errno = MESHLINK_EINTERNAL;
1405                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1406                 return NULL;
1407         }
1408
1409         char hash[64];
1410
1411         // Create a hash of the key.
1412         char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
1413         sha512(fingerprint, strlen(fingerprint), hash);
1414         b64encode_urlsafe(hash, hash, 18);
1415
1416         // Create a random cookie for this invitation.
1417         char cookie[25];
1418         randomize(cookie, 18);
1419
1420         // Create a filename that doesn't reveal the cookie itself
1421         char buf[18 + strlen(fingerprint)];
1422         char cookiehash[64];
1423         memcpy(buf, cookie, 18);
1424         memcpy(buf + 18, fingerprint, sizeof buf - 18);
1425         sha512(buf, sizeof buf, cookiehash);
1426         b64encode_urlsafe(cookiehash, cookiehash, 18);
1427
1428         b64encode_urlsafe(cookie, cookie, 18);
1429
1430         free(fingerprint);
1431
1432         // Create a file containing the details of the invitation.
1433         snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "%s", mesh->confbase, cookiehash);
1434         int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
1435         if(!ifd) {
1436                 logger(mesh, MESHLINK_DEBUG, "Could not create invitation file %s: %s\n", filename, strerror(errno));
1437                 meshlink_errno = MESHLINK_ESTORAGE;
1438                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1439                 return NULL;
1440         }
1441         FILE *f = fdopen(ifd, "w");
1442         if(!f)
1443                 abort();
1444
1445         // Fill in the details.
1446         fprintf(f, "Name = %s\n", name);
1447         //if(netname)
1448         //      fprintf(f, "NetName = %s\n", netname);
1449         fprintf(f, "ConnectTo = %s\n", mesh->self->name);
1450
1451         // Copy Broadcast and Mode
1452         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
1453         FILE *tc = fopen(filename,  "r");
1454         if(tc) {
1455                 char buf[1024];
1456                 while(fgets(buf, sizeof buf, tc)) {
1457                         if((!strncasecmp(buf, "Mode", 4) && strchr(" \t=", buf[4]))
1458                                         || (!strncasecmp(buf, "Broadcast", 9) && strchr(" \t=", buf[9]))) {
1459                                 fputs(buf, f);
1460                                 // Make sure there is a newline character.
1461                                 if(!strchr(buf, '\n'))
1462                                         fputc('\n', f);
1463                         }
1464                 }
1465                 fclose(tc);
1466         } else {
1467                 logger(mesh, MESHLINK_DEBUG, "Could not create %s: %s\n", filename, strerror(errno));
1468                 meshlink_errno = MESHLINK_ESTORAGE;
1469                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1470                 return NULL;
1471         }
1472
1473         fprintf(f, "#---------------------------------------------------------------#\n");
1474         fprintf(f, "Name = %s\n", mesh->self->name);
1475
1476         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
1477         fcopy(f, filename);
1478         fclose(f);
1479
1480         // Create an URL from the local address, key hash and cookie
1481         char *url;
1482         xasprintf(&url, "%s/%s%s", address, hash, cookie);
1483         free(address);
1484
1485         pthread_mutex_unlock(&(mesh->mesh_mutex));
1486         return url;
1487 }
1488
1489 bool meshlink_join(meshlink_handle_t *mesh, const char *invitation) {
1490         if(!mesh || !invitation) {
1491                 meshlink_errno = MESHLINK_EINVAL;
1492                 return false;
1493         }
1494         
1495         pthread_mutex_lock(&(mesh->mesh_mutex));
1496
1497         //TODO: think of a better name for this variable, or of a different way to tokenize the invitation URL.
1498         char copy[strlen(invitation) + 1];
1499         strcpy(copy, invitation);
1500
1501         // Split the invitation URL into hostname, port, key hash and cookie.
1502
1503         char *slash = strchr(copy, '/');
1504         if(!slash)
1505                 goto invalid;
1506
1507         *slash++ = 0;
1508
1509         if(strlen(slash) != 48)
1510                 goto invalid;
1511
1512         char *address = copy;
1513         char *port = NULL;
1514         if(*address == '[') {
1515                 address++;
1516                 char *bracket = strchr(address, ']');
1517                 if(!bracket)
1518                         goto invalid;
1519                 *bracket = 0;
1520                 if(bracket[1] == ':')
1521                         port = bracket + 2;
1522         } else {
1523                 port = strchr(address, ':');
1524                 if(port)
1525                         *port++ = 0;
1526         }
1527
1528         if(!port)
1529                 goto invalid;
1530
1531         if(!b64decode(slash, mesh->hash, 18) || !b64decode(slash + 24, mesh->cookie, 18))
1532                 goto invalid;
1533
1534         // Generate a throw-away key for the invitation.
1535         ecdsa_t *key = ecdsa_generate();
1536         if(!key) {
1537                 meshlink_errno = MESHLINK_EINTERNAL;
1538                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1539                 return false;
1540         }
1541
1542         char *b64key = ecdsa_get_base64_public_key(key);
1543
1544         //Before doing meshlink_join make sure we are not connected to another mesh
1545         if ( mesh->threadstarted ){
1546                 goto invalid;
1547         }
1548
1549         // Connect to the meshlink daemon mentioned in the URL.
1550         struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
1551         if(!ai) {
1552                 meshlink_errno = MESHLINK_ERESOLV;
1553                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1554                 return false;
1555         }
1556
1557         mesh->sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1558         if(mesh->sock <= 0) {
1559                 logger(mesh, MESHLINK_DEBUG, "Could not open socket: %s\n", strerror(errno));
1560                 freeaddrinfo(ai);
1561                 meshlink_errno = MESHLINK_ENETWORK;
1562                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1563                 return false;
1564         }
1565
1566         if(connect(mesh->sock, ai->ai_addr, ai->ai_addrlen)) {
1567                 logger(mesh, MESHLINK_DEBUG, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
1568                 closesocket(mesh->sock);
1569                 freeaddrinfo(ai);
1570                 meshlink_errno = MESHLINK_ENETWORK;
1571                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1572                 return false;
1573         }
1574
1575         freeaddrinfo(ai);
1576
1577         logger(mesh, MESHLINK_DEBUG, "Connected to %s port %s...\n", address, port);
1578
1579         // Tell him we have an invitation, and give him our throw-away key.
1580
1581         mesh->blen = 0;
1582
1583         if(!sendline(mesh->sock, "0 ?%s %d.%d", b64key, PROT_MAJOR, 1)) {
1584                 logger(mesh, MESHLINK_DEBUG, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
1585                 closesocket(mesh->sock);
1586                 meshlink_errno = MESHLINK_ENETWORK;
1587                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1588                 return false;
1589         }
1590
1591         free(b64key);
1592
1593         char hisname[4096] = "";
1594         int code, hismajor, hisminor = 0;
1595
1596         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) {
1597                 logger(mesh, MESHLINK_DEBUG, "Cannot read greeting from peer\n");
1598                 closesocket(mesh->sock);
1599                 meshlink_errno = MESHLINK_ENETWORK;
1600                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1601                 return false;
1602         }
1603
1604         // Check if the hash of the key he gave us matches the hash in the URL.
1605         char *fingerprint = mesh->line + 2;
1606         char hishash[64];
1607         if(sha512(fingerprint, strlen(fingerprint), hishash)) {
1608                 logger(mesh, MESHLINK_DEBUG, "Could not create hash\n%s\n", mesh->line + 2);
1609                 meshlink_errno = MESHLINK_EINTERNAL;
1610                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1611                 return false;
1612         }
1613         if(memcmp(hishash, mesh->hash, 18)) {
1614                 logger(mesh, MESHLINK_DEBUG, "Peer has an invalid key!\n%s\n", mesh->line + 2);
1615                 meshlink_errno = MESHLINK_EPEER;
1616                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1617                 return false;
1618
1619         }
1620
1621         ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
1622         if(!hiskey) {
1623                 meshlink_errno = MESHLINK_EINTERNAL;
1624                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1625                 return false;
1626         }
1627
1628         // Start an SPTPS session
1629         if(!sptps_start(&mesh->sptps, mesh, true, false, key, hiskey, "meshlink invitation", 15, invitation_send, invitation_receive)) {
1630                 meshlink_errno = MESHLINK_EINTERNAL;
1631                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1632                 return false;
1633         }
1634
1635         // Feed rest of input buffer to SPTPS
1636         if(!sptps_receive_data(&mesh->sptps, mesh->buffer, mesh->blen)) {
1637                 meshlink_errno = MESHLINK_EPEER;
1638                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1639                 return false;
1640         }
1641
1642         int len;
1643
1644         while((len = recv(mesh->sock, mesh->line, sizeof mesh->line, 0))) {
1645                 if(len < 0) {
1646                         if(errno == EINTR)
1647                                 continue;
1648                         logger(mesh, MESHLINK_DEBUG, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
1649                         meshlink_errno = MESHLINK_ENETWORK;
1650                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1651                         return false;
1652                 }
1653
1654                 if(!sptps_receive_data(&mesh->sptps, mesh->line, len)) {
1655                         meshlink_errno = MESHLINK_EPEER;
1656                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1657                         return false;
1658                 }
1659         }
1660
1661         sptps_stop(&mesh->sptps);
1662         ecdsa_free(hiskey);
1663         ecdsa_free(key);
1664         closesocket(mesh->sock);
1665
1666         if(!mesh->success) {
1667                 logger(mesh, MESHLINK_DEBUG, "Connection closed by peer, invitation cancelled.\n");
1668                 meshlink_errno = MESHLINK_EPEER;
1669                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1670                 return false;
1671         }
1672
1673         pthread_mutex_unlock(&(mesh->mesh_mutex));
1674         return true;
1675
1676 invalid:
1677         logger(mesh, MESHLINK_DEBUG, "Invalid invitation URL or you are already connected to a Mesh ?\n");
1678         meshlink_errno = MESHLINK_EINVAL;
1679         pthread_mutex_unlock(&(mesh->mesh_mutex));
1680         return false;
1681 }
1682
1683 char *meshlink_export(meshlink_handle_t *mesh) {
1684         if(!mesh) {
1685                 meshlink_errno = MESHLINK_EINVAL;
1686                 return NULL;
1687         }
1688
1689         pthread_mutex_lock(&(mesh->mesh_mutex));
1690         
1691         char filename[PATH_MAX];
1692         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
1693         FILE *f = fopen(filename, "r");
1694         if(!f) {
1695                 logger(mesh, MESHLINK_DEBUG, "Could not open %s: %s\n", filename, strerror(errno));
1696                 meshlink_errno = MESHLINK_ESTORAGE;
1697                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1698                 return NULL;
1699         }
1700
1701         fseek(f, 0, SEEK_END);
1702         int fsize = ftell(f);
1703         rewind(f);
1704
1705         size_t len = fsize + 9 + strlen(mesh->self->name);
1706         char *buf = xmalloc(len);
1707         snprintf(buf, len, "Name = %s\n", mesh->self->name);
1708         if(fread(buf + len - fsize - 1, fsize, 1, f) != 1) {
1709                 logger(mesh, MESHLINK_DEBUG, "Error reading from %s: %s\n", filename, strerror(errno));
1710                 fclose(f);
1711                 meshlink_errno = MESHLINK_ESTORAGE;
1712                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1713                 return NULL;
1714         }
1715
1716         fclose(f);
1717         buf[len - 1] = 0;
1718         
1719         pthread_mutex_unlock(&(mesh->mesh_mutex));
1720         return buf;
1721 }
1722
1723 bool meshlink_import(meshlink_handle_t *mesh, const char *data) {
1724         if(!mesh || !data) {
1725                 meshlink_errno = MESHLINK_EINVAL;
1726                 return false;
1727         }
1728         
1729         pthread_mutex_lock(&(mesh->mesh_mutex));
1730
1731         if(strncmp(data, "Name = ", 7)) {
1732                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
1733                 meshlink_errno = MESHLINK_EPEER;
1734                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1735                 return false;
1736         }
1737
1738         char *end = strchr(data + 7, '\n');
1739         if(!end) {
1740                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
1741                 meshlink_errno = MESHLINK_EPEER;
1742                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1743                 return false;
1744         }
1745
1746         int len = end - (data + 7);
1747         char name[len + 1];
1748         memcpy(name, data + 7, len);
1749         name[len] = 0;
1750         if(!check_id(name)) {
1751                 logger(mesh, MESHLINK_DEBUG, "Invalid Name\n");
1752                 meshlink_errno = MESHLINK_EPEER;
1753                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1754                 return false;
1755         }
1756
1757         char filename[PATH_MAX];
1758         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
1759         if(!access(filename, F_OK)) {
1760                 logger(mesh, MESHLINK_DEBUG, "File %s already exists, not importing\n", filename);
1761                 meshlink_errno = MESHLINK_EEXIST;
1762                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1763                 return false;
1764         }
1765
1766         if(errno != ENOENT) {
1767                 logger(mesh, MESHLINK_DEBUG, "Error accessing %s: %s\n", filename, strerror(errno));
1768                 meshlink_errno = MESHLINK_ESTORAGE;
1769                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1770                 return false;
1771         }
1772
1773         FILE *f = fopen(filename, "w");
1774         if(!f) {
1775                 logger(mesh, MESHLINK_DEBUG, "Could not create %s: %s\n", filename, strerror(errno));
1776                 meshlink_errno = MESHLINK_ESTORAGE;
1777                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1778                 return false;
1779         }
1780
1781         fwrite(end + 1, strlen(end + 1), 1, f);
1782         fclose(f);
1783
1784         load_all_nodes(mesh);
1785
1786         pthread_mutex_unlock(&(mesh->mesh_mutex));
1787         return true;
1788 }
1789
1790 void meshlink_blacklist(meshlink_handle_t *mesh, meshlink_node_t *node) {
1791         if(!mesh || !node) {
1792                 meshlink_errno = MESHLINK_EINVAL;
1793                 return;
1794         }
1795
1796         pthread_mutex_lock(&(mesh->mesh_mutex));
1797         
1798         node_t *n;
1799         n = (node_t*)node;
1800         n->status.blacklisted=true;
1801         logger(mesh, MESHLINK_DEBUG, "Blacklisted %s.\n",node->name);
1802
1803         //Make blacklisting persistent in the config file
1804         append_config_file(mesh, n->name, "blacklisted", "yes");
1805
1806         pthread_mutex_unlock(&(mesh->mesh_mutex));
1807         return;
1808 }
1809
1810 void meshlink_whitelist(meshlink_handle_t *mesh, meshlink_node_t *node) {
1811         if(!mesh || !node) {
1812                 meshlink_errno = MESHLINK_EINVAL;
1813                 return;
1814         }
1815
1816         pthread_mutex_lock(&(mesh->mesh_mutex));
1817         
1818         node_t *n = (node_t *)node;
1819         n->status.blacklisted = false;
1820
1821         //TODO: remove blacklisted = yes from the config file
1822
1823         pthread_mutex_unlock(&(mesh->mesh_mutex));
1824         return;
1825 }
1826
1827 void meshlink_set_default_blacklist(meshlink_handle_t *mesh, bool blacklist) {
1828         mesh->default_blacklist = blacklist;
1829 }
1830
1831 /* Hint that a hostname may be found at an address
1832  * See header file for detailed comment.
1833  */
1834 void meshlink_hint_address(meshlink_handle_t *mesh, meshlink_node_t *node, const struct sockaddr *addr) {
1835         if(!mesh || !node || !addr)
1836                 return;
1837         
1838         pthread_mutex_lock(&(mesh->mesh_mutex));
1839         
1840         char *host = NULL, *port = NULL, *str = NULL;
1841         sockaddr2str((const sockaddr_t *)addr, &host, &port);
1842
1843         if(host && port) {
1844                 xasprintf(&str, "%s %s", host, port);
1845                 if ( (strncmp ("fe80",host,4) != 0) && ( strncmp("127.",host,4) != 0 ) && ( strcmp("localhost",host) !=0 ) )
1846                         append_config_file(mesh, node->name, "Address", str);
1847                 else
1848                         logger(mesh, MESHLINK_DEBUG, "Not adding Link Local IPv6 Address to config\n");
1849         }
1850
1851         free(str);
1852         free(host);
1853         free(port);
1854
1855         pthread_mutex_unlock(&(mesh->mesh_mutex));
1856         // @TODO do we want to fire off a connection attempt right away?
1857 }
1858
1859 /* Return an array of edges in the current network graph.
1860  * Data captures the current state and will not be updated.
1861  * Caller must deallocate data when done.
1862  */
1863 meshlink_edge_t **meshlink_get_all_edges_state(meshlink_handle_t *mesh, meshlink_edge_t **edges, size_t *nmemb) {
1864         if(!mesh || !nmemb || (*nmemb && !edges)) {
1865                 meshlink_errno = MESHLINK_EINVAL;
1866                 return NULL;
1867         }
1868
1869         pthread_mutex_lock(&(mesh->mesh_mutex));
1870         
1871         meshlink_edge_t **result = NULL;
1872         meshlink_edge_t *copy = NULL;
1873         int result_size = 0;
1874
1875         result_size = mesh->edges->count;
1876
1877         // if result is smaller than edges, we have to dealloc all the excess meshlink_edge_t
1878         if(result_size > *nmemb) {
1879                 result = realloc(edges, result_size * sizeof (meshlink_edge_t*));
1880         } else {
1881                 result = edges;
1882         }
1883
1884         if(result) {
1885                 meshlink_edge_t **p = result;
1886                 int n = 0;
1887                 for splay_each(edge_t, e, mesh->edges) {
1888                         // skip edges that do not represent a two-directional connection
1889                         if((!e->reverse) || (e->reverse->to != e->from)) {
1890                                 result_size--;
1891                                 continue;
1892                         }
1893                         n++;
1894                         // the first *nmemb members of result can be re-used
1895                         if(n > *nmemb) {
1896                                 copy = xzalloc(sizeof *copy);
1897                         }
1898                         else {
1899                                 copy = *p;
1900                         }
1901                         copy->from = (meshlink_node_t*)e->from;
1902                         copy->to = (meshlink_node_t*)e->to;
1903                         copy->address = e->address.storage;
1904                         copy->options = e->options;
1905                         copy->weight = e->weight;
1906                         *p++ = copy;
1907                 }
1908                 // shrink result to the actual amount of memory used
1909                 for(int i = *nmemb; i > result_size; i--) {
1910                         free(result[i - 1]);
1911                 }
1912                 result = realloc(result, result_size * sizeof (meshlink_edge_t*));
1913                 *nmemb = result_size;
1914         } else {
1915                 *nmemb = 0;
1916                 free(result);
1917                 meshlink_errno = MESHLINK_ENOMEM;
1918         }
1919
1920         pthread_mutex_unlock(&(mesh->mesh_mutex));
1921
1922         return result;
1923 }
1924
1925 static bool channel_pre_accept(struct utcp *utcp, uint16_t port) {
1926         //TODO: implement
1927         return true;
1928 }
1929
1930 static ssize_t channel_recv(struct utcp_connection *connection, const void *data, size_t len) {
1931         meshlink_channel_t *channel = connection->priv;
1932         if(!channel)
1933                 abort();
1934         node_t *n = channel->node;
1935         meshlink_handle_t *mesh = n->mesh;
1936         if(!channel->receive_cb)
1937                 return -1;
1938         else {
1939                 channel->receive_cb(mesh, channel, data, len);
1940                 return len;
1941         }
1942 }
1943
1944 static void channel_accept(struct utcp_connection *utcp_connection, uint16_t port) {
1945         node_t *n = utcp_connection->utcp->priv;
1946         if(!n)
1947                 abort();
1948         meshlink_handle_t *mesh = n->mesh;
1949         if(!mesh->channel_accept_cb)
1950                 return;
1951         meshlink_channel_t *channel = xzalloc(sizeof *channel);
1952         channel->node = n;
1953         channel->c = utcp_connection;
1954         if(mesh->channel_accept_cb(mesh, channel, port, NULL, 0))
1955                 utcp_accept(utcp_connection, channel_recv, channel);
1956         else
1957                 free(channel);
1958 }
1959
1960 static ssize_t channel_send(struct utcp *utcp, const void *data, size_t len) {
1961         node_t *n = utcp->priv;
1962         meshlink_handle_t *mesh = n->mesh;
1963         char hex[len * 2 + 1];
1964         bin2hex(data, hex, len);
1965         logger(mesh, MESHLINK_WARNING, "channel_send(%p, %p, %zu): %s\n", utcp, data, len, hex);
1966         return meshlink_send(mesh, (meshlink_node_t *)n, data, len) ? len : -1;
1967 }
1968
1969 void meshlink_set_channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_receive_cb_t cb) {
1970         if(!mesh || !channel) {
1971                 meshlink_errno = MESHLINK_EINVAL;
1972                 return;
1973         }
1974
1975         channel->receive_cb = cb;
1976 }
1977
1978 static void channel_receive(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len) {
1979         node_t *n = (node_t *)source;
1980         if(!n->utcp)
1981                 abort();
1982         char hex[len * 2 + 1];
1983         bin2hex(data, hex, len);
1984         logger(mesh, MESHLINK_WARNING, "channel_receive(%p, %p, %zu): %s\n", n->utcp, data, len, hex);
1985         utcp_recv(n->utcp, data, len);
1986 }
1987
1988 static void channel_poll(struct utcp_connection *connection, size_t len) {
1989         meshlink_channel_t *channel = connection->priv;
1990         if(!channel)
1991                 abort();
1992         node_t *n = channel->node;
1993         meshlink_handle_t *mesh = n->mesh;
1994         if(channel->poll_cb)
1995                 channel->poll_cb(mesh, channel, len);
1996 }
1997
1998 void meshlink_set_channel_poll_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_poll_cb_t cb) {
1999         channel->poll_cb = cb;
2000         utcp_set_poll_cb(channel->c, cb ? channel_poll : NULL);
2001 }
2002
2003 void meshlink_set_channel_accept_cb(meshlink_handle_t *mesh, meshlink_channel_accept_cb_t cb) {
2004         if(!mesh) {
2005                 meshlink_errno = MESHLINK_EINVAL;
2006                 return;
2007         }
2008
2009         pthread_mutex_lock(&mesh->mesh_mutex);
2010         mesh->channel_accept_cb = cb;
2011         mesh->receive_cb = channel_receive;
2012         for splay_each(node_t, n, mesh->nodes) {
2013                 if(!n->utcp && n != mesh->self) {
2014                         logger(mesh, MESHLINK_WARNING, "utcp_init on node %s", n->name);
2015                         n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2016                 }
2017         }
2018         pthread_mutex_unlock(&mesh->mesh_mutex);
2019 }
2020
2021 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) {
2022         if(!mesh || !node) {
2023                 meshlink_errno = MESHLINK_EINVAL;
2024                 return NULL;
2025         }
2026
2027         logger(mesh, MESHLINK_WARNING, "meshlink_channel_open(%p, %s, %u, %p, %p, %zu)\n", mesh, node->name, port, cb, data, len);
2028         node_t *n = (node_t *)node;
2029         if(!n->utcp) {
2030                 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2031                 mesh->receive_cb = channel_receive;
2032                 if(!n->utcp) {
2033                         meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
2034                         return NULL;
2035                 }
2036         }
2037         meshlink_channel_t *channel = xzalloc(sizeof *channel);
2038         channel->node = n;
2039         channel->receive_cb = cb;
2040         channel->c = utcp_connect(n->utcp, port, channel_recv, channel);
2041         if(!channel->c) {
2042                 meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
2043                 free(channel);
2044                 return NULL;
2045         }
2046         return channel;
2047 }
2048
2049 void meshlink_channel_shutdown(meshlink_handle_t *mesh, meshlink_channel_t *channel, int direction) {
2050         if(!mesh || !channel) {
2051                 meshlink_errno = MESHLINK_EINVAL;
2052                 return;
2053         }
2054
2055         utcp_shutdown(channel->c, direction);
2056 }
2057
2058 void meshlink_channel_close(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
2059         if(!mesh || !channel) {
2060                 meshlink_errno = MESHLINK_EINVAL;
2061                 return;
2062         }
2063
2064         utcp_close(channel->c);
2065         free(channel);
2066 }
2067
2068 ssize_t meshlink_channel_send(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *data, size_t len) {
2069         if(!mesh || !channel) {
2070                 meshlink_errno = MESHLINK_EINVAL;
2071                 return -1;
2072         }
2073
2074         if(!len)
2075                 return 0;
2076
2077         if(!data) {
2078                 meshlink_errno = MESHLINK_EINVAL;
2079                 return -1;
2080         }
2081
2082         // TODO: more finegrained locking.
2083         // Ideally we want to put the data into the UTCP connection's send buffer.
2084         // Then, preferrably only if there is room in the receiver window,
2085         // kick the meshlink thread to go send packets.
2086
2087         pthread_mutex_lock(&mesh->mesh_mutex);
2088         ssize_t retval = utcp_send(channel->c, data, len);
2089         pthread_mutex_unlock(&mesh->mesh_mutex);
2090
2091         if(retval < 0)
2092                 meshlink_errno = MESHLINK_ENETWORK;
2093         return retval;
2094 }
2095
2096 void update_node_status(meshlink_handle_t *mesh, node_t *n) {
2097         if(n->status.reachable && mesh->channel_accept_cb && !n->utcp)
2098                 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2099         if(mesh->node_status_cb)
2100                 mesh->node_status_cb(mesh, (meshlink_node_t *)n, n->status.reachable);
2101 }
2102
2103 static void __attribute__((constructor)) meshlink_init(void) {
2104         crypto_init();
2105 }
2106
2107 static void __attribute__((destructor)) meshlink_exit(void) {
2108         crypto_exit();
2109 }
2110
2111 /// Device class traits
2112 dev_class_traits_t dev_class_traits[_DEV_CLASS_MAX +1] = {
2113         { .min_connects = 3, .max_connects = 10000, .edge_weight = 1 }, // DEV_CLASS_BACKBONE
2114         { .min_connects = 3, .max_connects = 100, .edge_weight = 3 },   // DEV_CLASS_STATIONARY
2115         { .min_connects = 3, .max_connects = 3, .edge_weight = 6 },             // DEV_CLASS_PORTABLE
2116         { .min_connects = 1, .max_connects = 1, .edge_weight = 9 },             // DEV_CLASS_UNKNOWN
2117 };