1 // SPDX-License-Identifier: GPL-2.0-only
3 * Event char devices, giving access to raw input device events.
5 * Copyright (c) 1999-2002 Vojtech Pavlik
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #define EVDEV_MINOR_BASE 64
11 #define EVDEV_MINORS 32
12 #define EVDEV_MIN_BUFFER_SIZE 64U
13 #define EVDEV_BUF_PACKETS 8
15 #include <linux/poll.h>
16 #include <linux/sched.h>
17 #include <linux/slab.h>
18 #include <linux/vmalloc.h>
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/input/mt.h>
23 #include <linux/major.h>
24 #include <linux/device.h>
25 #include <linux/cdev.h>
26 #include "input-compat.h"
30 struct input_handle handle
;
31 wait_queue_head_t wait
;
32 struct evdev_client __rcu
*grab
;
33 struct list_head client_list
;
34 spinlock_t client_lock
; /* protects client_list */
44 unsigned int packet_head
; /* [future] position of the first element of next packet */
45 spinlock_t buffer_lock
; /* protects access to buffer, head and tail */
46 struct fasync_struct
*fasync
;
48 struct list_head node
;
49 enum input_clock_type clk_type
;
51 unsigned long *evmasks
[EV_CNT
];
53 struct input_event buffer
[];
56 static size_t evdev_get_mask_cnt(unsigned int type
)
58 static const size_t counts
[EV_CNT
] = {
59 /* EV_SYN==0 is EV_CNT, _not_ SYN_CNT, see EVIOCGBIT */
71 return (type
< EV_CNT
) ? counts
[type
] : 0;
74 /* requires the buffer lock to be held */
75 static bool __evdev_is_filtered(struct evdev_client
*client
,
82 /* EV_SYN and unknown codes are never filtered */
83 if (type
== EV_SYN
|| type
>= EV_CNT
)
86 /* first test whether the type is filtered */
87 mask
= client
->evmasks
[0];
88 if (mask
&& !test_bit(type
, mask
))
91 /* unknown values are never filtered */
92 cnt
= evdev_get_mask_cnt(type
);
93 if (!cnt
|| code
>= cnt
)
96 mask
= client
->evmasks
[type
];
97 return mask
&& !test_bit(code
, mask
);
100 /* flush queued events of type @type, caller must hold client->buffer_lock */
101 static void __evdev_flush_queue(struct evdev_client
*client
, unsigned int type
)
103 unsigned int i
, head
, num
;
104 unsigned int mask
= client
->bufsize
- 1;
106 struct input_event
*ev
;
108 BUG_ON(type
== EV_SYN
);
111 client
->packet_head
= client
->tail
;
113 /* init to 1 so a leading SYN_REPORT will not be dropped */
116 for (i
= client
->tail
; i
!= client
->head
; i
= (i
+ 1) & mask
) {
117 ev
= &client
->buffer
[i
];
118 is_report
= ev
->type
== EV_SYN
&& ev
->code
== SYN_REPORT
;
120 if (ev
->type
== type
) {
121 /* drop matched entry */
123 } else if (is_report
&& !num
) {
124 /* drop empty SYN_REPORT groups */
126 } else if (head
!= i
) {
127 /* move entry to fill the gap */
128 client
->buffer
[head
] = *ev
;
132 head
= (head
+ 1) & mask
;
136 client
->packet_head
= head
;
143 static void __evdev_queue_syn_dropped(struct evdev_client
*client
)
145 ktime_t
*ev_time
= input_get_timestamp(client
->evdev
->handle
.dev
);
146 struct timespec64 ts
= ktime_to_timespec64(ev_time
[client
->clk_type
]);
147 struct input_event ev
;
149 ev
.input_event_sec
= ts
.tv_sec
;
150 ev
.input_event_usec
= ts
.tv_nsec
/ NSEC_PER_USEC
;
152 ev
.code
= SYN_DROPPED
;
155 client
->buffer
[client
->head
++] = ev
;
156 client
->head
&= client
->bufsize
- 1;
158 if (unlikely(client
->head
== client
->tail
)) {
159 /* drop queue but keep our SYN_DROPPED event */
160 client
->tail
= (client
->head
- 1) & (client
->bufsize
- 1);
161 client
->packet_head
= client
->tail
;
165 static void evdev_queue_syn_dropped(struct evdev_client
*client
)
169 spin_lock_irqsave(&client
->buffer_lock
, flags
);
170 __evdev_queue_syn_dropped(client
);
171 spin_unlock_irqrestore(&client
->buffer_lock
, flags
);
174 static int evdev_set_clk_type(struct evdev_client
*client
, unsigned int clkid
)
177 enum input_clock_type clk_type
;
182 clk_type
= INPUT_CLK_REAL
;
184 case CLOCK_MONOTONIC
:
185 clk_type
= INPUT_CLK_MONO
;
188 clk_type
= INPUT_CLK_BOOT
;
194 if (client
->clk_type
!= clk_type
) {
195 client
->clk_type
= clk_type
;
198 * Flush pending events and queue SYN_DROPPED event,
199 * but only if the queue is not empty.
201 spin_lock_irqsave(&client
->buffer_lock
, flags
);
203 if (client
->head
!= client
->tail
) {
204 client
->packet_head
= client
->head
= client
->tail
;
205 __evdev_queue_syn_dropped(client
);
208 spin_unlock_irqrestore(&client
->buffer_lock
, flags
);
214 static void __pass_event(struct evdev_client
*client
,
215 const struct input_event
*event
)
217 client
->buffer
[client
->head
++] = *event
;
218 client
->head
&= client
->bufsize
- 1;
220 if (unlikely(client
->head
== client
->tail
)) {
222 * This effectively "drops" all unconsumed events, leaving
223 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
225 client
->tail
= (client
->head
- 2) & (client
->bufsize
- 1);
227 client
->buffer
[client
->tail
].input_event_sec
=
228 event
->input_event_sec
;
229 client
->buffer
[client
->tail
].input_event_usec
=
230 event
->input_event_usec
;
231 client
->buffer
[client
->tail
].type
= EV_SYN
;
232 client
->buffer
[client
->tail
].code
= SYN_DROPPED
;
233 client
->buffer
[client
->tail
].value
= 0;
235 client
->packet_head
= client
->tail
;
238 if (event
->type
== EV_SYN
&& event
->code
== SYN_REPORT
) {
239 client
->packet_head
= client
->head
;
240 kill_fasync(&client
->fasync
, SIGIO
, POLL_IN
);
244 static void evdev_pass_values(struct evdev_client
*client
,
245 const struct input_value
*vals
, unsigned int count
,
248 struct evdev
*evdev
= client
->evdev
;
249 const struct input_value
*v
;
250 struct input_event event
;
251 struct timespec64 ts
;
257 ts
= ktime_to_timespec64(ev_time
[client
->clk_type
]);
258 event
.input_event_sec
= ts
.tv_sec
;
259 event
.input_event_usec
= ts
.tv_nsec
/ NSEC_PER_USEC
;
261 /* Interrupts are disabled, just acquire the lock. */
262 spin_lock(&client
->buffer_lock
);
264 for (v
= vals
; v
!= vals
+ count
; v
++) {
265 if (__evdev_is_filtered(client
, v
->type
, v
->code
))
268 if (v
->type
== EV_SYN
&& v
->code
== SYN_REPORT
) {
269 /* drop empty SYN_REPORT */
270 if (client
->packet_head
== client
->head
)
276 event
.type
= v
->type
;
277 event
.code
= v
->code
;
278 event
.value
= v
->value
;
279 __pass_event(client
, &event
);
282 spin_unlock(&client
->buffer_lock
);
285 wake_up_interruptible(&evdev
->wait
);
289 * Pass incoming events to all connected clients.
291 static void evdev_events(struct input_handle
*handle
,
292 const struct input_value
*vals
, unsigned int count
)
294 struct evdev
*evdev
= handle
->private;
295 struct evdev_client
*client
;
296 ktime_t
*ev_time
= input_get_timestamp(handle
->dev
);
300 client
= rcu_dereference(evdev
->grab
);
303 evdev_pass_values(client
, vals
, count
, ev_time
);
305 list_for_each_entry_rcu(client
, &evdev
->client_list
, node
)
306 evdev_pass_values(client
, vals
, count
, ev_time
);
312 * Pass incoming event to all connected clients.
314 static void evdev_event(struct input_handle
*handle
,
315 unsigned int type
, unsigned int code
, int value
)
317 struct input_value vals
[] = { { type
, code
, value
} };
319 evdev_events(handle
, vals
, 1);
322 static int evdev_fasync(int fd
, struct file
*file
, int on
)
324 struct evdev_client
*client
= file
->private_data
;
326 return fasync_helper(fd
, file
, on
, &client
->fasync
);
329 static int evdev_flush(struct file
*file
, fl_owner_t id
)
331 struct evdev_client
*client
= file
->private_data
;
332 struct evdev
*evdev
= client
->evdev
;
334 mutex_lock(&evdev
->mutex
);
336 if (evdev
->exist
&& !client
->revoked
)
337 input_flush_device(&evdev
->handle
, file
);
339 mutex_unlock(&evdev
->mutex
);
343 static void evdev_free(struct device
*dev
)
345 struct evdev
*evdev
= container_of(dev
, struct evdev
, dev
);
347 input_put_device(evdev
->handle
.dev
);
352 * Grabs an event device (along with underlying input device).
353 * This function is called with evdev->mutex taken.
355 static int evdev_grab(struct evdev
*evdev
, struct evdev_client
*client
)
362 error
= input_grab_device(&evdev
->handle
);
366 rcu_assign_pointer(evdev
->grab
, client
);
371 static int evdev_ungrab(struct evdev
*evdev
, struct evdev_client
*client
)
373 struct evdev_client
*grab
= rcu_dereference_protected(evdev
->grab
,
374 lockdep_is_held(&evdev
->mutex
));
379 rcu_assign_pointer(evdev
->grab
, NULL
);
381 input_release_device(&evdev
->handle
);
386 static void evdev_attach_client(struct evdev
*evdev
,
387 struct evdev_client
*client
)
389 spin_lock(&evdev
->client_lock
);
390 list_add_tail_rcu(&client
->node
, &evdev
->client_list
);
391 spin_unlock(&evdev
->client_lock
);
394 static void evdev_detach_client(struct evdev
*evdev
,
395 struct evdev_client
*client
)
397 spin_lock(&evdev
->client_lock
);
398 list_del_rcu(&client
->node
);
399 spin_unlock(&evdev
->client_lock
);
403 static int evdev_open_device(struct evdev
*evdev
)
407 retval
= mutex_lock_interruptible(&evdev
->mutex
);
413 else if (!evdev
->open
++) {
414 retval
= input_open_device(&evdev
->handle
);
419 mutex_unlock(&evdev
->mutex
);
423 static void evdev_close_device(struct evdev
*evdev
)
425 mutex_lock(&evdev
->mutex
);
427 if (evdev
->exist
&& !--evdev
->open
)
428 input_close_device(&evdev
->handle
);
430 mutex_unlock(&evdev
->mutex
);
434 * Wake up users waiting for IO so they can disconnect from
437 static void evdev_hangup(struct evdev
*evdev
)
439 struct evdev_client
*client
;
441 spin_lock(&evdev
->client_lock
);
442 list_for_each_entry(client
, &evdev
->client_list
, node
)
443 kill_fasync(&client
->fasync
, SIGIO
, POLL_HUP
);
444 spin_unlock(&evdev
->client_lock
);
446 wake_up_interruptible(&evdev
->wait
);
449 static int evdev_release(struct inode
*inode
, struct file
*file
)
451 struct evdev_client
*client
= file
->private_data
;
452 struct evdev
*evdev
= client
->evdev
;
455 mutex_lock(&evdev
->mutex
);
456 evdev_ungrab(evdev
, client
);
457 mutex_unlock(&evdev
->mutex
);
459 evdev_detach_client(evdev
, client
);
461 for (i
= 0; i
< EV_CNT
; ++i
)
462 bitmap_free(client
->evmasks
[i
]);
466 evdev_close_device(evdev
);
471 static unsigned int evdev_compute_buffer_size(struct input_dev
*dev
)
473 unsigned int n_events
=
474 max(dev
->hint_events_per_packet
* EVDEV_BUF_PACKETS
,
475 EVDEV_MIN_BUFFER_SIZE
);
477 return roundup_pow_of_two(n_events
);
480 static int evdev_open(struct inode
*inode
, struct file
*file
)
482 struct evdev
*evdev
= container_of(inode
->i_cdev
, struct evdev
, cdev
);
483 unsigned int bufsize
= evdev_compute_buffer_size(evdev
->handle
.dev
);
484 struct evdev_client
*client
;
487 client
= kzalloc(struct_size(client
, buffer
, bufsize
),
488 GFP_KERNEL
| __GFP_NOWARN
);
490 client
= vzalloc(struct_size(client
, buffer
, bufsize
));
494 client
->bufsize
= bufsize
;
495 spin_lock_init(&client
->buffer_lock
);
496 client
->evdev
= evdev
;
497 evdev_attach_client(evdev
, client
);
499 error
= evdev_open_device(evdev
);
501 goto err_free_client
;
503 file
->private_data
= client
;
504 stream_open(inode
, file
);
509 evdev_detach_client(evdev
, client
);
514 static ssize_t
evdev_write(struct file
*file
, const char __user
*buffer
,
515 size_t count
, loff_t
*ppos
)
517 struct evdev_client
*client
= file
->private_data
;
518 struct evdev
*evdev
= client
->evdev
;
519 struct input_event event
;
522 if (count
!= 0 && count
< input_event_size())
525 retval
= mutex_lock_interruptible(&evdev
->mutex
);
529 if (!evdev
->exist
|| client
->revoked
) {
534 while (retval
+ input_event_size() <= count
) {
536 if (input_event_from_user(buffer
+ retval
, &event
)) {
540 retval
+= input_event_size();
542 input_inject_event(&evdev
->handle
,
543 event
.type
, event
.code
, event
.value
);
548 mutex_unlock(&evdev
->mutex
);
552 static int evdev_fetch_next_event(struct evdev_client
*client
,
553 struct input_event
*event
)
557 spin_lock_irq(&client
->buffer_lock
);
559 have_event
= client
->packet_head
!= client
->tail
;
561 *event
= client
->buffer
[client
->tail
++];
562 client
->tail
&= client
->bufsize
- 1;
565 spin_unlock_irq(&client
->buffer_lock
);
570 static ssize_t
evdev_read(struct file
*file
, char __user
*buffer
,
571 size_t count
, loff_t
*ppos
)
573 struct evdev_client
*client
= file
->private_data
;
574 struct evdev
*evdev
= client
->evdev
;
575 struct input_event event
;
579 if (count
!= 0 && count
< input_event_size())
583 if (!evdev
->exist
|| client
->revoked
)
586 if (client
->packet_head
== client
->tail
&&
587 (file
->f_flags
& O_NONBLOCK
))
591 * count == 0 is special - no IO is done but we check
592 * for error conditions (see above).
597 while (read
+ input_event_size() <= count
&&
598 evdev_fetch_next_event(client
, &event
)) {
600 if (input_event_to_user(buffer
+ read
, &event
))
603 read
+= input_event_size();
609 if (!(file
->f_flags
& O_NONBLOCK
)) {
610 error
= wait_event_interruptible(evdev
->wait
,
611 client
->packet_head
!= client
->tail
||
612 !evdev
->exist
|| client
->revoked
);
621 /* No kernel lock - fine */
622 static __poll_t
evdev_poll(struct file
*file
, poll_table
*wait
)
624 struct evdev_client
*client
= file
->private_data
;
625 struct evdev
*evdev
= client
->evdev
;
628 poll_wait(file
, &evdev
->wait
, wait
);
630 if (evdev
->exist
&& !client
->revoked
)
631 mask
= EPOLLOUT
| EPOLLWRNORM
;
633 mask
= EPOLLHUP
| EPOLLERR
;
635 if (client
->packet_head
!= client
->tail
)
636 mask
|= EPOLLIN
| EPOLLRDNORM
;
643 #define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
644 #define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
647 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
648 unsigned int maxlen
, void __user
*p
, int compat
)
653 len
= BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
);
657 for (i
= 0; i
< len
/ sizeof(compat_long_t
); i
++)
658 if (copy_to_user((compat_long_t __user
*) p
+ i
,
659 (compat_long_t
*) bits
+
660 i
+ 1 - ((i
% 2) << 1),
661 sizeof(compat_long_t
)))
664 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
668 if (copy_to_user(p
, bits
, len
))
675 static int bits_from_user(unsigned long *bits
, unsigned int maxbit
,
676 unsigned int maxlen
, const void __user
*p
, int compat
)
681 if (maxlen
% sizeof(compat_long_t
))
684 len
= BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
);
688 for (i
= 0; i
< len
/ sizeof(compat_long_t
); i
++)
689 if (copy_from_user((compat_long_t
*) bits
+
690 i
+ 1 - ((i
% 2) << 1),
691 (compat_long_t __user
*) p
+ i
,
692 sizeof(compat_long_t
)))
695 *((compat_long_t
*) bits
+ i
- 1) = 0;
698 if (maxlen
% sizeof(long))
701 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
705 if (copy_from_user(bits
, p
, len
))
714 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
715 unsigned int maxlen
, void __user
*p
, int compat
)
718 BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
) :
719 BITS_TO_LONGS(maxbit
) * sizeof(long);
724 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
727 static int bits_from_user(unsigned long *bits
, unsigned int maxbit
,
728 unsigned int maxlen
, const void __user
*p
, int compat
)
730 size_t chunk_size
= compat
? sizeof(compat_long_t
) : sizeof(long);
733 if (maxlen
% chunk_size
)
736 len
= compat
? BITS_TO_LONGS_COMPAT(maxbit
) : BITS_TO_LONGS(maxbit
);
741 return copy_from_user(bits
, p
, len
) ? -EFAULT
: len
;
744 #endif /* __BIG_ENDIAN */
748 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
749 unsigned int maxlen
, void __user
*p
, int compat
)
751 int len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
756 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
759 static int bits_from_user(unsigned long *bits
, unsigned int maxbit
,
760 unsigned int maxlen
, const void __user
*p
, int compat
)
764 if (maxlen
% sizeof(long))
767 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
771 return copy_from_user(bits
, p
, len
) ? -EFAULT
: len
;
774 #endif /* CONFIG_COMPAT */
776 static int str_to_user(const char *str
, unsigned int maxlen
, void __user
*p
)
783 len
= strlen(str
) + 1;
787 return copy_to_user(p
, str
, len
) ? -EFAULT
: len
;
790 static int handle_eviocgbit(struct input_dev
*dev
,
791 unsigned int type
, unsigned int size
,
792 void __user
*p
, int compat_mode
)
799 case 0: bits
= dev
->evbit
; len
= EV_MAX
; break;
800 case EV_KEY
: bits
= dev
->keybit
; len
= KEY_MAX
; break;
801 case EV_REL
: bits
= dev
->relbit
; len
= REL_MAX
; break;
802 case EV_ABS
: bits
= dev
->absbit
; len
= ABS_MAX
; break;
803 case EV_MSC
: bits
= dev
->mscbit
; len
= MSC_MAX
; break;
804 case EV_LED
: bits
= dev
->ledbit
; len
= LED_MAX
; break;
805 case EV_SND
: bits
= dev
->sndbit
; len
= SND_MAX
; break;
806 case EV_FF
: bits
= dev
->ffbit
; len
= FF_MAX
; break;
807 case EV_SW
: bits
= dev
->swbit
; len
= SW_MAX
; break;
808 default: return -EINVAL
;
811 return bits_to_user(bits
, len
, size
, p
, compat_mode
);
814 static int evdev_handle_get_keycode(struct input_dev
*dev
, void __user
*p
)
816 struct input_keymap_entry ke
= {
817 .len
= sizeof(unsigned int),
820 int __user
*ip
= (int __user
*)p
;
824 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
827 error
= input_get_keycode(dev
, &ke
);
831 if (put_user(ke
.keycode
, ip
+ 1))
837 static int evdev_handle_get_keycode_v2(struct input_dev
*dev
, void __user
*p
)
839 struct input_keymap_entry ke
;
842 if (copy_from_user(&ke
, p
, sizeof(ke
)))
845 error
= input_get_keycode(dev
, &ke
);
849 if (copy_to_user(p
, &ke
, sizeof(ke
)))
855 static int evdev_handle_set_keycode(struct input_dev
*dev
, void __user
*p
)
857 struct input_keymap_entry ke
= {
858 .len
= sizeof(unsigned int),
861 int __user
*ip
= (int __user
*)p
;
863 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
866 if (get_user(ke
.keycode
, ip
+ 1))
869 return input_set_keycode(dev
, &ke
);
872 static int evdev_handle_set_keycode_v2(struct input_dev
*dev
, void __user
*p
)
874 struct input_keymap_entry ke
;
876 if (copy_from_user(&ke
, p
, sizeof(ke
)))
879 if (ke
.len
> sizeof(ke
.scancode
))
882 return input_set_keycode(dev
, &ke
);
886 * If we transfer state to the user, we should flush all pending events
887 * of the same type from the client's queue. Otherwise, they might end up
888 * with duplicate events, which can screw up client's state tracking.
889 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
890 * event so user-space will notice missing events.
893 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
894 * need the even_lock only to guarantee consistent state. We can safely release
895 * it while flushing the queue. This allows input-core to handle filters while
896 * we flush the queue.
898 static int evdev_handle_get_val(struct evdev_client
*client
,
899 struct input_dev
*dev
, unsigned int type
,
900 unsigned long *bits
, unsigned int maxbit
,
901 unsigned int maxlen
, void __user
*p
,
907 mem
= bitmap_alloc(maxbit
, GFP_KERNEL
);
911 spin_lock_irq(&dev
->event_lock
);
912 spin_lock(&client
->buffer_lock
);
914 bitmap_copy(mem
, bits
, maxbit
);
916 spin_unlock(&dev
->event_lock
);
918 __evdev_flush_queue(client
, type
);
920 spin_unlock_irq(&client
->buffer_lock
);
922 ret
= bits_to_user(mem
, maxbit
, maxlen
, p
, compat
);
924 evdev_queue_syn_dropped(client
);
931 static int evdev_handle_mt_request(struct input_dev
*dev
,
935 const struct input_mt
*mt
= dev
->mt
;
940 if (get_user(code
, &ip
[0]))
942 if (!mt
|| !input_is_mt_value(code
))
945 max_slots
= (size
- sizeof(__u32
)) / sizeof(__s32
);
946 for (i
= 0; i
< mt
->num_slots
&& i
< max_slots
; i
++) {
947 int value
= input_mt_get_value(&mt
->slots
[i
], code
);
948 if (put_user(value
, &ip
[1 + i
]))
955 static int evdev_revoke(struct evdev
*evdev
, struct evdev_client
*client
,
958 client
->revoked
= true;
959 evdev_ungrab(evdev
, client
);
960 input_flush_device(&evdev
->handle
, file
);
961 wake_up_interruptible(&evdev
->wait
);
966 /* must be called with evdev-mutex held */
967 static int evdev_set_mask(struct evdev_client
*client
,
969 const void __user
*codes
,
973 unsigned long flags
, *mask
, *oldmask
;
977 /* we allow unknown types and 'codes_size > size' for forward-compat */
978 cnt
= evdev_get_mask_cnt(type
);
982 mask
= bitmap_zalloc(cnt
, GFP_KERNEL
);
986 error
= bits_from_user(mask
, cnt
- 1, codes_size
, codes
, compat
);
992 spin_lock_irqsave(&client
->buffer_lock
, flags
);
993 oldmask
= client
->evmasks
[type
];
994 client
->evmasks
[type
] = mask
;
995 spin_unlock_irqrestore(&client
->buffer_lock
, flags
);
997 bitmap_free(oldmask
);
1002 /* must be called with evdev-mutex held */
1003 static int evdev_get_mask(struct evdev_client
*client
,
1009 unsigned long *mask
;
1010 size_t cnt
, size
, xfer_size
;
1014 /* we allow unknown types and 'codes_size > size' for forward-compat */
1015 cnt
= evdev_get_mask_cnt(type
);
1016 size
= sizeof(unsigned long) * BITS_TO_LONGS(cnt
);
1017 xfer_size
= min_t(size_t, codes_size
, size
);
1020 mask
= client
->evmasks
[type
];
1022 error
= bits_to_user(mask
, cnt
- 1,
1023 xfer_size
, codes
, compat
);
1027 /* fake mask with all bits set */
1028 for (i
= 0; i
< xfer_size
; i
++)
1029 if (put_user(0xffU
, (u8 __user
*)codes
+ i
))
1034 if (xfer_size
< codes_size
)
1035 if (clear_user(codes
+ xfer_size
, codes_size
- xfer_size
))
1041 static long evdev_do_ioctl(struct file
*file
, unsigned int cmd
,
1042 void __user
*p
, int compat_mode
)
1044 struct evdev_client
*client
= file
->private_data
;
1045 struct evdev
*evdev
= client
->evdev
;
1046 struct input_dev
*dev
= evdev
->handle
.dev
;
1047 struct input_absinfo abs
;
1048 struct input_mask mask
;
1049 struct ff_effect effect
;
1050 int __user
*ip
= (int __user
*)p
;
1051 unsigned int i
, t
, u
, v
;
1055 /* First we check for fixed-length commands */
1059 return put_user(EV_VERSION
, ip
);
1062 if (copy_to_user(p
, &dev
->id
, sizeof(struct input_id
)))
1067 if (!test_bit(EV_REP
, dev
->evbit
))
1069 if (put_user(dev
->rep
[REP_DELAY
], ip
))
1071 if (put_user(dev
->rep
[REP_PERIOD
], ip
+ 1))
1076 if (!test_bit(EV_REP
, dev
->evbit
))
1078 if (get_user(u
, ip
))
1080 if (get_user(v
, ip
+ 1))
1083 input_inject_event(&evdev
->handle
, EV_REP
, REP_DELAY
, u
);
1084 input_inject_event(&evdev
->handle
, EV_REP
, REP_PERIOD
, v
);
1089 return input_ff_erase(dev
, (int)(unsigned long) p
, file
);
1092 i
= test_bit(EV_FF
, dev
->evbit
) ?
1093 dev
->ff
->max_effects
: 0;
1094 if (put_user(i
, ip
))
1100 return evdev_grab(evdev
, client
);
1102 return evdev_ungrab(evdev
, client
);
1108 return evdev_revoke(evdev
, client
, file
);
1111 void __user
*codes_ptr
;
1113 if (copy_from_user(&mask
, p
, sizeof(mask
)))
1116 codes_ptr
= (void __user
*)(unsigned long)mask
.codes_ptr
;
1117 return evdev_get_mask(client
,
1118 mask
.type
, codes_ptr
, mask
.codes_size
,
1123 const void __user
*codes_ptr
;
1125 if (copy_from_user(&mask
, p
, sizeof(mask
)))
1128 codes_ptr
= (const void __user
*)(unsigned long)mask
.codes_ptr
;
1129 return evdev_set_mask(client
,
1130 mask
.type
, codes_ptr
, mask
.codes_size
,
1135 if (copy_from_user(&i
, p
, sizeof(unsigned int)))
1138 return evdev_set_clk_type(client
, i
);
1141 return evdev_handle_get_keycode(dev
, p
);
1144 return evdev_handle_set_keycode(dev
, p
);
1146 case EVIOCGKEYCODE_V2
:
1147 return evdev_handle_get_keycode_v2(dev
, p
);
1149 case EVIOCSKEYCODE_V2
:
1150 return evdev_handle_set_keycode_v2(dev
, p
);
1153 size
= _IOC_SIZE(cmd
);
1155 /* Now check variable-length commands */
1156 #define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
1157 switch (EVIOC_MASK_SIZE(cmd
)) {
1160 return bits_to_user(dev
->propbit
, INPUT_PROP_MAX
,
1161 size
, p
, compat_mode
);
1163 case EVIOCGMTSLOTS(0):
1164 return evdev_handle_mt_request(dev
, size
, ip
);
1167 return evdev_handle_get_val(client
, dev
, EV_KEY
, dev
->key
,
1168 KEY_MAX
, size
, p
, compat_mode
);
1171 return evdev_handle_get_val(client
, dev
, EV_LED
, dev
->led
,
1172 LED_MAX
, size
, p
, compat_mode
);
1175 return evdev_handle_get_val(client
, dev
, EV_SND
, dev
->snd
,
1176 SND_MAX
, size
, p
, compat_mode
);
1179 return evdev_handle_get_val(client
, dev
, EV_SW
, dev
->sw
,
1180 SW_MAX
, size
, p
, compat_mode
);
1183 return str_to_user(dev
->name
, size
, p
);
1186 return str_to_user(dev
->phys
, size
, p
);
1189 return str_to_user(dev
->uniq
, size
, p
);
1191 case EVIOC_MASK_SIZE(EVIOCSFF
):
1192 if (input_ff_effect_from_user(p
, size
, &effect
))
1195 error
= input_ff_upload(dev
, &effect
, file
);
1199 if (put_user(effect
.id
, &(((struct ff_effect __user
*)p
)->id
)))
1205 /* Multi-number variable-length handlers */
1206 if (_IOC_TYPE(cmd
) != 'E')
1209 if (_IOC_DIR(cmd
) == _IOC_READ
) {
1211 if ((_IOC_NR(cmd
) & ~EV_MAX
) == _IOC_NR(EVIOCGBIT(0, 0)))
1212 return handle_eviocgbit(dev
,
1213 _IOC_NR(cmd
) & EV_MAX
, size
,
1216 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCGABS(0))) {
1221 t
= _IOC_NR(cmd
) & ABS_MAX
;
1222 abs
= dev
->absinfo
[t
];
1224 if (copy_to_user(p
, &abs
, min_t(size_t,
1225 size
, sizeof(struct input_absinfo
))))
1232 if (_IOC_DIR(cmd
) == _IOC_WRITE
) {
1234 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCSABS(0))) {
1239 t
= _IOC_NR(cmd
) & ABS_MAX
;
1241 if (copy_from_user(&abs
, p
, min_t(size_t,
1242 size
, sizeof(struct input_absinfo
))))
1245 if (size
< sizeof(struct input_absinfo
))
1248 /* We can't change number of reserved MT slots */
1249 if (t
== ABS_MT_SLOT
)
1253 * Take event lock to ensure that we are not
1254 * changing device parameters in the middle
1257 spin_lock_irq(&dev
->event_lock
);
1258 dev
->absinfo
[t
] = abs
;
1259 spin_unlock_irq(&dev
->event_lock
);
1268 static long evdev_ioctl_handler(struct file
*file
, unsigned int cmd
,
1269 void __user
*p
, int compat_mode
)
1271 struct evdev_client
*client
= file
->private_data
;
1272 struct evdev
*evdev
= client
->evdev
;
1275 retval
= mutex_lock_interruptible(&evdev
->mutex
);
1279 if (!evdev
->exist
|| client
->revoked
) {
1284 retval
= evdev_do_ioctl(file
, cmd
, p
, compat_mode
);
1287 mutex_unlock(&evdev
->mutex
);
1291 static long evdev_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1293 return evdev_ioctl_handler(file
, cmd
, (void __user
*)arg
, 0);
1296 #ifdef CONFIG_COMPAT
1297 static long evdev_ioctl_compat(struct file
*file
,
1298 unsigned int cmd
, unsigned long arg
)
1300 return evdev_ioctl_handler(file
, cmd
, compat_ptr(arg
), 1);
1304 static const struct file_operations evdev_fops
= {
1305 .owner
= THIS_MODULE
,
1307 .write
= evdev_write
,
1310 .release
= evdev_release
,
1311 .unlocked_ioctl
= evdev_ioctl
,
1312 #ifdef CONFIG_COMPAT
1313 .compat_ioctl
= evdev_ioctl_compat
,
1315 .fasync
= evdev_fasync
,
1316 .flush
= evdev_flush
,
1317 .llseek
= no_llseek
,
1321 * Mark device non-existent. This disables writes, ioctls and
1322 * prevents new users from opening the device. Already posted
1323 * blocking reads will stay, however new ones will fail.
1325 static void evdev_mark_dead(struct evdev
*evdev
)
1327 mutex_lock(&evdev
->mutex
);
1328 evdev
->exist
= false;
1329 mutex_unlock(&evdev
->mutex
);
1332 static void evdev_cleanup(struct evdev
*evdev
)
1334 struct input_handle
*handle
= &evdev
->handle
;
1336 evdev_mark_dead(evdev
);
1337 evdev_hangup(evdev
);
1339 /* evdev is marked dead so no one else accesses evdev->open */
1341 input_flush_device(handle
, NULL
);
1342 input_close_device(handle
);
1347 * Create new evdev device. Note that input core serializes calls
1348 * to connect and disconnect.
1350 static int evdev_connect(struct input_handler
*handler
, struct input_dev
*dev
,
1351 const struct input_device_id
*id
)
1353 struct evdev
*evdev
;
1358 minor
= input_get_new_minor(EVDEV_MINOR_BASE
, EVDEV_MINORS
, true);
1361 pr_err("failed to reserve new minor: %d\n", error
);
1365 evdev
= kzalloc(sizeof(struct evdev
), GFP_KERNEL
);
1368 goto err_free_minor
;
1371 INIT_LIST_HEAD(&evdev
->client_list
);
1372 spin_lock_init(&evdev
->client_lock
);
1373 mutex_init(&evdev
->mutex
);
1374 init_waitqueue_head(&evdev
->wait
);
1375 evdev
->exist
= true;
1378 /* Normalize device number if it falls into legacy range */
1379 if (dev_no
< EVDEV_MINOR_BASE
+ EVDEV_MINORS
)
1380 dev_no
-= EVDEV_MINOR_BASE
;
1381 dev_set_name(&evdev
->dev
, "event%d", dev_no
);
1383 evdev
->handle
.dev
= input_get_device(dev
);
1384 evdev
->handle
.name
= dev_name(&evdev
->dev
);
1385 evdev
->handle
.handler
= handler
;
1386 evdev
->handle
.private = evdev
;
1388 evdev
->dev
.devt
= MKDEV(INPUT_MAJOR
, minor
);
1389 evdev
->dev
.class = &input_class
;
1390 evdev
->dev
.parent
= &dev
->dev
;
1391 evdev
->dev
.release
= evdev_free
;
1392 device_initialize(&evdev
->dev
);
1394 error
= input_register_handle(&evdev
->handle
);
1396 goto err_free_evdev
;
1398 cdev_init(&evdev
->cdev
, &evdev_fops
);
1400 error
= cdev_device_add(&evdev
->cdev
, &evdev
->dev
);
1402 goto err_cleanup_evdev
;
1407 evdev_cleanup(evdev
);
1408 input_unregister_handle(&evdev
->handle
);
1410 put_device(&evdev
->dev
);
1412 input_free_minor(minor
);
1416 static void evdev_disconnect(struct input_handle
*handle
)
1418 struct evdev
*evdev
= handle
->private;
1420 cdev_device_del(&evdev
->cdev
, &evdev
->dev
);
1421 evdev_cleanup(evdev
);
1422 input_free_minor(MINOR(evdev
->dev
.devt
));
1423 input_unregister_handle(handle
);
1424 put_device(&evdev
->dev
);
1427 static const struct input_device_id evdev_ids
[] = {
1428 { .driver_info
= 1 }, /* Matches all devices */
1429 { }, /* Terminating zero entry */
1432 MODULE_DEVICE_TABLE(input
, evdev_ids
);
1434 static struct input_handler evdev_handler
= {
1435 .event
= evdev_event
,
1436 .events
= evdev_events
,
1437 .connect
= evdev_connect
,
1438 .disconnect
= evdev_disconnect
,
1439 .legacy_minors
= true,
1440 .minor
= EVDEV_MINOR_BASE
,
1442 .id_table
= evdev_ids
,
1445 static int __init
evdev_init(void)
1447 return input_register_handler(&evdev_handler
);
1450 static void __exit
evdev_exit(void)
1452 input_unregister_handler(&evdev_handler
);
1455 module_init(evdev_init
);
1456 module_exit(evdev_exit
);
1458 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1459 MODULE_DESCRIPTION("Input driver event char devices");
1460 MODULE_LICENSE("GPL");