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