Skip to main content

CVE-2024-47683: Vulnerability in Linux Linux

Medium
VulnerabilityCVE-2024-47683cvecve-2024-47683
Published: Mon Oct 21 2024 (10/21/2024, 11:53:25 UTC)
Source: CVE
Vendor/Project: Linux
Product: Linux

Description

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Skip Recompute DSC Params if no Stream on Link [why] Encounter NULL pointer dereference uner mst + dsc setup. BUG: kernel NULL pointer dereference, address: 0000000000000008 PGD 0 P4D 0 Oops: 0000 [#1] PREEMPT SMP NOPTI CPU: 4 PID: 917 Comm: sway Not tainted 6.3.9-arch1-1 #1 124dc55df4f5272ccb409f39ef4872fc2b3376a2 Hardware name: LENOVO 20NKS01Y00/20NKS01Y00, BIOS R12ET61W(1.31 ) 07/28/2022 RIP: 0010:drm_dp_atomic_find_time_slots+0x5e/0x260 [drm_display_helper] Code: 01 00 00 48 8b 85 60 05 00 00 48 63 80 88 00 00 00 3b 43 28 0f 8d 2e 01 00 00 48 8b 53 30 48 8d 04 80 48 8d 04 c2 48 8b 40 18 <48> 8> RSP: 0018:ffff960cc2df77d8 EFLAGS: 00010293 RAX: 0000000000000000 RBX: ffff8afb87e81280 RCX: 0000000000000224 RDX: ffff8afb9ee37c00 RSI: ffff8afb8da1a578 RDI: ffff8afb87e81280 RBP: ffff8afb83d67000 R08: 0000000000000001 R09: ffff8afb9652f850 R10: ffff960cc2df7908 R11: 0000000000000002 R12: 0000000000000000 R13: ffff8afb8d7688a0 R14: ffff8afb8da1a578 R15: 0000000000000224 FS: 00007f4dac35ce00(0000) GS:ffff8afe30b00000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000000000008 CR3: 000000010ddc6000 CR4: 00000000003506e0 Call Trace: <TASK> ? __die+0x23/0x70 ? page_fault_oops+0x171/0x4e0 ? plist_add+0xbe/0x100 ? exc_page_fault+0x7c/0x180 ? asm_exc_page_fault+0x26/0x30 ? drm_dp_atomic_find_time_slots+0x5e/0x260 [drm_display_helper 0e67723696438d8e02b741593dd50d80b44c2026] ? drm_dp_atomic_find_time_slots+0x28/0x260 [drm_display_helper 0e67723696438d8e02b741593dd50d80b44c2026] compute_mst_dsc_configs_for_link+0x2ff/0xa40 [amdgpu 62e600d2a75e9158e1cd0a243bdc8e6da040c054] ? fill_plane_buffer_attributes+0x419/0x510 [amdgpu 62e600d2a75e9158e1cd0a243bdc8e6da040c054] compute_mst_dsc_configs_for_state+0x1e1/0x250 [amdgpu 62e600d2a75e9158e1cd0a243bdc8e6da040c054] amdgpu_dm_atomic_check+0xecd/0x1190 [amdgpu 62e600d2a75e9158e1cd0a243bdc8e6da040c054] drm_atomic_check_only+0x5c5/0xa40 drm_mode_atomic_ioctl+0x76e/0xbc0 [how] dsc recompute should be skipped if no mode change detected on the new request. If detected, keep checking whether the stream is already on current state or not.

AI-Powered Analysis

AILast updated: 06/28/2025, 19:27:06 UTC

Technical Analysis

CVE-2024-47683 is a vulnerability identified in the Linux kernel, specifically within the Direct Rendering Manager (DRM) subsystem related to AMD GPU display handling. The flaw arises in the drm/amd/display driver code, where a NULL pointer dereference occurs during the Multi-Stream Transport (MST) and Display Stream Compression (DSC) setup process. The vulnerability manifests when the kernel attempts to recompute DSC parameters without verifying if a display stream is active on the link, leading to a NULL pointer dereference and consequent kernel crash (kernel oops). The root cause is that the code does not skip the recomputation of DSC parameters if no mode change is detected and no stream is present, which results in dereferencing a NULL pointer at address 0x8. The crash trace shows the fault occurring in the drm_dp_atomic_find_time_slots function within drm_display_helper, called during atomic mode setting operations in the AMD GPU driver (amdgpu). This can cause system instability or denial of service due to kernel panic. The vulnerability affects Linux kernel versions including the 6.3.9-arch1-1 build referenced, and likely other versions with similar drm/amd/display code. The fix involves adding logic to skip DSC recomputation if no mode change is detected and ensuring streams are validated before parameter recalculation. No known exploits are reported in the wild, and no CVSS score has been assigned yet. The vulnerability requires local code execution context where the attacker can trigger atomic mode setting operations, potentially via graphical session management or compositor interactions (e.g., sway window manager).

Potential Impact

For European organizations, the impact of CVE-2024-47683 primarily concerns systems running Linux kernels with AMD GPU drivers, especially those using MST and DSC features for multi-display setups. This includes workstations, servers with graphical interfaces, and embedded systems relying on AMD GPUs. The vulnerability can lead to kernel crashes causing denial of service, disrupting critical operations, especially in environments where uptime and stability are essential such as financial institutions, research centers, and industrial control systems. While the vulnerability does not appear to allow privilege escalation or remote code execution directly, the resulting system instability can be exploited for targeted disruption or to facilitate further attacks by causing system reboots or service interruptions. Organizations using Linux-based desktops or servers with AMD GPUs in Europe may experience operational impacts, particularly if they use compositors or window managers that trigger atomic mode setting frequently. The lack of known exploits reduces immediate risk, but the vulnerability's presence in widely deployed Linux kernels means that patching is important to maintain system reliability and security posture.

Mitigation Recommendations

1. Apply the latest Linux kernel updates that include the patch for CVE-2024-47683 as soon as they become available from your Linux distribution vendor. Monitor kernel mailing lists and vendor advisories for patch releases. 2. If immediate patching is not possible, consider disabling MST and DSC features in the AMD GPU driver configuration or kernel parameters to reduce exposure, if feasible without impacting critical functionality. 3. Limit access to systems with AMD GPUs to trusted users and processes to reduce the risk of local exploitation via malicious graphical session manipulation. 4. Monitor system logs for kernel oops or crashes related to drm_display_helper or amdgpu modules to detect potential triggering of this vulnerability. 5. For environments using compositors like sway or other Wayland/X11 window managers, ensure they are updated and configured securely to minimize unintended atomic mode setting operations. 6. Employ robust system monitoring and automated reboot prevention mechanisms to reduce downtime caused by kernel crashes. 7. Engage with hardware vendors and Linux distribution maintainers for guidance on best practices for AMD GPU driver security.

Need more detailed analysis?Get Pro

Technical Details

Data Version
5.1
Assigner Short Name
Linux
Date Reserved
2024-09-30T16:00:12.941Z
Cisa Enriched
true
Cvss Version
null
State
PUBLISHED

Threat ID: 682d9825c4522896dcbe04d3

Added to database: 5/21/2025, 9:08:53 AM

Last enriched: 6/28/2025, 7:27:06 PM

Last updated: 8/13/2025, 7:46:25 AM

Views: 13

Actions

PRO

Updates to AI analysis are available only with a Pro account. Contact root@offseq.com for access.

Please log in to the Console to use AI analysis features.

Need enhanced features?

Contact root@offseq.com for Pro access with improved analysis and higher rate limits.

Latest Threats