lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <2025122420-CVE-2022-50730-a4ca@gregkh>
Date: Wed, 24 Dec 2025 13:26:29 +0100
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: linux-cve-announce@...r.kernel.org
Cc: Greg Kroah-Hartman <gregkh@...nel.org>
Subject: CVE-2022-50730: ext4: silence the warning when evicting inode with dioread_nolock

From: Greg Kroah-Hartman <gregkh@...nel.org>

Description
===========

In the Linux kernel, the following vulnerability has been resolved:

ext4: silence the warning when evicting inode with dioread_nolock

When evicting an inode with default dioread_nolock, it could be raced by
the unwritten extents converting kworker after writeback some new
allocated dirty blocks. It convert unwritten extents to written, the
extents could be merged to upper level and free extent blocks, so it
could mark the inode dirty again even this inode has been marked
I_FREEING. But the inode->i_io_list check and warning in
ext4_evict_inode() missing this corner case. Fortunately,
ext4_evict_inode() will wait all extents converting finished before this
check, so it will not lead to inode use-after-free problem, every thing
is OK besides this warning. The WARN_ON_ONCE was originally designed
for finding inode use-after-free issues in advance, but if we add
current dioread_nolock case in, it will become not quite useful, so fix
this warning by just remove this check.

 ======
 WARNING: CPU: 7 PID: 1092 at fs/ext4/inode.c:227
 ext4_evict_inode+0x875/0xc60
 ...
 RIP: 0010:ext4_evict_inode+0x875/0xc60
 ...
 Call Trace:
  <TASK>
  evict+0x11c/0x2b0
  iput+0x236/0x3a0
  do_unlinkat+0x1b4/0x490
  __x64_sys_unlinkat+0x4c/0xb0
  do_syscall_64+0x3b/0x90
  entry_SYSCALL_64_after_hwframe+0x46/0xb0
 RIP: 0033:0x7fa933c1115b
 ======

rm                          kworker
                            ext4_end_io_end()
vfs_unlink()
 ext4_unlink()
                             ext4_convert_unwritten_io_end_vec()
                              ext4_convert_unwritten_extents()
                               ext4_map_blocks()
                                ext4_ext_map_blocks()
                                 ext4_ext_try_to_merge_up()
                                  __mark_inode_dirty()
                                   check !I_FREEING
                                   locked_inode_to_wb_and_lock_list()
 iput()
  iput_final()
   evict()
    ext4_evict_inode()
     truncate_inode_pages_final() //wait release io_end
                                    inode_io_list_move_locked()
                             ext4_release_io_end()
     trigger WARN_ON_ONCE()

The Linux kernel CVE team has assigned CVE-2022-50730 to this issue.


Affected and fixed versions
===========================

	Issue introduced in 5.8 with commit ceff86fddae8748fe00d4f2d249cb02cae62ad84 and fixed in 5.10.163 with commit bdc698ce91f232fd5eb11d2373e9f82f687314b8
	Issue introduced in 5.8 with commit ceff86fddae8748fe00d4f2d249cb02cae62ad84 and fixed in 5.15.87 with commit 0d041b7251c13679a0f6c7926751ce1d8a7237c1
	Issue introduced in 5.8 with commit ceff86fddae8748fe00d4f2d249cb02cae62ad84 and fixed in 6.0.18 with commit 3b893cc9a8d8b4e486a6639f5e107b56b7197d2e
	Issue introduced in 5.8 with commit ceff86fddae8748fe00d4f2d249cb02cae62ad84 and fixed in 6.1.4 with commit b085fb43feede48ebf80ab7e2dd150c8d9902932
	Issue introduced in 5.8 with commit ceff86fddae8748fe00d4f2d249cb02cae62ad84 and fixed in 6.2 with commit bc12ac98ea2e1b70adc6478c8b473a0003b659d3

Please see https://www.kernel.org for a full list of currently supported
kernel versions by the kernel community.

Unaffected versions might change over time as fixes are backported to
older supported kernel versions.  The official CVE entry at
	https://cve.org/CVERecord/?id=CVE-2022-50730
will be updated if fixes are backported, please check that for the most
up to date information about this issue.


Affected files
==============

The file(s) affected by this issue are:
	fs/ext4/inode.c


Mitigation
==========

The Linux kernel CVE team recommends that you update to the latest
stable kernel version for this, and many other bugfixes.  Individual
changes are never tested alone, but rather are part of a larger kernel
release.  Cherry-picking individual commits is not recommended or
supported by the Linux kernel community at all.  If however, updating to
the latest release is impossible, the individual changes to resolve this
issue can be found at these commits:
	https://git.kernel.org/stable/c/bdc698ce91f232fd5eb11d2373e9f82f687314b8
	https://git.kernel.org/stable/c/0d041b7251c13679a0f6c7926751ce1d8a7237c1
	https://git.kernel.org/stable/c/3b893cc9a8d8b4e486a6639f5e107b56b7197d2e
	https://git.kernel.org/stable/c/b085fb43feede48ebf80ab7e2dd150c8d9902932
	https://git.kernel.org/stable/c/bc12ac98ea2e1b70adc6478c8b473a0003b659d3

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