aboutsummaryrefslogtreecommitdiffstats
path: root/module/icp
diff options
context:
space:
mode:
authorнаб <[email protected]>2021-12-23 20:06:22 +0100
committerBrian Behlendorf <[email protected]>2022-02-15 16:23:59 -0800
commit2c2f955aaebaeacc167970068a994ab014dd2e0d (patch)
treee3d7ef862cb28fb2a5e3cd3536a3affee1210614 /module/icp
parent710657f51d65b8fb1f389bf6a973e67a8243502f (diff)
module: icp: remove unused kcf_cipher operations
Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Ahelenia Ziemiańska <[email protected]> Closes #12901
Diffstat (limited to 'module/icp')
-rw-r--r--module/icp/api/kcf_cipher.c520
1 files changed, 3 insertions, 517 deletions
diff --git a/module/icp/api/kcf_cipher.c b/module/icp/api/kcf_cipher.c
index 1d582b7ad..51cf86e97 100644
--- a/module/icp/api/kcf_cipher.c
+++ b/module/icp/api/kcf_cipher.c
@@ -34,194 +34,11 @@
* Encryption and decryption routines.
*/
-/*
- * The following are the possible returned values common to all the routines
- * below. The applicability of some of these return values depends on the
- * presence of the arguments.
- *
- * CRYPTO_SUCCESS: The operation completed successfully.
- * CRYPTO_QUEUED: A request was submitted successfully. The callback
- * routine will be called when the operation is done.
- * CRYPTO_INVALID_MECH_NUMBER, CRYPTO_INVALID_MECH_PARAM, or
- * CRYPTO_INVALID_MECH for problems with the 'mech'.
- * CRYPTO_INVALID_DATA for bogus 'data'
- * CRYPTO_HOST_MEMORY for failure to allocate memory to handle this work.
- * CRYPTO_INVALID_CONTEXT: Not a valid context.
- * CRYPTO_BUSY: Cannot process the request now. Schedule a
- * crypto_bufcall(), or try later.
- * CRYPTO_NOT_SUPPORTED and CRYPTO_MECH_NOT_SUPPORTED: No provider is
- * capable of a function or a mechanism.
- * CRYPTO_INVALID_KEY: bogus 'key' argument.
- * CRYPTO_INVALID_PLAINTEXT: bogus 'plaintext' argument.
- * CRYPTO_INVALID_CIPHERTEXT: bogus 'ciphertext' argument.
- */
-
-/*
- * crypto_cipher_init_prov()
- *
- * Arguments:
- *
- * pd: provider descriptor
- * sid: session id
- * mech: crypto_mechanism_t pointer.
- * mech_type is a valid value previously returned by
- * crypto_mech2id();
- * When the mech's parameter is not NULL, its definition depends
- * on the standard definition of the mechanism.
- * key: pointer to a crypto_key_t structure.
- * tmpl: a crypto_ctx_template_t, opaque template of a context of an
- * encryption or decryption with the 'mech' using 'key'.
- * 'tmpl' is created by a previous call to
- * crypto_create_ctx_template().
- * ctxp: Pointer to a crypto_context_t.
- * func: CRYPTO_FG_ENCRYPT or CRYPTO_FG_DECRYPT.
- * cr: crypto_call_req_t calling conditions and call back info.
- *
- * Description:
- * This is a common function invoked internally by both
- * crypto_encrypt_init() and crypto_decrypt_init().
- * Asynchronously submits a request for, or synchronously performs the
- * initialization of an encryption or a decryption operation.
- * When possible and applicable, will internally use the pre-expanded key
- * schedule from the context template, tmpl.
- * When complete and successful, 'ctxp' will contain a crypto_context_t
- * valid for later calls to encrypt_update() and encrypt_final(), or
- * decrypt_update() and decrypt_final().
- * The caller should hold a reference on the specified provider
- * descriptor before calling this function.
- *
- * Context:
- * Process or interrupt, according to the semantics dictated by the 'cr'.
- *
- * Returns:
- * See comment in the beginning of the file.
- */
-static int
-crypto_cipher_init_prov(crypto_provider_t provider, crypto_session_id_t sid,
- crypto_mechanism_t *mech, crypto_key_t *key,
- crypto_spi_ctx_template_t tmpl, crypto_context_t *ctxp,
- crypto_call_req_t *crq, crypto_func_group_t func)
-{
- int error;
- crypto_ctx_t *ctx;
- kcf_req_params_t params;
- kcf_provider_desc_t *pd = provider;
- kcf_provider_desc_t *real_provider = pd;
-
- ASSERT(KCF_PROV_REFHELD(pd));
-
- /* Allocate and initialize the canonical context */
- if ((ctx = kcf_new_ctx(crq, real_provider, sid)) == NULL)
- return (CRYPTO_HOST_MEMORY);
-
- /* The fast path for SW providers. */
- if (CHECK_FASTPATH(crq, pd)) {
- crypto_mechanism_t lmech;
-
- lmech = *mech;
- KCF_SET_PROVIDER_MECHNUM(mech->cm_type, real_provider, &lmech);
-
- if (func == CRYPTO_FG_ENCRYPT)
- error = KCF_PROV_ENCRYPT_INIT(real_provider, ctx,
- &lmech, key, tmpl, KCF_SWFP_RHNDL(crq));
- else {
- ASSERT(func == CRYPTO_FG_DECRYPT);
-
- error = KCF_PROV_DECRYPT_INIT(real_provider, ctx,
- &lmech, key, tmpl, KCF_SWFP_RHNDL(crq));
- }
- KCF_PROV_INCRSTATS(pd, error);
-
- goto done;
- }
-
- if (func == CRYPTO_FG_ENCRYPT) {
- KCF_WRAP_ENCRYPT_OPS_PARAMS(&params, KCF_OP_INIT, sid,
- mech, key, NULL, NULL, tmpl);
- } else {
- ASSERT(func == CRYPTO_FG_DECRYPT);
- KCF_WRAP_DECRYPT_OPS_PARAMS(&params, KCF_OP_INIT, sid,
- mech, key, NULL, NULL, tmpl);
- }
-
- error = kcf_submit_request(real_provider, ctx, crq, &params);
-
-done:
- if ((error == CRYPTO_SUCCESS) || (error == CRYPTO_QUEUED))
- *ctxp = (crypto_context_t)ctx;
- else {
- /* Release the hold done in kcf_new_ctx(). */
- KCF_CONTEXT_REFRELE((kcf_context_t *)ctx->cc_framework_private);
- }
-
- return (error);
-}
-
-/*
- * Same as crypto_cipher_init_prov(), but relies on the scheduler to pick
- * an appropriate provider. See crypto_cipher_init_prov() comments for more
- * details.
- */
-static int
-crypto_cipher_init(crypto_mechanism_t *mech, crypto_key_t *key,
- crypto_ctx_template_t tmpl, crypto_context_t *ctxp,
- crypto_call_req_t *crq, crypto_func_group_t func)
-{
- int error;
- kcf_mech_entry_t *me;
- kcf_provider_desc_t *pd;
- kcf_ctx_template_t *ctx_tmpl;
- crypto_spi_ctx_template_t spi_ctx_tmpl = NULL;
- kcf_prov_tried_t *list = NULL;
-
-retry:
- /* pd is returned held */
- if ((pd = kcf_get_mech_provider(mech->cm_type, &me, &error,
- list, func, CHECK_RESTRICT(crq))) == NULL) {
- if (list != NULL)
- kcf_free_triedlist(list);
- return (error);
- }
-
- /*
- * For SW providers, check the validity of the context template
- * It is very rare that the generation number mis-matches, so
- * is acceptable to fail here, and let the consumer recover by
- * freeing this tmpl and create a new one for the key and new SW
- * provider
- */
- if (((ctx_tmpl = (kcf_ctx_template_t *)tmpl) != NULL)) {
- if (ctx_tmpl->ct_generation != me->me_gen_swprov) {
- if (list != NULL)
- kcf_free_triedlist(list);
- KCF_PROV_REFRELE(pd);
- return (CRYPTO_OLD_CTX_TEMPLATE);
- } else {
- spi_ctx_tmpl = ctx_tmpl->ct_prov_tmpl;
- }
- }
-
- error = crypto_cipher_init_prov(pd, pd->pd_sid, mech, key,
- spi_ctx_tmpl, ctxp, crq, func);
- if (error != CRYPTO_SUCCESS && error != CRYPTO_QUEUED &&
- IS_RECOVERABLE(error)) {
- /* Add pd to the linked list of providers tried. */
- if (kcf_insert_triedlist(&list, pd, KCF_KMFLAG(crq)) != NULL)
- goto retry;
- }
-
- if (list != NULL)
- kcf_free_triedlist(list);
-
- KCF_PROV_REFRELE(pd);
- return (error);
-}
/*
- * crypto_encrypt_prov()
+ * crypto_encrypt()
*
* Arguments:
- * pd: provider descriptor
* sid: session id
* mech: crypto_mechanism_t pointer.
* mech_type is a valid value previously returned by
@@ -243,6 +60,7 @@ retry:
* the key 'key'.
* When complete and successful, 'ciphertext' will contain the encrypted
* message.
+ * Relies on the KCF scheduler to pick a provider.
*
* Context:
* Process or interrupt, according to the semantics dictated by the 'cr'.
@@ -251,31 +69,6 @@ retry:
* See comment in the beginning of the file.
*/
int
-crypto_encrypt_prov(crypto_provider_t provider, crypto_session_id_t sid,
- crypto_mechanism_t *mech, crypto_data_t *plaintext, crypto_key_t *key,
- crypto_ctx_template_t tmpl, crypto_data_t *ciphertext,
- crypto_call_req_t *crq)
-{
- kcf_req_params_t params;
- kcf_provider_desc_t *pd = provider;
- kcf_provider_desc_t *real_provider = pd;
- int error;
-
- ASSERT(KCF_PROV_REFHELD(pd));
-
- KCF_WRAP_ENCRYPT_OPS_PARAMS(&params, KCF_OP_ATOMIC, sid, mech, key,
- plaintext, ciphertext, tmpl);
-
- error = kcf_submit_request(real_provider, NULL, crq, &params);
-
- return (error);
-}
-
-/*
- * Same as crypto_encrypt_prov(), but relies on the scheduler to pick
- * a provider. See crypto_encrypt_prov() for more details.
- */
-int
crypto_encrypt(crypto_mechanism_t *mech, crypto_data_t *plaintext,
crypto_key_t *key, crypto_ctx_template_t tmpl, crypto_data_t *ciphertext,
crypto_call_req_t *crq)
@@ -345,143 +138,6 @@ retry:
}
/*
- * crypto_encrypt_init_prov()
- *
- * Calls crypto_cipher_init_prov() to initialize an encryption operation.
- */
-int
-crypto_encrypt_init_prov(crypto_provider_t pd, crypto_session_id_t sid,
- crypto_mechanism_t *mech, crypto_key_t *key,
- crypto_ctx_template_t tmpl, crypto_context_t *ctxp,
- crypto_call_req_t *crq)
-{
- return (crypto_cipher_init_prov(pd, sid, mech, key, tmpl, ctxp, crq,
- CRYPTO_FG_ENCRYPT));
-}
-
-/*
- * crypto_encrypt_init()
- *
- * Calls crypto_cipher_init() to initialize an encryption operation
- */
-int
-crypto_encrypt_init(crypto_mechanism_t *mech, crypto_key_t *key,
- crypto_ctx_template_t tmpl, crypto_context_t *ctxp,
- crypto_call_req_t *crq)
-{
- return (crypto_cipher_init(mech, key, tmpl, ctxp, crq,
- CRYPTO_FG_ENCRYPT));
-}
-
-/*
- * crypto_encrypt_update()
- *
- * Arguments:
- * context: A crypto_context_t initialized by encrypt_init().
- * plaintext: The message part to be encrypted
- * ciphertext: Storage for the encrypted message part.
- * cr: crypto_call_req_t calling conditions and call back info.
- *
- * Description:
- * Asynchronously submits a request for, or synchronously performs a
- * part of an encryption operation.
- *
- * Context:
- * Process or interrupt, according to the semantics dictated by the 'cr'.
- *
- * Returns:
- * See comment in the beginning of the file.
- */
-int
-crypto_encrypt_update(crypto_context_t context, crypto_data_t *plaintext,
- crypto_data_t *ciphertext, crypto_call_req_t *cr)
-{
- crypto_ctx_t *ctx = (crypto_ctx_t *)context;
- kcf_context_t *kcf_ctx;
- kcf_provider_desc_t *pd;
- int error;
- kcf_req_params_t params;
-
- if ((ctx == NULL) ||
- ((kcf_ctx = (kcf_context_t *)ctx->cc_framework_private) == NULL) ||
- ((pd = kcf_ctx->kc_prov_desc) == NULL)) {
- return (CRYPTO_INVALID_CONTEXT);
- }
-
- /* The fast path for SW providers. */
- if (CHECK_FASTPATH(cr, pd)) {
- error = KCF_PROV_ENCRYPT_UPDATE(pd, ctx, plaintext,
- ciphertext, NULL);
- KCF_PROV_INCRSTATS(pd, error);
- return (error);
- }
-
- /* Check if we should use a software provider for small jobs */
- if ((ctx->cc_flags & CRYPTO_USE_OPSTATE) && cr == NULL) {
- if (plaintext->cd_length < kcf_ctx->kc_mech->me_threshold &&
- kcf_ctx->kc_sw_prov_desc != NULL &&
- KCF_IS_PROV_USABLE(kcf_ctx->kc_sw_prov_desc)) {
- pd = kcf_ctx->kc_sw_prov_desc;
- }
- }
-
- KCF_WRAP_ENCRYPT_OPS_PARAMS(&params, KCF_OP_UPDATE,
- ctx->cc_session, NULL, NULL, plaintext, ciphertext, NULL);
- error = kcf_submit_request(pd, ctx, cr, &params);
-
- return (error);
-}
-
-/*
- * crypto_encrypt_final()
- *
- * Arguments:
- * context: A crypto_context_t initialized by encrypt_init().
- * ciphertext: Storage for the last part of encrypted message
- * cr: crypto_call_req_t calling conditions and call back info.
- *
- * Description:
- * Asynchronously submits a request for, or synchronously performs the
- * final part of an encryption operation.
- *
- * Context:
- * Process or interrupt, according to the semantics dictated by the 'cr'.
- *
- * Returns:
- * See comment in the beginning of the file.
- */
-int
-crypto_encrypt_final(crypto_context_t context, crypto_data_t *ciphertext,
- crypto_call_req_t *cr)
-{
- crypto_ctx_t *ctx = (crypto_ctx_t *)context;
- kcf_context_t *kcf_ctx;
- kcf_provider_desc_t *pd;
- int error;
- kcf_req_params_t params;
-
- if ((ctx == NULL) ||
- ((kcf_ctx = (kcf_context_t *)ctx->cc_framework_private) == NULL) ||
- ((pd = kcf_ctx->kc_prov_desc) == NULL)) {
- return (CRYPTO_INVALID_CONTEXT);
- }
-
- /* The fast path for SW providers. */
- if (CHECK_FASTPATH(cr, pd)) {
- error = KCF_PROV_ENCRYPT_FINAL(pd, ctx, ciphertext, NULL);
- KCF_PROV_INCRSTATS(pd, error);
- } else {
- KCF_WRAP_ENCRYPT_OPS_PARAMS(&params, KCF_OP_FINAL,
- ctx->cc_session, NULL, NULL, NULL, ciphertext, NULL);
- error = kcf_submit_request(pd, ctx, cr, &params);
- }
-
- /* Release the hold done in kcf_new_ctx() during init step. */
- KCF_CONTEXT_COND_RELEASE(error, kcf_ctx);
- return (error);
-}
-
-/*
* crypto_decrypt_prov()
*
* Arguments:
@@ -507,6 +163,7 @@ crypto_encrypt_final(crypto_context_t context, crypto_data_t *ciphertext,
* the key 'key'.
* When complete and successful, 'plaintext' will contain the decrypted
* message.
+ * Relies on the KCF scheduler to choose a provider.
*
* Context:
* Process or interrupt, according to the semantics dictated by the 'cr'.
@@ -515,29 +172,6 @@ crypto_encrypt_final(crypto_context_t context, crypto_data_t *ciphertext,
* See comment in the beginning of the file.
*/
int
-crypto_decrypt_prov(crypto_provider_t provider, crypto_session_id_t sid,
- crypto_mechanism_t *mech, crypto_data_t *ciphertext, crypto_key_t *key,
- crypto_ctx_template_t tmpl, crypto_data_t *plaintext,
- crypto_call_req_t *crq)
-{
- kcf_req_params_t params;
- kcf_provider_desc_t *pd = provider;
- kcf_provider_desc_t *real_provider = pd;
-
- ASSERT(KCF_PROV_REFHELD(pd));
-
- KCF_WRAP_DECRYPT_OPS_PARAMS(&params, KCF_OP_ATOMIC, sid, mech, key,
- ciphertext, plaintext, tmpl);
-
- return (kcf_submit_request(real_provider, NULL, crq, &params));
-}
-
-/*
- * Same as crypto_decrypt_prov(), but relies on the KCF scheduler to
- * choose a provider. See crypto_decrypt_prov() comments for more
- * information.
- */
-int
crypto_decrypt(crypto_mechanism_t *mech, crypto_data_t *ciphertext,
crypto_key_t *key, crypto_ctx_template_t tmpl, crypto_data_t *plaintext,
crypto_call_req_t *crq)
@@ -606,155 +240,7 @@ retry:
return (error);
}
-/*
- * crypto_decrypt_init_prov()
- *
- * Calls crypto_cipher_init_prov() to initialize a decryption operation
- */
-int
-crypto_decrypt_init_prov(crypto_provider_t pd, crypto_session_id_t sid,
- crypto_mechanism_t *mech, crypto_key_t *key,
- crypto_ctx_template_t tmpl, crypto_context_t *ctxp,
- crypto_call_req_t *crq)
-{
- return (crypto_cipher_init_prov(pd, sid, mech, key, tmpl, ctxp, crq,
- CRYPTO_FG_DECRYPT));
-}
-
-/*
- * crypto_decrypt_init()
- *
- * Calls crypto_cipher_init() to initialize a decryption operation
- */
-int
-crypto_decrypt_init(crypto_mechanism_t *mech, crypto_key_t *key,
- crypto_ctx_template_t tmpl, crypto_context_t *ctxp,
- crypto_call_req_t *crq)
-{
- return (crypto_cipher_init(mech, key, tmpl, ctxp, crq,
- CRYPTO_FG_DECRYPT));
-}
-
-/*
- * crypto_decrypt_update()
- *
- * Arguments:
- * context: A crypto_context_t initialized by decrypt_init().
- * ciphertext: The message part to be decrypted
- * plaintext: Storage for the decrypted message part.
- * cr: crypto_call_req_t calling conditions and call back info.
- *
- * Description:
- * Asynchronously submits a request for, or synchronously performs a
- * part of an decryption operation.
- *
- * Context:
- * Process or interrupt, according to the semantics dictated by the 'cr'.
- *
- * Returns:
- * See comment in the beginning of the file.
- */
-int
-crypto_decrypt_update(crypto_context_t context, crypto_data_t *ciphertext,
- crypto_data_t *plaintext, crypto_call_req_t *cr)
-{
- crypto_ctx_t *ctx = (crypto_ctx_t *)context;
- kcf_context_t *kcf_ctx;
- kcf_provider_desc_t *pd;
- int error;
- kcf_req_params_t params;
-
- if ((ctx == NULL) ||
- ((kcf_ctx = (kcf_context_t *)ctx->cc_framework_private) == NULL) ||
- ((pd = kcf_ctx->kc_prov_desc) == NULL)) {
- return (CRYPTO_INVALID_CONTEXT);
- }
-
- /* The fast path for SW providers. */
- if (CHECK_FASTPATH(cr, pd)) {
- error = KCF_PROV_DECRYPT_UPDATE(pd, ctx, ciphertext,
- plaintext, NULL);
- KCF_PROV_INCRSTATS(pd, error);
- return (error);
- }
-
- /* Check if we should use a software provider for small jobs */
- if ((ctx->cc_flags & CRYPTO_USE_OPSTATE) && cr == NULL) {
- if (ciphertext->cd_length < kcf_ctx->kc_mech->me_threshold &&
- kcf_ctx->kc_sw_prov_desc != NULL &&
- KCF_IS_PROV_USABLE(kcf_ctx->kc_sw_prov_desc)) {
- pd = kcf_ctx->kc_sw_prov_desc;
- }
- }
-
- KCF_WRAP_DECRYPT_OPS_PARAMS(&params, KCF_OP_UPDATE,
- ctx->cc_session, NULL, NULL, ciphertext, plaintext, NULL);
- error = kcf_submit_request(pd, ctx, cr, &params);
-
- return (error);
-}
-
-/*
- * crypto_decrypt_final()
- *
- * Arguments:
- * context: A crypto_context_t initialized by decrypt_init().
- * plaintext: Storage for the last part of the decrypted message
- * cr: crypto_call_req_t calling conditions and call back info.
- *
- * Description:
- * Asynchronously submits a request for, or synchronously performs the
- * final part of a decryption operation.
- *
- * Context:
- * Process or interrupt, according to the semantics dictated by the 'cr'.
- *
- * Returns:
- * See comment in the beginning of the file.
- */
-int
-crypto_decrypt_final(crypto_context_t context, crypto_data_t *plaintext,
- crypto_call_req_t *cr)
-{
- crypto_ctx_t *ctx = (crypto_ctx_t *)context;
- kcf_context_t *kcf_ctx;
- kcf_provider_desc_t *pd;
- int error;
- kcf_req_params_t params;
-
- if ((ctx == NULL) ||
- ((kcf_ctx = (kcf_context_t *)ctx->cc_framework_private) == NULL) ||
- ((pd = kcf_ctx->kc_prov_desc) == NULL)) {
- return (CRYPTO_INVALID_CONTEXT);
- }
-
- /* The fast path for SW providers. */
- if (CHECK_FASTPATH(cr, pd)) {
- error = KCF_PROV_DECRYPT_FINAL(pd, ctx, plaintext,
- NULL);
- KCF_PROV_INCRSTATS(pd, error);
- } else {
- KCF_WRAP_DECRYPT_OPS_PARAMS(&params, KCF_OP_FINAL,
- ctx->cc_session, NULL, NULL, NULL, plaintext, NULL);
- error = kcf_submit_request(pd, ctx, cr, &params);
- }
-
- /* Release the hold done in kcf_new_ctx() during init step. */
- KCF_CONTEXT_COND_RELEASE(error, kcf_ctx);
- return (error);
-}
-
#if defined(_KERNEL)
-EXPORT_SYMBOL(crypto_encrypt_prov);
EXPORT_SYMBOL(crypto_encrypt);
-EXPORT_SYMBOL(crypto_encrypt_init_prov);
-EXPORT_SYMBOL(crypto_encrypt_init);
-EXPORT_SYMBOL(crypto_encrypt_update);
-EXPORT_SYMBOL(crypto_encrypt_final);
-EXPORT_SYMBOL(crypto_decrypt_prov);
EXPORT_SYMBOL(crypto_decrypt);
-EXPORT_SYMBOL(crypto_decrypt_init_prov);
-EXPORT_SYMBOL(crypto_decrypt_init);
-EXPORT_SYMBOL(crypto_decrypt_update);
-EXPORT_SYMBOL(crypto_decrypt_final);
#endif