loop: fix LOOP_GET_STATUS lock imbalance
authorOmar Sandoval <osandov@fb.com>
Fri, 6 Apr 2018 16:57:03 +0000 (09:57 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 May 2018 14:17:35 +0000 (16:17 +0200)
commit360964411d57d060d0b3f067c7a708ba9aeb5e07
treeeee8f068944ad13aeff1f35339557b66b8c284bb
parentc18270ac9f8457c3d383e9b9a58e6368e046ce8a
loop: fix LOOP_GET_STATUS lock imbalance

commit bdac616db9bbadb90b7d6a406144571015e138f7 upstream.

Commit 2d1d4c1e591f made loop_get_status() drop lo_ctx_mutex before
returning, but the loop_get_status_old(), loop_get_status64(), and
loop_get_status_compat() wrappers don't call loop_get_status() if the
passed argument is NULL. The callers expect that the lock is dropped, so
make sure we drop it in that case, too.

Reported-by: syzbot+31e8daa8b3fc129e75f2@syzkaller.appspotmail.com
Fixes: 2d1d4c1e591f ("loop: don't call into filesystem while holding lo_ctl_mutex")
Signed-off-by: Omar Sandoval <osandov@fb.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/block/loop.c