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