kernel-fxtec-pro1x/fs/configfs
Sahitya Tummala d3fc4a2330 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

Change-Id: I5ac8556837bbdf2e5d0540516efb106ec53d7536
Fixes: 76ae281f63 ('configfs: fix race between dentry put and lookup')
Signed-off-by: Sahitya Tummala <stummala@codeaurora.org>
2019-01-10 02:07:26 -08:00
..
configfs_internal.h
dir.c configfs: Fix use-after-free when accessing sd->s_dentry 2019-01-10 02:07:26 -08:00
file.c
inode.c
item.c
Kconfig
Makefile
mount.c
symlink.c configfs: replace strncpy with memcpy 2018-07-02 07:12:55 -06:00