scsi: lpfc: Fix list_entry null check warning in lpfc_cmpl_els_plogi()
authorJustin Tee <justin.tee@broadcom.com>
Tue, 31 Oct 2023 19:12:18 +0000 (12:12 -0700)
committerMartin K. Petersen <martin.petersen@oracle.com>
Wed, 15 Nov 2023 14:52:57 +0000 (09:52 -0500)
Smatch called out a warning for null checking a ptr that is assigned by
list_entry(). list_entry() does not return null and, if the list is empty,
can return an invalid ptr. Thus, the !psrp check does not execute properly.

 drivers/scsi/lpfc/lpfc_els.c:2133 lpfc_cmpl_els_plogi()
 warn: list_entry() does not return NULL 'prsp'

Replace list_entry() with list_get_first(), which does a list_empty() check
before returning the first entry.

Fixes: a3c3c0a806f1 ("scsi: lpfc: Validate ELS LS_ACC completion payload")
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/linux-scsi/01b7568f-4ab4-4d56-bfa6-9ecc5fc261fe@moroto.mountain/
Signed-off-by: Justin Tee <justin.tee@broadcom.com>
Link: https://lore.kernel.org/r/20231031191224.150862-4-justintee8345@gmail.com
Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/lpfc/lpfc_els.c

index f9627eddab08549f5f2510108415bcf22df1ab53..0829fe6ddff880c094297ddcf638d80fbf535409 100644 (file)
@@ -2128,8 +2128,8 @@ lpfc_cmpl_els_plogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
                                                NLP_EVT_DEVICE_RM);
        } else {
                /* Good status, call state machine */
-               prsp = list_entry(cmdiocb->cmd_dmabuf->list.next,
-                                 struct lpfc_dmabuf, list);
+               prsp = list_get_first(&cmdiocb->cmd_dmabuf->list,
+                                     struct lpfc_dmabuf, list);
                if (!prsp)
                        goto out;
                if (!lpfc_is_els_acc_rsp(prsp))