CVE-2022-48760: USB: core: Fix hang in usb_kill_urb by adding memory barriers

Published Jun 20, 2024
·
Updated

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

USB: core: Fix hang in usbkillurb by adding memory barriers

The Linux kernel CVE team has assigned CVE-2022-48760 to this issue.

Upstream advisory: https://lore.kernel.org/linux-cve-announce/2024062008-CVE-2022-48760-b80e@gregkh/T

Other sources

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

USB: core: Fix hang in usbkillurb by adding memory barriers

The syzbot fuzzer has identified a bug in which processes hang waiting for usbkillurb() to return. It turns out the issue is not unlinking the URB; that works just fine. Rather, the problem arises when the wakeup notification that the URB has completed is not received.

The reason is memory-access ordering on SMP systems. In outline form, usbkillurb() and usbhcdgivebackurb() operating concurrently on different CPUs perform the following actions:

CPU 0 CPU 1 ---------------------------- --------------------------------- usbkillurb(): usbhcdgivebackurb(): ... ... atomicinc(&urb->reject); atomicdec(&urb->usecount); ... ... waitevent(usbkillurbqueue, atomicread(&urb->usecount) == 0); if (atomicread(&urb->reject)) wakeup(&usbkillurbqueue);

Confining your attention to urb->reject and urb->usecount, you can see that the overall pattern of accesses on CPU 0 is:

write urb->reject, then read urb->usecount;

whereas the overall pattern of accesses on CPU 1 is:

write urb->usecount, then read urb->reject.

This pattern is referred to in memory-model circles as SB (for "Store Buffering"), and it is well known that without suitable enforcement of the desired order of accesses -- in the form of memory barriers -- it is entirely possible for one or both CPUs to execute their reads ahead of their writes. The end result will be that sometimes CPU 0 sees the old un-decremented value of urb->usecount while CPU 1 sees the old un-incremented value of urb->reject. Consequently CPU 0 ends up on the wait queue and never gets woken up, leading to the observed hang in usbkillurb().

The same pattern of accesses occurs in usbpoisonurb() and the failure pathway of usbhcdsubmiturb().

The problem is fixed by adding suitable memory barriers. To provide proper memory-access ordering in the SB pattern, a full barrier is required on both CPUs. The atomicinc() and atomicdec() accesses themselves don't provide any memory ordering, but since they are present, we can use the optimized smpmbafteratomic() memory barrier in the various routines to obtain the desired effect.

This patch adds the necessary memory barriers.

IBM

Affected Software

22 affected componentsFixes available
redhat/kernel<4.4.302
4.4.302
redhat/kernel<4.9.300
4.9.300
redhat/kernel<4.14.265
4.14.265
redhat/kernel<4.19.228
4.19.228
redhat/kernel<5.4.176
5.4.176
redhat/kernel<5.10.96
5.10.96
redhat/kernel<5.15.19
5.15.19
redhat/kernel<5.16.5
5.16.5
redhat/kernel<5.17
5.17
IBM Security Verify Governance<=ISVG 10.0.2
IBM Security Verify Governance, Identity Manager Software Stack<=ISVG 10.0.2
IBM Security Verify Governance, Identity Manager Virtual Appliance<=ISVG 10.0.2
IBM Security Verify Governance Identity Manager Container<=ISVG 10.0.2
Linux Linux kernel<4.4.302
Linux Linux kernel>=4.5<4.9.300
Linux Linux kernel>=4.10<4.14.265
Linux Linux kernel>=4.15<4.19.228
Linux Linux kernel>=4.20<5.4.176
Linux Linux kernel>=5.5<5.10.96
Linux Linux kernel>=5.11<5.15.19
Linux Linux kernel>=5.16<5.16.5
Linux Linux kernel=5.17-rc1

Event History

Jun 20, 2024
CVE Published
via MITRE·11:13 AM
Data Sourced
via MITRE·11:13 AM
Description
Data Sourced
via NVD·12:15 PM
RemedyDescriptionSeverityWeaknessAffected Software

Parent advisories

This vulnerability appears in the following advisories.

Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is the severity of CVE-2022-48760?

CVE-2022-48760 has been classified as a moderate severity vulnerability affecting the Linux kernel.

2

How do I fix CVE-2022-48760?

To fix CVE-2022-48760, update your Linux kernel to version 4.4.302, 4.9.300, 4.14.265, 4.19.228, 5.4.176, 5.10.96, 5.15.19, 5.16.5, or 5.17.

3

What systems are affected by CVE-2022-48760?

CVE-2022-48760 affects multiple versions of the Linux kernel across various distributions.

4

What is the nature of the vulnerability in CVE-2022-48760?

CVE-2022-48760 relates to a hang issue in the usb_kill_urb function due to the lack of memory barriers.

5

Is there any workaround for CVE-2022-48760?

There are no recommended workarounds for CVE-2022-48760; updating the kernel is the best mitigation.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203
CVE-2022-48760 - USB: core: Fix hang in usb_kill_urb by adding memory barriers - SecAlerts