Make use of the improved hex and base64 functions.
[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-2011 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 "splay_tree.h"
24 #include "cipher.h"
25 #include "connection.h"
26 #include "crypto.h"
27 #include "ecdh.h"
28 #include "logger.h"
29 #include "net.h"
30 #include "netutl.h"
31 #include "node.h"
32 #include "prf.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         splay_node_t *node;
41         connection_t *c;
42
43         send_request(broadcast, "%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, char *request) {
55         char name[MAX_STRING_SIZE];
56         node_t *n;
57
58         if(sscanf(request, "%*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(seen_request(request))
65                 return true;
66
67         n = lookup_node(name);
68
69         if(!n) {
70                 logger(LOG_ERR, "Got %s from %s (%s) origin %s which does not exist",
71                            "KEY_CHANGED", c->name, c->hostname, name);
72                 return true;
73         }
74
75         n->status.validkey = false;
76         n->last_req_key = 0;
77
78         /* Tell the others */
79
80         if(!tunnelserver)
81                 forward_request(c, request);
82
83         return true;
84 }
85
86 bool send_req_key(node_t *to) {
87         return send_request(to->nexthop->connection, "%d %s %s %d", REQ_KEY, myself->name, to->name, experimental ? 1 : 0);
88 }
89
90 bool req_key_h(connection_t *c, char *request) {
91         char from_name[MAX_STRING_SIZE];
92         char to_name[MAX_STRING_SIZE];
93         node_t *from, *to;
94         int kx_version = 0;
95
96         if(sscanf(request, "%*d " MAX_STRING " " MAX_STRING " %d", from_name, to_name, &kx_version) < 2) {
97                 logger(LOG_ERR, "Got bad %s from %s (%s)", "REQ_KEY", c->name,
98                            c->hostname);
99                 return false;
100         }
101
102         if(!check_id(from_name) || !check_id(to_name)) {
103                 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "REQ_KEY", c->name, c->hostname, "invalid name");
104                 return false;
105         }
106
107         from = lookup_node(from_name);
108
109         if(!from) {
110                 logger(LOG_ERR, "Got %s from %s (%s) origin %s which does not exist in our connection list",
111                            "REQ_KEY", c->name, c->hostname, from_name);
112                 return true;
113         }
114
115         to = lookup_node(to_name);
116
117         if(!to) {
118                 logger(LOG_ERR, "Got %s from %s (%s) destination %s which does not exist in our connection list",
119                            "REQ_KEY", c->name, c->hostname, to_name);
120                 return true;
121         }
122
123         /* Check if this key request is for us */
124
125         if(to == myself) {                      /* Yes, send our own key back */
126                 if(experimental && kx_version >= 1) {
127                         logger(LOG_DEBUG, "Got ECDH key request from %s", from->name);
128                         from->status.ecdh = true;
129                 }
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", request);
142         }
143
144         return true;
145 }
146
147 bool send_ans_key_ecdh(node_t *to) {
148         char key[ECDH_SIZE * 2 + 1];
149
150         ecdh_generate_public(&to->ecdh, key);
151
152         b64encode(key, key, ECDH_SIZE);
153
154         return send_request(to->nexthop->connection, "%d %s %s ECDH:%s %d %d %zu %d", ANS_KEY,
155                                                 myself->name, to->name, key,
156                                                 cipher_get_nid(&myself->incipher),
157                                                 digest_get_nid(&myself->indigest),
158                                                 digest_length(&myself->indigest),
159                                                 myself->incompression);
160 }
161
162 bool send_ans_key(node_t *to) {
163         if(experimental && to->status.ecdh)
164                 return send_ans_key_ecdh(to);
165
166         size_t keylen = cipher_keylength(&myself->incipher);
167         char key[keylen * 2 + 1];
168
169         cipher_open_by_nid(&to->incipher, cipher_get_nid(&myself->incipher));
170         digest_open_by_nid(&to->indigest, digest_get_nid(&myself->indigest), digest_length(&myself->indigest));
171         to->incompression = myself->incompression;
172
173         randomize(key, keylen);
174         cipher_set_key(&to->incipher, key, true);
175         digest_set_key(&to->indigest, key, keylen);
176
177         bin2hex(key, key, keylen);
178
179         // Reset sequence number and late packet window
180         mykeyused = true;
181         to->received_seqno = 0;
182         if(replaywin) memset(to->late, 0, replaywin);
183
184         return send_request(to->nexthop->connection, "%d %s %s %s %d %d %zu %d", ANS_KEY,
185                                                 myself->name, to->name, key,
186                                                 cipher_get_nid(&to->incipher),
187                                                 digest_get_nid(&to->indigest),
188                                                 digest_length(&to->indigest),
189                                                 to->incompression);
190 }
191
192 bool ans_key_h(connection_t *c, char *request) {
193         char from_name[MAX_STRING_SIZE];
194         char to_name[MAX_STRING_SIZE];
195         char key[MAX_STRING_SIZE];
196         char address[MAX_STRING_SIZE] = "";
197         char port[MAX_STRING_SIZE] = "";
198         int cipher, digest, maclength, compression, keylen;
199         node_t *from, *to;
200
201         if(sscanf(request, "%*d "MAX_STRING" "MAX_STRING" "MAX_STRING" %d %d %d %d "MAX_STRING" "MAX_STRING" %d",
202                 from_name, to_name, key, &cipher, &digest, &maclength,
203                 &compression, address, port) < 7) {
204                 logger(LOG_ERR, "Got bad %s from %s (%s)", "ANS_KEY", c->name,
205                            c->hostname);
206                 return false;
207         }
208
209         if(!check_id(from_name) || !check_id(to_name)) {
210                 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "ANS_KEY", c->name, c->hostname, "invalid name");
211                 return false;
212         }
213
214         from = lookup_node(from_name);
215
216         if(!from) {
217                 logger(LOG_ERR, "Got %s from %s (%s) origin %s which does not exist in our connection list",
218                            "ANS_KEY", c->name, c->hostname, from_name);
219                 return true;
220         }
221
222         to = lookup_node(to_name);
223
224         if(!to) {
225                 logger(LOG_ERR, "Got %s from %s (%s) destination %s which does not exist in our connection list",
226                            "ANS_KEY", c->name, c->hostname, to_name);
227                 return true;
228         }
229
230         /* Forward it if necessary */
231
232         if(to != myself) {
233                 if(tunnelserver)
234                         return true;
235
236                 if(!to->status.reachable) {
237                         logger(LOG_WARNING, "Got %s from %s (%s) destination %s which is not reachable",
238                                    "ANS_KEY", c->name, c->hostname, to_name);
239                         return true;
240                 }
241
242                 if(!*address && from->address.sa.sa_family != AF_UNSPEC) {
243                         char *address, *port;
244                         ifdebug(PROTOCOL) logger(LOG_DEBUG, "Appending reflexive UDP address to ANS_KEY from %s to %s", from->name, to->name);
245                         sockaddr2str(&from->address, &address, &port);
246                         send_request(to->nexthop->connection, "%s %s %s", request, address, port);
247                         free(address);
248                         free(port);
249                         return true;
250                 }
251
252                 return send_request(to->nexthop->connection, "%s", request);
253         }
254
255         /* Check and lookup cipher and digest algorithms */
256
257         if(!cipher_open_by_nid(&from->outcipher, cipher)) {
258                 logger(LOG_ERR, "Node %s (%s) uses unknown cipher!", from->name, from->hostname);
259                 return false;
260         }
261
262         if(!digest_open_by_nid(&from->outdigest, digest, maclength)) {
263                 logger(LOG_ERR, "Node %s (%s) uses unknown digest!", from->name, from->hostname);
264                 return false;
265         }
266
267         if(maclength != digest_length(&from->outdigest)) {
268                 logger(LOG_ERR, "Node %s (%s) uses bogus MAC length!", from->name, from->hostname);
269                 return false;
270         }
271
272         if(compression < 0 || compression > 11) {
273                 logger(LOG_ERR, "Node %s (%s) uses bogus compression level!", from->name, from->hostname);
274                 return true;
275         }
276
277         from->outcompression = compression;
278
279         /* ECDH or old-style key exchange? */
280         
281         if(experimental && !strncmp(key, "ECDH:", 5)) {
282                 int keylen = b64decode(key + 5, key + 5, sizeof key - 5);
283
284                 if(keylen != ECDH_SIZE) {
285                         logger(LOG_ERR, "Node %s (%s) uses wrong keylength!", from->name, from->hostname);
286                         return false;
287                 }
288
289                 if(ECDH_SHARED_SIZE < cipher_keylength(&from->outcipher)) {
290                         logger(LOG_ERR, "ECDH key too short for cipher of %s!", from->name);
291                         return false;
292                 }
293
294                 if(!from->ecdh) {
295                         from->status.ecdh = true;
296                         if(!send_ans_key(from))
297                                 return false;
298                 }
299
300                 char shared[ECDH_SHARED_SIZE * 2 + 1];
301
302                 if(!ecdh_compute_shared(&from->ecdh, key + 5, shared))
303                         return false;
304
305                 /* Update our crypto end */
306
307                 size_t mykeylen = cipher_keylength(&myself->incipher);
308                 size_t hiskeylen = cipher_keylength(&from->outcipher);
309
310                 char *mykey;
311                 char *hiskey;
312                 char *seed;
313                 
314                 if(strcmp(myself->name, from->name) < 0) {
315                         mykey = key;
316                         hiskey = key + mykeylen * 2;
317                         xasprintf(&seed, "tinc UDP key expansion %s %s", myself->name, from->name);
318                 } else {
319                         mykey = key + hiskeylen * 2;
320                         hiskey = key;
321                         xasprintf(&seed, "tinc UDP key expansion %s %s", from->name, myself->name);
322                 }
323
324                 if(!prf(shared, ECDH_SHARED_SIZE, seed, strlen(seed), key, hiskeylen * 2 + mykeylen * 2))
325                         return false;
326
327                 free(seed);
328
329                 cipher_open_by_nid(&from->incipher, cipher_get_nid(&myself->incipher));
330                 digest_open_by_nid(&from->indigest, digest_get_nid(&myself->indigest), digest_length(&myself->indigest));
331                 from->incompression = myself->incompression;
332
333                 cipher_set_key(&from->incipher, mykey, true);
334                 digest_set_key(&from->indigest, mykey + mykeylen, mykeylen);
335
336                 cipher_set_key(&from->outcipher, hiskey, false);
337                 digest_set_key(&from->outdigest, hiskey + hiskeylen, hiskeylen);
338
339                 // Reset sequence number and late packet window
340                 mykeyused = true;
341                 from->received_seqno = 0;
342                 if(replaywin)
343                         memset(from->late, 0, replaywin);
344
345                 if(strcmp(myself->name, from->name) < 0)
346                         memmove(key, key + mykeylen * 2, hiskeylen * 2);
347         } else {
348                 keylen = hex2bin(key, key, sizeof key);
349
350                 if(keylen != cipher_keylength(&from->outcipher)) {
351                         logger(LOG_ERR, "Node %s (%s) uses wrong keylength!", from->name, from->hostname);
352                         return false;
353                 }
354
355                 /* Update our copy of the origin's packet key */
356
357                 cipher_set_key(&from->outcipher, key, false);
358                 digest_set_key(&from->outdigest, key, keylen);
359         }
360
361         from->status.validkey = true;
362         from->sent_seqno = 0;
363
364         if(*address && *port) {
365                 ifdebug(PROTOCOL) logger(LOG_DEBUG, "Using reflexive UDP address from %s: %s port %s", from->name, address, port);
366                 sockaddr_t sa = str2sockaddr(address, port);
367                 update_node_udp(from, &sa);
368         }
369
370         if(from->options & OPTION_PMTU_DISCOVERY)
371                 send_mtu_probe(from);
372
373         return true;
374 }