projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d9ed8af
)
iommu/arm-smmu-v3: check return value after calling platform_get_resource()
author
Yang Yingliang
<yangyingliang@huawei.com>
Mon, 25 Apr 2022 11:45:25 +0000
(19:45 +0800)
committer
Will Deacon
<will@kernel.org>
Fri, 6 May 2022 15:24:57 +0000
(16:24 +0100)
It will cause null-ptr-deref if platform_get_resource() returns NULL,
we need check the return value.
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link:
https://lore.kernel.org/r/20220425114525.2651143-1-yangyingliang@huawei.com
Signed-off-by: Will Deacon <will@kernel.org>
drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
patch
|
blob
|
history
diff --git
a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
index 627a3ed5ee8fd1ed743835cf764f08cc7d1a7e67..88817a3376ef01a92f217639dea8351ff6fb140b 100644
(file)
--- a/
drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
+++ b/
drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
@@
-3770,6
+3770,8
@@
static int arm_smmu_device_probe(struct platform_device *pdev)
/* Base address */
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+ if (!res)
+ return -EINVAL;
if (resource_size(res) < arm_smmu_resource_size(smmu)) {
dev_err(dev, "MMIO region too small (%pr)\n", res);
return -EINVAL;