From: Stephan Mueller <smueller@chronox.de>
To: Herbert Xu <herbert@gondor.apana.org.au>
Cc: linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3] crypto: remove instance when test failed
Date: Thu, 09 Apr 2015 12:05:14 +0200 [thread overview]
Message-ID: <1948823.Yx9TPYrsU5@tauon> (raw)
In-Reply-To: <20150409094035.GA5327@gondor.apana.org.au>
Am Donnerstag, 9. April 2015, 17:40:35 schrieb Herbert Xu:
Hi Herbert,
>On Thu, Apr 09, 2015 at 11:22:19AM +0200, Stephan Mueller wrote:
>> I tested it and this approach does not work.
>>
>> If I see that right, the reason for that is the following: The suggestion
>> is
>> to grab the ref count at the start of the function followed by a
>> __crypto_register_alg. __crypto_register_alg however sets the refcount to 1
>> unconditionally. That means that the final put of the alg will most likely
>> set the refcount to 0 that causes an issue with all other operations (at
>> least I cannot allocate HMAC or CMAC any more -- the ones I currently
>> test).
>>
>> So, the grabing of the alg must happen after the invocation of
>> __crypto_register_alg.
>
>Well let's move it then.
Perfect. This now works with the changed patch too. I will resend my patch as
v4 -- note that this new patch depends on your patch here as otherwise
instances do not work at all. :-)
>
>---8<---
>crypto: api - Move alg ref count init to crypto_check_alg
>
>We currently initialise the crypto_alg ref count in the function
>__crypto_register_alg. As one of the callers of that function
>crypto_register_instance needs to obtain a ref count before it
>calls __crypto_register_alg, we need to move the initialisation
>out of there.
>
>Since both callers of __crypto_register_alg call crypto_check_alg,
>this is the logical place to perform the initialisation.
>
>Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Acked-by: Stephan Mueller <smueller@chronox.de>
>
>diff --git a/crypto/algapi.c b/crypto/algapi.c
>index f1d0307..1462c68 100644
>--- a/crypto/algapi.c
>+++ b/crypto/algapi.c
>@@ -64,6 +64,8 @@ static int crypto_check_alg(struct crypto_alg *alg)
> if (alg->cra_priority < 0)
> return -EINVAL;
>
>+ atomic_set(&alg->cra_refcnt, 1);
>+
> return crypto_set_driver_name(alg);
> }
>
>@@ -187,7 +189,6 @@ static struct crypto_larval *__crypto_register_alg(struct
>crypto_alg *alg)
>
> ret = -EEXIST;
>
>- atomic_set(&alg->cra_refcnt, 1);
> list_for_each_entry(q, &crypto_alg_list, cra_list) {
> if (q == alg)
> goto err;
Ciao
Stephan
prev parent reply other threads:[~2015-04-09 10:05 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-09 7:36 [PATCH v3] crypto: remove instance when test failed Stephan Mueller
2015-04-09 7:41 ` Herbert Xu
2015-04-09 9:22 ` Stephan Mueller
2015-04-09 9:40 ` Herbert Xu
2015-04-09 10:05 ` Stephan Mueller [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1948823.Yx9TPYrsU5@tauon \
--to=smueller@chronox.de \
--cc=herbert@gondor.apana.org.au \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).