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
;
62 struct input_event buffer
[];
65 /* flush queued events of type @type, caller must hold client->buffer_lock */
66 static void __evdev_flush_queue(struct evdev_client
*client
, unsigned int type
)
68 unsigned int i
, head
, num
;
69 unsigned int mask
= client
->bufsize
- 1;
71 struct input_event
*ev
;
73 BUG_ON(type
== EV_SYN
);
76 client
->packet_head
= client
->tail
;
78 /* init to 1 so a leading SYN_REPORT will not be dropped */
81 for (i
= client
->tail
; i
!= client
->head
; i
= (i
+ 1) & mask
) {
82 ev
= &client
->buffer
[i
];
83 is_report
= ev
->type
== EV_SYN
&& ev
->code
== SYN_REPORT
;
85 if (ev
->type
== type
) {
86 /* drop matched entry */
88 } else if (is_report
&& !num
) {
89 /* drop empty SYN_REPORT groups */
91 } else if (head
!= i
) {
92 /* move entry to fill the gap */
93 client
->buffer
[head
].time
= ev
->time
;
94 client
->buffer
[head
].type
= ev
->type
;
95 client
->buffer
[head
].code
= ev
->code
;
96 client
->buffer
[head
].value
= ev
->value
;
100 head
= (head
+ 1) & mask
;
104 client
->packet_head
= head
;
111 static void __evdev_queue_syn_dropped(struct evdev_client
*client
)
113 struct input_event ev
;
116 time
= client
->clk_type
== EV_CLK_REAL
?
118 client
->clk_type
== EV_CLK_MONO
?
120 ktime_get_boottime();
122 ev
.time
= ktime_to_timeval(time
);
124 ev
.code
= SYN_DROPPED
;
127 client
->buffer
[client
->head
++] = ev
;
128 client
->head
&= client
->bufsize
- 1;
130 if (unlikely(client
->head
== client
->tail
)) {
131 /* drop queue but keep our SYN_DROPPED event */
132 client
->tail
= (client
->head
- 1) & (client
->bufsize
- 1);
133 client
->packet_head
= client
->tail
;
137 static void evdev_queue_syn_dropped(struct evdev_client
*client
)
141 spin_lock_irqsave(&client
->buffer_lock
, flags
);
142 __evdev_queue_syn_dropped(client
);
143 spin_unlock_irqrestore(&client
->buffer_lock
, flags
);
146 static int evdev_set_clk_type(struct evdev_client
*client
, unsigned int clkid
)
150 if (client
->clk_type
== clkid
)
156 client
->clk_type
= EV_CLK_REAL
;
158 case CLOCK_MONOTONIC
:
159 client
->clk_type
= EV_CLK_MONO
;
162 client
->clk_type
= EV_CLK_BOOT
;
169 * Flush pending events and queue SYN_DROPPED event,
170 * but only if the queue is not empty.
172 spin_lock_irqsave(&client
->buffer_lock
, flags
);
174 if (client
->head
!= client
->tail
) {
175 client
->packet_head
= client
->head
= client
->tail
;
176 __evdev_queue_syn_dropped(client
);
179 spin_unlock_irqrestore(&client
->buffer_lock
, flags
);
184 static void __pass_event(struct evdev_client
*client
,
185 const struct input_event
*event
)
187 client
->buffer
[client
->head
++] = *event
;
188 client
->head
&= client
->bufsize
- 1;
190 if (unlikely(client
->head
== client
->tail
)) {
192 * This effectively "drops" all unconsumed events, leaving
193 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
195 client
->tail
= (client
->head
- 2) & (client
->bufsize
- 1);
197 client
->buffer
[client
->tail
].time
= event
->time
;
198 client
->buffer
[client
->tail
].type
= EV_SYN
;
199 client
->buffer
[client
->tail
].code
= SYN_DROPPED
;
200 client
->buffer
[client
->tail
].value
= 0;
202 client
->packet_head
= client
->tail
;
205 if (event
->type
== EV_SYN
&& event
->code
== SYN_REPORT
) {
206 client
->packet_head
= client
->head
;
207 kill_fasync(&client
->fasync
, SIGIO
, POLL_IN
);
211 static void evdev_pass_values(struct evdev_client
*client
,
212 const struct input_value
*vals
, unsigned int count
,
215 struct evdev
*evdev
= client
->evdev
;
216 const struct input_value
*v
;
217 struct input_event event
;
223 event
.time
= ktime_to_timeval(ev_time
[client
->clk_type
]);
225 /* Interrupts are disabled, just acquire the lock. */
226 spin_lock(&client
->buffer_lock
);
228 for (v
= vals
; v
!= vals
+ count
; v
++) {
229 event
.type
= v
->type
;
230 event
.code
= v
->code
;
231 event
.value
= v
->value
;
232 __pass_event(client
, &event
);
233 if (v
->type
== EV_SYN
&& v
->code
== SYN_REPORT
)
237 spin_unlock(&client
->buffer_lock
);
240 wake_up_interruptible(&evdev
->wait
);
244 * Pass incoming events to all connected clients.
246 static void evdev_events(struct input_handle
*handle
,
247 const struct input_value
*vals
, unsigned int count
)
249 struct evdev
*evdev
= handle
->private;
250 struct evdev_client
*client
;
251 ktime_t ev_time
[EV_CLK_MAX
];
253 ev_time
[EV_CLK_MONO
] = ktime_get();
254 ev_time
[EV_CLK_REAL
] = ktime_mono_to_real(ev_time
[EV_CLK_MONO
]);
255 ev_time
[EV_CLK_BOOT
] = ktime_mono_to_any(ev_time
[EV_CLK_MONO
],
260 client
= rcu_dereference(evdev
->grab
);
263 evdev_pass_values(client
, vals
, count
, ev_time
);
265 list_for_each_entry_rcu(client
, &evdev
->client_list
, node
)
266 evdev_pass_values(client
, vals
, count
, ev_time
);
272 * Pass incoming event to all connected clients.
274 static void evdev_event(struct input_handle
*handle
,
275 unsigned int type
, unsigned int code
, int value
)
277 struct input_value vals
[] = { { type
, code
, value
} };
279 evdev_events(handle
, vals
, 1);
282 static int evdev_fasync(int fd
, struct file
*file
, int on
)
284 struct evdev_client
*client
= file
->private_data
;
286 return fasync_helper(fd
, file
, on
, &client
->fasync
);
289 static int evdev_flush(struct file
*file
, fl_owner_t id
)
291 struct evdev_client
*client
= file
->private_data
;
292 struct evdev
*evdev
= client
->evdev
;
295 retval
= mutex_lock_interruptible(&evdev
->mutex
);
299 if (!evdev
->exist
|| client
->revoked
)
302 retval
= input_flush_device(&evdev
->handle
, file
);
304 mutex_unlock(&evdev
->mutex
);
308 static void evdev_free(struct device
*dev
)
310 struct evdev
*evdev
= container_of(dev
, struct evdev
, dev
);
312 input_put_device(evdev
->handle
.dev
);
317 * Grabs an event device (along with underlying input device).
318 * This function is called with evdev->mutex taken.
320 static int evdev_grab(struct evdev
*evdev
, struct evdev_client
*client
)
327 error
= input_grab_device(&evdev
->handle
);
331 rcu_assign_pointer(evdev
->grab
, client
);
336 static int evdev_ungrab(struct evdev
*evdev
, struct evdev_client
*client
)
338 struct evdev_client
*grab
= rcu_dereference_protected(evdev
->grab
,
339 lockdep_is_held(&evdev
->mutex
));
344 rcu_assign_pointer(evdev
->grab
, NULL
);
346 input_release_device(&evdev
->handle
);
351 static void evdev_attach_client(struct evdev
*evdev
,
352 struct evdev_client
*client
)
354 spin_lock(&evdev
->client_lock
);
355 list_add_tail_rcu(&client
->node
, &evdev
->client_list
);
356 spin_unlock(&evdev
->client_lock
);
359 static void evdev_detach_client(struct evdev
*evdev
,
360 struct evdev_client
*client
)
362 spin_lock(&evdev
->client_lock
);
363 list_del_rcu(&client
->node
);
364 spin_unlock(&evdev
->client_lock
);
368 static int evdev_open_device(struct evdev
*evdev
)
372 retval
= mutex_lock_interruptible(&evdev
->mutex
);
378 else if (!evdev
->open
++) {
379 retval
= input_open_device(&evdev
->handle
);
384 mutex_unlock(&evdev
->mutex
);
388 static void evdev_close_device(struct evdev
*evdev
)
390 mutex_lock(&evdev
->mutex
);
392 if (evdev
->exist
&& !--evdev
->open
)
393 input_close_device(&evdev
->handle
);
395 mutex_unlock(&evdev
->mutex
);
399 * Wake up users waiting for IO so they can disconnect from
402 static void evdev_hangup(struct evdev
*evdev
)
404 struct evdev_client
*client
;
406 spin_lock(&evdev
->client_lock
);
407 list_for_each_entry(client
, &evdev
->client_list
, node
)
408 kill_fasync(&client
->fasync
, SIGIO
, POLL_HUP
);
409 spin_unlock(&evdev
->client_lock
);
411 wake_up_interruptible(&evdev
->wait
);
414 static int evdev_release(struct inode
*inode
, struct file
*file
)
416 struct evdev_client
*client
= file
->private_data
;
417 struct evdev
*evdev
= client
->evdev
;
419 mutex_lock(&evdev
->mutex
);
420 evdev_ungrab(evdev
, client
);
421 mutex_unlock(&evdev
->mutex
);
423 evdev_detach_client(evdev
, client
);
427 evdev_close_device(evdev
);
432 static unsigned int evdev_compute_buffer_size(struct input_dev
*dev
)
434 unsigned int n_events
=
435 max(dev
->hint_events_per_packet
* EVDEV_BUF_PACKETS
,
436 EVDEV_MIN_BUFFER_SIZE
);
438 return roundup_pow_of_two(n_events
);
441 static int evdev_open(struct inode
*inode
, struct file
*file
)
443 struct evdev
*evdev
= container_of(inode
->i_cdev
, struct evdev
, cdev
);
444 unsigned int bufsize
= evdev_compute_buffer_size(evdev
->handle
.dev
);
445 unsigned int size
= sizeof(struct evdev_client
) +
446 bufsize
* sizeof(struct input_event
);
447 struct evdev_client
*client
;
450 client
= kzalloc(size
, GFP_KERNEL
| __GFP_NOWARN
);
452 client
= vzalloc(size
);
456 client
->bufsize
= bufsize
;
457 spin_lock_init(&client
->buffer_lock
);
458 client
->evdev
= evdev
;
459 evdev_attach_client(evdev
, client
);
461 error
= evdev_open_device(evdev
);
463 goto err_free_client
;
465 file
->private_data
= client
;
466 nonseekable_open(inode
, file
);
471 evdev_detach_client(evdev
, client
);
476 static ssize_t
evdev_write(struct file
*file
, const char __user
*buffer
,
477 size_t count
, loff_t
*ppos
)
479 struct evdev_client
*client
= file
->private_data
;
480 struct evdev
*evdev
= client
->evdev
;
481 struct input_event event
;
484 if (count
!= 0 && count
< input_event_size())
487 retval
= mutex_lock_interruptible(&evdev
->mutex
);
491 if (!evdev
->exist
|| client
->revoked
) {
496 while (retval
+ input_event_size() <= count
) {
498 if (input_event_from_user(buffer
+ retval
, &event
)) {
502 retval
+= input_event_size();
504 input_inject_event(&evdev
->handle
,
505 event
.type
, event
.code
, event
.value
);
509 mutex_unlock(&evdev
->mutex
);
513 static int evdev_fetch_next_event(struct evdev_client
*client
,
514 struct input_event
*event
)
518 spin_lock_irq(&client
->buffer_lock
);
520 have_event
= client
->packet_head
!= client
->tail
;
522 *event
= client
->buffer
[client
->tail
++];
523 client
->tail
&= client
->bufsize
- 1;
526 spin_unlock_irq(&client
->buffer_lock
);
531 static ssize_t
evdev_read(struct file
*file
, char __user
*buffer
,
532 size_t count
, loff_t
*ppos
)
534 struct evdev_client
*client
= file
->private_data
;
535 struct evdev
*evdev
= client
->evdev
;
536 struct input_event event
;
540 if (count
!= 0 && count
< input_event_size())
544 if (!evdev
->exist
|| client
->revoked
)
547 if (client
->packet_head
== client
->tail
&&
548 (file
->f_flags
& O_NONBLOCK
))
552 * count == 0 is special - no IO is done but we check
553 * for error conditions (see above).
558 while (read
+ input_event_size() <= count
&&
559 evdev_fetch_next_event(client
, &event
)) {
561 if (input_event_to_user(buffer
+ read
, &event
))
564 read
+= input_event_size();
570 if (!(file
->f_flags
& O_NONBLOCK
)) {
571 error
= wait_event_interruptible(evdev
->wait
,
572 client
->packet_head
!= client
->tail
||
573 !evdev
->exist
|| client
->revoked
);
582 /* No kernel lock - fine */
583 static unsigned int evdev_poll(struct file
*file
, poll_table
*wait
)
585 struct evdev_client
*client
= file
->private_data
;
586 struct evdev
*evdev
= client
->evdev
;
589 poll_wait(file
, &evdev
->wait
, wait
);
591 if (evdev
->exist
&& !client
->revoked
)
592 mask
= POLLOUT
| POLLWRNORM
;
594 mask
= POLLHUP
| POLLERR
;
596 if (client
->packet_head
!= client
->tail
)
597 mask
|= POLLIN
| POLLRDNORM
;
604 #define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
605 #define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
608 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
609 unsigned int maxlen
, void __user
*p
, int compat
)
614 len
= BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
);
618 for (i
= 0; i
< len
/ sizeof(compat_long_t
); i
++)
619 if (copy_to_user((compat_long_t __user
*) p
+ i
,
620 (compat_long_t
*) bits
+
621 i
+ 1 - ((i
% 2) << 1),
622 sizeof(compat_long_t
)))
625 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
629 if (copy_to_user(p
, bits
, len
))
636 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
637 unsigned int maxlen
, void __user
*p
, int compat
)
640 BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
) :
641 BITS_TO_LONGS(maxbit
) * sizeof(long);
646 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
648 #endif /* __BIG_ENDIAN */
652 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
653 unsigned int maxlen
, void __user
*p
, int compat
)
655 int len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
660 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
663 #endif /* CONFIG_COMPAT */
665 static int str_to_user(const char *str
, unsigned int maxlen
, void __user
*p
)
672 len
= strlen(str
) + 1;
676 return copy_to_user(p
, str
, len
) ? -EFAULT
: len
;
679 static int handle_eviocgbit(struct input_dev
*dev
,
680 unsigned int type
, unsigned int size
,
681 void __user
*p
, int compat_mode
)
688 case 0: bits
= dev
->evbit
; len
= EV_MAX
; break;
689 case EV_KEY
: bits
= dev
->keybit
; len
= KEY_MAX
; break;
690 case EV_REL
: bits
= dev
->relbit
; len
= REL_MAX
; break;
691 case EV_ABS
: bits
= dev
->absbit
; len
= ABS_MAX
; break;
692 case EV_MSC
: bits
= dev
->mscbit
; len
= MSC_MAX
; break;
693 case EV_LED
: bits
= dev
->ledbit
; len
= LED_MAX
; break;
694 case EV_SND
: bits
= dev
->sndbit
; len
= SND_MAX
; break;
695 case EV_FF
: bits
= dev
->ffbit
; len
= FF_MAX
; break;
696 case EV_SW
: bits
= dev
->swbit
; len
= SW_MAX
; break;
697 default: return -EINVAL
;
700 return bits_to_user(bits
, len
, size
, p
, compat_mode
);
703 static int evdev_handle_get_keycode(struct input_dev
*dev
, void __user
*p
)
705 struct input_keymap_entry ke
= {
706 .len
= sizeof(unsigned int),
709 int __user
*ip
= (int __user
*)p
;
713 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
716 error
= input_get_keycode(dev
, &ke
);
720 if (put_user(ke
.keycode
, ip
+ 1))
726 static int evdev_handle_get_keycode_v2(struct input_dev
*dev
, void __user
*p
)
728 struct input_keymap_entry ke
;
731 if (copy_from_user(&ke
, p
, sizeof(ke
)))
734 error
= input_get_keycode(dev
, &ke
);
738 if (copy_to_user(p
, &ke
, sizeof(ke
)))
744 static int evdev_handle_set_keycode(struct input_dev
*dev
, void __user
*p
)
746 struct input_keymap_entry ke
= {
747 .len
= sizeof(unsigned int),
750 int __user
*ip
= (int __user
*)p
;
752 if (copy_from_user(ke
.scancode
, p
, sizeof(unsigned int)))
755 if (get_user(ke
.keycode
, ip
+ 1))
758 return input_set_keycode(dev
, &ke
);
761 static int evdev_handle_set_keycode_v2(struct input_dev
*dev
, void __user
*p
)
763 struct input_keymap_entry ke
;
765 if (copy_from_user(&ke
, p
, sizeof(ke
)))
768 if (ke
.len
> sizeof(ke
.scancode
))
771 return input_set_keycode(dev
, &ke
);
775 * If we transfer state to the user, we should flush all pending events
776 * of the same type from the client's queue. Otherwise, they might end up
777 * with duplicate events, which can screw up client's state tracking.
778 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
779 * event so user-space will notice missing events.
782 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
783 * need the even_lock only to guarantee consistent state. We can safely release
784 * it while flushing the queue. This allows input-core to handle filters while
785 * we flush the queue.
787 static int evdev_handle_get_val(struct evdev_client
*client
,
788 struct input_dev
*dev
, unsigned int type
,
789 unsigned long *bits
, unsigned int maxbit
,
790 unsigned int maxlen
, void __user
*p
,
797 len
= BITS_TO_LONGS(maxbit
) * sizeof(unsigned long);
798 mem
= kmalloc(len
, GFP_KERNEL
);
802 spin_lock_irq(&dev
->event_lock
);
803 spin_lock(&client
->buffer_lock
);
805 memcpy(mem
, bits
, len
);
807 spin_unlock(&dev
->event_lock
);
809 __evdev_flush_queue(client
, type
);
811 spin_unlock_irq(&client
->buffer_lock
);
813 ret
= bits_to_user(mem
, maxbit
, maxlen
, p
, compat
);
815 evdev_queue_syn_dropped(client
);
822 static int evdev_handle_mt_request(struct input_dev
*dev
,
826 const struct input_mt
*mt
= dev
->mt
;
831 if (get_user(code
, &ip
[0]))
833 if (!mt
|| !input_is_mt_value(code
))
836 max_slots
= (size
- sizeof(__u32
)) / sizeof(__s32
);
837 for (i
= 0; i
< mt
->num_slots
&& i
< max_slots
; i
++) {
838 int value
= input_mt_get_value(&mt
->slots
[i
], code
);
839 if (put_user(value
, &ip
[1 + i
]))
846 static int evdev_revoke(struct evdev
*evdev
, struct evdev_client
*client
,
849 client
->revoked
= true;
850 evdev_ungrab(evdev
, client
);
851 input_flush_device(&evdev
->handle
, file
);
852 wake_up_interruptible(&evdev
->wait
);
857 static long evdev_do_ioctl(struct file
*file
, unsigned int cmd
,
858 void __user
*p
, int compat_mode
)
860 struct evdev_client
*client
= file
->private_data
;
861 struct evdev
*evdev
= client
->evdev
;
862 struct input_dev
*dev
= evdev
->handle
.dev
;
863 struct input_absinfo abs
;
864 struct ff_effect effect
;
865 int __user
*ip
= (int __user
*)p
;
866 unsigned int i
, t
, u
, v
;
870 /* First we check for fixed-length commands */
874 return put_user(EV_VERSION
, ip
);
877 if (copy_to_user(p
, &dev
->id
, sizeof(struct input_id
)))
882 if (!test_bit(EV_REP
, dev
->evbit
))
884 if (put_user(dev
->rep
[REP_DELAY
], ip
))
886 if (put_user(dev
->rep
[REP_PERIOD
], ip
+ 1))
891 if (!test_bit(EV_REP
, dev
->evbit
))
895 if (get_user(v
, ip
+ 1))
898 input_inject_event(&evdev
->handle
, EV_REP
, REP_DELAY
, u
);
899 input_inject_event(&evdev
->handle
, EV_REP
, REP_PERIOD
, v
);
904 return input_ff_erase(dev
, (int)(unsigned long) p
, file
);
907 i
= test_bit(EV_FF
, dev
->evbit
) ?
908 dev
->ff
->max_effects
: 0;
915 return evdev_grab(evdev
, client
);
917 return evdev_ungrab(evdev
, client
);
923 return evdev_revoke(evdev
, client
, file
);
926 if (copy_from_user(&i
, p
, sizeof(unsigned int)))
929 return evdev_set_clk_type(client
, i
);
932 return evdev_handle_get_keycode(dev
, p
);
935 return evdev_handle_set_keycode(dev
, p
);
937 case EVIOCGKEYCODE_V2
:
938 return evdev_handle_get_keycode_v2(dev
, p
);
940 case EVIOCSKEYCODE_V2
:
941 return evdev_handle_set_keycode_v2(dev
, p
);
944 size
= _IOC_SIZE(cmd
);
946 /* Now check variable-length commands */
947 #define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
948 switch (EVIOC_MASK_SIZE(cmd
)) {
951 return bits_to_user(dev
->propbit
, INPUT_PROP_MAX
,
952 size
, p
, compat_mode
);
954 case EVIOCGMTSLOTS(0):
955 return evdev_handle_mt_request(dev
, size
, ip
);
958 return evdev_handle_get_val(client
, dev
, EV_KEY
, dev
->key
,
959 KEY_MAX
, size
, p
, compat_mode
);
962 return evdev_handle_get_val(client
, dev
, EV_LED
, dev
->led
,
963 LED_MAX
, size
, p
, compat_mode
);
966 return evdev_handle_get_val(client
, dev
, EV_SND
, dev
->snd
,
967 SND_MAX
, size
, p
, compat_mode
);
970 return evdev_handle_get_val(client
, dev
, EV_SW
, dev
->sw
,
971 SW_MAX
, size
, p
, compat_mode
);
974 return str_to_user(dev
->name
, size
, p
);
977 return str_to_user(dev
->phys
, size
, p
);
980 return str_to_user(dev
->uniq
, size
, p
);
982 case EVIOC_MASK_SIZE(EVIOCSFF
):
983 if (input_ff_effect_from_user(p
, size
, &effect
))
986 error
= input_ff_upload(dev
, &effect
, file
);
990 if (put_user(effect
.id
, &(((struct ff_effect __user
*)p
)->id
)))
996 /* Multi-number variable-length handlers */
997 if (_IOC_TYPE(cmd
) != 'E')
1000 if (_IOC_DIR(cmd
) == _IOC_READ
) {
1002 if ((_IOC_NR(cmd
) & ~EV_MAX
) == _IOC_NR(EVIOCGBIT(0, 0)))
1003 return handle_eviocgbit(dev
,
1004 _IOC_NR(cmd
) & EV_MAX
, size
,
1007 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCGABS(0))) {
1012 t
= _IOC_NR(cmd
) & ABS_MAX
;
1013 abs
= dev
->absinfo
[t
];
1015 if (copy_to_user(p
, &abs
, min_t(size_t,
1016 size
, sizeof(struct input_absinfo
))))
1023 if (_IOC_DIR(cmd
) == _IOC_WRITE
) {
1025 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCSABS(0))) {
1030 t
= _IOC_NR(cmd
) & ABS_MAX
;
1032 if (copy_from_user(&abs
, p
, min_t(size_t,
1033 size
, sizeof(struct input_absinfo
))))
1036 if (size
< sizeof(struct input_absinfo
))
1039 /* We can't change number of reserved MT slots */
1040 if (t
== ABS_MT_SLOT
)
1044 * Take event lock to ensure that we are not
1045 * changing device parameters in the middle
1048 spin_lock_irq(&dev
->event_lock
);
1049 dev
->absinfo
[t
] = abs
;
1050 spin_unlock_irq(&dev
->event_lock
);
1059 static long evdev_ioctl_handler(struct file
*file
, unsigned int cmd
,
1060 void __user
*p
, int compat_mode
)
1062 struct evdev_client
*client
= file
->private_data
;
1063 struct evdev
*evdev
= client
->evdev
;
1066 retval
= mutex_lock_interruptible(&evdev
->mutex
);
1070 if (!evdev
->exist
|| client
->revoked
) {
1075 retval
= evdev_do_ioctl(file
, cmd
, p
, compat_mode
);
1078 mutex_unlock(&evdev
->mutex
);
1082 static long evdev_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1084 return evdev_ioctl_handler(file
, cmd
, (void __user
*)arg
, 0);
1087 #ifdef CONFIG_COMPAT
1088 static long evdev_ioctl_compat(struct file
*file
,
1089 unsigned int cmd
, unsigned long arg
)
1091 return evdev_ioctl_handler(file
, cmd
, compat_ptr(arg
), 1);
1095 static const struct file_operations evdev_fops
= {
1096 .owner
= THIS_MODULE
,
1098 .write
= evdev_write
,
1101 .release
= evdev_release
,
1102 .unlocked_ioctl
= evdev_ioctl
,
1103 #ifdef CONFIG_COMPAT
1104 .compat_ioctl
= evdev_ioctl_compat
,
1106 .fasync
= evdev_fasync
,
1107 .flush
= evdev_flush
,
1108 .llseek
= no_llseek
,
1112 * Mark device non-existent. This disables writes, ioctls and
1113 * prevents new users from opening the device. Already posted
1114 * blocking reads will stay, however new ones will fail.
1116 static void evdev_mark_dead(struct evdev
*evdev
)
1118 mutex_lock(&evdev
->mutex
);
1119 evdev
->exist
= false;
1120 mutex_unlock(&evdev
->mutex
);
1123 static void evdev_cleanup(struct evdev
*evdev
)
1125 struct input_handle
*handle
= &evdev
->handle
;
1127 evdev_mark_dead(evdev
);
1128 evdev_hangup(evdev
);
1130 cdev_del(&evdev
->cdev
);
1132 /* evdev is marked dead so no one else accesses evdev->open */
1134 input_flush_device(handle
, NULL
);
1135 input_close_device(handle
);
1140 * Create new evdev device. Note that input core serializes calls
1141 * to connect and disconnect.
1143 static int evdev_connect(struct input_handler
*handler
, struct input_dev
*dev
,
1144 const struct input_device_id
*id
)
1146 struct evdev
*evdev
;
1151 minor
= input_get_new_minor(EVDEV_MINOR_BASE
, EVDEV_MINORS
, true);
1154 pr_err("failed to reserve new minor: %d\n", error
);
1158 evdev
= kzalloc(sizeof(struct evdev
), GFP_KERNEL
);
1161 goto err_free_minor
;
1164 INIT_LIST_HEAD(&evdev
->client_list
);
1165 spin_lock_init(&evdev
->client_lock
);
1166 mutex_init(&evdev
->mutex
);
1167 init_waitqueue_head(&evdev
->wait
);
1168 evdev
->exist
= true;
1171 /* Normalize device number if it falls into legacy range */
1172 if (dev_no
< EVDEV_MINOR_BASE
+ EVDEV_MINORS
)
1173 dev_no
-= EVDEV_MINOR_BASE
;
1174 dev_set_name(&evdev
->dev
, "event%d", dev_no
);
1176 evdev
->handle
.dev
= input_get_device(dev
);
1177 evdev
->handle
.name
= dev_name(&evdev
->dev
);
1178 evdev
->handle
.handler
= handler
;
1179 evdev
->handle
.private = evdev
;
1181 evdev
->dev
.devt
= MKDEV(INPUT_MAJOR
, minor
);
1182 evdev
->dev
.class = &input_class
;
1183 evdev
->dev
.parent
= &dev
->dev
;
1184 evdev
->dev
.release
= evdev_free
;
1185 device_initialize(&evdev
->dev
);
1187 error
= input_register_handle(&evdev
->handle
);
1189 goto err_free_evdev
;
1191 cdev_init(&evdev
->cdev
, &evdev_fops
);
1192 evdev
->cdev
.kobj
.parent
= &evdev
->dev
.kobj
;
1193 error
= cdev_add(&evdev
->cdev
, evdev
->dev
.devt
, 1);
1195 goto err_unregister_handle
;
1197 error
= device_add(&evdev
->dev
);
1199 goto err_cleanup_evdev
;
1204 evdev_cleanup(evdev
);
1205 err_unregister_handle
:
1206 input_unregister_handle(&evdev
->handle
);
1208 put_device(&evdev
->dev
);
1210 input_free_minor(minor
);
1214 static void evdev_disconnect(struct input_handle
*handle
)
1216 struct evdev
*evdev
= handle
->private;
1218 device_del(&evdev
->dev
);
1219 evdev_cleanup(evdev
);
1220 input_free_minor(MINOR(evdev
->dev
.devt
));
1221 input_unregister_handle(handle
);
1222 put_device(&evdev
->dev
);
1225 static const struct input_device_id evdev_ids
[] = {
1226 { .driver_info
= 1 }, /* Matches all devices */
1227 { }, /* Terminating zero entry */
1230 MODULE_DEVICE_TABLE(input
, evdev_ids
);
1232 static struct input_handler evdev_handler
= {
1233 .event
= evdev_event
,
1234 .events
= evdev_events
,
1235 .connect
= evdev_connect
,
1236 .disconnect
= evdev_disconnect
,
1237 .legacy_minors
= true,
1238 .minor
= EVDEV_MINOR_BASE
,
1240 .id_table
= evdev_ids
,
1243 static int __init
evdev_init(void)
1245 return input_register_handler(&evdev_handler
);
1248 static void __exit
evdev_exit(void)
1250 input_unregister_handler(&evdev_handler
);
1253 module_init(evdev_init
);
1254 module_exit(evdev_exit
);
1256 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1257 MODULE_DESCRIPTION("Input driver event char devices");
1258 MODULE_LICENSE("GPL");