CVE-2022-50346
BaseFortify
Publication date: 2025-09-16
Last updated on: 2025-12-01
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | to 4.9.337 (exc) |
| linux | linux_kernel | From 4.10 (inc) to 4.14.303 (exc) |
| linux | linux_kernel | From 4.15 (inc) to 4.19.270 (exc) |
| linux | linux_kernel | From 4.20 (inc) to 5.4.229 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.163 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.87 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.0.18 (exc) |
| linux | linux_kernel | From 6.1 (inc) to 6.1.4 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-908 | The product uses or accesses a resource that has not been initialized. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability occurs in the Linux kernel's ext4 filesystem during the rename operation. Specifically, when the ext4_rename function modifies the 'old.inode', it updates the inode's ctime and marks it dirty, which can trigger an expansion of the 'extra_isize' and allocation of a block. However, if the inode's quota is not initialized before this process, it leads to a warning and potential instability. The fix involves initializing the 'old.inode' early in the ext4_rename function to prevent this issue.
How can this vulnerability impact me? :
This vulnerability can cause warnings and potentially unstable behavior in the ext4 filesystem during file rename operations. It may lead to improper handling of inode metadata, which could affect filesystem integrity or cause kernel warnings, possibly impacting system stability or reliability.