Dae R. Jeong
70eb256f8c
md: fix a warning caused by a race between concurrent md_ioctl()s
...
commit c731b84b51bf7fe83448bea8f56a6d55006b0615 upstream.
Syzkaller reports a warning as belows.
WARNING: CPU: 0 PID: 9647 at drivers/md/md.c:7169
...
Call Trace:
...
RIP: 0010:md_ioctl+0x4017/0x5980 drivers/md/md.c:7169
RSP: 0018:ffff888096027950 EFLAGS: 00010293
RAX: ffff88809322c380 RBX: 0000000000000932 RCX: ffffffff84e266f2
RDX: 0000000000000000 RSI: ffffffff84e299f7 RDI: 0000000000000007
RBP: ffff888096027bc0 R08: ffff88809322c380 R09: ffffed101341a482
R10: ffff888096027940 R11: ffff88809a0d240f R12: 0000000000000932
R13: ffff8880a2c14100 R14: ffff88809a0d2268 R15: ffff88809a0d2408
__blkdev_driver_ioctl block/ioctl.c:304 [inline]
blkdev_ioctl+0xece/0x1c10 block/ioctl.c:606
block_ioctl+0xee/0x130 fs/block_dev.c:1930
vfs_ioctl fs/ioctl.c:46 [inline]
file_ioctl fs/ioctl.c:509 [inline]
do_vfs_ioctl+0xd5f/0x1380 fs/ioctl.c:696
ksys_ioctl+0xab/0xd0 fs/ioctl.c:713
__do_sys_ioctl fs/ioctl.c:720 [inline]
__se_sys_ioctl fs/ioctl.c:718 [inline]
__x64_sys_ioctl+0x73/0xb0 fs/ioctl.c:718
do_syscall_64+0xfd/0x680 arch/x86/entry/common.c:301
entry_SYSCALL_64_after_hwframe+0x49/0xbe
This is caused by a race between two concurrenct md_ioctl()s closing
the array.
CPU1 (md_ioctl()) CPU2 (md_ioctl())
------ ------
set_bit(MD_CLOSING, &mddev->flags);
did_set_md_closing = true;
WARN_ON_ONCE(test_bit(MD_CLOSING,
&mddev->flags));
if(did_set_md_closing)
clear_bit(MD_CLOSING, &mddev->flags);
Fix the warning by returning immediately if the MD_CLOSING bit is set
in &mddev->flags which indicates that the array is being closed.
Fixes: 065e519e71b2 ("md: MD_CLOSING needs to be cleared after called md_set_readonly or do_md_stop")
Reported-by: syzbot+1e46a0864c1a6e9bd3d8@syzkaller.appspotmail.com
Cc: stable@vger.kernel.org
Signed-off-by: Dae R. Jeong <dae.r.jeong@kaist.ac.kr>
Signed-off-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2020-12-26 16:02:45 +01:00
..
2020-10-02 14:25:30 -06:00
2020-09-29 16:33:11 -04:00
2019-11-05 14:53:03 -05:00
2020-01-07 12:07:08 -05:00
2020-03-03 10:02:46 -05:00
2020-07-20 11:17:43 -04:00
2020-09-02 13:38:24 -04:00
2020-12-01 15:43:36 -05:00
2020-03-27 14:42:51 -04:00
2020-03-27 14:42:51 -04:00
2020-07-08 17:20:46 -06:00
2020-09-29 16:33:07 -04:00
2020-09-29 16:33:08 -04:00
2020-07-01 07:27:24 -06:00
2020-07-20 11:17:41 -04:00
2020-08-04 16:01:40 -04:00
2020-07-08 17:20:46 -06:00
2019-05-16 15:55:48 -07:00
2019-11-12 19:12:07 -07:00
2020-05-15 10:29:36 -04:00
2020-08-04 15:51:28 -04:00
2020-11-17 10:45:06 -05:00
2020-07-16 12:35:15 -07:00
2020-10-01 15:03:40 -04:00
2019-08-15 15:57:39 -04:00
2020-09-25 08:20:03 -06:00
2020-05-20 17:09:44 -04:00
2020-09-29 16:33:08 -04:00
2020-05-15 10:29:36 -04:00
2020-05-15 10:29:36 -04:00
2020-07-01 07:27:24 -06:00
2020-12-14 19:33:01 +01:00
2020-09-29 16:33:07 -04:00
2019-03-05 14:48:50 -05:00
2020-05-15 10:29:36 -04:00
2020-09-29 16:33:12 -04:00
2020-07-01 07:27:24 -06:00
2020-05-20 17:09:44 -04:00
2020-05-20 17:09:44 -04:00
2020-05-20 17:09:44 -04:00
2020-12-04 14:53:15 -05:00
2019-04-25 15:38:52 -04:00
2020-09-29 16:33:11 -04:00
2019-12-05 17:05:24 -05:00
2020-07-08 17:20:46 -06:00
2019-05-30 11:26:35 -07:00
2019-05-30 11:26:35 -07:00
2020-04-16 16:16:38 -04:00
2019-05-30 11:26:32 -07:00
2020-08-07 13:08:09 -07:00
2019-08-23 10:13:14 -04:00
2020-08-04 15:48:13 -04:00
2020-07-13 11:47:33 -04:00
2020-12-01 15:43:39 -05:00
2020-07-08 12:21:53 -04:00
2020-07-08 12:21:53 -04:00
2020-08-03 11:57:03 -07:00
2020-06-05 14:59:53 -04:00
2020-12-04 15:25:18 -05:00
2020-09-29 16:33:07 -04:00
2020-07-05 14:28:27 -06:00
2020-07-16 15:34:47 +02:00
2020-08-23 17:36:59 -05:00
2020-10-08 22:37:39 -07:00
2020-10-08 22:37:39 -07:00
2020-07-01 07:27:24 -06:00
2020-09-02 08:00:07 -06:00
2020-05-13 12:02:23 -07:00
2020-07-08 17:20:46 -06:00
2020-12-26 16:02:45 +01:00
2020-12-14 19:33:01 +01:00
2020-12-09 20:46:01 -08:00
2019-09-13 13:10:05 -07:00
2019-06-15 01:37:35 -06:00
2020-07-08 17:20:46 -06:00
2020-05-13 12:02:23 -07:00
2020-08-02 23:03:52 -07:00
2019-03-12 10:15:18 -07:00
2020-07-21 17:18:12 -07:00
2020-10-08 22:38:10 -07:00
2020-09-24 16:44:44 -07:00
2020-12-09 20:46:01 -08:00
2020-12-09 20:46:00 -08:00