diff options
| author | Pan Bian <[email protected]> | 2018-12-03 23:28:02 -0500 |
|---|---|---|
| committer | Theodore Ts'o <[email protected]> | 2018-12-03 23:28:02 -0500 |
| commit | 61157b24e60fb3cd1f85f2c76a7b1d628f970144 (patch) | |
| tree | 0e6fc271e232be09fe8b384561de9010453953b4 | |
| parent | 96f1e097457506f215adfe3c47aacc15a88f6dd7 (diff) | |
ext4: fix possible use after free in ext4_quota_enable
The function frees qf_inode via iput but then pass qf_inode to
lockdep_set_quota_inode on the failure path. This may result in a
use-after-free bug. The patch frees df_inode only when it is never used.
Fixes: daf647d2dd5 ("ext4: add lockdep annotations for i_data_sem")
Cc: [email protected] # 4.6
Reviewed-by: Jan Kara <[email protected]>
Signed-off-by: Pan Bian <[email protected]>
Signed-off-by: Theodore Ts'o <[email protected]>
| -rw-r--r-- | fs/ext4/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 361624460431..d22e761aaa18 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -5713,9 +5713,9 @@ static int ext4_quota_enable(struct super_block *sb, int type, int format_id, qf_inode->i_flags |= S_NOQUOTA; lockdep_set_quota_inode(qf_inode, I_DATA_SEM_QUOTA); err = dquot_enable(qf_inode, type, format_id, flags); - iput(qf_inode); if (err) lockdep_set_quota_inode(qf_inode, I_DATA_SEM_NORMAL); + iput(qf_inode); return err; } |