]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
x86/fpu/xstate: Adjust XSAVE buffer size calculation
authorChang S. Bae <chang.seok.bae@intel.com>
Thu, 20 Mar 2025 23:42:54 +0000 (16:42 -0700)
committerIngo Molnar <mingo@kernel.org>
Mon, 14 Apr 2025 06:18:29 +0000 (08:18 +0200)
The current xstate size calculation assumes that the highest-numbered
xstate feature has the highest offset in the buffer, determining the size
based on the topmost bit in the feature mask. However, this assumption is
not architecturally guaranteed -- higher-numbered features may have lower
offsets.

With the introduction of the xfeature order table and its helper macro,
xstate components can now be traversed in their positional order. Update
the non-compacted format handling to iterate through the table to
determine the last-positioned feature. Then, set the offset accordingly.

Since size calculation primarily occurs during initialization or in
non-critical paths, looping to find the last feature is not expected to
have a meaningful performance impact.

Signed-off-by: Chang S. Bae <chang.seok.bae@intel.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Link: https://lore.kernel.org/r/20250320234301.8342-4-chang.seok.bae@intel.com
arch/x86/kernel/fpu/xstate.c

index 1e22103a8e176aaf874a65c7a871e1f683bf3e45..93f94013b094bf37e956b6c87f813a8a86c66a35 100644 (file)
@@ -581,13 +581,20 @@ static bool __init check_xstate_against_struct(int nr)
 static unsigned int xstate_calculate_size(u64 xfeatures, bool compacted)
 {
        unsigned int topmost = fls64(xfeatures) -  1;
-       unsigned int offset = xstate_offsets[topmost];
+       unsigned int offset, i;
 
        if (topmost <= XFEATURE_SSE)
                return sizeof(struct xregs_state);
 
-       if (compacted)
+       if (compacted) {
                offset = xfeature_get_offset(xfeatures, topmost);
+       } else {
+               /* Walk through the xfeature order to pick the last */
+               for_each_extended_xfeature_in_order(i, xfeatures)
+                       topmost = xfeature_uncompact_order[i];
+               offset = xstate_offsets[topmost];
+       }
+
        return offset + xstate_sizes[topmost];
 }