3 Copyright (C) 2014-2017 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.
23 #include "connection.h"
27 #include "meshlink_internal.h"
37 /// Helper function to start parsing a host config file
38 static bool node_get_config(meshlink_handle_t *mesh, node_t *n, config_t *config, packmsg_input_t *in) {
39 if(!config_read(mesh, "current", n->name, config, mesh->config_key)) {
43 in->ptr = config->buf;
44 in->len = config->len;
46 uint32_t version = packmsg_get_uint32(in);
48 if(version != MESHLINK_CONFIG_VERSION) {
49 logger(mesh, MESHLINK_ERROR, "Invalid config file for node %s", n->name);
55 uint32_t len = packmsg_get_str_raw(in, &name);
57 if(len != strlen(n->name) || !name || strncmp(name, n->name, len)) {
58 logger(mesh, MESHLINK_ERROR, "Invalid config file for node %s", n->name);
66 /// Read the public key from a host config file. Used whenever we need to start an SPTPS session.
67 bool node_read_public_key(meshlink_handle_t *mesh, node_t *n) {
68 if(ecdsa_active(n->ecdsa)) {
75 if(!node_get_config(mesh, n, &config, &in)) {
79 packmsg_skip_element(&in); /* submesh */
80 packmsg_get_int32(&in); /* devclass */
81 packmsg_get_bool(&in); /* blacklisted */
84 uint32_t len = packmsg_get_bin_raw(&in, &key);
91 n->ecdsa = ecdsa_set_public_key(key);
93 // While we are at it, read known address information
94 if(!n->canonical_address) {
95 n->canonical_address = packmsg_get_str_dup(&in);
97 if(!*n->canonical_address) {
98 free(n->canonical_address);
99 n->canonical_address = NULL;
102 packmsg_skip_element(&in);
105 // Append any known addresses in the config file to the list we currently have
106 uint32_t known_count = 0;
108 for(uint32_t i = 0; i < MAX_RECENT; i++) {
109 if(n->recent[i].sa.sa_family) {
114 uint32_t count = packmsg_get_array(&in);
116 for(uint32_t i = 0; i < count; i++) {
117 if(i < MAX_RECENT - known_count) {
118 n->recent[i + known_count] = packmsg_get_sockaddr(&in);
120 packmsg_skip_element(&in);
124 time_t last_reachable = packmsg_get_int64(&in);
125 time_t last_unreachable = packmsg_get_int64(&in);
127 if(!n->last_reachable) {
128 n->last_reachable = last_reachable;
131 if(!n->last_unreachable) {
132 n->last_unreachable = last_unreachable;
135 config_free(&config);
139 /// Fill in node details from a config blob.
140 bool node_read_from_config(meshlink_handle_t *mesh, node_t *n, const config_t *config) {
141 if(n->canonical_address) {
145 packmsg_input_t in = {config->buf, config->len};
146 uint32_t version = packmsg_get_uint32(&in);
148 if(version != MESHLINK_CONFIG_VERSION) {
152 char *name = packmsg_get_str_dup(&in);
159 if(strcmp(n->name, name)) {
169 char *submesh_name = packmsg_get_str_dup(&in);
171 if(!strcmp(submesh_name, CORE_MESH)) {
175 n->submesh = lookup_or_create_submesh(mesh, submesh_name);
183 n->devclass = packmsg_get_int32(&in);
184 n->status.blacklisted = packmsg_get_bool(&in);
186 uint32_t len = packmsg_get_bin_raw(&in, &key);
193 if(!ecdsa_active(n->ecdsa)) {
194 n->ecdsa = ecdsa_set_public_key(key);
198 n->canonical_address = packmsg_get_str_dup(&in);
200 if(!*n->canonical_address) {
201 free(n->canonical_address);
202 n->canonical_address = NULL;
205 uint32_t count = packmsg_get_array(&in);
207 for(uint32_t i = 0; i < count; i++) {
209 n->recent[i] = packmsg_get_sockaddr(&in);
211 packmsg_skip_element(&in);
215 n->last_reachable = packmsg_get_int64(&in);
216 n->last_unreachable = packmsg_get_int64(&in);
218 return packmsg_done(&in);
221 bool node_write_config(meshlink_handle_t *mesh, node_t *n) {
222 if(!mesh->confbase) {
227 packmsg_output_t out = {buf, sizeof(buf)};
229 packmsg_add_uint32(&out, MESHLINK_CONFIG_VERSION);
230 packmsg_add_str(&out, n->name);
231 packmsg_add_str(&out, n->submesh ? n->submesh->name : CORE_MESH);
232 packmsg_add_int32(&out, n->devclass);
233 packmsg_add_bool(&out, n->status.blacklisted);
235 if(ecdsa_active(n->ecdsa)) {
236 packmsg_add_bin(&out, ecdsa_get_public_key(n->ecdsa), 32);
238 packmsg_add_bin(&out, "", 0);
241 packmsg_add_str(&out, n->canonical_address ? n->canonical_address : "");
245 for(uint32_t i = 0; i < MAX_RECENT; i++) {
246 if(n->recent[i].sa.sa_family) {
253 packmsg_add_array(&out, count);
255 for(uint32_t i = 0; i < count; i++) {
256 packmsg_add_sockaddr(&out, &n->recent[i]);
259 packmsg_add_int64(&out, n->last_reachable);
260 packmsg_add_int64(&out, n->last_unreachable);
262 if(!packmsg_output_ok(&out)) {
263 meshlink_errno = MESHLINK_EINTERNAL;
267 config_t config = {buf, packmsg_output_size(&out, buf)};
269 if(!config_write(mesh, "current", n->name, &config, mesh->config_key)) {
270 call_error_cb(mesh, MESHLINK_ESTORAGE);
277 static bool load_node(meshlink_handle_t *mesh, const char *name, void *priv) {
280 if(!check_id(name)) {
284 node_t *n = lookup_node(mesh, name);
291 n->name = xstrdup(name);
296 if(!node_get_config(mesh, n, &config, &in)) {
301 if(!node_read_from_config(mesh, n, &config)) {
302 logger(mesh, MESHLINK_ERROR, "Invalid config file for node %s", n->name);
303 config_free(&config);
308 config_free(&config);
315 int setup_tcp_listen_socket(meshlink_handle_t *mesh, const struct addrinfo *aip) {
316 int nfd = socket(aip->ai_family, SOCK_STREAM, IPPROTO_TCP);
323 fcntl(nfd, F_SETFD, FD_CLOEXEC);
327 setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, (void *)&option, sizeof(option));
329 #if defined(IPV6_V6ONLY)
331 if(aip->ai_family == AF_INET6) {
332 setsockopt(nfd, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&option, sizeof(option));
336 #warning IPV6_V6ONLY not defined
339 if(bind(nfd, aip->ai_addr, aip->ai_addrlen)) {
345 logger(mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "listen", sockstrerror(sockerrno));
353 int setup_udp_listen_socket(meshlink_handle_t *mesh, const struct addrinfo *aip) {
354 int nfd = socket(aip->ai_family, SOCK_DGRAM, IPPROTO_UDP);
361 fcntl(nfd, F_SETFD, FD_CLOEXEC);
365 int flags = fcntl(nfd, F_GETFL);
367 if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0) {
369 logger(mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "fcntl", strerror(errno));
374 unsigned long arg = 1;
376 if(ioctlsocket(nfd, FIONBIO, &arg) != 0) {
378 logger(mesh, MESHLINK_ERROR, "Call to `%s' failed: %s", "ioctlsocket", sockstrerror(sockerrno));
385 setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, (void *)&option, sizeof(option));
386 setsockopt(nfd, SOL_SOCKET, SO_BROADCAST, (void *)&option, sizeof(option));
388 #if defined(IPV6_V6ONLY)
390 if(aip->ai_family == AF_INET6) {
391 setsockopt(nfd, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&option, sizeof(option));
396 #if defined(IP_DONTFRAG) && !defined(IP_DONTFRAGMENT)
397 #define IP_DONTFRAGMENT IP_DONTFRAG
400 #if defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DO)
401 option = IP_PMTUDISC_DO;
402 setsockopt(nfd, IPPROTO_IP, IP_MTU_DISCOVER, (void *)&option, sizeof(option));
403 #elif defined(IP_DONTFRAGMENT)
405 setsockopt(nfd, IPPROTO_IP, IP_DONTFRAGMENT, (void *)&option, sizeof(option));
408 if(aip->ai_family == AF_INET6) {
409 #if defined(IPV6_MTU_DISCOVER) && defined(IPV6_PMTUDISC_DO)
410 option = IPV6_PMTUDISC_DO;
411 setsockopt(nfd, IPPROTO_IPV6, IPV6_MTU_DISCOVER, (void *)&option, sizeof(option));
412 #elif defined(IPV6_DONTFRAG)
414 setsockopt(nfd, IPPROTO_IPV6, IPV6_DONTFRAG, (void *)&option, sizeof(option));
418 if(bind(nfd, aip->ai_addr, aip->ai_addrlen)) {
427 Add listening sockets.
429 static bool add_listen_sockets(meshlink_handle_t *mesh) {
432 struct addrinfo hint = {
433 .ai_family = AF_UNSPEC,
434 .ai_socktype = SOCK_STREAM,
435 .ai_protocol = IPPROTO_TCP,
436 .ai_flags = AI_PASSIVE | AI_NUMERICSERV,
439 int err = getaddrinfo(NULL, mesh->myport, &hint, &ai);
442 logger(mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "getaddrinfo", err == EAI_SYSTEM ? strerror(err) : gai_strerror(err));
446 bool success = false;
448 for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
449 // Ignore duplicate addresses
452 for(int i = 0; i < mesh->listen_sockets; i++) {
453 if(!memcmp(&mesh->listen_socket[i].sa, aip->ai_addr, aip->ai_addrlen)) {
463 if(mesh->listen_sockets >= MAXSOCKETS) {
464 logger(mesh, MESHLINK_ERROR, "Too many listening sockets");
468 /* Try to bind to TCP */
470 int tcp_fd = setup_tcp_listen_socket(mesh, aip);
473 if(errno == EADDRINUSE) {
474 /* If this port is in use for any address family, avoid it. */
482 /* If TCP worked, then we require that UDP works as well. */
484 int udp_fd = setup_udp_listen_socket(mesh, aip);
492 io_add(&mesh->loop, &mesh->listen_socket[mesh->listen_sockets].tcp, handle_new_meta_connection, &mesh->listen_socket[mesh->listen_sockets], tcp_fd, IO_READ);
493 io_add(&mesh->loop, &mesh->listen_socket[mesh->listen_sockets].udp, handle_incoming_vpn_data, &mesh->listen_socket[mesh->listen_sockets], udp_fd, IO_READ);
495 if(mesh->log_level <= MESHLINK_INFO) {
496 char *hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
497 logger(mesh, MESHLINK_INFO, "Listening on %s", hostname);
501 memcpy(&mesh->listen_socket[mesh->listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
502 memcpy(&mesh->listen_socket[mesh->listen_sockets].broadcast_sa, aip->ai_addr, aip->ai_addrlen);
504 if(aip->ai_family == AF_INET6) {
505 mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in6.sin6_addr.s6_addr[0x0] = 0xff;
506 mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in6.sin6_addr.s6_addr[0x1] = 0x02;
507 mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in6.sin6_addr.s6_addr[0xf] = 0x01;
509 mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in.sin_addr.s_addr = 0xffffffff;
512 mesh->listen_sockets++;
519 for(int i = 0; i < mesh->listen_sockets; i++) {
520 io_del(&mesh->loop, &mesh->listen_socket[i].tcp);
521 io_del(&mesh->loop, &mesh->listen_socket[i].udp);
522 close(mesh->listen_socket[i].tcp.fd);
523 close(mesh->listen_socket[i].udp.fd);
526 mesh->listen_sockets = 0;
533 Configure node_t mesh->self and set up the local sockets (listen only)
535 static bool setup_myself(meshlink_handle_t *mesh) {
536 mesh->self->nexthop = mesh->self;
538 node_add(mesh, mesh->self);
540 if(!config_scan_all(mesh, "current", "hosts", load_node, NULL)) {
541 logger(mesh, MESHLINK_WARNING, "Could not scan all host config files");
546 mesh->listen_sockets = 0;
548 if(!add_listen_sockets(mesh)) {
549 if(strcmp(mesh->myport, "0")) {
550 logger(mesh, MESHLINK_WARNING, "Could not bind to port %s, trying to find an alternative port", mesh->myport);
552 if(!check_port(mesh)) {
553 logger(mesh, MESHLINK_WARNING, "Could not bind to any port, trying to bind to port 0");
555 mesh->myport = xstrdup("0");
558 if(!add_listen_sockets(mesh)) {
566 if(!mesh->listen_sockets) {
567 logger(mesh, MESHLINK_ERROR, "Unable to create any listening socket!");
573 mesh->last_unreachable = mesh->loop.now.tv_sec;
581 bool setup_network(meshlink_handle_t *mesh) {
582 init_connections(mesh);
583 init_submeshes(mesh);
588 if(!setup_myself(mesh)) {
596 close all open network connections
598 void close_network_connections(meshlink_handle_t *mesh) {
599 if(mesh->connections) {
600 for(list_node_t *node = mesh->connections->head, *next; node; node = next) {
602 connection_t *c = node->data;
604 terminate_connection(mesh, c, false);
608 for(int i = 0; i < mesh->listen_sockets; i++) {
609 io_del(&mesh->loop, &mesh->listen_socket[i].tcp);
610 io_del(&mesh->loop, &mesh->listen_socket[i].udp);
611 close(mesh->listen_socket[i].tcp.fd);
612 close(mesh->listen_socket[i].udp.fd);
618 exit_submeshes(mesh);
619 exit_connections(mesh);