Parameter expects to be a copy of /sys/kernel/security/tpm0/binary_bios_measurements (i.e. regular file, not a directory, block or character device, socket, ...) Fixes: f49e982 ("ima-evm-utils: read the TPM 1.2 binary_bios_measurements") Signed-off-by: Petr Vorel <pvorel@xxxxxxx> --- Hi Mimi, feel free to modify this patchset to fits your needs (unless I'm wrong and this should not be applied at all). Kind regards, Petr src/evmctl.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/evmctl.c b/src/evmctl.c index 04dc2ad..3ad5039 100644 --- a/src/evmctl.c +++ b/src/evmctl.c @@ -2082,6 +2082,13 @@ static int read_binary_bios_measurements(char *file, struct tpm_bank_info *bank) int len; int i; + struct stat s; + stat(file, &s); + if (!S_ISREG(s.st_mode)) { + log_errno("Not a regular file or link to regular file.\n"); + return 1; + } + fp = fopen(file, "r"); if (!fp) { log_errno("Failed to open TPM 1.2 event log.\n"); -- 2.27.0.rc0