X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fprotocol_key.c;h=77b829b323633635b4cdd37202211e7d9dbf693e;hb=a29e6b49ef7a184941ab8cda2de9487744a82f83;hp=b93bec18f59161f51efe34a921beed326e3c1b2a;hpb=0f18410ebaf1c503e5d0ca9624b24df930561d7d;p=tinc diff --git a/src/protocol_key.c b/src/protocol_key.c index b93bec18..77b829b3 100644 --- a/src/protocol_key.c +++ b/src/protocol_key.c @@ -27,16 +27,10 @@ #include "net.h" #include "netutl.h" #include "node.h" -#include "prf.h" #include "protocol.h" #include "route.h" #include "sptps.h" #include "utils.h" -#include "xalloc.h" - -#ifndef DISABLE_LEGACY -static bool mykeyused = false; -#endif void send_key_changed(void) { #ifndef DISABLE_LEGACY @@ -44,20 +38,22 @@ void send_key_changed(void) { /* Immediately send new keys to directly connected nodes to keep UDP mappings alive */ - for list_each(connection_t, c, connection_list) + for list_each(connection_t, c, connection_list) { if(c->edge && c->node && c->node->status.reachable && !c->node->status.sptps) { send_ans_key(c->node); } + } #endif /* Force key exchange for connections using SPTPS */ if(experimental) { - for splay_each(node_t, n, node_tree) + for splay_each(node_t, n, node_tree) { if(n->status.reachable && n->status.validkey && n->status.sptps) { sptps_force_kex(&n->sptps); } + } } } @@ -295,6 +291,12 @@ bool req_key_h(connection_t *c, const char *request) { /* Check if this key request is for us */ if(to == myself) { /* Yes */ + if(!from->status.reachable) { + logger(DEBUG_ALWAYS, LOG_ERR, "Got %s from %s (%s) origin %s which is not reachable", + "REQ_KEY", c->name, c->hostname, from_name); + return true; + } + /* Is this an extended REQ_KEY message? */ if(experimental && reqno) { return req_key_ext_h(c, request, from, to, reqno); @@ -369,7 +371,6 @@ bool send_ans_key(node_t *to) { bin2hex(key, key, keylen); // Reset sequence number and late packet window - mykeyused = true; to->received_seqno = 0; to->received = 0;