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