return NULL;
}
-static const SmbiosHeader *get_smbios_table(uint8_t type, uint64_t *ret_size_left) {
+static const SmbiosHeader *get_smbios_table(uint8_t type, size_t min_size, uint64_t *ret_size_left) {
uint64_t size = 0;
const uint8_t *p = find_smbios_configuration_table(&size);
if (!p)
return NULL;
if (header->type == type) {
+ /* Table is smaller than the minimum expected size? Refuse */
+ if (header->length < min_size)
+ return NULL;
+
if (ret_size_left)
*ret_size_left = size;
return header; /* Yay! */
static bool smbios_in_hypervisor(void) {
/* Look up BIOS Information (Type 0). */
- const SmbiosTableType0 *type0 = (const SmbiosTableType0 *) get_smbios_table(0, NULL);
- if (!type0 || type0->header.length < sizeof(SmbiosTableType0))
+ const SmbiosTableType0 *type0 = (const SmbiosTableType0 *) get_smbios_table(0, sizeof(SmbiosTableType0), /* left= */ NULL);
+ if (!type0)
return false;
/* Bit 4 of 2nd BIOS characteristics extension bytes indicates virtualization. */
assert(name);
- const SmbiosTableType11 *type11 = (const SmbiosTableType11 *) get_smbios_table(11, &left);
- if (!type11 || type11->header.length < sizeof(SmbiosTableType11))
+ const SmbiosTableType11 *type11 = (const SmbiosTableType11 *) get_smbios_table(11, sizeof(SmbiosTableType11), &left);
+ if (!type11)
return NULL;
- assert(left >= type11->header.length);
-
const char *s = type11->contents;
+
+ assert(left >= type11->header.length); /* get_smbios_table() already validated this */
left -= type11->header.length;
for (const char *p = s; p < s + left; ) {