x86/fpu/signal: Clarify exception handling in restore_fpregs_from_user()
authorThomas Gleixner <tglx@linutronix.de>
Wed, 8 Sep 2021 13:29:26 +0000 (15:29 +0200)
committerBorislav Petkov <bp@suse.de>
Mon, 13 Sep 2021 16:26:05 +0000 (18:26 +0200)
commit4339d0c63c2d5bea1fe6de4091ee2fe9eeea09a7
tree68310967ab63e1ede2137f5784dab425aa52d089
parent0c2e62ba04cd0b7194b380bae4fc35c45bb2e46e
x86/fpu/signal: Clarify exception handling in restore_fpregs_from_user()

FPU restore from a signal frame can trigger various exceptions. The
exceptions are caught with an exception table entry. The handler of this
entry stores the trap number in EAX. The FPU specific fixup negates that
trap number to convert it into an negative error code.

Any other exception than #PF is fatal and recovery is not possible. This
relies on the fact that the #PF exception number is the same as EFAULT, but
that's not really obvious.

Remove the negation from the exception fixup as it really has no value and
check for X86_TRAP_PF at the call site.

There is still confusion due to the return code conversion for the error
case which will be cleaned up separately.

Suggested-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20210908132525.506192488@linutronix.de
arch/x86/include/asm/fpu/internal.h
arch/x86/kernel/fpu/signal.c