From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Emre Cecanpunar <emreleno@gmail.com>
Cc: platform-driver-x86@vger.kernel.org,
Hans de Goede <hansg@kernel.org>,
LKML <linux-kernel@vger.kernel.org>,
krishna.chomal108@gmail.com, radheykalra901@gmail.com,
edip@medip.dev, hello@kursatabayli.dev, mjg59@srcf.ucam.org,
akpm@linux-foundation.org, jorge.lopez2@hp.com, jes965@nyu.edu,
mario.limonciello@amd.com, julien.robin28@free.fr
Subject: Re: [PATCH 1/5] platform/x86: hp-wmi: validate WMI response header size
Date: Tue, 21 Jul 2026 18:42:33 +0300 (EEST) [thread overview]
Message-ID: <70687f1c-a0e0-8df8-d2d9-64fafe96a1be@linux.intel.com> (raw)
In-Reply-To: <dd9b30907b64b97b5e0ffb8f3e7440070192ce9c.1784195117.git.emreleno@gmail.com>
On Thu, 16 Jul 2026, Emre Cecanpunar wrote:
> hp_wmi_perform_query() reads struct bios_return without checking that
> the firmware response buffer is large enough to contain it. A truncated
> response can therefore cause an out-of-bounds read.
>
> Reject responses shorter than the mandatory header before accessing its
> fields or calculating the payload offset.
>
> Fixes: 62ec30d45ecb ("misc: add HP WMI laptop extras driver")
> Signed-off-by: Emre Cecanpunar <emreleno@gmail.com>
> ---
> drivers/platform/x86/hp/hp-wmi.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/drivers/platform/x86/hp/hp-wmi.c b/drivers/platform/x86/hp/hp-wmi.c
> index 5353d997d272..205a6020e9c5 100644
> --- a/drivers/platform/x86/hp/hp-wmi.c
> +++ b/drivers/platform/x86/hp/hp-wmi.c
> @@ -670,6 +670,11 @@ static int hp_wmi_perform_query(int query, enum hp_wmi_command command,
> ret = -EINVAL;
> goto out_free;
> }
> + if (obj->buffer.length < sizeof(*bios_return)) {
> + pr_warn("query 0x%x returned a short buffer\n", query);
> + ret = -EINVAL;
> + goto out_free;
> + }
Hi,
This driver is using a deprecated WMI API. The new API might be able to do
size checks for you so the correct course of action seems to modernize
this driver instead.
IIRC, I have recently mentioned this same thing to somebody else so
somebody might already be cooking a modernization patch.
--
i.
next prev parent reply other threads:[~2026-07-21 15:42 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-16 9:54 [PATCH 0/5] platform/x86: hp-wmi: Fix WMI error handling Emre Cecanpunar
2026-07-16 9:54 ` [PATCH 1/5] platform/x86: hp-wmi: validate WMI response header size Emre Cecanpunar
2026-07-21 15:42 ` Ilpo Järvinen [this message]
2026-07-16 9:54 ` [PATCH 2/5] platform/x86: hp-wmi: handle firmware errors in tablet mode query Emre Cecanpunar
2026-07-21 15:50 ` Ilpo Järvinen
2026-07-16 9:54 ` [PATCH 3/5] platform/x86: hp-wmi: handle errors in the OMEN key event Emre Cecanpunar
2026-07-21 15:52 ` Ilpo Järvinen
2026-07-16 9:54 ` [PATCH 4/5] platform/x86: hp-wmi: normalize GPU thermal mode errors Emre Cecanpunar
2026-07-21 15:57 ` Ilpo Järvinen
2026-07-16 9:54 ` [PATCH 5/5] platform/x86: hp-wmi: report fan speed command failures Emre Cecanpunar
2026-07-21 15:58 ` Ilpo Järvinen
2026-07-21 16:14 ` [PATCH 0/5] platform/x86: hp-wmi: Fix WMI error handling Emre Cecanpunar
2026-07-21 16:15 ` Emre Cecanpunar
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=70687f1c-a0e0-8df8-d2d9-64fafe96a1be@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=akpm@linux-foundation.org \
--cc=edip@medip.dev \
--cc=emreleno@gmail.com \
--cc=hansg@kernel.org \
--cc=hello@kursatabayli.dev \
--cc=jes965@nyu.edu \
--cc=jorge.lopez2@hp.com \
--cc=julien.robin28@free.fr \
--cc=krishna.chomal108@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mario.limonciello@amd.com \
--cc=mjg59@srcf.ucam.org \
--cc=platform-driver-x86@vger.kernel.org \
--cc=radheykalra901@gmail.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
all inboxes | Powered by JetHome®