From: weiping zhang <zhangweiping@didichuxing.com>
To: martin.petersen@oracle.com, jejb@linux.vnet.ibm.com
Cc: linux-scsi@vger.kernel.org
Subject: Re: [PATCH] scsi: sd: add check for changing allow_restart
Date: Sat, 7 Oct 2017 16:47:39 +0800 [thread overview]
Message-ID: <20171007084739.GB6035@source.didichuxing.com> (raw)
In-Reply-To: <20170927165313.GA36250@localhost.didichuxing.com>
On Thu, Sep 28, 2017 at 12:53:18AM +0800, weiping zhang wrote:
> /sys/class/scsi_disk/0:2:0:0/allow_restart can be changed to 0 unexpectly by
> writing invalid string, like following:
>
> echo asdf > /sys/class/scsi_disk/0:2:0:0/allow_restart
>
> Signed-off-by: weiping zhang <zhangweiping@didichuxing.com>
> ---
> drivers/scsi/sd.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
> index 3ef2214..d18639f 100644
> --- a/drivers/scsi/sd.c
> +++ b/drivers/scsi/sd.c
> @@ -253,6 +253,7 @@ static ssize_t
> allow_restart_store(struct device *dev, struct device_attribute *attr,
> const char *buf, size_t count)
> {
> + int err, v;
> struct scsi_disk *sdkp = to_scsi_disk(dev);
> struct scsi_device *sdp = sdkp->device;
>
> @@ -262,7 +263,11 @@ allow_restart_store(struct device *dev, struct device_attribute *attr,
> if (sdp->type != TYPE_DISK && sdp->type != TYPE_ZBC)
> return -EINVAL;
>
> - sdp->allow_restart = simple_strtoul(buf, NULL, 10);
> + err = kstrtoint(buf, 10, &v);
> + if (err || (v != 0 && v != 1))
> + return -EINVAL;
> +
> + sdp->allow_restart = v;
>
> return count;
> }
> --
> 2.9.4
>
Hello Martin,
Ping
next prev parent reply other threads:[~2017-10-07 8:47 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-27 16:53 [PATCH] scsi: sd: add check for changing allow_restart weiping zhang
2017-10-07 8:47 ` weiping zhang [this message]
2017-10-11 17:22 ` Martin K. Petersen
2017-10-12 6:22 ` weiping zhang
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=20171007084739.GB6035@source.didichuxing.com \
--to=zhangweiping@didichuxing.com \
--cc=jejb@linux.vnet.ibm.com \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.com \
/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;
as well as URLs for NNTP newsgroup(s).