From: Corey Minyard <corey@minyard.net>
To: Dan Carpenter <dan.carpenter@linaro.org>
Cc: Quan Nguyen <quan@os.amperecomputing.com>,
Corey Minyard <minyard@acm.org>,
openipmi-developer@lists.sourceforge.net,
linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [PATCH] ipmi: ssif_bmc: prevent integer overflow on 32bit systems
Date: Fri, 14 Jun 2024 13:52:05 -0500 [thread overview]
Message-ID: <ZmyRVQzcIbDwgnP9@mail.minyard.net> (raw)
In-Reply-To: <1431ca2e-4e9c-4520-bfc0-6879313c30e9@moroto.mountain>
On Fri, Jun 14, 2024 at 08:30:44PM +0300, Dan Carpenter wrote:
> There are actually two bugs here. First, we need to ensure that count
> is at least sizeof(u32) or msg.len will be uninitialized data.
>
> The "msg.len" variable is a u32 that comes from the user. On 32bit
> systems the "sizeof_field(struct ipmi_ssif_msg, len) + msg.len"
> addition can overflow if "msg.len" is greater than U32_MAX - 4.
>
> Valid lengths for "msg.len" are 1-254. Add a check for that to
> prevent the integer overflow.
Thanks, this is in my tree.
-corey
>
> Fixes: dd2bc5cc9e25 ("ipmi: ssif_bmc: Add SSIF BMC driver")
> Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
> ---
> drivers/char/ipmi/ssif_bmc.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
> ---
> drivers/char/ipmi/ssif_bmc.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/char/ipmi/ssif_bmc.c b/drivers/char/ipmi/ssif_bmc.c
> index 56346fb32872..ab4e87a99f08 100644
> --- a/drivers/char/ipmi/ssif_bmc.c
> +++ b/drivers/char/ipmi/ssif_bmc.c
> @@ -177,13 +177,15 @@ static ssize_t ssif_bmc_write(struct file *file, const char __user *buf, size_t
> unsigned long flags;
> ssize_t ret;
>
> - if (count > sizeof(struct ipmi_ssif_msg))
> + if (count < sizeof(msg.len) ||
> + count > sizeof(struct ipmi_ssif_msg))
> return -EINVAL;
>
> if (copy_from_user(&msg, buf, count))
> return -EFAULT;
>
> - if (!msg.len || count < sizeof_field(struct ipmi_ssif_msg, len) + msg.len)
> + if (!msg.len || msg.len > IPMI_SSIF_PAYLOAD_MAX ||
> + count < sizeof_field(struct ipmi_ssif_msg, len) + msg.len)
> return -EINVAL;
>
> spin_lock_irqsave(&ssif_bmc->lock, flags);
> --
> 2.43.0
>
prev parent reply other threads:[~2024-06-14 18:52 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-14 17:30 [PATCH] ipmi: ssif_bmc: prevent integer overflow on 32bit systems Dan Carpenter
2024-06-14 18:52 ` Corey Minyard [this message]
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=ZmyRVQzcIbDwgnP9@mail.minyard.net \
--to=corey@minyard.net \
--cc=dan.carpenter@linaro.org \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=minyard@acm.org \
--cc=openipmi-developer@lists.sourceforge.net \
--cc=quan@os.amperecomputing.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox