Re: [PATCH] crypto: geode-aes - convert to skcipher API and make thread-safe

2019-10-20 Thread Gert Robben
Op 11-10-2019 om 06:51 schreef Eric Biggers: From: Eric Biggers The geode AES driver is heavily broken because it stores per-request state in the transform context. So it will crash or produce the wrong result if used by any of the many places in the kernel that issue concurrent requests for t

Re: [PATCH] crypto: geode-aes - convert to skcipher API and make thread-safe

2019-10-18 Thread Herbert Xu
On Thu, Oct 10, 2019 at 09:51:32PM -0700, Eric Biggers wrote: > From: Eric Biggers > > The geode AES driver is heavily broken because it stores per-request > state in the transform context. So it will crash or produce the wrong > result if used by any of the many places in the kernel that issue

[PATCH] crypto: geode-aes - convert to skcipher API and make thread-safe

2019-10-10 Thread Eric Biggers
From: Eric Biggers The geode AES driver is heavily broken because it stores per-request state in the transform context. So it will crash or produce the wrong result if used by any of the many places in the kernel that issue concurrent requests for the same transform object. This driver is also