From: Ben Dooks <ben-linux@fluff.org>
To: Paul Mundt <lethal@linux-sh.org>,
linux-kernel@vger.kernel.org,
linux-fbdev-devel@lists.sourceforge.net
Subject: Re: [PATCH] fb: sm501fb off-by-1 sysfs store
Date: Thu, 1 Mar 2007 09:16:33 +0000 [thread overview]
Message-ID: <20070301091633.GA21140@fluff.org.uk> (raw)
In-Reply-To: <20070301082456.GA3701@linux-sh.org>
On Thu, Mar 01, 2007 at 05:24:56PM +0900, Paul Mundt wrote:
> Currently sm501fb_crtsrc_store() won't allow the routing to be changed
> via echos from userspace in to the sysfs file. The reason for this is
> that the strnicmp() for both heads uses a sizeof() for the string length,
> which ends up being strlen() + 1 (\0 in the normal case, but the echo
> gives a newline, which is where the issue occurs), this then causes a
> mismatch and subsequently bails with the -EINVAL.
>
> In addition to this, the hardcoded lengths were then used for the store
> length that was returned, which ended up being erroneous and resulting in
> a write error. There's also no point in returning anything but the full
> length since it will -EINVAL out on a mismatch well before then anyways.
>
> sizeof("string") is great for making sure you have space in your buffer,
> but rather less so for string comparisons :-)
>
> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Acked-by: Ben Dooks <ben-linux@fluff.org>
> --
>
> drivers/video/sm501fb.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/video/sm501fb.c b/drivers/video/sm501fb.c
> index 02b290c..72b5358 100644
> --- a/drivers/video/sm501fb.c
> +++ b/drivers/video/sm501fb.c
> @@ -1074,9 +1074,9 @@ static ssize_t sm501fb_crtsrc_store(struct device *dev,
> if (len < 1)
> return -EINVAL;
>
> - if (strnicmp(buf, "crt", sizeof("crt")) == 0)
> + if (strnicmp(buf, "crt", 3) == 0)
> head = HEAD_CRT;
> - else if (strnicmp(buf, "panel", sizeof("panel")) == 0)
> + else if (strnicmp(buf, "panel", 5) == 0)
> head = HEAD_PANEL;
> else
> return -EINVAL;
> @@ -1098,7 +1098,7 @@ static ssize_t sm501fb_crtsrc_store(struct device *dev,
> writel(ctrl, info->regs + SM501_DC_CRT_CONTROL);
> sm501fb_sync_regs(info);
>
> - return (head == HEAD_CRT) ? 3 : 5;
> + return len;
> }
>
> /* Prepare the device_attr for registration with sysfs later */
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
Ben (ben@fluff.org, http://www.fluff.org/)
'a smiley only costs 4 bytes'
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
WARNING: multiple messages have this Message-ID (diff)
From: Ben Dooks <ben-linux@fluff.org>
To: Paul Mundt <lethal@linux-sh.org>,
linux-kernel@vger.kernel.org,
linux-fbdev-devel@lists.sourceforge.net
Subject: Re: [PATCH] fb: sm501fb off-by-1 sysfs store
Date: Thu, 1 Mar 2007 09:16:33 +0000 [thread overview]
Message-ID: <20070301091633.GA21140@fluff.org.uk> (raw)
In-Reply-To: <20070301082456.GA3701@linux-sh.org>
On Thu, Mar 01, 2007 at 05:24:56PM +0900, Paul Mundt wrote:
> Currently sm501fb_crtsrc_store() won't allow the routing to be changed
> via echos from userspace in to the sysfs file. The reason for this is
> that the strnicmp() for both heads uses a sizeof() for the string length,
> which ends up being strlen() + 1 (\0 in the normal case, but the echo
> gives a newline, which is where the issue occurs), this then causes a
> mismatch and subsequently bails with the -EINVAL.
>
> In addition to this, the hardcoded lengths were then used for the store
> length that was returned, which ended up being erroneous and resulting in
> a write error. There's also no point in returning anything but the full
> length since it will -EINVAL out on a mismatch well before then anyways.
>
> sizeof("string") is great for making sure you have space in your buffer,
> but rather less so for string comparisons :-)
>
> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Acked-by: Ben Dooks <ben-linux@fluff.org>
> --
>
> drivers/video/sm501fb.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/video/sm501fb.c b/drivers/video/sm501fb.c
> index 02b290c..72b5358 100644
> --- a/drivers/video/sm501fb.c
> +++ b/drivers/video/sm501fb.c
> @@ -1074,9 +1074,9 @@ static ssize_t sm501fb_crtsrc_store(struct device *dev,
> if (len < 1)
> return -EINVAL;
>
> - if (strnicmp(buf, "crt", sizeof("crt")) == 0)
> + if (strnicmp(buf, "crt", 3) == 0)
> head = HEAD_CRT;
> - else if (strnicmp(buf, "panel", sizeof("panel")) == 0)
> + else if (strnicmp(buf, "panel", 5) == 0)
> head = HEAD_PANEL;
> else
> return -EINVAL;
> @@ -1098,7 +1098,7 @@ static ssize_t sm501fb_crtsrc_store(struct device *dev,
> writel(ctrl, info->regs + SM501_DC_CRT_CONTROL);
> sm501fb_sync_regs(info);
>
> - return (head == HEAD_CRT) ? 3 : 5;
> + return len;
> }
>
> /* Prepare the device_attr for registration with sysfs later */
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
Ben (ben@fluff.org, http://www.fluff.org/)
'a smiley only costs 4 bytes'
next prev parent reply other threads:[~2007-03-01 9:17 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-01 8:24 [PATCH] fb: sm501fb off-by-1 sysfs store Paul Mundt
2007-03-01 8:24 ` Paul Mundt
2007-03-01 9:16 ` Ben Dooks [this message]
2007-03-01 9:16 ` Ben Dooks
2007-03-01 13:25 ` Geert Uytterhoeven
2007-03-01 13:25 ` [Linux-fbdev-devel] " Geert Uytterhoeven
2007-03-01 13:35 ` Paul Mundt
2007-03-02 14:34 ` Paul A. Clarke
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=20070301091633.GA21140@fluff.org.uk \
--to=ben-linux@fluff.org \
--cc=lethal@linux-sh.org \
--cc=linux-fbdev-devel@lists.sourceforge.net \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.