forked from torvalds/linux
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
configfs: fix a race in configfs_lookup()
When configfs_lookup() is executing list_for_each_entry(), it is possible that configfs_dir_lseek() is calling list_del(). Some unfortunate interleavings of them can cause a kernel NULL pointer dereference error Thread 1 Thread 2 //configfs_dir_lseek() //configfs_lookup() list_del(&cursor->s_sibling); list_for_each_entry(sd, ...) Fix this bug by grabbing configfs_dirent_lock in configfs_lookup(). Reported-by: Sishuai Gong <sishuai@purdue.edu> Signed-off-by: sishuaigong <sishuai@purdue.edu>
- Loading branch information
1 parent
769f526
commit ff28c41926fb184655325e34dba02c438963dcf5
Showing
1 changed file
with
35 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters