From: Lee Jones <lee@kernel.org>
To: Manuel Fombuena <fombuena@outlook.com>
Cc: pavel@ucw.cz, corbet@lwn.net, linux-leds@vger.kernel.org,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH RESEND 1/5] leds: leds-st1202: fix NULL pointer access on race condition
Date: Tue, 11 Feb 2025 13:34:29 +0000 [thread overview]
Message-ID: <20250211133429.GQ1868108@google.com> (raw)
In-Reply-To: <CWLP123MB547377D20905AF224E682BFBC5EB2@CWLP123MB5473.GBRP123.PROD.OUTLOOK.COM>
On Sat, 01 Feb 2025, Manuel Fombuena wrote:
> st1202_dt_init() calls devm_led_classdev_register_ext() before the
> internal data structures are properly setup, so the leds become visible
Always "LEDs".
> to user space while being partially initialized, leading to a window
> where trying to access them causes a NULL pointer access.
>
> This change moves devm_led_classdev_register_ext() to the last thing to
> happen during initialization to eliminate it.
>
> Signed-off-by: Manuel Fombuena <fombuena@outlook.com>
> ---
> drivers/leds/leds-st1202.c | 21 ++++++++++-----------
> 1 file changed, 10 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/leds/leds-st1202.c b/drivers/leds/leds-st1202.c
> index b691c4886993..e894b3f9a0f4 100644
> --- a/drivers/leds/leds-st1202.c
> +++ b/drivers/leds/leds-st1202.c
> @@ -261,8 +261,6 @@ static int st1202_dt_init(struct st1202_chip *chip)
> int err, reg;
>
> for_each_available_child_of_node_scoped(dev_of_node(dev), child) {
> - struct led_init_data init_data = {};
> -
> err = of_property_read_u32(child, "reg", ®);
> if (err)
> return dev_err_probe(dev, err, "Invalid register\n");
> @@ -276,15 +274,6 @@ static int st1202_dt_init(struct st1202_chip *chip)
> led->led_cdev.pattern_set = st1202_led_pattern_set;
> led->led_cdev.pattern_clear = st1202_led_pattern_clear;
> led->led_cdev.default_trigger = "pattern";
> -
> - init_data.fwnode = led->fwnode;
> - init_data.devicename = "st1202";
> - init_data.default_label = ":";
> -
> - err = devm_led_classdev_register_ext(dev, &led->led_cdev, &init_data);
> - if (err < 0)
> - return dev_err_probe(dev, err, "Failed to register LED class device\n");
> -
> led->led_cdev.brightness_set = st1202_brightness_set;
> led->led_cdev.brightness_get = st1202_brightness_get;
> }
> @@ -368,6 +357,7 @@ static int st1202_probe(struct i2c_client *client)
> return ret;
>
> for (int i = 0; i < ST1202_MAX_LEDS; i++) {
> + struct led_init_data init_data = {};
> led = &chip->leds[i];
> led->chip = chip;
> led->led_num = i;
> @@ -384,6 +374,15 @@ static int st1202_probe(struct i2c_client *client)
> if (ret < 0)
> return dev_err_probe(&client->dev, ret,
> "Failed to clear LED pattern\n");
> +
> + init_data.fwnode = led->fwnode;
> + init_data.devicename = "st1202";
> + init_data.default_label = ":";
> +
> + ret = devm_led_classdev_register_ext(&client->dev, &led->led_cdev, &init_data);
> + if (ret < 0)
> + return dev_err_probe(&client->dev, ret,
> + "Failed to register LED class device\n");
> }
>
> return 0;
> --
> 2.48.1
>
--
Lee Jones [李琼斯]
next prev parent reply other threads:[~2025-02-11 13:34 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-01 13:00 [PATCH RESEND 0/5] LED1202 / leds-st1202 fixes and improvements Manuel Fombuena
2025-02-01 13:02 ` [PATCH RESEND 1/5] leds: leds-st1202: fix NULL pointer access on race condition Manuel Fombuena
2025-02-11 13:31 ` Lee Jones
2025-02-12 16:28 ` Manuel Fombuena
2025-02-13 10:24 ` Lee Jones
2025-02-13 15:25 ` Manuel Fombuena
2025-02-20 15:01 ` Lee Jones
2025-02-11 13:34 ` Lee Jones [this message]
2025-02-12 13:16 ` Manuel Fombuena
2025-02-01 13:04 ` [PATCH RESEND 2/5] leds: leds-st1202: initialize hardware before DT node child operations Manuel Fombuena
2025-02-11 13:32 ` Lee Jones
2025-02-12 15:15 ` Manuel Fombuena
2025-02-01 13:04 ` [PATCH RESEND 3/5] leds: leds-st1202: spacing and proofreading editing Manuel Fombuena
2025-02-11 13:34 ` Lee Jones
2025-02-12 14:28 ` Manuel Fombuena
2025-02-01 13:05 ` [PATCH RESEND 4/5] leds: Kconfig: leds-st1202: add select for required LEDS_TRIGGER_PATTERN Manuel Fombuena
2025-02-01 13:07 ` [PATCH RESEND 5/5] Documentation: leds: remove .rst extension for leds-st1202 on index Manuel Fombuena
2025-02-13 10:41 ` [PATCH RESEND 0/5] LED1202 / leds-st1202 fixes and improvements Lee Jones
2025-02-13 15:54 ` Manuel Fombuena
2025-02-20 15:03 ` Lee Jones
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250211133429.GQ1868108@google.com \
--to=lee@kernel.org \
--cc=corbet@lwn.net \
--cc=fombuena@outlook.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-leds@vger.kernel.org \
--cc=pavel@ucw.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).