[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150524033420.GC20656@gondor.apana.org.au>
Date: Sun, 24 May 2015 11:34:20 +0800
From: Herbert Xu <herbert@...dor.apana.org.au>
To: Stephan Mueller <smueller@...onox.de>
Cc: Linux Crypto Mailing List <linux-crypto@...r.kernel.org>,
netdev@...r.kernel.org, "David S. Miller" <davem@...emloft.net>,
Johannes Berg <johannes@...solutions.net>,
Marcel Holtmann <marcel@...tmann.org>,
Steffen Klassert <steffen.klassert@...unet.com>
Subject: Re: [v2 PATCH 13/13] crypto: algif_aead - Switch to new AEAD
interface
On Sat, May 23, 2015 at 08:04:19PM +0200, Stephan Mueller wrote:
> Am Freitag, 22. Mai 2015, 16:31:04 schrieb Herbert Xu:
>
> Hi Herbert,
>
> > This patch makes use of the new AEAD interface which uses a single
> > SG list instead of separate lists for the AD and plain text.
>
> After applying your additional patch, the "normal" AEAD operation works.
>
> But with long messages (16 filled pages), I get the following. To test, simply
> use [1], cd libkcapi/test, compile and execute ./kcapi -y
Thanks for testing!
Does this patch help?
diff --git a/crypto/algif_aead.c b/crypto/algif_aead.c
index a483a6f..1d08483 100644
--- a/crypto/algif_aead.c
+++ b/crypto/algif_aead.c
@@ -494,11 +494,11 @@ static int aead_recvmsg(struct socket *sock, struct msghdr *msg, size_t ignored,
else if (outlen)
/* AD size is non-zero */
scatterwalk_crypto_chain(
- dst, ctx->rsgl[0].sg,
+ dst + i - 1, ctx->rsgl[0].sg,
sg_page(ctx->rsgl[0].sg) == sg_page(dst + i - 1) &&
ctx->rsgl[0].sg[0].offset == dst[i - 1].offset +
dst[i - 1].length,
- i + 1);
+ 2);
else
/* AD only */
sg_mark_end(dst + i);
Cheers,
--
Email: Herbert Xu <herbert@...dor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists