From: sashiko-bot@kernel.org
To: "Hans de Goede" <johannes.goede@oss.qualcomm.com>
Cc: linux-input@vger.kernel.org, dmitry.torokhov@gmail.com
Subject: Re: [PATCH v2] Input: soc_button_array - fix MS Surface Pro 11 probe failure
Date: Wed, 09 Sep 2026 09:14:39 +0000 [thread overview]
Message-ID: <20260909091440.3384C1F00A3A@smtp.kernel.org> (raw)
In-Reply-To: <20260909090721.20869-1-johannes.goede@oss.qualcomm.com>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
New issues:
- [High] The local variable `irq` is evaluated without being initialized when `soc_button_lookup_gpio()` returns an error other than `-EPROBE_DEFER` (e.g., `-ENOENT`).
Pre-existing issues:
- [High] Missing bounds check on `btns_desc->package.count` before accessing the first element of the ACPI package.
--
commit 71e6e56f2553b9410815c77e8b20ed9b2b9a2d37
Author: Hans de Goede <johannes.goede@oss.qualcomm.com>
Input: soc_button_array - fix MS Surface Pro 11 probe failure
This commit alters the error handling in soc_button_device_create() to
propagate EPROBE_DEFER on platforms other than older Bay Trail and Cherry
Trail tablets. This allows the MS Surface Pro 11 to correctly retry probing
when racing with the GPIO driver.
Link: https://lore.kernel.org/lkml/20260830141355.55898-1-lsa.uz@pm.me/
> diff --git a/drivers/input/misc/soc_button_array.c b/drivers/input/misc/soc_button_array.c
> index b8cad415c62ca..f838b7d72e49f 100644
> --- a/drivers/input/misc/soc_button_array.c
> +++ b/drivers/input/misc/soc_button_array.c
[ ... ]
> @@ -191,8 +192,9 @@ soc_button_device_create(struct platform_device *pdev,
> error = soc_button_lookup_gpio(&pdev->dev, info->acpi_index, &gpio, &irq);
> if (error || irq < 0) {
> /*
> - * Skip GPIO if not present. Note we deliberately
> - * ignore -EPROBE_DEFER errors here. On some devices
> + * Propagate -EPROBE_DEFER, skip button on other errors.
> + *
> + * -EPROBE_DEFER is ignored on Bay & Cherry Trail. Here
> * Intel is using so called virtual GPIOs which are not
> * GPIOs at all but some way for AML code to check some
> * random status bits without need a custom opregion.
> @@ -201,6 +203,12 @@ soc_button_device_create(struct platform_device *pdev,
> * we do not have a driver for these so they will never
> * show up, therefore we ignore -EPROBE_DEFER.
> */
> + if ((error == -EPROBE_DEFER || irq == -EPROBE_DEFER) &&
[Severity: High]
Can this evaluate the uninitialized local variable irq?
When soc_button_lookup_gpio() encounters an error other than -EPROBE_DEFER,
it returns early without setting irq_ret:
soc_button_lookup_gpio()
desc = gpiod_get_index(dev, NULL, acpi_index, GPIOD_ASIS);
if (IS_ERR(desc))
return PTR_ERR(desc);
If error is -ENOENT, the short-circuiting of the || operator means the
condition evaluates irq == -EPROBE_DEFER while irq is uninitialized stack
memory.
This will trigger KMSAN warnings, and if the uninitialized memory happens to
contain -517 (-EPROBE_DEFER), it would falsely abort the entire probe instead
of just skipping the missing button.
> + !(soc_intel_is_byt() || soc_intel_is_cht())) {
> + error = -EPROBE_DEFER;
> + goto err_free_mem;
> + }
> +
> continue;
> }
This is a pre-existing issue, but does soc_button_get_button_info() lack a
bounds check on the ACPI package element count?
soc_button_get_button_info()
/* The first package describes the collection */
el0 = &btns_desc->package.elements[0];
if (el0->type == ACPI_TYPE_PACKAGE &&
If the system provides a malformed ACPI table with an empty package where
btns_desc->package.count is 0, this will access out-of-bounds memory or
dereference a NULL pointer, potentially causing a panic during boot.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260909090721.20869-1-johannes.goede@oss.qualcomm.com?part=1
prev parent reply other threads:[~2026-09-09 9:14 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-09 9:07 [PATCH v2] Input: soc_button_array - fix MS Surface Pro 11 probe failure Hans de Goede
2026-09-09 9:14 ` sashiko-bot [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=20260909091440.3384C1F00A3A@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=dmitry.torokhov@gmail.com \
--cc=johannes.goede@oss.qualcomm.com \
--cc=linux-input@vger.kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
/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