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