freebsd-src/crypto/openssh/cipher.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

506 lines
13 KiB
C
Raw Normal View History

2023-12-18 15:59:40 +00:00
/* $OpenBSD: cipher.c,v 1.120 2023/10/10 06:49:54 tb Exp $ */
2000-02-24 14:29:47 +00:00
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
2000-05-15 04:37:24 +00:00
*
* As far as I am concerned, the code I have written for this software
* can be used freely for any purpose. Any derived versions of this
* software must be clearly marked as such, and if the derived work is
* incompatible with the protocol description in the RFC file, it must be
* called by a name other than "ssh" or "Secure Shell".
*
*
* Copyright (c) 1999 Niels Provos. All rights reserved.
2002-03-18 09:55:03 +00:00
* Copyright (c) 1999, 2000 Markus Friedl. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
2000-05-15 04:37:24 +00:00
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2000-02-24 14:29:47 +00:00
*/
#include "includes.h"
2006-09-30 13:29:51 +00:00
#include <sys/types.h>
#include <string.h>
#include <stdarg.h>
2014-01-30 10:56:49 +00:00
#include <stdio.h>
2000-02-24 14:29:47 +00:00
#include "cipher.h"
2015-01-05 16:09:55 +00:00
#include "misc.h"
#include "sshbuf.h"
#include "ssherr.h"
2014-03-22 15:23:38 +00:00
#include "digest.h"
2000-02-24 14:29:47 +00:00
2005-09-03 06:59:33 +00:00
#include "openbsd-compat/openssl-compat.h"
2004-02-26 10:38:49 +00:00
2021-02-14 21:00:25 +00:00
#ifndef WITH_OPENSSL
#define EVP_CIPHER_CTX void
#endif
2002-03-18 09:55:03 +00:00
2017-01-31 12:33:47 +00:00
struct sshcipher_ctx {
int plaintext;
int encrypt;
EVP_CIPHER_CTX *evp;
2021-02-14 21:07:21 +00:00
struct chachapoly_ctx *cp_ctx;
2017-01-31 12:33:47 +00:00
struct aesctr_ctx ac_ctx; /* XXX union with evp? */
const struct sshcipher *cipher;
};
2015-01-05 16:09:55 +00:00
struct sshcipher {
2002-03-18 09:55:03 +00:00
char *name;
u_int block_size;
u_int key_len;
2013-03-22 11:19:48 +00:00
u_int iv_len; /* defaults to block_size */
u_int auth_len;
2014-01-30 10:56:49 +00:00
u_int flags;
#define CFLAG_CBC (1<<0)
#define CFLAG_CHACHAPOLY (1<<1)
2015-01-05 16:09:55 +00:00
#define CFLAG_AESCTR (1<<2)
#define CFLAG_NONE (1<<3)
2018-05-06 12:24:45 +00:00
#define CFLAG_INTERNAL CFLAG_NONE /* Don't use "none" for packets */
2015-01-05 16:09:55 +00:00
#ifdef WITH_OPENSSL
2002-06-23 14:01:54 +00:00
const EVP_CIPHER *(*evptype)(void);
2015-01-05 16:09:55 +00:00
#else
void *ignored;
#endif
2013-09-18 17:27:38 +00:00
};
2015-01-05 16:09:55 +00:00
static const struct sshcipher ciphers[] = {
#ifdef WITH_OPENSSL
2018-08-28 10:47:58 +00:00
#ifndef OPENSSL_NO_DES
2018-05-06 12:24:45 +00:00
{ "3des-cbc", 8, 24, 0, 0, CFLAG_CBC, EVP_des_ede3_cbc },
2018-08-28 10:47:58 +00:00
#endif
2018-05-06 12:24:45 +00:00
{ "aes128-cbc", 16, 16, 0, 0, CFLAG_CBC, EVP_aes_128_cbc },
{ "aes192-cbc", 16, 24, 0, 0, CFLAG_CBC, EVP_aes_192_cbc },
{ "aes256-cbc", 16, 32, 0, 0, CFLAG_CBC, EVP_aes_256_cbc },
{ "aes128-ctr", 16, 16, 0, 0, 0, EVP_aes_128_ctr },
{ "aes192-ctr", 16, 24, 0, 0, 0, EVP_aes_192_ctr },
{ "aes256-ctr", 16, 32, 0, 0, 0, EVP_aes_256_ctr },
2013-03-22 11:19:48 +00:00
{ "aes128-gcm@openssh.com",
2018-05-06 12:24:45 +00:00
16, 16, 12, 16, 0, EVP_aes_128_gcm },
2013-03-22 11:19:48 +00:00
{ "aes256-gcm@openssh.com",
2018-05-06 12:24:45 +00:00
16, 32, 12, 16, 0, EVP_aes_256_gcm },
#else
{ "aes128-ctr", 16, 16, 0, 0, CFLAG_AESCTR, NULL },
{ "aes192-ctr", 16, 24, 0, 0, CFLAG_AESCTR, NULL },
{ "aes256-ctr", 16, 32, 0, 0, CFLAG_AESCTR, NULL },
#endif
2014-01-30 10:56:49 +00:00
{ "chacha20-poly1305@openssh.com",
2018-05-06 12:24:45 +00:00
8, 64, 0, 16, CFLAG_CHACHAPOLY, NULL },
{ "none", 8, 0, 0, 0, CFLAG_NONE, NULL },
2015-01-05 16:09:55 +00:00
2018-05-06 12:24:45 +00:00
{ NULL, 0, 0, 0, 0, 0, NULL }
2002-03-18 09:55:03 +00:00
};
2000-02-24 14:29:47 +00:00
2002-03-18 09:55:03 +00:00
/*--*/
2015-01-05 16:09:55 +00:00
/* Returns a comma-separated list of supported ciphers. */
2013-09-18 17:27:38 +00:00
char *
2014-01-30 10:56:49 +00:00
cipher_alg_list(char sep, int auth_only)
2013-09-18 17:27:38 +00:00
{
2015-01-05 16:09:55 +00:00
char *tmp, *ret = NULL;
2013-09-18 17:27:38 +00:00
size_t nlen, rlen = 0;
2015-01-05 16:09:55 +00:00
const struct sshcipher *c;
2013-09-18 17:27:38 +00:00
for (c = ciphers; c->name != NULL; c++) {
2018-05-06 12:24:45 +00:00
if ((c->flags & CFLAG_INTERNAL) != 0)
2013-09-18 17:27:38 +00:00
continue;
2014-01-30 10:56:49 +00:00
if (auth_only && c->auth_len == 0)
continue;
2013-09-18 17:27:38 +00:00
if (ret != NULL)
2014-01-30 10:56:49 +00:00
ret[rlen++] = sep;
2013-09-18 17:27:38 +00:00
nlen = strlen(c->name);
2015-01-05 16:09:55 +00:00
if ((tmp = realloc(ret, rlen + nlen + 2)) == NULL) {
free(ret);
return NULL;
}
ret = tmp;
2013-09-18 17:27:38 +00:00
memcpy(ret + rlen, c->name, nlen + 1);
rlen += nlen;
}
return ret;
}
2021-02-14 21:04:52 +00:00
const char *
compression_alg_list(int compression)
{
#ifdef WITH_ZLIB
return compression ? "zlib@openssh.com,zlib,none" :
"none,zlib@openssh.com,zlib";
#else
return "none";
#endif
}
2002-06-23 14:01:54 +00:00
u_int
2015-01-05 16:09:55 +00:00
cipher_blocksize(const struct sshcipher *c)
{
2002-03-18 09:55:03 +00:00
return (c->block_size);
}
2002-06-29 11:34:13 +00:00
2002-06-23 14:01:54 +00:00
u_int
2015-01-05 16:09:55 +00:00
cipher_keylen(const struct sshcipher *c)
{
2002-03-18 09:55:03 +00:00
return (c->key_len);
}
2002-06-29 11:34:13 +00:00
2014-01-30 10:56:49 +00:00
u_int
2015-01-05 16:09:55 +00:00
cipher_seclen(const struct sshcipher *c)
2014-01-30 10:56:49 +00:00
{
if (strcmp("3des-cbc", c->name) == 0)
return 14;
return cipher_keylen(c);
}
2013-03-22 11:19:48 +00:00
u_int
2015-01-05 16:09:55 +00:00
cipher_authlen(const struct sshcipher *c)
2013-03-22 11:19:48 +00:00
{
return (c->auth_len);
}
u_int
2015-01-05 16:09:55 +00:00
cipher_ivlen(const struct sshcipher *c)
2013-03-22 11:19:48 +00:00
{
2014-01-30 10:56:49 +00:00
/*
* Default is cipher block size, except for chacha20+poly1305 that
* needs no IV. XXX make iv_len == -1 default?
*/
return (c->iv_len != 0 || (c->flags & CFLAG_CHACHAPOLY) != 0) ?
c->iv_len : c->block_size;
2013-03-22 11:19:48 +00:00
}
2009-02-24 18:49:27 +00:00
u_int
2015-01-05 16:09:55 +00:00
cipher_is_cbc(const struct sshcipher *c)
2009-02-24 18:49:27 +00:00
{
2014-01-30 10:56:49 +00:00
return (c->flags & CFLAG_CBC) != 0;
2009-02-24 18:49:27 +00:00
}
2017-01-31 12:33:47 +00:00
u_int
cipher_ctx_is_plaintext(struct sshcipher_ctx *cc)
{
return cc->plaintext;
}
2015-01-05 16:09:55 +00:00
const struct sshcipher *
cipher_by_name(const char *name)
2000-05-15 04:37:24 +00:00
{
2015-01-05 16:09:55 +00:00
const struct sshcipher *c;
for (c = ciphers; c->name != NULL; c++)
2005-06-05 15:40:50 +00:00
if (strcmp(c->name, name) == 0)
return c;
return NULL;
2000-05-15 04:37:24 +00:00
}
2000-02-24 14:29:47 +00:00
2000-05-15 04:37:24 +00:00
#define CIPHER_SEP ","
int
ciphers_valid(const char *names)
{
2015-01-05 16:09:55 +00:00
const struct sshcipher *c;
2004-10-28 16:03:53 +00:00
char *cipher_list, *cp;
2000-05-15 04:37:24 +00:00
char *p;
if (names == NULL || strcmp(names, "") == 0)
2000-05-15 04:37:24 +00:00
return 0;
2015-01-05 16:09:55 +00:00
if ((cipher_list = cp = strdup(names)) == NULL)
return 0;
for ((p = strsep(&cp, CIPHER_SEP)); p && *p != '\0';
2002-03-18 09:55:03 +00:00
(p = strsep(&cp, CIPHER_SEP))) {
c = cipher_by_name(p);
2018-05-06 12:24:45 +00:00
if (c == NULL || (c->flags & CFLAG_INTERNAL) != 0) {
2013-09-18 17:27:38 +00:00
free(cipher_list);
2000-05-15 04:37:24 +00:00
return 0;
}
}
2013-09-18 17:27:38 +00:00
free(cipher_list);
2000-05-15 04:37:24 +00:00
return 1;
}
2015-01-05 16:09:55 +00:00
const char *
cipher_warning_message(const struct sshcipher_ctx *cc)
{
if (cc == NULL || cc->cipher == NULL)
return NULL;
2018-05-06 12:24:45 +00:00
/* XXX repurpose for CBC warning */
2015-01-05 16:09:55 +00:00
return NULL;
}
int
2017-01-31 12:33:47 +00:00
cipher_init(struct sshcipher_ctx **ccp, const struct sshcipher *cipher,
2002-03-18 09:55:03 +00:00
const u_char *key, u_int keylen, const u_char *iv, u_int ivlen,
2004-10-28 16:03:53 +00:00
int do_encrypt)
{
2017-01-31 12:33:47 +00:00
struct sshcipher_ctx *cc = NULL;
2015-01-05 16:09:55 +00:00
int ret = SSH_ERR_INTERNAL_ERROR;
2017-01-31 12:33:47 +00:00
#ifdef WITH_OPENSSL
2002-03-18 09:55:03 +00:00
const EVP_CIPHER *type;
int klen;
2017-01-31 12:33:47 +00:00
#endif
*ccp = NULL;
if ((cc = calloc(sizeof(*cc), 1)) == NULL)
return SSH_ERR_ALLOC_FAIL;
2002-03-18 09:55:03 +00:00
2018-05-06 12:24:45 +00:00
cc->plaintext = (cipher->flags & CFLAG_NONE) != 0;
2013-03-22 11:19:48 +00:00
cc->encrypt = do_encrypt;
2002-03-18 09:55:03 +00:00
2015-01-05 16:09:55 +00:00
if (keylen < cipher->key_len ||
2017-01-31 12:33:47 +00:00
(iv != NULL && ivlen < cipher_ivlen(cipher))) {
ret = SSH_ERR_INVALID_ARGUMENT;
goto out;
}
2002-03-18 09:55:03 +00:00
2015-01-05 16:09:55 +00:00
cc->cipher = cipher;
2014-01-30 10:56:49 +00:00
if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0) {
2021-02-14 21:07:21 +00:00
cc->cp_ctx = chachapoly_new(key, keylen);
ret = cc->cp_ctx != NULL ? 0 : SSH_ERR_INVALID_ARGUMENT;
2017-01-31 12:33:47 +00:00
goto out;
2014-01-30 10:56:49 +00:00
}
2018-05-06 12:24:45 +00:00
if ((cc->cipher->flags & CFLAG_NONE) != 0) {
ret = 0;
goto out;
}
2015-01-05 16:09:55 +00:00
#ifndef WITH_OPENSSL
if ((cc->cipher->flags & CFLAG_AESCTR) != 0) {
aesctr_keysetup(&cc->ac_ctx, key, 8 * keylen, 8 * ivlen);
aesctr_ivsetup(&cc->ac_ctx, iv);
2017-01-31 12:33:47 +00:00
ret = 0;
goto out;
2002-06-27 22:31:32 +00:00
}
2017-01-31 12:33:47 +00:00
ret = SSH_ERR_INVALID_ARGUMENT;
goto out;
#else /* WITH_OPENSSL */
2015-01-05 16:09:55 +00:00
type = (*cipher->evptype)();
2017-01-31 12:33:47 +00:00
if ((cc->evp = EVP_CIPHER_CTX_new()) == NULL) {
ret = SSH_ERR_ALLOC_FAIL;
goto out;
}
if (EVP_CipherInit(cc->evp, type, NULL, (u_char *)iv,
2015-01-05 16:09:55 +00:00
(do_encrypt == CIPHER_ENCRYPT)) == 0) {
ret = SSH_ERR_LIBCRYPTO_ERROR;
2017-01-31 12:33:47 +00:00
goto out;
2015-01-05 16:09:55 +00:00
}
2013-03-22 11:19:48 +00:00
if (cipher_authlen(cipher) &&
2017-01-31 12:33:47 +00:00
!EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_SET_IV_FIXED,
2015-01-05 16:09:55 +00:00
-1, (u_char *)iv)) {
ret = SSH_ERR_LIBCRYPTO_ERROR;
2017-01-31 12:33:47 +00:00
goto out;
2015-01-05 16:09:55 +00:00
}
2017-01-31 12:33:47 +00:00
klen = EVP_CIPHER_CTX_key_length(cc->evp);
2005-09-03 06:59:33 +00:00
if (klen > 0 && keylen != (u_int)klen) {
2017-01-31 12:33:47 +00:00
if (EVP_CIPHER_CTX_set_key_length(cc->evp, keylen) == 0) {
2015-01-05 16:09:55 +00:00
ret = SSH_ERR_LIBCRYPTO_ERROR;
2017-01-31 12:33:47 +00:00
goto out;
2015-01-05 16:09:55 +00:00
}
}
2017-01-31 12:33:47 +00:00
if (EVP_CipherInit(cc->evp, NULL, (u_char *)key, NULL, -1) == 0) {
2015-01-05 16:09:55 +00:00
ret = SSH_ERR_LIBCRYPTO_ERROR;
2017-01-31 12:33:47 +00:00
goto out;
2002-03-18 09:55:03 +00:00
}
2017-01-31 12:33:47 +00:00
ret = 0;
#endif /* WITH_OPENSSL */
out:
if (ret == 0) {
/* success */
*ccp = cc;
} else {
if (cc != NULL) {
#ifdef WITH_OPENSSL
2018-05-06 12:27:04 +00:00
EVP_CIPHER_CTX_free(cc->evp);
2017-01-31 12:33:47 +00:00
#endif /* WITH_OPENSSL */
2021-02-14 21:07:21 +00:00
freezero(cc, sizeof(*cc));
2017-01-31 12:33:47 +00:00
}
}
return ret;
}
2013-03-22 11:19:48 +00:00
/*
* cipher_crypt() operates as following:
* Copy 'aadlen' bytes (without en/decryption) from 'src' to 'dest'.
2021-02-14 21:07:21 +00:00
* These bytes are treated as additional authenticated data for
2013-03-22 11:19:48 +00:00
* authenticated encryption modes.
* En/Decrypt 'len' bytes at offset 'aadlen' from 'src' to 'dest'.
* Use 'authlen' bytes at offset 'len'+'aadlen' as the authentication tag.
* This tag is written on encryption and verified on decryption.
* Both 'aadlen' and 'authlen' can be set to 0.
*/
2014-01-30 10:56:49 +00:00
int
2015-01-05 16:09:55 +00:00
cipher_crypt(struct sshcipher_ctx *cc, u_int seqnr, u_char *dest,
const u_char *src, u_int len, u_int aadlen, u_int authlen)
{
2015-01-05 16:09:55 +00:00
if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0) {
2021-02-14 21:07:21 +00:00
return chachapoly_crypt(cc->cp_ctx, seqnr, dest, src,
2015-01-05 16:09:55 +00:00
len, aadlen, authlen, cc->encrypt);
}
2018-05-06 12:24:45 +00:00
if ((cc->cipher->flags & CFLAG_NONE) != 0) {
memcpy(dest, src, aadlen + len);
return 0;
}
2015-01-05 16:09:55 +00:00
#ifndef WITH_OPENSSL
if ((cc->cipher->flags & CFLAG_AESCTR) != 0) {
if (aadlen)
memcpy(dest, src, aadlen);
aesctr_encrypt_bytes(&cc->ac_ctx, src + aadlen,
dest + aadlen, len);
return 0;
}
return SSH_ERR_INVALID_ARGUMENT;
#else
2013-03-22 11:19:48 +00:00
if (authlen) {
u_char lastiv[1];
if (authlen != cipher_authlen(cc->cipher))
2015-01-05 16:09:55 +00:00
return SSH_ERR_INVALID_ARGUMENT;
2013-03-22 11:19:48 +00:00
/* increment IV */
2017-01-31 12:33:47 +00:00
if (!EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_IV_GEN,
2013-03-22 11:19:48 +00:00
1, lastiv))
2015-01-05 16:09:55 +00:00
return SSH_ERR_LIBCRYPTO_ERROR;
2013-03-22 11:19:48 +00:00
/* set tag on decyption */
if (!cc->encrypt &&
2017-01-31 12:33:47 +00:00
!EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_SET_TAG,
2013-03-22 11:19:48 +00:00
authlen, (u_char *)src + aadlen + len))
2015-01-05 16:09:55 +00:00
return SSH_ERR_LIBCRYPTO_ERROR;
2013-03-22 11:19:48 +00:00
}
if (aadlen) {
if (authlen &&
2017-01-31 12:33:47 +00:00
EVP_Cipher(cc->evp, NULL, (u_char *)src, aadlen) < 0)
2015-01-05 16:09:55 +00:00
return SSH_ERR_LIBCRYPTO_ERROR;
2013-03-22 11:19:48 +00:00
memcpy(dest, src, aadlen);
}
if (len % cc->cipher->block_size)
2015-01-05 16:09:55 +00:00
return SSH_ERR_INVALID_ARGUMENT;
2017-01-31 12:33:47 +00:00
if (EVP_Cipher(cc->evp, dest + aadlen, (u_char *)src + aadlen,
2013-03-22 11:19:48 +00:00
len) < 0)
2015-01-05 16:09:55 +00:00
return SSH_ERR_LIBCRYPTO_ERROR;
2013-03-22 11:19:48 +00:00
if (authlen) {
/* compute tag (on encrypt) or verify tag (on decrypt) */
2017-01-31 12:33:47 +00:00
if (EVP_Cipher(cc->evp, NULL, NULL, 0) < 0)
2015-01-05 16:09:55 +00:00
return cc->encrypt ?
SSH_ERR_LIBCRYPTO_ERROR : SSH_ERR_MAC_INVALID;
2013-03-22 11:19:48 +00:00
if (cc->encrypt &&
2017-01-31 12:33:47 +00:00
!EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_GET_TAG,
2013-03-22 11:19:48 +00:00
authlen, dest + aadlen + len))
2015-01-05 16:09:55 +00:00
return SSH_ERR_LIBCRYPTO_ERROR;
2013-03-22 11:19:48 +00:00
}
2014-01-30 10:56:49 +00:00
return 0;
2015-01-05 16:09:55 +00:00
#endif
2014-01-30 10:56:49 +00:00
}
/* Extract the packet length, including any decryption necessary beforehand */
int
2015-01-05 16:09:55 +00:00
cipher_get_length(struct sshcipher_ctx *cc, u_int *plenp, u_int seqnr,
2014-01-30 10:56:49 +00:00
const u_char *cp, u_int len)
{
if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0)
2021-02-14 21:07:21 +00:00
return chachapoly_get_length(cc->cp_ctx, plenp, seqnr,
2014-01-30 10:56:49 +00:00
cp, len);
if (len < 4)
2015-01-05 16:09:55 +00:00
return SSH_ERR_MESSAGE_INCOMPLETE;
2018-05-06 12:27:04 +00:00
*plenp = PEEK_U32(cp);
2014-01-30 10:56:49 +00:00
return 0;
}
2017-01-31 12:33:47 +00:00
void
cipher_free(struct sshcipher_ctx *cc)
{
2017-01-31 12:33:47 +00:00
if (cc == NULL)
return;
2021-02-14 21:07:21 +00:00
if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0) {
chachapoly_free(cc->cp_ctx);
cc->cp_ctx = NULL;
} else if ((cc->cipher->flags & CFLAG_AESCTR) != 0)
2015-01-05 16:09:55 +00:00
explicit_bzero(&cc->ac_ctx, sizeof(cc->ac_ctx));
#ifdef WITH_OPENSSL
2018-05-06 12:27:04 +00:00
EVP_CIPHER_CTX_free(cc->evp);
cc->evp = NULL;
2015-01-05 16:09:55 +00:00
#endif
2021-02-14 21:07:21 +00:00
freezero(cc, sizeof(*cc));
2000-02-24 14:29:47 +00:00
}
2015-01-05 16:09:55 +00:00
int
cipher_get_keyiv(struct sshcipher_ctx *cc, u_char *iv, size_t len)
2002-06-23 14:01:54 +00:00
{
2015-01-05 16:09:55 +00:00
#ifdef WITH_OPENSSL
2018-05-06 12:27:04 +00:00
const struct sshcipher *c = cc->cipher;
int evplen;
2015-01-05 16:09:55 +00:00
#endif
2002-06-23 14:01:54 +00:00
2014-01-30 10:56:49 +00:00
if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0) {
if (len != 0)
2015-01-05 16:09:55 +00:00
return SSH_ERR_INVALID_ARGUMENT;
return 0;
2014-01-30 10:56:49 +00:00
}
2015-07-02 13:15:34 +00:00
if ((cc->cipher->flags & CFLAG_AESCTR) != 0) {
if (len != sizeof(cc->ac_ctx.ctr))
return SSH_ERR_INVALID_ARGUMENT;
memcpy(iv, cc->ac_ctx.ctr, len);
return 0;
}
2015-01-05 16:09:55 +00:00
if ((cc->cipher->flags & CFLAG_NONE) != 0)
return 0;
2014-01-30 10:56:49 +00:00
2015-01-05 16:09:55 +00:00
#ifdef WITH_OPENSSL
2018-05-06 12:24:45 +00:00
evplen = EVP_CIPHER_CTX_iv_length(cc->evp);
if (evplen == 0)
return 0;
else if (evplen < 0)
return SSH_ERR_LIBCRYPTO_ERROR;
if ((size_t)evplen != len)
2018-05-06 12:24:45 +00:00
return SSH_ERR_INVALID_ARGUMENT;
if (cipher_authlen(c)) {
if (!EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_IV_GEN,
2021-04-23 19:13:32 +00:00
len, iv))
return SSH_ERR_LIBCRYPTO_ERROR;
} else if (!EVP_CIPHER_CTX_get_iv(cc->evp, iv, len))
2021-04-23 19:13:32 +00:00
return SSH_ERR_LIBCRYPTO_ERROR;
2015-01-05 16:09:55 +00:00
#endif
return 0;
2002-06-23 14:01:54 +00:00
}
2015-01-05 16:09:55 +00:00
int
cipher_set_keyiv(struct sshcipher_ctx *cc, const u_char *iv, size_t len)
2002-06-23 14:01:54 +00:00
{
2015-01-05 16:09:55 +00:00
#ifdef WITH_OPENSSL
2018-05-06 12:27:04 +00:00
const struct sshcipher *c = cc->cipher;
int evplen = 0;
2015-01-05 16:09:55 +00:00
#endif
2002-06-23 14:01:54 +00:00
2014-01-30 10:56:49 +00:00
if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0)
2015-01-05 16:09:55 +00:00
return 0;
if ((cc->cipher->flags & CFLAG_NONE) != 0)
return 0;
2014-01-30 10:56:49 +00:00
2015-01-05 16:09:55 +00:00
#ifdef WITH_OPENSSL
2018-05-06 12:24:45 +00:00
evplen = EVP_CIPHER_CTX_iv_length(cc->evp);
if (evplen <= 0)
return SSH_ERR_LIBCRYPTO_ERROR;
if ((size_t)evplen != len)
return SSH_ERR_INVALID_ARGUMENT;
2018-05-06 12:24:45 +00:00
if (cipher_authlen(c)) {
/* XXX iv arg is const, but EVP_CIPHER_CTX_ctrl isn't */
if (!EVP_CIPHER_CTX_ctrl(cc->evp,
EVP_CTRL_GCM_SET_IV_FIXED, -1, (void *)iv))
return SSH_ERR_LIBCRYPTO_ERROR;
} else if (!EVP_CIPHER_CTX_set_iv(cc->evp, iv, evplen))
return SSH_ERR_LIBCRYPTO_ERROR;
2015-01-05 16:09:55 +00:00
#endif
return 0;
2002-06-23 14:01:54 +00:00
}