public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH V3] scsi: lpfc: Fix a possible null pointer dereference
@ 2024-06-20 12:01 Huai-Yuan Liu
  2024-06-20 16:43 ` Justin Tee
  0 siblings, 1 reply; 2+ messages in thread
From: Huai-Yuan Liu @ 2024-06-20 12:01 UTC (permalink / raw)
  To: james.smart, dick.kennedy, James.Bottomley, martin.petersen
  Cc: linux-scsi, linux-kernel, baijiaju1990, Huai-Yuan Liu

In function lpfc_xcvr_data_show, the memory allocation with kmalloc might
fail, thereby making rdp_context a null pointer. In the following context 
and functions that use this pointer, there are dereferencing operations,
leading to null pointer dereference.

To fix this issue, a null pointer check should be added. If it is null, 
just return len.

Fixes: 479b0917e447 ("scsi: lpfc: Create a sysfs entry called lpfc_xcvr_data for transceiver info")
Signed-off-by: Huai-Yuan Liu <qq810974084@gmail.com>
---
V2:
* In patch V2, we have removed the unnecessary 'out of memory' message.
  Thank Bart Van Assche for helpful advice.
V3:
* In patch V3, we return len directly instead of goto out_free_rdp.
  Thanks to Justin Tee for his suuestion.
---
 drivers/scsi/lpfc/lpfc_attr.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/scsi/lpfc/lpfc_attr.c b/drivers/scsi/lpfc/lpfc_attr.c
index a46c73e8d7c4..7d1e38ea9e52 100644
--- a/drivers/scsi/lpfc/lpfc_attr.c
+++ b/drivers/scsi/lpfc/lpfc_attr.c
@@ -1907,6 +1907,8 @@ lpfc_xcvr_data_show(struct device *dev, struct device_attribute *attr,
 
 	/* Get transceiver information */
 	rdp_context = kmalloc(sizeof(*rdp_context), GFP_KERNEL);
+	if (!rdp_context)
+		return len;
 
 	rc = lpfc_get_sfp_info_wait(phba, rdp_context);
 	if (rc) {
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH V3] scsi: lpfc: Fix a possible null pointer dereference
  2024-06-20 12:01 [PATCH V3] scsi: lpfc: Fix a possible null pointer dereference Huai-Yuan Liu
@ 2024-06-20 16:43 ` Justin Tee
  0 siblings, 0 replies; 2+ messages in thread
From: Justin Tee @ 2024-06-20 16:43 UTC (permalink / raw)
  To: Huai-Yuan Liu
  Cc: Justin Tee, james.smart, dick.kennedy, James.Bottomley,
	martin.petersen, linux-scsi, linux-kernel, baijiaju1990

Hi Huai-Yuan,

Sorry for noticing this later, but a return len while len is 0 would
result in a silent $(cat /sys/class/scsi_host/host*/lpfc_xcvr_data).

Perhaps, it's better to log something to at least notify the user why
SFP information was not able to be collected.

How about something like this?

        /* Get transceiver information */
        rdp_context = kmalloc(sizeof(*rdp_context), GFP_KERNEL);
+       if (!rdp_context) {
+               len = scnprintf(buf, PAGE_SIZE - len,
+                                       "SFP info NA: alloc failure\n");
+               return len;
+       }

        rc = lpfc_get_sfp_info_wait(phba, rdp_context);
        if (rc) {


Thanks,
Justin Tee

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-06-20 16:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-20 12:01 [PATCH V3] scsi: lpfc: Fix a possible null pointer dereference Huai-Yuan Liu
2024-06-20 16:43 ` Justin Tee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox