CVE-2026-90015
Last modified
CVE-2026-90015 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: xhci: fix lost bounce buffers on TDs spanning several ring segments When a TD reaches a link TRB with data that is not aligned to the endpoint's wMaxPacketSize, xhci_align_td() stages the unalignable tail through the bounce buffer of the ring segment holding that link TRB. xhci_unmap_td_bounce_buffer() later unmaps it and, for IN transfers, copies the data back into the URB's buffer. The enqueue path records the segment that was bounced in td->bounce_seg, under the assumption that a TD never spans more than two ring segments. That assumption does not hold: a TD large enough to span three or more segments crosses several link TRBs and can be bounced at each of them. Only the last one survives in td->bounce_seg, so every earlier bounce buffer is neither copied back nor DMA unmapped. The URB still completes with actual_length equal to the requested length and no error, so the transfer looks successful while a wMaxPacketSize sized hole in the destination buffer silently keeps its previous contents. It also leaks a DMA mapping per dropped bounce. Any sufficiently large and fragmented bulk transfer can hit this.
Description
In the Linux kernel, the following vulnerability has been resolved: xhci: fix lost bounce buffers on TDs spanning several ring segments When a TD reaches a link TRB with data that is not aligned to the endpoint's wMaxPacketSize, xhci_align_td() stages the unalignable tail through the bounce buffer of the ring segment holding that link TRB. xhci_unmap_td_bounce_buffer() later unmaps it and, for IN transfers, copies the data back into the URB's buffer. The enqueue path records the segment that was bounced in td->bounce_seg, under the assumption that a TD never spans more than two ring segments. That assumption does not hold: a TD large enough to span three or more segments crosses several link TRBs and can be bounced at each of them. Only the last one survives in td->bounce_seg, so every earlier bounce buffer is neither copied back nor DMA unmapped. The URB still completes with actual_length equal to the requested length and no error, so the transfer looks successful while a wMaxPacketSize sized hole in the destination buffer silently keeps its previous contents. It also leaks a DMA mapping per dropped bounce. Any sufficiently large and fragmented bulk transfer can hit this. It was found with a USB mass storage device behind xHCI backing a dm-verity target with 512 byte hash blocks, where the stale data is detected rather than silently consumed. The device enumerates as SuperSpeed, so wMaxPacketSize is 1024, while dm-bufio issues one 512 byte bio per hash block. verity_prefetch_io() makes the block layer merge hundreds of them into a single request of up to 512 scatterlist entries of 512 bytes each. At 256 TRBs per ring segment such a TD spans three segments, and every segment boundary falls on an odd multiple of 512, i.e. unaligned to wMaxPacketSize. dm-bufio then caches a hash block holding stale data and dm-verity declares the metadata block corrupted: device-mapper: verity: 8:2: metadata block 10850 is corrupted A reproducer running this under qemu is available at https://github.com/baloo/xhci-verity The bounce state (bounce_buf, bounce_dma, bounce_len, bounce_offs) already lives on the ring segment, so there is nothing extra to track. Keep recording the last bounced segment in td->bounce_seg and, on completion, walk the segments from td->start_seg up to it, unmapping every segment that still has a pending bounce. Stopping at td->bounce_seg rather than td->end_seg matters: a bounce implies the TD continues past that segment's link TRB, so bounce_seg is always strictly before end_seg, and a later TD may already have started in end_seg and been bounced there. Walking that far would copy a foreign bounce buffer into this URB and unmap it twice. It also keeps the walk correct if a TD ever wraps the whole ring so that end_seg == start_seg. [mn: Add ring->num_segs check to prevent unlikely infinite for loop.]
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= f9c589e142d04b8a19eb382162f804d17102b5ed, < c8124b28f12dbdd126118e63d0ebf8093a01fb81; >= f9c589e142d04b8a19eb382162f804d17102b5ed, < e04d5304a248e5d2a7f4faa87541644bdd320cfb; >= f9c589e142d04b8a19eb382162f804d17102b5ed, < a1629dfb011446d02905778f6df19f14c5f4f3b3; >= f9c589e142d04b8a19eb382162f804d17102b5ed, < 43239fc6dfb62c50ae1b9c0e82bac0f8cd2e285c; >= f9c589e142d04b8a19eb382162f804d17102b5ed, < 3c9a2b5a4f1183696f02ac280ced1d34afb409b1; >= f9c589e142d04b8a19eb382162f804d17102b5ed, < efaab8938fb92979be6df359f7d1a43fb7e4717d; >= f9c589e142d04b8a19eb382162f804d17102b5ed, < 7236bbd2cb7d9fc0eda896bbd34790341e2a4377; >= f9c589e142d04b8a19eb382162f804d17102b5ed, < ff44dfb03a293bf30e31f98772a1dd316a6071d1 |
| Linux | Linux | 4.8 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-90015?
How severe is CVE-2026-90015?
How do I fix CVE-2026-90015?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-90009In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-90010In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-90011In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2026-90012In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-90013In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-90014In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-90016In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-90017In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-90018In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-90019In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9002IBM WebSphere Extreme Scale 8.6.1.0 through 8.6.1.6 could al…6.5
- CVE-2026-90020In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-90015?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
