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