]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
crypto: marvell - Update transformation context for each dequeued req
authorRomain Perier <romain.perier@free-electrons.com>
Tue, 9 Aug 2016 09:03:18 +0000 (11:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 31 Oct 2016 11:02:09 +0000 (05:02 -0600)
commiteaf23c11fffbcc4f886c1a8346a17d65f8db3525
treeed544a99233362d5eec720e6d22a1b144dab9c8b
parent9c1ea6c6313b6b7bb20e3b184f9a7c99209e6220
crypto: marvell - Update transformation context for each dequeued req

commit 09951d83fc58a6f772de09c08e370f6d9970dbb6 upstream.

So far, sub part of mv_cesa_int was responsible of dequeuing complete
requests, then call the 'cleanup' operation on these reqs and call the
crypto api callback 'complete'. The problem is that the transformation
context 'ctx' is retrieved only once before the while loop. Which means
that the wrong 'cleanup' operation might be called on the wrong type of
cesa requests, it can lead to memory corruptions with this message:

marvell-cesa f1090000.crypto: dma_pool_free cesa_padding, 5a5a5a5a/5a5a5a5a (bad dma)

This commit fixes the issue, by updating the transformation context for
each dequeued cesa request.

Fixes: commit 85030c5168f1 ("crypto: marvell - Add support for chai...")
Signed-off-by: Romain Perier <romain.perier@free-electrons.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/crypto/marvell/cesa.c