mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH master 1/2] regulator: handle regulator_get_voltage(NULL) gracefully
@ 2022-07-18 11:48 Ahmad Fatoum
  2022-07-18 11:48 ` [PATCH master 2/2] common: don't fixup empty serial/machine_compatible strings Ahmad Fatoum
  2022-08-08 14:21 ` [PATCH master 1/2] regulator: handle regulator_get_voltage(NULL) gracefully Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Ahmad Fatoum @ 2022-07-18 11:48 UTC (permalink / raw)
  To: barebox; +Cc: Johannes Zink, Ahmad Fatoum

Unlike recent versions of Linux, barebox represents the dummy regulator
as a NULL pointer and regulator API is supposed to anticipate operation
on a NULL pointer. When regulator_get_voltage was ported from Linux,
this was not taken into consideration, which leads to
regulator_get_voltage(NULL) crashing with a NULL pointer dereference.

Fix this by returning -EINVAL for dummy regulators. This aligns us with
how Linux would behave in this situation.

Fixes: 6ee83ce08b24 ("regulator: add regulator_get_voltage() to API")
Reported-by: Johannes Zink <j.zink@pengutronix.de>
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 drivers/regulator/core.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 1fb344656f38..472b26f3a0ac 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -574,9 +574,14 @@ EXPORT_SYMBOL_GPL(regulator_bulk_free);
 
 int regulator_get_voltage(struct regulator *regulator)
 {
-	struct regulator_dev *rdev = regulator->ri->rdev;
+	struct regulator_dev *rdev;
 	int sel, ret;
 
+	if (!regulator)
+		return -EINVAL;
+
+	rdev = regulator->ri->rdev;
+
 	if (rdev->desc->ops->get_voltage_sel) {
 		sel = rdev->desc->ops->get_voltage_sel(rdev);
 		if (sel < 0)
-- 
2.30.2




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-08-08 14:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-18 11:48 [PATCH master 1/2] regulator: handle regulator_get_voltage(NULL) gracefully Ahmad Fatoum
2022-07-18 11:48 ` [PATCH master 2/2] common: don't fixup empty serial/machine_compatible strings Ahmad Fatoum
2022-08-08 14:21 ` [PATCH master 1/2] regulator: handle regulator_get_voltage(NULL) gracefully Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox