Bug 2395379 (CVE-2023-53227) - CVE-2023-53227 kernel: ubifs: dirty_cow_znode: Fix memleak in error handling path
Summary: CVE-2023-53227 kernel: ubifs: dirty_cow_znode: Fix memleak in error handling ...
Keywords:
Status: NEW
Alias: CVE-2023-53227
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
low
low
Target Milestone: ---
Assignee: Product Security DevOps Team
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2025-09-15 15:10 UTC by OSIDB Bzimport
Modified: 2025-09-15 19:04 UTC (History)
0 users

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


Attachments (Terms of Use)

Description OSIDB Bzimport 2025-09-15 15:10:40 UTC
In the Linux kernel, the following vulnerability has been resolved:

ubifs: dirty_cow_znode: Fix memleak in error handling path

Following process will cause a memleak for copied up znode:

dirty_cow_znode
  zn = copy_znode(c, znode);
  err = insert_old_idx(c, zbr->lnum, zbr->offs);
  if (unlikely(err))
     return ERR_PTR(err);   // No one refers to zn.

Fix it by adding copied znode back to tnc, then it will be freed
by ubifs_destroy_tnc_subtree() while closing tnc.

Fetch a reproducer in [Link].


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