CVE-2025-38457
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
25/07/2025
Last modified:
22/12/2025
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
net/sched: Abort __tc_modify_qdisc if parent class does not exist<br />
<br />
Lion&#39;s patch [1] revealed an ancient bug in the qdisc API.<br />
Whenever a user creates/modifies a qdisc specifying as a parent another<br />
qdisc, the qdisc API will, during grafting, detect that the user is<br />
not trying to attach to a class and reject. However grafting is<br />
performed after qdisc_create (and thus the qdiscs&#39; init callback) is<br />
executed. In qdiscs that eventually call qdisc_tree_reduce_backlog<br />
during init or change (such as fq, hhf, choke, etc), an issue<br />
arises. For example, executing the following commands:<br />
<br />
sudo tc qdisc add dev lo root handle a: htb default 2<br />
sudo tc qdisc add dev lo parent a: handle beef fq<br />
<br />
Qdiscs such as fq, hhf, choke, etc unconditionally invoke<br />
qdisc_tree_reduce_backlog() in their control path init() or change() which<br />
then causes a failure to find the child class; however, that does not stop<br />
the unconditional invocation of the assumed child qdisc&#39;s qlen_notify with<br />
a null class. All these qdiscs make the assumption that class is non-null.<br />
<br />
The solution is ensure that qdisc_leaf() which looks up the parent<br />
class, and is invoked prior to qdisc_create(), should return failure on<br />
not finding the class.<br />
In this patch, we leverage qdisc_leaf to return ERR_PTRs whenever the<br />
parentid doesn&#39;t correspond to a class, so that we can detect it<br />
earlier on and abort before qdisc_create is called.<br />
<br />
[1] https://lore.kernel.org/netdev/d912cbd7-193b-4269-9857-525bee8bbb6a@gmail.com/
Impact
Base Score 3.x
5.50
Severity 3.x
MEDIUM
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 2.6.20 (including) | 5.4.296 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.5 (including) | 5.10.240 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.11 (including) | 5.15.189 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (including) | 6.1.146 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (including) | 6.6.99 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.7 (including) | 6.12.39 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.15.7 (excluding) |
| cpe:2.3:o:linux:linux_kernel:6.16:rc1:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.16:rc2:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.16:rc3:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.16:rc4:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.16:rc5:*:*:*:*:*:* | ||
| cpe:2.3:o:debian:debian_linux:11.0:*:*:*:*:*:*:* |
To consult the complete list of CPE names with products and versions, see this page
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/23c165dde88eac405eebb59051ea1fe139a45803
- https://git.kernel.org/stable/c/25452638f133ac19d75af3f928327d8016952c8e
- https://git.kernel.org/stable/c/4c691d1b6b6dbd73f30ed9ee7da05f037b0c49af
- https://git.kernel.org/stable/c/8ecd651ef24ab50123692a4e3e25db93cb11602a
- https://git.kernel.org/stable/c/90436e72c9622c2f70389070088325a3232d339f
- https://git.kernel.org/stable/c/923a276c74e25073ae391e930792ac86a9f77f1e
- https://git.kernel.org/stable/c/e28a383d6485c3bb51dc5953552f76c4dea33eea
- https://git.kernel.org/stable/c/ffdde7bf5a439aaa1955ebd581f5c64ab1533963
- https://lists.debian.org/debian-lts-announce/2025/10/msg00007.html
- https://lists.debian.org/debian-lts-announce/2025/10/msg00008.html



