CVE-2023-53622
EUVD-2025-3200807.10.2025, 16:15
In the Linux kernel, the following vulnerability has been resolved:
gfs2: Fix possible data races in gfs2_show_options()
Some fields such as gt_logd_secs of the struct gfs2_tune are accessed
without holding the lock gt_spin in gfs2_show_options():
val = sdp->sd_tune.gt_logd_secs;
if (val != 30)
seq_printf(s, ",commit=%d", val);
And thus can cause data races when gfs2_show_options() and other functions
such as gfs2_reconfigure() are concurrently executed:
spin_lock(>->gt_spin);
gt->gt_logd_secs = newargs->ar_commit;
To fix these possible data races, the lock sdp->sd_tune.gt_spin is
acquired before accessing the fields of gfs2_tune and released after these
accesses.
Further changes by Andreas:
- Don't hold the spin lock over the seq_printf operations.Affected Products (NVD)
| Vendor | Product | Version |
|---|---|---|
| linux | linux_kernel | 2.6.31 ≤ 𝑥 < 4.14.324 |
| linux | linux_kernel | 4.15 ≤ 𝑥 < 4.19.293 |
| linux | linux_kernel | 4.20 ≤ 𝑥 < 5.4.255 |
| linux | linux_kernel | 5.5 ≤ 𝑥 < 5.10.192 |
| linux | linux_kernel | 5.11 ≤ 𝑥 < 5.15.128 |
| linux | linux_kernel | 5.16 ≤ 𝑥 < 6.1.47 |
| linux | linux_kernel | 6.2 ≤ 𝑥 < 6.4.12 |
𝑥
= Vulnerable software versions
Debian Releases
openSUSE / SLES Releases
openSUSE Product | |||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| cluster-md-kmp-default |
| ||||||||||||||||||
| dlm-kmp-default |
| ||||||||||||||||||
| gfs2-kmp-default |
| ||||||||||||||||||
| kernel-64kb |
| ||||||||||||||||||
| kernel-azure |
| ||||||||||||||||||
| kernel-default |
| ||||||||||||||||||
| kernel-default-base |
| ||||||||||||||||||
| kernel-default-man |
| ||||||||||||||||||
| kernel-obs-build |
| ||||||||||||||||||
| kernel-source |
| ||||||||||||||||||
| kernel-source-azure |
| ||||||||||||||||||
| kernel-zfcpdump |
| ||||||||||||||||||
| ocfs2-kmp-default |
| ||||||||||||||||||
| reiserfs-kmp-default |
|
Amazon Linux Releases
Amazon Package | |||
|---|---|---|---|
| kernel |
| ||
| kernel-debuginfo |
| ||
| kernel-debuginfo-common-aarch64 |
| ||
| kernel-debuginfo-common-x86_64 |
| ||
| kernel-devel |
| ||
| kernel-headers |
| ||
| kernel-livepatch-4.14.326-245.539 |
| ||
| kernel-tools |
| ||
| kernel-tools-debuginfo |
| ||
| kernel-tools-devel |
| ||
| perf |
| ||
| perf-debuginfo |
| ||
| python-perf |
| ||
| python-perf-debuginfo |
|
References