2 protocol_key.c -- handle the meta-protocol, key exchange
3 Copyright (C) 1999-2005 Ivo Timmermans,
4 2000-2006 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
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include <openssl/evp.h>
26 #include <openssl/err.h>
29 #include "connection.h"
38 bool mykeyused = false;
40 bool send_key_changed(connection_t *c, const node_t *n)
44 /* Only send this message if some other daemon requested our key previously.
45 This reduces unnecessary key_changed broadcasts.
48 if(n == myself && !mykeyused)
51 return send_request(c, "%d %lx %s", KEY_CHANGED, random(), n->name);
54 bool key_changed_h(connection_t *c)
56 char name[MAX_STRING_SIZE];
61 if(sscanf(c->buffer, "%*d %*x " MAX_STRING, name) != 1) {
62 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "KEY_CHANGED",
63 c->name, c->hostname);
67 if(seen_request(c->buffer))
70 n = lookup_node(name);
73 logger(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist"),
74 "KEY_CHANGED", c->name, c->hostname, name);
78 n->status.validkey = false;
79 n->status.waitingforkey = false;
89 bool send_req_key(connection_t *c, const node_t *from, const node_t *to)
93 return send_request(c, "%d %s %s", REQ_KEY, from->name, to->name);
96 bool req_key_h(connection_t *c)
98 char from_name[MAX_STRING_SIZE];
99 char to_name[MAX_STRING_SIZE];
104 if(sscanf(c->buffer, "%*d " MAX_STRING " " MAX_STRING, from_name, to_name) != 2) {
105 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "REQ_KEY", c->name,
110 from = lookup_node(from_name);
113 logger(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist in our connection list"),
114 "REQ_KEY", c->name, c->hostname, from_name);
118 to = lookup_node(to_name);
121 logger(LOG_ERR, _("Got %s from %s (%s) destination %s which does not exist in our connection list"),
122 "REQ_KEY", c->name, c->hostname, to_name);
126 /* Check if this key request is for us */
128 if(to == myself) { /* Yes, send our own key back */
130 from->received_seqno = 0;
131 memset(from->late, 0, sizeof(from->late));
132 send_ans_key(c, myself, from);
137 send_req_key(to->nexthop->connection, from, to);
143 bool send_ans_key(connection_t *c, const node_t *from, const node_t *to)
149 key = alloca(2 * from->keylength + 1);
150 bin2hex(from->key, key, from->keylength);
151 key[from->keylength * 2] = '\0';
153 return send_request(c, "%d %s %s %s %d %d %d %d", ANS_KEY,
154 from->name, to->name, key,
155 from->cipher ? from->cipher->nid : 0,
156 from->digest ? from->digest->type : 0, from->maclength,
160 bool ans_key_h(connection_t *c)
162 char from_name[MAX_STRING_SIZE];
163 char to_name[MAX_STRING_SIZE];
164 char key[MAX_STRING_SIZE];
165 int cipher, digest, maclength, compression;
170 if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING" "MAX_STRING" %d %d %d %d",
171 from_name, to_name, key, &cipher, &digest, &maclength,
172 &compression) != 7) {
173 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "ANS_KEY", c->name,
178 from = lookup_node(from_name);
181 logger(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist in our connection list"),
182 "ANS_KEY", c->name, c->hostname, from_name);
186 to = lookup_node(to_name);
189 logger(LOG_ERR, _("Got %s from %s (%s) destination %s which does not exist in our connection list"),
190 "ANS_KEY", c->name, c->hostname, to_name);
194 /* Forward it if necessary */
200 return send_request(to->nexthop->connection, "%s", c->buffer);
203 /* Update our copy of the origin's packet key */
208 from->key = xstrdup(key);
209 from->keylength = strlen(key) / 2;
210 hex2bin(from->key, from->key, from->keylength);
211 from->key[from->keylength] = '\0';
213 from->status.validkey = true;
214 from->status.waitingforkey = false;
215 from->sent_seqno = 0;
217 /* Check and lookup cipher and digest algorithms */
220 from->cipher = EVP_get_cipherbynid(cipher);
223 logger(LOG_ERR, _("Node %s (%s) uses unknown cipher!"), from->name,
228 if(from->keylength != from->cipher->key_len + from->cipher->iv_len) {
229 logger(LOG_ERR, _("Node %s (%s) uses wrong keylength!"), from->name,
237 from->maclength = maclength;
240 from->digest = EVP_get_digestbynid(digest);
243 logger(LOG_ERR, _("Node %s (%s) uses unknown digest!"), from->name,
248 if(from->maclength > from->digest->md_size || from->maclength < 0) {
249 logger(LOG_ERR, _("Node %s (%s) uses bogus MAC length!"),
250 from->name, from->hostname);
257 if(compression < 0 || compression > 11) {
258 logger(LOG_ERR, _("Node %s (%s) uses bogus compression level!"), from->name, from->hostname);
262 from->compression = compression;
265 if(!EVP_EncryptInit_ex(&from->packet_ctx, from->cipher, NULL, (unsigned char *)from->key, (unsigned char *)from->key + from->cipher->key_len)) {
266 logger(LOG_ERR, _("Error during initialisation of key from %s (%s): %s"),
267 from->name, from->hostname, ERR_error_string(ERR_get_error(), NULL));
271 if(from->options & OPTION_PMTU_DISCOVERY && !from->mtuprobes)
272 send_mtu_probe(from);