All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch V2 00/14] x86/fpu: Mop up XSAVES and related damage
@ 2021-06-05 23:47 Thomas Gleixner
  2021-06-05 23:47 ` [patch V2 01/14] selftests/x86: Test signal frame XSTATE header corruption handling Thomas Gleixner
                   ` (14 more replies)
  0 siblings, 15 replies; 26+ messages in thread
From: Thomas Gleixner @ 2021-06-05 23:47 UTC (permalink / raw)
  To: LKML
  Cc: x86, Andy Lutomirski, Dave Hansen, Fenghua Yu, Tony Luck,
	Yu-cheng Yu, Sebastian Andrzej Siewior

syszbot reported a warnon for XRSTOR raising #GP:

  https://lore.kernel.org/r/0000000000004c453905c30f8334@google.com

with a syzcaller reproducer and a conclusive bisect result.  It took a
while to destill a simple C reproducer out of it which allowed to pin point
the root cause: The recent addition of supervisor XSTATEs broke the signal
restore path for the case where the signal handler wreckaged the XSTATE on
stack because it does not sanitize the XSTATE header which causes a
subsequent XRSTOR to fail and #GP.

The following series addresses the problem and fixes related issues which
were found while inspecting the related changes.

V1 of this can be found here:

  https://lore.kernel.org/r/20210602095543.149814064@linutronix.de

Changes vs. V1:

  - Address review comments

  - Fix the reported fallout (mostly PKRU and PTRACE). The test cases pass
    now.

  - Address the broken init_fpstate fiddling which was found by deeper
    inspection of the PKRU/XSTATE related code.

Thanks,

	tglx
---

P.S: I picked up Dave's PKRU series from

  https://lore.kernel.org/r/20210603230803.31660AFE@viggo.jf.intel.com

and adopted it to this pile. The result is here:

    https://tglx.de/~tglx/patches-fpu-pkru.tar

There are some fixes at the end which I did no fold back yet and the glibc
PKRU test case with all that applied still fails with:

 ../sysdeps/unix/sysv/linux/tst-pkey.c:377: numeric comparison failure
    left: 1 (0x1); from: result->access_rights[i]
   right: 0 (0x0); from: 0
 ../sysdeps/unix/sysv/linux/tst-pkey.c:382: numeric comparison failure
    left: 1 (0x1); from: result2->access_rights[i]
   right: 0 (0x0); from: 0
 error: 2 test failures

Too tired to analyze that right now, but I wanted to share the work.
     
---
 arch/x86/include/asm/fpu/internal.h                   |   17 --
 arch/x86/include/asm/fpu/xstate.h                     |   10 -
 arch/x86/include/asm/pgtable.h                        |    6 
 arch/x86/include/asm/pkeys.h                          |   11 -
 arch/x86/kernel/cpu/bugs.c                            |    3 
 arch/x86/kernel/cpu/common.c                          |   27 +---
 arch/x86/kernel/fpu/core.c                            |  119 ++++++++++++------
 arch/x86/kernel/fpu/regset.c                          |   45 ++----
 arch/x86/kernel/fpu/signal.c                          |   30 +++-
 arch/x86/kernel/fpu/xstate.c                          |  100 +++++----------
 arch/x86/kernel/process.c                             |   14 +-
 arch/x86/mm/fault.c                                   |    2 
 arch/x86/mm/pkeys.c                                   |   31 ++--
 b/tools/testing/selftests/x86/corrupt_xstate_header.c |  114 +++++++++++++++++
 include/linux/pkeys.h                                 |    2 
 tools/testing/selftests/x86/Makefile                  |    3 
 16 files changed, 334 insertions(+), 200 deletions(-)


^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2021-06-08 14:47 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-05 23:47 [patch V2 00/14] x86/fpu: Mop up XSAVES and related damage Thomas Gleixner
2021-06-05 23:47 ` [patch V2 01/14] selftests/x86: Test signal frame XSTATE header corruption handling Thomas Gleixner
2021-06-05 23:47 ` [patch V2 02/14] x86/fpu: Prevent state corruption in __fpu__restore_sig() Thomas Gleixner
2021-06-07  8:49   ` Borislav Petkov
2021-06-05 23:47 ` [patch V2 03/14] x86/fpu: Invalidate FPU state after a failed XRSTOR from a user buffer Thomas Gleixner
2021-06-05 23:47 ` [patch V2 04/14] x86/pkru: Make the fpinit state update work Thomas Gleixner
2021-06-07 15:18   ` Borislav Petkov
2021-06-05 23:47 ` [patch V2 05/14] x86/fpu: Limit xstate copy size in xstateregs_set() Thomas Gleixner
2021-06-05 23:47 ` [patch V2 06/14] x86/fpu: Sanitize xstateregs_set() Thomas Gleixner
2021-06-07 19:39   ` Borislav Petkov
2021-06-05 23:47 ` [patch V2 07/14] x86/fpu: Add address range checks to copy_user_to_xstate() Thomas Gleixner
2021-06-05 23:47 ` [patch V2 08/14] x86/fpu: Move inlines where they belong Thomas Gleixner
2021-06-05 23:47 ` [patch V2 09/14] x86/cpu: Sanitize X86_FEATURE_OSPKE Thomas Gleixner
2021-06-05 23:47 ` [patch V2 10/14] x86/fpu: Rename fpu__clear_all() to fpu_flush_thread() Thomas Gleixner
2021-06-05 23:47 ` [patch V2 11/14] x86/pkru: Provide pkru_get_init_value() Thomas Gleixner
2021-06-05 23:47 ` [patch V2 12/14] x86/fpu: Clean up the fpu__clear() variants Thomas Gleixner
2021-06-05 23:47 ` [patch V2 13/14] x86/fpu: Rename xstate copy functions which are related to UABI Thomas Gleixner
2021-06-05 23:47 ` [patch V2 14/14] x86/fpu: Deduplicate copy_uabi_from_user/kernel_to_xstate() Thomas Gleixner
2021-06-07 13:02 ` [patch V2 00/14] x86/fpu: Mop up XSAVES and related damage Thomas Gleixner
2021-06-07 13:36   ` Dave Hansen
2021-06-07 14:08     ` Thomas Gleixner
2021-06-07 16:38       ` Dave Hansen
2021-06-07 22:51         ` Thomas Gleixner
2021-06-08 14:47           ` Dave Hansen
2021-06-08 11:17         ` Thomas Gleixner
2021-06-08 12:27           ` Thomas Gleixner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.