drivers/tty/serial/8250/8250_core.c | 4 ++-- drivers/tty/serial/serial_core.c | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-)
This series fixes three bugs in the 8250 and serial core drivers:
1. Hold hash_mutex across IRQ chain lookup, linking, and error-path
unlinking in serial_link_irq_chain() to prevent a use-after-free race
with concurrent serial_unlink_irq_chain().
2. Allow a third loop iteration (try < 3) in uart_get_baud_rate() so that
when both the requested and old baud rates are out of range and try == 1
clips the rate into termios, the clipped baud rate is evaluated and
returned on try == 2 instead of returning 0 and causing a divide-by-zero
in uart_get_divisor().
3. Reject baud_base > UINT_MAX / 16 in uart_set_info() alongside the
uartclk == 0 check so that multiplying baud_base by 16 cannot wrap
around in 32-bit unsigned arithmetic to a small non-zero uartclk.
Changes in v3:
- Patch 2/3: Collect Reviewed-by from Ilpo Järvinen.
- Patch 3/3: Add missing #include <linux/limits.h> for UINT_MAX and move
the new_info->baud_base > UINT_MAX / 16 check to the uartclk == 0 check,
as suggested by Ilpo Järvinen.
Changes in v2:
- Split the 8250_core.c and serial_core.c fixes into a 3-patch series,
add Cc: stable@vger.kernel.org, and document how each patch was tested in
QEMU, as requested by Greg Kroah-Hartman and John Ogness.
Hui Peng (3):
serial: 8250: hold hash_mutex across IRQ chain linking in
serial_link_irq_chain()
serial: core: allow third iteration in uart_get_baud_rate() fallback
serial: core: reject baud_base values that overflow port->uartclk in
uart_set_info()
drivers/tty/serial/8250/8250_core.c | 4 ++--
drivers/tty/serial/serial_core.c | 5 +++--
2 files changed, 5 insertions(+), 4 deletions(-)
--
2.49.0
On Thu, Sep 24, 2026 at 06:04:43AM +0000, Hui Peng wrote: > This series fixes three bugs in the 8250 and serial core drivers: > > 1. Hold hash_mutex across IRQ chain lookup, linking, and error-path > unlinking in serial_link_irq_chain() to prevent a use-after-free race > with concurrent serial_unlink_irq_chain(). > 2. Allow a third loop iteration (try < 3) in uart_get_baud_rate() so that > when both the requested and old baud rates are out of range and try == 1 > clips the rate into termios, the clipped baud rate is evaluated and > returned on try == 2 instead of returning 0 and causing a divide-by-zero > in uart_get_divisor(). > 3. Reject baud_base > UINT_MAX / 16 in uart_set_info() alongside the > uartclk == 0 check so that multiplying baud_base by 16 cannot wrap > around in 32-bit unsigned arithmetic to a small non-zero uartclk. You only sent 2 patches in this series :( Where is patch 3/3? thanks, greg k-h
In uart_set_info(), new_info->baud_base is multiplied by 16 and stored in
uport->uartclk (an unsigned int):
uport->uartclk = new_info->baud_base * 16;
While uart_set_info() checks if (uartclk == 0) and
if (new_info->baud_base < 9600), when new_info->baud_base exceeds
UINT_MAX / 16 with low bits set (for example, 0x10000001), multiplying
by 16 wraps around in 32-bit unsigned arithmetic to a small non-zero value
(16), bypassing both uartclk == 0 and new_info->baud_base < 9600 and
setting uport->uartclk = 16 (baud_base = 1, well below the required
minimum of 9600 * 16).
Reject new_info->baud_base > UINT_MAX / 16 before multiplying by 16 in
uart_set_info().
Tested in QEMU against Linux 7.3.0-rc3 by calling ioctl(fd, TIOCSSERIAL,
&ss) with ss.baud_base = 0x10000001 on /dev/ttyS1: on the unfixed kernel
TIOCSSERIAL succeeds (ret = 0) and wraps uport->uartclk to 16
(TIOCGSERIAL reports baud_base = 1), whereas with the fix applied
TIOCSSERIAL returns -EINVAL and preserves the existing uport->uartclk.
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Fixes: 6eabce6608d6 ("serial: core: check uartclk for zero to avoid divide by zero")
Cc: stable@vger.kernel.org
Assisted-by: LLM
Signed-off-by: Hui Peng <benquike@gmail.com>
---
Changes in v4:
- Check new_info->baud_base > UINT_MAX / 16 before multiplying by 16,
as suggested by Ilpo Järvinen.
Changes in v3:
- Add missing #include <linux/limits.h> for UINT_MAX and move the
new_info->baud_base > UINT_MAX / 16 check to the uartclk == 0 check, as
suggested by Ilpo Järvinen.
drivers/tty/serial/serial_core.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c
index 95774b0f1484..75bb1eaa27e7 100644
--- a/drivers/tty/serial/serial_core.c
+++ b/drivers/tty/serial/serial_core.c
@@ -16,6 +16,7 @@
#include <linux/console.h>
#include <linux/gpio/consumer.h>
#include <linux/kernel.h>
+#include <linux/limits.h>
#include <linux/of.h>
#include <linux/pm_runtime.h>
#include <linux/proc_fs.h>
@@ -931,8 +932,13 @@ static int uart_set_info(struct tty_struct *tty, struct tty_port *port,
old_custom_divisor = uport->custom_divisor;
if (!(uport->flags & UPF_FIXED_PORT)) {
- unsigned int uartclk = new_info->baud_base * 16;
+ unsigned int uartclk;
+
/* check needs to be done here before other settings made */
+ if (new_info->baud_base > UINT_MAX / 16)
+ return -EINVAL;
+
+ uartclk = new_info->baud_base * 16;
if (uartclk == 0)
return -EINVAL;
}
--
2.55.0.1082.g2b9226bbc0-goog
On Thu, 24 Sep 2026, Hui Peng wrote:
> In uart_set_info(), new_info->baud_base is multiplied by 16 and stored in
> uport->uartclk (an unsigned int):
>
> uport->uartclk = new_info->baud_base * 16;
>
> While uart_set_info() checks if (uartclk == 0) and
> if (new_info->baud_base < 9600), when new_info->baud_base exceeds
> UINT_MAX / 16 with low bits set (for example, 0x10000001), multiplying
> by 16 wraps around in 32-bit unsigned arithmetic to a small non-zero value
> (16), bypassing both uartclk == 0 and new_info->baud_base < 9600 and
> setting uport->uartclk = 16 (baud_base = 1, well below the required
> minimum of 9600 * 16).
>
> Reject new_info->baud_base > UINT_MAX / 16 before multiplying by 16 in
> uart_set_info().
>
> Tested in QEMU against Linux 7.3.0-rc3 by calling ioctl(fd, TIOCSSERIAL,
> &ss) with ss.baud_base = 0x10000001 on /dev/ttyS1: on the unfixed kernel
> TIOCSSERIAL succeeds (ret = 0) and wraps uport->uartclk to 16
> (TIOCGSERIAL reports baud_base = 1), whereas with the fix applied
> TIOCSSERIAL returns -EINVAL and preserves the existing uport->uartclk.
>
> Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
> Fixes: 6eabce6608d6 ("serial: core: check uartclk for zero to avoid divide by zero")
> Cc: stable@vger.kernel.org
> Assisted-by: LLM
> Signed-off-by: Hui Peng <benquike@gmail.com>
> ---
> Changes in v4:
> - Check new_info->baud_base > UINT_MAX / 16 before multiplying by 16,
> as suggested by Ilpo Järvinen.
>
> Changes in v3:
> - Add missing #include <linux/limits.h> for UINT_MAX and move the
> new_info->baud_base > UINT_MAX / 16 check to the uartclk == 0 check, as
> suggested by Ilpo Järvinen.
>
> drivers/tty/serial/serial_core.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c
> index 95774b0f1484..75bb1eaa27e7 100644
> --- a/drivers/tty/serial/serial_core.c
> +++ b/drivers/tty/serial/serial_core.c
> @@ -16,6 +16,7 @@
> #include <linux/console.h>
> #include <linux/gpio/consumer.h>
> #include <linux/kernel.h>
> +#include <linux/limits.h>
> #include <linux/of.h>
> #include <linux/pm_runtime.h>
> #include <linux/proc_fs.h>
> @@ -931,8 +932,13 @@ static int uart_set_info(struct tty_struct *tty, struct tty_port *port,
> old_custom_divisor = uport->custom_divisor;
>
> if (!(uport->flags & UPF_FIXED_PORT)) {
> - unsigned int uartclk = new_info->baud_base * 16;
> + unsigned int uartclk;
> +
> /* check needs to be done here before other settings made */
> + if (new_info->baud_base > UINT_MAX / 16)
> + return -EINVAL;
> +
> + uartclk = new_info->baud_base * 16;
> if (uartclk == 0)
> return -EINVAL;
> }
>
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
--
i.
© 2016 - 2026 Red Hat, Inc.