Skip to content

Commit f6122ed

Browse files
Sahitya TummalaChristoph Hellwig
authored andcommitted
configfs: Fix use-after-free when accessing sd->s_dentry
In the vfs_statx() context, during path lookup, the dentry gets added to sd->s_dentry via configfs_attach_attr(). In the end, vfs_statx() kills the dentry by calling path_put(), which invokes configfs_d_iput(). Ideally, this dentry must be removed from sd->s_dentry but it doesn't if the sd->s_count >= 3. As a result, sd->s_dentry is holding reference to a stale dentry pointer whose memory is already freed up. This results in use-after-free issue, when this stale sd->s_dentry is accessed later in configfs_readdir() path. This issue can be easily reproduced, by running the LTP test case - sh fs_racer_file_list.sh /config (https://github.com/linux-test-project/ltp/blob/master/testcases/kernel/fs/racer/fs_racer_file_list.sh) Fixes: 76ae281 ('configfs: fix race between dentry put and lookup') Signed-off-by: Sahitya Tummala <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]>
1 parent cd6c84d commit f6122ed

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

fs/configfs/dir.c

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,13 @@ static void configfs_d_iput(struct dentry * dentry,
5858
if (sd) {
5959
/* Coordinate with configfs_readdir */
6060
spin_lock(&configfs_dirent_lock);
61-
/* Coordinate with configfs_attach_attr where will increase
62-
* sd->s_count and update sd->s_dentry to new allocated one.
63-
* Only set sd->dentry to null when this dentry is the only
64-
* sd owner.
65-
* If not do so, configfs_d_iput may run just after
66-
* configfs_attach_attr and set sd->s_dentry to null
67-
* even it's still in use.
61+
/*
62+
* Set sd->s_dentry to null only when this dentry is the one
63+
* that is going to be killed. Otherwise configfs_d_iput may
64+
* run just after configfs_attach_attr and set sd->s_dentry to
65+
* NULL even it's still in use.
6866
*/
69-
if (atomic_read(&sd->s_count) <= 2)
67+
if (sd->s_dentry == dentry)
7068
sd->s_dentry = NULL;
7169

7270
spin_unlock(&configfs_dirent_lock);

0 commit comments

Comments
 (0)