mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Chang S. Bae" <chang.seok.bae@intel.com>
To: Andrei Vagin <avagin@google.com>,
	Thomas Gleixner <tglx@kernel.org>,
	"Ingo Molnar" <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>
Cc: <linux-kernel@vger.kernel.org>, <criu@lists.linux.dev>,
	Dave Hansen <dave.hansen@linux.intel.com>, <x86@kernel.org>,
	Alexander Mikhalitsyn <alexander@mihalicyn.com>,
	"H. Peter Anvin" <hpa@zytor.com>
Subject: Re: [PATCH 8/8] selftests/x86: Add a sigframe insufficient xstate_size test
Date: Wed, 2 Sep 2026 14:16:01 -0700	[thread overview]
Message-ID: <dc72504d-4ea0-436a-9604-51bf55e0cca3@intel.com> (raw)
In-Reply-To: <20260817042048.1579415-9-avagin@google.com>

On 8/16/2026 9:20 PM, Andrei Vagin wrote:
>   
>   /*
> - * This test verifies the FPU portability of the signal frame.
> - * It verifies that the kernel correctly restores the xstate context even
> - * if the frame size has been manually reduced (shrunk), as long as the
> - * FP_XSTATE_MAGIC2 marker is correctly placed.
> + * This test verifies the FPU portability and consistency of the signal frame.
> + *
> + * - test_shrunk_xstate_size:
> + *   Verifies that the kernel restores state from a frame with xstate_size
> + *   shrunk to only include active features.
> + *
> + * - test_insufficient_xstate_size:
> + *   Verifies that the kernel rejects a frame if xstate_size is too small for
> + *   the features enabled in xfeatures.
>    */

...


> +static void handle_insufficient_xstate_size(int sig, siginfo_t *si, void *ucp)
> +{
> +	ucontext_t *uc = ucp;
> +	void *fp = uc->uc_mcontext.fpregs;
> +	struct _fpx_sw_bytes *sw;
> +
> +	if (!fp) {
> +		sig_print("fpregs is NULL\n");
> +		return;
> +	}
> +
> +	sw = get_fpx_sw_bytes(fp);
> +	if (sw->magic1 != FP_XSTATE_MAGIC1) {
> +		sig_print("magic1 is not valid\n");
> +		return;
> +	}
> +
> +	/* The origin frame contains an AVX state. */
> +	sw->xstate_size = XSTATE_SSE_ONLY_SIZE;
> +
> +	*(uint32_t *)(fp + sw->xstate_size) = FP_XSTATE_MAGIC2;
> +}

I think one of the main differences between the two tests is whether
sw->xstate_size is updated with a valid value or not. If that's the 
essential piece to differentiate them, would it better to highlight the 
delta in code?

Right now, they look like two tests that validate orthogonal behaviors 
at glance.

Thanks,
Chang

      reply	other threads:[~2026-09-02 21:16 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-17  4:20 [PATCH v4 0/8] x86/fpu: Restore and reinforce signal frame portability Andrei Vagin
2026-08-17  4:20 ` [PATCH 1/8] x86/fpu: Document " Andrei Vagin
2026-09-02 21:15   ` Chang S. Bae
2026-09-03  4:51   ` Borislav Petkov
2026-08-17  4:20 ` [PATCH 2/8] x86/fpu: Clean up and rename variables in signal frame handling Andrei Vagin
2026-08-17  4:20 ` [PATCH 3/8] x86/fpu: Split __fpu_restore_sig to extract compat path Andrei Vagin
2026-09-02 21:15   ` Chang S. Bae
2026-08-17  4:20 ` [PATCH 4/8] x86/fpu: Document reasoning of FX-only fallback Andrei Vagin
2026-09-02 21:15   ` Chang S. Bae
2026-08-17  4:20 ` [PATCH 5/8] selftests/x86: Add a test for signal frame FPU portability Andrei Vagin
2026-08-17  4:20 ` [PATCH 6/8] x86/fpu: Fix potential underflow in xstate_calculate_size() Andrei Vagin
2026-09-02 21:15   ` Chang S. Bae
2026-08-17  4:20 ` [PATCH 7/8] x86/fpu: Pre-fault only required size of xstate buffer Andrei Vagin
2026-09-02 21:15   ` Chang S. Bae
2026-08-17  4:20 ` [PATCH 8/8] selftests/x86: Add a sigframe insufficient xstate_size test Andrei Vagin
2026-09-02 21:16   ` Chang S. Bae [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=dc72504d-4ea0-436a-9604-51bf55e0cca3@intel.com \
    --to=chang.seok.bae@intel.com \
    --cc=alexander@mihalicyn.com \
    --cc=avagin@google.com \
    --cc=bp@alien8.de \
    --cc=criu@lists.linux.dev \
    --cc=dave.hansen@linux.intel.com \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=tglx@kernel.org \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®