]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
sparc64: Fix FPU register corruption with AES crypto offload.
authorDavid S. Miller <davem@davemloft.net>
Wed, 15 Oct 2014 02:37:58 +0000 (19:37 -0700)
committerJiri Slaby <jslaby@suse.cz>
Fri, 31 Oct 2014 14:05:21 +0000 (15:05 +0100)
commitdf4ef7bad4c314681dcfed13be5d959d47a3dfc9
tree976ee8da5ebc280cd0228613114433c8e2ba6397
parent91d02cb077c3a3984316a530bf65c240e5601901
sparc64: Fix FPU register corruption with AES crypto offload.

[ Upstream commit f4da3628dc7c32a59d1fb7116bb042e6f436d611 ]

The AES loops in arch/sparc/crypto/aes_glue.c use a scheme where the
key material is preloaded into the FPU registers, and then we loop
over and over doing the crypt operation, reusing those pre-cooked key
registers.

There are intervening blkcipher*() calls between the crypt operation
calls.  And those might perform memcpy() and thus also try to use the
FPU.

The sparc64 kernel FPU usage mechanism is designed to allow such
recursive uses, but with a catch.

There has to be a trap between the two FPU using threads of control.

The mechanism works by, when the FPU is already in use by the kernel,
allocating a slot for FPU saving at trap time.  Then if, within the
trap handler, we try to use the FPU registers, the pre-trap FPU
register state is saved into the slot.  Then at trap return time we
notice this and restore the pre-trap FPU state.

Over the long term there are various more involved ways we can make
this work, but for a quick fix let's take advantage of the fact that
the situation where this happens is very limited.

All sparc64 chips that support the crypto instructiosn also are using
the Niagara4 memcpy routine, and that routine only uses the FPU for
large copies where we can't get the source aligned properly to a
multiple of 8 bytes.

We look to see if the FPU is already in use in this context, and if so
we use the non-large copy path which only uses integer registers.

Furthermore, we also limit this special logic to when we are doing
kernel copy, rather than a user copy.

Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/include/asm/visasm.h
arch/sparc/lib/NG4memcpy.S