All of lore.kernel.org
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Denis Benato" <denis.benato@linux.dev>
Cc: dmitry.torokhov@gmail.com, linux-input@vger.kernel.org
Subject: Re: [PATCH v5 04/13] HID: asus: add gamepad configuration
Date: Fri, 04 Sep 2026 15:21:28 +0000	[thread overview]
Message-ID: <20260904152129.23ADB1F00A3D@smtp.kernel.org> (raw)
In-Reply-To: <20260904145845.184887-5-denis.benato@linux.dev>

Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [High] State initialization and restoration logic errors corrupt user settings on re-probe.
- [Medium] Sysfs attributes are exposed to userspace before the device data is fully linked, causing spurious -ENODEV errors.
--

commit 396e8f687c336ca0b0f9ddcf54fbc96925c6f82f
Author: Denis Benato <denis.benato@linux.dev>

    HID: asus: add gamepad configuration
    
    Add the base configuration structures for the gamepad configuration,
    detect capabilities and initialize the device in a known state.

> diff --git a/drivers/hid/hid-asus.c b/drivers/hid/hid-asus.c
> index 129cec7e27ec4..4714ebb4a5435 100644
> --- a/drivers/hid/hid-asus.c
> +++ b/drivers/hid/hid-asus.c
[ ... ]
> @@ -610,6 +662,272 @@ static u8 *ally_alloc_cmd(u8 cmd, const u8 *payload, u8 payload_size)
[ ... ]
> +	for (sysfs_i = 0; sysfs_i < ARRAY_SIZE(ally_attr_groups); sysfs_i++) {
> +		ret = sysfs_create_group(&hdev->dev.kobj,
> +					 &ally_attr_groups[sysfs_i]);
> +		if (ret < 0) {
> +			hid_err(hdev, "Failed to create sysfs group '%s': %d\n",
> +				ally_attr_groups[sysfs_i].name ?: "", ret);
> +			goto ally_config_create_sysfs_err;
> +		}
> +	}

[Severity: Medium]
Will this expose sysfs attributes to userspace before the device data is fully
linked?

Since ally_drvdata.config is not assigned until later in hid_asus_ally_probe(),
if a userspace tool like udev reads an attribute in this window,
ally_get_config() will return NULL, causing a spurious -ENODEV error.

> +
> +	/* So far the only hardware this is supported is the Ally 1 */
> +	if (cfg->xbox_controller_support) {
> +		ret = ally_set_xbox_controller(hdev, ally, cfg, true);
> +		if (ret < 0)
> +			hid_warn(hdev, "Failed to set default Xbox controller mode: %d\n",
> +				ret);
> +	}
> +
> +	cfg->initialized = true;

[Severity: High]
Does this code unconditionally overwrite the user's previously saved preference
back to true on every probe?

Because this block is outside the `if (!cfg->initialized)` check above, it
seems it will force the hardware and software state to true whenever the device
suspends/resumes or re-enumerates, destroying any saved settings.

[ ... ]
> @@ -882,6 +1201,20 @@ static int hid_asus_ally_init(struct hid_device *hdev, struct ally_handheld *all
>  	if (ret < 0)
>  		hid_err(hdev, "Ally failed to init force-feedback off: %d\n", ret);
>  
> +	cfg = ally_get_config(ally);
> +	if (!cfg)
> +		return 0;

[Severity: High]
Will this silently fail to restore cached user settings to the hardware during
probe?

Because hid_asus_ally_init() is called before ally_drvdata.config is published
in hid_asus_ally_probe(), ally_get_config() will return NULL here, causing it
to bail out early.

> +
> +	/* The MCU may have just been reset: restore the cached state. */
> +	guard(mutex)(&cfg->config_mutex);
> +
> +	if (cfg->xbox_controller_enabled) {
> +		ret = ally_set_xbox_controller(hdev, ally, cfg, true);
> +		if (ret < 0)
> +			hid_warn(hdev, "Failed to restore Xbox controller mode: %d\n",
> +				 ret);
> +	}
> +
>  	return 0;
>  }

