CVE-2026-43073 Details
Description
In the Linux kernel, the following vulnerability has been resolved: x86-64: rename misleadingly named '__copy_user_nocache()' function This function was a masterclass in bad naming, for various historical reasons. It claimed to be a non-cached user copy. It is literally _neither_ of those things. It's a specialty memory copy routine that uses non-temporal stores for the destination (but not the source), and that does exception handling for both source and destination accesses. Also note that while it works for unaligned targets, any unaligned parts (whether at beginning or end) will not use non-temporal stores, since only words and quadwords can be non-temporal on x86. The exception handling means that it _can_ be used for user space accesses, but not on its own - it needs all the normal "start user space access" logic around it. But typically the user space access would be the source, not the non-temporal destination. That was the original intention of this, where the destination was some fragile persistent memory target that needed non-temporal stores in order to catch machine check exceptions synchronously and deal with them gracefully. Thus that non-descriptive name: one use case was to copy from user space into a non-cached kernel buffer. However, the existing users are a mix of that intended use-case, and a couple of random drivers that just did this as a performance tweak. Some of those random drivers then actively misused the user copying version (with STAC/CLAC and all) to do kernel copies without ever even caring about the exception handling, _just_ for the non-temporal destination. Rename it as a first small step to actually make it halfway sane, and change the prototype to be more normal: it doesn't take a user pointer unless the caller has done the proper conversion, and the argument size is the full size_t (it still won't actually copy more than 4GB in one go, but there's also no reason to silently truncate the size argument in the caller). Finally, use this now sanely named function in the NTB code, which mis-used a user copy version (with STAC/CLAC and all) of this interface despite it not actually being a user copy at all.
A naming issue in the Linux kernel's memory copy function '__copy_user_nocache()' has been addressed. This function, used in the x86-64 architecture, falsely claimed to provide a non-cached user copy. In reality, it was neither non-cached nor a proper user copy. The function has been renamed to 'copy_to_nontemporal' to better reflect its purpose. The update includes a revision of the function's prototype for clarity and correctness. The renamed function is now utilized in the NTB (Non-Transparent Bridge) code, replacing the previous, misused user copy version.
The function has been renamed and its usage corrected in the Linux kernel stable tree. Users should update to the latest version of the kernel where this change has been implemented.
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/14b9194db4a28421a4dbe5d6e519efbaa7c5f3cd | kernel.org | Patch |
| https://git.kernel.org/stable/c/c6d4e0599e7e73abc04e2488dfeb7940c4039660 | kernel.org | Patch |
| https://git.kernel.org/stable/c/d187a86de793f84766ea40b9ade7ac60aabbb4fe | kernel.org | Patch |
| https://git.kernel.org/stable/c/d993e1723aa2a085aa0d72e70ea889031fc225b4 | kernel.org | Patch |
| https://git.kernel.org/stable/c/efea91ad1729ff1853d7418e4d3bc27d085e72d0 | kernel.org | Patch |
| https://project-zero.issues.chromium.org/issues/496923375 | kernel.org |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| NVD-CWE-noinfo | Insufficient Information to Classify Weakness | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 4.2.1, < 6.12.83 >= 6.13, < 6.18.24 >= 6.19, < 6.19.14 >= 7.0, < 7.0.1 4.2 - |
CPE
Remediation
| |
Change History
4 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Jun 17, 2026 | CVE Modified | kernel.org |
| Jun 7, 2026 | CVE Modified | kernel.org |
| May 22, 2026 | Initial Analysis | [email protected] |
| May 5, 2026 | New CVE Received | kernel.org |