123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551 |
- /*
- * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
- *
- * Licensed under the Apache License 2.0 (the "License"). You may not use
- * this file except in compliance with the License. You can obtain a copy
- * in the file LICENSE in the source distribution or at
- * https://www.openssl.org/source/license.html
- */
- /*
- * RSA low level APIs are deprecated for public use, but still ok for
- * internal use.
- */
- #include "internal/deprecated.h"
- #include <openssl/crypto.h>
- #include <openssl/evp.h>
- #include <openssl/core_dispatch.h>
- #include <openssl/core_names.h>
- #include <openssl/rsa.h>
- #include <openssl/params.h>
- #include <openssl/err.h>
- /* Just for SSL_MAX_MASTER_KEY_LENGTH */
- #include <openssl/ssl.h>
- #include "internal/constant_time.h"
- #include "internal/sizes.h"
- #include "crypto/rsa.h"
- #include "prov/providercommonerr.h"
- #include "prov/provider_ctx.h"
- #include "prov/implementations.h"
- #include <stdlib.h>
- static OSSL_FUNC_asym_cipher_newctx_fn rsa_newctx;
- static OSSL_FUNC_asym_cipher_encrypt_init_fn rsa_init;
- static OSSL_FUNC_asym_cipher_encrypt_fn rsa_encrypt;
- static OSSL_FUNC_asym_cipher_decrypt_init_fn rsa_init;
- static OSSL_FUNC_asym_cipher_decrypt_fn rsa_decrypt;
- static OSSL_FUNC_asym_cipher_freectx_fn rsa_freectx;
- static OSSL_FUNC_asym_cipher_dupctx_fn rsa_dupctx;
- static OSSL_FUNC_asym_cipher_get_ctx_params_fn rsa_get_ctx_params;
- static OSSL_FUNC_asym_cipher_gettable_ctx_params_fn rsa_gettable_ctx_params;
- static OSSL_FUNC_asym_cipher_set_ctx_params_fn rsa_set_ctx_params;
- static OSSL_FUNC_asym_cipher_settable_ctx_params_fn rsa_settable_ctx_params;
- static OSSL_ITEM padding_item[] = {
- { RSA_PKCS1_PADDING, OSSL_PKEY_RSA_PAD_MODE_PKCSV15 },
- { RSA_SSLV23_PADDING, OSSL_PKEY_RSA_PAD_MODE_SSLV23 },
- { RSA_NO_PADDING, OSSL_PKEY_RSA_PAD_MODE_NONE },
- { RSA_PKCS1_OAEP_PADDING, OSSL_PKEY_RSA_PAD_MODE_OAEP }, /* Correct spelling first */
- { RSA_PKCS1_OAEP_PADDING, "oeap" },
- { RSA_X931_PADDING, OSSL_PKEY_RSA_PAD_MODE_X931 },
- { 0, NULL }
- };
- /*
- * What's passed as an actual key is defined by the KEYMGMT interface.
- * We happen to know that our KEYMGMT simply passes RSA structures, so
- * we use that here too.
- */
- typedef struct {
- OPENSSL_CTX *libctx;
- RSA *rsa;
- int pad_mode;
- /* OAEP message digest */
- EVP_MD *oaep_md;
- /* message digest for MGF1 */
- EVP_MD *mgf1_md;
- /* OAEP label */
- unsigned char *oaep_label;
- size_t oaep_labellen;
- /* TLS padding */
- unsigned int client_version;
- unsigned int alt_version;
- } PROV_RSA_CTX;
- static void *rsa_newctx(void *provctx)
- {
- PROV_RSA_CTX *prsactx = OPENSSL_zalloc(sizeof(PROV_RSA_CTX));
- if (prsactx == NULL)
- return NULL;
- prsactx->libctx = PROV_LIBRARY_CONTEXT_OF(provctx);
- return prsactx;
- }
- static int rsa_init(void *vprsactx, void *vrsa)
- {
- PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx;
- if (prsactx == NULL || vrsa == NULL || !RSA_up_ref(vrsa))
- return 0;
- RSA_free(prsactx->rsa);
- prsactx->rsa = vrsa;
- switch (RSA_test_flags(prsactx->rsa, RSA_FLAG_TYPE_MASK)) {
- case RSA_FLAG_TYPE_RSA:
- prsactx->pad_mode = RSA_PKCS1_PADDING;
- break;
- default:
- ERR_raise(ERR_LIB_PROV, PROV_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
- return 0;
- }
- return 1;
- }
- static int rsa_encrypt(void *vprsactx, unsigned char *out, size_t *outlen,
- size_t outsize, const unsigned char *in, size_t inlen)
- {
- PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx;
- int ret;
- if (out == NULL) {
- size_t len = RSA_size(prsactx->rsa);
- if (len == 0) {
- ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY);
- return 0;
- }
- *outlen = len;
- return 1;
- }
- if (prsactx->pad_mode == RSA_PKCS1_OAEP_PADDING) {
- int rsasize = RSA_size(prsactx->rsa);
- unsigned char *tbuf;
- if ((tbuf = OPENSSL_malloc(rsasize)) == NULL) {
- PROVerr(0, ERR_R_MALLOC_FAILURE);
- return 0;
- }
- if (prsactx->oaep_md == NULL) {
- OPENSSL_free(tbuf);
- prsactx->oaep_md = EVP_MD_fetch(prsactx->libctx, "SHA-1", NULL);
- PROVerr(0, ERR_R_INTERNAL_ERROR);
- return 0;
- }
- ret =
- rsa_padding_add_PKCS1_OAEP_mgf1_with_libctx(prsactx->libctx, tbuf,
- rsasize, in, inlen,
- prsactx->oaep_label,
- prsactx->oaep_labellen,
- prsactx->oaep_md,
- prsactx->mgf1_md);
- if (!ret) {
- OPENSSL_free(tbuf);
- return 0;
- }
- ret = RSA_public_encrypt(rsasize, tbuf, out, prsactx->rsa,
- RSA_NO_PADDING);
- OPENSSL_free(tbuf);
- } else {
- ret = RSA_public_encrypt(inlen, in, out, prsactx->rsa,
- prsactx->pad_mode);
- }
- /* A ret value of 0 is not an error */
- if (ret < 0)
- return ret;
- *outlen = ret;
- return 1;
- }
- static int rsa_decrypt(void *vprsactx, unsigned char *out, size_t *outlen,
- size_t outsize, const unsigned char *in, size_t inlen)
- {
- PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx;
- int ret;
- size_t len = RSA_size(prsactx->rsa);
- if (prsactx->pad_mode == RSA_PKCS1_WITH_TLS_PADDING) {
- if (out == NULL) {
- *outlen = SSL_MAX_MASTER_KEY_LENGTH;
- return 1;
- }
- if (outsize < SSL_MAX_MASTER_KEY_LENGTH) {
- ERR_raise(ERR_LIB_PROV, PROV_R_BAD_LENGTH);
- return 0;
- }
- } else {
- if (out == NULL) {
- if (len == 0) {
- ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY);
- return 0;
- }
- *outlen = len;
- return 1;
- }
- if (outsize < len) {
- ERR_raise(ERR_LIB_PROV, PROV_R_BAD_LENGTH);
- return 0;
- }
- }
- if (prsactx->pad_mode == RSA_PKCS1_OAEP_PADDING
- || prsactx->pad_mode == RSA_PKCS1_WITH_TLS_PADDING) {
- unsigned char *tbuf;
- if ((tbuf = OPENSSL_malloc(len)) == NULL) {
- PROVerr(0, ERR_R_MALLOC_FAILURE);
- return 0;
- }
- ret = RSA_private_decrypt(inlen, in, tbuf, prsactx->rsa,
- RSA_NO_PADDING);
- /*
- * With no padding then, on success ret should be len, otherwise an
- * error occurred (non-constant time)
- */
- if (ret != (int)len) {
- OPENSSL_free(tbuf);
- ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_DECRYPT);
- return 0;
- }
- if (prsactx->pad_mode == RSA_PKCS1_OAEP_PADDING) {
- if (prsactx->oaep_md == NULL) {
- prsactx->oaep_md = EVP_MD_fetch(prsactx->libctx, "SHA-1", NULL);
- if (prsactx->oaep_md == NULL) {
- PROVerr(0, ERR_R_INTERNAL_ERROR);
- return 0;
- }
- }
- ret = RSA_padding_check_PKCS1_OAEP_mgf1(out, outsize, tbuf,
- len, len,
- prsactx->oaep_label,
- prsactx->oaep_labellen,
- prsactx->oaep_md,
- prsactx->mgf1_md);
- } else {
- /* RSA_PKCS1_WITH_TLS_PADDING */
- if (prsactx->client_version <= 0) {
- ERR_raise(ERR_LIB_PROV, PROV_R_BAD_TLS_CLIENT_VERSION);
- return 0;
- }
- ret = rsa_padding_check_PKCS1_type_2_TLS(prsactx->libctx, out,
- outsize,
- tbuf, len,
- prsactx->client_version,
- prsactx->alt_version);
- }
- OPENSSL_free(tbuf);
- } else {
- ret = RSA_private_decrypt(inlen, in, out, prsactx->rsa,
- prsactx->pad_mode);
- }
- *outlen = constant_time_select_s(constant_time_msb_s(ret), *outlen, ret);
- ret = constant_time_select_int(constant_time_msb(ret), 0, 1);
- return ret;
- }
- static void rsa_freectx(void *vprsactx)
- {
- PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx;
- RSA_free(prsactx->rsa);
- EVP_MD_free(prsactx->oaep_md);
- EVP_MD_free(prsactx->mgf1_md);
- OPENSSL_free(prsactx->oaep_label);
- OPENSSL_free(prsactx);
- }
- static void *rsa_dupctx(void *vprsactx)
- {
- PROV_RSA_CTX *srcctx = (PROV_RSA_CTX *)vprsactx;
- PROV_RSA_CTX *dstctx;
- dstctx = OPENSSL_zalloc(sizeof(*srcctx));
- if (dstctx == NULL)
- return NULL;
- *dstctx = *srcctx;
- if (dstctx->rsa != NULL && !RSA_up_ref(dstctx->rsa)) {
- OPENSSL_free(dstctx);
- return NULL;
- }
- if (dstctx->oaep_md != NULL && !EVP_MD_up_ref(dstctx->oaep_md)) {
- RSA_free(dstctx->rsa);
- OPENSSL_free(dstctx);
- return NULL;
- }
- if (dstctx->mgf1_md != NULL && !EVP_MD_up_ref(dstctx->mgf1_md)) {
- RSA_free(dstctx->rsa);
- EVP_MD_free(dstctx->oaep_md);
- OPENSSL_free(dstctx);
- return NULL;
- }
- return dstctx;
- }
- static int rsa_get_ctx_params(void *vprsactx, OSSL_PARAM *params)
- {
- PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx;
- OSSL_PARAM *p;
- if (prsactx == NULL || params == NULL)
- return 0;
- p = OSSL_PARAM_locate(params, OSSL_ASYM_CIPHER_PARAM_PAD_MODE);
- if (p != NULL)
- switch (p->data_type) {
- case OSSL_PARAM_INTEGER: /* Support for legacy pad mode number */
- if (!OSSL_PARAM_set_int(p, prsactx->pad_mode))
- return 0;
- break;
- case OSSL_PARAM_UTF8_STRING:
- {
- int i;
- const char *word = NULL;
- for (i = 0; padding_item[i].id != 0; i++) {
- if (prsactx->pad_mode == (int)padding_item[i].id) {
- word = padding_item[i].ptr;
- break;
- }
- }
- if (word != NULL) {
- if (!OSSL_PARAM_set_utf8_string(p, word))
- return 0;
- } else {
- ERR_raise(ERR_LIB_PROV, ERR_R_INTERNAL_ERROR);
- }
- }
- break;
- default:
- return 0;
- }
- p = OSSL_PARAM_locate(params, OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST);
- if (p != NULL && !OSSL_PARAM_set_utf8_string(p, prsactx->oaep_md == NULL
- ? ""
- : EVP_MD_name(prsactx->oaep_md)))
- return 0;
- p = OSSL_PARAM_locate(params, OSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST);
- if (p != NULL) {
- EVP_MD *mgf1_md = prsactx->mgf1_md == NULL ? prsactx->oaep_md
- : prsactx->mgf1_md;
- if (!OSSL_PARAM_set_utf8_string(p, mgf1_md == NULL
- ? ""
- : EVP_MD_name(mgf1_md)))
- return 0;
- }
- p = OSSL_PARAM_locate(params, OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL);
- if (p != NULL && !OSSL_PARAM_set_octet_ptr(p, prsactx->oaep_label, 0))
- return 0;
- p = OSSL_PARAM_locate(params, OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL_LEN);
- if (p != NULL && !OSSL_PARAM_set_size_t(p, prsactx->oaep_labellen))
- return 0;
- p = OSSL_PARAM_locate(params, OSSL_ASYM_CIPHER_PARAM_TLS_CLIENT_VERSION);
- if (p != NULL && !OSSL_PARAM_set_uint(p, prsactx->client_version))
- return 0;
- p = OSSL_PARAM_locate(params, OSSL_ASYM_CIPHER_PARAM_TLS_NEGOTIATED_VERSION);
- if (p != NULL && !OSSL_PARAM_set_uint(p, prsactx->alt_version))
- return 0;
- return 1;
- }
- static const OSSL_PARAM known_gettable_ctx_params[] = {
- OSSL_PARAM_utf8_string(OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST, NULL, 0),
- OSSL_PARAM_utf8_string(OSSL_ASYM_CIPHER_PARAM_PAD_MODE, NULL, 0),
- OSSL_PARAM_utf8_string(OSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST, NULL, 0),
- OSSL_PARAM_DEFN(OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL, OSSL_PARAM_OCTET_PTR,
- NULL, 0),
- OSSL_PARAM_size_t(OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL_LEN, NULL),
- OSSL_PARAM_uint(OSSL_ASYM_CIPHER_PARAM_TLS_CLIENT_VERSION, NULL),
- OSSL_PARAM_uint(OSSL_ASYM_CIPHER_PARAM_TLS_NEGOTIATED_VERSION, NULL),
- OSSL_PARAM_END
- };
- static const OSSL_PARAM *rsa_gettable_ctx_params(ossl_unused void *provctx)
- {
- return known_gettable_ctx_params;
- }
- static int rsa_set_ctx_params(void *vprsactx, const OSSL_PARAM params[])
- {
- PROV_RSA_CTX *prsactx = (PROV_RSA_CTX *)vprsactx;
- const OSSL_PARAM *p;
- char mdname[OSSL_MAX_NAME_SIZE];
- char mdprops[OSSL_MAX_PROPQUERY_SIZE] = { '\0' };
- char *str = mdname;
- if (prsactx == NULL || params == NULL)
- return 0;
- p = OSSL_PARAM_locate_const(params, OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST);
- if (p != NULL) {
- if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdname)))
- return 0;
- str = mdprops;
- p = OSSL_PARAM_locate_const(params,
- OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST_PROPS);
- if (p != NULL) {
- if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops)))
- return 0;
- }
- EVP_MD_free(prsactx->oaep_md);
- prsactx->oaep_md = EVP_MD_fetch(prsactx->libctx, mdname, mdprops);
- if (prsactx->oaep_md == NULL)
- return 0;
- }
- p = OSSL_PARAM_locate_const(params, OSSL_ASYM_CIPHER_PARAM_PAD_MODE);
- if (p != NULL) {
- int pad_mode = 0;
- switch (p->data_type) {
- case OSSL_PARAM_INTEGER: /* Support for legacy pad mode number */
- if (!OSSL_PARAM_get_int(p, &pad_mode))
- return 0;
- break;
- case OSSL_PARAM_UTF8_STRING:
- {
- int i;
- if (p->data == NULL)
- return 0;
- for (i = 0; padding_item[i].id != 0; i++) {
- if (strcmp(p->data, padding_item[i].ptr) == 0) {
- pad_mode = padding_item[i].id;
- break;
- }
- }
- }
- break;
- default:
- return 0;
- }
- /*
- * PSS padding is for signatures only so is not compatible with
- * asymmetric cipher use.
- */
- if (pad_mode == RSA_PKCS1_PSS_PADDING)
- return 0;
- if (pad_mode == RSA_PKCS1_OAEP_PADDING && prsactx->oaep_md == NULL) {
- prsactx->oaep_md = EVP_MD_fetch(prsactx->libctx, "SHA1", mdprops);
- if (prsactx->oaep_md == NULL)
- return 0;
- }
- prsactx->pad_mode = pad_mode;
- }
- p = OSSL_PARAM_locate_const(params, OSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST);
- if (p != NULL) {
- if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdname)))
- return 0;
- str = mdprops;
- p = OSSL_PARAM_locate_const(params,
- OSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST_PROPS);
- if (p != NULL) {
- if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops)))
- return 0;
- } else {
- str = NULL;
- }
- EVP_MD_free(prsactx->mgf1_md);
- prsactx->mgf1_md = EVP_MD_fetch(prsactx->libctx, mdname, str);
- if (prsactx->mgf1_md == NULL)
- return 0;
- }
- p = OSSL_PARAM_locate_const(params, OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL);
- if (p != NULL) {
- void *tmp_label = NULL;
- size_t tmp_labellen;
- if (!OSSL_PARAM_get_octet_string(p, &tmp_label, 0, &tmp_labellen))
- return 0;
- OPENSSL_free(prsactx->oaep_label);
- prsactx->oaep_label = (unsigned char *)tmp_label;
- prsactx->oaep_labellen = tmp_labellen;
- }
- p = OSSL_PARAM_locate_const(params, OSSL_ASYM_CIPHER_PARAM_TLS_CLIENT_VERSION);
- if (p != NULL) {
- unsigned int client_version;
- if (!OSSL_PARAM_get_uint(p, &client_version))
- return 0;
- prsactx->client_version = client_version;
- }
- p = OSSL_PARAM_locate_const(params, OSSL_ASYM_CIPHER_PARAM_TLS_NEGOTIATED_VERSION);
- if (p != NULL) {
- unsigned int alt_version;
- if (!OSSL_PARAM_get_uint(p, &alt_version))
- return 0;
- prsactx->alt_version = alt_version;
- }
- return 1;
- }
- static const OSSL_PARAM known_settable_ctx_params[] = {
- OSSL_PARAM_utf8_string(OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST, NULL, 0),
- OSSL_PARAM_utf8_string(OSSL_ASYM_CIPHER_PARAM_PAD_MODE, NULL, 0),
- OSSL_PARAM_utf8_string(OSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST, NULL, 0),
- OSSL_PARAM_utf8_string(OSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST_PROPS, NULL, 0),
- OSSL_PARAM_octet_string(OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL, NULL, 0),
- OSSL_PARAM_uint(OSSL_ASYM_CIPHER_PARAM_TLS_CLIENT_VERSION, NULL),
- OSSL_PARAM_uint(OSSL_ASYM_CIPHER_PARAM_TLS_NEGOTIATED_VERSION, NULL),
- OSSL_PARAM_END
- };
- static const OSSL_PARAM *rsa_settable_ctx_params(ossl_unused void *provctx)
- {
- return known_settable_ctx_params;
- }
- const OSSL_DISPATCH rsa_asym_cipher_functions[] = {
- { OSSL_FUNC_ASYM_CIPHER_NEWCTX, (void (*)(void))rsa_newctx },
- { OSSL_FUNC_ASYM_CIPHER_ENCRYPT_INIT, (void (*)(void))rsa_init },
- { OSSL_FUNC_ASYM_CIPHER_ENCRYPT, (void (*)(void))rsa_encrypt },
- { OSSL_FUNC_ASYM_CIPHER_DECRYPT_INIT, (void (*)(void))rsa_init },
- { OSSL_FUNC_ASYM_CIPHER_DECRYPT, (void (*)(void))rsa_decrypt },
- { OSSL_FUNC_ASYM_CIPHER_FREECTX, (void (*)(void))rsa_freectx },
- { OSSL_FUNC_ASYM_CIPHER_DUPCTX, (void (*)(void))rsa_dupctx },
- { OSSL_FUNC_ASYM_CIPHER_GET_CTX_PARAMS,
- (void (*)(void))rsa_get_ctx_params },
- { OSSL_FUNC_ASYM_CIPHER_GETTABLE_CTX_PARAMS,
- (void (*)(void))rsa_gettable_ctx_params },
- { OSSL_FUNC_ASYM_CIPHER_SET_CTX_PARAMS,
- (void (*)(void))rsa_set_ctx_params },
- { OSSL_FUNC_ASYM_CIPHER_SETTABLE_CTX_PARAMS,
- (void (*)(void))rsa_settable_ctx_params },
- { 0, NULL }
- };
|