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