]> git.meshlink.io Git - meshlink/blob - src/meshlink.c
0fe7343c7ae6a789ab517f2973a6ab5920970c84
[meshlink] / src / meshlink.c
1 /*
2     meshlink.c -- Implementation of the MeshLink API.
3     Copyright (C) 2014-2018 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
20 #include "system.h"
21 #include <pthread.h>
22
23 #include "adns.h"
24 #include "crypto.h"
25 #include "ecdsagen.h"
26 #include "logger.h"
27 #include "meshlink_internal.h"
28 #include "net.h"
29 #include "netutl.h"
30 #include "node.h"
31 #include "submesh.h"
32 #include "packmsg.h"
33 #include "prf.h"
34 #include "protocol.h"
35 #include "route.h"
36 #include "sockaddr.h"
37 #include "utils.h"
38 #include "xalloc.h"
39 #include "ed25519/sha512.h"
40 #include "discovery.h"
41 #include "devtools.h"
42 #include "graph.h"
43
44 #ifndef MSG_NOSIGNAL
45 #define MSG_NOSIGNAL 0
46 #endif
47 __thread meshlink_errno_t meshlink_errno;
48 meshlink_log_cb_t global_log_cb;
49 meshlink_log_level_t global_log_level;
50
51 typedef bool (*search_node_by_condition_t)(const node_t *, const void *);
52
53 static int rstrip(char *value) {
54         int len = strlen(value);
55
56         while(len && strchr("\t\r\n ", value[len - 1])) {
57                 value[--len] = 0;
58         }
59
60         return len;
61 }
62
63 static void get_canonical_address(node_t *n, char **hostname, char **port) {
64         if(!n->canonical_address) {
65                 return;
66         }
67
68         *hostname = xstrdup(n->canonical_address);
69         char *space = strchr(*hostname, ' ');
70
71         if(space) {
72                 *space++ = 0;
73                 *port = xstrdup(space);
74         }
75 }
76
77 static bool is_valid_hostname(const char *hostname) {
78         if(!*hostname) {
79                 return false;
80         }
81
82         for(const char *p = hostname; *p; p++) {
83                 if(!(isalnum(*p) || *p == '-' || *p == '.' || *p == ':')) {
84                         return false;
85                 }
86         }
87
88         return true;
89 }
90
91 static bool is_valid_port(const char *port) {
92         if(!*port) {
93                 return false;
94         }
95
96         if(isdigit(*port)) {
97                 char *end;
98                 unsigned long int result = strtoul(port, &end, 10);
99                 return result && result < 65536 && !*end;
100         }
101
102         for(const char *p = port; *p; p++) {
103                 if(!(isalnum(*p) || *p == '-')) {
104                         return false;
105                 }
106         }
107
108         return true;
109 }
110
111 static void set_timeout(int sock, int timeout) {
112 #ifdef _WIN32
113         DWORD tv = timeout;
114 #else
115         struct timeval tv;
116         tv.tv_sec = timeout / 1000;
117         tv.tv_usec = (timeout - tv.tv_sec * 1000) * 1000;
118 #endif
119         setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
120         setsockopt(sock, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv));
121 }
122
123 struct socket_in_netns_params {
124         int domain;
125         int type;
126         int protocol;
127         int netns;
128         int fd;
129 };
130
131 #ifdef HAVE_SETNS
132 static void *socket_in_netns_thread(void *arg) {
133         struct socket_in_netns_params *params = arg;
134
135         if(setns(params->netns, CLONE_NEWNET) == -1) {
136                 meshlink_errno = MESHLINK_EINVAL;
137                 return NULL;
138         }
139
140         params->fd = socket(params->domain, params->type, params->protocol);
141
142         return NULL;
143 }
144 #endif // HAVE_SETNS
145
146 static int socket_in_netns(int domain, int type, int protocol, int netns) {
147         if(netns == -1) {
148                 return socket(domain, type, protocol);
149         }
150
151 #ifdef HAVE_SETNS
152         struct socket_in_netns_params params = {domain, type, protocol, netns, -1};
153
154         pthread_t thr;
155
156         if(pthread_create(&thr, NULL, socket_in_netns_thread, &params) == 0) {
157                 if(pthread_join(thr, NULL) != 0) {
158                         abort();
159                 }
160         }
161
162         return params.fd;
163 #else
164         return -1;
165 #endif // HAVE_SETNS
166
167 }
168
169 // Find out what local address a socket would use if we connect to the given address.
170 // We do this using connect() on a UDP socket, so the kernel has to resolve the address
171 // of both endpoints, but this will actually not send any UDP packet.
172 static bool getlocaladdr(const char *destaddr, sockaddr_t *sa, socklen_t *salen, int netns) {
173         struct addrinfo *rai = NULL;
174         const struct addrinfo hint = {
175                 .ai_family = AF_UNSPEC,
176                 .ai_socktype = SOCK_DGRAM,
177                 .ai_protocol = IPPROTO_UDP,
178                 .ai_flags = AI_NUMERICHOST | AI_NUMERICSERV,
179         };
180
181         if(getaddrinfo(destaddr, "80", &hint, &rai) || !rai) {
182                 return false;
183         }
184
185         int sock = socket_in_netns(rai->ai_family, rai->ai_socktype, rai->ai_protocol, netns);
186
187         if(sock == -1) {
188                 freeaddrinfo(rai);
189                 return false;
190         }
191
192         if(connect(sock, rai->ai_addr, rai->ai_addrlen) && !sockwouldblock(errno)) {
193                 closesocket(sock);
194                 freeaddrinfo(rai);
195                 return false;
196         }
197
198         freeaddrinfo(rai);
199
200         if(getsockname(sock, &sa->sa, salen)) {
201                 closesocket(sock);
202                 return false;
203         }
204
205         closesocket(sock);
206         return true;
207 }
208
209 static bool getlocaladdrname(const char *destaddr, char *host, socklen_t hostlen, int netns) {
210         sockaddr_t sa;
211         socklen_t salen = sizeof(sa);
212
213         if(!getlocaladdr(destaddr, &sa, &salen, netns)) {
214                 return false;
215         }
216
217         if(getnameinfo(&sa.sa, salen, host, hostlen, NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV)) {
218                 return false;
219         }
220
221         return true;
222 }
223
224 char *meshlink_get_external_address(meshlink_handle_t *mesh) {
225         return meshlink_get_external_address_for_family(mesh, AF_UNSPEC);
226 }
227
228 char *meshlink_get_external_address_for_family(meshlink_handle_t *mesh, int family) {
229         const char *url = mesh->external_address_url;
230
231         if(!url) {
232                 url = "http://meshlink.io/host.cgi";
233         }
234
235         /* Find the hostname part between the slashes */
236         if(strncmp(url, "http://", 7)) {
237                 abort();
238                 meshlink_errno = MESHLINK_EINTERNAL;
239                 return NULL;
240         }
241
242         const char *begin = url + 7;
243
244         const char *end = strchr(begin, '/');
245
246         if(!end) {
247                 end = begin + strlen(begin);
248         }
249
250         /* Make a copy */
251         char host[end - begin + 1];
252         strncpy(host, begin, end - begin);
253         host[end - begin] = 0;
254
255         char *port = strchr(host, ':');
256
257         if(port) {
258                 *port++ = 0;
259         }
260
261         logger(mesh, MESHLINK_DEBUG, "Trying to discover externally visible hostname...\n");
262         struct addrinfo *ai = adns_blocking_request(mesh, xstrdup(host), xstrdup(port ? port : "80"), SOCK_STREAM, 5);
263         char line[256];
264         char *hostname = NULL;
265
266         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
267                 if(family != AF_UNSPEC && aip->ai_family != family) {
268                         continue;
269                 }
270
271                 int s = socket_in_netns(aip->ai_family, aip->ai_socktype, aip->ai_protocol, mesh->netns);
272
273 #ifdef SO_NOSIGPIPE
274                 int nosigpipe = 1;
275                 setsockopt(s, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe));
276 #endif
277
278                 if(s >= 0) {
279                         set_timeout(s, 5000);
280
281                         if(connect(s, aip->ai_addr, aip->ai_addrlen)) {
282                                 closesocket(s);
283                                 s = -1;
284                         }
285                 }
286
287                 if(s >= 0) {
288                         send(s, "GET ", 4, 0);
289                         send(s, url, strlen(url), 0);
290                         send(s, " HTTP/1.0\r\n\r\n", 13, 0);
291                         int len = recv(s, line, sizeof(line) - 1, MSG_WAITALL);
292
293                         if(len > 0) {
294                                 line[len] = 0;
295
296                                 if(line[len - 1] == '\n') {
297                                         line[--len] = 0;
298                                 }
299
300                                 char *p = strrchr(line, '\n');
301
302                                 if(p && p[1]) {
303                                         hostname = xstrdup(p + 1);
304                                 }
305                         }
306
307                         closesocket(s);
308
309                         if(hostname) {
310                                 break;
311                         }
312                 }
313         }
314
315         if(ai) {
316                 freeaddrinfo(ai);
317         }
318
319         // Check that the hostname is reasonable
320         if(hostname && !is_valid_hostname(hostname)) {
321                 free(hostname);
322                 hostname = NULL;
323         }
324
325         if(!hostname) {
326                 meshlink_errno = MESHLINK_ERESOLV;
327         }
328
329         return hostname;
330 }
331
332 static bool is_localaddr(sockaddr_t *sa) {
333         switch(sa->sa.sa_family) {
334         case AF_INET:
335                 return *(uint8_t *)(&sa->in.sin_addr.s_addr) == 127;
336
337         case AF_INET6: {
338                 uint16_t first = sa->in6.sin6_addr.s6_addr[0] << 8 | sa->in6.sin6_addr.s6_addr[1];
339                 return first == 0 || (first & 0xffc0) == 0xfe80;
340         }
341
342         default:
343                 return false;
344         }
345 }
346
347 char *meshlink_get_local_address_for_family(meshlink_handle_t *mesh, int family) {
348         (void)mesh;
349
350         // Determine address of the local interface used for outgoing connections.
351         char localaddr[NI_MAXHOST];
352         bool success = false;
353
354         if(family == AF_INET) {
355                 success = getlocaladdrname("93.184.216.34", localaddr, sizeof(localaddr), mesh->netns);
356         } else if(family == AF_INET6) {
357                 success = getlocaladdrname("2606:2800:220:1:248:1893:25c8:1946", localaddr, sizeof(localaddr), mesh->netns);
358         }
359
360 #ifdef HAVE_GETIFADDRS
361
362         if(!success) {
363                 struct ifaddrs *ifa = NULL;
364                 getifaddrs(&ifa);
365
366                 for(struct ifaddrs *ifap = ifa; ifap; ifap = ifap->ifa_next) {
367                         sockaddr_t *sa = (sockaddr_t *)ifap->ifa_addr;
368
369                         if(sa->sa.sa_family != family) {
370                                 continue;
371                         }
372
373                         if(is_localaddr(sa)) {
374                                 continue;
375                         }
376
377                         if(!getnameinfo(&sa->sa, SALEN(sa->sa), localaddr, sizeof(localaddr), NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV)) {
378                                 success = true;
379                                 break;
380                         }
381                 }
382
383                 freeifaddrs(ifa);
384         }
385
386 #endif
387
388         if(!success) {
389                 meshlink_errno = MESHLINK_ENETWORK;
390                 return NULL;
391         }
392
393         return xstrdup(localaddr);
394 }
395
396 static void remove_duplicate_hostnames(char *host[], char *port[], int n) {
397         for(int i = 0; i < n; i++) {
398                 if(!host[i]) {
399                         continue;
400                 }
401
402                 // Ignore duplicate hostnames
403                 bool found = false;
404
405                 for(int j = 0; j < i; j++) {
406                         if(!host[j]) {
407                                 continue;
408                         }
409
410                         if(strcmp(host[i], host[j])) {
411                                 continue;
412                         }
413
414                         if(strcmp(port[i], port[j])) {
415                                 continue;
416                         }
417
418                         found = true;
419                         break;
420                 }
421
422                 if(found || !is_valid_hostname(host[i])) {
423                         free(host[i]);
424                         free(port[i]);
425                         host[i] = NULL;
426                         port[i] = NULL;
427                         continue;
428                 }
429         }
430 }
431
432 // This gets the hostname part for use in invitation URLs
433 static char *get_my_hostname(meshlink_handle_t *mesh, uint32_t flags) {
434         int count = 4 + (mesh->invitation_addresses ? mesh->invitation_addresses->count : 0);
435         int n = 0;
436         char *hostname[count];
437         char *port[count];
438         char *hostport = NULL;
439
440         memset(hostname, 0, sizeof(hostname));
441         memset(port, 0, sizeof(port));
442
443         if(!(flags & (MESHLINK_INVITE_LOCAL | MESHLINK_INVITE_PUBLIC))) {
444                 flags |= MESHLINK_INVITE_LOCAL | MESHLINK_INVITE_PUBLIC;
445         }
446
447         if(!(flags & (MESHLINK_INVITE_IPV4 | MESHLINK_INVITE_IPV6))) {
448                 flags |= MESHLINK_INVITE_IPV4 | MESHLINK_INVITE_IPV6;
449         }
450
451         // Add all explicitly set invitation addresses
452         if(mesh->invitation_addresses) {
453                 for list_each(char, combo, mesh->invitation_addresses) {
454                         hostname[n] = xstrdup(combo);
455                         char *slash = strrchr(hostname[n], '/');
456
457                         if(slash) {
458                                 *slash = 0;
459                                 port[n] = xstrdup(slash + 1);
460                         }
461
462                         n++;
463                 }
464         }
465
466         // Add local addresses if requested
467         if(flags & MESHLINK_INVITE_LOCAL) {
468                 if(flags & MESHLINK_INVITE_IPV4) {
469                         hostname[n++] = meshlink_get_local_address_for_family(mesh, AF_INET);
470                 }
471
472                 if(flags & MESHLINK_INVITE_IPV6) {
473                         hostname[n++] = meshlink_get_local_address_for_family(mesh, AF_INET6);
474                 }
475         }
476
477         // Add public/canonical addresses if requested
478         if(flags & MESHLINK_INVITE_PUBLIC) {
479                 // Try the CanonicalAddress first
480                 get_canonical_address(mesh->self, &hostname[n], &port[n]);
481
482                 if(!hostname[n] && count == 4) {
483                         if(flags & MESHLINK_INVITE_IPV4) {
484                                 hostname[n++] = meshlink_get_external_address_for_family(mesh, AF_INET);
485                         }
486
487                         if(flags & MESHLINK_INVITE_IPV6) {
488                                 hostname[n++] = meshlink_get_external_address_for_family(mesh, AF_INET6);
489                         }
490                 } else {
491                         n++;
492                 }
493         }
494
495         for(int i = 0; i < n; i++) {
496                 // Ensure we always have a port number
497                 if(hostname[i] && !port[i]) {
498                         port[i] = xstrdup(mesh->myport);
499                 }
500         }
501
502         remove_duplicate_hostnames(hostname, port, n);
503
504         // Resolve the hostnames
505         for(int i = 0; i < n; i++) {
506                 if(!hostname[i]) {
507                         continue;
508                 }
509
510                 // Convert what we have to a sockaddr
511                 struct addrinfo *ai_in = adns_blocking_request(mesh, xstrdup(hostname[i]), xstrdup(port[i]), SOCK_STREAM, 5);
512
513                 if(!ai_in) {
514                         continue;
515                 }
516
517                 // Remember the address(es)
518                 for(struct addrinfo *aip = ai_in; aip; aip = aip->ai_next) {
519                         node_add_recent_address(mesh, mesh->self, (sockaddr_t *)aip->ai_addr);
520                 }
521
522                 freeaddrinfo(ai_in);
523                 continue;
524         }
525
526         // Remove duplicates again, since IPv4 and IPv6 addresses might map to the same hostname
527         remove_duplicate_hostnames(hostname, port, n);
528
529         // Concatenate all unique address to the hostport string
530         for(int i = 0; i < n; i++) {
531                 if(!hostname[i]) {
532                         continue;
533                 }
534
535                 // Append the address to the hostport string
536                 char *newhostport;
537                 xasprintf(&newhostport, (strchr(hostname[i], ':') ? "%s%s[%s]:%s" : "%s%s%s:%s"), hostport ? hostport : "", hostport ? "," : "", hostname[i], port[i]);
538                 free(hostport);
539                 hostport = newhostport;
540
541                 free(hostname[i]);
542                 free(port[i]);
543         }
544
545         return hostport;
546 }
547
548 static bool try_bind(meshlink_handle_t *mesh, int port) {
549         struct addrinfo *ai = NULL;
550         struct addrinfo hint = {
551                 .ai_flags = AI_PASSIVE,
552                 .ai_family = AF_UNSPEC,
553                 .ai_socktype = SOCK_STREAM,
554                 .ai_protocol = IPPROTO_TCP,
555         };
556
557         char portstr[16];
558         snprintf(portstr, sizeof(portstr), "%d", port);
559
560         if(getaddrinfo(NULL, portstr, &hint, &ai) || !ai) {
561                 return false;
562         }
563
564         bool success = false;
565
566         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
567                 /* Try to bind to TCP. */
568
569                 int tcp_fd = setup_tcp_listen_socket(mesh, aip);
570
571                 if(tcp_fd == -1) {
572                         if(errno == EADDRINUSE) {
573                                 /* If this port is in use for any address family, avoid it. */
574                                 success = false;
575                                 break;
576                         } else {
577                                 continue;
578                         }
579                 }
580
581                 /* If TCP worked, then we require that UDP works as well. */
582
583                 int udp_fd = setup_udp_listen_socket(mesh, aip);
584
585                 if(udp_fd == -1) {
586                         closesocket(tcp_fd);
587                         success = false;
588                         break;
589                 }
590
591                 closesocket(tcp_fd);
592                 closesocket(udp_fd);
593                 success = true;
594         }
595
596         freeaddrinfo(ai);
597         return success;
598 }
599
600 int check_port(meshlink_handle_t *mesh) {
601         for(int i = 0; i < 1000; i++) {
602                 int port = 0x1000 + prng(mesh, 0x8000);
603
604                 if(try_bind(mesh, port)) {
605                         free(mesh->myport);
606                         xasprintf(&mesh->myport, "%d", port);
607                         return port;
608                 }
609         }
610
611         meshlink_errno = MESHLINK_ENETWORK;
612         logger(mesh, MESHLINK_DEBUG, "Could not find any available network port.\n");
613         return 0;
614 }
615
616 static bool write_main_config_files(meshlink_handle_t *mesh) {
617         if(!mesh->confbase) {
618                 return true;
619         }
620
621         uint8_t buf[4096];
622
623         /* Write the main config file */
624         packmsg_output_t out = {buf, sizeof buf};
625
626         packmsg_add_uint32(&out, MESHLINK_CONFIG_VERSION);
627         packmsg_add_str(&out, mesh->name);
628         packmsg_add_bin(&out, ecdsa_get_private_key(mesh->private_key), 96);
629         packmsg_add_bin(&out, ecdsa_get_private_key(mesh->invitation_key), 96);
630         packmsg_add_uint16(&out, atoi(mesh->myport));
631
632         if(!packmsg_output_ok(&out)) {
633                 return false;
634         }
635
636         config_t config = {buf, packmsg_output_size(&out, buf)};
637
638         if(!main_config_write(mesh, "current", &config, mesh->config_key)) {
639                 return false;
640         }
641
642         /* Write our own host config file */
643         if(!node_write_config(mesh, mesh->self)) {
644                 return false;
645         }
646
647         return true;
648 }
649
650 typedef struct {
651         meshlink_handle_t *mesh;
652         int sock;
653         char cookie[18 + 32];
654         char hash[18];
655         bool success;
656         sptps_t sptps;
657         char *data;
658         size_t thedatalen;
659         size_t blen;
660         char line[4096];
661         char buffer[4096];
662 } join_state_t;
663
664 static bool finalize_join(join_state_t *state, const void *buf, uint16_t len) {
665         meshlink_handle_t *mesh = state->mesh;
666         packmsg_input_t in = {buf, len};
667         uint32_t version = packmsg_get_uint32(&in);
668
669         if(version != MESHLINK_INVITATION_VERSION) {
670                 logger(mesh, MESHLINK_ERROR, "Invalid invitation version!\n");
671                 return false;
672         }
673
674         char *name = packmsg_get_str_dup(&in);
675         char *submesh_name = packmsg_get_str_dup(&in);
676         dev_class_t devclass = packmsg_get_int32(&in);
677         uint32_t count = packmsg_get_array(&in);
678
679         if(!name || !check_id(name)) {
680                 logger(mesh, MESHLINK_DEBUG, "No valid Name found in invitation!\n");
681                 free(name);
682                 free(submesh_name);
683                 return false;
684         }
685
686         if(!submesh_name || (strcmp(submesh_name, CORE_MESH) && !check_id(submesh_name))) {
687                 logger(mesh, MESHLINK_DEBUG, "No valid Submesh found in invitation!\n");
688                 free(name);
689                 free(submesh_name);
690                 return false;
691         }
692
693         if(!count) {
694                 logger(mesh, MESHLINK_ERROR, "Incomplete invitation file!\n");
695                 free(name);
696                 free(submesh_name);
697                 return false;
698         }
699
700         free(mesh->name);
701         free(mesh->self->name);
702         mesh->name = name;
703         mesh->self->name = xstrdup(name);
704         mesh->self->submesh = strcmp(submesh_name, CORE_MESH) ? lookup_or_create_submesh(mesh, submesh_name) : NULL;
705         free(submesh_name);
706         mesh->self->devclass = devclass == DEV_CLASS_UNKNOWN ? mesh->devclass : devclass;
707
708         // Initialize configuration directory
709         if(!config_init(mesh, "current")) {
710                 return false;
711         }
712
713         if(!write_main_config_files(mesh)) {
714                 return false;
715         }
716
717         // Write host config files
718         for(uint32_t i = 0; i < count; i++) {
719                 const void *data;
720                 uint32_t data_len = packmsg_get_bin_raw(&in, &data);
721
722                 if(!data_len) {
723                         logger(mesh, MESHLINK_ERROR, "Incomplete invitation file!\n");
724                         return false;
725                 }
726
727                 packmsg_input_t in2 = {data, data_len};
728                 uint32_t version2 = packmsg_get_uint32(&in2);
729                 char *name2 = packmsg_get_str_dup(&in2);
730
731                 if(!packmsg_input_ok(&in2) || version2 != MESHLINK_CONFIG_VERSION || !check_id(name2)) {
732                         free(name2);
733                         packmsg_input_invalidate(&in);
734                         break;
735                 }
736
737                 if(!check_id(name2)) {
738                         free(name2);
739                         break;
740                 }
741
742                 if(!strcmp(name2, mesh->name)) {
743                         logger(mesh, MESHLINK_DEBUG, "Secondary chunk would overwrite our own host config file.\n");
744                         free(name2);
745                         meshlink_errno = MESHLINK_EPEER;
746                         return false;
747                 }
748
749                 node_t *n = new_node();
750                 n->name = name2;
751
752                 config_t config = {data, data_len};
753
754                 if(!node_read_from_config(mesh, n, &config)) {
755                         free_node(n);
756                         logger(mesh, MESHLINK_ERROR, "Invalid host config file in invitation file!\n");
757                         meshlink_errno = MESHLINK_EPEER;
758                         return false;
759                 }
760
761                 if(i == 0) {
762                         /* The first host config file is of the inviter itself;
763                          * remember the address we are currently using for the invitation connection.
764                          */
765                         sockaddr_t sa;
766                         socklen_t salen = sizeof(sa);
767
768                         if(getpeername(state->sock, &sa.sa, &salen) == 0) {
769                                 node_add_recent_address(mesh, n, &sa);
770                         }
771                 }
772
773                 /* Clear the reachability times, since we ourself have never seen these nodes yet */
774                 n->last_reachable = 0;
775                 n->last_unreachable = 0;
776
777                 if(!node_write_config(mesh, n)) {
778                         free_node(n);
779                         return false;
780                 }
781
782                 node_add(mesh, n);
783         }
784
785         /* Ensure the configuration directory metadata is on disk */
786         if(!config_sync(mesh, "current") || !sync_path(mesh->confbase)) {
787                 return false;
788         }
789
790         if(!mesh->inviter_commits_first) {
791                 devtool_set_inviter_commits_first(false);
792         }
793
794         sptps_send_record(&state->sptps, 1, ecdsa_get_public_key(mesh->private_key), 32);
795
796         logger(mesh, MESHLINK_DEBUG, "Configuration stored in: %s\n", mesh->confbase);
797
798         return true;
799 }
800
801 static bool invitation_send(void *handle, uint8_t type, const void *data, size_t len) {
802         (void)type;
803         join_state_t *state = handle;
804         const char *ptr = data;
805
806         while(len) {
807                 int result = send(state->sock, ptr, len, 0);
808
809                 if(result == -1 && errno == EINTR) {
810                         continue;
811                 } else if(result <= 0) {
812                         return false;
813                 }
814
815                 ptr += result;
816                 len -= result;
817         }
818
819         return true;
820 }
821
822 static bool invitation_receive(void *handle, uint8_t type, const void *msg, uint16_t len) {
823         join_state_t *state = handle;
824         meshlink_handle_t *mesh = state->mesh;
825
826         if(mesh->inviter_commits_first) {
827                 switch(type) {
828                 case SPTPS_HANDSHAKE:
829                         return sptps_send_record(&state->sptps, 2, state->cookie, 18 + 32);
830
831                 case 1:
832                         break;
833
834                 case 0:
835                         if(!finalize_join(state, msg, len)) {
836                                 return false;
837                         }
838
839                         logger(mesh, MESHLINK_DEBUG, "Invitation successfully accepted.\n");
840                         shutdown(state->sock, SHUT_RDWR);
841                         state->success = true;
842                         break;
843
844                 default:
845                         return false;
846                 }
847         } else {
848                 switch(type) {
849                 case SPTPS_HANDSHAKE:
850                         return sptps_send_record(&state->sptps, 0, state->cookie, 18);
851
852                 case 0:
853                         return finalize_join(state, msg, len);
854
855                 case 1:
856                         logger(mesh, MESHLINK_DEBUG, "Invitation successfully accepted.\n");
857                         shutdown(state->sock, SHUT_RDWR);
858                         state->success = true;
859                         break;
860
861                 default:
862                         return false;
863                 }
864         }
865
866         return true;
867 }
868
869 static bool recvline(join_state_t *state) {
870         char *newline = NULL;
871
872         while(!(newline = memchr(state->buffer, '\n', state->blen))) {
873                 int result = recv(state->sock, state->buffer + state->blen, sizeof(state)->buffer - state->blen, 0);
874
875                 if(result == -1 && errno == EINTR) {
876                         continue;
877                 } else if(result <= 0) {
878                         return false;
879                 }
880
881                 state->blen += result;
882         }
883
884         if((size_t)(newline - state->buffer) >= sizeof(state->line)) {
885                 return false;
886         }
887
888         size_t len = newline - state->buffer;
889
890         memcpy(state->line, state->buffer, len);
891         state->line[len] = 0;
892         memmove(state->buffer, newline + 1, state->blen - len - 1);
893         state->blen -= len + 1;
894
895         return true;
896 }
897
898 static bool sendline(int fd, const char *format, ...) {
899         char buffer[4096];
900         char *p = buffer;
901         int blen = 0;
902         va_list ap;
903
904         va_start(ap, format);
905         blen = vsnprintf(buffer, sizeof(buffer), format, ap);
906         va_end(ap);
907
908         if(blen < 1 || (size_t)blen >= sizeof(buffer)) {
909                 return false;
910         }
911
912         buffer[blen] = '\n';
913         blen++;
914
915         while(blen) {
916                 int result = send(fd, p, blen, MSG_NOSIGNAL);
917
918                 if(result == -1 && errno == EINTR) {
919                         continue;
920                 } else if(result <= 0) {
921                         return false;
922                 }
923
924                 p += result;
925                 blen -= result;
926         }
927
928         return true;
929 }
930
931 static const char *errstr[] = {
932         [MESHLINK_OK] = "No error",
933         [MESHLINK_EINVAL] = "Invalid argument",
934         [MESHLINK_ENOMEM] = "Out of memory",
935         [MESHLINK_ENOENT] = "No such node",
936         [MESHLINK_EEXIST] = "Node already exists",
937         [MESHLINK_EINTERNAL] = "Internal error",
938         [MESHLINK_ERESOLV] = "Could not resolve hostname",
939         [MESHLINK_ESTORAGE] = "Storage error",
940         [MESHLINK_ENETWORK] = "Network error",
941         [MESHLINK_EPEER] = "Error communicating with peer",
942         [MESHLINK_ENOTSUP] = "Operation not supported",
943         [MESHLINK_EBUSY] = "MeshLink instance already in use",
944         [MESHLINK_EBLACKLISTED] = "Node is blacklisted",
945 };
946
947 const char *meshlink_strerror(meshlink_errno_t err) {
948         if((int)err < 0 || err >= sizeof(errstr) / sizeof(*errstr)) {
949                 return "Invalid error code";
950         }
951
952         return errstr[err];
953 }
954
955 static bool ecdsa_keygen(meshlink_handle_t *mesh) {
956         logger(mesh, MESHLINK_DEBUG, "Generating ECDSA keypairs:\n");
957
958         mesh->private_key = ecdsa_generate();
959         mesh->invitation_key = ecdsa_generate();
960
961         if(!mesh->private_key || !mesh->invitation_key) {
962                 logger(mesh, MESHLINK_DEBUG, "Error during key generation!\n");
963                 meshlink_errno = MESHLINK_EINTERNAL;
964                 return false;
965         }
966
967         logger(mesh, MESHLINK_DEBUG, "Done.\n");
968
969         return true;
970 }
971
972 static bool timespec_lt(const struct timespec *a, const struct timespec *b) {
973         if(a->tv_sec == b->tv_sec) {
974                 return a->tv_nsec < b->tv_nsec;
975         } else {
976                 return a->tv_sec < b->tv_sec;
977         }
978 }
979
980 static struct timespec idle(event_loop_t *loop, void *data) {
981         (void)loop;
982         meshlink_handle_t *mesh = data;
983         struct timespec t, tmin = {3600, 0};
984
985         for splay_each(node_t, n, mesh->nodes) {
986                 if(!n->utcp) {
987                         continue;
988                 }
989
990                 t = utcp_timeout(n->utcp);
991
992                 if(timespec_lt(&t, &tmin)) {
993                         tmin = t;
994                 }
995         }
996
997         return tmin;
998 }
999
1000 // Get our local address(es) by simulating connecting to an Internet host.
1001 static void add_local_addresses(meshlink_handle_t *mesh) {
1002         sockaddr_t sa;
1003         sa.storage.ss_family = AF_UNKNOWN;
1004         socklen_t salen = sizeof(sa);
1005
1006         // IPv4 example.org
1007
1008         if(getlocaladdr("93.184.216.34", &sa, &salen, mesh->netns)) {
1009                 sa.in.sin_port = ntohs(atoi(mesh->myport));
1010                 node_add_recent_address(mesh, mesh->self, &sa);
1011         }
1012
1013         // IPv6 example.org
1014
1015         salen = sizeof(sa);
1016
1017         if(getlocaladdr("2606:2800:220:1:248:1893:25c8:1946", &sa, &salen, mesh->netns)) {
1018                 sa.in6.sin6_port = ntohs(atoi(mesh->myport));
1019                 node_add_recent_address(mesh, mesh->self, &sa);
1020         }
1021 }
1022
1023 static bool meshlink_setup(meshlink_handle_t *mesh) {
1024         if(!config_destroy(mesh->confbase, "new")) {
1025                 logger(mesh, MESHLINK_ERROR, "Could not delete configuration in %s/new: %s\n", mesh->confbase, strerror(errno));
1026                 meshlink_errno = MESHLINK_ESTORAGE;
1027                 return false;
1028         }
1029
1030         if(!config_destroy(mesh->confbase, "old")) {
1031                 logger(mesh, MESHLINK_ERROR, "Could not delete configuration in %s/old: %s\n", mesh->confbase, strerror(errno));
1032                 meshlink_errno = MESHLINK_ESTORAGE;
1033                 return false;
1034         }
1035
1036         if(!config_init(mesh, "current")) {
1037                 logger(mesh, MESHLINK_ERROR, "Could not set up configuration in %s/current: %s\n", mesh->confbase, strerror(errno));
1038                 meshlink_errno = MESHLINK_ESTORAGE;
1039                 return false;
1040         }
1041
1042         if(!ecdsa_keygen(mesh)) {
1043                 meshlink_errno = MESHLINK_EINTERNAL;
1044                 return false;
1045         }
1046
1047         if(check_port(mesh) == 0) {
1048                 meshlink_errno = MESHLINK_ENETWORK;
1049                 return false;
1050         }
1051
1052         /* Create a node for ourself */
1053
1054         mesh->self = new_node();
1055         mesh->self->name = xstrdup(mesh->name);
1056         mesh->self->devclass = mesh->devclass;
1057         mesh->self->ecdsa = ecdsa_set_public_key(ecdsa_get_public_key(mesh->private_key));
1058         mesh->self->session_id = mesh->session_id;
1059
1060         if(!write_main_config_files(mesh)) {
1061                 logger(mesh, MESHLINK_ERROR, "Could not write main config files into %s/current: %s\n", mesh->confbase, strerror(errno));
1062                 meshlink_errno = MESHLINK_ESTORAGE;
1063                 return false;
1064         }
1065
1066         /* Ensure the configuration directory metadata is on disk */
1067         if(!config_sync(mesh, "current")) {
1068                 return false;
1069         }
1070
1071         return true;
1072 }
1073
1074 static bool meshlink_read_config(meshlink_handle_t *mesh) {
1075         config_t config;
1076
1077         if(!main_config_read(mesh, "current", &config, mesh->config_key)) {
1078                 logger(NULL, MESHLINK_ERROR, "Could not read main configuration file!");
1079                 return false;
1080         }
1081
1082         packmsg_input_t in = {config.buf, config.len};
1083         const void *private_key;
1084         const void *invitation_key;
1085
1086         uint32_t version = packmsg_get_uint32(&in);
1087         char *name = packmsg_get_str_dup(&in);
1088         uint32_t private_key_len = packmsg_get_bin_raw(&in, &private_key);
1089         uint32_t invitation_key_len = packmsg_get_bin_raw(&in, &invitation_key);
1090         uint16_t myport = packmsg_get_uint16(&in);
1091
1092         if(!packmsg_done(&in) || version != MESHLINK_CONFIG_VERSION || private_key_len != 96 || invitation_key_len != 96) {
1093                 logger(NULL, MESHLINK_ERROR, "Error parsing main configuration file!");
1094                 free(name);
1095                 config_free(&config);
1096                 return false;
1097         }
1098
1099         if(mesh->name && strcmp(mesh->name, name)) {
1100                 logger(NULL, MESHLINK_ERROR, "Configuration is for a different name (%s)!", name);
1101                 meshlink_errno = MESHLINK_ESTORAGE;
1102                 free(name);
1103                 config_free(&config);
1104                 return false;
1105         }
1106
1107         free(mesh->name);
1108         mesh->name = name;
1109         xasprintf(&mesh->myport, "%u", myport);
1110         mesh->private_key = ecdsa_set_private_key(private_key);
1111         mesh->invitation_key = ecdsa_set_private_key(invitation_key);
1112         config_free(&config);
1113
1114         /* Create a node for ourself and read our host configuration file */
1115
1116         mesh->self = new_node();
1117         mesh->self->name = xstrdup(name);
1118         mesh->self->devclass = mesh->devclass;
1119         mesh->self->session_id = mesh->session_id;
1120
1121         if(!node_read_public_key(mesh, mesh->self)) {
1122                 logger(NULL, MESHLINK_ERROR, "Could not read our host configuration file!");
1123                 meshlink_errno = MESHLINK_ESTORAGE;
1124                 free_node(mesh->self);
1125                 mesh->self = NULL;
1126                 return false;
1127         }
1128
1129         return true;
1130 }
1131
1132 #ifdef HAVE_SETNS
1133 static void *setup_network_in_netns_thread(void *arg) {
1134         meshlink_handle_t *mesh = arg;
1135
1136         if(setns(mesh->netns, CLONE_NEWNET) != 0) {
1137                 return NULL;
1138         }
1139
1140         bool success = setup_network(mesh);
1141         return success ? arg : NULL;
1142 }
1143 #endif // HAVE_SETNS
1144
1145 meshlink_open_params_t *meshlink_open_params_init(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
1146         if(!confbase || !*confbase) {
1147                 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
1148                 meshlink_errno = MESHLINK_EINVAL;
1149                 return NULL;
1150         }
1151
1152         if(!appname || !*appname) {
1153                 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
1154                 meshlink_errno = MESHLINK_EINVAL;
1155                 return NULL;
1156         }
1157
1158         if(strchr(appname, ' ')) {
1159                 logger(NULL, MESHLINK_ERROR, "Invalid appname given!\n");
1160                 meshlink_errno = MESHLINK_EINVAL;
1161                 return NULL;
1162         }
1163
1164         if(name && !check_id(name)) {
1165                 logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
1166                 meshlink_errno = MESHLINK_EINVAL;
1167                 return NULL;
1168         }
1169
1170         if(devclass < 0 || devclass >= DEV_CLASS_COUNT) {
1171                 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
1172                 meshlink_errno = MESHLINK_EINVAL;
1173                 return NULL;
1174         }
1175
1176         meshlink_open_params_t *params = xzalloc(sizeof * params);
1177
1178         params->confbase = xstrdup(confbase);
1179         params->name = name ? xstrdup(name) : NULL;
1180         params->appname = xstrdup(appname);
1181         params->devclass = devclass;
1182         params->netns = -1;
1183
1184         return params;
1185 }
1186
1187 bool meshlink_open_params_set_netns(meshlink_open_params_t *params, int netns) {
1188         if(!params) {
1189                 meshlink_errno = MESHLINK_EINVAL;
1190                 return false;
1191         }
1192
1193         params->netns = netns;
1194
1195         return true;
1196 }
1197
1198 bool meshlink_open_params_set_storage_key(meshlink_open_params_t *params, const void *key, size_t keylen) {
1199         if(!params) {
1200                 meshlink_errno = MESHLINK_EINVAL;
1201                 return false;
1202         }
1203
1204         if((!key && keylen) || (key && !keylen)) {
1205                 logger(NULL, MESHLINK_ERROR, "Invalid key length!\n");
1206                 meshlink_errno = MESHLINK_EINVAL;
1207                 return false;
1208         }
1209
1210         params->key = key;
1211         params->keylen = keylen;
1212
1213         return true;
1214 }
1215
1216 bool meshlink_encrypted_key_rotate(meshlink_handle_t *mesh, const void *new_key, size_t new_keylen) {
1217         if(!mesh || !new_key || !new_keylen) {
1218                 logger(mesh, MESHLINK_ERROR, "Invalid arguments given!\n");
1219                 meshlink_errno = MESHLINK_EINVAL;
1220                 return false;
1221         }
1222
1223         if(pthread_mutex_lock(&mesh->mutex) != 0) {
1224                 abort();
1225         }
1226
1227         // Create hash for the new key
1228         void *new_config_key;
1229         new_config_key = xmalloc(CHACHA_POLY1305_KEYLEN);
1230
1231         if(!prf(new_key, new_keylen, "MeshLink configuration key", 26, new_config_key, CHACHA_POLY1305_KEYLEN)) {
1232                 logger(mesh, MESHLINK_ERROR, "Error creating new configuration key!\n");
1233                 meshlink_errno = MESHLINK_EINTERNAL;
1234                 pthread_mutex_unlock(&mesh->mutex);
1235                 return false;
1236         }
1237
1238         // Copy contents of the "current" confbase sub-directory to "new" confbase sub-directory with the new key
1239
1240         if(!config_copy(mesh, "current", mesh->config_key, "new", new_config_key)) {
1241                 logger(mesh, MESHLINK_ERROR, "Could not set up configuration in %s/old: %s\n", mesh->confbase, strerror(errno));
1242                 meshlink_errno = MESHLINK_ESTORAGE;
1243                 pthread_mutex_unlock(&mesh->mutex);
1244                 return false;
1245         }
1246
1247         devtool_keyrotate_probe(1);
1248
1249         // Rename confbase/current/ to confbase/old
1250
1251         if(!config_rename(mesh, "current", "old")) {
1252                 logger(mesh, MESHLINK_ERROR, "Cannot rename %s/current to %s/old\n", mesh->confbase, mesh->confbase);
1253                 meshlink_errno = MESHLINK_ESTORAGE;
1254                 pthread_mutex_unlock(&mesh->mutex);
1255                 return false;
1256         }
1257
1258         devtool_keyrotate_probe(2);
1259
1260         // Rename confbase/new/ to confbase/current
1261
1262         if(!config_rename(mesh, "new", "current")) {
1263                 logger(mesh, MESHLINK_ERROR, "Cannot rename %s/new to %s/current\n", mesh->confbase, mesh->confbase);
1264                 meshlink_errno = MESHLINK_ESTORAGE;
1265                 pthread_mutex_unlock(&mesh->mutex);
1266                 return false;
1267         }
1268
1269         devtool_keyrotate_probe(3);
1270
1271         // Cleanup the "old" confbase sub-directory
1272
1273         if(!config_destroy(mesh->confbase, "old")) {
1274                 pthread_mutex_unlock(&mesh->mutex);
1275                 return false;
1276         }
1277
1278         // Change the mesh handle key with new key
1279
1280         free(mesh->config_key);
1281         mesh->config_key = new_config_key;
1282
1283         pthread_mutex_unlock(&mesh->mutex);
1284
1285         return true;
1286 }
1287
1288 void meshlink_open_params_free(meshlink_open_params_t *params) {
1289         if(!params) {
1290                 meshlink_errno = MESHLINK_EINVAL;
1291                 return;
1292         }
1293
1294         free(params->confbase);
1295         free(params->name);
1296         free(params->appname);
1297
1298         free(params);
1299 }
1300
1301 /// Device class traits
1302 static const dev_class_traits_t default_class_traits[DEV_CLASS_COUNT] = {
1303         { .pingtimeout = 5, .pinginterval = 60, .maxtimeout = 900, .min_connects = 3, .max_connects = 10000, .edge_weight = 1 }, // DEV_CLASS_BACKBONE
1304         { .pingtimeout = 5, .pinginterval = 60, .maxtimeout = 900, .min_connects = 3, .max_connects = 100, .edge_weight = 3 },   // DEV_CLASS_STATIONARY
1305         { .pingtimeout = 5, .pinginterval = 60, .maxtimeout = 900, .min_connects = 3, .max_connects = 3, .edge_weight = 6 },     // DEV_CLASS_PORTABLE
1306         { .pingtimeout = 5, .pinginterval = 60, .maxtimeout = 900, .min_connects = 1, .max_connects = 1, .edge_weight = 9 },     // DEV_CLASS_UNKNOWN
1307 };
1308
1309 meshlink_handle_t *meshlink_open(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
1310         if(!confbase || !*confbase) {
1311                 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
1312                 meshlink_errno = MESHLINK_EINVAL;
1313                 return NULL;
1314         }
1315
1316         /* Create a temporary struct on the stack, to avoid allocating and freeing one. */
1317         meshlink_open_params_t params;
1318         memset(&params, 0, sizeof(params));
1319
1320         params.confbase = (char *)confbase;
1321         params.name = (char *)name;
1322         params.appname = (char *)appname;
1323         params.devclass = devclass;
1324         params.netns = -1;
1325
1326         return meshlink_open_ex(&params);
1327 }
1328
1329 meshlink_handle_t *meshlink_open_encrypted(const char *confbase, const char *name, const char *appname, dev_class_t devclass, const void *key, size_t keylen) {
1330         if(!confbase || !*confbase) {
1331                 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
1332                 meshlink_errno = MESHLINK_EINVAL;
1333                 return NULL;
1334         }
1335
1336         /* Create a temporary struct on the stack, to avoid allocating and freeing one. */
1337         meshlink_open_params_t params;
1338         memset(&params, 0, sizeof(params));
1339
1340         params.confbase = (char *)confbase;
1341         params.name = (char *)name;
1342         params.appname = (char *)appname;
1343         params.devclass = devclass;
1344         params.netns = -1;
1345
1346         if(!meshlink_open_params_set_storage_key(&params, key, keylen)) {
1347                 return false;
1348         }
1349
1350         return meshlink_open_ex(&params);
1351 }
1352
1353 meshlink_handle_t *meshlink_open_ephemeral(const char *name, const char *appname, dev_class_t devclass) {
1354         if(!name) {
1355                 logger(NULL, MESHLINK_ERROR, "No name given!\n");
1356                 meshlink_errno = MESHLINK_EINVAL;
1357                 return NULL;
1358         }
1359
1360         if(!check_id(name)) {
1361                 logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
1362                 meshlink_errno = MESHLINK_EINVAL;
1363                 return NULL;
1364         }
1365
1366         if(!appname || !*appname) {
1367                 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
1368                 meshlink_errno = MESHLINK_EINVAL;
1369                 return NULL;
1370         }
1371
1372         if(strchr(appname, ' ')) {
1373                 logger(NULL, MESHLINK_ERROR, "Invalid appname given!\n");
1374                 meshlink_errno = MESHLINK_EINVAL;
1375                 return NULL;
1376         }
1377
1378         if(devclass < 0 || devclass >= DEV_CLASS_COUNT) {
1379                 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
1380                 meshlink_errno = MESHLINK_EINVAL;
1381                 return NULL;
1382         }
1383
1384         /* Create a temporary struct on the stack, to avoid allocating and freeing one. */
1385         meshlink_open_params_t params;
1386         memset(&params, 0, sizeof(params));
1387
1388         params.name = (char *)name;
1389         params.appname = (char *)appname;
1390         params.devclass = devclass;
1391         params.netns = -1;
1392
1393         return meshlink_open_ex(&params);
1394 }
1395
1396 meshlink_handle_t *meshlink_open_ex(const meshlink_open_params_t *params) {
1397         logger(NULL, MESHLINK_DEBUG, "meshlink_open called\n");
1398
1399         // Validate arguments provided by the application
1400         if(!params->appname || !*params->appname) {
1401                 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
1402                 meshlink_errno = MESHLINK_EINVAL;
1403                 return NULL;
1404         }
1405
1406         if(strchr(params->appname, ' ')) {
1407                 logger(NULL, MESHLINK_ERROR, "Invalid appname given!\n");
1408                 meshlink_errno = MESHLINK_EINVAL;
1409                 return NULL;
1410         }
1411
1412         if(params->name && !check_id(params->name)) {
1413                 logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
1414                 meshlink_errno = MESHLINK_EINVAL;
1415                 return NULL;
1416         }
1417
1418         if(params->devclass < 0 || params->devclass >= DEV_CLASS_COUNT) {
1419                 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
1420                 meshlink_errno = MESHLINK_EINVAL;
1421                 return NULL;
1422         }
1423
1424         if((params->key && !params->keylen) || (!params->key && params->keylen)) {
1425                 logger(NULL, MESHLINK_ERROR, "Invalid key length!\n");
1426                 meshlink_errno = MESHLINK_EINVAL;
1427                 return NULL;
1428         }
1429
1430         meshlink_handle_t *mesh = xzalloc(sizeof(meshlink_handle_t));
1431
1432         if(params->confbase) {
1433                 mesh->confbase = xstrdup(params->confbase);
1434         }
1435
1436         mesh->appname = xstrdup(params->appname);
1437         mesh->devclass = params->devclass;
1438         mesh->discovery = true;
1439         mesh->invitation_timeout = 604800; // 1 week
1440         mesh->netns = params->netns;
1441         mesh->submeshes = NULL;
1442         mesh->log_cb = global_log_cb;
1443         mesh->log_level = global_log_level;
1444         mesh->packet = xmalloc(sizeof(vpn_packet_t));
1445
1446         randomize(&mesh->prng_state, sizeof(mesh->prng_state));
1447
1448         do {
1449                 randomize(&mesh->session_id, sizeof(mesh->session_id));
1450         } while(mesh->session_id == 0);
1451
1452         memcpy(mesh->dev_class_traits, default_class_traits, sizeof(default_class_traits));
1453
1454         mesh->name = params->name ? xstrdup(params->name) : NULL;
1455
1456         // Hash the key
1457         if(params->key) {
1458                 mesh->config_key = xmalloc(CHACHA_POLY1305_KEYLEN);
1459
1460                 if(!prf(params->key, params->keylen, "MeshLink configuration key", 26, mesh->config_key, CHACHA_POLY1305_KEYLEN)) {
1461                         logger(NULL, MESHLINK_ERROR, "Error creating configuration key!\n");
1462                         meshlink_close(mesh);
1463                         meshlink_errno = MESHLINK_EINTERNAL;
1464                         return NULL;
1465                 }
1466         }
1467
1468         // initialize mutexes and conds
1469         pthread_mutexattr_t attr;
1470         pthread_mutexattr_init(&attr);
1471
1472         if(pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE) != 0) {
1473                 abort();
1474         }
1475
1476         pthread_mutex_init(&mesh->mutex, &attr);
1477         pthread_cond_init(&mesh->cond, NULL);
1478
1479         pthread_mutex_init(&mesh->discovery_mutex, NULL);
1480         pthread_cond_init(&mesh->discovery_cond, NULL);
1481
1482         pthread_cond_init(&mesh->adns_cond, NULL);
1483
1484         mesh->threadstarted = false;
1485         event_loop_init(&mesh->loop);
1486         mesh->loop.data = mesh;
1487
1488         meshlink_queue_init(&mesh->outpacketqueue);
1489
1490         // Atomically lock the configuration directory.
1491         if(!main_config_lock(mesh)) {
1492                 meshlink_close(mesh);
1493                 return NULL;
1494         }
1495
1496         // If no configuration exists yet, create it.
1497
1498         if(!meshlink_confbase_exists(mesh)) {
1499                 if(!mesh->name) {
1500                         logger(NULL, MESHLINK_ERROR, "No configuration files found!\n");
1501                         meshlink_close(mesh);
1502                         meshlink_errno = MESHLINK_ESTORAGE;
1503                         return NULL;
1504                 }
1505
1506                 if(!meshlink_setup(mesh)) {
1507                         logger(NULL, MESHLINK_ERROR, "Cannot create initial configuration\n");
1508                         meshlink_close(mesh);
1509                         return NULL;
1510                 }
1511         } else {
1512                 if(!meshlink_read_config(mesh)) {
1513                         logger(NULL, MESHLINK_ERROR, "Cannot read main configuration\n");
1514                         meshlink_close(mesh);
1515                         return NULL;
1516                 }
1517         }
1518
1519 #ifdef HAVE_MINGW
1520         struct WSAData wsa_state;
1521         WSAStartup(MAKEWORD(2, 2), &wsa_state);
1522 #endif
1523
1524         // Setup up everything
1525         // TODO: we should not open listening sockets yet
1526
1527         bool success = false;
1528
1529         if(mesh->netns != -1) {
1530 #ifdef HAVE_SETNS
1531                 pthread_t thr;
1532
1533                 if(pthread_create(&thr, NULL, setup_network_in_netns_thread, mesh) == 0) {
1534                         void *retval = NULL;
1535                         success = pthread_join(thr, &retval) == 0 && retval;
1536                 }
1537
1538 #else
1539                 meshlink_errno = MESHLINK_EINTERNAL;
1540                 return NULL;
1541
1542 #endif // HAVE_SETNS
1543         } else {
1544                 success = setup_network(mesh);
1545         }
1546
1547         if(!success) {
1548                 meshlink_close(mesh);
1549                 meshlink_errno = MESHLINK_ENETWORK;
1550                 return NULL;
1551         }
1552
1553         add_local_addresses(mesh);
1554
1555         if(!node_write_config(mesh, mesh->self)) {
1556                 logger(NULL, MESHLINK_ERROR, "Cannot update configuration\n");
1557                 return NULL;
1558         }
1559
1560         idle_set(&mesh->loop, idle, mesh);
1561
1562         logger(NULL, MESHLINK_DEBUG, "meshlink_open returning\n");
1563         return mesh;
1564 }
1565
1566 meshlink_submesh_t *meshlink_submesh_open(meshlink_handle_t  *mesh, const char *submesh) {
1567         meshlink_submesh_t *s = NULL;
1568
1569         if(!mesh) {
1570                 logger(NULL, MESHLINK_ERROR, "No mesh handle given!\n");
1571                 meshlink_errno = MESHLINK_EINVAL;
1572                 return NULL;
1573         }
1574
1575         if(!submesh || !*submesh) {
1576                 logger(NULL, MESHLINK_ERROR, "No submesh name given!\n");
1577                 meshlink_errno = MESHLINK_EINVAL;
1578                 return NULL;
1579         }
1580
1581         //lock mesh->nodes
1582         if(pthread_mutex_lock(&mesh->mutex) != 0) {
1583                 abort();
1584         }
1585
1586         s = (meshlink_submesh_t *)create_submesh(mesh, submesh);
1587
1588         pthread_mutex_unlock(&mesh->mutex);
1589
1590         return s;
1591 }
1592
1593 static void *meshlink_main_loop(void *arg) {
1594         meshlink_handle_t *mesh = arg;
1595
1596         if(mesh->netns != -1) {
1597 #ifdef HAVE_SETNS
1598
1599                 if(setns(mesh->netns, CLONE_NEWNET) != 0) {
1600                         pthread_cond_signal(&mesh->cond);
1601                         return NULL;
1602                 }
1603
1604 #else
1605                 pthread_cond_signal(&mesh->cond);
1606                 return NULL;
1607 #endif // HAVE_SETNS
1608         }
1609
1610 #if HAVE_CATTA
1611
1612         if(mesh->discovery) {
1613                 discovery_start(mesh);
1614         }
1615
1616 #endif
1617
1618         if(pthread_mutex_lock(&mesh->mutex) != 0) {
1619                 abort();
1620         }
1621
1622         logger(mesh, MESHLINK_DEBUG, "Starting main_loop...\n");
1623         pthread_cond_broadcast(&mesh->cond);
1624         main_loop(mesh);
1625         logger(mesh, MESHLINK_DEBUG, "main_loop returned.\n");
1626
1627         pthread_mutex_unlock(&mesh->mutex);
1628
1629 #if HAVE_CATTA
1630
1631         // Stop discovery
1632         if(mesh->discovery) {
1633                 discovery_stop(mesh);
1634         }
1635
1636 #endif
1637
1638         return NULL;
1639 }
1640
1641 bool meshlink_start(meshlink_handle_t *mesh) {
1642         if(!mesh) {
1643                 meshlink_errno = MESHLINK_EINVAL;
1644                 return false;
1645         }
1646
1647         logger(mesh, MESHLINK_DEBUG, "meshlink_start called\n");
1648
1649         if(pthread_mutex_lock(&mesh->mutex) != 0) {
1650                 abort();
1651         }
1652
1653         assert(mesh->self);
1654         assert(mesh->private_key);
1655         assert(mesh->self->ecdsa);
1656         assert(!memcmp((uint8_t *)mesh->self->ecdsa + 64, (uint8_t *)mesh->private_key + 64, 32));
1657
1658         if(mesh->threadstarted) {
1659                 logger(mesh, MESHLINK_DEBUG, "thread was already running\n");
1660                 pthread_mutex_unlock(&mesh->mutex);
1661                 return true;
1662         }
1663
1664         if(mesh->listen_socket[0].tcp.fd < 0) {
1665                 logger(mesh, MESHLINK_ERROR, "Listening socket not open\n");
1666                 meshlink_errno = MESHLINK_ENETWORK;
1667                 return false;
1668         }
1669
1670         // TODO: open listening sockets first
1671
1672         //Check that a valid name is set
1673         if(!mesh->name) {
1674                 logger(mesh, MESHLINK_DEBUG, "No name given!\n");
1675                 meshlink_errno = MESHLINK_EINVAL;
1676                 pthread_mutex_unlock(&mesh->mutex);
1677                 return false;
1678         }
1679
1680         init_outgoings(mesh);
1681         init_adns(mesh);
1682
1683         // Start the main thread
1684
1685         event_loop_start(&mesh->loop);
1686
1687         // Ensure we have a decent amount of stack space. Musl's default of 80 kB is too small.
1688         pthread_attr_t attr;
1689         pthread_attr_init(&attr);
1690         pthread_attr_setstacksize(&attr, 1024 * 1024);
1691
1692         if(pthread_create(&mesh->thread, &attr, meshlink_main_loop, mesh) != 0) {
1693                 logger(mesh, MESHLINK_DEBUG, "Could not start thread: %s\n", strerror(errno));
1694                 memset(&mesh->thread, 0, sizeof(mesh)->thread);
1695                 meshlink_errno = MESHLINK_EINTERNAL;
1696                 event_loop_stop(&mesh->loop);
1697                 pthread_mutex_unlock(&mesh->mutex);
1698                 return false;
1699         }
1700
1701         pthread_cond_wait(&mesh->cond, &mesh->mutex);
1702         mesh->threadstarted = true;
1703
1704         // Ensure we are considered reachable
1705         graph(mesh);
1706
1707         pthread_mutex_unlock(&mesh->mutex);
1708         return true;
1709 }
1710
1711 void meshlink_stop(meshlink_handle_t *mesh) {
1712         if(!mesh) {
1713                 meshlink_errno = MESHLINK_EINVAL;
1714                 return;
1715         }
1716
1717         if(pthread_mutex_lock(&mesh->mutex) != 0) {
1718                 abort();
1719         }
1720
1721         logger(mesh, MESHLINK_DEBUG, "meshlink_stop called\n");
1722
1723         // Shut down the main thread
1724         event_loop_stop(&mesh->loop);
1725
1726         // Send ourselves a UDP packet to kick the event loop
1727         for(int i = 0; i < mesh->listen_sockets; i++) {
1728                 sockaddr_t sa;
1729                 socklen_t salen = sizeof(sa);
1730
1731                 if(getsockname(mesh->listen_socket[i].udp.fd, &sa.sa, &salen) == -1) {
1732                         logger(mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "getsockname", sockstrerror(sockerrno));
1733                         continue;
1734                 }
1735
1736                 if(sendto(mesh->listen_socket[i].udp.fd, "", 1, MSG_NOSIGNAL, &sa.sa, salen) == -1) {
1737                         logger(mesh, MESHLINK_ERROR, "Could not send a UDP packet to ourself: %s", sockstrerror(sockerrno));
1738                 }
1739         }
1740
1741         if(mesh->threadstarted) {
1742                 // Wait for the main thread to finish
1743                 pthread_mutex_unlock(&mesh->mutex);
1744
1745                 if(pthread_join(mesh->thread, NULL) != 0) {
1746                         abort();
1747                 }
1748
1749                 if(pthread_mutex_lock(&mesh->mutex) != 0) {
1750                         abort();
1751                 }
1752
1753                 mesh->threadstarted = false;
1754         }
1755
1756         // Close all metaconnections
1757         if(mesh->connections) {
1758                 for(list_node_t *node = mesh->connections->head, *next; node; node = next) {
1759                         next = node->next;
1760                         connection_t *c = node->data;
1761                         c->outgoing = NULL;
1762                         terminate_connection(mesh, c, false);
1763                 }
1764         }
1765
1766         exit_adns(mesh);
1767         exit_outgoings(mesh);
1768
1769         // Ensure we are considered unreachable
1770         if(mesh->nodes) {
1771                 graph(mesh);
1772         }
1773
1774         // Try to write out any changed node config files, ignore errors at this point.
1775         if(mesh->nodes) {
1776                 for splay_each(node_t, n, mesh->nodes) {
1777                         if(n->status.dirty) {
1778                                 n->status.dirty = !node_write_config(mesh, n);
1779                         }
1780                 }
1781         }
1782
1783         pthread_mutex_unlock(&mesh->mutex);
1784 }
1785
1786 void meshlink_close(meshlink_handle_t *mesh) {
1787         if(!mesh) {
1788                 meshlink_errno = MESHLINK_EINVAL;
1789                 return;
1790         }
1791
1792         // stop can be called even if mesh has not been started
1793         meshlink_stop(mesh);
1794
1795         // lock is not released after this
1796         if(pthread_mutex_lock(&mesh->mutex) != 0) {
1797                 abort();
1798         }
1799
1800         // Close and free all resources used.
1801
1802         close_network_connections(mesh);
1803
1804         logger(mesh, MESHLINK_INFO, "Terminating");
1805
1806         event_loop_exit(&mesh->loop);
1807
1808 #ifdef HAVE_MINGW
1809
1810         if(mesh->confbase) {
1811                 WSACleanup();
1812         }
1813
1814 #endif
1815
1816         ecdsa_free(mesh->invitation_key);
1817
1818         if(mesh->netns != -1) {
1819                 close(mesh->netns);
1820         }
1821
1822         for(vpn_packet_t *packet; (packet = meshlink_queue_pop(&mesh->outpacketqueue));) {
1823                 free(packet);
1824         }
1825
1826         meshlink_queue_exit(&mesh->outpacketqueue);
1827
1828         free(mesh->name);
1829         free(mesh->appname);
1830         free(mesh->confbase);
1831         free(mesh->config_key);
1832         free(mesh->external_address_url);
1833         free(mesh->packet);
1834         ecdsa_free(mesh->private_key);
1835
1836         if(mesh->invitation_addresses) {
1837                 list_delete_list(mesh->invitation_addresses);
1838         }
1839
1840         main_config_unlock(mesh);
1841
1842         pthread_mutex_unlock(&mesh->mutex);
1843         pthread_mutex_destroy(&mesh->mutex);
1844
1845         memset(mesh, 0, sizeof(*mesh));
1846
1847         free(mesh);
1848 }
1849
1850 bool meshlink_destroy(const char *confbase) {
1851         if(!confbase) {
1852                 meshlink_errno = MESHLINK_EINVAL;
1853                 return false;
1854         }
1855
1856         /* Exit early if the confbase directory itself doesn't exist */
1857         if(access(confbase, F_OK) && errno == ENOENT) {
1858                 return true;
1859         }
1860
1861         /* Take the lock the same way meshlink_open() would. */
1862         char lockfilename[PATH_MAX];
1863         snprintf(lockfilename, sizeof(lockfilename), "%s" SLASH "meshlink.lock", confbase);
1864
1865         FILE *lockfile = fopen(lockfilename, "w+");
1866
1867         if(!lockfile) {
1868                 logger(NULL, MESHLINK_ERROR, "Could not open lock file %s: %s", lockfilename, strerror(errno));
1869                 meshlink_errno = MESHLINK_ESTORAGE;
1870                 return false;
1871         }
1872
1873 #ifdef FD_CLOEXEC
1874         fcntl(fileno(lockfile), F_SETFD, FD_CLOEXEC);
1875 #endif
1876
1877 #ifdef HAVE_MINGW
1878         // TODO: use _locking()?
1879 #else
1880
1881         if(flock(fileno(lockfile), LOCK_EX | LOCK_NB) != 0) {
1882                 logger(NULL, MESHLINK_ERROR, "Configuration directory %s still in use\n", lockfilename);
1883                 fclose(lockfile);
1884                 meshlink_errno = MESHLINK_EBUSY;
1885                 return false;
1886         }
1887
1888 #endif
1889
1890         if(!config_destroy(confbase, "current") || !config_destroy(confbase, "new") || !config_destroy(confbase, "old")) {
1891                 logger(NULL, MESHLINK_ERROR, "Cannot remove sub-directories in %s: %s\n", confbase, strerror(errno));
1892                 return false;
1893         }
1894
1895         if(unlink(lockfilename)) {
1896                 logger(NULL, MESHLINK_ERROR, "Cannot remove lock file %s: %s\n", lockfilename, strerror(errno));
1897                 fclose(lockfile);
1898                 meshlink_errno = MESHLINK_ESTORAGE;
1899                 return false;
1900         }
1901
1902         fclose(lockfile);
1903
1904         if(!sync_path(confbase)) {
1905                 logger(NULL, MESHLINK_ERROR, "Cannot sync directory %s: %s\n", confbase, strerror(errno));
1906                 meshlink_errno = MESHLINK_ESTORAGE;
1907                 return false;
1908         }
1909
1910         return true;
1911 }
1912
1913 void meshlink_set_receive_cb(meshlink_handle_t *mesh, meshlink_receive_cb_t cb) {
1914         if(!mesh) {
1915                 meshlink_errno = MESHLINK_EINVAL;
1916                 return;
1917         }
1918
1919         if(pthread_mutex_lock(&mesh->mutex) != 0) {
1920                 abort();
1921         }
1922
1923         mesh->receive_cb = cb;
1924         pthread_mutex_unlock(&mesh->mutex);
1925 }
1926
1927 void meshlink_set_connection_try_cb(meshlink_handle_t *mesh, meshlink_connection_try_cb_t cb) {
1928         if(!mesh) {
1929                 meshlink_errno = MESHLINK_EINVAL;
1930                 return;
1931         }
1932
1933         if(pthread_mutex_lock(&mesh->mutex) != 0) {
1934                 abort();
1935         }
1936
1937         mesh->connection_try_cb = cb;
1938         pthread_mutex_unlock(&mesh->mutex);
1939 }
1940
1941 void meshlink_set_node_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
1942         if(!mesh) {
1943                 meshlink_errno = MESHLINK_EINVAL;
1944                 return;
1945         }
1946
1947         if(pthread_mutex_lock(&mesh->mutex) != 0) {
1948                 abort();
1949         }
1950
1951         mesh->node_status_cb = cb;
1952         pthread_mutex_unlock(&mesh->mutex);
1953 }
1954
1955 void meshlink_set_node_pmtu_cb(meshlink_handle_t *mesh, meshlink_node_pmtu_cb_t cb) {
1956         if(!mesh) {
1957                 meshlink_errno = MESHLINK_EINVAL;
1958                 return;
1959         }
1960
1961         if(pthread_mutex_lock(&mesh->mutex) != 0) {
1962                 abort();
1963         }
1964
1965         mesh->node_pmtu_cb = cb;
1966         pthread_mutex_unlock(&mesh->mutex);
1967 }
1968
1969 void meshlink_set_node_duplicate_cb(meshlink_handle_t *mesh, meshlink_node_duplicate_cb_t cb) {
1970         if(!mesh) {
1971                 meshlink_errno = MESHLINK_EINVAL;
1972                 return;
1973         }
1974
1975         if(pthread_mutex_lock(&mesh->mutex) != 0) {
1976                 abort();
1977         }
1978
1979         mesh->node_duplicate_cb = cb;
1980         pthread_mutex_unlock(&mesh->mutex);
1981 }
1982
1983 void meshlink_set_log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, meshlink_log_cb_t cb) {
1984         if(mesh) {
1985                 if(pthread_mutex_lock(&mesh->mutex) != 0) {
1986                         abort();
1987                 }
1988
1989                 mesh->log_cb = cb;
1990                 mesh->log_level = cb ? level : 0;
1991                 pthread_mutex_unlock(&mesh->mutex);
1992         } else {
1993                 global_log_cb = cb;
1994                 global_log_level = cb ? level : 0;
1995         }
1996 }
1997
1998 void meshlink_set_error_cb(struct meshlink_handle *mesh, meshlink_error_cb_t cb) {
1999         if(!mesh) {
2000                 meshlink_errno = MESHLINK_EINVAL;
2001                 return;
2002         }
2003
2004         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2005                 abort();
2006         }
2007
2008         mesh->error_cb = cb;
2009         pthread_mutex_unlock(&mesh->mutex);
2010 }
2011
2012 static bool prepare_packet(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len, vpn_packet_t *packet) {
2013         meshlink_packethdr_t *hdr;
2014
2015         if(len > MAXSIZE - sizeof(*hdr)) {
2016                 meshlink_errno = MESHLINK_EINVAL;
2017                 return false;
2018         }
2019
2020         node_t *n = (node_t *)destination;
2021
2022         if(n->status.blacklisted) {
2023                 logger(mesh, MESHLINK_ERROR, "Node %s blacklisted, dropping packet\n", n->name);
2024                 meshlink_errno = MESHLINK_EBLACKLISTED;
2025                 return false;
2026         }
2027
2028         // Prepare the packet
2029         packet->probe = false;
2030         packet->tcp = false;
2031         packet->len = len + sizeof(*hdr);
2032
2033         hdr = (meshlink_packethdr_t *)packet->data;
2034         memset(hdr, 0, sizeof(*hdr));
2035         // leave the last byte as 0 to make sure strings are always
2036         // null-terminated if they are longer than the buffer
2037         strncpy((char *)hdr->destination, destination->name, sizeof(hdr->destination) - 1);
2038         strncpy((char *)hdr->source, mesh->self->name, sizeof(hdr->source) - 1);
2039
2040         memcpy(packet->data + sizeof(*hdr), data, len);
2041
2042         return true;
2043 }
2044
2045 static bool meshlink_send_immediate(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len) {
2046         assert(mesh);
2047         assert(destination);
2048         assert(data);
2049         assert(len);
2050
2051         // Prepare the packet
2052         if(!prepare_packet(mesh, destination, data, len, mesh->packet)) {
2053                 return false;
2054         }
2055
2056         // Send it immediately
2057         route(mesh, mesh->self, mesh->packet);
2058
2059         return true;
2060 }
2061
2062 bool meshlink_send(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len) {
2063         // Validate arguments
2064         if(!mesh || !destination) {
2065                 meshlink_errno = MESHLINK_EINVAL;
2066                 return false;
2067         }
2068
2069         if(!len) {
2070                 return true;
2071         }
2072
2073         if(!data) {
2074                 meshlink_errno = MESHLINK_EINVAL;
2075                 return false;
2076         }
2077
2078         // Prepare the packet
2079         vpn_packet_t *packet = malloc(sizeof(*packet));
2080
2081         if(!packet) {
2082                 meshlink_errno = MESHLINK_ENOMEM;
2083                 return false;
2084         }
2085
2086         if(!prepare_packet(mesh, destination, data, len, packet)) {
2087                 free(packet);
2088                 return false;
2089         }
2090
2091         // Queue it
2092         if(!meshlink_queue_push(&mesh->outpacketqueue, packet)) {
2093                 free(packet);
2094                 meshlink_errno = MESHLINK_ENOMEM;
2095                 return false;
2096         }
2097
2098         logger(mesh, MESHLINK_DEBUG, "Adding packet of %zu bytes to packet queue", len);
2099
2100         // Notify event loop
2101         signal_trigger(&mesh->loop, &mesh->datafromapp);
2102
2103         return true;
2104 }
2105
2106 void meshlink_send_from_queue(event_loop_t *loop, void *data) {
2107         (void)loop;
2108         meshlink_handle_t *mesh = data;
2109
2110         logger(mesh, MESHLINK_DEBUG, "Flushing the packet queue");
2111
2112         for(vpn_packet_t *packet; (packet = meshlink_queue_pop(&mesh->outpacketqueue));) {
2113                 logger(mesh, MESHLINK_DEBUG, "Removing packet of %d bytes from packet queue", packet->len);
2114                 mesh->self->in_packets++;
2115                 mesh->self->in_bytes += packet->len;
2116                 route(mesh, mesh->self, packet);
2117                 free(packet);
2118         }
2119 }
2120
2121 ssize_t meshlink_get_pmtu(meshlink_handle_t *mesh, meshlink_node_t *destination) {
2122         if(!mesh || !destination) {
2123                 meshlink_errno = MESHLINK_EINVAL;
2124                 return -1;
2125         }
2126
2127         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2128                 abort();
2129         }
2130
2131         node_t *n = (node_t *)destination;
2132
2133         if(!n->status.reachable) {
2134                 pthread_mutex_unlock(&mesh->mutex);
2135                 return 0;
2136
2137         } else if(n->mtuprobes > 30 && n->minmtu) {
2138                 pthread_mutex_unlock(&mesh->mutex);
2139                 return n->minmtu;
2140         } else {
2141                 pthread_mutex_unlock(&mesh->mutex);
2142                 return MTU;
2143         }
2144 }
2145
2146 char *meshlink_get_fingerprint(meshlink_handle_t *mesh, meshlink_node_t *node) {
2147         if(!mesh || !node) {
2148                 meshlink_errno = MESHLINK_EINVAL;
2149                 return NULL;
2150         }
2151
2152         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2153                 abort();
2154         }
2155
2156         node_t *n = (node_t *)node;
2157
2158         if(!node_read_public_key(mesh, n) || !n->ecdsa) {
2159                 meshlink_errno = MESHLINK_EINTERNAL;
2160                 pthread_mutex_unlock(&mesh->mutex);
2161                 return false;
2162         }
2163
2164         char *fingerprint = ecdsa_get_base64_public_key(n->ecdsa);
2165
2166         if(!fingerprint) {
2167                 meshlink_errno = MESHLINK_EINTERNAL;
2168         }
2169
2170         pthread_mutex_unlock(&mesh->mutex);
2171         return fingerprint;
2172 }
2173
2174 meshlink_node_t *meshlink_get_self(meshlink_handle_t *mesh) {
2175         if(!mesh) {
2176                 meshlink_errno = MESHLINK_EINVAL;
2177                 return NULL;
2178         }
2179
2180         return (meshlink_node_t *)mesh->self;
2181 }
2182
2183 meshlink_node_t *meshlink_get_node(meshlink_handle_t *mesh, const char *name) {
2184         if(!mesh || !name) {
2185                 meshlink_errno = MESHLINK_EINVAL;
2186                 return NULL;
2187         }
2188
2189         node_t *n = NULL;
2190
2191         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2192                 abort();
2193         }
2194
2195         n = lookup_node(mesh, (char *)name); // TODO: make lookup_node() use const
2196         pthread_mutex_unlock(&mesh->mutex);
2197
2198         if(!n) {
2199                 meshlink_errno = MESHLINK_ENOENT;
2200         }
2201
2202         return (meshlink_node_t *)n;
2203 }
2204
2205 meshlink_submesh_t *meshlink_get_submesh(meshlink_handle_t *mesh, const char *name) {
2206         if(!mesh || !name) {
2207                 meshlink_errno = MESHLINK_EINVAL;
2208                 return NULL;
2209         }
2210
2211         meshlink_submesh_t *submesh = NULL;
2212
2213         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2214                 abort();
2215         }
2216
2217         submesh = (meshlink_submesh_t *)lookup_submesh(mesh, name);
2218         pthread_mutex_unlock(&mesh->mutex);
2219
2220         if(!submesh) {
2221                 meshlink_errno = MESHLINK_ENOENT;
2222         }
2223
2224         return submesh;
2225 }
2226
2227 meshlink_node_t **meshlink_get_all_nodes(meshlink_handle_t *mesh, meshlink_node_t **nodes, size_t *nmemb) {
2228         if(!mesh || !nmemb || (*nmemb && !nodes)) {
2229                 meshlink_errno = MESHLINK_EINVAL;
2230                 return NULL;
2231         }
2232
2233         meshlink_node_t **result;
2234
2235         //lock mesh->nodes
2236         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2237                 abort();
2238         }
2239
2240         *nmemb = mesh->nodes->count;
2241         result = realloc(nodes, *nmemb * sizeof(*nodes));
2242
2243         if(result) {
2244                 meshlink_node_t **p = result;
2245
2246                 for splay_each(node_t, n, mesh->nodes) {
2247                         *p++ = (meshlink_node_t *)n;
2248                 }
2249         } else {
2250                 *nmemb = 0;
2251                 free(nodes);
2252                 meshlink_errno = MESHLINK_ENOMEM;
2253         }
2254
2255         pthread_mutex_unlock(&mesh->mutex);
2256
2257         return result;
2258 }
2259
2260 static meshlink_node_t **meshlink_get_all_nodes_by_condition(meshlink_handle_t *mesh, const void *condition, meshlink_node_t **nodes, size_t *nmemb, search_node_by_condition_t search_node) {
2261         meshlink_node_t **result;
2262
2263         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2264                 abort();
2265         }
2266
2267         *nmemb = 0;
2268
2269         for splay_each(node_t, n, mesh->nodes) {
2270                 if(search_node(n, condition)) {
2271                         ++*nmemb;
2272                 }
2273         }
2274
2275         if(*nmemb == 0) {
2276                 free(nodes);
2277                 pthread_mutex_unlock(&mesh->mutex);
2278                 return NULL;
2279         }
2280
2281         result = realloc(nodes, *nmemb * sizeof(*nodes));
2282
2283         if(result) {
2284                 meshlink_node_t **p = result;
2285
2286                 for splay_each(node_t, n, mesh->nodes) {
2287                         if(search_node(n, condition)) {
2288                                 *p++ = (meshlink_node_t *)n;
2289                         }
2290                 }
2291         } else {
2292                 *nmemb = 0;
2293                 free(nodes);
2294                 meshlink_errno = MESHLINK_ENOMEM;
2295         }
2296
2297         pthread_mutex_unlock(&mesh->mutex);
2298
2299         return result;
2300 }
2301
2302 static bool search_node_by_dev_class(const node_t *node, const void *condition) {
2303         dev_class_t *devclass = (dev_class_t *)condition;
2304
2305         if(*devclass == (dev_class_t)node->devclass) {
2306                 return true;
2307         }
2308
2309         return false;
2310 }
2311
2312 static bool search_node_by_submesh(const node_t *node, const void *condition) {
2313         if(condition == node->submesh) {
2314                 return true;
2315         }
2316
2317         return false;
2318 }
2319
2320 struct time_range {
2321         time_t start;
2322         time_t end;
2323 };
2324
2325 static bool search_node_by_last_reachable(const node_t *node, const void *condition) {
2326         const struct time_range *range = condition;
2327         time_t start = node->last_reachable;
2328         time_t end = node->last_unreachable;
2329
2330         if(end < start) {
2331                 end = time(NULL);
2332
2333                 if(end < start) {
2334                         start = end;
2335                 }
2336         }
2337
2338         if(range->end >= range->start) {
2339                 return start <= range->end && end >= range->start;
2340         } else {
2341                 return start > range->start || end < range->end;
2342         }
2343 }
2344
2345 meshlink_node_t **meshlink_get_all_nodes_by_dev_class(meshlink_handle_t *mesh, dev_class_t devclass, meshlink_node_t **nodes, size_t *nmemb) {
2346         if(!mesh || devclass < 0 || devclass >= DEV_CLASS_COUNT || !nmemb) {
2347                 meshlink_errno = MESHLINK_EINVAL;
2348                 return NULL;
2349         }
2350
2351         return meshlink_get_all_nodes_by_condition(mesh, &devclass, nodes, nmemb, search_node_by_dev_class);
2352 }
2353
2354 meshlink_node_t **meshlink_get_all_nodes_by_submesh(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, meshlink_node_t **nodes, size_t *nmemb) {
2355         if(!mesh || !submesh || !nmemb) {
2356                 meshlink_errno = MESHLINK_EINVAL;
2357                 return NULL;
2358         }
2359
2360         return meshlink_get_all_nodes_by_condition(mesh, submesh, nodes, nmemb, search_node_by_submesh);
2361 }
2362
2363 meshlink_node_t **meshlink_get_all_nodes_by_last_reachable(meshlink_handle_t *mesh, time_t start, time_t end, meshlink_node_t **nodes, size_t *nmemb) {
2364         if(!mesh || !nmemb) {
2365                 meshlink_errno = MESHLINK_EINVAL;
2366                 return NULL;
2367         }
2368
2369         struct time_range range = {start, end};
2370
2371         return meshlink_get_all_nodes_by_condition(mesh, &range, nodes, nmemb, search_node_by_last_reachable);
2372 }
2373
2374 dev_class_t meshlink_get_node_dev_class(meshlink_handle_t *mesh, meshlink_node_t *node) {
2375         if(!mesh || !node) {
2376                 meshlink_errno = MESHLINK_EINVAL;
2377                 return -1;
2378         }
2379
2380         dev_class_t devclass;
2381
2382         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2383                 abort();
2384         }
2385
2386         devclass = ((node_t *)node)->devclass;
2387
2388         pthread_mutex_unlock(&mesh->mutex);
2389
2390         return devclass;
2391 }
2392
2393 meshlink_submesh_t *meshlink_get_node_submesh(meshlink_handle_t *mesh, meshlink_node_t *node) {
2394         if(!mesh || !node) {
2395                 meshlink_errno = MESHLINK_EINVAL;
2396                 return NULL;
2397         }
2398
2399         node_t *n = (node_t *)node;
2400
2401         meshlink_submesh_t *s;
2402
2403         s = (meshlink_submesh_t *)n->submesh;
2404
2405         return s;
2406 }
2407
2408 bool meshlink_get_node_reachability(struct meshlink_handle *mesh, struct meshlink_node *node, time_t *last_reachable, time_t *last_unreachable) {
2409         if(!mesh || !node) {
2410                 meshlink_errno = MESHLINK_EINVAL;
2411                 return NULL;
2412         }
2413
2414         node_t *n = (node_t *)node;
2415         bool reachable;
2416
2417         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2418                 abort();
2419         }
2420
2421         reachable = n->status.reachable && !n->status.blacklisted;
2422
2423         if(last_reachable) {
2424                 *last_reachable = n->last_reachable;
2425         }
2426
2427         if(last_unreachable) {
2428                 *last_unreachable = n->last_unreachable;
2429         }
2430
2431         pthread_mutex_unlock(&mesh->mutex);
2432
2433         return reachable;
2434 }
2435
2436 bool meshlink_sign(meshlink_handle_t *mesh, const void *data, size_t len, void *signature, size_t *siglen) {
2437         if(!mesh || !data || !len || !signature || !siglen) {
2438                 meshlink_errno = MESHLINK_EINVAL;
2439                 return false;
2440         }
2441
2442         if(*siglen < MESHLINK_SIGLEN) {
2443                 meshlink_errno = MESHLINK_EINVAL;
2444                 return false;
2445         }
2446
2447         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2448                 abort();
2449         }
2450
2451         if(!ecdsa_sign(mesh->private_key, data, len, signature)) {
2452                 meshlink_errno = MESHLINK_EINTERNAL;
2453                 pthread_mutex_unlock(&mesh->mutex);
2454                 return false;
2455         }
2456
2457         *siglen = MESHLINK_SIGLEN;
2458         pthread_mutex_unlock(&mesh->mutex);
2459         return true;
2460 }
2461
2462 bool meshlink_verify(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len, const void *signature, size_t siglen) {
2463         if(!mesh || !source || !data || !len || !signature) {
2464                 meshlink_errno = MESHLINK_EINVAL;
2465                 return false;
2466         }
2467
2468         if(siglen != MESHLINK_SIGLEN) {
2469                 meshlink_errno = MESHLINK_EINVAL;
2470                 return false;
2471         }
2472
2473         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2474                 abort();
2475         }
2476
2477         bool rval = false;
2478
2479         struct node_t *n = (struct node_t *)source;
2480
2481         if(!node_read_public_key(mesh, n)) {
2482                 meshlink_errno = MESHLINK_EINTERNAL;
2483                 rval = false;
2484         } else {
2485                 rval = ecdsa_verify(((struct node_t *)source)->ecdsa, data, len, signature);
2486         }
2487
2488         pthread_mutex_unlock(&mesh->mutex);
2489         return rval;
2490 }
2491
2492 static bool refresh_invitation_key(meshlink_handle_t *mesh) {
2493         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2494                 abort();
2495         }
2496
2497         size_t count = invitation_purge_old(mesh, time(NULL) - mesh->invitation_timeout);
2498
2499         if(!count) {
2500                 // TODO: Update invitation key if necessary?
2501         }
2502
2503         pthread_mutex_unlock(&mesh->mutex);
2504
2505         return mesh->invitation_key;
2506 }
2507
2508 bool meshlink_set_canonical_address(meshlink_handle_t *mesh, meshlink_node_t *node, const char *address, const char *port) {
2509         if(!mesh || !node || !address) {
2510                 meshlink_errno = MESHLINK_EINVAL;
2511                 return false;
2512         }
2513
2514         if(!is_valid_hostname(address)) {
2515                 logger(mesh, MESHLINK_DEBUG, "Invalid character in address: %s", address);
2516                 meshlink_errno = MESHLINK_EINVAL;
2517                 return false;
2518         }
2519
2520         if((node_t *)node != mesh->self && !port) {
2521                 logger(mesh, MESHLINK_DEBUG, "Missing port number!");
2522                 meshlink_errno = MESHLINK_EINVAL;
2523                 return false;
2524
2525         }
2526
2527         if(port && !is_valid_port(port)) {
2528                 logger(mesh, MESHLINK_DEBUG, "Invalid character in port: %s", address);
2529                 meshlink_errno = MESHLINK_EINVAL;
2530                 return false;
2531         }
2532
2533         char *canonical_address;
2534
2535         if(port) {
2536                 xasprintf(&canonical_address, "%s %s", address, port);
2537         } else {
2538                 canonical_address = xstrdup(address);
2539         }
2540
2541         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2542                 abort();
2543         }
2544
2545         node_t *n = (node_t *)node;
2546         free(n->canonical_address);
2547         n->canonical_address = canonical_address;
2548
2549         if(!node_write_config(mesh, n)) {
2550                 pthread_mutex_unlock(&mesh->mutex);
2551                 return false;
2552         }
2553
2554         pthread_mutex_unlock(&mesh->mutex);
2555
2556         return config_sync(mesh, "current");
2557 }
2558
2559 bool meshlink_add_invitation_address(struct meshlink_handle *mesh, const char *address, const char *port) {
2560         if(!mesh || !address) {
2561                 meshlink_errno = MESHLINK_EINVAL;
2562                 return false;
2563         }
2564
2565         if(!is_valid_hostname(address)) {
2566                 logger(mesh, MESHLINK_DEBUG, "Invalid character in address: %s\n", address);
2567                 meshlink_errno = MESHLINK_EINVAL;
2568                 return false;
2569         }
2570
2571         if(port && !is_valid_port(port)) {
2572                 logger(mesh, MESHLINK_DEBUG, "Invalid character in port: %s\n", address);
2573                 meshlink_errno = MESHLINK_EINVAL;
2574                 return false;
2575         }
2576
2577         char *combo;
2578
2579         if(port) {
2580                 xasprintf(&combo, "%s/%s", address, port);
2581         } else {
2582                 combo = xstrdup(address);
2583         }
2584
2585         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2586                 abort();
2587         }
2588
2589         if(!mesh->invitation_addresses) {
2590                 mesh->invitation_addresses = list_alloc((list_action_t)free);
2591         }
2592
2593         list_insert_tail(mesh->invitation_addresses, combo);
2594         pthread_mutex_unlock(&mesh->mutex);
2595
2596         return true;
2597 }
2598
2599 void meshlink_clear_invitation_addresses(struct meshlink_handle *mesh) {
2600         if(!mesh) {
2601                 meshlink_errno = MESHLINK_EINVAL;
2602                 return;
2603         }
2604
2605         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2606                 abort();
2607         }
2608
2609         if(mesh->invitation_addresses) {
2610                 list_delete_list(mesh->invitation_addresses);
2611                 mesh->invitation_addresses = NULL;
2612         }
2613
2614         pthread_mutex_unlock(&mesh->mutex);
2615 }
2616
2617 bool meshlink_add_address(meshlink_handle_t *mesh, const char *address) {
2618         return meshlink_set_canonical_address(mesh, (meshlink_node_t *)mesh->self, address, NULL);
2619 }
2620
2621 bool meshlink_add_external_address(meshlink_handle_t *mesh) {
2622         if(!mesh) {
2623                 meshlink_errno = MESHLINK_EINVAL;
2624                 return false;
2625         }
2626
2627         char *address = meshlink_get_external_address(mesh);
2628
2629         if(!address) {
2630                 return false;
2631         }
2632
2633         bool rval = meshlink_set_canonical_address(mesh, (meshlink_node_t *)mesh->self, address, NULL);
2634         free(address);
2635
2636         return rval;
2637 }
2638
2639 int meshlink_get_port(meshlink_handle_t *mesh) {
2640         if(!mesh) {
2641                 meshlink_errno = MESHLINK_EINVAL;
2642                 return -1;
2643         }
2644
2645         if(!mesh->myport) {
2646                 meshlink_errno = MESHLINK_EINTERNAL;
2647                 return -1;
2648         }
2649
2650         int port;
2651
2652         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2653                 abort();
2654         }
2655
2656         port = atoi(mesh->myport);
2657         pthread_mutex_unlock(&mesh->mutex);
2658
2659         return port;
2660 }
2661
2662 bool meshlink_set_port(meshlink_handle_t *mesh, int port) {
2663         if(!mesh || port < 0 || port >= 65536 || mesh->threadstarted) {
2664                 meshlink_errno = MESHLINK_EINVAL;
2665                 return false;
2666         }
2667
2668         if(mesh->myport && port == atoi(mesh->myport)) {
2669                 return true;
2670         }
2671
2672         if(!try_bind(mesh, port)) {
2673                 meshlink_errno = MESHLINK_ENETWORK;
2674                 return false;
2675         }
2676
2677         devtool_trybind_probe();
2678
2679         bool rval = false;
2680
2681         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2682                 abort();
2683         }
2684
2685         if(mesh->threadstarted) {
2686                 meshlink_errno = MESHLINK_EINVAL;
2687                 goto done;
2688         }
2689
2690         free(mesh->myport);
2691         xasprintf(&mesh->myport, "%d", port);
2692
2693         /* Close down the network. This also deletes mesh->self. */
2694         close_network_connections(mesh);
2695
2696         /* Recreate mesh->self. */
2697         mesh->self = new_node();
2698         mesh->self->name = xstrdup(mesh->name);
2699         mesh->self->devclass = mesh->devclass;
2700         mesh->self->session_id = mesh->session_id;
2701         xasprintf(&mesh->myport, "%d", port);
2702
2703         if(!node_read_public_key(mesh, mesh->self)) {
2704                 logger(NULL, MESHLINK_ERROR, "Could not read our host configuration file!");
2705                 meshlink_errno = MESHLINK_ESTORAGE;
2706                 free_node(mesh->self);
2707                 mesh->self = NULL;
2708                 goto done;
2709         } else if(!setup_network(mesh)) {
2710                 meshlink_errno = MESHLINK_ENETWORK;
2711                 goto done;
2712         }
2713
2714         /* Rebuild our own list of recent addresses */
2715         memset(mesh->self->recent, 0, sizeof(mesh->self->recent));
2716         add_local_addresses(mesh);
2717
2718         /* Write meshlink.conf with the updated port number */
2719         write_main_config_files(mesh);
2720
2721         rval = config_sync(mesh, "current");
2722
2723 done:
2724         pthread_mutex_unlock(&mesh->mutex);
2725
2726         return rval && meshlink_get_port(mesh) == port;
2727 }
2728
2729 void meshlink_set_invitation_timeout(meshlink_handle_t *mesh, int timeout) {
2730         mesh->invitation_timeout = timeout;
2731 }
2732
2733 char *meshlink_invite_ex(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, const char *name, uint32_t flags) {
2734         meshlink_submesh_t *s = NULL;
2735
2736         if(!mesh) {
2737                 meshlink_errno = MESHLINK_EINVAL;
2738                 return NULL;
2739         }
2740
2741         if(submesh) {
2742                 s = (meshlink_submesh_t *)lookup_submesh(mesh, submesh->name);
2743
2744                 if(s != submesh) {
2745                         logger(mesh, MESHLINK_DEBUG, "Invalid SubMesh Handle.\n");
2746                         meshlink_errno = MESHLINK_EINVAL;
2747                         return NULL;
2748                 }
2749         } else {
2750                 s = (meshlink_submesh_t *)mesh->self->submesh;
2751         }
2752
2753         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2754                 abort();
2755         }
2756
2757         // Check validity of the new node's name
2758         if(!check_id(name)) {
2759                 logger(mesh, MESHLINK_ERROR, "Invalid name for node.\n");
2760                 meshlink_errno = MESHLINK_EINVAL;
2761                 pthread_mutex_unlock(&mesh->mutex);
2762                 return NULL;
2763         }
2764
2765         // Ensure no host configuration file with that name exists
2766         if(config_exists(mesh, "current", name)) {
2767                 logger(mesh, MESHLINK_ERROR, "A host config file for %s already exists!\n", name);
2768                 meshlink_errno = MESHLINK_EEXIST;
2769                 pthread_mutex_unlock(&mesh->mutex);
2770                 return NULL;
2771         }
2772
2773         // Ensure no other nodes know about this name
2774         if(lookup_node(mesh, name)) {
2775                 logger(mesh, MESHLINK_ERROR, "A node with name %s is already known!\n", name);
2776                 meshlink_errno = MESHLINK_EEXIST;
2777                 pthread_mutex_unlock(&mesh->mutex);
2778                 return NULL;
2779         }
2780
2781         // Get the local address
2782         char *address = get_my_hostname(mesh, flags);
2783
2784         if(!address) {
2785                 logger(mesh, MESHLINK_ERROR, "No Address known for ourselves!\n");
2786                 meshlink_errno = MESHLINK_ERESOLV;
2787                 pthread_mutex_unlock(&mesh->mutex);
2788                 return NULL;
2789         }
2790
2791         if(!refresh_invitation_key(mesh)) {
2792                 meshlink_errno = MESHLINK_EINTERNAL;
2793                 pthread_mutex_unlock(&mesh->mutex);
2794                 return NULL;
2795         }
2796
2797         // If we changed our own host config file, write it out now
2798         if(mesh->self->status.dirty) {
2799                 if(!node_write_config(mesh, mesh->self)) {
2800                         logger(mesh, MESHLINK_ERROR, "Could not write our own host config file!\n");
2801                         pthread_mutex_unlock(&mesh->mutex);
2802                         return NULL;
2803                 }
2804         }
2805
2806         char hash[64];
2807
2808         // Create a hash of the key.
2809         char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
2810         sha512(fingerprint, strlen(fingerprint), hash);
2811         b64encode_urlsafe(hash, hash, 18);
2812
2813         // Create a random cookie for this invitation.
2814         char cookie[25];
2815         randomize(cookie, 18);
2816
2817         // Create a filename that doesn't reveal the cookie itself
2818         char buf[18 + strlen(fingerprint)];
2819         char cookiehash[64];
2820         memcpy(buf, cookie, 18);
2821         memcpy(buf + 18, fingerprint, sizeof(buf) - 18);
2822         sha512(buf, sizeof(buf), cookiehash);
2823         b64encode_urlsafe(cookiehash, cookiehash, 18);
2824
2825         b64encode_urlsafe(cookie, cookie, 18);
2826
2827         free(fingerprint);
2828
2829         /* Construct the invitation file */
2830         uint8_t outbuf[4096];
2831         packmsg_output_t inv = {outbuf, sizeof(outbuf)};
2832
2833         packmsg_add_uint32(&inv, MESHLINK_INVITATION_VERSION);
2834         packmsg_add_str(&inv, name);
2835         packmsg_add_str(&inv, s ? s->name : CORE_MESH);
2836         packmsg_add_int32(&inv, DEV_CLASS_UNKNOWN); /* TODO: allow this to be set by inviter? */
2837
2838         /* TODO: Add several host config files to bootstrap connections.
2839          * Note: make sure we only add config files of nodes that are in the core mesh or the same submesh,
2840          * and are not blacklisted.
2841          */
2842         config_t configs[5];
2843         memset(configs, 0, sizeof(configs));
2844         int count = 0;
2845
2846         if(config_read(mesh, "current", mesh->self->name, &configs[count], mesh->config_key)) {
2847                 count++;
2848         }
2849
2850         /* Append host config files to the invitation file */
2851         packmsg_add_array(&inv, count);
2852
2853         for(int i = 0; i < count; i++) {
2854                 packmsg_add_bin(&inv, configs[i].buf, configs[i].len);
2855                 config_free(&configs[i]);
2856         }
2857
2858         config_t config = {outbuf, packmsg_output_size(&inv, outbuf)};
2859
2860         if(!invitation_write(mesh, "current", cookiehash, &config, mesh->config_key)) {
2861                 logger(mesh, MESHLINK_DEBUG, "Could not create invitation file %s: %s\n", cookiehash, strerror(errno));
2862                 meshlink_errno = MESHLINK_ESTORAGE;
2863                 pthread_mutex_unlock(&mesh->mutex);
2864                 return NULL;
2865         }
2866
2867         // Create an URL from the local address, key hash and cookie
2868         char *url;
2869         xasprintf(&url, "%s/%s%s", address, hash, cookie);
2870         free(address);
2871
2872         pthread_mutex_unlock(&mesh->mutex);
2873         return url;
2874 }
2875
2876 char *meshlink_invite(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, const char *name) {
2877         return meshlink_invite_ex(mesh, submesh, name, 0);
2878 }
2879
2880 bool meshlink_join(meshlink_handle_t *mesh, const char *invitation) {
2881         if(!mesh || !invitation) {
2882                 meshlink_errno = MESHLINK_EINVAL;
2883                 return false;
2884         }
2885
2886         join_state_t state = {
2887                 .mesh = mesh,
2888                 .sock = -1,
2889         };
2890
2891         ecdsa_t *key = NULL;
2892         ecdsa_t *hiskey = NULL;
2893
2894         //TODO: think of a better name for this variable, or of a different way to tokenize the invitation URL.
2895         char copy[strlen(invitation) + 1];
2896
2897         if(pthread_mutex_lock(&mesh->mutex) != 0) {
2898                 abort();
2899         }
2900
2901         //Before doing meshlink_join make sure we are not connected to another mesh
2902         if(mesh->threadstarted) {
2903                 logger(mesh, MESHLINK_ERROR, "Cannot join while started\n");
2904                 meshlink_errno = MESHLINK_EINVAL;
2905                 goto exit;
2906         }
2907
2908         // Refuse to join a mesh if we are already part of one. We are part of one if we know at least one other node.
2909         if(mesh->nodes->count > 1) {
2910                 logger(mesh, MESHLINK_ERROR, "Already part of an existing mesh\n");
2911                 meshlink_errno = MESHLINK_EINVAL;
2912                 goto exit;
2913         }
2914
2915         strcpy(copy, invitation);
2916
2917         // Split the invitation URL into a list of hostname/port tuples, a key hash and a cookie.
2918
2919         char *slash = strchr(copy, '/');
2920
2921         if(!slash) {
2922                 goto invalid;
2923         }
2924
2925         *slash++ = 0;
2926
2927         if(strlen(slash) != 48) {
2928                 goto invalid;
2929         }
2930
2931         char *address = copy;
2932         char *port = NULL;
2933
2934         if(!b64decode(slash, state.hash, 18) || !b64decode(slash + 24, state.cookie, 18)) {
2935                 goto invalid;
2936         }
2937
2938         if(mesh->inviter_commits_first) {
2939                 memcpy(state.cookie + 18, ecdsa_get_public_key(mesh->private_key), 32);
2940         }
2941
2942         // Generate a throw-away key for the invitation.
2943         key = ecdsa_generate();
2944
2945         if(!key) {
2946                 meshlink_errno = MESHLINK_EINTERNAL;
2947                 goto exit;
2948         }
2949
2950         char *b64key = ecdsa_get_base64_public_key(key);
2951         char *comma;
2952
2953         while(address && *address) {
2954                 // We allow commas in the address part to support multiple addresses in one invitation URL.
2955                 comma = strchr(address, ',');
2956
2957                 if(comma) {
2958                         *comma++ = 0;
2959                 }
2960
2961                 // Split of the port
2962                 port = strrchr(address, ':');
2963
2964                 if(!port) {
2965                         goto invalid;
2966                 }
2967
2968                 *port++ = 0;
2969
2970                 // IPv6 address are enclosed in brackets, per RFC 3986
2971                 if(*address == '[') {
2972                         address++;
2973                         char *bracket = strchr(address, ']');
2974
2975                         if(!bracket) {
2976                                 goto invalid;
2977                         }
2978
2979                         *bracket++ = 0;
2980
2981                         if(*bracket) {
2982                                 goto invalid;
2983                         }
2984                 }
2985
2986                 // Connect to the meshlink daemon mentioned in the URL.
2987                 struct addrinfo *ai = adns_blocking_request(mesh, xstrdup(address), xstrdup(port), SOCK_STREAM, 5);
2988
2989                 if(ai) {
2990                         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
2991                                 state.sock = socket_in_netns(aip->ai_family, SOCK_STREAM, IPPROTO_TCP, mesh->netns);
2992
2993                                 if(state.sock == -1) {
2994                                         logger(mesh, MESHLINK_DEBUG, "Could not open socket: %s\n", strerror(errno));
2995                                         meshlink_errno = MESHLINK_ENETWORK;
2996                                         continue;
2997                                 }
2998
2999 #ifdef SO_NOSIGPIPE
3000                                 int nosigpipe = 1;
3001                                 setsockopt(state.sock, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe));
3002 #endif
3003
3004                                 set_timeout(state.sock, 5000);
3005
3006                                 if(connect(state.sock, aip->ai_addr, aip->ai_addrlen)) {
3007                                         logger(mesh, MESHLINK_DEBUG, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
3008                                         meshlink_errno = MESHLINK_ENETWORK;
3009                                         closesocket(state.sock);
3010                                         state.sock = -1;
3011                                         continue;
3012                                 }
3013
3014                                 break;
3015                         }
3016
3017                         freeaddrinfo(ai);
3018                 } else {
3019                         meshlink_errno = MESHLINK_ERESOLV;
3020                 }
3021
3022                 if(state.sock != -1 || !comma) {
3023                         break;
3024                 }
3025
3026                 address = comma;
3027         }
3028
3029         if(state.sock == -1) {
3030                 goto exit;
3031         }
3032
3033         logger(mesh, MESHLINK_DEBUG, "Connected to %s port %s...\n", address, port);
3034
3035         // Tell him we have an invitation, and give him our throw-away key.
3036
3037         state.blen = 0;
3038
3039         if(!sendline(state.sock, "0 ?%s %d.%d %s", b64key, PROT_MAJOR, PROT_MINOR, mesh->appname)) {
3040                 logger(mesh, MESHLINK_DEBUG, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
3041                 meshlink_errno = MESHLINK_ENETWORK;
3042                 goto exit;
3043         }
3044
3045         free(b64key);
3046
3047         char hisname[4096] = "";
3048         int code, hismajor, hisminor = 0;
3049
3050         if(!recvline(&state) || sscanf(state.line, "%d %s %d.%d", &code, hisname, &hismajor, &hisminor) < 3 || code != 0 || hismajor != PROT_MAJOR || !check_id(hisname) || !recvline(&state) || !rstrip(state.line) || sscanf(state.line, "%d ", &code) != 1 || code != ACK || strlen(state.line) < 3) {
3051                 logger(mesh, MESHLINK_DEBUG, "Cannot read greeting from peer\n");
3052                 meshlink_errno = MESHLINK_ENETWORK;
3053                 goto exit;
3054         }
3055
3056         // Check if the hash of the key he gave us matches the hash in the URL.
3057         char *fingerprint = state.line + 2;
3058         char hishash[64];
3059
3060         if(sha512(fingerprint, strlen(fingerprint), hishash)) {
3061                 logger(mesh, MESHLINK_DEBUG, "Could not create hash\n%s\n", state.line + 2);
3062                 meshlink_errno = MESHLINK_EINTERNAL;
3063                 goto exit;
3064         }
3065
3066         if(memcmp(hishash, state.hash, 18)) {
3067                 logger(mesh, MESHLINK_DEBUG, "Peer has an invalid key!\n%s\n", state.line + 2);
3068                 meshlink_errno = MESHLINK_EPEER;
3069                 goto exit;
3070         }
3071
3072         hiskey = ecdsa_set_base64_public_key(fingerprint);
3073
3074         if(!hiskey) {
3075                 meshlink_errno = MESHLINK_EINTERNAL;
3076                 goto exit;
3077         }
3078
3079         // Start an SPTPS session
3080         if(!sptps_start(&state.sptps, &state, true, false, key, hiskey, meshlink_invitation_label, sizeof(meshlink_invitation_label), invitation_send, invitation_receive)) {
3081                 meshlink_errno = MESHLINK_EINTERNAL;
3082                 goto exit;
3083         }
3084
3085         // Feed rest of input buffer to SPTPS
3086         if(!sptps_receive_data(&state.sptps, state.buffer, state.blen)) {
3087                 meshlink_errno = MESHLINK_EPEER;
3088                 goto exit;
3089         }
3090
3091         ssize_t len;
3092         logger(mesh, MESHLINK_DEBUG, "Starting invitation recv loop: %d %zu\n", state.sock, sizeof(state.line));
3093
3094         while((len = recv(state.sock, state.line, sizeof(state.line), 0))) {
3095                 if(len < 0) {
3096                         if(errno == EINTR) {
3097                                 continue;
3098                         }
3099
3100                         logger(mesh, MESHLINK_DEBUG, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
3101                         meshlink_errno = MESHLINK_ENETWORK;
3102                         goto exit;
3103                 }
3104
3105                 if(!sptps_receive_data(&state.sptps, state.line, len)) {
3106                         meshlink_errno = MESHLINK_EPEER;
3107                         goto exit;
3108                 }
3109         }
3110
3111         if(!state.success) {
3112                 logger(mesh, MESHLINK_DEBUG, "Connection closed by peer, invitation cancelled.\n");
3113                 meshlink_errno = MESHLINK_EPEER;
3114                 goto exit;
3115         }
3116
3117         sptps_stop(&state.sptps);
3118         ecdsa_free(hiskey);
3119         ecdsa_free(key);
3120         closesocket(state.sock);
3121
3122         pthread_mutex_unlock(&mesh->mutex);
3123         return true;
3124
3125 invalid:
3126         logger(mesh, MESHLINK_DEBUG, "Invalid invitation URL\n");
3127         meshlink_errno = MESHLINK_EINVAL;
3128 exit:
3129         sptps_stop(&state.sptps);
3130         ecdsa_free(hiskey);
3131         ecdsa_free(key);
3132
3133         if(state.sock != -1) {
3134                 closesocket(state.sock);
3135         }
3136
3137         pthread_mutex_unlock(&mesh->mutex);
3138         return false;
3139 }
3140
3141 char *meshlink_export(meshlink_handle_t *mesh) {
3142         if(!mesh) {
3143                 meshlink_errno = MESHLINK_EINVAL;
3144                 return NULL;
3145         }
3146
3147         // Create a config file on the fly.
3148
3149         uint8_t buf[4096];
3150         packmsg_output_t out = {buf, sizeof(buf)};
3151         packmsg_add_uint32(&out, MESHLINK_CONFIG_VERSION);
3152         packmsg_add_str(&out, mesh->name);
3153         packmsg_add_str(&out, CORE_MESH);
3154
3155         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3156                 abort();
3157         }
3158
3159         packmsg_add_int32(&out, mesh->self->devclass);
3160         packmsg_add_bool(&out, mesh->self->status.blacklisted);
3161         packmsg_add_bin(&out, ecdsa_get_public_key(mesh->private_key), 32);
3162
3163         if(mesh->self->canonical_address && !strchr(mesh->self->canonical_address, ' ')) {
3164                 char *canonical_address = NULL;
3165                 xasprintf(&canonical_address, "%s %s", mesh->self->canonical_address, mesh->myport);
3166                 packmsg_add_str(&out, canonical_address);
3167                 free(canonical_address);
3168         } else {
3169                 packmsg_add_str(&out, mesh->self->canonical_address ? mesh->self->canonical_address : "");
3170         }
3171
3172         uint32_t count = 0;
3173
3174         for(uint32_t i = 0; i < MAX_RECENT; i++) {
3175                 if(mesh->self->recent[i].sa.sa_family) {
3176                         count++;
3177                 } else {
3178                         break;
3179                 }
3180         }
3181
3182         packmsg_add_array(&out, count);
3183
3184         for(uint32_t i = 0; i < count; i++) {
3185                 packmsg_add_sockaddr(&out, &mesh->self->recent[i]);
3186         }
3187
3188         packmsg_add_int64(&out, 0);
3189         packmsg_add_int64(&out, 0);
3190
3191         pthread_mutex_unlock(&mesh->mutex);
3192
3193         if(!packmsg_output_ok(&out)) {
3194                 logger(mesh, MESHLINK_DEBUG, "Error creating export data\n");
3195                 meshlink_errno = MESHLINK_EINTERNAL;
3196                 return NULL;
3197         }
3198
3199         // Prepare a base64-encoded packmsg array containing our config file
3200
3201         uint32_t len = packmsg_output_size(&out, buf);
3202         uint32_t len2 = ((len + 4) * 4) / 3 + 4;
3203         uint8_t *buf2 = xmalloc(len2);
3204         packmsg_output_t out2 = {buf2, len2};
3205         packmsg_add_array(&out2, 1);
3206         packmsg_add_bin(&out2, buf, packmsg_output_size(&out, buf));
3207
3208         if(!packmsg_output_ok(&out2)) {
3209                 logger(mesh, MESHLINK_DEBUG, "Error creating export data\n");
3210                 meshlink_errno = MESHLINK_EINTERNAL;
3211                 free(buf2);
3212                 return NULL;
3213         }
3214
3215         b64encode_urlsafe(buf2, (char *)buf2, packmsg_output_size(&out2, buf2));
3216
3217         return (char *)buf2;
3218 }
3219
3220 bool meshlink_import(meshlink_handle_t *mesh, const char *data) {
3221         if(!mesh || !data) {
3222                 meshlink_errno = MESHLINK_EINVAL;
3223                 return false;
3224         }
3225
3226         size_t datalen = strlen(data);
3227         uint8_t *buf = xmalloc(datalen);
3228         int buflen = b64decode(data, buf, datalen);
3229
3230         if(!buflen) {
3231                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
3232                 meshlink_errno = MESHLINK_EPEER;
3233                 return false;
3234         }
3235
3236         packmsg_input_t in = {buf, buflen};
3237         uint32_t count = packmsg_get_array(&in);
3238
3239         if(!count) {
3240                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
3241                 meshlink_errno = MESHLINK_EPEER;
3242                 return false;
3243         }
3244
3245         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3246                 abort();
3247         }
3248
3249         while(count--) {
3250                 const void *data2;
3251                 uint32_t len2 = packmsg_get_bin_raw(&in, &data2);
3252
3253                 if(!len2) {
3254                         break;
3255                 }
3256
3257                 packmsg_input_t in2 = {data2, len2};
3258                 uint32_t version = packmsg_get_uint32(&in2);
3259                 char *name = packmsg_get_str_dup(&in2);
3260
3261                 if(!packmsg_input_ok(&in2) || version != MESHLINK_CONFIG_VERSION || !check_id(name)) {
3262                         free(name);
3263                         packmsg_input_invalidate(&in);
3264                         break;
3265                 }
3266
3267                 if(!check_id(name)) {
3268                         free(name);
3269                         break;
3270                 }
3271
3272                 node_t *n = lookup_node(mesh, name);
3273
3274                 if(n) {
3275                         logger(mesh, MESHLINK_DEBUG, "Node %s already exists, not importing\n", name);
3276                         free(name);
3277                         continue;
3278                 }
3279
3280                 n = new_node();
3281                 n->name = name;
3282
3283                 config_t config = {data2, len2};
3284
3285                 if(!node_read_from_config(mesh, n, &config)) {
3286                         free_node(n);
3287                         packmsg_input_invalidate(&in);
3288                         break;
3289                 }
3290
3291                 /* Clear the reachability times, since we ourself have never seen these nodes yet */
3292                 n->last_reachable = 0;
3293                 n->last_unreachable = 0;
3294
3295                 if(!node_write_config(mesh, n)) {
3296                         free_node(n);
3297                         return false;
3298                 }
3299
3300                 node_add(mesh, n);
3301         }
3302
3303         pthread_mutex_unlock(&mesh->mutex);
3304
3305         free(buf);
3306
3307         if(!packmsg_done(&in)) {
3308                 logger(mesh, MESHLINK_ERROR, "Invalid data\n");
3309                 meshlink_errno = MESHLINK_EPEER;
3310                 return false;
3311         }
3312
3313         if(!config_sync(mesh, "current")) {
3314                 return false;
3315         }
3316
3317         return true;
3318 }
3319
3320 static bool blacklist(meshlink_handle_t *mesh, node_t *n) {
3321         if(n == mesh->self) {
3322                 logger(mesh, MESHLINK_ERROR, "%s blacklisting itself?\n", n->name);
3323                 meshlink_errno = MESHLINK_EINVAL;
3324                 return false;
3325         }
3326
3327         if(n->status.blacklisted) {
3328                 logger(mesh, MESHLINK_DEBUG, "Node %s already blacklisted\n", n->name);
3329                 return true;
3330         }
3331
3332         n->status.blacklisted = true;
3333
3334         /* Immediately shut down any connections we have with the blacklisted node.
3335          * We can't call terminate_connection(), because we might be called from a callback function.
3336          */
3337         for list_each(connection_t, c, mesh->connections) {
3338                 if(c->node == n) {
3339                         shutdown(c->socket, SHUT_RDWR);
3340                 }
3341         }
3342
3343         utcp_abort_all_connections(n->utcp);
3344
3345         n->mtu = 0;
3346         n->minmtu = 0;
3347         n->maxmtu = MTU;
3348         n->mtuprobes = 0;
3349         n->status.udp_confirmed = false;
3350
3351         if(n->status.reachable) {
3352                 n->last_unreachable = time(NULL);
3353         }
3354
3355         /* Graph updates will suppress status updates for blacklisted nodes, so we need to
3356          * manually call the status callback if necessary.
3357          */
3358         if(n->status.reachable && mesh->node_status_cb) {
3359                 mesh->node_status_cb(mesh, (meshlink_node_t *)n, false);
3360         }
3361
3362         return node_write_config(mesh, n) && config_sync(mesh, "current");
3363 }
3364
3365 bool meshlink_blacklist(meshlink_handle_t *mesh, meshlink_node_t *node) {
3366         if(!mesh || !node) {
3367                 meshlink_errno = MESHLINK_EINVAL;
3368                 return false;
3369         }
3370
3371         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3372                 abort();
3373         }
3374
3375         if(!blacklist(mesh, (node_t *)node)) {
3376                 pthread_mutex_unlock(&mesh->mutex);
3377                 return false;
3378         }
3379
3380         pthread_mutex_unlock(&mesh->mutex);
3381
3382         logger(mesh, MESHLINK_DEBUG, "Blacklisted %s.\n", node->name);
3383         return true;
3384 }
3385
3386 bool meshlink_blacklist_by_name(meshlink_handle_t *mesh, const char *name) {
3387         if(!mesh || !name) {
3388                 meshlink_errno = MESHLINK_EINVAL;
3389                 return false;
3390         }
3391
3392         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3393                 abort();
3394         }
3395
3396         node_t *n = lookup_node(mesh, (char *)name);
3397
3398         if(!n) {
3399                 n = new_node();
3400                 n->name = xstrdup(name);
3401                 node_add(mesh, n);
3402         }
3403
3404         if(!blacklist(mesh, (node_t *)n)) {
3405                 pthread_mutex_unlock(&mesh->mutex);
3406                 return false;
3407         }
3408
3409         pthread_mutex_unlock(&mesh->mutex);
3410
3411         logger(mesh, MESHLINK_DEBUG, "Blacklisted %s.\n", name);
3412         return true;
3413 }
3414
3415 static bool whitelist(meshlink_handle_t *mesh, node_t *n) {
3416         if(n == mesh->self) {
3417                 logger(mesh, MESHLINK_ERROR, "%s whitelisting itself?\n", n->name);
3418                 meshlink_errno = MESHLINK_EINVAL;
3419                 return false;
3420         }
3421
3422         if(!n->status.blacklisted) {
3423                 logger(mesh, MESHLINK_DEBUG, "Node %s was already whitelisted\n", n->name);
3424                 return true;
3425         }
3426
3427         n->status.blacklisted = false;
3428
3429         if(n->status.reachable) {
3430                 n->last_reachable = time(NULL);
3431                 update_node_status(mesh, n);
3432         }
3433
3434         return node_write_config(mesh, n) && config_sync(mesh, "current");
3435 }
3436
3437 bool meshlink_whitelist(meshlink_handle_t *mesh, meshlink_node_t *node) {
3438         if(!mesh || !node) {
3439                 meshlink_errno = MESHLINK_EINVAL;
3440                 return false;
3441         }
3442
3443         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3444                 abort();
3445         }
3446
3447         if(!whitelist(mesh, (node_t *)node)) {
3448                 pthread_mutex_unlock(&mesh->mutex);
3449                 return false;
3450         }
3451
3452         pthread_mutex_unlock(&mesh->mutex);
3453
3454         logger(mesh, MESHLINK_DEBUG, "Whitelisted %s.\n", node->name);
3455         return true;
3456 }
3457
3458 bool meshlink_whitelist_by_name(meshlink_handle_t *mesh, const char *name) {
3459         if(!mesh || !name) {
3460                 meshlink_errno = MESHLINK_EINVAL;
3461                 return false;
3462         }
3463
3464         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3465                 abort();
3466         }
3467
3468         node_t *n = lookup_node(mesh, (char *)name);
3469
3470         if(!n) {
3471                 n = new_node();
3472                 n->name = xstrdup(name);
3473                 node_add(mesh, n);
3474         }
3475
3476         if(!whitelist(mesh, (node_t *)n)) {
3477                 pthread_mutex_unlock(&mesh->mutex);
3478                 return false;
3479         }
3480
3481         pthread_mutex_unlock(&mesh->mutex);
3482
3483         logger(mesh, MESHLINK_DEBUG, "Whitelisted %s.\n", name);
3484         return true;
3485 }
3486
3487 void meshlink_set_default_blacklist(meshlink_handle_t *mesh, bool blacklist) {
3488         mesh->default_blacklist = blacklist;
3489 }
3490
3491 bool meshlink_forget_node(meshlink_handle_t *mesh, meshlink_node_t *node) {
3492         if(!mesh || !node) {
3493                 meshlink_errno = MESHLINK_EINVAL;
3494                 return false;
3495         }
3496
3497         node_t *n = (node_t *)node;
3498
3499         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3500                 abort();
3501         }
3502
3503         /* Check that the node is not reachable */
3504         if(n->status.reachable || n->connection) {
3505                 pthread_mutex_unlock(&mesh->mutex);
3506                 logger(mesh, MESHLINK_WARNING, "Could not forget %s: still reachable", n->name);
3507                 return false;
3508         }
3509
3510         /* Check that we don't have any active UTCP connections */
3511         if(n->utcp && utcp_is_active(n->utcp)) {
3512                 pthread_mutex_unlock(&mesh->mutex);
3513                 logger(mesh, MESHLINK_WARNING, "Could not forget %s: active UTCP connections", n->name);
3514                 return false;
3515         }
3516
3517         /* Check that we have no active connections to this node */
3518         for list_each(connection_t, c, mesh->connections) {
3519                 if(c->node == n) {
3520                         pthread_mutex_unlock(&mesh->mutex);
3521                         logger(mesh, MESHLINK_WARNING, "Could not forget %s: active connection", n->name);
3522                         return false;
3523                 }
3524         }
3525
3526         /* Remove any pending outgoings to this node */
3527         if(mesh->outgoings) {
3528                 for list_each(outgoing_t, outgoing, mesh->outgoings) {
3529                         if(outgoing->node == n) {
3530                                 list_delete_node(mesh->outgoings, list_node);
3531                         }
3532                 }
3533         }
3534
3535         /* Delete the config file for this node */
3536         if(!config_delete(mesh, "current", n->name)) {
3537                 pthread_mutex_unlock(&mesh->mutex);
3538                 return false;
3539         }
3540
3541         /* Delete the node struct and any remaining edges referencing this node */
3542         node_del(mesh, n);
3543
3544         pthread_mutex_unlock(&mesh->mutex);
3545
3546         return config_sync(mesh, "current");
3547 }
3548
3549 /* Hint that a hostname may be found at an address
3550  * See header file for detailed comment.
3551  */
3552 void meshlink_hint_address(meshlink_handle_t *mesh, meshlink_node_t *node, const struct sockaddr *addr) {
3553         if(!mesh || !node || !addr) {
3554                 meshlink_errno = EINVAL;
3555                 return;
3556         }
3557
3558         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3559                 abort();
3560         }
3561
3562         node_t *n = (node_t *)node;
3563
3564         if(node_add_recent_address(mesh, n, (sockaddr_t *)addr)) {
3565                 if(!node_write_config(mesh, n)) {
3566                         logger(mesh, MESHLINK_DEBUG, "Could not update %s\n", n->name);
3567                 }
3568         }
3569
3570         pthread_mutex_unlock(&mesh->mutex);
3571         // @TODO do we want to fire off a connection attempt right away?
3572 }
3573
3574 static bool channel_pre_accept(struct utcp *utcp, uint16_t port) {
3575         (void)port;
3576         node_t *n = utcp->priv;
3577         meshlink_handle_t *mesh = n->mesh;
3578         return mesh->channel_accept_cb;
3579 }
3580
3581 /* Finish one AIO buffer, return true if the channel is still open. */
3582 static bool aio_finish_one(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_aio_buffer_t **head) {
3583         meshlink_aio_buffer_t *aio = *head;
3584         *head = aio->next;
3585
3586         if(channel->c) {
3587                 channel->in_callback = true;
3588
3589                 if(aio->data) {
3590                         if(aio->cb.buffer) {
3591                                 aio->cb.buffer(mesh, channel, aio->data, aio->done, aio->priv);
3592                         }
3593                 } else {
3594                         if(aio->cb.fd) {
3595                                 aio->cb.fd(mesh, channel, aio->fd, aio->done, aio->priv);
3596                         }
3597                 }
3598
3599                 channel->in_callback = false;
3600
3601                 if(!channel->c) {
3602                         free(aio);
3603                         free(channel);
3604                         return false;
3605                 }
3606         }
3607
3608         free(aio);
3609         return true;
3610 }
3611
3612 /* Finish all AIO buffers, return true if the channel is still open. */
3613 static bool aio_abort(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_aio_buffer_t **head) {
3614         while(*head) {
3615                 if(!aio_finish_one(mesh, channel, head)) {
3616                         return false;
3617                 }
3618         }
3619
3620         return true;
3621 }
3622
3623 static ssize_t channel_recv(struct utcp_connection *connection, const void *data, size_t len) {
3624         meshlink_channel_t *channel = connection->priv;
3625
3626         if(!channel) {
3627                 abort();
3628         }
3629
3630         node_t *n = channel->node;
3631         meshlink_handle_t *mesh = n->mesh;
3632
3633         if(n->status.destroyed) {
3634                 meshlink_channel_close(mesh, channel);
3635                 return len;
3636         }
3637
3638         const char *p = data;
3639         size_t left = len;
3640
3641         while(channel->aio_receive) {
3642                 if(!len) {
3643                         /* This receive callback signalled an error, abort all outstanding AIO buffers. */
3644                         if(!aio_abort(mesh, channel, &channel->aio_receive)) {
3645                                 return len;
3646                         }
3647
3648                         break;
3649                 }
3650
3651                 meshlink_aio_buffer_t *aio = channel->aio_receive;
3652                 size_t todo = aio->len - aio->done;
3653
3654                 if(todo > left) {
3655                         todo = left;
3656                 }
3657
3658                 if(aio->data) {
3659                         memcpy((char *)aio->data + aio->done, p, todo);
3660                 } else {
3661                         ssize_t result = write(aio->fd, p, todo);
3662
3663                         if(result <= 0) {
3664                                 if(result < 0 && errno == EINTR) {
3665                                         continue;
3666                                 }
3667
3668                                 /* Writing to fd failed, cancel just this AIO buffer. */
3669                                 logger(mesh, MESHLINK_ERROR, "Writing to AIO fd %d failed: %s", aio->fd, strerror(errno));
3670
3671                                 if(!aio_finish_one(mesh, channel, &channel->aio_receive)) {
3672                                         return len;
3673                                 }
3674
3675                                 continue;
3676                         }
3677
3678                         todo = result;
3679                 }
3680
3681                 aio->done += todo;
3682                 p += todo;
3683                 left -= todo;
3684
3685                 if(aio->done == aio->len) {
3686                         if(!aio_finish_one(mesh, channel, &channel->aio_receive)) {
3687                                 return len;
3688                         }
3689                 }
3690
3691                 if(!left) {
3692                         return len;
3693                 }
3694         }
3695
3696         if(channel->receive_cb) {
3697                 channel->receive_cb(mesh, channel, p, left);
3698         }
3699
3700         return len;
3701 }
3702
3703 static void channel_accept(struct utcp_connection *utcp_connection, uint16_t port) {
3704         node_t *n = utcp_connection->utcp->priv;
3705
3706         if(!n) {
3707                 abort();
3708         }
3709
3710         meshlink_handle_t *mesh = n->mesh;
3711
3712         if(!mesh->channel_accept_cb) {
3713                 return;
3714         }
3715
3716         meshlink_channel_t *channel = xzalloc(sizeof(*channel));
3717         channel->node = n;
3718         channel->c = utcp_connection;
3719
3720         if(mesh->channel_accept_cb(mesh, channel, port, NULL, 0)) {
3721                 utcp_accept(utcp_connection, channel_recv, channel);
3722         } else {
3723                 free(channel);
3724         }
3725 }
3726
3727 static void channel_retransmit(struct utcp_connection *utcp_connection) {
3728         node_t *n = utcp_connection->utcp->priv;
3729         meshlink_handle_t *mesh = n->mesh;
3730
3731         if(n->mtuprobes == 31) {
3732                 timeout_set(&mesh->loop, &n->mtutimeout, &(struct timespec) {
3733                         0, 0
3734                 });
3735         }
3736 }
3737
3738 static ssize_t channel_send(struct utcp *utcp, const void *data, size_t len) {
3739         node_t *n = utcp->priv;
3740
3741         if(n->status.destroyed) {
3742                 return -1;
3743         }
3744
3745         meshlink_handle_t *mesh = n->mesh;
3746         return meshlink_send_immediate(mesh, (meshlink_node_t *)n, data, len) ? (ssize_t)len : -1;
3747 }
3748
3749 void meshlink_set_channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_receive_cb_t cb) {
3750         if(!mesh || !channel) {
3751                 meshlink_errno = MESHLINK_EINVAL;
3752                 return;
3753         }
3754
3755         channel->receive_cb = cb;
3756 }
3757
3758 static void channel_receive(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len) {
3759         (void)mesh;
3760         node_t *n = (node_t *)source;
3761
3762         if(!n->utcp) {
3763                 abort();
3764         }
3765
3766         utcp_recv(n->utcp, data, len);
3767 }
3768
3769 static void channel_poll(struct utcp_connection *connection, size_t len) {
3770         meshlink_channel_t *channel = connection->priv;
3771
3772         if(!channel) {
3773                 abort();
3774         }
3775
3776         node_t *n = channel->node;
3777         meshlink_handle_t *mesh = n->mesh;
3778
3779         while(channel->aio_send) {
3780                 if(!len) {
3781                         /* This poll callback signalled an error, abort all outstanding AIO buffers. */
3782                         if(!aio_abort(mesh, channel, &channel->aio_send)) {
3783                                 return;
3784                         }
3785
3786                         break;
3787                 }
3788
3789                 /* We have at least one AIO buffer. Send as much as possible from the buffers. */
3790                 meshlink_aio_buffer_t *aio = channel->aio_send;
3791                 size_t todo = aio->len - aio->done;
3792                 ssize_t sent;
3793
3794                 if(todo > len) {
3795                         todo = len;
3796                 }
3797
3798                 if(aio->data) {
3799                         sent = utcp_send(connection, (char *)aio->data + aio->done, todo);
3800                 } else {
3801                         /* Limit the amount we read at once to avoid stack overflows */
3802                         if(todo > 65536) {
3803                                 todo = 65536;
3804                         }
3805
3806                         char buf[todo];
3807                         ssize_t result = read(aio->fd, buf, todo);
3808
3809                         if(result > 0) {
3810                                 todo = result;
3811                                 sent = utcp_send(connection, buf, todo);
3812                         } else {
3813                                 if(result < 0 && errno == EINTR) {
3814                                         continue;
3815                                 }
3816
3817                                 /* Reading from fd failed, cancel just this AIO buffer. */
3818                                 if(result != 0) {
3819                                         logger(mesh, MESHLINK_ERROR, "Reading from AIO fd %d failed: %s", aio->fd, strerror(errno));
3820                                 }
3821
3822                                 if(!aio_finish_one(mesh, channel, &channel->aio_send)) {
3823                                         return;
3824                                 }
3825
3826                                 continue;
3827                         }
3828                 }
3829
3830                 if(sent != (ssize_t)todo) {
3831                         /* We should never get a partial send at this point */
3832                         assert(sent <= 0);
3833
3834                         /* Sending failed, abort all outstanding AIO buffers and send a poll callback. */
3835                         if(!aio_abort(mesh, channel, &channel->aio_send)) {
3836                                 return;
3837                         }
3838
3839                         len = 0;
3840                         break;
3841                 }
3842
3843                 aio->done += sent;
3844                 len -= sent;
3845
3846                 /* If we didn't finish this buffer, exit early. */
3847                 if(aio->done < aio->len) {
3848                         return;
3849                 }
3850
3851                 /* Signal completion of this buffer, and go to the next one. */
3852                 if(!aio_finish_one(mesh, channel, &channel->aio_send)) {
3853                         return;
3854                 }
3855
3856                 if(!len) {
3857                         return;
3858                 }
3859         }
3860
3861         if(channel->poll_cb) {
3862                 channel->poll_cb(mesh, channel, len);
3863         } else {
3864                 utcp_set_poll_cb(connection, NULL);
3865         }
3866 }
3867
3868 void meshlink_set_channel_poll_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_poll_cb_t cb) {
3869         if(!mesh || !channel) {
3870                 meshlink_errno = MESHLINK_EINVAL;
3871                 return;
3872         }
3873
3874         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3875                 abort();
3876         }
3877
3878         channel->poll_cb = cb;
3879         utcp_set_poll_cb(channel->c, (cb || channel->aio_send) ? channel_poll : NULL);
3880         pthread_mutex_unlock(&mesh->mutex);
3881 }
3882
3883 void meshlink_set_channel_accept_cb(meshlink_handle_t *mesh, meshlink_channel_accept_cb_t cb) {
3884         if(!mesh) {
3885                 meshlink_errno = MESHLINK_EINVAL;
3886                 return;
3887         }
3888
3889         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3890                 abort();
3891         }
3892
3893         mesh->channel_accept_cb = cb;
3894         mesh->receive_cb = channel_receive;
3895
3896         for splay_each(node_t, n, mesh->nodes) {
3897                 if(!n->utcp && n != mesh->self) {
3898                         n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
3899                         utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
3900                         utcp_set_retransmit_cb(n->utcp, channel_retransmit);
3901                 }
3902         }
3903
3904         pthread_mutex_unlock(&mesh->mutex);
3905 }
3906
3907 void meshlink_set_channel_sndbuf(meshlink_handle_t *mesh, meshlink_channel_t *channel, size_t size) {
3908         (void)mesh;
3909
3910         if(!channel) {
3911                 meshlink_errno = MESHLINK_EINVAL;
3912                 return;
3913         }
3914
3915         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3916                 abort();
3917         }
3918
3919         utcp_set_sndbuf(channel->c, size);
3920         pthread_mutex_unlock(&mesh->mutex);
3921 }
3922
3923 void meshlink_set_channel_rcvbuf(meshlink_handle_t *mesh, meshlink_channel_t *channel, size_t size) {
3924         (void)mesh;
3925
3926         if(!channel) {
3927                 meshlink_errno = MESHLINK_EINVAL;
3928                 return;
3929         }
3930
3931         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3932                 abort();
3933         }
3934
3935         utcp_set_rcvbuf(channel->c, size);
3936         pthread_mutex_unlock(&mesh->mutex);
3937 }
3938
3939 meshlink_channel_t *meshlink_channel_open_ex(meshlink_handle_t *mesh, meshlink_node_t *node, uint16_t port, meshlink_channel_receive_cb_t cb, const void *data, size_t len, uint32_t flags) {
3940         if(data && len) {
3941                 abort();        // TODO: handle non-NULL data
3942         }
3943
3944         if(!mesh || !node) {
3945                 meshlink_errno = MESHLINK_EINVAL;
3946                 return NULL;
3947         }
3948
3949         if(pthread_mutex_lock(&mesh->mutex) != 0) {
3950                 abort();
3951         }
3952
3953         node_t *n = (node_t *)node;
3954
3955         if(!n->utcp) {
3956                 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
3957                 utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
3958                 utcp_set_retransmit_cb(n->utcp, channel_retransmit);
3959                 mesh->receive_cb = channel_receive;
3960
3961                 if(!n->utcp) {
3962                         meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
3963                         pthread_mutex_unlock(&mesh->mutex);
3964                         return NULL;
3965                 }
3966         }
3967
3968         if(n->status.blacklisted) {
3969                 logger(mesh, MESHLINK_ERROR, "Cannot open a channel with blacklisted node\n");
3970                 meshlink_errno = MESHLINK_EBLACKLISTED;
3971                 pthread_mutex_unlock(&mesh->mutex);
3972                 return NULL;
3973         }
3974
3975         meshlink_channel_t *channel = xzalloc(sizeof(*channel));
3976         channel->node = n;
3977         channel->receive_cb = cb;
3978
3979         if(data && !len) {
3980                 channel->priv = (void *)data;
3981         }
3982
3983         channel->c = utcp_connect_ex(n->utcp, port, channel_recv, channel, flags);
3984
3985         pthread_mutex_unlock(&mesh->mutex);
3986
3987         if(!channel->c) {
3988                 meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
3989                 free(channel);
3990                 return NULL;
3991         }
3992
3993         return channel;
3994 }
3995
3996 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) {
3997         return meshlink_channel_open_ex(mesh, node, port, cb, data, len, MESHLINK_CHANNEL_TCP);
3998 }
3999
4000 void meshlink_channel_shutdown(meshlink_handle_t *mesh, meshlink_channel_t *channel, int direction) {
4001         if(!mesh || !channel) {
4002                 meshlink_errno = MESHLINK_EINVAL;
4003                 return;
4004         }
4005
4006         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4007                 abort();
4008         }
4009
4010         utcp_shutdown(channel->c, direction);
4011         pthread_mutex_unlock(&mesh->mutex);
4012 }
4013
4014 void meshlink_channel_close(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4015         if(!mesh || !channel) {
4016                 meshlink_errno = MESHLINK_EINVAL;
4017                 return;
4018         }
4019
4020         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4021                 abort();
4022         }
4023
4024         if(channel->c) {
4025                 utcp_close(channel->c);
4026                 channel->c = NULL;
4027
4028                 /* Clean up any outstanding AIO buffers. */
4029                 aio_abort(mesh, channel, &channel->aio_send);
4030                 aio_abort(mesh, channel, &channel->aio_receive);
4031         }
4032
4033         if(!channel->in_callback) {
4034                 free(channel);
4035         }
4036
4037         pthread_mutex_unlock(&mesh->mutex);
4038 }
4039
4040 ssize_t meshlink_channel_send(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *data, size_t len) {
4041         if(!mesh || !channel) {
4042                 meshlink_errno = MESHLINK_EINVAL;
4043                 return -1;
4044         }
4045
4046         if(!len) {
4047                 return 0;
4048         }
4049
4050         if(!data) {
4051                 meshlink_errno = MESHLINK_EINVAL;
4052                 return -1;
4053         }
4054
4055         // TODO: more finegrained locking.
4056         // Ideally we want to put the data into the UTCP connection's send buffer.
4057         // Then, preferably only if there is room in the receiver window,
4058         // kick the meshlink thread to go send packets.
4059
4060         ssize_t retval;
4061
4062         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4063                 abort();
4064         }
4065
4066         /* Disallow direct calls to utcp_send() while we still have AIO active. */
4067         if(channel->aio_send) {
4068                 retval = 0;
4069         } else {
4070                 retval = utcp_send(channel->c, data, len);
4071         }
4072
4073         pthread_mutex_unlock(&mesh->mutex);
4074
4075         if(retval < 0) {
4076                 meshlink_errno = MESHLINK_ENETWORK;
4077         }
4078
4079         return retval;
4080 }
4081
4082 bool meshlink_channel_aio_send(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *data, size_t len, meshlink_aio_cb_t cb, void *priv) {
4083         if(!mesh || !channel) {
4084                 meshlink_errno = MESHLINK_EINVAL;
4085                 return false;
4086         }
4087
4088         if(!len || !data) {
4089                 meshlink_errno = MESHLINK_EINVAL;
4090                 return false;
4091         }
4092
4093         meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
4094         aio->data = data;
4095         aio->len = len;
4096         aio->cb.buffer = cb;
4097         aio->priv = priv;
4098
4099         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4100                 abort();
4101         }
4102
4103         /* Append the AIO buffer descriptor to the end of the chain */
4104         meshlink_aio_buffer_t **p = &channel->aio_send;
4105
4106         while(*p) {
4107                 p = &(*p)->next;
4108         }
4109
4110         *p = aio;
4111
4112         /* Ensure the poll callback is set, and call it right now to push data if possible */
4113         utcp_set_poll_cb(channel->c, channel_poll);
4114         size_t todo = MIN(len, utcp_get_rcvbuf_free(channel->c));
4115
4116         if(todo) {
4117                 channel_poll(channel->c, todo);
4118         }
4119
4120         pthread_mutex_unlock(&mesh->mutex);
4121
4122         return true;
4123 }
4124
4125 bool meshlink_channel_aio_fd_send(meshlink_handle_t *mesh, meshlink_channel_t *channel, int fd, size_t len, meshlink_aio_fd_cb_t cb, void *priv) {
4126         if(!mesh || !channel) {
4127                 meshlink_errno = MESHLINK_EINVAL;
4128                 return false;
4129         }
4130
4131         if(!len || fd == -1) {
4132                 meshlink_errno = MESHLINK_EINVAL;
4133                 return false;
4134         }
4135
4136         meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
4137         aio->fd = fd;
4138         aio->len = len;
4139         aio->cb.fd = cb;
4140         aio->priv = priv;
4141
4142         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4143                 abort();
4144         }
4145
4146         /* Append the AIO buffer descriptor to the end of the chain */
4147         meshlink_aio_buffer_t **p = &channel->aio_send;
4148
4149         while(*p) {
4150                 p = &(*p)->next;
4151         }
4152
4153         *p = aio;
4154
4155         /* Ensure the poll callback is set, and call it right now to push data if possible */
4156         utcp_set_poll_cb(channel->c, channel_poll);
4157         size_t left = utcp_get_rcvbuf_free(channel->c);
4158
4159         if(left) {
4160                 channel_poll(channel->c, left);
4161         }
4162
4163         pthread_mutex_unlock(&mesh->mutex);
4164
4165         return true;
4166 }
4167
4168 bool meshlink_channel_aio_receive(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *data, size_t len, meshlink_aio_cb_t cb, void *priv) {
4169         if(!mesh || !channel) {
4170                 meshlink_errno = MESHLINK_EINVAL;
4171                 return false;
4172         }
4173
4174         if(!len || !data) {
4175                 meshlink_errno = MESHLINK_EINVAL;
4176                 return false;
4177         }
4178
4179         meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
4180         aio->data = data;
4181         aio->len = len;
4182         aio->cb.buffer = cb;
4183         aio->priv = priv;
4184
4185         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4186                 abort();
4187         }
4188
4189         /* Append the AIO buffer descriptor to the end of the chain */
4190         meshlink_aio_buffer_t **p = &channel->aio_receive;
4191
4192         while(*p) {
4193                 p = &(*p)->next;
4194         }
4195
4196         *p = aio;
4197
4198         pthread_mutex_unlock(&mesh->mutex);
4199
4200         return true;
4201 }
4202
4203 bool meshlink_channel_aio_fd_receive(meshlink_handle_t *mesh, meshlink_channel_t *channel, int fd, size_t len, meshlink_aio_fd_cb_t cb, void *priv) {
4204         if(!mesh || !channel) {
4205                 meshlink_errno = MESHLINK_EINVAL;
4206                 return false;
4207         }
4208
4209         if(!len || fd == -1) {
4210                 meshlink_errno = MESHLINK_EINVAL;
4211                 return false;
4212         }
4213
4214         meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
4215         aio->fd = fd;
4216         aio->len = len;
4217         aio->cb.fd = cb;
4218         aio->priv = priv;
4219
4220         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4221                 abort();
4222         }
4223
4224         /* Append the AIO buffer descriptor to the end of the chain */
4225         meshlink_aio_buffer_t **p = &channel->aio_receive;
4226
4227         while(*p) {
4228                 p = &(*p)->next;
4229         }
4230
4231         *p = aio;
4232
4233         pthread_mutex_unlock(&mesh->mutex);
4234
4235         return true;
4236 }
4237
4238 uint32_t meshlink_channel_get_flags(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4239         if(!mesh || !channel) {
4240                 meshlink_errno = MESHLINK_EINVAL;
4241                 return -1;
4242         }
4243
4244         return channel->c->flags;
4245 }
4246
4247 size_t meshlink_channel_get_sendq(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4248         if(!mesh || !channel) {
4249                 meshlink_errno = MESHLINK_EINVAL;
4250                 return -1;
4251         }
4252
4253         return utcp_get_sendq(channel->c);
4254 }
4255
4256 size_t meshlink_channel_get_recvq(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4257         if(!mesh || !channel) {
4258                 meshlink_errno = MESHLINK_EINVAL;
4259                 return -1;
4260         }
4261
4262         return utcp_get_recvq(channel->c);
4263 }
4264
4265 size_t meshlink_channel_get_mss(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4266         if(!mesh || !channel) {
4267                 meshlink_errno = MESHLINK_EINVAL;
4268                 return -1;
4269         }
4270
4271         return utcp_get_mss(channel->node->utcp);
4272 }
4273
4274 void meshlink_set_node_channel_timeout(meshlink_handle_t *mesh, meshlink_node_t *node, int timeout) {
4275         if(!mesh || !node) {
4276                 meshlink_errno = MESHLINK_EINVAL;
4277                 return;
4278         }
4279
4280         node_t *n = (node_t *)node;
4281
4282         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4283                 abort();
4284         }
4285
4286         if(!n->utcp) {
4287                 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
4288                 utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
4289                 utcp_set_retransmit_cb(n->utcp, channel_retransmit);
4290         }
4291
4292         utcp_set_user_timeout(n->utcp, timeout);
4293
4294         pthread_mutex_unlock(&mesh->mutex);
4295 }
4296
4297 void update_node_status(meshlink_handle_t *mesh, node_t *n) {
4298         if(n->status.reachable && mesh->channel_accept_cb && !n->utcp) {
4299                 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
4300                 utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
4301                 utcp_set_retransmit_cb(n->utcp, channel_retransmit);
4302         }
4303
4304         if(mesh->node_status_cb) {
4305                 mesh->node_status_cb(mesh, (meshlink_node_t *)n, n->status.reachable && !n->status.blacklisted);
4306         }
4307
4308         if(mesh->node_pmtu_cb) {
4309                 mesh->node_pmtu_cb(mesh, (meshlink_node_t *)n, n->minmtu);
4310         }
4311 }
4312
4313 void update_node_pmtu(meshlink_handle_t *mesh, node_t *n) {
4314         utcp_set_mtu(n->utcp, (n->minmtu > MINMTU ? n->minmtu : MINMTU) - sizeof(meshlink_packethdr_t));
4315
4316         if(mesh->node_pmtu_cb && !n->status.blacklisted) {
4317                 mesh->node_pmtu_cb(mesh, (meshlink_node_t *)n, n->minmtu);
4318         }
4319 }
4320
4321 void handle_duplicate_node(meshlink_handle_t *mesh, node_t *n) {
4322         if(!mesh->node_duplicate_cb || n->status.duplicate) {
4323                 return;
4324         }
4325
4326         n->status.duplicate = true;
4327         mesh->node_duplicate_cb(mesh, (meshlink_node_t *)n);
4328 }
4329
4330 void meshlink_enable_discovery(meshlink_handle_t *mesh, bool enable) {
4331 #if HAVE_CATTA
4332
4333         if(!mesh) {
4334                 meshlink_errno = MESHLINK_EINVAL;
4335                 return;
4336         }
4337
4338         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4339                 abort();
4340         }
4341
4342         if(mesh->discovery == enable) {
4343                 goto end;
4344         }
4345
4346         if(mesh->threadstarted) {
4347                 if(enable) {
4348                         discovery_start(mesh);
4349                 } else {
4350                         discovery_stop(mesh);
4351                 }
4352         }
4353
4354         mesh->discovery = enable;
4355
4356 end:
4357         pthread_mutex_unlock(&mesh->mutex);
4358 #else
4359         (void)mesh;
4360         (void)enable;
4361         meshlink_errno = MESHLINK_ENOTSUP;
4362 #endif
4363 }
4364
4365 void meshlink_set_dev_class_timeouts(meshlink_handle_t *mesh, dev_class_t devclass, int pinginterval, int pingtimeout) {
4366         if(!mesh || devclass < 0 || devclass >= DEV_CLASS_COUNT) {
4367                 meshlink_errno = EINVAL;
4368                 return;
4369         }
4370
4371         if(pinginterval < 1 || pingtimeout < 1 || pingtimeout > pinginterval) {
4372                 meshlink_errno = EINVAL;
4373                 return;
4374         }
4375
4376         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4377                 abort();
4378         }
4379
4380         mesh->dev_class_traits[devclass].pinginterval = pinginterval;
4381         mesh->dev_class_traits[devclass].pingtimeout = pingtimeout;
4382         pthread_mutex_unlock(&mesh->mutex);
4383 }
4384
4385 void meshlink_set_dev_class_fast_retry_period(meshlink_handle_t *mesh, dev_class_t devclass, int fast_retry_period) {
4386         if(!mesh || devclass < 0 || devclass >= DEV_CLASS_COUNT) {
4387                 meshlink_errno = EINVAL;
4388                 return;
4389         }
4390
4391         if(fast_retry_period < 0) {
4392                 meshlink_errno = EINVAL;
4393                 return;
4394         }
4395
4396         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4397                 abort();
4398         }
4399
4400         mesh->dev_class_traits[devclass].fast_retry_period = fast_retry_period;
4401         pthread_mutex_unlock(&mesh->mutex);
4402 }
4403
4404 void meshlink_set_dev_class_maxtimeout(struct meshlink_handle *mesh, dev_class_t devclass, int maxtimeout) {
4405         if(!mesh || devclass < 0 || devclass >= DEV_CLASS_COUNT) {
4406                 meshlink_errno = EINVAL;
4407                 return;
4408         }
4409
4410         if(maxtimeout < 0) {
4411                 meshlink_errno = EINVAL;
4412                 return;
4413         }
4414
4415         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4416                 abort();
4417         }
4418
4419         mesh->dev_class_traits[devclass].maxtimeout = maxtimeout;
4420         pthread_mutex_unlock(&mesh->mutex);
4421 }
4422
4423 void meshlink_reset_timers(struct meshlink_handle *mesh) {
4424         if(!mesh) {
4425                 return;
4426         }
4427
4428         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4429                 abort();
4430         }
4431
4432         handle_network_change(mesh, true);
4433         pthread_mutex_unlock(&mesh->mutex);
4434 }
4435
4436 void meshlink_set_inviter_commits_first(struct meshlink_handle *mesh, bool inviter_commits_first) {
4437         if(!mesh) {
4438                 meshlink_errno = EINVAL;
4439                 return;
4440         }
4441
4442         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4443                 abort();
4444         }
4445
4446         mesh->inviter_commits_first = inviter_commits_first;
4447         pthread_mutex_unlock(&mesh->mutex);
4448 }
4449
4450 void meshlink_set_external_address_discovery_url(struct meshlink_handle *mesh, const char *url) {
4451         if(!mesh) {
4452                 meshlink_errno = EINVAL;
4453                 return;
4454         }
4455
4456         if(url && (strncmp(url, "http://", 7) || strchr(url, ' '))) {
4457                 meshlink_errno = EINVAL;
4458                 return;
4459         }
4460
4461         if(pthread_mutex_lock(&mesh->mutex) != 0) {
4462                 abort();
4463         }
4464
4465         free(mesh->external_address_url);
4466         mesh->external_address_url = url ? xstrdup(url) : NULL;
4467         pthread_mutex_unlock(&mesh->mutex);
4468 }
4469
4470 void meshlink_set_scheduling_granularity(struct meshlink_handle *mesh, long granularity) {
4471         if(!mesh || granularity < 0) {
4472                 meshlink_errno = EINVAL;
4473                 return;
4474         }
4475
4476         utcp_set_clock_granularity(granularity);
4477 }
4478
4479 void handle_network_change(meshlink_handle_t *mesh, bool online) {
4480         (void)online;
4481
4482         if(!mesh->connections || !mesh->loop.running) {
4483                 return;
4484         }
4485
4486         retry(mesh);
4487         signal_trigger(&mesh->loop, &mesh->datafromapp);
4488 }
4489
4490 void call_error_cb(meshlink_handle_t *mesh, meshlink_errno_t cb_errno) {
4491         // We should only call the callback function if we are in the background thread.
4492         if(!mesh->error_cb) {
4493                 return;
4494         }
4495
4496         if(!mesh->threadstarted) {
4497                 return;
4498         }
4499
4500         if(mesh->thread == pthread_self()) {
4501                 mesh->error_cb(mesh, cb_errno);
4502         }
4503 }
4504
4505 static void __attribute__((constructor)) meshlink_init(void) {
4506         crypto_init();
4507         utcp_set_clock_granularity(10000);
4508 }
4509
4510 static void __attribute__((destructor)) meshlink_exit(void) {
4511         crypto_exit();
4512 }