linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sg: recheck MMAP_IO request length with lock held
@ 2017-08-16  4:48 Todd Poynor
  2017-08-22 21:37 ` Douglas Gilbert
  2017-08-23  1:46 ` Martin K. Petersen
  0 siblings, 2 replies; 3+ messages in thread
From: Todd Poynor @ 2017-08-16  4:48 UTC (permalink / raw)
  To: Doug Gilbert, James E.J. Bottomley, Martin K. Petersen
  Cc: linux-scsi, linux-kernel, Hannes Reinecke, Todd Poynor

Commit 1bc0eb044615 ("scsi: sg: protect accesses to 'reserved' page
array") adds needed concurrency protection for the "reserve" buffer.
Some checks that are initially made outside the lock are replicated once
the lock is taken to ensure the checks and resulting decisions are made
using consistent state.

The check that a request with flag SG_FLAG_MMAP_IO set fits in the
reserve buffer also needs to be performed again under the lock to
ensure the reserve buffer length compared against matches the value in
effect when the request is linked to the reserve buffer.  An -ENOMEM
should be returned in this case, instead of switching over to an
indirect buffer as for non-MMAP_IO requests.

Signed-off-by: Todd Poynor <toddpoynor@google.com>
---
 drivers/scsi/sg.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c
index d7ff71e0c85c..3a44b4bc872b 100644
--- a/drivers/scsi/sg.c
+++ b/drivers/scsi/sg.c
@@ -1735,9 +1735,12 @@ sg_start_req(Sg_request *srp, unsigned char *cmd)
 		    !sfp->res_in_use) {
 			sfp->res_in_use = 1;
 			sg_link_reserve(sfp, srp, dxfer_len);
-		} else if ((hp->flags & SG_FLAG_MMAP_IO) && sfp->res_in_use) {
+		} else if (hp->flags & SG_FLAG_MMAP_IO) {
+			res = -EBUSY; /* sfp->res_in_use == 1 */
+			if (dxfer_len > rsv_schp->bufflen)
+				res = -ENOMEM;
 			mutex_unlock(&sfp->f_mutex);
-			return -EBUSY;
+			return res;
 		} else {
 			res = sg_build_indirect(req_schp, sfp, dxfer_len);
 			if (res) {
-- 
2.14.1.480.gb18f417b89-goog

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

* Re: [PATCH] sg: recheck MMAP_IO request length with lock held
  2017-08-16  4:48 [PATCH] sg: recheck MMAP_IO request length with lock held Todd Poynor
@ 2017-08-22 21:37 ` Douglas Gilbert
  2017-08-23  1:46 ` Martin K. Petersen
  1 sibling, 0 replies; 3+ messages in thread
From: Douglas Gilbert @ 2017-08-22 21:37 UTC (permalink / raw)
  To: Todd Poynor, James E.J. Bottomley, Martin K. Petersen
  Cc: linux-scsi, linux-kernel, Hannes Reinecke

On 2017-08-16 12:48 AM, Todd Poynor wrote:
> Commit 1bc0eb044615 ("scsi: sg: protect accesses to 'reserved' page
> array") adds needed concurrency protection for the "reserve" buffer.
> Some checks that are initially made outside the lock are replicated once
> the lock is taken to ensure the checks and resulting decisions are made
> using consistent state.
> 
> The check that a request with flag SG_FLAG_MMAP_IO set fits in the
> reserve buffer also needs to be performed again under the lock to
> ensure the reserve buffer length compared against matches the value in
> effect when the request is linked to the reserve buffer.  An -ENOMEM
> should be returned in this case, instead of switching over to an
> indirect buffer as for non-MMAP_IO requests.
> 
> Signed-off-by: Todd Poynor <toddpoynor@google.com>
Acked-by: Douglas Gilbert <dgilbert@interlog.com>

Thanks.

> ---
>   drivers/scsi/sg.c | 7 +++++--
>   1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c
> index d7ff71e0c85c..3a44b4bc872b 100644
> --- a/drivers/scsi/sg.c
> +++ b/drivers/scsi/sg.c
> @@ -1735,9 +1735,12 @@ sg_start_req(Sg_request *srp, unsigned char *cmd)
>   		    !sfp->res_in_use) {
>   			sfp->res_in_use = 1;
>   			sg_link_reserve(sfp, srp, dxfer_len);
> -		} else if ((hp->flags & SG_FLAG_MMAP_IO) && sfp->res_in_use) {
> +		} else if (hp->flags & SG_FLAG_MMAP_IO) {
> +			res = -EBUSY; /* sfp->res_in_use == 1 */
> +			if (dxfer_len > rsv_schp->bufflen)
> +				res = -ENOMEM;
>   			mutex_unlock(&sfp->f_mutex);
> -			return -EBUSY;
> +			return res;
>   		} else {
>   			res = sg_build_indirect(req_schp, sfp, dxfer_len);
>   			if (res) {
> 

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

* Re: [PATCH] sg: recheck MMAP_IO request length with lock held
  2017-08-16  4:48 [PATCH] sg: recheck MMAP_IO request length with lock held Todd Poynor
  2017-08-22 21:37 ` Douglas Gilbert
@ 2017-08-23  1:46 ` Martin K. Petersen
  1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2017-08-23  1:46 UTC (permalink / raw)
  To: Todd Poynor
  Cc: Doug Gilbert, James E.J. Bottomley, Martin K. Petersen,
	linux-scsi, linux-kernel, Hannes Reinecke


Todd,

> Commit 1bc0eb044615 ("scsi: sg: protect accesses to 'reserved' page
> array") adds needed concurrency protection for the "reserve" buffer.
> Some checks that are initially made outside the lock are replicated once
> the lock is taken to ensure the checks and resulting decisions are made
> using consistent state.
>
> The check that a request with flag SG_FLAG_MMAP_IO set fits in the
> reserve buffer also needs to be performed again under the lock to
> ensure the reserve buffer length compared against matches the value in
> effect when the request is linked to the reserve buffer.  An -ENOMEM
> should be returned in this case, instead of switching over to an
> indirect buffer as for non-MMAP_IO requests.

Applied to 4.14/scsi-queue, thank you!

-- 
Martin K. Petersen	Oracle Linux Engineering

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

end of thread, other threads:[~2017-08-23  1:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-16  4:48 [PATCH] sg: recheck MMAP_IO request length with lock held Todd Poynor
2017-08-22 21:37 ` Douglas Gilbert
2017-08-23  1:46 ` Martin K. Petersen

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).