From: Maxime Coquelin <maxime.coquelin@st.com>
To: Andrew Morton <akpm@linux-foundation.org>,
Max Filippov <jcmvbkbc@gmail.com>
Cc: <linux@rasmusvillemoes.dk>, <gong.chen@linux.intel.com>,
Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@kernel.org>,
"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>, <tytso@mit.edu>,
<linux-kernel@vger.kernel.org>, <stable@vger.kernel.org>,
<kernel@stlinux.com>, <eric.paire@st.com>
Subject: Re: [PATCH v4] bitops: Fix shift overflow in GENMASK macros
Date: Fri, 14 Nov 2014 15:07:15 +0100 [thread overview]
Message-ID: <54660C93.6050801@st.com> (raw)
In-Reply-To: <20141113140936.e2e45a8970b5bb4195fd5065@linux-foundation.org>
On 11/13/2014 11:09 PM, Andrew Morton wrote:
> On Thu, 6 Nov 2014 10:54:19 +0100 Maxime COQUELIN <maxime.coquelin@st.com> wrote:
>
>> On some 32 bits architectures, including x86, GENMASK(31, 0) returns 0
>> instead of the expected ~0UL.
>>
>> This is the same on some 64 bits architectures with GENMASK_ULL(63, 0).
>>
>> This is due to an overflow in the shift operand, 1 << 32 for GENMASK,
>> 1 << 64 for GENMASK_ULL.
>>
>> Fixes: 10ef6b0dffe404bcc54e94cb2ca1a5b18445a66b
>> Cc: <stable@vger.kernel.org> #v3.13+
>> Reported-by: Eric Paire <eric.paire@st.com>
>> Suggested-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
>> Signed-off-by: Maxime Coquelin <maxime.coquelin@st.com>
> Why cc:stable? Does this bug cause some observed kernel misbehaviour?
> If so, please fully describe that in the changelog. This will help
> people to determine whether this patch might fix a bug they're
> observing, and will help them to decide whether they should backport
> this patch into their kernels.
We encountered some misbehavior on not upstreamed code.
Looking at all GENMASK and GENMASK_ULL occurences in v3.18-rc4,
I (only) found one possible candidate in drivers/spi/spi_xtensa-xtfpga.c:
static u32 xtfpga_spi_txrx_word(struct spi_device *spi, unsigned nsecs,
u32 v, u8 bits)
{
struct xtfpga_spi *xspi = spi_master_get_devdata(spi->master);
xspi->data = (xspi->data << bits) | (v & GENMASK(bits - 1, 0));
...
}
Max F., can xtfpga_spi_txrx_word() be called with "bits" = 32?
If yes, then GENMASK(bits - 1, 0) result would be unpredictable on some
architectures.
I don't know if Xtensa architecture is impacted though.
But even if Xtensa SPI driver is not impacted,
maybe future fixes that will be integrated into stable releases will use
GENMASK(),
and so could possibly be impacted by the bug.
Andrew, with this information, do you think we should take this patch in
stable branches?
>
> I'm assuming that Peter will be merging this patch.
Yes, Peter already added this patch in his tree.
>
Kind regards,
Maxime
next prev parent reply other threads:[~2014-11-14 14:08 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-06 9:54 [PATCH v4] bitops: Fix shift overflow in GENMASK macros Maxime COQUELIN
2014-11-13 22:09 ` Andrew Morton
2014-11-14 14:07 ` Maxime Coquelin [this message]
2014-11-14 20:03 ` Max Filippov
2014-11-16 9:49 ` [tip:core/urgent] " tip-bot for Maxime COQUELIN
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=54660C93.6050801@st.com \
--to=maxime.coquelin@st.com \
--cc=akpm@linux-foundation.org \
--cc=eric.paire@st.com \
--cc=gong.chen@linux.intel.com \
--cc=jcmvbkbc@gmail.com \
--cc=kernel@stlinux.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=mingo@kernel.org \
--cc=paulmck@linux.vnet.ibm.com \
--cc=peterz@infradead.org \
--cc=stable@vger.kernel.org \
--cc=tytso@mit.edu \
/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.