linux/drivers/iommu/amd
Eder Zulian 8dfd3d8d74 iommu/amd: Remove latent out-of-bounds access in IOMMU debugfs
In iommu_mmio_write() and iommu_capability_write(), the variables
dbg_mmio_offset and dbg_cap_offset are declared as int. However, they
are populated using kstrtou32_from_user(). If a user provides a
sufficiently large value, it can become a negative integer.

Prior to this patch, the AMD IOMMU debugfs implementation was already
protected by different mechanisms.

1. #define OFS_IN_SZ 8 ensures the user string <= 8 bytes, so
   e.g. 0xffffffff isn't a valid input.

  if (cnt > OFS_IN_SZ)
     return -EINVAL;

2. Implicit type promotion in iommu_mmio_write(), dbg_mmio_offset is int
   and iommu->mmio_phys_end is u64

  if (dbg_mmio_offset > iommu->mmio_phys_end - sizeof(u64))
      return -EINVAL;

3. The show handlers would currently catch the negative number and
   refuse to perform the read.

Replace kstrtou32_from_user() with kstrtos32_from_user() to parse the
input, and check for negative values to explicitly prevent out-of-bounds
memory accesses directly in iommu_mmio_write() and
iommu_capability_write().

Signed-off-by: Eder Zulian <ezulian@redhat.com>
Fixes: 7a4ee419e8 ("iommu/amd: Add debugfs support to dump IOMMU MMIO registers")
Cc: stable@vger.kernel.org
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
2026-05-11 09:52:54 +02:00
..
amd_iommu_types.h iommu/amd: Use maximum PPR log buffer size when SNP is enabled on Family 0x19 2026-04-27 13:49:36 +02:00
amd_iommu.h iommu/amd: Use maximum PPR log buffer size when SNP is enabled on Family 0x19 2026-04-27 13:49:36 +02:00
debugfs.c iommu/amd: Remove latent out-of-bounds access in IOMMU debugfs 2026-05-11 09:52:54 +02:00
init.c iommu/amd: Use maximum PPR log buffer size when SNP is enabled on Family 0x19 2026-04-27 13:49:36 +02:00
iommu.c iommu/amd: Fix precedence order in set_dte_passthrough() 2026-05-04 10:26:16 +02:00
iommufd.c Convert 'alloc_obj' family to use the new default GFP_KERNEL argument 2026-02-21 17:09:51 -08:00
iommufd.h iommu/amd: Fix type of type parameter to amd_iommufd_hw_info() 2026-01-28 15:13:01 +01:00
Kconfig iommu/amd: Add support for hw_info for iommu capability query 2026-01-18 10:56:09 +01:00
Makefile iommu/amd: Add support for nested domain allocation 2026-01-18 10:56:13 +01:00
nested.c Convert 'alloc_obj' family to use the new default GFP_KERNEL argument 2026-02-21 17:09:51 -08:00
pasid.c Convert 'alloc_obj' family to use the new default GFP_KERNEL argument 2026-02-21 17:09:51 -08:00
ppr.c iommu/amd: Use maximum PPR log buffer size when SNP is enabled on Family 0x19 2026-04-27 13:49:36 +02:00
quirks.c