All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] serdev: ttyport: Clear serport->tty after freeing
@ 2026-08-19 12:57 Hans de Goede
  2026-08-19 13:53 ` bluez.test.bot
  2026-08-19 16:44 ` [PATCH] " Markus Probst
  0 siblings, 2 replies; 3+ messages in thread
From: Hans de Goede @ 2026-08-19 12:57 UTC (permalink / raw)
  To: Rob Herring, Greg Kroah-Hartman, Jiri Slaby
  Cc: Hans de Goede, Ibrahim Abdelkader, linux-bluetooth, linux-serial

From: Ibrahim Abdelkader <iabdelka@qti.qualcomm.com>

Both error paths in ttyport_open(), and ttyport_close(), release the tty
with tty_release_struct() and leave serport->tty pointing at freed memory.

The serdev core itself never dereferences it afterwards. However, a buggy
driver could easily trigger a use-after-free by calling a ttyport operation
on a port that is not open, or by calling close() twice. While those
drivers should be fixed, clearing the pointer, makes them fail
deterministically instead of touching freed memory.

Note that a driver which currently double closes gets away with it only by
chance, depending on whether the freed tty has been reused. After this
change such a driver oopses immediately instead, which is the intended
outcome, but it may surface latent bugs elsewhere.

Signed-off-by: Ibrahim Abdelkader <iabdelka@qti.qualcomm.com>
Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com>
Signed-off-by: Hans de Goede <johannes.goede@oss.qualcomm.com>
---
 drivers/tty/serdev/serdev-ttyport.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/tty/serdev/serdev-ttyport.c b/drivers/tty/serdev/serdev-ttyport.c
index bab1b143b8a6..b6638f9f40d2 100644
--- a/drivers/tty/serdev/serdev-ttyport.c
+++ b/drivers/tty/serdev/serdev-ttyport.c
@@ -137,6 +137,7 @@ static int ttyport_open(struct serdev_controller *ctrl)
 err_unlock:
 	tty_unlock(tty);
 	tty_release_struct(tty, serport->tty_idx);
+	serport->tty = NULL;
 
 	return ret;
 }
@@ -154,6 +155,7 @@ static void ttyport_close(struct serdev_controller *ctrl)
 	tty_unlock(tty);
 
 	tty_release_struct(tty, serport->tty_idx);
+	serport->tty = NULL;
 }
 
 static unsigned int ttyport_set_baudrate(struct serdev_controller *ctrl, unsigned int speed)
-- 
2.55.0


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

end of thread, other threads:[~2026-08-19 16:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-19 12:57 [PATCH] serdev: ttyport: Clear serport->tty after freeing Hans de Goede
2026-08-19 13:53 ` bluez.test.bot
2026-08-19 16:44 ` [PATCH] " Markus Probst

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.