X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fprotocol_key.c;h=f34a70da103dc1f2830090f8a2ccee7901f1dd07;hb=c2a9ed9e98e3dc4218c74fff774ddfe654adfd72;hp=3e8d29adfc4df0883dd224b23bab896951671b6c;hpb=bb6b97ce3493d49b79f1bd57fdac420c312ef8d6;p=tinc diff --git a/src/protocol_key.c b/src/protocol_key.c index 3e8d29ad..f34a70da 100644 --- a/src/protocol_key.c +++ b/src/protocol_key.c @@ -181,6 +181,22 @@ static bool req_key_ext_h(connection_t *c, const char *request, node_t *from, in return true; } + case REQ_PACKET: { + if(!from->status.validkey) { + logger(DEBUG_PROTOCOL, LOG_ERR, "Got REQ_PACKET from %s (%s) but we don't have a valid key yet", from->name, from->hostname); + return true; + } + + char buf[MAX_STRING_SIZE]; + if(sscanf(request, "%*d %*s %*s %*d " MAX_STRING, buf) != 1) { + logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "REQ_KEY", from->name, from->hostname, "invalid SPTPS data"); + return true; + } + int len = b64decode(buf, buf, strlen(buf)); + sptps_receive_data(&from->sptps, buf, len); + return true; + } + default: logger(DEBUG_ALWAYS, LOG_ERR, "Unknown extended REQ_KEY request from %s (%s): %s", from->name, from->hostname, request); return true;