]> git.meshlink.io Git - meshlink/blob - src/net_setup.c
Add meshlink_get_node_reachability().
[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         return true;
264 }
265
266 static bool load_node(meshlink_handle_t *mesh, const char *name, void *priv) {
267         (void)priv;
268
269         if(!check_id(name)) {
270                 return true;
271         }
272
273         node_t *n = lookup_node(mesh, name);
274
275         if(n) {
276                 return true;
277         }
278
279         n = new_node();
280         n->name = xstrdup(name);
281
282         config_t config;
283         packmsg_input_t in;
284
285         if(!node_get_config(mesh, n, &config, &in)) {
286                 free_node(n);
287                 return false;
288         }
289
290         if(!node_read_from_config(mesh, n, &config)) {
291                 logger(mesh, MESHLINK_ERROR, "Invalid config file for node %s", n->name);
292                 config_free(&config);
293                 free_node(n);
294                 return false;
295         }
296
297         config_free(&config);
298
299         node_add(mesh, n);
300
301         return true;
302 }
303
304 /*
305   Add listening sockets.
306 */
307 static bool add_listen_address(meshlink_handle_t *mesh, char *address, bool bindto) {
308         char *port = mesh->myport;
309
310         if(address) {
311                 char *space = strchr(address, ' ');
312
313                 if(space) {
314                         *space++ = 0;
315                         port = space;
316                 }
317
318                 if(!strcmp(address, "*")) {
319                         *address = 0;
320                 }
321         }
322
323         struct addrinfo *ai;
324
325         struct addrinfo hint = {
326                 .ai_family = AF_UNSPEC,
327                 .ai_socktype = SOCK_STREAM,
328                 .ai_protocol = IPPROTO_TCP,
329                 .ai_flags = AI_PASSIVE,
330         };
331
332         int err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
333
334         free(address);
335
336         if(err || !ai) {
337                 logger(mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "getaddrinfo", err == EAI_SYSTEM ? strerror(err) : gai_strerror(err));
338                 return false;
339         }
340
341         bool success = false;
342
343         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
344                 // Ignore duplicate addresses
345                 bool found = false;
346
347                 for(int i = 0; i < mesh->listen_sockets; i++)
348                         if(!memcmp(&mesh->listen_socket[i].sa, aip->ai_addr, aip->ai_addrlen)) {
349                                 found = true;
350                                 break;
351                         }
352
353                 if(found) {
354                         continue;
355                 }
356
357                 if(mesh->listen_sockets >= MAXSOCKETS) {
358                         logger(mesh, MESHLINK_ERROR, "Too many listening sockets");
359                         return false;
360                 }
361
362                 int tcp_fd = setup_listen_socket((sockaddr_t *) aip->ai_addr);
363
364                 if(tcp_fd < 0) {
365                         continue;
366                 }
367
368                 int udp_fd = setup_vpn_in_socket(mesh, (sockaddr_t *) aip->ai_addr);
369
370                 if(udp_fd < 0) {
371                         close(tcp_fd);
372                         continue;
373                 }
374
375                 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);
376                 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);
377
378                 if(mesh->log_level >= MESHLINK_INFO) {
379                         char *hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
380                         logger(mesh, MESHLINK_INFO, "Listening on %s", hostname);
381                         free(hostname);
382                 }
383
384                 mesh->listen_socket[mesh->listen_sockets].bindto = bindto;
385                 memcpy(&mesh->listen_socket[mesh->listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
386                 memcpy(&mesh->listen_socket[mesh->listen_sockets].broadcast_sa, aip->ai_addr, aip->ai_addrlen);
387
388                 if(aip->ai_family == AF_INET6) {
389                         mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in6.sin6_addr.s6_addr[0x0] = 0xff;
390                         mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in6.sin6_addr.s6_addr[0x1] = 0x02;
391                         mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in6.sin6_addr.s6_addr[0xf] = 0x01;
392                 } else {
393                         mesh->listen_socket[mesh->listen_sockets].broadcast_sa.in.sin_addr.s_addr = 0xffffffff;
394                 }
395
396                 mesh->listen_sockets++;
397                 success = true;
398         }
399
400         freeaddrinfo(ai);
401         return success;
402 }
403
404 /*
405   Configure node_t mesh->self and set up the local sockets (listen only)
406 */
407 bool setup_myself(meshlink_handle_t *mesh) {
408         /* Set some defaults */
409
410         mesh->maxtimeout = 900;
411
412         /* Done */
413
414         mesh->self->nexthop = mesh->self;
415         mesh->self->status.reachable = true;
416
417         node_add(mesh, mesh->self);
418
419         graph(mesh);
420
421         if(!config_scan_all(mesh, "current", "hosts", load_node, NULL)) {
422                 logger(mesh, MESHLINK_WARNING, "Could not scan all host config files");
423         }
424
425         /* Open sockets */
426
427         mesh->listen_sockets = 0;
428
429         if(!add_listen_address(mesh, NULL, NULL)) {
430                 if(strcmp(mesh->myport, "0")) {
431                         logger(mesh, MESHLINK_INFO, "Could not bind to port %s, asking OS to choose one for us", mesh->myport);
432                         free(mesh->myport);
433                         mesh->myport = strdup("0");
434
435                         if(!mesh->myport) {
436                                 return false;
437                         }
438
439                         if(!add_listen_address(mesh, NULL, NULL)) {
440                                 return false;
441                         }
442                 } else {
443                         return false;
444                 }
445         }
446
447         if(!mesh->listen_sockets) {
448                 logger(mesh, MESHLINK_ERROR, "Unable to create any listening socket!");
449                 return false;
450         }
451
452         /* Done. */
453
454         mesh->last_config_check = mesh->loop.now.tv_sec;
455         mesh->last_unreachable = mesh->loop.now.tv_sec;
456
457         return true;
458 }
459
460 /*
461   initialize network
462 */
463 bool setup_network(meshlink_handle_t *mesh) {
464         init_connections(mesh);
465         init_submeshes(mesh);
466         init_nodes(mesh);
467         init_edges(mesh);
468         init_requests(mesh);
469
470         if(!setup_myself(mesh)) {
471                 return false;
472         }
473
474         return true;
475 }
476
477 /*
478   close all open network connections
479 */
480 void close_network_connections(meshlink_handle_t *mesh) {
481         if(mesh->connections) {
482                 for(list_node_t *node = mesh->connections->head, *next; node; node = next) {
483                         next = node->next;
484                         connection_t *c = node->data;
485                         c->outgoing = NULL;
486                         terminate_connection(mesh, c, false);
487                 }
488         }
489
490         for(int i = 0; i < mesh->listen_sockets; i++) {
491                 io_del(&mesh->loop, &mesh->listen_socket[i].tcp);
492                 io_del(&mesh->loop, &mesh->listen_socket[i].udp);
493                 close(mesh->listen_socket[i].tcp.fd);
494                 close(mesh->listen_socket[i].udp.fd);
495         }
496
497         exit_requests(mesh);
498         exit_edges(mesh);
499         exit_nodes(mesh);
500         exit_submeshes(mesh);
501         exit_connections(mesh);
502
503         free(mesh->myport);
504         mesh->myport = NULL;
505
506         mesh->self = NULL;
507
508         return;
509 }