Skip to main content

Linux Kernel CVE-2026-45911

| EUVDEUVD-2026-32377 MEDIUM
NULL Pointer Dereference (CWE-476)
2026-05-27 416baaa9-dc9f-4396-8d5f-8c081fb06d67 GHSA-jj6w-3723-c335
5.5
CVSS 3.1 · NVD
Share

Severity by source

NVD PRIMARY
5.5 MEDIUM
AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
vuln.today AI
4.7 MEDIUM

Race condition between role switch and resume callback timing warrants AC:H; local sysfs write access sufficient for PR:L; no confidentiality or integrity impact applies.

3.1 AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
4.0 AV:L/AC:H/AT:P/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
SUSE
MEDIUM
qualitative
Red Hat
5.5 LOW
qualitative

Primary rating from NVD.

CVSS VectorNVD

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Attack Vector
Local
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Lifecycle Timeline

5
Analysis Generated
Jun 24, 2026 - 15:09 vuln.today
CVSS changed
Jun 24, 2026 - 15:07 NVD
5.5 (MEDIUM)
Patch available
May 27, 2026 - 19:46 EUVD
CVE Published
May 27, 2026 - 14:17 nvd
MEDIUM 5.5
CVE Published
May 27, 2026 - 14:17 nvd
UNKNOWN (no severity yet)

DescriptionNVD

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

usb: cdns3: fix role switching during resume

If the role change while we are suspended, the cdns3 driver switches to the new mode during resume. However, switching to host mode in this context causes a NULL pointer dereference.

The host role's start() operation registers a xhci-hcd device, but its probe is deferred while we are in the resume path. The host role's resume() operation assumes the xhci-hcd device is already probed, which is not the case, leading to the dereference. Since the start() operation of the new role is already called, the resume operation can be skipped.

So skip the resume operation for the new role if a role switch occurs during resume. Once the resume sequence is complete, the xhci-hcd device can be probed in case of host mode.

Unable to handle kernel NULL pointer dereference at virtual address 0000000000000208 Mem abort info: ... Data abort info: ... [0000000000000208] pgd=0000000000000000, p4d=0000000000000000 Internal error: Oops: 0000000096000004 [#1] SMP Modules linked in: CPU: 0 UID: 0 PID: 146 Comm: sh Not tainted 6.19.0-rc7-00013-g6e64f4aabfae-dirty #135 PREEMPT Hardware name: Texas Instruments J7200 EVM (DT) pstate: 20000005 (nzCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--) pc : usb_hcd_is_primary_hcd+0x0/0x1c lr : cdns_host_resume+0x24/0x5c ... Call trace: usb_hcd_is_primary_hcd+0x0/0x1c (P) cdns_resume+0x6c/0xbc cdns3_controller_resume.isra.0+0xe8/0x17c cdns3_plat_resume+0x18/0x24 platform_pm_resume+0x2c/0x68 dpm_run_callback+0x90/0x248 device_resume+0x100/0x24c dpm_resume+0x190/0x2ec dpm_resume_end+0x18/0x34 suspend_devices_and_enter+0x2b0/0xa44 pm_suspend+0x16c/0x5fc state_store+0x80/0xec kobj_attr_store+0x18/0x2c sysfs_kf_write+0x7c/0x94 kernfs_fop_write_iter+0x130/0x1dc vfs_write+0x240/0x370 ksys_write+0x70/0x108 __arm64_sys_write+0x1c/0x28 invoke_syscall+0x48/0x10c el0_svc_common.constprop.0+0x40/0xe0 do_el0_svc+0x1c/0x28 el0_svc+0x34/0x108 el0t_64_sync_handler+0xa0/0xe4 el0t_64_sync+0x198/0x19c Code: 52800003 f9407ca5 d63f00a0 17ffffe4 (f9410401) ---[ end trace 0000000000000000 ]---

AnalysisAI

NULL pointer dereference in the Linux kernel's cdns3 USB dual-role driver crashes the kernel when a USB OTG role switch to host mode occurs during a system resume from suspend. The host role's resume() operation calls usb_hcd_is_primary_hcd() on an xhci-hcd device whose probe has been deferred by the driver model, yielding a dereference at virtual address 0x208 and a kernel oops. Impact is limited to denial of service (system crash); no privilege escalation or data disclosure is possible. No active exploitation is confirmed (CISA KEV absent, EPSS 0.02%), and the vulnerability is practically relevant only on hardware platforms featuring the Cadence USB3 cdns3 controller.

Technical ContextAI

The affected component is the cdns3 driver (drivers/usb/cdns3/) in the Linux kernel, which manages the Cadence USB3 dual-role (OTG) USB controller - a USB IP core embedded in SoCs such as the Texas Instruments J7200, confirmed by the crash trace on a TI J7200 EVM running AArch64. The driver supports runtime role switching between xHCI host mode and USB gadget/device mode. CWE-476 (NULL Pointer Dereference) is the root cause: during a resume sequence, if the role has changed to host, start() registers the xhci-hcd platform device, but the driver model defers its probe while the system is still in the resume path. The subsequent resume() call on the new role invokes cdns_host_resume() → usb_hcd_is_primary_hcd() on the uninitialised struct usb_hcd, dereferencing a NULL pointer at offset 0x208. The upstream fix skips the resume() call for the incoming role whenever a role switch occurred during resume, allowing the xhci-hcd probe to complete normally afterward. CPE: cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*.

RemediationAI

The primary remediation is upgrading the Linux kernel to a patched stable release: 5.15.203, 6.1.167, 6.6.130, 6.12.77, 6.18.14, 6.19.4, or 7.0 (or any later point release). Fix commits are available at https://git.kernel.org/stable/c/49c99dc247ebf7361db9dbdade3dcebfffaf2c22, https://git.kernel.org/stable/c/56289298431ed76700b9aac27a3b1d929fe61b8d, https://git.kernel.org/stable/c/d637f6ec149ffd2f8257bcc261561dc2e44dbb8c, https://git.kernel.org/stable/c/fc086c0ce3db0eefbbeb66a5b1e626296336e33a, https://git.kernel.org/stable/c/ff02bd303d2d78051771db51119d66c0cf442f47, https://git.kernel.org/stable/c/87e4b043b98a1d269be0b812f383881abee0ca45, and https://git.kernel.org/stable/c/94c742614899ff18a6b3e6f3cfbe7b9f36c865f3. For systems where an immediate kernel upgrade is not feasible, disabling USB OTG role switching in the platform Device Tree or firmware configuration eliminates the trigger path; note that this prevents any USB host-mode functionality on the affected port. An alternative is disabling system suspend (echo freeze > /sys/power/state is the trigger) on cdns3-equipped systems until a patch can be applied, though this affects platform power management.

Vendor StatusVendor

SUSE

Severity: Moderate
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Not-Affected
SUSE Linux Enterprise Desktop 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Not-Affected
SUSE Linux Enterprise High Performance Computing 15 SP7 Not-Affected

Share

CVE-2026-45911 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy