Skip to content

Commit 07c903d

Browse files
Quinn Tranmartinkpetersen
authored andcommitted
scsi: qla2xxx: Fix use after free on unload
System crash is observed with stack trace warning of use after free. There are 2 signals to tell dpc_thread to terminate (UNLOADING flag and kthread_stop). On setting the UNLOADING flag when dpc_thread happens to run at the time and sees the flag, this causes dpc_thread to exit and clean up itself. When kthread_stop is called for final cleanup, this causes use after free. Remove UNLOADING signal to terminate dpc_thread. Use the kthread_stop as the main signal to exit dpc_thread. [596663.812935] kernel BUG at mm/slub.c:294! [596663.812950] invalid opcode: 0000 [#1] SMP PTI [596663.812957] CPU: 13 PID: 1475935 Comm: rmmod Kdump: loaded Tainted: G IOE --------- - - 4.18.0-240.el8.x86_64 #1 [596663.812960] Hardware name: HP ProLiant DL380p Gen8, BIOS P70 08/20/2012 [596663.812974] RIP: 0010:__slab_free+0x17d/0x360 ... [596663.813008] Call Trace: [596663.813022] ? __dentry_kill+0x121/0x170 [596663.813030] ? _cond_resched+0x15/0x30 [596663.813034] ? _cond_resched+0x15/0x30 [596663.813039] ? wait_for_completion+0x35/0x190 [596663.813048] ? try_to_wake_up+0x63/0x540 [596663.813055] free_task+0x5a/0x60 [596663.813061] kthread_stop+0xf3/0x100 [596663.813103] qla2x00_remove_one+0x284/0x440 [qla2xxx] Cc: stable@vger.kernel.org Signed-off-by: Quinn Tran <qutran@marvell.com> Signed-off-by: Nilesh Javali <njavali@marvell.com> Link: https://lore.kernel.org/r/20241115130313.46826-3-njavali@marvell.com Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
1 parent c423263 commit 07c903d

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

drivers/scsi/qla2xxx/qla_os.c

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6902,12 +6902,15 @@ qla2x00_do_dpc(void *data)
69026902
set_user_nice(current, MIN_NICE);
69036903

69046904
set_current_state(TASK_INTERRUPTIBLE);
6905-
while (!kthread_should_stop()) {
6905+
while (1) {
69066906
ql_dbg(ql_dbg_dpc, base_vha, 0x4000,
69076907
"DPC handler sleeping.\n");
69086908

69096909
schedule();
69106910

6911+
if (kthread_should_stop())
6912+
break;
6913+
69116914
if (test_and_clear_bit(DO_EEH_RECOVERY, &base_vha->dpc_flags))
69126915
qla_pci_set_eeh_busy(base_vha);
69136916

@@ -6920,15 +6923,16 @@ qla2x00_do_dpc(void *data)
69206923
goto end_loop;
69216924
}
69226925

6926+
if (test_bit(UNLOADING, &base_vha->dpc_flags))
6927+
/* don't do any work. Wait to be terminated by kthread_stop */
6928+
goto end_loop;
6929+
69236930
ha->dpc_active = 1;
69246931

69256932
ql_dbg(ql_dbg_dpc + ql_dbg_verbose, base_vha, 0x4001,
69266933
"DPC handler waking up, dpc_flags=0x%lx.\n",
69276934
base_vha->dpc_flags);
69286935

6929-
if (test_bit(UNLOADING, &base_vha->dpc_flags))
6930-
break;
6931-
69326936
if (IS_P3P_TYPE(ha)) {
69336937
if (IS_QLA8044(ha)) {
69346938
if (test_and_clear_bit(ISP_UNRECOVERABLE,
@@ -7241,9 +7245,6 @@ qla2x00_do_dpc(void *data)
72417245
*/
72427246
ha->dpc_active = 0;
72437247

7244-
/* Cleanup any residual CTX SRBs. */
7245-
qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
7246-
72477248
return 0;
72487249
}
72497250

0 commit comments

Comments
 (0)