From: Stephan Mueller <smueller@chronox.de>
To: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Linux Crypto Mailing List <linux-crypto@vger.kernel.org>
Subject: Re: crypto: algif_aead - Switch to new AEAD interface
Date: Fri, 29 May 2015 16:50:50 +0200 [thread overview]
Message-ID: <4167986.EDUjNpGSba@tauon> (raw)
In-Reply-To: <20150529132840.GA20596@gondor.apana.org.au>
Am Freitag, 29. Mai 2015, 21:28:40 schrieb Herbert Xu:
Hi Herbert,
>On Fri, May 29, 2015 at 12:09:35PM +0200, Stephan Mueller wrote:
>> > - return (ctx->used >= (ctx->aead_assoclen + (ctx->enc ? 0 : as)));
>> > + return ctx->used >= ctx->aead_assoclen + as;
>>
>> This change requires that the buffer handed in by user space always has
>> room
>> for the tag, regardless whether it is needed or not. Is that intended?
>
>Yes for two reasons. One is that sometimes we need to enforce
>in-place processing, in which case dst must be at least as big
>as src. The other reason is to eventually allow in-place processing
>through algif_aead. Unless the two SG lists were of the same length,
>it isn't possible to do that.
Do we really need to copy in and copy out unneeded data? That sounds very
inefficient. Besides, can't we leave it to user space to build the right
memory structure? I.e. if user space wants in-place operation, it needs to
ensure that the one buffer is sufficient for the requested operation (i.e.
that the requirements for src lengths and dst lengths are covered).
>> However, when use those changes and I perform the test of
>> libkcapi/test/kcapi -y -s, I get the following strange crash which i have
>> no idea where to look for the cause (normal sendmsg and vmsplice tests
>> with libkcapi/test/kcapi -y and libkcapi/test/kcapi -y -v work flawless)
>
>This is clearly not good. It looks like memory corruption.
It seems it is triggered by my change suggestions. It is triggered in the
while() loop in the recvmsg when allocating an output buffer larger than 16
pages. So, this is nothing in the current upstream code.
Ciao
Stephan
next prev parent reply other threads:[~2015-05-29 14:51 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-27 9:24 crypto: algif_aead - Switch to new AEAD interface Herbert Xu
2015-05-27 10:10 ` Stephan Mueller
2015-05-27 10:14 ` Herbert Xu
2015-05-29 10:09 ` Stephan Mueller
2015-05-29 13:28 ` Herbert Xu
2015-05-29 14:50 ` Stephan Mueller [this message]
2015-05-29 21:32 ` Stephan Mueller
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=4167986.EDUjNpGSba@tauon \
--to=smueller@chronox.de \
--cc=herbert@gondor.apana.org.au \
--cc=linux-crypto@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.