First published: Thu Feb 29 2024(Updated: )
In the Linux kernel, the following vulnerability has been resolved: drm: bridge/panel: Cleanup connector on bridge detach If we don't call drm_connector_cleanup() manually in panel_bridge_detach(), the connector will be cleaned up with the other DRM objects in the call to drm_mode_config_cleanup(). However, since our drm_connector is devm-allocated, by the time drm_mode_config_cleanup() will be called, our connector will be long gone. Therefore, the connector must be cleaned up when the bridge is detached to avoid use-after-free conditions. v2: Cleanup connector only if it was created v3: Add FIXME v4: (Use connector->dev) directly in if() block
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
Linux Kernel | >=4.13<5.10.37 | |
Linux Kernel | >=5.11<5.11.21 | |
Linux Kernel | >=5.12<5.12.4 | |
debian/linux | 5.10.223-1 5.10.226-1 6.1.123-1 6.1.119-1 6.12.11-1 6.12.12-1 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2021-47063 has been classified as a moderate severity vulnerability in the Linux kernel.
To fix CVE-2021-47063, update your Linux kernel to version 5.10.223-1, 5.10.226-1, or later versions.
CVE-2021-47063 affects Linux kernel versions between 4.13 and 5.10.37, as well as several versions in the 5.11 and 5.12 series.
There are no known workarounds for CVE-2021-47063, and updating the kernel is the recommended action.
CVE-2021-47063 impacts the Direct Rendering Manager (DRM) components in the Linux kernel related to bridge and panel connectors.