lkml.org 
[lkml]   [2018]   [Aug]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [RFC] crypto: Remove mcryptd
On Thu, Aug 09, 2018 at 07:40:33PM -0700, Megha Dey wrote:
>
> 1.
> @@ -495,7 +534,10 @@ static void cryptd_skcipher_encrypt(struct
> crypto_async_request *base,
> skcipher_request_set_crypt(subreq, req->src, req->dst,
> req->cryptlen, req->iv);
>
> - err = crypto_skcipher_encrypt(subreq);
> + subreq->base.data = req->base.data;
> + subreq->base.complete = rctx->complete;
> + rctx->desc = *subreq;
> + err = crypto_skcipher_encrypt(&rctx->desc);
> skcipher_request_zero(subreq);
>
> This change is necessary because for the multibuffer algorithms, the
> inner algorithm needs a pointer to the original request. In the slow
> path, since we allocate a skcipher_request on the stack, there is no
> easy way to retrieve the request. In the mcryptd_layer, we had extra
> logic to store this pointer.

Why do you need the original request?

I think the fact that you need this at all indicates that you're
not using cryptd correctly. cryptd should be completely transparent
to the underlying algorithm. All it's doing is making sure that
the underlying algorithm gets called in a context that allows SIMD
use.

> Lastly, for hashes, we have
> struct cryptd_hash_request_ctx {
> crypto_completion_t complete;
> struct shash_desc desc;
> };
>
> If we were to use this(with the added fields for multibuffer), we should
> update the shash_desc to ahash_request since we are an async algorithm
> right?

That's a good point. More importantly, you also need to extend
cryptd to allow an ASYNC underlying algorithm, for skcipher as well
as hashes. This is not as simple as just modifying the type/mask
during algorithm creation. But you also need to modify the run-time
(e.g., cryptd_skcipher_encrypt) to defer the completion in case of an
async return value.

The same change also needs to be made to crypto/simd.c, but at least
there the run-time doesn't need any changes AFAICS.

Thanks,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

\
 
 \ /
  Last update: 2018-08-16 08:55    [W:0.073 / U:0.344 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site