From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Xin Chen <quic_cxin@quicinc.com>
Cc: Rob Herring <robh@kernel.org>, Jiri Slaby <jirislaby@kernel.org>,
linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org,
liulzhao@qti.qualcomm.com, quic_chejiang@quicinc.com,
zaiyongc@qti.qualcomm.com, quic_zijuhu@quicinc.com,
quic_mohamull@quicinc.com,
Panicker Harish <quic_pharish@quicinc.com>
Subject: Re: [PATCH v1] tty: serdev: serdev-ttyport: Fix use-after-free in ttyport_close() due to uninitialized serport->tty
Date: Wed, 30 Apr 2025 13:40:17 +0200 [thread overview]
Message-ID: <2025043022-rumbling-guy-26fb@gregkh> (raw)
In-Reply-To: <20250430111617.1151390-1-quic_cxin@quicinc.com>
On Wed, Apr 30, 2025 at 07:16:17PM +0800, Xin Chen wrote:
> When ttyport_open() fails to initialize a tty device, serport->tty is not
> set to NULL, leading to a use-after-free scenario in ttyport_close().
>
> To fix this, initialize serport->tty to NULL upon failure and check its
> value before reading.
>
> Call trace1:
> release_tty
> tty_init_dev
> ttyport_open
> serdev_device_open
> qca_setup[hci_uart]
> hci_uart_setup[hci_uart]
> hci_dev_open_sync[bluetooth]
> hci_dev_do_open[bluetooth]
> hci_dev_open[bluetooth]
> hci_sock_bind[bluetooth]
>
> Call trace2:
> refcount_warn_saturate
> tty_lock
> ttyport_close
> serdev_device_close
> hci_uart_close[hci_uart]
> hci_dev_open_sync[bluetooth]
> hci_dev_do_open[bluetooth]
> hci_dev_open[bluetooth]
> hci_sock_bind[bluetooth]
>
> Co-developed-by: Panicker Harish <quic_pharish@quicinc.com>
> Signed-off-by: Panicker Harish <quic_pharish@quicinc.com>
> Signed-off-by: Xin Chen <quic_cxin@quicinc.com>
> ---
> drivers/tty/serdev/serdev-ttyport.c | 13 ++++++++++++-
> 1 file changed, 12 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/tty/serdev/serdev-ttyport.c b/drivers/tty/serdev/serdev-ttyport.c
> index 3d7ae7fa5018..287908f2009b 100644
> --- a/drivers/tty/serdev/serdev-ttyport.c
> +++ b/drivers/tty/serdev/serdev-ttyport.c
> @@ -88,6 +88,10 @@ static void ttyport_write_flush(struct serdev_controller *ctrl)
> {
> struct serport *serport = serdev_controller_get_drvdata(ctrl);
> struct tty_struct *tty = serport->tty;
> + if (!tty) {
> + dev_err(&ctrl->dev, "tty is null\n");
> + return;
> + }
What prevents tty from going NULL right after you just checked this?
And why print out that message, what can userspace do with it?
>
> tty_driver_flush_buffer(tty);
> }
> @@ -108,8 +112,10 @@ static int ttyport_open(struct serdev_controller *ctrl)
> int ret;
>
> tty = tty_init_dev(serport->tty_drv, serport->tty_idx);
> - if (IS_ERR(tty))
> + if (IS_ERR(tty)) {
> + serport->tty = NULL;
> return PTR_ERR(tty);
> + }
> serport->tty = tty;
>
> if (!tty->ops->open || !tty->ops->close) {
> @@ -156,6 +162,11 @@ static void ttyport_close(struct serdev_controller *ctrl)
>
> clear_bit(SERPORT_ACTIVE, &serport->flags);
>
> + if (!tty) {
> + dev_err(&ctrl->dev, "tty is null\n");
> + return;
> + }
Again, what prevents it from changing right after you just checked it?
thanks,
greg k-h
next prev parent reply other threads:[~2025-04-30 12:06 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-30 11:16 [PATCH v1] tty: serdev: serdev-ttyport: Fix use-after-free in ttyport_close() due to uninitialized serport->tty Xin Chen
2025-04-30 11:40 ` Greg Kroah-Hartman [this message]
2025-05-08 9:29 ` Xin Chen
2025-05-08 9:41 ` Greg Kroah-Hartman
2025-05-14 9:14 ` Xin Chen
2025-05-23 2:52 ` Xin Chen
2025-05-29 9:07 ` Greg Kroah-Hartman
2025-05-29 9:41 ` Greg Kroah-Hartman
2025-05-30 8:34 ` Xin Chen
2025-05-31 7:20 ` Greg Kroah-Hartman
2025-06-05 8:13 ` Xin Chen
2025-05-30 8:11 ` Xin Chen
2025-05-31 7:16 ` Greg Kroah-Hartman
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=2025043022-rumbling-guy-26fb@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=jirislaby@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=liulzhao@qti.qualcomm.com \
--cc=quic_chejiang@quicinc.com \
--cc=quic_cxin@quicinc.com \
--cc=quic_mohamull@quicinc.com \
--cc=quic_pharish@quicinc.com \
--cc=quic_zijuhu@quicinc.com \
--cc=robh@kernel.org \
--cc=zaiyongc@qti.qualcomm.com \
/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