Skip to content

Commit 8503d0f

Browse files
keesjoergroedel
authored andcommitted
iommu/amd: Avoid stack buffer overflow from kernel cmdline
While the kernel command line is considered trusted in most environments, avoid writing 1 byte past the end of "acpiid" if the "str" argument is maximum length. Reported-by: Simcha Kosman <simcha.kosman@cyberark.com> Closes: https://lore.kernel.org/all/AS8P193MB2271C4B24BCEDA31830F37AE84A52@AS8P193MB2271.EURP193.PROD.OUTLOOK.COM Fixes: b6b26d8 ("iommu/amd: Add a length limitation for the ivrs_acpihid command-line parameter") Signed-off-by: Kees Cook <kees@kernel.org> Reviewed-by: Ankit Soni <Ankit.Soni@amd.com> Link: https://lore.kernel.org/r/20250804154023.work.970-kees@kernel.org Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
1 parent 8f5ae30 commit 8503d0f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/iommu/amd/init.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3638,7 +3638,7 @@ static int __init parse_ivrs_acpihid(char *str)
36383638
{
36393639
u32 seg = 0, bus, dev, fn;
36403640
char *hid, *uid, *p, *addr;
3641-
char acpiid[ACPIID_LEN] = {0};
3641+
char acpiid[ACPIID_LEN + 1] = { }; /* size with NULL terminator */
36423642
int i;
36433643

36443644
addr = strchr(str, '@');
@@ -3664,7 +3664,7 @@ static int __init parse_ivrs_acpihid(char *str)
36643664
/* We have the '@', make it the terminator to get just the acpiid */
36653665
*addr++ = 0;
36663666

3667-
if (strlen(str) > ACPIID_LEN + 1)
3667+
if (strlen(str) > ACPIID_LEN)
36683668
goto not_found;
36693669

36703670
if (sscanf(str, "=%s", acpiid) != 1)

0 commit comments

Comments
 (0)