]> git.meshlink.io Git - meshlink/blob - src/net_setup.c
fix private key file read and write on windows (binary read/write)
[meshlink] / src / net_setup.c
1 /*
2     net_setup.c -- Setup.
3     Copyright (C) 2014 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 "protocol.h"
31 #include "route.h"
32 #include "utils.h"
33 #include "xalloc.h"
34
35 bool node_read_ecdsa_public_key(meshlink_handle_t *mesh, node_t *n) {
36         if(ecdsa_active(n->ecdsa))
37                 return true;
38
39         splay_tree_t *config_tree;
40         char *p;
41
42         init_configuration(&config_tree);
43         if(!read_host_config(mesh, config_tree, n->name))
44                 goto exit;
45
46         /* First, check for simple ECDSAPublicKey statement */
47
48         if(get_config_string(lookup_config(config_tree, "ECDSAPublicKey"), &p)) {
49                 n->ecdsa = ecdsa_set_base64_public_key(p);
50                 free(p);
51         }
52
53 exit:
54         exit_configuration(&config_tree);
55         return n->ecdsa;
56 }
57
58 bool read_ecdsa_public_key(meshlink_handle_t *mesh, connection_t *c) {
59         if(ecdsa_active(c->ecdsa))
60                 return true;
61
62         char *p;
63
64         if(!c->config_tree) {
65                 init_configuration(&c->config_tree);
66                 if(!read_host_config(mesh, c->config_tree, c->name))
67                         return false;
68         }
69
70         /* First, check for simple ECDSAPublicKey statement */
71
72         if(get_config_string(lookup_config(c->config_tree, "ECDSAPublicKey"), &p)) {
73                 c->ecdsa = ecdsa_set_base64_public_key(p);
74                 free(p);
75                 return c->ecdsa;
76         }
77
78         return false;
79 }
80
81 bool read_ecdsa_private_key(meshlink_handle_t *mesh) {
82         FILE *fp;
83         char filename[PATH_MAX];
84
85         snprintf(filename,PATH_MAX, "%s" SLASH "ecdsa_key.priv", mesh->confbase);
86         fp = fopen(filename, "rb");
87
88         if(!fp) {
89                 logger(mesh, MESHLINK_ERROR, "Error reading ECDSA private key file: %s", strerror(errno));
90                 return false;
91         }
92
93         mesh->self->connection->ecdsa = ecdsa_read_pem_private_key(fp);
94         fclose(fp);
95
96         if(!mesh->self->connection->ecdsa)
97                 logger(mesh, MESHLINK_ERROR, "Reading ECDSA private key file failed: %s", strerror(errno));
98
99         return mesh->self->connection->ecdsa;
100 }
101
102 static bool read_invitation_key(meshlink_handle_t *mesh) {
103         FILE *fp;
104         char filename[PATH_MAX];
105
106         if(mesh->invitation_key) {
107                 ecdsa_free(mesh->invitation_key);
108                 mesh->invitation_key = NULL;
109         }
110
111         snprintf(filename,PATH_MAX, "%s" SLASH "invitations" SLASH "ecdsa_key.priv", mesh->confbase);
112
113         fp = fopen(filename, "rb");
114
115         if(fp) {
116                 mesh->invitation_key = ecdsa_read_pem_private_key(fp);
117                 fclose(fp);
118                 if(!mesh->invitation_key)
119                         logger(mesh, MESHLINK_ERROR, "Reading ECDSA private key file `%s' failed: %s", filename, strerror(errno));
120         }
121
122         return mesh->invitation_key;
123 }
124
125 bool node_read_devclass(meshlink_handle_t *mesh, node_t *n) {
126         
127         splay_tree_t *config_tree;
128         char *p;
129
130         init_configuration(&config_tree);
131         if(!read_host_config(mesh, config_tree, n->name))
132                 goto exit;
133
134         if(get_config_string(lookup_config(config_tree, "DeviceClass"), &p))
135         {
136                 n->devclass = atoi(p);
137                 free(p);
138         }
139
140         if(n->devclass < 0 || n->devclass > _DEV_CLASS_MAX)
141                 { n->devclass = _DEV_CLASS_MAX; }
142
143 exit:
144         exit_configuration(&config_tree);
145         return n->devclass != 0;
146 }
147
148 bool node_write_devclass(meshlink_handle_t *mesh, node_t *n) {
149
150         if(n->devclass < 0 || n->devclass > _DEV_CLASS_MAX)
151                 return false;
152
153         bool result = false;
154
155         splay_tree_t *config_tree;
156         init_configuration(&config_tree);
157
158         // ignore read errors; in case the file does not exist we will create it
159         read_host_config(mesh, config_tree, n->name);
160
161         config_t* cnf = lookup_config(config_tree, "DeviceClass");
162
163         if(!cnf)
164         {
165                 cnf = new_config();
166                 cnf->variable = xstrdup("DeviceClass");
167                 config_add(config_tree, cnf);
168         }
169
170         set_config_int(cnf, n->devclass);
171
172         if(!write_host_config(mesh, config_tree, n->name))
173                 goto fail;
174
175         result = true;
176
177 fail:
178         exit_configuration(&config_tree);
179         return result;
180 }
181
182 void load_all_nodes(meshlink_handle_t *mesh) {
183         DIR *dir;
184         struct dirent *ent;
185         char dname[PATH_MAX];
186
187         snprintf(dname,PATH_MAX, "%s" SLASH "hosts", mesh->confbase);
188         dir = opendir(dname);
189         if(!dir) {
190                 logger(mesh, MESHLINK_ERROR, "Could not open %s: %s", dname, strerror(errno));
191                 return;
192         }
193
194         while((ent = readdir(dir))) {
195                 if(!check_id(ent->d_name))
196                         continue;
197
198                 node_t *n = lookup_node(mesh, ent->d_name);
199                 if(n)
200                         continue;
201
202                 n = new_node();
203                 n->name = xstrdup(ent->d_name);
204                 node_read_devclass(mesh, n);
205                 node_add(mesh, n);
206         }
207
208         closedir(dir);
209 }
210
211
212 char *get_name(meshlink_handle_t *mesh) {
213         char *name = NULL;
214
215         get_config_string(lookup_config(mesh->config, "Name"), &name);
216
217         if(!name)
218                 return NULL;
219
220         if(!check_id(name)) {
221                 logger(mesh, MESHLINK_ERROR, "Invalid name for mesh->self!");
222                 free(name);
223                 return NULL;
224         }
225
226         return name;
227 }
228
229 bool setup_myself_reloadable(meshlink_handle_t *mesh) {
230         mesh->localdiscovery = true;
231         keylifetime = 3600; // TODO: check if this can be removed as well
232         mesh->maxtimeout = 900;
233         mesh->self->options |= OPTION_PMTU_DISCOVERY;
234
235         read_invitation_key(mesh);
236
237         return true;
238 }
239
240 /*
241   Add listening sockets.
242 */
243 static bool add_listen_address(meshlink_handle_t *mesh, char *address, bool bindto) {
244         char *port = mesh->myport;
245
246         if(address) {
247                 char *space = strchr(address, ' ');
248                 if(space) {
249                         *space++ = 0;
250                         port = space;
251                 }
252
253                 if(!strcmp(address, "*"))
254                         *address = 0;
255         }
256
257         struct addrinfo *ai, hint = {0};
258         hint.ai_family = addressfamily;
259         hint.ai_socktype = SOCK_STREAM;
260         hint.ai_protocol = IPPROTO_TCP;
261         hint.ai_flags = AI_PASSIVE;
262
263         int err = getaddrinfo(address && *address ? address : NULL, port, &hint, &ai);
264         free(address);
265
266         if(err || !ai) {
267                 logger(mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "getaddrinfo", err == EAI_SYSTEM ? strerror(err) : gai_strerror(err));
268                 return false;
269         }
270
271         for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
272                 // Ignore duplicate addresses
273                 bool found = false;
274
275                 for(int i = 0; i < mesh->listen_sockets; i++)
276                         if(!memcmp(&mesh->listen_socket[i].sa, aip->ai_addr, aip->ai_addrlen)) {
277                                 found = true;
278                                 break;
279                         }
280
281                 if(found)
282                         continue;
283
284                 if(mesh->listen_sockets >= MAXSOCKETS) {
285                         logger(mesh, MESHLINK_ERROR, "Too many listening sockets");
286                         return false;
287                 }
288
289                 int tcp_fd = setup_listen_socket((sockaddr_t *) aip->ai_addr);
290
291                 if(tcp_fd < 0)
292                         continue;
293
294                 int udp_fd = setup_vpn_in_socket(mesh, (sockaddr_t *) aip->ai_addr);
295
296                 if(tcp_fd < 0) {
297                         close(tcp_fd);
298                         continue;
299                 }
300
301                 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);
302                 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);
303
304                 if(mesh->log_level >= MESHLINK_INFO) {
305                         char *hostname = sockaddr2hostname((sockaddr_t *) aip->ai_addr);
306                         logger(mesh, MESHLINK_INFO, "Listening on %s", hostname);
307                         free(hostname);
308                 }
309
310                 mesh->listen_socket[mesh->listen_sockets].bindto = bindto;
311                 memcpy(&mesh->listen_socket[mesh->listen_sockets].sa, aip->ai_addr, aip->ai_addrlen);
312                 mesh->listen_sockets++;
313         }
314
315         freeaddrinfo(ai);
316         return true;
317 }
318
319 /*
320   Configure node_t mesh->self and set up the local sockets (listen only)
321 */
322 bool setup_myself(meshlink_handle_t *mesh) {
323         char *name;
324         char *address = NULL;
325
326         if(!(name = get_name(mesh))) {
327                 logger(mesh, MESHLINK_ERROR, "Name for MeshLink instance required!");
328                 return false;
329         }
330
331         mesh->self = new_node();
332         mesh->self->connection = new_connection();
333         mesh->self->name = name;
334         mesh->self->devclass = mesh->devclass;
335         mesh->self->connection->name = xstrdup(name);
336         read_host_config(mesh, mesh->config, name);
337
338         if(!get_config_string(lookup_config(mesh->config, "Port"), &mesh->myport)) {
339                 logger(mesh, MESHLINK_ERROR, "Port for MeshLink instance required!");
340                 return false;
341         }
342
343         mesh->self->connection->options = 0;
344         mesh->self->connection->protocol_major = PROT_MAJOR;
345         mesh->self->connection->protocol_minor = PROT_MINOR;
346
347         mesh->self->options |= PROT_MINOR << 24;
348
349         if(!read_ecdsa_private_key(mesh))
350                 return false;
351
352         /* Ensure mesh->myport is numeric */
353
354         if(!atoi(mesh->myport)) {
355                 struct addrinfo *ai = str2addrinfo("localhost", mesh->myport, SOCK_DGRAM);
356                 sockaddr_t sa;
357                 if(!ai || !ai->ai_addr)
358                         return false;
359                 free(mesh->myport);
360                 memcpy(&sa, ai->ai_addr, ai->ai_addrlen);
361                 sockaddr2str(&sa, NULL, &mesh->myport);
362         }
363
364         /* Check some options */
365
366         if(!setup_myself_reloadable(mesh))
367                 return false;
368
369         /* Compression */
370
371         // TODO: drop compression in the packet layer?
372         mesh->self->incompression = 0;
373         mesh->self->connection->outcompression = 0;
374
375         /* Done */
376
377         mesh->self->nexthop = mesh->self;
378         mesh->self->via = mesh->self;
379         mesh->self->status.reachable = true;
380         mesh->self->last_state_change = mesh->loop.now.tv_sec;
381
382         node_write_devclass(mesh, mesh->self);
383         node_add(mesh, mesh->self);
384
385         graph(mesh);
386
387         load_all_nodes(mesh);
388
389         /* Open sockets */
390
391         mesh->listen_sockets = 0;
392
393         if(!add_listen_address(mesh, address, NULL))
394                 return false;
395
396         if(!mesh->listen_sockets) {
397                 logger(mesh, MESHLINK_ERROR, "Unable to create any listening socket!");
398                 return false;
399         }
400
401         xasprintf(&mesh->self->hostname, "MYSELF port %s", mesh->myport);
402         mesh->self->connection->hostname = xstrdup(mesh->self->hostname);
403
404         /* Done. */
405
406         mesh->last_config_check = mesh->loop.now.tv_sec;
407
408         return true;
409 }
410
411 /*
412   initialize network
413 */
414 bool setup_network(meshlink_handle_t *mesh) {
415         init_connections(mesh);
416         init_nodes(mesh);
417         init_edges(mesh);
418         init_requests(mesh);
419
420         mesh->pinginterval = 60;
421         mesh->pingtimeout = 5;
422         maxoutbufsize = 10 * MTU;
423
424         if(!setup_myself(mesh))
425                 return false;
426
427         return true;
428 }
429
430 /*
431   close all open network connections
432 */
433 void close_network_connections(meshlink_handle_t *mesh) {
434         if(mesh->connections) {
435                 for(list_node_t *node = mesh->connections->head, *next; node; node = next) {
436                         next = node->next;
437                         connection_t *c = node->data;
438                         c->outgoing = NULL;
439                         terminate_connection(mesh, c, false);
440                 }
441         }
442
443         if(mesh->outgoings)
444                 list_delete_list(mesh->outgoings);
445
446         if(mesh->self && mesh->self->connection) {
447                 terminate_connection(mesh, mesh->self->connection, false);
448                 free_connection(mesh->self->connection);
449         }
450
451         for(int i = 0; i < mesh->listen_sockets; i++) {
452                 io_del(&mesh->loop, &mesh->listen_socket[i].tcp);
453                 io_del(&mesh->loop, &mesh->listen_socket[i].udp);
454                 close(mesh->listen_socket[i].tcp.fd);
455                 close(mesh->listen_socket[i].udp.fd);
456         }
457
458         exit_requests(mesh);
459         exit_edges(mesh);
460         exit_nodes(mesh);
461         exit_connections(mesh);
462
463         if(mesh->myport) free(mesh->myport);
464
465         return;
466 }