efi: Clear up misconceptions about a maximum variable name size
authorTim Schumacher <timschumi@gmx.de>
Thu, 28 Mar 2024 20:50:33 +0000 (21:50 +0100)
committerArd Biesheuvel <ardb@kernel.org>
Sat, 13 Apr 2024 08:33:02 +0000 (10:33 +0200)
commitcda30c6542c8bb445bc84f6616cac8d012547f0a
treefaced30502e21da512704a6c6e1c79f947ac86f3
parent89ea21d70d9c9968dfd10c7e30520d0f03d465c2
efi: Clear up misconceptions about a maximum variable name size

The UEFI specification does not make any mention of a maximum variable
name size, so the headers and implementation shouldn't claim that one
exists either.

Comments referring to this limit have been removed or rewritten, as this
is an implementation detail local to the Linux kernel.

Where appropriate, the magic value of 1024 has been replaced with
EFI_VAR_NAME_LEN, as this is used for the efi_variable struct
definition. This in itself does not change any behavior, but should
serve as points of interest when making future changes in the same area.

A related build-time check has been added to ensure that the special
512 byte sized buffer will not overflow with a potentially decreased
EFI_VAR_NAME_LEN.

Signed-off-by: Tim Schumacher <timschumi@gmx.de>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
drivers/firmware/efi/vars.c
fs/efivarfs/vars.c
include/linux/efi.h