2 protocol_key.c -- handle the meta-protocol, key exchange
3 Copyright (C) 1999-2002 Ivo Timmermans <itimmermans@bigfoot.com>,
4 2000-2002 Guus Sliepen <guus@sliepen.warande.net>
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.
20 $Id: protocol_key.c,v 1.3 2002/04/28 12:46:26 zarq Exp $
41 #include "connection.h"
49 int send_key_changed(connection_t *c, node_t *n)
54 /* Only send this message if some other daemon requested our key previously.
55 This reduces unnecessary key_changed broadcasts.
58 if(n == myself && !mykeyused)
61 for(node = connection_tree->head; node; node = node->next)
63 other = (connection_t *)node->data;
64 if(other->status.active && other != c)
65 send_request(other, "%d %lx %s", KEY_CHANGED, random(), n->name);
71 int key_changed_h(connection_t *c)
73 char name[MAX_STRING_SIZE];
78 if(sscanf(c->buffer, "%*d %*x "MAX_STRING, name) != 1)
80 syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "KEY_CHANGED",
81 c->name, c->hostname);
85 if(seen_request(c->buffer))
88 n = lookup_node(name);
92 syslog(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist"), "KEY_CHANGED",
93 c->name, c->hostname, name);
97 n->status.validkey = 0;
98 n->status.waitingforkey = 0;
101 /* Tell the others */
103 for(node = connection_tree->head; node; node = node->next)
105 other = (connection_t *)node->data;
106 if(other->status.active && other != c)
107 send_request(other, "%s", c->buffer);
113 int send_req_key(connection_t *c, node_t *from, node_t *to)
116 return send_request(c, "%d %s %s", REQ_KEY,
117 from->name, to->name);
120 int req_key_h(connection_t *c)
122 char from_name[MAX_STRING_SIZE];
123 char to_name[MAX_STRING_SIZE];
126 if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING, from_name, to_name) != 2)
128 syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "REQ_KEY",
129 c->name, c->hostname);
133 from = lookup_node(from_name);
137 syslog(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist in our connection list"), "REQ_KEY",
138 c->name, c->hostname, from_name);
142 to = lookup_node(to_name);
146 syslog(LOG_ERR, _("Got %s from %s (%s) destination %s which does not exist in our connection list"), "REQ_KEY",
147 c->name, c->hostname, to_name);
151 /* Check if this key request is for us */
153 if(to == myself) /* Yes, send our own key back */
156 from->received_seqno = 0;
157 send_ans_key(c, myself, from);
162 if(to->status.validkey)
164 send_ans_key(c, to, from);
168 send_req_key(to->nexthop->connection, from, to);
175 int send_ans_key(connection_t *c, node_t *from, node_t *to)
177 char key[MAX_STRING_SIZE];
179 bin2hex(from->key, key, from->keylength);
180 key[from->keylength * 2] = '\0';
183 return send_request(c, "%d %s %s %s %d %d %d %d", ANS_KEY,
184 from->name, to->name, key, from->cipher?from->cipher->nid:0, from->digest?from->digest->type:0, from->maclength, from->compression);
187 return send_request(c, "%d %s %s %s %d %d %d %d", ANS_KEY,
188 from->name, to->name, key, from->cipher?-1:0, from->digest?-1:0, from->maclength, from->compression);
192 int ans_key_h(connection_t *c)
194 char from_name[MAX_STRING_SIZE];
195 char to_name[MAX_STRING_SIZE];
196 char key[MAX_STRING_SIZE];
197 int cipher, digest, maclength, compression;
200 if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING" "MAX_STRING" %d %d %d %d", from_name, to_name, key, &cipher, &digest, &maclength, &compression) != 7)
202 syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "ANS_KEY",
203 c->name, c->hostname);
207 from = lookup_node(from_name);
211 syslog(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist in our connection list"), "ANS_KEY",
212 c->name, c->hostname, from_name);
216 to = lookup_node(to_name);
220 syslog(LOG_ERR, _("Got %s from %s (%s) destination %s which does not exist in our connection list"), "ANS_KEY",
221 c->name, c->hostname, to_name);
225 /* Forward it if necessary */
229 return send_request(to->nexthop->connection, "%s", c->buffer);
232 /* Update our copy of the origin's packet key */
237 from->key = xstrdup(key);
238 from->keylength = strlen(key) / 2;
239 hex2bin(from->key, from->key, from->keylength);
240 from->key[from->keylength] = '\0';
242 from->status.validkey = 1;
243 from->status.waitingforkey = 0;
245 /* Check and lookup cipher and digest algorithms */
250 from->cipher = EVP_get_cipherbynid(cipher);
253 syslog(LOG_ERR, _("Node %s (%s) uses unknown cipher!"), from->name, from->hostname);
256 if(from->keylength != from->cipher->key_len + from->cipher->iv_len)
258 syslog(LOG_ERR, _("Node %s (%s) uses wrong keylength!"), from->name, from->hostname);
268 from->maclength = maclength;
273 from->digest = EVP_get_digestbynid(digest);
276 syslog(LOG_ERR, _("Node %s (%s) uses unknown digest!"), from->name, from->hostname);
279 if(from->maclength > from->digest->md_size || from->maclength < 0)
281 syslog(LOG_ERR, _("Node %s (%s) uses bogus MAC length!"), from->name, from->hostname);
291 from->compression = compression;