summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChiYuan Huang <cy_huang@richtek.com>2022-12-06 15:22:21 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-12-31 13:33:04 +0100
commitb0f25ca1ff9be7abd1679ae7e59a8f25dbffe67a (patch)
tree03e06e08d5f85625ec5f604e2ef9dc70a1c72044 /include
parentf4731395d6db850127634197863aede188d8e9de (diff)
downloadlinux-starfive-b0f25ca1ff9be7abd1679ae7e59a8f25dbffe67a.tar.gz
linux-starfive-b0f25ca1ff9be7abd1679ae7e59a8f25dbffe67a.tar.bz2
linux-starfive-b0f25ca1ff9be7abd1679ae7e59a8f25dbffe67a.zip
regulator: core: Use different devices for resource allocation and DT lookup
[ Upstream commit 8f3cbcd6b440032ebc7f7d48a1689dcc70a4eb98 ] Following by the below discussion, there's the potential UAF issue between regulator and mfd. https://lore.kernel.org/all/20221128143601.1698148-1-yangyingliang@huawei.com/ From the analysis of Yingliang CPU A |CPU B mt6370_probe() | devm_mfd_add_devices() | |mt6370_regulator_probe() | regulator_register() | //allocate init_data and add it to devres | regulator_of_get_init_data() i2c_unregister_device() | device_del() | devres_release_all() | // init_data is freed | release_nodes() | | // using init_data causes UAF | regulator_register() It's common to use mfd core to create child device for the regulator. In order to do the DT lookup for init data, the child that registered the regulator would pass its parent as the parameter. And this causes init data resource allocated to its parent, not itself. The issue happen when parent device is going to release and regulator core is still doing some operation of init data constraint for the regulator of child device. To fix it, this patch expand 'regulator_register' API to use the different devices for init data allocation and DT lookup. Reported-by: Yang Yingliang <yangyingliang@huawei.com> Signed-off-by: ChiYuan Huang <cy_huang@richtek.com> Link: https://lore.kernel.org/r/1670311341-32664-1-git-send-email-u0084500@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/regulator/driver.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h
index f9a7461e72b8..d3b4a3d4514a 100644
--- a/include/linux/regulator/driver.h
+++ b/include/linux/regulator/driver.h
@@ -687,7 +687,8 @@ static inline int regulator_err2notif(int err)
struct regulator_dev *
-regulator_register(const struct regulator_desc *regulator_desc,
+regulator_register(struct device *dev,
+ const struct regulator_desc *regulator_desc,
const struct regulator_config *config);
struct regulator_dev *
devm_regulator_register(struct device *dev,