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