]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: free btrfs_path before copying inodes to userspace
authorAnand Jain <anand.jain@oracle.com>
Thu, 10 Nov 2022 06:06:28 +0000 (11:36 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Dec 2022 10:23:01 +0000 (11:23 +0100)
commita09778628fb0f0d80c7843a38ab5f1d8bad7a6a8
tree681327354a5dd234c68b188e10affd4ae4f38d7f
parent3e1b6d0d8af24730c66a8169608d723c9064e6ab
btrfs: free btrfs_path before copying inodes to userspace

[ Upstream commit d4a24e2aa6a1fccc3e16a2a3231154bbe1fbbbcc ]

btrfs_ioctl_logical_to_ino() frees the search path after the userspace
copy from the temp buffer @inodes. Which potentially can lead to a lock
splat.

Fix this by freeing the path before we copy @inodes to userspace.

CC: stable@vger.kernel.org # 4.19+
Signed-off-by: Anand Jain <anand.jain@oracle.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/btrfs/ioctl.c