Rename ECDSA to Ed25519.
[tinc] / src / sptps.c
1 /*
2     sptps.c -- Simple Peer-to-Peer Security
3     Copyright (C) 2011-2013 Guus Sliepen <guus@tinc-vpn.org>,
4                   2010      Brandon L. Black <blblack@gmail.com>
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 "chacha-poly1305/chacha-poly1305.h"
24 #include "crypto.h"
25 #include "ecdh.h"
26 #include "ecdsa.h"
27 #include "logger.h"
28 #include "prf.h"
29 #include "sptps.h"
30
31 unsigned int sptps_replaywin = 16;
32
33 /*
34    Nonce MUST be exchanged first (done)
35    Signatures MUST be done over both nonces, to guarantee the signature is fresh
36    Otherwise: if ECDHE key of one side is compromised, it can be reused!
37
38    Add explicit tag to beginning of structure to distinguish the client and server when signing. (done)
39
40    Sign all handshake messages up to ECDHE kex with long-term public keys. (done)
41
42    HMACed KEX finished message to prevent downgrade attacks and prove you have the right key material (done by virtue of Ed25519 over the whole ECDHE exchange?)
43
44    Explicit close message needs to be added.
45
46    Maybe do add some alert messages to give helpful error messages? Not more than TLS sends.
47
48    Use counter mode instead of OFB. (done)
49
50    Make sure ECC operations are fixed time (aka prevent side-channel attacks).
51 */
52
53 void sptps_log_quiet(sptps_t *s, int s_errno, const char *format, va_list ap) {
54 }
55
56 void sptps_log_stderr(sptps_t *s, int s_errno, const char *format, va_list ap) {
57         vfprintf(stderr, format, ap);
58         fputc('\n', stderr);
59 }
60
61 void (*sptps_log)(sptps_t *s, int s_errno, const char *format, va_list ap) = sptps_log_stderr;
62
63 // Log an error message.
64 static bool error(sptps_t *s, int s_errno, const char *format, ...) {
65         if(format) {
66                 va_list ap;
67                 va_start(ap, format);
68                 sptps_log(s, s_errno, format, ap);
69                 va_end(ap);
70         }
71
72         errno = s_errno;
73         return false;
74 }
75
76 static void warning(sptps_t *s, const char *format, ...) {
77         va_list ap;
78         va_start(ap, format);
79         sptps_log(s, 0, format, ap);
80         va_end(ap);
81 }
82
83 // Send a record (datagram version, accepts all record types, handles encryption and authentication).
84 static bool send_record_priv_datagram(sptps_t *s, uint8_t type, const char *data, uint16_t len) {
85         char buffer[len + 21UL];
86
87         // Create header with sequence number, length and record type
88         uint32_t seqno = s->outseqno++;
89         uint32_t netseqno = ntohl(seqno);
90
91         memcpy(buffer, &netseqno, 4);
92         buffer[4] = type;
93         memcpy(buffer + 5, data, len);
94
95         if(s->outstate) {
96                 // If first handshake has finished, encrypt and HMAC
97                 chacha_poly1305_encrypt(s->outcipher, seqno, buffer + 4, len + 1, buffer + 4, NULL);
98                 return s->send_data(s->handle, type, buffer, len + 21UL);
99         } else {
100                 // Otherwise send as plaintext
101                 return s->send_data(s->handle, type, buffer, len + 5UL);
102         }
103 }
104 // Send a record (private version, accepts all record types, handles encryption and authentication).
105 static bool send_record_priv(sptps_t *s, uint8_t type, const char *data, uint16_t len) {
106         if(s->datagram)
107                 return send_record_priv_datagram(s, type, data, len);
108
109         char buffer[len + 19UL];
110
111         // Create header with sequence number, length and record type
112         uint32_t seqno = s->outseqno++;
113         uint16_t netlen = htons(len);
114
115         memcpy(buffer, &netlen, 2);
116         buffer[2] = type;
117         memcpy(buffer + 3, data, len);
118
119         if(s->outstate) {
120                 // If first handshake has finished, encrypt and HMAC
121                 chacha_poly1305_encrypt(s->outcipher, seqno, buffer + 2, len + 1, buffer + 2, NULL);
122                 return s->send_data(s->handle, type, buffer, len + 19UL);
123         } else {
124                 // Otherwise send as plaintext
125                 return s->send_data(s->handle, type, buffer, len + 3UL);
126         }
127 }
128
129 // Send an application record.
130 bool sptps_send_record(sptps_t *s, uint8_t type, const char *data, uint16_t len) {
131         // Sanity checks: application cannot send data before handshake is finished,
132         // and only record types 0..127 are allowed.
133         if(!s->outstate)
134                 return error(s, EINVAL, "Handshake phase not finished yet");
135
136         if(type >= SPTPS_HANDSHAKE)
137                 return error(s, EINVAL, "Invalid application record type");
138
139         return send_record_priv(s, type, data, len);
140 }
141
142 // Send a Key EXchange record, containing a random nonce and an ECDHE public key.
143 static bool send_kex(sptps_t *s) {
144         size_t keylen = ECDH_SIZE;
145
146         // Make room for our KEX message, which we will keep around since send_sig() needs it.
147         if(s->mykex)
148                 return false;
149         s->mykex = realloc(s->mykex, 1 + 32 + keylen);
150         if(!s->mykex)
151                 return error(s, errno, strerror(errno));
152
153         // Set version byte to zero.
154         s->mykex[0] = SPTPS_VERSION;
155
156         // Create a random nonce.
157         randomize(s->mykex + 1, 32);
158
159         // Create a new ECDH public key.
160         if(!(s->ecdh = ecdh_generate_public(s->mykex + 1 + 32)))
161                 return error(s, EINVAL, "Failed to generate ECDH public key");
162
163         return send_record_priv(s, SPTPS_HANDSHAKE, s->mykex, 1 + 32 + keylen);
164 }
165
166 // Send a SIGnature record, containing an Ed25519 signature over both KEX records.
167 static bool send_sig(sptps_t *s) {
168         size_t keylen = ECDH_SIZE;
169         size_t siglen = ecdsa_size(s->mykey);
170
171         // Concatenate both KEX messages, plus tag indicating if it is from the connection originator, plus label
172         char msg[(1 + 32 + keylen) * 2 + 1 + s->labellen];
173         char sig[siglen];
174
175         msg[0] = s->initiator;
176         memcpy(msg + 1, s->mykex, 1 + 32 + keylen);
177         memcpy(msg + 1 + 33 + keylen, s->hiskex, 1 + 32 + keylen);
178         memcpy(msg + 1 + 2 * (33 + keylen), s->label, s->labellen);
179
180         // Sign the result.
181         if(!ecdsa_sign(s->mykey, msg, sizeof msg, sig))
182                 return error(s, EINVAL, "Failed to sign SIG record");
183
184         // Send the SIG exchange record.
185         return send_record_priv(s, SPTPS_HANDSHAKE, sig, sizeof sig);
186 }
187
188 // Generate key material from the shared secret created from the ECDHE key exchange.
189 static bool generate_key_material(sptps_t *s, const char *shared, size_t len) {
190         // Initialise cipher and digest structures if necessary
191         if(!s->outstate) {
192                 s->incipher = chacha_poly1305_init();
193                 s->outcipher = chacha_poly1305_init();
194                 if(!s->incipher || !s->outcipher)
195                         return error(s, EINVAL, "Failed to open cipher");
196         }
197
198         // Allocate memory for key material
199         size_t keylen = 2 * CHACHA_POLY1305_KEYLEN;
200
201         s->key = realloc(s->key, keylen);
202         if(!s->key)
203                 return error(s, errno, strerror(errno));
204
205         // Create the HMAC seed, which is "key expansion" + session label + server nonce + client nonce
206         char seed[s->labellen + 64 + 13];
207         strcpy(seed, "key expansion");
208         if(s->initiator) {
209                 memcpy(seed + 13, s->mykex + 1, 32);
210                 memcpy(seed + 45, s->hiskex + 1, 32);
211         } else {
212                 memcpy(seed + 13, s->hiskex + 1, 32);
213                 memcpy(seed + 45, s->mykex + 1, 32);
214         }
215         memcpy(seed + 77, s->label, s->labellen);
216
217         // Use PRF to generate the key material
218         if(!prf(shared, len, seed, s->labellen + 64 + 13, s->key, keylen))
219                 return error(s, EINVAL, "Failed to generate key material");
220
221         return true;
222 }
223
224 // Send an ACKnowledgement record.
225 static bool send_ack(sptps_t *s) {
226         return send_record_priv(s, SPTPS_HANDSHAKE, "", 0);
227 }
228
229 // Receive an ACKnowledgement record.
230 static bool receive_ack(sptps_t *s, const char *data, uint16_t len) {
231         if(len)
232                 return error(s, EIO, "Invalid ACK record length");
233
234         if(s->initiator) {
235                 if(!chacha_poly1305_set_key(s->incipher, s->key))
236                         return error(s, EINVAL, "Failed to set counter");
237         } else {
238                 if(!chacha_poly1305_set_key(s->incipher, s->key + CHACHA_POLY1305_KEYLEN))
239                         return error(s, EINVAL, "Failed to set counter");
240         }
241
242         free(s->key);
243         s->key = NULL;
244         s->instate = true;
245
246         return true;
247 }
248
249 // Receive a Key EXchange record, respond by sending a SIG record.
250 static bool receive_kex(sptps_t *s, const char *data, uint16_t len) {
251         // Verify length of the HELLO record
252         if(len != 1 + 32 + ECDH_SIZE)
253                 return error(s, EIO, "Invalid KEX record length");
254
255         // Ignore version number for now.
256
257         // Make a copy of the KEX message, send_sig() and receive_sig() need it
258         if(s->hiskex)
259                 return error(s, EINVAL, "Received a second KEX message before first has been processed");
260         s->hiskex = realloc(s->hiskex, len);
261         if(!s->hiskex)
262                 return error(s, errno, strerror(errno));
263
264         memcpy(s->hiskex, data, len);
265
266         return send_sig(s);
267 }
268
269 // Receive a SIGnature record, verify it, if it passed, compute the shared secret and calculate the session keys.
270 static bool receive_sig(sptps_t *s, const char *data, uint16_t len) {
271         size_t keylen = ECDH_SIZE;
272         size_t siglen = ecdsa_size(s->hiskey);
273
274         // Verify length of KEX record.
275         if(len != siglen)
276                 return error(s, EIO, "Invalid KEX record length");
277
278         // Concatenate both KEX messages, plus tag indicating if it is from the connection originator
279         char msg[(1 + 32 + keylen) * 2 + 1 + s->labellen];
280
281         msg[0] = !s->initiator;
282         memcpy(msg + 1, s->hiskex, 1 + 32 + keylen);
283         memcpy(msg + 1 + 33 + keylen, s->mykex, 1 + 32 + keylen);
284         memcpy(msg + 1 + 2 * (33 + keylen), s->label, s->labellen);
285
286         // Verify signature.
287         if(!ecdsa_verify(s->hiskey, msg, sizeof msg, data))
288                 return error(s, EIO, "Failed to verify SIG record");
289
290         // Compute shared secret.
291         char shared[ECDH_SHARED_SIZE];
292         if(!ecdh_compute_shared(s->ecdh, s->hiskex + 1 + 32, shared))
293                 return error(s, EINVAL, "Failed to compute ECDH shared secret");
294         s->ecdh = NULL;
295
296         // Generate key material from shared secret.
297         if(!generate_key_material(s, shared, sizeof shared))
298                 return false;
299
300         free(s->mykex);
301         free(s->hiskex);
302
303         s->mykex = NULL;
304         s->hiskex = NULL;
305
306         // Send cipher change record
307         if(s->outstate && !send_ack(s))
308                 return false;
309
310         // TODO: only set new keys after ACK has been set/received
311         if(s->initiator) {
312                 if(!chacha_poly1305_set_key(s->outcipher, s->key + CHACHA_POLY1305_KEYLEN))
313                         return error(s, EINVAL, "Failed to set key");
314         } else {
315                 if(!chacha_poly1305_set_key(s->outcipher, s->key))
316                         return error(s, EINVAL, "Failed to set key");
317         }
318
319         return true;
320 }
321
322 // Force another Key EXchange (for testing purposes).
323 bool sptps_force_kex(sptps_t *s) {
324         if(!s->outstate || s->state != SPTPS_SECONDARY_KEX)
325                 return error(s, EINVAL, "Cannot force KEX in current state");
326
327         s->state = SPTPS_KEX;
328         return send_kex(s);
329 }
330
331 // Receive a handshake record.
332 static bool receive_handshake(sptps_t *s, const char *data, uint16_t len) {
333         // Only a few states to deal with handshaking.
334         switch(s->state) {
335                 case SPTPS_SECONDARY_KEX:
336                         // We receive a secondary KEX request, first respond by sending our own.
337                         if(!send_kex(s))
338                                 return false;
339                 case SPTPS_KEX:
340                         // We have sent our KEX request, we expect our peer to sent one as well.
341                         if(!receive_kex(s, data, len))
342                                 return false;
343                         s->state = SPTPS_SIG;
344                         return true;
345                 case SPTPS_SIG:
346                         // If we already sent our secondary public ECDH key, we expect the peer to send his.
347                         if(!receive_sig(s, data, len))
348                                 return false;
349                         if(s->outstate)
350                                 s->state = SPTPS_ACK;
351                         else {
352                                 s->outstate = true;
353                                 if(!receive_ack(s, NULL, 0))
354                                         return false;
355                                 s->receive_record(s->handle, SPTPS_HANDSHAKE, NULL, 0);
356                                 s->state = SPTPS_SECONDARY_KEX;
357                         }
358
359                         return true;
360                 case SPTPS_ACK:
361                         // We expect a handshake message to indicate transition to the new keys.
362                         if(!receive_ack(s, data, len))
363                                 return false;
364                         s->receive_record(s->handle, SPTPS_HANDSHAKE, NULL, 0);
365                         s->state = SPTPS_SECONDARY_KEX;
366                         return true;
367                 // TODO: split ACK into a VERify and ACK?
368                 default:
369                         return error(s, EIO, "Invalid session state %d", s->state);
370         }
371 }
372
373 // Check datagram for valid HMAC
374 bool sptps_verify_datagram(sptps_t *s, const char *data, size_t len) {
375         if(!s->instate || len < 21)
376                 return error(s, EIO, "Received short packet");
377
378         // TODO: just decrypt without updating the replay window
379
380         return true;
381 }
382
383 // Receive incoming data, datagram version.
384 static bool sptps_receive_data_datagram(sptps_t *s, const char *data, size_t len) {
385         if(len < (s->instate ? 21 : 5))
386                 return error(s, EIO, "Received short packet");
387
388         uint32_t seqno;
389         memcpy(&seqno, data, 4);
390         seqno = ntohl(seqno);
391
392         if(!s->instate) {
393                 if(seqno != s->inseqno)
394                         return error(s, EIO, "Invalid packet seqno: %d != %d", seqno, s->inseqno);
395
396                 s->inseqno = seqno + 1;
397
398                 uint8_t type = data[4];
399
400                 if(type != SPTPS_HANDSHAKE)
401                         return error(s, EIO, "Application record received before handshake finished");
402
403                 return receive_handshake(s, data + 5, len - 5);
404         }
405
406         // Decrypt
407
408         char buffer[len];
409
410         size_t outlen;
411
412         if(!chacha_poly1305_decrypt(s->incipher, seqno, data + 4, len - 4, buffer, &outlen))
413                 return error(s, EIO, "Failed to decrypt and verify packet");
414
415         // Replay protection using a sliding window of configurable size.
416         // s->inseqno is expected sequence number
417         // seqno is received sequence number
418         // s->late[] is a circular buffer, a 1 bit means a packet has not been received yet
419         // The circular buffer contains bits for sequence numbers from s->inseqno - s->replaywin * 8 to (but excluding) s->inseqno.
420         if(s->replaywin) {
421                 if(seqno != s->inseqno) {
422                         if(seqno >= s->inseqno + s->replaywin * 8) {
423                                 // Prevent packets that jump far ahead of the queue from causing many others to be dropped.
424                                 if(s->farfuture++ < s->replaywin >> 2)
425                                         return error(s, EIO, "Packet is %d seqs in the future, dropped (%u)\n", seqno - s->inseqno, s->farfuture);
426
427                                 // Unless we have seen lots of them, in which case we consider the others lost.
428                                 warning(s, "Lost %d packets\n", seqno - s->inseqno);
429                                 // Mark all packets in the replay window as being late.
430                                 memset(s->late, 255, s->replaywin);
431                         } else if (seqno < s->inseqno) {
432                                 // If the sequence number is farther in the past than the bitmap goes, or if the packet was already received, drop it.
433                                 if((s->inseqno >= s->replaywin * 8 && seqno < s->inseqno - s->replaywin * 8) || !(s->late[(seqno / 8) % s->replaywin] & (1 << seqno % 8)))
434                                         return error(s, EIO, "Received late or replayed packet, seqno %d, last received %d\n", seqno, s->inseqno);
435                         } else {
436                                 // We missed some packets. Mark them in the bitmap as being late.
437                                 for(int i = s->inseqno; i < seqno; i++)
438                                         s->late[(i / 8) % s->replaywin] |= 1 << i % 8;
439                         }
440                 }
441
442                 // Mark the current packet as not being late.
443                 s->late[(seqno / 8) % s->replaywin] &= ~(1 << seqno % 8);
444                 s->farfuture = 0;
445         }
446
447         if(seqno >= s->inseqno)
448                 s->inseqno = seqno + 1;
449
450         if(!s->inseqno)
451                 s->received = 0;
452         else
453                 s->received++;
454
455         // Append a NULL byte for safety.
456         buffer[len - 20] = 0;
457
458         uint8_t type = buffer[0];
459
460         if(type < SPTPS_HANDSHAKE) {
461                 if(!s->instate)
462                         return error(s, EIO, "Application record received before handshake finished");
463                 if(!s->receive_record(s->handle, type, buffer + 1, len - 21))
464                         abort();
465         } else if(type == SPTPS_HANDSHAKE) {
466                 if(!receive_handshake(s, buffer + 1, len - 21))
467                         abort();
468         } else {
469                 return error(s, EIO, "Invalid record type %d", type);
470         }
471
472         return true;
473 }
474
475 // Receive incoming data. Check if it contains a complete record, if so, handle it.
476 bool sptps_receive_data(sptps_t *s, const char *data, size_t len) {
477         if(!s->state)
478                 return error(s, EIO, "Invalid session state zero");
479
480         if(s->datagram)
481                 return sptps_receive_data_datagram(s, data, len);
482
483         while(len) {
484                 // First read the 2 length bytes.
485                 if(s->buflen < 2) {
486                         size_t toread = 2 - s->buflen;
487                         if(toread > len)
488                                 toread = len;
489
490                         memcpy(s->inbuf + s->buflen, data, toread);
491
492                         s->buflen += toread;
493                         len -= toread;
494                         data += toread;
495
496                         // Exit early if we don't have the full length.
497                         if(s->buflen < 2)
498                                 return true;
499
500                         // Get the length bytes
501
502                         memcpy(&s->reclen, s->inbuf, 2);
503                         s->reclen = ntohs(s->reclen);
504
505                         // If we have the length bytes, ensure our buffer can hold the whole request.
506                         s->inbuf = realloc(s->inbuf, s->reclen + 19UL);
507                         if(!s->inbuf)
508                                 return error(s, errno, strerror(errno));
509
510                         // Exit early if we have no more data to process.
511                         if(!len)
512                                 return true;
513                 }
514
515                 // Read up to the end of the record.
516                 size_t toread = s->reclen + (s->instate ? 19UL : 3UL) - s->buflen;
517                 if(toread > len)
518                         toread = len;
519
520                 memcpy(s->inbuf + s->buflen, data, toread);
521                 s->buflen += toread;
522                 len -= toread;
523                 data += toread;
524
525                 // If we don't have a whole record, exit.
526                 if(s->buflen < s->reclen + (s->instate ? 19UL : 3UL))
527                         return true;
528
529                 // Update sequence number.
530
531                 uint32_t seqno = s->inseqno++;
532
533                 // Check HMAC and decrypt.
534                 if(s->instate) {
535                         if(!chacha_poly1305_decrypt(s->incipher, seqno, s->inbuf + 2UL, s->reclen + 17UL, s->inbuf + 2UL, NULL))
536                                 return error(s, EINVAL, "Failed to decrypt and verify record");
537                 }
538
539                 // Append a NULL byte for safety.
540                 s->inbuf[s->reclen + 3UL] = 0;
541
542                 uint8_t type = s->inbuf[2];
543
544                 if(type < SPTPS_HANDSHAKE) {
545                         if(!s->instate)
546                                 return error(s, EIO, "Application record received before handshake finished");
547                         if(!s->receive_record(s->handle, type, s->inbuf + 3, s->reclen))
548                                 return false;
549                 } else if(type == SPTPS_HANDSHAKE) {
550                         if(!receive_handshake(s, s->inbuf + 3, s->reclen))
551                                 return false;
552                 } else {
553                         return error(s, EIO, "Invalid record type %d", type);
554                 }
555
556                 s->buflen = 0;
557         }
558
559         return true;
560 }
561
562 // Start a SPTPS session.
563 bool sptps_start(sptps_t *s, void *handle, bool initiator, bool datagram, ecdsa_t *mykey, ecdsa_t *hiskey, const char *label, size_t labellen, send_data_t send_data, receive_record_t receive_record) {
564         // Initialise struct sptps
565         memset(s, 0, sizeof *s);
566
567         s->handle = handle;
568         s->initiator = initiator;
569         s->datagram = datagram;
570         s->mykey = mykey;
571         s->hiskey = hiskey;
572         s->replaywin = sptps_replaywin;
573         if(s->replaywin) {
574                 s->late = malloc(s->replaywin);
575                 if(!s->late)
576                         return error(s, errno, strerror(errno));
577                 memset(s->late, 0, s->replaywin);
578         }
579
580         s->label = malloc(labellen);
581         if(!s->label)
582                 return error(s, errno, strerror(errno));
583
584         if(!datagram) {
585                 s->inbuf = malloc(7);
586                 if(!s->inbuf)
587                         return error(s, errno, strerror(errno));
588                 s->buflen = 0;
589         }
590
591         memcpy(s->label, label, labellen);
592         s->labellen = labellen;
593
594         s->send_data = send_data;
595         s->receive_record = receive_record;
596
597         // Do first KEX immediately
598         s->state = SPTPS_KEX;
599         return send_kex(s);
600 }
601
602 // Stop a SPTPS session.
603 bool sptps_stop(sptps_t *s) {
604         // Clean up any resources.
605         chacha_poly1305_exit(s->incipher);
606         chacha_poly1305_exit(s->outcipher);
607         ecdh_free(s->ecdh);
608         free(s->inbuf);
609         free(s->mykex);
610         free(s->hiskex);
611         free(s->key);
612         free(s->label);
613         free(s->late);
614         memset(s, 0, sizeof *s);
615         return true;
616 }