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