diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2024-08-27 17:19:29 +0900 |
---|---|---|
committer | Benjamin Tissoires <bentiss@kernel.org> | 2024-08-29 10:39:37 +0200 |
commit | b31c9d9dc343146b9f4ce67b4eee748c49296e99 (patch) | |
tree | 012f5d5309ac4ea6e605d5aa7b9ab0363ac2d365 /include/linux/hidraw.h | |
parent | 6e4436539ae182dc86d57d13849862bcafaa4709 (diff) | |
download | linux-b31c9d9dc343146b9f4ce67b4eee748c49296e99.tar.gz linux-b31c9d9dc343146b9f4ce67b4eee748c49296e99.tar.bz2 linux-b31c9d9dc343146b9f4ce67b4eee748c49296e99.zip |
HID: hidraw: add HIDIOCREVOKE ioctl
There is a need for userspace applications to open HID devices directly.
Use-cases include configuration of gaming mice or direct access to
joystick devices. The latter is currently handled by the uaccess tag in
systemd, other devices include more custom/local configurations or just
sudo.
A better approach is what we already have for evdev devices: give the
application a file descriptor and revoke it when it may no longer access
that device.
This patch is the hidraw equivalent to the EVIOCREVOKE ioctl, see
commit c7dc65737c9a ("Input: evdev - add EVIOCREVOKE ioctl") for full
details.
An MR for systemd-logind has been filed here:
https://github.com/systemd/systemd/pull/33970
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Link: https://patch.msgid.link/20240827-hidraw-revoke-v5-1-d004a7451aea@kernel.org
Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
Diffstat (limited to 'include/linux/hidraw.h')
-rw-r--r-- | include/linux/hidraw.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/hidraw.h b/include/linux/hidraw.h index cd67f4ca5599..18fd30a288de 100644 --- a/include/linux/hidraw.h +++ b/include/linux/hidraw.h @@ -32,6 +32,7 @@ struct hidraw_list { struct hidraw *hidraw; struct list_head node; struct mutex read_mutex; + bool revoked; }; #ifdef CONFIG_HIDRAW |