]> git.meshlink.io Git - meshlink/blob - src/protocol_auth.c
b11acaef7c5e4238dcba37af577bb8077da2fef3
[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", ID, mesh->self->connection->name, mesh->self->connection->protocol_major, minor);
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                 return false;
243         }
244
245         // Read the new node's Name from the file
246         char buf[1024];
247         fgets(buf, sizeof(buf), f);
248
249         if(*buf) {
250                 buf[strlen(buf) - 1] = 0;
251         }
252
253         len = strcspn(buf, " \t=");
254         char *name = buf + len;
255         name += strspn(name, " \t");
256
257         if(*name == '=') {
258                 name++;
259                 name += strspn(name, " \t");
260         }
261
262         buf[len] = 0;
263
264         if(!*buf || !*name || strcasecmp(buf, "Name") || !check_id(name)) {
265                 logger(mesh, MESHLINK_ERROR, "Invalid invitation file %s\n", cookie);
266                 fclose(f);
267                 return false;
268         }
269
270         free(c->name);
271         c->name = xstrdup(name);
272
273         // Send the node the contents of the invitation file
274         rewind(f);
275         size_t result;
276
277         while((result = fread(buf, 1, sizeof(buf), f))) {
278                 sptps_send_record(&c->sptps, 0, buf, result);
279         }
280
281         sptps_send_record(&c->sptps, 1, buf, 0);
282         fclose(f);
283         unlink(usedname);
284
285         c->status.invitation_used = true;
286
287         logger(mesh, MESHLINK_INFO, "Invitation %s succesfully sent to %s", cookie, c->name);
288         return true;
289 }
290
291 bool id_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
292         char name[MAX_STRING_SIZE];
293
294         if(sscanf(request, "%*d " MAX_STRING " %d.%d", name, &c->protocol_major, &c->protocol_minor) < 2) {
295                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ID", c->name);
296                 return false;
297         }
298
299         /* Check if this is an invitation  */
300
301         if(name[0] == '?') {
302                 if(!mesh->invitation_key) {
303                         logger(mesh, MESHLINK_ERROR, "Got invitation from %s but we don't have an invitation key", c->name);
304                         return false;
305                 }
306
307                 c->ecdsa = ecdsa_set_base64_public_key(name + 1);
308
309                 if(!c->ecdsa) {
310                         logger(mesh, MESHLINK_ERROR, "Got bad invitation from %s", c->name);
311                         return false;
312                 }
313
314                 c->status.invitation = true;
315                 char *mykey = ecdsa_get_base64_public_key(mesh->invitation_key);
316
317                 if(!mykey) {
318                         return false;
319                 }
320
321                 if(!send_request(mesh, c, "%d %s", ACK, mykey)) {
322                         return false;
323                 }
324
325                 free(mykey);
326
327                 c->protocol_minor = 2;
328                 c->allow_request = 1;
329
330                 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);
331         }
332
333         /* Check if identity is a valid name */
334
335         if(!check_id(name)) {
336                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ID", c->name, "invalid name");
337                 return false;
338         }
339
340         /* If this is an outgoing connection, make sure we are connected to the right host */
341
342         if(c->outgoing) {
343                 if(strcmp(c->name, name)) {
344                         logger(mesh, MESHLINK_ERROR, "Peer is %s instead of %s", name, c->name);
345                         return false;
346                 }
347         } else {
348                 if(c->name) {
349                         free(c->name);
350                 }
351
352                 c->name = xstrdup(name);
353         }
354
355         /* Check if version matches */
356
357         if(c->protocol_major != mesh->self->connection->protocol_major) {
358                 logger(mesh, MESHLINK_ERROR, "Peer %s uses incompatible version %d.%d",
359                        c->name, c->protocol_major, c->protocol_minor);
360                 return false;
361         }
362
363         if(!c->config_tree) {
364                 init_configuration(&c->config_tree);
365
366                 if(!read_host_config(mesh, c->config_tree, c->name)) {
367                         logger(mesh, MESHLINK_ERROR, "Peer %s has unknown identity", c->name);
368                         return false;
369                 }
370         }
371
372         read_ecdsa_public_key(mesh, c);
373
374         if(!ecdsa_active(c->ecdsa)) {
375                 logger(mesh, MESHLINK_ERROR, "No key known for peer %s", c->name);
376
377                 node_t *n = lookup_node(mesh, c->name);
378
379                 if(n && !n->status.waitingforkey) {
380                         logger(mesh, MESHLINK_INFO, "Requesting key from peer %s", c->name);
381                         send_req_key(mesh, n);
382                 }
383
384                 return false;
385         }
386
387         /* Forbid version rollback for nodes whose ECDSA key we know */
388
389         if(ecdsa_active(c->ecdsa) && c->protocol_minor < 2) {
390                 logger(mesh, MESHLINK_ERROR, "Peer %s tries to roll back protocol version to %d.%d",
391                        c->name, c->protocol_major, c->protocol_minor);
392                 return false;
393         }
394
395         c->allow_request = ACK;
396         char label[sizeof(meshlink_tcp_label) + strlen(mesh->self->name) + strlen(c->name) + 2];
397
398         if(c->outgoing) {
399                 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, mesh->self->name, c->name);
400         } else {
401                 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, c->name, mesh->self->name);
402         }
403
404         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);
405 }
406
407 bool send_ack(meshlink_handle_t *mesh, connection_t *c) {
408
409         /* Check some options */
410
411         if(mesh->self->options & OPTION_PMTU_DISCOVERY) {
412                 c->options |= OPTION_PMTU_DISCOVERY;
413         }
414
415         return send_request(mesh, c, "%d %s %d %x", ACK, mesh->myport, mesh->devclass, (c->options & 0xffffff) | (PROT_MINOR << 24));
416 }
417
418 static void send_everything(meshlink_handle_t *mesh, connection_t *c) {
419         /* Send all known subnets and edges */
420
421         for splay_each(node_t, n, mesh->nodes) {
422                 for splay_each(edge_t, e, n->edge_tree) {
423                         send_add_edge(mesh, c, e);
424                 }
425         }
426 }
427
428 bool ack_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
429         char hisport[MAX_STRING_SIZE];
430         char *hisaddress;
431         int devclass;
432         uint32_t options;
433         node_t *n;
434
435         if(sscanf(request, "%*d " MAX_STRING " %d %x", hisport, &devclass, &options) != 3) {
436                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ACK", c->name);
437                 return false;
438         }
439
440         if(devclass < 0 || devclass > _DEV_CLASS_MAX) {
441                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ACK", c->name, "devclass invalid");
442                 return false;
443         }
444
445         /* Check if we already have a node_t for him */
446
447         n = lookup_node(mesh, c->name);
448
449         if(!n) {
450                 n = new_node();
451                 n->name = xstrdup(c->name);
452                 node_add(mesh, n);
453         } else {
454                 if(n->connection) {
455                         /* Oh dear, we already have a connection to this node. */
456                         logger(mesh, MESHLINK_DEBUG, "Established a second connection with %s, closing old connection", n->connection->name);
457
458                         if(n->connection->outgoing) {
459                                 if(c->outgoing) {
460                                         logger(mesh, MESHLINK_WARNING, "Two outgoing connections to the same node!");
461                                 } else {
462                                         c->outgoing = n->connection->outgoing;
463                                 }
464
465                                 n->connection->outgoing = NULL;
466                         }
467
468                         terminate_connection(mesh, n->connection, false);
469                         /* Run graph algorithm to keep things in sync */
470                         graph(mesh);
471                 }
472         }
473
474         n->devclass = devclass;
475         node_write_devclass(mesh, n);
476
477         n->last_successfull_connection = time(NULL);
478
479         n->connection = c;
480         c->node = n;
481
482         if(!(c->options & options & OPTION_PMTU_DISCOVERY)) {
483                 c->options &= ~OPTION_PMTU_DISCOVERY;
484                 options &= ~OPTION_PMTU_DISCOVERY;
485         }
486
487         c->options |= options;
488
489         /* Activate this connection */
490
491         c->allow_request = ALL;
492         c->status.active = true;
493
494         logger(mesh, MESHLINK_INFO, "Connection with %s activated", c->name);
495
496         /* Send him everything we know */
497
498         send_everything(mesh, c);
499
500         /* Create an edge_t for this connection */
501
502         assert(devclass >= 0 && devclass <= _DEV_CLASS_MAX);
503
504         c->edge = new_edge();
505         c->edge->from = mesh->self;
506         c->edge->to = n;
507         sockaddr2str(&c->address, &hisaddress, NULL);
508         c->edge->address = str2sockaddr(hisaddress, hisport);
509         free(hisaddress);
510         c->edge->weight = dev_class_traits[devclass].edge_weight;
511         c->edge->connection = c;
512         c->edge->options = c->options;
513
514         edge_add(mesh, c->edge);
515
516         /* Notify everyone of the new edge */
517
518         send_add_edge(mesh, mesh->everyone, c->edge);
519
520         /* Run MST and SSSP algorithms */
521
522         graph(mesh);
523
524         return true;
525 }