Lucene search

K
cve416baaa9-dc9f-4396-8d5f-8c081fb06d67CVE-2024-38613
HistoryJun 19, 2024 - 2:15 p.m.

CVE-2024-38613

2024-06-1914:15:21
416baaa9-dc9f-4396-8d5f-8c081fb06d67
web.nvd.nist.gov
20
linux kernel
m68k architecture
spinlock race

6.3 Medium

AI Score

Confidence

High

0.0004 Low

EPSS

Percentile

13.1%

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

m68k: Fix spinlock race in kernel thread creation

Context switching does take care to retain the correct lock owner across
the switch from ‘prev’ to ‘next’ tasks. This does rely on interrupts
remaining disabled for the entire duration of the switch.

This condition is guaranteed for normal process creation and context
switching between already running processes, because both ‘prev’ and
‘next’ already have interrupts disabled in their saved copies of the
status register.

The situation is different for newly created kernel threads. The status
register is set to PS_S in copy_thread(), which does leave the IPL at 0.
Upon restoring the ‘next’ thread’s status register in switch_to() aka
resume(), interrupts then become enabled prematurely. resume() then
returns via ret_from_kernel_thread() and schedule_tail() where run queue
lock is released (see finish_task_switch() and finish_lock_switch()).

A timer interrupt calling scheduler_tick() before the lock is released
in finish_task_switch() will find the lock already taken, with the
current task as lock owner. This causes a spinlock recursion warning as
reported by Guenter Roeck.

As far as I can ascertain, this race has been opened in commit
533e6903bea0 (“m68k: split ret_from_fork(), simplify kernel_thread()”)
but I haven’t done a detailed study of kernel history so it may well
predate that commit.

Interrupts cannot be disabled in the saved status register copy for
kernel threads (init will complain about interrupts disabled when
finally starting user space). Disable interrupts temporarily when
switching the tasks’ register sets in resume().

Note that a simple oriw 0x700,%sr after restoring sr is not enough here

  • this leaves enough of a race for the ‘spinlock recursion’ warning to
    still be observed.

Tested on ARAnyM and qemu (Quadra 800 emulation).

Affected configurations

Vulners
Node
linuxlinux_kernelRange3.74.19.316
OR
linuxlinux_kernelRange4.20.05.4.278
OR
linuxlinux_kernelRange5.5.05.10.219
OR
linuxlinux_kernelRange5.11.05.15.161
OR
linuxlinux_kernelRange5.16.06.1.93
OR
linuxlinux_kernelRange6.2.06.6.33
OR
linuxlinux_kernelRange6.7.06.8.12
OR
linuxlinux_kernelRange6.9.06.9.3
OR
linuxlinux_kernelRange6.10.06.10-rc1

CNA Affected

[
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "unaffected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "arch/m68k/kernel/entry.S"
    ],
    "versions": [
      {
        "version": "533e6903bea0",
        "lessThan": "2a8d1d95302c",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "533e6903bea0",
        "lessThan": "5213cc01d046",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "533e6903bea0",
        "lessThan": "4eeffecc8e3c",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "533e6903bea0",
        "lessThan": "77b2b67a0f8b",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "533e6903bea0",
        "lessThan": "0d9ae1253535",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "533e6903bea0",
        "lessThan": "f3baf0f4f92a",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "533e6903bea0",
        "lessThan": "f1d4274a84c0",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "533e6903bea0",
        "lessThan": "95f00caf767b",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "533e6903bea0",
        "lessThan": "da89ce46f024",
        "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/m68k/kernel/entry.S"
    ],
    "versions": [
      {
        "version": "3.7",
        "status": "affected"
      },
      {
        "version": "0",
        "lessThan": "3.7",
        "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.8.12",
        "lessThanOrEqual": "6.8.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.9.3",
        "lessThanOrEqual": "6.9.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.10-rc1",
        "lessThanOrEqual": "*",
        "status": "unaffected",
        "versionType": "original_commit_for_fix"
      }
    ]
  }
]

6.3 Medium

AI Score

Confidence

High

0.0004 Low

EPSS

Percentile

13.1%