CVE-2022-49547

Source
https://cve.org/CVERecord?id=CVE-2022-49547
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2022-49547.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2022-49547
Downstream
Published
2025-02-26T02:13:59.343Z
Modified
2026-04-02T08:27:41.694332Z
Severity
  • 5.5 (Medium) CVSS_V3 - CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H CVSS Calculator
Summary
btrfs: fix deadlock between concurrent dio writes when low on free data space
Details

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

btrfs: fix deadlock between concurrent dio writes when low on free data space

When reserving data space for a direct IO write we can end up deadlocking if we have multiple tasks attempting a write to the same file range, there are multiple extents covered by that file range, we are low on available space for data and the writes don't expand the inode's i_size.

The deadlock can happen like this:

1) We have a file with an i_size of 1M, at offset 0 it has an extent with a size of 128K and at offset 128K it has another extent also with a size of 128K;

2) Task A does a direct IO write against file range [0, 256K), and because the write is within the i_size boundary, it takes the inode's lock (VFS level) in shared mode;

3) Task A locks the file range [0, 256K) at btrfsdioiomapbegin(), and then gets the extent map for the extent covering the range [0, 128K). At btrfsgetblocksdirect_write(), it creates an ordered extent for that file range ([0, 128K));

4) Before returning from btrfsdioiomap_begin(), it unlocks the file range [0, 256K);

5) Task A executes btrfsdioiomap_begin() again, this time for the file range [128K, 256K), and locks the file range [128K, 256K);

6) Task B starts a direct IO write against file range [0, 256K) as well. It also locks the inode in shared mode, as it's within the i_size limit, and then tries to lock file range [0, 256K). It is able to lock the subrange [0, 128K) but then blocks waiting for the range [128K, 256K), as it is currently locked by task A;

7) Task A enters btrfsgetblocksdirectwrite() and tries to reserve data space. Because we are low on available free space, it triggers the async data reclaim task, and waits for it to reserve data space;

8) The async reclaim task decides to wait for all existing ordered extents to complete (through btrfswaitordered_roots()). It finds the ordered extent previously created by task A for the file range [0, 128K) and waits for it to complete;

9) The ordered extent for the file range [0, 128K) can not complete because it blocks at btrfsfinishordered_io() when trying to lock the file range [0, 128K).

This results in a deadlock, because:

  • task B is holding the file range [0, 128K) locked, waiting for the range [128K, 256K) to be unlocked by task A;

  • task A is holding the file range [128K, 256K) locked and it's waiting for the async data reclaim task to satisfy its space reservation request;

  • the async data reclaim task is waiting for ordered extent [0, 128K) to complete, but the ordered extent can not complete because the file range [0, 128K) is currently locked by task B, which is waiting on task A to unlock file range [128K, 256K) and task A waiting on the async data reclaim task.

    This results in a deadlock between 4 task: task A, task B, the async data reclaim task and the task doing ordered extent completion (a work queue task).

This type of deadlock can sporadically be triggered by the test case generic/300 from fstests, and results in a stack trace like the following:

[12084.033689] INFO: task kworker/u16:7:123749 blocked for more than 241 seconds. [12084.034877] Not tainted 5.18.0-rc2-btrfs-next-115 #1 [12084.035562] "echo 0 > /proc/sys/kernel/hungtasktimeoutsecs" disables this message. [12084.036548] task:kworker/u16:7 state:D stack: 0 pid:123749 ppid: 2 flags:0x00004000 [12084.036554] Workqueue: btrfs-flushdelalloc btrfsworkhelper [btrfs] [12084.036599] Call Trace: [12084.036601] <TASK> [12084.036606] __schedule+0x3cb/0xed0 [12084.036616] schedule+0x4e/0xb0 [12084.036620] btrfsstartorderedextent+0x109/0x1c0 [btrfs] [12084.036651] ? preparetowaitexclusive+0xc0/0xc0 [12084.036659] btrfsrunorderedextentwork+0x1a/0x30 [btrfs] [12084.036688] btrfsworkhelper+0xf8/0x400 [btrfs] [12084.0367 ---truncated---

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2022/49xxx/CVE-2022-49547.json",
    "cna_assigner": "Linux"
}
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
f0bfa76a11e93d0fe2c896fcb566568c5e8b5d3f
Fixed
cfae6f765b3c40882ee90dae8fbf9325c8de9c35
Fixed
f5585f4f0ef5b17026bbd60fbff6fcc91b99d5bf
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
0 Unknown introduced commit / All previous commits are affected
Last affected
5afd80c393f4e87451f14eefb7f2f24daf434e06
Last affected
96f1be29492d9e2fb97bb27f824478ab8cd3ab86

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2022-49547.json"