X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fprotocol_key.c;h=c15c4f6e219cf93f326aacdde95d0228b5230e56;hb=ed070d754d1b5500b0ec3615ae342178cfd42efb;hp=58a3bd207c87b4ba25bbb1180d34542eb2851093;hpb=1c475ecb575367a6b3f9328b0f643ad636155341;p=tinc diff --git a/src/protocol_key.c b/src/protocol_key.c index 58a3bd20..c15c4f6e 100644 --- a/src/protocol_key.c +++ b/src/protocol_key.c @@ -34,7 +34,9 @@ #include "utils.h" #include "xalloc.h" +#ifndef DISABLE_LEGACY static bool mykeyused = false; +#endif void send_key_changed(void) { #ifndef DISABLE_LEGACY @@ -42,20 +44,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); } + } } } @@ -293,6 +297,11 @@ 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); + } + /* Is this an extended REQ_KEY message? */ if(experimental && reqno) { return req_key_ext_h(c, request, from, to, reqno); @@ -460,8 +469,49 @@ bool ans_key_h(connection_t *c, const char *request) { from->status.validkey = false; } - if(compression < 0 || compression > 11) { + switch(compression) { + case 12: +#ifdef HAVE_LZ4 + break; +#else + logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses bogus compression level!", from->name, from->hostname); + logger(DEBUG_ALWAYS, LOG_ERR, "LZ4 compression is unavailable on this node."); + return true; +#endif + + case 11: + case 10: +#ifdef HAVE_LZO + break; +#else + logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses bogus compression level!", from->name, from->hostname); + logger(DEBUG_ALWAYS, LOG_ERR, "LZO compression is unavailable on this node."); + return true; +#endif + + case 9: + case 8: + case 7: + case 6: + case 5: + case 4: + case 3: + case 2: + case 1: +#ifdef HAVE_ZLIB + break; +#else + logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses bogus compression level!", from->name, from->hostname); + logger(DEBUG_ALWAYS, LOG_ERR, "ZLIB compression is unavailable on this node."); + return true; +#endif + + case 0: + break; + + default: logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses bogus compression level!", from->name, from->hostname); + logger(DEBUG_ALWAYS, LOG_ERR, "Compression level %i is unrecognized by this node.", compression); return true; }