CVE-2026-53264
net/sched: act_api: use RCU with deferred freeing for action lifecycle
Description
In the Linux kernel, the following vulnerability has been resolved: net/sched: act_api: use RCU with deferred freeing for action lifecycle When NEWTFILTER and DELFILTER are run concurrently it is possible to create a race with an associated action. Let's illustrate with CPU0 running NEWTFILTER and CPU1 running DELFILTER: 0: mutex_lock() <-- holds the idr lock 0: rcu_read_lock() 0: p = idr_find(idr, index) <-- action p is valid (RCU protects IDR) 0: mutex_unlock() <-- releases the idr lock 1: refcount_dec_and_mutex_lock() <-- refcnt 1->0, mutex held 1: idr_remove(idr, index) <-- Action removed from IDR 1: mutex_unlock() <-- mutex released allowing us to delete the action 1: tcf_action_cleanup(p); kfree(p) <-- Kfrees p immediately, no deferral 0: refcount_inc_not_zero(&p->tcfa_refcnt) <-- ouch, UAF p points to freed memory This patch fixes the race condition between NEWTFILTER and DELFILTER by adding struct rcu_head to tc_action used in the deferral and introducing a call_rcu() in the delete path to defer the final kfree(). Note: this is a revert of commit d7fb60b9cafb ("net_sched: get rid of tcfa_rcu") but also modernization/simplification to directly use kfree_rcu(). Let's illustrate the new restored code path: 0: rcu_read_lock() 1: refcount_dec_and_mutex_lock() <-- refcnt 1->0, mutex held 1: idr_remove(idr, index) 1: mutex_unlock() 1: call_rcu(&p->tcfa_rcu, tcf_action_rcu_free) <-- defer kfree after grace period 0: p = idr_find(idr, index) 0: refcount_inc_not_zero(&p->tcfa_refcnt) <-- fails, refcnt already 0 1: rcu_read_unlock() <-- release so freeing can run after grace period After CPU1 calls idr_remove(), the object is no longer reachable through the IDR. CPU0's subsequent idr_find() will return NULL, and even if it still held a stale pointer, the immediate kfree() is now deferred until after the RCU grace period, so no UAF can occur.
INFO
Published Date :
June 25, 2026, 9:16 a.m.
Last Modified :
July 8, 2026, 4:02 a.m.
Remotely Exploit :
No
Source :
416baaa9-dc9f-4396-8d5f-8c081fb06d67
CVSS Scores
| Score | Version | Severity | Vector | Exploitability Score | Impact Score | Source |
|---|---|---|---|---|---|---|
| CVSS 3.1 | HIGH | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 |
Solution
- Apply the kernel patch that defers action freeing.
- Use kfree_rcu() for delayed memory deallocation.
- Ensure RCU grace periods are respected for cleanup.
References to Advisories, Solutions, and Tools
Here, you will find a curated list of external links that provide in-depth
information, practical solutions, and valuable tools related to
CVE-2026-53264.
CWE - Common Weakness Enumeration
While CVE identifies
specific instances of vulnerabilities, CWE categorizes the common flaws or
weaknesses that can lead to vulnerabilities. CVE-2026-53264 is
associated with the following CWEs:
Common Attack Pattern Enumeration and Classification (CAPEC)
Common Attack Pattern Enumeration and Classification
(CAPEC)
stores attack patterns, which are descriptions of the common attributes and
approaches employed by adversaries to exploit the CVE-2026-53264
weaknesses.
We scan GitHub repositories to detect new proof-of-concept exploits. Following list is a collection of public exploits and proof-of-concepts, which have been published on GitHub (sorted by the most recently updated).
Results are limited to the first 15 repositories due to potential performance issues.
The following list is the news that have been mention
CVE-2026-53264 vulnerability anywhere in the article.
The following table lists the changes that have been made to the
CVE-2026-53264 vulnerability over time.
Vulnerability history details can be useful for understanding the evolution of a vulnerability, and for identifying the most recent changes that may impact the vulnerability's severity, exploitability, or other characteristics.
-
Initial Analysis by [email protected]
Jul. 08, 2026
Action Type Old Value New Value Added CWE CWE-416 Added CPE Configuration OR *cpe:2.3:o:linux:linux_kernel:7.1:rc1:*:*:*:*:*:* *cpe:2.3:o:linux:linux_kernel:7.1:rc2:*:*:*:*:*:* *cpe:2.3:o:linux:linux_kernel:7.1:rc3:*:*:*:*:*:* *cpe:2.3:o:linux:linux_kernel:7.1:rc4:*:*:*:*:*:* *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 5.16 up to (excluding) 6.1.176 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 6.2 up to (excluding) 6.6.143 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 5.11 up to (excluding) 5.15.210 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 6.13 up to (excluding) 6.18.36 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 6.7 up to (excluding) 6.12.94 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 6.19 up to (excluding) 7.0.13 *cpe:2.3:o:linux:linux_kernel:7.1:rc5:*:*:*:*:*:* *cpe:2.3:o:linux:linux_kernel:7.1:rc6:*:*:*:*:*:* *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 4.14 up to (excluding) 5.10.259 Added Reference Type kernel.org: https://git.kernel.org/stable/c/18af5d2ef0c4f65787fd1280c8b23286b9f2a835 Types: Patch Added Reference Type kernel.org: https://git.kernel.org/stable/c/1f1b98fea6b9ea30507d0f2fbff6750292d097e2 Types: Patch Added Reference Type kernel.org: https://git.kernel.org/stable/c/5057e1aca011e51ef51498c940ef96f3d3e8a305 Types: Patch Added Reference Type kernel.org: https://git.kernel.org/stable/c/5dd51e09020c65aa53cf128e5e3517cd53b3c113 Types: Patch Added Reference Type kernel.org: https://git.kernel.org/stable/c/8b136f18ac4b2ace5aaad3305b3f8a5d8165a009 Types: Patch Added Reference Type kernel.org: https://git.kernel.org/stable/c/91d105d2cbe002f9c7b43a6183adedc37e1da1f7 Types: Patch Added Reference Type kernel.org: https://git.kernel.org/stable/c/98b2e40879abf0245be5a5b7af69e0f6ff524ac3 Types: Patch Added Reference Type kernel.org: https://git.kernel.org/stable/c/b60e9391142e983fab2be53497aa8f71fdd09cd5 Types: Patch -
CVE Modified by 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Jun. 28, 2026
Action Type Old Value New Value Added CVSS V3.1 AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H -
New CVE Received by 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Jun. 25, 2026
Action Type Old Value New Value Added Affected [{'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': 'd7fb60b9cafb982cb2e46a267646a8dfd4f2e5da', 'lessThan': '98b2e40879abf0245be5a5b7af69e0f6ff524ac3', 'versionType': 'git'}, {'status': 'affected', 'version': 'd7fb60b9cafb982cb2e46a267646a8dfd4f2e5da', 'lessThan': '18af5d2ef0c4f65787fd1280c8b23286b9f2a835', 'versionType': 'git'}, {'status': 'affected', 'version': 'd7fb60b9cafb982cb2e46a267646a8dfd4f2e5da', 'lessThan': '1f1b98fea6b9ea30507d0f2fbff6750292d097e2', 'versionType': 'git'}, {'status': 'affected', 'version': 'd7fb60b9cafb982cb2e46a267646a8dfd4f2e5da', 'lessThan': '8b136f18ac4b2ace5aaad3305b3f8a5d8165a009', 'versionType': 'git'}, {'status': 'affected', 'version': 'd7fb60b9cafb982cb2e46a267646a8dfd4f2e5da', 'lessThan': '5dd51e09020c65aa53cf128e5e3517cd53b3c113', 'versionType': 'git'}, {'status': 'affected', 'version': 'd7fb60b9cafb982cb2e46a267646a8dfd4f2e5da', 'lessThan': 'b60e9391142e983fab2be53497aa8f71fdd09cd5', 'versionType': 'git'}, {'status': 'affected', 'version': 'd7fb60b9cafb982cb2e46a267646a8dfd4f2e5da', 'lessThan': '91d105d2cbe002f9c7b43a6183adedc37e1da1f7', 'versionType': 'git'}, {'status': 'affected', 'version': 'd7fb60b9cafb982cb2e46a267646a8dfd4f2e5da', 'lessThan': '5057e1aca011e51ef51498c940ef96f3d3e8a305', 'versionType': 'git'}], 'programFiles': ['include/net/act_api.h', 'net/sched/act_api.c'], 'defaultStatus': 'unaffected'}, {'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '4.14'}, {'status': 'unaffected', 'version': '0', 'lessThan': '4.14', 'versionType': 'semver'}, {'status': 'unaffected', 'version': '5.10.259', 'versionType': 'semver', 'lessThanOrEqual': '5.10.*'}, {'status': 'unaffected', 'version': '5.15.210', 'versionType': 'semver', 'lessThanOrEqual': '5.15.*'}, {'status': 'unaffected', 'version': '6.1.176', 'versionType': 'semver', 'lessThanOrEqual': '6.1.*'}, {'status': 'unaffected', 'version': '6.6.143', 'versionType': 'semver', 'lessThanOrEqual': '6.6.*'}, {'status': 'unaffected', 'version': '6.12.94', 'versionType': 'semver', 'lessThanOrEqual': '6.12.*'}, {'status': 'unaffected', 'version': '6.18.36', 'versionType': 'semver', 'lessThanOrEqual': '6.18.*'}, {'status': 'unaffected', 'version': '7.0.13', 'versionType': 'semver', 'lessThanOrEqual': '7.0.*'}, {'status': 'unaffected', 'version': '7.1', 'versionType': 'original_commit_for_fix', 'lessThanOrEqual': '*'}], 'programFiles': ['include/net/act_api.h', 'net/sched/act_api.c'], 'defaultStatus': 'affected'}] Added Description In the Linux kernel, the following vulnerability has been resolved: net/sched: act_api: use RCU with deferred freeing for action lifecycle When NEWTFILTER and DELFILTER are run concurrently it is possible to create a race with an associated action. Let's illustrate with CPU0 running NEWTFILTER and CPU1 running DELFILTER: 0: mutex_lock() <-- holds the idr lock 0: rcu_read_lock() 0: p = idr_find(idr, index) <-- action p is valid (RCU protects IDR) 0: mutex_unlock() <-- releases the idr lock 1: refcount_dec_and_mutex_lock() <-- refcnt 1->0, mutex held 1: idr_remove(idr, index) <-- Action removed from IDR 1: mutex_unlock() <-- mutex released allowing us to delete the action 1: tcf_action_cleanup(p); kfree(p) <-- Kfrees p immediately, no deferral 0: refcount_inc_not_zero(&p->tcfa_refcnt) <-- ouch, UAF p points to freed memory This patch fixes the race condition between NEWTFILTER and DELFILTER by adding struct rcu_head to tc_action used in the deferral and introducing a call_rcu() in the delete path to defer the final kfree(). Note: this is a revert of commit d7fb60b9cafb ("net_sched: get rid of tcfa_rcu") but also modernization/simplification to directly use kfree_rcu(). Let's illustrate the new restored code path: 0: rcu_read_lock() 1: refcount_dec_and_mutex_lock() <-- refcnt 1->0, mutex held 1: idr_remove(idr, index) 1: mutex_unlock() 1: call_rcu(&p->tcfa_rcu, tcf_action_rcu_free) <-- defer kfree after grace period 0: p = idr_find(idr, index) 0: refcount_inc_not_zero(&p->tcfa_refcnt) <-- fails, refcnt already 0 1: rcu_read_unlock() <-- release so freeing can run after grace period After CPU1 calls idr_remove(), the object is no longer reachable through the IDR. CPU0's subsequent idr_find() will return NULL, and even if it still held a stale pointer, the immediate kfree() is now deferred until after the RCU grace period, so no UAF can occur. Added Reference https://git.kernel.org/stable/c/18af5d2ef0c4f65787fd1280c8b23286b9f2a835 Added Reference https://git.kernel.org/stable/c/1f1b98fea6b9ea30507d0f2fbff6750292d097e2 Added Reference https://git.kernel.org/stable/c/5057e1aca011e51ef51498c940ef96f3d3e8a305 Added Reference https://git.kernel.org/stable/c/5dd51e09020c65aa53cf128e5e3517cd53b3c113 Added Reference https://git.kernel.org/stable/c/8b136f18ac4b2ace5aaad3305b3f8a5d8165a009 Added Reference https://git.kernel.org/stable/c/91d105d2cbe002f9c7b43a6183adedc37e1da1f7 Added Reference https://git.kernel.org/stable/c/98b2e40879abf0245be5a5b7af69e0f6ff524ac3 Added Reference https://git.kernel.org/stable/c/b60e9391142e983fab2be53497aa8f71fdd09cd5