Use conditional compilation for cryptographic 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-2013 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 "cipher.h"
24 #include "connection.h"
25 #include "crypto.h"
26 #include "logger.h"
27 #include "net.h"
28 #include "netutl.h"
29 #include "node.h"
30 #include "prf.h"
31 #include "protocol.h"
32 #include "sptps.h"
33 #include "utils.h"
34 #include "xalloc.h"
35
36 static bool mykeyused = false;
37
38 void send_key_changed(void) {
39         send_request(everyone, "%d %x %s", KEY_CHANGED, rand(), myself->name);
40
41         /* Immediately send new keys to directly connected nodes to keep UDP mappings alive */
42
43         for list_each(connection_t, c, connection_list)
44                 if(c->status.active && c->node && c->node->status.reachable && !c->node->status.sptps)
45                         send_ans_key(c->node);
46
47         /* Force key exchange for connections using SPTPS */
48
49         if(experimental) {
50                 for splay_each(node_t, n, node_tree)
51                         if(n->status.reachable && n->status.validkey && n->status.sptps)
52                                 sptps_force_kex(&n->sptps);
53         }
54 }
55
56 bool key_changed_h(connection_t *c, const char *request) {
57         char name[MAX_STRING_SIZE];
58         node_t *n;
59
60         if(sscanf(request, "%*d %*x " MAX_STRING, name) != 1) {
61                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "KEY_CHANGED",
62                            c->name, c->hostname);
63                 return false;
64         }
65
66         if(seen_request(request))
67                 return true;
68
69         n = lookup_node(name);
70
71         if(!n) {
72                 logger(DEBUG_ALWAYS, LOG_ERR, "Got %s from %s (%s) origin %s which does not exist",
73                            "KEY_CHANGED", c->name, c->hostname, name);
74                 return true;
75         }
76
77         if(!n->status.sptps) {
78                 n->status.validkey = false;
79                 n->last_req_key = 0;
80         }
81
82         /* Tell the others */
83
84         if(!tunnelserver)
85                 forward_request(c, request);
86
87         return true;
88 }
89
90 static bool send_initial_sptps_data(void *handle, uint8_t type, const char *data, size_t len) {
91         node_t *to = handle;
92         to->sptps.send_data = send_sptps_data;
93         char buf[len * 4 / 3 + 5];
94         b64encode(data, buf, len);
95         return send_request(to->nexthop->connection, "%d %s %s %d %s", REQ_KEY, myself->name, to->name, REQ_KEY, buf);
96 }
97
98 bool send_req_key(node_t *to) {
99         if(to->status.sptps) {
100                 if(!node_read_ecdsa_public_key(to)) {
101                         logger(DEBUG_PROTOCOL, LOG_DEBUG, "No ECDSA key known for %s (%s)", to->name, to->hostname);
102                         send_request(to->nexthop->connection, "%d %s %s %d", REQ_KEY, myself->name, to->name, REQ_PUBKEY);
103                         return true;
104                 }
105
106                 if(to->sptps.label)
107                         logger(DEBUG_ALWAYS, LOG_DEBUG, "send_req_key(%s) called while sptps->label != NULL!", to->name);
108
109                 char label[25 + strlen(myself->name) + strlen(to->name)];
110                 snprintf(label, sizeof label, "tinc UDP key expansion %s %s", myself->name, to->name);
111                 sptps_stop(&to->sptps);
112                 to->status.validkey = false;
113                 to->status.waitingforkey = true;
114                 to->last_req_key = now.tv_sec;
115                 to->incompression = myself->incompression;
116                 return sptps_start(&to->sptps, to, true, true, myself->connection->ecdsa, to->ecdsa, label, sizeof label, send_initial_sptps_data, receive_sptps_record);
117         }
118
119         return send_request(to->nexthop->connection, "%d %s %s", REQ_KEY, myself->name, to->name);
120 }
121
122 /* REQ_KEY is overloaded to allow arbitrary requests to be routed between two nodes. */
123
124 static bool req_key_ext_h(connection_t *c, const char *request, node_t *from, int reqno) {
125         switch(reqno) {
126                 case REQ_PUBKEY: {
127                         char *pubkey = ecdsa_get_base64_public_key(myself->connection->ecdsa);
128                         send_request(from->nexthop->connection, "%d %s %s %d %s", REQ_KEY, myself->name, from->name, ANS_PUBKEY, pubkey);
129                         free(pubkey);
130                         return true;
131                 }
132
133                 case ANS_PUBKEY: {
134                         if(node_read_ecdsa_public_key(from)) {
135                                 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got ANS_PUBKEY from %s (%s) even though we already have his pubkey", from->name, from->hostname);
136                                 return true;
137                         }
138
139                         char pubkey[MAX_STRING_SIZE];
140                         if(sscanf(request, "%*d %*s %*s %*d " MAX_STRING, pubkey) != 1 || !(from->ecdsa = ecdsa_set_base64_public_key(pubkey))) {
141                                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "ANS_PUBKEY", from->name, from->hostname, "invalid pubkey");
142                                 return true;
143                         }
144
145                         logger(DEBUG_PROTOCOL, LOG_INFO, "Learned ECDSA public key from %s (%s)", from->name, from->hostname);
146                         append_config_file(from->name, "ECDSAPublicKey", pubkey);
147                         return true;
148                 }
149
150                 case REQ_KEY: {
151                         if(!node_read_ecdsa_public_key(from)) {
152                                 logger(DEBUG_PROTOCOL, LOG_DEBUG, "No ECDSA key known for %s (%s)", from->name, from->hostname);
153                                 send_request(from->nexthop->connection, "%d %s %s %d", REQ_KEY, myself->name, from->name, REQ_PUBKEY);
154                                 return true;
155                         }
156
157                         if(from->sptps.label)
158                                 logger(DEBUG_ALWAYS, LOG_DEBUG, "Got REQ_KEY from %s while we already started a SPTPS session!", from->name);
159
160                         char buf[MAX_STRING_SIZE];
161                         if(sscanf(request, "%*d %*s %*s %*d " MAX_STRING, buf) != 1) {
162                                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "REQ_SPTPS_START", from->name, from->hostname, "invalid SPTPS data");
163                                 return true;
164                         }
165                         int len = b64decode(buf, buf, strlen(buf));
166
167                         char label[25 + strlen(from->name) + strlen(myself->name)];
168                         snprintf(label, sizeof label, "tinc UDP key expansion %s %s", from->name, myself->name);
169                         sptps_stop(&from->sptps);
170                         from->status.validkey = false;
171                         from->status.waitingforkey = true;
172                         from->last_req_key = now.tv_sec;
173                         sptps_start(&from->sptps, from, false, true, myself->connection->ecdsa, from->ecdsa, label, sizeof label, send_sptps_data, receive_sptps_record);
174                         sptps_receive_data(&from->sptps, buf, len);
175                         return true;
176                 }
177
178                 case REQ_SPTPS: {
179                         if(!from->status.validkey) {
180                                 logger(DEBUG_PROTOCOL, LOG_ERR, "Got REQ_SPTPS from %s (%s) but we don't have a valid key yet", from->name, from->hostname);
181                                 return true;
182                         }
183
184                         char buf[MAX_STRING_SIZE];
185                         if(sscanf(request, "%*d %*s %*s %*d " MAX_STRING, buf) != 1) {
186                                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "REQ_SPTPS", from->name, from->hostname, "invalid SPTPS data");
187                                 return true;
188                         }
189                         int len = b64decode(buf, buf, strlen(buf));
190                         sptps_receive_data(&from->sptps, buf, len);
191                         return true;
192                 }
193
194                 default:
195                         logger(DEBUG_ALWAYS, LOG_ERR, "Unknown extended REQ_KEY request from %s (%s): %s", from->name, from->hostname, request);
196                         return true;
197         }
198 }
199
200 bool req_key_h(connection_t *c, const char *request) {
201         char from_name[MAX_STRING_SIZE];
202         char to_name[MAX_STRING_SIZE];
203         node_t *from, *to;
204         int reqno = 0;
205
206         if(sscanf(request, "%*d " MAX_STRING " " MAX_STRING " %d", from_name, to_name, &reqno) < 2) {
207                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "REQ_KEY", c->name,
208                            c->hostname);
209                 return false;
210         }
211
212         if(!check_id(from_name) || !check_id(to_name)) {
213                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "REQ_KEY", c->name, c->hostname, "invalid name");
214                 return false;
215         }
216
217         from = lookup_node(from_name);
218
219         if(!from) {
220                 logger(DEBUG_ALWAYS, LOG_ERR, "Got %s from %s (%s) origin %s which does not exist in our connection list",
221                            "REQ_KEY", c->name, c->hostname, from_name);
222                 return true;
223         }
224
225         to = lookup_node(to_name);
226
227         if(!to) {
228                 logger(DEBUG_ALWAYS, LOG_ERR, "Got %s from %s (%s) destination %s which does not exist in our connection list",
229                            "REQ_KEY", c->name, c->hostname, to_name);
230                 return true;
231         }
232
233         /* Check if this key request is for us */
234
235         if(to == myself) {                      /* Yes */
236                 /* Is this an extended REQ_KEY message? */
237                 if(experimental && reqno)
238                         return req_key_ext_h(c, request, from, reqno);
239
240                 /* No, just send our key back */
241                 send_ans_key(from);
242         } else {
243                 if(tunnelserver)
244                         return true;
245
246                 if(!to->status.reachable) {
247                         logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) destination %s which is not reachable",
248                                 "REQ_KEY", c->name, c->hostname, to_name);
249                         return true;
250                 }
251
252                 send_request(to->nexthop->connection, "%s", request);
253         }
254
255         return true;
256 }
257
258 bool send_ans_key(node_t *to) {
259         if(to->status.sptps)
260                 abort();
261
262         size_t keylen = cipher_keylength(myself->incipher);
263         char key[keylen * 2 + 1];
264
265         cipher_close(to->incipher);
266         digest_close(to->indigest);
267
268         to->incipher = cipher_open_by_nid(cipher_get_nid(myself->incipher));
269         to->indigest = digest_open_by_nid(digest_get_nid(myself->indigest), digest_length(myself->indigest));
270         to->incompression = myself->incompression;
271
272         if(!to->incipher || !to->indigest)
273                 abort();
274
275         randomize(key, keylen);
276         cipher_set_key(to->incipher, key, false);
277         digest_set_key(to->indigest, key, keylen);
278
279         bin2hex(key, key, keylen);
280
281         // Reset sequence number and late packet window
282         mykeyused = true;
283         to->received_seqno = 0;
284         to->received = 0;
285         if(replaywin) memset(to->late, 0, replaywin);
286
287         return send_request(to->nexthop->connection, "%d %s %s %s %d %d %d %d", ANS_KEY,
288                                                 myself->name, to->name, key,
289                                                 cipher_get_nid(to->incipher),
290                                                 digest_get_nid(to->indigest),
291                                                 (int)digest_length(to->indigest),
292                                                 to->incompression);
293 }
294
295 bool ans_key_h(connection_t *c, const char *request) {
296         char from_name[MAX_STRING_SIZE];
297         char to_name[MAX_STRING_SIZE];
298         char key[MAX_STRING_SIZE];
299         char address[MAX_STRING_SIZE] = "";
300         char port[MAX_STRING_SIZE] = "";
301         int cipher, digest, maclength, compression, keylen;
302         node_t *from, *to;
303
304         if(sscanf(request, "%*d "MAX_STRING" "MAX_STRING" "MAX_STRING" %d %d %d %d "MAX_STRING" "MAX_STRING,
305                 from_name, to_name, key, &cipher, &digest, &maclength,
306                 &compression, address, port) < 7) {
307                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ANS_KEY", c->name,
308                            c->hostname);
309                 return false;
310         }
311
312         if(!check_id(from_name) || !check_id(to_name)) {
313                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "ANS_KEY", c->name, c->hostname, "invalid name");
314                 return false;
315         }
316
317         from = lookup_node(from_name);
318
319         if(!from) {
320                 logger(DEBUG_ALWAYS, LOG_ERR, "Got %s from %s (%s) origin %s which does not exist in our connection list",
321                            "ANS_KEY", c->name, c->hostname, from_name);
322                 return true;
323         }
324
325         to = lookup_node(to_name);
326
327         if(!to) {
328                 logger(DEBUG_ALWAYS, LOG_ERR, "Got %s from %s (%s) destination %s which does not exist in our connection list",
329                            "ANS_KEY", c->name, c->hostname, to_name);
330                 return true;
331         }
332
333         /* Forward it if necessary */
334
335         if(to != myself) {
336                 if(tunnelserver)
337                         return true;
338
339                 if(!to->status.reachable) {
340                         logger(DEBUG_ALWAYS, LOG_WARNING, "Got %s from %s (%s) destination %s which is not reachable",
341                                    "ANS_KEY", c->name, c->hostname, to_name);
342                         return true;
343                 }
344
345                 if(!*address && from->address.sa.sa_family != AF_UNSPEC) {
346                         char *address, *port;
347                         logger(DEBUG_PROTOCOL, LOG_DEBUG, "Appending reflexive UDP address to ANS_KEY from %s to %s", from->name, to->name);
348                         sockaddr2str(&from->address, &address, &port);
349                         send_request(to->nexthop->connection, "%s %s %s", request, address, port);
350                         free(address);
351                         free(port);
352                         return true;
353                 }
354
355                 return send_request(to->nexthop->connection, "%s", request);
356         }
357
358         /* Don't use key material until every check has passed. */
359         cipher_close(from->outcipher);
360         digest_close(from->outdigest);
361         from->status.validkey = false;
362
363         if(compression < 0 || compression > 11) {
364                 logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses bogus compression level!", from->name, from->hostname);
365                 return true;
366         }
367
368         from->outcompression = compression;
369
370         /* SPTPS or old-style key exchange? */
371
372         if(from->status.sptps) {
373                 char buf[strlen(key)];
374                 int len = b64decode(key, buf, strlen(key));
375
376                 if(!sptps_receive_data(&from->sptps, buf, len))
377                         logger(DEBUG_ALWAYS, LOG_ERR, "Error processing SPTPS data from %s (%s)", from->name, from->hostname);
378
379                 if(from->status.validkey) {
380                         if(*address && *port) {
381                                 logger(DEBUG_PROTOCOL, LOG_DEBUG, "Using reflexive UDP address from %s: %s port %s", from->name, address, port);
382                                 sockaddr_t sa = str2sockaddr(address, port);
383                                 update_node_udp(from, &sa);
384                         }
385
386                         if(from->options & OPTION_PMTU_DISCOVERY)
387                                 send_mtu_probe(from);
388                 }
389
390                 return true;
391         }
392
393         /* Check and lookup cipher and digest algorithms */
394
395         if(!(from->outcipher = cipher_open_by_nid(cipher))) {
396                 logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses unknown cipher!", from->name, from->hostname);
397                 return false;
398         }
399
400         if(!(from->outdigest = digest_open_by_nid(digest, maclength))) {
401                 logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses unknown digest!", from->name, from->hostname);
402                 return false;
403         }
404
405         if(maclength != digest_length(from->outdigest)) {
406                 logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses bogus MAC length!", from->name, from->hostname);
407                 return false;
408         }
409
410         /* Process key */
411
412         keylen = hex2bin(key, key, sizeof key);
413
414         if(keylen != cipher_keylength(from->outcipher)) {
415                 logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses wrong keylength!", from->name, from->hostname);
416                 return true;
417         }
418
419         /* Update our copy of the origin's packet key */
420
421         cipher_set_key(from->outcipher, key, true);
422         digest_set_key(from->outdigest, key, keylen);
423
424         from->status.validkey = true;
425         from->sent_seqno = 0;
426
427         if(*address && *port) {
428                 logger(DEBUG_PROTOCOL, LOG_DEBUG, "Using reflexive UDP address from %s: %s port %s", from->name, address, port);
429                 sockaddr_t sa = str2sockaddr(address, port);
430                 update_node_udp(from, &sa);
431         }
432
433         if(from->options & OPTION_PMTU_DISCOVERY)
434                 send_mtu_probe(from);
435
436         return true;
437 }