]> git.meshlink.io Git - meshlink/blob - src/protocol_auth.c
Check blacklist status before committing an invitation.
[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
191         if(sscanf(request, "%*d " MAX_STRING " %d.%d", name, &c->protocol_major, &c->protocol_minor) < 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(n->status.blacklisted) {
271                 logger(mesh, MESHLINK_WARNING, "Peer %s is blacklisted", c->name);
272                 return false;
273         }
274
275         if(!node_read_public_key(mesh, n)) {
276                 logger(mesh, MESHLINK_ERROR, "No key known for peer %s", c->name);
277
278                 if(n->status.reachable && !n->status.waitingforkey) {
279                         logger(mesh, MESHLINK_INFO, "Requesting key from peer %s", c->name);
280                         send_req_key(mesh, n);
281                 }
282
283                 return false;
284         }
285
286         /* Forbid version rollback for nodes whose ECDSA key we know */
287
288         if(ecdsa_active(c->ecdsa) && c->protocol_minor < 2) {
289                 logger(mesh, MESHLINK_ERROR, "Peer %s tries to roll back protocol version to %d.%d",
290                        c->name, c->protocol_major, c->protocol_minor);
291                 return false;
292         }
293
294         c->allow_request = ACK;
295         c->last_ping_time = mesh->loop.now.tv_sec;
296         char label[sizeof(meshlink_tcp_label) + strlen(mesh->self->name) + strlen(c->name) + 2];
297
298         if(c->outgoing) {
299                 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, mesh->self->name, c->name);
300         } else {
301                 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, c->name, mesh->self->name);
302         }
303
304         char buf1[1024], buf2[1024];
305         bin2hex((uint8_t *)mesh->private_key + 64, buf1, 32);
306         bin2hex((uint8_t *)n->ecdsa + 64, buf2, 32);
307         logger(mesh, MESHLINK_DEBUG, "Connection to %s mykey %s hiskey %s", c->name, buf1, buf2);
308         return sptps_start(&c->sptps, c, c->outgoing, false, mesh->private_key, n->ecdsa, label, sizeof(label) - 1, send_meta_sptps, receive_meta_sptps);
309 }
310
311 bool send_ack(meshlink_handle_t *mesh, connection_t *c) {
312         c->last_ping_time = mesh->loop.now.tv_sec;
313         return send_request(mesh, c, NULL, "%d %s %d %x", ACK, mesh->myport, mesh->devclass, OPTION_PMTU_DISCOVERY | (PROT_MINOR << 24));
314 }
315
316 static void send_everything(meshlink_handle_t *mesh, connection_t *c) {
317         /* Send all known subnets and edges */
318
319         for splay_each(node_t, n, mesh->nodes) {
320                 for inner_splay_each(edge_t, e, n->edge_tree) {
321                         send_add_edge(mesh, c, e, 0);
322                 }
323         }
324 }
325
326 bool ack_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
327         assert(request);
328         assert(*request);
329
330         char hisport[MAX_STRING_SIZE];
331         int devclass;
332         uint32_t options;
333         node_t *n;
334
335         if(sscanf(request, "%*d " MAX_STRING " %d %x", hisport, &devclass, &options) != 3) {
336                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ACK", c->name);
337                 return false;
338         }
339
340         if(devclass < 0 || devclass >= DEV_CLASS_COUNT) {
341                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ACK", c->name, "devclass invalid");
342                 return false;
343         }
344
345         /* Check if we already have a node_t for him */
346
347         n = lookup_node(mesh, c->name);
348
349         if(!n) {
350                 n = new_node();
351                 n->name = xstrdup(c->name);
352                 node_add(mesh, n);
353         } else {
354                 if(n->connection) {
355                         /* Oh dear, we already have a connection to this node. */
356                         logger(mesh, MESHLINK_DEBUG, "Established a second connection with %s, closing old connection", n->connection->name);
357
358                         if(n->connection->outgoing) {
359                                 if(c->outgoing) {
360                                         logger(mesh, MESHLINK_WARNING, "Two outgoing connections to the same node!");
361                                 } else {
362                                         c->outgoing = n->connection->outgoing;
363                                 }
364
365                                 n->connection->outgoing = NULL;
366                         }
367
368                         /* Remove the edge before terminating the connection, to prevent a graph update. */
369                         edge_del(mesh, n->connection->edge);
370                         n->connection->edge = NULL;
371
372                         terminate_connection(mesh, n->connection, false);
373                 }
374         }
375
376         n->devclass = devclass;
377         n->status.dirty = true;
378
379         n->last_successfull_connection = mesh->loop.now.tv_sec;
380
381         n->connection = c;
382         n->nexthop = n;
383         c->node = n;
384
385         /* Activate this connection */
386
387         c->allow_request = ALL;
388         c->last_key_renewal = mesh->loop.now.tv_sec;
389         c->status.active = true;
390
391         logger(mesh, MESHLINK_INFO, "Connection with %s activated", c->name);
392
393         if(mesh->meta_status_cb) {
394                 mesh->meta_status_cb(mesh, (meshlink_node_t *)n, true);
395         }
396
397         /*  Terminate any connections to this node that are not activated yet */
398
399         for list_each(connection_t, other, mesh->connections) {
400                 if(!other->status.active && !strcmp(other->name, c->name)) {
401                         if(other->outgoing) {
402                                 if(c->outgoing) {
403                                         logger(mesh, MESHLINK_WARNING, "Two outgoing connections to the same node!");
404                                 } else {
405                                         c->outgoing = other->outgoing;
406                                 }
407
408                                 other->outgoing = NULL;
409                         }
410
411                         logger(mesh, MESHLINK_DEBUG, "Terminating pending second connection with %s", n->name);
412                         terminate_connection(mesh, other, false);
413                 }
414         }
415
416         /* Send him everything we know */
417
418         send_everything(mesh, c);
419
420         /* Create an edge_t for this connection */
421
422         assert(devclass >= 0 && devclass < DEV_CLASS_COUNT);
423
424         c->edge = new_edge();
425         c->edge->from = mesh->self;
426         c->edge->to = n;
427         sockaddrcpy_setport(&c->edge->address, &c->address, atoi(hisport));
428         c->edge->weight = mesh->dev_class_traits[devclass].edge_weight;
429         c->edge->connection = c;
430
431         node_add_recent_address(mesh, n, &c->address);
432         edge_add(mesh, c->edge);
433
434         /* Notify everyone of the new edge */
435
436         send_add_edge(mesh, mesh->everyone, c->edge, 0);
437
438         /* Run MST and SSSP algorithms */
439
440         graph(mesh);
441
442         /* Request a session key to jump start UDP traffic */
443
444         if(c->status.initiator) {
445                 send_req_key(mesh, n);
446         }
447
448         return true;
449 }