1 /* $OpenBSD: cipher.c,v 1.101 2015/12/10 17:08:40 mmcc Exp $ */
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
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
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.
40 #include <sys/types.h>
52 #include "openbsd-compat/openssl-compat.h"
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);
62 int number
; /* for ssh1 only */
65 u_int iv_len
; /* defaults to block_size */
69 #define CFLAG_CBC (1<<0)
70 #define CFLAG_CHACHAPOLY (1<<1)
71 #define CFLAG_AESCTR (1<<2)
72 #define CFLAG_NONE (1<<3)
74 const EVP_CIPHER
*(*evptype
)(void);
80 static const struct sshcipher ciphers
[] = {
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 */
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
93 SSH_CIPHER_SSH2
, 8, 16, 0, 0, 0, 1, EVP_bf_cbc
},
94 # endif /* OPENSSL_NO_BF */
95 # ifndef OPENSSL_NO_CAST
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
}
132 /* Returns a comma-separated list of supported ciphers. */
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
)
143 if (auth_only
&& c
->auth_len
== 0)
147 nlen
= strlen(c
->name
);
148 if ((tmp
= realloc(ret
, rlen
+ nlen
+ 2)) == NULL
) {
153 memcpy(ret
+ rlen
, c
->name
, nlen
+ 1);
160 cipher_blocksize(const struct sshcipher
*c
)
162 return (c
->block_size
);
166 cipher_keylen(const struct sshcipher
*c
)
172 cipher_seclen(const struct sshcipher
*c
)
174 if (strcmp("3des-cbc", c
->name
) == 0)
176 return cipher_keylen(c
);
180 cipher_authlen(const struct sshcipher
*c
)
182 return (c
->auth_len
);
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
;
197 cipher_get_number(const struct sshcipher
*c
)
203 cipher_is_cbc(const struct sshcipher
*c
)
205 return (c
->flags
& CFLAG_CBC
) != 0;
209 cipher_mask_ssh1(int client
)
212 mask
|= 1 << SSH_CIPHER_3DES
; /* Mandatory */
213 mask
|= 1 << SSH_CIPHER_BLOWFISH
;
215 mask
|= 1 << SSH_CIPHER_DES
;
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)
230 const struct sshcipher
*
231 cipher_by_number(int id
)
233 const struct sshcipher
*c
;
234 for (c
= ciphers
; c
->name
!= NULL
; c
++)
240 #define CIPHER_SEP ","
242 ciphers_valid(const char *names
)
244 const struct sshcipher
*c
;
245 char *cipher_list
, *cp
;
248 if (names
== NULL
|| strcmp(names
, "") == 0)
250 if ((cipher_list
= cp
= strdup(names
)) == NULL
)
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
) {
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
;
275 for (c
= ciphers
; c
->name
!= NULL
; c
++)
276 if (strcasecmp(c
->name
, name
) == 0)
284 const struct sshcipher
*c
= cipher_by_number(id
);
285 return (c
==NULL
) ? "<unknown>" : c
->name
;
289 cipher_warning_message(const struct sshcipher_ctx
*cc
)
291 if (cc
== NULL
|| cc
->cipher
== NULL
)
293 if (cc
->cipher
->number
== SSH_CIPHER_DES
)
294 return "use of DES is strongly discouraged due to "
295 "cryptographic weaknesses";
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
,
305 int ret
= SSH_ERR_INTERNAL_ERROR
;
306 const EVP_CIPHER
*type
;
308 u_char
*junk
, *discard
;
310 if (cipher
->number
== SSH_CIPHER_DES
) {
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
;
323 if ((cc
->cipher
->flags
& CFLAG_CHACHAPOLY
) != 0) {
324 return chachapoly_init(&cc
->cp_ctx
, key
, keylen
);
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
);
332 if ((cc
->cipher
->flags
& CFLAG_NONE
) != 0)
334 return SSH_ERR_INVALID_ARGUMENT
;
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
;
343 if (cipher_authlen(cipher
) &&
344 !EVP_CIPHER_CTX_ctrl(&cc
->evp
, EVP_CTRL_GCM_SET_IV_FIXED
,
346 ret
= SSH_ERR_LIBCRYPTO_ERROR
;
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
;
356 if (EVP_CipherInit(&cc
->evp
, NULL
, (u_char
*)key
, NULL
, -1) == 0) {
357 ret
= SSH_ERR_LIBCRYPTO_ERROR
;
361 if (cipher
->discard_len
> 0) {
362 if ((junk
= malloc(cipher
->discard_len
)) == NULL
||
363 (discard
= malloc(cipher
->discard_len
)) == NULL
) {
365 ret
= SSH_ERR_ALLOC_FAIL
;
368 ret
= EVP_Cipher(&cc
->evp
, discard
, junk
, cipher
->discard_len
);
369 explicit_bzero(discard
, cipher
->discard_len
);
373 ret
= SSH_ERR_LIBCRYPTO_ERROR
;
375 EVP_CIPHER_CTX_cleanup(&cc
->evp
);
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
);
402 if ((cc
->cipher
->flags
& CFLAG_AESCTR
) != 0) {
404 memcpy(dest
, src
, aadlen
);
405 aesctr_encrypt_bytes(&cc
->ac_ctx
, src
+ aadlen
,
409 if ((cc
->cipher
->flags
& CFLAG_NONE
) != 0) {
410 memcpy(dest
, src
, aadlen
+ len
);
413 return SSH_ERR_INVALID_ARGUMENT
;
418 if (authlen
!= cipher_authlen(cc
->cipher
))
419 return SSH_ERR_INVALID_ARGUMENT
;
421 if (!EVP_CIPHER_CTX_ctrl(&cc
->evp
, EVP_CTRL_GCM_IV_GEN
,
423 return SSH_ERR_LIBCRYPTO_ERROR
;
424 /* set tag on decyption */
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
;
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
,
440 return SSH_ERR_LIBCRYPTO_ERROR
;
442 /* compute tag (on encrypt) or verify tag (on decrypt) */
443 if (EVP_Cipher(&cc
->evp
, NULL
, NULL
, 0) < 0)
445 SSH_ERR_LIBCRYPTO_ERROR
: SSH_ERR_MAC_INVALID
;
447 !EVP_CIPHER_CTX_ctrl(&cc
->evp
, EVP_CTRL_GCM_GET_TAG
,
448 authlen
, dest
+ aadlen
+ len
))
449 return SSH_ERR_LIBCRYPTO_ERROR
;
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
,
464 return SSH_ERR_MESSAGE_INCOMPLETE
;
465 *plenp
= get_u32(cp
);
470 cipher_cleanup(struct sshcipher_ctx
*cc
)
472 if (cc
== NULL
|| cc
->cipher
== NULL
)
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
));
479 else if (EVP_CIPHER_CTX_cleanup(&cc
->evp
) == 0)
480 return SSH_ERR_LIBCRYPTO_ERROR
;
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
)
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)
501 r
= cipher_init(cc
, cipher
, digest
, 16, NULL
, 0, do_encrypt
);
503 explicit_bzero(digest
, sizeof(digest
));
508 * Exports an IV from the sshcipher_ctx required to export the key
509 * state back from the unprivileged child to the privileged parent
513 cipher_get_keyiv_len(const struct sshcipher_ctx
*cc
)
515 const struct sshcipher
*c
= cc
->cipher
;
518 if (c
->number
== SSH_CIPHER_3DES
)
520 else if ((cc
->cipher
->flags
& CFLAG_CHACHAPOLY
) != 0)
522 else if ((cc
->cipher
->flags
& CFLAG_AESCTR
) != 0)
523 ivlen
= sizeof(cc
->ac_ctx
.ctr
);
526 ivlen
= EVP_CIPHER_CTX_iv_length(&cc
->evp
);
527 #endif /* WITH_OPENSSL */
532 cipher_get_keyiv(struct sshcipher_ctx
*cc
, u_char
*iv
, u_int len
)
534 const struct sshcipher
*c
= cc
->cipher
;
539 if ((cc
->cipher
->flags
& CFLAG_CHACHAPOLY
) != 0) {
541 return SSH_ERR_INVALID_ARGUMENT
;
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
);
550 if ((cc
->cipher
->flags
& CFLAG_NONE
) != 0)
555 case SSH_CIPHER_SSH2
:
557 case SSH_CIPHER_BLOWFISH
:
558 evplen
= EVP_CIPHER_CTX_iv_length(&cc
->evp
);
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
);
570 if (cipher_authlen(c
)) {
571 if (!EVP_CIPHER_CTX_ctrl(&cc
->evp
, EVP_CTRL_GCM_IV_GEN
,
573 return SSH_ERR_LIBCRYPTO_ERROR
;
575 memcpy(iv
, cc
->evp
.iv
, len
);
579 case SSH_CIPHER_3DES
:
580 return ssh1_3des_iv(&cc
->evp
, 0, iv
, 24);
583 return SSH_ERR_INVALID_ARGUMENT
;
589 cipher_set_keyiv(struct sshcipher_ctx
*cc
, const u_char
*iv
)
591 const struct sshcipher
*c
= cc
->cipher
;
596 if ((cc
->cipher
->flags
& CFLAG_CHACHAPOLY
) != 0)
598 if ((cc
->cipher
->flags
& CFLAG_NONE
) != 0)
603 case SSH_CIPHER_SSH2
:
605 case SSH_CIPHER_BLOWFISH
:
606 evplen
= EVP_CIPHER_CTX_iv_length(&cc
->evp
);
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
;
615 memcpy(cc
->evp
.iv
, iv
, evplen
);
619 case SSH_CIPHER_3DES
:
620 return ssh1_3des_iv(&cc
->evp
, 1, (u_char
*)iv
, 24);
623 return SSH_ERR_INVALID_ARGUMENT
;
629 #define EVP_X_STATE(evp) (evp).cipher_data
630 #define EVP_X_STATE_LEN(evp) (evp).cipher->ctx_size
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
;
640 if (c
->evptype
== EVP_rc4
) {
641 plen
= EVP_X_STATE_LEN(cc
->evp
);
644 memcpy(dat
, EVP_X_STATE(cc
->evp
), plen
);
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
;
659 if (c
->evptype
== EVP_rc4
) {
660 plen
= EVP_X_STATE_LEN(cc
->evp
);
661 memcpy(EVP_X_STATE(cc
->evp
), dat
, plen
);