CVE-2026-31701
5.5 MEDIUMIn the Linux kernel, the following vulnerability has been resolved: ALSA: caiaq: take a reference on the USB device in create_card() Th...
Published: 2026-05-01 · Last updated: 2026-06-01
Severity and scoring
- CVSS
- 5.5 MEDIUM
- Vector
- CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Affected products
| Vendor | Product |
|---|---|
| linux | linux_kernel |
Description
In the Linux kernel, the following vulnerability has been resolved: ALSA: caiaq: take a reference on the USB device in create_card() The caiaq driver stores a pointer to the parent USB device in cdev->chip.dev but never takes a reference on it. The card's private_free callback, snd_usb_caiaq_card_free(), can run asynchronously via snd_card_free_when_closed() after the USB device has already been disconnected and freed, so any access to cdev->chip.dev in that path dereferences a freed usb_device. On top of the refcounting issue, the current card_free implementation calls usb_reset_device(cdev->chip.dev). A reset in a free callback is inappropriate: the device is going away, the call takes the device lock in a teardown context, and the reset races with the disconnect path that the callback is already cleaning up after. Take a reference on the USB device in create_card() with usb_get_dev(), drop it with usb_put_dev() in the free callback, and remove the usb_reset_device() call.
Source: NVD
References
- [NVD]https://nvd.nist.gov/vuln/detail/CVE-2026-31701
- [Patch]https://git.kernel.org/stable/c/1d9be95aee6c6246a21752e60c9519902649f482
- [Other]https://git.kernel.org/stable/c/493b3a682ededc804555755f5d2193201339612d
- [Patch]https://git.kernel.org/stable/c/59b622a043cffc58b7638cd85ae6c30a0904f8e6
- [Patch]https://git.kernel.org/stable/c/6473ed16df1fe88051140611b3eb9a49be7f429e
- [Patch]https://git.kernel.org/stable/c/80bb50e2d459213cccff3111d5ef98ed4238c0d5
- [Other]https://git.kernel.org/stable/c/ac7345f68cda6989016d85d63f7b244c064aa8f6
- [Other]https://git.kernel.org/stable/c/dbcf7588e8dea017ddb3f18ec2766f7d2e5f2a0e
- [Patch]https://git.kernel.org/stable/c/f6634af5de728a46792f674a66d7843570cb68f7
Related CVEs
Same vendor
- CVE-2026-46273 — In the Linux kernel, the following vulnerability has been resolved: ibmveth: Disable GSO for packets with small MSS Some physical adapt... (8.6 HIGH)
- CVE-2026-46272 — In the Linux kernel, the following vulnerability has been resolved: coresight: tmc-etr: Fix race condition between sysfs and perf mode ... (4.7 MEDIUM)
- CVE-2026-46271 — In the Linux kernel, the following vulnerability has been resolved: wifi: ath12k: do WoW offloads only on primary link In case of multi... (7.8 HIGH)
- CVE-2026-46270 — In the Linux kernel, the following vulnerability has been resolved: power: supply: rt9455: Fix use-after-free in power_supply_changed() ... (8.4 HIGH)
- CVE-2026-46269 — In the Linux kernel, the following vulnerability has been resolved: pinctrl: canaan: k230: Fix NULL pointer dereference when parsing dev... (5.5 MEDIUM)