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