]> git.meshlink.io Git - meshlink/blob - src/net_setup.c
Add meshlink_get_all_nodes_by_last_reachable().
[meshlink] / src / net_setup.c
1 /*
2     net_setup.c -- Setup.
3     Copyright (C) 2014-2017 Guus Sliepen <guus@meshlink.io>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "system.h"
21
22 #include "conf.h"
23 #include "connection.h"
24 #include "ecdsa.h"
25 #include "graph.h"
26 #include "logger.h"
27 #include "meshlink_internal.h"
28 #include "net.h"
29 #include "netutl.h"
30 #include "packmsg.h"
31 #include "protocol.h"
32 #include "route.h"
33 #include "utils.h"
34 #include "xalloc.h"
35 #include "submesh.h"
36
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)) {
40                 return false;
41         }
42
43         in->ptr = config->buf;
44         in->len = config->len;
45
46         uint32_t version = packmsg_get_uint32(in);
47
48         if(version != MESHLINK_CONFIG_VERSION) {
49                 logger(mesh, MESHLINK_ERROR, "Invalid config file for node %s", n->name);
50                 config_free(config);
51                 return false;
52         }
53
54         const char *name;
55         uint32_t len = packmsg_get_str_raw(in, &name);
56
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);
59                 config_free(config);
60                 return false;
61         }
62
63         return true;
64 }
65
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)) {
69                 return true;
70         }
71
72         config_t config;
73         packmsg_input_t in;
74
75         if(!node_get_config(mesh, n, &config, &in)) {
76                 return false;
77         }
78
79         packmsg_skip_element(&in); /* submesh */
80         packmsg_get_int32(&in); /* devclass */
81         packmsg_get_bool(&in); /* blacklisted */
82
83         const void *key;
84         uint32_t len = packmsg_get_bin_raw(&in, &key);
85
86         if(len != 32) {
87                 config_free(&config);
88                 return false;
89         }
90
91         n->ecdsa = ecdsa_set_public_key(key);
92
93         // While we are at it, read known address information
94         if(!n->canonical_address) {
95                 n->canonical_address = packmsg_get_str_dup(&in);
96         } else {
97                 packmsg_skip_element(&in);
98         }
99
100         // Append any known addresses in the config file to the list we currently have
101         uint32_t known_count = 0;
102
103         for(uint32_t i = 0; i < MAX_RECENT; i++) {
104                 if(n->recent[i].sa.sa_family) {
105                         known_count++;
106                 }
107         }
108
109         uint32_t count = packmsg_get_array(&in);
110
111         for(uint32_t i = 0; i < count; i++) {
112                 if(i < MAX_RECENT - known_count) {
113                         n->recent[i + known_count] = packmsg_get_sockaddr(&in);
114                 } else {
115                         packmsg_skip_element(&in);
116                 }
117         }
118
119         time_t last_reachable = packmsg_get_int64(&in);
120         time_t last_unreachable = packmsg_get_int64(&in);
121
122         if(!n->last_reachable) {
123                 n->last_reachable = last_reachable;
124         }
125
126         if(!n->last_unreachable) {
127                 n->last_unreachable = last_unreachable;
128         }
129
130         config_free(&config);
131         return true;
132 }
133
134 /// Fill in node details from a config blob.
135 bool node_read_from_config(meshlink_handle_t *mesh, node_t *n, const config_t *config) {
136         if(n->canonical_address) {
137                 return true;
138         }
139
140         packmsg_input_t in = {config->buf, config->len};
141         uint32_t version = packmsg_get_uint32(&in);
142
143         if(version != MESHLINK_CONFIG_VERSION) {
144                 return false;
145         }
146
147         char *name = packmsg_get_str_dup(&in);
148
149         if(!name) {
150                 return false;
151         }
152
153         if(n->name) {
154                 if(strcmp(n->name, name)) {
155                         free(name);
156                         return false;
157                 }
158
159                 free(name);
160         } else {
161                 n->name = name;
162         }
163
164         char *submesh_name = packmsg_get_str_dup(&in);
165
166         if(!strcmp(submesh_name, CORE_MESH)) {
167                 free(submesh_name);
168                 n->submesh = NULL;
169         } else {
170                 n->submesh = lookup_or_create_submesh(mesh, submesh_name);
171                 free(submesh_name);
172
173                 if(!n->submesh) {
174                         return false;
175                 }
176         }
177
178         n->devclass = packmsg_get_int32(&in);
179         n->status.blacklisted = packmsg_get_bool(&in);
180         const void *key;
181         uint32_t len = packmsg_get_bin_raw(&in, &key);
182
183         if(len) {
184                 if(len != 32) {
185                         return false;
186                 }
187
188                 if(!ecdsa_active(n->ecdsa)) {
189                         n->ecdsa = ecdsa_set_public_key(key);
190                 }
191         }
192
193         n->canonical_address = packmsg_get_str_dup(&in);
194         uint32_t count = packmsg_get_array(&in);
195
196         for(uint32_t i = 0; i < count; i++) {
197                 if(i < MAX_RECENT) {
198                         n->recent[i] = packmsg_get_sockaddr(&in);
199                 } else {
200                         packmsg_skip_element(&in);
201                 }
202         }
203
204         n->last_reachable = packmsg_get_int64(&in);
205         n->last_unreachable = packmsg_get_int64(&in);
206
207         return packmsg_done(&in);
208 }
209
210 bool node_write_config(meshlink_handle_t *mesh, node_t *n) {
211         if(!mesh->confbase) {
212                 return true;
213         }
214
215         uint8_t buf[4096];
216         packmsg_output_t out = {buf, sizeof(buf)};
217
218         packmsg_add_uint32(&out, MESHLINK_CONFIG_VERSION);
219         packmsg_add_str(&out, n->name);
220         packmsg_add_str(&out, n->submesh ? n->submesh->name : CORE_MESH);
221         packmsg_add_int32(&out, n->devclass);
222         packmsg_add_bool(&out, n->status.blacklisted);
223
224         if(ecdsa_active(n->ecdsa)) {
225                 packmsg_add_bin(&out, ecdsa_get_public_key(n->ecdsa), 32);
226         } else {
227                 packmsg_add_bin(&out, "", 0);
228         }
229
230         packmsg_add_str(&out, n->canonical_address ? n->canonical_address : "");
231
232         uint32_t count = 0;
233
234         for(uint32_t i = 0; i < MAX_RECENT; i++) {
235                 if(n->recent[i].sa.sa_family) {
236                         count++;
237                 } else {
238                         break;
239                 }
240         }
241
242         packmsg_add_array(&out, count);
243
244         for(uint32_t i = 0; i < count; i++) {
245                 packmsg_add_sockaddr(&out, &n->recent[i]);
246         }
247
248         packmsg_add_int64(&out, n->last_reachable);
249         packmsg_add_int64(&out, n->last_unreachable);
250
251         if(!packmsg_output_ok(&out)) {
252                 meshlink_errno = MESHLINK_EINTERNAL;
253                 return false;
254         }
255
256         config_t config = {buf, packmsg_output_size(&out, buf)};
257
258         if(!config_write(mesh, "current", n->name, &config, mesh->config_key)) {
259                 call_error_cb(mesh, MESHLINK_ESTORAGE);
260                 return false;
261         }
262
263
264
265         return true;
266 }
267
268 static bool load_node(meshlink_handle_t *mesh, const char *name, void *priv) {
269         (void)priv;
270
271         if(!check_id(name)) {
272                 return true;
273         }
274
275         node_t *n = lookup_node(mesh, name);
276
277         if(n) {
278                 return true;
279         }
280
281         n = new_node();
282         n->name = xstrdup(name);
283
284         config_t config;
285         packmsg_input_t in;
286
287         if(!node_get_config(mesh, n, &config, &in)) {
288                 free_node(n);
289                 return false;
290         }
291
292         if(!node_read_from_config(mesh, n, &config)) {
293                 logger(mesh, MESHLINK_ERROR, "Invalid config file for node %s", n->name);
294                 config_free(&config);
295                 free_node(n);
296                 return false;
297         }
298
299         config_free(&config);
300
301         node_add(mesh, n);
302
303         return true;
304 }
305
306 /*
307   Add listening sockets.
308 */
309 static bool add_listen_address(meshlink_handle_t *mesh, char *address, bool bindto) {
310         char *port = mesh->myport;
311
312         if(address) {
313                 char *space = strchr(address, ' ');
314
315                 if(space) {
316                         *space++ = 0;
317                         port = space;
318                 }
319
320                 if(!strcmp(address, "*")) {
321                         *address = 0;
322                 }
323         }
324
325         struct addrinfo *ai;
326
327         struct addrinfo hint = {
328                 .ai_family = AF_UNSPEC,
329                 .ai_socktype = SOCK_STREAM,
330                 .ai_protocol = IPPROTO_TCP,
331                 .ai_flags = AI_PASSIVE,
332         };
333
334         int err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
335
336         free(address);
337
338         if(err || !ai) {
339                 logger(mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "getaddrinfo", err == EAI_SYSTEM ? strerror(err) : gai_strerror(err));
340                 return false;
341         }
342
343         bool success = false;
344
345         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
346                 // Ignore duplicate addresses
347                 bool found = false;
348
349                 for(int i = 0; i < mesh->listen_sockets; i++)
350                         if(!memcmp(&mesh->listen_socket[i].sa, aip->ai_addr, aip->ai_addrlen)) {
351                                 found = true;
352                                 break;
353                         }
354
355                 if(found) {
356                         continue;
357                 }
358
359                 if(mesh->listen_sockets >= MAXSOCKETS) {
360                         logger(mesh, MESHLINK_ERROR, "Too many listening sockets");
361                         return false;
362                 }
363
364                 int tcp_fd = setup_listen_socket((sockaddr_t *) aip->ai_addr);
365
366                 if(tcp_fd < 0) {
367                         continue;
368                 }
369
370                 int udp_fd = setup_vpn_in_socket(mesh, (sockaddr_t *) aip->ai_addr);
371
372                 if(udp_fd < 0) {
373                         close(tcp_fd);
374                         continue;
375                 }
376
377                 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);
378                 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);
379
380                 if(mesh->log_level >= MESHLINK_INFO) {
381                         char *hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
382                         logger(mesh, MESHLINK_INFO, "Listening on %s", hostname);
383                         free(hostname);
384                 }
385
386                 mesh->listen_socket[mesh->listen_sockets].bindto = bindto;
387                 memcpy(&mesh->listen_socket[mesh->listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
388                 memcpy(&mesh->listen_socket[mesh->listen_sockets].broadcast_sa, aip->ai_addr, aip->ai_addrlen);
389
390                 if(aip->ai_family == AF_INET6) {
391                         mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in6.sin6_addr.s6_addr[0x0] = 0xff;
392                         mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in6.sin6_addr.s6_addr[0x1] = 0x02;
393                         mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in6.sin6_addr.s6_addr[0xf] = 0x01;
394                 } else {
395                         mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in.sin_addr.s_addr = 0xffffffff;
396                 }
397
398                 mesh->listen_sockets++;
399                 success = true;
400         }
401
402         freeaddrinfo(ai);
403         return success;
404 }
405
406 /*
407   Configure node_t mesh->self and set up the local sockets (listen only)
408 */
409 bool setup_myself(meshlink_handle_t *mesh) {
410         /* Set some defaults */
411
412         mesh->maxtimeout = 900;
413
414         /* Done */
415
416         mesh->self->nexthop = mesh->self;
417         mesh->self->status.reachable = true;
418
419         node_add(mesh, mesh->self);
420
421         graph(mesh);
422
423         if(!config_scan_all(mesh, "current", "hosts", load_node, NULL)) {
424                 logger(mesh, MESHLINK_WARNING, "Could not scan all host config files");
425         }
426
427         /* Open sockets */
428
429         mesh->listen_sockets = 0;
430
431         if(!add_listen_address(mesh, NULL, NULL)) {
432                 if(strcmp(mesh->myport, "0")) {
433                         logger(mesh, MESHLINK_INFO, "Could not bind to port %s, asking OS to choose one for us", mesh->myport);
434                         free(mesh->myport);
435                         mesh->myport = strdup("0");
436
437                         if(!mesh->myport) {
438                                 return false;
439                         }
440
441                         if(!add_listen_address(mesh, NULL, NULL)) {
442                                 return false;
443                         }
444                 } else {
445                         return false;
446                 }
447         }
448
449         if(!mesh->listen_sockets) {
450                 logger(mesh, MESHLINK_ERROR, "Unable to create any listening socket!");
451                 return false;
452         }
453
454         /* Done. */
455
456         mesh->last_config_check = mesh->loop.now.tv_sec;
457
458         return true;
459 }
460
461 /*
462   initialize network
463 */
464 bool setup_network(meshlink_handle_t *mesh) {
465         init_connections(mesh);
466         init_submeshes(mesh);
467         init_nodes(mesh);
468         init_edges(mesh);
469         init_requests(mesh);
470
471         if(!setup_myself(mesh)) {
472                 return false;
473         }
474
475         return true;
476 }
477
478 /*
479   close all open network connections
480 */
481 void close_network_connections(meshlink_handle_t *mesh) {
482         if(mesh->connections) {
483                 for(list_node_t *node = mesh->connections->head, *next; node; node = next) {
484                         next = node->next;
485                         connection_t *c = node->data;
486                         c->outgoing = NULL;
487                         terminate_connection(mesh, c, false);
488                 }
489         }
490
491         for(int i = 0; i < mesh->listen_sockets; i++) {
492                 io_del(&mesh->loop, &mesh->listen_socket[i].tcp);
493                 io_del(&mesh->loop, &mesh->listen_socket[i].udp);
494                 close(mesh->listen_socket[i].tcp.fd);
495                 close(mesh->listen_socket[i].udp.fd);
496         }
497
498         exit_requests(mesh);
499         exit_edges(mesh);
500         exit_nodes(mesh);
501         exit_submeshes(mesh);
502         exit_connections(mesh);
503
504         free(mesh->myport);
505         mesh->myport = NULL;
506
507         mesh->self = NULL;
508
509         return;
510 }