CVE-2026-89586
Received Received - Intake

ATA DSM TRIM Failure in Linux Kernel

Vulnerability report for CVE-2026-89586, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-09-11

Last updated on: 2026-09-11

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: ata: libata-scsi: fix DSM TRIM for sector sizes larger than 2048 bytes ata_scsi_write_same_xlat() translates a SCSI WRITE SAME command with the UNMAP bit set into an ATA DATA SET MANAGEMENT TRIM command. The TRIM descriptor is built by ata_format_dsm_trim_descr() into the 2048-byte ata_scsi_rbuf staging buffer, and the number of bytes copied is compared against the logical sector size by the caller: size = ata_format_dsm_trim_descr(scmd, trmax, block, n_block); if (size != len) /* len == sdp->sector_size */ goto invalid_param_len; ata_format_dsm_trim_descr() clamps the copy length to ATA_SCSI_RBUF_SIZE (2048). On a device whose logical sector size exceeds that (e.g. a 4Kn device, where sector_size == 4096) the function can never return more than 2048, while the caller expects it to return sector_size. The comparison therefore always fails, so every TRIM is rejected with "Parameter list length error" and WARN_ON() splats on each attempt. TRIM / discard is thus completely broken on such devices. The descriptor was incorrectly sized from the logical sector size. A DSM TRIM payload is a list of 512-byte pages, each holding up to ATA_MAX_TRIM_RNUM (64) LBA Range Entries, and is independent of the logical sector size. The Block Limits VPD page already advertises a single such page as the maximum WRITE SAME length (65535 * ATA_MAX_TRIM_RNUM logical blocks), so the block layer never sends a request that needs more than one page. Emit exactly one 512-byte page, independent of the logical sector size, and transfer only that page (COUNT == 1). For a 512-byte-sector device this is unchanged; devices with larger logical sectors now work instead of failing every TRIM.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-11
Last Modified
2026-09-11
Generated
2026-09-12
AI Q&A
2026-09-12
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel affects TRIM operations for storage devices with sector sizes larger than 2048 bytes. The ata_scsi_write_same_xlat function incorrectly handles DSM TRIM commands by clamping the descriptor size to 2048 bytes, causing TRIM requests to fail on devices with larger sectors (e.g., 4Kn devices with 4096-byte sectors). This results in a 'Parameter list length error' and breaks TRIM/discard functionality entirely.

Detection Guidance

This vulnerability affects TRIM/discard functionality on Linux systems with logical sector sizes larger than 2048 bytes (e.g., 4Kn devices). Detection involves checking for WARN_ON() splats in kernel logs and failed TRIM operations. Monitor dmesg for errors like 'Parameter list length error' during discard operations.

Impact Analysis

If you use a storage device with sector sizes larger than 2048 bytes (e.g., 4Kn drives), this vulnerability prevents TRIM operations from working. TRIM is essential for maintaining SSD performance over time by allowing the operating system to inform the drive which data blocks are no longer in use. Without TRIM, your SSD may slow down as it retains unnecessary data.

Mitigation Strategies

Apply the Linux kernel patch that fixes the DSM TRIM descriptor sizing issue. Disable TRIM/discard operations temporarily if immediate patching is not possible, but this may impact storage performance and longevity.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-89586. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart