* [PATCH] tty: n_gsm: fix a possible data race in gsmtty_open
@ 2024-07-04 8:26 Tuo Li
2024-07-04 8:49 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Tuo Li @ 2024-07-04 8:26 UTC (permalink / raw)
To: gregkh, jirislaby; +Cc: baijiaju1990, linux-kernel, linux-serial, Tuo Li
In the function gsmtty_open(), the counter port->count is updated without
holding the lock port->lock, which may lead to a data race.
This possible data race is found by an experimental static analysis tool.
This tool analyzes the locking APIs to deduce locking rules about which
variable should be protected by which lock. And then the tool checks
whether a given variable access violates the deduced locking rules, to
detect data races. The above possible data race is reported, when the tool
analyzes the source code of Linux 6.2.
Referring to the function tty_port_open() in tty_port.c:
spin_lock_irq(&port->lock);
++port->count;
spin_unlock_irq(&port->lock);
we add a lock/unlock pair to protect the access to port->count, to fix
this possible data race.
Fixes: 86176ed90545 ("TTY: n_gsm, use tty_port_install")
Signed-off-by: Tuo Li <islituo@gmail.com>
---
drivers/tty/n_gsm.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c
index be35f7334ecd..b709f1a6bd2d 100644
--- a/drivers/tty/n_gsm.c
+++ b/drivers/tty/n_gsm.c
@@ -4307,7 +4307,9 @@ static int gsmtty_open(struct tty_struct *tty, struct file *filp)
struct gsm_dlci *dlci = tty->driver_data;
struct tty_port *port = &dlci->port;
+ spin_lock_irq(&port->lock);
port->count++;
+ spin_unlock_irq(&port->lock);
tty_port_tty_set(port, tty);
dlci->modem_rx = 0;
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] tty: n_gsm: fix a possible data race in gsmtty_open
2024-07-04 8:26 [PATCH] tty: n_gsm: fix a possible data race in gsmtty_open Tuo Li
@ 2024-07-04 8:49 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2024-07-04 8:49 UTC (permalink / raw)
To: Tuo Li; +Cc: jirislaby, baijiaju1990, linux-kernel, linux-serial
On Thu, Jul 04, 2024 at 04:26:58PM +0800, Tuo Li wrote:
> In the function gsmtty_open(), the counter port->count is updated without
> holding the lock port->lock, which may lead to a data race.
>
> This possible data race is found by an experimental static analysis tool.
> This tool analyzes the locking APIs to deduce locking rules about which
> variable should be protected by which lock. And then the tool checks
> whether a given variable access violates the deduced locking rules, to
> detect data races. The above possible data race is reported, when the tool
> analyzes the source code of Linux 6.2.
>
> Referring to the function tty_port_open() in tty_port.c:
> spin_lock_irq(&port->lock);
> ++port->count;
> spin_unlock_irq(&port->lock);
>
> we add a lock/unlock pair to protect the access to port->count, to fix
> this possible data race.
>
> Fixes: 86176ed90545 ("TTY: n_gsm, use tty_port_install")
> Signed-off-by: Tuo Li <islituo@gmail.com>
> ---
> drivers/tty/n_gsm.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c
> index be35f7334ecd..b709f1a6bd2d 100644
> --- a/drivers/tty/n_gsm.c
> +++ b/drivers/tty/n_gsm.c
> @@ -4307,7 +4307,9 @@ static int gsmtty_open(struct tty_struct *tty, struct file *filp)
> struct gsm_dlci *dlci = tty->driver_data;
> struct tty_port *port = &dlci->port;
>
> + spin_lock_irq(&port->lock);
> port->count++;
> + spin_unlock_irq(&port->lock);
Open counts are almost never a good idea, especially like this. Please
fix to use a proper reference count instead which will fix this issue.
Also, you mention kernel 6.2, which is VERY old, especially for this
driver, please redo this against the latest kernel tree which has lots
and lots of fixes for this code in it since that obsolete release.
And finally, as you are using an automated tool, you need to describe it
better, see the documentation for how to do so.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-07-04 8:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-04 8:26 [PATCH] tty: n_gsm: fix a possible data race in gsmtty_open Tuo Li
2024-07-04 8:49 ` Greg KH
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).