Lucene search

K
cveLinuxCVE-2024-46791
HistorySep 18, 2024 - 8:15 a.m.

CVE-2024-46791

2024-09-1808:15:06
Linux
web.nvd.nist.gov
9
linux kernel
vulnerability
deadlock
interrupt
mcp251x
fix

AI Score

6.6

Confidence

Low

EPSS

0

Percentile

11.0%

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

can: mcp251x: fix deadlock if an interrupt occurs during mcp251x_open

The mcp251x_hw_wake() function is called with the mpc_lock mutex held and
disables the interrupt handler so that no interrupts can be processed while
waking the device. If an interrupt has already occurred then waiting for
the interrupt handler to complete will deadlock because it will be trying
to acquire the same mutex.

CPU0 CPU1


mcp251x_open()
mutex_lock(&priv->mcp_lock)
request_threaded_irq()
<interrupt>
mcp251x_can_ist()
mutex_lock(&priv->mcp_lock)
mcp251x_hw_wake()
disable_irq() <– deadlock

Use disable_irq_nosync() instead because the interrupt handler does
everything while holding the mutex so it doesn’t matter if it’s still
running.

Affected configurations

Vulners
Node
linuxlinux_kernelRange5.55.10.226
OR
linuxlinux_kernelRange5.11.05.15.167
OR
linuxlinux_kernelRange5.16.06.1.110
OR
linuxlinux_kernelRange6.2.06.6.51
OR
linuxlinux_kernelRange6.7.06.10.10
OR
linuxlinux_kernelRange6.11.0
VendorProductVersionCPE
linuxlinux_kernel*cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*

CNA Affected

[
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "unaffected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "drivers/net/can/spi/mcp251x.c"
    ],
    "versions": [
      {
        "version": "8ce8c0abcba3",
        "lessThan": "3a49b6b1caf5",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "8ce8c0abcba3",
        "lessThan": "513c8fc189b5",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "8ce8c0abcba3",
        "lessThan": "f7ab9e14b23a",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "8ce8c0abcba3",
        "lessThan": "8fecde9c3f9a",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "8ce8c0abcba3",
        "lessThan": "e554113a1cd2",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "8ce8c0abcba3",
        "lessThan": "7dd9c26bd6cf",
        "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/net/can/spi/mcp251x.c"
    ],
    "versions": [
      {
        "version": "5.5",
        "status": "affected"
      },
      {
        "version": "0",
        "lessThan": "5.5",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.10.226",
        "lessThanOrEqual": "5.10.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.15.167",
        "lessThanOrEqual": "5.15.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.1.110",
        "lessThanOrEqual": "6.1.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.6.51",
        "lessThanOrEqual": "6.6.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.10.10",
        "lessThanOrEqual": "6.10.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.11",
        "lessThanOrEqual": "*",
        "status": "unaffected",
        "versionType": "original_commit_for_fix"
      }
    ]
  }
]

AI Score

6.6

Confidence

Low

EPSS

0

Percentile

11.0%

Related for CVE-2024-46791