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