Fix whitespace.
[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 "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                 char label[25 + strlen(myself->name) + strlen(to->name)];
106                 snprintf(label, sizeof label, "tinc UDP key expansion %s %s", myself->name, to->name);
107                 sptps_stop(&to->sptps);
108                 to->status.validkey = false;
109                 to->status.waitingforkey = true;
110                 to->last_req_key = time(NULL);
111                 to->incompression = myself->incompression;
112                 return sptps_start(&to->sptps, to, true, true, myself->connection->ecdsa, to->ecdsa, label, sizeof label, send_initial_sptps_data, receive_sptps_record);
113         }
114
115         return send_request(to->nexthop->connection, "%d %s %s", REQ_KEY, myself->name, to->name);
116 }
117
118 /* REQ_KEY is overloaded to allow arbitrary requests to be routed between two nodes. */
119
120 static bool req_key_ext_h(connection_t *c, const char *request, node_t *from, int reqno) {
121         switch(reqno) {
122                 case REQ_PUBKEY: {
123                         char *pubkey = ecdsa_get_base64_public_key(&myself->connection->ecdsa);
124                         send_request(from->nexthop->connection, "%d %s %s %d %s", REQ_KEY, myself->name, from->name, ANS_PUBKEY, pubkey);
125                         free(pubkey);
126                         return true;
127                 }
128
129                 case ANS_PUBKEY: {
130                         if(node_read_ecdsa_public_key(from)) {
131                                 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got ANS_PUBKEY from %s (%s) even though we already have his pubkey", from->name, from->hostname);
132                                 return true;
133                         }
134
135                         char pubkey[MAX_STRING_SIZE];
136                         if(sscanf(request, "%*d %*s %*s %*d " MAX_STRING, pubkey) != 1 || !ecdsa_set_base64_public_key(&from->ecdsa, pubkey)) {
137                                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "ANS_PUBKEY", from->name, from->hostname, "invalid pubkey");
138                                 return true;
139                         }
140
141                         logger(DEBUG_PROTOCOL, LOG_INFO, "Learned ECDSA public key from %s (%s)", from->name, from->hostname);
142                         append_config_file(from->name, "ECDSAPublicKey", pubkey);
143                         return true;
144                 }
145
146                 case REQ_KEY: {
147                         if(!node_read_ecdsa_public_key(from)) {
148                                 logger(DEBUG_PROTOCOL, LOG_DEBUG, "No ECDSA key known for %s (%s)", from->name, from->hostname);
149                                 send_request(from->nexthop->connection, "%d %s %s %d", REQ_KEY, myself->name, from->name, REQ_PUBKEY);
150                                 return true;
151                         }
152                 }
153
154                 case REQ_SPTPS: {
155                         char buf[MAX_STRING_SIZE];
156                         if(sscanf(request, "%*d %*s %*s %*d " MAX_STRING, buf) != 1) {
157                                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "REQ_KEY", from->name, from->hostname, "invalid SPTPS data");
158                                 return true;
159                         }
160                         int len = b64decode(buf, buf, strlen(buf));
161
162
163                         char label[25 + strlen(from->name) + strlen(myself->name)];
164                         snprintf(label, sizeof label, "tinc UDP key expansion %s %s", from->name, myself->name);
165                         sptps_stop(&from->sptps);
166                         from->status.validkey = false;
167                         from->status.waitingforkey = true;
168                         from->last_req_key = time(NULL);
169                         sptps_start(&from->sptps, from, false, true, myself->connection->ecdsa, from->ecdsa, label, sizeof label, send_sptps_data, receive_sptps_record);
170                         sptps_receive_data(&from->sptps, buf, len);
171                         return true;
172                 }
173
174                 case REQ_PACKET: {
175                         if(!from->status.validkey) {
176                                 logger(DEBUG_PROTOCOL, LOG_ERR, "Got REQ_PACKET from %s (%s) but we don't have a valid key yet", from->name, from->hostname);
177                                 return true;
178                         }
179
180                         char buf[MAX_STRING_SIZE];
181                         if(sscanf(request, "%*d %*s %*s %*d " MAX_STRING, buf) != 1) {
182                                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "REQ_KEY", from->name, from->hostname, "invalid SPTPS data");
183                                 return true;
184                         }
185                         int len = b64decode(buf, buf, strlen(buf));
186                         sptps_receive_data(&from->sptps, buf, len);
187                         return true;
188                 }
189
190                 default:
191                         logger(DEBUG_ALWAYS, LOG_ERR, "Unknown extended REQ_KEY request from %s (%s): %s", from->name, from->hostname, request);
192                         return true;
193         }
194 }
195
196 bool req_key_h(connection_t *c, const char *request) {
197         char from_name[MAX_STRING_SIZE];
198         char to_name[MAX_STRING_SIZE];
199         node_t *from, *to;
200         int reqno = 0;
201
202         if(sscanf(request, "%*d " MAX_STRING " " MAX_STRING " %d", from_name, to_name, &reqno) < 2) {
203                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "REQ_KEY", c->name,
204                            c->hostname);
205                 return false;
206         }
207
208         if(!check_id(from_name) || !check_id(to_name)) {
209                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "REQ_KEY", c->name, c->hostname, "invalid name");
210                 return false;
211         }
212
213         from = lookup_node(from_name);
214
215         if(!from) {
216                 logger(DEBUG_ALWAYS, LOG_ERR, "Got %s from %s (%s) origin %s which does not exist in our connection list",
217                            "REQ_KEY", c->name, c->hostname, from_name);
218                 return true;
219         }
220
221         to = lookup_node(to_name);
222
223         if(!to) {
224                 logger(DEBUG_ALWAYS, LOG_ERR, "Got %s from %s (%s) destination %s which does not exist in our connection list",
225                            "REQ_KEY", c->name, c->hostname, to_name);
226                 return true;
227         }
228
229         /* Check if this key request is for us */
230
231         if(to == myself) {                      /* Yes */
232                 /* Is this an extended REQ_KEY message? */
233                 if(experimental && reqno)
234                         return req_key_ext_h(c, request, from, reqno);
235
236                 /* No, just send our key back */
237                 send_ans_key(from);
238         } else {
239                 if(tunnelserver)
240                         return true;
241
242                 if(!to->status.reachable) {
243                         logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) destination %s which is not reachable",
244                                 "REQ_KEY", c->name, c->hostname, to_name);
245                         return true;
246                 }
247
248                 send_request(to->nexthop->connection, "%s", request);
249         }
250
251         return true;
252 }
253
254 bool send_ans_key(node_t *to) {
255         if(to->status.sptps)
256                 abort();
257
258         size_t keylen = cipher_keylength(&myself->incipher);
259         char key[keylen * 2 + 1];
260
261         cipher_close(&to->incipher);
262         digest_close(&to->indigest);
263
264         cipher_open_by_nid(&to->incipher, cipher_get_nid(&myself->incipher));
265         digest_open_by_nid(&to->indigest, digest_get_nid(&myself->indigest), digest_length(&myself->indigest));
266         to->incompression = myself->incompression;
267
268         randomize(key, keylen);
269         cipher_set_key(&to->incipher, key, false);
270         digest_set_key(&to->indigest, key, keylen);
271
272         bin2hex(key, key, keylen);
273
274         // Reset sequence number and late packet window
275         mykeyused = true;
276         to->received_seqno = 0;
277         if(replaywin) memset(to->late, 0, replaywin);
278
279         return send_request(to->nexthop->connection, "%d %s %s %s %d %d %d %d", ANS_KEY,
280                                                 myself->name, to->name, key,
281                                                 cipher_get_nid(&to->incipher),
282                                                 digest_get_nid(&to->indigest),
283                                                 (int)digest_length(&to->indigest),
284                                                 to->incompression);
285 }
286
287 bool ans_key_h(connection_t *c, const char *request) {
288         char from_name[MAX_STRING_SIZE];
289         char to_name[MAX_STRING_SIZE];
290         char key[MAX_STRING_SIZE];
291         char address[MAX_STRING_SIZE] = "";
292         char port[MAX_STRING_SIZE] = "";
293         int cipher, digest, maclength, compression, keylen;
294         node_t *from, *to;
295
296         if(sscanf(request, "%*d "MAX_STRING" "MAX_STRING" "MAX_STRING" %d %d %d %d "MAX_STRING" "MAX_STRING,
297                 from_name, to_name, key, &cipher, &digest, &maclength,
298                 &compression, address, port) < 7) {
299                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ANS_KEY", c->name,
300                            c->hostname);
301                 return false;
302         }
303
304         if(!check_id(from_name) || !check_id(to_name)) {
305                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "ANS_KEY", c->name, c->hostname, "invalid name");
306                 return false;
307         }
308
309         from = lookup_node(from_name);
310
311         if(!from) {
312                 logger(DEBUG_ALWAYS, LOG_ERR, "Got %s from %s (%s) origin %s which does not exist in our connection list",
313                            "ANS_KEY", c->name, c->hostname, from_name);
314                 return true;
315         }
316
317         to = lookup_node(to_name);
318
319         if(!to) {
320                 logger(DEBUG_ALWAYS, LOG_ERR, "Got %s from %s (%s) destination %s which does not exist in our connection list",
321                            "ANS_KEY", c->name, c->hostname, to_name);
322                 return true;
323         }
324
325         /* Forward it if necessary */
326
327         if(to != myself) {
328                 if(tunnelserver)
329                         return true;
330
331                 if(!to->status.reachable) {
332                         logger(DEBUG_ALWAYS, LOG_WARNING, "Got %s from %s (%s) destination %s which is not reachable",
333                                    "ANS_KEY", c->name, c->hostname, to_name);
334                         return true;
335                 }
336
337                 if(!*address && from->address.sa.sa_family != AF_UNSPEC) {
338                         char *address, *port;
339                         logger(DEBUG_PROTOCOL, LOG_DEBUG, "Appending reflexive UDP address to ANS_KEY from %s to %s", from->name, to->name);
340                         sockaddr2str(&from->address, &address, &port);
341                         send_request(to->nexthop->connection, "%s %s %s", request, address, port);
342                         free(address);
343                         free(port);
344                         return true;
345                 }
346
347                 return send_request(to->nexthop->connection, "%s", request);
348         }
349
350         /* Don't use key material until every check has passed. */
351         cipher_close(&from->outcipher);
352         digest_close(&from->outdigest);
353         from->status.validkey = false;
354
355         if(compression < 0 || compression > 11) {
356                 logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses bogus compression level!", from->name, from->hostname);
357                 return true;
358         }
359
360         from->outcompression = compression;
361
362         /* SPTPS or old-style key exchange? */
363
364         if(from->status.sptps) {
365                 char buf[strlen(key)];
366                 int len = b64decode(key, buf, strlen(key));
367
368                 if(!sptps_receive_data(&from->sptps, buf, len))
369                         logger(DEBUG_ALWAYS, LOG_ERR, "Error processing SPTPS data from %s (%s)", from->name, from->hostname);
370
371                 if(from->status.validkey) {
372                         if(*address && *port) {
373                                 logger(DEBUG_PROTOCOL, LOG_DEBUG, "Using reflexive UDP address from %s: %s port %s", from->name, address, port);
374                                 sockaddr_t sa = str2sockaddr(address, port);
375                                 update_node_udp(from, &sa);
376                         }
377
378                         if(from->options & OPTION_PMTU_DISCOVERY)
379                                 send_mtu_probe(from);
380                 }
381
382                 return true;
383         }
384
385         /* Check and lookup cipher and digest algorithms */
386
387         if(!cipher_open_by_nid(&from->outcipher, cipher)) {
388                 logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses unknown cipher!", from->name, from->hostname);
389                 return false;
390         }
391
392         if(!digest_open_by_nid(&from->outdigest, digest, maclength)) {
393                 logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses unknown digest!", from->name, from->hostname);
394                 return false;
395         }
396
397         if(maclength != digest_length(&from->outdigest)) {
398                 logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses bogus MAC length!", from->name, from->hostname);
399                 return false;
400         }
401
402         /* Process key */
403
404         keylen = hex2bin(key, key, sizeof key);
405
406         if(keylen != cipher_keylength(&from->outcipher)) {
407                 logger(DEBUG_ALWAYS, LOG_ERR, "Node %s (%s) uses wrong keylength!", from->name, from->hostname);
408                 return true;
409         }
410
411         /* Update our copy of the origin's packet key */
412
413         cipher_set_key(&from->outcipher, key, true);
414         digest_set_key(&from->outdigest, key, keylen);
415
416         from->status.validkey = true;
417         from->sent_seqno = 0;
418
419         if(*address && *port) {
420                 logger(DEBUG_PROTOCOL, LOG_DEBUG, "Using reflexive UDP address from %s: %s port %s", from->name, address, port);
421                 sockaddr_t sa = str2sockaddr(address, port);
422                 update_node_udp(from, &sa);
423         }
424
425         if(from->options & OPTION_PMTU_DISCOVERY)
426                 send_mtu_probe(from);
427
428         return true;
429 }