Lucene search

K
vulnrichmentLinuxVULNRICHMENT:CVE-2021-47527
HistoryMay 24, 2024 - 3:09 p.m.

CVE-2021-47527 serial: core: fix transmit-buffer reset and memleak

2024-05-2415:09:38
Linux
github.com
4
linux kernel
transmit-buffer reset
memleak
tty
ioctl
termios
driver unbind
ldisc race
port lock

AI Score

7.1

Confidence

High

EPSS

0

Percentile

10.3%

SSVC

Exploitation

none

Automatable

no

Technical Impact

partial

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

serial: core: fix transmit-buffer reset and memleak

Commit 761ed4a94582 (“tty: serial_core: convert uart_close to use
tty_port_close”) converted serial core to use tty_port_close() but
failed to notice that the transmit buffer still needs to be freed on
final close.

Not freeing the transmit buffer means that the buffer is no longer
cleared on next open so that any ioctl() waiting for the buffer to drain
might wait indefinitely (e.g. on termios changes) or that stale data can
end up being transmitted in case tx is restarted.

Furthermore, the buffer of any port that has been opened would leak on
driver unbind.

Note that the port lock is held when clearing the buffer pointer due to
the ldisc race worked around by commit a5ba1d95e46e (“uart: fix race
between uart_put_char() and uart_shutdown()”).

Also note that the tty-port shutdown() callback is not called for
console ports so it is not strictly necessary to free the buffer page
after releasing the lock (cf. d72402145ace (“tty/serial: do not free
trasnmit buffer page under port lock”)).

CNA Affected

[
  {
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "vendor": "Linux",
    "product": "Linux",
    "versions": [
      {
        "status": "affected",
        "version": "761ed4a94582",
        "lessThan": "011f6c92b5bf",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "761ed4a94582",
        "lessThan": "e74d9663fd57",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "761ed4a94582",
        "lessThan": "1179b168fa3f",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "761ed4a94582",
        "lessThan": "c5da8aa44105",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "761ed4a94582",
        "lessThan": "e1722acf4f0d",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "761ed4a94582",
        "lessThan": "64e491c1634b",
        "versionType": "git"
      },
      {
        "status": "affected",
        "version": "761ed4a94582",
        "lessThan": "00de977f9e0a",
        "versionType": "git"
      }
    ],
    "programFiles": [
      "drivers/tty/serial/serial_core.c"
    ],
    "defaultStatus": "unaffected"
  },
  {
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "vendor": "Linux",
    "product": "Linux",
    "versions": [
      {
        "status": "affected",
        "version": "4.9"
      },
      {
        "status": "unaffected",
        "version": "0",
        "lessThan": "4.9",
        "versionType": "custom"
      },
      {
        "status": "unaffected",
        "version": "4.9.292",
        "versionType": "custom",
        "lessThanOrEqual": "4.9.*"
      },
      {
        "status": "unaffected",
        "version": "4.14.257",
        "versionType": "custom",
        "lessThanOrEqual": "4.14.*"
      },
      {
        "status": "unaffected",
        "version": "4.19.220",
        "versionType": "custom",
        "lessThanOrEqual": "4.19.*"
      },
      {
        "status": "unaffected",
        "version": "5.4.164",
        "versionType": "custom",
        "lessThanOrEqual": "5.4.*"
      },
      {
        "status": "unaffected",
        "version": "5.10.84",
        "versionType": "custom",
        "lessThanOrEqual": "5.10.*"
      },
      {
        "status": "unaffected",
        "version": "5.15.7",
        "versionType": "custom",
        "lessThanOrEqual": "5.15.*"
      },
      {
        "status": "unaffected",
        "version": "5.16",
        "versionType": "original_commit_for_fix",
        "lessThanOrEqual": "*"
      }
    ],
    "programFiles": [
      "drivers/tty/serial/serial_core.c"
    ],
    "defaultStatus": "affected"
  }
]

AI Score

7.1

Confidence

High

EPSS

0

Percentile

10.3%

SSVC

Exploitation

none

Automatable

no

Technical Impact

partial