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