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"
31 enum evdev_clock_type
{
40 struct input_handle handle
;
41 wait_queue_head_t wait
;
42 struct evdev_client __rcu
*grab
;
43 struct list_head client_list
;
44 spinlock_t client_lock
; /* protects client_list */
54 unsigned int packet_head
; /* [future] position of the first element of next packet */
55 spinlock_t buffer_lock
; /* protects access to buffer, head and tail */
56 struct fasync_struct
*fasync
;
58 struct list_head node
;
59 unsigned int clk_type
;
61 unsigned long *evmasks
[EV_CNT
];
63 struct input_event buffer
[];
66 static size_t evdev_get_mask_cnt(unsigned int type
)
68 static const size_t counts
[EV_CNT
] = {
69 /* EV_SYN==0 is EV_CNT, _not_ SYN_CNT, see EVIOCGBIT */
81 return (type
< EV_CNT
) ? counts
[type
] : 0;
84 /* requires the buffer lock to be held */
85 static bool __evdev_is_filtered(struct evdev_client
*client
,
92 /* EV_SYN and unknown codes are never filtered */
93 if (type
== EV_SYN
|| type
>= EV_CNT
)
96 /* first test whether the type is filtered */
97 mask
= client
->evmasks
[0];
98 if (mask
&& !test_bit(type
, mask
))
101 /* unknown values are never filtered */
102 cnt
= evdev_get_mask_cnt(type
);
103 if (!cnt
|| code
>= cnt
)
106 mask
= client
->evmasks
[type
];
107 return mask
&& !test_bit(code
, mask
);
110 /* flush queued events of type @type, caller must hold client->buffer_lock */
111 static void __evdev_flush_queue(struct evdev_client
*client
, unsigned int type
)
113 unsigned int i
, head
, num
;
114 unsigned int mask
= client
->bufsize
- 1;
116 struct input_event
*ev
;
118 BUG_ON(type
== EV_SYN
);
121 client
->packet_head
= client
->tail
;
123 /* init to 1 so a leading SYN_REPORT will not be dropped */
126 for (i
= client
->tail
; i
!= client
->head
; i
= (i
+ 1) & mask
) {
127 ev
= &client
->buffer
[i
];
128 is_report
= ev
->type
== EV_SYN
&& ev
->code
== SYN_REPORT
;
130 if (ev
->type
== type
) {
131 /* drop matched entry */
133 } else if (is_report
&& !num
) {
134 /* drop empty SYN_REPORT groups */
136 } else if (head
!= i
) {
137 /* move entry to fill the gap */
138 client
->buffer
[head
] = *ev
;
142 head
= (head
+ 1) & mask
;
146 client
->packet_head
= head
;
153 static void __evdev_queue_syn_dropped(struct evdev_client
*client
)
155 struct input_event ev
;
157 struct timespec64 ts
;
159 time
= client
->clk_type
== EV_CLK_REAL
?
161 client
->clk_type
== EV_CLK_MONO
?
163 ktime_get_boottime();
165 ts
= ktime_to_timespec64(time
);
166 ev
.input_event_sec
= ts
.tv_sec
;
167 ev
.input_event_usec
= ts
.tv_nsec
/ NSEC_PER_USEC
;
169 ev
.code
= SYN_DROPPED
;
172 client
->buffer
[client
->head
++] = ev
;
173 client
->head
&= client
->bufsize
- 1;
175 if (unlikely(client
->head
== client
->tail
)) {
176 /* drop queue but keep our SYN_DROPPED event */
177 client
->tail
= (client
->head
- 1) & (client
->bufsize
- 1);
178 client
->packet_head
= client
->tail
;
182 static void evdev_queue_syn_dropped(struct evdev_client
*client
)
186 spin_lock_irqsave(&client
->buffer_lock
, flags
);
187 __evdev_queue_syn_dropped(client
);
188 spin_unlock_irqrestore(&client
->buffer_lock
, flags
);
191 static int evdev_set_clk_type(struct evdev_client
*client
, unsigned int clkid
)
194 unsigned int clk_type
;
199 clk_type
= EV_CLK_REAL
;
201 case CLOCK_MONOTONIC
:
202 clk_type
= EV_CLK_MONO
;
205 clk_type
= EV_CLK_BOOT
;
211 if (client
->clk_type
!= clk_type
) {
212 client
->clk_type
= clk_type
;
215 * Flush pending events and queue SYN_DROPPED event,
216 * but only if the queue is not empty.
218 spin_lock_irqsave(&client
->buffer_lock
, flags
);
220 if (client
->head
!= client
->tail
) {
221 client
->packet_head
= client
->head
= client
->tail
;
222 __evdev_queue_syn_dropped(client
);
225 spin_unlock_irqrestore(&client
->buffer_lock
, flags
);
231 static void __pass_event(struct evdev_client
*client
,
232 const struct input_event
*event
)
234 client
->buffer
[client
->head
++] = *event
;
235 client
->head
&= client
->bufsize
- 1;
237 if (unlikely(client
->head
== client
->tail
)) {
239 * This effectively "drops" all unconsumed events, leaving
240 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
242 client
->tail
= (client
->head
- 2) & (client
->bufsize
- 1);
244 client
->buffer
[client
->tail
].input_event_sec
=
245 event
->input_event_sec
;
246 client
->buffer
[client
->tail
].input_event_usec
=
247 event
->input_event_usec
;
248 client
->buffer
[client
->tail
].type
= EV_SYN
;
249 client
->buffer
[client
->tail
].code
= SYN_DROPPED
;
250 client
->buffer
[client
->tail
].value
= 0;
252 client
->packet_head
= client
->tail
;
255 if (event
->type
== EV_SYN
&& event
->code
== SYN_REPORT
) {
256 client
->packet_head
= client
->head
;
257 kill_fasync(&client
->fasync
, SIGIO
, POLL_IN
);
261 static void evdev_pass_values(struct evdev_client
*client
,
262 const struct input_value
*vals
, unsigned int count
,
265 struct evdev
*evdev
= client
->evdev
;
266 const struct input_value
*v
;
267 struct input_event event
;
268 struct timespec64 ts
;
274 ts
= ktime_to_timespec64(ev_time
[client
->clk_type
]);
275 event
.input_event_sec
= ts
.tv_sec
;
276 event
.input_event_usec
= ts
.tv_nsec
/ NSEC_PER_USEC
;
278 /* Interrupts are disabled, just acquire the lock. */
279 spin_lock(&client
->buffer_lock
);
281 for (v
= vals
; v
!= vals
+ count
; v
++) {
282 if (__evdev_is_filtered(client
, v
->type
, v
->code
))
285 if (v
->type
== EV_SYN
&& v
->code
== SYN_REPORT
) {
286 /* drop empty SYN_REPORT */
287 if (client
->packet_head
== client
->head
)
293 event
.type
= v
->type
;
294 event
.code
= v
->code
;
295 event
.value
= v
->value
;
296 __pass_event(client
, &event
);
299 spin_unlock(&client
->buffer_lock
);
302 wake_up_interruptible(&evdev
->wait
);
306 * Pass incoming events to all connected clients.
308 static void evdev_events(struct input_handle
*handle
,
309 const struct input_value
*vals
, unsigned int count
)
311 struct evdev
*evdev
= handle
->private;
312 struct evdev_client
*client
;
313 ktime_t ev_time
[EV_CLK_MAX
];
315 ev_time
[EV_CLK_MONO
] = ktime_get();
316 ev_time
[EV_CLK_REAL
] = ktime_mono_to_real(ev_time
[EV_CLK_MONO
]);
317 ev_time
[EV_CLK_BOOT
] = ktime_mono_to_any(ev_time
[EV_CLK_MONO
],
322 client
= rcu_dereference(evdev
->grab
);
325 evdev_pass_values(client
, vals
, count
, ev_time
);
327 list_for_each_entry_rcu(client
, &evdev
->client_list
, node
)
328 evdev_pass_values(client
, vals
, count
, ev_time
);
334 * Pass incoming event to all connected clients.
336 static void evdev_event(struct input_handle
*handle
,
337 unsigned int type
, unsigned int code
, int value
)
339 struct input_value vals
[] = { { type
, code
, value
} };
341 evdev_events(handle
, vals
, 1);
344 static int evdev_fasync(int fd
, struct file
*file
, int on
)
346 struct evdev_client
*client
= file
->private_data
;
348 return fasync_helper(fd
, file
, on
, &client
->fasync
);
351 static int evdev_flush(struct file
*file
, fl_owner_t id
)
353 struct evdev_client
*client
= file
->private_data
;
354 struct evdev
*evdev
= client
->evdev
;
356 mutex_lock(&evdev
->mutex
);
358 if (evdev
->exist
&& !client
->revoked
)
359 input_flush_device(&evdev
->handle
, file
);
361 mutex_unlock(&evdev
->mutex
);
365 static void evdev_free(struct device
*dev
)
367 struct evdev
*evdev
= container_of(dev
, struct evdev
, dev
);
369 input_put_device(evdev
->handle
.dev
);
374 * Grabs an event device (along with underlying input device).
375 * This function is called with evdev->mutex taken.
377 static int evdev_grab(struct evdev
*evdev
, struct evdev_client
*client
)
384 error
= input_grab_device(&evdev
->handle
);
388 rcu_assign_pointer(evdev
->grab
, client
);
393 static int evdev_ungrab(struct evdev
*evdev
, struct evdev_client
*client
)
395 struct evdev_client
*grab
= rcu_dereference_protected(evdev
->grab
,
396 lockdep_is_held(&evdev
->mutex
));
401 rcu_assign_pointer(evdev
->grab
, NULL
);
403 input_release_device(&evdev
->handle
);
408 static void evdev_attach_client(struct evdev
*evdev
,
409 struct evdev_client
*client
)
411 spin_lock(&evdev
->client_lock
);
412 list_add_tail_rcu(&client
->node
, &evdev
->client_list
);
413 spin_unlock(&evdev
->client_lock
);
416 static void evdev_detach_client(struct evdev
*evdev
,
417 struct evdev_client
*client
)
419 spin_lock(&evdev
->client_lock
);
420 list_del_rcu(&client
->node
);
421 spin_unlock(&evdev
->client_lock
);
425 static int evdev_open_device(struct evdev
*evdev
)
429 retval
= mutex_lock_interruptible(&evdev
->mutex
);
435 else if (!evdev
->open
++) {
436 retval
= input_open_device(&evdev
->handle
);
441 mutex_unlock(&evdev
->mutex
);
445 static void evdev_close_device(struct evdev
*evdev
)
447 mutex_lock(&evdev
->mutex
);
449 if (evdev
->exist
&& !--evdev
->open
)
450 input_close_device(&evdev
->handle
);
452 mutex_unlock(&evdev
->mutex
);
456 * Wake up users waiting for IO so they can disconnect from
459 static void evdev_hangup(struct evdev
*evdev
)
461 struct evdev_client
*client
;
463 spin_lock(&evdev
->client_lock
);
464 list_for_each_entry(client
, &evdev
->client_list
, node
)
465 kill_fasync(&client
->fasync
, SIGIO
, POLL_HUP
);
466 spin_unlock(&evdev
->client_lock
);
468 wake_up_interruptible(&evdev
->wait
);
471 static int evdev_release(struct inode
*inode
, struct file
*file
)
473 struct evdev_client
*client
= file
->private_data
;
474 struct evdev
*evdev
= client
->evdev
;
477 mutex_lock(&evdev
->mutex
);
478 evdev_ungrab(evdev
, client
);
479 mutex_unlock(&evdev
->mutex
);
481 evdev_detach_client(evdev
, client
);
483 for (i
= 0; i
< EV_CNT
; ++i
)
484 bitmap_free(client
->evmasks
[i
]);
488 evdev_close_device(evdev
);
493 static unsigned int evdev_compute_buffer_size(struct input_dev
*dev
)
495 unsigned int n_events
=
496 max(dev
->hint_events_per_packet
* EVDEV_BUF_PACKETS
,
497 EVDEV_MIN_BUFFER_SIZE
);
499 return roundup_pow_of_two(n_events
);
502 static int evdev_open(struct inode
*inode
, struct file
*file
)
504 struct evdev
*evdev
= container_of(inode
->i_cdev
, struct evdev
, cdev
);
505 unsigned int bufsize
= evdev_compute_buffer_size(evdev
->handle
.dev
);
506 unsigned int size
= sizeof(struct evdev_client
) +
507 bufsize
* sizeof(struct input_event
);
508 struct evdev_client
*client
;
511 client
= kzalloc(size
, GFP_KERNEL
| __GFP_NOWARN
);
513 client
= vzalloc(size
);
517 client
->bufsize
= bufsize
;
518 spin_lock_init(&client
->buffer_lock
);
519 client
->evdev
= evdev
;
520 evdev_attach_client(evdev
, client
);
522 error
= evdev_open_device(evdev
);
524 goto err_free_client
;
526 file
->private_data
= client
;
527 nonseekable_open(inode
, file
);
532 evdev_detach_client(evdev
, client
);
537 static ssize_t
evdev_write(struct file
*file
, const char __user
*buffer
,
538 size_t count
, loff_t
*ppos
)
540 struct evdev_client
*client
= file
->private_data
;
541 struct evdev
*evdev
= client
->evdev
;
542 struct input_event event
;
545 if (count
!= 0 && count
< input_event_size())
548 retval
= mutex_lock_interruptible(&evdev
->mutex
);
552 if (!evdev
->exist
|| client
->revoked
) {
557 while (retval
+ input_event_size() <= count
) {
559 if (input_event_from_user(buffer
+ retval
, &event
)) {
563 retval
+= input_event_size();
565 input_inject_event(&evdev
->handle
,
566 event
.type
, event
.code
, event
.value
);
571 mutex_unlock(&evdev
->mutex
);
575 static int evdev_fetch_next_event(struct evdev_client
*client
,
576 struct input_event
*event
)
580 spin_lock_irq(&client
->buffer_lock
);
582 have_event
= client
->packet_head
!= client
->tail
;
584 *event
= client
->buffer
[client
->tail
++];
585 client
->tail
&= client
->bufsize
- 1;
588 spin_unlock_irq(&client
->buffer_lock
);
593 static ssize_t
evdev_read(struct file
*file
, char __user
*buffer
,
594 size_t count
, loff_t
*ppos
)
596 struct evdev_client
*client
= file
->private_data
;
597 struct evdev
*evdev
= client
->evdev
;
598 struct input_event event
;
602 if (count
!= 0 && count
< input_event_size())
606 if (!evdev
->exist
|| client
->revoked
)
609 if (client
->packet_head
== client
->tail
&&
610 (file
->f_flags
& O_NONBLOCK
))
614 * count == 0 is special - no IO is done but we check
615 * for error conditions (see above).
620 while (read
+ input_event_size() <= count
&&
621 evdev_fetch_next_event(client
, &event
)) {
623 if (input_event_to_user(buffer
+ read
, &event
))
626 read
+= input_event_size();
632 if (!(file
->f_flags
& O_NONBLOCK
)) {
633 error
= wait_event_interruptible(evdev
->wait
,
634 client
->packet_head
!= client
->tail
||
635 !evdev
->exist
|| client
->revoked
);
644 /* No kernel lock - fine */
645 static __poll_t
evdev_poll(struct file
*file
, poll_table
*wait
)
647 struct evdev_client
*client
= file
->private_data
;
648 struct evdev
*evdev
= client
->evdev
;
651 poll_wait(file
, &evdev
->wait
, wait
);
653 if (evdev
->exist
&& !client
->revoked
)
654 mask
= EPOLLOUT
| EPOLLWRNORM
;
656 mask
= EPOLLHUP
| EPOLLERR
;
658 if (client
->packet_head
!= client
->tail
)
659 mask
|= EPOLLIN
| EPOLLRDNORM
;
666 #define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
667 #define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
670 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
671 unsigned int maxlen
, void __user
*p
, int compat
)
676 len
= BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
);
680 for (i
= 0; i
< len
/ sizeof(compat_long_t
); i
++)
681 if (copy_to_user((compat_long_t __user
*) p
+ i
,
682 (compat_long_t
*) bits
+
683 i
+ 1 - ((i
% 2) << 1),
684 sizeof(compat_long_t
)))
687 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
691 if (copy_to_user(p
, bits
, len
))
698 static int bits_from_user(unsigned long *bits
, unsigned int maxbit
,
699 unsigned int maxlen
, const void __user
*p
, int compat
)
704 if (maxlen
% sizeof(compat_long_t
))
707 len
= BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
);
711 for (i
= 0; i
< len
/ sizeof(compat_long_t
); i
++)
712 if (copy_from_user((compat_long_t
*) bits
+
713 i
+ 1 - ((i
% 2) << 1),
714 (compat_long_t __user
*) p
+ i
,
715 sizeof(compat_long_t
)))
718 *((compat_long_t
*) bits
+ i
- 1) = 0;
721 if (maxlen
% sizeof(long))
724 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
728 if (copy_from_user(bits
, p
, len
))
737 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
738 unsigned int maxlen
, void __user
*p
, int compat
)
741 BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
) :
742 BITS_TO_LONGS(maxbit
) * sizeof(long);
747 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
750 static int bits_from_user(unsigned long *bits
, unsigned int maxbit
,
751 unsigned int maxlen
, const void __user
*p
, int compat
)
753 size_t chunk_size
= compat
? sizeof(compat_long_t
) : sizeof(long);
756 if (maxlen
% chunk_size
)
759 len
= compat
? BITS_TO_LONGS_COMPAT(maxbit
) : BITS_TO_LONGS(maxbit
);
764 return copy_from_user(bits
, p
, len
) ? -EFAULT
: len
;
767 #endif /* __BIG_ENDIAN */
771 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
772 unsigned int maxlen
, void __user
*p
, int compat
)
774 int len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
779 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
782 static int bits_from_user(unsigned long *bits
, unsigned int maxbit
,
783 unsigned int maxlen
, const void __user
*p
, int compat
)
787 if (maxlen
% sizeof(long))
790 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
794 return copy_from_user(bits
, p
, len
) ? -EFAULT
: len
;
797 #endif /* CONFIG_COMPAT */
799 static int str_to_user(const char *str
, unsigned int maxlen
, void __user
*p
)
806 len
= strlen(str
) + 1;
810 return copy_to_user(p
, str
, len
) ? -EFAULT
: len
;
813 static int handle_eviocgbit(struct input_dev
*dev
,
814 unsigned int type
, unsigned int size
,
815 void __user
*p
, int compat_mode
)
822 case 0: bits
= dev
->evbit
; len
= EV_MAX
; break;
823 case EV_KEY
: bits
= dev
->keybit
; len
= KEY_MAX
; break;
824 case EV_REL
: bits
= dev
->relbit
; len
= REL_MAX
; break;
825 case EV_ABS
: bits
= dev
->absbit
; len
= ABS_MAX
; break;
826 case EV_MSC
: bits
= dev
->mscbit
; len
= MSC_MAX
; break;
827 case EV_LED
: bits
= dev
->ledbit
; len
= LED_MAX
; break;
828 case EV_SND
: bits
= dev
->sndbit
; len
= SND_MAX
; break;
829 case EV_FF
: bits
= dev
->ffbit
; len
= FF_MAX
; break;
830 case EV_SW
: bits
= dev
->swbit
; len
= SW_MAX
; break;
831 default: return -EINVAL
;
834 return bits_to_user(bits
, len
, size
, p
, compat_mode
);
837 static int evdev_handle_get_keycode(struct input_dev
*dev
, void __user
*p
)
839 struct input_keymap_entry ke
= {
840 .len
= sizeof(unsigned int),
843 int __user
*ip
= (int __user
*)p
;
847 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
850 error
= input_get_keycode(dev
, &ke
);
854 if (put_user(ke
.keycode
, ip
+ 1))
860 static int evdev_handle_get_keycode_v2(struct input_dev
*dev
, void __user
*p
)
862 struct input_keymap_entry ke
;
865 if (copy_from_user(&ke
, p
, sizeof(ke
)))
868 error
= input_get_keycode(dev
, &ke
);
872 if (copy_to_user(p
, &ke
, sizeof(ke
)))
878 static int evdev_handle_set_keycode(struct input_dev
*dev
, void __user
*p
)
880 struct input_keymap_entry ke
= {
881 .len
= sizeof(unsigned int),
884 int __user
*ip
= (int __user
*)p
;
886 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
889 if (get_user(ke
.keycode
, ip
+ 1))
892 return input_set_keycode(dev
, &ke
);
895 static int evdev_handle_set_keycode_v2(struct input_dev
*dev
, void __user
*p
)
897 struct input_keymap_entry ke
;
899 if (copy_from_user(&ke
, p
, sizeof(ke
)))
902 if (ke
.len
> sizeof(ke
.scancode
))
905 return input_set_keycode(dev
, &ke
);
909 * If we transfer state to the user, we should flush all pending events
910 * of the same type from the client's queue. Otherwise, they might end up
911 * with duplicate events, which can screw up client's state tracking.
912 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
913 * event so user-space will notice missing events.
916 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
917 * need the even_lock only to guarantee consistent state. We can safely release
918 * it while flushing the queue. This allows input-core to handle filters while
919 * we flush the queue.
921 static int evdev_handle_get_val(struct evdev_client
*client
,
922 struct input_dev
*dev
, unsigned int type
,
923 unsigned long *bits
, unsigned int maxbit
,
924 unsigned int maxlen
, void __user
*p
,
930 mem
= bitmap_alloc(maxbit
, GFP_KERNEL
);
934 spin_lock_irq(&dev
->event_lock
);
935 spin_lock(&client
->buffer_lock
);
937 bitmap_copy(mem
, bits
, maxbit
);
939 spin_unlock(&dev
->event_lock
);
941 __evdev_flush_queue(client
, type
);
943 spin_unlock_irq(&client
->buffer_lock
);
945 ret
= bits_to_user(mem
, maxbit
, maxlen
, p
, compat
);
947 evdev_queue_syn_dropped(client
);
954 static int evdev_handle_mt_request(struct input_dev
*dev
,
958 const struct input_mt
*mt
= dev
->mt
;
963 if (get_user(code
, &ip
[0]))
965 if (!mt
|| !input_is_mt_value(code
))
968 max_slots
= (size
- sizeof(__u32
)) / sizeof(__s32
);
969 for (i
= 0; i
< mt
->num_slots
&& i
< max_slots
; i
++) {
970 int value
= input_mt_get_value(&mt
->slots
[i
], code
);
971 if (put_user(value
, &ip
[1 + i
]))
978 static int evdev_revoke(struct evdev
*evdev
, struct evdev_client
*client
,
981 client
->revoked
= true;
982 evdev_ungrab(evdev
, client
);
983 input_flush_device(&evdev
->handle
, file
);
984 wake_up_interruptible(&evdev
->wait
);
989 /* must be called with evdev-mutex held */
990 static int evdev_set_mask(struct evdev_client
*client
,
992 const void __user
*codes
,
996 unsigned long flags
, *mask
, *oldmask
;
1000 /* we allow unknown types and 'codes_size > size' for forward-compat */
1001 cnt
= evdev_get_mask_cnt(type
);
1005 mask
= bitmap_zalloc(cnt
, GFP_KERNEL
);
1009 error
= bits_from_user(mask
, cnt
- 1, codes_size
, codes
, compat
);
1015 spin_lock_irqsave(&client
->buffer_lock
, flags
);
1016 oldmask
= client
->evmasks
[type
];
1017 client
->evmasks
[type
] = mask
;
1018 spin_unlock_irqrestore(&client
->buffer_lock
, flags
);
1020 bitmap_free(oldmask
);
1025 /* must be called with evdev-mutex held */
1026 static int evdev_get_mask(struct evdev_client
*client
,
1032 unsigned long *mask
;
1033 size_t cnt
, size
, xfer_size
;
1037 /* we allow unknown types and 'codes_size > size' for forward-compat */
1038 cnt
= evdev_get_mask_cnt(type
);
1039 size
= sizeof(unsigned long) * BITS_TO_LONGS(cnt
);
1040 xfer_size
= min_t(size_t, codes_size
, size
);
1043 mask
= client
->evmasks
[type
];
1045 error
= bits_to_user(mask
, cnt
- 1,
1046 xfer_size
, codes
, compat
);
1050 /* fake mask with all bits set */
1051 for (i
= 0; i
< xfer_size
; i
++)
1052 if (put_user(0xffU
, (u8 __user
*)codes
+ i
))
1057 if (xfer_size
< codes_size
)
1058 if (clear_user(codes
+ xfer_size
, codes_size
- xfer_size
))
1064 static long evdev_do_ioctl(struct file
*file
, unsigned int cmd
,
1065 void __user
*p
, int compat_mode
)
1067 struct evdev_client
*client
= file
->private_data
;
1068 struct evdev
*evdev
= client
->evdev
;
1069 struct input_dev
*dev
= evdev
->handle
.dev
;
1070 struct input_absinfo abs
;
1071 struct input_mask mask
;
1072 struct ff_effect effect
;
1073 int __user
*ip
= (int __user
*)p
;
1074 unsigned int i
, t
, u
, v
;
1078 /* First we check for fixed-length commands */
1082 return put_user(EV_VERSION
, ip
);
1085 if (copy_to_user(p
, &dev
->id
, sizeof(struct input_id
)))
1090 if (!test_bit(EV_REP
, dev
->evbit
))
1092 if (put_user(dev
->rep
[REP_DELAY
], ip
))
1094 if (put_user(dev
->rep
[REP_PERIOD
], ip
+ 1))
1099 if (!test_bit(EV_REP
, dev
->evbit
))
1101 if (get_user(u
, ip
))
1103 if (get_user(v
, ip
+ 1))
1106 input_inject_event(&evdev
->handle
, EV_REP
, REP_DELAY
, u
);
1107 input_inject_event(&evdev
->handle
, EV_REP
, REP_PERIOD
, v
);
1112 return input_ff_erase(dev
, (int)(unsigned long) p
, file
);
1115 i
= test_bit(EV_FF
, dev
->evbit
) ?
1116 dev
->ff
->max_effects
: 0;
1117 if (put_user(i
, ip
))
1123 return evdev_grab(evdev
, client
);
1125 return evdev_ungrab(evdev
, client
);
1131 return evdev_revoke(evdev
, client
, file
);
1134 void __user
*codes_ptr
;
1136 if (copy_from_user(&mask
, p
, sizeof(mask
)))
1139 codes_ptr
= (void __user
*)(unsigned long)mask
.codes_ptr
;
1140 return evdev_get_mask(client
,
1141 mask
.type
, codes_ptr
, mask
.codes_size
,
1146 const void __user
*codes_ptr
;
1148 if (copy_from_user(&mask
, p
, sizeof(mask
)))
1151 codes_ptr
= (const void __user
*)(unsigned long)mask
.codes_ptr
;
1152 return evdev_set_mask(client
,
1153 mask
.type
, codes_ptr
, mask
.codes_size
,
1158 if (copy_from_user(&i
, p
, sizeof(unsigned int)))
1161 return evdev_set_clk_type(client
, i
);
1164 return evdev_handle_get_keycode(dev
, p
);
1167 return evdev_handle_set_keycode(dev
, p
);
1169 case EVIOCGKEYCODE_V2
:
1170 return evdev_handle_get_keycode_v2(dev
, p
);
1172 case EVIOCSKEYCODE_V2
:
1173 return evdev_handle_set_keycode_v2(dev
, p
);
1176 size
= _IOC_SIZE(cmd
);
1178 /* Now check variable-length commands */
1179 #define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
1180 switch (EVIOC_MASK_SIZE(cmd
)) {
1183 return bits_to_user(dev
->propbit
, INPUT_PROP_MAX
,
1184 size
, p
, compat_mode
);
1186 case EVIOCGMTSLOTS(0):
1187 return evdev_handle_mt_request(dev
, size
, ip
);
1190 return evdev_handle_get_val(client
, dev
, EV_KEY
, dev
->key
,
1191 KEY_MAX
, size
, p
, compat_mode
);
1194 return evdev_handle_get_val(client
, dev
, EV_LED
, dev
->led
,
1195 LED_MAX
, size
, p
, compat_mode
);
1198 return evdev_handle_get_val(client
, dev
, EV_SND
, dev
->snd
,
1199 SND_MAX
, size
, p
, compat_mode
);
1202 return evdev_handle_get_val(client
, dev
, EV_SW
, dev
->sw
,
1203 SW_MAX
, size
, p
, compat_mode
);
1206 return str_to_user(dev
->name
, size
, p
);
1209 return str_to_user(dev
->phys
, size
, p
);
1212 return str_to_user(dev
->uniq
, size
, p
);
1214 case EVIOC_MASK_SIZE(EVIOCSFF
):
1215 if (input_ff_effect_from_user(p
, size
, &effect
))
1218 error
= input_ff_upload(dev
, &effect
, file
);
1222 if (put_user(effect
.id
, &(((struct ff_effect __user
*)p
)->id
)))
1228 /* Multi-number variable-length handlers */
1229 if (_IOC_TYPE(cmd
) != 'E')
1232 if (_IOC_DIR(cmd
) == _IOC_READ
) {
1234 if ((_IOC_NR(cmd
) & ~EV_MAX
) == _IOC_NR(EVIOCGBIT(0, 0)))
1235 return handle_eviocgbit(dev
,
1236 _IOC_NR(cmd
) & EV_MAX
, size
,
1239 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCGABS(0))) {
1244 t
= _IOC_NR(cmd
) & ABS_MAX
;
1245 abs
= dev
->absinfo
[t
];
1247 if (copy_to_user(p
, &abs
, min_t(size_t,
1248 size
, sizeof(struct input_absinfo
))))
1255 if (_IOC_DIR(cmd
) == _IOC_WRITE
) {
1257 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCSABS(0))) {
1262 t
= _IOC_NR(cmd
) & ABS_MAX
;
1264 if (copy_from_user(&abs
, p
, min_t(size_t,
1265 size
, sizeof(struct input_absinfo
))))
1268 if (size
< sizeof(struct input_absinfo
))
1271 /* We can't change number of reserved MT slots */
1272 if (t
== ABS_MT_SLOT
)
1276 * Take event lock to ensure that we are not
1277 * changing device parameters in the middle
1280 spin_lock_irq(&dev
->event_lock
);
1281 dev
->absinfo
[t
] = abs
;
1282 spin_unlock_irq(&dev
->event_lock
);
1291 static long evdev_ioctl_handler(struct file
*file
, unsigned int cmd
,
1292 void __user
*p
, int compat_mode
)
1294 struct evdev_client
*client
= file
->private_data
;
1295 struct evdev
*evdev
= client
->evdev
;
1298 retval
= mutex_lock_interruptible(&evdev
->mutex
);
1302 if (!evdev
->exist
|| client
->revoked
) {
1307 retval
= evdev_do_ioctl(file
, cmd
, p
, compat_mode
);
1310 mutex_unlock(&evdev
->mutex
);
1314 static long evdev_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1316 return evdev_ioctl_handler(file
, cmd
, (void __user
*)arg
, 0);
1319 #ifdef CONFIG_COMPAT
1320 static long evdev_ioctl_compat(struct file
*file
,
1321 unsigned int cmd
, unsigned long arg
)
1323 return evdev_ioctl_handler(file
, cmd
, compat_ptr(arg
), 1);
1327 static const struct file_operations evdev_fops
= {
1328 .owner
= THIS_MODULE
,
1330 .write
= evdev_write
,
1333 .release
= evdev_release
,
1334 .unlocked_ioctl
= evdev_ioctl
,
1335 #ifdef CONFIG_COMPAT
1336 .compat_ioctl
= evdev_ioctl_compat
,
1338 .fasync
= evdev_fasync
,
1339 .flush
= evdev_flush
,
1340 .llseek
= no_llseek
,
1344 * Mark device non-existent. This disables writes, ioctls and
1345 * prevents new users from opening the device. Already posted
1346 * blocking reads will stay, however new ones will fail.
1348 static void evdev_mark_dead(struct evdev
*evdev
)
1350 mutex_lock(&evdev
->mutex
);
1351 evdev
->exist
= false;
1352 mutex_unlock(&evdev
->mutex
);
1355 static void evdev_cleanup(struct evdev
*evdev
)
1357 struct input_handle
*handle
= &evdev
->handle
;
1359 evdev_mark_dead(evdev
);
1360 evdev_hangup(evdev
);
1362 /* evdev is marked dead so no one else accesses evdev->open */
1364 input_flush_device(handle
, NULL
);
1365 input_close_device(handle
);
1370 * Create new evdev device. Note that input core serializes calls
1371 * to connect and disconnect.
1373 static int evdev_connect(struct input_handler
*handler
, struct input_dev
*dev
,
1374 const struct input_device_id
*id
)
1376 struct evdev
*evdev
;
1381 minor
= input_get_new_minor(EVDEV_MINOR_BASE
, EVDEV_MINORS
, true);
1384 pr_err("failed to reserve new minor: %d\n", error
);
1388 evdev
= kzalloc(sizeof(struct evdev
), GFP_KERNEL
);
1391 goto err_free_minor
;
1394 INIT_LIST_HEAD(&evdev
->client_list
);
1395 spin_lock_init(&evdev
->client_lock
);
1396 mutex_init(&evdev
->mutex
);
1397 init_waitqueue_head(&evdev
->wait
);
1398 evdev
->exist
= true;
1401 /* Normalize device number if it falls into legacy range */
1402 if (dev_no
< EVDEV_MINOR_BASE
+ EVDEV_MINORS
)
1403 dev_no
-= EVDEV_MINOR_BASE
;
1404 dev_set_name(&evdev
->dev
, "event%d", dev_no
);
1406 evdev
->handle
.dev
= input_get_device(dev
);
1407 evdev
->handle
.name
= dev_name(&evdev
->dev
);
1408 evdev
->handle
.handler
= handler
;
1409 evdev
->handle
.private = evdev
;
1411 evdev
->dev
.devt
= MKDEV(INPUT_MAJOR
, minor
);
1412 evdev
->dev
.class = &input_class
;
1413 evdev
->dev
.parent
= &dev
->dev
;
1414 evdev
->dev
.release
= evdev_free
;
1415 device_initialize(&evdev
->dev
);
1417 error
= input_register_handle(&evdev
->handle
);
1419 goto err_free_evdev
;
1421 cdev_init(&evdev
->cdev
, &evdev_fops
);
1423 error
= cdev_device_add(&evdev
->cdev
, &evdev
->dev
);
1425 goto err_cleanup_evdev
;
1430 evdev_cleanup(evdev
);
1431 input_unregister_handle(&evdev
->handle
);
1433 put_device(&evdev
->dev
);
1435 input_free_minor(minor
);
1439 static void evdev_disconnect(struct input_handle
*handle
)
1441 struct evdev
*evdev
= handle
->private;
1443 cdev_device_del(&evdev
->cdev
, &evdev
->dev
);
1444 evdev_cleanup(evdev
);
1445 input_free_minor(MINOR(evdev
->dev
.devt
));
1446 input_unregister_handle(handle
);
1447 put_device(&evdev
->dev
);
1450 static const struct input_device_id evdev_ids
[] = {
1451 { .driver_info
= 1 }, /* Matches all devices */
1452 { }, /* Terminating zero entry */
1455 MODULE_DEVICE_TABLE(input
, evdev_ids
);
1457 static struct input_handler evdev_handler
= {
1458 .event
= evdev_event
,
1459 .events
= evdev_events
,
1460 .connect
= evdev_connect
,
1461 .disconnect
= evdev_disconnect
,
1462 .legacy_minors
= true,
1463 .minor
= EVDEV_MINOR_BASE
,
1465 .id_table
= evdev_ids
,
1468 static int __init
evdev_init(void)
1470 return input_register_handler(&evdev_handler
);
1473 static void __exit
evdev_exit(void)
1475 input_unregister_handler(&evdev_handler
);
1478 module_init(evdev_init
);
1479 module_exit(evdev_exit
);
1481 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1482 MODULE_DESCRIPTION("Input driver event char devices");
1483 MODULE_LICENSE("GPL");