2 protocol_auth.c -- handle the meta-protocol, authentication
3 Copyright (C) 2014-2017 Guus Sliepen <guus@meshlink.io>
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.
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.
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.
23 #include "connection.h"
28 #include "meshlink_internal.h"
39 #include "ed25519/sha512.h"
43 extern bool node_write_devclass(meshlink_handle_t *mesh, node_t *n);
45 static bool send_proxyrequest(meshlink_handle_t *mesh, connection_t *c) {
46 switch(mesh->proxytype) {
51 sockaddr2str(&c->address, &host, &port);
52 send_request(mesh, c, NULL, "CONNECT %s:%s HTTP/1.1\r\n\r", host, port);
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!");
64 char s4req[9 + (mesh->proxyuser ? strlen(mesh->proxyuser) : 0)];
67 memcpy(s4req + 2, &c->address.in.sin_port, 2);
68 memcpy(s4req + 4, &c->address.in.sin_addr, 4);
71 memcpy(s4req + 8, mesh->proxyuser, strlen(mesh->proxyuser));
74 s4req[sizeof(s4req) - 1] = 0;
76 return send_meta(mesh, c, s4req, sizeof(s4req));
80 int len = 3 + 6 + (c->address.sa.sa_family == AF_INET ? 4 : 16);
84 len += 3 + strlen(mesh->proxyuser) + strlen(mesh->proxypass);
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);
110 if(c->address.sa.sa_family == AF_INET) {
112 memcpy(s5req + i, &c->address.in.sin_addr, 4);
114 memcpy(s5req + i, &c->address.in.sin_port, 2);
117 } else if(c->address.sa.sa_family == AF_INET6) {
119 memcpy(s5req + i, &c->address.in6.sin6_addr, 16);
121 memcpy(s5req + i, &c->address.in6.sin6_port, 2);
125 logger(mesh, MESHLINK_ERROR, "Address family %hx not supported for SOCKS 5 proxies!", c->address.sa.sa_family);
133 return send_meta(mesh, c, s5req, sizeof(s5req));
137 logger(mesh, MESHLINK_ERROR, "Proxy type not implemented yet");
141 logger(mesh, MESHLINK_ERROR, "Unknown proxy type");
146 bool send_id(meshlink_handle_t *mesh, connection_t *c) {
147 if(mesh->proxytype && c->outgoing)
148 if(!send_proxyrequest(mesh, c)) {
152 return send_request(mesh, c, NULL, "%d %s %d.%d %s", ID, mesh->self->name, PROT_MAJOR, PROT_MINOR, mesh->appname);
155 static bool finalize_invitation(meshlink_handle_t *mesh, connection_t *c, const void *data, uint16_t len) {
157 logger(mesh, MESHLINK_ERROR, "Received invalid key from invited node %s!\n", c->name);
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;
168 node_write_config(mesh, n);
170 logger(mesh, MESHLINK_INFO, "Key successfully received from %s", c->name);
172 //TODO: callback to application to inform of an accepted invitation
174 sptps_send_record(&c->sptps, 1, "", 0);
179 static bool receive_invitation_sptps(void *handle, uint8_t type, const void *data, uint16_t len) {
180 connection_t *c = handle;
181 meshlink_handle_t *mesh = c->mesh;
187 if(type == 1 && c->status.invitation_used) {
188 return finalize_invitation(mesh, c, data, len);
191 if(type != 0 || len != 18 || c->status.invitation_used) {
195 // Recover the filename from the cookie and the key
196 char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
198 char hashbuf[18 + strlen(fingerprint)];
200 memcpy(hashbuf, data, 18);
201 memcpy(hashbuf + 18, fingerprint, sizeof(hashbuf) - 18);
202 sha512(hashbuf, sizeof(hashbuf), hash);
203 b64encode_urlsafe(hash, cookie, 18);
208 if(!invitation_read(mesh, "current", cookie, &config, mesh->config_key)) {
209 logger(mesh, MESHLINK_ERROR, "Error while trying to read invitation file\n");
213 // Read the new node's Name from the file
214 packmsg_input_t in = {config.buf, config.len};
215 packmsg_get_uint32(&in); // skip version
217 c->name = packmsg_get_str_dup(&in);
219 // Check if the file contains Sub-Mesh information
220 char *submesh_name = packmsg_get_str_dup(&in);
222 if(!strcmp(submesh_name, CORE_MESH)) {
225 if(!check_id(submesh_name)) {
226 logger(mesh, MESHLINK_ERROR, "Invalid invitation file %s\n", cookie);
231 c->submesh = lookup_or_create_submesh(mesh, submesh_name);
238 // Send the node the contents of the invitation file
239 sptps_send_record(&c->sptps, 0, config.buf, config.len);
241 config_free(&config);
244 c->status.invitation_used = true;
246 logger(mesh, MESHLINK_INFO, "Invitation %s successfully sent to %s", cookie, c->name);
250 bool id_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
251 char name[MAX_STRING_SIZE];
253 if(sscanf(request, "%*d " MAX_STRING " %d.%d", name, &c->protocol_major, &c->protocol_minor) < 2) {
254 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ID", c->name);
258 /* Check if this is an invitation */
261 if(!mesh->invitation_key) {
262 logger(mesh, MESHLINK_ERROR, "Got invitation from %s but we don't have an invitation key", c->name);
266 c->ecdsa = ecdsa_set_base64_public_key(name + 1);
269 logger(mesh, MESHLINK_ERROR, "Got bad invitation from %s", c->name);
273 c->status.invitation = true;
274 char *mykey = ecdsa_get_base64_public_key(mesh->invitation_key);
280 if(!send_request(mesh, c, NULL, "%d %s", ACK, mykey)) {
286 c->protocol_minor = 2;
287 c->allow_request = 1;
289 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);
292 /* Check if identity is a valid name */
294 if(!check_id(name)) {
295 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ID", c->name, "invalid name");
299 /* If this is an outgoing connection, make sure we are connected to the right host */
302 if(strcmp(c->name, name)) {
303 logger(mesh, MESHLINK_ERROR, "Peer is %s instead of %s", name, c->name);
311 c->name = xstrdup(name);
314 /* Check if version matches */
316 if(c->protocol_major != PROT_MAJOR) {
317 logger(mesh, MESHLINK_ERROR, "Peer %s uses incompatible version %d.%d",
318 c->name, c->protocol_major, c->protocol_minor);
322 /* Check if we know this node */
324 node_t *n = lookup_node(mesh, c->name);
327 logger(mesh, MESHLINK_ERROR, "Peer %s has unknown identity", c->name);
331 if(n->status.blacklisted) {
332 logger(mesh, MESHLINK_EPEER, "Peer %s is blacklisted", c->name);
336 node_read_public_key(mesh, n);
338 if(!ecdsa_active(n->ecdsa)) {
339 logger(mesh, MESHLINK_ERROR, "No key known for peer %s", c->name);
341 if(n->status.reachable && !n->status.waitingforkey) {
342 logger(mesh, MESHLINK_INFO, "Requesting key from peer %s", c->name);
343 send_req_key(mesh, n);
349 /* Forbid version rollback for nodes whose ECDSA key we know */
351 if(ecdsa_active(c->ecdsa) && c->protocol_minor < 2) {
352 logger(mesh, MESHLINK_ERROR, "Peer %s tries to roll back protocol version to %d.%d",
353 c->name, c->protocol_major, c->protocol_minor);
357 c->allow_request = ACK;
358 char label[sizeof(meshlink_tcp_label) + strlen(mesh->self->name) + strlen(c->name) + 2];
361 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, mesh->self->name, c->name);
363 snprintf(label, sizeof(label), "%s %s %s", meshlink_tcp_label, c->name, mesh->self->name);
366 char buf1[1024], buf2[1024];
367 bin2hex((uint8_t *)mesh->private_key + 64, buf1, 32);
368 bin2hex((uint8_t *)n->ecdsa + 64, buf2, 32);
369 logger(mesh, MESHLINK_DEBUG, "Connection to %s mykey %s hiskey %s", c->name, buf1, buf2);
370 return sptps_start(&c->sptps, c, c->outgoing, false, mesh->private_key, n->ecdsa, label, sizeof(label) - 1, send_meta_sptps, receive_meta_sptps);
373 bool send_ack(meshlink_handle_t *mesh, connection_t *c) {
375 /* Check some options */
377 if(mesh->self->options & OPTION_PMTU_DISCOVERY) {
378 c->options |= OPTION_PMTU_DISCOVERY;
381 return send_request(mesh, c, NULL, "%d %s %d %x", ACK, mesh->myport, mesh->devclass, (c->options & 0xffffff) | (PROT_MINOR << 24));
384 static void send_everything(meshlink_handle_t *mesh, connection_t *c) {
385 /* Send all known subnets and edges */
387 for splay_each(node_t, n, mesh->nodes) {
388 for splay_each(edge_t, e, n->edge_tree) {
389 send_add_edge(mesh, c, e, 0);
394 bool ack_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
395 char hisport[MAX_STRING_SIZE];
400 if(sscanf(request, "%*d " MAX_STRING " %d %x", hisport, &devclass, &options) != 3) {
401 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ACK", c->name);
405 if(devclass < 0 || devclass > _DEV_CLASS_MAX) {
406 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ACK", c->name, "devclass invalid");
410 /* Check if we already have a node_t for him */
412 n = lookup_node(mesh, c->name);
416 n->name = xstrdup(c->name);
420 /* Oh dear, we already have a connection to this node. */
421 logger(mesh, MESHLINK_DEBUG, "Established a second connection with %s, closing old connection", n->connection->name);
423 if(n->connection->outgoing) {
425 logger(mesh, MESHLINK_WARNING, "Two outgoing connections to the same node!");
427 c->outgoing = n->connection->outgoing;
430 n->connection->outgoing = NULL;
433 terminate_connection(mesh, n->connection, false);
434 /* Run graph algorithm to keep things in sync */
439 n->devclass = devclass;
440 n->status.dirty = true;
442 n->last_successfull_connection = time(NULL);
447 if(!(c->options & options & OPTION_PMTU_DISCOVERY)) {
448 c->options &= ~OPTION_PMTU_DISCOVERY;
449 options &= ~OPTION_PMTU_DISCOVERY;
452 c->options |= options;
454 /* Activate this connection */
456 c->allow_request = ALL;
457 c->status.active = true;
459 logger(mesh, MESHLINK_INFO, "Connection with %s activated", c->name);
461 /* Send him everything we know */
463 send_everything(mesh, c);
465 /* Create an edge_t for this connection */
467 assert(devclass >= 0 && devclass <= _DEV_CLASS_MAX);
469 c->edge = new_edge();
470 c->edge->from = mesh->self;
472 sockaddrcpy_setport(&c->edge->address, &c->address, atoi(hisport));
473 c->edge->weight = dev_class_traits[devclass].edge_weight;
474 c->edge->connection = c;
475 c->edge->options = c->options;
477 edge_add(mesh, c->edge);
479 /* Notify everyone of the new edge */
481 send_add_edge(mesh, mesh->everyone, c->edge, 0);
483 /* Run MST and SSSP algorithms */