lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Thu, 7 Nov 2013 14:55:54 -0800
From:	Bryan Wu <cooloney@...il.com>
To:	NeilBrown <neilb@...e.de>
Cc:	Richard Purdie <rpurdie@...ys.net>,
	Linux LED Subsystem <linux-leds@...r.kernel.org>,
	lkml <linux-kernel@...r.kernel.org>,
	Belisko Marek <marek.belisko@...il.com>,
	"Dr. H. Nikolaus Schaller" <hns@...delico.com>
Subject: Re: [PATCH 1/2] LEDS: tca6507 - fix bugs in parsing of device-tree configuration.

On Thu, Oct 31, 2013 at 7:33 PM, NeilBrown <neilb@...e.de> wrote:
>
>
> 1/ The led_info array must be allocated to allow the full number
>   of LEDs even if not all are present.  The array maybe be sparsely
>   filled but it is indexed by device address so we must at least
>   allocate as many slots as the highest address used.  It is easiest
>   just to allocate all 7.
>
> 2/ range check the 'reg' value properly.
>
> 3/ led.flags must be initialised to zero, else all leds could
>    be treated as GPIOs (depending on what happens to be on the stack).
>
> Signed-off-by: NeilBrown <neilb@...e.de>
>

Thanks, queued into devel branch of my tree for 3.14 kernel.

-Bryan

> diff --git a/drivers/leds/leds-tca6507.c b/drivers/leds/leds-tca6507.c
> index 8cc304f36728..f5063f447463 100644
> --- a/drivers/leds/leds-tca6507.c
> +++ b/drivers/leds/leds-tca6507.c
> @@ -682,7 +682,7 @@ tca6507_led_dt_init(struct i2c_client *client)
>                 return ERR_PTR(-ENODEV);
>
>         tca_leds = devm_kzalloc(&client->dev,
> -                       sizeof(struct led_info) * count, GFP_KERNEL);
> +                       sizeof(struct led_info) * NUM_LEDS, GFP_KERNEL);
>         if (!tca_leds)
>                 return ERR_PTR(-ENOMEM);
>
> @@ -695,9 +695,9 @@ tca6507_led_dt_init(struct i2c_client *client)
>                         of_get_property(child, "label", NULL) ? : child->name;
>                 led.default_trigger =
>                         of_get_property(child, "linux,default-trigger", NULL);
> -
> +               led.flags = 0;
>                 ret = of_property_read_u32(child, "reg", &reg);
> -               if (ret != 0)
> +               if (ret != 0 || reg < 0 || reg >= NUM_LEDS)
>                         continue;
>
>                 tca_leds[reg] = led;
> @@ -708,7 +708,7 @@ tca6507_led_dt_init(struct i2c_client *client)
>                 return ERR_PTR(-ENOMEM);
>
>         pdata->leds.leds = tca_leds;
> -       pdata->leds.num_leds = count;
> +       pdata->leds.num_leds = NUM_LEDS;
>
>         return pdata;
>  }
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists