]> git.meshlink.io Git - meshlink/blob - src/protocol_auth.c
Allow incoming connections to specify a real address in the ID request.
[meshlink] / src / protocol_auth.c
1 /*
2     protocol_auth.c -- handle the meta-protocol, authentication
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 "devtools.h"
25 #include "ecdsa.h"
26 #include "edge.h"
27 #include "graph.h"
28 #include "logger.h"
29 #include "meshlink_internal.h"
30 #include "meta.h"
31 #include "net.h"
32 #include "netutl.h"
33 #include "node.h"
34 #include "packmsg.h"
35 #include "prf.h"
36 #include "protocol.h"
37 #include "sptps.h"
38 #include "utils.h"
39 #include "xalloc.h"
40 #include "ed25519/sha512.h"
41
42 #include <assert.h>
43
44 extern bool node_write_devclass(meshlink_handle_t *mesh, node_t *n);
45
46 bool send_id(meshlink_handle_t *mesh, connection_t *c) {
47         return send_request(mesh, c, NULL, "%d %s %d.%d %s", ID, mesh->self->name, PROT_MAJOR, PROT_MINOR, mesh->appname);
48 }
49
50 static bool commit_invitation(meshlink_handle_t *mesh, connection_t *c, const void *data) {
51         // Check if the node is known
52         node_t *n = lookup_node(mesh, c->name);
53
54         if(n) {
55                 if(n->status.blacklisted) {
56                         logger(mesh, MESHLINK_ERROR, "Invitee %s is blacklisted", c->name);
57                 } else {
58                         logger(mesh, MESHLINK_ERROR, "Invitee %s already known", c->name);
59                 }
60
61                 return false;
62         }
63
64         // Create a new node
65         n = new_node();
66         n->name = xstrdup(c->name);
67         n->devclass = DEV_CLASS_UNKNOWN;
68         n->ecdsa = ecdsa_set_public_key(data);
69         n->submesh = c->submesh;
70
71         // Remember its current address
72         node_add_recent_address(mesh, n, &c->address);
73
74         if(!node_write_config(mesh, n) || !config_sync(mesh, "current")) {
75                 logger(mesh, MESHLINK_ERROR, "Error writing configuration file for invited node %s!\n", c->name);
76                 free_node(n);
77                 return false;
78
79         }
80
81         node_add(mesh, n);
82
83         logger(mesh, MESHLINK_INFO, "Key successfully received from %s", c->name);
84
85         //TODO: callback to application to inform of an accepted invitation
86
87         sptps_send_record(&c->sptps, 1, "", 0);
88
89         return true;
90 }
91
92 static bool process_invitation(meshlink_handle_t *mesh, connection_t *c, const void *data) {
93         // Recover the filename from the cookie and the key
94         char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
95         char hash[64];
96         char hashbuf[18 + strlen(fingerprint)];
97         char cookie[25];
98         memcpy(hashbuf, data, 18);
99         memcpy(hashbuf + 18, fingerprint, sizeof(hashbuf) - 18);
100         sha512(hashbuf, sizeof(hashbuf), hash);
101         b64encode_urlsafe(hash, cookie, 18);
102         free(fingerprint);
103
104         config_t config;
105
106         if(!invitation_read(mesh, "current", cookie, &config, mesh->config_key)) {
107                 logger(mesh, MESHLINK_ERROR, "Error while trying to read invitation file\n");
108                 return false;
109         }
110
111         // Read the new node's Name from the file
112         packmsg_input_t in = {config.buf, config.len};
113         packmsg_get_uint32(&in); // skip version
114         free(c->name);
115         c->name = packmsg_get_str_dup(&in);
116
117         // Check if the file contains Sub-Mesh information
118         char *submesh_name = packmsg_get_str_dup(&in);
119
120         if(!strcmp(submesh_name, CORE_MESH)) {
121                 free(submesh_name);
122                 c->submesh = NULL;
123         } else {
124                 if(!check_id(submesh_name)) {
125                         logger(mesh, MESHLINK_ERROR, "Invalid invitation file %s\n", cookie);
126                         free(submesh_name);
127                         return false;
128                 }
129
130                 c->submesh = lookup_or_create_submesh(mesh, submesh_name);
131                 free(submesh_name);
132
133                 if(!c->submesh) {
134                         logger(mesh, MESHLINK_ERROR, "Unknown submesh in invitation file %s\n", cookie);
135                         return false;
136                 }
137         }
138
139         if(mesh->inviter_commits_first && !commit_invitation(mesh, c, (const char *)data + 18)) {
140                 return false;
141         }
142
143         if(mesh->inviter_commits_first) {
144                 devtool_set_inviter_commits_first(true);
145         }
146
147         // Send the node the contents of the invitation file
148         sptps_send_record(&c->sptps, 0, config.buf, config.len);
149
150         config_free(&config);
151
152         c->status.invitation_used = true;
153
154         logger(mesh, MESHLINK_INFO, "Invitation %s successfully sent to %s", cookie, c->name);
155         return true;
156 }
157
158 static bool receive_invitation_sptps(void *handle, uint8_t type, const void *data, uint16_t len) {
159         connection_t *c = handle;
160         meshlink_handle_t *mesh = c->mesh;
161
162         // Extend the time for the invitation exchange upon receiving a valid message
163         c->last_ping_time = mesh->loop.now.tv_sec;
164
165         if(type == SPTPS_HANDSHAKE) {
166                 // The peer should send its cookie first.
167                 return true;
168         }
169
170         if(mesh->inviter_commits_first) {
171                 if(type == 2 && len == 18 + 32 && !c->status.invitation_used) {
172                         return process_invitation(mesh, c, data);
173                 }
174         } else {
175                 if(type == 0 && len == 18 && !c->status.invitation_used) {
176                         return process_invitation(mesh, c, data);
177                 } else if(type == 1 && len == 32 && c->status.invitation_used) {
178                         return commit_invitation(mesh, c, data);
179                 }
180         }
181
182         return false;
183 }
184
185 bool id_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
186         assert(request);
187         assert(*request);
188
189         char name[MAX_STRING_SIZE];
190         char real_address[MAX_STRING_SIZE] = "";
191         char real_port[MAX_STRING_SIZE] = "";
192
193         if(sscanf(request, "%*d " MAX_STRING " %d.%d %*s " MAX_STRING " " MAX_STRING, name, &c->protocol_major, &c->protocol_minor, real_address, real_port) < 2) {
194                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ID", c->name);
195                 return false;
196         }
197
198         /* Parse the real address if present */
199
200         if(!c->outgoing && *real_address && *real_port) {
201                 sockaddr_t sa = str2sockaddr(real_address, real_port);
202
203                 if(sa.sa.sa_family == AF_UNKNOWN || sa.sa.sa_family == AF_UNSPEC) {
204                         logger(mesh, MESHLINK_ERROR, "Could not parse real address from %s", c->name);
205                         sockaddrfree(&sa);
206                         return false;
207                 }
208
209                 sockaddrfree(&c->address);
210                 c->address = sa;
211         }
212
213         /* Check if this is an invitation  */
214
215         if(name[0] == '?') {
216                 if(!mesh->invitation_key) {
217                         logger(mesh, MESHLINK_ERROR, "Got invitation from %s but we don't have an invitation key", c->name);
218                         return false;
219                 }
220
221                 c->ecdsa = ecdsa_set_base64_public_key(name + 1);
222
223                 if(!c->ecdsa) {
224                         logger(mesh, MESHLINK_ERROR, "Got bad invitation from %s", c->name);
225                         return false;
226                 }
227
228                 c->status.invitation = true;
229                 char *mykey = ecdsa_get_base64_public_key(mesh->invitation_key);
230
231                 if(!mykey) {
232                         return false;
233                 }
234
235                 if(!send_request(mesh, c, NULL, "%d %s", ACK, mykey)) {
236                         return false;
237                 }
238
239                 free(mykey);
240
241                 c->protocol_minor = 2;
242                 c->allow_request = 1;
243                 c->last_ping_time = mesh->loop.now.tv_sec;
244
245                 return sptps_start(&c->sptps, c, false, false, mesh->invitation_key, c->ecdsa, meshlink_invitation_label, sizeof(meshlink_invitation_label), send_meta_sptps, receive_invitation_sptps);
246         }
247
248         /* Check if identity is a valid name */
249
250         if(!check_id(name)) {
251                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ID", c->name, "invalid name");
252                 return false;
253         }
254
255         /* If this is an outgoing connection, make sure we are connected to the right host */
256
257         if(c->outgoing) {
258                 if(strcmp(c->name, name)) {
259                         logger(mesh, MESHLINK_ERROR, "Peer is %s instead of %s", name, c->name);
260                         return false;
261                 }
262         } else {
263                 if(c->name) {
264                         free(c->name);
265                 }
266
267                 c->name = xstrdup(name);
268         }
269
270         /* Check if version matches */
271
272         if(c->protocol_major != PROT_MAJOR) {
273                 logger(mesh, MESHLINK_ERROR, "Peer %s uses incompatible version %d.%d",
274                        c->name, c->protocol_major, c->protocol_minor);
275                 return false;
276         }
277
278         /* Check if we know this node */
279
280         node_t *n = lookup_node(mesh, c->name);
281
282         if(!n) {
283                 logger(mesh, MESHLINK_ERROR, "Peer %s has unknown identity", c->name);
284                 return false;
285         }
286
287         if(!node_read_public_key(mesh, n)) {
288                 logger(mesh, MESHLINK_ERROR, "No key known for peer %s", c->name);
289
290                 if(n->status.reachable && !n->status.waitingforkey) {
291                         logger(mesh, MESHLINK_INFO, "Requesting key from peer %s", c->name);
292                         send_req_key(mesh, n);
293                 }
294
295                 return false;
296         }
297
298         /* Forbid version rollback for nodes whose ECDSA key we know */
299
300         if(ecdsa_active(c->ecdsa) && c->protocol_minor < 2) {
301                 logger(mesh, MESHLINK_ERROR, "Peer %s tries to roll back protocol version to %d.%d",
302                        c->name, c->protocol_major, c->protocol_minor);
303                 return false;
304         }
305
306         c->allow_request = ACK;
307         c->last_ping_time = mesh->loop.now.tv_sec;
308         char label[sizeof(meshlink_tcp_label) + strlen(mesh->self->name) + strlen(c->name) + 2];
309
310         if(c->outgoing) {
311                 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, mesh->self->name, c->name);
312         } else {
313                 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, c->name, mesh->self->name);
314         }
315
316         char buf1[1024], buf2[1024];
317         bin2hex((uint8_t *)mesh->private_key + 64, buf1, 32);
318         bin2hex((uint8_t *)n->ecdsa + 64, buf2, 32);
319         logger(mesh, MESHLINK_DEBUG, "Connection to %s mykey %s hiskey %s", c->name, buf1, buf2);
320         return sptps_start(&c->sptps, c, c->outgoing, false, mesh->private_key, n->ecdsa, label, sizeof(label) - 1, send_meta_sptps, receive_meta_sptps);
321 }
322
323 bool send_ack(meshlink_handle_t *mesh, connection_t *c) {
324         node_t *n = lookup_node(mesh, c->name);
325
326         if(n && n->status.blacklisted) {
327                 logger(mesh, MESHLINK_WARNING, "Peer %s is blacklisted", c->name);
328                 return send_error(mesh, c, BLACKLISTED, "blacklisted");
329         }
330
331         c->last_ping_time = mesh->loop.now.tv_sec;
332         return send_request(mesh, c, NULL, "%d %s %d %x", ACK, mesh->myport, mesh->devclass, OPTION_PMTU_DISCOVERY | (PROT_MINOR << 24));
333 }
334
335 static void send_everything(meshlink_handle_t *mesh, connection_t *c) {
336         /* Send all known subnets and edges */
337
338         for splay_each(node_t, n, mesh->nodes) {
339                 for inner_splay_each(edge_t, e, n->edge_tree) {
340                         send_add_edge(mesh, c, e, 0);
341                 }
342         }
343 }
344
345 bool ack_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
346         assert(request);
347         assert(*request);
348
349         char hisport[MAX_STRING_SIZE];
350         int devclass;
351         uint32_t options;
352         node_t *n;
353
354         if(sscanf(request, "%*d " MAX_STRING " %d %x", hisport, &devclass, &options) != 3) {
355                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ACK", c->name);
356                 return false;
357         }
358
359         if(devclass < 0 || devclass >= DEV_CLASS_COUNT) {
360                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ACK", c->name, "devclass invalid");
361                 return false;
362         }
363
364         /* Check if we already have a node_t for him */
365
366         n = lookup_node(mesh, c->name);
367
368         if(!n) {
369                 n = new_node();
370                 n->name = xstrdup(c->name);
371                 node_add(mesh, n);
372         } else {
373                 if(n->connection) {
374                         /* Oh dear, we already have a connection to this node. */
375                         logger(mesh, MESHLINK_DEBUG, "Established a second connection with %s, closing old connection", n->connection->name);
376
377                         if(n->connection->outgoing) {
378                                 if(c->outgoing) {
379                                         logger(mesh, MESHLINK_WARNING, "Two outgoing connections to the same node!");
380                                 } else {
381                                         c->outgoing = n->connection->outgoing;
382                                 }
383
384                                 n->connection->outgoing = NULL;
385                         }
386
387                         /* Remove the edge before terminating the connection, to prevent a graph update. */
388                         edge_del(mesh, n->connection->edge);
389                         n->connection->edge = NULL;
390
391                         terminate_connection(mesh, n->connection, false);
392                 }
393         }
394
395         n->devclass = devclass;
396         n->status.dirty = true;
397
398         n->last_successfull_connection = mesh->loop.now.tv_sec;
399
400         n->connection = c;
401         n->nexthop = n;
402         c->node = n;
403
404         /* Activate this connection */
405
406         c->allow_request = ALL;
407         c->last_key_renewal = mesh->loop.now.tv_sec;
408         c->status.active = true;
409
410         logger(mesh, MESHLINK_INFO, "Connection with %s activated", c->name);
411
412         if(mesh->meta_status_cb) {
413                 mesh->meta_status_cb(mesh, (meshlink_node_t *)n, true);
414         }
415
416         /*  Terminate any connections to this node that are not activated yet */
417
418         for list_each(connection_t, other, mesh->connections) {
419                 if(!other->status.active && !strcmp(other->name, c->name)) {
420                         if(other->outgoing) {
421                                 if(c->outgoing) {
422                                         logger(mesh, MESHLINK_WARNING, "Two outgoing connections to the same node!");
423                                 } else {
424                                         c->outgoing = other->outgoing;
425                                 }
426
427                                 other->outgoing = NULL;
428                         }
429
430                         logger(mesh, MESHLINK_DEBUG, "Terminating pending second connection with %s", n->name);
431                         terminate_connection(mesh, other, false);
432                 }
433         }
434
435         /* Send him everything we know */
436
437         send_everything(mesh, c);
438
439         /* Create an edge_t for this connection */
440
441         assert(devclass >= 0 && devclass < DEV_CLASS_COUNT);
442
443         c->edge = new_edge();
444         c->edge->from = mesh->self;
445         c->edge->to = n;
446         sockaddrcpy_setport(&c->edge->address, &c->address, atoi(hisport));
447         c->edge->weight = mesh->dev_class_traits[devclass].edge_weight;
448         c->edge->connection = c;
449
450         node_add_recent_address(mesh, n, &c->address);
451         edge_add(mesh, c->edge);
452
453         /* Notify everyone of the new edge */
454
455         send_add_edge(mesh, mesh->everyone, c->edge, 0);
456
457         /* Run MST and SSSP algorithms */
458
459         graph(mesh);
460
461         /* Request a session key to jump start UDP traffic */
462
463         if(c->status.initiator) {
464                 send_req_key(mesh, n);
465         }
466
467         return true;
468 }