crypto: cryptd - remove ability to instantiate ablkciphers
authorEric Biggers <ebiggers@google.com>
Sat, 13 Apr 2019 04:23:52 +0000 (21:23 -0700)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 18 Apr 2019 14:15:04 +0000 (22:15 +0800)
Remove cryptd_alloc_ablkcipher() and the ability of cryptd to create
algorithms with the deprecated "ablkcipher" type.

This has been unused since commit 0e145b477dea ("crypto: ablk_helper -
remove ablk_helper").  Instead, cryptd_alloc_skcipher() is used.

Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/cryptd.c
include/crypto/cryptd.h

index 5640e5d..42533cf 100644 (file)
@@ -65,15 +65,6 @@ struct aead_instance_ctx {
        struct cryptd_queue *queue;
 };
 
-struct cryptd_blkcipher_ctx {
-       atomic_t refcnt;
-       struct crypto_blkcipher *child;
-};
-
-struct cryptd_blkcipher_request_ctx {
-       crypto_completion_t complete;
-};
-
 struct cryptd_skcipher_ctx {
        atomic_t refcnt;
        struct crypto_sync_skcipher *child;
@@ -216,129 +207,6 @@ static inline void cryptd_check_internal(struct rtattr **tb, u32 *type,
        *mask |= algt->mask & CRYPTO_ALG_INTERNAL;
 }
 
-static int cryptd_blkcipher_setkey(struct crypto_ablkcipher *parent,
-                                  const u8 *key, unsigned int keylen)
-{
-       struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(parent);
-       struct crypto_blkcipher *child = ctx->child;
-       int err;
-
-       crypto_blkcipher_clear_flags(child, CRYPTO_TFM_REQ_MASK);
-       crypto_blkcipher_set_flags(child, crypto_ablkcipher_get_flags(parent) &
-                                         CRYPTO_TFM_REQ_MASK);
-       err = crypto_blkcipher_setkey(child, key, keylen);
-       crypto_ablkcipher_set_flags(parent, crypto_blkcipher_get_flags(child) &
-                                           CRYPTO_TFM_RES_MASK);
-       return err;
-}
-
-static void cryptd_blkcipher_crypt(struct ablkcipher_request *req,
-                                  struct crypto_blkcipher *child,
-                                  int err,
-                                  int (*crypt)(struct blkcipher_desc *desc,
-                                               struct scatterlist *dst,
-                                               struct scatterlist *src,
-                                               unsigned int len))
-{
-       struct cryptd_blkcipher_request_ctx *rctx;
-       struct cryptd_blkcipher_ctx *ctx;
-       struct crypto_ablkcipher *tfm;
-       struct blkcipher_desc desc;
-       int refcnt;
-
-       rctx = ablkcipher_request_ctx(req);
-
-       if (unlikely(err == -EINPROGRESS))
-               goto out;
-
-       desc.tfm = child;
-       desc.info = req->info;
-       desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
-
-       err = crypt(&desc, req->dst, req->src, req->nbytes);
-
-       req->base.complete = rctx->complete;
-
-out:
-       tfm = crypto_ablkcipher_reqtfm(req);
-       ctx = crypto_ablkcipher_ctx(tfm);
-       refcnt = atomic_read(&ctx->refcnt);
-
-       local_bh_disable();
-       rctx->complete(&req->base, err);
-       local_bh_enable();
-
-       if (err != -EINPROGRESS && refcnt && atomic_dec_and_test(&ctx->refcnt))
-               crypto_free_ablkcipher(tfm);
-}
-
-static void cryptd_blkcipher_encrypt(struct crypto_async_request *req, int err)
-{
-       struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(req->tfm);
-       struct crypto_blkcipher *child = ctx->child;
-
-       cryptd_blkcipher_crypt(ablkcipher_request_cast(req), child, err,
-                              crypto_blkcipher_crt(child)->encrypt);
-}
-
-static void cryptd_blkcipher_decrypt(struct crypto_async_request *req, int err)
-{
-       struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(req->tfm);
-       struct crypto_blkcipher *child = ctx->child;
-
-       cryptd_blkcipher_crypt(ablkcipher_request_cast(req), child, err,
-                              crypto_blkcipher_crt(child)->decrypt);
-}
-
-static int cryptd_blkcipher_enqueue(struct ablkcipher_request *req,
-                                   crypto_completion_t compl)
-{
-       struct cryptd_blkcipher_request_ctx *rctx = ablkcipher_request_ctx(req);
-       struct crypto_ablkcipher *tfm = crypto_ablkcipher_reqtfm(req);
-       struct cryptd_queue *queue;
-
-       queue = cryptd_get_queue(crypto_ablkcipher_tfm(tfm));
-       rctx->complete = req->base.complete;
-       req->base.complete = compl;
-
-       return cryptd_enqueue_request(queue, &req->base);
-}
-
-static int cryptd_blkcipher_encrypt_enqueue(struct ablkcipher_request *req)
-{
-       return cryptd_blkcipher_enqueue(req, cryptd_blkcipher_encrypt);
-}
-
-static int cryptd_blkcipher_decrypt_enqueue(struct ablkcipher_request *req)
-{
-       return cryptd_blkcipher_enqueue(req, cryptd_blkcipher_decrypt);
-}
-
-static int cryptd_blkcipher_init_tfm(struct crypto_tfm *tfm)
-{
-       struct crypto_instance *inst = crypto_tfm_alg_instance(tfm);
-       struct cryptd_instance_ctx *ictx = crypto_instance_ctx(inst);
-       struct crypto_spawn *spawn = &ictx->spawn;
-       struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(tfm);
-       struct crypto_blkcipher *cipher;
-
-       cipher = crypto_spawn_blkcipher(spawn);
-       if (IS_ERR(cipher))
-               return PTR_ERR(cipher);
-
-       ctx->child = cipher;
-       tfm->crt_ablkcipher.reqsize =
-               sizeof(struct cryptd_blkcipher_request_ctx);
-       return 0;
-}
-
-static void cryptd_blkcipher_exit_tfm(struct crypto_tfm *tfm)
-{
-       struct cryptd_blkcipher_ctx *ctx = crypto_tfm_ctx(tfm);
-
-       crypto_free_blkcipher(ctx->child);
-}
-
 static int cryptd_init_instance(struct crypto_instance *inst,
                                struct crypto_alg *alg)
 {
@@ -382,67 +250,6 @@ out_free_inst:
        goto out;
 }
 
-static int cryptd_create_blkcipher(struct crypto_template *tmpl,
-                                  struct rtattr **tb,
-                                  struct cryptd_queue *queue)
-{
-       struct cryptd_instance_ctx *ctx;
-       struct crypto_instance *inst;
-       struct crypto_alg *alg;
-       u32 type = CRYPTO_ALG_TYPE_BLKCIPHER;
-       u32 mask = CRYPTO_ALG_TYPE_MASK;
-       int err;
-
-       cryptd_check_internal(tb, &type, &mask);
-
-       alg = crypto_get_attr_alg(tb, type, mask);
-       if (IS_ERR(alg))
-               return PTR_ERR(alg);
-
-       inst = cryptd_alloc_instance(alg, 0, sizeof(*ctx));
-       err = PTR_ERR(inst);
-       if (IS_ERR(inst))
-               goto out_put_alg;
-
-       ctx = crypto_instance_ctx(inst);
-       ctx->queue = queue;
-
-       err = crypto_init_spawn(&ctx->spawn, alg, inst,
-                               CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_ASYNC);
-       if (err)
-               goto out_free_inst;
-
-       type = CRYPTO_ALG_TYPE_ABLKCIPHER | CRYPTO_ALG_ASYNC;
-       if (alg->cra_flags & CRYPTO_ALG_INTERNAL)
-               type |= CRYPTO_ALG_INTERNAL;
-       inst->alg.cra_flags = type;
-       inst->alg.cra_type = &crypto_ablkcipher_type;
-
-       inst->alg.cra_ablkcipher.ivsize = alg->cra_blkcipher.ivsize;
-       inst->alg.cra_ablkcipher.min_keysize = alg->cra_blkcipher.min_keysize;
-       inst->alg.cra_ablkcipher.max_keysize = alg->cra_blkcipher.max_keysize;
-
-       inst->alg.cra_ctxsize = sizeof(struct cryptd_blkcipher_ctx);
-
-       inst->alg.cra_init = cryptd_blkcipher_init_tfm;
-       inst->alg.cra_exit = cryptd_blkcipher_exit_tfm;
-
-       inst->alg.cra_ablkcipher.setkey = cryptd_blkcipher_setkey;
-       inst->alg.cra_ablkcipher.encrypt = cryptd_blkcipher_encrypt_enqueue;
-       inst->alg.cra_ablkcipher.decrypt = cryptd_blkcipher_decrypt_enqueue;
-
-       err = crypto_register_instance(tmpl, inst);
-       if (err) {
-               crypto_drop_spawn(&ctx->spawn);
-out_free_inst:
-               kfree(inst);
-       }
-
-out_put_alg:
-       crypto_mod_put(alg);
-       return err;
-}
-
 static int cryptd_skcipher_setkey(struct crypto_skcipher *parent,
                                  const u8 *key, unsigned int keylen)
 {
@@ -1118,10 +925,6 @@ static int cryptd_create(struct crypto_template *tmpl, struct rtattr **tb)
 
        switch (algt->type & algt->mask & CRYPTO_ALG_TYPE_MASK) {
        case CRYPTO_ALG_TYPE_BLKCIPHER:
-               if ((algt->type & CRYPTO_ALG_TYPE_MASK) ==
-                   CRYPTO_ALG_TYPE_BLKCIPHER)
-                       return cryptd_create_blkcipher(tmpl, tb, &queue);
-
                return cryptd_create_skcipher(tmpl, tb, &queue);
        case CRYPTO_ALG_TYPE_DIGEST:
                return cryptd_create_hash(tmpl, tb, &queue);
@@ -1160,58 +963,6 @@ static struct crypto_template cryptd_tmpl = {
        .module = THIS_MODULE,
 };
 
-struct cryptd_ablkcipher *cryptd_alloc_ablkcipher(const char *alg_name,
-                                                 u32 type, u32 mask)
-{
-       char cryptd_alg_name[CRYPTO_MAX_ALG_NAME];
-       struct cryptd_blkcipher_ctx *ctx;
-       struct crypto_tfm *tfm;
-
-       if (snprintf(cryptd_alg_name, CRYPTO_MAX_ALG_NAME,
-                    "cryptd(%s)", alg_name) >= CRYPTO_MAX_ALG_NAME)
-               return ERR_PTR(-EINVAL);
-       type = crypto_skcipher_type(type);
-       mask &= ~CRYPTO_ALG_TYPE_MASK;
-       mask |= CRYPTO_ALG_TYPE_BLKCIPHER_MASK;
-       tfm = crypto_alloc_base(cryptd_alg_name, type, mask);
-       if (IS_ERR(tfm))
-               return ERR_CAST(tfm);
-       if (tfm->__crt_alg->cra_module != THIS_MODULE) {
-               crypto_free_tfm(tfm);
-               return ERR_PTR(-EINVAL);
-       }
-
-       ctx = crypto_tfm_ctx(tfm);
-       atomic_set(&ctx->refcnt, 1);
-
-       return __cryptd_ablkcipher_cast(__crypto_ablkcipher_cast(tfm));
-}
-EXPORT_SYMBOL_GPL(cryptd_alloc_ablkcipher);
-
-struct crypto_blkcipher *cryptd_ablkcipher_child(struct cryptd_ablkcipher *tfm)
-{
-       struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(&tfm->base);
-       return ctx->child;
-}
-EXPORT_SYMBOL_GPL(cryptd_ablkcipher_child);
-
-bool cryptd_ablkcipher_queued(struct cryptd_ablkcipher *tfm)
-{
-       struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(&tfm->base);
-
-       return atomic_read(&ctx->refcnt) - 1;
-}
-EXPORT_SYMBOL_GPL(cryptd_ablkcipher_queued);
-
-void cryptd_free_ablkcipher(struct cryptd_ablkcipher *tfm)
-{
-       struct cryptd_blkcipher_ctx *ctx = crypto_ablkcipher_ctx(&tfm->base);
-
-       if (atomic_dec_and_test(&ctx->refcnt))
-               crypto_free_ablkcipher(&tfm->base);
-}
-EXPORT_SYMBOL_GPL(cryptd_free_ablkcipher);
-
 struct cryptd_skcipher *cryptd_alloc_skcipher(const char *alg_name,
                                              u32 type, u32 mask)
 {
index 1e64f35..23169f4 100644 (file)
 #include <crypto/hash.h>
 #include <crypto/skcipher.h>
 
-struct cryptd_ablkcipher {
-       struct crypto_ablkcipher base;
-};
-
-static inline struct cryptd_ablkcipher *__cryptd_ablkcipher_cast(
-       struct crypto_ablkcipher *tfm)
-{
-       return (struct cryptd_ablkcipher *)tfm;
-}
-
-/* alg_name should be algorithm to be cryptd-ed */
-struct cryptd_ablkcipher *cryptd_alloc_ablkcipher(const char *alg_name,
-                                                 u32 type, u32 mask);
-struct crypto_blkcipher *cryptd_ablkcipher_child(struct cryptd_ablkcipher *tfm);
-bool cryptd_ablkcipher_queued(struct cryptd_ablkcipher *tfm);
-void cryptd_free_ablkcipher(struct cryptd_ablkcipher *tfm);
-
 struct cryptd_skcipher {
        struct crypto_skcipher base;
 };
 
+/* alg_name should be algorithm to be cryptd-ed */
 struct cryptd_skcipher *cryptd_alloc_skcipher(const char *alg_name,
                                              u32 type, u32 mask);
 struct crypto_skcipher *cryptd_skcipher_child(struct cryptd_skcipher *tfm);