CVE-2024-50229
Published: Nov 9, 2024
Modified: May 23, 2026
Description
In the Linux kernel, the following vulnerability has been resolved: nilfs2: fix potential deadlock with newly created symlinks Syzbot reported that page_symlink(), called by nilfs_symlink(), triggers memory reclamation involving the filesystem layer, which can result in circular lock dependencies among the reader/writer semaphore nilfs->ns_segctor_sem, s_writers percpu_rwsem (intwrite) and the fs_reclaim pseudo lock. This is because after commit 21fc61c73c39 ("don't put symlink bodies in pagecache into highmem"), the gfp flags of the page cache for symbolic links are overwritten to GFP_KERNEL via inode_nohighmem(). This is not a problem for symlinks read from the backing device, because the __GFP_FS flag is dropped after inode_nohighmem() is called. However, when a new symlink is created with nilfs_symlink(), the gfp flags remain overwritten to GFP_KERNEL. Then, memory allocation called from page_symlink() etc. triggers memory reclamation including the FS layer, which may call nilfs_evict_inode() or nilfs_dirty_inode(). And these can cause a deadlock if they are called while nilfs->ns_segctor_sem is held: Fix this issue by dropping the __GFP_FS flag from the page cache GFP flags of newly created symlinks in the same way that nilfs_new_inode() and __nilfs_read_inode() do, as a workaround until we adopt nofs allocation scope consistently or improve the locking constraints.
| Vendor | Product | Versions |
|---|---|---|
Linux | Linux | affected 21fc61c73c3903c4c312d0802da01ec2b323d174 - < cc38c596e648575ce58bfc31623a6506eda4b94aaffected 21fc61c73c3903c4c312d0802da01ec2b323d174 - < a1686db1e59f8fc016c4c9361e2119dd206f479aaffected 21fc61c73c3903c4c312d0802da01ec2b323d174 - < c72e0df0b56c1166736dc8eb62070ebb12591447affected 21fc61c73c3903c4c312d0802da01ec2b323d174 - < 69548bb663fcb63f9ee0301be808a36b9d78dac3affected 21fc61c73c3903c4c312d0802da01ec2b323d174 - < 58c7f44c7b9e5ac7e3b1e5da2572ed7767a12f38+5 more versions |
Linux | Linux | affected 4.5unaffected 0 - < 4.5unaffected 4.19.323 - <= 4.19.*unaffected 5.4.285 - <= 5.4.*unaffected 5.10.229 - <= 5.10.*+5 more versions |
References
Security Training
Train your team to recognize and prevent security threats with our comprehensive security awareness program.
Start TrainingVulnerability Scanning
Discover vulnerabilities in your applications and infrastructure before attackers do.
Scan Now