CVE-2024-26874
Published: Apr 17, 2024
Modified: May 11, 2026
Description
In the Linux kernel, the following vulnerability has been resolved: drm/mediatek: Fix a null pointer crash in mtk_drm_crtc_finish_page_flip It's possible that mtk_crtc->event is NULL in mtk_drm_crtc_finish_page_flip(). pending_needs_vblank value is set by mtk_crtc->event, but in mtk_drm_crtc_atomic_flush(), it's is not guarded by the same lock in mtk_drm_finish_page_flip(), thus a race condition happens. Consider the following case: CPU1 CPU2 step 1: mtk_drm_crtc_atomic_begin() mtk_crtc->event is not null, step 1: mtk_drm_crtc_atomic_flush: mtk_drm_crtc_update_config( !!mtk_crtc->event) step 2: mtk_crtc_ddp_irq -> mtk_drm_finish_page_flip: lock mtk_crtc->event set to null, pending_needs_vblank set to false unlock pending_needs_vblank set to true, step 2: mtk_crtc_ddp_irq -> mtk_drm_finish_page_flip called again, pending_needs_vblank is still true //null pointer Instead of guarding the entire mtk_drm_crtc_atomic_flush(), it's more efficient to just check if mtk_crtc->event is null before use.
| Vendor | Product | Versions |
|---|---|---|
Linux | Linux | affected 119f5173628aa7a0c3cf9db83460d40709e8241d - < accdac6b71d5a2b84040c3d2234f53a60edc398eaffected 119f5173628aa7a0c3cf9db83460d40709e8241d - < dfde84cc6c589f2a9f820f12426d97365670b731affected 119f5173628aa7a0c3cf9db83460d40709e8241d - < 4688be96d20ffa49d2186523ee84f475f316fd49affected 119f5173628aa7a0c3cf9db83460d40709e8241d - < 9beec711a17245b853d64488fd5b739031612340affected 119f5173628aa7a0c3cf9db83460d40709e8241d - < d2bd30c710475b2e29288827d2c91f9e6e2b91d7+4 more versions |
Linux | Linux | affected 4.7unaffected 0 - < 4.7unaffected 4.19.311 - <= 4.19.*unaffected 5.4.273 - <= 5.4.*unaffected 5.10.214 - <= 5.10.*+6 more versions |
References
Security Training
Train your team to recognize and prevent security threats with our comprehensive security awareness program.
Start TrainingVulnerability Scanning
Discover vulnerabilities in your applications and infrastructure before attackers do.
Scan Now