FKIE_CVE-2026-93269
Vulnerability from fkie_nvd - Published: 2026-09-24 16:17 - Updated: 2026-09-24 16:17
Severity
Summary
In the Linux kernel, the following vulnerability has been resolved:
ext4: fix circular lock dependency in ext4_ext_migrate
Move iput(tmp_inode) after ext4_writepages_up_write() to avoid a
circular lock dependency between s_writepages_rwsem and sb_internal
(freeze protection).
The deadlock scenario:
CPU0 (EXT4_IOC_MIGRATE) CPU1 (orphan cleanup during mount)
---- ----
ext4_ext_migrate()
ext4_writepages_down_write()
s_writepages_rwsem (write)
ext4_evict_inode()
sb_start_intwrite() [sb_internal]
...
ext4_writepages()
s_writepages_rwsem (read) [BLOCKED]
iput(tmp_inode)
ext4_evict_inode()
sb_start_intwrite() [BLOCKED]
The tmp_inode is a temporary inode with nlink=0 created solely for
building the extent tree. Its eviction does not require
s_writepages_rwsem protection, so deferring iput() until after
releasing the rwsem is safe.
References
Impacted products
| Vendor | Product | Version |
|---|
{
"affected": [
{
"affectedData": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"fs/ext4/migrate.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "452950461241dfed8b1d32e94b227db38c99c5af",
"status": "affected",
"version": "cb85f4d23f794e24127f3e562cb3b54b0803f456",
"versionType": "git"
},
{
"lessThan": "ada23457d4748d6e9c36c6f871fc29a6f558c48c",
"status": "affected",
"version": "cb85f4d23f794e24127f3e562cb3b54b0803f456",
"versionType": "git"
},
{
"lessThan": "e4223231b6860141813637a6413c2371ae4d6fa8",
"status": "affected",
"version": "cb85f4d23f794e24127f3e562cb3b54b0803f456",
"versionType": "git"
},
{
"lessThan": "32f7ab52875ec7f800ca67e7176e5743a84baddf",
"status": "affected",
"version": "cb85f4d23f794e24127f3e562cb3b54b0803f456",
"versionType": "git"
},
{
"lessThan": "a897682793eba5de51ee6f3152760374afa629cf",
"status": "affected",
"version": "cb85f4d23f794e24127f3e562cb3b54b0803f456",
"versionType": "git"
},
{
"status": "affected",
"version": "eb799e163dc2bc1ea0a4820b66f79d32a5e907df",
"versionType": "git"
},
{
"status": "affected",
"version": "bcc1eab71a67c46b9e24544ac7923f44444174ce",
"versionType": "git"
},
{
"status": "affected",
"version": "8cf20fb73e73a4c4df0328b5297842c5ef34fdd9",
"versionType": "git"
},
{
"status": "affected",
"version": "e5d25003d059649e18a249635ed5ca7a7b1de5ad",
"versionType": "git"
},
{
"status": "affected",
"version": "69f8a7991fd93c49096ddd11574db3e7df238b7b",
"versionType": "git"
},
{
"lessThan": "4.10",
"status": "affected",
"version": "4.9.215",
"versionType": "semver"
},
{
"lessThan": "4.15",
"status": "affected",
"version": "4.14.172",
"versionType": "semver"
},
{
"lessThan": "4.20",
"status": "affected",
"version": "4.19.107",
"versionType": "semver"
},
{
"lessThan": "5.5",
"status": "affected",
"version": "5.4.23",
"versionType": "semver"
},
{
"lessThan": "5.6",
"status": "affected",
"version": "5.5.7",
"versionType": "semver"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"fs/ext4/migrate.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "5.6"
},
{
"lessThan": "5.6",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.6.*",
"status": "unaffected",
"version": "6.6.157",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.110",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.18.*",
"status": "unaffected",
"version": "6.18.52",
"versionType": "semver"
},
{
"lessThanOrEqual": "7.2.*",
"status": "unaffected",
"version": "7.2.6",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "7.3-rc1",
"versionType": "original_commit_for_fix"
}
]
}
],
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67"
}
],
"cveTags": [],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\next4: fix circular lock dependency in ext4_ext_migrate\n\nMove iput(tmp_inode) after ext4_writepages_up_write() to avoid a\ncircular lock dependency between s_writepages_rwsem and sb_internal\n(freeze protection).\n\nThe deadlock scenario:\n\n CPU0 (EXT4_IOC_MIGRATE) CPU1 (orphan cleanup during mount)\n ---- ----\n ext4_ext_migrate()\n ext4_writepages_down_write()\n s_writepages_rwsem (write)\n ext4_evict_inode()\n sb_start_intwrite() [sb_internal]\n ...\n ext4_writepages()\n s_writepages_rwsem (read) [BLOCKED]\n iput(tmp_inode)\n ext4_evict_inode()\n sb_start_intwrite() [BLOCKED]\n\nThe tmp_inode is a temporary inode with nlink=0 created solely for\nbuilding the extent tree. Its eviction does not require\ns_writepages_rwsem protection, so deferring iput() until after\nreleasing the rwsem is safe."
}
],
"id": "CVE-2026-93269",
"lastModified": "2026-09-24T16:17:23.873",
"metrics": {},
"published": "2026-09-24T16:17:23.873",
"references": [
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"url": "https://git.kernel.org/stable/c/32f7ab52875ec7f800ca67e7176e5743a84baddf"
},
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"url": "https://git.kernel.org/stable/c/452950461241dfed8b1d32e94b227db38c99c5af"
},
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"url": "https://git.kernel.org/stable/c/a897682793eba5de51ee6f3152760374afa629cf"
},
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"url": "https://git.kernel.org/stable/c/ada23457d4748d6e9c36c6f871fc29a6f558c48c"
},
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"url": "https://git.kernel.org/stable/c/e4223231b6860141813637a6413c2371ae4d6fa8"
}
],
"sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"vulnStatus": "Received"
}
Loading…
Loading…
Experimental. This forecast is provided for visualization only and may change without notice. Do not use it for operational decisions.
Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.
Loading…
Loading…
The MITRE ATT&CK techniques below are AI-generated suggestions, inferred from the description of the
vulnerability by the CIRCL/vulnerability-attack-technique-classification-roberta-base
model, served locally by ML-Gateway.
They have not been verified by an analyst and are provided for guidance only.
The approach is described in our paper Mapping CVEs to MITRE ATT&CK Techniques: A Curated Gold-Set Classifier and the Limits of LLM-Assisted Label Expansion.
Browse all ATT&CK techniques and the vulnerabilities related to each.
The approach is described in our paper Mapping CVEs to MITRE ATT&CK Techniques: A Curated Gold-Set Classifier and the Limits of LLM-Assisted Label Expansion.
Browse all ATT&CK techniques and the vulnerabilities related to each.
Loading…
Related by attack behaviour
Vulnerabilities whose description is nearest to this one in the vector space of the CIRCL/vulnerability-attack-technique-biencoder model. This is a similarity search over the bi-encoder space (plain cosine), not a classification, and it has no measured accuracy.
Loading…