PatchSiren cyber security CVE debrief
CVE-2026-46216 Linux CVE debrief
## Summary CVE-2026-46216 is a NULL pointer dereference vulnerability in the Linux kernel's Intel Xe graphics driver (drm/xe/hdcp). When the media GT (Graphics Technology) is disabled via configfs, `media_gt` remains NULL. The function `intel_hdcp_gsc_check_status()` dereferences this pointer to access `gt->uc.gsc`, causing a kernel page fault. The fix adds a NULL check on `media_gt` and returns early if the pointer is invalid. ## Affected Component - **Component:** Linux kernel DRM/Xe HDCP subsystem - **Function:** `intel_hdcp_gsc_check_status()` - **Trigger Condition:** Media GT disabled via configfs (no allocation for `media_gt`) ## Root Cause The code assumed `media_gt` would always be allocated. When users disable media GT through configfs, the pointer stays NULL, leading to an invalid memory access when evaluating `>->uc.gsc`. ## Impact - **Availability:** Kernel panic/page fault leading to system crash or instability - **Confidentiality/Integrity:** Not directly impacted (local configuration-dependent crash) - **Attack Vector:** Local (requires ability to disable media GT via configfs) ## Patches The vulnerability was resolved in Linux kernel stable branches with commits addressing the NULL pointer dereference. The fix introduces an early return when `media_gt` is NULL and removes the redundant NULL check for `gsc` (since `gsc` cannot be NULL if `media_gt` is valid).
- Vendor
- Linux
- Product
- Unknown
- CVSS
- Unknown
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-05-28
- Original CVE updated
- 2026-05-28
- Advisory published
- 2026-05-28
- Advisory updated
- 2026-05-28
Who should care
Linux system administrators running Intel Xe graphics hardware; kernel maintainers; organizations with Linux desktop/laptop fleets using Intel integrated graphics
Technical summary
NULL pointer dereference in Linux kernel's Intel Xe HDCP driver when media GT is disabled via configfs, causing kernel page fault in intel_hdcp_gsc_check_status(). Fixed by adding NULL check on media_gt before dereferencing.
Defensive priority
medium
Recommended defensive actions
- Apply kernel updates containing the fix for CVE-2026-46216 when available from your Linux distribution
- For systems with Intel Xe graphics, avoid disabling media GT via configfs until patched
- Monitor stable kernel branches for backported fixes
- Review system logs for page fault errors in intel_hdcp_gsc_check_status if media GT features were disabled
Evidence notes
- CVE published 2026-05-28T10:16:37.237Z, modified 2026-05-28T13:44:01.663Z - Source: NVD with kernel.org stable branch references - Fix validated through kernel stable commit history (v2/v3 revisions)
Official resources
-
CVE-2026-46216 CVE record
CVE.org
-
CVE-2026-46216 NVD detail
NVD
-
Source item URL
nvd_modified
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
2026-05-28