Use cryptographically strong random when generating keys.
[tinc] / src / protocol_key.c
1 /*
2     protocol_key.c -- handle the meta-protocol, key exchange
3     Copyright (C) 1999-2005 Ivo Timmermans,
4                   2000-2012 Guus Sliepen <guus@tinc-vpn.org>
5
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.
10
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.
15
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.
19 */
20
21 #include "system.h"
22
23 #include <openssl/evp.h>
24 #include <openssl/err.h>
25 #include <openssl/rand.h>
26
27 #include "avl_tree.h"
28 #include "connection.h"
29 #include "logger.h"
30 #include "net.h"
31 #include "netutl.h"
32 #include "node.h"
33 #include "protocol.h"
34 #include "utils.h"
35 #include "xalloc.h"
36
37 static bool mykeyused = false;
38
39 void send_key_changed(void) {
40         avl_node_t *node;
41         connection_t *c;
42
43         send_request(everyone, "%d %x %s", KEY_CHANGED, rand(), myself->name);
44
45         /* Immediately send new keys to directly connected nodes to keep UDP mappings alive */
46
47         for(node = connection_tree->head; node; node = node->next) {
48                 c = node->data;
49                 if(c->status.active && c->node && c->node->status.reachable)
50                         send_ans_key(c->node);
51         }
52 }
53
54 bool key_changed_h(connection_t *c) {
55         char name[MAX_STRING_SIZE];
56         node_t *n;
57
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);
61                 return false;
62         }
63
64         if(!check_id(name)) {
65                 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "KEY_CHANGED", c->name, c->hostname, "invalid name");
66                 return false;
67         }
68
69         if(seen_request(c->buffer))
70                 return true;
71
72         n = lookup_node(name);
73
74         if(!n) {
75                 logger(LOG_ERR, "Got %s from %s (%s) origin %s which does not exist",
76                            "KEY_CHANGED", c->name, c->hostname, name);
77                 return true;
78         }
79
80         n->status.validkey = false;
81         n->last_req_key = 0;
82
83         /* Tell the others */
84
85         if(!tunnelserver)
86                 forward_request(c);
87
88         return true;
89 }
90
91 bool send_req_key(node_t *to) {
92         return send_request(to->nexthop->connection, "%d %s %s", REQ_KEY, myself->name, to->name);
93 }
94
95 bool req_key_h(connection_t *c) {
96         char from_name[MAX_STRING_SIZE];
97         char to_name[MAX_STRING_SIZE];
98         node_t *from, *to;
99
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,
102                            c->hostname);
103                 return false;
104         }
105
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");
108                 return false;
109         }
110
111         from = lookup_node(from_name);
112
113         if(!from) {
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);
116                 return true;
117         }
118
119         to = lookup_node(to_name);
120
121         if(!to) {
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);
124                 return true;
125         }
126
127         /* Check if this key request is for us */
128
129         if(to == myself) {                      /* Yes, send our own key back */
130                 send_ans_key(from);
131         } else {
132                 if(tunnelserver)
133                         return true;
134
135                 if(!to->status.reachable) {
136                         logger(LOG_WARNING, "Got %s from %s (%s) destination %s which is not reachable",
137                                 "REQ_KEY", c->name, c->hostname, to_name);
138                         return true;
139                 }
140
141                 send_request(to->nexthop->connection, "%s", c->buffer);
142         }
143
144         return true;
145 }
146
147 bool send_ans_key(node_t *to) {
148         // Set key parameters
149         to->incipher = myself->incipher;
150         to->inkeylength = myself->inkeylength;
151         to->indigest = myself->indigest;
152         to->inmaclength = myself->inmaclength;
153         to->incompression = myself->incompression;
154
155         // Allocate memory for key
156         to->inkey = xrealloc(to->inkey, to->inkeylength);
157
158         // Create a new key
159         RAND_bytes((unsigned char *)to->inkey, to->inkeylength);
160         if(to->incipher)
161                 EVP_DecryptInit_ex(&to->inctx, to->incipher, NULL, (unsigned char *)to->inkey, (unsigned char *)to->inkey + to->incipher->key_len);
162
163         // Reset sequence number and late packet window
164         mykeyused = true;
165         to->received_seqno = 0;
166         if(replaywin) memset(to->late, 0, replaywin);
167
168         // Convert to hexadecimal and send
169         char key[2 * to->inkeylength + 1];
170         bin2hex(to->inkey, key, to->inkeylength);
171         key[to->inkeylength * 2] = '\0';
172
173         return send_request(to->nexthop->connection, "%d %s %s %s %d %d %d %d", ANS_KEY,
174                         myself->name, to->name, key,
175                         to->incipher ? to->incipher->nid : 0,
176                         to->indigest ? to->indigest->type : 0, to->inmaclength,
177                         to->incompression);
178 }
179
180 bool ans_key_h(connection_t *c) {
181         char from_name[MAX_STRING_SIZE];
182         char to_name[MAX_STRING_SIZE];
183         char key[MAX_STRING_SIZE];
184         char address[MAX_STRING_SIZE] = "";
185         char port[MAX_STRING_SIZE] = "";
186         int cipher, digest, maclength, compression;
187         node_t *from, *to;
188
189         if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING" "MAX_STRING" %d %d %d %d "MAX_STRING" "MAX_STRING,
190                 from_name, to_name, key, &cipher, &digest, &maclength,
191                 &compression, address, port) < 7) {
192                 logger(LOG_ERR, "Got bad %s from %s (%s)", "ANS_KEY", c->name,
193                            c->hostname);
194                 return false;
195         }
196
197         if(!check_id(from_name) || !check_id(to_name)) {
198                 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "ANS_KEY", c->name, c->hostname, "invalid name");
199                 return false;
200         }
201
202         from = lookup_node(from_name);
203
204         if(!from) {
205                 logger(LOG_ERR, "Got %s from %s (%s) origin %s which does not exist in our connection list",
206                            "ANS_KEY", c->name, c->hostname, from_name);
207                 return true;
208         }
209
210         to = lookup_node(to_name);
211
212         if(!to) {
213                 logger(LOG_ERR, "Got %s from %s (%s) destination %s which does not exist in our connection list",
214                            "ANS_KEY", c->name, c->hostname, to_name);
215                 return true;
216         }
217
218         /* Forward it if necessary */
219
220         if(to != myself) {
221                 if(tunnelserver)
222                         return true;
223
224                 if(!to->status.reachable) {
225                         logger(LOG_WARNING, "Got %s from %s (%s) destination %s which is not reachable",
226                                 "ANS_KEY", c->name, c->hostname, to_name);
227                         return true;
228                 }
229
230                 if(!*address && from->address.sa.sa_family != AF_UNSPEC) {
231                         char *address, *port;
232                         ifdebug(PROTOCOL) logger(LOG_DEBUG, "Appending reflexive UDP address to ANS_KEY from %s to %s", from->name, to->name);
233                         sockaddr2str(&from->address, &address, &port);
234                         send_request(to->nexthop->connection, "%s %s %s", c->buffer, address, port);
235                         free(address);
236                         free(port);
237                         return true;
238                 }
239
240                 return send_request(to->nexthop->connection, "%s", c->buffer);
241         }
242
243         /* Don't use key material until every check has passed. */
244         from->status.validkey = false;
245
246         /* Update our copy of the origin's packet key */
247         from->outkey = xrealloc(from->outkey, strlen(key) / 2);
248         from->outkeylength = strlen(key) / 2;
249         if(!hex2bin(key, from->outkey, from->outkeylength)) {
250                 logger(LOG_ERR, "Got bad %s from %s(%s): %s", "ANS_KEY", from->name, from->hostname, "invalid key");
251                 return true;
252         }
253
254         /* Check and lookup cipher and digest algorithms */
255
256         if(cipher) {
257                 from->outcipher = EVP_get_cipherbynid(cipher);
258
259                 if(!from->outcipher) {
260                         logger(LOG_ERR, "Node %s (%s) uses unknown cipher!", from->name,
261                                    from->hostname);
262                         return true;
263                 }
264
265                 if(from->outkeylength != from->outcipher->key_len + from->outcipher->iv_len) {
266                         logger(LOG_ERR, "Node %s (%s) uses wrong keylength!", from->name,
267                                    from->hostname);
268                         return true;
269                 }
270         } else {
271                 from->outcipher = NULL;
272         }
273
274         from->outmaclength = maclength;
275
276         if(digest) {
277                 from->outdigest = EVP_get_digestbynid(digest);
278
279                 if(!from->outdigest) {
280                         logger(LOG_ERR, "Node %s (%s) uses unknown digest!", from->name,
281                                    from->hostname);
282                         return true;
283                 }
284
285                 if(from->outmaclength > from->outdigest->md_size || from->outmaclength < 0) {
286                         logger(LOG_ERR, "Node %s (%s) uses bogus MAC length!",
287                                    from->name, from->hostname);
288                         return true;
289                 }
290         } else {
291                 from->outdigest = NULL;
292         }
293
294         if(compression < 0 || compression > 11) {
295                 logger(LOG_ERR, "Node %s (%s) uses bogus compression level!", from->name, from->hostname);
296                 return true;
297         }
298         
299         from->outcompression = compression;
300
301         if(from->outcipher)
302                 if(!EVP_EncryptInit_ex(&from->outctx, from->outcipher, NULL, (unsigned char *)from->outkey, (unsigned char *)from->outkey + from->outcipher->key_len)) {
303                         logger(LOG_ERR, "Error during initialisation of key from %s (%s): %s",
304                                         from->name, from->hostname, ERR_error_string(ERR_get_error(), NULL));
305                         return true;
306                 }
307
308         from->status.validkey = true;
309         from->sent_seqno = 0;
310
311         if(*address && *port) {
312                 ifdebug(PROTOCOL) logger(LOG_DEBUG, "Using reflexive UDP address from %s: %s port %s", from->name, address, port);
313                 sockaddr_t sa = str2sockaddr(address, port);
314                 update_node_udp(from, &sa);
315         }
316
317         if(from->options & OPTION_PMTU_DISCOVERY && !from->mtuevent)
318                 send_mtu_probe(from);
319
320         return true;
321 }