Skip to content

Commit 31f33b8

Browse files
Anil Gurumurthygregkh
authored andcommitted
scsi: qla2xxx: Fix bsg_done() causing double free
commit c2c6822 upstream. Kernel panic observed on system, [5353358.825191] BUG: unable to handle page fault for address: ff5f5e897b024000 [5353358.825194] #PF: supervisor write access in kernel mode [5353358.825195] #PF: error_code(0x0002) - not-present page [5353358.825196] PGD 100006067 P4D 0 [5353358.825198] Oops: 0002 [#1] PREEMPT SMP NOPTI [5353358.825200] CPU: 5 PID: 2132085 Comm: qlafwupdate.sub Kdump: loaded Tainted: G W L ------- --- 5.14.0-503.34.1.el9_5.x86_64 #1 [5353358.825203] Hardware name: HPE ProLiant DL360 Gen11/ProLiant DL360 Gen11, BIOS 2.44 01/17/2025 [5353358.825204] RIP: 0010:memcpy_erms+0x6/0x10 [5353358.825211] RSP: 0018:ff591da8f4f6b710 EFLAGS: 00010246 [5353358.825212] RAX: ff5f5e897b024000 RBX: 0000000000007090 RCX: 0000000000001000 [5353358.825213] RDX: 0000000000001000 RSI: ff591da8f4fed090 RDI: ff5f5e897b024000 [5353358.825214] RBP: 0000000000010000 R08: ff5f5e897b024000 R09: 0000000000000000 [5353358.825215] R10: ff46cf8c40517000 R11: 0000000000000001 R12: 0000000000008090 [5353358.825216] R13: ff591da8f4f6b720 R14: 0000000000001000 R15: 0000000000000000 [5353358.825218] FS: 00007f1e88d47740(0000) GS:ff46cf935f940000(0000) knlGS:0000000000000000 [5353358.825219] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [5353358.825220] CR2: ff5f5e897b024000 CR3: 0000000231532004 CR4: 0000000000771ef0 [5353358.825221] PKRU: 55555554 [5353358.825222] Call Trace: [5353358.825223] <TASK> [5353358.825224] ? show_trace_log_lvl+0x1c4/0x2df [5353358.825229] ? show_trace_log_lvl+0x1c4/0x2df [5353358.825232] ? sg_copy_buffer+0xc8/0x110 [5353358.825236] ? __die_body.cold+0x8/0xd [5353358.825238] ? page_fault_oops+0x134/0x170 [5353358.825242] ? kernelmode_fixup_or_oops+0x84/0x110 [5353358.825244] ? exc_page_fault+0xa8/0x150 [5353358.825247] ? asm_exc_page_fault+0x22/0x30 [5353358.825252] ? memcpy_erms+0x6/0x10 [5353358.825253] sg_copy_buffer+0xc8/0x110 [5353358.825259] qla2x00_process_vendor_specific+0x652/0x1320 [qla2xxx] [5353358.825317] qla24xx_bsg_request+0x1b2/0x2d0 [qla2xxx] Most routines in qla_bsg.c call bsg_done() only for success cases. However a few invoke it for failure case as well leading to a double free. Validate before calling bsg_done(). Cc: stable@vger.kernel.org Signed-off-by: Anil Gurumurthy <agurumurthy@marvell.com> Signed-off-by: Nilesh Javali <njavali@marvell.com> Reviewed-by: Himanshu Madhani <hmadhani2024@gmail.com> Link: https://patch.msgid.link/20251210101604.431868-12-njavali@marvell.com Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 2784b1b commit 31f33b8

1 file changed

Lines changed: 17 additions & 11 deletions

File tree

drivers/scsi/qla2xxx/qla_bsg.c

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1546,8 +1546,9 @@ qla2x00_update_optrom(struct bsg_job *bsg_job)
15461546
ha->optrom_buffer = NULL;
15471547
ha->optrom_state = QLA_SWAITING;
15481548
mutex_unlock(&ha->optrom_mutex);
1549-
bsg_job_done(bsg_job, bsg_reply->result,
1550-
bsg_reply->reply_payload_rcv_len);
1549+
if (!rval)
1550+
bsg_job_done(bsg_job, bsg_reply->result,
1551+
bsg_reply->reply_payload_rcv_len);
15511552
return rval;
15521553
}
15531554

@@ -2612,8 +2613,9 @@ qla2x00_manage_host_stats(struct bsg_job *bsg_job)
26122613
sizeof(struct ql_vnd_mng_host_stats_resp));
26132614

26142615
bsg_reply->result = DID_OK;
2615-
bsg_job_done(bsg_job, bsg_reply->result,
2616-
bsg_reply->reply_payload_rcv_len);
2616+
if (!ret)
2617+
bsg_job_done(bsg_job, bsg_reply->result,
2618+
bsg_reply->reply_payload_rcv_len);
26172619

26182620
return ret;
26192621
}
@@ -2702,8 +2704,9 @@ qla2x00_get_host_stats(struct bsg_job *bsg_job)
27022704
bsg_job->reply_payload.sg_cnt,
27032705
data, response_len);
27042706
bsg_reply->result = DID_OK;
2705-
bsg_job_done(bsg_job, bsg_reply->result,
2706-
bsg_reply->reply_payload_rcv_len);
2707+
if (!ret)
2708+
bsg_job_done(bsg_job, bsg_reply->result,
2709+
bsg_reply->reply_payload_rcv_len);
27072710

27082711
kfree(data);
27092712
host_stat_out:
@@ -2802,8 +2805,9 @@ qla2x00_get_tgt_stats(struct bsg_job *bsg_job)
28022805
bsg_job->reply_payload.sg_cnt, data,
28032806
response_len);
28042807
bsg_reply->result = DID_OK;
2805-
bsg_job_done(bsg_job, bsg_reply->result,
2806-
bsg_reply->reply_payload_rcv_len);
2808+
if (!ret)
2809+
bsg_job_done(bsg_job, bsg_reply->result,
2810+
bsg_reply->reply_payload_rcv_len);
28072811

28082812
tgt_stat_out:
28092813
kfree(data);
@@ -2864,8 +2868,9 @@ qla2x00_manage_host_port(struct bsg_job *bsg_job)
28642868
bsg_job->reply_payload.sg_cnt, &rsp_data,
28652869
sizeof(struct ql_vnd_mng_host_port_resp));
28662870
bsg_reply->result = DID_OK;
2867-
bsg_job_done(bsg_job, bsg_reply->result,
2868-
bsg_reply->reply_payload_rcv_len);
2871+
if (!ret)
2872+
bsg_job_done(bsg_job, bsg_reply->result,
2873+
bsg_reply->reply_payload_rcv_len);
28692874

28702875
return ret;
28712876
}
@@ -3240,7 +3245,8 @@ int qla2x00_mailbox_passthru(struct bsg_job *bsg_job)
32403245

32413246
bsg_job->reply_len = sizeof(*bsg_job->reply);
32423247
bsg_reply->result = DID_OK << 16;
3243-
bsg_job_done(bsg_job, bsg_reply->result, bsg_reply->reply_payload_rcv_len);
3248+
if (!ret)
3249+
bsg_job_done(bsg_job, bsg_reply->result, bsg_reply->reply_payload_rcv_len);
32443250

32453251
kfree(req_data);
32463252

0 commit comments

Comments
 (0)