]> git.meshlink.io Git - meshlink/blob - src/protocol_auth.c
Fix spelling errors.
[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         // Remember its current address
169         node_add_recent_address(mesh, n, &c->address);
170
171         if(!node_write_config(mesh, n) || !config_sync(mesh, "current")) {
172                 logger(mesh, MESHLINK_ERROR, "Error writing configuration file for invited node %s!\n", c->name);
173                 free_node(n);
174                 return false;
175
176         }
177
178         node_add(mesh, n);
179
180         logger(mesh, MESHLINK_INFO, "Key successfully received from %s", c->name);
181
182         //TODO: callback to application to inform of an accepted invitation
183
184         sptps_send_record(&c->sptps, 1, "", 0);
185
186         return true;
187 }
188
189 static bool receive_invitation_sptps(void *handle, uint8_t type, const void *data, uint16_t len) {
190         connection_t *c = handle;
191         meshlink_handle_t *mesh = c->mesh;
192
193         if(type == 128) {
194                 return true;
195         }
196
197         if(type == 1 && c->status.invitation_used) {
198                 return finalize_invitation(mesh, c, data, len);
199         }
200
201         if(type != 0 || len != 18 || c->status.invitation_used) {
202                 return false;
203         }
204
205         // Recover the filename from the cookie and the key
206         char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
207         char hash[64];
208         char hashbuf[18 + strlen(fingerprint)];
209         char cookie[25];
210         memcpy(hashbuf, data, 18);
211         memcpy(hashbuf + 18, fingerprint, sizeof(hashbuf) - 18);
212         sha512(hashbuf, sizeof(hashbuf), hash);
213         b64encode_urlsafe(hash, cookie, 18);
214         free(fingerprint);
215
216         config_t config;
217
218         if(!invitation_read(mesh, "current", cookie, &config, mesh->config_key)) {
219                 logger(mesh, MESHLINK_ERROR, "Error while trying to read invitation file\n");
220                 return false;
221         }
222
223         // Read the new node's Name from the file
224         packmsg_input_t in = {config.buf, config.len};
225         packmsg_get_uint32(&in); // skip version
226         free(c->name);
227         c->name = packmsg_get_str_dup(&in);
228
229         // Check if the file contains Sub-Mesh information
230         char *submesh_name = packmsg_get_str_dup(&in);
231
232         if(!strcmp(submesh_name, CORE_MESH)) {
233                 c->submesh = NULL;
234         } else {
235                 if(!check_id(submesh_name)) {
236                         logger(mesh, MESHLINK_ERROR, "Invalid invitation file %s\n", cookie);
237                         abort();
238                         return false;
239                 }
240
241                 c->submesh = lookup_or_create_submesh(mesh, submesh_name);
242
243                 if(!c->submesh) {
244                         return false;
245                 }
246         }
247
248         // Send the node the contents of the invitation file
249         sptps_send_record(&c->sptps, 0, config.buf, config.len);
250
251         config_free(&config);
252         free(submesh_name);
253
254         c->status.invitation_used = true;
255
256         logger(mesh, MESHLINK_INFO, "Invitation %s successfully sent to %s", cookie, c->name);
257         return true;
258 }
259
260 bool id_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
261         assert(request);
262         assert(*request);
263
264         char name[MAX_STRING_SIZE];
265
266         if(sscanf(request, "%*d " MAX_STRING " %d.%d", name, &c->protocol_major, &c->protocol_minor) < 2) {
267                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ID", c->name);
268                 return false;
269         }
270
271         /* Check if this is an invitation  */
272
273         if(name[0] == '?') {
274                 if(!mesh->invitation_key) {
275                         logger(mesh, MESHLINK_ERROR, "Got invitation from %s but we don't have an invitation key", c->name);
276                         return false;
277                 }
278
279                 c->ecdsa = ecdsa_set_base64_public_key(name + 1);
280
281                 if(!c->ecdsa) {
282                         logger(mesh, MESHLINK_ERROR, "Got bad invitation from %s", c->name);
283                         return false;
284                 }
285
286                 c->status.invitation = true;
287                 char *mykey = ecdsa_get_base64_public_key(mesh->invitation_key);
288
289                 if(!mykey) {
290                         return false;
291                 }
292
293                 if(!send_request(mesh, c, NULL, "%d %s", ACK, mykey)) {
294                         return false;
295                 }
296
297                 free(mykey);
298
299                 c->protocol_minor = 2;
300                 c->allow_request = 1;
301
302                 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);
303         }
304
305         /* Check if identity is a valid name */
306
307         if(!check_id(name)) {
308                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ID", c->name, "invalid name");
309                 return false;
310         }
311
312         /* If this is an outgoing connection, make sure we are connected to the right host */
313
314         if(c->outgoing) {
315                 if(strcmp(c->name, name)) {
316                         logger(mesh, MESHLINK_ERROR, "Peer is %s instead of %s", name, c->name);
317                         return false;
318                 }
319         } else {
320                 if(c->name) {
321                         free(c->name);
322                 }
323
324                 c->name = xstrdup(name);
325         }
326
327         /* Check if version matches */
328
329         if(c->protocol_major != PROT_MAJOR) {
330                 logger(mesh, MESHLINK_ERROR, "Peer %s uses incompatible version %d.%d",
331                        c->name, c->protocol_major, c->protocol_minor);
332                 return false;
333         }
334
335         /* Check if we know this node */
336
337         node_t *n = lookup_node(mesh, c->name);
338
339         if(!n) {
340                 logger(mesh, MESHLINK_ERROR, "Peer %s has unknown identity", c->name);
341                 return false;
342         }
343
344         if(n->status.blacklisted) {
345                 logger(mesh, MESHLINK_WARNING, "Peer %s is blacklisted", c->name);
346                 return false;
347         }
348
349         if(!node_read_public_key(mesh, n)) {
350                 logger(mesh, MESHLINK_ERROR, "No key known for peer %s", c->name);
351
352                 if(n->status.reachable && !n->status.waitingforkey) {
353                         logger(mesh, MESHLINK_INFO, "Requesting key from peer %s", c->name);
354                         send_req_key(mesh, n);
355                 }
356
357                 return false;
358         }
359
360         /* Forbid version rollback for nodes whose ECDSA key we know */
361
362         if(ecdsa_active(c->ecdsa) && c->protocol_minor < 2) {
363                 logger(mesh, MESHLINK_ERROR, "Peer %s tries to roll back protocol version to %d.%d",
364                        c->name, c->protocol_major, c->protocol_minor);
365                 return false;
366         }
367
368         c->allow_request = ACK;
369         char label[sizeof(meshlink_tcp_label) + strlen(mesh->self->name) + strlen(c->name) + 2];
370
371         if(c->outgoing) {
372                 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, mesh->self->name, c->name);
373         } else {
374                 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, c->name, mesh->self->name);
375         }
376
377         char buf1[1024], buf2[1024];
378         bin2hex((uint8_t *)mesh->private_key + 64, buf1, 32);
379         bin2hex((uint8_t *)n->ecdsa + 64, buf2, 32);
380         logger(mesh, MESHLINK_DEBUG, "Connection to %s mykey %s hiskey %s", c->name, buf1, buf2);
381         return sptps_start(&c->sptps, c, c->outgoing, false, mesh->private_key, n->ecdsa, label, sizeof(label) - 1, send_meta_sptps, receive_meta_sptps);
382 }
383
384 bool send_ack(meshlink_handle_t *mesh, connection_t *c) {
385         return send_request(mesh, c, NULL, "%d %s %d %x", ACK, mesh->myport, mesh->devclass, OPTION_PMTU_DISCOVERY | (PROT_MINOR << 24));
386 }
387
388 static void send_everything(meshlink_handle_t *mesh, connection_t *c) {
389         /* Send all known subnets and edges */
390
391         for splay_each(node_t, n, mesh->nodes) {
392                 for splay_each(edge_t, e, n->edge_tree) {
393                         send_add_edge(mesh, c, e, 0);
394                 }
395         }
396 }
397
398 bool ack_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
399         assert(request);
400         assert(*request);
401
402         char hisport[MAX_STRING_SIZE];
403         int devclass;
404         uint32_t options;
405         node_t *n;
406
407         if(sscanf(request, "%*d " MAX_STRING " %d %x", hisport, &devclass, &options) != 3) {
408                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ACK", c->name);
409                 return false;
410         }
411
412         if(devclass < 0 || devclass >= DEV_CLASS_COUNT) {
413                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ACK", c->name, "devclass invalid");
414                 return false;
415         }
416
417         /* Check if we already have a node_t for him */
418
419         n = lookup_node(mesh, c->name);
420
421         if(!n) {
422                 n = new_node();
423                 n->name = xstrdup(c->name);
424                 node_add(mesh, n);
425         } else {
426                 if(n->connection) {
427                         /* Oh dear, we already have a connection to this node. */
428                         logger(mesh, MESHLINK_DEBUG, "Established a second connection with %s, closing old connection", n->connection->name);
429
430                         if(n->connection->outgoing) {
431                                 if(c->outgoing) {
432                                         logger(mesh, MESHLINK_WARNING, "Two outgoing connections to the same node!");
433                                 } else {
434                                         c->outgoing = n->connection->outgoing;
435                                 }
436
437                                 n->connection->outgoing = NULL;
438                         }
439
440                         /* Remove the edge before terminating the connection, to prevent a graph update. */
441                         edge_del(mesh, n->connection->edge);
442                         n->connection->edge = NULL;
443
444                         terminate_connection(mesh, n->connection, false);
445                 }
446         }
447
448         n->devclass = devclass;
449         n->status.dirty = true;
450
451         n->last_successfull_connection = mesh->loop.now.tv_sec;
452
453         n->connection = c;
454         c->node = n;
455
456         /* Activate this connection */
457
458         c->allow_request = ALL;
459         c->status.active = true;
460
461         logger(mesh, MESHLINK_INFO, "Connection with %s activated", c->name);
462
463         /* Send him everything we know */
464
465         send_everything(mesh, c);
466
467         /* Create an edge_t for this connection */
468
469         assert(devclass >= 0 && devclass < DEV_CLASS_COUNT);
470
471         c->edge = new_edge();
472         c->edge->from = mesh->self;
473         c->edge->to = n;
474         sockaddrcpy_setport(&c->edge->address, &c->address, atoi(hisport));
475         c->edge->weight = mesh->dev_class_traits[devclass].edge_weight;
476         c->edge->connection = c;
477
478         edge_add(mesh, c->edge);
479
480         /* Notify everyone of the new edge */
481
482         send_add_edge(mesh, mesh->everyone, c->edge, 0);
483
484         /* Run MST and SSSP algorithms */
485
486         graph(mesh);
487
488         return true;
489 }