]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ext4: fix possible use after free in ext4_quota_enable
authorPan Bian <bianpan2016@163.com>
Tue, 4 Dec 2018 04:28:02 +0000 (23:28 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 9 Jan 2019 16:45:57 +0000 (17:45 +0100)
commitec2222187bdc5f23113e57b6fcd516cd5a2dfa62
tree3d0d3fdc4d2d89bdf00f6e8c9bce9aad3b1898c5
parent81313ed2c705d958744882a269bf4a5e3ddec95e
ext4: fix possible use after free in ext4_quota_enable

commit 61157b24e60fb3cd1f85f2c76a7b1d628f970144 upstream.

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: stable@kernel.org # 4.6
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Pan Bian <bianpan2016@163.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext4/super.c