From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 44C0AC4332F for ; Fri, 24 Dec 2021 08:52:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1343722AbhLXIwf (ORCPT ); Fri, 24 Dec 2021 03:52:35 -0500 Received: from mga18.intel.com ([134.134.136.126]:47106 "EHLO mga18.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241541AbhLXIwd (ORCPT ); Fri, 24 Dec 2021 03:52:33 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1640335953; x=1671871953; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=dGaRCsOR21Dsv8OoRsP1/HpvNavCNBU1OoLcQ1POUEk=; b=GVQY/Yu2559U4Zyo78YKZ5GwmUHDxD6ssTcfcQ9N6jYMsQprxHmAdeqY ZL4f6mtz162UMVOU/hu22gjavjrIQBgHBOHmM8H1fbSykOHFPmKlTaOAw GWCVNyYrIkVCth4dRwJg98oI4qtglnvCFQz+r81lXa4l4dpAPQeInoM45 2qMXCg1D1aOdeBSXvO5rKUZY+OxGqF8dhoFbHieqaS43xHL8bMb1kAhPz /YBCtJaFsNjufEzIlcXkrxnOtzaybAN6LAbrAobnpFzVxxG2SanzXvNIL WVrgsy5+TMLlDkjxUOreI4lef8tDgFg+wGPSM3p/mKhoWz+4r3YFbSCIs g==; X-IronPort-AV: E=McAfee;i="6200,9189,10207"; a="227796983" X-IronPort-AV: E=Sophos;i="5.88,232,1635231600"; d="scan'208";a="227796983" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Dec 2021 00:52:33 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,232,1635231600"; d="scan'208";a="509107209" Received: from xpf.sh.intel.com ([10.239.182.112]) by orsmga007.jf.intel.com with ESMTP; 24 Dec 2021 00:52:30 -0800 From: Pengfei Xu To: Shuah Khan , linux-kselftest , linux-kernel Cc: Pengfei Xu , Heng Su , Hansen Dave , Luck Tony , Mehta Sohil , Chen Yu C , Andy Lutomirski , Borislav Petkov , Thomas Gleixner Subject: [RFC PATCH v7 2/2] selftests/x86: add xsave test related to process switching Date: Fri, 24 Dec 2021 16:53:23 +0800 Message-Id: X-Mailer: git-send-email 2.31.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org It will change FPU, SSE(XMM), AVX2(YMM), AVX512, PKRU xstates before process switching test to ensure that these xstates have been tested. In order to ensure that the content of xstates is not affected across process switching, this case tests that: 1. The xstates content of the child process should be the same as that of the parent process. 2. The xstates content of the process should be the same across process switching. Signed-off-by: Pengfei Xu --- tools/testing/selftests/x86/Makefile | 3 +- tools/testing/selftests/x86/xsave_fork_test.c | 148 ++++++++++++++++++ 2 files changed, 150 insertions(+), 1 deletion(-) create mode 100644 tools/testing/selftests/x86/xsave_fork_test.c diff --git a/tools/testing/selftests/x86/Makefile b/tools/testing/selftests/x86/Makefile index a9e452b65ba2..049f8ffb2742 100644 --- a/tools/testing/selftests/x86/Makefile +++ b/tools/testing/selftests/x86/Makefile @@ -18,7 +18,7 @@ TARGETS_C_32BIT_ONLY := entry_from_vm86 test_syscall_vdso unwind_vdso \ test_FCMOV test_FCOMI test_FISTTP \ vdso_restorer TARGETS_C_64BIT_ONLY := fsgsbase sysret_rip syscall_numbering \ - corrupt_xstate_header amx xsave_signal_handle + corrupt_xstate_header amx xsave_signal_handle xsave_fork_test # Some selftests require 32bit support enabled also on 64bit systems TARGETS_C_32BIT_NEEDED := ldt_gdt ptrace_syscall @@ -106,3 +106,4 @@ $(OUTPUT)/test_syscall_vdso_32: thunks_32.S $(OUTPUT)/check_initial_reg_state_32: CFLAGS += -Wl,-ereal_start -static $(OUTPUT)/check_initial_reg_state_64: CFLAGS += -Wl,-ereal_start -static $(OUTPUT)/xsave_signal_handle_64: CFLAGS += -mno-sse -mno-mmx -mno-sse2 -mno-avx -mno-pku +$(OUTPUT)/xsave_fork_test_64: CFLAGS += -mno-sse -mno-mmx -mno-sse2 -mno-avx -mno-pku diff --git a/tools/testing/selftests/x86/xsave_fork_test.c b/tools/testing/selftests/x86/xsave_fork_test.c new file mode 100644 index 000000000000..b470020ed368 --- /dev/null +++ b/tools/testing/selftests/x86/xsave_fork_test.c @@ -0,0 +1,148 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * xsave_fork_test.c - XSAVE test with process switching. + * + * XSAVE feature will save/restore xstate, each process on x86 CPUs has it's + * own xstates. The xstates content of process should be same through the + * process switching. + * It tests that: + * 1. The xstates content of the child process should be the same as that of the + * parent process. + * 2. The xstates content of the process should be the same across process + * switching. + * + * Updates: + * - Because it tests FP SSE xstate, in order to prevent GCC from generating any + * FP code by mistake, "-mno-sse -mno-mmx -mno-sse2 -mno-avx -mno-pku" + * compiler parameter was added, it's referred to the parameters for compiling + * the x86 kernel. + * - Remove the use of "kselftest.h", because kselftest.h includes , + * and "stdlib.h" uses sse instructions in it's libc, and this *XSAVE* + * test needs to be compiled without libc sse instructions(-mno-sse). + * - Test code could not use buildin xsave64 in libc without sse, added + * xsave function by instruction way. + * - Every key test action does not use libc(like printf) except syscall until + * it's failed or done. If it's failed, then it will print the failed reason. + * - Use __cpuid_count() instead of native_cpuid(), becasue __cpuid_count() + * was a macro definition function with one instruction in libc and did not + * change xstate. + * - It tests FP, SSE(XMM), YMM, AVX512_opmask, PKRU xstates through process + * switching. + */ + +#define _GNU_SOURCE + +#include +#include +#include +#include +#include +#include +#include + +#include "xsave_common.h" + +void *aligned_alloc(size_t alignment, size_t size); +static unsigned char *xsave_buf0, *xsave_buf1, *xsave_buf2; +static int xsave_size; + +void prepare_environment(void) +{ + xsave_size = get_xsave_size(); + printf("XSAVE_TEST_MASK:0x%x, xsave size:0x%x\n", + XSAVE_TEST_MASK, xsave_size); + check_cpu_capability(); + + /* SDM XSAVE: misalignment to a 64-byte boundary will result in #GP */ + xsave_buf0 = aligned_alloc(64, xsave_size); + if (!xsave_buf0) + execution_failed("aligned_alloc xsave_buf0 failed\n"); + xsave_buf1 = aligned_alloc(64, xsave_size); + if (!xsave_buf1) + execution_failed("aligned_alloc xsave_buf1 failed\n"); + xsave_buf2 = aligned_alloc(64, xsave_size); + if (!xsave_buf2) + execution_failed("aligned_alloc xsave_buf2 failed\n"); +} + +/* Use fork to create pid and trigger process switch test */ +int test_xsave_fork(void) +{ + pid_t child, grandchild; + int status, result[2]; + const char *test_xsave_child = "Child xstate was same as parent"; + const char *test_process_switch = "Xstate after the process switch didn't change"; + uint32_t ui32_change = 0xffff0000; + + populate_xstate_regs(); + xsave(xsave_buf0, XSAVE_TEST_MASK); + child = syscall(SYS_fork); + if (child < 0) + execution_failed("fork failed\n"); + if (child == 0) { + xsave(xsave_buf1, XSAVE_TEST_MASK); + result[0] = compare_xsave_buf(xsave_buf0, xsave_buf1, xsave_size, + test_xsave_child, NO_CHANGE); + + /* + * If the above case fails, print reason for failure, and then xstate + * like xmm, ymm would be cleared by vzeroupper in printf(-mnosse), so + * populate xstates for next test case, otherwise, xmm and ymm xstate + * is all 0, there is no guarantee that xmm, ymm will be restored as + * expected. + */ + populate_xstate_regs(); + xsave(xsave_buf1, XSAVE_TEST_MASK); + + /* fork grandchild will trigger process switching in child process */ + grandchild = syscall(SYS_fork); + if (grandchild == 0) { + printf("Grandchild pid:%d changed it's own xstates\n", getpid()); + change_xstate(ui32_change); + return 0; + } + if (grandchild) { + if (waitpid(grandchild, &status, 0) != grandchild || !WIFEXITED(status)) { + printf("[FAIL]:Grandchild exit with error, status:0x%x\n", + status); + err_num++; + } + } + /* After switch back to child process and check xstate */ + xsave(xsave_buf2, XSAVE_TEST_MASK); + result[1] = compare_xsave_buf(xsave_buf1, xsave_buf2, xsave_size, + test_process_switch, NO_CHANGE); + printf("Child pid:%d check xstate after swtich back\n", getpid()); + + check_result(result[0], test_xsave_child); + check_result(result[1], test_process_switch); + printf("Xstate in process switch test pass[%d/%d], err_num:%d\n", + pass_num, case_num, err_num); + + return 0; + } + + if (child) { + if (waitpid(child, &status, 0) != child || !WIFEXITED(status)) { + printf("[FAIL]:Child exit with error, status:0x%x\n", status); + err_num++; + } + } + + return 0; +} + +int main(void) +{ + cpu_set_t set; + + case_num = 2; + CPU_ZERO(&set); + CPU_SET(0, &set); + sched_setaffinity(getpid(), sizeof(set), &set); + + prepare_environment(); + test_xsave_fork(); + + return 0; +} -- 2.31.1