CVE-2026-89862

Unknown

Last modified

CVE-2026-89862 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: scsi: qla2xxx: Fix BSG job leak on validate flash image error path qla28xx_validate_flash_image() returns QLA_SUCCESS (0) unconditionally, telling the FC BSG transport (fc_bsg_host_dispatch()) that the driver owns and will complete the request. But bsg_job_done() is guarded by "if (!rval)", so on the error path (rval == -EINVAL) neither the driver nor the transport completes the job.

Description

In the Linux kernel, the following vulnerability has been resolved: scsi: qla2xxx: Fix BSG job leak on validate flash image error path qla28xx_validate_flash_image() returns QLA_SUCCESS (0) unconditionally, telling the FC BSG transport (fc_bsg_host_dispatch()) that the driver owns and will complete the request. But bsg_job_done() is guarded by "if (!rval)", so on the error path (rval == -EINVAL) neither the driver nor the transport completes the job. The request dangles until it times out, leaking block layer resources. Commit c2c68225b145 ("scsi: qla2xxx: Fix bsg_done() causing double free") added the "if (!rval)" guard to a batch of BSG handlers. That is correct for handlers that also return the error code (the transport then completes the job once via fail_host_msg), but this function returns QLA_SUCCESS unconditionally, so the guard turned a correct single completion into a leak. Always call bsg_job_done(): bsg_reply->result is DID_OK and the error is reported in vendor_rsp[0], and since the function returns 0 the transport will not complete the job a second time.

Affected Software

Source: CNA advisory (CVE.org). NVD analysis pending.

VendorProductVersions
LinuxLinux>= c2c68225b1456f4d0d393b5a8778d51bb0d5b1d0, < e25241f9fa01fb0c088381a156d84a725b71c1ef; >= c2c68225b1456f4d0d393b5a8778d51bb0d5b1d0, < 0fb52cc632464b0cd07f970341330466d772efe1; 057a5bdc481e58ab853117254867ffb22caf9f6e; f2bbb4db0e4a4fbd5e649c0b5d8733f61da24720; 27ac9679c43a09e54e2d9aae9980ada045b428e0; 74e7458537cd9349cf019862e51491f670871707; 871f6236da96c4a9712b8a29d7f555f767a47e95; 31f33b856d2324d86bcaef295f4d210477a1c018; 708003e1bc857dd014d4c44278d7d77c26f91b1c; >= 5.10.251, < 5.11; >= 5.15.201, < 5.16; >= 6.1.164, < 6.2; >= 6.6.127, < 6.7; >= 6.12.74, < 6.13; >= 6.18.13, < 6.19; >= 6.19.3, < 6.20
LinuxLinux7.0

References

Timeline

Published
Last Modified
Status
Received

Frequently Asked Questions

What is CVE-2026-89862?
In the Linux kernel, the following vulnerability has been resolved: scsi: qla2xxx: Fix BSG job leak on validate flash image error path qla28xx_validate_flash_image() returns QLA_SUCCESS (0) unconditionally, telling the FC BSG transport (fc_bsg_host_dispatch()) that the driver owns and will complete the request. But bsg_job_done() is guarded by "if (!rval)", so on the error path (rval == -EINVAL) neither the driver nor the transport completes the job. The request dangles until it times out, leaking block layer resources. Commit c2c68225b145 ("scsi: qla2xxx: Fix bsg_done() causing double free") added the "if (!rval)" guard to a batch of BSG handlers. That is correct for handlers that also return the error code (the transport then completes the job once via fail_host_msg), but this function returns QLA_SUCCESS unconditionally, so the guard turned a correct single completion into a leak. Always call bsg_job_done(): bsg_reply->result is DID_OK and the error is reported in vendor_rsp[0], and since the function returns 0 the transport will not complete the job a second time.
How severe is CVE-2026-89862?
Severity scoring for CVE-2026-89862 is pending analysis.
How do I fix CVE-2026-89862?
Check the vendor references and advisories linked above for patched versions and mitigation guidance. You can also run a Strix scan to test if your systems are affected.

How Strix Helps

Related CVEs from 2026

Are you affected by CVE-2026-89862?

Run a free Strix scan to check your systems for this vulnerability.

Scan your code now

Source: NVD / NIST