2 meshlink.c -- Implementation of the MeshLink API.
3 Copyright (C) 2014-2018 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 pthread_join(thr, NULL);
167 // Find out what local address a socket would use if we connect to the given address.
168 // We do this using connect() on a UDP socket, so the kernel has to resolve the address
169 // of both endpoints, but this will actually not send any UDP packet.
170 static bool getlocaladdr(const char *destaddr, sockaddr_t *sa, socklen_t *salen, int netns) {
171 struct addrinfo *rai = NULL;
172 const struct addrinfo hint = {
173 .ai_family = AF_UNSPEC,
174 .ai_socktype = SOCK_DGRAM,
175 .ai_protocol = IPPROTO_UDP,
176 .ai_flags = AI_NUMERICHOST | AI_NUMERICSERV,
179 if(getaddrinfo(destaddr, "80", &hint, &rai) || !rai) {
183 int sock = socket_in_netns(rai->ai_family, rai->ai_socktype, rai->ai_protocol, netns);
190 if(connect(sock, rai->ai_addr, rai->ai_addrlen) && !sockwouldblock(errno)) {
198 if(getsockname(sock, &sa->sa, salen)) {
207 static bool getlocaladdrname(const char *destaddr, char *host, socklen_t hostlen, int netns) {
209 socklen_t salen = sizeof(sa);
211 if(!getlocaladdr(destaddr, &sa, &salen, netns)) {
215 if(getnameinfo(&sa.sa, salen, host, hostlen, NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV)) {
222 char *meshlink_get_external_address(meshlink_handle_t *mesh) {
223 return meshlink_get_external_address_for_family(mesh, AF_UNSPEC);
226 char *meshlink_get_external_address_for_family(meshlink_handle_t *mesh, int family) {
227 const char *url = mesh->external_address_url;
230 url = "http://meshlink.io/host.cgi";
233 /* Find the hostname part between the slashes */
234 if(strncmp(url, "http://", 7)) {
236 meshlink_errno = MESHLINK_EINTERNAL;
240 const char *begin = url + 7;
242 const char *end = strchr(begin, '/');
245 end = begin + strlen(begin);
249 char host[end - begin + 1];
250 strncpy(host, begin, end - begin);
251 host[end - begin] = 0;
253 char *port = strchr(host, ':');
259 logger(mesh, MESHLINK_DEBUG, "Trying to discover externally visible hostname...\n");
260 struct addrinfo *ai = adns_blocking_request(mesh, xstrdup(host), xstrdup(port ? port : "80"), 5);
262 char *hostname = NULL;
264 for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
265 if(family != AF_UNSPEC && aip->ai_family != family) {
269 int s = socket_in_netns(aip->ai_family, aip->ai_socktype, aip->ai_protocol, mesh->netns);
272 set_timeout(s, 5000);
274 if(connect(s, aip->ai_addr, aip->ai_addrlen)) {
281 send(s, "GET ", 4, 0);
282 send(s, url, strlen(url), 0);
283 send(s, " HTTP/1.0\r\n\r\n", 13, 0);
284 int len = recv(s, line, sizeof(line) - 1, MSG_WAITALL);
289 if(line[len - 1] == '\n') {
293 char *p = strrchr(line, '\n');
296 hostname = xstrdup(p + 1);
312 // Check that the hostname is reasonable
313 if(hostname && !is_valid_hostname(hostname)) {
319 meshlink_errno = MESHLINK_ERESOLV;
325 static bool is_localaddr(sockaddr_t *sa) {
326 switch(sa->sa.sa_family) {
328 return *(uint8_t *)(&sa->in.sin_addr.s_addr) == 127;
331 uint16_t first = sa->in6.sin6_addr.s6_addr[0] << 8 | sa->in6.sin6_addr.s6_addr[1];
332 return first == 0 || (first & 0xffc0) == 0xfe80;
340 char *meshlink_get_local_address_for_family(meshlink_handle_t *mesh, int family) {
343 // Determine address of the local interface used for outgoing connections.
344 char localaddr[NI_MAXHOST];
345 bool success = false;
347 if(family == AF_INET) {
348 success = getlocaladdrname("93.184.216.34", localaddr, sizeof(localaddr), mesh->netns);
349 } else if(family == AF_INET6) {
350 success = getlocaladdrname("2606:2800:220:1:248:1893:25c8:1946", localaddr, sizeof(localaddr), mesh->netns);
353 #ifdef HAVE_GETIFADDRS
356 struct ifaddrs *ifa = NULL;
359 for(struct ifaddrs *ifap = ifa; ifap; ifap = ifap->ifa_next) {
360 sockaddr_t *sa = (sockaddr_t *)ifap->ifa_addr;
362 if(sa->sa.sa_family != family) {
366 if(is_localaddr(sa)) {
370 if(!getnameinfo(&sa->sa, SALEN(sa->sa), localaddr, sizeof(localaddr), NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV)) {
382 meshlink_errno = MESHLINK_ENETWORK;
386 return xstrdup(localaddr);
389 static void remove_duplicate_hostnames(char *host[], char *port[], int n) {
390 for(int i = 0; i < n; i++) {
395 // Ignore duplicate hostnames
398 for(int j = 0; j < i; j++) {
403 if(strcmp(host[i], host[j])) {
407 if(strcmp(port[i], port[j])) {
415 if(found || !is_valid_hostname(host[i])) {
425 // This gets the hostname part for use in invitation URLs
426 static char *get_my_hostname(meshlink_handle_t *mesh, uint32_t flags) {
427 int count = 4 + (mesh->invitation_addresses ? mesh->invitation_addresses->count : 0);
429 char *hostname[count];
431 char *hostport = NULL;
433 memset(hostname, 0, sizeof(hostname));
434 memset(port, 0, sizeof(port));
436 if(!(flags & (MESHLINK_INVITE_LOCAL | MESHLINK_INVITE_PUBLIC))) {
437 flags |= MESHLINK_INVITE_LOCAL | MESHLINK_INVITE_PUBLIC;
440 if(!(flags & (MESHLINK_INVITE_IPV4 | MESHLINK_INVITE_IPV6))) {
441 flags |= MESHLINK_INVITE_IPV4 | MESHLINK_INVITE_IPV6;
444 // Add all explicitly set invitation addresses
445 if(mesh->invitation_addresses) {
446 for list_each(char, combo, mesh->invitation_addresses) {
447 hostname[n] = xstrdup(combo);
448 char *slash = strrchr(hostname[n], '/');
452 port[n] = xstrdup(slash + 1);
459 // Add local addresses if requested
460 if(flags & MESHLINK_INVITE_LOCAL) {
461 if(flags & MESHLINK_INVITE_IPV4) {
462 hostname[n++] = meshlink_get_local_address_for_family(mesh, AF_INET);
465 if(flags & MESHLINK_INVITE_IPV6) {
466 hostname[n++] = meshlink_get_local_address_for_family(mesh, AF_INET6);
470 // Add public/canonical addresses if requested
471 if(flags & MESHLINK_INVITE_PUBLIC) {
472 // Try the CanonicalAddress first
473 get_canonical_address(mesh->self, &hostname[n], &port[n]);
475 if(!hostname[n] && count == 4) {
476 if(flags & MESHLINK_INVITE_IPV4) {
477 hostname[n++] = meshlink_get_external_address_for_family(mesh, AF_INET);
480 if(flags & MESHLINK_INVITE_IPV6) {
481 hostname[n++] = meshlink_get_external_address_for_family(mesh, AF_INET6);
488 for(int i = 0; i < n; i++) {
489 // Ensure we always have a port number
490 if(hostname[i] && !port[i]) {
491 port[i] = xstrdup(mesh->myport);
495 remove_duplicate_hostnames(hostname, port, n);
497 // Resolve the hostnames
498 for(int i = 0; i < n; i++) {
503 // Convert what we have to a sockaddr
504 struct addrinfo *ai_in = adns_blocking_request(mesh, xstrdup(hostname[i]), xstrdup(port[i]), 5);
510 // Remember the address(es)
511 for(struct addrinfo *aip = ai_in; aip; aip = aip->ai_next) {
512 node_add_recent_address(mesh, mesh->self, (sockaddr_t *)aip->ai_addr);
519 // Remove duplicates again, since IPv4 and IPv6 addresses might map to the same hostname
520 remove_duplicate_hostnames(hostname, port, n);
522 // Concatenate all unique address to the hostport string
523 for(int i = 0; i < n; i++) {
528 // Append the address to the hostport string
530 xasprintf(&newhostport, (strchr(hostname[i], ':') ? "%s%s[%s]:%s" : "%s%s%s:%s"), hostport ? hostport : "", hostport ? "," : "", hostname[i], port[i]);
532 hostport = newhostport;
541 static bool try_bind(meshlink_handle_t *mesh, int port) {
542 struct addrinfo *ai = NULL;
543 struct addrinfo hint = {
544 .ai_flags = AI_PASSIVE,
545 .ai_family = AF_UNSPEC,
546 .ai_socktype = SOCK_STREAM,
547 .ai_protocol = IPPROTO_TCP,
551 snprintf(portstr, sizeof(portstr), "%d", port);
553 if(getaddrinfo(NULL, portstr, &hint, &ai) || !ai) {
557 bool success = false;
559 for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
560 /* Try to bind to TCP. */
562 int tcp_fd = setup_tcp_listen_socket(mesh, aip);
565 if(errno == EADDRINUSE) {
566 /* If this port is in use for any address family, avoid it. */
574 /* If TCP worked, then we require that UDP works as well. */
576 int udp_fd = setup_udp_listen_socket(mesh, aip);
593 int check_port(meshlink_handle_t *mesh) {
594 for(int i = 0; i < 1000; i++) {
595 int port = 0x1000 + prng(mesh, 0x8000);
597 if(try_bind(mesh, port)) {
599 xasprintf(&mesh->myport, "%d", port);
604 meshlink_errno = MESHLINK_ENETWORK;
605 logger(mesh, MESHLINK_DEBUG, "Could not find any available network port.\n");
609 static bool write_main_config_files(meshlink_handle_t *mesh) {
610 if(!mesh->confbase) {
616 /* Write the main config file */
617 packmsg_output_t out = {buf, sizeof buf};
619 packmsg_add_uint32(&out, MESHLINK_CONFIG_VERSION);
620 packmsg_add_str(&out, mesh->name);
621 packmsg_add_bin(&out, ecdsa_get_private_key(mesh->private_key), 96);
622 packmsg_add_bin(&out, ecdsa_get_private_key(mesh->invitation_key), 96);
623 packmsg_add_uint16(&out, atoi(mesh->myport));
625 if(!packmsg_output_ok(&out)) {
629 config_t config = {buf, packmsg_output_size(&out, buf)};
631 if(!main_config_write(mesh, "current", &config, mesh->config_key)) {
635 /* Write our own host config file */
636 if(!node_write_config(mesh, mesh->self)) {
644 meshlink_handle_t *mesh;
646 char cookie[18 + 32];
657 static bool finalize_join(join_state_t *state, const void *buf, uint16_t len) {
658 meshlink_handle_t *mesh = state->mesh;
659 packmsg_input_t in = {buf, len};
660 uint32_t version = packmsg_get_uint32(&in);
662 if(version != MESHLINK_INVITATION_VERSION) {
663 logger(mesh, MESHLINK_ERROR, "Invalid invitation version!\n");
667 char *name = packmsg_get_str_dup(&in);
668 char *submesh_name = packmsg_get_str_dup(&in);
669 dev_class_t devclass = packmsg_get_int32(&in);
670 uint32_t count = packmsg_get_array(&in);
672 if(!name || !check_id(name)) {
673 logger(mesh, MESHLINK_DEBUG, "No valid Name found in invitation!\n");
679 if(!submesh_name || (strcmp(submesh_name, CORE_MESH) && !check_id(submesh_name))) {
680 logger(mesh, MESHLINK_DEBUG, "No valid Submesh found in invitation!\n");
687 logger(mesh, MESHLINK_ERROR, "Incomplete invitation file!\n");
694 free(mesh->self->name);
696 mesh->self->name = xstrdup(name);
697 mesh->self->submesh = strcmp(submesh_name, CORE_MESH) ? lookup_or_create_submesh(mesh, submesh_name) : NULL;
699 mesh->self->devclass = devclass == DEV_CLASS_UNKNOWN ? mesh->devclass : devclass;
701 // Initialize configuration directory
702 if(!config_init(mesh, "current")) {
706 if(!write_main_config_files(mesh)) {
710 // Write host config files
711 for(uint32_t i = 0; i < count; i++) {
713 uint32_t data_len = packmsg_get_bin_raw(&in, &data);
716 logger(mesh, MESHLINK_ERROR, "Incomplete invitation file!\n");
720 packmsg_input_t in2 = {data, data_len};
721 uint32_t version2 = packmsg_get_uint32(&in2);
722 char *name2 = packmsg_get_str_dup(&in2);
724 if(!packmsg_input_ok(&in2) || version2 != MESHLINK_CONFIG_VERSION || !check_id(name2)) {
726 packmsg_input_invalidate(&in);
730 if(!check_id(name2)) {
735 if(!strcmp(name2, mesh->name)) {
736 logger(mesh, MESHLINK_DEBUG, "Secondary chunk would overwrite our own host config file.\n");
738 meshlink_errno = MESHLINK_EPEER;
742 node_t *n = new_node();
745 config_t config = {data, data_len};
747 if(!node_read_from_config(mesh, n, &config)) {
749 logger(mesh, MESHLINK_ERROR, "Invalid host config file in invitation file!\n");
750 meshlink_errno = MESHLINK_EPEER;
755 /* The first host config file is of the inviter itself;
756 * remember the address we are currently using for the invitation connection.
759 socklen_t salen = sizeof(sa);
761 if(getpeername(state->sock, &sa.sa, &salen) == 0) {
762 node_add_recent_address(mesh, n, &sa);
766 /* Clear the reachability times, since we ourself have never seen these nodes yet */
767 n->last_reachable = 0;
768 n->last_unreachable = 0;
770 if(!node_write_config(mesh, n)) {
778 /* Ensure the configuration directory metadata is on disk */
779 if(!config_sync(mesh, "current") || !sync_path(mesh->confbase)) {
783 if(!mesh->inviter_commits_first) {
784 devtool_set_inviter_commits_first(false);
787 sptps_send_record(&state->sptps, 1, ecdsa_get_public_key(mesh->private_key), 32);
789 logger(mesh, MESHLINK_DEBUG, "Configuration stored in: %s\n", mesh->confbase);
794 static bool invitation_send(void *handle, uint8_t type, const void *data, size_t len) {
796 join_state_t *state = handle;
797 const char *ptr = data;
800 int result = send(state->sock, ptr, len, 0);
802 if(result == -1 && errno == EINTR) {
804 } else if(result <= 0) {
815 static bool invitation_receive(void *handle, uint8_t type, const void *msg, uint16_t len) {
816 join_state_t *state = handle;
817 meshlink_handle_t *mesh = state->mesh;
819 if(mesh->inviter_commits_first) {
821 case SPTPS_HANDSHAKE:
822 return sptps_send_record(&state->sptps, 2, state->cookie, 18 + 32);
828 if(!finalize_join(state, msg, len)) {
832 logger(mesh, MESHLINK_DEBUG, "Invitation successfully accepted.\n");
833 shutdown(state->sock, SHUT_RDWR);
834 state->success = true;
842 case SPTPS_HANDSHAKE:
843 return sptps_send_record(&state->sptps, 0, state->cookie, 18);
846 return finalize_join(state, msg, len);
849 logger(mesh, MESHLINK_DEBUG, "Invitation successfully accepted.\n");
850 shutdown(state->sock, SHUT_RDWR);
851 state->success = true;
862 static bool recvline(join_state_t *state) {
863 char *newline = NULL;
865 while(!(newline = memchr(state->buffer, '\n', state->blen))) {
866 int result = recv(state->sock, state->buffer + state->blen, sizeof(state)->buffer - state->blen, 0);
868 if(result == -1 && errno == EINTR) {
870 } else if(result <= 0) {
874 state->blen += result;
877 if((size_t)(newline - state->buffer) >= sizeof(state->line)) {
881 size_t len = newline - state->buffer;
883 memcpy(state->line, state->buffer, len);
884 state->line[len] = 0;
885 memmove(state->buffer, newline + 1, state->blen - len - 1);
886 state->blen -= len + 1;
891 static bool sendline(int fd, const char *format, ...) {
897 va_start(ap, format);
898 blen = vsnprintf(buffer, sizeof(buffer), format, ap);
901 if(blen < 1 || (size_t)blen >= sizeof(buffer)) {
909 int result = send(fd, p, blen, MSG_NOSIGNAL);
911 if(result == -1 && errno == EINTR) {
913 } else if(result <= 0) {
924 static const char *errstr[] = {
925 [MESHLINK_OK] = "No error",
926 [MESHLINK_EINVAL] = "Invalid argument",
927 [MESHLINK_ENOMEM] = "Out of memory",
928 [MESHLINK_ENOENT] = "No such node",
929 [MESHLINK_EEXIST] = "Node already exists",
930 [MESHLINK_EINTERNAL] = "Internal error",
931 [MESHLINK_ERESOLV] = "Could not resolve hostname",
932 [MESHLINK_ESTORAGE] = "Storage error",
933 [MESHLINK_ENETWORK] = "Network error",
934 [MESHLINK_EPEER] = "Error communicating with peer",
935 [MESHLINK_ENOTSUP] = "Operation not supported",
936 [MESHLINK_EBUSY] = "MeshLink instance already in use",
937 [MESHLINK_EBLACKLISTED] = "Node is blacklisted",
940 const char *meshlink_strerror(meshlink_errno_t err) {
941 if((int)err < 0 || err >= sizeof(errstr) / sizeof(*errstr)) {
942 return "Invalid error code";
948 static bool ecdsa_keygen(meshlink_handle_t *mesh) {
949 logger(mesh, MESHLINK_DEBUG, "Generating ECDSA keypairs:\n");
951 mesh->private_key = ecdsa_generate();
952 mesh->invitation_key = ecdsa_generate();
954 if(!mesh->private_key || !mesh->invitation_key) {
955 logger(mesh, MESHLINK_DEBUG, "Error during key generation!\n");
956 meshlink_errno = MESHLINK_EINTERNAL;
960 logger(mesh, MESHLINK_DEBUG, "Done.\n");
965 static bool timespec_lt(const struct timespec *a, const struct timespec *b) {
966 if(a->tv_sec == b->tv_sec) {
967 return a->tv_nsec < b->tv_nsec;
969 return a->tv_sec < b->tv_sec;
973 static struct timespec idle(event_loop_t *loop, void *data) {
975 meshlink_handle_t *mesh = data;
976 struct timespec t, tmin = {3600, 0};
978 for splay_each(node_t, n, mesh->nodes) {
983 t = utcp_timeout(n->utcp);
985 if(timespec_lt(&t, &tmin)) {
993 // Get our local address(es) by simulating connecting to an Internet host.
994 static void add_local_addresses(meshlink_handle_t *mesh) {
996 sa.storage.ss_family = AF_UNKNOWN;
997 socklen_t salen = sizeof(sa);
1001 if(getlocaladdr("93.184.216.34", &sa, &salen, mesh->netns)) {
1002 sa.in.sin_port = ntohs(atoi(mesh->myport));
1003 node_add_recent_address(mesh, mesh->self, &sa);
1010 if(getlocaladdr("2606:2800:220:1:248:1893:25c8:1946", &sa, &salen, mesh->netns)) {
1011 sa.in6.sin6_port = ntohs(atoi(mesh->myport));
1012 node_add_recent_address(mesh, mesh->self, &sa);
1016 static bool meshlink_setup(meshlink_handle_t *mesh) {
1017 if(!config_destroy(mesh->confbase, "new")) {
1018 logger(mesh, MESHLINK_ERROR, "Could not delete configuration in %s/new: %s\n", mesh->confbase, strerror(errno));
1019 meshlink_errno = MESHLINK_ESTORAGE;
1023 if(!config_destroy(mesh->confbase, "old")) {
1024 logger(mesh, MESHLINK_ERROR, "Could not delete configuration in %s/old: %s\n", mesh->confbase, strerror(errno));
1025 meshlink_errno = MESHLINK_ESTORAGE;
1029 if(!config_init(mesh, "current")) {
1030 logger(mesh, MESHLINK_ERROR, "Could not set up configuration in %s/current: %s\n", mesh->confbase, strerror(errno));
1031 meshlink_errno = MESHLINK_ESTORAGE;
1035 if(!ecdsa_keygen(mesh)) {
1036 meshlink_errno = MESHLINK_EINTERNAL;
1040 if(check_port(mesh) == 0) {
1041 meshlink_errno = MESHLINK_ENETWORK;
1045 /* Create a node for ourself */
1047 mesh->self = new_node();
1048 mesh->self->name = xstrdup(mesh->name);
1049 mesh->self->devclass = mesh->devclass;
1050 mesh->self->ecdsa = ecdsa_set_public_key(ecdsa_get_public_key(mesh->private_key));
1051 mesh->self->session_id = mesh->session_id;
1053 if(!write_main_config_files(mesh)) {
1054 logger(mesh, MESHLINK_ERROR, "Could not write main config files into %s/current: %s\n", mesh->confbase, strerror(errno));
1055 meshlink_errno = MESHLINK_ESTORAGE;
1059 /* Ensure the configuration directory metadata is on disk */
1060 if(!config_sync(mesh, "current")) {
1067 static bool meshlink_read_config(meshlink_handle_t *mesh) {
1070 if(!main_config_read(mesh, "current", &config, mesh->config_key)) {
1071 logger(NULL, MESHLINK_ERROR, "Could not read main configuration file!");
1075 packmsg_input_t in = {config.buf, config.len};
1076 const void *private_key;
1077 const void *invitation_key;
1079 uint32_t version = packmsg_get_uint32(&in);
1080 char *name = packmsg_get_str_dup(&in);
1081 uint32_t private_key_len = packmsg_get_bin_raw(&in, &private_key);
1082 uint32_t invitation_key_len = packmsg_get_bin_raw(&in, &invitation_key);
1083 uint16_t myport = packmsg_get_uint16(&in);
1085 if(!packmsg_done(&in) || version != MESHLINK_CONFIG_VERSION || private_key_len != 96 || invitation_key_len != 96) {
1086 logger(NULL, MESHLINK_ERROR, "Error parsing main configuration file!");
1088 config_free(&config);
1092 if(mesh->name && strcmp(mesh->name, name)) {
1093 logger(NULL, MESHLINK_ERROR, "Configuration is for a different name (%s)!", name);
1094 meshlink_errno = MESHLINK_ESTORAGE;
1096 config_free(&config);
1102 xasprintf(&mesh->myport, "%u", myport);
1103 mesh->private_key = ecdsa_set_private_key(private_key);
1104 mesh->invitation_key = ecdsa_set_private_key(invitation_key);
1105 config_free(&config);
1107 /* Create a node for ourself and read our host configuration file */
1109 mesh->self = new_node();
1110 mesh->self->name = xstrdup(name);
1111 mesh->self->devclass = mesh->devclass;
1112 mesh->self->session_id = mesh->session_id;
1114 if(!node_read_public_key(mesh, mesh->self)) {
1115 logger(NULL, MESHLINK_ERROR, "Could not read our host configuration file!");
1116 meshlink_errno = MESHLINK_ESTORAGE;
1117 free_node(mesh->self);
1126 static void *setup_network_in_netns_thread(void *arg) {
1127 meshlink_handle_t *mesh = arg;
1129 if(setns(mesh->netns, CLONE_NEWNET) != 0) {
1133 bool success = setup_network(mesh);
1134 return success ? arg : NULL;
1136 #endif // HAVE_SETNS
1138 meshlink_open_params_t *meshlink_open_params_init(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
1139 if(!confbase || !*confbase) {
1140 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
1141 meshlink_errno = MESHLINK_EINVAL;
1145 if(!appname || !*appname) {
1146 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
1147 meshlink_errno = MESHLINK_EINVAL;
1151 if(strchr(appname, ' ')) {
1152 logger(NULL, MESHLINK_ERROR, "Invalid appname given!\n");
1153 meshlink_errno = MESHLINK_EINVAL;
1157 if(name && !check_id(name)) {
1158 logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
1159 meshlink_errno = MESHLINK_EINVAL;
1163 if(devclass < 0 || devclass >= DEV_CLASS_COUNT) {
1164 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
1165 meshlink_errno = MESHLINK_EINVAL;
1169 meshlink_open_params_t *params = xzalloc(sizeof * params);
1171 params->confbase = xstrdup(confbase);
1172 params->name = name ? xstrdup(name) : NULL;
1173 params->appname = xstrdup(appname);
1174 params->devclass = devclass;
1180 bool meshlink_open_params_set_netns(meshlink_open_params_t *params, int netns) {
1182 meshlink_errno = MESHLINK_EINVAL;
1186 params->netns = netns;
1191 bool meshlink_open_params_set_storage_key(meshlink_open_params_t *params, const void *key, size_t keylen) {
1193 meshlink_errno = MESHLINK_EINVAL;
1197 if((!key && keylen) || (key && !keylen)) {
1198 logger(NULL, MESHLINK_ERROR, "Invalid key length!\n");
1199 meshlink_errno = MESHLINK_EINVAL;
1204 params->keylen = keylen;
1209 bool meshlink_encrypted_key_rotate(meshlink_handle_t *mesh, const void *new_key, size_t new_keylen) {
1210 if(!mesh || !new_key || !new_keylen) {
1211 logger(mesh, MESHLINK_ERROR, "Invalid arguments given!\n");
1212 meshlink_errno = MESHLINK_EINVAL;
1216 pthread_mutex_lock(&mesh->mutex);
1218 // Create hash for the new key
1219 void *new_config_key;
1220 new_config_key = xmalloc(CHACHA_POLY1305_KEYLEN);
1222 if(!prf(new_key, new_keylen, "MeshLink configuration key", 26, new_config_key, CHACHA_POLY1305_KEYLEN)) {
1223 logger(mesh, MESHLINK_ERROR, "Error creating new configuration key!\n");
1224 meshlink_errno = MESHLINK_EINTERNAL;
1225 pthread_mutex_unlock(&mesh->mutex);
1229 // Copy contents of the "current" confbase sub-directory to "new" confbase sub-directory with the new key
1231 if(!config_copy(mesh, "current", mesh->config_key, "new", new_config_key)) {
1232 logger(mesh, MESHLINK_ERROR, "Could not set up configuration in %s/old: %s\n", mesh->confbase, strerror(errno));
1233 meshlink_errno = MESHLINK_ESTORAGE;
1234 pthread_mutex_unlock(&mesh->mutex);
1238 devtool_keyrotate_probe(1);
1240 // Rename confbase/current/ to confbase/old
1242 if(!config_rename(mesh, "current", "old")) {
1243 logger(mesh, MESHLINK_ERROR, "Cannot rename %s/current to %s/old\n", mesh->confbase, mesh->confbase);
1244 meshlink_errno = MESHLINK_ESTORAGE;
1245 pthread_mutex_unlock(&mesh->mutex);
1249 devtool_keyrotate_probe(2);
1251 // Rename confbase/new/ to confbase/current
1253 if(!config_rename(mesh, "new", "current")) {
1254 logger(mesh, MESHLINK_ERROR, "Cannot rename %s/new to %s/current\n", mesh->confbase, mesh->confbase);
1255 meshlink_errno = MESHLINK_ESTORAGE;
1256 pthread_mutex_unlock(&mesh->mutex);
1260 devtool_keyrotate_probe(3);
1262 // Cleanup the "old" confbase sub-directory
1264 if(!config_destroy(mesh->confbase, "old")) {
1265 pthread_mutex_unlock(&mesh->mutex);
1269 // Change the mesh handle key with new key
1271 free(mesh->config_key);
1272 mesh->config_key = new_config_key;
1274 pthread_mutex_unlock(&mesh->mutex);
1279 void meshlink_open_params_free(meshlink_open_params_t *params) {
1281 meshlink_errno = MESHLINK_EINVAL;
1285 free(params->confbase);
1287 free(params->appname);
1292 /// Device class traits
1293 static const dev_class_traits_t default_class_traits[DEV_CLASS_COUNT] = {
1294 { .pingtimeout = 5, .pinginterval = 60, .min_connects = 3, .max_connects = 10000, .edge_weight = 1 }, // DEV_CLASS_BACKBONE
1295 { .pingtimeout = 5, .pinginterval = 60, .min_connects = 3, .max_connects = 100, .edge_weight = 3 }, // DEV_CLASS_STATIONARY
1296 { .pingtimeout = 5, .pinginterval = 60, .min_connects = 3, .max_connects = 3, .edge_weight = 6 }, // DEV_CLASS_PORTABLE
1297 { .pingtimeout = 5, .pinginterval = 60, .min_connects = 1, .max_connects = 1, .edge_weight = 9 }, // DEV_CLASS_UNKNOWN
1300 meshlink_handle_t *meshlink_open(const char *confbase, const char *name, const char *appname, dev_class_t devclass) {
1301 if(!confbase || !*confbase) {
1302 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
1303 meshlink_errno = MESHLINK_EINVAL;
1307 /* Create a temporary struct on the stack, to avoid allocating and freeing one. */
1308 meshlink_open_params_t params;
1309 memset(¶ms, 0, sizeof(params));
1311 params.confbase = (char *)confbase;
1312 params.name = (char *)name;
1313 params.appname = (char *)appname;
1314 params.devclass = devclass;
1317 return meshlink_open_ex(¶ms);
1320 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) {
1321 if(!confbase || !*confbase) {
1322 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
1323 meshlink_errno = MESHLINK_EINVAL;
1327 /* Create a temporary struct on the stack, to avoid allocating and freeing one. */
1328 meshlink_open_params_t params;
1329 memset(¶ms, 0, sizeof(params));
1331 params.confbase = (char *)confbase;
1332 params.name = (char *)name;
1333 params.appname = (char *)appname;
1334 params.devclass = devclass;
1337 if(!meshlink_open_params_set_storage_key(¶ms, key, keylen)) {
1341 return meshlink_open_ex(¶ms);
1344 meshlink_handle_t *meshlink_open_ephemeral(const char *name, const char *appname, dev_class_t devclass) {
1346 logger(NULL, MESHLINK_ERROR, "No name given!\n");
1347 meshlink_errno = MESHLINK_EINVAL;
1351 if(!check_id(name)) {
1352 logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
1353 meshlink_errno = MESHLINK_EINVAL;
1357 if(!appname || !*appname) {
1358 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
1359 meshlink_errno = MESHLINK_EINVAL;
1363 if(strchr(appname, ' ')) {
1364 logger(NULL, MESHLINK_ERROR, "Invalid appname given!\n");
1365 meshlink_errno = MESHLINK_EINVAL;
1369 if(devclass < 0 || devclass >= DEV_CLASS_COUNT) {
1370 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
1371 meshlink_errno = MESHLINK_EINVAL;
1375 /* Create a temporary struct on the stack, to avoid allocating and freeing one. */
1376 meshlink_open_params_t params;
1377 memset(¶ms, 0, sizeof(params));
1379 params.name = (char *)name;
1380 params.appname = (char *)appname;
1381 params.devclass = devclass;
1384 return meshlink_open_ex(¶ms);
1387 meshlink_handle_t *meshlink_open_ex(const meshlink_open_params_t *params) {
1388 logger(NULL, MESHLINK_DEBUG, "meshlink_open called\n");
1390 // Validate arguments provided by the application
1391 if(!params->appname || !*params->appname) {
1392 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
1393 meshlink_errno = MESHLINK_EINVAL;
1397 if(strchr(params->appname, ' ')) {
1398 logger(NULL, MESHLINK_ERROR, "Invalid appname given!\n");
1399 meshlink_errno = MESHLINK_EINVAL;
1403 if(params->name && !check_id(params->name)) {
1404 logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
1405 meshlink_errno = MESHLINK_EINVAL;
1409 if(params->devclass < 0 || params->devclass >= DEV_CLASS_COUNT) {
1410 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
1411 meshlink_errno = MESHLINK_EINVAL;
1415 if((params->key && !params->keylen) || (!params->key && params->keylen)) {
1416 logger(NULL, MESHLINK_ERROR, "Invalid key length!\n");
1417 meshlink_errno = MESHLINK_EINVAL;
1421 meshlink_handle_t *mesh = xzalloc(sizeof(meshlink_handle_t));
1423 if(params->confbase) {
1424 mesh->confbase = xstrdup(params->confbase);
1427 mesh->appname = xstrdup(params->appname);
1428 mesh->devclass = params->devclass;
1429 mesh->discovery = true;
1430 mesh->invitation_timeout = 604800; // 1 week
1431 mesh->netns = params->netns;
1432 mesh->submeshes = NULL;
1433 mesh->log_cb = global_log_cb;
1434 mesh->log_level = global_log_level;
1435 mesh->packet = xmalloc(sizeof(vpn_packet_t));
1437 randomize(&mesh->prng_state, sizeof(mesh->prng_state));
1440 randomize(&mesh->session_id, sizeof(mesh->session_id));
1441 } while(mesh->session_id == 0);
1443 memcpy(mesh->dev_class_traits, default_class_traits, sizeof(default_class_traits));
1445 mesh->name = params->name ? xstrdup(params->name) : NULL;
1449 mesh->config_key = xmalloc(CHACHA_POLY1305_KEYLEN);
1451 if(!prf(params->key, params->keylen, "MeshLink configuration key", 26, mesh->config_key, CHACHA_POLY1305_KEYLEN)) {
1452 logger(NULL, MESHLINK_ERROR, "Error creating configuration key!\n");
1453 meshlink_close(mesh);
1454 meshlink_errno = MESHLINK_EINTERNAL;
1460 pthread_mutexattr_t attr;
1461 pthread_mutexattr_init(&attr);
1462 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
1463 pthread_mutex_init(&mesh->mutex, &attr);
1465 mesh->threadstarted = false;
1466 event_loop_init(&mesh->loop);
1467 mesh->loop.data = mesh;
1469 meshlink_queue_init(&mesh->outpacketqueue);
1471 // Atomically lock the configuration directory.
1472 if(!main_config_lock(mesh)) {
1473 meshlink_close(mesh);
1477 // If no configuration exists yet, create it.
1479 if(!meshlink_confbase_exists(mesh)) {
1481 logger(NULL, MESHLINK_ERROR, "No configuration files found!\n");
1482 meshlink_close(mesh);
1483 meshlink_errno = MESHLINK_ESTORAGE;
1487 if(!meshlink_setup(mesh)) {
1488 logger(NULL, MESHLINK_ERROR, "Cannot create initial configuration\n");
1489 meshlink_close(mesh);
1493 if(!meshlink_read_config(mesh)) {
1494 logger(NULL, MESHLINK_ERROR, "Cannot read main configuration\n");
1495 meshlink_close(mesh);
1501 struct WSAData wsa_state;
1502 WSAStartup(MAKEWORD(2, 2), &wsa_state);
1505 // Setup up everything
1506 // TODO: we should not open listening sockets yet
1508 bool success = false;
1510 if(mesh->netns != -1) {
1514 if(pthread_create(&thr, NULL, setup_network_in_netns_thread, mesh) == 0) {
1515 void *retval = NULL;
1516 success = pthread_join(thr, &retval) == 0 && retval;
1520 meshlink_errno = MESHLINK_EINTERNAL;
1523 #endif // HAVE_SETNS
1525 success = setup_network(mesh);
1529 meshlink_close(mesh);
1530 meshlink_errno = MESHLINK_ENETWORK;
1534 add_local_addresses(mesh);
1536 if(!node_write_config(mesh, mesh->self)) {
1537 logger(NULL, MESHLINK_ERROR, "Cannot update configuration\n");
1541 idle_set(&mesh->loop, idle, mesh);
1543 logger(NULL, MESHLINK_DEBUG, "meshlink_open returning\n");
1547 meshlink_submesh_t *meshlink_submesh_open(meshlink_handle_t *mesh, const char *submesh) {
1548 meshlink_submesh_t *s = NULL;
1551 logger(NULL, MESHLINK_ERROR, "No mesh handle given!\n");
1552 meshlink_errno = MESHLINK_EINVAL;
1556 if(!submesh || !*submesh) {
1557 logger(NULL, MESHLINK_ERROR, "No submesh name given!\n");
1558 meshlink_errno = MESHLINK_EINVAL;
1563 pthread_mutex_lock(&mesh->mutex);
1565 s = (meshlink_submesh_t *)create_submesh(mesh, submesh);
1567 pthread_mutex_unlock(&mesh->mutex);
1572 static void *meshlink_main_loop(void *arg) {
1573 meshlink_handle_t *mesh = arg;
1575 if(mesh->netns != -1) {
1578 if(setns(mesh->netns, CLONE_NEWNET) != 0) {
1579 pthread_cond_signal(&mesh->cond);
1584 pthread_cond_signal(&mesh->cond);
1586 #endif // HAVE_SETNS
1591 if(mesh->discovery) {
1592 discovery_start(mesh);
1597 pthread_mutex_lock(&mesh->mutex);
1599 logger(mesh, MESHLINK_DEBUG, "Starting main_loop...\n");
1600 pthread_cond_broadcast(&mesh->cond);
1602 logger(mesh, MESHLINK_DEBUG, "main_loop returned.\n");
1604 pthread_mutex_unlock(&mesh->mutex);
1609 if(mesh->discovery) {
1610 discovery_stop(mesh);
1618 bool meshlink_start(meshlink_handle_t *mesh) {
1620 meshlink_errno = MESHLINK_EINVAL;
1624 logger(mesh, MESHLINK_DEBUG, "meshlink_start called\n");
1626 pthread_mutex_lock(&mesh->mutex);
1629 assert(mesh->private_key);
1630 assert(mesh->self->ecdsa);
1631 assert(!memcmp((uint8_t *)mesh->self->ecdsa + 64, (uint8_t *)mesh->private_key + 64, 32));
1633 if(mesh->threadstarted) {
1634 logger(mesh, MESHLINK_DEBUG, "thread was already running\n");
1635 pthread_mutex_unlock(&mesh->mutex);
1639 if(mesh->listen_socket[0].tcp.fd < 0) {
1640 logger(mesh, MESHLINK_ERROR, "Listening socket not open\n");
1641 meshlink_errno = MESHLINK_ENETWORK;
1645 // TODO: open listening sockets first
1647 //Check that a valid name is set
1649 logger(mesh, MESHLINK_DEBUG, "No name given!\n");
1650 meshlink_errno = MESHLINK_EINVAL;
1651 pthread_mutex_unlock(&mesh->mutex);
1655 init_outgoings(mesh);
1658 // Start the main thread
1660 event_loop_start(&mesh->loop);
1662 // Ensure we have a decent amount of stack space. Musl's default of 80 kB is too small.
1663 pthread_attr_t attr;
1664 pthread_attr_init(&attr);
1665 pthread_attr_setstacksize(&attr, 1024 * 1024);
1667 if(pthread_create(&mesh->thread, &attr, meshlink_main_loop, mesh) != 0) {
1668 logger(mesh, MESHLINK_DEBUG, "Could not start thread: %s\n", strerror(errno));
1669 memset(&mesh->thread, 0, sizeof(mesh)->thread);
1670 meshlink_errno = MESHLINK_EINTERNAL;
1671 event_loop_stop(&mesh->loop);
1672 pthread_mutex_unlock(&mesh->mutex);
1676 pthread_cond_wait(&mesh->cond, &mesh->mutex);
1677 mesh->threadstarted = true;
1679 // Ensure we are considered reachable
1682 pthread_mutex_unlock(&mesh->mutex);
1686 void meshlink_stop(meshlink_handle_t *mesh) {
1688 meshlink_errno = MESHLINK_EINVAL;
1692 pthread_mutex_lock(&mesh->mutex);
1693 logger(mesh, MESHLINK_DEBUG, "meshlink_stop called\n");
1695 // Shut down the main thread
1696 event_loop_stop(&mesh->loop);
1698 // Send ourselves a UDP packet to kick the event loop
1699 for(int i = 0; i < mesh->listen_sockets; i++) {
1701 socklen_t salen = sizeof(sa);
1703 if(getsockname(mesh->listen_socket[i].udp.fd, &sa.sa, &salen) == -1) {
1704 logger(mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "getsockname", sockstrerror(sockerrno));
1708 if(sendto(mesh->listen_socket[i].udp.fd, "", 1, MSG_NOSIGNAL, &sa.sa, salen) == -1) {
1709 logger(mesh, MESHLINK_ERROR, "Could not send a UDP packet to ourself: %s", sockstrerror(sockerrno));
1713 if(mesh->threadstarted) {
1714 // Wait for the main thread to finish
1715 pthread_mutex_unlock(&mesh->mutex);
1716 pthread_join(mesh->thread, NULL);
1717 pthread_mutex_lock(&mesh->mutex);
1719 mesh->threadstarted = false;
1722 // Close all metaconnections
1723 if(mesh->connections) {
1724 for(list_node_t *node = mesh->connections->head, *next; node; node = next) {
1726 connection_t *c = node->data;
1728 terminate_connection(mesh, c, false);
1733 exit_outgoings(mesh);
1735 // Ensure we are considered unreachable
1740 // Try to write out any changed node config files, ignore errors at this point.
1742 for splay_each(node_t, n, mesh->nodes) {
1743 if(n->status.dirty) {
1744 n->status.dirty = !node_write_config(mesh, n);
1749 pthread_mutex_unlock(&mesh->mutex);
1752 void meshlink_close(meshlink_handle_t *mesh) {
1754 meshlink_errno = MESHLINK_EINVAL;
1758 // stop can be called even if mesh has not been started
1759 meshlink_stop(mesh);
1761 // lock is not released after this
1762 pthread_mutex_lock(&mesh->mutex);
1764 // Close and free all resources used.
1766 close_network_connections(mesh);
1768 logger(mesh, MESHLINK_INFO, "Terminating");
1770 event_loop_exit(&mesh->loop);
1774 if(mesh->confbase) {
1780 ecdsa_free(mesh->invitation_key);
1782 if(mesh->netns != -1) {
1786 for(vpn_packet_t *packet; (packet = meshlink_queue_pop(&mesh->outpacketqueue));) {
1790 meshlink_queue_exit(&mesh->outpacketqueue);
1793 free(mesh->appname);
1794 free(mesh->confbase);
1795 free(mesh->config_key);
1796 free(mesh->external_address_url);
1798 ecdsa_free(mesh->private_key);
1800 if(mesh->invitation_addresses) {
1801 list_delete_list(mesh->invitation_addresses);
1804 main_config_unlock(mesh);
1806 pthread_mutex_unlock(&mesh->mutex);
1807 pthread_mutex_destroy(&mesh->mutex);
1809 memset(mesh, 0, sizeof(*mesh));
1814 bool meshlink_destroy(const char *confbase) {
1816 meshlink_errno = MESHLINK_EINVAL;
1820 /* Exit early if the confbase directory itself doesn't exist */
1821 if(access(confbase, F_OK) && errno == ENOENT) {
1825 /* Take the lock the same way meshlink_open() would. */
1826 char lockfilename[PATH_MAX];
1827 snprintf(lockfilename, sizeof(lockfilename), "%s" SLASH "meshlink.lock", confbase);
1829 FILE *lockfile = fopen(lockfilename, "w+");
1832 logger(NULL, MESHLINK_ERROR, "Could not open lock file %s: %s", lockfilename, strerror(errno));
1833 meshlink_errno = MESHLINK_ESTORAGE;
1838 fcntl(fileno(lockfile), F_SETFD, FD_CLOEXEC);
1842 // TODO: use _locking()?
1845 if(flock(fileno(lockfile), LOCK_EX | LOCK_NB) != 0) {
1846 logger(NULL, MESHLINK_ERROR, "Configuration directory %s still in use\n", lockfilename);
1848 meshlink_errno = MESHLINK_EBUSY;
1854 if(!config_destroy(confbase, "current") || !config_destroy(confbase, "new") || !config_destroy(confbase, "old")) {
1855 logger(NULL, MESHLINK_ERROR, "Cannot remove sub-directories in %s: %s\n", confbase, strerror(errno));
1859 if(unlink(lockfilename)) {
1860 logger(NULL, MESHLINK_ERROR, "Cannot remove lock file %s: %s\n", lockfilename, strerror(errno));
1862 meshlink_errno = MESHLINK_ESTORAGE;
1868 if(!sync_path(confbase)) {
1869 logger(NULL, MESHLINK_ERROR, "Cannot sync directory %s: %s\n", confbase, strerror(errno));
1870 meshlink_errno = MESHLINK_ESTORAGE;
1877 void meshlink_set_receive_cb(meshlink_handle_t *mesh, meshlink_receive_cb_t cb) {
1879 meshlink_errno = MESHLINK_EINVAL;
1883 pthread_mutex_lock(&mesh->mutex);
1884 mesh->receive_cb = cb;
1885 pthread_mutex_unlock(&mesh->mutex);
1888 void meshlink_set_connection_try_cb(meshlink_handle_t *mesh, meshlink_connection_try_cb_t cb) {
1890 meshlink_errno = MESHLINK_EINVAL;
1894 pthread_mutex_lock(&mesh->mutex);
1895 mesh->connection_try_cb = cb;
1896 pthread_mutex_unlock(&mesh->mutex);
1899 void meshlink_set_node_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
1901 meshlink_errno = MESHLINK_EINVAL;
1905 pthread_mutex_lock(&mesh->mutex);
1906 mesh->node_status_cb = cb;
1907 pthread_mutex_unlock(&mesh->mutex);
1910 void meshlink_set_node_pmtu_cb(meshlink_handle_t *mesh, meshlink_node_pmtu_cb_t cb) {
1912 meshlink_errno = MESHLINK_EINVAL;
1916 pthread_mutex_lock(&mesh->mutex);
1917 mesh->node_pmtu_cb = cb;
1918 pthread_mutex_unlock(&mesh->mutex);
1921 void meshlink_set_node_duplicate_cb(meshlink_handle_t *mesh, meshlink_node_duplicate_cb_t cb) {
1923 meshlink_errno = MESHLINK_EINVAL;
1927 pthread_mutex_lock(&mesh->mutex);
1928 mesh->node_duplicate_cb = cb;
1929 pthread_mutex_unlock(&mesh->mutex);
1932 void meshlink_set_log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, meshlink_log_cb_t cb) {
1934 pthread_mutex_lock(&mesh->mutex);
1936 mesh->log_level = cb ? level : 0;
1937 pthread_mutex_unlock(&mesh->mutex);
1940 global_log_level = cb ? level : 0;
1944 void meshlink_set_error_cb(struct meshlink_handle *mesh, meshlink_error_cb_t cb) {
1946 meshlink_errno = MESHLINK_EINVAL;
1950 pthread_mutex_lock(&mesh->mutex);
1951 mesh->error_cb = cb;
1952 pthread_mutex_unlock(&mesh->mutex);
1955 static bool prepare_packet(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len, vpn_packet_t *packet) {
1956 meshlink_packethdr_t *hdr;
1958 if(len > MAXSIZE - sizeof(*hdr)) {
1959 meshlink_errno = MESHLINK_EINVAL;
1963 node_t *n = (node_t *)destination;
1965 if(n->status.blacklisted) {
1966 logger(mesh, MESHLINK_ERROR, "Node %s blacklisted, dropping packet\n", n->name);
1967 meshlink_errno = MESHLINK_EBLACKLISTED;
1971 // Prepare the packet
1972 packet->probe = false;
1973 packet->tcp = false;
1974 packet->len = len + sizeof(*hdr);
1976 hdr = (meshlink_packethdr_t *)packet->data;
1977 memset(hdr, 0, sizeof(*hdr));
1978 // leave the last byte as 0 to make sure strings are always
1979 // null-terminated if they are longer than the buffer
1980 strncpy((char *)hdr->destination, destination->name, sizeof(hdr->destination) - 1);
1981 strncpy((char *)hdr->source, mesh->self->name, sizeof(hdr->source) - 1);
1983 memcpy(packet->data + sizeof(*hdr), data, len);
1988 static bool meshlink_send_immediate(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len) {
1990 assert(destination);
1994 // Prepare the packet
1995 if(!prepare_packet(mesh, destination, data, len, mesh->packet)) {
1999 // Send it immediately
2000 route(mesh, mesh->self, mesh->packet);
2005 bool meshlink_send(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len) {
2006 // Validate arguments
2007 if(!mesh || !destination) {
2008 meshlink_errno = MESHLINK_EINVAL;
2017 meshlink_errno = MESHLINK_EINVAL;
2021 // Prepare the packet
2022 vpn_packet_t *packet = malloc(sizeof(*packet));
2025 meshlink_errno = MESHLINK_ENOMEM;
2029 if(!prepare_packet(mesh, destination, data, len, packet)) {
2035 if(!meshlink_queue_push(&mesh->outpacketqueue, packet)) {
2037 meshlink_errno = MESHLINK_ENOMEM;
2041 logger(mesh, MESHLINK_DEBUG, "Adding packet of %zu bytes to packet queue", len);
2043 // Notify event loop
2044 signal_trigger(&mesh->loop, &mesh->datafromapp);
2049 void meshlink_send_from_queue(event_loop_t *loop, void *data) {
2051 meshlink_handle_t *mesh = data;
2053 logger(mesh, MESHLINK_DEBUG, "Flushing the packet queue");
2055 for(vpn_packet_t *packet; (packet = meshlink_queue_pop(&mesh->outpacketqueue));) {
2056 logger(mesh, MESHLINK_DEBUG, "Removing packet of %d bytes from packet queue", packet->len);
2057 mesh->self->in_packets++;
2058 mesh->self->in_bytes += packet->len;
2059 route(mesh, mesh->self, packet);
2064 ssize_t meshlink_get_pmtu(meshlink_handle_t *mesh, meshlink_node_t *destination) {
2065 if(!mesh || !destination) {
2066 meshlink_errno = MESHLINK_EINVAL;
2070 pthread_mutex_lock(&mesh->mutex);
2072 node_t *n = (node_t *)destination;
2074 if(!n->status.reachable) {
2075 pthread_mutex_unlock(&mesh->mutex);
2078 } else if(n->mtuprobes > 30 && n->minmtu) {
2079 pthread_mutex_unlock(&mesh->mutex);
2082 pthread_mutex_unlock(&mesh->mutex);
2087 char *meshlink_get_fingerprint(meshlink_handle_t *mesh, meshlink_node_t *node) {
2088 if(!mesh || !node) {
2089 meshlink_errno = MESHLINK_EINVAL;
2093 pthread_mutex_lock(&mesh->mutex);
2095 node_t *n = (node_t *)node;
2097 if(!node_read_public_key(mesh, n) || !n->ecdsa) {
2098 meshlink_errno = MESHLINK_EINTERNAL;
2099 pthread_mutex_unlock(&mesh->mutex);
2103 char *fingerprint = ecdsa_get_base64_public_key(n->ecdsa);
2106 meshlink_errno = MESHLINK_EINTERNAL;
2109 pthread_mutex_unlock(&mesh->mutex);
2113 meshlink_node_t *meshlink_get_self(meshlink_handle_t *mesh) {
2115 meshlink_errno = MESHLINK_EINVAL;
2119 return (meshlink_node_t *)mesh->self;
2122 meshlink_node_t *meshlink_get_node(meshlink_handle_t *mesh, const char *name) {
2123 if(!mesh || !name) {
2124 meshlink_errno = MESHLINK_EINVAL;
2130 pthread_mutex_lock(&mesh->mutex);
2131 n = lookup_node(mesh, (char *)name); // TODO: make lookup_node() use const
2132 pthread_mutex_unlock(&mesh->mutex);
2135 meshlink_errno = MESHLINK_ENOENT;
2138 return (meshlink_node_t *)n;
2141 meshlink_submesh_t *meshlink_get_submesh(meshlink_handle_t *mesh, const char *name) {
2142 if(!mesh || !name) {
2143 meshlink_errno = MESHLINK_EINVAL;
2147 meshlink_submesh_t *submesh = NULL;
2149 pthread_mutex_lock(&mesh->mutex);
2150 submesh = (meshlink_submesh_t *)lookup_submesh(mesh, name);
2151 pthread_mutex_unlock(&mesh->mutex);
2154 meshlink_errno = MESHLINK_ENOENT;
2160 meshlink_node_t **meshlink_get_all_nodes(meshlink_handle_t *mesh, meshlink_node_t **nodes, size_t *nmemb) {
2161 if(!mesh || !nmemb || (*nmemb && !nodes)) {
2162 meshlink_errno = MESHLINK_EINVAL;
2166 meshlink_node_t **result;
2169 pthread_mutex_lock(&mesh->mutex);
2171 *nmemb = mesh->nodes->count;
2172 result = realloc(nodes, *nmemb * sizeof(*nodes));
2175 meshlink_node_t **p = result;
2177 for splay_each(node_t, n, mesh->nodes) {
2178 *p++ = (meshlink_node_t *)n;
2183 meshlink_errno = MESHLINK_ENOMEM;
2186 pthread_mutex_unlock(&mesh->mutex);
2191 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) {
2192 meshlink_node_t **result;
2194 pthread_mutex_lock(&mesh->mutex);
2198 for splay_each(node_t, n, mesh->nodes) {
2199 if(search_node(n, condition)) {
2206 pthread_mutex_unlock(&mesh->mutex);
2210 result = realloc(nodes, *nmemb * sizeof(*nodes));
2213 meshlink_node_t **p = result;
2215 for splay_each(node_t, n, mesh->nodes) {
2216 if(search_node(n, condition)) {
2217 *p++ = (meshlink_node_t *)n;
2223 meshlink_errno = MESHLINK_ENOMEM;
2226 pthread_mutex_unlock(&mesh->mutex);
2231 static bool search_node_by_dev_class(const node_t *node, const void *condition) {
2232 dev_class_t *devclass = (dev_class_t *)condition;
2234 if(*devclass == (dev_class_t)node->devclass) {
2241 static bool search_node_by_submesh(const node_t *node, const void *condition) {
2242 if(condition == node->submesh) {
2254 static bool search_node_by_last_reachable(const node_t *node, const void *condition) {
2255 const struct time_range *range = condition;
2256 time_t start = node->last_reachable;
2257 time_t end = node->last_unreachable;
2267 if(range->end >= range->start) {
2268 return start <= range->end && end >= range->start;
2270 return start > range->start || end < range->end;
2274 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) {
2275 if(!mesh || devclass < 0 || devclass >= DEV_CLASS_COUNT || !nmemb) {
2276 meshlink_errno = MESHLINK_EINVAL;
2280 return meshlink_get_all_nodes_by_condition(mesh, &devclass, nodes, nmemb, search_node_by_dev_class);
2283 meshlink_node_t **meshlink_get_all_nodes_by_submesh(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, meshlink_node_t **nodes, size_t *nmemb) {
2284 if(!mesh || !submesh || !nmemb) {
2285 meshlink_errno = MESHLINK_EINVAL;
2289 return meshlink_get_all_nodes_by_condition(mesh, submesh, nodes, nmemb, search_node_by_submesh);
2292 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) {
2293 if(!mesh || !nmemb) {
2294 meshlink_errno = MESHLINK_EINVAL;
2298 struct time_range range = {start, end};
2300 return meshlink_get_all_nodes_by_condition(mesh, &range, nodes, nmemb, search_node_by_last_reachable);
2303 dev_class_t meshlink_get_node_dev_class(meshlink_handle_t *mesh, meshlink_node_t *node) {
2304 if(!mesh || !node) {
2305 meshlink_errno = MESHLINK_EINVAL;
2309 dev_class_t devclass;
2311 pthread_mutex_lock(&mesh->mutex);
2313 devclass = ((node_t *)node)->devclass;
2315 pthread_mutex_unlock(&mesh->mutex);
2320 meshlink_submesh_t *meshlink_get_node_submesh(meshlink_handle_t *mesh, meshlink_node_t *node) {
2321 if(!mesh || !node) {
2322 meshlink_errno = MESHLINK_EINVAL;
2326 node_t *n = (node_t *)node;
2328 meshlink_submesh_t *s;
2330 s = (meshlink_submesh_t *)n->submesh;
2335 bool meshlink_get_node_reachability(struct meshlink_handle *mesh, struct meshlink_node *node, time_t *last_reachable, time_t *last_unreachable) {
2336 if(!mesh || !node) {
2337 meshlink_errno = MESHLINK_EINVAL;
2341 node_t *n = (node_t *)node;
2344 pthread_mutex_lock(&mesh->mutex);
2345 reachable = n->status.reachable && !n->status.blacklisted;
2347 if(last_reachable) {
2348 *last_reachable = n->last_reachable;
2351 if(last_unreachable) {
2352 *last_unreachable = n->last_unreachable;
2355 pthread_mutex_unlock(&mesh->mutex);
2360 bool meshlink_sign(meshlink_handle_t *mesh, const void *data, size_t len, void *signature, size_t *siglen) {
2361 if(!mesh || !data || !len || !signature || !siglen) {
2362 meshlink_errno = MESHLINK_EINVAL;
2366 if(*siglen < MESHLINK_SIGLEN) {
2367 meshlink_errno = MESHLINK_EINVAL;
2371 pthread_mutex_lock(&mesh->mutex);
2373 if(!ecdsa_sign(mesh->private_key, data, len, signature)) {
2374 meshlink_errno = MESHLINK_EINTERNAL;
2375 pthread_mutex_unlock(&mesh->mutex);
2379 *siglen = MESHLINK_SIGLEN;
2380 pthread_mutex_unlock(&mesh->mutex);
2384 bool meshlink_verify(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len, const void *signature, size_t siglen) {
2385 if(!mesh || !source || !data || !len || !signature) {
2386 meshlink_errno = MESHLINK_EINVAL;
2390 if(siglen != MESHLINK_SIGLEN) {
2391 meshlink_errno = MESHLINK_EINVAL;
2395 pthread_mutex_lock(&mesh->mutex);
2399 struct node_t *n = (struct node_t *)source;
2401 if(!node_read_public_key(mesh, n)) {
2402 meshlink_errno = MESHLINK_EINTERNAL;
2405 rval = ecdsa_verify(((struct node_t *)source)->ecdsa, data, len, signature);
2408 pthread_mutex_unlock(&mesh->mutex);
2412 static bool refresh_invitation_key(meshlink_handle_t *mesh) {
2413 pthread_mutex_lock(&mesh->mutex);
2415 size_t count = invitation_purge_old(mesh, time(NULL) - mesh->invitation_timeout);
2418 // TODO: Update invitation key if necessary?
2421 pthread_mutex_unlock(&mesh->mutex);
2423 return mesh->invitation_key;
2426 bool meshlink_set_canonical_address(meshlink_handle_t *mesh, meshlink_node_t *node, const char *address, const char *port) {
2427 if(!mesh || !node || !address) {
2428 meshlink_errno = MESHLINK_EINVAL;
2432 if(!is_valid_hostname(address)) {
2433 logger(mesh, MESHLINK_DEBUG, "Invalid character in address: %s", address);
2434 meshlink_errno = MESHLINK_EINVAL;
2438 if((node_t *)node != mesh->self && !port) {
2439 logger(mesh, MESHLINK_DEBUG, "Missing port number!");
2440 meshlink_errno = MESHLINK_EINVAL;
2445 if(port && !is_valid_port(port)) {
2446 logger(mesh, MESHLINK_DEBUG, "Invalid character in port: %s", address);
2447 meshlink_errno = MESHLINK_EINVAL;
2451 char *canonical_address;
2454 xasprintf(&canonical_address, "%s %s", address, port);
2456 canonical_address = xstrdup(address);
2459 pthread_mutex_lock(&mesh->mutex);
2461 node_t *n = (node_t *)node;
2462 free(n->canonical_address);
2463 n->canonical_address = canonical_address;
2465 if(!node_write_config(mesh, n)) {
2466 pthread_mutex_unlock(&mesh->mutex);
2470 pthread_mutex_unlock(&mesh->mutex);
2472 return config_sync(mesh, "current");
2475 bool meshlink_add_invitation_address(struct meshlink_handle *mesh, const char *address, const char *port) {
2476 if(!mesh || !address) {
2477 meshlink_errno = MESHLINK_EINVAL;
2481 if(!is_valid_hostname(address)) {
2482 logger(mesh, MESHLINK_DEBUG, "Invalid character in address: %s\n", address);
2483 meshlink_errno = MESHLINK_EINVAL;
2487 if(port && !is_valid_port(port)) {
2488 logger(mesh, MESHLINK_DEBUG, "Invalid character in port: %s\n", address);
2489 meshlink_errno = MESHLINK_EINVAL;
2496 xasprintf(&combo, "%s/%s", address, port);
2498 combo = xstrdup(address);
2501 pthread_mutex_lock(&mesh->mutex);
2503 if(!mesh->invitation_addresses) {
2504 mesh->invitation_addresses = list_alloc((list_action_t)free);
2507 list_insert_tail(mesh->invitation_addresses, combo);
2508 pthread_mutex_unlock(&mesh->mutex);
2513 void meshlink_clear_invitation_addresses(struct meshlink_handle *mesh) {
2515 meshlink_errno = MESHLINK_EINVAL;
2519 pthread_mutex_lock(&mesh->mutex);
2521 if(mesh->invitation_addresses) {
2522 list_delete_list(mesh->invitation_addresses);
2523 mesh->invitation_addresses = NULL;
2526 pthread_mutex_unlock(&mesh->mutex);
2529 bool meshlink_add_address(meshlink_handle_t *mesh, const char *address) {
2530 return meshlink_set_canonical_address(mesh, (meshlink_node_t *)mesh->self, address, NULL);
2533 bool meshlink_add_external_address(meshlink_handle_t *mesh) {
2535 meshlink_errno = MESHLINK_EINVAL;
2539 char *address = meshlink_get_external_address(mesh);
2545 bool rval = meshlink_set_canonical_address(mesh, (meshlink_node_t *)mesh->self, address, NULL);
2551 int meshlink_get_port(meshlink_handle_t *mesh) {
2553 meshlink_errno = MESHLINK_EINVAL;
2558 meshlink_errno = MESHLINK_EINTERNAL;
2564 pthread_mutex_lock(&mesh->mutex);
2565 port = atoi(mesh->myport);
2566 pthread_mutex_unlock(&mesh->mutex);
2571 bool meshlink_set_port(meshlink_handle_t *mesh, int port) {
2572 if(!mesh || port < 0 || port >= 65536 || mesh->threadstarted) {
2573 meshlink_errno = MESHLINK_EINVAL;
2577 if(mesh->myport && port == atoi(mesh->myport)) {
2581 if(!try_bind(mesh, port)) {
2582 meshlink_errno = MESHLINK_ENETWORK;
2586 devtool_trybind_probe();
2590 pthread_mutex_lock(&mesh->mutex);
2592 if(mesh->threadstarted) {
2593 meshlink_errno = MESHLINK_EINVAL;
2598 xasprintf(&mesh->myport, "%d", port);
2600 /* Close down the network. This also deletes mesh->self. */
2601 close_network_connections(mesh);
2603 /* Recreate mesh->self. */
2604 mesh->self = new_node();
2605 mesh->self->name = xstrdup(mesh->name);
2606 mesh->self->devclass = mesh->devclass;
2607 mesh->self->session_id = mesh->session_id;
2608 xasprintf(&mesh->myport, "%d", port);
2610 if(!node_read_public_key(mesh, mesh->self)) {
2611 logger(NULL, MESHLINK_ERROR, "Could not read our host configuration file!");
2612 meshlink_errno = MESHLINK_ESTORAGE;
2613 free_node(mesh->self);
2616 } else if(!setup_network(mesh)) {
2617 meshlink_errno = MESHLINK_ENETWORK;
2621 /* Rebuild our own list of recent addresses */
2622 memset(mesh->self->recent, 0, sizeof(mesh->self->recent));
2623 add_local_addresses(mesh);
2625 /* Write meshlink.conf with the updated port number */
2626 write_main_config_files(mesh);
2628 rval = config_sync(mesh, "current");
2631 pthread_mutex_unlock(&mesh->mutex);
2633 return rval && meshlink_get_port(mesh) == port;
2636 void meshlink_set_invitation_timeout(meshlink_handle_t *mesh, int timeout) {
2637 mesh->invitation_timeout = timeout;
2640 char *meshlink_invite_ex(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, const char *name, uint32_t flags) {
2641 meshlink_submesh_t *s = NULL;
2644 meshlink_errno = MESHLINK_EINVAL;
2649 s = (meshlink_submesh_t *)lookup_submesh(mesh, submesh->name);
2652 logger(mesh, MESHLINK_DEBUG, "Invalid SubMesh Handle.\n");
2653 meshlink_errno = MESHLINK_EINVAL;
2657 s = (meshlink_submesh_t *)mesh->self->submesh;
2660 pthread_mutex_lock(&mesh->mutex);
2662 // Check validity of the new node's name
2663 if(!check_id(name)) {
2664 logger(mesh, MESHLINK_ERROR, "Invalid name for node.\n");
2665 meshlink_errno = MESHLINK_EINVAL;
2666 pthread_mutex_unlock(&mesh->mutex);
2670 // Ensure no host configuration file with that name exists
2671 if(config_exists(mesh, "current", name)) {
2672 logger(mesh, MESHLINK_ERROR, "A host config file for %s already exists!\n", name);
2673 meshlink_errno = MESHLINK_EEXIST;
2674 pthread_mutex_unlock(&mesh->mutex);
2678 // Ensure no other nodes know about this name
2679 if(lookup_node(mesh, name)) {
2680 logger(mesh, MESHLINK_ERROR, "A node with name %s is already known!\n", name);
2681 meshlink_errno = MESHLINK_EEXIST;
2682 pthread_mutex_unlock(&mesh->mutex);
2686 // Get the local address
2687 char *address = get_my_hostname(mesh, flags);
2690 logger(mesh, MESHLINK_ERROR, "No Address known for ourselves!\n");
2691 meshlink_errno = MESHLINK_ERESOLV;
2692 pthread_mutex_unlock(&mesh->mutex);
2696 if(!refresh_invitation_key(mesh)) {
2697 meshlink_errno = MESHLINK_EINTERNAL;
2698 pthread_mutex_unlock(&mesh->mutex);
2702 // If we changed our own host config file, write it out now
2703 if(mesh->self->status.dirty) {
2704 if(!node_write_config(mesh, mesh->self)) {
2705 logger(mesh, MESHLINK_ERROR, "Could not write our own host config file!\n");
2706 pthread_mutex_unlock(&mesh->mutex);
2713 // Create a hash of the key.
2714 char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
2715 sha512(fingerprint, strlen(fingerprint), hash);
2716 b64encode_urlsafe(hash, hash, 18);
2718 // Create a random cookie for this invitation.
2720 randomize(cookie, 18);
2722 // Create a filename that doesn't reveal the cookie itself
2723 char buf[18 + strlen(fingerprint)];
2724 char cookiehash[64];
2725 memcpy(buf, cookie, 18);
2726 memcpy(buf + 18, fingerprint, sizeof(buf) - 18);
2727 sha512(buf, sizeof(buf), cookiehash);
2728 b64encode_urlsafe(cookiehash, cookiehash, 18);
2730 b64encode_urlsafe(cookie, cookie, 18);
2734 /* Construct the invitation file */
2735 uint8_t outbuf[4096];
2736 packmsg_output_t inv = {outbuf, sizeof(outbuf)};
2738 packmsg_add_uint32(&inv, MESHLINK_INVITATION_VERSION);
2739 packmsg_add_str(&inv, name);
2740 packmsg_add_str(&inv, s ? s->name : CORE_MESH);
2741 packmsg_add_int32(&inv, DEV_CLASS_UNKNOWN); /* TODO: allow this to be set by inviter? */
2743 /* TODO: Add several host config files to bootstrap connections.
2744 * Note: make sure we only add config files of nodes that are in the core mesh or the same submesh,
2745 * and are not blacklisted.
2747 config_t configs[5];
2748 memset(configs, 0, sizeof(configs));
2751 if(config_read(mesh, "current", mesh->self->name, &configs[count], mesh->config_key)) {
2755 /* Append host config files to the invitation file */
2756 packmsg_add_array(&inv, count);
2758 for(int i = 0; i < count; i++) {
2759 packmsg_add_bin(&inv, configs[i].buf, configs[i].len);
2760 config_free(&configs[i]);
2763 config_t config = {outbuf, packmsg_output_size(&inv, outbuf)};
2765 if(!invitation_write(mesh, "current", cookiehash, &config, mesh->config_key)) {
2766 logger(mesh, MESHLINK_DEBUG, "Could not create invitation file %s: %s\n", cookiehash, strerror(errno));
2767 meshlink_errno = MESHLINK_ESTORAGE;
2768 pthread_mutex_unlock(&mesh->mutex);
2772 // Create an URL from the local address, key hash and cookie
2774 xasprintf(&url, "%s/%s%s", address, hash, cookie);
2777 pthread_mutex_unlock(&mesh->mutex);
2781 char *meshlink_invite(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, const char *name) {
2782 return meshlink_invite_ex(mesh, submesh, name, 0);
2785 bool meshlink_join(meshlink_handle_t *mesh, const char *invitation) {
2786 if(!mesh || !invitation) {
2787 meshlink_errno = MESHLINK_EINVAL;
2791 join_state_t state = {
2796 ecdsa_t *key = NULL;
2797 ecdsa_t *hiskey = NULL;
2799 //TODO: think of a better name for this variable, or of a different way to tokenize the invitation URL.
2800 char copy[strlen(invitation) + 1];
2802 pthread_mutex_lock(&mesh->mutex);
2804 //Before doing meshlink_join make sure we are not connected to another mesh
2805 if(mesh->threadstarted) {
2806 logger(mesh, MESHLINK_ERROR, "Cannot join while started\n");
2807 meshlink_errno = MESHLINK_EINVAL;
2811 // 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.
2812 if(mesh->nodes->count > 1) {
2813 logger(mesh, MESHLINK_ERROR, "Already part of an existing mesh\n");
2814 meshlink_errno = MESHLINK_EINVAL;
2818 strcpy(copy, invitation);
2820 // Split the invitation URL into a list of hostname/port tuples, a key hash and a cookie.
2822 char *slash = strchr(copy, '/');
2830 if(strlen(slash) != 48) {
2834 char *address = copy;
2837 if(!b64decode(slash, state.hash, 18) || !b64decode(slash + 24, state.cookie, 18)) {
2841 if(mesh->inviter_commits_first) {
2842 memcpy(state.cookie + 18, ecdsa_get_public_key(mesh->private_key), 32);
2845 // Generate a throw-away key for the invitation.
2846 key = ecdsa_generate();
2849 meshlink_errno = MESHLINK_EINTERNAL;
2853 char *b64key = ecdsa_get_base64_public_key(key);
2856 while(address && *address) {
2857 // We allow commas in the address part to support multiple addresses in one invitation URL.
2858 comma = strchr(address, ',');
2864 // Split of the port
2865 port = strrchr(address, ':');
2873 // IPv6 address are enclosed in brackets, per RFC 3986
2874 if(*address == '[') {
2876 char *bracket = strchr(address, ']');
2889 // Connect to the meshlink daemon mentioned in the URL.
2890 struct addrinfo *ai = adns_blocking_request(mesh, xstrdup(address), xstrdup(port), 5);
2893 for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
2894 state.sock = socket_in_netns(aip->ai_family, aip->ai_socktype, aip->ai_protocol, mesh->netns);
2896 if(state.sock == -1) {
2897 logger(mesh, MESHLINK_DEBUG, "Could not open socket: %s\n", strerror(errno));
2898 meshlink_errno = MESHLINK_ENETWORK;
2902 set_timeout(state.sock, 5000);
2904 if(connect(state.sock, aip->ai_addr, aip->ai_addrlen)) {
2905 logger(mesh, MESHLINK_DEBUG, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
2906 meshlink_errno = MESHLINK_ENETWORK;
2907 closesocket(state.sock);
2917 meshlink_errno = MESHLINK_ERESOLV;
2920 if(state.sock != -1 || !comma) {
2927 if(state.sock == -1) {
2931 logger(mesh, MESHLINK_DEBUG, "Connected to %s port %s...\n", address, port);
2933 // Tell him we have an invitation, and give him our throw-away key.
2937 if(!sendline(state.sock, "0 ?%s %d.%d %s", b64key, PROT_MAJOR, PROT_MINOR, mesh->appname)) {
2938 logger(mesh, MESHLINK_DEBUG, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
2939 meshlink_errno = MESHLINK_ENETWORK;
2945 char hisname[4096] = "";
2946 int code, hismajor, hisminor = 0;
2948 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) {
2949 logger(mesh, MESHLINK_DEBUG, "Cannot read greeting from peer\n");
2950 meshlink_errno = MESHLINK_ENETWORK;
2954 // Check if the hash of the key he gave us matches the hash in the URL.
2955 char *fingerprint = state.line + 2;
2958 if(sha512(fingerprint, strlen(fingerprint), hishash)) {
2959 logger(mesh, MESHLINK_DEBUG, "Could not create hash\n%s\n", state.line + 2);
2960 meshlink_errno = MESHLINK_EINTERNAL;
2964 if(memcmp(hishash, state.hash, 18)) {
2965 logger(mesh, MESHLINK_DEBUG, "Peer has an invalid key!\n%s\n", state.line + 2);
2966 meshlink_errno = MESHLINK_EPEER;
2970 hiskey = ecdsa_set_base64_public_key(fingerprint);
2973 meshlink_errno = MESHLINK_EINTERNAL;
2977 // Start an SPTPS session
2978 if(!sptps_start(&state.sptps, &state, true, false, key, hiskey, meshlink_invitation_label, sizeof(meshlink_invitation_label), invitation_send, invitation_receive)) {
2979 meshlink_errno = MESHLINK_EINTERNAL;
2983 // Feed rest of input buffer to SPTPS
2984 if(!sptps_receive_data(&state.sptps, state.buffer, state.blen)) {
2985 meshlink_errno = MESHLINK_EPEER;
2990 logger(mesh, MESHLINK_DEBUG, "Starting invitation recv loop: %d %zu\n", state.sock, sizeof(state.line));
2992 while((len = recv(state.sock, state.line, sizeof(state.line), 0))) {
2994 if(errno == EINTR) {
2998 logger(mesh, MESHLINK_DEBUG, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
2999 meshlink_errno = MESHLINK_ENETWORK;
3003 if(!sptps_receive_data(&state.sptps, state.line, len)) {
3004 meshlink_errno = MESHLINK_EPEER;
3009 if(!state.success) {
3010 logger(mesh, MESHLINK_DEBUG, "Connection closed by peer, invitation cancelled.\n");
3011 meshlink_errno = MESHLINK_EPEER;
3015 sptps_stop(&state.sptps);
3018 closesocket(state.sock);
3020 pthread_mutex_unlock(&mesh->mutex);
3024 logger(mesh, MESHLINK_DEBUG, "Invalid invitation URL\n");
3025 meshlink_errno = MESHLINK_EINVAL;
3027 sptps_stop(&state.sptps);
3031 if(state.sock != -1) {
3032 closesocket(state.sock);
3035 pthread_mutex_unlock(&mesh->mutex);
3039 char *meshlink_export(meshlink_handle_t *mesh) {
3041 meshlink_errno = MESHLINK_EINVAL;
3045 // Create a config file on the fly.
3048 packmsg_output_t out = {buf, sizeof(buf)};
3049 packmsg_add_uint32(&out, MESHLINK_CONFIG_VERSION);
3050 packmsg_add_str(&out, mesh->name);
3051 packmsg_add_str(&out, CORE_MESH);
3053 pthread_mutex_lock(&mesh->mutex);
3055 packmsg_add_int32(&out, mesh->self->devclass);
3056 packmsg_add_bool(&out, mesh->self->status.blacklisted);
3057 packmsg_add_bin(&out, ecdsa_get_public_key(mesh->private_key), 32);
3059 if(mesh->self->canonical_address && !strchr(mesh->self->canonical_address, ' ')) {
3060 char *canonical_address = NULL;
3061 xasprintf(&canonical_address, "%s %s", mesh->self->canonical_address, mesh->myport);
3062 packmsg_add_str(&out, canonical_address);
3063 free(canonical_address);
3065 packmsg_add_str(&out, mesh->self->canonical_address ? mesh->self->canonical_address : "");
3070 for(uint32_t i = 0; i < MAX_RECENT; i++) {
3071 if(mesh->self->recent[i].sa.sa_family) {
3078 packmsg_add_array(&out, count);
3080 for(uint32_t i = 0; i < count; i++) {
3081 packmsg_add_sockaddr(&out, &mesh->self->recent[i]);
3084 packmsg_add_int64(&out, 0);
3085 packmsg_add_int64(&out, 0);
3087 pthread_mutex_unlock(&mesh->mutex);
3089 if(!packmsg_output_ok(&out)) {
3090 logger(mesh, MESHLINK_DEBUG, "Error creating export data\n");
3091 meshlink_errno = MESHLINK_EINTERNAL;
3095 // Prepare a base64-encoded packmsg array containing our config file
3097 uint32_t len = packmsg_output_size(&out, buf);
3098 uint32_t len2 = ((len + 4) * 4) / 3 + 4;
3099 uint8_t *buf2 = xmalloc(len2);
3100 packmsg_output_t out2 = {buf2, len2};
3101 packmsg_add_array(&out2, 1);
3102 packmsg_add_bin(&out2, buf, packmsg_output_size(&out, buf));
3104 if(!packmsg_output_ok(&out2)) {
3105 logger(mesh, MESHLINK_DEBUG, "Error creating export data\n");
3106 meshlink_errno = MESHLINK_EINTERNAL;
3111 b64encode_urlsafe(buf2, (char *)buf2, packmsg_output_size(&out2, buf2));
3113 return (char *)buf2;
3116 bool meshlink_import(meshlink_handle_t *mesh, const char *data) {
3117 if(!mesh || !data) {
3118 meshlink_errno = MESHLINK_EINVAL;
3122 size_t datalen = strlen(data);
3123 uint8_t *buf = xmalloc(datalen);
3124 int buflen = b64decode(data, buf, datalen);
3127 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
3128 meshlink_errno = MESHLINK_EPEER;
3132 packmsg_input_t in = {buf, buflen};
3133 uint32_t count = packmsg_get_array(&in);
3136 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
3137 meshlink_errno = MESHLINK_EPEER;
3141 pthread_mutex_lock(&mesh->mutex);
3145 uint32_t len2 = packmsg_get_bin_raw(&in, &data2);
3151 packmsg_input_t in2 = {data2, len2};
3152 uint32_t version = packmsg_get_uint32(&in2);
3153 char *name = packmsg_get_str_dup(&in2);
3155 if(!packmsg_input_ok(&in2) || version != MESHLINK_CONFIG_VERSION || !check_id(name)) {
3157 packmsg_input_invalidate(&in);
3161 if(!check_id(name)) {
3166 node_t *n = lookup_node(mesh, name);
3169 logger(mesh, MESHLINK_DEBUG, "Node %s already exists, not importing\n", name);
3177 config_t config = {data2, len2};
3179 if(!node_read_from_config(mesh, n, &config)) {
3181 packmsg_input_invalidate(&in);
3185 /* Clear the reachability times, since we ourself have never seen these nodes yet */
3186 n->last_reachable = 0;
3187 n->last_unreachable = 0;
3189 if(!node_write_config(mesh, n)) {
3197 pthread_mutex_unlock(&mesh->mutex);
3201 if(!packmsg_done(&in)) {
3202 logger(mesh, MESHLINK_ERROR, "Invalid data\n");
3203 meshlink_errno = MESHLINK_EPEER;
3207 if(!config_sync(mesh, "current")) {
3214 static bool blacklist(meshlink_handle_t *mesh, node_t *n) {
3215 if(n == mesh->self) {
3216 logger(mesh, MESHLINK_ERROR, "%s blacklisting itself?\n", n->name);
3217 meshlink_errno = MESHLINK_EINVAL;
3221 if(n->status.blacklisted) {
3222 logger(mesh, MESHLINK_DEBUG, "Node %s already blacklisted\n", n->name);
3226 n->status.blacklisted = true;
3228 /* Immediately shut down any connections we have with the blacklisted node.
3229 * We can't call terminate_connection(), because we might be called from a callback function.
3231 for list_each(connection_t, c, mesh->connections) {
3233 shutdown(c->socket, SHUT_RDWR);
3237 utcp_abort_all_connections(n->utcp);
3243 n->status.udp_confirmed = false;
3245 if(n->status.reachable) {
3246 n->last_unreachable = time(NULL);
3249 /* Graph updates will suppress status updates for blacklisted nodes, so we need to
3250 * manually call the status callback if necessary.
3252 if(n->status.reachable && mesh->node_status_cb) {
3253 mesh->node_status_cb(mesh, (meshlink_node_t *)n, false);
3256 return node_write_config(mesh, n) && config_sync(mesh, "current");
3259 bool meshlink_blacklist(meshlink_handle_t *mesh, meshlink_node_t *node) {
3260 if(!mesh || !node) {
3261 meshlink_errno = MESHLINK_EINVAL;
3265 pthread_mutex_lock(&mesh->mutex);
3267 if(!blacklist(mesh, (node_t *)node)) {
3268 pthread_mutex_unlock(&mesh->mutex);
3272 pthread_mutex_unlock(&mesh->mutex);
3274 logger(mesh, MESHLINK_DEBUG, "Blacklisted %s.\n", node->name);
3278 bool meshlink_blacklist_by_name(meshlink_handle_t *mesh, const char *name) {
3279 if(!mesh || !name) {
3280 meshlink_errno = MESHLINK_EINVAL;
3284 pthread_mutex_lock(&mesh->mutex);
3286 node_t *n = lookup_node(mesh, (char *)name);
3290 n->name = xstrdup(name);
3294 if(!blacklist(mesh, (node_t *)n)) {
3295 pthread_mutex_unlock(&mesh->mutex);
3299 pthread_mutex_unlock(&mesh->mutex);
3301 logger(mesh, MESHLINK_DEBUG, "Blacklisted %s.\n", name);
3305 static bool whitelist(meshlink_handle_t *mesh, node_t *n) {
3306 if(n == mesh->self) {
3307 logger(mesh, MESHLINK_ERROR, "%s whitelisting itself?\n", n->name);
3308 meshlink_errno = MESHLINK_EINVAL;
3312 if(!n->status.blacklisted) {
3313 logger(mesh, MESHLINK_DEBUG, "Node %s was already whitelisted\n", n->name);
3317 n->status.blacklisted = false;
3319 if(n->status.reachable) {
3320 n->last_reachable = time(NULL);
3321 update_node_status(mesh, n);
3324 return node_write_config(mesh, n) && config_sync(mesh, "current");
3327 bool meshlink_whitelist(meshlink_handle_t *mesh, meshlink_node_t *node) {
3328 if(!mesh || !node) {
3329 meshlink_errno = MESHLINK_EINVAL;
3333 pthread_mutex_lock(&mesh->mutex);
3335 if(!whitelist(mesh, (node_t *)node)) {
3336 pthread_mutex_unlock(&mesh->mutex);
3340 pthread_mutex_unlock(&mesh->mutex);
3342 logger(mesh, MESHLINK_DEBUG, "Whitelisted %s.\n", node->name);
3346 bool meshlink_whitelist_by_name(meshlink_handle_t *mesh, const char *name) {
3347 if(!mesh || !name) {
3348 meshlink_errno = MESHLINK_EINVAL;
3352 pthread_mutex_lock(&mesh->mutex);
3354 node_t *n = lookup_node(mesh, (char *)name);
3358 n->name = xstrdup(name);
3362 if(!whitelist(mesh, (node_t *)n)) {
3363 pthread_mutex_unlock(&mesh->mutex);
3367 pthread_mutex_unlock(&mesh->mutex);
3369 logger(mesh, MESHLINK_DEBUG, "Whitelisted %s.\n", name);
3373 void meshlink_set_default_blacklist(meshlink_handle_t *mesh, bool blacklist) {
3374 mesh->default_blacklist = blacklist;
3377 bool meshlink_forget_node(meshlink_handle_t *mesh, meshlink_node_t *node) {
3378 if(!mesh || !node) {
3379 meshlink_errno = MESHLINK_EINVAL;
3383 node_t *n = (node_t *)node;
3385 pthread_mutex_lock(&mesh->mutex);
3387 /* Check that the node is not reachable */
3388 if(n->status.reachable || n->connection) {
3389 pthread_mutex_unlock(&mesh->mutex);
3390 logger(mesh, MESHLINK_WARNING, "Could not forget %s: still reachable", n->name);
3394 /* Check that we don't have any active UTCP connections */
3395 if(n->utcp && utcp_is_active(n->utcp)) {
3396 pthread_mutex_unlock(&mesh->mutex);
3397 logger(mesh, MESHLINK_WARNING, "Could not forget %s: active UTCP connections", n->name);
3401 /* Check that we have no active connections to this node */
3402 for list_each(connection_t, c, mesh->connections) {
3404 pthread_mutex_unlock(&mesh->mutex);
3405 logger(mesh, MESHLINK_WARNING, "Could not forget %s: active connection", n->name);
3410 /* Remove any pending outgoings to this node */
3411 if(mesh->outgoings) {
3412 for list_each(outgoing_t, outgoing, mesh->outgoings) {
3413 if(outgoing->node == n) {
3414 list_delete_node(mesh->outgoings, list_node);
3419 /* Delete the config file for this node */
3420 if(!config_delete(mesh, "current", n->name)) {
3421 pthread_mutex_unlock(&mesh->mutex);
3425 /* Delete the node struct and any remaining edges referencing this node */
3428 pthread_mutex_unlock(&mesh->mutex);
3430 return config_sync(mesh, "current");
3433 /* Hint that a hostname may be found at an address
3434 * See header file for detailed comment.
3436 void meshlink_hint_address(meshlink_handle_t *mesh, meshlink_node_t *node, const struct sockaddr *addr) {
3437 if(!mesh || !node || !addr) {
3438 meshlink_errno = EINVAL;
3442 pthread_mutex_lock(&mesh->mutex);
3444 node_t *n = (node_t *)node;
3446 if(node_add_recent_address(mesh, n, (sockaddr_t *)addr)) {
3447 if(!node_write_config(mesh, n)) {
3448 logger(mesh, MESHLINK_DEBUG, "Could not update %s\n", n->name);
3452 pthread_mutex_unlock(&mesh->mutex);
3453 // @TODO do we want to fire off a connection attempt right away?
3456 static bool channel_pre_accept(struct utcp *utcp, uint16_t port) {
3458 node_t *n = utcp->priv;
3459 meshlink_handle_t *mesh = n->mesh;
3460 return mesh->channel_accept_cb;
3463 /* Finish one AIO buffer, return true if the channel is still open. */
3464 static bool aio_finish_one(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_aio_buffer_t **head) {
3465 meshlink_aio_buffer_t *aio = *head;
3469 channel->in_callback = true;
3472 if(aio->cb.buffer) {
3473 aio->cb.buffer(mesh, channel, aio->data, aio->done, aio->priv);
3477 aio->cb.fd(mesh, channel, aio->fd, aio->done, aio->priv);
3481 channel->in_callback = false;
3494 /* Finish all AIO buffers, return true if the channel is still open. */
3495 static bool aio_abort(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_aio_buffer_t **head) {
3497 if(!aio_finish_one(mesh, channel, head)) {
3505 static ssize_t channel_recv(struct utcp_connection *connection, const void *data, size_t len) {
3506 meshlink_channel_t *channel = connection->priv;
3512 node_t *n = channel->node;
3513 meshlink_handle_t *mesh = n->mesh;
3515 if(n->status.destroyed) {
3516 meshlink_channel_close(mesh, channel);
3520 const char *p = data;
3523 while(channel->aio_receive) {
3525 /* This receive callback signalled an error, abort all outstanding AIO buffers. */
3526 if(!aio_abort(mesh, channel, &channel->aio_receive)) {
3533 meshlink_aio_buffer_t *aio = channel->aio_receive;
3534 size_t todo = aio->len - aio->done;
3541 memcpy((char *)aio->data + aio->done, p, todo);
3543 ssize_t result = write(aio->fd, p, todo);
3546 if(result < 0 && errno == EINTR) {
3550 /* Writing to fd failed, cancel just this AIO buffer. */
3551 logger(mesh, MESHLINK_ERROR, "Writing to AIO fd %d failed: %s", aio->fd, strerror(errno));
3553 if(!aio_finish_one(mesh, channel, &channel->aio_receive)) {
3567 if(aio->done == aio->len) {
3568 if(!aio_finish_one(mesh, channel, &channel->aio_receive)) {
3578 if(channel->receive_cb) {
3579 channel->receive_cb(mesh, channel, p, left);
3585 static void channel_accept(struct utcp_connection *utcp_connection, uint16_t port) {
3586 node_t *n = utcp_connection->utcp->priv;
3592 meshlink_handle_t *mesh = n->mesh;
3594 if(!mesh->channel_accept_cb) {
3598 meshlink_channel_t *channel = xzalloc(sizeof(*channel));
3600 channel->c = utcp_connection;
3602 if(mesh->channel_accept_cb(mesh, channel, port, NULL, 0)) {
3603 utcp_accept(utcp_connection, channel_recv, channel);
3609 static void channel_retransmit(struct utcp_connection *utcp_connection) {
3610 node_t *n = utcp_connection->utcp->priv;
3611 meshlink_handle_t *mesh = n->mesh;
3613 if(n->mtuprobes == 31) {
3614 timeout_set(&mesh->loop, &n->mtutimeout, &(struct timespec) {
3620 static ssize_t channel_send(struct utcp *utcp, const void *data, size_t len) {
3621 node_t *n = utcp->priv;
3623 if(n->status.destroyed) {
3627 meshlink_handle_t *mesh = n->mesh;
3628 return meshlink_send_immediate(mesh, (meshlink_node_t *)n, data, len) ? (ssize_t)len : -1;
3631 void meshlink_set_channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_receive_cb_t cb) {
3632 if(!mesh || !channel) {
3633 meshlink_errno = MESHLINK_EINVAL;
3637 channel->receive_cb = cb;
3640 static void channel_receive(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len) {
3642 node_t *n = (node_t *)source;
3648 utcp_recv(n->utcp, data, len);
3651 static void channel_poll(struct utcp_connection *connection, size_t len) {
3652 meshlink_channel_t *channel = connection->priv;
3658 node_t *n = channel->node;
3659 meshlink_handle_t *mesh = n->mesh;
3661 while(channel->aio_send) {
3663 /* This poll callback signalled an error, abort all outstanding AIO buffers. */
3664 if(!aio_abort(mesh, channel, &channel->aio_send)) {
3671 /* We have at least one AIO buffer. Send as much as possible from the buffers. */
3672 meshlink_aio_buffer_t *aio = channel->aio_send;
3673 size_t todo = aio->len - aio->done;
3681 sent = utcp_send(connection, (char *)aio->data + aio->done, todo);
3683 /* Limit the amount we read at once to avoid stack overflows */
3689 ssize_t result = read(aio->fd, buf, todo);
3693 sent = utcp_send(connection, buf, todo);
3695 if(result < 0 && errno == EINTR) {
3699 /* Reading from fd failed, cancel just this AIO buffer. */
3701 logger(mesh, MESHLINK_ERROR, "Reading from AIO fd %d failed: %s", aio->fd, strerror(errno));
3704 if(!aio_finish_one(mesh, channel, &channel->aio_send)) {
3712 if(sent != (ssize_t)todo) {
3713 /* We should never get a partial send at this point */
3716 /* Sending failed, abort all outstanding AIO buffers and send a poll callback. */
3717 if(!aio_abort(mesh, channel, &channel->aio_send)) {
3728 /* If we didn't finish this buffer, exit early. */
3729 if(aio->done < aio->len) {
3733 /* Signal completion of this buffer, and go to the next one. */
3734 if(!aio_finish_one(mesh, channel, &channel->aio_send)) {
3743 if(channel->poll_cb) {
3744 channel->poll_cb(mesh, channel, len);
3746 utcp_set_poll_cb(connection, NULL);
3750 void meshlink_set_channel_poll_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_poll_cb_t cb) {
3751 if(!mesh || !channel) {
3752 meshlink_errno = MESHLINK_EINVAL;
3756 pthread_mutex_lock(&mesh->mutex);
3757 channel->poll_cb = cb;
3758 utcp_set_poll_cb(channel->c, (cb || channel->aio_send) ? channel_poll : NULL);
3759 pthread_mutex_unlock(&mesh->mutex);
3762 void meshlink_set_channel_accept_cb(meshlink_handle_t *mesh, meshlink_channel_accept_cb_t cb) {
3764 meshlink_errno = MESHLINK_EINVAL;
3768 pthread_mutex_lock(&mesh->mutex);
3769 mesh->channel_accept_cb = cb;
3770 mesh->receive_cb = channel_receive;
3772 for splay_each(node_t, n, mesh->nodes) {
3773 if(!n->utcp && n != mesh->self) {
3774 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
3775 utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
3776 utcp_set_retransmit_cb(n->utcp, channel_retransmit);
3780 pthread_mutex_unlock(&mesh->mutex);
3783 void meshlink_set_channel_sndbuf(meshlink_handle_t *mesh, meshlink_channel_t *channel, size_t size) {
3787 meshlink_errno = MESHLINK_EINVAL;
3791 pthread_mutex_lock(&mesh->mutex);
3792 utcp_set_sndbuf(channel->c, size);
3793 pthread_mutex_unlock(&mesh->mutex);
3796 void meshlink_set_channel_rcvbuf(meshlink_handle_t *mesh, meshlink_channel_t *channel, size_t size) {
3800 meshlink_errno = MESHLINK_EINVAL;
3804 pthread_mutex_lock(&mesh->mutex);
3805 utcp_set_rcvbuf(channel->c, size);
3806 pthread_mutex_unlock(&mesh->mutex);
3809 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) {
3811 abort(); // TODO: handle non-NULL data
3814 if(!mesh || !node) {
3815 meshlink_errno = MESHLINK_EINVAL;
3819 pthread_mutex_lock(&mesh->mutex);
3821 node_t *n = (node_t *)node;
3824 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
3825 utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
3826 utcp_set_retransmit_cb(n->utcp, channel_retransmit);
3827 mesh->receive_cb = channel_receive;
3830 meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
3831 pthread_mutex_unlock(&mesh->mutex);
3836 if(n->status.blacklisted) {
3837 logger(mesh, MESHLINK_ERROR, "Cannot open a channel with blacklisted node\n");
3838 meshlink_errno = MESHLINK_EBLACKLISTED;
3839 pthread_mutex_unlock(&mesh->mutex);
3843 meshlink_channel_t *channel = xzalloc(sizeof(*channel));
3845 channel->receive_cb = cb;
3848 channel->priv = (void *)data;
3851 channel->c = utcp_connect_ex(n->utcp, port, channel_recv, channel, flags);
3853 pthread_mutex_unlock(&mesh->mutex);
3856 meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
3864 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) {
3865 return meshlink_channel_open_ex(mesh, node, port, cb, data, len, MESHLINK_CHANNEL_TCP);
3868 void meshlink_channel_shutdown(meshlink_handle_t *mesh, meshlink_channel_t *channel, int direction) {
3869 if(!mesh || !channel) {
3870 meshlink_errno = MESHLINK_EINVAL;
3874 pthread_mutex_lock(&mesh->mutex);
3875 utcp_shutdown(channel->c, direction);
3876 pthread_mutex_unlock(&mesh->mutex);
3879 void meshlink_channel_close(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
3880 if(!mesh || !channel) {
3881 meshlink_errno = MESHLINK_EINVAL;
3885 pthread_mutex_lock(&mesh->mutex);
3888 utcp_close(channel->c);
3891 /* Clean up any outstanding AIO buffers. */
3892 aio_abort(mesh, channel, &channel->aio_send);
3893 aio_abort(mesh, channel, &channel->aio_receive);
3896 if(!channel->in_callback) {
3900 pthread_mutex_unlock(&mesh->mutex);
3903 ssize_t meshlink_channel_send(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *data, size_t len) {
3904 if(!mesh || !channel) {
3905 meshlink_errno = MESHLINK_EINVAL;
3914 meshlink_errno = MESHLINK_EINVAL;
3918 // TODO: more finegrained locking.
3919 // Ideally we want to put the data into the UTCP connection's send buffer.
3920 // Then, preferably only if there is room in the receiver window,
3921 // kick the meshlink thread to go send packets.
3925 pthread_mutex_lock(&mesh->mutex);
3927 /* Disallow direct calls to utcp_send() while we still have AIO active. */
3928 if(channel->aio_send) {
3931 retval = utcp_send(channel->c, data, len);
3934 pthread_mutex_unlock(&mesh->mutex);
3937 meshlink_errno = MESHLINK_ENETWORK;
3943 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) {
3944 if(!mesh || !channel) {
3945 meshlink_errno = MESHLINK_EINVAL;
3950 meshlink_errno = MESHLINK_EINVAL;
3954 meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
3957 aio->cb.buffer = cb;
3960 pthread_mutex_lock(&mesh->mutex);
3962 /* Append the AIO buffer descriptor to the end of the chain */
3963 meshlink_aio_buffer_t **p = &channel->aio_send;
3971 /* Ensure the poll callback is set, and call it right now to push data if possible */
3972 utcp_set_poll_cb(channel->c, channel_poll);
3973 size_t todo = MIN(len, utcp_get_rcvbuf_free(channel->c));
3976 channel_poll(channel->c, todo);
3979 pthread_mutex_unlock(&mesh->mutex);
3984 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) {
3985 if(!mesh || !channel) {
3986 meshlink_errno = MESHLINK_EINVAL;
3990 if(!len || fd == -1) {
3991 meshlink_errno = MESHLINK_EINVAL;
3995 meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
4001 pthread_mutex_lock(&mesh->mutex);
4003 /* Append the AIO buffer descriptor to the end of the chain */
4004 meshlink_aio_buffer_t **p = &channel->aio_send;
4012 /* Ensure the poll callback is set, and call it right now to push data if possible */
4013 utcp_set_poll_cb(channel->c, channel_poll);
4014 size_t left = utcp_get_rcvbuf_free(channel->c);
4017 channel_poll(channel->c, left);
4020 pthread_mutex_unlock(&mesh->mutex);
4025 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) {
4026 if(!mesh || !channel) {
4027 meshlink_errno = MESHLINK_EINVAL;
4032 meshlink_errno = MESHLINK_EINVAL;
4036 meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
4039 aio->cb.buffer = cb;
4042 pthread_mutex_lock(&mesh->mutex);
4044 /* Append the AIO buffer descriptor to the end of the chain */
4045 meshlink_aio_buffer_t **p = &channel->aio_receive;
4053 pthread_mutex_unlock(&mesh->mutex);
4058 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) {
4059 if(!mesh || !channel) {
4060 meshlink_errno = MESHLINK_EINVAL;
4064 if(!len || fd == -1) {
4065 meshlink_errno = MESHLINK_EINVAL;
4069 meshlink_aio_buffer_t *aio = xzalloc(sizeof(*aio));
4075 pthread_mutex_lock(&mesh->mutex);
4077 /* Append the AIO buffer descriptor to the end of the chain */
4078 meshlink_aio_buffer_t **p = &channel->aio_receive;
4086 pthread_mutex_unlock(&mesh->mutex);
4091 uint32_t meshlink_channel_get_flags(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4092 if(!mesh || !channel) {
4093 meshlink_errno = MESHLINK_EINVAL;
4097 return channel->c->flags;
4100 size_t meshlink_channel_get_sendq(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4101 if(!mesh || !channel) {
4102 meshlink_errno = MESHLINK_EINVAL;
4106 return utcp_get_sendq(channel->c);
4109 size_t meshlink_channel_get_recvq(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4110 if(!mesh || !channel) {
4111 meshlink_errno = MESHLINK_EINVAL;
4115 return utcp_get_recvq(channel->c);
4118 size_t meshlink_channel_get_mss(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
4119 if(!mesh || !channel) {
4120 meshlink_errno = MESHLINK_EINVAL;
4124 return utcp_get_mss(channel->node->utcp);
4127 void meshlink_set_node_channel_timeout(meshlink_handle_t *mesh, meshlink_node_t *node, int timeout) {
4128 if(!mesh || !node) {
4129 meshlink_errno = MESHLINK_EINVAL;
4133 node_t *n = (node_t *)node;
4135 pthread_mutex_lock(&mesh->mutex);
4138 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
4139 utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
4140 utcp_set_retransmit_cb(n->utcp, channel_retransmit);
4143 utcp_set_user_timeout(n->utcp, timeout);
4145 pthread_mutex_unlock(&mesh->mutex);
4148 void update_node_status(meshlink_handle_t *mesh, node_t *n) {
4149 if(n->status.reachable && mesh->channel_accept_cb && !n->utcp) {
4150 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
4151 utcp_set_mtu(n->utcp, n->mtu - sizeof(meshlink_packethdr_t));
4152 utcp_set_retransmit_cb(n->utcp, channel_retransmit);
4155 if(mesh->node_status_cb) {
4156 mesh->node_status_cb(mesh, (meshlink_node_t *)n, n->status.reachable && !n->status.blacklisted);
4159 if(mesh->node_pmtu_cb) {
4160 mesh->node_pmtu_cb(mesh, (meshlink_node_t *)n, n->minmtu);
4164 void update_node_pmtu(meshlink_handle_t *mesh, node_t *n) {
4165 utcp_set_mtu(n->utcp, (n->minmtu > MINMTU ? n->minmtu : MINMTU) - sizeof(meshlink_packethdr_t));
4167 if(mesh->node_pmtu_cb && !n->status.blacklisted) {
4168 mesh->node_pmtu_cb(mesh, (meshlink_node_t *)n, n->minmtu);
4172 void handle_duplicate_node(meshlink_handle_t *mesh, node_t *n) {
4173 if(!mesh->node_duplicate_cb || n->status.duplicate) {
4177 n->status.duplicate = true;
4178 mesh->node_duplicate_cb(mesh, (meshlink_node_t *)n);
4181 void meshlink_enable_discovery(meshlink_handle_t *mesh, bool enable) {
4185 meshlink_errno = MESHLINK_EINVAL;
4189 pthread_mutex_lock(&mesh->mutex);
4191 if(mesh->discovery == enable) {
4195 if(mesh->threadstarted) {
4197 discovery_start(mesh);
4199 discovery_stop(mesh);
4203 mesh->discovery = enable;
4206 pthread_mutex_unlock(&mesh->mutex);
4210 meshlink_errno = MESHLINK_ENOTSUP;
4214 void meshlink_set_dev_class_timeouts(meshlink_handle_t *mesh, dev_class_t devclass, int pinginterval, int pingtimeout) {
4215 if(!mesh || devclass < 0 || devclass >= DEV_CLASS_COUNT) {
4216 meshlink_errno = EINVAL;
4220 if(pinginterval < 1 || pingtimeout < 1 || pingtimeout > pinginterval) {
4221 meshlink_errno = EINVAL;
4225 pthread_mutex_lock(&mesh->mutex);
4226 mesh->dev_class_traits[devclass].pinginterval = pinginterval;
4227 mesh->dev_class_traits[devclass].pingtimeout = pingtimeout;
4228 pthread_mutex_unlock(&mesh->mutex);
4231 void meshlink_set_dev_class_fast_retry_period(meshlink_handle_t *mesh, dev_class_t devclass, int fast_retry_period) {
4232 if(!mesh || devclass < 0 || devclass >= DEV_CLASS_COUNT) {
4233 meshlink_errno = EINVAL;
4237 if(fast_retry_period < 0) {
4238 meshlink_errno = EINVAL;
4242 pthread_mutex_lock(&mesh->mutex);
4243 mesh->dev_class_traits[devclass].fast_retry_period = fast_retry_period;
4244 pthread_mutex_unlock(&mesh->mutex);
4247 extern void meshlink_set_inviter_commits_first(struct meshlink_handle *mesh, bool inviter_commits_first) {
4249 meshlink_errno = EINVAL;
4253 pthread_mutex_lock(&mesh->mutex);
4254 mesh->inviter_commits_first = inviter_commits_first;
4255 pthread_mutex_unlock(&mesh->mutex);
4258 void meshlink_set_external_address_discovery_url(struct meshlink_handle *mesh, const char *url) {
4260 meshlink_errno = EINVAL;
4264 if(url && (strncmp(url, "http://", 7) || strchr(url, ' '))) {
4265 meshlink_errno = EINVAL;
4269 pthread_mutex_lock(&mesh->mutex);
4270 free(mesh->external_address_url);
4271 mesh->external_address_url = url ? xstrdup(url) : NULL;
4272 pthread_mutex_unlock(&mesh->mutex);
4275 void meshlink_set_scheduling_granularity(struct meshlink_handle *mesh, long granularity) {
4276 if(!mesh || granularity < 0) {
4277 meshlink_errno = EINVAL;
4281 utcp_set_clock_granularity(granularity);
4284 void handle_network_change(meshlink_handle_t *mesh, bool online) {
4287 if(!mesh->connections || !mesh->loop.running) {
4294 void call_error_cb(meshlink_handle_t *mesh, meshlink_errno_t cb_errno) {
4295 // We should only call the callback function if we are in the background thread.
4296 if(!mesh->error_cb) {
4300 if(!mesh->threadstarted) {
4304 if(mesh->thread == pthread_self()) {
4305 mesh->error_cb(mesh, cb_errno);
4309 static void __attribute__((constructor)) meshlink_init(void) {
4311 utcp_set_clock_granularity(10000);
4314 static void __attribute__((destructor)) meshlink_exit(void) {