From: Jonathan Cameron <jic23@kernel.org>
To: "Ardelean, Alexandru" <alexandru.Ardelean@analog.com>
Cc: "linux-iio@vger.kernel.org" <linux-iio@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"knaack.h@gmx.de" <knaack.h@gmx.de>,
"92siuyang@gmail.com" <92siuyang@gmail.com>,
"pmeerw@pmeerw.net" <pmeerw@pmeerw.net>,
"lars@metafoo.de" <lars@metafoo.de>
Subject: Re: [PATCH] iio:core: Fix bug in length of event info_mask and catch unhandled bits set in masks.
Date: Sat, 8 Jun 2019 13:55:29 +0100 [thread overview]
Message-ID: <20190608135529.4d5fb4ef@archlinux> (raw)
In-Reply-To: <b422a132f5e4db9d4e4079963e52e1031e2f30e6.camel@analog.com>
On Thu, 6 Jun 2019 08:59:10 +0000
"Ardelean, Alexandru" <alexandru.Ardelean@analog.com> wrote:
> On Tue, 2019-06-04 at 20:40 +0800, Young Xiao wrote:
> > [External]
> >
> >
> > 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.
> >
> > See commit ef4b4856593f ("iio:core: Fix bug in length of event info_mask and
> > catch unhandled bits set in masks.") for details.
> >
> > Signed-off-by: Young Xiao <92siuyang@gmail.com>
>
> Reviewed-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
>
> Thanks for this patch.
> This fix is validated also by the fact that iio_device_add_info_mask_type() has this check on the same iteration.
I don't think it is technically a bug, as the higher bits should never be set.
Still it is a sensible bit of hardening so applied to the togreg branch of iio.git
and pushed out as testing.
Thanks
Jonathan
>
>
> > ---
> > drivers/iio/industrialio-core.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/drivers/iio/industrialio-core.c b/drivers/iio/industrialio-core.c
> > index f5a4581..dd8873a 100644
> > --- a/drivers/iio/industrialio-core.c
> > +++ b/drivers/iio/industrialio-core.c
> > @@ -1107,6 +1107,8 @@ static int iio_device_add_info_mask_type_avail(struct iio_dev *indio_dev,
> > char *avail_postfix;
> >
> > for_each_set_bit(i, infomask, sizeof(*infomask) * 8) {
> > + if (i >= ARRAY_SIZE(iio_chan_info_postfix))
> > + return -EINVAL;
> > avail_postfix = kasprintf(GFP_KERNEL,
> > "%s_available",
> > iio_chan_info_postfix[i]);
> > --
> > 2.7.4
> >
next prev parent reply other threads:[~2019-06-08 12:55 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-04 12:40 [PATCH] iio:core: Fix bug in length of event info_mask and catch unhandled bits set in masks Young Xiao
2019-06-06 8:59 ` Ardelean, Alexandru
2019-06-08 12:55 ` Jonathan Cameron [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-03-01 22:24 Jonathan Cameron
2014-03-15 16:27 ` Jonathan Cameron
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=20190608135529.4d5fb4ef@archlinux \
--to=jic23@kernel.org \
--cc=92siuyang@gmail.com \
--cc=alexandru.Ardelean@analog.com \
--cc=knaack.h@gmx.de \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pmeerw@pmeerw.net \
/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.