iio:core: Fix bug in length of event info_mask and catch unhandled bits set in masks.
authorJonathan Cameron <jic23@kernel.org>
Fri, 3 Jan 2014 22:24:00 +0000 (22:24 +0000)
committerJonathan Cameron <jic23@kernel.org>
Sun, 16 Mar 2014 18:00:35 +0000 (18:00 +0000)
commitef4b4856593fc3d9d169bededdaf7acf62f83a52
tree475540e4f92024899b4ab3b4b2469b9884503ff5
parent2816ac64ac46c4017355a49331250e5c016dc2c0
iio:core: Fix bug in length of event info_mask and catch unhandled bits set in masks.

The unhandled bits case was highlighted by smatch:
  CHECK   drivers/iio/industrialio-core.c
drivers/iio/industrialio-core.c:719 iio_device_add_info_mask_type() error: buffer overflow 'iio_chan_info_postfix' 17 <= 31
  CC [M]  drivers/iio/industrialio-core.o
  CHECK   drivers/iio/industrialio-event.c
drivers/iio/industrialio-event.c:327 iio_device_add_event() error: buffer overflow 'iio_ev_info_text' 3 <= 3

The incorrect limit for the for_each_set_bit loop was noticed whilst fixing
this other case.  Note that as we only have 3 possible entries a the moment
and the value was set to 4, the bug would not have any effect currently.
It will bite fairly soon though, so best fix it now.

Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Cc: Lars-Peter Clausen <lars@metafoo.de>
Cc: Dan Carpenter <dan.carpenter@oracle.com>
drivers/iio/industrialio-core.c
drivers/iio/industrialio-event.c
This page took 0.025633 seconds and 5 git commands to generate.