From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Ginger <ginger.jzllee@gmail.com>
Cc: linux-input@vger.kernel.org
Subject: Re: [bug report] Potential atomicity bug in drivers/input/joydev.c, between joydev_0x_read() and joydev_ioctl_common()
Date: Mon, 1 Jun 2026 10:22:07 -0700 [thread overview]
Message-ID: <ah2-X1_innZZTAMZ@google.com> (raw)
In-Reply-To: <CAGp+u1YARE-sqwuNtbpG7E4TO-Nt1KQEeWiHn6pjoLz5kmt8HQ@mail.gmail.com>
Hi Ginger,
On Mon, Jun 01, 2026 at 03:07:05PM +0800, Ginger wrote:
> Dear Linux kernel maintainers,
>
> My research-based static analyzer found a potential atomicity bug
> within the 'drivers/input' subsystem, more specifically, in
> 'drivers/input/joydev.c'.
>
> This potential issue is present as of git commit
> eb3f4b7426cfd2b79d65b7d37155480b32259a11 of the mainline kernel.
>
> Potential concurrent triggering executions:
> T0:
> joydev_0x_read
> --> spin_lock_irq(&input->event_lock);
> --> read from joydev->abs
> --> spin_unlock_irq(&input->event_lock);
>
> T1:
> joydev_ioctl_common
> --> case JSIOCSCORR:
> --> write to joydev->abs[i] (no unlocked)
>
> The above trace is meant to demonstrate an illustrative example of the issue:
> IMHO, in 'joydev_0x_read', the 'input->event_lock' is adopted to
> serialize the read
> accesses to joydev's fields like 'abs' and 'keypam' or input's fields
> like 'input->key.
> However, in either case, the write-side accesses to these fields are
> not similarly
> serialized.
Yes, there is lack of locking in joydev. Some of this might be OK (if
we prevent tearing on reads/writes) since the data may actually be
obsolete immediately after we read it, while in many places we
actually do need consistency, especially when we adjust key and axis
maps.
Thanks.
--
Dmitry
next prev parent reply other threads:[~2026-06-01 17:22 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-01 7:07 [bug report] Potential atomicity bug in drivers/input/joydev.c, between joydev_0x_read() and joydev_ioctl_common() Ginger
2026-06-01 17:22 ` Dmitry Torokhov [this message]
2026-06-02 1:50 ` Ginger
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=ah2-X1_innZZTAMZ@google.com \
--to=dmitry.torokhov@gmail.com \
--cc=ginger.jzllee@gmail.com \
--cc=linux-input@vger.kernel.org \
/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.