SEPTEMBER 8, 2026
Live Feed
Back to database
Case File

CVE-2026-64003

HIGH · CVSS 7.5 EPSS 0.44%

Source: NVD + CISA KEV + EPSS · Published 2026-07-19 · Last synced 2026-08-18

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's SCSI subsystem, specifically during the recovery state of SCSI hosts, where requeued commands may remain unprocessed due to improper handling of device states. This can lead to stuck requests and potentially hang the device removal process, impacting system stability and performance. Organizations utilizing Linux systems with SCSI devices should prioritize addressing this vulnerability to ensure reliable operation and prevent service disruptions.

CVE
CVE-2026-64003
Severity
HIGH
CVSS
7.5
EPSS
0.44%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: scsi: core: Run queues for all non-SDEV_DEL devices from scsi_run_host_queues While a SCSI host is in a recovery state, scsi_mq_requeue_cmd() will not set the requeue list for a requeued command to be kicked in the future. The expectation is a call to scsi_run_host_queues() will kick all SCSI devices once the recovery state is cleared. However, scsi_run_host_queues() uses shost_for_each_device() which uses scsi_device_get() and so will ignore devices in a partially removed state like SDEV_CANCEL. But these devices may also have requeued requests, leaving their requests stuck from not being kicked and causing the removal process of the device to hang. scsi_run_host_queues() needs to run against more devices than the macro shost_for_each_device() allows. Instead of using the too limiting scsi_device_get() state checks, only ignore devices in SDEV_DEL state or when unable to acquire a reference. Attempt to run the queues for all other devices when scsi_run_host_queues() is called.