CVE-2023-52622

Source
https://cve.org/CVERecord?id=CVE-2023-52622
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2023-52622.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2023-52622
Downstream
Related
Published
2024-03-26T17:19:23.838Z
Modified
2026-03-13T07:48:07.081413Z
Summary
ext4: avoid online resizing failures due to oversized flex bg
Details

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

ext4: avoid online resizing failures due to oversized flex bg

When we online resize an ext4 filesystem with a oversized flexbg_size,

 mkfs.ext4 -F -G 67108864 $dev -b 4096 100M
 mount $dev $dir
 resize2fs $dev 16G

the following WARN_ON is triggered:

WARNING: CPU: 0 PID: 427 at mm/page_alloc.c:4402 __alloc_pages+0x411/0x550 Modules linked in: sg(E) CPU: 0 PID: 427 Comm: resize2fs Tainted: G E 6.6.0-rc5+ #314 RIP: 0010:__alloc_pages+0x411/0x550 Call Trace: <TASK> __kmalloclargenode+0xa2/0x200 __kmalloc+0x16e/0x290 ext4resizefs+0x481/0xd80 __ext4ioctl+0x1616/0x1d90 ext4ioctl+0x12/0x20 __x64sysioctl+0xf0/0x150

dosyscall64+0x3b/0x90

This is because flexbgsize is too large and the size of the newgroupdata array to be allocated exceeds MAXORDER. Currently, the minimum value of MAXORDER is 8, the minimum value of PAGESIZE is 4096, the corresponding maximum number of groups that can be allocated is:

(PAGESIZE << MAXORDER) / sizeof(struct ext4newgroup_data) ≈ 21845

And the value that is down-aligned to the power of 2 is 16384. Therefore, this value is defined as MAXRESIZEBG, and the number of groups added each time does not exceed this value during resizing, and is added multiple times to complete the online resizing. The difference is that the metadata in a flex_bg may be more dispersed.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2023/52xxx/CVE-2023-52622.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
28c7bac0091687e6116ebd6c179e154ae4053c90
Fixed
cd1f93ca97a9136989f3bd2bf90696732a2ed644
Fixed
b183fe8702e78bba3dcef8e7193cab6898abee07
Fixed
cfbbb3199e71b63fc26cee0ebff327c47128a1e8
Fixed
d76c8d7ffe163c6bf2f1ef680b0539c2b3902b90
Fixed
6d2cbf517dcabc093159cf138ad5712c9c7fa954
Fixed
8b1413dbfe49646eda2c00c0f1144ee9d3368e0c
Fixed
dc3e0f55bec4410f3d74352c4a7c79f518088ee2
Fixed
5d1935ac02ca5aee364a449a35e2977ea84509b0

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2023-52622.json"