From: Markus Probst <markus.probst@posteo.de>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-serial@vger.kernel.org, Rob Herring <robh@kernel.org>,
Jiri Slaby <jirislaby@kernel.org>,
linux-kernel@vger.kernel.org, Joshua Rogers <linux@joshua.hu>,
stable <stable@kernel.org>
Subject: Re: [PATCH 2/2] serdev: use tty_port_tty_get() in ttyport_write_buf() to prevent UAF
Date: Fri, 31 Jul 2026 13:30:09 +0000 [thread overview]
Message-ID: <74334baf76168a49c839b2fb0478bd3bc191f572.camel@posteo.de> (raw)
In-Reply-To: <2026073144-sputter-gusto-c640@gregkh>
[-- Attachment #1: Type: text/plain, Size: 3555 bytes --]
On Fri, 2026-07-31 at 15:22 +0200, Greg Kroah-Hartman wrote:
> On Fri, Jul 31, 2026 at 01:00:30PM +0000, Markus Probst wrote:
> > On Fri, 2026-07-31 at 10:06 +0200, Greg Kroah-Hartman wrote:
> > > From: Joshua Rogers <linux@joshua.hu>
> > >
> > > ttyport_write_buf() snapshots serport->tty as a raw pointer without
> > > taking a reference, while ttyport_close() can concurrently release the
> > > tty via tty_release_struct(), leading to a use-after-free. Use
> > > tty_port_tty_get() to obtain a reference-counted tty pointer, matching
> > > the pattern already used by ttyport_write_wakeup().
> > >
> > > Assisted-by: AISLE:Snapshot
> > > Cc: stable <stable@kernel.org>
> > > Signed-off-by: Joshua Rogers <linux@joshua.hu>
> > > Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > > ---
> > > drivers/tty/serdev/serdev-ttyport.c | 12 ++++++++++--
> > > 1 file changed, 10 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/drivers/tty/serdev/serdev-ttyport.c b/drivers/tty/serdev/serdev-ttyport.c
> > > index 48ce5b3f8308..4d37c8130dd7 100644
> > > --- a/drivers/tty/serdev/serdev-ttyport.c
> > > +++ b/drivers/tty/serdev/serdev-ttyport.c
> > > @@ -85,13 +85,21 @@ static const struct tty_port_client_operations client_ops = {
> > > static ssize_t ttyport_write_buf(struct serdev_controller *ctrl, const u8 *data, size_t len)
> > > {
> > > struct serport *serport = serdev_controller_get_drvdata(ctrl);
> > > - struct tty_struct *tty = serport->tty;
> > > + struct tty_struct *tty;
> > > + ssize_t ret;
> > >
> > > if (!test_bit(SERPORT_ACTIVE, &serport->flags))
> > > return 0;
> > >
> > > + tty = tty_port_tty_get(serport->port);
> > > + if (!tty)
> > > + return 0;
> > > +
> > > set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
> > > - return tty->ops->write(serport->tty, data, len);
> > > + ret = tty->ops->write(tty, data, len);
> > > + tty_kref_put(tty);
> > > +
> > > + return ret;
> > > }
> > >
> > > static void ttyport_write_flush(struct serdev_controller *ctrl)
> >
> > It should be the responsibility of the driver to ensure
> > `serdev_device_close` and `serdev_device_write_buf` are not called
> > concurrently.
> >
> > This also applies to
> > - serdev_device_set_baudrate
>
> Doesn't touch a tty structure, so why is the same reference count logic
> needed here?
It calls `ttyport_set_baudrate`.
>
> > - serdev_device_set_flow_control
It calls `ttyport_set_flow_control`.
>
> Same here.
>
> > - serdev_device_wait_until_sent
>
> Or here?
It calls `ttyport_wait_until_sent`.
See `struct serdev_controller_ops ctrl_ops` in `serdev-ttyport.c`.
All of those mentioned above call into tty_ functions. Obviously the
tty_struct pointer needs to be valid for those calls, which is only the
case if the device is open.
Thanks
- Markus Probst
>
> > and more, which currently iirc even introduce a null pointer
> > dereference if called with the serdev device closed.
> >
> > I don't see why `serdev_device_write_buf` needs special protection
> > here, which the other functions don't need for some reason.
>
> It's the access to the tty pointer that I think the issue is, right?
>
> > As with the previous patch, this still makes sense for hardening.
> > With scope_guard being used,
> >
> > Reviewed-by: Markus Probst <markus.probst@posteo.de>
>
> Great, thanks, I'll send out a v2 next week with that change made, as
> I've done it locally and will wait a bit.
>
> thanks,
>
> greg k-h
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 870 bytes --]
next prev parent reply other threads:[~2026-07-31 13:30 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-31 8:06 [PATCH 0/2] serdev: Some small serdev bugfixes found by code scans Greg Kroah-Hartman
2026-07-31 8:06 ` [PATCH 1/2] serdev: fix race between tty-port unregister and in-flight callbacks Greg Kroah-Hartman
2026-07-31 11:30 ` Markus Probst
2026-07-31 12:01 ` Greg Kroah-Hartman
2026-07-31 12:43 ` Markus Probst
2026-07-31 8:06 ` [PATCH 2/2] serdev: use tty_port_tty_get() in ttyport_write_buf() to prevent UAF Greg Kroah-Hartman
2026-07-31 8:24 ` Jiri Slaby
2026-07-31 8:28 ` Greg Kroah-Hartman
2026-07-31 13:00 ` Markus Probst
2026-07-31 13:22 ` Greg Kroah-Hartman
2026-07-31 13:30 ` Markus Probst [this message]
2026-07-31 8:14 ` [PATCH 0/2] serdev: Some small serdev bugfixes found by code scans 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=74334baf76168a49c839b2fb0478bd3bc191f572.camel@posteo.de \
--to=markus.probst@posteo.de \
--cc=gregkh@linuxfoundation.org \
--cc=jirislaby@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linux@joshua.hu \
--cc=robh@kernel.org \
--cc=stable@kernel.org \
/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