CVE-2023-53622
Severity CVSS v4.0:
Pending analysis
Type:
CWE-362
Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')
Publication date:
07/10/2025
Last modified:
05/02/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
gfs2: Fix possible data races in gfs2_show_options()<br />
<br />
Some fields such as gt_logd_secs of the struct gfs2_tune are accessed<br />
without holding the lock gt_spin in gfs2_show_options():<br />
<br />
val = sdp->sd_tune.gt_logd_secs;<br />
if (val != 30)<br />
seq_printf(s, ",commit=%d", val);<br />
<br />
And thus can cause data races when gfs2_show_options() and other functions<br />
such as gfs2_reconfigure() are concurrently executed:<br />
<br />
spin_lock(&gt->gt_spin);<br />
gt->gt_logd_secs = newargs->ar_commit;<br />
<br />
To fix these possible data races, the lock sdp->sd_tune.gt_spin is<br />
acquired before accessing the fields of gfs2_tune and released after these<br />
accesses.<br />
<br />
Further changes by Andreas:<br />
<br />
- Don&#39;t hold the spin lock over the seq_printf operations.
Impact
Base Score 3.x
7.00
Severity 3.x
HIGH
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 2.6.31 (including) | 4.14.324 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.15 (including) | 4.19.293 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.20 (including) | 5.4.255 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.5 (including) | 5.10.192 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.11 (including) | 5.15.128 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (including) | 6.1.47 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (including) | 6.4.12 (excluding) |
To consult the complete list of CPE names with products and versions, see this page
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/235a5ae73cea29109a3e06f100493f17857e6a93
- https://git.kernel.org/stable/c/42077d4de49e4d9c773c97c42d5383b4899a8f9d
- https://git.kernel.org/stable/c/6fa0a72cbbe45db4ed967a51f9e6f4e3afe61d20
- https://git.kernel.org/stable/c/7c5b2649f6a37d45bfb7abf34c9b71d08677139f
- https://git.kernel.org/stable/c/7e5bbeb7eb813bb2568e1d5d02587df943272e57
- https://git.kernel.org/stable/c/85e888150075cb221270b64bf772341fc6bd11d9
- https://git.kernel.org/stable/c/a4f71523ed2123d63b431cc0cea4e9f363a0f054
- https://git.kernel.org/stable/c/b4a7ab57effbed42624842f2ab2a49b177c21a47



