]> git.meshlink.io Git - meshlink/blob - src/net_setup.c
Add support for opening a MeshLink instance without permanent storage.
[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, n->name, config)) {
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) || 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         int32_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_MAX) {
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         config_free(&config);
128         return true;
129 }
130
131 /// Fill in node details from a config blob.
132 bool node_read_from_config(meshlink_handle_t *mesh, node_t *n, const config_t *config) {
133         if(n->canonical_address) {
134                 return true;
135         }
136
137         packmsg_input_t in = {config->buf, config->len};
138         uint32_t version = packmsg_get_uint32(&in);
139
140         if(version != MESHLINK_CONFIG_VERSION) {
141                 return false;
142         }
143
144         char *name = packmsg_get_str_dup(&in);
145
146         if(!name) {
147                 return false;
148         }
149
150         if(n->name) {
151                 if(strcmp(n->name, name)) {
152                         free(name);
153                         return false;
154                 }
155
156                 free(name);
157         } else {
158                 n->name = name;
159         }
160
161         char *submesh_name = packmsg_get_str_dup(&in);
162
163         if(!strcmp(submesh_name, CORE_MESH)) {
164                 free(submesh_name);
165                 n->submesh = NULL;
166         } else {
167                 n->submesh = lookup_or_create_submesh(mesh, submesh_name);
168                 free(submesh_name);
169
170                 if(!n->submesh) {
171                         return false;
172                 }
173         }
174
175         n->devclass = packmsg_get_int32(&in);
176         n->status.blacklisted = packmsg_get_bool(&in);
177         const void *key;
178         uint32_t len = packmsg_get_bin_raw(&in, &key);
179
180         if(len != 32) {
181                 return false;
182         }
183
184         if(!ecdsa_active(n->ecdsa)) {
185                 n->ecdsa = ecdsa_set_public_key(key);
186         }
187
188         n->canonical_address = packmsg_get_str_dup(&in);
189         uint32_t count = packmsg_get_array(&in);
190
191         if(count > 5) {
192                 count = 5;
193         }
194
195         for(uint32_t i = 0; i < count; i++) {
196                 n->recent[i] = packmsg_get_sockaddr(&in);
197         }
198
199         return packmsg_done(&in);
200 }
201
202 bool node_write_config(meshlink_handle_t *mesh, node_t *n) {
203         uint8_t buf[4096];
204         packmsg_output_t out = {buf, sizeof(buf)};
205
206         packmsg_add_uint32(&out, MESHLINK_CONFIG_VERSION);
207         packmsg_add_str(&out, n->name);
208         packmsg_add_str(&out, n->submesh ? n->submesh->name : CORE_MESH);
209         packmsg_add_int32(&out, n->devclass);
210         assert(n->devclass != 3);
211         packmsg_add_bool(&out, n->status.blacklisted);
212
213         if(ecdsa_active(n->ecdsa)) {
214                 packmsg_add_bin(&out, ecdsa_get_public_key(n->ecdsa), 32);
215         } else {
216                 packmsg_add_bin(&out, "", 0);
217         }
218
219         packmsg_add_str(&out, n->canonical_address ? n->canonical_address : "");
220
221         uint32_t count = 0;
222
223         for(uint32_t i = 0; i < 5; i++) {
224                 if(n->recent[i].sa.sa_family) {
225                         count++;
226                 } else {
227                         break;
228                 }
229         }
230
231         packmsg_add_array(&out, count);
232
233         for(uint32_t i = 0; i < count; i++) {
234                 packmsg_add_sockaddr(&out, &n->recent[i]);
235         }
236
237         if(!packmsg_output_ok(&out)) {
238                 return false;
239         }
240
241         config_t config = {buf, packmsg_output_size(&out, buf)};
242         return config_write(mesh, n->name, &config);
243 }
244
245 static void load_node(meshlink_handle_t *mesh, const char *name) {
246         if(!check_id(name)) {
247                 return;
248         }
249
250         node_t *n = lookup_node(mesh, name);
251
252         if(n) {
253                 return;
254         }
255
256         n = new_node();
257         n->name = xstrdup(name);
258
259         if(!node_read_partial(mesh, n)) {
260                 free_node(n);
261                 return;
262         }
263
264         node_add(mesh, n);
265 }
266
267 /*
268   Add listening sockets.
269 */
270 static bool add_listen_address(meshlink_handle_t *mesh, char *address, bool bindto) {
271         char *port = mesh->myport;
272
273         if(address) {
274                 char *space = strchr(address, ' ');
275
276                 if(space) {
277                         *space++ = 0;
278                         port = space;
279                 }
280
281                 if(!strcmp(address, "*")) {
282                         *address = 0;
283                 }
284         }
285
286         struct addrinfo *ai;
287
288         struct addrinfo hint = {
289                 .ai_family = addressfamily,
290                 .ai_socktype = SOCK_STREAM,
291                 .ai_protocol = IPPROTO_TCP,
292                 .ai_flags = AI_PASSIVE,
293         };
294
295         int err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
296
297         free(address);
298
299         if(err || !ai) {
300                 logger(mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "getaddrinfo", err == EAI_SYSTEM ? strerror(err) : gai_strerror(err));
301                 return false;
302         }
303
304         bool success = false;
305
306         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
307                 // Ignore duplicate addresses
308                 bool found = false;
309
310                 for(int i = 0; i < mesh->listen_sockets; i++)
311                         if(!memcmp(&mesh->listen_socket[i].sa, aip->ai_addr, aip->ai_addrlen)) {
312                                 found = true;
313                                 break;
314                         }
315
316                 if(found) {
317                         continue;
318                 }
319
320                 if(mesh->listen_sockets >= MAXSOCKETS) {
321                         logger(mesh, MESHLINK_ERROR, "Too many listening sockets");
322                         return false;
323                 }
324
325                 int tcp_fd = setup_listen_socket((sockaddr_t *) aip->ai_addr);
326
327                 if(tcp_fd < 0) {
328                         continue;
329                 }
330
331                 int udp_fd = setup_vpn_in_socket(mesh, (sockaddr_t *) aip->ai_addr);
332
333                 if(udp_fd < 0) {
334                         close(tcp_fd);
335                         continue;
336                 }
337
338                 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);
339                 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);
340
341                 if(mesh->log_level >= MESHLINK_INFO) {
342                         char *hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
343                         logger(mesh, MESHLINK_INFO, "Listening on %s", hostname);
344                         free(hostname);
345                 }
346
347                 mesh->listen_socket[mesh->listen_sockets].bindto = bindto;
348                 memcpy(&mesh->listen_socket[mesh->listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
349                 mesh->listen_sockets++;
350                 success = true;
351         }
352
353         freeaddrinfo(ai);
354         return success;
355 }
356
357 /*
358   Configure node_t mesh->self and set up the local sockets (listen only)
359 */
360 bool setup_myself(meshlink_handle_t *mesh) {
361         /* Set some defaults */
362
363         mesh->localdiscovery = true;
364         keylifetime = 3600; // TODO: check if this can be removed as well
365         mesh->maxtimeout = 900;
366         mesh->self->options |= OPTION_PMTU_DISCOVERY;
367
368         /* Done */
369
370         mesh->self->nexthop = mesh->self;
371         mesh->self->via = mesh->self;
372         mesh->self->status.reachable = true;
373         mesh->self->last_state_change = mesh->loop.now.tv_sec;
374
375         node_add(mesh, mesh->self);
376
377         graph(mesh);
378
379         config_scan_all(mesh, load_node);
380
381         /* Open sockets */
382
383         mesh->listen_sockets = 0;
384
385         if(!add_listen_address(mesh, NULL, NULL)) {
386                 if(strcmp(mesh->myport, "0")) {
387                         logger(mesh, MESHLINK_INFO, "Could not bind to port %s, asking OS to choose one for us", mesh->myport);
388                         free(mesh->myport);
389                         mesh->myport = strdup("0");
390
391                         if(!mesh->myport) {
392                                 return false;
393                         }
394
395                         if(!add_listen_address(mesh, NULL, NULL)) {
396                                 return false;
397                         }
398                 } else {
399                         return false;
400                 }
401         }
402
403         if(!mesh->listen_sockets) {
404                 logger(mesh, MESHLINK_ERROR, "Unable to create any listening socket!");
405                 return false;
406         }
407
408         /* Done. */
409
410         mesh->last_config_check = mesh->loop.now.tv_sec;
411
412         return true;
413 }
414
415 /*
416   initialize network
417 */
418 bool setup_network(meshlink_handle_t *mesh) {
419         init_connections(mesh);
420         init_submeshes(mesh);
421         init_nodes(mesh);
422         init_edges(mesh);
423         init_requests(mesh);
424
425         mesh->pinginterval = 60;
426         mesh->pingtimeout = 5;
427         maxoutbufsize = 10 * MTU;
428
429         if(!setup_myself(mesh)) {
430                 return false;
431         }
432
433         return true;
434 }
435
436 /*
437   close all open network connections
438 */
439 void close_network_connections(meshlink_handle_t *mesh) {
440         if(mesh->connections) {
441                 for(list_node_t *node = mesh->connections->head, *next; node; node = next) {
442                         next = node->next;
443                         connection_t *c = node->data;
444                         c->outgoing = NULL;
445                         terminate_connection(mesh, c, false);
446                 }
447         }
448
449         for(int i = 0; i < mesh->listen_sockets; i++) {
450                 io_del(&mesh->loop, &mesh->listen_socket[i].tcp);
451                 io_del(&mesh->loop, &mesh->listen_socket[i].udp);
452                 close(mesh->listen_socket[i].tcp.fd);
453                 close(mesh->listen_socket[i].udp.fd);
454         }
455
456         exit_requests(mesh);
457         exit_edges(mesh);
458         exit_nodes(mesh);
459         exit_connections(mesh);
460
461         if(mesh->myport) {
462                 free(mesh->myport);
463         }
464
465         return;
466 }