DNA View

High Severity Vulnerability

This vulnerability has been rated as High severity. Immediate action is recommended.

CVE-2025-39881

High
Low Medium High Critical
7.8
CVSS Score
Published: Sep 23, 2025
Last Modified: Jan 16, 2026

Vulnerability Description

In the Linux kernel, the following vulnerability has been resolved:

kernfs: Fix UAF in polling when open file is released

A use-after-free (UAF) vulnerability was identified in the PSI (Pressure
Stall Information) monitoring mechanism:

BUG: KASAN: slab-use-after-free in psi_trigger_poll+0x3c/0x140
Read of size 8 at addr ffff3de3d50bd308 by task systemd/1

psi_trigger_poll+0x3c/0x140
cgroup_pressure_poll+0x70/0xa0
cgroup_file_poll+0x8c/0x100
kernfs_fop_poll+0x11c/0x1c0
ep_item_poll.isra.0+0x188/0x2c0

Allocated by task 1:
cgroup_file_open+0x88/0x388
kernfs_fop_open+0x73c/0xaf0
do_dentry_open+0x5fc/0x1200
vfs_open+0xa0/0x3f0
do_open+0x7e8/0xd08
path_openat+0x2fc/0x6b0
do_filp_open+0x174/0x368

Freed by task 8462:
cgroup_file_release+0x130/0x1f8
kernfs_drain_open_files+0x17c/0x440
kernfs_drain+0x2dc/0x360
kernfs_show+0x1b8/0x288
cgroup_file_show+0x150/0x268
cgroup_pressure_write+0x1dc/0x340
cgroup_file_write+0x274/0x548

Reproduction Steps:
1. Open test/cpu.pressure and establish epoll monitoring
2. Disable monitoring: echo 0 > test/cgroup.pressure
3. Re-enable monitoring: echo 1 > test/cgroup.pressure

The race condition occurs because:
1. When cgroup.pressure is disabled (echo 0 > cgroup.pressure), it:
- Releases PSI triggers via cgroup_file_release()
- Frees of->priv through kernfs_drain_open_files()
2. While epoll still holds reference to the file and continues polling
3. Re-enabling (echo 1 > cgroup.pressure) accesses freed of->priv

epolling disable/enable cgroup.pressure
fd=open(cpu.pressure)
while(1)
...
epoll_wait
kernfs_fop_poll
kernfs_get_active = true echo 0 > cgroup.pressure
... cgroup_file_show
kernfs_show
// inactive kn
kernfs_drain_open_files
cft->release(of);
kfree(ctx);
...
kernfs_get_active = false
echo 1 > cgroup.pressure
kernfs_show
kernfs_activate_one(kn);
kernfs_fop_poll
kernfs_get_active = true
cgroup_file_poll
psi_trigger_poll
// UAF
...
end: close(fd)

To address this issue, introduce kernfs_get_active_of() for kernfs open
files to obtain active references. This function will fail if the open file
has been released. Replace kernfs_get_active() with kernfs_get_active_of()
to prevent further operations on released file descriptors.

CVSS Metrics

Common Vulnerability Scoring System

Vector String:

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Attack Vector
L
Attack Complexity
L
Privileges Required
L
User Interaction
N
Scope
U
Confidentiality
H
Integrity
H
Availability
H

Known Affected Software

2 configuration(s) from 2 vendor(s)

debian_linux
Version:
11.0
CPE:
cpe:2.3:o:debian:debian_linux:11.0:*:*:*:*:*:*:*
linux_kernel
Version:
6.17
CPE:
cpe:2.3:o:linux:linux_kernel:6.17:-:*:*:*:*:*:*
This vulnerability affects 2 software configuration(s). Ensure you patch all affected systems.

Available Security Patches

10 patches available from vendors

View All Patches
Canonical (Ubuntu)

USN-8261-1

USN-8261-1: Linux kernel (Xilinx) vulnerabilities

Severity
Unknown
Released
May 07, 2026
Restart Required
Security Update
Canonical (Ubuntu)

USN-8165-1

USN-8165-1: Linux kernel (Azure FIPS) vulnerabilities

Severity
Unknown
Released
Apr 09, 2026
Restart Required
Security Update
Canonical (Ubuntu)

USN-8095-5

USN-8095-5: Linux kernel (Raspberry Pi) vulnerabilities

Severity
Unknown
Released
Apr 01, 2026
Restart Required
Security Update
Canonical (Ubuntu)

USN-8126-1

USN-8126-1: Linux kernel (Azure) vulnerabilities

Severity
Unknown
Released
Mar 25, 2026
Restart Required
Security Update
Canonical (Ubuntu)

USN-8125-1

USN-8125-1: Linux kernel (Azure) vulnerabilities

Severity
Unknown
Released
Mar 25, 2026
Restart Required
Security Update
Canonical (Ubuntu)

USN-8095-4

USN-8095-4: Linux kernel (AWS) vulnerabilities

Severity
Unknown
Released
Mar 23, 2026
Restart Required
Security Update
Canonical (Ubuntu)

USN-8095-3

USN-8095-3: Linux kernel (Real-time) vulnerabilities

Severity
Unknown
Released
Mar 17, 2026
Restart Required
Security Update
Canonical (Ubuntu)

USN-8095-2

USN-8095-2: Linux kernel (FIPS) vulnerabilities

Severity
Unknown
Released
Mar 16, 2026
Restart Required
Security Update
Canonical (Ubuntu)

USN-8100-1

USN-8100-1: Linux kernel (NVIDIA) vulnerabilities

Severity
Unknown
Released
Mar 16, 2026
Restart Required
Security Update
Canonical (Ubuntu)

USN-8095-1

USN-8095-1: Linux kernel vulnerabilities

Severity
Unknown
Released
Mar 16, 2026
Restart Required
Security Update

Severity Details

7.8
out of 10.0
High

Weakness Type (CWE)

CWE-416 Top 25 #12

Use After Free

Description
The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations…
Exploit Likelihood
High
Typical Severity
High
Abstraction Level
Variant

Key Information

Published Date
September 23, 2025