]> git.meshlink.io Git - meshlink/blob - src/protocol_auth.c
Never automatically try to bind to ports >= 32768.
[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 %u", ID, mesh->self->name, PROT_MAJOR, PROT_MINOR, mesh->appname, 0);
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, true) || !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
191         if(sscanf(request, "%*d " MAX_STRING " %d.%d %*s %u", name, &c->protocol_major, &c->protocol_minor, &c->flags) < 2) {
192                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ID", c->name);
193                 return false;
194         }
195
196         /* Check if this is an invitation  */
197
198         if(name[0] == '?') {
199                 if(!mesh->invitation_key) {
200                         logger(mesh, MESHLINK_ERROR, "Got invitation from %s but we don't have an invitation key", c->name);
201                         return false;
202                 }
203
204                 c->ecdsa = ecdsa_set_base64_public_key(name + 1);
205
206                 if(!c->ecdsa) {
207                         logger(mesh, MESHLINK_ERROR, "Got bad invitation from %s", c->name);
208                         return false;
209                 }
210
211                 c->status.invitation = true;
212                 char *mykey = ecdsa_get_base64_public_key(mesh->invitation_key);
213
214                 if(!mykey) {
215                         return false;
216                 }
217
218                 if(!send_request(mesh, c, NULL, "%d %s", ACK, mykey)) {
219                         return false;
220                 }
221
222                 free(mykey);
223
224                 c->protocol_minor = 2;
225                 c->allow_request = 1;
226                 c->last_ping_time = mesh->loop.now.tv_sec;
227
228                 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);
229         }
230
231         /* Check if identity is a valid name */
232
233         if(!check_id(name)) {
234                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ID", c->name, "invalid name");
235                 return false;
236         }
237
238         /* If this is an outgoing connection, make sure we are connected to the right host */
239
240         if(c->outgoing) {
241                 if(strcmp(c->name, name)) {
242                         logger(mesh, MESHLINK_ERROR, "Peer is %s instead of %s", name, c->name);
243                         return false;
244                 }
245         } else {
246                 if(c->name) {
247                         free(c->name);
248                 }
249
250                 c->name = xstrdup(name);
251         }
252
253         /* Check if version matches */
254
255         if(c->protocol_major != PROT_MAJOR) {
256                 logger(mesh, MESHLINK_ERROR, "Peer %s uses incompatible version %d.%d",
257                        c->name, c->protocol_major, c->protocol_minor);
258                 return false;
259         }
260
261         /* Check if we know this node */
262
263         node_t *n = lookup_node(mesh, c->name);
264
265         if(!n) {
266                 logger(mesh, MESHLINK_ERROR, "Peer %s has unknown identity", c->name);
267                 return false;
268         }
269
270         if(!node_read_public_key(mesh, n)) {
271                 logger(mesh, MESHLINK_ERROR, "No key known for peer %s", c->name);
272
273                 if(n->status.reachable && !n->status.waitingforkey) {
274                         logger(mesh, MESHLINK_INFO, "Requesting key from peer %s", c->name);
275                         send_req_key(mesh, n);
276                 }
277
278                 return false;
279         }
280
281         /* Forbid version rollback for nodes whose ECDSA key we know */
282
283         if(ecdsa_active(c->ecdsa) && c->protocol_minor < 2) {
284                 logger(mesh, MESHLINK_ERROR, "Peer %s tries to roll back protocol version to %d.%d",
285                        c->name, c->protocol_major, c->protocol_minor);
286                 return false;
287         }
288
289         c->allow_request = ACK;
290         c->last_ping_time = mesh->loop.now.tv_sec;
291         char label[sizeof(meshlink_tcp_label) + strlen(mesh->self->name) + strlen(c->name) + 2];
292
293         if(c->outgoing) {
294                 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, mesh->self->name, c->name);
295         } else {
296                 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, c->name, mesh->self->name);
297         }
298
299         if(mesh->log_level <= MESHLINK_DEBUG) {
300                 char buf1[1024], buf2[1024];
301                 bin2hex((uint8_t *)mesh->private_key + 64, buf1, 32);
302                 bin2hex((uint8_t *)n->ecdsa + 64, buf2, 32);
303                 logger(mesh, MESHLINK_DEBUG, "Connection to %s mykey %s hiskey %s", c->name, buf1, buf2);
304         }
305
306         return sptps_start(&c->sptps, c, c->outgoing, false, mesh->private_key, n->ecdsa, label, sizeof(label) - 1, send_meta_sptps, receive_meta_sptps);
307 }
308
309 bool send_ack(meshlink_handle_t *mesh, connection_t *c) {
310         node_t *n = lookup_node(mesh, c->name);
311
312         if(n && n->status.blacklisted) {
313                 logger(mesh, MESHLINK_WARNING, "Peer %s is blacklisted", c->name);
314                 return send_error(mesh, c, BLACKLISTED, "blacklisted");
315         }
316
317         c->last_ping_time = mesh->loop.now.tv_sec;
318         return send_request(mesh, c, NULL, "%d %s %d %x", ACK, mesh->myport, mesh->devclass, OPTION_PMTU_DISCOVERY | (PROT_MINOR << 24));
319 }
320
321 static void send_everything(meshlink_handle_t *mesh, connection_t *c) {
322         /* Send all known subnets and edges */
323
324         for splay_each(node_t, n, mesh->nodes) {
325                 for inner_splay_each(edge_t, e, n->edge_tree) {
326                         send_add_edge(mesh, c, e, 0);
327                 }
328         }
329 }
330
331 bool ack_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
332         assert(request);
333         assert(*request);
334
335         char hisport[MAX_STRING_SIZE];
336         int devclass;
337         uint32_t options;
338         node_t *n;
339
340         if(sscanf(request, "%*d " MAX_STRING " %d %x", hisport, &devclass, &options) != 3) {
341                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ACK", c->name);
342                 return false;
343         }
344
345         if(devclass < 0 || devclass >= DEV_CLASS_COUNT) {
346                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ACK", c->name, "devclass invalid");
347                 return false;
348         }
349
350         /* Check if we already have a node_t for him */
351
352         n = lookup_node(mesh, c->name);
353
354         if(!n) {
355                 n = new_node();
356                 n->name = xstrdup(c->name);
357                 node_add(mesh, n);
358         } else {
359                 if(n->connection) {
360                         /* Oh dear, we already have a connection to this node. */
361                         logger(mesh, MESHLINK_INFO, "Established a second connection with %s, closing old connection", n->connection->name);
362
363                         if(n->connection->outgoing) {
364                                 if(c->outgoing) {
365                                         logger(mesh, MESHLINK_WARNING, "Two outgoing connections to the same node!");
366                                 } else {
367                                         c->outgoing = n->connection->outgoing;
368                                 }
369
370                                 n->connection->outgoing = NULL;
371                         }
372
373                         /* Remove the edge before terminating the connection, to prevent a graph update. */
374                         edge_del(mesh, n->connection->edge);
375                         n->connection->edge = NULL;
376
377                         terminate_connection(mesh, n->connection, false);
378                 }
379         }
380
381         n->devclass = devclass;
382         n->status.dirty = true;
383         n->status.tiny = c->flags & PROTOCOL_TINY;
384
385         n->last_successfull_connection = mesh->loop.now.tv_sec;
386
387         n->connection = c;
388         n->nexthop = n;
389         c->node = n;
390
391         /* Activate this connection */
392
393         c->allow_request = ALL;
394         c->last_key_renewal = mesh->loop.now.tv_sec;
395         c->status.active = true;
396
397         logger(mesh, MESHLINK_INFO, "Connection with %s activated", c->name);
398
399         if(mesh->meta_status_cb) {
400                 mesh->meta_status_cb(mesh, (meshlink_node_t *)n, true);
401         }
402
403         /*  Terminate any connections to this node that are not activated yet */
404
405         for list_each(connection_t, other, mesh->connections) {
406                 if(!other->status.active && !strcmp(other->name, c->name)) {
407                         if(other->outgoing) {
408                                 if(c->outgoing) {
409                                         logger(mesh, MESHLINK_WARNING, "Two outgoing connections to the same node!");
410                                 } else {
411                                         c->outgoing = other->outgoing;
412                                 }
413
414                                 other->outgoing = NULL;
415                         }
416
417                         logger(mesh, MESHLINK_DEBUG, "Terminating pending second connection with %s", n->name);
418                         terminate_connection(mesh, other, false);
419                 }
420         }
421
422         /* Send him everything we know */
423
424         if(!(c->flags & PROTOCOL_TINY)) {
425                 send_everything(mesh, c);
426         }
427
428         /* Create an edge_t for this connection */
429
430         assert(devclass >= 0 && devclass < DEV_CLASS_COUNT);
431
432         c->edge = new_edge();
433         c->edge->from = mesh->self;
434         c->edge->to = n;
435         sockaddrcpy_setport(&c->edge->address, &c->address, atoi(hisport));
436         c->edge->weight = mesh->dev_class_traits[devclass].edge_weight;
437         c->edge->connection = c;
438
439         node_add_recent_address(mesh, n, &c->address);
440         edge_add(mesh, c->edge);
441
442         /* Notify everyone of the new edge */
443
444         send_add_edge(mesh, mesh->everyone, c->edge, 0);
445
446         /* Run MST and SSSP algorithms */
447
448         graph(mesh);
449
450         /* Request a session key to jump start UDP traffic */
451
452         if(c->status.initiator) {
453                 send_req_key(mesh, n);
454         }
455
456         return true;
457 }