From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Gui-Dong Han <2045gemini@gmail.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Jiri Slaby <jirislaby@kernel.org>,
Tony Lindgren <tony@atomide.com>,
l.sanfilippo@kunbus.com, john.ogness@linutronix.de,
tglx@linutronix.de,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
LKML <linux-kernel@vger.kernel.org>,
linux-serial <linux-serial@vger.kernel.org>,
baijiaju1990@outlook.com, stable@vger.kernel.org
Subject: Re: [PATCH] serial: core: Fix atomicity violation in uart_tiocmget
Date: Fri, 12 Jan 2024 11:33:06 +0200 (EET) [thread overview]
Message-ID: <7e05a189-1d5d-51da-4ae8-c2b4b8b8b25e@linux.intel.com> (raw)
In-Reply-To: <20240112075732.16730-1-2045gemini@gmail.com>
On Fri, 12 Jan 2024, Gui-Dong Han wrote:
> In uart_tiocmget():
> result = uport->mctrl;
> uart_port_lock_irq(uport);
> result |= uport->ops->get_mctrl(uport);
> uart_port_unlock_irq(uport);
> ...
> return result;
>
> In uart_update_mctrl():
> uart_port_lock_irqsave(port, &flags);
> ...
> port->mctrl = (old & ~clear) | set;
> ...
> uart_port_unlock_irqrestore(port, flags);
>
> An atomicity violation is identified due to the concurrent execution of
> uart_tiocmget() and uart_update_mctrl(). After assigning
> result = uport->mctrl, the mctrl value may change in uart_update_mctrl(),
> leading to a mismatch between the value returned by
> uport->ops->get_mctrl(uport) and the mctrl value previously read.
> This can result in uart_tiocmget() returning an incorrect value.
>
> This possible bug is found by an experimental static analysis tool
> developed by our team, BassCheck[1]. This tool analyzes the locking APIs
> to extract function pairs that can be concurrently executed, and then
> analyzes the instructions in the paired functions to identify possible
> concurrency bugs including data races and atomicity violations. The above
> possible bug is reported when our tool analyzes the source code of
> Linux 5.17.
>
> To address this issue, it is suggested to move the line
> result = uport->mctrl inside the uart_port_lock block to ensure atomicity
> and prevent the mctrl value from being altered during the execution of
> uart_tiocmget(). With this patch applied, our tool no longer reports the
> bug, with the kernel configuration allyesconfig for x86_64. Due to the
> absence of the requisite hardware, we are unable to conduct runtime
> testing of the patch. Therefore, our verification is solely based on code
> logic analysis.
>
> [1] https://sites.google.com/view/basscheck/
>
> Fixes: 559c7ff4e324 ("serial: core: Use port lock wrappers")
This is clearly incorrect, also pre-559c7ff4e324 kernels have the
assignment outside the critical section.
It's also non-sensical given that 559c7ff4e324 is quite recent. You
claim to have found the issue in Linux 5.17. How come can you seriously
claim that 559c7ff4e324 that isn't even present in Linux 5.17 is the
commit that needs to be fixed?
> Cc: stable@vger.kernel.org
> Signed-off-by: Gui-Dong Han <2045gemini@gmail.com>
> ---
> drivers/tty/serial/serial_core.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c
> index 80085b151b34..a9e39416d877 100644
> --- a/drivers/tty/serial/serial_core.c
> +++ b/drivers/tty/serial/serial_core.c
> @@ -1085,8 +1085,8 @@ static int uart_tiocmget(struct tty_struct *tty)
> goto out;
>
> if (!tty_io_error(tty)) {
> - result = uport->mctrl;
> uart_port_lock_irq(uport);
> + result = uport->mctrl;
> result |= uport->ops->get_mctrl(uport);
> uart_port_unlock_irq(uport);
> }
>
The change itself looks quite harmless but it provides no quarantees that
the result is up-to-date after uart_port_unlock_irq(), so while it solves
the data race on paper it cannot fundamentally prevent racing after
unlock. And again "result" variable containing stale information.
--
i.
prev parent reply other threads:[~2024-01-12 9:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-12 7:57 [PATCH] serial: core: Fix atomicity violation in uart_tiocmget Gui-Dong Han
2024-01-12 9:30 ` John Ogness
2024-01-12 9:40 ` Ilpo Järvinen
2024-01-12 11:23 ` Gui-Dong Han
2024-01-12 9:33 ` Ilpo Järvinen [this message]
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=7e05a189-1d5d-51da-4ae8-c2b4b8b8b25e@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=2045gemini@gmail.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=baijiaju1990@outlook.com \
--cc=gregkh@linuxfoundation.org \
--cc=jirislaby@kernel.org \
--cc=john.ogness@linutronix.de \
--cc=l.sanfilippo@kunbus.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=stable@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=tony@atomide.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