From: Himanshu Madhani <hmadhani2024@gmail.com>
To: Jiasheng Jiang <jiashengjiangcool@gmail.com>,
Nilesh Javali <njavali@marvell.com>,
GR-QLogic-Storage-Upstream@marvell.com,
"James E . J . Bottomley" <James.Bottomley@HansenPartnership.com>,
"Martin K . Petersen" <martin.petersen@oracle.com>
Cc: Himanshu Madhani <himanshu.madhani@oracle.com>,
Manish Rangankar <mrangankar@marvell.com>,
linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] scsi: qla2xxx: sanitize payload size to prevent member overflow
Date: Mon, 12 Jan 2026 14:02:09 -0800 [thread overview]
Message-ID: <f0d97bec-3eb9-4a80-b179-fb29353f471c@gmail.com> (raw)
In-Reply-To: <20260106205344.18031-1-jiashengjiangcool@gmail.com>
On 1/6/26 12:53 PM, Jiasheng Jiang wrote:
> In qla27xx_copy_fpin_pkt() and qla27xx_copy_multiple_pkt(), the
> frame_size reported by firmware is used to calculate the copy length
> into item->iocb. However, the iocb member is defined as a fixed-size
> 64-byte array within struct purex_item.
>
> If the reported frame_size exceeds 64 bytes, subsequent memcpy calls
> will overflow the iocb member boundary. While extra memory might be
> allocated, this cross-member write is unsafe and triggers warnings
> under CONFIG_FORTIFY_SOURCE.
>
> Fix this by capping total_bytes to the size of the iocb member (64 bytes)
> before allocation and copying. This ensures all copies remain within
> the bounds of the destination structure member.
>
> Fixes: 875386b98857 ("scsi: qla2xxx: Add Unsolicited LS Request and Response Support for NVMe")
> Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
> ---
> drivers/scsi/qla2xxx/qla_isr.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c
> index a3971afc2dd1..a04a5aa0d005 100644
> --- a/drivers/scsi/qla2xxx/qla_isr.c
> +++ b/drivers/scsi/qla2xxx/qla_isr.c
> @@ -878,6 +878,9 @@ qla27xx_copy_multiple_pkt(struct scsi_qla_host *vha, void **pkt,
> payload_size = sizeof(purex->els_frame_payload);
> }
>
> + if (total_bytes > sizeof(item->iocb.iocb))
> + total_bytes = sizeof(item->iocb.iocb);
> +
> pending_bytes = total_bytes;
> no_bytes = (pending_bytes > payload_size) ? payload_size :
> pending_bytes;
> @@ -1163,6 +1166,10 @@ qla27xx_copy_fpin_pkt(struct scsi_qla_host *vha, void **pkt,
>
> total_bytes = (le16_to_cpu(purex->frame_size) & 0x0FFF)
> - PURX_ELS_HEADER_SIZE;
> +
> + if (total_bytes > sizeof(item->iocb.iocb))
> + total_bytes = sizeof(item->iocb.iocb);
> +
> pending_bytes = total_bytes;
> entry_count = entry_count_remaining = purex->entry_count;
> no_bytes = (pending_bytes > sizeof(purex->els_frame_payload)) ?
This looks fine.
Reviewed-by: Himanshu Madhani <hmadhani2024@gmail.com>
---
Himanshu Madhani
prev parent reply other threads:[~2026-01-12 22:02 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-06 20:53 Jiasheng Jiang
2026-01-12 22:02 ` Himanshu Madhani [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f0d97bec-3eb9-4a80-b179-fb29353f471c@gmail.com \
--to=hmadhani2024@gmail.com \
--cc=GR-QLogic-Storage-Upstream@marvell.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=himanshu.madhani@oracle.com \
--cc=jiashengjiangcool@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=mrangankar@marvell.com \
--cc=njavali@marvell.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®