crypto: algapi - Move larval completion into algboss
authorHerbert Xu <herbert@gondor.apana.org.au>
Fri, 22 Jun 2012 12:08:29 +0000 (20:08 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 22 Jun 2012 12:08:29 +0000 (20:08 +0800)
It has been observed that sometimes the crypto allocation code
will get stuck for 60 seconds or multiples thereof.  This is
usually caused by an algorithm failing to pass the self-test.

If an algorithm fails to be constructed, we will immediately notify
all larval waiters.  However, if it succeeds in construction, but
then fails the self-test, we won't notify anyone at all.

This patch fixes this by merging the notification in the case
where the algorithm fails to be constructed with that of the
the case where it pases the self-test.  This way regardless of
what happens, we'll give the larval waiters an answer.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/algapi.c
crypto/algboss.c
crypto/internal.h

index 056571b85445a20bf80f0054c0b2365a666edfde..c3b9bfeeb7ffcf7ab04d11a2c9a1e053da6c972e 100644 (file)
 
 static LIST_HEAD(crypto_template_list);
 
-void crypto_larval_error(const char *name, u32 type, u32 mask)
-{
-       struct crypto_alg *alg;
-
-       alg = crypto_alg_lookup(name, type, mask);
-
-       if (alg) {
-               if (crypto_is_larval(alg)) {
-                       struct crypto_larval *larval = (void *)alg;
-                       complete_all(&larval->completion);
-               }
-               crypto_mod_put(alg);
-       }
-}
-EXPORT_SYMBOL_GPL(crypto_larval_error);
-
 static inline int crypto_set_driver_name(struct crypto_alg *alg)
 {
        static const char suffix[] = "-generic";
@@ -295,7 +279,6 @@ found:
                                continue;
 
                        larval->adult = alg;
-                       complete_all(&larval->completion);
                        continue;
                }
 
index 791d194958fa18ac0fb8006e5d565f789c1e4f92..f97027e7d996b868b790bc5c04f06c758da75b54 100644 (file)
@@ -11,6 +11,7 @@
  */
 
 #include <crypto/internal/aead.h>
+#include <linux/completion.h>
 #include <linux/ctype.h>
 #include <linux/err.h>
 #include <linux/init.h>
@@ -47,6 +48,8 @@ struct cryptomgr_param {
        char larval[CRYPTO_MAX_ALG_NAME];
        char template[CRYPTO_MAX_ALG_NAME];
 
+       struct completion *completion;
+
        u32 otype;
        u32 omask;
 };
@@ -66,7 +69,7 @@ static int cryptomgr_probe(void *data)
 
        tmpl = crypto_lookup_template(param->template);
        if (!tmpl)
-               goto err;
+               goto out;
 
        do {
                if (tmpl->create) {
@@ -83,16 +86,10 @@ static int cryptomgr_probe(void *data)
 
        crypto_tmpl_put(tmpl);
 
-       if (err)
-               goto err;
-
 out:
+       complete(param->completion);
        kfree(param);
        module_put_and_exit(0);
-
-err:
-       crypto_larval_error(param->larval, param->otype, param->omask);
-       goto out;
 }
 
 static int cryptomgr_schedule_probe(struct crypto_larval *larval)
@@ -192,10 +189,14 @@ static int cryptomgr_schedule_probe(struct crypto_larval *larval)
 
        memcpy(param->larval, larval->alg.cra_name, CRYPTO_MAX_ALG_NAME);
 
+       param->completion = &larval->completion;
+
        thread = kthread_run(cryptomgr_probe, param, "cryptomgr_probe");
        if (IS_ERR(thread))
                goto err_free_param;
 
+       wait_for_completion_interruptible(&larval->completion);
+
        return NOTIFY_STOP;
 
 err_free_param:
index b865ca1a8613b33baa9b64ffa6c32b89039f3bf8..9ebedae3fb54abc26a97918b3fe7aaabb2b56b82 100644 (file)
@@ -83,7 +83,6 @@ void crypto_exit_compress_ops(struct crypto_tfm *tfm);
 struct crypto_larval *crypto_larval_alloc(const char *name, u32 type, u32 mask);
 void crypto_larval_kill(struct crypto_alg *alg);
 struct crypto_alg *crypto_larval_lookup(const char *name, u32 type, u32 mask);
-void crypto_larval_error(const char *name, u32 type, u32 mask);
 void crypto_alg_tested(const char *name, int err);
 
 void crypto_remove_spawns(struct crypto_alg *alg, struct list_head *list,
This page took 0.026939 seconds and 5 git commands to generate.