linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Van Leeuwen, Pascal" <pvanleeuwen@rambus.com>
To: Stephan Mueller <smueller@chronox.de>
Cc: Eric Biggers <ebiggers@kernel.org>,
	Gilad Ben-Yossef <gilad@benyossef.com>,
	Herbert Xu <herbert@gondor.apana.org.au>,
	Linux Crypto Mailing List <linux-crypto@vger.kernel.org>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	David Miller <davem@davemloft.net>,
	Ofir Drang <Ofir.Drang@arm.com>
Subject: RE: Possible issue with new inauthentic AEAD in extended crypto tests
Date: Wed, 29 Jan 2020 08:40:28 +0000	[thread overview]
Message-ID: <CY4PR0401MB365296BC605383E0C0506C04C3050@CY4PR0401MB3652.namprd04.prod.outlook.com> (raw)
In-Reply-To: <11489dad16d64075939db69181b5ecbb@MN2PR20MB2973.namprd20.prod.outlook.com>

Hi Stephan,

> -----Original Message-----
> From: linux-crypto-owner@vger.kernel.org <linux-crypto-owner@vger.kernel.org> On Behalf Of Stephan Mueller
> Sent: Wednesday, January 29, 2020 2:27 AM
> To: Van Leeuwen, Pascal <pvanleeuwen@rambus.com>
> Cc: Eric Biggers <ebiggers@kernel.org>; Gilad Ben-Yossef <gilad@benyossef.com>; Herbert Xu <herbert@gondor.apana.org.au>;
> Linux Crypto Mailing List <linux-crypto@vger.kernel.org>; Geert Uytterhoeven <geert@linux-m68k.org>; David Miller
> <davem@davemloft.net>; Ofir Drang <Ofir.Drang@arm.com>
> Subject: Re: Possible issue with new inauthentic AEAD in extended crypto tests
>
> <<< External Email >>>
> CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the
> sender/sender address and know the content is safe.
>
>
> Am Mittwoch, 29. Januar 2020, 01:18:29 CET schrieb Van Leeuwen, Pascal:
>
> Hi Pascal,
>
> > > -----Original Message-----
> > > From: linux-crypto-owner@vger.kernel.org
> > > <linux-crypto-owner@vger.kernel.org> On Behalf Of Eric Biggers
>  Sent:
> > > Tuesday, January 28, 2020 10:13 PM
> > > To: Gilad Ben-Yossef <gilad@benyossef.com>
> > > Cc: Herbert Xu <herbert@gondor.apana.org.au>; Stephan Mueller
> > > <smueller@chronox.de>; Linux Crypto Mailing List <linux-
> > > crypto@vger.kernel.org>; Geert Uytterhoeven <geert@linux-m68k.org>; David
> > > Miller <davem@davemloft.net>; Ofir Drang <Ofir.Drang@arm.com>
> > > Subject: Re: Possible issue with new inauthentic AEAD in extended crypto
> > > tests
> >
> > >
> > >
> > > <<< External Email >>>
> > > CAUTION: This email originated from outside of the organization. Do not
> > > click links or open attachments unless you recognize the
>  sender/sender
> > > address and know the content is safe.
> > >
> > >
> > >
> > >
> > > On Tue, Jan 28, 2020 at 09:24:25AM +0200, Gilad Ben-Yossef wrote:
> > >
> > > > - The source is presumed to have enough room for both the associated
> > > > data and the plaintext.
> > > > - Unless it's in-place encryption, in which case, you also presume to
> > > > have room for the authentication tag
> > >
> > >
> > >
> > > The authentication tag is part of the ciphertext, not the plaintext.  So
> > > the
>  rule is just that the ciphertext buffer needs to have room for it,
> > > not the plaintext.
> > >
> > >
> > >
> > > Of course, when doing in-place encryption/decryption, the two buffers are
> > > the
>  same, so both will have room for it, even though the tag is only
> > > meaningful on the ciphertext side.  That's just the logical consequence
> > > of "in-place".>
> > >
> > >
> > > > - The only way to tell if this is in-place encryption or not is to
> > > > compare the pointers to the source and destination - there is no flag.
> > >
> > >
> > >
> > > Requiring users to remember to provide a flag to indicate in-place
> > > encryption/decryption, in addition to passing the same scatterlist, would
> > > make
>  the API more complex.
> > >
> > >
> >
> > Also, what would the benefit? You'd still have to compare the flag. The
> > performance
>  difference of comparing the flag vs comparing 2 pointers (that
> > you need to read anyway) is likely completely negligible on most modern CPU
> > architectures ...
> >
> > > > - You can count on the scattergather list not having  a first NULL
> > > > buffer, *unless* the plaintext and associated data length are both
> > > > zero AND it's not in place encryption.
> > > > - You can count on not getting NULL as a scatterlist point, *unless*
> > > > the plaintext and associated data length are both zero AND it's not in
> > > > place encryption. (I'm actually unsure of this one?)
> > >
> > >
> > >
> > > If we consider that the input is not just a scatterlist, but rather a
> > > scatterlist and a length, then these observations are really just "you
> > > can
> > > access the first byte, unless the length is 0" -- which is sort of
> > > obvious.  And requiring a dereferencable pointer for length = 0 is
> > > generally considered to be bad API design; see the memcpy() fiasco
> > > (https://www.imperialviolet.org/2016/06/26/nonnull.html).
> > >
> > >
> > >
> > > The API could be simplified by only supporting full scatterlists, but it
> > > seems that users are currently relying on being able to encrypt/decrypt
> > > just a prefix.>
> > >
> > >
> > > IMO, the biggest problems with the AEAD API are actually things you
> > > didn't
> > > mention, such as the fact that the AAD isn't given in a separate
> > > scatterlist,
> >
> > >
> >
> > While I can understand this may be beneficial in some cases, I believe they
> > do not
> > outweigh the downsides:
> > - In many use cases, AAD+cipher text are stored as one contiguous string.
>
> Then refer to that one linear buffer with one SGL entry.
>
Hmm ... I believe having a seperate scatter list for AAD would imply that you have
seperate scatter entries for AAD (in that list) and Crypto[+TAG] (in the other list).
So you still have the burden of constructing 2 scatterlists instead of one, figuring
out where the second one starts. Plus the burden of any hardware accelerator
having to handle 2 particles instead of one.

Note that even with one scatterlist you can still have the AAD data coming from
some specific AAD-only buffer(s). Just put it it its own (set of) particle(s), seperate
from the crypto data particles. So that is not a reason to have seperate *lists*.

The only advantage of having AAD seperate I can think of is for software
crypto implementations, not having to skip over the AAD for the scatterlist they
send to the parallel encryption part. Which IMHO is only a minor inconvenience
that you shouldn't push to all the users of the API.

> > Requiring this
> > string to be spit into seperate particles for AAD and
> > ciphertext would be a burden.
>
> There is no need to split a string. All that is said is that the SGL needs to
> point to memory that is AAD||PT or AAD||CT||TAG. There is no statement about
> the number of SGL entries to point to these buffer(s). So you could have one
> linear buffer for these components pointing to it with an SGL holding one
> entry.
>
The remark I responded to was about having a seperate scatterlist for AAD data.
Which, in my world, implies that the *other* scatterlist does NOT include the AAD
data. So that one would then need to be only PT or CT||TAG. Which does require
"splitting the string" (virtually, anyway) between AAD and PT/CT.

It's not about splitting the data physically (i.e. moving it). It's about splitting the
particles, creating 2 particles (in 2 lists) where you would now only need 1.

> > - For hardware accelerators, there is a cost
> > associated with each additional particle, in terms of either bandwidth or
> > performance or both. So less particles = better, generally.
> > The only thing that I find odd is that if you do a non-inplace operation you
> > have this
> > undefined(?) gap in the output data where the AAD would be for
> > inplace. That makes little sense to me and requires extra effort to skip
> > over in the driver.
> >
> > > and that the API only supports scatterlists and not virtual addresses
> > > (which makes it difficult to use in some cases).
> > >
> > >
> >
> > While I can understand that this is difficult if the API user just got this
> > virtual address
>  provided from somewhere else and needs to do the
> > translation, the other side of the medal is that any hardware driver would
> > otherwise have to do address translation and scatterlist building on the
> > fly (as hardware needs to access contiguous physical memory), which would
> > be real burden there. While many API users_are_ able to provide a nice
> > scatterlist at negligible extra cost. So why burden those?
> >
> >
> > > In any case we do need much better documentation.  I'm planning to improve
> > > some
>  of the crypto API documentation, but I'll probably do the hash and
> > > skcipher algorithm types first before getting to AEAD.  So if you want to
> > > improve the AEAD documentation in the mean time, please go ahead.
> > >
> > >
> > >
> > > - Eric
> >
> >
> > Regards,
> > Pascal van Leeuwen
> > Silicon IP Architect Multi-Protocol Engines, Rambus Security
> > Rambus ROTW Holding BV
> > +31-73 6581953
> >
> > Note: The Inside Secure/Verimatrix Silicon IP team was recently acquired by
> > Rambus.
>  Please be so kind to update your e-mail address book with my new
> > e-mail address.
> >
> > ** This message and any attachments are for the sole use of the intended
> > recipient(s). It may contain information that is confidential and
> > privileged. If you are not the intended recipient of this message, you are
> > prohibited from printing, copying, forwarding or saving it. Please delete
> > the message and attachments and notify the sender immediately. **
>
> > Rambus Inc.<http://www.rambus.com>
>
>
>
> Ciao
> Stephan

Regards,
Pascal van Leeuwen
Silicon IP Architect Multi-Protocol Engines, Rambus Security
Rambus ROTW Holding BV
+31-73 6581953

Note: The Inside Secure/Verimatrix Silicon IP team was recently acquired by Rambus.
Please be so kind to update your e-mail address book with my new e-mail address.


** This message and any attachments are for the sole use of the intended recipient(s). It may contain information that is confidential and privileged. If you are not the intended recipient of this message, you are prohibited from printing, copying, forwarding or saving it. Please delete the message and attachments and notify the sender immediately. **

Rambus Inc.<http://www.rambus.com>

  parent reply	other threads:[~2020-01-29  8:40 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-27  8:04 Possible issue with new inauthentic AEAD in extended crypto tests Gilad Ben-Yossef
2020-01-28  2:34 ` Eric Biggers
2020-01-28  3:15   ` Stephan Mueller
2020-01-28  3:38   ` Herbert Xu
2020-01-28  7:24     ` Gilad Ben-Yossef
2020-01-28 21:12       ` Eric Biggers
2020-01-29 11:28         ` Gilad Ben-Yossef
     [not found]         ` <2f3e874fae2242d99f4e4095ae42eb75@MN2PR20MB2973.namprd20.prod.outlook.com>
2020-01-29 13:28           ` Van Leeuwen, Pascal
2020-02-05 14:48         ` Gilad Ben-Yossef
2020-02-07  7:27           ` Eric Biggers
2020-02-07  7:56             ` Stephan Mueller
2020-02-07 11:50               ` Gilad Ben-Yossef
2020-02-07 12:29                 ` Stephan Mueller
2020-02-09  8:04                   ` Gilad Ben-Yossef
     [not found]                   ` <7f68982502574b03931e7caad965e76f@MN2PR20MB2973.namprd20.prod.outlook.com>
2020-02-10  8:03                     ` Van Leeuwen, Pascal
     [not found]               ` <3b65754206a049e596efeb76619eef5c@MN2PR20MB2973.namprd20.prod.outlook.com>
2020-02-07 14:30                 ` Van Leeuwen, Pascal
     [not found]             ` <70156395ce424f41949feb13fd9f978b@MN2PR20MB2973.namprd20.prod.outlook.com>
2020-02-07 14:07               ` Van Leeuwen, Pascal
2020-02-07 14:29                 ` Stephan Mueller
2020-02-07 15:36                   ` Van Leeuwen, Pascal
     [not found]                   ` <0795c353d60547539d23cd6db805f579@MN2PR20MB2973.namprd20.prod.outlook.com>
2020-02-07 15:50                     ` Van Leeuwen, Pascal
2020-02-09  8:09                 ` Gilad Ben-Yossef
2020-02-10  8:05                   ` Van Leeuwen, Pascal
2020-02-10 11:04             ` Herbert Xu
     [not found]       ` <b5a529fd1abd46ea881b18c387fcd4dc@MN2PR20MB2973.namprd20.prod.outlook.com>
2020-01-29  0:18         ` Van Leeuwen, Pascal
2020-01-29  1:26           ` Stephan Mueller
     [not found]           ` <11489dad16d64075939db69181b5ecbb@MN2PR20MB2973.namprd20.prod.outlook.com>
2020-01-29  8:40             ` Van Leeuwen, Pascal [this message]
2020-01-29 12:54               ` Stephan Mueller
2020-01-29 13:42                 ` Van Leeuwen, Pascal

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=CY4PR0401MB365296BC605383E0C0506C04C3050@CY4PR0401MB3652.namprd04.prod.outlook.com \
    --to=pvanleeuwen@rambus.com \
    --cc=Ofir.Drang@arm.com \
    --cc=davem@davemloft.net \
    --cc=ebiggers@kernel.org \
    --cc=geert@linux-m68k.org \
    --cc=gilad@benyossef.com \
    --cc=herbert@gondor.apana.org.au \
    --cc=linux-crypto@vger.kernel.org \
    --cc=smueller@chronox.de \
    /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).