From: Kees Cook <kees@kernel.org>
To: Matt Corallo <yalbrymrb@mattcorallo.com>
Cc: Greg KH <gregkh@linuxfoundation.org>,
Guenter Roeck <linux@roeck-us.net>,
Wolfram Sang <wsa+renesas@sang-engineering.com>,
linux-hwmon@vger.kernel.org,
Linux I2C <linux-i2c@vger.kernel.org>,
security@kernel.org
Subject: Re: PMBus memory overflow
Date: Sun, 1 Mar 2026 21:09:46 -0800 [thread overview]
Message-ID: <202603012052.AE51FCB9@keescook> (raw)
In-Reply-To: <e1eaab50-3a21-4aee-9224-6a1bbf8cfa6e@mattcorallo.com>
On Sun, Mar 01, 2026 at 12:10:08PM -0500, Matt Corallo wrote:
>
>
> On 3/1/26 11:12 AM, Kees Cook wrote:
> >
> >
> > On March 1, 2026 5:46:33 AM PST, Matt Corallo <yalbrymrb@mattcorallo.com> wrote:
> > >
> > >
> > > On 6/9/25 9:57 AM, Matt Corallo wrote:
> > > >
> > > >
> > > > On 6/8/25 3:14 AM, Greg KH wrote:
> > > > > Have a pointer to that patch on lore for the maintainers involved to
> > > > > review? Note, we are in the middle of the merge window, so no new
> > > > > changes can be added to our trees until -rc1 is out.
> > > >
> > > > A proposed patch was posted by Guenter, and tested and confirmed that it fixes the issue by myself, at https://lore.kernel.org/linux-hwmon/284466fd-39e8-419e-8af5-41dbabb788af@roeck-us.net/ . Wolfram suggested this patch was acceptable at https://lore.kernel.org/linux-hwmon/aAtEydwUfVcE0XeA@shikoro/ but that's the last he chimed in on this issue.
> > >
> > > Any update on getting this patch applied Wolfram? Looks like the buffer overflow is still present on at least 6.18.
> >
> > Looking at the code, I think probably the best place to check would be in i2c_smbus_read_block_data() when it does a I2C_SMBUS_BLOCK_DATA cmd, since the callers are all already checking the returned status.
>
> I believe that's what the above patch does?
Sorry, I mis-pasted. I meant within i2c_smbus_xfer (rather than
i2c_smbus_read_block_data). Like:
diff --git a/drivers/i2c/i2c-core-smbus.c b/drivers/i2c/i2c-core-smbus.c
index 71eb1ef56f0c..fbca606ba35a 100644
--- a/drivers/i2c/i2c-core-smbus.c
+++ b/drivers/i2c/i2c-core-smbus.c
@@ -547,6 +547,10 @@ s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr,
command, protocol, data);
i2c_unlock_bus(adapter, I2C_LOCK_SEGMENT);
+ if (WARN_ON_ONCE(res == 0 && command == I2C_SMBUS_BLOCK_DATA &&
+ data->block[0] > I2C_SMBUS_BLOCK_MAX))
+ res = -E2BIG;
+
return res;
}
EXPORT_SYMBOL(i2c_smbus_xfer);
--
Kees Cook
next prev parent reply other threads:[~2026-03-02 5:09 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <985cd95f-155b-4b8a-9fe7-59938d0c2b8f@mattcorallo.com>
[not found] ` <9e01e3ec-3ac5-4d83-a065-d00d568b9cc7@roeck-us.net>
[not found] ` <e030f44f-11ee-4739-b9d3-c22883bbbf02@mattcorallo.com>
[not found] ` <336f298f-497f-4dd9-97ee-50b81221be06@roeck-us.net>
[not found] ` <1b1eccff-a306-4e17-a6bf-fd3203c61605@mattcorallo.com>
[not found] ` <1edc8396-535d-4cdf-bbb7-11d559d4c257@roeck-us.net>
[not found] ` <cfc2b3c8-3f94-407a-a4d5-e7d81686eb2d@mattcorallo.com>
[not found] ` <84258b48-03b5-4129-bed5-f8200996f2eb@roeck-us.net>
[not found] ` <fcfd78d2-238d-4b68-b6ec-5ee809c4ef08@mattcorallo.com>
[not found] ` <eb5796e8-de76-4e91-9192-65b9af7a4d49@roeck-us.net>
[not found] ` <284466fd-39e8-419e-8af5-41dbabb788af@roeck-us.net>
[not found] ` <d5abeb59-8286-425c-9f78-cd60b0e26ada@mattcorallo.com>
2025-04-20 3:03 ` PMBus memory overflow Guenter Roeck
2025-04-25 8:16 ` Wolfram Sang
2025-05-05 20:41 ` Matt Corallo
2025-05-05 20:50 ` Guenter Roeck
2025-05-05 20:57 ` Matt Corallo
2025-05-06 1:39 ` Guenter Roeck
2025-06-06 20:57 ` Matt Corallo
2025-06-07 8:19 ` Greg KH
2025-06-07 13:25 ` Matt Corallo
2025-06-08 7:14 ` Greg KH
2025-06-09 13:57 ` Matt Corallo
2026-03-01 13:46 ` Matt Corallo
2026-03-01 16:12 ` Kees Cook
2026-03-01 17:10 ` Matt Corallo
2026-03-01 20:17 ` Guenter Roeck
2026-03-02 5:09 ` Kees Cook [this message]
2026-03-02 5:19 ` Guenter Roeck
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=202603012052.AE51FCB9@keescook \
--to=kees@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=security@kernel.org \
--cc=wsa+renesas@sang-engineering.com \
--cc=yalbrymrb@mattcorallo.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