CVE Catalog

CVE-2026-89989

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, validate_hash_algo() passes the result of dentry_path() directly to integrity_audit_msg() without checking for ERR_PTR. When the path exceeds the buffer, dentry_path() returns ERR_PTR(-ENAMETOOLONG), leading to a strlen() call on an invalid pointer and a page fault.

Risk Assessment

This can cause a kernel crash (oops) and denial of service. However, it requires local access and triggering an extended attribute operation.

Recommendation

Update the Linux kernel to a version containing the fix that checks for IS_ERR() and uses NULL instead of ERR_PTR.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: ima: Check for ERR_PTR from dentry_path() in validate_hash_algo() dentry_path() returns ERR_PTR(-ENAMETOOLONG) when the path exceeds the buffer. validate_hash_algo() passes the result straight to integrity_audit_msg() without checking. ERR_PTR is not NULL, so integrity_audit_message() sees a valid pointer and calls strlen() on it, which faults: BUG: unable to handle page fault for address: ffffffffffffffdc RIP: 0010:strlen+0x30/0xa0 Call Trace: audit_log_untrustedstring+0x19/0x30 integrity_audit_message+0x366/0x4f0 ima_inode_setxattr+0x512/0x5f0 Check for IS_ERR() and use NULL instead, which makes the audit message skip the name= field instead of crashing.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS