lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 18 Feb 2010 15:11:07 +1100
From:	Stephen Rothwell <sfr@...b.auug.org.au>
To:	Andrew Vasquez <andrew.vasquez@...gic.com>, linux-driver@...gic.com
Cc:	linux-scsi@...r.kernel.org,
	James Bottomley <James.Bottomley@...e.de>,
	Sarang Radke <sarang.radke@...gic.com>,
	Giridhar Malavali <giridhar.malavali@...gic.com>,
	LKML <linux-kernel@...r.kernel.org>
Subject: [PATCH] [SCSI] qla2xxx: improve error returns in
 qla2x00_process_vendor_specific

These changes mean that the request sg will be unmapped if the response
sg map fails, both the dma_allocs are freed and the dma_allocs only get
freed if necessary.  There are still two places that return from this
routine without doing either the unmaps or the dma_frees.

This gets rid of these warnings:

drivers/scsi/qla2xxx/qla_attr.c: In function 'qla2x00_process_vendor_specific':
drivers/scsi/qla2xxx/qla_attr.c:2150: warning: 'req_data' may be used uninitialized in this function
drivers/scsi/qla2xxx/qla_attr.c:2152: warning: 'req_data_len' may be used uninitialized in this function

Signed-off-by: Stephen Rothwell <sfr@...b.auug.org.au>
---
 drivers/scsi/qla2xxx/qla_attr.c |   20 ++++++++++++--------
 1 files changed, 12 insertions(+), 8 deletions(-)

I have only build tested these changes as I do not have the hardware
involved.  Also, I am not sure if some of the infrastructure does the
dma_free_coherent() for the rsp_data.

diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c
index 5a19aea..d8c5bf3 100644
--- a/drivers/scsi/qla2xxx/qla_attr.c
+++ b/drivers/scsi/qla2xxx/qla_attr.c
@@ -2173,7 +2173,7 @@ qla2x00_process_vendor_specific(struct fc_bsg_job *bsg_job)
 	    bsg_job->reply_payload.sg_cnt, DMA_FROM_DEVICE);
         if (!elreq.rsp_sg_cnt) {
 		rval = -ENOMEM;
-                goto done;
+                goto done_unmap_sg_req;
 	}
 
 	if ((elreq.req_sg_cnt !=  bsg_job->request_payload.sg_cnt) ||
@@ -2224,7 +2224,7 @@ qla2x00_process_vendor_specific(struct fc_bsg_job *bsg_job)
 				DEBUG2(qla_printk(KERN_INFO, ha, "scsi(%ld)"
 				"loopback option:0x%x not supported\n", vha->host_no, elreq.options));
 				rval = -EINVAL;
-				goto done_unmap_sg;
+				goto done_dma_free;
 			}
 
 			DEBUG2(qla_printk(KERN_INFO, ha,
@@ -2304,17 +2304,21 @@ qla2x00_process_vendor_specific(struct fc_bsg_job *bsg_job)
 	}
 	bsg_job->job_done(bsg_job);
 
+done_dma_free:
+	dma_free_coherent(&ha->pdev->dev, rsp_data_len,
+		rsp_data, rsp_data_dma);
+	dma_free_coherent(&ha->pdev->dev, req_data_len,
+		req_data, req_data_dma);
+
 done_unmap_sg:
+	dma_unmap_sg(&ha->pdev->dev,
+	    bsg_job->reply_payload.sg_list,
+	    bsg_job->reply_payload.sg_cnt, DMA_FROM_DEVICE);
 
-	if(req_data)
-		dma_free_coherent(&ha->pdev->dev, req_data_len,
-			req_data, req_data_dma);
+done_unmap_sg_req:
 	dma_unmap_sg(&ha->pdev->dev,
 	    bsg_job->request_payload.sg_list,
 	    bsg_job->request_payload.sg_cnt, DMA_TO_DEVICE);
-	dma_unmap_sg(&ha->pdev->dev,
-	    bsg_job->reply_payload.sg_list,
-	    bsg_job->reply_payload.sg_cnt, DMA_FROM_DEVICE);
 
 done:
         return rval;
-- 
1.6.6.2

-- 
Cheers,
Stephen Rothwell                    sfr@...b.auug.org.au
http://www.canb.auug.org.au/~sfr/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