Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1587680 > unrolled thread

[PATCH] scsi: lpfc: sanity check hrq is null before dereferencing it

Started byColin King <colin.king@canonical.com>
First post2017-02-24 15:00 +0100
Last post2017-02-24 15:00 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] scsi: lpfc: sanity check hrq is null before dereferencing it Colin King <colin.king@canonical.com> - 2017-02-24 15:00 +0100

#1587680 — [PATCH] scsi: lpfc: sanity check hrq is null before dereferencing it

FromColin King <colin.king@canonical.com>
Date2017-02-24 15:00 +0100
Subject[PATCH] scsi: lpfc: sanity check hrq is null before dereferencing it
Message-ID<teozE-TN-7@gated-at.bofh.it>
From: Colin Ian King <colin.king@canonical.com>

The sanity check for hrq should be moved to before the deference
of hrq to ensure we don't perform a null pointer deference.

Detected by CoverityScan, CID#1411650 ("Dereference before null check")

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/scsi/lpfc/lpfc_sli.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c
index e43e5e2..1fba5dc 100644
--- a/drivers/scsi/lpfc/lpfc_sli.c
+++ b/drivers/scsi/lpfc/lpfc_sli.c
@@ -15185,17 +15185,17 @@ lpfc_mrq_create(struct lpfc_hba *phba, struct lpfc_queue **hrqp,
 		drq = drqp[idx];
 		cq  = cqp[idx];
 
-		if (hrq->entry_count != drq->entry_count) {
-			status = -EINVAL;
-			goto out;
-		}
-
 		/* sanity check on queue memory */
 		if (!hrq || !drq || !cq) {
 			status = -ENODEV;
 			goto out;
 		}
 
+		if (hrq->entry_count != drq->entry_count) {
+			status = -EINVAL;
+			goto out;
+		}
+
 		if (idx == 0) {
 			bf_set(lpfc_mbx_rq_create_num_pages,
 			       &rq_create->u.request,
-- 
2.10.2

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web