public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Shuah Khan <shuah.kh@samsung.com>
To: John de la Garza <john@jjdev.com>, linux-kernel@vger.kernel.org
Cc: gregkh@linuxfoundation.org, Shuah Khan <shuah.kh@samsung.com>
Subject: Re: [PATCH] usbip:vhci_sysfs.c: check return value of sscanf
Date: Thu, 06 Mar 2014 13:23:09 -0700	[thread overview]
Message-ID: <5318D92D.8020601@samsung.com> (raw)
In-Reply-To: <20140306183631.GA31595@vega.jjdev.com>

On 03/06/2014 11:36 AM, John de la Garza wrote:
> Added code to check return value of sscanf.
>
> Signed-off-by: John de la Garza <john@jjdev.com>
> ---
>   drivers/staging/usbip/vhci_sysfs.c |    6 ++++--
>   1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/staging/usbip/vhci_sysfs.c b/drivers/staging/usbip/vhci_sysfs.c
> index 03e6edf..82dd49f 100644
> --- a/drivers/staging/usbip/vhci_sysfs.c
> +++ b/drivers/staging/usbip/vhci_sysfs.c
> @@ -114,7 +114,8 @@ static ssize_t store_detach(struct device *dev, struct device_attribute *attr,
>   	int err;
>   	__u32 rhport = 0;
>
> -	sscanf(buf, "%u", &rhport);
> +	if (sscanf(buf, "%u", &rhport) != 1)
> +		return -EINVAL;
>
>   	/* check rhport */
>   	if (rhport >= VHCI_NPORTS) {
> @@ -182,7 +183,8 @@ static ssize_t store_attach(struct device *dev, struct device_attribute *attr,
>   	 * @devid: unique device identifier in a remote host
>   	 * @speed: usb device speed in a remote host
>   	 */
> -	sscanf(buf, "%u %u %u %u", &rhport, &sockfd, &devid, &speed);
> +	if (sscanf(buf, "%u %u %u %u", &rhport, &sockfd, &devid, &speed) != 1)
> +		return -EINVAL;
>
>   	usbip_dbg_vhci_sysfs("rhport(%u) sockfd(%u) devid(%u) speed(%u)\n",
>   			     rhport, sockfd, devid, speed);
>

Looks good to me.

Reviewed-by: Shuah Khan <shuah.kh@samsung.com>

-- Shuah

-- 
Shuah Khan
Senior Linux Kernel Developer - Open Source Group
Samsung Research America(Silicon Valley)
shuah.kh@samsung.com | (970) 672-0658

      reply	other threads:[~2014-03-06 20:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-06 18:36 [PATCH] usbip:vhci_sysfs.c: check return value of sscanf John de la Garza
2014-03-06 20:23 ` Shuah Khan [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=5318D92D.8020601@samsung.com \
    --to=shuah.kh@samsung.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=john@jjdev.com \
    --cc=linux-kernel@vger.kernel.org \
    /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