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 09/13] HID: asus: add support for response curve
Date: Fri, 04 Sep 2026 15:33:05 +0000	[thread overview]
Message-ID: <20260904153306.73C521F00A3D@smtp.kernel.org> (raw)
In-Reply-To: <20260904145845.184887-10-denis.benato@linux.dev>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] Unvalidated and unapplied response curve staging state is written directly to the hardware during device resume or initialization.
--

commit 6cddd64369499945295736ad70e3538bc1b70719
Author: Denis Benato <denis.benato@linux.dev>

HID: asus: add support for response curve

This commit adds support for configuring the response curve of the joysticks
on ROG Ally devices by exposing sysfs attributes.

> diff --git a/drivers/hid/hid-asus.c b/drivers/hid/hid-asus.c
> index cddb72973bae7..5c3749a914b7f 100644
> --- a/drivers/hid/hid-asus.c
> +++ b/drivers/hid/hid-asus.c

[ ... ]

> @@ -1867,6 +1890,396 @@ static struct device_attribute dev_attr_right_trigger_range_upper_limit =
> +static int response_curve_apply(struct ally_handheld *ally,
> +				struct hid_device *hdev,
> +				struct ally_config *cfg, bool is_left)
> +{
> +	struct ally_joystick_resp_curve curve;
> +	int ret;
> +
> +	guard(mutex)(&cfg->config_mutex);
> +
> +	if (!cfg->resp_curve_support)
> +		return -EOPNOTSUPP;
> +
> +	curve = is_left ? cfg->left_curve : cfg->right_curve;
> +
> +	if (!(curve.entry_1.move < curve.entry_2.move &&
> +	      curve.entry_2.move < curve.entry_3.move &&
> +	      curve.entry_3.move < curve.entry_4.move))
> +		return -EINVAL;

[ ... ]

> +static ssize_t response_curve_move_store(struct device *dev,
> +					 const char *buf, size_t count,
> +					 struct ally_config *cfg, bool is_left,
> +					 unsigned int idx)
> +{
> +	struct ally_joystick_resp_curve *curve;
> +	u8 value;
> +	int ret;
> +
> +	ret = kstrtou8(buf, 10, &value);
> +	if (ret)
> +		return ret;
> +
> +	if (value > 100)
> +		return -EINVAL;
> +
> +	guard(mutex)(&cfg->config_mutex);
> +
> +	if (!cfg->resp_curve_support)
> +		return -EOPNOTSUPP;
> +
> +	curve = is_left ? &cfg->left_curve : &cfg->right_curve;
> +
> +	switch (idx) {
> +	case 1:
> +		curve->entry_1.move = value;
> +		break;

[Severity: Medium]
Since this modifies the shared configuration state without validating it
against other curve entries, is it possible for the curve to be left in an
invalid, non-monotonic state?

If a user writes invalid values without successfully calling
response_curve_apply(), this unvalidated state remains in cfg->left_curve.

[ ... ]

> @@ -2425,6 +2876,22 @@ static int hid_asus_ally_init(struct hid_device *hdev, struct ally_handheld *all
>  					 ret);
>  	}
>  
> +	if (cfg->resp_curve_support) {
> +		ret = ally_set_joystick_resp_curve(ally, hdev, JOYSTICK_LEFT,
> +							   &cfg->left_curve);

[Severity: Medium]
Could this unconditional push to the hardware during initialization or resume
send an invalid response curve to the MCU?

Because response_curve_move_store() directly modifies cfg->left_curve
without ensuring the entries are strictly monotonic, this path bypasses the
validation checks present in response_curve_apply().

Sending unvalidated hardware state could result in unexpected device
behavior or garbage joystick data.

Would it be better to stage the sysfs changes in a separate buffer, or
validate the curve here before writing it to the device?

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

  reply	other threads:[~2026-09-04 15:33 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
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 [this message]
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=20260904153306.73C521F00A3D@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.