Skip to content

Commit 2c8d523

Browse files
author
Bryant G. Ly
committed
tcmu: fix crash when removing the tcmu device
Before the nl REMOVE msg has been sent to the userspace, the ring's and other resources have been released, but the userspace maybe still using them. And then we can see the crash messages like: ring broken, not handling completions BUG: unable to handle kernel paging request at ffffffffffffffd0 IP: tcmu_handle_completions+0x134/0x2f0 [target_core_user] PGD 11bdc0c067 P4D 11bdc0c067 PUD 11bdc0e067 PMD 0 Oops: 0000 [#1] SMP cmd_id not found, ring is broken RIP: 0010:tcmu_handle_completions+0x134/0x2f0 [target_core_user] RSP: 0018:ffffb8a2d8983d88 EFLAGS: 00010296 RAX: 0000000000000000 RBX: ffffb8a2aaa4e000 RCX: 00000000ffffffff RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000 RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000220 R10: 0000000076c71401 R11: ffff8d2e76c713f0 R12: ffffb8a2aad56bc0 R13: 000000000000001c R14: ffff8d2e32c90000 R15: ffff8d2e76c713f0 FS: 00007f411ffff700(0000) GS:ffff8d1e7fdc0000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: ffffffffffffffd0 CR3: 0000001027070000 CR4: 00000000001406e0 Call Trace: ? tcmu_irqcontrol+0x2a/0x40 [target_core_user] ? uio_write+0x7b/0xc0 [uio] ? __vfs_write+0x37/0x150 ? __getnstimeofday64+0x3b/0xd0 ? vfs_write+0xb2/0x1b0 ? syscall_trace_enter+0x1d0/0x2b0 ? SyS_write+0x55/0xc0 ? do_syscall_64+0x67/0x150 ? entry_SYSCALL64_slow_path+0x25/0x25 Code: 41 5d 41 5e 41 5f 5d c3 83 f8 01 0f 85 cf 01 00 00 48 8b 7d d0 e8 dd 5c 1d f3 41 0f b7 74 24 04 48 8b 7d c8 31 d2 e8 5c c7 1b f3 <48> 8b 7d d0 49 89 c7 c6 07 00 0f 1f 40 00 4d 85 ff 0f 84 82 01 RIP: tcmu_handle_completions+0x134/0x2f0 [target_core_user] RSP: ffffb8a2d8983d88 CR2: ffffffffffffffd0 And the crash also could happen in tcmu_page_fault and other places. Signed-off-by: Zhang Zhuoyu <[email protected]> Signed-off-by: Xiubo Li <[email protected]>
1 parent 020bc93 commit 2c8d523

File tree

1 file changed

+47
-45
lines changed

1 file changed

+47
-45
lines changed

drivers/target/target_core_user.c

Lines changed: 47 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1173,6 +1173,8 @@ static struct se_device *tcmu_alloc_device(struct se_hba *hba, const char *name)
11731173
init_waitqueue_head(&udev->nl_cmd_wq);
11741174
spin_lock_init(&udev->nl_cmd_lock);
11751175

1176+
INIT_RADIX_TREE(&udev->data_blocks, GFP_KERNEL);
1177+
11761178
return &udev->se_dev;
11771179
}
11781180

@@ -1351,10 +1353,54 @@ static void tcmu_dev_call_rcu(struct rcu_head *p)
13511353
kfree(udev);
13521354
}
13531355

1356+
static int tcmu_check_and_free_pending_cmd(struct tcmu_cmd *cmd)
1357+
{
1358+
if (test_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags)) {
1359+
kmem_cache_free(tcmu_cmd_cache, cmd);
1360+
return 0;
1361+
}
1362+
return -EINVAL;
1363+
}
1364+
1365+
static void tcmu_blocks_release(struct tcmu_dev *udev)
1366+
{
1367+
int i;
1368+
struct page *page;
1369+
1370+
/* Try to release all block pages */
1371+
mutex_lock(&udev->cmdr_lock);
1372+
for (i = 0; i <= udev->dbi_max; i++) {
1373+
page = radix_tree_delete(&udev->data_blocks, i);
1374+
if (page) {
1375+
__free_page(page);
1376+
atomic_dec(&global_db_count);
1377+
}
1378+
}
1379+
mutex_unlock(&udev->cmdr_lock);
1380+
}
1381+
13541382
static void tcmu_dev_kref_release(struct kref *kref)
13551383
{
13561384
struct tcmu_dev *udev = container_of(kref, struct tcmu_dev, kref);
13571385
struct se_device *dev = &udev->se_dev;
1386+
struct tcmu_cmd *cmd;
1387+
bool all_expired = true;
1388+
int i;
1389+
1390+
vfree(udev->mb_addr);
1391+
udev->mb_addr = NULL;
1392+
1393+
/* Upper layer should drain all requests before calling this */
1394+
spin_lock_irq(&udev->commands_lock);
1395+
idr_for_each_entry(&udev->commands, cmd, i) {
1396+
if (tcmu_check_and_free_pending_cmd(cmd) != 0)
1397+
all_expired = false;
1398+
}
1399+
idr_destroy(&udev->commands);
1400+
spin_unlock_irq(&udev->commands_lock);
1401+
WARN_ON(!all_expired);
1402+
1403+
tcmu_blocks_release(udev);
13581404

13591405
call_rcu(&dev->rcu_head, tcmu_dev_call_rcu);
13601406
}
@@ -1547,8 +1593,6 @@ static int tcmu_configure_device(struct se_device *dev)
15471593
WARN_ON(udev->data_size % PAGE_SIZE);
15481594
WARN_ON(udev->data_size % DATA_BLOCK_SIZE);
15491595

