mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 00:10:27 +07:00
c5bf68fe0c
Using scripts/coccinelle/api/stream_open.cocci added in10dce8af34
("fs: stream_open - opener for stream-like files so that read and write can run simultaneously without deadlock"), search and convert to stream_open all in-kernel nonseekable_open users for which read and write actually do not depend on ppos and where there is no other methods in file_operations which assume @offset access. I've verified each generated change manually - that it is correct to convert - and each other nonseekable_open instance left - that it is either not correct to convert there, or that it is not converted due to current stream_open.cocci limitations. The script also does not convert files that should be valid to convert, but that currently have .llseek = noop_llseek or generic_file_llseek for unknown reason despite file being opened with nonseekable_open (e.g. drivers/input/mousedev.c) Among cases converted 14 were potentially vulnerable to read vs write deadlock (see details in10dce8af34
): drivers/char/pcmcia/cm4000_cs.c:1685:7-23: ERROR: cm4000_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/gnss/core.c:45:1-17: ERROR: gnss_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/hid/uhid.c:635:1-17: ERROR: uhid_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/infiniband/core/user_mad.c:988:1-17: ERROR: umad_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/input/evdev.c:527:1-17: ERROR: evdev_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/input/misc/uinput.c:401:1-17: ERROR: uinput_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/isdn/capi/capi.c:963:8-24: ERROR: capi_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/leds/uleds.c:77:1-17: ERROR: uleds_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/media/rc/lirc_dev.c:198:1-17: ERROR: lirc_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/s390/char/fs3270.c:488:1-17: ERROR: fs3270_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/usb/misc/ldusb.c:310:1-17: ERROR: ld_usb_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/xen/evtchn.c:667:8-24: ERROR: evtchn_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. net/batman-adv/icmp_socket.c:80:1-17: ERROR: batadv_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. net/rfkill/core.c:1146:8-24: ERROR: rfkill_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. and the rest were just safe to convert to stream_open because their read and write do not use ppos at all and corresponding file_operations do not have methods that assume @offset file access(*): arch/powerpc/platforms/52xx/mpc52xx_gpt.c:631:8-24: WARNING: mpc52xx_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_ibox_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_ibox_stat_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_mbox_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_mbox_stat_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_wbox_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_wbox_stat_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. arch/um/drivers/harddog_kern.c:88:8-24: WARNING: harddog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. arch/x86/kernel/cpu/microcode/core.c:430:33-49: WARNING: microcode_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/char/ds1620.c:215:8-24: WARNING: ds1620_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/char/dtlk.c:301:1-17: WARNING: dtlk_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/char/ipmi/ipmi_watchdog.c:840:9-25: WARNING: ipmi_wdog_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/char/pcmcia/scr24x_cs.c:95:8-24: WARNING: scr24x_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/char/tb0219.c:246:9-25: WARNING: tb0219_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/firewire/nosy.c:306:8-24: WARNING: nosy_ops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/hwmon/fschmd.c:840:8-24: WARNING: watchdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/hwmon/w83793.c:1344:8-24: WARNING: watchdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/infiniband/core/ucma.c:1747:8-24: WARNING: ucma_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/infiniband/core/ucm.c:1178:8-24: WARNING: ucm_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/infiniband/core/uverbs_main.c:1086:8-24: WARNING: uverbs_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/input/joydev.c:282:1-17: WARNING: joydev_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/pci/switch/switchtec.c:393:1-17: WARNING: switchtec_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/platform/chrome/cros_ec_debugfs.c:135:8-24: WARNING: cros_ec_console_log_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/rtc/rtc-ds1374.c:470:9-25: WARNING: ds1374_wdt_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/rtc/rtc-m41t80.c:805:9-25: WARNING: wdt_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/s390/char/tape_char.c:293:2-18: WARNING: tape_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/s390/char/zcore.c:194:8-24: WARNING: zcore_reipl_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/s390/crypto/zcrypt_api.c:528:8-24: WARNING: zcrypt_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/spi/spidev.c:594:1-17: WARNING: spidev_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/staging/pi433/pi433_if.c:974:1-17: WARNING: pi433_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/acquirewdt.c:203:8-24: WARNING: acq_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/advantechwdt.c:202:8-24: WARNING: advwdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/alim1535_wdt.c:252:8-24: WARNING: ali_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/alim7101_wdt.c:217:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ar7_wdt.c:166:8-24: WARNING: ar7_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/at91rm9200_wdt.c:113:8-24: WARNING: at91wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ath79_wdt.c:135:8-24: WARNING: ath79_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/bcm63xx_wdt.c:119:8-24: WARNING: bcm63xx_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/cpu5wdt.c:143:8-24: WARNING: cpu5wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/cpwd.c:397:8-24: WARNING: cpwd_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/eurotechwdt.c:319:8-24: WARNING: eurwdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/f71808e_wdt.c:528:8-24: WARNING: watchdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/gef_wdt.c:232:8-24: WARNING: gef_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/geodewdt.c:95:8-24: WARNING: geodewdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ib700wdt.c:241:8-24: WARNING: ibwdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ibmasr.c:326:8-24: WARNING: asr_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/indydog.c:80:8-24: WARNING: indydog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/intel_scu_watchdog.c:307:8-24: WARNING: intel_scu_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/iop_wdt.c:104:8-24: WARNING: iop_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/it8712f_wdt.c:330:8-24: WARNING: it8712f_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ixp4xx_wdt.c:68:8-24: WARNING: ixp4xx_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ks8695_wdt.c:145:8-24: WARNING: ks8695wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/m54xx_wdt.c:88:8-24: WARNING: m54xx_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/machzwd.c:336:8-24: WARNING: zf_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/mixcomwd.c:153:8-24: WARNING: mixcomwd_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/mtx-1_wdt.c:121:8-24: WARNING: mtx1_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/mv64x60_wdt.c:136:8-24: WARNING: mv64x60_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/nuc900_wdt.c:134:8-24: WARNING: nuc900wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/nv_tco.c:164:8-24: WARNING: nv_tco_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pc87413_wdt.c:289:8-24: WARNING: pc87413_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd.c:698:8-24: WARNING: pcwd_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd.c:737:8-24: WARNING: pcwd_temp_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd_pci.c:581:8-24: WARNING: pcipcwd_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd_pci.c:623:8-24: WARNING: pcipcwd_temp_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd_usb.c:488:8-24: WARNING: usb_pcwd_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd_usb.c:527:8-24: WARNING: usb_pcwd_temperature_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pika_wdt.c:121:8-24: WARNING: pikawdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pnx833x_wdt.c:119:8-24: WARNING: pnx833x_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/rc32434_wdt.c:153:8-24: WARNING: rc32434_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/rdc321x_wdt.c:145:8-24: WARNING: rdc321x_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/riowd.c:79:1-17: WARNING: riowd_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sa1100_wdt.c:62:8-24: WARNING: sa1100dog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sbc60xxwdt.c:211:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sbc7240_wdt.c:139:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sbc8360.c:274:8-24: WARNING: sbc8360_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sbc_epx_c3.c:81:8-24: WARNING: epx_c3_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sbc_fitpc2_wdt.c:78:8-24: WARNING: fitpc2_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sb_wdog.c:108:1-17: WARNING: sbwdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sc1200wdt.c:181:8-24: WARNING: sc1200wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sc520_wdt.c:261:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sch311x_wdt.c:319:8-24: WARNING: sch311x_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/scx200_wdt.c:105:8-24: WARNING: scx200_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/smsc37b787_wdt.c:369:8-24: WARNING: wb_smsc_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/w83877f_wdt.c:227:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/w83977f_wdt.c:301:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wafer5823wdt.c:200:8-24: WARNING: wafwdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/watchdog_dev.c:828:8-24: WARNING: watchdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdrtas.c:379:8-24: WARNING: wdrtas_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdrtas.c:445:8-24: WARNING: wdrtas_temp_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt285.c:104:1-17: WARNING: watchdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt977.c:276:8-24: WARNING: wdt977_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt.c:424:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt.c:484:8-24: WARNING: wdt_temp_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt_pci.c:464:8-24: WARNING: wdtpci_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt_pci.c:527:8-24: WARNING: wdtpci_temp_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. net/batman-adv/log.c:105:1-17: WARNING: batadv_log_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. sound/core/control.c:57:7-23: WARNING: snd_ctl_f_ops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. sound/core/rawmidi.c:385:7-23: WARNING: snd_rawmidi_f_ops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. sound/core/seq/seq_clientmgr.c:310:7-23: WARNING: snd_seq_f_ops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. sound/core/timer.c:1428:7-23: WARNING: snd_timer_f_ops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. One can also recheck/review the patch via generating it with explanation comments included via $ make coccicheck MODE=patch COCCI=scripts/coccinelle/api/stream_open.cocci SPFLAGS="-D explain" (*) This second group also contains cases with read/write deadlocks that stream_open.cocci don't yet detect, but which are still valid to convert to stream_open since ppos is not used. For example drivers/pci/switch/switchtec.c calls wait_for_completion_interruptible() in its .read, but stream_open.cocci currently detects only "wait_event*" as blocking. Cc: Michael Kerrisk <mtk.manpages@gmail.com> Cc: Yongzhi Pan <panyongzhi@gmail.com> Cc: Jonathan Corbet <corbet@lwn.net> Cc: David Vrabel <david.vrabel@citrix.com> Cc: Juergen Gross <jgross@suse.com> Cc: Miklos Szeredi <miklos@szeredi.hu> Cc: Tejun Heo <tj@kernel.org> Cc: Kirill Tkhai <ktkhai@virtuozzo.com> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Christoph Hellwig <hch@lst.de> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Julia Lawall <Julia.Lawall@lip6.fr> Cc: Nikolaus Rath <Nikolaus@rath.org> Cc: Han-Wen Nienhuys <hanwen@google.com> Cc: Anatolij Gustschin <agust@denx.de> Cc: Jeff Dike <jdike@addtoit.com> Cc: Richard Weinberger <richard@nod.at> Cc: Anton Ivanov <anton.ivanov@cambridgegreys.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: "James R. Van Zandt" <jrv@vanzandt.mv.com> Cc: Corey Minyard <minyard@acm.org> Cc: Harald Welte <laforge@gnumonks.org> Acked-by: Lubomir Rintel <lkundrak@v3.sk> [scr24x_cs] Cc: Stefan Richter <stefanr@s5r6.in-berlin.de> Cc: Johan Hovold <johan@kernel.org> Cc: David Herrmann <dh.herrmann@googlemail.com> Cc: Jiri Kosina <jikos@kernel.org> Cc: Benjamin Tissoires <benjamin.tissoires@redhat.com> Cc: Jean Delvare <jdelvare@suse.com> Acked-by: Guenter Roeck <linux@roeck-us.net> [watchdog/* hwmon/*] Cc: Rudolf Marek <r.marek@assembler.cz> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com> Cc: Karsten Keil <isdn@linux-pingi.de> Cc: Jacek Anaszewski <jacek.anaszewski@gmail.com> Cc: Pavel Machek <pavel@ucw.cz> Cc: Mauro Carvalho Chehab <mchehab@kernel.org> Cc: Kurt Schwemmer <kurt.schwemmer@microsemi.com> Acked-by: Logan Gunthorpe <logang@deltatee.com> [drivers/pci/switch/switchtec] Acked-by: Bjorn Helgaas <bhelgaas@google.com> [drivers/pci/switch/switchtec] Cc: Benson Leung <bleung@chromium.org> Acked-by: Enric Balletbo i Serra <enric.balletbo@collabora.com> [platform/chrome] Cc: Alessandro Zummo <a.zummo@towertech.it> Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com> [rtc/*] Cc: Mark Brown <broonie@kernel.org> Cc: Wim Van Sebroeck <wim@linux-watchdog.org> Cc: Florian Fainelli <f.fainelli@gmail.com> Cc: bcm-kernel-feedback-list@broadcom.com Cc: Wan ZongShun <mcuos.com@gmail.com> Cc: Zwane Mwaikambo <zwanem@gmail.com> Cc: Marek Lindner <mareklindner@neomailbox.ch> Cc: Simon Wunderlich <sw@simonwunderlich.de> Cc: Antonio Quartulli <a@unstable.cc> Cc: "David S. Miller" <davem@davemloft.net> Cc: Johannes Berg <johannes@sipsolutions.net> Cc: Jaroslav Kysela <perex@perex.cz> Cc: Takashi Iwai <tiwai@suse.com> Signed-off-by: Kirill Smelkov <kirr@nexedi.com>
1093 lines
24 KiB
C
1093 lines
24 KiB
C
/*
|
|
* User level driver support for input subsystem
|
|
*
|
|
* Heavily based on evdev.c by Vojtech Pavlik
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
* Author: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
|
|
*
|
|
* Changes/Revisions:
|
|
* 0.4 01/09/2014 (Benjamin Tissoires <benjamin.tissoires@redhat.com>)
|
|
* - add UI_GET_SYSNAME ioctl
|
|
* 0.3 09/04/2006 (Anssi Hannula <anssi.hannula@gmail.com>)
|
|
* - updated ff support for the changes in kernel interface
|
|
* - added MODULE_VERSION
|
|
* 0.2 16/10/2004 (Micah Dowty <micah@navi.cx>)
|
|
* - added force feedback support
|
|
* - added UI_SET_PHYS
|
|
* 0.1 20/06/2002
|
|
* - first public version
|
|
*/
|
|
#include <uapi/linux/uinput.h>
|
|
#include <linux/poll.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/miscdevice.h>
|
|
#include <linux/overflow.h>
|
|
#include <linux/input/mt.h>
|
|
#include "../input-compat.h"
|
|
|
|
#define UINPUT_NAME "uinput"
|
|
#define UINPUT_BUFFER_SIZE 16
|
|
#define UINPUT_NUM_REQUESTS 16
|
|
|
|
enum uinput_state { UIST_NEW_DEVICE, UIST_SETUP_COMPLETE, UIST_CREATED };
|
|
|
|
struct uinput_request {
|
|
unsigned int id;
|
|
unsigned int code; /* UI_FF_UPLOAD, UI_FF_ERASE */
|
|
|
|
int retval;
|
|
struct completion done;
|
|
|
|
union {
|
|
unsigned int effect_id;
|
|
struct {
|
|
struct ff_effect *effect;
|
|
struct ff_effect *old;
|
|
} upload;
|
|
} u;
|
|
};
|
|
|
|
struct uinput_device {
|
|
struct input_dev *dev;
|
|
struct mutex mutex;
|
|
enum uinput_state state;
|
|
wait_queue_head_t waitq;
|
|
unsigned char ready;
|
|
unsigned char head;
|
|
unsigned char tail;
|
|
struct input_event buff[UINPUT_BUFFER_SIZE];
|
|
unsigned int ff_effects_max;
|
|
|
|
struct uinput_request *requests[UINPUT_NUM_REQUESTS];
|
|
wait_queue_head_t requests_waitq;
|
|
spinlock_t requests_lock;
|
|
};
|
|
|
|
static int uinput_dev_event(struct input_dev *dev,
|
|
unsigned int type, unsigned int code, int value)
|
|
{
|
|
struct uinput_device *udev = input_get_drvdata(dev);
|
|
struct timespec64 ts;
|
|
|
|
udev->buff[udev->head].type = type;
|
|
udev->buff[udev->head].code = code;
|
|
udev->buff[udev->head].value = value;
|
|
ktime_get_ts64(&ts);
|
|
udev->buff[udev->head].input_event_sec = ts.tv_sec;
|
|
udev->buff[udev->head].input_event_usec = ts.tv_nsec / NSEC_PER_USEC;
|
|
udev->head = (udev->head + 1) % UINPUT_BUFFER_SIZE;
|
|
|
|
wake_up_interruptible(&udev->waitq);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* Atomically allocate an ID for the given request. Returns 0 on success. */
|
|
static bool uinput_request_alloc_id(struct uinput_device *udev,
|
|
struct uinput_request *request)
|
|
{
|
|
unsigned int id;
|
|
bool reserved = false;
|
|
|
|
spin_lock(&udev->requests_lock);
|
|
|
|
for (id = 0; id < UINPUT_NUM_REQUESTS; id++) {
|
|
if (!udev->requests[id]) {
|
|
request->id = id;
|
|
udev->requests[id] = request;
|
|
reserved = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
spin_unlock(&udev->requests_lock);
|
|
return reserved;
|
|
}
|
|
|
|
static struct uinput_request *uinput_request_find(struct uinput_device *udev,
|
|
unsigned int id)
|
|
{
|
|
/* Find an input request, by ID. Returns NULL if the ID isn't valid. */
|
|
if (id >= UINPUT_NUM_REQUESTS)
|
|
return NULL;
|
|
|
|
return udev->requests[id];
|
|
}
|
|
|
|
static int uinput_request_reserve_slot(struct uinput_device *udev,
|
|
struct uinput_request *request)
|
|
{
|
|
/* Allocate slot. If none are available right away, wait. */
|
|
return wait_event_interruptible(udev->requests_waitq,
|
|
uinput_request_alloc_id(udev, request));
|
|
}
|
|
|
|
static void uinput_request_release_slot(struct uinput_device *udev,
|
|
unsigned int id)
|
|
{
|
|
/* Mark slot as available */
|
|
spin_lock(&udev->requests_lock);
|
|
udev->requests[id] = NULL;
|
|
spin_unlock(&udev->requests_lock);
|
|
|
|
wake_up(&udev->requests_waitq);
|
|
}
|
|
|
|
static int uinput_request_send(struct uinput_device *udev,
|
|
struct uinput_request *request)
|
|
{
|
|
int retval;
|
|
|
|
retval = mutex_lock_interruptible(&udev->mutex);
|
|
if (retval)
|
|
return retval;
|
|
|
|
if (udev->state != UIST_CREATED) {
|
|
retval = -ENODEV;
|
|
goto out;
|
|
}
|
|
|
|
init_completion(&request->done);
|
|
|
|
/*
|
|
* Tell our userspace application about this new request
|
|
* by queueing an input event.
|
|
*/
|
|
uinput_dev_event(udev->dev, EV_UINPUT, request->code, request->id);
|
|
|
|
out:
|
|
mutex_unlock(&udev->mutex);
|
|
return retval;
|
|
}
|
|
|
|
static int uinput_request_submit(struct uinput_device *udev,
|
|
struct uinput_request *request)
|
|
{
|
|
int retval;
|
|
|
|
retval = uinput_request_reserve_slot(udev, request);
|
|
if (retval)
|
|
return retval;
|
|
|
|
retval = uinput_request_send(udev, request);
|
|
if (retval)
|
|
goto out;
|
|
|
|
if (!wait_for_completion_timeout(&request->done, 30 * HZ)) {
|
|
retval = -ETIMEDOUT;
|
|
goto out;
|
|
}
|
|
|
|
retval = request->retval;
|
|
|
|
out:
|
|
uinput_request_release_slot(udev, request->id);
|
|
return retval;
|
|
}
|
|
|
|
/*
|
|
* Fail all outstanding requests so handlers don't wait for the userspace
|
|
* to finish processing them.
|
|
*/
|
|
static void uinput_flush_requests(struct uinput_device *udev)
|
|
{
|
|
struct uinput_request *request;
|
|
int i;
|
|
|
|
spin_lock(&udev->requests_lock);
|
|
|
|
for (i = 0; i < UINPUT_NUM_REQUESTS; i++) {
|
|
request = udev->requests[i];
|
|
if (request) {
|
|
request->retval = -ENODEV;
|
|
complete(&request->done);
|
|
}
|
|
}
|
|
|
|
spin_unlock(&udev->requests_lock);
|
|
}
|
|
|
|
static void uinput_dev_set_gain(struct input_dev *dev, u16 gain)
|
|
{
|
|
uinput_dev_event(dev, EV_FF, FF_GAIN, gain);
|
|
}
|
|
|
|
static void uinput_dev_set_autocenter(struct input_dev *dev, u16 magnitude)
|
|
{
|
|
uinput_dev_event(dev, EV_FF, FF_AUTOCENTER, magnitude);
|
|
}
|
|
|
|
static int uinput_dev_playback(struct input_dev *dev, int effect_id, int value)
|
|
{
|
|
return uinput_dev_event(dev, EV_FF, effect_id, value);
|
|
}
|
|
|
|
static int uinput_dev_upload_effect(struct input_dev *dev,
|
|
struct ff_effect *effect,
|
|
struct ff_effect *old)
|
|
{
|
|
struct uinput_device *udev = input_get_drvdata(dev);
|
|
struct uinput_request request;
|
|
|
|
/*
|
|
* uinput driver does not currently support periodic effects with
|
|
* custom waveform since it does not have a way to pass buffer of
|
|
* samples (custom_data) to userspace. If ever there is a device
|
|
* supporting custom waveforms we would need to define an additional
|
|
* ioctl (UI_UPLOAD_SAMPLES) but for now we just bail out.
|
|
*/
|
|
if (effect->type == FF_PERIODIC &&
|
|
effect->u.periodic.waveform == FF_CUSTOM)
|
|
return -EINVAL;
|
|
|
|
request.code = UI_FF_UPLOAD;
|
|
request.u.upload.effect = effect;
|
|
request.u.upload.old = old;
|
|
|
|
return uinput_request_submit(udev, &request);
|
|
}
|
|
|
|
static int uinput_dev_erase_effect(struct input_dev *dev, int effect_id)
|
|
{
|
|
struct uinput_device *udev = input_get_drvdata(dev);
|
|
struct uinput_request request;
|
|
|
|
if (!test_bit(EV_FF, dev->evbit))
|
|
return -ENOSYS;
|
|
|
|
request.code = UI_FF_ERASE;
|
|
request.u.effect_id = effect_id;
|
|
|
|
return uinput_request_submit(udev, &request);
|
|
}
|
|
|
|
static int uinput_dev_flush(struct input_dev *dev, struct file *file)
|
|
{
|
|
/*
|
|
* If we are called with file == NULL that means we are tearing
|
|
* down the device, and therefore we can not handle FF erase
|
|
* requests: either we are handling UI_DEV_DESTROY (and holding
|
|
* the udev->mutex), or the file descriptor is closed and there is
|
|
* nobody on the other side anymore.
|
|
*/
|
|
return file ? input_ff_flush(dev, file) : 0;
|
|
}
|
|
|
|
static void uinput_destroy_device(struct uinput_device *udev)
|
|
{
|
|
const char *name, *phys;
|
|
struct input_dev *dev = udev->dev;
|
|
enum uinput_state old_state = udev->state;
|
|
|
|
udev->state = UIST_NEW_DEVICE;
|
|
|
|
if (dev) {
|
|
name = dev->name;
|
|
phys = dev->phys;
|
|
if (old_state == UIST_CREATED) {
|
|
uinput_flush_requests(udev);
|
|
input_unregister_device(dev);
|
|
} else {
|
|
input_free_device(dev);
|
|
}
|
|
kfree(name);
|
|
kfree(phys);
|
|
udev->dev = NULL;
|
|
}
|
|
}
|
|
|
|
static int uinput_create_device(struct uinput_device *udev)
|
|
{
|
|
struct input_dev *dev = udev->dev;
|
|
int error, nslot;
|
|
|
|
if (udev->state != UIST_SETUP_COMPLETE) {
|
|
printk(KERN_DEBUG "%s: write device info first\n", UINPUT_NAME);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (test_bit(EV_ABS, dev->evbit)) {
|
|
input_alloc_absinfo(dev);
|
|
if (!dev->absinfo) {
|
|
error = -EINVAL;
|
|
goto fail1;
|
|
}
|
|
|
|
if (test_bit(ABS_MT_SLOT, dev->absbit)) {
|
|
nslot = input_abs_get_max(dev, ABS_MT_SLOT) + 1;
|
|
error = input_mt_init_slots(dev, nslot, 0);
|
|
if (error)
|
|
goto fail1;
|
|
} else if (test_bit(ABS_MT_POSITION_X, dev->absbit)) {
|
|
input_set_events_per_packet(dev, 60);
|
|
}
|
|
}
|
|
|
|
if (test_bit(EV_FF, dev->evbit) && !udev->ff_effects_max) {
|
|
printk(KERN_DEBUG "%s: ff_effects_max should be non-zero when FF_BIT is set\n",
|
|
UINPUT_NAME);
|
|
error = -EINVAL;
|
|
goto fail1;
|
|
}
|
|
|
|
if (udev->ff_effects_max) {
|
|
error = input_ff_create(dev, udev->ff_effects_max);
|
|
if (error)
|
|
goto fail1;
|
|
|
|
dev->ff->upload = uinput_dev_upload_effect;
|
|
dev->ff->erase = uinput_dev_erase_effect;
|
|
dev->ff->playback = uinput_dev_playback;
|
|
dev->ff->set_gain = uinput_dev_set_gain;
|
|
dev->ff->set_autocenter = uinput_dev_set_autocenter;
|
|
/*
|
|
* The standard input_ff_flush() implementation does
|
|
* not quite work for uinput as we can't reasonably
|
|
* handle FF requests during device teardown.
|
|
*/
|
|
dev->flush = uinput_dev_flush;
|
|
}
|
|
|
|
dev->event = uinput_dev_event;
|
|
|
|
input_set_drvdata(udev->dev, udev);
|
|
|
|
error = input_register_device(udev->dev);
|
|
if (error)
|
|
goto fail2;
|
|
|
|
udev->state = UIST_CREATED;
|
|
|
|
return 0;
|
|
|
|
fail2: input_ff_destroy(dev);
|
|
fail1: uinput_destroy_device(udev);
|
|
return error;
|
|
}
|
|
|
|
static int uinput_open(struct inode *inode, struct file *file)
|
|
{
|
|
struct uinput_device *newdev;
|
|
|
|
newdev = kzalloc(sizeof(struct uinput_device), GFP_KERNEL);
|
|
if (!newdev)
|
|
return -ENOMEM;
|
|
|
|
mutex_init(&newdev->mutex);
|
|
spin_lock_init(&newdev->requests_lock);
|
|
init_waitqueue_head(&newdev->requests_waitq);
|
|
init_waitqueue_head(&newdev->waitq);
|
|
newdev->state = UIST_NEW_DEVICE;
|
|
|
|
file->private_data = newdev;
|
|
stream_open(inode, file);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int uinput_validate_absinfo(struct input_dev *dev, unsigned int code,
|
|
const struct input_absinfo *abs)
|
|
{
|
|
int min, max, range;
|
|
|
|
min = abs->minimum;
|
|
max = abs->maximum;
|
|
|
|
if ((min != 0 || max != 0) && max < min) {
|
|
printk(KERN_DEBUG
|
|
"%s: invalid abs[%02x] min:%d max:%d\n",
|
|
UINPUT_NAME, code, min, max);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (!check_sub_overflow(max, min, &range) && abs->flat > range) {
|
|
printk(KERN_DEBUG
|
|
"%s: abs_flat #%02x out of range: %d (min:%d/max:%d)\n",
|
|
UINPUT_NAME, code, abs->flat, min, max);
|
|
return -EINVAL;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int uinput_validate_absbits(struct input_dev *dev)
|
|
{
|
|
unsigned int cnt;
|
|
int error;
|
|
|
|
if (!test_bit(EV_ABS, dev->evbit))
|
|
return 0;
|
|
|
|
/*
|
|
* Check if absmin/absmax/absfuzz/absflat are sane.
|
|
*/
|
|
|
|
for_each_set_bit(cnt, dev->absbit, ABS_CNT) {
|
|
if (!dev->absinfo)
|
|
return -EINVAL;
|
|
|
|
error = uinput_validate_absinfo(dev, cnt, &dev->absinfo[cnt]);
|
|
if (error)
|
|
return error;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int uinput_dev_setup(struct uinput_device *udev,
|
|
struct uinput_setup __user *arg)
|
|
{
|
|
struct uinput_setup setup;
|
|
struct input_dev *dev;
|
|
|
|
if (udev->state == UIST_CREATED)
|
|
return -EINVAL;
|
|
|
|
if (copy_from_user(&setup, arg, sizeof(setup)))
|
|
return -EFAULT;
|
|
|
|
if (!setup.name[0])
|
|
return -EINVAL;
|
|
|
|
dev = udev->dev;
|
|
dev->id = setup.id;
|
|
udev->ff_effects_max = setup.ff_effects_max;
|
|
|
|
kfree(dev->name);
|
|
dev->name = kstrndup(setup.name, UINPUT_MAX_NAME_SIZE, GFP_KERNEL);
|
|
if (!dev->name)
|
|
return -ENOMEM;
|
|
|
|
udev->state = UIST_SETUP_COMPLETE;
|
|
return 0;
|
|
}
|
|
|
|
static int uinput_abs_setup(struct uinput_device *udev,
|
|
struct uinput_setup __user *arg, size_t size)
|
|
{
|
|
struct uinput_abs_setup setup = {};
|
|
struct input_dev *dev;
|
|
int error;
|
|
|
|
if (size > sizeof(setup))
|
|
return -E2BIG;
|
|
|
|
if (udev->state == UIST_CREATED)
|
|
return -EINVAL;
|
|
|
|
if (copy_from_user(&setup, arg, size))
|
|
return -EFAULT;
|
|
|
|
if (setup.code > ABS_MAX)
|
|
return -ERANGE;
|
|
|
|
dev = udev->dev;
|
|
|
|
error = uinput_validate_absinfo(dev, setup.code, &setup.absinfo);
|
|
if (error)
|
|
return error;
|
|
|
|
input_alloc_absinfo(dev);
|
|
if (!dev->absinfo)
|
|
return -ENOMEM;
|
|
|
|
set_bit(setup.code, dev->absbit);
|
|
dev->absinfo[setup.code] = setup.absinfo;
|
|
return 0;
|
|
}
|
|
|
|
/* legacy setup via write() */
|
|
static int uinput_setup_device_legacy(struct uinput_device *udev,
|
|
const char __user *buffer, size_t count)
|
|
{
|
|
struct uinput_user_dev *user_dev;
|
|
struct input_dev *dev;
|
|
int i;
|
|
int retval;
|
|
|
|
if (count != sizeof(struct uinput_user_dev))
|
|
return -EINVAL;
|
|
|
|
if (!udev->dev) {
|
|
udev->dev = input_allocate_device();
|
|
if (!udev->dev)
|
|
return -ENOMEM;
|
|
}
|
|
|
|
dev = udev->dev;
|
|
|
|
user_dev = memdup_user(buffer, sizeof(struct uinput_user_dev));
|
|
if (IS_ERR(user_dev))
|
|
return PTR_ERR(user_dev);
|
|
|
|
udev->ff_effects_max = user_dev->ff_effects_max;
|
|
|
|
/* Ensure name is filled in */
|
|
if (!user_dev->name[0]) {
|
|
retval = -EINVAL;
|
|
goto exit;
|
|
}
|
|
|
|
kfree(dev->name);
|
|
dev->name = kstrndup(user_dev->name, UINPUT_MAX_NAME_SIZE,
|
|
GFP_KERNEL);
|
|
if (!dev->name) {
|
|
retval = -ENOMEM;
|
|
goto exit;
|
|
}
|
|
|
|
dev->id.bustype = user_dev->id.bustype;
|
|
dev->id.vendor = user_dev->id.vendor;
|
|
dev->id.product = user_dev->id.product;
|
|
dev->id.version = user_dev->id.version;
|
|
|
|
for (i = 0; i < ABS_CNT; i++) {
|
|
input_abs_set_max(dev, i, user_dev->absmax[i]);
|
|
input_abs_set_min(dev, i, user_dev->absmin[i]);
|
|
input_abs_set_fuzz(dev, i, user_dev->absfuzz[i]);
|
|
input_abs_set_flat(dev, i, user_dev->absflat[i]);
|
|
}
|
|
|
|
retval = uinput_validate_absbits(dev);
|
|
if (retval < 0)
|
|
goto exit;
|
|
|
|
udev->state = UIST_SETUP_COMPLETE;
|
|
retval = count;
|
|
|
|
exit:
|
|
kfree(user_dev);
|
|
return retval;
|
|
}
|
|
|
|
static ssize_t uinput_inject_events(struct uinput_device *udev,
|
|
const char __user *buffer, size_t count)
|
|
{
|
|
struct input_event ev;
|
|
size_t bytes = 0;
|
|
|
|
if (count != 0 && count < input_event_size())
|
|
return -EINVAL;
|
|
|
|
while (bytes + input_event_size() <= count) {
|
|
/*
|
|
* Note that even if some events were fetched successfully
|
|
* we are still going to return EFAULT instead of partial
|
|
* count to let userspace know that it got it's buffers
|
|
* all wrong.
|
|
*/
|
|
if (input_event_from_user(buffer + bytes, &ev))
|
|
return -EFAULT;
|
|
|
|
input_event(udev->dev, ev.type, ev.code, ev.value);
|
|
bytes += input_event_size();
|
|
cond_resched();
|
|
}
|
|
|
|
return bytes;
|
|
}
|
|
|
|
static ssize_t uinput_write(struct file *file, const char __user *buffer,
|
|
size_t count, loff_t *ppos)
|
|
{
|
|
struct uinput_device *udev = file->private_data;
|
|
int retval;
|
|
|
|
if (count == 0)
|
|
return 0;
|
|
|
|
retval = mutex_lock_interruptible(&udev->mutex);
|
|
if (retval)
|
|
return retval;
|
|
|
|
retval = udev->state == UIST_CREATED ?
|
|
uinput_inject_events(udev, buffer, count) :
|
|
uinput_setup_device_legacy(udev, buffer, count);
|
|
|
|
mutex_unlock(&udev->mutex);
|
|
|
|
return retval;
|
|
}
|
|
|
|
static bool uinput_fetch_next_event(struct uinput_device *udev,
|
|
struct input_event *event)
|
|
{
|
|
bool have_event;
|
|
|
|
spin_lock_irq(&udev->dev->event_lock);
|
|
|
|
have_event = udev->head != udev->tail;
|
|
if (have_event) {
|
|
*event = udev->buff[udev->tail];
|
|
udev->tail = (udev->tail + 1) % UINPUT_BUFFER_SIZE;
|
|
}
|
|
|
|
spin_unlock_irq(&udev->dev->event_lock);
|
|
|
|
return have_event;
|
|
}
|
|
|
|
static ssize_t uinput_events_to_user(struct uinput_device *udev,
|
|
char __user *buffer, size_t count)
|
|
{
|
|
struct input_event event;
|
|
size_t read = 0;
|
|
|
|
while (read + input_event_size() <= count &&
|
|
uinput_fetch_next_event(udev, &event)) {
|
|
|
|
if (input_event_to_user(buffer + read, &event))
|
|
return -EFAULT;
|
|
|
|
read += input_event_size();
|
|
}
|
|
|
|
return read;
|
|
}
|
|
|
|
static ssize_t uinput_read(struct file *file, char __user *buffer,
|
|
size_t count, loff_t *ppos)
|
|
{
|
|
struct uinput_device *udev = file->private_data;
|
|
ssize_t retval;
|
|
|
|
if (count != 0 && count < input_event_size())
|
|
return -EINVAL;
|
|
|
|
do {
|
|
retval = mutex_lock_interruptible(&udev->mutex);
|
|
if (retval)
|
|
return retval;
|
|
|
|
if (udev->state != UIST_CREATED)
|
|
retval = -ENODEV;
|
|
else if (udev->head == udev->tail &&
|
|
(file->f_flags & O_NONBLOCK))
|
|
retval = -EAGAIN;
|
|
else
|
|
retval = uinput_events_to_user(udev, buffer, count);
|
|
|
|
mutex_unlock(&udev->mutex);
|
|
|
|
if (retval || count == 0)
|
|
break;
|
|
|
|
if (!(file->f_flags & O_NONBLOCK))
|
|
retval = wait_event_interruptible(udev->waitq,
|
|
udev->head != udev->tail ||
|
|
udev->state != UIST_CREATED);
|
|
} while (retval == 0);
|
|
|
|
return retval;
|
|
}
|
|
|
|
static __poll_t uinput_poll(struct file *file, poll_table *wait)
|
|
{
|
|
struct uinput_device *udev = file->private_data;
|
|
|
|
poll_wait(file, &udev->waitq, wait);
|
|
|
|
if (udev->head != udev->tail)
|
|
return EPOLLIN | EPOLLRDNORM;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int uinput_release(struct inode *inode, struct file *file)
|
|
{
|
|
struct uinput_device *udev = file->private_data;
|
|
|
|
uinput_destroy_device(udev);
|
|
kfree(udev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
struct uinput_ff_upload_compat {
|
|
__u32 request_id;
|
|
__s32 retval;
|
|
struct ff_effect_compat effect;
|
|
struct ff_effect_compat old;
|
|
};
|
|
|
|
static int uinput_ff_upload_to_user(char __user *buffer,
|
|
const struct uinput_ff_upload *ff_up)
|
|
{
|
|
if (in_compat_syscall()) {
|
|
struct uinput_ff_upload_compat ff_up_compat;
|
|
|
|
ff_up_compat.request_id = ff_up->request_id;
|
|
ff_up_compat.retval = ff_up->retval;
|
|
/*
|
|
* It so happens that the pointer that gives us the trouble
|
|
* is the last field in the structure. Since we don't support
|
|
* custom waveforms in uinput anyway we can just copy the whole
|
|
* thing (to the compat size) and ignore the pointer.
|
|
*/
|
|
memcpy(&ff_up_compat.effect, &ff_up->effect,
|
|
sizeof(struct ff_effect_compat));
|
|
memcpy(&ff_up_compat.old, &ff_up->old,
|
|
sizeof(struct ff_effect_compat));
|
|
|
|
if (copy_to_user(buffer, &ff_up_compat,
|
|
sizeof(struct uinput_ff_upload_compat)))
|
|
return -EFAULT;
|
|
} else {
|
|
if (copy_to_user(buffer, ff_up,
|
|
sizeof(struct uinput_ff_upload)))
|
|
return -EFAULT;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int uinput_ff_upload_from_user(const char __user *buffer,
|
|
struct uinput_ff_upload *ff_up)
|
|
{
|
|
if (in_compat_syscall()) {
|
|
struct uinput_ff_upload_compat ff_up_compat;
|
|
|
|
if (copy_from_user(&ff_up_compat, buffer,
|
|
sizeof(struct uinput_ff_upload_compat)))
|
|
return -EFAULT;
|
|
|
|
ff_up->request_id = ff_up_compat.request_id;
|
|
ff_up->retval = ff_up_compat.retval;
|
|
memcpy(&ff_up->effect, &ff_up_compat.effect,
|
|
sizeof(struct ff_effect_compat));
|
|
memcpy(&ff_up->old, &ff_up_compat.old,
|
|
sizeof(struct ff_effect_compat));
|
|
|
|
} else {
|
|
if (copy_from_user(ff_up, buffer,
|
|
sizeof(struct uinput_ff_upload)))
|
|
return -EFAULT;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
#else
|
|
|
|
static int uinput_ff_upload_to_user(char __user *buffer,
|
|
const struct uinput_ff_upload *ff_up)
|
|
{
|
|
if (copy_to_user(buffer, ff_up, sizeof(struct uinput_ff_upload)))
|
|
return -EFAULT;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int uinput_ff_upload_from_user(const char __user *buffer,
|
|
struct uinput_ff_upload *ff_up)
|
|
{
|
|
if (copy_from_user(ff_up, buffer, sizeof(struct uinput_ff_upload)))
|
|
return -EFAULT;
|
|
|
|
return 0;
|
|
}
|
|
|
|
#endif
|
|
|
|
#define uinput_set_bit(_arg, _bit, _max) \
|
|
({ \
|
|
int __ret = 0; \
|
|
if (udev->state == UIST_CREATED) \
|
|
__ret = -EINVAL; \
|
|
else if ((_arg) > (_max)) \
|
|
__ret = -EINVAL; \
|
|
else set_bit((_arg), udev->dev->_bit); \
|
|
__ret; \
|
|
})
|
|
|
|
static int uinput_str_to_user(void __user *dest, const char *str,
|
|
unsigned int maxlen)
|
|
{
|
|
char __user *p = dest;
|
|
int len, ret;
|
|
|
|
if (!str)
|
|
return -ENOENT;
|
|
|
|
if (maxlen == 0)
|
|
return -EINVAL;
|
|
|
|
len = strlen(str) + 1;
|
|
if (len > maxlen)
|
|
len = maxlen;
|
|
|
|
ret = copy_to_user(p, str, len);
|
|
if (ret)
|
|
return -EFAULT;
|
|
|
|
/* force terminating '\0' */
|
|
ret = put_user(0, p + len - 1);
|
|
return ret ? -EFAULT : len;
|
|
}
|
|
|
|
static long uinput_ioctl_handler(struct file *file, unsigned int cmd,
|
|
unsigned long arg, void __user *p)
|
|
{
|
|
int retval;
|
|
struct uinput_device *udev = file->private_data;
|
|
struct uinput_ff_upload ff_up;
|
|
struct uinput_ff_erase ff_erase;
|
|
struct uinput_request *req;
|
|
char *phys;
|
|
const char *name;
|
|
unsigned int size;
|
|
|
|
retval = mutex_lock_interruptible(&udev->mutex);
|
|
if (retval)
|
|
return retval;
|
|
|
|
if (!udev->dev) {
|
|
udev->dev = input_allocate_device();
|
|
if (!udev->dev) {
|
|
retval = -ENOMEM;
|
|
goto out;
|
|
}
|
|
}
|
|
|
|
switch (cmd) {
|
|
case UI_GET_VERSION:
|
|
if (put_user(UINPUT_VERSION, (unsigned int __user *)p))
|
|
retval = -EFAULT;
|
|
goto out;
|
|
|
|
case UI_DEV_CREATE:
|
|
retval = uinput_create_device(udev);
|
|
goto out;
|
|
|
|
case UI_DEV_DESTROY:
|
|
uinput_destroy_device(udev);
|
|
goto out;
|
|
|
|
case UI_DEV_SETUP:
|
|
retval = uinput_dev_setup(udev, p);
|
|
goto out;
|
|
|
|
/* UI_ABS_SETUP is handled in the variable size ioctls */
|
|
|
|
case UI_SET_EVBIT:
|
|
retval = uinput_set_bit(arg, evbit, EV_MAX);
|
|
goto out;
|
|
|
|
case UI_SET_KEYBIT:
|
|
retval = uinput_set_bit(arg, keybit, KEY_MAX);
|
|
goto out;
|
|
|
|
case UI_SET_RELBIT:
|
|
retval = uinput_set_bit(arg, relbit, REL_MAX);
|
|
goto out;
|
|
|
|
case UI_SET_ABSBIT:
|
|
retval = uinput_set_bit(arg, absbit, ABS_MAX);
|
|
goto out;
|
|
|
|
case UI_SET_MSCBIT:
|
|
retval = uinput_set_bit(arg, mscbit, MSC_MAX);
|
|
goto out;
|
|
|
|
case UI_SET_LEDBIT:
|
|
retval = uinput_set_bit(arg, ledbit, LED_MAX);
|
|
goto out;
|
|
|
|
case UI_SET_SNDBIT:
|
|
retval = uinput_set_bit(arg, sndbit, SND_MAX);
|
|
goto out;
|
|
|
|
case UI_SET_FFBIT:
|
|
retval = uinput_set_bit(arg, ffbit, FF_MAX);
|
|
goto out;
|
|
|
|
case UI_SET_SWBIT:
|
|
retval = uinput_set_bit(arg, swbit, SW_MAX);
|
|
goto out;
|
|
|
|
case UI_SET_PROPBIT:
|
|
retval = uinput_set_bit(arg, propbit, INPUT_PROP_MAX);
|
|
goto out;
|
|
|
|
case UI_SET_PHYS:
|
|
if (udev->state == UIST_CREATED) {
|
|
retval = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
phys = strndup_user(p, 1024);
|
|
if (IS_ERR(phys)) {
|
|
retval = PTR_ERR(phys);
|
|
goto out;
|
|
}
|
|
|
|
kfree(udev->dev->phys);
|
|
udev->dev->phys = phys;
|
|
goto out;
|
|
|
|
case UI_BEGIN_FF_UPLOAD:
|
|
retval = uinput_ff_upload_from_user(p, &ff_up);
|
|
if (retval)
|
|
goto out;
|
|
|
|
req = uinput_request_find(udev, ff_up.request_id);
|
|
if (!req || req->code != UI_FF_UPLOAD ||
|
|
!req->u.upload.effect) {
|
|
retval = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
ff_up.retval = 0;
|
|
ff_up.effect = *req->u.upload.effect;
|
|
if (req->u.upload.old)
|
|
ff_up.old = *req->u.upload.old;
|
|
else
|
|
memset(&ff_up.old, 0, sizeof(struct ff_effect));
|
|
|
|
retval = uinput_ff_upload_to_user(p, &ff_up);
|
|
goto out;
|
|
|
|
case UI_BEGIN_FF_ERASE:
|
|
if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
|
|
retval = -EFAULT;
|
|
goto out;
|
|
}
|
|
|
|
req = uinput_request_find(udev, ff_erase.request_id);
|
|
if (!req || req->code != UI_FF_ERASE) {
|
|
retval = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
ff_erase.retval = 0;
|
|
ff_erase.effect_id = req->u.effect_id;
|
|
if (copy_to_user(p, &ff_erase, sizeof(ff_erase))) {
|
|
retval = -EFAULT;
|
|
goto out;
|
|
}
|
|
|
|
goto out;
|
|
|
|
case UI_END_FF_UPLOAD:
|
|
retval = uinput_ff_upload_from_user(p, &ff_up);
|
|
if (retval)
|
|
goto out;
|
|
|
|
req = uinput_request_find(udev, ff_up.request_id);
|
|
if (!req || req->code != UI_FF_UPLOAD ||
|
|
!req->u.upload.effect) {
|
|
retval = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
req->retval = ff_up.retval;
|
|
complete(&req->done);
|
|
goto out;
|
|
|
|
case UI_END_FF_ERASE:
|
|
if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
|
|
retval = -EFAULT;
|
|
goto out;
|
|
}
|
|
|
|
req = uinput_request_find(udev, ff_erase.request_id);
|
|
if (!req || req->code != UI_FF_ERASE) {
|
|
retval = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
req->retval = ff_erase.retval;
|
|
complete(&req->done);
|
|
goto out;
|
|
}
|
|
|
|
size = _IOC_SIZE(cmd);
|
|
|
|
/* Now check variable-length commands */
|
|
switch (cmd & ~IOCSIZE_MASK) {
|
|
case UI_GET_SYSNAME(0):
|
|
if (udev->state != UIST_CREATED) {
|
|
retval = -ENOENT;
|
|
goto out;
|
|
}
|
|
name = dev_name(&udev->dev->dev);
|
|
retval = uinput_str_to_user(p, name, size);
|
|
goto out;
|
|
|
|
case UI_ABS_SETUP & ~IOCSIZE_MASK:
|
|
retval = uinput_abs_setup(udev, p, size);
|
|
goto out;
|
|
}
|
|
|
|
retval = -EINVAL;
|
|
out:
|
|
mutex_unlock(&udev->mutex);
|
|
return retval;
|
|
}
|
|
|
|
static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
|
{
|
|
return uinput_ioctl_handler(file, cmd, arg, (void __user *)arg);
|
|
}
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
#define UI_SET_PHYS_COMPAT _IOW(UINPUT_IOCTL_BASE, 108, compat_uptr_t)
|
|
|
|
static long uinput_compat_ioctl(struct file *file,
|
|
unsigned int cmd, unsigned long arg)
|
|
{
|
|
if (cmd == UI_SET_PHYS_COMPAT)
|
|
cmd = UI_SET_PHYS;
|
|
|
|
return uinput_ioctl_handler(file, cmd, arg, compat_ptr(arg));
|
|
}
|
|
#endif
|
|
|
|
static const struct file_operations uinput_fops = {
|
|
.owner = THIS_MODULE,
|
|
.open = uinput_open,
|
|
.release = uinput_release,
|
|
.read = uinput_read,
|
|
.write = uinput_write,
|
|
.poll = uinput_poll,
|
|
.unlocked_ioctl = uinput_ioctl,
|
|
#ifdef CONFIG_COMPAT
|
|
.compat_ioctl = uinput_compat_ioctl,
|
|
#endif
|
|
.llseek = no_llseek,
|
|
};
|
|
|
|
static struct miscdevice uinput_misc = {
|
|
.fops = &uinput_fops,
|
|
.minor = UINPUT_MINOR,
|
|
.name = UINPUT_NAME,
|
|
};
|
|
module_misc_device(uinput_misc);
|
|
|
|
MODULE_ALIAS_MISCDEV(UINPUT_MINOR);
|
|
MODULE_ALIAS("devname:" UINPUT_NAME);
|
|
|
|
MODULE_AUTHOR("Aristeu Sergio Rozanski Filho");
|
|
MODULE_DESCRIPTION("User level driver support for input subsystem");
|
|
MODULE_LICENSE("GPL");
|