kernel - CAM cleanup 3/N - Remove unnecessary mplocks
[dragonfly.git] / crypto / openssh / cipher.c
blob031bda9eca35e3c9f59776b047f00203fe7c49d8
1 /* $OpenBSD: cipher.c,v 1.101 2015/12/10 17:08:40 mmcc Exp $ */
2 /*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
14 * Copyright (c) 1999 Niels Provos. All rights reserved.
15 * Copyright (c) 1999, 2000 Markus Friedl. All rights reserved.
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include "includes.h"
40 #include <sys/types.h>
42 #include <string.h>
43 #include <stdarg.h>
44 #include <stdio.h>
46 #include "cipher.h"
47 #include "misc.h"
48 #include "sshbuf.h"
49 #include "ssherr.h"
50 #include "digest.h"
52 #include "openbsd-compat/openssl-compat.h"
54 #ifdef WITH_SSH1
55 extern const EVP_CIPHER *evp_ssh1_bf(void);
56 extern const EVP_CIPHER *evp_ssh1_3des(void);
57 extern int ssh1_3des_iv(EVP_CIPHER_CTX *, int, u_char *, int);
58 #endif
60 struct sshcipher {
61 char *name;
62 int number; /* for ssh1 only */
63 u_int block_size;
64 u_int key_len;
65 u_int iv_len; /* defaults to block_size */
66 u_int auth_len;
67 u_int discard_len;
68 u_int flags;
69 #define CFLAG_CBC (1<<0)
70 #define CFLAG_CHACHAPOLY (1<<1)
71 #define CFLAG_AESCTR (1<<2)
72 #define CFLAG_NONE (1<<3)
73 #ifdef WITH_OPENSSL
74 const EVP_CIPHER *(*evptype)(void);
75 #else
76 void *ignored;
77 #endif
80 static const struct sshcipher ciphers[] = {
81 #ifdef WITH_SSH1
82 { "des", SSH_CIPHER_DES, 8, 8, 0, 0, 0, 1, EVP_des_cbc },
83 { "3des", SSH_CIPHER_3DES, 8, 16, 0, 0, 0, 1, evp_ssh1_3des },
84 # ifndef OPENSSL_NO_BF
85 { "blowfish", SSH_CIPHER_BLOWFISH, 8, 32, 0, 0, 0, 1, evp_ssh1_bf },
86 # endif /* OPENSSL_NO_BF */
87 #endif /* WITH_SSH1 */
88 #ifdef WITH_OPENSSL
89 { "none", SSH_CIPHER_NONE, 8, 0, 0, 0, 0, 0, EVP_enc_null },
90 { "3des-cbc", SSH_CIPHER_SSH2, 8, 24, 0, 0, 0, 1, EVP_des_ede3_cbc },
91 # ifndef OPENSSL_NO_BF
92 { "blowfish-cbc",
93 SSH_CIPHER_SSH2, 8, 16, 0, 0, 0, 1, EVP_bf_cbc },
94 # endif /* OPENSSL_NO_BF */
95 # ifndef OPENSSL_NO_CAST
96 { "cast128-cbc",
97 SSH_CIPHER_SSH2, 8, 16, 0, 0, 0, 1, EVP_cast5_cbc },
98 # endif /* OPENSSL_NO_CAST */
99 # ifndef OPENSSL_NO_RC4
100 { "arcfour", SSH_CIPHER_SSH2, 8, 16, 0, 0, 0, 0, EVP_rc4 },
101 { "arcfour128", SSH_CIPHER_SSH2, 8, 16, 0, 0, 1536, 0, EVP_rc4 },
102 { "arcfour256", SSH_CIPHER_SSH2, 8, 32, 0, 0, 1536, 0, EVP_rc4 },
103 # endif /* OPENSSL_NO_RC4 */
104 { "aes128-cbc", SSH_CIPHER_SSH2, 16, 16, 0, 0, 0, 1, EVP_aes_128_cbc },
105 { "aes192-cbc", SSH_CIPHER_SSH2, 16, 24, 0, 0, 0, 1, EVP_aes_192_cbc },
106 { "aes256-cbc", SSH_CIPHER_SSH2, 16, 32, 0, 0, 0, 1, EVP_aes_256_cbc },
107 { "rijndael-cbc@lysator.liu.se",
108 SSH_CIPHER_SSH2, 16, 32, 0, 0, 0, 1, EVP_aes_256_cbc },
109 { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, 0, 0, 0, 0, EVP_aes_128_ctr },
110 { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, 0, 0, 0, 0, EVP_aes_192_ctr },
111 { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, 0, 0, 0, EVP_aes_256_ctr },
112 # ifdef OPENSSL_HAVE_EVPGCM
113 { "aes128-gcm@openssh.com",
114 SSH_CIPHER_SSH2, 16, 16, 12, 16, 0, 0, EVP_aes_128_gcm },
115 { "aes256-gcm@openssh.com",
116 SSH_CIPHER_SSH2, 16, 32, 12, 16, 0, 0, EVP_aes_256_gcm },
117 # endif /* OPENSSL_HAVE_EVPGCM */
118 #else /* WITH_OPENSSL */
119 { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, 0, 0, 0, CFLAG_AESCTR, NULL },
120 { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, 0, 0, 0, CFLAG_AESCTR, NULL },
121 { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, 0, 0, CFLAG_AESCTR, NULL },
122 { "none", SSH_CIPHER_NONE, 8, 0, 0, 0, 0, CFLAG_NONE, NULL },
123 #endif /* WITH_OPENSSL */
124 { "chacha20-poly1305@openssh.com",
125 SSH_CIPHER_SSH2, 8, 64, 0, 16, 0, CFLAG_CHACHAPOLY, NULL },
127 { NULL, SSH_CIPHER_INVALID, 0, 0, 0, 0, 0, 0, NULL }
130 /*--*/
132 /* Returns a comma-separated list of supported ciphers. */
133 char *
134 cipher_alg_list(char sep, int auth_only)
136 char *tmp, *ret = NULL;
137 size_t nlen, rlen = 0;
138 const struct sshcipher *c;
140 for (c = ciphers; c->name != NULL; c++) {
141 if (c->number != SSH_CIPHER_SSH2)
142 continue;
143 if (auth_only && c->auth_len == 0)
144 continue;
145 if (ret != NULL)
146 ret[rlen++] = sep;
147 nlen = strlen(c->name);
148 if ((tmp = realloc(ret, rlen + nlen + 2)) == NULL) {
149 free(ret);
150 return NULL;
152 ret = tmp;
153 memcpy(ret + rlen, c->name, nlen + 1);
154 rlen += nlen;
156 return ret;
159 u_int
160 cipher_blocksize(const struct sshcipher *c)
162 return (c->block_size);
165 u_int
166 cipher_keylen(const struct sshcipher *c)
168 return (c->key_len);
171 u_int
172 cipher_seclen(const struct sshcipher *c)
174 if (strcmp("3des-cbc", c->name) == 0)
175 return 14;
176 return cipher_keylen(c);
179 u_int
180 cipher_authlen(const struct sshcipher *c)
182 return (c->auth_len);
185 u_int
186 cipher_ivlen(const struct sshcipher *c)
189 * Default is cipher block size, except for chacha20+poly1305 that
190 * needs no IV. XXX make iv_len == -1 default?
192 return (c->iv_len != 0 || (c->flags & CFLAG_CHACHAPOLY) != 0) ?
193 c->iv_len : c->block_size;
196 u_int
197 cipher_get_number(const struct sshcipher *c)
199 return (c->number);
202 u_int
203 cipher_is_cbc(const struct sshcipher *c)
205 return (c->flags & CFLAG_CBC) != 0;
208 u_int
209 cipher_mask_ssh1(int client)
211 u_int mask = 0;
212 mask |= 1 << SSH_CIPHER_3DES; /* Mandatory */
213 mask |= 1 << SSH_CIPHER_BLOWFISH;
214 if (client) {
215 mask |= 1 << SSH_CIPHER_DES;
217 return mask;
220 const struct sshcipher *
221 cipher_by_name(const char *name)
223 const struct sshcipher *c;
224 for (c = ciphers; c->name != NULL; c++)
225 if (strcmp(c->name, name) == 0)
226 return c;
227 return NULL;
230 const struct sshcipher *
231 cipher_by_number(int id)
233 const struct sshcipher *c;
234 for (c = ciphers; c->name != NULL; c++)
235 if (c->number == id)
236 return c;
237 return NULL;
240 #define CIPHER_SEP ","
242 ciphers_valid(const char *names)
244 const struct sshcipher *c;
245 char *cipher_list, *cp;
246 char *p;
248 if (names == NULL || strcmp(names, "") == 0)
249 return 0;
250 if ((cipher_list = cp = strdup(names)) == NULL)
251 return 0;
252 for ((p = strsep(&cp, CIPHER_SEP)); p && *p != '\0';
253 (p = strsep(&cp, CIPHER_SEP))) {
254 c = cipher_by_name(p);
255 if (c == NULL || c->number != SSH_CIPHER_SSH2) {
256 free(cipher_list);
257 return 0;
260 free(cipher_list);
261 return 1;
265 * Parses the name of the cipher. Returns the number of the corresponding
266 * cipher, or -1 on error.
270 cipher_number(const char *name)
272 const struct sshcipher *c;
273 if (name == NULL)
274 return -1;
275 for (c = ciphers; c->name != NULL; c++)
276 if (strcasecmp(c->name, name) == 0)
277 return c->number;
278 return -1;
281 char *
282 cipher_name(int id)
284 const struct sshcipher *c = cipher_by_number(id);
285 return (c==NULL) ? "<unknown>" : c->name;
288 const char *
289 cipher_warning_message(const struct sshcipher_ctx *cc)
291 if (cc == NULL || cc->cipher == NULL)
292 return NULL;
293 if (cc->cipher->number == SSH_CIPHER_DES)
294 return "use of DES is strongly discouraged due to "
295 "cryptographic weaknesses";
296 return NULL;
300 cipher_init(struct sshcipher_ctx *cc, const struct sshcipher *cipher,
301 const u_char *key, u_int keylen, const u_char *iv, u_int ivlen,
302 int do_encrypt)
304 #ifdef WITH_OPENSSL
305 int ret = SSH_ERR_INTERNAL_ERROR;
306 const EVP_CIPHER *type;
307 int klen;
308 u_char *junk, *discard;
310 if (cipher->number == SSH_CIPHER_DES) {
311 if (keylen > 8)
312 keylen = 8;
314 #endif
315 cc->plaintext = (cipher->number == SSH_CIPHER_NONE);
316 cc->encrypt = do_encrypt;
318 if (keylen < cipher->key_len ||
319 (iv != NULL && ivlen < cipher_ivlen(cipher)))
320 return SSH_ERR_INVALID_ARGUMENT;
322 cc->cipher = cipher;
323 if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0) {
324 return chachapoly_init(&cc->cp_ctx, key, keylen);
326 #ifndef WITH_OPENSSL
327 if ((cc->cipher->flags & CFLAG_AESCTR) != 0) {
328 aesctr_keysetup(&cc->ac_ctx, key, 8 * keylen, 8 * ivlen);
329 aesctr_ivsetup(&cc->ac_ctx, iv);
330 return 0;
332 if ((cc->cipher->flags & CFLAG_NONE) != 0)
333 return 0;
334 return SSH_ERR_INVALID_ARGUMENT;
335 #else
336 type = (*cipher->evptype)();
337 EVP_CIPHER_CTX_init(&cc->evp);
338 if (EVP_CipherInit(&cc->evp, type, NULL, (u_char *)iv,
339 (do_encrypt == CIPHER_ENCRYPT)) == 0) {
340 ret = SSH_ERR_LIBCRYPTO_ERROR;
341 goto bad;
343 if (cipher_authlen(cipher) &&
344 !EVP_CIPHER_CTX_ctrl(&cc->evp, EVP_CTRL_GCM_SET_IV_FIXED,
345 -1, (u_char *)iv)) {
346 ret = SSH_ERR_LIBCRYPTO_ERROR;
347 goto bad;
349 klen = EVP_CIPHER_CTX_key_length(&cc->evp);
350 if (klen > 0 && keylen != (u_int)klen) {
351 if (EVP_CIPHER_CTX_set_key_length(&cc->evp, keylen) == 0) {
352 ret = SSH_ERR_LIBCRYPTO_ERROR;
353 goto bad;
356 if (EVP_CipherInit(&cc->evp, NULL, (u_char *)key, NULL, -1) == 0) {
357 ret = SSH_ERR_LIBCRYPTO_ERROR;
358 goto bad;
361 if (cipher->discard_len > 0) {
362 if ((junk = malloc(cipher->discard_len)) == NULL ||
363 (discard = malloc(cipher->discard_len)) == NULL) {
364 free(junk);
365 ret = SSH_ERR_ALLOC_FAIL;
366 goto bad;
368 ret = EVP_Cipher(&cc->evp, discard, junk, cipher->discard_len);
369 explicit_bzero(discard, cipher->discard_len);
370 free(junk);
371 free(discard);
372 if (ret != 1) {
373 ret = SSH_ERR_LIBCRYPTO_ERROR;
374 bad:
375 EVP_CIPHER_CTX_cleanup(&cc->evp);
376 return ret;
379 #endif
380 return 0;
384 * cipher_crypt() operates as following:
385 * Copy 'aadlen' bytes (without en/decryption) from 'src' to 'dest'.
386 * Theses bytes are treated as additional authenticated data for
387 * authenticated encryption modes.
388 * En/Decrypt 'len' bytes at offset 'aadlen' from 'src' to 'dest'.
389 * Use 'authlen' bytes at offset 'len'+'aadlen' as the authentication tag.
390 * This tag is written on encryption and verified on decryption.
391 * Both 'aadlen' and 'authlen' can be set to 0.
394 cipher_crypt(struct sshcipher_ctx *cc, u_int seqnr, u_char *dest,
395 const u_char *src, u_int len, u_int aadlen, u_int authlen)
397 if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0) {
398 return chachapoly_crypt(&cc->cp_ctx, seqnr, dest, src,
399 len, aadlen, authlen, cc->encrypt);
401 #ifndef WITH_OPENSSL
402 if ((cc->cipher->flags & CFLAG_AESCTR) != 0) {
403 if (aadlen)
404 memcpy(dest, src, aadlen);
405 aesctr_encrypt_bytes(&cc->ac_ctx, src + aadlen,
406 dest + aadlen, len);
407 return 0;
409 if ((cc->cipher->flags & CFLAG_NONE) != 0) {
410 memcpy(dest, src, aadlen + len);
411 return 0;
413 return SSH_ERR_INVALID_ARGUMENT;
414 #else
415 if (authlen) {
416 u_char lastiv[1];
418 if (authlen != cipher_authlen(cc->cipher))
419 return SSH_ERR_INVALID_ARGUMENT;
420 /* increment IV */
421 if (!EVP_CIPHER_CTX_ctrl(&cc->evp, EVP_CTRL_GCM_IV_GEN,
422 1, lastiv))
423 return SSH_ERR_LIBCRYPTO_ERROR;
424 /* set tag on decyption */
425 if (!cc->encrypt &&
426 !EVP_CIPHER_CTX_ctrl(&cc->evp, EVP_CTRL_GCM_SET_TAG,
427 authlen, (u_char *)src + aadlen + len))
428 return SSH_ERR_LIBCRYPTO_ERROR;
430 if (aadlen) {
431 if (authlen &&
432 EVP_Cipher(&cc->evp, NULL, (u_char *)src, aadlen) < 0)
433 return SSH_ERR_LIBCRYPTO_ERROR;
434 memcpy(dest, src, aadlen);
436 if (len % cc->cipher->block_size)
437 return SSH_ERR_INVALID_ARGUMENT;
438 if (EVP_Cipher(&cc->evp, dest + aadlen, (u_char *)src + aadlen,
439 len) < 0)
440 return SSH_ERR_LIBCRYPTO_ERROR;
441 if (authlen) {
442 /* compute tag (on encrypt) or verify tag (on decrypt) */
443 if (EVP_Cipher(&cc->evp, NULL, NULL, 0) < 0)
444 return cc->encrypt ?
445 SSH_ERR_LIBCRYPTO_ERROR : SSH_ERR_MAC_INVALID;
446 if (cc->encrypt &&
447 !EVP_CIPHER_CTX_ctrl(&cc->evp, EVP_CTRL_GCM_GET_TAG,
448 authlen, dest + aadlen + len))
449 return SSH_ERR_LIBCRYPTO_ERROR;
451 return 0;
452 #endif
455 /* Extract the packet length, including any decryption necessary beforehand */
457 cipher_get_length(struct sshcipher_ctx *cc, u_int *plenp, u_int seqnr,
458 const u_char *cp, u_int len)
460 if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0)
461 return chachapoly_get_length(&cc->cp_ctx, plenp, seqnr,
462 cp, len);
463 if (len < 4)
464 return SSH_ERR_MESSAGE_INCOMPLETE;
465 *plenp = get_u32(cp);
466 return 0;
470 cipher_cleanup(struct sshcipher_ctx *cc)
472 if (cc == NULL || cc->cipher == NULL)
473 return 0;
474 if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0)
475 explicit_bzero(&cc->cp_ctx, sizeof(cc->cp_ctx));
476 else if ((cc->cipher->flags & CFLAG_AESCTR) != 0)
477 explicit_bzero(&cc->ac_ctx, sizeof(cc->ac_ctx));
478 #ifdef WITH_OPENSSL
479 else if (EVP_CIPHER_CTX_cleanup(&cc->evp) == 0)
480 return SSH_ERR_LIBCRYPTO_ERROR;
481 #endif
482 return 0;
486 * Selects the cipher, and keys if by computing the MD5 checksum of the
487 * passphrase and using the resulting 16 bytes as the key.
490 cipher_set_key_string(struct sshcipher_ctx *cc, const struct sshcipher *cipher,
491 const char *passphrase, int do_encrypt)
493 u_char digest[16];
494 int r = SSH_ERR_INTERNAL_ERROR;
496 if ((r = ssh_digest_memory(SSH_DIGEST_MD5,
497 passphrase, strlen(passphrase),
498 digest, sizeof(digest))) != 0)
499 goto out;
501 r = cipher_init(cc, cipher, digest, 16, NULL, 0, do_encrypt);
502 out:
503 explicit_bzero(digest, sizeof(digest));
504 return r;
508 * Exports an IV from the sshcipher_ctx required to export the key
509 * state back from the unprivileged child to the privileged parent
510 * process.
513 cipher_get_keyiv_len(const struct sshcipher_ctx *cc)
515 const struct sshcipher *c = cc->cipher;
516 int ivlen = 0;
518 if (c->number == SSH_CIPHER_3DES)
519 ivlen = 24;
520 else if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0)
521 ivlen = 0;
522 else if ((cc->cipher->flags & CFLAG_AESCTR) != 0)
523 ivlen = sizeof(cc->ac_ctx.ctr);
524 #ifdef WITH_OPENSSL
525 else
526 ivlen = EVP_CIPHER_CTX_iv_length(&cc->evp);
527 #endif /* WITH_OPENSSL */
528 return (ivlen);
532 cipher_get_keyiv(struct sshcipher_ctx *cc, u_char *iv, u_int len)
534 const struct sshcipher *c = cc->cipher;
535 #ifdef WITH_OPENSSL
536 int evplen;
537 #endif
539 if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0) {
540 if (len != 0)
541 return SSH_ERR_INVALID_ARGUMENT;
542 return 0;
544 if ((cc->cipher->flags & CFLAG_AESCTR) != 0) {
545 if (len != sizeof(cc->ac_ctx.ctr))
546 return SSH_ERR_INVALID_ARGUMENT;
547 memcpy(iv, cc->ac_ctx.ctr, len);
548 return 0;
550 if ((cc->cipher->flags & CFLAG_NONE) != 0)
551 return 0;
553 switch (c->number) {
554 #ifdef WITH_OPENSSL
555 case SSH_CIPHER_SSH2:
556 case SSH_CIPHER_DES:
557 case SSH_CIPHER_BLOWFISH:
558 evplen = EVP_CIPHER_CTX_iv_length(&cc->evp);
559 if (evplen == 0)
560 return 0;
561 else if (evplen < 0)
562 return SSH_ERR_LIBCRYPTO_ERROR;
563 if ((u_int)evplen != len)
564 return SSH_ERR_INVALID_ARGUMENT;
565 #ifndef OPENSSL_HAVE_EVPCTR
566 if (c->evptype == evp_aes_128_ctr)
567 ssh_aes_ctr_iv(&cc->evp, 0, iv, len);
568 else
569 #endif
570 if (cipher_authlen(c)) {
571 if (!EVP_CIPHER_CTX_ctrl(&cc->evp, EVP_CTRL_GCM_IV_GEN,
572 len, iv))
573 return SSH_ERR_LIBCRYPTO_ERROR;
574 } else
575 memcpy(iv, cc->evp.iv, len);
576 break;
577 #endif
578 #ifdef WITH_SSH1
579 case SSH_CIPHER_3DES:
580 return ssh1_3des_iv(&cc->evp, 0, iv, 24);
581 #endif
582 default:
583 return SSH_ERR_INVALID_ARGUMENT;
585 return 0;
589 cipher_set_keyiv(struct sshcipher_ctx *cc, const u_char *iv)
591 const struct sshcipher *c = cc->cipher;
592 #ifdef WITH_OPENSSL
593 int evplen = 0;
594 #endif
596 if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0)
597 return 0;
598 if ((cc->cipher->flags & CFLAG_NONE) != 0)
599 return 0;
601 switch (c->number) {
602 #ifdef WITH_OPENSSL
603 case SSH_CIPHER_SSH2:
604 case SSH_CIPHER_DES:
605 case SSH_CIPHER_BLOWFISH:
606 evplen = EVP_CIPHER_CTX_iv_length(&cc->evp);
607 if (evplen <= 0)
608 return SSH_ERR_LIBCRYPTO_ERROR;
609 if (cipher_authlen(c)) {
610 /* XXX iv arg is const, but EVP_CIPHER_CTX_ctrl isn't */
611 if (!EVP_CIPHER_CTX_ctrl(&cc->evp,
612 EVP_CTRL_GCM_SET_IV_FIXED, -1, (void *)iv))
613 return SSH_ERR_LIBCRYPTO_ERROR;
614 } else
615 memcpy(cc->evp.iv, iv, evplen);
616 break;
617 #endif
618 #ifdef WITH_SSH1
619 case SSH_CIPHER_3DES:
620 return ssh1_3des_iv(&cc->evp, 1, (u_char *)iv, 24);
621 #endif
622 default:
623 return SSH_ERR_INVALID_ARGUMENT;
625 return 0;
628 #ifdef WITH_OPENSSL
629 #define EVP_X_STATE(evp) (evp).cipher_data
630 #define EVP_X_STATE_LEN(evp) (evp).cipher->ctx_size
631 #endif
634 cipher_get_keycontext(const struct sshcipher_ctx *cc, u_char *dat)
636 #if defined(WITH_OPENSSL) && !defined(OPENSSL_NO_RC4)
637 const struct sshcipher *c = cc->cipher;
638 int plen = 0;
640 if (c->evptype == EVP_rc4) {
641 plen = EVP_X_STATE_LEN(cc->evp);
642 if (dat == NULL)
643 return (plen);
644 memcpy(dat, EVP_X_STATE(cc->evp), plen);
646 return (plen);
647 #else
648 return 0;
649 #endif
652 void
653 cipher_set_keycontext(struct sshcipher_ctx *cc, const u_char *dat)
655 #if defined(WITH_OPENSSL) && !defined(OPENSSL_NO_RC4)
656 const struct sshcipher *c = cc->cipher;
657 int plen;
659 if (c->evptype == EVP_rc4) {
660 plen = EVP_X_STATE_LEN(cc->evp);
661 memcpy(EVP_X_STATE(cc->evp), dat, plen);
663 #endif