public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: Luben Tuikov <ltuikov@yahoo.com>
To: James Bottomley <James.Bottomley@suse.de>,
	Alan Stern <stern@rowland.harvard.edu>
Cc: Richard Senior <richard@r-senior.demon.co.uk>,
	SCSI development list <linux-scsi@vger.kernel.org>
Subject: Re: [PATCH ver. 2] sd: Fix regression in sd_read_cache_type
Date: Wed, 23 Mar 2011 10:40:55 -0700 (PDT)	[thread overview]
Message-ID: <711020.90880.qm@web31810.mail.mud.yahoo.com> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1103231216030.2211-100000@iolanthe.rowland.org>

--- On Wed, 3/23/11, Alan Stern <stern@rowland.harvard.edu> wrote:

> From: Alan Stern <stern@rowland.harvard.edu>
> Subject: [PATCH ver. 2] sd: Fix regression in sd_read_cache_type
> To: "James Bottomley" <James.Bottomley@suse.de>
> Cc: ltuikov@yahoo.com, "Richard Senior" <richard@r-senior.demon.co.uk>, "SCSI development list" <linux-scsi@vger.kernel.org>
> Date: Wednesday, March 23, 2011, 9:18 AM
> This patch (as1454b) fixes a
> regression in the sd driver.  Commit
> 24d720b726c1a85f1962831ac30ad4d2ef8276b1 ([SCSI] Retrieve
> the Caching
> mode page) recently introduced the strategy of asking for
> all pages
> (page code 0x3F) instead of asking for the caching page
> (0x08) on
> devices that might not support it.  This ought to be
> safe, because sd
> already uses page code 0x3F when checking for write
> protection.
> 
> Unfortunately, the commit did not copy the checks used by
> sd_read_write_protect_flag().  Some devices don't
> support page code
> 0x3F, and others require a fixed transfer length of 192
> bytes.  This
> patch adds those checks into sd_read_cache_type().
> 
> Without this fix, some USB mass-storage devices crash when
> they
> receive a MODE SENSE command with page code 0x3F asking for
> only 4
> bytes of data.
> 
> Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
> Reported-and-tested-by: Richard Senior <richard@r-senior.demon.co.uk>
> CC: Luben Tuikov <ltuikov@yahoo.com>

Acked-by: Luben Tuikov <ltuikov@yahoo.com>

> CC: <stable@kernel.org>
> 
> ---
> 
>  drivers/scsi/sd.c |   16 ++++++++++++++--
>  1 file changed, 14 insertions(+), 2 deletions(-)
> 
> Index: usb-2.6/drivers/scsi/sd.c
> ===================================================================
> --- usb-2.6.orig/drivers/scsi/sd.c
> +++ usb-2.6/drivers/scsi/sd.c
> @@ -1904,17 +1904,23 @@ sd_read_cache_type(struct scsi_disk
> *sdk
>  
>      int dbd;
>      int modepage;
> +    int first_len;
>      struct scsi_mode_data data;
>      struct scsi_sense_hdr sshdr;
>      int old_wce = sdkp->WCE;
>      int old_rcd = sdkp->RCD;
>      int old_dpofua = sdkp->DPOFUA;
>  
> +    first_len = 4;
>      if (sdp->skip_ms_page_8) {
>          if (sdp->type ==
> TYPE_RBC)
>             
> goto defaults;
>          else {
> +           
> if (sdp->skip_ms_page_3f)
> +           
>     goto defaults;
>             
> modepage = 0x3F;
> +           
> if (sdp->use_192_bytes_for_3f)
> +           
>     first_len = 192;
>             
> dbd = 0;
>          }
>      } else if (sdp->type == TYPE_RBC) {
> @@ -1926,13 +1932,15 @@ sd_read_cache_type(struct scsi_disk
> *sdk
>      }
>  
>      /* cautiously ask */
> -    res = sd_do_mode_sense(sdp, dbd,
> modepage, buffer, 4, &data, &sshdr);
> +    res = sd_do_mode_sense(sdp, dbd,
> modepage, buffer, first_len,
> +           
> &data, &sshdr);
>  
>      if (!scsi_status_is_good(res))
>          goto bad_sense;
>  
>      if (!data.header_length) {
>          modepage = 6;
> +        first_len = 0;
>          sd_printk(KERN_ERR,
> sdkp, "Missing header in MODE_SENSE response\n");
>      }
>  
> @@ -1950,9 +1958,13 @@ sd_read_cache_type(struct scsi_disk
> *sdk
>             
>   "data from %d to %d bytes\n", len, SD_BUF_SIZE);
>          len = SD_BUF_SIZE;
>      }
> +    if (modepage == 0x3F &&
> sdp->use_192_bytes_for_3f)
> +        len = 192;
>  
>      /* Get the data */
> -    res = sd_do_mode_sense(sdp, dbd,
> modepage, buffer, len, &data, &sshdr);
> +    if (len > first_len)
> +        res =
> sd_do_mode_sense(sdp, dbd, modepage, buffer, len,
> +           
>     &data, &sshdr);
>  
>      if (scsi_status_is_good(res)) {
>          int offset =
> data.header_length + data.block_descriptor_length;
> 
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

      reply	other threads:[~2011-03-23 17:40 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-21 21:29 [PATCH] sd: Fix regression in sd_read_cache_type Alan Stern
2011-03-23 14:06 ` Luben Tuikov
2011-03-23 15:16   ` James Bottomley
2011-03-23 15:54     ` Luben Tuikov
2011-03-23 16:12     ` Alan Stern
2011-03-23 16:44       ` Luben Tuikov
2011-03-23 17:23         ` Alan Stern
2011-03-23 17:55           ` Luben Tuikov
2011-03-23 18:30             ` Alan Stern
2011-03-23 16:18     ` [PATCH ver. 2] " Alan Stern
2011-03-23 17:40       ` Luben Tuikov [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=711020.90880.qm@web31810.mail.mud.yahoo.com \
    --to=ltuikov@yahoo.com \
    --cc=James.Bottomley@suse.de \
    --cc=linux-scsi@vger.kernel.org \
    --cc=richard@r-senior.demon.co.uk \
    --cc=stern@rowland.harvard.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox