Lucene search

K
cvelistLinuxCVELIST:CVE-2024-31076
HistoryJun 21, 2024 - 10:18 a.m.

CVE-2024-31076 genirq/cpuhotplug, x86/vector: Prevent vector leak during CPU offline

2024-06-2110:18:04
Linux
www.cve.org
2
linux kernel
vulnerability
genirq/cpuhotplug
x86/vector
prevent vector leak
cpu offline
irqd_move_pcntxt
interrupt affinity reconfiguration
procfs
apicd->move_in_progress
irq_force_complete_move()
irq_needs_fixup()
vector_matrix

0.0004 Low

EPSS

Percentile

13.1%

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

genirq/cpuhotplug, x86/vector: Prevent vector leak during CPU offline

The absence of IRQD_MOVE_PCNTXT prevents immediate effectiveness of
interrupt affinity reconfiguration via procfs. Instead, the change is
deferred until the next instance of the interrupt being triggered on the
original CPU.

When the interrupt next triggers on the original CPU, the new affinity is
enforced within __irq_move_irq(). A vector is allocated from the new CPU,
but the old vector on the original CPU remains and is not immediately
reclaimed. Instead, apicd->move_in_progress is flagged, and the reclaiming
process is delayed until the next trigger of the interrupt on the new CPU.

Upon the subsequent triggering of the interrupt on the new CPU,
irq_complete_move() adds a task to the old CPU’s vector_cleanup list if it
remains online. Subsequently, the timer on the old CPU iterates over its
vector_cleanup list, reclaiming old vectors.

However, a rare scenario arises if the old CPU is outgoing before the
interrupt triggers again on the new CPU.

In that case irq_force_complete_move() is not invoked on the outgoing CPU
to reclaim the old apicd->prev_vector because the interrupt isn’t currently
affine to the outgoing CPU, and irq_needs_fixup() returns false. Even
though __vector_schedule_cleanup() is later called on the new CPU, it
doesn’t reclaim apicd->prev_vector; instead, it simply resets both
apicd->move_in_progress and apicd->prev_vector to 0.

As a result, the vector remains unreclaimed in vector_matrix, leading to a
CPU vector leak.

To address this issue, move the invocation of irq_force_complete_move()
before the irq_needs_fixup() call to reclaim apicd->prev_vector, if the
interrupt is currently or used to be affine to the outgoing CPU.

Additionally, reclaim the vector in __vector_schedule_cleanup() as well,
following a warning message, although theoretically it should never see
apicd->move_in_progress with apicd->prev_cpu pointing to an offline CPU.

CNA Affected

[
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "unaffected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "arch/x86/kernel/apic/vector.c",
      "kernel/irq/cpuhotplug.c"
    ],
    "versions": [
      {
        "version": "f0383c24b485",
        "lessThan": "a40209d355af",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "f0383c24b485",
        "lessThan": "f5f467596060",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "f0383c24b485",
        "lessThan": "6752dfcfff3a",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "f0383c24b485",
        "lessThan": "9eeda3e0071a",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "f0383c24b485",
        "lessThan": "e9c96d01d520",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "f0383c24b485",
        "lessThan": "59f86a290838",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "f0383c24b485",
        "lessThan": "ebfb16fc057a",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "f0383c24b485",
        "lessThan": "a6c11c0a5235",
        "status": "affected",
        "versionType": "git"
      }
    ]
  },
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "affected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "arch/x86/kernel/apic/vector.c",
      "kernel/irq/cpuhotplug.c"
    ],
    "versions": [
      {
        "version": "4.13",
        "status": "affected"
      },
      {
        "version": "0",
        "lessThan": "4.13",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "4.19.316",
        "lessThanOrEqual": "4.19.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.4.278",
        "lessThanOrEqual": "5.4.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.10.219",
        "lessThanOrEqual": "5.10.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.15.161",
        "lessThanOrEqual": "5.15.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.1.93",
        "lessThanOrEqual": "6.1.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.6.33",
        "lessThanOrEqual": "6.6.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.9.4",
        "lessThanOrEqual": "6.9.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.10-rc1",
        "lessThanOrEqual": "*",
        "status": "unaffected",
        "versionType": "original_commit_for_fix"
      }
    ]
  }
]

0.0004 Low

EPSS

Percentile

13.1%

Related for CVELIST:CVE-2024-31076