[Severity: High]
If the hardware reset to true but the user had disabled the Xbox controller
(cfg->xbox_controller_enabled == false), does this incorrectly fail to restore
the state to false?

It looks like this code only restores the state if it was true, and hardcodes
the value passed to ally_set_xbox_controller() to true instead of passing
cfg->xbox_controller_enabled.

[ ... ]
> @@ -1023,6 +1360,14 @@ static struct ally_handheld *hid_asus_ally_probe(struct hid_device *hdev)
>  			return ERR_PTR(ret);
>  		}
>  
> +		ally_cfg = ally_config_create(hdev, &ally_drvdata);
> +		if (IS_ERR(ally_cfg)) {
> +			hid_err(hdev, "Failed to create Ally cfg: %ld\n",
> +				PTR_ERR(ally_cfg));
> +			ally_put_udev_if_orphaned();
> +			return ERR_PTR(PTR_ERR(ally_cfg));
> +		}
> +
>  		ret = hid_asus_ally_init(hdev, &ally_drvdata);
>  		if (ret < 0) {
>  			ally_put_udev_if_orphaned();
> @@ -1030,6 +1375,7 @@ static struct ally_handheld *hid_asus_ally_probe(struct hid_device *hdev)
>  		}
>  
>  		spin_lock_irqsave(&ally_data_lock, flags);
> +		ally_drvdata.config = ally_cfg;

[Severity: High]
This publishes the configuration pointer to the shared state after
hid_asus_ally_init() has already run, which hides it from the initialization
function above.

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260904145845.184887-1-denis.benato@linux.dev?part=4

  reply	other threads:[~2026-09-04 15:21 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-04 14:58 [PATCH v5 00/13] HID: asus: add support for ROG Ally handhelds Denis Benato
2026-09-04 14:58 ` [PATCH v5 01/13] HID: asus: do not send keyboard init reports to touchpads Denis Benato
2026-09-04 14:58 ` [PATCH v5 02/13] HID: asus: reinitialize the device after exiting a sleep state Denis Benato
2026-09-04 14:58 ` [PATCH v5 03/13] HID: asus: add support for ROG Ally handhelds Denis Benato
2026-09-04 14:58 ` [PATCH v5 04/13] HID: asus: add gamepad configuration Denis Benato
2026-09-04 15:21   ` sashiko-bot [this message]
2026-09-04 14:58 ` [PATCH v5 05/13] HID: asus: add vibration strength configuration Denis Benato
2026-09-04 15:39   ` sashiko-bot
2026-09-04 14:58 ` [PATCH v5 06/13] HID: asus: add joysticks inner and outer range configuration Denis Benato
2026-09-04 15:25   ` sashiko-bot
2026-09-04 14:58 ` [PATCH v5 07/13] HID: asus: add triggers " Denis Benato
2026-09-04 14:58 ` [PATCH v5 08/13] HID: asus: add joysticks anti-deadzone configuration Denis Benato
2026-09-04 14:58 ` [PATCH v5 09/13] HID: asus: add support for response curve Denis Benato
2026-09-04 15:33   ` sashiko-bot
2026-09-04 14:58 ` [PATCH v5 10/13] HID: asus: add support to force feedback Denis Benato
2026-09-04 14:58 ` [PATCH v5 11/13] HID: asus: add support for gamepad mode Denis Benato
2026-09-04 14:58 ` [PATCH v5 12/13] HID: asus: add support for turbo buttons Denis Benato
2026-09-04 16:02   ` sashiko-bot
2026-09-04 14:58 ` [PATCH v5 13/13] HID: asus: add support for btn remapping Denis Benato
2026-09-04 15:46   ` sashiko-bot

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=20260904152129.23ADB1F00A3D@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=denis.benato@linux.dev \
    --cc=dmitry.torokhov@gmail.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 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.