mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-12 16:16:27 +07:00
e22438f8e9
On AMD CPUs, SYSRET can return with a valid SS descriptor with
with the hidden attributes set to an unusable state. Make sure
the kernel doesn't let this happen. This detects an
as-yet-unfixed regression.
Note that the 64-bit version of this test fails on AMD CPUs on
all kernel versions, although the issue in the 64-bit case is
much less severe than in the 32-bit case.
Reported-by: Brian Gerst <brgerst@gmail.com>
Tested-by: Denys Vlasenko <dvlasenk@redhat.com>
Signed-off-by: Andy Lutomirski <luto@kernel.org>
Tests: e7d6eefaaa
("x86/vdso32/syscall.S: Do not load __USER32_DS to %ss")
Cc: Alexei Starovoitov <ast@plumgrid.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Denys Vlasenko <vda.linux@googlemail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Will Drewry <wad@chromium.org>
Link: http://lkml.kernel.org/r/resend_4d740841bac383742949e2fefb03982736595087.git.luto@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
.PHONY: all all_32 all_64 check_build32 clean run_tests
|
|
|
|
TARGETS_C_BOTHBITS := sigreturn single_step_syscall sysret_ss_attrs
|
|
|
|
BINARIES_32 := $(TARGETS_C_BOTHBITS:%=%_32)
|
|
BINARIES_64 := $(TARGETS_C_BOTHBITS:%=%_64)
|
|
|
|
CFLAGS := -O2 -g -std=gnu99 -pthread -Wall
|
|
|
|
UNAME_P := $(shell uname -p)
|
|
|
|
# Always build 32-bit tests
|
|
all: all_32
|
|
|
|
# If we're on a 64-bit host, build 64-bit tests as well
|
|
ifeq ($(shell uname -p),x86_64)
|
|
all: all_64
|
|
endif
|
|
|
|
all_32: check_build32 $(BINARIES_32)
|
|
|
|
all_64: $(BINARIES_64)
|
|
|
|
clean:
|
|
$(RM) $(BINARIES_32) $(BINARIES_64)
|
|
|
|
run_tests:
|
|
./run_x86_tests.sh
|
|
|
|
$(TARGETS_C_BOTHBITS:%=%_32): %_32: %.c
|
|
$(CC) -m32 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl
|
|
|
|
$(TARGETS_C_BOTHBITS:%=%_64): %_64: %.c
|
|
$(CC) -m64 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl
|
|
|
|
check_build32:
|
|
@if ! $(CC) -m32 -o /dev/null trivial_32bit_program.c; then \
|
|
echo "Warning: you seem to have a broken 32-bit build" 2>&1; \
|
|
echo "environment. If you are using a Debian-like"; \
|
|
echo " distribution, try:"; \
|
|
echo ""; \
|
|
echo " apt-get install gcc-multilib libc6-i386 libc6-dev-i386"; \
|
|
echo ""; \
|
|
echo "If you are using a Fedora-like distribution, try:"; \
|
|
echo ""; \
|
|
echo " yum install glibc-devel.*i686"; \
|
|
exit 1; \
|
|
fi
|
|
|
|
# Some tests have additional dependencies.
|
|
sysret_ss_attrs_64: thunks.S
|