1550-
INIT_RADIX_TREE(&udev->data_blocks, GFP_KERNEL);
1551-
15521596
info->version = __stringify(TCMU_MAILBOX_VERSION);
15531597

15541598
info->mem[0].name = "tcm-user command & data buffer";
@@ -1598,44 +1642,19 @@ static int tcmu_configure_device(struct se_device *dev)
15981642
uio_unregister_device(&udev->uio_info);
15991643
err_register:
16001644
vfree(udev->mb_addr);
1645+
udev->mb_addr = NULL;
16011646
err_vzalloc:
16021647
kfree(info->name);
16031648
info->name = NULL;
16041649

16051650
return ret;
16061651
}
16071652

1608-
static int tcmu_check_and_free_pending_cmd(struct tcmu_cmd *cmd)
1609-
{
1610-
if (test_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags)) {
1611-
kmem_cache_free(tcmu_cmd_cache, cmd);
1612-
return 0;
1613-
}
1614-
return -EINVAL;
1615-
}
1616-
16171653
static bool tcmu_dev_configured(struct tcmu_dev *udev)
16181654
{
16191655
return udev->uio_info.uio_dev ? true : false;
16201656
}
16211657

1622-
static void tcmu_blocks_release(struct tcmu_dev *udev)
1623-
{
1624-
int i;
1625-
struct page *page;
1626-
1627-
/* Try to release all block pages */
1628-
mutex_lock(&udev->cmdr_lock);
1629-
for (i = 0; i <= udev->dbi_max; i++) {
1630-
page = radix_tree_delete(&udev->data_blocks, i);
1631-
if (page) {
1632-
__free_page(page);
1633-
atomic_dec(&global_db_count);
1634-
}
1635-
}
1636-
mutex_unlock(&udev->cmdr_lock);
1637-
}
1638-
16391658
static void tcmu_free_device(struct se_device *dev)
16401659
{
16411660
struct tcmu_dev *udev = TCMU_DEV(dev);
@@ -1647,9 +1666,6 @@ static void tcmu_free_device(struct se_device *dev)
16471666
static void tcmu_destroy_device(struct se_device *dev)
16481667
{
16491668
struct tcmu_dev *udev = TCMU_DEV(dev);
1650-
struct tcmu_cmd *cmd;
1651-
bool all_expired = true;
1652-
int i;
16531669

16541670
del_timer_sync(&udev->timeout);
16551671

@@ -1664,20 +1680,6 @@ static void tcmu_destroy_device(struct se_device *dev)
16641680
mutex_unlock(&udev->cmdr_lock);
16651681
mutex_unlock(&root_udev_waiter_mutex);
16661682

1667-
vfree(udev->mb_addr);
1668-
1669-
/* Upper layer should drain all requests before calling this */
1670-
spin_lock_irq(&udev->commands_lock);
1671-
idr_for_each_entry(&udev->commands, cmd, i) {
1672-
if (tcmu_check_and_free_pending_cmd(cmd) != 0)
1673-
all_expired = false;
1674-
}
1675-
idr_destroy(&udev->commands);
1676-
spin_unlock_irq(&udev->commands_lock);
1677-
WARN_ON(!all_expired);
1678-
1679-
tcmu_blocks_release(udev);
1680-
16811683
tcmu_netlink_event(udev, TCMU_CMD_REMOVED_DEVICE, 0, NULL);
16821684

16831685
uio_unregister_device(&udev->uio_info);

0 commit comments

Comments
 (0)