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