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