linux-leds.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Patch v3 1/1] leds: ledtrig-tty: free allocated ttyname buffer on deactivate
@ 2023-11-27  8:16 Florian Eckert
  2023-11-27  9:34 ` Greg KH
  2023-11-27  9:42 ` (subset) " Lee Jones
  0 siblings, 2 replies; 3+ messages in thread
From: Florian Eckert @ 2023-11-27  8:16 UTC (permalink / raw)
  To: Eckert.Florian, pavel, lee, kabel, gregkh
  Cc: linux-leds, stable, Uwe Kleine-König

The ttyname buffer for the ledtrig_tty_data struct is allocated in the
sysfs ttyname_store() function. This buffer must be released on trigger
deactivation. This was missing and is thus a memory leak.

While we are at it, the tty handler in the ledtrig_tty_data struct should
also be returned in case of the trigger deactivation call.

Cc: stable@vger.kernel.org
Fixes: fd4a641ac88f ("leds: trigger: implement a tty trigger")
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
v1 -> v2:
Add Cc: tag
v2 -> v3:
Add Reviewed-by and resend witout changes

 drivers/leds/trigger/ledtrig-tty.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/leds/trigger/ledtrig-tty.c b/drivers/leds/trigger/ledtrig-tty.c
index 8ae0d2d284af..3e69a7bde928 100644
--- a/drivers/leds/trigger/ledtrig-tty.c
+++ b/drivers/leds/trigger/ledtrig-tty.c
@@ -168,6 +168,10 @@ static void ledtrig_tty_deactivate(struct led_classdev *led_cdev)
 
 	cancel_delayed_work_sync(&trigger_data->dwork);
 
+	kfree(trigger_data->ttyname);
+	tty_kref_put(trigger_data->tty);
+	trigger_data->tty = NULL;
+
 	kfree(trigger_data);
 }
 
-- 
2.30.2


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

* Re: [Patch v3 1/1] leds: ledtrig-tty: free allocated ttyname buffer on deactivate
  2023-11-27  8:16 [Patch v3 1/1] leds: ledtrig-tty: free allocated ttyname buffer on deactivate Florian Eckert
@ 2023-11-27  9:34 ` Greg KH
  2023-11-27  9:42 ` (subset) " Lee Jones
  1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2023-11-27  9:34 UTC (permalink / raw)
  To: Florian Eckert
  Cc: Eckert.Florian, pavel, lee, kabel, linux-leds, stable,
	Uwe Kleine-König

On Mon, Nov 27, 2023 at 09:16:21AM +0100, Florian Eckert wrote:
> The ttyname buffer for the ledtrig_tty_data struct is allocated in the
> sysfs ttyname_store() function. This buffer must be released on trigger
> deactivation. This was missing and is thus a memory leak.
> 
> While we are at it, the tty handler in the ledtrig_tty_data struct should
> also be returned in case of the trigger deactivation call.
> 
> Cc: stable@vger.kernel.org
> Fixes: fd4a641ac88f ("leds: trigger: implement a tty trigger")
> Signed-off-by: Florian Eckert <fe@dev.tdt.de>
> Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

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

* Re: (subset) [Patch v3 1/1] leds: ledtrig-tty: free allocated ttyname buffer on deactivate
  2023-11-27  8:16 [Patch v3 1/1] leds: ledtrig-tty: free allocated ttyname buffer on deactivate Florian Eckert
  2023-11-27  9:34 ` Greg KH
@ 2023-11-27  9:42 ` Lee Jones
  1 sibling, 0 replies; 3+ messages in thread
From: Lee Jones @ 2023-11-27  9:42 UTC (permalink / raw)
  To: Eckert.Florian, pavel, lee, kabel, gregkh, Florian Eckert
  Cc: linux-leds, stable, Uwe Kleine-König

On Mon, 27 Nov 2023 09:16:21 +0100, Florian Eckert wrote:
> The ttyname buffer for the ledtrig_tty_data struct is allocated in the
> sysfs ttyname_store() function. This buffer must be released on trigger
> deactivation. This was missing and is thus a memory leak.
> 
> While we are at it, the tty handler in the ledtrig_tty_data struct should
> also be returned in case of the trigger deactivation call.
> 
> [...]

Applied, thanks!

[1/1] leds: ledtrig-tty: free allocated ttyname buffer on deactivate
      commit: dcc9a56adb91830b14e4838de95d3e85db35a0f4

--
Lee Jones [李琼斯]


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

end of thread, other threads:[~2023-11-27  9:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-27  8:16 [Patch v3 1/1] leds: ledtrig-tty: free allocated ttyname buffer on deactivate Florian Eckert
2023-11-27  9:34 ` Greg KH
2023-11-27  9:42 ` (subset) " Lee Jones

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).