Bug 2388928 (CVE-2025-38527) - CVE-2025-38527 kernel: smb: client: fix use-after-free in cifs_oplock_break
Summary: CVE-2025-38527 kernel: smb: client: fix use-after-free in cifs_oplock_break
Keywords:
Status: NEW
Alias: CVE-2025-38527
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Product Security DevOps Team
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2025-08-16 12:01 UTC by OSIDB Bzimport
Modified: 2025-10-02 09:54 UTC (History)
0 users

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHSA-2025:16880 0 None None None 2025-09-29 05:05:42 UTC
Red Hat Product Errata RHSA-2025:16904 0 None None None 2025-09-29 07:47:59 UTC
Red Hat Product Errata RHSA-2025:17122 0 None None None 2025-10-01 00:22:21 UTC
Red Hat Product Errata RHSA-2025:17123 0 None None None 2025-10-01 00:21:48 UTC
Red Hat Product Errata RHSA-2025:17124 0 None None None 2025-10-01 00:24:47 UTC
Red Hat Product Errata RHSA-2025:17241 0 None None None 2025-10-02 09:54:07 UTC

Description OSIDB Bzimport 2025-08-16 12:01:53 UTC
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.

Comment 8 errata-xmlrpc 2025-09-29 05:05:41 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9

Via RHSA-2025:16880 https://access.redhat.com/errata/RHSA-2025:16880

Comment 9 errata-xmlrpc 2025-09-29 07:47:58 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 10

Via RHSA-2025:16904 https://access.redhat.com/errata/RHSA-2025:16904

Comment 10 errata-xmlrpc 2025-10-01 00:21:48 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9.2 Update Services for SAP Solutions

Via RHSA-2025:17123 https://access.redhat.com/errata/RHSA-2025:17123

Comment 11 errata-xmlrpc 2025-10-01 00:22:20 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9.2 Update Services for SAP Solutions

Via RHSA-2025:17122 https://access.redhat.com/errata/RHSA-2025:17122

Comment 12 errata-xmlrpc 2025-10-01 00:24:46 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 8.6 Advanced Mission Critical Update Support
  Red Hat Enterprise Linux 8.6 Update Services for SAP Solutions
  Red Hat Enterprise Linux 8.6 Telecommunications Update Service

Via RHSA-2025:17124 https://access.redhat.com/errata/RHSA-2025:17124

Comment 13 errata-xmlrpc 2025-10-02 09:54:06 UTC
This issue has been addressed in the following products:

  Red Hat Enterprise Linux 9.4 Extended Update Support

Via RHSA-2025:17241 https://access.redhat.com/errata/RHSA-2025:17241


Note You need to log in before you can comment on or make changes to this bug.