Lucene search

K
cvelistLinuxCVELIST:CVE-2021-47192
HistoryApr 10, 2024 - 6:56 p.m.

CVE-2021-47192 scsi: core: sysfs: Fix hang when device state is set via sysfs

2024-04-1018:56:30
Linux
www.cve.org
linux kernel
scsi
sysfs
hang fix
device state
regression
iscsi recovery
deadlock fixed
running state
rescan check
transport class
vulnerability fix

6.7 Medium

AI Score

Confidence

Low

0.0004 Low

EPSS

Percentile

15.6%

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

scsi: core: sysfs: Fix hang when device state is set via sysfs

This fixes a regression added with:

commit f0f82e2476f6 (“scsi: core: Fix capacity set to zero after
offlinining device”)

The problem is that after iSCSI recovery, iscsid will call into the kernel
to set the dev’s state to running, and with that patch we now call
scsi_rescan_device() with the state_mutex held. If the SCSI error handler
thread is just starting to test the device in scsi_send_eh_cmnd() then it’s
going to try to grab the state_mutex.

We are then stuck, because when scsi_rescan_device() tries to send its I/O
scsi_queue_rq() calls -> scsi_host_queue_ready() -> scsi_host_in_recovery()
which will return true (the host state is still in recovery) and I/O will
just be requeued. scsi_send_eh_cmnd() will then never be able to grab the
state_mutex to finish error handling.

To prevent the deadlock move the rescan-related code to after we drop the
state_mutex.

This also adds a check for if we are already in the running state. This
prevents extra scans and helps the iscsid case where if the transport class
has already onlined the device during its recovery process then we don’t
need userspace to do it again plus possibly block that daemon.

CNA Affected

[
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "unaffected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "drivers/scsi/scsi_sysfs.c"
    ],
    "versions": [
      {
        "version": "69aa1a1a569f",
        "lessThan": "edd783162bf2",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "711459514e29",
        "lessThan": "a792e0128d23",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "f0f82e2476f6",
        "lessThan": "bcc0e3175a97",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "f0f82e2476f6",
        "lessThan": "4edd8cd4e86d",
        "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/scsi/scsi_sysfs.c"
    ],
    "versions": [
      {
        "version": "5.14",
        "status": "affected"
      },
      {
        "version": "0",
        "lessThan": "5.14",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.4.162",
        "lessThanOrEqual": "5.4.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.10.82",
        "lessThanOrEqual": "5.10.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.15.5",
        "lessThanOrEqual": "5.15.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.16",
        "lessThanOrEqual": "*",
        "status": "unaffected",
        "versionType": "original_commit_for_fix"
      }
    ]
  }
]

6.7 Medium

AI Score

Confidence

Low

0.0004 Low

EPSS

Percentile

15.6%