CVE-2026-90162
Last modified
CVE-2026-90162 is a high-severity vulnerability rated 8.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: ksmbd: defer publishing granted locks to prevent UAF/double-free race In smb2_lock(), mid-batch granted locks are published to connection-wide (conn->lock_list) and file-wide (fp->lock_list) lists immediately upon vfs_lock_file() success, while also remaining tracked on the stack-local rollback_list. If a subsequent element in the same SMB2_LOCK request array fails validation or execution, the thread jumps to out: and walks rollback_list to undo previously granted locks. However, because the granted lock was already published to conn->lock_list, a concurrent UNLOCK request on the same connection can find the lock object and kfree() it before the rollback loop executes. When the granting thread subsequently walks rollback_list, it dereferences and frees the already-freed ksmbd_lock structure, resulting in a Use-After-Free and Double-Free (on both ksmbd_lock and struct file_lock). Fix this by deferring the publication of granted locks to conn->lock_list and fp->lock_list until after the entire array of lock elements has been processed without error.
Description
In the Linux kernel, the following vulnerability has been resolved: ksmbd: defer publishing granted locks to prevent UAF/double-free race In smb2_lock(), mid-batch granted locks are published to connection-wide (conn->lock_list) and file-wide (fp->lock_list) lists immediately upon vfs_lock_file() success, while also remaining tracked on the stack-local rollback_list. If a subsequent element in the same SMB2_LOCK request array fails validation or execution, the thread jumps to out: and walks rollback_list to undo previously granted locks. However, because the granted lock was already published to conn->lock_list, a concurrent UNLOCK request on the same connection can find the lock object and kfree() it before the rollback loop executes. When the granting thread subsequently walks rollback_list, it dereferences and frees the already-freed ksmbd_lock structure, resulting in a Use-After-Free and Double-Free (on both ksmbd_lock and struct file_lock). Fix this by deferring the publication of granted locks to conn->lock_list and fp->lock_list until after the entire array of lock elements has been processed without error. Mid-batch grants remain tracked exclusively on the request-local rollback_list until the whole batch succeeds, eliminating the race window.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9, < a1d26dfb32919088e3638dca01068df3c4507433; >= e2f34481b24db2fd634b5edb0a5bd0e4d38cc6e9, < 29f74f0f2e6df3b393b7b66e810136d0c64e3c59 |
| Linux | Linux | 5.15 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-90162?
How severe is CVE-2026-90162?
How do I fix CVE-2026-90162?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-90157In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90158In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90159In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9016The Debug Log Manager – Conveniently Monitor and Inspect Err…5.3
- CVE-2026-90160In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90161In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-90163In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90164In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90165In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90166In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90167In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90168Rejected reason: This CVE ID has been rejected or withdrawn …
Are you affected by CVE-2026-90162?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
