CVE-2022-49491: drm/rockchip: vop: fix possible null-ptr-deref in vop_bind()
In the Linux kernel, the following vulnerability has been resolved:
drm/rockchip: vop: fix possible null-ptr-deref in vop_bind()
It will cause null-ptr-deref in resource_size(), if platform_get_resource()
returns NULL, move calling resource_size() after devm_ioremap_resource() that
will check 'res' to avoid null-ptr-deref.
Security readout for executives and security teams
Plain-English summary
CVE-2022-49491 is a Linux kernel reliability flaw in the Rockchip display driver. A local, low-privileged user could trigger a kernel NULL pointer dereference, causing a crash or denial of service. It does not indicate data theft or code execution in the provided sources.
Executive priority
Treat as a moderate availability risk for affected Rockchip-based Linux deployments. Prioritize patching for production embedded devices, kiosks, appliances, or systems where a local crash creates operational impact.
Technical view
The issue is CWE-476 in drm/rockchip vop_bind(). If platform_get_resource() returns NULL, resource_size() can dereference it. The kernel fix moves resource_size() after devm_ioremap_resource(), which checks the resource pointer first.
Likely exposure
Exposure is most relevant to Linux systems using affected kernel versions with the Rockchip DRM VOP driver, typically Rockchip-based devices. The source bundle lists Linux kernel impact and stable fix commits, but exact downstream distro status requires vendor verification.
Exploitation context
The CVSS vector is local, low complexity, low privileges, no user interaction, with high availability impact. The source bundle marks KEV as false and provides no evidence of active exploitation or public weaponization.
Researcher notes
Key indicators are CWE-476 and CVSS 5.5: AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H. The provided evidence supports denial of service through NULL pointer dereference only, not confidentiality impact, integrity impact, or remote exploitation.
Mitigation direction
Upgrade to a kernel version containing the referenced stable fix commits.
Use vendor-supported kernel packages or device firmware where available.
Verify downstream distro or appliance advisories for backported fixes.
If patching is delayed, follow vendor guidance; no separate workaround is named.
Validation and detection
Inventory Linux systems and devices using Rockchip kernels or boards.
Check whether the Rockchip DRM VOP driver is present or enabled.
Compare kernel version and source package against the referenced stable commits.
Confirm vendor kernel advisories or changelogs include the vop_bind() fix.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-476: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-476 · source CWE mapping
NULL Pointer Dereference
NULL Pointer Dereference represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.