2 meshlink.c -- Implementation of the MeshLink API.
3 Copyright (C) 2014-2021 Guus Sliepen <guus@meshlink.io>
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.
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.
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.
27 #include "meshlink_internal.h"
39 #include "ed25519/sha512.h"
40 #include "discovery.h"
45 #define MSG_NOSIGNAL 0
47 __thread meshlink_errno_t meshlink_errno;
48 meshlink_log_cb_t global_log_cb;
49 meshlink_log_level_t global_log_level;
51 typedef bool (*search_node_by_condition_t)(const node_t *, const void *);
53 static int rstrip(char *value) {
54 int len = strlen(value);
56 while(len && strchr("\t\r\n ", value[len - 1])) {
63 static void get_canonical_address(node_t *n, char **hostname, char **port) {
64 if(!n->canonical_address) {
68 *hostname = xstrdup(n->canonical_address);
69 char *space = strchr(*hostname, ' ');
73 *port = xstrdup(space);
77 static bool is_valid_hostname(const char *hostname) {
82 for(const char *p = hostname; *p; p++) {
83 if(!(isalnum(*p) || *p == '-' || *p == '.' || *p == ':')) {
91 static bool is_valid_port(const char *port) {
98 unsigned long int result = strtoul(port, &end, 10);
99 return result && result < 65536 && !*end;
102 for(const char *p = port; *p; p++) {
103 if(!(isalnum(*p) || *p == '-')) {
111 static void set_timeout(int sock, int timeout) {
116 tv.tv_sec = timeout / 1000;
117 tv.tv_usec = (timeout - tv.tv_sec * 1000) * 1000;
119 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
120 setsockopt(sock, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv));
123 struct socket_in_netns_params {
132 static void *socket_in_netns_thread(void *arg) {
133 struct socket_in_netns_params *params = arg;
135 if(setns(params->netns, CLONE_NEWNET) == -1) {
136 meshlink_errno = MESHLINK_EINVAL;
140 params->fd = socket(params->domain, params->type, params->protocol);
146 static int socket_in_netns(int domain, int type, int protocol, int netns) {
148 return socket(domain, type, protocol);
152 struct socket_in_netns_params params = {domain, type, protocol, netns, -1};
156 if(pthread_create(&thr, NULL, socket_in_netns_thread, ¶ms) == 0) {
157 if(pthread_join(thr, NULL) != 0) {
169 // Find out what local address a socket would use if we connect to the given address.
170 // We do this using connect() on a UDP socket, so the kernel has to resolve the address
171 // of both endpoints, but this will actually not send any UDP packet.
172 static bool getlocaladdr(const char *destaddr, sockaddr_t *sa, socklen_t *salen, int netns) {
173 struct addrinfo *rai = NULL;
174 const struct addrinfo hint = {
175 .ai_family = AF_UNSPEC,
176 .ai_socktype = SOCK_DGRAM,
177 .ai_protocol = IPPROTO_UDP,
178 .ai_flags = AI_NUMERICHOST | AI_NUMERICSERV,
181 if(getaddrinfo(destaddr, "80", &hint, &rai) || !rai) {
185 int sock = socket_in_netns(rai->ai_family, rai->ai_socktype, rai->ai_protocol, netns);
192 if(connect(sock, rai->ai_addr, rai->ai_addrlen) && !sockwouldblock(errno)) {
200 if(getsockname(sock, &sa->sa, salen)) {
209 static bool getlocaladdrname(const char *destaddr, char *host, socklen_t hostlen, int netns) {
211 socklen_t salen = sizeof(sa);
213 if(!getlocaladdr(destaddr, &sa, &salen, netns)) {
217 if(getnameinfo(&sa.sa, salen, host, hostlen, NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV)) {
224 char *meshlink_get_external_address(meshlink_handle_t *mesh) {
225 return meshlink_get_external_address_for_family(mesh, AF_UNSPEC);
228 char *meshlink_get_external_address_for_family(meshlink_handle_t *mesh, int family) {
229 const char *url = mesh->external_address_url;
232 url = "http://meshlink.io/host.cgi";
235 /* Find the hostname part between the slashes */
236 if(strncmp(url, "http://", 7)) {
238 meshlink_errno = MESHLINK_EINTERNAL;
242 const char *begin = url + 7;
244 const char *end = strchr(begin, '/');
247 end = begin + strlen(begin);
251 char host[end - begin + 1];
252 strncpy(host, begin, end - begin);
253 host[end - begin] = 0;
255 char *port = strchr(host, ':');
261 logger(mesh, MESHLINK_DEBUG, "Trying to discover externally visible hostname...\n");
262 struct addrinfo *ai = adns_blocking_request(mesh, xstrdup(host), xstrdup(port ? port : "80"), SOCK_STREAM, 5);
264 char *hostname = NULL;
266 for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
267 if(family != AF_UNSPEC && aip->ai_family != family) {
271 int s = socket_in_netns(aip->ai_family, aip->ai_socktype, aip->ai_protocol, mesh->netns);
275 setsockopt(s, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe));
279 set_timeout(s, 5000);
281 if(connect(s, aip->ai_addr, aip->ai_addrlen)) {
288 send(s, "GET ", 4, 0);
289 send(s, url, strlen(url), 0);
290 send(s, " HTTP/1.0\r\n\r\n", 13, 0);
291 int len = recv(s, line, sizeof(line) - 1, MSG_WAITALL);
296 if(line[len - 1] == '\n') {
300 char *p = strrchr(line, '\n');
303 hostname = xstrdup(p + 1);
319 // Check that the hostname is reasonable
320 if(hostname && !is_valid_hostname(hostname)) {
326 meshlink_errno = MESHLINK_ERESOLV;
332 static bool is_localaddr(sockaddr_t *sa) {
333 switch(sa->sa.sa_family) {
335 return *(uint8_t *)(&sa->in.sin_addr.s_addr) == 127;
338 uint16_t first = sa->in6.sin6_addr.s6_addr[0] << 8 | sa->in6.sin6_addr.s6_addr[1];
339 return first == 0 || (first & 0xffc0) == 0xfe80;
347 #ifdef HAVE_GETIFADDRS
348 struct getifaddrs_in_netns_params {
349 struct ifaddrs **ifa;
354 static void *getifaddrs_in_netns_thread(void *arg) {
355 struct getifaddrs_in_netns_params *params = arg;
357 if(setns(params->netns, CLONE_NEWNET) == -1) {
358 meshlink_errno = MESHLINK_EINVAL;
362 if(getifaddrs(params->ifa) != 0) {
370 static int getifaddrs_in_netns(struct ifaddrs **ifa, int netns) {
372 return getifaddrs(ifa);
376 struct getifaddrs_in_netns_params params = {ifa, netns};
379 if(pthread_create(&thr, NULL, getifaddrs_in_netns_thread, ¶ms) == 0) {
380 if(pthread_join(thr, NULL) != 0) {
385 return *params.ifa ? 0 : -1;
393 char *meshlink_get_local_address_for_family(meshlink_handle_t *mesh, int family) {
395 meshlink_errno = MESHLINK_EINVAL;
399 // Determine address of the local interface used for outgoing connections.
400 char localaddr[NI_MAXHOST];
401 bool success = false;
403 if(family == AF_INET) {
404 success = getlocaladdrname("93.184.216.34", localaddr, sizeof(localaddr), mesh->netns);
405 } else if(family == AF_INET6) {
406 success = getlocaladdrname("2606:2800:220:1:248:1893:25c8:1946", localaddr, sizeof(localaddr), mesh->netns);
409 #ifdef HAVE_GETIFADDRS
412 struct ifaddrs *ifa = NULL;
413 getifaddrs_in_netns(&ifa, mesh->netns);
415 for(struct ifaddrs *ifap = ifa; ifap; ifap = ifap->ifa_next) {
416 sockaddr_t *sa = (sockaddr_t *)ifap->ifa_addr;
418 if(!sa || sa->sa.sa_family != family) {
422 if(is_localaddr(sa)) {
426 if(!getnameinfo(&sa->sa, SALEN(sa->sa), localaddr, sizeof(localaddr), NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV)) {
438 meshlink_errno = MESHLINK_ENETWORK;
442 return xstrdup(localaddr);
445 static void remove_duplicate_hostnames(char *host[], char *port[], int n) {
446 for(int i = 0; i < n; i++) {
451 // Ignore duplicate hostnames
454 for(int j = 0; j < i; j++) {
459 if(strcmp(host[i], host[j])) {
463 if(strcmp(port[i], port[j])) {
471 if(found || !is_valid_hostname(host[i])) {
481 // This gets the hostname part for use in invitation URLs
482 static char *get_my_hostname(meshlink_handle_t *mesh, uint32_t flags) {
483 int count = 4 + (mesh->invitation_addresses ? mesh->invitation_addresses->count : 0);
485 char *hostname[count];
487 char *hostport = NULL;
489 memset(hostname, 0, sizeof(hostname));
490 memset(port, 0, sizeof(port));
492 if(!(flags & (MESHLINK_INVITE_LOCAL | MESHLINK_INVITE_PUBLIC))) {
493 flags |= MESHLINK_INVITE_LOCAL | MESHLINK_INVITE_PUBLIC;
496 if(!(flags & (MESHLINK_INVITE_IPV4 | MESHLINK_INVITE_IPV6))) {
497 flags |= MESHLINK_INVITE_IPV4 | MESHLINK_INVITE_IPV6;
500 // Add all explicitly set invitation addresses
501 if(mesh->invitation_addresses) {
502 for list_each(char, combo, mesh->invitation_addresses) {
503 hostname[n] = xstrdup(combo);
504 char *slash = strrchr(hostname[n], '/');
508 port[n] = xstrdup(slash + 1);
515 // Add local addresses if requested
516 if(flags & MESHLINK_INVITE_LOCAL) {
517 if(flags & MESHLINK_INVITE_IPV4) {
518 hostname[n++] = meshlink_get_local_address_for_family(mesh, AF_INET);
521 if(flags & MESHLINK_INVITE_IPV6) {
522 hostname[n++] = meshlink_get_local_address_for_family(mesh, AF_INET6);
526 // Add public/canonical addresses if requested
527 if(flags & MESHLINK_INVITE_PUBLIC) {
528 // Try the CanonicalAddress first
529 get_canonical_address(mesh->self, &hostname[n], &port[n]);
531 if(!hostname[n] && count == 4) {
532 if(flags & MESHLINK_INVITE_IPV4) {
533 hostname[n++] = meshlink_get_external_address_for_family(mesh, AF_INET);
536 if(flags & MESHLINK_INVITE_IPV6) {
537 hostname[n++] = meshlink_get_external_address_for_family(mesh, AF_INET6);
544 for(int i = 0; i < n; i++) {
545 // Ensure we always have a port number
546 if(hostname[i] && !port[i]) {
547 port[i] = xstrdup(mesh->myport);
551 remove_duplicate_hostnames(hostname, port, n);
553 // Resolve the hostnames
554 for(int i = 0; i < n; i++) {
559 // Convert what we have to a sockaddr
560 struct addrinfo *ai_in = adns_blocking_request(mesh, xstrdup(hostname[i]), xstrdup(port[i]), SOCK_STREAM, 5);
566 // Remember the address(es)
567 for(struct addrinfo *aip = ai_in; aip; aip = aip->ai_next) {
568 node_add_recent_address(mesh, mesh->self, (sockaddr_t *)aip->ai_addr);
575 // Remove duplicates again, since IPv4 and IPv6 addresses might map to the same hostname
576 remove_duplicate_hostnames(hostname, port, n);
578 // Concatenate all unique address to the hostport string
579 for(int i = 0; i < n; i++) {
584 // Append the address to the hostport string
586 xasprintf(&newhostport, (strchr(hostname[i], ':') ? "%s%s[%s]:%s" : "%s%s%s:%s"), hostport ? hostport : "", hostport ? "," : "", hostname[i], port[i]);
588 hostport = newhostport;
597 static bool try_bind(meshlink_handle_t *mesh, int port) {
598 struct addrinfo *ai = NULL;
599 struct addrinfo hint = {
600 .ai_flags = AI_PASSIVE,
601 .ai_family = AF_UNSPEC,
602 .ai_socktype = SOCK_STREAM,
603 .ai_protocol = IPPROTO_TCP,
607 snprintf(portstr, sizeof(portstr), "%d", port);
609 if(getaddrinfo(NULL, portstr, &hint, &ai) || !ai) {
613 bool success = false;
615 for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
616 /* Try to bind to TCP. */
618 int tcp_fd = setup_tcp_listen_socket(mesh, aip);
621 if(errno == EADDRINUSE) {
622 /* If this port is in use for any address family, avoid it. */
630 /* If TCP worked, then we require that UDP works as well. */
632 int udp_fd = setup_udp_listen_socket(mesh, aip);
649 int check_port(meshlink_handle_t *mesh) {
650 for(int i = 0; i < 1000; i++) {
651 int port = 0x1000 + prng(mesh, 0x8000);
653 if(try_bind(mesh, port)) {
655 xasprintf(&mesh->myport, "%d", port);
660 meshlink_errno = MESHLINK_ENETWORK;
661 logger(mesh, MESHLINK_DEBUG, "Could not find any available network port.\n");
665 static bool write_main_config_files(meshlink_handle_t *mesh) {
666 if(!mesh->confbase) {
672 /* Write the main config file */
673 packmsg_output_t out = {buf, sizeof buf};
675 packmsg_add_uint32(&out, MESHLINK_CONFIG_VERSION);
676 packmsg_add_str(&out, mesh->name);
677 packmsg_add_bin(&out, ecdsa_get_private_key(mesh->private_key), 96);
678 packmsg_add_bin(&out, ecdsa_get_private_key(mesh->invitation_key), 96);
679 packmsg_add_uint16(&out, atoi(mesh->myport));
681 if(!packmsg_output_ok(&out)) {
685 config_t config = {buf, packmsg_output_size(&out, buf)};
687 if(!main_config_write(mesh, "current", &config, mesh->config_key)) {
691 /* Write our own host config file */
692 if(!node_write_config(mesh, mesh->self, true)) {
700 meshlink_handle_t *mesh;
702 char cookie[18 + 32];
713 static bool finalize_join(join_state_t *state, const void *buf, uint16_t len) {
714 meshlink_handle_t *mesh = state->mesh;
715 packmsg_input_t in = {buf, len};
716 uint32_t version = packmsg_get_uint32(&in);
718 if(version != MESHLINK_INVITATION_VERSION) {
719 logger(mesh, MESHLINK_ERROR, "Invalid invitation version!\n");
723 char *name = packmsg_get_str_dup(&in);
724 char *submesh_name = packmsg_get_str_dup(&in);
725 dev_class_t devclass = packmsg_get_int32(&in);
726 uint32_t count = packmsg_get_array(&in);
728 if(!name || !check_id(name)) {
729 logger(mesh, MESHLINK_DEBUG, "No valid Name found in invitation!\n");
735 if(!submesh_name || (strcmp(submesh_name, CORE_MESH) && !check_id(submesh_name))) {
736 logger(mesh, MESHLINK_DEBUG, "No valid Submesh found in invitation!\n");
743 logger(mesh, MESHLINK_ERROR, "Incomplete invitation file!\n");
750 free(mesh->self->name);
752 mesh->self->name = xstrdup(name);
753 mesh->self->submesh = strcmp(submesh_name, CORE_MESH) ? lookup_or_create_submesh(mesh, submesh_name) : NULL;
755 mesh->self->devclass = devclass == DEV_CLASS_UNKNOWN ? mesh->devclass : devclass;
757 // Initialize configuration directory
758 if(!config_init(mesh, "current")) {
762 if(!write_main_config_files(mesh)) {
766 // Write host config files
767 for(uint32_t i = 0; i < count; i++) {
769 uint32_t data_len = packmsg_get_bin_raw(&in, &data);
772 logger(mesh, MESHLINK_ERROR, "Incomplete invitation file!\n");
776 packmsg_input_t in2 = {data, data_len};
777 uint32_t version2 = packmsg_get_uint32(&in2);
778 char *name2 = packmsg_get_str_dup(&in2);
780 if(!packmsg_input_ok(&in2) || version2 != MESHLINK_CONFIG_VERSION || !check_id(name2)) {
782 packmsg_input_invalidate(&in);
786 if(!check_id(name2)) {
791 if(!strcmp(name2, mesh->name)) {
792 logger(mesh, MESHLINK_DEBUG, "Secondary chunk would overwrite our own host config file.\n");
794 meshlink_errno = MESHLINK_EPEER;
798 node_t *n = new_node();
801 config_t config = {data, data_len};
803 if(!node_read_from_config(mesh, n, &config)) {
805 logger(mesh, MESHLINK_ERROR, "Invalid host config file in invitation file!\n");
806 meshlink_errno = MESHLINK_EPEER;
811 /* The first host config file is of the inviter itself;
812 * remember the address we are currently using for the invitation connection.
815 socklen_t salen = sizeof(sa);
817 if(getpeername(state->sock, &sa.sa, &salen) == 0) {
818 node_add_recent_address(mesh, n, &sa);
822 /* Clear the reachability times, since we ourself have never seen these nodes yet */
823 n->last_reachable = 0;
824 n->last_unreachable = 0;
826 if(!node_write_config(mesh, n, true)) {
834 /* Ensure the configuration directory metadata is on disk */
835 if(!config_sync(mesh, "current") || (mesh->confbase && !sync_path(mesh->confbase))) {
839 if(!mesh->inviter_commits_first) {
840 devtool_set_inviter_commits_first(false);
843 sptps_send_record(&state->sptps, 1, ecdsa_get_public_key(mesh->private_key), 32);
845 logger(mesh, MESHLINK_DEBUG, "Configuration stored in: %s\n", mesh->confbase);
850 static bool invitation_send(void *handle, uint8_t type, const void *data, size_t len) {
852 join_state_t *state = handle;
853 const char *ptr = data;
856 int result = send(state->sock, ptr, len, 0);
858 if(result == -1 && errno == EINTR) {
860 } else if(result <= 0) {
871 static bool invitation_receive(void *handle, uint8_t type, const void *msg, uint16_t len) {
872 join_state_t *state = handle;
873 meshlink_handle_t *mesh = state->mesh;
875 if(mesh->inviter_commits_first) {
877 case SPTPS_HANDSHAKE:
878 return sptps_send_record(&state->sptps, 2, state->cookie, 18 + 32);
884 if(!finalize_join(state, msg, len)) {
888 logger(mesh, MESHLINK_DEBUG, "Invitation successfully accepted.\n");
889 shutdown(state->sock, SHUT_RDWR);
890 state->success = true;
898 case SPTPS_HANDSHAKE:
899 return sptps_send_record(&state->sptps, 0, state->cookie, 18);
902 return finalize_join(state, msg, len);
905 logger(mesh, MESHLINK_DEBUG, "Invitation successfully accepted.\n");
906 shutdown(state->sock, SHUT_RDWR);
907 state->success = true;
918 static bool recvline(join_state_t *state) {
919 char *newline = NULL;
921 while(!(newline = memchr(state->buffer, '\n', state->blen))) {
922 int result = recv(state->sock, state->buffer + state->blen, sizeof(state)->buffer - state->blen, 0);
924 if(result == -1 && errno == EINTR) {
926 } else if(result <= 0) {
930 state->blen += result;
933 if((size_t)(newline - state->buffer) >= sizeof(state->line)) {
937 size_t len = newline - state->buffer;
939 memcpy(state->line, state->buffer, len);
940 state->line[len] = 0;
941 memmove(state->buffer, newline + 1, state->blen - len - 1);
942 state->blen -= len + 1;
947 static bool sendline(int fd, const char *format, ...) {
953 va_start(ap, format);
954 blen = vsnprintf(buffer, sizeof(buffer), format, ap);
957 if(blen < 1 || (size_t)blen >= sizeof(buffer)) {
965 int result = send(fd, p, blen, MSG_NOSIGNAL);
967 if(result == -1 && errno == EINTR) {
969 } else if(result <= 0) {
980 static const char *errstr[] = {
981 [MESHLINK_OK] = "No error",
982 [MESHLINK_EINVAL] = "Invalid argument",
983 [MESHLINK_ENOMEM] = "Out of memory",
984 [MESHLINK_ENOENT] = "No such node",
985 [MESHLINK_EEXIST] = "Node already exists",
986 [MESHLINK_EINTERNAL] = "Internal error",
987 [MESHLINK_ERESOLV] = "Could not resolve hostname",
988 [MESHLINK_ESTORAGE] = "Storage error",
989 [MESHLINK_ENETWORK] = "Network error",
990 [MESHLINK_EPEER] = "Error communicating with peer",
991 [MESHLINK_ENOTSUP] = "Operation not supported",
992 [MESHLINK_EBUSY] = "MeshLink instance already in use",
993 [MESHLINK_EBLACKLISTED] = "Node is blacklisted",
996 const char *meshlink_strerror(meshlink_errno_t err) {
997 if((int)err < 0 || err >= sizeof(errstr) / sizeof(*errstr)) {
998 return "Invalid error code";
1004 static bool ecdsa_keygen(meshlink_handle_t *mesh) {
1005 logger(mesh, MESHLINK_DEBUG, "Generating ECDSA keypairs:\n");
1007 mesh->private_key = ecdsa_generate();
1008 mesh->invitation_key = ecdsa_generate();
1010 if(!mesh->private_key || !mesh->invitation_key) {
1011 logger(mesh, MESHLINK_DEBUG, "Error during key generation!\n");
1012 meshlink_errno = MESHLINK_EINTERNAL;
1016 logger(mesh, MESHLINK_DEBUG, "Done.\n");
1021 static bool timespec_lt(const struct timespec *a, const struct timespec *b) {
1022 if(a->tv_sec == b->tv_sec) {
1023 return a->tv_nsec < b->tv_nsec;
1025 return a->tv_sec < b->tv_sec;
1029 static struct timespec idle(event_loop_t *loop, void *data) {
1031 meshlink_handle_t *mesh = data;
1032 struct timespec t, tmin = {3600, 0};
1034 for splay_each(node_t, n, mesh->nodes) {
1039 t = utcp_timeout(n->utcp);
1041 if(timespec_lt(&t, &tmin)) {
1049 // Get our local address(es) by simulating connecting to an Internet host.
1050 static void add_local_addresses(meshlink_handle_t *mesh) {
1052 sa.storage.ss_family = AF_UNKNOWN;
1053 socklen_t salen = sizeof(sa);
1057 if(getlocaladdr("93.184.216.34", &sa, &salen, mesh->netns)) {
1058 sa.in.sin_port = ntohs(atoi(mesh->myport));
1059 node_add_recent_address(mesh, mesh->self, &sa);
1066 if(getlocaladdr("2606:2800:220:1:248:1893:25c8:1946", &sa, &salen, mesh->netns)) {
1067 sa.in6.sin6_port = ntohs(atoi(mesh->myport));
1068 node_add_recent_address(mesh, mesh->self, &sa);
1072 static bool meshlink_setup(meshlink_handle_t *mesh) {
1073 if(!config_destroy(mesh->confbase, "new")) {
1074 logger(mesh, MESHLINK_ERROR, "Could not delete configuration in %s/new: %s\n", mesh->confbase, strerror(errno));
1075 meshlink_errno = MESHLINK_ESTORAGE;
1079 if(!config_destroy(mesh->confbase, "old")) {
1080 logger(mesh, MESHLINK_ERROR, "Could not delete configuration in %s/old: %s\n", mesh->confbase, strerror(errno));
1081 meshlink_errno = MESHLINK_ESTORAGE;
1085 if(!config_init(mesh, "current")) {
1086 logger(mesh, MESHLINK_ERROR, "Could not set up configuration in %s/current: %s\n", mesh->confbase, strerror(errno));
1087 meshlink_errno = MESHLINK_ESTORAGE;
1091 if(!ecdsa_keygen(mesh)) {
1092 meshlink_errno = MESHLINK_EINTERNAL;
1096 if(check_port(mesh) == 0) {
1097 meshlink_errno = MESHLINK_ENETWORK;
1101 /* Create a node for ourself */
1103 mesh->self = new_node();
1104 mesh->self->name = xstrdup(mesh->name);
1105 mesh->self->devclass = mesh->devclass;
1106 mesh->self->ecdsa = ecdsa_set_public_key(ecdsa_get_public_key(mesh->private_key));
1107 mesh->self->session_id = mesh->session_id;
1109 if(!write_main_config_files(mesh)) {
1110 logger(mesh, MESHLINK_ERROR, "Could not write main config files into %s/current: %s\n", mesh->confbase, strerror(errno));
1111 meshlink_errno = MESHLINK_ESTORAGE;
1115 /* Ensure the configuration directory metadata is on disk */
1116 if(!config_sync(mesh, "current")) {
1123 static bool meshlink_read_config(meshlink_handle_t *mesh) {
1126 if(!main_config_read(mesh, "current", &config, mesh->config_key)) {
1127 logger(NULL, MESHLINK_ERROR, "Could not read main configuration file!");
1131 packmsg_input_t in = {config.buf, config.len};
1132 const void *private_key;
1133 const void *invitation_key;
1135 uint32_t version = packmsg_get_uint32(&in);
1136 char *name = packmsg_get_str_dup(&in);
1137 uint32_t private_key_len = packmsg_get_bin_raw(&in, &private_key);
1138 uint32_t invitation_key_len = packmsg_get_bin_raw(&in, &invitation_key);
1139 uint16_t myport = packmsg_get_uint16(&in);
1141 if(!packmsg_done(&in) || version != MESHLINK_CONFIG_VERSION || private_key_len != 96 || invitation_key_len != 96) {
1142 logger(NULL, MESHLINK_ERROR, "Error parsing main configuration file!");
1144 config_free(&config);
1148 if(mesh->name && strcmp(mesh->name, name)) {
1149 logger(NULL, MESHLINK_ERROR, "Configuration is for a different name (%s)!", name);
1150 meshlink_errno = MESHLINK_ESTORAGE;
1152 config_free(&config);
1158 xasprintf(&mesh->myport, "%u", myport);
1159 mesh->private_key = ecdsa_set_private_key(private_key);
1160 mesh->invitation_key = ecdsa_set_private_key(invitation_key);
1161 config_free(&config);
1163 /* Create a node for ourself and read our host configuration file */
1165 mesh->self = new_node();
1166 mesh->self->name = xstrdup(name);
1167 mesh->self->devclass = mesh->devclass;
1168 mesh->self->session_id = mesh->session_id;
1170 if(!node_read_public_key(mesh, mesh->self)) {
1171 logger(NULL, MESHLINK_ERROR, "Could not read our host configuration file!");
1172 meshlink_errno = MESHLINK_ESTORAGE;
1173 free_node(mesh->self);
1182 static void *setup_network_in_netns_thread(void *arg) {
1183 meshlink_handle_t *mesh = arg;
1185 if(setns(mesh->netns, CLONE_NEWNET) != 0) {
1189 bool success = setup_network(mesh);
1190 return success ? arg : NULL;
1192 #endif // HAVE_SETNS
1194 meshlink_open_params_t *meshlink_open_params_init(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
1195 if(!confbase || !*confbase) {
1196 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
1197 meshlink_errno = MESHLINK_EINVAL;
1201 if(!appname || !*appname) {
1202 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
1203 meshlink_errno = MESHLINK_EINVAL;
1207 if(strchr(appname, ' ')) {
1208 logger(NULL, MESHLINK_ERROR, "Invalid appname given!\n");
1209 meshlink_errno = MESHLINK_EINVAL;
1213 if(name && !check_id(name)) {
1214 logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
1215 meshlink_errno = MESHLINK_EINVAL;
1219 if(devclass < 0 || devclass >= DEV_CLASS_COUNT) {
1220 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
1221 meshlink_errno = MESHLINK_EINVAL;
1225 meshlink_open_params_t *params = xzalloc(sizeof * params);
1227 params->confbase = xstrdup(confbase);
1228 params->name = name ? xstrdup(name) : NULL;
1229 params->appname = xstrdup(appname);
1230 params->devclass = devclass;
1233 xasprintf(¶ms->lock_filename, "%s" SLASH "meshlink.lock", confbase);
1238 bool meshlink_open_params_set_netns(meshlink_open_params_t *params, int netns) {
1240 meshlink_errno = MESHLINK_EINVAL;
1244 params->netns = netns;
1249 bool meshlink_open_params_set_storage_key(meshlink_open_params_t *params, const void *key, size_t keylen) {
1251 meshlink_errno = MESHLINK_EINVAL;
1255 if((!key && keylen) || (key && !keylen)) {
1256 logger(NULL, MESHLINK_ERROR, "Invalid key length!\n");
1257 meshlink_errno = MESHLINK_EINVAL;
1262 params->keylen = keylen;
1267 bool meshlink_open_params_set_storage_policy(meshlink_open_params_t *params, meshlink_storage_policy_t policy) {
1269 meshlink_errno = MESHLINK_EINVAL;
1273 params->storage_policy = policy;
1278 bool meshlink_open_params_set_lock_filename(meshlink_open_params_t *params, const char *filename) {
1279 if(!params || !filename) {
1280 meshlink_errno = MESHLINK_EINVAL;
1284 free(params->lock_filename);
1285 params->lock_filename = xstrdup(filename);
1290 bool meshlink_encrypted_key_rotate(meshlink_handle_t *mesh, const void *new_key, size_t new_keylen) {
1291 if(!mesh || !new_key || !new_keylen) {
1292 logger(mesh, MESHLINK_ERROR, "Invalid arguments given!\n");
1293 meshlink_errno = MESHLINK_EINVAL;
1297 if(pthread_mutex_lock(&mesh->mutex) != 0) {
1301 // Create hash for the new key
1302 void *new_config_key;
1303 new_config_key = xmalloc(CHACHA_POLY1305_KEYLEN);
1305 if(!prf(new_key, new_keylen, "MeshLink configuration key", 26, new_config_key, CHACHA_POLY1305_KEYLEN)) {
1306 logger(mesh, MESHLINK_ERROR, "Error creating new configuration key!\n");
1307 meshlink_errno = MESHLINK_EINTERNAL;
1308 pthread_mutex_unlock(&mesh->mutex);
1312 // Copy contents of the "current" confbase sub-directory to "new" confbase sub-directory with the new key
1314 if(!config_copy(mesh, "current", mesh->config_key, "new", new_config_key)) {
1315 logger(mesh, MESHLINK_ERROR, "Could not set up configuration in %s/old: %s\n", mesh->confbase, strerror(errno));
1316 meshlink_errno = MESHLINK_ESTORAGE;
1317 pthread_mutex_unlock(&mesh->mutex);
1321 devtool_keyrotate_probe(1);
1323 // Rename confbase/current/ to confbase/old
1325 if(!config_rename(mesh, "current", "old")) {
1326 logger(mesh, MESHLINK_ERROR, "Cannot rename %s/current to %s/old\n", mesh->confbase, mesh->confbase);
1327 meshlink_errno = MESHLINK_ESTORAGE;
1328 pthread_mutex_unlock(&mesh->mutex);
1332 devtool_keyrotate_probe(2);
1334 // Rename confbase/new/ to confbase/current
1336 if(!config_rename(mesh, "new", "current")) {
1337 logger(mesh, MESHLINK_ERROR, "Cannot rename %s/new to %s/current\n", mesh->confbase, mesh->confbase);
1338 meshlink_errno = MESHLINK_ESTORAGE;
1339 pthread_mutex_unlock(&mesh->mutex);
1343 devtool_keyrotate_probe(3);
1345 // Cleanup the "old" confbase sub-directory
1347 if(!config_destroy(mesh->confbase, "old")) {
1348 pthread_mutex_unlock(&mesh->mutex);
1352 // Change the mesh handle key with new key
1354 free(mesh->config_key);
1355 mesh->config_key = new_config_key;
1357 pthread_mutex_unlock(&mesh->mutex);
1362 void meshlink_open_params_free(meshlink_open_params_t *params) {
1364 meshlink_errno = MESHLINK_EINVAL;
1368 free(params->confbase);
1370 free(params->appname);
1371 free(params->lock_filename);
1376 /// Device class traits
1377 static const dev_class_traits_t default_class_traits[DEV_CLASS_COUNT] = {
1378 { .pingtimeout = 5, .pinginterval = 60, .maxtimeout = 900, .min_connects = 3, .max_connects = 10000, .edge_weight = 1 }, // DEV_CLASS_BACKBONE
1379 { .pingtimeout = 5, .pinginterval = 60, .maxtimeout = 900, .min_connects = 3, .max_connects = 100, .edge_weight = 3 }, // DEV_CLASS_STATIONARY
1380 { .pingtimeout = 5, .pinginterval = 60, .maxtimeout = 900, .min_connects = 3, .max_connects = 3, .edge_weight = 6 }, // DEV_CLASS_PORTABLE
1381 { .pingtimeout = 5, .pinginterval = 60, .maxtimeout = 900, .min_connects = 1, .max_connects = 1, .edge_weight = 9 }, // DEV_CLASS_UNKNOWN
1384 meshlink_handle_t *meshlink_open(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
1385 if(!confbase || !*confbase) {
1386 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
1387 meshlink_errno = MESHLINK_EINVAL;
1391 char lock_filename[PATH_MAX];
1392 snprintf(lock_filename, sizeof(lock_filename), "%s" SLASH "meshlink.lock", confbase);
1394 /* Create a temporary struct on the stack, to avoid allocating and freeing one. */
1395 meshlink_open_params_t params = {
1396 .confbase = (char *)confbase,
1397 .lock_filename = lock_filename,
1398 .name = (char *)name,
1399 .appname = (char *)appname,
1400 .devclass = devclass,
1404 return meshlink_open_ex(¶ms);
1407 meshlink_handle_t *meshlink_open_encrypted(const char *confbase, const char *name, const char *appname, dev_class_t devclass, const void *key, size_t keylen) {
1408 if(!confbase || !*confbase) {
1409 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
1410 meshlink_errno = MESHLINK_EINVAL;
1414 char lock_filename[PATH_MAX];
1415 snprintf(lock_filename, sizeof(lock_filename), "%s" SLASH "meshlink.lock", confbase);
1417 /* Create a temporary struct on the stack, to avoid allocating and freeing one. */
1418 meshlink_open_params_t params = {
1419 .confbase = (char *)confbase,
1420 .lock_filename = lock_filename,
1421 .name = (char *)name,
1422 .appname = (char *)appname,
1423 .devclass = devclass,
1427 if(!meshlink_open_params_set_storage_key(¶ms, key, keylen)) {
1431 return meshlink_open_ex(¶ms);
1434 meshlink_handle_t *meshlink_open_ephemeral(const char *name, const char *appname, dev_class_t devclass) {
1436 logger(NULL, MESHLINK_ERROR, "No name given!\n");
1437 meshlink_errno = MESHLINK_EINVAL;
1441 if(!check_id(name)) {
1442 logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
1443 meshlink_errno = MESHLINK_EINVAL;
1447 if(!appname || !*appname) {
1448 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
1449 meshlink_errno = MESHLINK_EINVAL;
1453 if(strchr(appname, ' ')) {
1454 logger(NULL, MESHLINK_ERROR, "Invalid appname given!\n");
1455 meshlink_errno = MESHLINK_EINVAL;
1459 if(devclass < 0 || devclass >= DEV_CLASS_COUNT) {
1460 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
1461 meshlink_errno = MESHLINK_EINVAL;
1465 /* Create a temporary struct on the stack, to avoid allocating and freeing one. */
1466 meshlink_open_params_t params = {
1467 .name = (char *)name,
1468 .appname = (char *)appname,
1469 .devclass = devclass,
1473 return meshlink_open_ex(¶ms);
1476 meshlink_handle_t *meshlink_open_ex(const meshlink_open_params_t *params) {
1477 logger(NULL, MESHLINK_DEBUG, "meshlink_open called\n");
1479 // Validate arguments provided by the application
1480 if(!params->appname || !*params->appname) {
1481 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
1482 meshlink_errno = MESHLINK_EINVAL;
1486 if(strchr(params->appname, ' ')) {
1487 logger(NULL, MESHLINK_ERROR, "Invalid appname given!\n");
1488 meshlink_errno = MESHLINK_EINVAL;
1492 if(params->name && !check_id(params->name)) {
1493 logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
1494 meshlink_errno = MESHLINK_EINVAL;
1498 if(params->devclass < 0 || params->devclass >= DEV_CLASS_COUNT) {
1499 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
1500 meshlink_errno = MESHLINK_EINVAL;
1504 if((params->key && !params->keylen) || (!params->key && params->keylen)) {
1505 logger(NULL, MESHLINK_ERROR, "Invalid key length!\n");
1506 meshlink_errno = MESHLINK_EINVAL;
1510 meshlink_handle_t *mesh = xzalloc(sizeof(meshlink_handle_t));
1512 if(params->confbase) {
1513 mesh->confbase = xstrdup(params->confbase);
1516 mesh->appname = xstrdup(params->appname);
1517 mesh->devclass = params->devclass;
1518 mesh->discovery.enabled = true;
1519 mesh->invitation_timeout = 604800; // 1 week
1520 mesh->netns = params->netns;
1521 mesh->submeshes = NULL;
1522 mesh->log_cb = global_log_cb;
1523 mesh->log_level = global_log_level;
1524 mesh->packet = xmalloc(sizeof(vpn_packet_t));
1526 randomize(&mesh->prng_state, sizeof(mesh->prng_state));
1529 randomize(&mesh->session_id, sizeof(mesh->session_id));
1530 } while(mesh->session_id == 0);
1532 memcpy(mesh->dev_class_traits, default_class_traits, sizeof(default_class_traits));
1534 mesh->name = params->name ? xstrdup(params->name) : NULL;
1538 mesh->config_key = xmalloc(CHACHA_POLY1305_KEYLEN);
1540 if(!prf(params->key, params->keylen, "MeshLink configuration key", 26, mesh->config_key, CHACHA_POLY1305_KEYLEN)) {
1541 logger(NULL, MESHLINK_ERROR, "Error creating configuration key!\n");
1542 meshlink_close(mesh);
1543 meshlink_errno = MESHLINK_EINTERNAL;
1548 // initialize mutexes and conds
1549 pthread_mutexattr_t attr;
1550 pthread_mutexattr_init(&attr);
1552 if(pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE) != 0) {
1556 pthread_mutex_init(&mesh->mutex, &attr);
1557 pthread_cond_init(&mesh->cond, NULL);
1559 pthread_cond_init(&mesh->adns_cond, NULL);
1561 mesh->threadstarted = false;
1562 event_loop_init(&mesh->loop);
1563 mesh->loop.data = mesh;
1565 meshlink_queue_init(&mesh->outpacketqueue);
1567 // Atomically lock the configuration directory.
1568 if(!main_config_lock(mesh, params->lock_filename)) {
1569 meshlink_close(mesh);
1573 // If no configuration exists yet, create it.
1575 bool new_configuration = false;
1577 if(!meshlink_confbase_exists(mesh)) {
1579 logger(NULL, MESHLINK_ERROR, "No configuration files found!\n");
1580 meshlink_close(mesh);
1581 meshlink_errno = MESHLINK_ESTORAGE;
1585 if(!meshlink_setup(mesh)) {
1586 logger(NULL, MESHLINK_ERROR, "Cannot create initial configuration\n");
1587 meshlink_close(mesh);
1591 new_configuration = true;
1593 if(!meshlink_read_config(mesh)) {
1594 logger(NULL, MESHLINK_ERROR, "Cannot read main configuration\n");
1595 meshlink_close(mesh);
1600 mesh->storage_policy = params->storage_policy;
1603 struct WSAData wsa_state;
1604 WSAStartup(MAKEWORD(2, 2), &wsa_state);
1607 // Setup up everything
1608 // TODO: we should not open listening sockets yet
1610 bool success = false;
1612 if(mesh->netns != -1) {
1616 if(pthread_create(&thr, NULL, setup_network_in_netns_thread, mesh) == 0) {
1617 void *retval = NULL;
1618 success = pthread_join(thr, &retval) == 0 && retval;
1622 meshlink_errno = MESHLINK_EINTERNAL;
1625 #endif // HAVE_SETNS
1627 success = setup_network(mesh);
1631 meshlink_close(mesh);
1632 meshlink_errno = MESHLINK_ENETWORK;
1636 add_local_addresses(mesh);
1638 if(!node_write_config(mesh, mesh->self, new_configuration)) {
1639 logger(NULL, MESHLINK_ERROR, "Cannot update configuration\n");
1643 idle_set(&mesh->loop, idle, mesh);
1645 logger(NULL, MESHLINK_DEBUG, "meshlink_open returning\n");
1649 meshlink_submesh_t *meshlink_submesh_open(meshlink_handle_t *mesh, const char *submesh) {
1650 meshlink_submesh_t *s = NULL;
1653 logger(NULL, MESHLINK_ERROR, "No mesh handle given!\n");
1654 meshlink_errno = MESHLINK_EINVAL;
1658 if(!submesh || !*submesh) {
1659 logger(NULL, MESHLINK_ERROR, "No submesh name given!\n");
1660 meshlink_errno = MESHLINK_EINVAL;
1665 if(pthread_mutex_lock(&mesh->mutex) != 0) {
1669 s = (meshlink_submesh_t *)create_submesh(mesh, submesh);
1671 pthread_mutex_unlock(&mesh->mutex);
1676 static void *meshlink_main_loop(void *arg) {
1677 meshlink_handle_t *mesh = arg;
1679 if(mesh->netns != -1) {
1682 if(setns(mesh->netns, CLONE_NEWNET) != 0) {
1683 pthread_cond_signal(&mesh->cond);
1688 pthread_cond_signal(&mesh->cond);
1690 #endif // HAVE_SETNS
1693 if(mesh->discovery.enabled) {
1694 discovery_start(mesh);
1697 if(pthread_mutex_lock(&mesh->mutex) != 0) {
1701 logger(mesh, MESHLINK_DEBUG, "Starting main_loop...\n");
1702 pthread_cond_broadcast(&mesh->cond);
1704 logger(mesh, MESHLINK_DEBUG, "main_loop returned.\n");
1706 pthread_mutex_unlock(&mesh->mutex);
1709 if(mesh->discovery.enabled) {
1710 discovery_stop(mesh);
1716 bool meshlink_start(meshlink_handle_t *mesh) {
1718 meshlink_errno = MESHLINK_EINVAL;
1722 logger(mesh, MESHLINK_DEBUG, "meshlink_start called\n");
1724 if(pthread_mutex_lock(&mesh->mutex) != 0) {
1729 assert(mesh->private_key);
1730 assert(mesh->self->ecdsa);
1731 assert(!memcmp((uint8_t *)mesh->self->ecdsa + 64, (uint8_t *)mesh->private_key + 64, 32));
1733 if(mesh->threadstarted) {
1734 logger(mesh, MESHLINK_DEBUG, "thread was already running\n");
1735 pthread_mutex_unlock(&mesh->mutex);
1739 if(mesh->listen_socket[0].tcp.fd < 0) {
1740 logger(mesh, MESHLINK_ERROR, "Listening socket not open\n");
1741 meshlink_errno = MESHLINK_ENETWORK;
1745 // Reset node connection timers
1746 for splay_each(node_t, n, mesh->nodes) {
1747 n->last_connect_try = 0;
1750 // TODO: open listening sockets first
1752 //Check that a valid name is set
1754 logger(mesh, MESHLINK_DEBUG, "No name given!\n");
1755 meshlink_errno = MESHLINK_EINVAL;
1756 pthread_mutex_unlock(&mesh->mutex);
1760 init_outgoings(mesh);
1763 // Start the main thread
1765 event_loop_start(&mesh->loop);
1767 // Ensure we have a decent amount of stack space. Musl's default of 80 kB is too small.
1768 pthread_attr_t attr;
1769 pthread_attr_init(&attr);
1770 pthread_attr_setstacksize(&attr, 1024 * 1024);
1772 if(pthread_create(&mesh->thread, &attr, meshlink_main_loop, mesh) != 0) {
1773 logger(mesh, MESHLINK_DEBUG, "Could not start thread: %s\n", strerror(errno));
1774 memset(&mesh->thread, 0, sizeof(mesh)->thread);
1775 meshlink_errno = MESHLINK_EINTERNAL;
1776 event_loop_stop(&mesh->loop);
1777 pthread_mutex_unlock(&mesh->mutex);
1781 pthread_cond_wait(&mesh->cond, &mesh->mutex);
1782 mesh->threadstarted = true;
1784 // Ensure we are considered reachable
1787 pthread_mutex_unlock(&mesh->mutex);
1791 void meshlink_stop(meshlink_handle_t *mesh) {
1793 meshlink_errno = MESHLINK_EINVAL;
1797 if(pthread_mutex_lock(&mesh->mutex) != 0) {
1801 logger(mesh, MESHLINK_DEBUG, "meshlink_stop called\n");
1803 // Shut down the main thread
1804 event_loop_stop(&mesh->loop);
1806 // Send ourselves a UDP packet to kick the event loop
1807 for(int i = 0; i < mesh->listen_sockets; i++) {
1809 socklen_t salen = sizeof(sa);
1811 if(getsockname(mesh->listen_socket[i].udp.fd, &sa.sa, &salen) == -1) {
1812 logger(mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "getsockname", sockstrerror(sockerrno));
1816 if(sendto(mesh->listen_socket[i].udp.fd, "", 1, MSG_NOSIGNAL, &sa.sa, salen) == -1) {
1817 logger(mesh, MESHLINK_ERROR, "Could not send a UDP packet to ourself: %s", sockstrerror(sockerrno));
1821 if(mesh->threadstarted) {
1822 // Wait for the main thread to finish
1823 pthread_mutex_unlock(&mesh->mutex);
1825 if(pthread_join(mesh->thread, NULL) != 0) {
1829 if(pthread_mutex_lock(&mesh->mutex) != 0) {
1833 mesh->threadstarted = false;
1836 // Close all metaconnections
1837 if(mesh->connections) {
1838 for(list_node_t *node = mesh->connections->head, *next; node; node = next) {
1840 connection_t *c = node->data;
1842 terminate_connection(mesh, c, false);
1847 exit_outgoings(mesh);
1849 // Ensure we are considered unreachable
1854 // Try to write out any changed node config files, ignore errors at this point.
1856 for splay_each(node_t, n, mesh->nodes) {
1857 if(n->status.dirty) {
1858 if(!node_write_config(mesh, n, false)) {
1865 pthread_mutex_unlock(&mesh->mutex);
1868 void meshlink_close(meshlink_handle_t *mesh) {
1870 meshlink_errno = MESHLINK_EINVAL;
1874 // stop can be called even if mesh has not been started
1875 meshlink_stop(mesh);
1877 // lock is not released after this
1878 if(pthread_mutex_lock(&mesh->mutex) != 0) {
1882 // Close and free all resources used.
1884 close_network_connections(mesh);
1886 logger(mesh, MESHLINK_INFO, "Terminating");
1888 event_loop_exit(&mesh->loop);
1892 if(mesh->confbase) {
1898 ecdsa_free(mesh->invitation_key);
1900 if(mesh->netns != -1) {
1904 for(vpn_packet_t *packet; (packet = meshlink_queue_pop(&mesh->outpacketqueue));) {
1908 meshlink_queue_exit(&mesh->outpacketqueue);
1911 free(mesh->appname);
1912 free(mesh->confbase);
1913 free(mesh->config_key);
1914 free(mesh->external_address_url);
1916 ecdsa_free(mesh->private_key);
1918 if(mesh->invitation_addresses) {
1919 list_delete_list(mesh->invitation_addresses);
1922 main_config_unlock(mesh);
1924 pthread_mutex_unlock(&mesh->mutex);
1925 pthread_mutex_destroy(&mesh->mutex);
1927 memset(mesh, 0, sizeof(*mesh));
1932 bool meshlink_destroy_ex(const meshlink_open_params_t *params) {
1934 meshlink_errno = MESHLINK_EINVAL;
1938 if(!params->confbase) {
1939 /* Ephemeral instances */
1943 /* Exit early if the confbase directory itself doesn't exist */
1944 if(access(params->confbase, F_OK) && errno == ENOENT) {
1948 /* Take the lock the same way meshlink_open() would. */
1949 FILE *lockfile = fopen(params->lock_filename, "w+");
1952 logger(NULL, MESHLINK_ERROR, "Could not open lock file %s: %s", params->lock_filename, strerror(errno));
1953 meshlink_errno = MESHLINK_ESTORAGE;
1958 fcntl(fileno(lockfile), F_SETFD, FD_CLOEXEC);
1962 // TODO: use _locking()?
1965 if(flock(fileno(lockfile), LOCK_EX | LOCK_NB) != 0) {
1966 logger(NULL, MESHLINK_ERROR, "Configuration directory %s still in use\n", params->lock_filename);
1968 meshlink_errno = MESHLINK_EBUSY;
1974 if(!config_destroy(params->confbase, "current") || !config_destroy(params->confbase, "new") || !config_destroy(params->confbase, "old")) {
1975 logger(NULL, MESHLINK_ERROR, "Cannot remove sub-directories in %s: %s\n", params->confbase, strerror(errno));
1979 if(unlink(params->lock_filename)) {
1980 logger(NULL, MESHLINK_ERROR, "Cannot remove lock file %s: %s\n", params->lock_filename, strerror(errno));
1982 meshlink_errno = MESHLINK_ESTORAGE;
1988 if(!sync_path(params->confbase)) {
1989 logger(NULL, MESHLINK_ERROR, "Cannot sync directory %s: %s\n", params->confbase, strerror(errno));
1990 meshlink_errno = MESHLINK_ESTORAGE;
1997 bool meshlink_destroy(const char *confbase) {
1998 char lock_filename[PATH_MAX];
1999 snprintf(lock_filename, sizeof(lock_filename), "%s" SLASH "meshlink.lock", confbase);
2001 meshlink_open_params_t params = {
2002 .confbase = (char *)confbase,
2003 .lock_filename = lock_filename,
2006 return meshlink_destroy_ex(¶ms);
2009 void meshlink_set_receive_cb(meshlink_handle_t *mesh, meshlink_receive_cb_t cb) {
2011 meshlink_errno = MESHLINK_EINVAL;
2015 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2019 mesh->receive_cb = cb;
2020 pthread_mutex_unlock(&mesh->mutex);
2023 void meshlink_set_connection_try_cb(meshlink_handle_t *mesh, meshlink_connection_try_cb_t cb) {
2025 meshlink_errno = MESHLINK_EINVAL;
2029 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2033 mesh->connection_try_cb = cb;
2034 pthread_mutex_unlock(&mesh->mutex);
2037 void meshlink_set_node_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
2039 meshlink_errno = MESHLINK_EINVAL;
2043 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2047 mesh->node_status_cb = cb;
2048 pthread_mutex_unlock(&mesh->mutex);
2051 void meshlink_set_node_pmtu_cb(meshlink_handle_t *mesh, meshlink_node_pmtu_cb_t cb) {
2053 meshlink_errno = MESHLINK_EINVAL;
2057 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2061 mesh->node_pmtu_cb = cb;
2062 pthread_mutex_unlock(&mesh->mutex);
2065 void meshlink_set_node_duplicate_cb(meshlink_handle_t *mesh, meshlink_node_duplicate_cb_t cb) {
2067 meshlink_errno = MESHLINK_EINVAL;
2071 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2075 mesh->node_duplicate_cb = cb;
2076 pthread_mutex_unlock(&mesh->mutex);
2079 void meshlink_set_log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, meshlink_log_cb_t cb) {
2081 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2086 mesh->log_level = cb ? level : 0;
2087 pthread_mutex_unlock(&mesh->mutex);
2090 global_log_level = cb ? level : 0;
2094 void meshlink_set_error_cb(struct meshlink_handle *mesh, meshlink_error_cb_t cb) {
2096 meshlink_errno = MESHLINK_EINVAL;
2100 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2104 mesh->error_cb = cb;
2105 pthread_mutex_unlock(&mesh->mutex);
2108 void meshlink_set_blacklisted_cb(struct meshlink_handle *mesh, meshlink_blacklisted_cb_t cb) {
2110 meshlink_errno = MESHLINK_EINVAL;
2114 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2118 mesh->blacklisted_cb = cb;
2119 pthread_mutex_unlock(&mesh->mutex);
2122 static bool prepare_packet(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len, vpn_packet_t *packet) {
2123 meshlink_packethdr_t *hdr;
2125 if(len > MAXSIZE - sizeof(*hdr)) {
2126 meshlink_errno = MESHLINK_EINVAL;
2130 node_t *n = (node_t *)destination;
2132 if(n->status.blacklisted) {
2133 logger(mesh, MESHLINK_ERROR, "Node %s blacklisted, dropping packet\n", n->name);
2134 meshlink_errno = MESHLINK_EBLACKLISTED;
2138 // Prepare the packet
2139 packet->probe = false;
2140 packet->tcp = false;
2141 packet->len = len + sizeof(*hdr);
2143 hdr = (meshlink_packethdr_t *)packet->data;
2144 memset(hdr, 0, sizeof(*hdr));
2145 // leave the last byte as 0 to make sure strings are always
2146 // null-terminated if they are longer than the buffer
2147 strncpy((char *)hdr->destination, destination->name, sizeof(hdr->destination) - 1);
2148 strncpy((char *)hdr->source, mesh->self->name, sizeof(hdr->source) - 1);
2150 memcpy(packet->data + sizeof(*hdr), data, len);
2155 static bool meshlink_send_immediate(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len) {
2157 assert(destination);
2161 // Prepare the packet
2162 if(!prepare_packet(mesh, destination, data, len, mesh->packet)) {
2166 // Send it immediately
2167 route(mesh, mesh->self, mesh->packet);
2172 bool meshlink_send(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len) {
2173 // Validate arguments
2174 if(!mesh || !destination) {
2175 meshlink_errno = MESHLINK_EINVAL;
2184 meshlink_errno = MESHLINK_EINVAL;
2188 // Prepare the packet
2189 vpn_packet_t *packet = malloc(sizeof(*packet));
2192 meshlink_errno = MESHLINK_ENOMEM;
2196 if(!prepare_packet(mesh, destination, data, len, packet)) {
2202 if(!meshlink_queue_push(&mesh->outpacketqueue, packet)) {
2204 meshlink_errno = MESHLINK_ENOMEM;
2208 logger(mesh, MESHLINK_DEBUG, "Adding packet of %zu bytes to packet queue", len);
2210 // Notify event loop
2211 signal_trigger(&mesh->loop, &mesh->datafromapp);
2216 void meshlink_send_from_queue(event_loop_t *loop, void *data) {
2218 meshlink_handle_t *mesh = data;
2220 logger(mesh, MESHLINK_DEBUG, "Flushing the packet queue");
2222 for(vpn_packet_t *packet; (packet = meshlink_queue_pop(&mesh->outpacketqueue));) {
2223 logger(mesh, MESHLINK_DEBUG, "Removing packet of %d bytes from packet queue", packet->len);
2224 mesh->self->in_packets++;
2225 mesh->self->in_bytes += packet->len;
2226 route(mesh, mesh->self, packet);
2231 ssize_t meshlink_get_pmtu(meshlink_handle_t *mesh, meshlink_node_t *destination) {
2232 if(!mesh || !destination) {
2233 meshlink_errno = MESHLINK_EINVAL;
2237 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2241 node_t *n = (node_t *)destination;
2243 if(!n->status.reachable) {
2244 pthread_mutex_unlock(&mesh->mutex);
2247 } else if(n->mtuprobes > 30 && n->minmtu) {
2248 pthread_mutex_unlock(&mesh->mutex);
2251 pthread_mutex_unlock(&mesh->mutex);
2256 char *meshlink_get_fingerprint(meshlink_handle_t *mesh, meshlink_node_t *node) {
2257 if(!mesh || !node) {
2258 meshlink_errno = MESHLINK_EINVAL;
2262 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2266 node_t *n = (node_t *)node;
2268 if(!node_read_public_key(mesh, n) || !n->ecdsa) {
2269 meshlink_errno = MESHLINK_EINTERNAL;
2270 pthread_mutex_unlock(&mesh->mutex);
2274 char *fingerprint = ecdsa_get_base64_public_key(n->ecdsa);
2277 meshlink_errno = MESHLINK_EINTERNAL;
2280 pthread_mutex_unlock(&mesh->mutex);
2284 meshlink_node_t *meshlink_get_self(meshlink_handle_t *mesh) {
2286 meshlink_errno = MESHLINK_EINVAL;
2290 return (meshlink_node_t *)mesh->self;
2293 meshlink_node_t *meshlink_get_node(meshlink_handle_t *mesh, const char *name) {
2294 if(!mesh || !name) {
2295 meshlink_errno = MESHLINK_EINVAL;
2301 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2305 n = lookup_node(mesh, (char *)name); // TODO: make lookup_node() use const
2306 pthread_mutex_unlock(&mesh->mutex);
2309 meshlink_errno = MESHLINK_ENOENT;
2312 return (meshlink_node_t *)n;
2315 meshlink_submesh_t *meshlink_get_submesh(meshlink_handle_t *mesh, const char *name) {
2316 if(!mesh || !name) {
2317 meshlink_errno = MESHLINK_EINVAL;
2321 meshlink_submesh_t *submesh = NULL;
2323 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2327 submesh = (meshlink_submesh_t *)lookup_submesh(mesh, name);
2328 pthread_mutex_unlock(&mesh->mutex);
2331 meshlink_errno = MESHLINK_ENOENT;
2337 meshlink_node_t **meshlink_get_all_nodes(meshlink_handle_t *mesh, meshlink_node_t **nodes, size_t *nmemb) {
2338 if(!mesh || !nmemb || (*nmemb && !nodes)) {
2339 meshlink_errno = MESHLINK_EINVAL;
2343 meshlink_node_t **result;
2346 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2350 *nmemb = mesh->nodes->count;
2351 result = realloc(nodes, *nmemb * sizeof(*nodes));
2354 meshlink_node_t **p = result;
2356 for splay_each(node_t, n, mesh->nodes) {
2357 *p++ = (meshlink_node_t *)n;
2362 meshlink_errno = MESHLINK_ENOMEM;
2365 pthread_mutex_unlock(&mesh->mutex);
2370 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) {
2371 meshlink_node_t **result;
2373 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2379 for splay_each(node_t, n, mesh->nodes) {
2380 if(search_node(n, condition)) {
2387 pthread_mutex_unlock(&mesh->mutex);
2391 result = realloc(nodes, *nmemb * sizeof(*nodes));
2394 meshlink_node_t **p = result;
2396 for splay_each(node_t, n, mesh->nodes) {
2397 if(search_node(n, condition)) {
2398 *p++ = (meshlink_node_t *)n;
2404 meshlink_errno = MESHLINK_ENOMEM;
2407 pthread_mutex_unlock(&mesh->mutex);
2412 static bool search_node_by_dev_class(const node_t *node, const void *condition) {
2413 dev_class_t *devclass = (dev_class_t *)condition;
2415 if(*devclass == (dev_class_t)node->devclass) {
2422 static bool search_node_by_blacklisted(const node_t *node, const void *condition) {
2423 return *(bool *)condition == node->status.blacklisted;
2426 static bool search_node_by_submesh(const node_t *node, const void *condition) {
2427 if(condition == node->submesh) {
2439 static bool search_node_by_last_reachable(const node_t *node, const void *condition) {
2440 const struct time_range *range = condition;
2441 time_t start = node->last_reachable;
2442 time_t end = node->last_unreachable;
2452 if(range->end >= range->start) {
2453 return start <= range->end && end >= range->start;
2455 return start > range->start || end < range->end;
2459 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) {
2460 if(!mesh || devclass < 0 || devclass >= DEV_CLASS_COUNT || !nmemb) {
2461 meshlink_errno = MESHLINK_EINVAL;
2465 return meshlink_get_all_nodes_by_condition(mesh, &devclass, nodes, nmemb, search_node_by_dev_class);
2468 meshlink_node_t **meshlink_get_all_nodes_by_submesh(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, meshlink_node_t **nodes, size_t *nmemb) {
2469 if(!mesh || !submesh || !nmemb) {
2470 meshlink_errno = MESHLINK_EINVAL;
2474 return meshlink_get_all_nodes_by_condition(mesh, submesh, nodes, nmemb, search_node_by_submesh);
2477 meshlink_node_t **meshlink_get_all_nodes_by_last_reachable(meshlink_handle_t *mesh, time_t start, time_t end, meshlink_node_t **nodes, size_t *nmemb) {
2478 if(!mesh || !nmemb) {
2479 meshlink_errno = MESHLINK_EINVAL;
2483 struct time_range range = {start, end};
2485 return meshlink_get_all_nodes_by_condition(mesh, &range, nodes, nmemb, search_node_by_last_reachable);
2488 meshlink_node_t **meshlink_get_all_nodes_by_blacklisted(meshlink_handle_t *mesh, bool blacklisted, meshlink_node_t **nodes, size_t *nmemb) {
2489 if(!mesh || !nmemb) {
2490 meshlink_errno = MESHLINK_EINVAL;
2494 return meshlink_get_all_nodes_by_condition(mesh, &blacklisted, nodes, nmemb, search_node_by_blacklisted);
2497 dev_class_t meshlink_get_node_dev_class(meshlink_handle_t *mesh, meshlink_node_t *node) {
2498 if(!mesh || !node) {
2499 meshlink_errno = MESHLINK_EINVAL;
2503 dev_class_t devclass;
2505 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2509 devclass = ((node_t *)node)->devclass;
2511 pthread_mutex_unlock(&mesh->mutex);
2516 bool meshlink_get_node_blacklisted(meshlink_handle_t *mesh, meshlink_node_t *node) {
2518 meshlink_errno = MESHLINK_EINVAL;
2522 return mesh->default_blacklist;
2527 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2531 blacklisted = ((node_t *)node)->status.blacklisted;
2533 pthread_mutex_unlock(&mesh->mutex);
2538 meshlink_submesh_t *meshlink_get_node_submesh(meshlink_handle_t *mesh, meshlink_node_t *node) {
2539 if(!mesh || !node) {
2540 meshlink_errno = MESHLINK_EINVAL;
2544 node_t *n = (node_t *)node;
2546 meshlink_submesh_t *s;
2548 s = (meshlink_submesh_t *)n->submesh;
2553 bool meshlink_get_node_reachability(struct meshlink_handle *mesh, struct meshlink_node *node, time_t *last_reachable, time_t *last_unreachable) {
2554 if(!mesh || !node) {
2555 meshlink_errno = MESHLINK_EINVAL;
2559 node_t *n = (node_t *)node;
2562 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2566 reachable = n->status.reachable && !n->status.blacklisted;
2568 if(last_reachable) {
2569 *last_reachable = n->last_reachable;
2572 if(last_unreachable) {
2573 *last_unreachable = n->last_unreachable;
2576 pthread_mutex_unlock(&mesh->mutex);
2581 bool meshlink_sign(meshlink_handle_t *mesh, const void *data, size_t len, void *signature, size_t *siglen) {
2582 if(!mesh || !data || !len || !signature || !siglen) {
2583 meshlink_errno = MESHLINK_EINVAL;
2587 if(*siglen < MESHLINK_SIGLEN) {
2588 meshlink_errno = MESHLINK_EINVAL;
2592 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2596 if(!ecdsa_sign(mesh->private_key, data, len, signature)) {
2597 meshlink_errno = MESHLINK_EINTERNAL;
2598 pthread_mutex_unlock(&mesh->mutex);
2602 *siglen = MESHLINK_SIGLEN;
2603 pthread_mutex_unlock(&mesh->mutex);
2607 bool meshlink_verify(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len, const void *signature, size_t siglen) {
2608 if(!mesh || !source || !data || !len || !signature) {
2609 meshlink_errno = MESHLINK_EINVAL;
2613 if(siglen != MESHLINK_SIGLEN) {
2614 meshlink_errno = MESHLINK_EINVAL;
2618 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2624 struct node_t *n = (struct node_t *)source;
2626 if(!node_read_public_key(mesh, n)) {
2627 meshlink_errno = MESHLINK_EINTERNAL;
2630 rval = ecdsa_verify(((struct node_t *)source)->ecdsa, data, len, signature);
2633 pthread_mutex_unlock(&mesh->mutex);
2637 static bool refresh_invitation_key(meshlink_handle_t *mesh) {
2638 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2642 size_t count = invitation_purge_old(mesh, time(NULL) - mesh->invitation_timeout);
2645 // TODO: Update invitation key if necessary?
2648 pthread_mutex_unlock(&mesh->mutex);
2650 return mesh->invitation_key;
2653 bool meshlink_set_canonical_address(meshlink_handle_t *mesh, meshlink_node_t *node, const char *address, const char *port) {
2654 if(!mesh || !node || !address) {
2655 meshlink_errno = MESHLINK_EINVAL;
2659 if(!is_valid_hostname(address)) {
2660 logger(mesh, MESHLINK_DEBUG, "Invalid character in address: %s", address);
2661 meshlink_errno = MESHLINK_EINVAL;
2665 if((node_t *)node != mesh->self && !port) {
2666 logger(mesh, MESHLINK_DEBUG, "Missing port number!");
2667 meshlink_errno = MESHLINK_EINVAL;
2672 if(port && !is_valid_port(port)) {
2673 logger(mesh, MESHLINK_DEBUG, "Invalid character in port: %s", address);
2674 meshlink_errno = MESHLINK_EINVAL;
2678 char *canonical_address;
2680 xasprintf(&canonical_address, "%s %s", address, port ? port : mesh->myport);
2682 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2686 node_t *n = (node_t *)node;
2687 free(n->canonical_address);
2688 n->canonical_address = canonical_address;
2690 if(!node_write_config(mesh, n, false)) {
2691 pthread_mutex_unlock(&mesh->mutex);
2695 pthread_mutex_unlock(&mesh->mutex);
2697 return config_sync(mesh, "current");
2700 bool meshlink_clear_canonical_address(meshlink_handle_t *mesh, meshlink_node_t *node) {
2701 if(!mesh || !node) {
2702 meshlink_errno = MESHLINK_EINVAL;
2706 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2710 node_t *n = (node_t *)node;
2711 free(n->canonical_address);
2712 n->canonical_address = NULL;
2714 if(!node_write_config(mesh, n, false)) {
2715 pthread_mutex_unlock(&mesh->mutex);
2719 pthread_mutex_unlock(&mesh->mutex);
2721 return config_sync(mesh, "current");
2724 bool meshlink_add_invitation_address(struct meshlink_handle *mesh, const char *address, const char *port) {
2725 if(!mesh || !address) {
2726 meshlink_errno = MESHLINK_EINVAL;
2730 if(!is_valid_hostname(address)) {
2731 logger(mesh, MESHLINK_DEBUG, "Invalid character in address: %s\n", address);
2732 meshlink_errno = MESHLINK_EINVAL;
2736 if(port && !is_valid_port(port)) {
2737 logger(mesh, MESHLINK_DEBUG, "Invalid character in port: %s\n", address);
2738 meshlink_errno = MESHLINK_EINVAL;
2745 xasprintf(&combo, "%s/%s", address, port);
2747 combo = xstrdup(address);
2750 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2754 if(!mesh->invitation_addresses) {
2755 mesh->invitation_addresses = list_alloc((list_action_t)free);
2758 list_insert_tail(mesh->invitation_addresses, combo);
2759 pthread_mutex_unlock(&mesh->mutex);
2764 void meshlink_clear_invitation_addresses(struct meshlink_handle *mesh) {
2766 meshlink_errno = MESHLINK_EINVAL;
2770 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2774 if(mesh->invitation_addresses) {
2775 list_delete_list(mesh->invitation_addresses);
2776 mesh->invitation_addresses = NULL;
2779 pthread_mutex_unlock(&mesh->mutex);
2782 bool meshlink_add_address(meshlink_handle_t *mesh, const char *address) {
2783 return meshlink_set_canonical_address(mesh, (meshlink_node_t *)mesh->self, address, NULL);
2786 bool meshlink_add_external_address(meshlink_handle_t *mesh) {
2788 meshlink_errno = MESHLINK_EINVAL;
2792 char *address = meshlink_get_external_address(mesh);
2798 bool rval = meshlink_set_canonical_address(mesh, (meshlink_node_t *)mesh->self, address, NULL);
2804 int meshlink_get_port(meshlink_handle_t *mesh) {
2806 meshlink_errno = MESHLINK_EINVAL;
2811 meshlink_errno = MESHLINK_EINTERNAL;
2817 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2821 port = atoi(mesh->myport);
2822 pthread_mutex_unlock(&mesh->mutex);
2827 bool meshlink_set_port(meshlink_handle_t *mesh, int port) {
2828 if(!mesh || port < 0 || port >= 65536 || mesh->threadstarted) {
2829 meshlink_errno = MESHLINK_EINVAL;
2833 if(mesh->myport && port == atoi(mesh->myport)) {
2837 if(!try_bind(mesh, port)) {
2838 meshlink_errno = MESHLINK_ENETWORK;
2842 devtool_trybind_probe();
2846 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2850 if(mesh->threadstarted) {
2851 meshlink_errno = MESHLINK_EINVAL;
2856 xasprintf(&mesh->myport, "%d", port);
2858 /* Close down the network. This also deletes mesh->self. */
2859 close_network_connections(mesh);
2861 /* Recreate mesh->self. */
2862 mesh->self = new_node();
2863 mesh->self->name = xstrdup(mesh->name);
2864 mesh->self->devclass = mesh->devclass;
2865 mesh->self->session_id = mesh->session_id;
2866 xasprintf(&mesh->myport, "%d", port);
2868 if(!node_read_public_key(mesh, mesh->self)) {
2869 logger(NULL, MESHLINK_ERROR, "Could not read our host configuration file!");
2870 meshlink_errno = MESHLINK_ESTORAGE;
2871 free_node(mesh->self);
2874 } else if(!setup_network(mesh)) {
2875 meshlink_errno = MESHLINK_ENETWORK;
2879 /* Rebuild our own list of recent addresses */
2880 memset(mesh->self->recent, 0, sizeof(mesh->self->recent));
2881 add_local_addresses(mesh);
2883 /* Write meshlink.conf with the updated port number */
2884 write_main_config_files(mesh);
2886 rval = config_sync(mesh, "current");
2889 pthread_mutex_unlock(&mesh->mutex);
2891 return rval && meshlink_get_port(mesh) == port;
2894 void meshlink_set_invitation_timeout(meshlink_handle_t *mesh, int timeout) {
2895 mesh->invitation_timeout = timeout;
2898 char *meshlink_invite_ex(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, const char *name, uint32_t flags) {
2899 meshlink_submesh_t *s = NULL;
2902 meshlink_errno = MESHLINK_EINVAL;
2907 s = (meshlink_submesh_t *)lookup_submesh(mesh, submesh->name);
2910 logger(mesh, MESHLINK_DEBUG, "Invalid SubMesh Handle.\n");
2911 meshlink_errno = MESHLINK_EINVAL;
2915 s = (meshlink_submesh_t *)mesh->self->submesh;
2918 if(pthread_mutex_lock(&mesh->mutex) != 0) {
2922 // Check validity of the new node's name
2923 if(!check_id(name)) {
2924 logger(mesh, MESHLINK_ERROR, "Invalid name for node.\n");
2925 meshlink_errno = MESHLINK_EINVAL;
2926 pthread_mutex_unlock(&mesh->mutex);
2930 // Ensure no host configuration file with that name exists
2931 if(config_exists(mesh, "current", name)) {
2932 logger(mesh, MESHLINK_ERROR, "A host config file for %s already exists!\n", name);
2933 meshlink_errno = MESHLINK_EEXIST;
2934 pthread_mutex_unlock(&mesh->mutex);
2938 // Ensure no other nodes know about this name
2939 if(lookup_node(mesh, name)) {
2940 logger(mesh, MESHLINK_ERROR, "A node with name %s is already known!\n", name);
2941 meshlink_errno = MESHLINK_EEXIST;
2942 pthread_mutex_unlock(&mesh->mutex);
2946 // Get the local address
2947 char *address = get_my_hostname(mesh, flags);
2950 logger(mesh, MESHLINK_ERROR, "No Address known for ourselves!\n");
2951 meshlink_errno = MESHLINK_ERESOLV;
2952 pthread_mutex_unlock(&mesh->mutex);
2956 if(!refresh_invitation_key(mesh)) {
2957 meshlink_errno = MESHLINK_EINTERNAL;
2958 pthread_mutex_unlock(&mesh->mutex);
2962 // If we changed our own host config file, write it out now
2963 if(mesh->self->status.dirty) {
2964 if(!node_write_config(mesh, mesh->self, false)) {
2965 logger(mesh, MESHLINK_ERROR, "Could not write our own host config file!\n");
2966 pthread_mutex_unlock(&mesh->mutex);
2973 // Create a hash of the key.
2974 char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
2975 sha512(fingerprint, strlen(fingerprint), hash);
2976 b64encode_urlsafe(hash, hash, 18);
2978 // Create a random cookie for this invitation.
2980 randomize(cookie, 18);
2982 // Create a filename that doesn't reveal the cookie itself
2983 char buf[18 + strlen(fingerprint)];
2984 char cookiehash[64];
2985 memcpy(buf, cookie, 18);
2986 memcpy(buf + 18, fingerprint, sizeof(buf) - 18);
2987 sha512(buf, sizeof(buf), cookiehash);
2988 b64encode_urlsafe(cookiehash, cookiehash, 18);
2990 b64encode_urlsafe(cookie, cookie, 18);
2994 /* Construct the invitation file */
2995 uint8_t outbuf[4096];
2996 packmsg_output_t inv = {outbuf, sizeof(outbuf)};
2998 packmsg_add_uint32(&inv, MESHLINK_INVITATION_VERSION);
2999 packmsg_add_str(&inv, name);
3000 packmsg_add_str(&inv, s ? s->name : CORE_MESH);
3001 packmsg_add_int32(&inv, DEV_CLASS_UNKNOWN); /* TODO: allow this to be set by inviter? */
3003 /* TODO: Add several host config files to bootstrap connections.
3004 * Note: make sure we only add config files of nodes that are in the core mesh or the same submesh,
3005 * and are not blacklisted.
3007 config_t configs[5];
3008 memset(configs, 0, sizeof(configs));
3011 if(config_read(mesh, "current", mesh->self->name, &configs[count], mesh->config_key)) {
3015 /* Append host config files to the invitation file */
3016 packmsg_add_array(&inv, count);
3018 for(int i = 0; i < count; i++) {
3019 packmsg_add_bin(&inv, configs[i].buf, configs[i].len);
3020 config_free(&configs[i]);
3023 config_t config = {outbuf, packmsg_output_size(&inv, outbuf)};
3025 if(!invitation_write(mesh, "current", cookiehash, &config, mesh->config_key)) {
3026 logger(mesh, MESHLINK_DEBUG, "Could not create invitation file %s: %s\n", cookiehash, strerror(errno));
3027 meshlink_errno = MESHLINK_ESTORAGE;
3028 pthread_mutex_unlock(&mesh->mutex);
3032 // Create an URL from the local address, key hash and cookie
3034 xasprintf(&url, "%s/%s%s", address, hash, cookie);
3037 pthread_mutex_unlock(&mesh->mutex);
3041 char *meshlink_invite(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, const char *name) {
3042 return meshlink_invite_ex(mesh, submesh, name, 0);
3045 bool meshlink_join(meshlink_handle_t *mesh, const char *invitation) {
3046 if(!mesh || !invitation) {
3047 meshlink_errno = MESHLINK_EINVAL;
3051 if(mesh->storage_policy == MESHLINK_STORAGE_DISABLED) {
3052 meshlink_errno = MESHLINK_EINVAL;
3056 join_state_t state = {
3061 ecdsa_t *key = NULL;
3062 ecdsa_t *hiskey = NULL;
3064 //TODO: think of a better name for this variable, or of a different way to tokenize the invitation URL.
3065 char copy[strlen(invitation) + 1];
3067 if(pthread_mutex_lock(&mesh->mutex) != 0) {
3071 //Before doing meshlink_join make sure we are not connected to another mesh
3072 if(mesh->threadstarted) {
3073 logger(mesh, MESHLINK_ERROR, "Cannot join while started\n");
3074 meshlink_errno = MESHLINK_EINVAL;
3078 // 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.
3079 if(mesh->nodes->count > 1) {
3080 logger(mesh, MESHLINK_ERROR, "Already part of an existing mesh\n");
3081 meshlink_errno = MESHLINK_EINVAL;
3085 strcpy(copy, invitation);
3087 // Split the invitation URL into a list of hostname/port tuples, a key hash and a cookie.
3089 char *slash = strchr(copy, '/');
3097 if(strlen(slash) != 48) {
3101 char *address = copy;
3104 if(!b64decode(slash, state.hash, 18) || !b64decode(slash + 24, state.cookie, 18)) {
3108 if(mesh->inviter_commits_first) {
3109 memcpy(state.cookie + 18, ecdsa_get_public_key(mesh->private_key), 32);
3112 // Generate a throw-away key for the invitation.
3113 key = ecdsa_generate();
3116 meshlink_errno = MESHLINK_EINTERNAL;
3120 char *b64key = ecdsa_get_base64_public_key(key);
3123 while(address && *address) {
3124 // We allow commas in the address part to support multiple addresses in one invitation URL.
3125 comma = strchr(address, ',');
3131 // Split of the port
3132 port = strrchr(address, ':');
3140 // IPv6 address are enclosed in brackets, per RFC 3986
3141 if(*address == '[') {
3143 char *bracket = strchr(address, ']');
3156 // Connect to the meshlink daemon mentioned in the URL.
3157 struct addrinfo *ai = adns_blocking_request(mesh, xstrdup(address), xstrdup(port), SOCK_STREAM, 30);
3160 for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
3161 state.sock = socket_in_netns(aip->ai_family, SOCK_STREAM, IPPROTO_TCP, mesh->netns);
3163 if(state.sock == -1) {
3164 logger(mesh, MESHLINK_DEBUG, "Could not open socket: %s\n", strerror(errno));
3165 meshlink_errno = MESHLINK_ENETWORK;
3171 setsockopt(state.sock, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe));
3174 set_timeout(state.sock, 5000);
3176 if(connect(state.sock, aip->ai_addr, aip->ai_addrlen)) {
3177 logger(mesh, MESHLINK_DEBUG, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
3178 meshlink_errno = MESHLINK_ENETWORK;
3179 closesocket(state.sock);
3189 meshlink_errno = MESHLINK_ERESOLV;
3192 if(state.sock != -1 || !comma) {
3199 if(state.sock == -1) {
3203 logger(mesh, MESHLINK_DEBUG, "Connected to %s port %s...\n", address, port);
3205 // Tell him we have an invitation, and give him our throw-away key.
3209 if(!sendline(state.sock, "0 ?%s %d.%d %s", b64key, PROT_MAJOR, PROT_MINOR, mesh->appname)) {
3210 logger(mesh, MESHLINK_DEBUG, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
3211 meshlink_errno = MESHLINK_ENETWORK;
3217 char hisname[4096] = "";
3218 int code, hismajor, hisminor = 0;
3220 if(!recvline(&state) || sscanf(state.line, "%d %s %d.%d", &code, hisname, &hismajor, &hisminor) < 3 || code != 0 || hismajor != PROT_MAJOR || !check_id(hisname) || !recvline(&state) || !rstrip(state.line) || sscanf(state.line, "%d ", &code) != 1 || code != ACK || strlen(state.line) < 3) {
3221 logger(mesh, MESHLINK_DEBUG, "Cannot read greeting from peer\n");
3222 meshlink_errno = MESHLINK_ENETWORK;
3226 // Check if the hash of the key he gave us matches the hash in the URL.
3227 char *fingerprint = state.line + 2;
3230 if(sha512(fingerprint, strlen(fingerprint), hishash)) {
3231 logger(mesh, MESHLINK_DEBUG, "Could not create hash\n%s\n", state.line + 2);
3232 meshlink_errno = MESHLINK_EINTERNAL;
3236 if(memcmp(hishash, state.hash, 18)) {
3237 logger(mesh, MESHLINK_DEBUG, "Peer has an invalid key!\n%s\n", state.line + 2);
3238 meshlink_errno = MESHLINK_EPEER;
3242 hiskey = ecdsa_set_base64_public_key(fingerprint);
3245 meshlink_errno = MESHLINK_EINTERNAL;
3249 // Start an SPTPS session
3250 if(!sptps_start(&state.sptps, &state, true, false, key, hiskey, meshlink_invitation_label, sizeof(meshlink_invitation_label), invitation_send, invitation_receive)) {
3251 meshlink_errno = MESHLINK_EINTERNAL;
3255 // Feed rest of input buffer to SPTPS
3256 if(!sptps_receive_data(&state.sptps, state.buffer, state.blen)) {
3257 meshlink_errno = MESHLINK_EPEER;
3262 logger(mesh, MESHLINK_DEBUG, "Starting invitation recv loop: %d %zu\n", state.sock, sizeof(state.line));
3264 while((len = recv(state.sock, state.line, sizeof(state.line), 0))) {
3266 if(errno == EINTR) {
3270 logger(mesh, MESHLINK_DEBUG, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
3271 meshlink_errno = MESHLINK_ENETWORK;
3275 if(!sptps_receive_data(&state.sptps, state.line, len)) {
3276 meshlink_errno = MESHLINK_EPEER;
3281 if(!state.success) {
3282 logger(mesh, MESHLINK_DEBUG, "Connection closed by peer, invitation cancelled.\n");
3283 meshlink_errno = MESHLINK_EPEER;
3287 sptps_stop(&state.sptps);
3290 closesocket(state.sock);
3292 pthread_mutex_unlock(&mesh->mutex);
3296 logger(mesh, MESHLINK_DEBUG, "Invalid invitation URL\n");
3297 meshlink_errno = MESHLINK_EINVAL;
3299 sptps_stop(&state.sptps);
3303 if(state.sock != -1) {
3304 closesocket(state.sock);
3307 pthread_mutex_unlock(&mesh->mutex);
3311 char *meshlink_export(meshlink_handle_t *mesh) {
3313 meshlink_errno = MESHLINK_EINVAL;
3317 // Create a config file on the fly.
3320 packmsg_output_t out = {buf, sizeof(buf)};
3321 packmsg_add_uint32(&out, MESHLINK_CONFIG_VERSION);
3322 packmsg_add_str(&out, mesh->name);
3323 packmsg_add_str(&out, CORE_MESH);
3325 if(pthread_mutex_lock(&mesh->mutex) != 0) {
3329 packmsg_add_int32(&out, mesh->self->devclass);
3330 packmsg_add_bool(&out, mesh->self->status.blacklisted);
3331 packmsg_add_bin(&out, ecdsa_get_public_key(mesh->private_key), 32);
3333 if(mesh->self->canonical_address && !strchr(mesh->self->canonical_address, ' ')) {
3334 char *canonical_address = NULL;
3335 xasprintf(&canonical_address, "%s %s", mesh->self->canonical_address, mesh->myport);
3336 packmsg_add_str(&out, canonical_address);
3337 free(canonical_address);
3339 packmsg_add_str(&out, mesh->self->canonical_address ? mesh->self->canonical_address : "");
3344 for(uint32_t i = 0; i < MAX_RECENT; i++) {
3345 if(mesh->self->recent[i].sa.sa_family) {
3352 packmsg_add_array(&out, count);
3354 for(uint32_t i = 0; i < count; i++) {
3355 packmsg_add_sockaddr(&out, &mesh->self->recent[i]);
3358 packmsg_add_int64(&out, 0);
3359 packmsg_add_int64(&out, 0);
3361 pthread_mutex_unlock(&mesh->mutex);
3363 if(!packmsg_output_ok(&out)) {
3364 logger(mesh, MESHLINK_DEBUG, "Error creating export data\n");
3365 meshlink_errno = MESHLINK_EINTERNAL;
3369 // Prepare a base64-encoded packmsg array containing our config file
3371 uint32_t len = packmsg_output_size(&out, buf);
3372 uint32_t len2 = ((len + 4) * 4) / 3 + 4;
3373 uint8_t *buf2 = xmalloc(len2);
3374 packmsg_output_t out2 = {buf2, len2};
3375 packmsg_add_array(&out2, 1);
3376 packmsg_add_bin(&out2, buf, packmsg_output_size(&out, buf));
3378 if(!packmsg_output_ok(&out2)) {
3379 logger(mesh, MESHLINK_DEBUG, "Error creating export data\n");
3380 meshlink_errno = MESHLINK_EINTERNAL;
3385 b64encode_urlsafe(buf2, (char *)buf2, packmsg_output_size(&out2, buf2));
3387 return (char *)buf2;
3390 bool meshlink_import(meshlink_handle_t *mesh, const char *data) {
3391 if(!mesh || !data) {
3392 meshlink_errno = MESHLINK_EINVAL;
3396 size_t datalen = strlen(data);
3397 uint8_t *buf = xmalloc(datalen);
3398 int buflen = b64decode(data, buf, datalen);
3401 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
3402 meshlink_errno = MESHLINK_EPEER;
3406 packmsg_input_t in = {buf, buflen};
3407 uint32_t count = packmsg_get_array(&in);
3410 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
3411 meshlink_errno = MESHLINK_EPEER;
3415 if(pthread_mutex_lock(&mesh->mutex) != 0) {
3421 uint32_t len2 = packmsg_get_bin_raw(&in, &data2);
3427 packmsg_input_t in2 = {data2, len2};
3428 uint32_t version = packmsg_get_uint32(&in2);
3429 char *name = packmsg_get_str_dup(&in2);
3431 if(!packmsg_input_ok(&in2) || version != MESHLINK_CONFIG_VERSION || !check_id(name)) {
3433 packmsg_input_invalidate(&in);
3437 if(!check_id(name)) {
3442 node_t *n = lookup_node(mesh, name);
3445 logger(mesh, MESHLINK_DEBUG, "Node %s already exists, not importing\n", name);
3453 config_t config = {data2, len2};
3455 if(!node_read_from_config(mesh, n, &config)) {
3457 packmsg_input_invalidate(&in);
3461 /* Clear the reachability times, since we ourself have never seen these nodes yet */
3462 n->last_reachable = 0;
3463 n->last_unreachable = 0;
3465 if(!node_write_config(mesh, n, true)) {
3473 pthread_mutex_unlock(&mesh->mutex);
3477 if(!packmsg_done(&in)) {
3478 logger(mesh, MESHLINK_ERROR, "Invalid data\n");
3479 meshlink_errno = MESHLINK_EPEER;
3483 if(!config_sync(mesh, "current")) {
3490 static bool blacklist(meshlink_handle_t *mesh, node_t *n) {
3491 if(n == mesh->self) {
3492 logger(mesh, MESHLINK_ERROR, "%s blacklisting itself?\n", n->name);
3493 meshlink_errno = MESHLINK_EINVAL;
3497 if(n->status.blacklisted) {
3498 logger(mesh, MESHLINK_DEBUG, "Node %s already blacklisted\n", n->name);
3502 n->status.blacklisted = true;
3504 /* Immediately shut down any connections we have with the blacklisted node.
3505 * We can't call terminate_connection(), because we might be called from a callback function.
3507 for list_each(connection_t, c, mesh->connections) {
3509 if(c->status.active) {
3510 send_error(mesh, c, BLACKLISTED, "blacklisted");
3513 shutdown(c->socket, SHUT_RDWR);
3517 utcp_abort_all_connections(n->utcp);
3523 n->status.udp_confirmed = false;
3525 if(n->status.reachable) {
3526 n->last_unreachable = time(NULL);
3529 /* Graph updates will suppress status updates for blacklisted nodes, so we need to
3530 * manually call the status callback if necessary.
3532 if(n->status.reachable && mesh->node_status_cb) {
3533 mesh->node_status_cb(mesh, (meshlink_node_t *)n, false);
3536 /* Remove any outstanding invitations */
3537 invitation_purge_node(mesh, n->name);
3539 return node_write_config(mesh, n, true) && config_sync(mesh, "current");
3542 bool meshlink_blacklist(meshlink_handle_t *mesh, meshlink_node_t *node) {
3543 if(!mesh || !node) {
3544 meshlink_errno = MESHLINK_EINVAL;
3548 if(pthread_mutex_lock(&mesh->mutex) != 0) {
3552 if(!blacklist(mesh, (node_t *)node)) {
3553 pthread_mutex_unlock(&mesh->mutex);
3557 pthread_mutex_unlock(&mesh->mutex);
3559 logger(mesh, MESHLINK_DEBUG, "Blacklisted %s.\n", node->name);
3563 bool meshlink_blacklist_by_name(meshlink_handle_t *mesh, const char *name) {
3564 if(!mesh || !name) {
3565 meshlink_errno = MESHLINK_EINVAL;
3569 if(pthread_mutex_lock(&mesh->mutex) != 0) {
3573 node_t *n = lookup_node(mesh, (char *)name);
3577 n->name = xstrdup(name);
3581 if(!blacklist(mesh, (node_t *)n)) {
3582 pthread_mutex_unlock(&mesh->mutex);
3586 pthread_mutex_unlock(&mesh->mutex);
3588 logger(mesh, MESHLINK_DEBUG, "Blacklisted %s.\n", name);
3592 static bool whitelist(meshlink_handle_t *mesh, node_t *n) {
3593 if(n == mesh->self) {
3594 logger(mesh, MESHLINK_ERROR, "%s whitelisting itself?\n", n->name);
3595 meshlink_errno = MESHLINK_EINVAL;
3599 if(!n->status.blacklisted) {
3600 logger(mesh, MESHLINK_DEBUG, "Node %s was already whitelisted\n", n->name);
3604 n->status.blacklisted = false;
3606 if(n->status.reachable) {
3607 n->last_reachable = time(NULL);
3608 update_node_status(mesh, n);
3611 return node_write_config(mesh, n, true) && config_sync(mesh, "current");
3614 bool meshlink_whitelist(meshlink_handle_t *mesh, meshlink_node_t *node) {
3615 if(!mesh || !node) {
3616 meshlink_errno = MESHLINK_EINVAL;
3620 if(pthread_mutex_lock(&mesh->mutex) != 0) {
3624 if(!whitelist(mesh, (node_t *)node)) {
3625 pthread_mutex_unlock(&mesh->mutex);
3629 pthread_mutex_unlock(&mesh->mutex);
3631 logger(mesh, MESHLINK_DEBUG, "Whitelisted %s.\n", node->name);
3635 bool meshlink_whitelist_by_name(meshlink_handle_t *mesh, const char *name) {
3636 if(!mesh || !name) {
3637 meshlink_errno = MESHLINK_EINVAL;
3641 if(pthread_mutex_lock(&mesh->mutex) != 0) {
3645 node_t *n = lookup_node(mesh, (char *)name);
3649 n->name = xstrdup(name);
3653 if(!whitelist(mesh, (node_t *)n)) {
3654 pthread_mutex_unlock(&mesh->mutex);
3658 pthread_mutex_unlock(&mesh->mutex);
3660 logger(mesh, MESHLINK_DEBUG, "Whitelisted %s.\n", name);
3664 void meshlink_set_default_blacklist(meshlink_handle_t *mesh, bool blacklist) {
3665 mesh->default_blacklist = blacklist;
3668 bool meshlink_forget_node(meshlink_handle_t *mesh, meshlink_node_t *node) {
3669 if(!mesh || !node) {
3670 meshlink_errno = MESHLINK_EINVAL;
3674 node_t *n = (node_t *)node;
3676 if(pthread_mutex_lock(&mesh->mutex) != 0) {
3680 /* Check that the node is not reachable */
3681 if(n->status.reachable || n->connection) {
3682 pthread_mutex_unlock(&mesh->mutex);
3683 logger(mesh, MESHLINK_WARNING, "Could not forget %s: still reachable", n->name);
3687 /* Check that we don't have any active UTCP connections */
3688 if(n->utcp && utcp_is_active(n->utcp)) {
3689 pthread_mutex_unlock(&mesh->mutex);
3690 logger(mesh, MESHLINK_WARNING, "Could not forget %s: active UTCP connections", n->name);
3694 /* Check that we have no active connections to this node */
3695 for list_each(connection_t, c, mesh->connections) {
3697 pthread_mutex_unlock(&mesh->mutex);
3698 logger(mesh, MESHLINK_WARNING, "Could not forget %s: active connection", n->name);
3703 /* Remove any pending outgoings to this node */
3704 if(mesh->outgoings) {
3705 for list_each(outgoing_t, outgoing, mesh->outgoings) {
3706 if(outgoing->node == n) {
3707 list_delete_node(mesh->outgoings, list_node);
3712 /* Delete the config file for this node */
3713 if(!config_delete(mesh, "current", n->name)) {
3714 pthread_mutex_unlock(&mesh->mutex);
3718 /* Delete any pending invitations */
3719 invitation_purge_node(mesh, n->name);
3721 /* Delete the node struct and any remaining edges referencing this node */
3724 pthread_mutex_unlock(&mesh->mutex);
3726 return config_sync(mesh, "current");
3729 /* Hint that a hostname may be found at an address
3730 * See header file for detailed comment.
3732 void meshlink_hint_address(meshlink_handle_t *mesh, meshlink_node_t *node, const struct sockaddr *addr) {
3733 if(!mesh || !node || !addr) {
3734 meshlink_errno = EINVAL;
3738 if(pthread_mutex_lock(&mesh->mutex) != 0) {
3742 node_t *n = (node_t *)node;
3744 if(node_add_recent_address(mesh, n, (sockaddr_t *)addr)) {
3745 if(!node_write_config(mesh, n, false)) {
3746 logger(mesh, MESHLINK_DEBUG, "Could not update %s\n", n->name);
3750 pthread_mutex_unlock(&mesh->mutex);
3751 // @TODO do we want to fire off a connection attempt right away?
3754 static bool channel_pre_accept(struct utcp *utcp, uint16_t port) {
3756 node_t *n = utcp->priv;
3757 meshlink_handle_t *mesh = n->mesh;
3759 if(mesh->channel_accept_cb && mesh->channel_listen_cb) {
3760 return mesh->channel_listen_cb(mesh, (meshlink_node_t *)n, port);
3762 return mesh->channel_accept_cb;
3766 /* Finish one AIO buffer, return true if the channel is still open. */
3767 static bool aio_finish_one(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_aio_buffer_t **head) {
3768 meshlink_aio_buffer_t *aio = *head;
3772 channel->in_callback = true;
3775 if(aio->cb.buffer) {
3776 aio->cb.buffer(mesh, channel, aio->data, aio->done, aio->priv);
3780 aio->cb.fd(mesh, channel, aio->fd, aio->done, aio->priv);
3784 channel->in_callback = false;
3797 /* Finish all AIO buffers, return true if the channel is still open. */
3798 static bool aio_abort(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_aio_buffer_t **head) {
3800 if(!aio_finish_one(mesh, channel, head)) {
3808 static ssize_t channel_recv(struct utcp_connection *connection, const void *data, size_t len) {
3809 meshlink_channel_t *channel = connection->priv;
3815 node_t *n = channel->node;
3816 meshlink_handle_t *mesh = n->mesh;
3818 if(n->status.destroyed) {
3819 meshlink_channel_close(mesh, channel);
3823 const char *p = data;
3826 while(channel->aio_receive) {
3828 /* This receive callback signalled an error, abort all outstanding AIO buffers. */
3829 if(!aio_abort(mesh, channel, &channel->aio_receive)) {
3836 meshlink_aio_buffer_t *aio = channel->aio_receive;
3837 size_t todo = aio->len - aio->done;
3844 memcpy((char *)aio->data + aio->done, p, todo);
3846 ssize_t result = write(aio->fd, p, todo);
3849 if(result < 0 && errno == EINTR) {
3853 /* Writing to fd failed, cancel just this AIO buffer. */
3854 logger(mesh, MESHLINK_ERROR, "Writing to AIO fd %d failed: %s", aio->fd, strerror(errno));
3856 if(!aio_finish_one(mesh, channel, &channel->aio_receive)) {
3870 if(aio->done == aio->len) {
3871 if(!aio_finish_one(mesh, channel, &channel->aio_receive)) {
3881 if(channel->receive_cb) {
3882 channel->receive_cb(mesh, channel, p, left);
3888 static void channel_accept(struct utcp_connection *utcp_connection, uint16_t port) {
3889 node_t *n = utcp_connection->utcp->priv;
3895 meshlink_handle_t *mesh = n->mesh;
3897 if(!mesh->channel_accept_cb) {
3901 meshlink_channel_t *channel = xzalloc(sizeof(*channel));
3903 channel->c = utcp_connection;
3905 if(mesh->channel_accept_cb(mesh, channel, port, NULL, 0)) {
3906 utcp_accept(utcp_connection, channel_recv, channel);
3912 static void channel_retransmit(struct utcp_connection *utcp_connection) {
3913 node_t *n = utcp_connection->utcp->priv;
3914 meshlink_handle_t *mesh = n->mesh;
3916 if(n->mtuprobes == 31 && n->mtutimeout.cb) {
3917 timeout_set(&mesh->loop, &n->mtutimeout, &(struct timespec) {
3923 static ssize_t channel_send(struct utcp *utcp, const void *data, size_t len) {
3924 node_t *n = utcp->priv;
3926 if(n->status.destroyed) {
3930 meshlink_handle_t *mesh = n->mesh;
3931 return meshlink_send_immediate(mesh, (meshlink_node_t *)n, data, len) ? (ssize_t)len : -1;
3934 void meshlink_set_channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_receive_cb_t cb) {
3935 if(!mesh || !channel) {
3936 meshlink_errno = MESHLINK_EINVAL;
3940 channel->receive_cb = cb;
3943 static void channel_receive(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len) {
3945 node_t *n = (node_t *)source;
3951 utcp_recv(n->utcp, data, len);
3954 static void channel_poll(struct utcp_connection *connection, size_t len) {
3955 meshlink_channel_t *channel = connection->priv;
3961 node_t *n = channel->node;
3962 meshlink_handle_t *mesh = n->mesh;
3964 while(channel->aio_send) {
3966 /* This poll callback signalled an error, abort all outstanding AIO buffers. */
3967 if(!aio_abort(mesh, channel, &channel->aio_send)) {
3974 /* We have at least one AIO buffer. Send as much as possible from the buffers. */
3975 meshlink_aio_buffer_t *aio = channel->aio_send;
3976 size_t todo = aio->len - aio->done;
3984 sent = utcp_send(connection, (char *)aio->data + aio->done, todo);
3986 /* Limit the amount we read at once to avoid stack overflows */
3992 ssize_t result = read(aio->fd, buf, todo);
3996 sent = utcp_send(connection, buf, todo);
3998 if(result < 0 && errno == EINTR) {
4002 /* Reading from fd failed, cancel just this AIO buffer. */
4004 logger(mesh, MESHLINK_ERROR, "Reading from AIO fd %d failed: %s", aio->fd, strerror(errno));
4007 if(!aio_finish_one(mesh, channel, &channel->aio_send)) {
4015 if(sent != (ssize_t)todo) {
4016 /* Sending failed, abort all outstanding AIO buffers and send a poll callback. */
4017 if(!aio_abort(mesh, channel, &channel->aio_send)) {
4028 /* If we didn't finish this buffer, exit early. */
4029 if(aio->done < aio->len) {
4033 /* Signal completion of this buffer, and go to the next one. */
4034 if(!aio_finish_one(mesh, channel, &channel->aio_send)) {
4043 if(channel->poll_cb) {
4044 channel->poll_cb(mesh, channel, len);
4046 utcp_set_poll_cb(connection, NULL);
4050 void meshlink_set_channel_poll_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_poll_cb_t cb) {
4051 if(!mesh || !channel) {
4052 meshlink_errno = MESHLINK_EINVAL;
4056 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4060 channel->poll_cb = cb;
4061 utcp_set_poll_cb(channel->c, (cb || channel->aio_send) ? channel_poll : NULL);
4062 pthread_mutex_unlock(&mesh->mutex);
4065 void meshlink_set_channel_listen_cb(meshlink_handle_t *mesh, meshlink_channel_listen_cb_t cb) {
4067 meshlink_errno = MESHLINK_EINVAL;
4071 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4075 mesh->channel_listen_cb = cb;
4077 pthread_mutex_unlock(&mesh->mutex);
4080 void meshlink_set_channel_accept_cb(meshlink_handle_t *mesh, meshlink_channel_accept_cb_t cb) {
4082 meshlink_errno = MESHLINK_EINVAL;
4086 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4090 mesh->channel_accept_cb = cb;
4091 mesh->receive_cb = channel_receive;
4093 for splay_each(node_t, n, mesh->nodes) {
4094 if(!n->utcp && n != mesh->self) {
4095 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
4096 utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
4097 utcp_set_retransmit_cb(n->utcp, channel_retransmit);
4101 pthread_mutex_unlock(&mesh->mutex);
4104 void meshlink_set_channel_sndbuf(meshlink_handle_t *mesh, meshlink_channel_t *channel, size_t size) {
4105 meshlink_set_channel_sndbuf_storage(mesh, channel, NULL, size);
4108 void meshlink_set_channel_rcvbuf(meshlink_handle_t *mesh, meshlink_channel_t *channel, size_t size) {
4109 meshlink_set_channel_rcvbuf_storage(mesh, channel, NULL, size);
4112 void meshlink_set_channel_sndbuf_storage(meshlink_handle_t *mesh, meshlink_channel_t *channel, void *buf, size_t size) {
4113 if(!mesh || !channel) {
4114 meshlink_errno = MESHLINK_EINVAL;
4118 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4122 utcp_set_sndbuf(channel->c, buf, size);
4123 pthread_mutex_unlock(&mesh->mutex);
4126 void meshlink_set_channel_rcvbuf_storage(meshlink_handle_t *mesh, meshlink_channel_t *channel, void *buf, size_t size) {
4127 if(!mesh || !channel) {
4128 meshlink_errno = MESHLINK_EINVAL;
4132 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4136 utcp_set_rcvbuf(channel->c, buf, size);
4137 pthread_mutex_unlock(&mesh->mutex);
4140 void meshlink_set_channel_flags(meshlink_handle_t *mesh, meshlink_channel_t *channel, uint32_t flags) {
4141 if(!mesh || !channel) {
4142 meshlink_errno = MESHLINK_EINVAL;
4146 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4150 utcp_set_flags(channel->c, flags);
4151 pthread_mutex_unlock(&mesh->mutex);
4154 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) {
4156 abort(); // TODO: handle non-NULL data
4159 if(!mesh || !node) {
4160 meshlink_errno = MESHLINK_EINVAL;
4164 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4168 node_t *n = (node_t *)node;
4171 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
4172 utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
4173 utcp_set_retransmit_cb(n->utcp, channel_retransmit);
4174 mesh->receive_cb = channel_receive;
4177 meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
4178 pthread_mutex_unlock(&mesh->mutex);
4183 if(n->status.blacklisted) {
4184 logger(mesh, MESHLINK_ERROR, "Cannot open a channel with blacklisted node\n");
4185 meshlink_errno = MESHLINK_EBLACKLISTED;
4186 pthread_mutex_unlock(&mesh->mutex);
4190 meshlink_channel_t *channel = xzalloc(sizeof(*channel));
4192 channel->receive_cb = cb;
4195 channel->priv = (void *)data;
4198 channel->c = utcp_connect_ex(n->utcp, port, channel_recv, channel, flags);
4200 pthread_mutex_unlock(&mesh->mutex);
4203 meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
4211 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) {
4212 return meshlink_channel_open_ex(mesh, node, port, cb, data, len, MESHLINK_CHANNEL_TCP);
4215 void meshlink_channel_shutdown(meshlink_handle_t *mesh, meshlink_channel_t *channel, int direction) {
4216 if(!mesh || !channel) {
4217 meshlink_errno = MESHLINK_EINVAL;
4221 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4225 utcp_shutdown(channel->c, direction);
4226 pthread_mutex_unlock(&mesh->mutex);
4229 void meshlink_channel_close(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4230 if(!mesh || !channel) {
4231 meshlink_errno = MESHLINK_EINVAL;
4235 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4240 utcp_close(channel->c);
4243 /* Clean up any outstanding AIO buffers. */
4244 aio_abort(mesh, channel, &channel->aio_send);
4245 aio_abort(mesh, channel, &channel->aio_receive);
4248 if(!channel->in_callback) {
4252 pthread_mutex_unlock(&mesh->mutex);
4255 void meshlink_channel_abort(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4256 if(!mesh || !channel) {
4257 meshlink_errno = MESHLINK_EINVAL;
4261 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4266 utcp_abort(channel->c);
4269 /* Clean up any outstanding AIO buffers. */
4270 aio_abort(mesh, channel, &channel->aio_send);
4271 aio_abort(mesh, channel, &channel->aio_receive);
4274 if(!channel->in_callback) {
4278 pthread_mutex_unlock(&mesh->mutex);
4281 ssize_t meshlink_channel_send(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *data, size_t len) {
4282 if(!mesh || !channel) {
4283 meshlink_errno = MESHLINK_EINVAL;
4292 meshlink_errno = MESHLINK_EINVAL;
4296 // TODO: more finegrained locking.
4297 // Ideally we want to put the data into the UTCP connection's send buffer.
4298 // Then, preferably only if there is room in the receiver window,
4299 // kick the meshlink thread to go send packets.
4303 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4307 /* Disallow direct calls to utcp_send() while we still have AIO active. */
4308 if(channel->aio_send) {
4311 retval = utcp_send(channel->c, data, len);
4314 pthread_mutex_unlock(&mesh->mutex);
4317 meshlink_errno = MESHLINK_ENETWORK;
4323 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) {
4324 if(!mesh || !channel) {
4325 meshlink_errno = MESHLINK_EINVAL;
4330 meshlink_errno = MESHLINK_EINVAL;
4334 meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
4337 aio->cb.buffer = cb;
4340 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4344 /* Append the AIO buffer descriptor to the end of the chain */
4345 meshlink_aio_buffer_t **p = &channel->aio_send;
4353 /* Ensure the poll callback is set, and call it right now to push data if possible */
4354 utcp_set_poll_cb(channel->c, channel_poll);
4355 size_t todo = MIN(len, utcp_get_rcvbuf_free(channel->c));
4358 channel_poll(channel->c, todo);
4361 pthread_mutex_unlock(&mesh->mutex);
4366 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) {
4367 if(!mesh || !channel) {
4368 meshlink_errno = MESHLINK_EINVAL;
4372 if(!len || fd == -1) {
4373 meshlink_errno = MESHLINK_EINVAL;
4377 meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
4383 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4387 /* Append the AIO buffer descriptor to the end of the chain */
4388 meshlink_aio_buffer_t **p = &channel->aio_send;
4396 /* Ensure the poll callback is set, and call it right now to push data if possible */
4397 utcp_set_poll_cb(channel->c, channel_poll);
4398 size_t left = utcp_get_rcvbuf_free(channel->c);
4401 channel_poll(channel->c, left);
4404 pthread_mutex_unlock(&mesh->mutex);
4409 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) {
4410 if(!mesh || !channel) {
4411 meshlink_errno = MESHLINK_EINVAL;
4416 meshlink_errno = MESHLINK_EINVAL;
4420 meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
4423 aio->cb.buffer = cb;
4426 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4430 /* Append the AIO buffer descriptor to the end of the chain */
4431 meshlink_aio_buffer_t **p = &channel->aio_receive;
4439 pthread_mutex_unlock(&mesh->mutex);
4444 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) {
4445 if(!mesh || !channel) {
4446 meshlink_errno = MESHLINK_EINVAL;
4450 if(!len || fd == -1) {
4451 meshlink_errno = MESHLINK_EINVAL;
4455 meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
4461 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4465 /* Append the AIO buffer descriptor to the end of the chain */
4466 meshlink_aio_buffer_t **p = &channel->aio_receive;
4474 pthread_mutex_unlock(&mesh->mutex);
4479 uint32_t meshlink_channel_get_flags(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4480 if(!mesh || !channel) {
4481 meshlink_errno = MESHLINK_EINVAL;
4485 return channel->c->flags;
4488 size_t meshlink_channel_get_sendq(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4489 if(!mesh || !channel) {
4490 meshlink_errno = MESHLINK_EINVAL;
4494 return utcp_get_sendq(channel->c);
4497 size_t meshlink_channel_get_recvq(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4498 if(!mesh || !channel) {
4499 meshlink_errno = MESHLINK_EINVAL;
4503 return utcp_get_recvq(channel->c);
4506 size_t meshlink_channel_get_mss(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4507 if(!mesh || !channel) {
4508 meshlink_errno = MESHLINK_EINVAL;
4512 return utcp_get_mss(channel->node->utcp);
4515 void meshlink_set_node_channel_timeout(meshlink_handle_t *mesh, meshlink_node_t *node, int timeout) {
4516 if(!mesh || !node) {
4517 meshlink_errno = MESHLINK_EINVAL;
4521 node_t *n = (node_t *)node;
4523 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4528 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
4529 utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
4530 utcp_set_retransmit_cb(n->utcp, channel_retransmit);
4533 utcp_set_user_timeout(n->utcp, timeout);
4535 pthread_mutex_unlock(&mesh->mutex);
4538 void update_node_status(meshlink_handle_t *mesh, node_t *n) {
4539 if(n->status.reachable && mesh->channel_accept_cb && !n->utcp) {
4540 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
4541 utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
4542 utcp_set_retransmit_cb(n->utcp, channel_retransmit);
4545 if(mesh->node_status_cb) {
4546 mesh->node_status_cb(mesh, (meshlink_node_t *)n, n->status.reachable && !n->status.blacklisted);
4549 if(mesh->node_pmtu_cb) {
4550 mesh->node_pmtu_cb(mesh, (meshlink_node_t *)n, n->minmtu);
4554 void update_node_pmtu(meshlink_handle_t *mesh, node_t *n) {
4555 utcp_set_mtu(n->utcp, (n->minmtu > MINMTU ? n->minmtu : MINMTU) - sizeof(meshlink_packethdr_t));
4557 if(mesh->node_pmtu_cb && !n->status.blacklisted) {
4558 mesh->node_pmtu_cb(mesh, (meshlink_node_t *)n, n->minmtu);
4562 void handle_duplicate_node(meshlink_handle_t *mesh, node_t *n) {
4563 if(!mesh->node_duplicate_cb || n->status.duplicate) {
4567 n->status.duplicate = true;
4568 mesh->node_duplicate_cb(mesh, (meshlink_node_t *)n);
4571 void meshlink_enable_discovery(meshlink_handle_t *mesh, bool enable) {
4573 meshlink_errno = MESHLINK_EINVAL;
4577 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4581 if(mesh->discovery.enabled == enable) {
4585 if(mesh->threadstarted) {
4587 discovery_start(mesh);
4589 discovery_stop(mesh);
4593 mesh->discovery.enabled = enable;
4596 pthread_mutex_unlock(&mesh->mutex);
4599 void meshlink_hint_network_change(struct meshlink_handle *mesh) {
4601 meshlink_errno = MESHLINK_EINVAL;
4605 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4609 if(mesh->discovery.enabled) {
4613 if(mesh->loop.now.tv_sec > mesh->discovery.last_update + 5) {
4614 mesh->discovery.last_update = mesh->loop.now.tv_sec;
4615 handle_network_change(mesh, 1);
4618 pthread_mutex_unlock(&mesh->mutex);
4621 void meshlink_set_dev_class_timeouts(meshlink_handle_t *mesh, dev_class_t devclass, int pinginterval, int pingtimeout) {
4622 if(!mesh || devclass < 0 || devclass >= DEV_CLASS_COUNT) {
4623 meshlink_errno = EINVAL;
4627 if(pinginterval < 1 || pingtimeout < 1 || pingtimeout > pinginterval) {
4628 meshlink_errno = EINVAL;
4632 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4636 mesh->dev_class_traits[devclass].pinginterval = pinginterval;
4637 mesh->dev_class_traits[devclass].pingtimeout = pingtimeout;
4638 pthread_mutex_unlock(&mesh->mutex);
4641 void meshlink_set_dev_class_fast_retry_period(meshlink_handle_t *mesh, dev_class_t devclass, int fast_retry_period) {
4642 if(!mesh || devclass < 0 || devclass >= DEV_CLASS_COUNT) {
4643 meshlink_errno = EINVAL;
4647 if(fast_retry_period < 0) {
4648 meshlink_errno = EINVAL;
4652 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4656 mesh->dev_class_traits[devclass].fast_retry_period = fast_retry_period;
4657 pthread_mutex_unlock(&mesh->mutex);
4660 void meshlink_set_dev_class_maxtimeout(struct meshlink_handle *mesh, dev_class_t devclass, int maxtimeout) {
4661 if(!mesh || devclass < 0 || devclass >= DEV_CLASS_COUNT) {
4662 meshlink_errno = EINVAL;
4666 if(maxtimeout < 0) {
4667 meshlink_errno = EINVAL;
4671 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4675 mesh->dev_class_traits[devclass].maxtimeout = maxtimeout;
4676 pthread_mutex_unlock(&mesh->mutex);
4679 void meshlink_reset_timers(struct meshlink_handle *mesh) {
4684 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4688 handle_network_change(mesh, true);
4690 if(mesh->discovery.enabled) {
4691 discovery_refresh(mesh);
4694 pthread_mutex_unlock(&mesh->mutex);
4697 void meshlink_set_inviter_commits_first(struct meshlink_handle *mesh, bool inviter_commits_first) {
4699 meshlink_errno = EINVAL;
4703 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4707 mesh->inviter_commits_first = inviter_commits_first;
4708 pthread_mutex_unlock(&mesh->mutex);
4711 void meshlink_set_external_address_discovery_url(struct meshlink_handle *mesh, const char *url) {
4713 meshlink_errno = EINVAL;
4717 if(url && (strncmp(url, "http://", 7) || strchr(url, ' '))) {
4718 meshlink_errno = EINVAL;
4722 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4726 free(mesh->external_address_url);
4727 mesh->external_address_url = url ? xstrdup(url) : NULL;
4728 pthread_mutex_unlock(&mesh->mutex);
4731 void meshlink_set_scheduling_granularity(struct meshlink_handle *mesh, long granularity) {
4732 if(!mesh || granularity < 0) {
4733 meshlink_errno = EINVAL;
4737 utcp_set_clock_granularity(granularity);
4740 void meshlink_set_storage_policy(struct meshlink_handle *mesh, meshlink_storage_policy_t policy) {
4742 meshlink_errno = EINVAL;
4746 if(pthread_mutex_lock(&mesh->mutex) != 0) {
4750 mesh->storage_policy = policy;
4751 pthread_mutex_unlock(&mesh->mutex);
4754 void handle_network_change(meshlink_handle_t *mesh, bool online) {
4757 if(!mesh->connections || !mesh->loop.running) {
4762 signal_trigger(&mesh->loop, &mesh->datafromapp);
4765 void call_error_cb(meshlink_handle_t *mesh, meshlink_errno_t cb_errno) {
4766 // We should only call the callback function if we are in the background thread.
4767 if(!mesh->error_cb) {
4771 if(!mesh->threadstarted) {
4775 if(mesh->thread == pthread_self()) {
4776 mesh->error_cb(mesh, cb_errno);
4780 static void __attribute__((constructor)) meshlink_init(void) {
4782 utcp_set_clock_granularity(10000);
4785 static void __attribute__((destructor)) meshlink_exit(void) {