The OSSTest bisector identified an issue with c/s
1894049fa283 ("x86/shadow:
L2H shadow type is PV32-only") in !HVM builds.
The bug is ultimately caused by sh_type_to_size[] not actually being specific
to HVM guests, and it's position in shadow/hvm.c mislead the reasoning.
To fix the issue that OSSTest identified, SH_type_l2h_64_shadow must still
have the value 1 in any CONFIG_PV32 build. But simply adjusting this leaves
us with misleading logic, and a reasonable chance of making a related error
again in the future.
In hindsight, moving sh_type_to_size[] out of common.c in the first place a
mistake. Therefore, move sh_type_to_size[] back to living in common.c,
leaving a comment explaining why it happens to be inside an HVM conditional.
This effectively reverts the second half of
4fec945409fc ("x86/shadow: adjust
and move sh_type_to_size[]") while retaining the other improvements from the
same changeset.
While making this change, also adjust the sh_type_to_size[] declaration to
match its definition.
Fixes: 4fec945409fc ("x86/shadow: adjust and move sh_type_to_size[]")
Fixes: 1894049fa283 ("x86/shadow: L2H shadow type is PV32-only")
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: George Dunlap <george.dunlap@cloud.com>
#include <public/sched.h>
#include "private.h"
+/*
+ * This table shows the allocation behaviour of the different modes:
+ *
+ * Xen paging 64b 64b 64b
+ * Guest paging 32b pae 64b
+ * PV or HVM HVM HVM *
+ * Shadow paging pae pae 64b
+ *
+ * sl1 size 8k 4k 4k
+ * sl2 size 16k 4k 4k
+ * sl3 size - - 4k
+ * sl4 size - - 4k
+ *
+ * Note: our accessor, shadow_size(), can optimise out this table in PV-only
+ * builds.
+ */
+#ifdef CONFIG_HVM
+const uint8_t sh_type_to_size[] = {
+ [SH_type_l1_32_shadow] = 2,
+ [SH_type_fl1_32_shadow] = 2,
+ [SH_type_l2_32_shadow] = 4,
+ [SH_type_l1_pae_shadow] = 1,
+ [SH_type_fl1_pae_shadow] = 1,
+ [SH_type_l2_pae_shadow] = 1,
+ [SH_type_l1_64_shadow] = 1,
+ [SH_type_fl1_64_shadow] = 1,
+ [SH_type_l2_64_shadow] = 1,
+#ifdef CONFIG_PV32
+ [SH_type_l2h_64_shadow] = 1,
+#endif
+ [SH_type_l3_64_shadow] = 1,
+ [SH_type_l4_64_shadow] = 1,
+ [SH_type_p2m_table] = 1,
+ [SH_type_monitor_table] = 1,
+ [SH_type_oos_snapshot] = 1,
+};
+#endif /* CONFIG_HVM */
+
DEFINE_PER_CPU(uint32_t,trace_shadow_path_flags);
static int cf_check sh_enable_log_dirty(struct domain *, bool log_global);
#include "private.h"
-/*
- * This table shows the allocation behaviour of the different modes:
- *
- * Xen paging 64b 64b 64b
- * Guest paging 32b pae 64b
- * PV or HVM HVM HVM *
- * Shadow paging pae pae 64b
- *
- * sl1 size 8k 4k 4k
- * sl2 size 16k 4k 4k
- * sl3 size - - 4k
- * sl4 size - - 4k
- */
-const uint8_t sh_type_to_size[] = {
- [SH_type_l1_32_shadow] = 2,
- [SH_type_fl1_32_shadow] = 2,
- [SH_type_l2_32_shadow] = 4,
- [SH_type_l1_pae_shadow] = 1,
- [SH_type_fl1_pae_shadow] = 1,
- [SH_type_l2_pae_shadow] = 1,
- [SH_type_l1_64_shadow] = 1,
- [SH_type_fl1_64_shadow] = 1,
- [SH_type_l2_64_shadow] = 1,
-/* [SH_type_l2h_64_shadow] = 1, PV32-only */
- [SH_type_l3_64_shadow] = 1,
- [SH_type_l4_64_shadow] = 1,
- [SH_type_p2m_table] = 1,
- [SH_type_monitor_table] = 1,
- [SH_type_oos_snapshot] = 1,
-};
-
/**************************************************************************/
/* x86 emulator support for the shadow code
*/
#endif /* (SHADOW_OPTIMIZATIONS & SHOPT_OUT_OF_SYNC) */
/* Figure out the size (in pages) of a given shadow type */
-extern const u8 sh_type_to_size[SH_type_unused];
+extern const uint8_t sh_type_to_size[SH_type_unused];
static inline unsigned int
shadow_size(unsigned int shadow_type)
{