Lucene search

K
cvelistLinuxCVELIST:CVE-2023-52456
HistoryFeb 23, 2024 - 2:46 p.m.

CVE-2023-52456 serial: imx: fix tx statemachine deadlock

2024-02-2314:46:19
Linux
www.cve.org
4
linux kernel
serial
imx
fix
tx statemachine
deadlock
rs485
rts pin
transmission
interrupt

AI Score

6.5

Confidence

High

EPSS

0

Percentile

5.1%

In the Linux kernel, the following vulnerability has been resolved:

serial: imx: fix tx statemachine deadlock

When using the serial port as RS485 port, the tx statemachine is used to
control the RTS pin to drive the RS485 transceiver TX_EN pin. When the
TTY port is closed in the middle of a transmission (for instance during
userland application crash), imx_uart_shutdown disables the interface
and disables the Transmission Complete interrupt. afer that,
imx_uart_stop_tx bails on an incomplete transmission, to be retriggered
by the TC interrupt. This interrupt is disabled and therefore the tx
statemachine never transitions out of SEND. The statemachine is in
deadlock now, and the TX_EN remains low, making the interface useless.

imx_uart_stop_tx now checks for incomplete transmission AND whether TC
interrupts are enabled before bailing to be retriggered. This makes sure
the state machine handling is reached, and is properly set to
WAIT_AFTER_SEND.

CNA Affected

[
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "unaffected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "drivers/tty/serial/imx.c"
    ],
    "versions": [
      {
        "version": "cb1a60923609",
        "lessThan": "6e04a9d30509",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "cb1a60923609",
        "lessThan": "ff168d4fdb0e",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "cb1a60923609",
        "lessThan": "63ee7be01a3f",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "cb1a60923609",
        "lessThan": "763cd6874631",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "cb1a60923609",
        "lessThan": "9a662d06c22d",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "cb1a60923609",
        "lessThan": "78d60dae9a0c",
        "status": "affected",
        "versionType": "git"
      }
    ]
  },
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "affected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "drivers/tty/serial/imx.c"
    ],
    "versions": [
      {
        "version": "5.9",
        "status": "affected"
      },
      {
        "version": "0",
        "lessThan": "5.9",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.10.209",
        "lessThanOrEqual": "5.10.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.15.148",
        "lessThanOrEqual": "5.15.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.1.75",
        "lessThanOrEqual": "6.1.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.6.14",
        "lessThanOrEqual": "6.6.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.7.2",
        "lessThanOrEqual": "6.7.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.8",
        "lessThanOrEqual": "*",
        "status": "unaffected",
        "versionType": "original_commit_for_fix"
      }
    ]
  }
]

AI Score

6.5

Confidence

High

EPSS

0

Percentile

5.1%