mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
The XSAVE function set is organized in state components, which are a set of registers or parts of registers. So-called XSAVE-supported features are organized using state-component bitmaps, each bit corresponding to a single state component. The Intel Software Developer's Manual uses the term xstate_bv for a state-component bitmap, which is defined as XCR0 | IA32_XSS. The control register XCR0 only contains a state-component bitmap that specifies user state components, while IA32_XSS contains a state-component bitmap that specifies supervisor state components. Until now, XCR0 is used as input for target description creation in GDB. However, a following patch will add userspace support for the CET shadow stack feature by Intel. The CET state is configured in IA32_XSS and consists of 2 state components: - State component 11 used for the 2 MSRs controlling user-mode functionality for CET (CET_U state) - State component 12 used for the 3 MSRs containing shadow-stack pointers for privilege levels 0-2 (CET_S state). Reading the CET shadow stack pointer register on linux requires a separate ptrace call using NT_X86_SHSTK. To pass the CET shadow stack enablement state we would like to pass the xstate_bv value instead of xcr0 for target description creation. To prepare for that, we rename the xcr0 mask values for target description creation to xstate_bv. However, this patch doesn't add any functional changes in GDB. Future states specified in IA32_XSS such as CET will create a combined xstate_bv_mask including xcr0 register value and its corresponding bit in the state component bitmap. This combined mask will then be used to create the target descriptions. Reviewed-By: Thiago Jung Bauermann <thiago.bauermann@linaro.org> Approved-By: Luis Machado <luis.machado@arm.com>
270 lines
7.3 KiB
C
270 lines
7.3 KiB
C
/* Target description related code for GNU/Linux x86 (i386 and x86-64).
|
|
|
|
Copyright (C) 2024-2025 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include "arch/x86-linux-tdesc-features.h"
|
|
|
|
/* A structure used to describe a single xstate feature bit that might, or
|
|
might not, be checked for when creating a target description for one of
|
|
i386, amd64, or x32.
|
|
|
|
The different CPU/ABI types check for different xstate features when
|
|
creating a target description.
|
|
|
|
We want to cache target descriptions, and this is currently done in
|
|
three separate caches, one each for i386, amd64, and x32. Additionally,
|
|
the caching we're discussing here is Linux only. Currently for Linux,
|
|
the only thing that has an impact on target description creation are
|
|
the supported features in xsave which are modelled by a xstate_bv
|
|
value, which has the same format than the state component bitmap.
|
|
|
|
In order to ensure the cache functions correctly we need to filter only
|
|
those xstate_bv feature bits that are relevant, we can then cache
|
|
target descriptions based on the relevant feature bits. Two xstate_bv
|
|
values might be different, but have the same relevant feature bits. In
|
|
this case we would expect the two xstate_bv values to map to the same
|
|
cache entry. */
|
|
|
|
struct x86_xstate_feature {
|
|
/* The xstate feature mask. This is a mask against the state component
|
|
bitmap. */
|
|
uint64_t feature;
|
|
|
|
/* Is this feature checked when creating an i386 target description. */
|
|
bool is_i386;
|
|
|
|
/* Is this feature checked when creating an amd64 target description. */
|
|
bool is_amd64;
|
|
|
|
/* Is this feature checked when creating an x32 target description. */
|
|
bool is_x32;
|
|
};
|
|
|
|
/* A constant table that describes all of the xstate features that are
|
|
checked when building a target description for i386, amd64, or x32.
|
|
|
|
If in the future, due to simplifications or refactoring, this table ever
|
|
ends up with 'true' for every xsave feature on every target type, then
|
|
this is an indication that this table should probably be removed, and
|
|
that the rest of the code in this file can be simplified. */
|
|
|
|
static constexpr x86_xstate_feature x86_linux_all_xstate_features[] = {
|
|
/* Feature, i386, amd64, x32. */
|
|
{ X86_XSTATE_PKRU, true, true, true },
|
|
{ X86_XSTATE_AVX512, true, true, true },
|
|
{ X86_XSTATE_AVX, true, true, true },
|
|
{ X86_XSTATE_SSE, true, false, false },
|
|
{ X86_XSTATE_X87, true, false, false }
|
|
};
|
|
|
|
/* Return a compile time constant which is a mask of all the xstate features
|
|
that are checked for when building an i386 target description. */
|
|
|
|
static constexpr uint64_t
|
|
x86_linux_i386_xstate_bv_feature_mask_1 ()
|
|
{
|
|
uint64_t mask = 0;
|
|
|
|
for (const auto &entry : x86_linux_all_xstate_features)
|
|
if (entry.is_i386)
|
|
mask |= entry.feature;
|
|
|
|
return mask;
|
|
}
|
|
|
|
/* Return a compile time constant which is a mask of all the xstate features
|
|
that are checked for when building an amd64 target description. */
|
|
|
|
static constexpr uint64_t
|
|
x86_linux_amd64_xstate_bv_feature_mask_1 ()
|
|
{
|
|
uint64_t mask = 0;
|
|
|
|
for (const auto &entry : x86_linux_all_xstate_features)
|
|
if (entry.is_amd64)
|
|
mask |= entry.feature;
|
|
|
|
return mask;
|
|
}
|
|
|
|
/* Return a compile time constant which is a mask of all the xstate features
|
|
that are checked for when building an x32 target description. */
|
|
|
|
static constexpr uint64_t
|
|
x86_linux_x32_xstate_bv_feature_mask_1 ()
|
|
{
|
|
uint64_t mask = 0;
|
|
|
|
for (const auto &entry : x86_linux_all_xstate_features)
|
|
if (entry.is_x32)
|
|
mask |= entry.feature;
|
|
|
|
return mask;
|
|
}
|
|
|
|
/* See arch/x86-linux-tdesc-features.h. */
|
|
|
|
uint64_t
|
|
x86_linux_i386_xstate_bv_feature_mask ()
|
|
{
|
|
return x86_linux_i386_xstate_bv_feature_mask_1 ();
|
|
}
|
|
|
|
/* See arch/x86-linux-tdesc-features.h. */
|
|
|
|
uint64_t
|
|
x86_linux_amd64_xstate_bv_feature_mask ()
|
|
{
|
|
return x86_linux_amd64_xstate_bv_feature_mask_1 ();
|
|
}
|
|
|
|
/* See arch/x86-linux-tdesc-features.h. */
|
|
|
|
uint64_t
|
|
x86_linux_x32_xstate_bv_feature_mask ()
|
|
{
|
|
return x86_linux_x32_xstate_bv_feature_mask_1 ();
|
|
}
|
|
|
|
#ifdef GDBSERVER
|
|
|
|
/* See arch/x86-linux-tdesc-features.h. */
|
|
|
|
int
|
|
x86_linux_xstate_bv_to_tdesc_idx (uint64_t xstate_bv)
|
|
{
|
|
/* The following table shows which features are checked for when creating
|
|
the target descriptions (see nat/x86-linux-tdesc.c), the feature order
|
|
represents the bit order within the generated index number.
|
|
|
|
i386 | x87 sse avx avx512 pkru
|
|
amd64 | avx avx512 pkru
|
|
i32 | avx avx512 pkru
|
|
|
|
The features are ordered so that for each mode (i386, amd64, i32) the
|
|
generated index will form a continuous range. */
|
|
|
|
int idx = 0;
|
|
|
|
for (int i = 0; i < ARRAY_SIZE (x86_linux_all_xstate_features); ++i)
|
|
{
|
|
if ((xstate_bv & x86_linux_all_xstate_features[i].feature)
|
|
== x86_linux_all_xstate_features[i].feature)
|
|
idx |= (1 << i);
|
|
}
|
|
|
|
return idx;
|
|
}
|
|
|
|
#endif /* GDBSERVER */
|
|
|
|
#ifdef IN_PROCESS_AGENT
|
|
|
|
/* Return a compile time constant which is a count of the number of xstate
|
|
features that are checked for when building an i386 target description. */
|
|
|
|
static constexpr int
|
|
x86_linux_i386_tdesc_count_1 ()
|
|
{
|
|
uint64_t count = 0;
|
|
|
|
for (const auto &entry : x86_linux_all_xstate_features)
|
|
if (entry.is_i386)
|
|
++count;
|
|
|
|
gdb_assert (count > 0);
|
|
|
|
return (1 << count);
|
|
}
|
|
|
|
/* Return a compile time constant which is a count of the number of xstate
|
|
features that are checked for when building an amd64 target description. */
|
|
|
|
static constexpr int
|
|
x86_linux_amd64_tdesc_count_1 ()
|
|
{
|
|
uint64_t count = 0;
|
|
|
|
for (const auto &entry : x86_linux_all_xstate_features)
|
|
if (entry.is_amd64)
|
|
++count;
|
|
|
|
gdb_assert (count > 0);
|
|
|
|
return (1 << count);
|
|
}
|
|
|
|
/* Return a compile time constant which is a count of the number of xstate
|
|
features that are checked for when building an x32 target description. */
|
|
|
|
static constexpr int
|
|
x86_linux_x32_tdesc_count_1 ()
|
|
{
|
|
uint64_t count = 0;
|
|
|
|
for (const auto &entry : x86_linux_all_xstate_features)
|
|
if (entry.is_x32)
|
|
++count;
|
|
|
|
gdb_assert (count > 0);
|
|
|
|
return (1 << count);
|
|
}
|
|
|
|
/* See arch/x86-linux-tdesc-features.h. */
|
|
|
|
int
|
|
x86_linux_amd64_tdesc_count ()
|
|
{
|
|
return x86_linux_amd64_tdesc_count_1 ();
|
|
}
|
|
|
|
/* See arch/x86-linux-tdesc-features.h. */
|
|
|
|
int
|
|
x86_linux_x32_tdesc_count ()
|
|
{
|
|
return x86_linux_x32_tdesc_count_1 ();
|
|
}
|
|
|
|
/* See arch/x86-linux-tdesc-features.h. */
|
|
|
|
int
|
|
x86_linux_i386_tdesc_count ()
|
|
{
|
|
return x86_linux_i386_tdesc_count_1 ();
|
|
}
|
|
|
|
/* See arch/x86-linux-tdesc-features.h. */
|
|
|
|
uint64_t
|
|
x86_linux_tdesc_idx_to_xstate_bv (int idx)
|
|
{
|
|
uint64_t xstate_bv = 0;
|
|
|
|
for (int i = 0; i < ARRAY_SIZE (x86_linux_all_xstate_features); ++i)
|
|
{
|
|
if ((idx & (1 << i)) != 0)
|
|
xstate_bv |= x86_linux_all_xstate_features[i].feature;
|
|
}
|
|
|
|
return xstate_bv;
|
|
}
|
|
|
|
#endif /* IN_PROCESS_AGENT */
|