From: Dan Carpenter <dan.carpenter@oracle.com>
To: Andy Shevchenko <andy.shevchenko@gmail.com>
Cc: Colin King <colin.king@canonical.com>,
Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>,
Srinivas Neeli <srinivas.neeli@xilinx.com>,
Michal Simek <michal.simek@xilinx.com>,
Linus Walleij <linus.walleij@linaro.org>,
Bartosz Golaszewski <bgolaszewski@baylibre.com>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
"open list:GPIO SUBSYSTEM" <linux-gpio@vger.kernel.org>,
linux-arm Mailing List <linux-arm-kernel@lists.infradead.org>,
kernel-janitors <kernel-janitors@vger.kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH][next] gpio: xilinx: Fix potential integer overflow on shift of a u32 int
Date: Mon, 17 May 2021 16:36:43 +0300 [thread overview]
Message-ID: <20210517133643.GI1955@kadam> (raw)
In-Reply-To: <CAHp75Ve-YWh_sfupwQV0xxL7Vk8GNObJ+6O29RqRMXCgAmemCw@mail.gmail.com>
On Mon, May 17, 2021 at 10:07:20AM +0300, Andy Shevchenko wrote:
> On Fri, May 14, 2021 at 12:26 PM Dan Carpenter <dan.carpenter@oracle.com> wrote:
> > On Thu, May 13, 2021 at 09:52:27AM +0100, Colin King wrote:
>
> ...
>
> > > const unsigned long offset = (bit % BITS_PER_LONG) & BIT(5);
> > >
> > > map[index] &= ~(0xFFFFFFFFul << offset);
> > > - map[index] |= v << offset;
> > > + map[index] |= (unsigned long)v << offset;
> >
> > Doing a shift by BIT(5) is super weird.
>
> Not the first place in the kernel with such a trick.
>
> > It looks like a double shift
> > bug and should probably trigger a static checker warning. It's like
> > when people do BIT(BIT(5)).
> >
> > It would be more readable to write it as:
> >
> > int shift = (bit % BITS_PER_LONG) ? 32 : 0;
>
> Usually this code is in a kinda fast path. Have you checked if the
> compiler generates the same or better code when you are using ternary?
I wrote a little benchmark to see which was faster and they're the same
as far as I can see.
regards,
dan carpenter
static inline __attribute__((__gnu_inline__)) unsigned long xgpio_set_value_orig(unsigned long *map, int bit, u32 v)
{
int shift = (bit % 64) & ((((1UL))) << (5));
return v << shift;
}
static inline __attribute__((__gnu_inline__)) unsigned long xgpio_set_value_new(unsigned long *map, int bit, u32 v)
{
int shift = (bit % 64) ? 32 : 0;
return v << shift;
}
int main(void)
{
int i;
for (i = 0; i < INT_MAX; i++)
xgpio_set_value_orig(NULL, i, 0);
// for (i = 0; i < INT_MAX; i++)
// xgpio_set_value_new(NULL, i, 0);
return 0;
}
WARNING: multiple messages have this Message-ID (diff)
From: Dan Carpenter <dan.carpenter@oracle.com>
To: Andy Shevchenko <andy.shevchenko@gmail.com>
Cc: Colin King <colin.king@canonical.com>,
Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>,
Srinivas Neeli <srinivas.neeli@xilinx.com>,
Michal Simek <michal.simek@xilinx.com>,
Linus Walleij <linus.walleij@linaro.org>,
Bartosz Golaszewski <bgolaszewski@baylibre.com>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
"open list:GPIO SUBSYSTEM" <linux-gpio@vger.kernel.org>,
linux-arm Mailing List <linux-arm-kernel@lists.infradead.org>,
kernel-janitors <kernel-janitors@vger.kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH][next] gpio: xilinx: Fix potential integer overflow on shift of a u32 int
Date: Mon, 17 May 2021 16:36:43 +0300 [thread overview]
Message-ID: <20210517133643.GI1955@kadam> (raw)
In-Reply-To: <CAHp75Ve-YWh_sfupwQV0xxL7Vk8GNObJ+6O29RqRMXCgAmemCw@mail.gmail.com>
On Mon, May 17, 2021 at 10:07:20AM +0300, Andy Shevchenko wrote:
> On Fri, May 14, 2021 at 12:26 PM Dan Carpenter <dan.carpenter@oracle.com> wrote:
> > On Thu, May 13, 2021 at 09:52:27AM +0100, Colin King wrote:
>
> ...
>
> > > const unsigned long offset = (bit % BITS_PER_LONG) & BIT(5);
> > >
> > > map[index] &= ~(0xFFFFFFFFul << offset);
> > > - map[index] |= v << offset;
> > > + map[index] |= (unsigned long)v << offset;
> >
> > Doing a shift by BIT(5) is super weird.
>
> Not the first place in the kernel with such a trick.
>
> > It looks like a double shift
> > bug and should probably trigger a static checker warning. It's like
> > when people do BIT(BIT(5)).
> >
> > It would be more readable to write it as:
> >
> > int shift = (bit % BITS_PER_LONG) ? 32 : 0;
>
> Usually this code is in a kinda fast path. Have you checked if the
> compiler generates the same or better code when you are using ternary?
I wrote a little benchmark to see which was faster and they're the same
as far as I can see.
regards,
dan carpenter
static inline __attribute__((__gnu_inline__)) unsigned long xgpio_set_value_orig(unsigned long *map, int bit, u32 v)
{
int shift = (bit % 64) & ((((1UL))) << (5));
return v << shift;
}
static inline __attribute__((__gnu_inline__)) unsigned long xgpio_set_value_new(unsigned long *map, int bit, u32 v)
{
int shift = (bit % 64) ? 32 : 0;
return v << shift;
}
int main(void)
{
int i;
for (i = 0; i < INT_MAX; i++)
xgpio_set_value_orig(NULL, i, 0);
// for (i = 0; i < INT_MAX; i++)
// xgpio_set_value_new(NULL, i, 0);
return 0;
}
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2021-05-17 13:37 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-13 8:52 [PATCH][next] gpio: xilinx: Fix potential integer overflow on shift of a u32 int Colin King
2021-05-13 8:52 ` Colin King
2021-05-13 9:10 ` David Laight
2021-05-13 9:10 ` David Laight
2021-05-17 7:04 ` Andy Shevchenko
2021-05-17 7:04 ` Andy Shevchenko
2021-05-14 5:37 ` Dan Carpenter
2021-05-14 5:37 ` Dan Carpenter
2021-05-17 7:07 ` Andy Shevchenko
2021-05-17 7:07 ` Andy Shevchenko
2021-05-17 13:36 ` Dan Carpenter [this message]
2021-05-17 13:36 ` Dan Carpenter
2021-05-17 13:49 ` Andy Shevchenko
2021-05-17 13:49 ` Andy Shevchenko
2021-05-17 7:03 ` Andy Shevchenko
2021-05-17 7:03 ` Andy Shevchenko
2021-05-17 7:32 ` Andy Shevchenko
2021-05-17 7:32 ` Andy Shevchenko
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=20210517133643.GI1955@kadam \
--to=dan.carpenter@oracle.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=andy.shevchenko@gmail.com \
--cc=bgolaszewski@baylibre.com \
--cc=colin.king@canonical.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michal.simek@xilinx.com \
--cc=shubhrajyoti.datta@xilinx.com \
--cc=srinivas.neeli@xilinx.com \
/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.