2 * Event char devices, giving access to raw input device events.
4 * Copyright (c) 1999-2002 Vojtech Pavlik
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #define EVDEV_MINOR_BASE 64
14 #define EVDEV_MINORS 32
15 #define EVDEV_MIN_BUFFER_SIZE 64U
16 #define EVDEV_BUF_PACKETS 8
18 #include <linux/poll.h>
19 #include <linux/sched.h>
20 #include <linux/slab.h>
21 #include <linux/vmalloc.h>
23 #include <linux/module.h>
24 #include <linux/init.h>
25 #include <linux/input/mt.h>
26 #include <linux/major.h>
27 #include <linux/device.h>
28 #include <linux/cdev.h>
29 #include "input-compat.h"
33 struct input_handle handle
;
34 wait_queue_head_t wait
;
35 struct evdev_client __rcu
*grab
;
36 struct list_head client_list
;
37 spinlock_t client_lock
; /* protects client_list */
47 unsigned int packet_head
; /* [future] position of the first element of next packet */
48 spinlock_t buffer_lock
; /* protects access to buffer, head and tail */
49 struct fasync_struct
*fasync
;
51 struct list_head node
;
55 struct input_event buffer
[];
58 /* flush queued events of type @type, caller must hold client->buffer_lock */
59 static void __evdev_flush_queue(struct evdev_client
*client
, unsigned int type
)
61 unsigned int i
, head
, num
;
62 unsigned int mask
= client
->bufsize
- 1;
64 struct input_event
*ev
;
66 BUG_ON(type
== EV_SYN
);
69 client
->packet_head
= client
->tail
;
71 /* init to 1 so a leading SYN_REPORT will not be dropped */
74 for (i
= client
->tail
; i
!= client
->head
; i
= (i
+ 1) & mask
) {
75 ev
= &client
->buffer
[i
];
76 is_report
= ev
->type
== EV_SYN
&& ev
->code
== SYN_REPORT
;
78 if (ev
->type
== type
) {
79 /* drop matched entry */
81 } else if (is_report
&& !num
) {
82 /* drop empty SYN_REPORT groups */
84 } else if (head
!= i
) {
85 /* move entry to fill the gap */
86 client
->buffer
[head
].time
= ev
->time
;
87 client
->buffer
[head
].type
= ev
->type
;
88 client
->buffer
[head
].code
= ev
->code
;
89 client
->buffer
[head
].value
= ev
->value
;
93 head
= (head
+ 1) & mask
;
97 client
->packet_head
= head
;
104 /* queue SYN_DROPPED event */
105 static void evdev_queue_syn_dropped(struct evdev_client
*client
)
108 struct input_event ev
;
112 if (client
->clkid
!= CLOCK_MONOTONIC
)
113 time
= ktime_sub(time
, ktime_get_monotonic_offset());
115 ev
.time
= ktime_to_timeval(time
);
117 ev
.code
= SYN_DROPPED
;
120 spin_lock_irqsave(&client
->buffer_lock
, flags
);
122 client
->buffer
[client
->head
++] = ev
;
123 client
->head
&= client
->bufsize
- 1;
125 if (unlikely(client
->head
== client
->tail
)) {
126 /* drop queue but keep our SYN_DROPPED event */
127 client
->tail
= (client
->head
- 1) & (client
->bufsize
- 1);
128 client
->packet_head
= client
->tail
;
131 spin_unlock_irqrestore(&client
->buffer_lock
, flags
);
134 static void __pass_event(struct evdev_client
*client
,
135 const struct input_event
*event
)
137 client
->buffer
[client
->head
++] = *event
;
138 client
->head
&= client
->bufsize
- 1;
140 if (unlikely(client
->head
== client
->tail
)) {
142 * This effectively "drops" all unconsumed events, leaving
143 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
145 client
->tail
= (client
->head
- 2) & (client
->bufsize
- 1);
147 client
->buffer
[client
->tail
].time
= event
->time
;
148 client
->buffer
[client
->tail
].type
= EV_SYN
;
149 client
->buffer
[client
->tail
].code
= SYN_DROPPED
;
150 client
->buffer
[client
->tail
].value
= 0;
152 client
->packet_head
= client
->tail
;
155 if (event
->type
== EV_SYN
&& event
->code
== SYN_REPORT
) {
156 client
->packet_head
= client
->head
;
157 kill_fasync(&client
->fasync
, SIGIO
, POLL_IN
);
161 static void evdev_pass_values(struct evdev_client
*client
,
162 const struct input_value
*vals
, unsigned int count
,
163 ktime_t mono
, ktime_t real
)
165 struct evdev
*evdev
= client
->evdev
;
166 const struct input_value
*v
;
167 struct input_event event
;
173 event
.time
= ktime_to_timeval(client
->clkid
== CLOCK_MONOTONIC
?
176 /* Interrupts are disabled, just acquire the lock. */
177 spin_lock(&client
->buffer_lock
);
179 for (v
= vals
; v
!= vals
+ count
; v
++) {
180 event
.type
= v
->type
;
181 event
.code
= v
->code
;
182 event
.value
= v
->value
;
183 __pass_event(client
, &event
);
184 if (v
->type
== EV_SYN
&& v
->code
== SYN_REPORT
)
188 spin_unlock(&client
->buffer_lock
);
191 wake_up_interruptible(&evdev
->wait
);
195 * Pass incoming events to all connected clients.
197 static void evdev_events(struct input_handle
*handle
,
198 const struct input_value
*vals
, unsigned int count
)
200 struct evdev
*evdev
= handle
->private;
201 struct evdev_client
*client
;
202 ktime_t time_mono
, time_real
;
204 time_mono
= ktime_get();
205 time_real
= ktime_sub(time_mono
, ktime_get_monotonic_offset());
209 client
= rcu_dereference(evdev
->grab
);
212 evdev_pass_values(client
, vals
, count
, time_mono
, time_real
);
214 list_for_each_entry_rcu(client
, &evdev
->client_list
, node
)
215 evdev_pass_values(client
, vals
, count
,
216 time_mono
, time_real
);
222 * Pass incoming event to all connected clients.
224 static void evdev_event(struct input_handle
*handle
,
225 unsigned int type
, unsigned int code
, int value
)
227 struct input_value vals
[] = { { type
, code
, value
} };
229 evdev_events(handle
, vals
, 1);
232 static int evdev_fasync(int fd
, struct file
*file
, int on
)
234 struct evdev_client
*client
= file
->private_data
;
236 return fasync_helper(fd
, file
, on
, &client
->fasync
);
239 static int evdev_flush(struct file
*file
, fl_owner_t id
)
241 struct evdev_client
*client
= file
->private_data
;
242 struct evdev
*evdev
= client
->evdev
;
244 mutex_lock(&evdev
->mutex
);
246 if (evdev
->exist
&& !client
->revoked
)
247 input_flush_device(&evdev
->handle
, file
);
249 mutex_unlock(&evdev
->mutex
);
253 static void evdev_free(struct device
*dev
)
255 struct evdev
*evdev
= container_of(dev
, struct evdev
, dev
);
257 input_put_device(evdev
->handle
.dev
);
262 * Grabs an event device (along with underlying input device).
263 * This function is called with evdev->mutex taken.
265 static int evdev_grab(struct evdev
*evdev
, struct evdev_client
*client
)
272 error
= input_grab_device(&evdev
->handle
);
276 rcu_assign_pointer(evdev
->grab
, client
);
281 static int evdev_ungrab(struct evdev
*evdev
, struct evdev_client
*client
)
283 struct evdev_client
*grab
= rcu_dereference_protected(evdev
->grab
,
284 lockdep_is_held(&evdev
->mutex
));
289 rcu_assign_pointer(evdev
->grab
, NULL
);
291 input_release_device(&evdev
->handle
);
296 static void evdev_attach_client(struct evdev
*evdev
,
297 struct evdev_client
*client
)
299 spin_lock(&evdev
->client_lock
);
300 list_add_tail_rcu(&client
->node
, &evdev
->client_list
);
301 spin_unlock(&evdev
->client_lock
);
304 static void evdev_detach_client(struct evdev
*evdev
,
305 struct evdev_client
*client
)
307 spin_lock(&evdev
->client_lock
);
308 list_del_rcu(&client
->node
);
309 spin_unlock(&evdev
->client_lock
);
313 static int evdev_open_device(struct evdev
*evdev
)
317 retval
= mutex_lock_interruptible(&evdev
->mutex
);
323 else if (!evdev
->open
++) {
324 retval
= input_open_device(&evdev
->handle
);
329 mutex_unlock(&evdev
->mutex
);
333 static void evdev_close_device(struct evdev
*evdev
)
335 mutex_lock(&evdev
->mutex
);
337 if (evdev
->exist
&& !--evdev
->open
)
338 input_close_device(&evdev
->handle
);
340 mutex_unlock(&evdev
->mutex
);
344 * Wake up users waiting for IO so they can disconnect from
347 static void evdev_hangup(struct evdev
*evdev
)
349 struct evdev_client
*client
;
351 spin_lock(&evdev
->client_lock
);
352 list_for_each_entry(client
, &evdev
->client_list
, node
)
353 kill_fasync(&client
->fasync
, SIGIO
, POLL_HUP
);
354 spin_unlock(&evdev
->client_lock
);
356 wake_up_interruptible(&evdev
->wait
);
359 static int evdev_release(struct inode
*inode
, struct file
*file
)
361 struct evdev_client
*client
= file
->private_data
;
362 struct evdev
*evdev
= client
->evdev
;
364 mutex_lock(&evdev
->mutex
);
365 evdev_ungrab(evdev
, client
);
366 mutex_unlock(&evdev
->mutex
);
368 evdev_detach_client(evdev
, client
);
370 if (is_vmalloc_addr(client
))
375 evdev_close_device(evdev
);
380 static unsigned int evdev_compute_buffer_size(struct input_dev
*dev
)
382 unsigned int n_events
=
383 max(dev
->hint_events_per_packet
* EVDEV_BUF_PACKETS
,
384 EVDEV_MIN_BUFFER_SIZE
);
386 return roundup_pow_of_two(n_events
);
389 static int evdev_open(struct inode
*inode
, struct file
*file
)
391 struct evdev
*evdev
= container_of(inode
->i_cdev
, struct evdev
, cdev
);
392 unsigned int bufsize
= evdev_compute_buffer_size(evdev
->handle
.dev
);
393 unsigned int size
= sizeof(struct evdev_client
) +
394 bufsize
* sizeof(struct input_event
);
395 struct evdev_client
*client
;
398 client
= kzalloc(size
, GFP_KERNEL
| __GFP_NOWARN
);
400 client
= vzalloc(size
);
404 client
->bufsize
= bufsize
;
405 spin_lock_init(&client
->buffer_lock
);
406 client
->evdev
= evdev
;
407 evdev_attach_client(evdev
, client
);
409 error
= evdev_open_device(evdev
);
411 goto err_free_client
;
413 file
->private_data
= client
;
414 nonseekable_open(inode
, file
);
419 evdev_detach_client(evdev
, client
);
424 static ssize_t
evdev_write(struct file
*file
, const char __user
*buffer
,
425 size_t count
, loff_t
*ppos
)
427 struct evdev_client
*client
= file
->private_data
;
428 struct evdev
*evdev
= client
->evdev
;
429 struct input_event event
;
432 if (count
!= 0 && count
< input_event_size())
435 retval
= mutex_lock_interruptible(&evdev
->mutex
);
439 if (!evdev
->exist
|| client
->revoked
) {
444 while (retval
+ input_event_size() <= count
) {
446 if (input_event_from_user(buffer
+ retval
, &event
)) {
450 retval
+= input_event_size();
452 input_inject_event(&evdev
->handle
,
453 event
.type
, event
.code
, event
.value
);
457 mutex_unlock(&evdev
->mutex
);
461 static int evdev_fetch_next_event(struct evdev_client
*client
,
462 struct input_event
*event
)
466 spin_lock_irq(&client
->buffer_lock
);
468 have_event
= client
->packet_head
!= client
->tail
;
470 *event
= client
->buffer
[client
->tail
++];
471 client
->tail
&= client
->bufsize
- 1;
474 spin_unlock_irq(&client
->buffer_lock
);
479 static ssize_t
evdev_read(struct file
*file
, char __user
*buffer
,
480 size_t count
, loff_t
*ppos
)
482 struct evdev_client
*client
= file
->private_data
;
483 struct evdev
*evdev
= client
->evdev
;
484 struct input_event event
;
488 if (count
!= 0 && count
< input_event_size())
492 if (!evdev
->exist
|| client
->revoked
)
495 if (client
->packet_head
== client
->tail
&&
496 (file
->f_flags
& O_NONBLOCK
))
500 * count == 0 is special - no IO is done but we check
501 * for error conditions (see above).
506 while (read
+ input_event_size() <= count
&&
507 evdev_fetch_next_event(client
, &event
)) {
509 if (input_event_to_user(buffer
+ read
, &event
))
512 read
+= input_event_size();
518 if (!(file
->f_flags
& O_NONBLOCK
)) {
519 error
= wait_event_interruptible(evdev
->wait
,
520 client
->packet_head
!= client
->tail
||
521 !evdev
->exist
|| client
->revoked
);
530 /* No kernel lock - fine */
531 static unsigned int evdev_poll(struct file
*file
, poll_table
*wait
)
533 struct evdev_client
*client
= file
->private_data
;
534 struct evdev
*evdev
= client
->evdev
;
537 poll_wait(file
, &evdev
->wait
, wait
);
539 if (evdev
->exist
&& !client
->revoked
)
540 mask
= POLLOUT
| POLLWRNORM
;
542 mask
= POLLHUP
| POLLERR
;
544 if (client
->packet_head
!= client
->tail
)
545 mask
|= POLLIN
| POLLRDNORM
;
552 #define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
553 #define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
556 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
557 unsigned int maxlen
, void __user
*p
, int compat
)
562 len
= BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
);
566 for (i
= 0; i
< len
/ sizeof(compat_long_t
); i
++)
567 if (copy_to_user((compat_long_t __user
*) p
+ i
,
568 (compat_long_t
*) bits
+
569 i
+ 1 - ((i
% 2) << 1),
570 sizeof(compat_long_t
)))
573 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
577 if (copy_to_user(p
, bits
, len
))
584 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
585 unsigned int maxlen
, void __user
*p
, int compat
)
588 BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
) :
589 BITS_TO_LONGS(maxbit
) * sizeof(long);
594 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
596 #endif /* __BIG_ENDIAN */
600 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
601 unsigned int maxlen
, void __user
*p
, int compat
)
603 int len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
608 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
611 #endif /* CONFIG_COMPAT */
613 static int str_to_user(const char *str
, unsigned int maxlen
, void __user
*p
)
620 len
= strlen(str
) + 1;
624 return copy_to_user(p
, str
, len
) ? -EFAULT
: len
;
627 #define OLD_KEY_MAX 0x1ff
628 static int handle_eviocgbit(struct input_dev
*dev
,
629 unsigned int type
, unsigned int size
,
630 void __user
*p
, int compat_mode
)
632 static unsigned long keymax_warn_time
;
638 case 0: bits
= dev
->evbit
; len
= EV_MAX
; break;
639 case EV_KEY
: bits
= dev
->keybit
; len
= KEY_MAX
; break;
640 case EV_REL
: bits
= dev
->relbit
; len
= REL_MAX
; break;
641 case EV_ABS
: bits
= dev
->absbit
; len
= ABS_MAX
; break;
642 case EV_MSC
: bits
= dev
->mscbit
; len
= MSC_MAX
; break;
643 case EV_LED
: bits
= dev
->ledbit
; len
= LED_MAX
; break;
644 case EV_SND
: bits
= dev
->sndbit
; len
= SND_MAX
; break;
645 case EV_FF
: bits
= dev
->ffbit
; len
= FF_MAX
; break;
646 case EV_SW
: bits
= dev
->swbit
; len
= SW_MAX
; break;
647 default: return -EINVAL
;
651 * Work around bugs in userspace programs that like to do
652 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
653 * should be in bytes, not in bits.
655 if (type
== EV_KEY
&& size
== OLD_KEY_MAX
) {
657 if (printk_timed_ratelimit(&keymax_warn_time
, 10 * 1000))
658 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
659 "limiting output to %zu bytes. See "
660 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
662 BITS_TO_LONGS(OLD_KEY_MAX
) * sizeof(long));
665 return bits_to_user(bits
, len
, size
, p
, compat_mode
);
669 static int evdev_handle_get_keycode(struct input_dev
*dev
, void __user
*p
)
671 struct input_keymap_entry ke
= {
672 .len
= sizeof(unsigned int),
675 int __user
*ip
= (int __user
*)p
;
679 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
682 error
= input_get_keycode(dev
, &ke
);
686 if (put_user(ke
.keycode
, ip
+ 1))
692 static int evdev_handle_get_keycode_v2(struct input_dev
*dev
, void __user
*p
)
694 struct input_keymap_entry ke
;
697 if (copy_from_user(&ke
, p
, sizeof(ke
)))
700 error
= input_get_keycode(dev
, &ke
);
704 if (copy_to_user(p
, &ke
, sizeof(ke
)))
710 static int evdev_handle_set_keycode(struct input_dev
*dev
, void __user
*p
)
712 struct input_keymap_entry ke
= {
713 .len
= sizeof(unsigned int),
716 int __user
*ip
= (int __user
*)p
;
718 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
721 if (get_user(ke
.keycode
, ip
+ 1))
724 return input_set_keycode(dev
, &ke
);
727 static int evdev_handle_set_keycode_v2(struct input_dev
*dev
, void __user
*p
)
729 struct input_keymap_entry ke
;
731 if (copy_from_user(&ke
, p
, sizeof(ke
)))
734 if (ke
.len
> sizeof(ke
.scancode
))
737 return input_set_keycode(dev
, &ke
);
741 * If we transfer state to the user, we should flush all pending events
742 * of the same type from the client's queue. Otherwise, they might end up
743 * with duplicate events, which can screw up client's state tracking.
744 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
745 * event so user-space will notice missing events.
748 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
749 * need the even_lock only to guarantee consistent state. We can safely release
750 * it while flushing the queue. This allows input-core to handle filters while
751 * we flush the queue.
753 static int evdev_handle_get_val(struct evdev_client
*client
,
754 struct input_dev
*dev
, unsigned int type
,
755 unsigned long *bits
, unsigned int maxbit
,
756 unsigned int maxlen
, void __user
*p
,
763 len
= BITS_TO_LONGS(maxbit
) * sizeof(unsigned long);
764 mem
= kmalloc(len
, GFP_KERNEL
);
768 spin_lock_irq(&dev
->event_lock
);
769 spin_lock(&client
->buffer_lock
);
771 memcpy(mem
, bits
, len
);
773 spin_unlock(&dev
->event_lock
);
775 __evdev_flush_queue(client
, type
);
777 spin_unlock_irq(&client
->buffer_lock
);
779 ret
= bits_to_user(mem
, maxbit
, maxlen
, p
, compat
);
781 evdev_queue_syn_dropped(client
);
788 static int evdev_handle_mt_request(struct input_dev
*dev
,
792 const struct input_mt
*mt
= dev
->mt
;
797 if (get_user(code
, &ip
[0]))
799 if (!mt
|| !input_is_mt_value(code
))
802 max_slots
= (size
- sizeof(__u32
)) / sizeof(__s32
);
803 for (i
= 0; i
< mt
->num_slots
&& i
< max_slots
; i
++) {
804 int value
= input_mt_get_value(&mt
->slots
[i
], code
);
805 if (put_user(value
, &ip
[1 + i
]))
812 static int evdev_revoke(struct evdev
*evdev
, struct evdev_client
*client
,
815 client
->revoked
= true;
816 evdev_ungrab(evdev
, client
);
817 input_flush_device(&evdev
->handle
, file
);
818 wake_up_interruptible(&evdev
->wait
);
823 static long evdev_do_ioctl(struct file
*file
, unsigned int cmd
,
824 void __user
*p
, int compat_mode
)
826 struct evdev_client
*client
= file
->private_data
;
827 struct evdev
*evdev
= client
->evdev
;
828 struct input_dev
*dev
= evdev
->handle
.dev
;
829 struct input_absinfo abs
;
830 struct ff_effect effect
;
831 int __user
*ip
= (int __user
*)p
;
832 unsigned int i
, t
, u
, v
;
836 /* First we check for fixed-length commands */
840 return put_user(EV_VERSION
, ip
);
843 if (copy_to_user(p
, &dev
->id
, sizeof(struct input_id
)))
848 if (!test_bit(EV_REP
, dev
->evbit
))
850 if (put_user(dev
->rep
[REP_DELAY
], ip
))
852 if (put_user(dev
->rep
[REP_PERIOD
], ip
+ 1))
857 if (!test_bit(EV_REP
, dev
->evbit
))
861 if (get_user(v
, ip
+ 1))
864 input_inject_event(&evdev
->handle
, EV_REP
, REP_DELAY
, u
);
865 input_inject_event(&evdev
->handle
, EV_REP
, REP_PERIOD
, v
);
870 return input_ff_erase(dev
, (int)(unsigned long) p
, file
);
873 i
= test_bit(EV_FF
, dev
->evbit
) ?
874 dev
->ff
->max_effects
: 0;
881 return evdev_grab(evdev
, client
);
883 return evdev_ungrab(evdev
, client
);
889 return evdev_revoke(evdev
, client
, file
);
892 if (copy_from_user(&i
, p
, sizeof(unsigned int)))
894 if (i
!= CLOCK_MONOTONIC
&& i
!= CLOCK_REALTIME
)
900 return evdev_handle_get_keycode(dev
, p
);
903 return evdev_handle_set_keycode(dev
, p
);
905 case EVIOCGKEYCODE_V2
:
906 return evdev_handle_get_keycode_v2(dev
, p
);
908 case EVIOCSKEYCODE_V2
:
909 return evdev_handle_set_keycode_v2(dev
, p
);
912 size
= _IOC_SIZE(cmd
);
914 /* Now check variable-length commands */
915 #define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
916 switch (EVIOC_MASK_SIZE(cmd
)) {
919 return bits_to_user(dev
->propbit
, INPUT_PROP_MAX
,
920 size
, p
, compat_mode
);
922 case EVIOCGMTSLOTS(0):
923 return evdev_handle_mt_request(dev
, size
, ip
);
926 return evdev_handle_get_val(client
, dev
, EV_KEY
, dev
->key
,
927 KEY_MAX
, size
, p
, compat_mode
);
930 return evdev_handle_get_val(client
, dev
, EV_LED
, dev
->led
,
931 LED_MAX
, size
, p
, compat_mode
);
934 return evdev_handle_get_val(client
, dev
, EV_SND
, dev
->snd
,
935 SND_MAX
, size
, p
, compat_mode
);
938 return evdev_handle_get_val(client
, dev
, EV_SW
, dev
->sw
,
939 SW_MAX
, size
, p
, compat_mode
);
942 return str_to_user(dev
->name
, size
, p
);
945 return str_to_user(dev
->phys
, size
, p
);
948 return str_to_user(dev
->uniq
, size
, p
);
950 case EVIOC_MASK_SIZE(EVIOCSFF
):
951 if (input_ff_effect_from_user(p
, size
, &effect
))
954 error
= input_ff_upload(dev
, &effect
, file
);
956 if (put_user(effect
.id
, &(((struct ff_effect __user
*)p
)->id
)))
962 /* Multi-number variable-length handlers */
963 if (_IOC_TYPE(cmd
) != 'E')
966 if (_IOC_DIR(cmd
) == _IOC_READ
) {
968 if ((_IOC_NR(cmd
) & ~EV_MAX
) == _IOC_NR(EVIOCGBIT(0, 0)))
969 return handle_eviocgbit(dev
,
970 _IOC_NR(cmd
) & EV_MAX
, size
,
973 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCGABS(0))) {
978 t
= _IOC_NR(cmd
) & ABS_MAX
;
979 abs
= dev
->absinfo
[t
];
981 if (copy_to_user(p
, &abs
, min_t(size_t,
982 size
, sizeof(struct input_absinfo
))))
989 if (_IOC_DIR(cmd
) == _IOC_WRITE
) {
991 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCSABS(0))) {
996 t
= _IOC_NR(cmd
) & ABS_MAX
;
998 if (copy_from_user(&abs
, p
, min_t(size_t,
999 size
, sizeof(struct input_absinfo
))))
1002 if (size
< sizeof(struct input_absinfo
))
1005 /* We can't change number of reserved MT slots */
1006 if (t
== ABS_MT_SLOT
)
1010 * Take event lock to ensure that we are not
1011 * changing device parameters in the middle
1014 spin_lock_irq(&dev
->event_lock
);
1015 dev
->absinfo
[t
] = abs
;
1016 spin_unlock_irq(&dev
->event_lock
);
1025 static long evdev_ioctl_handler(struct file
*file
, unsigned int cmd
,
1026 void __user
*p
, int compat_mode
)
1028 struct evdev_client
*client
= file
->private_data
;
1029 struct evdev
*evdev
= client
->evdev
;
1032 retval
= mutex_lock_interruptible(&evdev
->mutex
);
1036 if (!evdev
->exist
|| client
->revoked
) {
1041 retval
= evdev_do_ioctl(file
, cmd
, p
, compat_mode
);
1044 mutex_unlock(&evdev
->mutex
);
1048 static long evdev_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1050 return evdev_ioctl_handler(file
, cmd
, (void __user
*)arg
, 0);
1053 #ifdef CONFIG_COMPAT
1054 static long evdev_ioctl_compat(struct file
*file
,
1055 unsigned int cmd
, unsigned long arg
)
1057 return evdev_ioctl_handler(file
, cmd
, compat_ptr(arg
), 1);
1061 static const struct file_operations evdev_fops
= {
1062 .owner
= THIS_MODULE
,
1064 .write
= evdev_write
,
1067 .release
= evdev_release
,
1068 .unlocked_ioctl
= evdev_ioctl
,
1069 #ifdef CONFIG_COMPAT
1070 .compat_ioctl
= evdev_ioctl_compat
,
1072 .fasync
= evdev_fasync
,
1073 .flush
= evdev_flush
,
1074 .llseek
= no_llseek
,
1078 * Mark device non-existent. This disables writes, ioctls and
1079 * prevents new users from opening the device. Already posted
1080 * blocking reads will stay, however new ones will fail.
1082 static void evdev_mark_dead(struct evdev
*evdev
)
1084 mutex_lock(&evdev
->mutex
);
1085 evdev
->exist
= false;
1086 mutex_unlock(&evdev
->mutex
);
1089 static void evdev_cleanup(struct evdev
*evdev
)
1091 struct input_handle
*handle
= &evdev
->handle
;
1093 evdev_mark_dead(evdev
);
1094 evdev_hangup(evdev
);
1096 cdev_del(&evdev
->cdev
);
1098 /* evdev is marked dead so no one else accesses evdev->open */
1100 input_flush_device(handle
, NULL
);
1101 input_close_device(handle
);
1106 * Create new evdev device. Note that input core serializes calls
1107 * to connect and disconnect.
1109 static int evdev_connect(struct input_handler
*handler
, struct input_dev
*dev
,
1110 const struct input_device_id
*id
)
1112 struct evdev
*evdev
;
1117 minor
= input_get_new_minor(EVDEV_MINOR_BASE
, EVDEV_MINORS
, true);
1120 pr_err("failed to reserve new minor: %d\n", error
);
1124 evdev
= kzalloc(sizeof(struct evdev
), GFP_KERNEL
);
1127 goto err_free_minor
;
1130 INIT_LIST_HEAD(&evdev
->client_list
);
1131 spin_lock_init(&evdev
->client_lock
);
1132 mutex_init(&evdev
->mutex
);
1133 init_waitqueue_head(&evdev
->wait
);
1134 evdev
->exist
= true;
1137 /* Normalize device number if it falls into legacy range */
1138 if (dev_no
< EVDEV_MINOR_BASE
+ EVDEV_MINORS
)
1139 dev_no
-= EVDEV_MINOR_BASE
;
1140 dev_set_name(&evdev
->dev
, "event%d", dev_no
);
1142 evdev
->handle
.dev
= input_get_device(dev
);
1143 evdev
->handle
.name
= dev_name(&evdev
->dev
);
1144 evdev
->handle
.handler
= handler
;
1145 evdev
->handle
.private = evdev
;
1147 evdev
->dev
.devt
= MKDEV(INPUT_MAJOR
, minor
);
1148 evdev
->dev
.class = &input_class
;
1149 evdev
->dev
.parent
= &dev
->dev
;
1150 evdev
->dev
.release
= evdev_free
;
1151 device_initialize(&evdev
->dev
);
1153 error
= input_register_handle(&evdev
->handle
);
1155 goto err_free_evdev
;
1157 cdev_init(&evdev
->cdev
, &evdev_fops
);
1158 evdev
->cdev
.kobj
.parent
= &evdev
->dev
.kobj
;
1159 error
= cdev_add(&evdev
->cdev
, evdev
->dev
.devt
, 1);
1161 goto err_unregister_handle
;
1163 error
= device_add(&evdev
->dev
);
1165 goto err_cleanup_evdev
;
1170 evdev_cleanup(evdev
);
1171 err_unregister_handle
:
1172 input_unregister_handle(&evdev
->handle
);
1174 put_device(&evdev
->dev
);
1176 input_free_minor(minor
);
1180 static void evdev_disconnect(struct input_handle
*handle
)
1182 struct evdev
*evdev
= handle
->private;
1184 device_del(&evdev
->dev
);
1185 evdev_cleanup(evdev
);
1186 input_free_minor(MINOR(evdev
->dev
.devt
));
1187 input_unregister_handle(handle
);
1188 put_device(&evdev
->dev
);
1191 static const struct input_device_id evdev_ids
[] = {
1192 { .driver_info
= 1 }, /* Matches all devices */
1193 { }, /* Terminating zero entry */
1196 MODULE_DEVICE_TABLE(input
, evdev_ids
);
1198 static struct input_handler evdev_handler
= {
1199 .event
= evdev_event
,
1200 .events
= evdev_events
,
1201 .connect
= evdev_connect
,
1202 .disconnect
= evdev_disconnect
,
1203 .legacy_minors
= true,
1204 .minor
= EVDEV_MINOR_BASE
,
1206 .id_table
= evdev_ids
,
1209 static int __init
evdev_init(void)
1211 return input_register_handler(&evdev_handler
);
1214 static void __exit
evdev_exit(void)
1216 input_unregister_handler(&evdev_handler
);
1219 module_init(evdev_init
);
1220 module_exit(evdev_exit
);
1222 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1223 MODULE_DESCRIPTION("Input driver event char devices");
1224 MODULE_LICENSE("GPL");