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