CVE-2025-38527
N/A
Summary
In the Linux kernel, the following vulnerability has been resolved:
smb: client: fix use-after-free in cifs_oplock_break
A race condition can occur in cifs_oplock_break() leading to a use-after-free of the cinode structure when unmounting:
cifs_oplock_break() _cifsFileInfo_put(cfile) cifsFileInfo_put_final() cifs_sb_deactive() [last ref, start releasing sb] kill_sb() kill_anon_super() generic_shutdown_super() evict_inodes() dispose_list() evict() destroy_inode() call_rcu(&inode->i_rcu, i_callback) spin_lock(&cinode->open_file_lock) <- OK [later] i_callback() cifs_free_inode() kmem_cache_free(cinode) spin_unlock(&cinode->open_file_lock) <- UAF cifs_done_oplock_break(cinode) <- UAF
The issue occurs when umount has already released its reference to the superblock. When _cifsFileInfo_put() calls cifs_sb_deactive(), this releases the last reference, triggering the immediate cleanup of all inodes under RCU. However, cifs_oplock_break() continues to access the cinode after this point, resulting in use-after-free.
Fix this by holding an extra reference to the superblock during the entire oplock break operation. This ensures that the superblock and its inodes remain valid until the oplock break completes.
Affected Software
| Vendor | Product | Version Range | Status |
|---|---|---|---|
| Linux | Linux | b98749cac4a695f084a5ff076f4510b23e353ecd < 4256a483fe58af66a46cbf3dc48ff26e580d3308 | affected |
| Linux | Linux | b98749cac4a695f084a5ff076f4510b23e353ecd < 0a4eec84d4d2c4085d4ed8630fd74e4b39033c1b | affected |
| Linux | Linux | b98749cac4a695f084a5ff076f4510b23e353ecd < 2baaf5bbab2ac474c4f92c10fcb3310f824db995 | affected |
| Linux | Linux | b98749cac4a695f084a5ff076f4510b23e353ecd < 09bce2138a30ef10d8821c8c3f73a4ab7a5726bc | affected |
| Linux | Linux | b98749cac4a695f084a5ff076f4510b23e353ecd < da11bd4b697b393a207f19a2ed7d382a811a3ddc | affected |
| Linux | Linux | b98749cac4a695f084a5ff076f4510b23e353ecd < 705c79101ccf9edea5a00d761491a03ced314210 | affected |
| Linux | Linux | 2429fcf06d3cb962693868ab0a927c9038f12a2d | affected |
| Linux | Linux | 1ee4f2d7cdcd4508cc3cbe3b2622d7177b89da12 | affected |
| Linux | Linux | 53fc31a4853e30d6e8f142b824f724da27ff3e40 | affected |
| Linux | Linux | 8092ecc306d81186a64cda42411121f4d35aaff4 | affected |
| Linux | Linux | ebac4d0adf68f8962bd82fcf483936edd6ec095b | affected |
| Linux | Linux | 3.16.72 < 3.17 | affected |
| Linux | Linux | 4.9.171 < 4.10 | affected |
| Linux | Linux | 4.14.114 < 4.15 | affected |
| Linux | Linux | 4.19.37 < 4.20 | affected |
| Linux | Linux | 5.0.10 < 5.1 | affected |
| Linux | Linux | 5.1 | affected |
| Linux | Linux | 0 < 5.1 | unaffected |
| Linux | Linux | 5.15.190 <= 5.15.* | unaffected |
| Linux | Linux | 6.1.147 <= 6.1.* | unaffected |
| Linux | Linux | 6.6.100 <= 6.6.* | unaffected |
| Linux | Linux | 6.12.40 <= 6.12.* | unaffected |
| Linux | Linux | 6.15.8 <= 6.15.* | unaffected |
| Linux | Linux | 6.16 <= * | unaffected |
Weaknesses
ADP Enrichment
CVE Program Container
Additional References
References
- https://git.kernel.org/stable/c/4256a483fe58af66a46cbf3dc48ff26e580d3308
- https://git.kernel.org/stable/c/0a4eec84d4d2c4085d4ed8630fd74e4b39033c1b
- https://git.kernel.org/stable/c/2baaf5bbab2ac474c4f92c10fcb3310f824db995
- https://git.kernel.org/stable/c/09bce2138a30ef10d8821c8c3f73a4ab7a5726bc
- https://git.kernel.org/stable/c/da11bd4b697b393a207f19a2ed7d382a811a3ddc
- https://git.kernel.org/stable/c/705c79101ccf9edea5a00d761491a03ced314210
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.