CVE-2026-68444
Received Received - Intake

NULL Pointer Dereference in Linux Kernel arm_ffa Driver

Vulnerability report for CVE-2026-68444, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-08-12

Last updated on: 2026-08-12

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: firmware: arm_ffa: Fix NULL dereference in ffa_partition_info_get() ffa_partition_info_get() passes uuid_str directly to uuid_parse() without a NULL check. When a caller passes NULL, uuid_parse() -> __uuid_parse() -> uuid_is_valid() dereferences the pointer, causing a kernel panic: | Unable to handle kernel NULL pointer dereference at virtual address | 0000000000000040 | pc : uuid_parse+0x40/0xac | lr : ffa_partition_info_get+0x1c/0x94 [arm_ffa] Add a NULL guard before uuid_parse() so a NULL argument returns -ENODEV instead of crashing. Callers are expected to always supply a valid partition UUID, so NULL is not a supported input.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-12
Last Modified
2026-08-12
Generated
2026-08-12
AI Q&A
2026-08-12
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Currently, no data is known.

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This is a NULL pointer dereference vulnerability in the Linux kernel's ARM FF-A (Firmware Framework for Arm) driver. The function ffa_partition_info_get() does not check if the uuid_str parameter is NULL before passing it to uuid_parse(). When NULL is passed, it causes a kernel panic due to invalid memory access.

Detection Guidance

This vulnerability is specific to the Linux kernel's arm_ffa driver and can be detected by checking kernel logs for NULL pointer dereference errors related to ffa_partition_info_get or uuid_parse. Look for messages indicating kernel panics or crashes in system logs.

Impact Analysis

If exploited, this vulnerability can crash the entire system by triggering a kernel panic. This leads to denial of service, potential data loss, and system instability. Only systems using the ARM FF-A driver with specific firmware interactions are affected.

Mitigation Strategies

Update the Linux kernel to a patched version that includes the fix for CVE-2026-68444. The patch adds a NULL check before calling uuid_parse to prevent kernel panics. Check your distribution's security updates or kernel release notes for the fixed version.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-68444. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart