[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 20/24] smbios: error out when building type 4 table is not possibl
From: |
Michael S. Tsirkin |
Subject: |
[PULL 20/24] smbios: error out when building type 4 table is not possible |
Date: |
Mon, 18 Mar 2024 12:16:41 -0400 |
From: Igor Mammedov <imammedo@redhat.com>
If SMBIOS v2 version is requested but number of cores/threads
are more than it's possible to describe with v2, error out
instead of silently ignoring the fact and filling core/thread
count with bogus values.
This will help caller to decide if it should fallback to
SMBIOSv3 when smbios-entry-point-type='auto'
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Ani Sinha <anisinha@redhat.com>
Tested-by: Fiona Ebner <f.ebner@proxmox.com>
Message-Id: <20240314152302.2324164-18-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
hw/smbios/smbios.c | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/hw/smbios/smbios.c b/hw/smbios/smbios.c
index b0467347c5..eed5787b15 100644
--- a/hw/smbios/smbios.c
+++ b/hw/smbios/smbios.c
@@ -669,7 +669,8 @@ static void smbios_build_type_3_table(void)
}
static void smbios_build_type_4_table(MachineState *ms, unsigned instance,
- SmbiosEntryPointType ep_type)
+ SmbiosEntryPointType ep_type,
+ Error **errp)
{
char sock_str[128];
size_t tbl_len = SMBIOS_TYPE_4_LEN_V28;
@@ -723,6 +724,12 @@ static void smbios_build_type_4_table(MachineState *ms,
unsigned instance,
if (tbl_len == SMBIOS_TYPE_4_LEN_V30) {
t->core_count2 = t->core_enabled2 = cpu_to_le16(cores_per_socket);
t->thread_count2 = cpu_to_le16(threads_per_socket);
+ } else if (t->core_count == 0xFF || t->thread_count == 0xFF) {
+ error_setg(errp, "SMBIOS 2.0 doesn't support number of processor "
+ "cores/threads more than 255, use "
+ "-machine smbios-entry-point-type=64 option to enable
"
+ "SMBIOS 3.0 support");
+ return;
}
SMBIOS_BUILD_TABLE_POST;
@@ -1111,7 +1118,10 @@ static bool smbios_get_tables_ep(MachineState *ms,
assert(ms->smp.sockets >= 1);
for (i = 0; i < ms->smp.sockets; i++) {
- smbios_build_type_4_table(ms, i, ep_type);
+ smbios_build_type_4_table(ms, i, ep_type, errp);
+ if (*errp) {
+ goto err_exit;
+ }
}
smbios_build_type_8_table();
--
MST
- [PULL 11/24] smbios: don't check type4 structures in legacy mode, (continued)
- [PULL 11/24] smbios: don't check type4 structures in legacy mode, Michael S. Tsirkin, 2024/03/18
- [PULL 09/24] smbios: get rid of smbios_legacy global, Michael S. Tsirkin, 2024/03/18
- [PULL 12/24] smbios: add smbios_add_usr_blob_size() helper, Michael S. Tsirkin, 2024/03/18
- [PULL 13/24] smbios: rename/expose structures/bitmaps used by both legacy and modern code, Michael S. Tsirkin, 2024/03/18
- [PULL 14/24] smbios: build legacy mode code only for 'pc' machine, Michael S. Tsirkin, 2024/03/18
- [PULL 15/24] smbios: handle errors consistently, Michael S. Tsirkin, 2024/03/18
- [PULL 16/24] smbios: get rid of global smbios_ep_type, Michael S. Tsirkin, 2024/03/18
- [PULL 18/24] smbios: extend smbios-entry-point-type with 'auto' value, Michael S. Tsirkin, 2024/03/18
- [PULL 19/24] smbios: in case of entry point is 'auto' try to build v2 tables 1st, Michael S. Tsirkin, 2024/03/18
- [PULL 17/24] smbios: clear smbios_type4_count before building tables, Michael S. Tsirkin, 2024/03/18
- [PULL 20/24] smbios: error out when building type 4 table is not possible,
Michael S. Tsirkin <=
- [PULL 21/24] tests: acpi/smbios: whitelist expected blobs, Michael S. Tsirkin, 2024/03/18
- [PULL 22/24] pc/q35: set SMBIOS entry point type to 'auto' by default, Michael S. Tsirkin, 2024/03/18
- [PULL 23/24] tests: acpi: update expected SSDT.dimmpxm blob, Michael S. Tsirkin, 2024/03/18
- [PULL 24/24] smbios: add extra comments to smbios_get_table_legacy(), Michael S. Tsirkin, 2024/03/18
- Re: [PULL 00/24] virtio,pc,pci: bugfixes, Peter Maydell, 2024/03/19