]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
iommu/s390: Fix memory corruption when using identity domain
authorMatthew Rosato <mjrosato@linux.ibm.com>
Wed, 27 Aug 2025 21:08:27 +0000 (17:08 -0400)
committerJoerg Roedel <joerg.roedel@amd.com>
Fri, 5 Sep 2025 13:11:07 +0000 (15:11 +0200)
commitb3506e9bcc777ed6af2ab631c86a9990ed97b474
treed6cf84e51c98226e73a87d1edc913e6362c180d0
parent923b70581cb6acede90f8aaf4afe5d1c58c67b71
iommu/s390: Fix memory corruption when using identity domain

zpci_get_iommu_ctrs() returns counter information to be reported as part
of device statistics; these counters are stored as part of the s390_domain.
The problem, however, is that the identity domain is not backed by an
s390_domain and so the conversion via to_s390_domain() yields a bad address
that is zero'd initially and read on-demand later via a sysfs read.
These counters aren't necessary for the identity domain; just return NULL
in this case.

This issue was discovered via KASAN with reports that look like:
BUG: KASAN: global-out-of-bounds in zpci_fmb_enable_device
when using the identity domain for a device on s390.

Cc: stable@vger.kernel.org
Fixes: 64af12c6ec3a ("iommu/s390: implement iommu passthrough via identity domain")
Reported-by: Cam Miller <cam@linux.ibm.com>
Signed-off-by: Matthew Rosato <mjrosato@linux.ibm.com>
Tested-by: Cam Miller <cam@linux.ibm.com>
Reviewed-by: Farhan Ali <alifm@linux.ibm.com>
Reviewed-by: Niklas Schnelle <schnelle@linux.ibm.com>
Link: https://lore.kernel.org/r/20250827210828.274527-1-mjrosato@linux.ibm.com
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
drivers/iommu/s390-iommu.c