2 protocol_key.c -- handle the meta-protocol, key exchange
3 Copyright (C) 1999-2005 Ivo Timmermans,
4 2000-2016 Guus Sliepen <guus@tinc-vpn.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include <openssl/evp.h>
24 #include <openssl/err.h>
25 #include <openssl/rand.h>
28 #include "connection.h"
37 static bool mykeyused = false;
39 void send_key_changed(void) {
43 send_request(everyone, "%d %x %s", KEY_CHANGED, rand(), myself->name);
45 /* Immediately send new keys to directly connected nodes to keep UDP mappings alive */
47 for(node = connection_tree->head; node; node = node->next) {
49 if(c->status.active && c->node && c->node->status.reachable)
50 send_ans_key(c->node);
54 bool key_changed_h(connection_t *c) {
55 char name[MAX_STRING_SIZE];
58 if(sscanf(c->buffer, "%*d %*x " MAX_STRING, name) != 1) {
59 logger(LOG_ERR, "Got bad %s from %s (%s)", "KEY_CHANGED",
60 c->name, c->hostname);
65 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "KEY_CHANGED", c->name, c->hostname, "invalid name");
69 if(seen_request(c->buffer))
72 n = lookup_node(name);
75 logger(LOG_ERR, "Got %s from %s (%s) origin %s which does not exist",
76 "KEY_CHANGED", c->name, c->hostname, name);
80 n->status.validkey = false;
91 bool send_req_key(node_t *to) {
92 return send_request(to->nexthop->connection, "%d %s %s", REQ_KEY, myself->name, to->name);
95 bool req_key_h(connection_t *c) {
96 char from_name[MAX_STRING_SIZE];
97 char to_name[MAX_STRING_SIZE];
100 if(sscanf(c->buffer, "%*d " MAX_STRING " " MAX_STRING, from_name, to_name) != 2) {
101 logger(LOG_ERR, "Got bad %s from %s (%s)", "REQ_KEY", c->name,
106 if(!check_id(from_name) || !check_id(to_name)) {
107 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "REQ_KEY", c->name, c->hostname, "invalid name");
111 from = lookup_node(from_name);
114 logger(LOG_ERR, "Got %s from %s (%s) origin %s which does not exist in our connection list",
115 "REQ_KEY", c->name, c->hostname, from_name);
119 to = lookup_node(to_name);
122 logger(LOG_ERR, "Got %s from %s (%s) destination %s which does not exist in our connection list",
123 "REQ_KEY", c->name, c->hostname, to_name);
127 /* Check if this key request is for us */
129 if(to == myself) { /* Yes, send our own key back */
130 if (!send_ans_key(from))
136 if(!to->status.reachable) {
137 logger(LOG_WARNING, "Got %s from %s (%s) destination %s which is not reachable",
138 "REQ_KEY", c->name, c->hostname, to_name);
142 send_request(to->nexthop->connection, "%s", c->buffer);
148 bool send_ans_key(node_t *to) {
149 // Set key parameters
150 to->incipher = myself->incipher;
151 to->inkeylength = myself->inkeylength;
152 to->indigest = myself->indigest;
153 to->inmaclength = myself->inmaclength;
154 to->incompression = myself->incompression;
156 // Allocate memory for key
157 to->inkey = xrealloc(to->inkey, to->inkeylength);
160 if (1 != RAND_bytes((unsigned char *)to->inkey, to->inkeylength)) {
161 int err = ERR_get_error();
162 logger(LOG_ERR, "Failed to generate random for key (%s)", ERR_error_string(err, NULL));
163 return false; // Do not send insecure keys, let connection attempt fail.
167 EVP_DecryptInit_ex(to->inctx, to->incipher, NULL, (unsigned char *)to->inkey, (unsigned char *)to->inkey + EVP_CIPHER_key_length(to->incipher));
169 // Reset sequence number and late packet window
171 to->received_seqno = 0;
172 if(replaywin) memset(to->late, 0, replaywin);
174 // Convert to hexadecimal and send
175 char key[2 * to->inkeylength + 1];
176 bin2hex(to->inkey, key, to->inkeylength);
177 key[to->inkeylength * 2] = '\0';
179 return send_request(to->nexthop->connection, "%d %s %s %s %d %d %d %d", ANS_KEY,
180 myself->name, to->name, key,
181 to->incipher ? EVP_CIPHER_nid(to->incipher) : 0,
182 to->indigest ? EVP_MD_type(to->indigest) : 0, to->inmaclength,
186 bool ans_key_h(connection_t *c) {
187 char from_name[MAX_STRING_SIZE];
188 char to_name[MAX_STRING_SIZE];
189 char key[MAX_STRING_SIZE];
190 char address[MAX_STRING_SIZE] = "";
191 char port[MAX_STRING_SIZE] = "";
192 int cipher, digest, maclength, compression;
195 if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING" "MAX_STRING" %d %d %d %d "MAX_STRING" "MAX_STRING,
196 from_name, to_name, key, &cipher, &digest, &maclength,
197 &compression, address, port) < 7) {
198 logger(LOG_ERR, "Got bad %s from %s (%s)", "ANS_KEY", c->name,
203 if(!check_id(from_name) || !check_id(to_name)) {
204 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "ANS_KEY", c->name, c->hostname, "invalid name");
208 from = lookup_node(from_name);
211 logger(LOG_ERR, "Got %s from %s (%s) origin %s which does not exist in our connection list",
212 "ANS_KEY", c->name, c->hostname, from_name);
216 to = lookup_node(to_name);
219 logger(LOG_ERR, "Got %s from %s (%s) destination %s which does not exist in our connection list",
220 "ANS_KEY", c->name, c->hostname, to_name);
224 /* Forward it if necessary */
230 if(!to->status.reachable) {
231 logger(LOG_WARNING, "Got %s from %s (%s) destination %s which is not reachable",
232 "ANS_KEY", c->name, c->hostname, to_name);
236 if(!*address && from->address.sa.sa_family != AF_UNSPEC && to->minmtu) {
237 char *address, *port;
238 ifdebug(PROTOCOL) logger(LOG_DEBUG, "Appending reflexive UDP address to ANS_KEY from %s to %s", from->name, to->name);
239 sockaddr2str(&from->address, &address, &port);
240 send_request(to->nexthop->connection, "%s %s %s", c->buffer, address, port);
246 return send_request(to->nexthop->connection, "%s", c->buffer);
249 /* Don't use key material until every check has passed. */
250 from->status.validkey = false;
252 /* Update our copy of the origin's packet key */
253 from->outkey = xrealloc(from->outkey, strlen(key) / 2);
254 from->outkeylength = strlen(key) / 2;
255 if(!hex2bin(key, from->outkey, from->outkeylength)) {
256 logger(LOG_ERR, "Got bad %s from %s(%s): %s", "ANS_KEY", from->name, from->hostname, "invalid key");
260 /* Check and lookup cipher and digest algorithms */
263 from->outcipher = EVP_get_cipherbynid(cipher);
265 if(!from->outcipher) {
266 logger(LOG_ERR, "Node %s (%s) uses unknown cipher!", from->name,
271 if(from->outkeylength != EVP_CIPHER_key_length(from->outcipher) + EVP_CIPHER_iv_length(from->outcipher)) {
272 logger(LOG_ERR, "Node %s (%s) uses wrong keylength!", from->name,
277 from->outcipher = NULL;
280 from->outmaclength = maclength;
283 from->outdigest = EVP_get_digestbynid(digest);
285 if(!from->outdigest) {
286 logger(LOG_ERR, "Node %s (%s) uses unknown digest!", from->name,
291 if(from->outmaclength > EVP_MD_size(from->outdigest) || from->outmaclength < 0) {
292 logger(LOG_ERR, "Node %s (%s) uses bogus MAC length!",
293 from->name, from->hostname);
297 from->outdigest = NULL;
300 if(compression < 0 || compression > 11) {
301 logger(LOG_ERR, "Node %s (%s) uses bogus compression level!", from->name, from->hostname);
305 from->outcompression = compression;
308 if(!EVP_EncryptInit_ex(from->outctx, from->outcipher, NULL, (unsigned char *)from->outkey, (unsigned char *)from->outkey + EVP_CIPHER_key_length(from->outcipher))) {
309 logger(LOG_ERR, "Error during initialisation of key from %s (%s): %s",
310 from->name, from->hostname, ERR_error_string(ERR_get_error(), NULL));
314 from->status.validkey = true;
315 from->sent_seqno = 0;
317 if(*address && *port) {
318 ifdebug(PROTOCOL) logger(LOG_DEBUG, "Using reflexive UDP address from %s: %s port %s", from->name, address, port);
319 sockaddr_t sa = str2sockaddr(address, port);
320 update_node_udp(from, &sa);
323 if(from->options & OPTION_PMTU_DISCOVERY && !from->mtuevent)
324 send_mtu_probe(from);