linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] scsi: sg: only check for dxfer_len greater than 256M
@ 2017-07-27  7:11 Johannes Thumshirn
  2017-07-27  8:43 ` Hannes Reinecke
  2017-07-27 12:51 ` Martin K. Petersen
  0 siblings, 2 replies; 4+ messages in thread
From: Johannes Thumshirn @ 2017-07-27  7:11 UTC (permalink / raw)
  To: Martin K . Petersen
  Cc: Jason L Tibbitts III, Doug Gilbert, Linux Kernel Mailinglist,
	Linux SCSI Mailinglist, Hannes Reinecke, Johannes Thumshirn,
	stable

Don't make any assumptions on the sg_io_hdr_t::dxfer_direction or the
sg_io_hdr_t::dxferp in order to determine if it is a valid request. The
only way we can check for bad requests is by checking if the length exceeds
256M.

Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
Fixes: 28676d869bbb (scsi: sg: check for valid direction before starting the
request)
Reported-by: Jason L Tibbitts III <tibbs@math.uh.edu>
Tested-by: Jason L Tibbitts III <tibbs@math.uh.edu>
Suggested-by: Doug Gilbert <dgilbert@interlog.com>
Cc: Doug Gilbert <dgilbert@interlog.com>
Cc: <stable@vger.kernel.org>
---
 drivers/scsi/sg.c | 31 +------------------------------
 1 file changed, 1 insertion(+), 30 deletions(-)

diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c
index 4fe606b000b4..d7ff71e0c85c 100644
--- a/drivers/scsi/sg.c
+++ b/drivers/scsi/sg.c
@@ -751,35 +751,6 @@ sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
 	return count;
 }
 
-static bool sg_is_valid_dxfer(sg_io_hdr_t *hp)
-{
-	switch (hp->dxfer_direction) {
-	case SG_DXFER_NONE:
-		if (hp->dxferp || hp->dxfer_len > 0)
-			return false;
-		return true;
-	case SG_DXFER_FROM_DEV:
-		/*
-		 * for SG_DXFER_FROM_DEV we always set dxfer_len to > 0. dxferp
-		 * can either be NULL or != NULL so there's no point in checking
-		 * it either. So just return true.
-		 */
-		return true;
-	case SG_DXFER_TO_DEV:
-	case SG_DXFER_TO_FROM_DEV:
-		if (!hp->dxferp || hp->dxfer_len == 0)
-			return false;
-		return true;
-	case SG_DXFER_UNKNOWN:
-		if ((!hp->dxferp && hp->dxfer_len) ||
-		    (hp->dxferp && hp->dxfer_len == 0))
-			return false;
-		return true;
-	default:
-		return false;
-	}
-}
-
 static int
 sg_common_write(Sg_fd * sfp, Sg_request * srp,
 		unsigned char *cmnd, int timeout, int blocking)
@@ -800,7 +771,7 @@ sg_common_write(Sg_fd * sfp, Sg_request * srp,
 			"sg_common_write:  scsi opcode=0x%02x, cmd_size=%d\n",
 			(int) cmnd[0], (int) hp->cmd_len));
 
-	if (!sg_is_valid_dxfer(hp))
+	if (hp->dxfer_len >= SZ_256M)
 		return -EINVAL;
 
 	k = sg_start_req(srp, cmnd);
-- 
2.12.3

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

* Re: [PATCH] scsi: sg: only check for dxfer_len greater than 256M
  2017-07-27  7:11 [PATCH] scsi: sg: only check for dxfer_len greater than 256M Johannes Thumshirn
@ 2017-07-27  8:43 ` Hannes Reinecke
  2017-07-27 12:51 ` Martin K. Petersen
  1 sibling, 0 replies; 4+ messages in thread
From: Hannes Reinecke @ 2017-07-27  8:43 UTC (permalink / raw)
  To: Johannes Thumshirn, Martin K . Petersen
  Cc: Jason L Tibbitts III, Doug Gilbert, Linux Kernel Mailinglist,
	Linux SCSI Mailinglist, stable

On 07/27/2017 09:11 AM, Johannes Thumshirn wrote:
> Don't make any assumptions on the sg_io_hdr_t::dxfer_direction or the
> sg_io_hdr_t::dxferp in order to determine if it is a valid request. The
> only way we can check for bad requests is by checking if the length exceeds
> 256M.
> 
> Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
> Fixes: 28676d869bbb (scsi: sg: check for valid direction before starting the
> request)
> Reported-by: Jason L Tibbitts III <tibbs@math.uh.edu>
> Tested-by: Jason L Tibbitts III <tibbs@math.uh.edu>
> Suggested-by: Doug Gilbert <dgilbert@interlog.com>
> Cc: Doug Gilbert <dgilbert@interlog.com>
> Cc: <stable@vger.kernel.org>
> ---
>  drivers/scsi/sg.c | 31 +------------------------------
>  1 file changed, 1 insertion(+), 30 deletions(-)
> 
Reviewed-by: Hannes Reinecke <hare@suse.com>

Cheers,

Hannes
-- 
Dr. Hannes Reinecke		   Teamlead Storage & Networking
hare@suse.de			               +49 911 74053 688
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: F. Imendörffer, J. Smithard, J. Guild, D. Upmanyu, G. Norton
HRB 21284 (AG Nürnberg)

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

* Re: [PATCH] scsi: sg: only check for dxfer_len greater than 256M
  2017-07-27  7:11 [PATCH] scsi: sg: only check for dxfer_len greater than 256M Johannes Thumshirn
  2017-07-27  8:43 ` Hannes Reinecke
@ 2017-07-27 12:51 ` Martin K. Petersen
  2017-07-27 13:05   ` Jason L Tibbitts III
  1 sibling, 1 reply; 4+ messages in thread
From: Martin K. Petersen @ 2017-07-27 12:51 UTC (permalink / raw)
  To: Johannes Thumshirn
  Cc: Martin K . Petersen, Jason L Tibbitts III, Doug Gilbert,
	Linux Kernel Mailinglist, Linux SCSI Mailinglist,
	Hannes Reinecke, stable


Johannes,

> Don't make any assumptions on the sg_io_hdr_t::dxfer_direction or the
> sg_io_hdr_t::dxferp in order to determine if it is a valid
> request. The only way we can check for bad requests is by checking if
> the length exceeds 256M.

Applied to 4.13/scsi-fixes. Thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

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

* Re: [PATCH] scsi: sg: only check for dxfer_len greater than 256M
  2017-07-27 12:51 ` Martin K. Petersen
@ 2017-07-27 13:05   ` Jason L Tibbitts III
  0 siblings, 0 replies; 4+ messages in thread
From: Jason L Tibbitts III @ 2017-07-27 13:05 UTC (permalink / raw)
  To: Martin K. Petersen
  Cc: Johannes Thumshirn, Doug Gilbert, Linux Kernel Mailinglist,
	Linux SCSI Mailinglist, Hannes Reinecke, stable

>>>>> "MKP" == Martin K Petersen <martin.petersen@oracle.com> writes:

MKP> Applied to 4.13/scsi-fixes. Thanks!

My thanks as well to everyone who helped in getting this fixed.

 - J<

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

end of thread, other threads:[~2017-07-27 13:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-27  7:11 [PATCH] scsi: sg: only check for dxfer_len greater than 256M Johannes Thumshirn
2017-07-27  8:43 ` Hannes Reinecke
2017-07-27 12:51 ` Martin K. Petersen
2017-07-27 13:05   ` Jason L Tibbitts III

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).