mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-23 14:51:31 +02:00
efi_loader: fix boot_service_capability_min calculation
TCG EFI Protocol Specification requires to the input ProtocolCapability.Size < size of the EFI_TCG2_BOOT_SERVICE_CAPABILITY up to and including the vendor ID field. Current implementation does different calculation, let's fix it. Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
580d7242b1
commit
db3ed2cf9c
@ -127,8 +127,8 @@ struct efi_tcg2_boot_service_capability {
|
|||||||
efi_tcg_event_algorithm_bitmap active_pcr_banks;
|
efi_tcg_event_algorithm_bitmap active_pcr_banks;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* up to and including the vendor ID (manufacturer_id) field */
|
||||||
#define boot_service_capability_min \
|
#define boot_service_capability_min \
|
||||||
sizeof(struct efi_tcg2_boot_service_capability) - \
|
|
||||||
offsetof(struct efi_tcg2_boot_service_capability, number_of_pcr_banks)
|
offsetof(struct efi_tcg2_boot_service_capability, number_of_pcr_banks)
|
||||||
|
|
||||||
#define TCG_EFI_SPEC_ID_EVENT_SIGNATURE_03 "Spec ID Event03"
|
#define TCG_EFI_SPEC_ID_EVENT_SIGNATURE_03 "Spec ID Event03"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user