* [PATCH v2] [BUGFIX] gpio: reject invalid gpio before getting gpio_desc
@ 2017-07-31 1:57 Masami Hiramatsu
2017-08-01 8:09 ` Linus Walleij
2017-08-01 11:10 ` Andy Shevchenko
0 siblings, 2 replies; 5+ messages in thread
From: Masami Hiramatsu @ 2017-07-31 1:57 UTC (permalink / raw)
To: Linus Walleij
Cc: linux-gpio, linux-kernel, Andy Shevchenko, Masahiro Yamada,
Masami Hiramatsu, Jassi Brar
Check user-given gpio number and reject it before
calling gpio_to_desc() because gpio_to_desc() is
for kernel driver and it expects given gpio number
is valid (means 0 to 511).
If given number is invalid, gpio_to_desc() calls
WARN() and dump registers and stack for debug.
This means user can easily kick WARN() just by
writing invalid gpio number (e.g. 512) to
/sys/class/gpio/export.
Fixes: 0e9a5edf5d01 ("gpio: fix deferred probe detection for legacy API")
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
---
Changes in v2:
- Add gpio_to_valid_desc() according to Andy's comment (Thanks!).
- Fix patch description.
---
drivers/gpio/gpiolib-sysfs.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/drivers/gpio/gpiolib-sysfs.c b/drivers/gpio/gpiolib-sysfs.c
index 4b44dd97c07f..819f36258925 100644
--- a/drivers/gpio/gpiolib-sysfs.c
+++ b/drivers/gpio/gpiolib-sysfs.c
@@ -2,6 +2,7 @@
#include <linux/mutex.h>
#include <linux/device.h>
#include <linux/sysfs.h>
+#include <linux/gpio.h>
#include <linux/gpio/consumer.h>
#include <linux/gpio/driver.h>
#include <linux/interrupt.h>
@@ -432,6 +433,11 @@ static struct attribute *gpiochip_attrs[] = {
};
ATTRIBUTE_GROUPS(gpiochip);
+static struct gpio_desc *gpio_to_valid_desc(int gpio)
+{
+ return gpio_is_valid(gpio) ? gpio_to_desc(gpio) : NULL;
+}
+
/*
* /sys/class/gpio/export ... write-only
* integer N ... number of GPIO to export (full access)
@@ -450,7 +456,8 @@ static ssize_t export_store(struct class *class,
if (status < 0)
goto done;
- desc = gpio_to_desc(gpio);
+ desc = gpio_to_valid_desc(gpio);
+
/* reject invalid GPIOs */
if (!desc) {
pr_warn("%s: invalid GPIO %ld\n", __func__, gpio);
@@ -492,7 +499,8 @@ static ssize_t unexport_store(struct class *class,
if (status < 0)
goto done;
- desc = gpio_to_desc(gpio);
+ desc = gpio_to_valid_desc(gpio);
+
/* reject bogus commands (gpio_unexport ignores them) */
if (!desc) {
pr_warn("%s: invalid GPIO %ld\n", __func__, gpio);
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] [BUGFIX] gpio: reject invalid gpio before getting gpio_desc
2017-07-31 1:57 [PATCH v2] [BUGFIX] gpio: reject invalid gpio before getting gpio_desc Masami Hiramatsu
@ 2017-08-01 8:09 ` Linus Walleij
2017-08-01 8:35 ` Masami Hiramatsu
2017-08-01 11:10 ` Andy Shevchenko
1 sibling, 1 reply; 5+ messages in thread
From: Linus Walleij @ 2017-08-01 8:09 UTC (permalink / raw)
To: Masami Hiramatsu
Cc: linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org,
Andy Shevchenko, Masahiro Yamada, Masami Hiramatsu, Jassi Brar
On Mon, Jul 31, 2017 at 3:57 AM, Masami Hiramatsu <mhiramat@kernel.org> wrote:
> Check user-given gpio number and reject it before
> calling gpio_to_desc() because gpio_to_desc() is
> for kernel driver and it expects given gpio number
> is valid (means 0 to 511).
> If given number is invalid, gpio_to_desc() calls
> WARN() and dump registers and stack for debug.
> This means user can easily kick WARN() just by
> writing invalid gpio number (e.g. 512) to
> /sys/class/gpio/export.
>
> Fixes: 0e9a5edf5d01 ("gpio: fix deferred probe detection for legacy API")
> Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
> ---
> Changes in v2:
> - Add gpio_to_valid_desc() according to Andy's comment (Thanks!).
> - Fix patch description.
I hate the old sysfs ABI sigh. Thanks for fixing it anyways!
Should this be tagged for stable?
Waiting for Andy's review before applying.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] [BUGFIX] gpio: reject invalid gpio before getting gpio_desc
2017-08-01 8:09 ` Linus Walleij
@ 2017-08-01 8:35 ` Masami Hiramatsu
0 siblings, 0 replies; 5+ messages in thread
From: Masami Hiramatsu @ 2017-08-01 8:35 UTC (permalink / raw)
To: Linus Walleij
Cc: linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org,
Andy Shevchenko, Masahiro Yamada, Masami Hiramatsu, Jassi Brar
On Tue, 1 Aug 2017 10:09:09 +0200
Linus Walleij <linus.walleij@linaro.org> wrote:
> On Mon, Jul 31, 2017 at 3:57 AM, Masami Hiramatsu <mhiramat@kernel.org> wrote:
>
> > Check user-given gpio number and reject it before
> > calling gpio_to_desc() because gpio_to_desc() is
> > for kernel driver and it expects given gpio number
> > is valid (means 0 to 511).
> > If given number is invalid, gpio_to_desc() calls
> > WARN() and dump registers and stack for debug.
> > This means user can easily kick WARN() just by
> > writing invalid gpio number (e.g. 512) to
> > /sys/class/gpio/export.
> >
> > Fixes: 0e9a5edf5d01 ("gpio: fix deferred probe detection for legacy API")
> > Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
> > ---
> > Changes in v2:
> > - Add gpio_to_valid_desc() according to Andy's comment (Thanks!).
> > - Fix patch description.
>
> I hate the old sysfs ABI sigh. Thanks for fixing it anyways!
>
> Should this be tagged for stable?
Yes, I think so. Since this has been introduced 3 years ago,
it would be nice to go to older stable trees too.
Thanks,
>
> Waiting for Andy's review before applying.
>
> Yours,
> Linus Walleij
--
Masami Hiramatsu <mhiramat@kernel.org>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] [BUGFIX] gpio: reject invalid gpio before getting gpio_desc
2017-07-31 1:57 [PATCH v2] [BUGFIX] gpio: reject invalid gpio before getting gpio_desc Masami Hiramatsu
2017-08-01 8:09 ` Linus Walleij
@ 2017-08-01 11:10 ` Andy Shevchenko
2017-08-01 12:22 ` Masami Hiramatsu
1 sibling, 1 reply; 5+ messages in thread
From: Andy Shevchenko @ 2017-08-01 11:10 UTC (permalink / raw)
To: Masami Hiramatsu
Cc: Linus Walleij, linux-gpio@vger.kernel.org,
linux-kernel@vger.kernel.org, Masahiro Yamada, Masami Hiramatsu,
Jassi Brar
On Mon, Jul 31, 2017 at 4:57 AM, Masami Hiramatsu <mhiramat@kernel.org> wrote:
> Check user-given gpio number and reject it before
> calling gpio_to_desc() because gpio_to_desc() is
> for kernel driver and it expects given gpio number
> is valid (means 0 to 511).
> If given number is invalid, gpio_to_desc() calls
> WARN() and dump registers and stack for debug.
> This means user can easily kick WARN() just by
> writing invalid gpio number (e.g. 512) to
> /sys/class/gpio/export.
>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
(2 bikesheds below)
> Fixes: 0e9a5edf5d01 ("gpio: fix deferred probe detection for legacy API")
> Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
> ---
> Changes in v2:
> - Add gpio_to_valid_desc() according to Andy's comment (Thanks!).
> - Fix patch description.
> ---
> drivers/gpio/gpiolib-sysfs.c | 12 ++++++++++--
> 1 file changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpio/gpiolib-sysfs.c b/drivers/gpio/gpiolib-sysfs.c
> index 4b44dd97c07f..819f36258925 100644
> --- a/drivers/gpio/gpiolib-sysfs.c
> +++ b/drivers/gpio/gpiolib-sysfs.c
> @@ -2,6 +2,7 @@
> #include <linux/mutex.h>
> #include <linux/device.h>
> #include <linux/sysfs.h>
> +#include <linux/gpio.h>
> #include <linux/gpio/consumer.h>
> #include <linux/gpio/driver.h>
> #include <linux/interrupt.h>
> @@ -432,6 +433,11 @@ static struct attribute *gpiochip_attrs[] = {
> };
> ATTRIBUTE_GROUPS(gpiochip);
>
> +static struct gpio_desc *gpio_to_valid_desc(int gpio)
> +{
> + return gpio_is_valid(gpio) ? gpio_to_desc(gpio) : NULL;
> +}
> +
> /*
> * /sys/class/gpio/export ... write-only
> * integer N ... number of GPIO to export (full access)
> @@ -450,7 +456,8 @@ static ssize_t export_store(struct class *class,
> if (status < 0)
> goto done;
>
> - desc = gpio_to_desc(gpio);
> + desc = gpio_to_valid_desc(gpio);
> +
No need, if you wish better to put modified line after comment.
> /* reject invalid GPIOs */
> if (!desc) {
> pr_warn("%s: invalid GPIO %ld\n", __func__, gpio);
> @@ -492,7 +499,8 @@ static ssize_t unexport_store(struct class *class,
> if (status < 0)
> goto done;
>
> - desc = gpio_to_desc(gpio);
> + desc = gpio_to_valid_desc(gpio);
> +
Ditto.
> /* reject bogus commands (gpio_unexport ignores them) */
> if (!desc) {
> pr_warn("%s: invalid GPIO %ld\n", __func__, gpio);
>
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] [BUGFIX] gpio: reject invalid gpio before getting gpio_desc
2017-08-01 11:10 ` Andy Shevchenko
@ 2017-08-01 12:22 ` Masami Hiramatsu
0 siblings, 0 replies; 5+ messages in thread
From: Masami Hiramatsu @ 2017-08-01 12:22 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Linus Walleij, linux-gpio@vger.kernel.org,
linux-kernel@vger.kernel.org, Masahiro Yamada, Masami Hiramatsu,
Jassi Brar
On Tue, 1 Aug 2017 14:10:03 +0300
Andy Shevchenko <andy.shevchenko@gmail.com> wrote:
> On Mon, Jul 31, 2017 at 4:57 AM, Masami Hiramatsu <mhiramat@kernel.org> wrote:
> > Check user-given gpio number and reject it before
> > calling gpio_to_desc() because gpio_to_desc() is
> > for kernel driver and it expects given gpio number
> > is valid (means 0 to 511).
> > If given number is invalid, gpio_to_desc() calls
> > WARN() and dump registers and stack for debug.
> > This means user can easily kick WARN() just by
> > writing invalid gpio number (e.g. 512) to
> > /sys/class/gpio/export.
> >
>
> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
>
> (2 bikesheds below)
>
> > Fixes: 0e9a5edf5d01 ("gpio: fix deferred probe detection for legacy API")
> > Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
> > ---
> > Changes in v2:
> > - Add gpio_to_valid_desc() according to Andy's comment (Thanks!).
> > - Fix patch description.
> > ---
> > drivers/gpio/gpiolib-sysfs.c | 12 ++++++++++--
> > 1 file changed, 10 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpio/gpiolib-sysfs.c b/drivers/gpio/gpiolib-sysfs.c
> > index 4b44dd97c07f..819f36258925 100644
> > --- a/drivers/gpio/gpiolib-sysfs.c
> > +++ b/drivers/gpio/gpiolib-sysfs.c
> > @@ -2,6 +2,7 @@
> > #include <linux/mutex.h>
> > #include <linux/device.h>
> > #include <linux/sysfs.h>
> > +#include <linux/gpio.h>
> > #include <linux/gpio/consumer.h>
> > #include <linux/gpio/driver.h>
> > #include <linux/interrupt.h>
> > @@ -432,6 +433,11 @@ static struct attribute *gpiochip_attrs[] = {
> > };
> > ATTRIBUTE_GROUPS(gpiochip);
> >
> > +static struct gpio_desc *gpio_to_valid_desc(int gpio)
> > +{
> > + return gpio_is_valid(gpio) ? gpio_to_desc(gpio) : NULL;
> > +}
> > +
> > /*
> > * /sys/class/gpio/export ... write-only
> > * integer N ... number of GPIO to export (full access)
> > @@ -450,7 +456,8 @@ static ssize_t export_store(struct class *class,
> > if (status < 0)
> > goto done;
> >
> > - desc = gpio_to_desc(gpio);
> > + desc = gpio_to_valid_desc(gpio);
>
> > +
>
> No need, if you wish better to put modified line after comment.
OK, should I update the patch and resend?
Thanks,
>
> > /* reject invalid GPIOs */
> > if (!desc) {
> > pr_warn("%s: invalid GPIO %ld\n", __func__, gpio);
> > @@ -492,7 +499,8 @@ static ssize_t unexport_store(struct class *class,
> > if (status < 0)
> > goto done;
> >
> > - desc = gpio_to_desc(gpio);
> > + desc = gpio_to_valid_desc(gpio);
>
> > +
>
>
> Ditto.
>
> > /* reject bogus commands (gpio_unexport ignores them) */
> > if (!desc) {
> > pr_warn("%s: invalid GPIO %ld\n", __func__, gpio);
> >
>
>
>
> --
> With Best Regards,
> Andy Shevchenko
--
Masami Hiramatsu <mhiramat@kernel.org>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-08-01 12:22 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-31 1:57 [PATCH v2] [BUGFIX] gpio: reject invalid gpio before getting gpio_desc Masami Hiramatsu
2017-08-01 8:09 ` Linus Walleij
2017-08-01 8:35 ` Masami Hiramatsu
2017-08-01 11:10 ` Andy Shevchenko
2017-08-01 12:22 ` Masami Hiramatsu
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).