CVE-2026-46167

MEDIUM

usb: usblp: fix uninitialized heap leak via LPGETSTATUS ioctl

Title source: cna
STIX 2.1

Description

In the Linux kernel, the following vulnerability has been resolved: usb: usblp: fix uninitialized heap leak via LPGETSTATUS ioctl Just like in a previous problem in this driver, usblp_ctrl_msg() will collapse the usb_control_msg() return value to 0/-errno, discarding the actual number of bytes transferred. Ideally that short command should be detected and error out, but many printers are known to send "incorrect" responses back so we can't just do that. statusbuf is kmalloc(8) at probe time and never filled before the first LPGETSTATUS ioctl. usblp_read_status() requests 1 byte. If a malicious printer responds with zero bytes, *statusbuf is one byte of stale kmalloc heap, sign-extended into the local int status, which the LPGETSTATUS path then copy_to_user()s directly to the ioctl caller. Fix this all by just zapping out the memory buffer when allocated at probe time. If a later call does a short read, the data will be identical to what the device sent it the last time, so there is no "leak" of information happening.

Scores

CVSS v3 5.5
EPSS 0.0013
EPSS Percentile 2.7%
Attack Vector LOCAL
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

Details

CWE
CWE-908
Status published
Products (26)
Linux/Linux < 2.6.12
Linux/Linux < 6.12.88
Linux/Linux < 6.18.30
Linux/Linux < 6.6.140
Linux/Linux < 7.0.7
Linux/Linux 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 - 087d97342c100138ea7d75a50977c9c2319f957b
Linux/Linux 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 - 0f7c41314ebf17049917a452684db371babf711a
Linux/Linux 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 - 6b0e7438e31c74b01514d31ff35c1e688c4baaba
Linux/Linux 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 - 762a6ccf391db0d629e590a803a3a2231e17dd3f
Linux/Linux 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 - a502b997668401a6821501fc98b7f9220f9b6ff2
... and 16 more
Published May 28, 2026
Tracked Since May 28, 2026