CVE-2026-53273 Details
Description
In the Linux kernel, the following vulnerability has been resolved: tee: optee: prevent use-after-free when the client exits before the supplicant Commit 70b0d6b0a199 ("tee: optee: Fix supplicant wait loop") made the client wait as killable so it can be interrupted during shutdown or after a supplicant crash. This changes the original lifetime expectations: the client task can now terminate while the supplicant is still processing its request. If the client exits first it removes the request from its queue and kfree()s it, while the request ID remains in supp->idr. A subsequent lookup on the supplicant path then dereferences freed memory, leading to a use-after-free. Serialise access to the request with supp->mutex: * Hold supp->mutex in optee_supp_recv() and optee_supp_send() while looking up and touching the request. * Let optee_supp_thrd_req() notice that the client has terminated and signal optee_supp_send() accordingly. With these changes the request cannot be freed while the supplicant still has a reference, eliminating the race.
A use-after-free vulnerability has been identified in the Linux kernel's OP-TEE tee subsystem. This issue arises because the client can terminate while the supplicant is still processing its request. When the client exits first, it removes the request from its queue and frees the memory, but the request ID remains in the supplicant's IDR (Identifier Registry). A subsequent lookup then dereferences the freed memory, leading to a use-after-free condition. This vulnerability affects several versions of the Linux kernel.
The vulnerability has been addressed by modifying the OP-TEE supplicant request handling. The updated code ensures that the request cannot be freed while the supplicant still has a reference to it, effectively eliminating the race condition that led to the use-after-free vulnerability.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/373152c94e57e9592b68c100e224fbd943cfd608 | kernel.org | Patch |
| https://git.kernel.org/stable/c/387a926ee166814611acecb960207fe2f3c4fd3e | kernel.org | Patch |
| https://git.kernel.org/stable/c/416259cb5bffecaaae5f76539deb535a8c1b2c34 | kernel.org | Patch |
| https://git.kernel.org/stable/c/724d0caffd4204b46f78efe22f18f8338031c6e1 | kernel.org | Patch |
| https://git.kernel.org/stable/c/9a0dc9279d0907b198f205a693aedf696b08145d | kernel.org | Patch |
| https://git.kernel.org/stable/c/ae847ab29ded2d7cece4d5970f0edefa4137bf2f | kernel.org | Patch |
| https://git.kernel.org/stable/c/d366a01475f927402c96a3fe78bfc06b924fc87d | kernel.org | Patch |
| https://git.kernel.org/stable/c/d5b57bb314d79e99bebb58a53588fa11dd4dbf69 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-416 | Use After Free | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 5.4.291, < 5.5 >= 5.10.235, < 5.10.259 >= 5.15.179, < 5.15.210 >= 6.1.130, < 6.1.176 >= 6.6.80, < 6.6.143 >= 6.12.17, < 6.12.94 >= 6.13.5, < 6.14 >= 6.14.1, < 6.18.36 >= 6.19, < 7.0.13 6.14 - 6.14 rc4 6.14 rc5 6.14 rc6 6.14 rc7 7.1 rc1 7.1 rc2 7.1 rc3 7.1 rc4 7.1 rc5 7.1 rc6 |
CPE
Remediation
| |
Change History
3 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Jul 8, 2026 | Initial Analysis | [email protected] |
| Jun 28, 2026 | CVE Modified | kernel.org |
| Jun 25, 2026 | New CVE Received | kernel.org |