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
] = (struct input_event
) {
245 .input_event_sec
= event
->input_event_sec
,
246 .input_event_usec
= event
->input_event_usec
,
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 void evdev_free(struct device
*dev
)
353 struct evdev
*evdev
= container_of(dev
, struct evdev
, dev
);
355 input_put_device(evdev
->handle
.dev
);
360 * Grabs an event device (along with underlying input device).
361 * This function is called with evdev->mutex taken.
363 static int evdev_grab(struct evdev
*evdev
, struct evdev_client
*client
)
370 error
= input_grab_device(&evdev
->handle
);
374 rcu_assign_pointer(evdev
->grab
, client
);
379 static int evdev_ungrab(struct evdev
*evdev
, struct evdev_client
*client
)
381 struct evdev_client
*grab
= rcu_dereference_protected(evdev
->grab
,
382 lockdep_is_held(&evdev
->mutex
));
387 rcu_assign_pointer(evdev
->grab
, NULL
);
389 input_release_device(&evdev
->handle
);
394 static void evdev_attach_client(struct evdev
*evdev
,
395 struct evdev_client
*client
)
397 spin_lock(&evdev
->client_lock
);
398 list_add_tail_rcu(&client
->node
, &evdev
->client_list
);
399 spin_unlock(&evdev
->client_lock
);
402 static void evdev_detach_client(struct evdev
*evdev
,
403 struct evdev_client
*client
)
405 spin_lock(&evdev
->client_lock
);
406 list_del_rcu(&client
->node
);
407 spin_unlock(&evdev
->client_lock
);
411 static int evdev_open_device(struct evdev
*evdev
)
415 retval
= mutex_lock_interruptible(&evdev
->mutex
);
421 else if (!evdev
->open
++) {
422 retval
= input_open_device(&evdev
->handle
);
427 mutex_unlock(&evdev
->mutex
);
431 static void evdev_close_device(struct evdev
*evdev
)
433 mutex_lock(&evdev
->mutex
);
435 if (evdev
->exist
&& !--evdev
->open
)
436 input_close_device(&evdev
->handle
);
438 mutex_unlock(&evdev
->mutex
);
442 * Wake up users waiting for IO so they can disconnect from
445 static void evdev_hangup(struct evdev
*evdev
)
447 struct evdev_client
*client
;
449 spin_lock(&evdev
->client_lock
);
450 list_for_each_entry(client
, &evdev
->client_list
, node
)
451 kill_fasync(&client
->fasync
, SIGIO
, POLL_HUP
);
452 spin_unlock(&evdev
->client_lock
);
454 wake_up_interruptible(&evdev
->wait
);
457 static int evdev_release(struct inode
*inode
, struct file
*file
)
459 struct evdev_client
*client
= file
->private_data
;
460 struct evdev
*evdev
= client
->evdev
;
463 mutex_lock(&evdev
->mutex
);
465 if (evdev
->exist
&& !client
->revoked
)
466 input_flush_device(&evdev
->handle
, file
);
468 evdev_ungrab(evdev
, client
);
469 mutex_unlock(&evdev
->mutex
);
471 evdev_detach_client(evdev
, client
);
473 for (i
= 0; i
< EV_CNT
; ++i
)
474 bitmap_free(client
->evmasks
[i
]);
478 evdev_close_device(evdev
);
483 static unsigned int evdev_compute_buffer_size(struct input_dev
*dev
)
485 unsigned int n_events
=
486 max(dev
->hint_events_per_packet
* EVDEV_BUF_PACKETS
,
487 EVDEV_MIN_BUFFER_SIZE
);
489 return roundup_pow_of_two(n_events
);
492 static int evdev_open(struct inode
*inode
, struct file
*file
)
494 struct evdev
*evdev
= container_of(inode
->i_cdev
, struct evdev
, cdev
);
495 unsigned int bufsize
= evdev_compute_buffer_size(evdev
->handle
.dev
);
496 unsigned int size
= sizeof(struct evdev_client
) +
497 bufsize
* sizeof(struct input_event
);
498 struct evdev_client
*client
;
501 client
= kzalloc(size
, GFP_KERNEL
| __GFP_NOWARN
);
503 client
= vzalloc(size
);
507 client
->bufsize
= bufsize
;
508 spin_lock_init(&client
->buffer_lock
);
509 client
->evdev
= evdev
;
510 evdev_attach_client(evdev
, client
);
512 error
= evdev_open_device(evdev
);
514 goto err_free_client
;
516 file
->private_data
= client
;
517 nonseekable_open(inode
, file
);
522 evdev_detach_client(evdev
, client
);
527 static ssize_t
evdev_write(struct file
*file
, const char __user
*buffer
,
528 size_t count
, loff_t
*ppos
)
530 struct evdev_client
*client
= file
->private_data
;
531 struct evdev
*evdev
= client
->evdev
;
532 struct input_event event
;
535 if (count
!= 0 && count
< input_event_size())
538 retval
= mutex_lock_interruptible(&evdev
->mutex
);
542 if (!evdev
->exist
|| client
->revoked
) {
547 while (retval
+ input_event_size() <= count
) {
549 if (input_event_from_user(buffer
+ retval
, &event
)) {
553 retval
+= input_event_size();
555 input_inject_event(&evdev
->handle
,
556 event
.type
, event
.code
, event
.value
);
561 mutex_unlock(&evdev
->mutex
);
565 static int evdev_fetch_next_event(struct evdev_client
*client
,
566 struct input_event
*event
)
570 spin_lock_irq(&client
->buffer_lock
);
572 have_event
= client
->packet_head
!= client
->tail
;
574 *event
= client
->buffer
[client
->tail
++];
575 client
->tail
&= client
->bufsize
- 1;
578 spin_unlock_irq(&client
->buffer_lock
);
583 static ssize_t
evdev_read(struct file
*file
, char __user
*buffer
,
584 size_t count
, loff_t
*ppos
)
586 struct evdev_client
*client
= file
->private_data
;
587 struct evdev
*evdev
= client
->evdev
;
588 struct input_event event
;
592 if (count
!= 0 && count
< input_event_size())
596 if (!evdev
->exist
|| client
->revoked
)
599 if (client
->packet_head
== client
->tail
&&
600 (file
->f_flags
& O_NONBLOCK
))
604 * count == 0 is special - no IO is done but we check
605 * for error conditions (see above).
610 while (read
+ input_event_size() <= count
&&
611 evdev_fetch_next_event(client
, &event
)) {
613 if (input_event_to_user(buffer
+ read
, &event
))
616 read
+= input_event_size();
622 if (!(file
->f_flags
& O_NONBLOCK
)) {
623 error
= wait_event_interruptible(evdev
->wait
,
624 client
->packet_head
!= client
->tail
||
625 !evdev
->exist
|| client
->revoked
);
634 /* No kernel lock - fine */
635 static __poll_t
evdev_poll(struct file
*file
, poll_table
*wait
)
637 struct evdev_client
*client
= file
->private_data
;
638 struct evdev
*evdev
= client
->evdev
;
641 poll_wait(file
, &evdev
->wait
, wait
);
643 if (evdev
->exist
&& !client
->revoked
)
644 mask
= EPOLLOUT
| EPOLLWRNORM
;
646 mask
= EPOLLHUP
| EPOLLERR
;
648 if (client
->packet_head
!= client
->tail
)
649 mask
|= EPOLLIN
| EPOLLRDNORM
;
656 #define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
657 #define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
660 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
661 unsigned int maxlen
, void __user
*p
, int compat
)
666 len
= BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
);
670 for (i
= 0; i
< len
/ sizeof(compat_long_t
); i
++)
671 if (copy_to_user((compat_long_t __user
*) p
+ i
,
672 (compat_long_t
*) bits
+
673 i
+ 1 - ((i
% 2) << 1),
674 sizeof(compat_long_t
)))
677 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
681 if (copy_to_user(p
, bits
, len
))
688 static int bits_from_user(unsigned long *bits
, unsigned int maxbit
,
689 unsigned int maxlen
, const void __user
*p
, int compat
)
694 if (maxlen
% sizeof(compat_long_t
))
697 len
= BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
);
701 for (i
= 0; i
< len
/ sizeof(compat_long_t
); i
++)
702 if (copy_from_user((compat_long_t
*) bits
+
703 i
+ 1 - ((i
% 2) << 1),
704 (compat_long_t __user
*) p
+ i
,
705 sizeof(compat_long_t
)))
708 *((compat_long_t
*) bits
+ i
- 1) = 0;
711 if (maxlen
% sizeof(long))
714 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
718 if (copy_from_user(bits
, p
, len
))
727 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
728 unsigned int maxlen
, void __user
*p
, int compat
)
731 BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
) :
732 BITS_TO_LONGS(maxbit
) * sizeof(long);
737 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
740 static int bits_from_user(unsigned long *bits
, unsigned int maxbit
,
741 unsigned int maxlen
, const void __user
*p
, int compat
)
743 size_t chunk_size
= compat
? sizeof(compat_long_t
) : sizeof(long);
746 if (maxlen
% chunk_size
)
749 len
= compat
? BITS_TO_LONGS_COMPAT(maxbit
) : BITS_TO_LONGS(maxbit
);
754 return copy_from_user(bits
, p
, len
) ? -EFAULT
: len
;
757 #endif /* __BIG_ENDIAN */
761 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
762 unsigned int maxlen
, void __user
*p
, int compat
)
764 int len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
769 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
772 static int bits_from_user(unsigned long *bits
, unsigned int maxbit
,
773 unsigned int maxlen
, const void __user
*p
, int compat
)
777 if (maxlen
% sizeof(long))
780 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
784 return copy_from_user(bits
, p
, len
) ? -EFAULT
: len
;
787 #endif /* CONFIG_COMPAT */
789 static int str_to_user(const char *str
, unsigned int maxlen
, void __user
*p
)
796 len
= strlen(str
) + 1;
800 return copy_to_user(p
, str
, len
) ? -EFAULT
: len
;
803 static int handle_eviocgbit(struct input_dev
*dev
,
804 unsigned int type
, unsigned int size
,
805 void __user
*p
, int compat_mode
)
812 case 0: bits
= dev
->evbit
; len
= EV_MAX
; break;
813 case EV_KEY
: bits
= dev
->keybit
; len
= KEY_MAX
; break;
814 case EV_REL
: bits
= dev
->relbit
; len
= REL_MAX
; break;
815 case EV_ABS
: bits
= dev
->absbit
; len
= ABS_MAX
; break;
816 case EV_MSC
: bits
= dev
->mscbit
; len
= MSC_MAX
; break;
817 case EV_LED
: bits
= dev
->ledbit
; len
= LED_MAX
; break;
818 case EV_SND
: bits
= dev
->sndbit
; len
= SND_MAX
; break;
819 case EV_FF
: bits
= dev
->ffbit
; len
= FF_MAX
; break;
820 case EV_SW
: bits
= dev
->swbit
; len
= SW_MAX
; break;
821 default: return -EINVAL
;
824 return bits_to_user(bits
, len
, size
, p
, compat_mode
);
827 static int evdev_handle_get_keycode(struct input_dev
*dev
, void __user
*p
)
829 struct input_keymap_entry ke
= {
830 .len
= sizeof(unsigned int),
833 int __user
*ip
= (int __user
*)p
;
837 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
840 error
= input_get_keycode(dev
, &ke
);
844 if (put_user(ke
.keycode
, ip
+ 1))
850 static int evdev_handle_get_keycode_v2(struct input_dev
*dev
, void __user
*p
)
852 struct input_keymap_entry ke
;
855 if (copy_from_user(&ke
, p
, sizeof(ke
)))
858 error
= input_get_keycode(dev
, &ke
);
862 if (copy_to_user(p
, &ke
, sizeof(ke
)))
868 static int evdev_handle_set_keycode(struct input_dev
*dev
, void __user
*p
)
870 struct input_keymap_entry ke
= {
871 .len
= sizeof(unsigned int),
874 int __user
*ip
= (int __user
*)p
;
876 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
879 if (get_user(ke
.keycode
, ip
+ 1))
882 return input_set_keycode(dev
, &ke
);
885 static int evdev_handle_set_keycode_v2(struct input_dev
*dev
, void __user
*p
)
887 struct input_keymap_entry ke
;
889 if (copy_from_user(&ke
, p
, sizeof(ke
)))
892 if (ke
.len
> sizeof(ke
.scancode
))
895 return input_set_keycode(dev
, &ke
);
899 * If we transfer state to the user, we should flush all pending events
900 * of the same type from the client's queue. Otherwise, they might end up
901 * with duplicate events, which can screw up client's state tracking.
902 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
903 * event so user-space will notice missing events.
906 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
907 * need the even_lock only to guarantee consistent state. We can safely release
908 * it while flushing the queue. This allows input-core to handle filters while
909 * we flush the queue.
911 static int evdev_handle_get_val(struct evdev_client
*client
,
912 struct input_dev
*dev
, unsigned int type
,
913 unsigned long *bits
, unsigned int maxbit
,
914 unsigned int maxlen
, void __user
*p
,
920 mem
= bitmap_alloc(maxbit
, GFP_KERNEL
);
924 spin_lock_irq(&dev
->event_lock
);
925 spin_lock(&client
->buffer_lock
);
927 bitmap_copy(mem
, bits
, maxbit
);
929 spin_unlock(&dev
->event_lock
);
931 __evdev_flush_queue(client
, type
);
933 spin_unlock_irq(&client
->buffer_lock
);
935 ret
= bits_to_user(mem
, maxbit
, maxlen
, p
, compat
);
937 evdev_queue_syn_dropped(client
);
944 static int evdev_handle_mt_request(struct input_dev
*dev
,
948 const struct input_mt
*mt
= dev
->mt
;
953 if (get_user(code
, &ip
[0]))
955 if (!mt
|| !input_is_mt_value(code
))
958 max_slots
= (size
- sizeof(__u32
)) / sizeof(__s32
);
959 for (i
= 0; i
< mt
->num_slots
&& i
< max_slots
; i
++) {
960 int value
= input_mt_get_value(&mt
->slots
[i
], code
);
961 if (put_user(value
, &ip
[1 + i
]))
968 static int evdev_revoke(struct evdev
*evdev
, struct evdev_client
*client
,
971 client
->revoked
= true;
972 evdev_ungrab(evdev
, client
);
973 input_flush_device(&evdev
->handle
, file
);
974 wake_up_interruptible(&evdev
->wait
);
979 /* must be called with evdev-mutex held */
980 static int evdev_set_mask(struct evdev_client
*client
,
982 const void __user
*codes
,
986 unsigned long flags
, *mask
, *oldmask
;
990 /* we allow unknown types and 'codes_size > size' for forward-compat */
991 cnt
= evdev_get_mask_cnt(type
);
995 mask
= bitmap_zalloc(cnt
, GFP_KERNEL
);
999 error
= bits_from_user(mask
, cnt
- 1, codes_size
, codes
, compat
);
1005 spin_lock_irqsave(&client
->buffer_lock
, flags
);
1006 oldmask
= client
->evmasks
[type
];
1007 client
->evmasks
[type
] = mask
;
1008 spin_unlock_irqrestore(&client
->buffer_lock
, flags
);
1010 bitmap_free(oldmask
);
1015 /* must be called with evdev-mutex held */
1016 static int evdev_get_mask(struct evdev_client
*client
,
1022 unsigned long *mask
;
1023 size_t cnt
, size
, xfer_size
;
1027 /* we allow unknown types and 'codes_size > size' for forward-compat */
1028 cnt
= evdev_get_mask_cnt(type
);
1029 size
= sizeof(unsigned long) * BITS_TO_LONGS(cnt
);
1030 xfer_size
= min_t(size_t, codes_size
, size
);
1033 mask
= client
->evmasks
[type
];
1035 error
= bits_to_user(mask
, cnt
- 1,
1036 xfer_size
, codes
, compat
);
1040 /* fake mask with all bits set */
1041 for (i
= 0; i
< xfer_size
; i
++)
1042 if (put_user(0xffU
, (u8 __user
*)codes
+ i
))
1047 if (xfer_size
< codes_size
)
1048 if (clear_user(codes
+ xfer_size
, codes_size
- xfer_size
))
1054 static long evdev_do_ioctl(struct file
*file
, unsigned int cmd
,
1055 void __user
*p
, int compat_mode
)
1057 struct evdev_client
*client
= file
->private_data
;
1058 struct evdev
*evdev
= client
->evdev
;
1059 struct input_dev
*dev
= evdev
->handle
.dev
;
1060 struct input_absinfo abs
;
1061 struct input_mask mask
;
1062 struct ff_effect effect
;
1063 int __user
*ip
= (int __user
*)p
;
1064 unsigned int i
, t
, u
, v
;
1068 /* First we check for fixed-length commands */
1072 return put_user(EV_VERSION
, ip
);
1075 if (copy_to_user(p
, &dev
->id
, sizeof(struct input_id
)))
1080 if (!test_bit(EV_REP
, dev
->evbit
))
1082 if (put_user(dev
->rep
[REP_DELAY
], ip
))
1084 if (put_user(dev
->rep
[REP_PERIOD
], ip
+ 1))
1089 if (!test_bit(EV_REP
, dev
->evbit
))
1091 if (get_user(u
, ip
))
1093 if (get_user(v
, ip
+ 1))
1096 input_inject_event(&evdev
->handle
, EV_REP
, REP_DELAY
, u
);
1097 input_inject_event(&evdev
->handle
, EV_REP
, REP_PERIOD
, v
);
1102 return input_ff_erase(dev
, (int)(unsigned long) p
, file
);
1105 i
= test_bit(EV_FF
, dev
->evbit
) ?
1106 dev
->ff
->max_effects
: 0;
1107 if (put_user(i
, ip
))
1113 return evdev_grab(evdev
, client
);
1115 return evdev_ungrab(evdev
, client
);
1121 return evdev_revoke(evdev
, client
, file
);
1124 void __user
*codes_ptr
;
1126 if (copy_from_user(&mask
, p
, sizeof(mask
)))
1129 codes_ptr
= (void __user
*)(unsigned long)mask
.codes_ptr
;
1130 return evdev_get_mask(client
,
1131 mask
.type
, codes_ptr
, mask
.codes_size
,
1136 const void __user
*codes_ptr
;
1138 if (copy_from_user(&mask
, p
, sizeof(mask
)))
1141 codes_ptr
= (const void __user
*)(unsigned long)mask
.codes_ptr
;
1142 return evdev_set_mask(client
,
1143 mask
.type
, codes_ptr
, mask
.codes_size
,
1148 if (copy_from_user(&i
, p
, sizeof(unsigned int)))
1151 return evdev_set_clk_type(client
, i
);
1154 return evdev_handle_get_keycode(dev
, p
);
1157 return evdev_handle_set_keycode(dev
, p
);
1159 case EVIOCGKEYCODE_V2
:
1160 return evdev_handle_get_keycode_v2(dev
, p
);
1162 case EVIOCSKEYCODE_V2
:
1163 return evdev_handle_set_keycode_v2(dev
, p
);
1166 size
= _IOC_SIZE(cmd
);
1168 /* Now check variable-length commands */
1169 #define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
1170 switch (EVIOC_MASK_SIZE(cmd
)) {
1173 return bits_to_user(dev
->propbit
, INPUT_PROP_MAX
,
1174 size
, p
, compat_mode
);
1176 case EVIOCGMTSLOTS(0):
1177 return evdev_handle_mt_request(dev
, size
, ip
);
1180 return evdev_handle_get_val(client
, dev
, EV_KEY
, dev
->key
,
1181 KEY_MAX
, size
, p
, compat_mode
);
1184 return evdev_handle_get_val(client
, dev
, EV_LED
, dev
->led
,
1185 LED_MAX
, size
, p
, compat_mode
);
1188 return evdev_handle_get_val(client
, dev
, EV_SND
, dev
->snd
,
1189 SND_MAX
, size
, p
, compat_mode
);
1192 return evdev_handle_get_val(client
, dev
, EV_SW
, dev
->sw
,
1193 SW_MAX
, size
, p
, compat_mode
);
1196 return str_to_user(dev
->name
, size
, p
);
1199 return str_to_user(dev
->phys
, size
, p
);
1202 return str_to_user(dev
->uniq
, size
, p
);
1204 case EVIOC_MASK_SIZE(EVIOCSFF
):
1205 if (input_ff_effect_from_user(p
, size
, &effect
))
1208 error
= input_ff_upload(dev
, &effect
, file
);
1212 if (put_user(effect
.id
, &(((struct ff_effect __user
*)p
)->id
)))
1218 /* Multi-number variable-length handlers */
1219 if (_IOC_TYPE(cmd
) != 'E')
1222 if (_IOC_DIR(cmd
) == _IOC_READ
) {
1224 if ((_IOC_NR(cmd
) & ~EV_MAX
) == _IOC_NR(EVIOCGBIT(0, 0)))
1225 return handle_eviocgbit(dev
,
1226 _IOC_NR(cmd
) & EV_MAX
, size
,
1229 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCGABS(0))) {
1234 t
= _IOC_NR(cmd
) & ABS_MAX
;
1235 abs
= dev
->absinfo
[t
];
1237 if (copy_to_user(p
, &abs
, min_t(size_t,
1238 size
, sizeof(struct input_absinfo
))))
1245 if (_IOC_DIR(cmd
) == _IOC_WRITE
) {
1247 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCSABS(0))) {
1252 t
= _IOC_NR(cmd
) & ABS_MAX
;
1254 if (copy_from_user(&abs
, p
, min_t(size_t,
1255 size
, sizeof(struct input_absinfo
))))
1258 if (size
< sizeof(struct input_absinfo
))
1261 /* We can't change number of reserved MT slots */
1262 if (t
== ABS_MT_SLOT
)
1266 * Take event lock to ensure that we are not
1267 * changing device parameters in the middle
1270 spin_lock_irq(&dev
->event_lock
);
1271 dev
->absinfo
[t
] = abs
;
1272 spin_unlock_irq(&dev
->event_lock
);
1281 static long evdev_ioctl_handler(struct file
*file
, unsigned int cmd
,
1282 void __user
*p
, int compat_mode
)
1284 struct evdev_client
*client
= file
->private_data
;
1285 struct evdev
*evdev
= client
->evdev
;
1288 retval
= mutex_lock_interruptible(&evdev
->mutex
);
1292 if (!evdev
->exist
|| client
->revoked
) {
1297 retval
= evdev_do_ioctl(file
, cmd
, p
, compat_mode
);
1300 mutex_unlock(&evdev
->mutex
);
1304 static long evdev_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1306 return evdev_ioctl_handler(file
, cmd
, (void __user
*)arg
, 0);
1309 #ifdef CONFIG_COMPAT
1310 static long evdev_ioctl_compat(struct file
*file
,
1311 unsigned int cmd
, unsigned long arg
)
1313 return evdev_ioctl_handler(file
, cmd
, compat_ptr(arg
), 1);
1317 static const struct file_operations evdev_fops
= {
1318 .owner
= THIS_MODULE
,
1320 .write
= evdev_write
,
1323 .release
= evdev_release
,
1324 .unlocked_ioctl
= evdev_ioctl
,
1325 #ifdef CONFIG_COMPAT
1326 .compat_ioctl
= evdev_ioctl_compat
,
1328 .fasync
= evdev_fasync
,
1329 .llseek
= no_llseek
,
1333 * Mark device non-existent. This disables writes, ioctls and
1334 * prevents new users from opening the device. Already posted
1335 * blocking reads will stay, however new ones will fail.
1337 static void evdev_mark_dead(struct evdev
*evdev
)
1339 mutex_lock(&evdev
->mutex
);
1340 evdev
->exist
= false;
1341 mutex_unlock(&evdev
->mutex
);
1344 static void evdev_cleanup(struct evdev
*evdev
)
1346 struct input_handle
*handle
= &evdev
->handle
;
1348 evdev_mark_dead(evdev
);
1349 evdev_hangup(evdev
);
1351 /* evdev is marked dead so no one else accesses evdev->open */
1353 input_flush_device(handle
, NULL
);
1354 input_close_device(handle
);
1359 * Create new evdev device. Note that input core serializes calls
1360 * to connect and disconnect.
1362 static int evdev_connect(struct input_handler
*handler
, struct input_dev
*dev
,
1363 const struct input_device_id
*id
)
1365 struct evdev
*evdev
;
1370 minor
= input_get_new_minor(EVDEV_MINOR_BASE
, EVDEV_MINORS
, true);
1373 pr_err("failed to reserve new minor: %d\n", error
);
1377 evdev
= kzalloc(sizeof(struct evdev
), GFP_KERNEL
);
1380 goto err_free_minor
;
1383 INIT_LIST_HEAD(&evdev
->client_list
);
1384 spin_lock_init(&evdev
->client_lock
);
1385 mutex_init(&evdev
->mutex
);
1386 init_waitqueue_head(&evdev
->wait
);
1387 evdev
->exist
= true;
1390 /* Normalize device number if it falls into legacy range */
1391 if (dev_no
< EVDEV_MINOR_BASE
+ EVDEV_MINORS
)
1392 dev_no
-= EVDEV_MINOR_BASE
;
1393 dev_set_name(&evdev
->dev
, "event%d", dev_no
);
1395 evdev
->handle
.dev
= input_get_device(dev
);
1396 evdev
->handle
.name
= dev_name(&evdev
->dev
);
1397 evdev
->handle
.handler
= handler
;
1398 evdev
->handle
.private = evdev
;
1400 evdev
->dev
.devt
= MKDEV(INPUT_MAJOR
, minor
);
1401 evdev
->dev
.class = &input_class
;
1402 evdev
->dev
.parent
= &dev
->dev
;
1403 evdev
->dev
.release
= evdev_free
;
1404 device_initialize(&evdev
->dev
);
1406 error
= input_register_handle(&evdev
->handle
);
1408 goto err_free_evdev
;
1410 cdev_init(&evdev
->cdev
, &evdev_fops
);
1412 error
= cdev_device_add(&evdev
->cdev
, &evdev
->dev
);
1414 goto err_cleanup_evdev
;
1419 evdev_cleanup(evdev
);
1420 input_unregister_handle(&evdev
->handle
);
1422 put_device(&evdev
->dev
);
1424 input_free_minor(minor
);
1428 static void evdev_disconnect(struct input_handle
*handle
)
1430 struct evdev
*evdev
= handle
->private;
1432 cdev_device_del(&evdev
->cdev
, &evdev
->dev
);
1433 evdev_cleanup(evdev
);
1434 input_free_minor(MINOR(evdev
->dev
.devt
));
1435 input_unregister_handle(handle
);
1436 put_device(&evdev
->dev
);
1439 static const struct input_device_id evdev_ids
[] = {
1440 { .driver_info
= 1 }, /* Matches all devices */
1441 { }, /* Terminating zero entry */
1444 MODULE_DEVICE_TABLE(input
, evdev_ids
);
1446 static struct input_handler evdev_handler
= {
1447 .event
= evdev_event
,
1448 .events
= evdev_events
,
1449 .connect
= evdev_connect
,
1450 .disconnect
= evdev_disconnect
,
1451 .legacy_minors
= true,
1452 .minor
= EVDEV_MINOR_BASE
,
1454 .id_table
= evdev_ids
,
1457 static int __init
evdev_init(void)
1459 return input_register_handler(&evdev_handler
);
1462 static void __exit
evdev_exit(void)
1464 input_unregister_handler(&evdev_handler
);
1467 module_init(evdev_init
);
1468 module_exit(evdev_exit
);
1470 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1471 MODULE_DESCRIPTION("Input driver event char devices");
1472 MODULE_LICENSE("GPL");