X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fprotocol_auth.c;h=e1a9a31341f8b73846628e49509335b1f4c0e511;hb=1c838cf7d4b4a97fe1038bfacbcb4207ca3ce9ca;hp=7db41d51eb0d54159955fdbf0f74705ac7fe3095;hpb=819884b6a5c5dc5514df2bfed6725e72c4eac840;p=meshlink diff --git a/src/protocol_auth.c b/src/protocol_auth.c index 7db41d51..e1a9a313 100644 --- a/src/protocol_auth.c +++ b/src/protocol_auth.c @@ -48,8 +48,21 @@ bool send_id(meshlink_handle_t *mesh, connection_t *c) { } static bool commit_invitation(meshlink_handle_t *mesh, connection_t *c, const void *data) { + // Check if the node is known + node_t *n = lookup_node(mesh, c->name); + + if(n) { + if(n->status.blacklisted) { + logger(mesh, MESHLINK_ERROR, "Invitee %s is blacklisted", c->name); + } else { + logger(mesh, MESHLINK_ERROR, "Invitee %s already known", c->name); + } + + return false; + } + // Create a new node - node_t *n = new_node(); + n = new_node(); n->name = xstrdup(c->name); n->devclass = DEV_CLASS_UNKNOWN; n->ecdsa = ecdsa_set_public_key(data); @@ -381,6 +394,25 @@ bool ack_h(meshlink_handle_t *mesh, connection_t *c, const char *request) { mesh->meta_status_cb(mesh, (meshlink_node_t *)n, true); } + /* Terminate any connections to this node that are not activated yet */ + + for list_each(connection_t, other, mesh->connections) { + if(!other->status.active && !strcmp(other->name, c->name)) { + if(other->outgoing) { + if(c->outgoing) { + logger(mesh, MESHLINK_WARNING, "Two outgoing connections to the same node!"); + } else { + c->outgoing = other->outgoing; + } + + other->outgoing = NULL; + } + + logger(mesh, MESHLINK_DEBUG, "Terminating pending second connection with %s", n->name); + terminate_connection(mesh, other, false); + } + } + /* Send him everything we know */ send_everything(mesh, c);