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 EVDEV_MINOR_BASE 64
12 #define EVDEV_MINORS 32
13 #define EVDEV_BUFFER_SIZE 64
15 #include <linux/poll.h>
16 #include <linux/slab.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/input.h>
20 #include <linux/major.h>
21 #include <linux/device.h>
22 #include <linux/compat.h>
29 struct input_handle handle
;
30 wait_queue_head_t wait
;
31 struct evdev_client
*grab
;
32 struct list_head client_list
;
33 spinlock_t client_lock
; /* protects client_list */
39 struct input_event buffer
[EVDEV_BUFFER_SIZE
];
42 spinlock_t buffer_lock
; /* protects access to buffer, head and tail */
43 struct fasync_struct
*fasync
;
45 struct list_head node
;
48 static struct evdev
*evdev_table
[EVDEV_MINORS
];
49 static DEFINE_MUTEX(evdev_table_mutex
);
51 static void evdev_pass_event(struct evdev_client
*client
,
52 struct input_event
*event
)
55 * Interrupts are disabled, just acquire the lock
57 spin_lock(&client
->buffer_lock
);
58 client
->buffer
[client
->head
++] = *event
;
59 client
->head
&= EVDEV_BUFFER_SIZE
- 1;
60 spin_unlock(&client
->buffer_lock
);
62 kill_fasync(&client
->fasync
, SIGIO
, POLL_IN
);
66 * Pass incoming event to all connected clients.
68 static void evdev_event(struct input_handle
*handle
,
69 unsigned int type
, unsigned int code
, int value
)
71 struct evdev
*evdev
= handle
->private;
72 struct evdev_client
*client
;
73 struct input_event event
;
75 do_gettimeofday(&event
.time
);
82 client
= rcu_dereference(evdev
->grab
);
84 evdev_pass_event(client
, &event
);
86 list_for_each_entry_rcu(client
, &evdev
->client_list
, node
)
87 evdev_pass_event(client
, &event
);
91 wake_up_interruptible(&evdev
->wait
);
94 static int evdev_fasync(int fd
, struct file
*file
, int on
)
96 struct evdev_client
*client
= file
->private_data
;
99 retval
= fasync_helper(fd
, file
, on
, &client
->fasync
);
101 return retval
< 0 ? retval
: 0;
104 static int evdev_flush(struct file
*file
, fl_owner_t id
)
106 struct evdev_client
*client
= file
->private_data
;
107 struct evdev
*evdev
= client
->evdev
;
110 retval
= mutex_lock_interruptible(&evdev
->mutex
);
117 retval
= input_flush_device(&evdev
->handle
, file
);
119 mutex_unlock(&evdev
->mutex
);
123 static void evdev_free(struct device
*dev
)
125 struct evdev
*evdev
= container_of(dev
, struct evdev
, dev
);
127 input_put_device(evdev
->handle
.dev
);
132 * Grabs an event device (along with underlying input device).
133 * This function is called with evdev->mutex taken.
135 static int evdev_grab(struct evdev
*evdev
, struct evdev_client
*client
)
142 error
= input_grab_device(&evdev
->handle
);
146 rcu_assign_pointer(evdev
->grab
, client
);
152 static int evdev_ungrab(struct evdev
*evdev
, struct evdev_client
*client
)
154 if (evdev
->grab
!= client
)
157 rcu_assign_pointer(evdev
->grab
, NULL
);
159 input_release_device(&evdev
->handle
);
164 static void evdev_attach_client(struct evdev
*evdev
,
165 struct evdev_client
*client
)
167 spin_lock(&evdev
->client_lock
);
168 list_add_tail_rcu(&client
->node
, &evdev
->client_list
);
169 spin_unlock(&evdev
->client_lock
);
173 static void evdev_detach_client(struct evdev
*evdev
,
174 struct evdev_client
*client
)
176 spin_lock(&evdev
->client_lock
);
177 list_del_rcu(&client
->node
);
178 spin_unlock(&evdev
->client_lock
);
182 static int evdev_open_device(struct evdev
*evdev
)
186 retval
= mutex_lock_interruptible(&evdev
->mutex
);
192 else if (!evdev
->open
++) {
193 retval
= input_open_device(&evdev
->handle
);
198 mutex_unlock(&evdev
->mutex
);
202 static void evdev_close_device(struct evdev
*evdev
)
204 mutex_lock(&evdev
->mutex
);
206 if (evdev
->exist
&& !--evdev
->open
)
207 input_close_device(&evdev
->handle
);
209 mutex_unlock(&evdev
->mutex
);
213 * Wake up users waiting for IO so they can disconnect from
216 static void evdev_hangup(struct evdev
*evdev
)
218 struct evdev_client
*client
;
220 spin_lock(&evdev
->client_lock
);
221 list_for_each_entry(client
, &evdev
->client_list
, node
)
222 kill_fasync(&client
->fasync
, SIGIO
, POLL_HUP
);
223 spin_unlock(&evdev
->client_lock
);
225 wake_up_interruptible(&evdev
->wait
);
228 static int evdev_release(struct inode
*inode
, struct file
*file
)
230 struct evdev_client
*client
= file
->private_data
;
231 struct evdev
*evdev
= client
->evdev
;
233 mutex_lock(&evdev
->mutex
);
234 if (evdev
->grab
== client
)
235 evdev_ungrab(evdev
, client
);
236 mutex_unlock(&evdev
->mutex
);
238 evdev_detach_client(evdev
, client
);
241 evdev_close_device(evdev
);
242 put_device(&evdev
->dev
);
247 static int evdev_open(struct inode
*inode
, struct file
*file
)
250 struct evdev_client
*client
;
251 int i
= iminor(inode
) - EVDEV_MINOR_BASE
;
254 if (i
>= EVDEV_MINORS
)
257 error
= mutex_lock_interruptible(&evdev_table_mutex
);
260 evdev
= evdev_table
[i
];
262 get_device(&evdev
->dev
);
263 mutex_unlock(&evdev_table_mutex
);
268 client
= kzalloc(sizeof(struct evdev_client
), GFP_KERNEL
);
274 spin_lock_init(&client
->buffer_lock
);
275 client
->evdev
= evdev
;
276 evdev_attach_client(evdev
, client
);
278 error
= evdev_open_device(evdev
);
280 goto err_free_client
;
282 file
->private_data
= client
;
286 evdev_detach_client(evdev
, client
);
289 put_device(&evdev
->dev
);
295 struct input_event_compat
{
296 struct compat_timeval time
;
302 struct ff_periodic_effect_compat
{
309 struct ff_envelope envelope
;
312 compat_uptr_t custom_data
;
315 struct ff_effect_compat
{
319 struct ff_trigger trigger
;
320 struct ff_replay replay
;
323 struct ff_constant_effect constant
;
324 struct ff_ramp_effect ramp
;
325 struct ff_periodic_effect_compat periodic
;
326 struct ff_condition_effect condition
[2]; /* One for each axis */
327 struct ff_rumble_effect rumble
;
331 /* Note to the author of this code: did it ever occur to
332 you why the ifdefs are needed? Think about it again. -AK */
334 # define COMPAT_TEST is_compat_task()
335 #elif defined(CONFIG_IA64)
336 # define COMPAT_TEST IS_IA32_PROCESS(task_pt_regs(current))
337 #elif defined(CONFIG_S390)
338 # define COMPAT_TEST test_thread_flag(TIF_31BIT)
339 #elif defined(CONFIG_MIPS)
340 # define COMPAT_TEST test_thread_flag(TIF_32BIT_ADDR)
342 # define COMPAT_TEST test_thread_flag(TIF_32BIT)
345 static inline size_t evdev_event_size(void)
348 sizeof(struct input_event_compat
) : sizeof(struct input_event
);
351 static int evdev_event_from_user(const char __user
*buffer
,
352 struct input_event
*event
)
355 struct input_event_compat compat_event
;
357 if (copy_from_user(&compat_event
, buffer
,
358 sizeof(struct input_event_compat
)))
361 event
->time
.tv_sec
= compat_event
.time
.tv_sec
;
362 event
->time
.tv_usec
= compat_event
.time
.tv_usec
;
363 event
->type
= compat_event
.type
;
364 event
->code
= compat_event
.code
;
365 event
->value
= compat_event
.value
;
368 if (copy_from_user(event
, buffer
, sizeof(struct input_event
)))
375 static int evdev_event_to_user(char __user
*buffer
,
376 const struct input_event
*event
)
379 struct input_event_compat compat_event
;
381 compat_event
.time
.tv_sec
= event
->time
.tv_sec
;
382 compat_event
.time
.tv_usec
= event
->time
.tv_usec
;
383 compat_event
.type
= event
->type
;
384 compat_event
.code
= event
->code
;
385 compat_event
.value
= event
->value
;
387 if (copy_to_user(buffer
, &compat_event
,
388 sizeof(struct input_event_compat
)))
392 if (copy_to_user(buffer
, event
, sizeof(struct input_event
)))
399 static int evdev_ff_effect_from_user(const char __user
*buffer
, size_t size
,
400 struct ff_effect
*effect
)
403 struct ff_effect_compat
*compat_effect
;
405 if (size
!= sizeof(struct ff_effect_compat
))
409 * It so happens that the pointer which needs to be changed
410 * is the last field in the structure, so we can copy the
411 * whole thing and replace just the pointer.
414 compat_effect
= (struct ff_effect_compat
*)effect
;
416 if (copy_from_user(compat_effect
, buffer
,
417 sizeof(struct ff_effect_compat
)))
420 if (compat_effect
->type
== FF_PERIODIC
&&
421 compat_effect
->u
.periodic
.waveform
== FF_CUSTOM
)
422 effect
->u
.periodic
.custom_data
=
423 compat_ptr(compat_effect
->u
.periodic
.custom_data
);
425 if (size
!= sizeof(struct ff_effect
))
428 if (copy_from_user(effect
, buffer
, sizeof(struct ff_effect
)))
437 static inline size_t evdev_event_size(void)
439 return sizeof(struct input_event
);
442 static int evdev_event_from_user(const char __user
*buffer
,
443 struct input_event
*event
)
445 if (copy_from_user(event
, buffer
, sizeof(struct input_event
)))
451 static int evdev_event_to_user(char __user
*buffer
,
452 const struct input_event
*event
)
454 if (copy_to_user(buffer
, event
, sizeof(struct input_event
)))
460 static int evdev_ff_effect_from_user(const char __user
*buffer
, size_t size
,
461 struct ff_effect
*effect
)
463 if (size
!= sizeof(struct ff_effect
))
466 if (copy_from_user(effect
, buffer
, sizeof(struct ff_effect
)))
472 #endif /* CONFIG_COMPAT */
474 static ssize_t
evdev_write(struct file
*file
, const char __user
*buffer
,
475 size_t count
, loff_t
*ppos
)
477 struct evdev_client
*client
= file
->private_data
;
478 struct evdev
*evdev
= client
->evdev
;
479 struct input_event event
;
482 retval
= mutex_lock_interruptible(&evdev
->mutex
);
491 while (retval
< count
) {
493 if (evdev_event_from_user(buffer
+ retval
, &event
)) {
498 input_inject_event(&evdev
->handle
,
499 event
.type
, event
.code
, event
.value
);
500 retval
+= evdev_event_size();
504 mutex_unlock(&evdev
->mutex
);
508 static int evdev_fetch_next_event(struct evdev_client
*client
,
509 struct input_event
*event
)
513 spin_lock_irq(&client
->buffer_lock
);
515 have_event
= client
->head
!= client
->tail
;
517 *event
= client
->buffer
[client
->tail
++];
518 client
->tail
&= EVDEV_BUFFER_SIZE
- 1;
521 spin_unlock_irq(&client
->buffer_lock
);
526 static ssize_t
evdev_read(struct file
*file
, char __user
*buffer
,
527 size_t count
, loff_t
*ppos
)
529 struct evdev_client
*client
= file
->private_data
;
530 struct evdev
*evdev
= client
->evdev
;
531 struct input_event event
;
534 if (count
< evdev_event_size())
537 if (client
->head
== client
->tail
&& evdev
->exist
&&
538 (file
->f_flags
& O_NONBLOCK
))
541 retval
= wait_event_interruptible(evdev
->wait
,
542 client
->head
!= client
->tail
|| !evdev
->exist
);
549 while (retval
+ evdev_event_size() <= count
&&
550 evdev_fetch_next_event(client
, &event
)) {
552 if (evdev_event_to_user(buffer
+ retval
, &event
))
555 retval
+= evdev_event_size();
561 /* No kernel lock - fine */
562 static unsigned int evdev_poll(struct file
*file
, poll_table
*wait
)
564 struct evdev_client
*client
= file
->private_data
;
565 struct evdev
*evdev
= client
->evdev
;
567 poll_wait(file
, &evdev
->wait
, wait
);
568 return ((client
->head
== client
->tail
) ? 0 : (POLLIN
| POLLRDNORM
)) |
569 (evdev
->exist
? 0 : (POLLHUP
| POLLERR
));
574 #define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
575 #define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
578 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
579 unsigned int maxlen
, void __user
*p
, int compat
)
584 len
= BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
);
588 for (i
= 0; i
< len
/ sizeof(compat_long_t
); i
++)
589 if (copy_to_user((compat_long_t __user
*) p
+ i
,
590 (compat_long_t
*) bits
+
591 i
+ 1 - ((i
% 2) << 1),
592 sizeof(compat_long_t
)))
595 len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
599 if (copy_to_user(p
, bits
, len
))
606 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
607 unsigned int maxlen
, void __user
*p
, int compat
)
610 BITS_TO_LONGS_COMPAT(maxbit
) * sizeof(compat_long_t
) :
611 BITS_TO_LONGS(maxbit
) * sizeof(long);
616 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
618 #endif /* __BIG_ENDIAN */
622 static int bits_to_user(unsigned long *bits
, unsigned int maxbit
,
623 unsigned int maxlen
, void __user
*p
, int compat
)
625 int len
= BITS_TO_LONGS(maxbit
) * sizeof(long);
630 return copy_to_user(p
, bits
, len
) ? -EFAULT
: len
;
633 #endif /* CONFIG_COMPAT */
635 static int str_to_user(const char *str
, unsigned int maxlen
, void __user
*p
)
642 len
= strlen(str
) + 1;
646 return copy_to_user(p
, str
, len
) ? -EFAULT
: len
;
649 #define OLD_KEY_MAX 0x1ff
650 static int handle_eviocgbit(struct input_dev
*dev
, unsigned int cmd
, void __user
*p
, int compat_mode
)
652 static unsigned long keymax_warn_time
;
656 switch (_IOC_NR(cmd
) & EV_MAX
) {
658 case 0: bits
= dev
->evbit
; len
= EV_MAX
; break;
659 case EV_KEY
: bits
= dev
->keybit
; len
= KEY_MAX
; break;
660 case EV_REL
: bits
= dev
->relbit
; len
= REL_MAX
; break;
661 case EV_ABS
: bits
= dev
->absbit
; len
= ABS_MAX
; break;
662 case EV_MSC
: bits
= dev
->mscbit
; len
= MSC_MAX
; break;
663 case EV_LED
: bits
= dev
->ledbit
; len
= LED_MAX
; break;
664 case EV_SND
: bits
= dev
->sndbit
; len
= SND_MAX
; break;
665 case EV_FF
: bits
= dev
->ffbit
; len
= FF_MAX
; break;
666 case EV_SW
: bits
= dev
->swbit
; len
= SW_MAX
; break;
667 default: return -EINVAL
;
671 * Work around bugs in userspace programs that like to do
672 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
673 * should be in bytes, not in bits.
675 if ((_IOC_NR(cmd
) & EV_MAX
) == EV_KEY
&& _IOC_SIZE(cmd
) == OLD_KEY_MAX
) {
677 if (printk_timed_ratelimit(&keymax_warn_time
, 10 * 1000))
679 "evdev.c(EVIOCGBIT): Suspicious buffer size %u, "
680 "limiting output to %zu bytes. See "
681 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
683 BITS_TO_LONGS(OLD_KEY_MAX
) * sizeof(long));
686 return bits_to_user(bits
, len
, _IOC_SIZE(cmd
), p
, compat_mode
);
690 static long evdev_do_ioctl(struct file
*file
, unsigned int cmd
,
691 void __user
*p
, int compat_mode
)
693 struct evdev_client
*client
= file
->private_data
;
694 struct evdev
*evdev
= client
->evdev
;
695 struct input_dev
*dev
= evdev
->handle
.dev
;
696 struct input_absinfo abs
;
697 struct ff_effect effect
;
698 int __user
*ip
= (int __user
*)p
;
705 return put_user(EV_VERSION
, ip
);
708 if (copy_to_user(p
, &dev
->id
, sizeof(struct input_id
)))
713 if (!test_bit(EV_REP
, dev
->evbit
))
715 if (put_user(dev
->rep
[REP_DELAY
], ip
))
717 if (put_user(dev
->rep
[REP_PERIOD
], ip
+ 1))
722 if (!test_bit(EV_REP
, dev
->evbit
))
726 if (get_user(v
, ip
+ 1))
729 input_inject_event(&evdev
->handle
, EV_REP
, REP_DELAY
, u
);
730 input_inject_event(&evdev
->handle
, EV_REP
, REP_PERIOD
, v
);
738 error
= input_get_keycode(dev
, t
, &v
);
742 if (put_user(v
, ip
+ 1))
748 if (get_user(t
, ip
) || get_user(v
, ip
+ 1))
751 return input_set_keycode(dev
, t
, v
);
754 return input_ff_erase(dev
, (int)(unsigned long) p
, file
);
757 i
= test_bit(EV_FF
, dev
->evbit
) ?
758 dev
->ff
->max_effects
: 0;
765 return evdev_grab(evdev
, client
);
767 return evdev_ungrab(evdev
, client
);
771 if (_IOC_TYPE(cmd
) != 'E')
774 if (_IOC_DIR(cmd
) == _IOC_READ
) {
776 if ((_IOC_NR(cmd
) & ~EV_MAX
) == _IOC_NR(EVIOCGBIT(0, 0)))
777 return handle_eviocgbit(dev
, cmd
, p
, compat_mode
);
779 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGKEY(0)))
780 return bits_to_user(dev
->key
, KEY_MAX
, _IOC_SIZE(cmd
),
783 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGLED(0)))
784 return bits_to_user(dev
->led
, LED_MAX
, _IOC_SIZE(cmd
),
787 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGSND(0)))
788 return bits_to_user(dev
->snd
, SND_MAX
, _IOC_SIZE(cmd
),
791 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGSW(0)))
792 return bits_to_user(dev
->sw
, SW_MAX
, _IOC_SIZE(cmd
),
795 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGNAME(0)))
796 return str_to_user(dev
->name
, _IOC_SIZE(cmd
), p
);
798 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGPHYS(0)))
799 return str_to_user(dev
->phys
, _IOC_SIZE(cmd
), p
);
801 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCGUNIQ(0)))
802 return str_to_user(dev
->uniq
, _IOC_SIZE(cmd
), p
);
804 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCGABS(0))) {
806 t
= _IOC_NR(cmd
) & ABS_MAX
;
808 abs
.value
= dev
->abs
[t
];
809 abs
.minimum
= dev
->absmin
[t
];
810 abs
.maximum
= dev
->absmax
[t
];
811 abs
.fuzz
= dev
->absfuzz
[t
];
812 abs
.flat
= dev
->absflat
[t
];
814 if (copy_to_user(p
, &abs
, sizeof(struct input_absinfo
)))
822 if (_IOC_DIR(cmd
) == _IOC_WRITE
) {
824 if (_IOC_NR(cmd
) == _IOC_NR(EVIOCSFF
)) {
826 if (evdev_ff_effect_from_user(p
, _IOC_SIZE(cmd
), &effect
))
829 error
= input_ff_upload(dev
, &effect
, file
);
831 if (put_user(effect
.id
, &(((struct ff_effect __user
*)p
)->id
)))
837 if ((_IOC_NR(cmd
) & ~ABS_MAX
) == _IOC_NR(EVIOCSABS(0))) {
839 t
= _IOC_NR(cmd
) & ABS_MAX
;
841 if (copy_from_user(&abs
, p
,
842 sizeof(struct input_absinfo
)))
846 * Take event lock to ensure that we are not
847 * changing device parameters in the middle
850 spin_lock_irq(&dev
->event_lock
);
852 dev
->abs
[t
] = abs
.value
;
853 dev
->absmin
[t
] = abs
.minimum
;
854 dev
->absmax
[t
] = abs
.maximum
;
855 dev
->absfuzz
[t
] = abs
.fuzz
;
856 dev
->absflat
[t
] = abs
.flat
;
858 spin_unlock_irq(&dev
->event_lock
);
867 static long evdev_ioctl_handler(struct file
*file
, unsigned int cmd
,
868 void __user
*p
, int compat_mode
)
870 struct evdev_client
*client
= file
->private_data
;
871 struct evdev
*evdev
= client
->evdev
;
874 retval
= mutex_lock_interruptible(&evdev
->mutex
);
883 retval
= evdev_do_ioctl(file
, cmd
, p
, compat_mode
);
886 mutex_unlock(&evdev
->mutex
);
890 static long evdev_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
892 return evdev_ioctl_handler(file
, cmd
, (void __user
*)arg
, 0);
896 static long evdev_ioctl_compat(struct file
*file
,
897 unsigned int cmd
, unsigned long arg
)
899 return evdev_ioctl_handler(file
, cmd
, compat_ptr(arg
), 1);
903 static const struct file_operations evdev_fops
= {
904 .owner
= THIS_MODULE
,
906 .write
= evdev_write
,
909 .release
= evdev_release
,
910 .unlocked_ioctl
= evdev_ioctl
,
912 .compat_ioctl
= evdev_ioctl_compat
,
914 .fasync
= evdev_fasync
,
918 static int evdev_install_chrdev(struct evdev
*evdev
)
921 * No need to do any locking here as calls to connect and
922 * disconnect are serialized by the input core
924 evdev_table
[evdev
->minor
] = evdev
;
928 static void evdev_remove_chrdev(struct evdev
*evdev
)
931 * Lock evdev table to prevent race with evdev_open()
933 mutex_lock(&evdev_table_mutex
);
934 evdev_table
[evdev
->minor
] = NULL
;
935 mutex_unlock(&evdev_table_mutex
);
939 * Mark device non-existent. This disables writes, ioctls and
940 * prevents new users from opening the device. Already posted
941 * blocking reads will stay, however new ones will fail.
943 static void evdev_mark_dead(struct evdev
*evdev
)
945 mutex_lock(&evdev
->mutex
);
947 mutex_unlock(&evdev
->mutex
);
950 static void evdev_cleanup(struct evdev
*evdev
)
952 struct input_handle
*handle
= &evdev
->handle
;
954 evdev_mark_dead(evdev
);
956 evdev_remove_chrdev(evdev
);
958 /* evdev is marked dead so no one else accesses evdev->open */
960 input_flush_device(handle
, NULL
);
961 input_close_device(handle
);
966 * Create new evdev device. Note that input core serializes calls
967 * to connect and disconnect so we don't need to lock evdev_table here.
969 static int evdev_connect(struct input_handler
*handler
, struct input_dev
*dev
,
970 const struct input_device_id
*id
)
976 for (minor
= 0; minor
< EVDEV_MINORS
; minor
++)
977 if (!evdev_table
[minor
])
980 if (minor
== EVDEV_MINORS
) {
981 printk(KERN_ERR
"evdev: no more free evdev devices\n");
985 evdev
= kzalloc(sizeof(struct evdev
), GFP_KERNEL
);
989 INIT_LIST_HEAD(&evdev
->client_list
);
990 spin_lock_init(&evdev
->client_lock
);
991 mutex_init(&evdev
->mutex
);
992 init_waitqueue_head(&evdev
->wait
);
994 snprintf(evdev
->name
, sizeof(evdev
->name
), "event%d", minor
);
996 evdev
->minor
= minor
;
998 evdev
->handle
.dev
= input_get_device(dev
);
999 evdev
->handle
.name
= evdev
->name
;
1000 evdev
->handle
.handler
= handler
;
1001 evdev
->handle
.private = evdev
;
1003 strlcpy(evdev
->dev
.bus_id
, evdev
->name
, sizeof(evdev
->dev
.bus_id
));
1004 evdev
->dev
.devt
= MKDEV(INPUT_MAJOR
, EVDEV_MINOR_BASE
+ minor
);
1005 evdev
->dev
.class = &input_class
;
1006 evdev
->dev
.parent
= &dev
->dev
;
1007 evdev
->dev
.release
= evdev_free
;
1008 device_initialize(&evdev
->dev
);
1010 error
= input_register_handle(&evdev
->handle
);
1012 goto err_free_evdev
;
1014 error
= evdev_install_chrdev(evdev
);
1016 goto err_unregister_handle
;
1018 error
= device_add(&evdev
->dev
);
1020 goto err_cleanup_evdev
;
1025 evdev_cleanup(evdev
);
1026 err_unregister_handle
:
1027 input_unregister_handle(&evdev
->handle
);
1029 put_device(&evdev
->dev
);
1033 static void evdev_disconnect(struct input_handle
*handle
)
1035 struct evdev
*evdev
= handle
->private;
1037 device_del(&evdev
->dev
);
1038 evdev_cleanup(evdev
);
1039 input_unregister_handle(handle
);
1040 put_device(&evdev
->dev
);
1043 static const struct input_device_id evdev_ids
[] = {
1044 { .driver_info
= 1 }, /* Matches all devices */
1045 { }, /* Terminating zero entry */
1048 MODULE_DEVICE_TABLE(input
, evdev_ids
);
1050 static struct input_handler evdev_handler
= {
1051 .event
= evdev_event
,
1052 .connect
= evdev_connect
,
1053 .disconnect
= evdev_disconnect
,
1054 .fops
= &evdev_fops
,
1055 .minor
= EVDEV_MINOR_BASE
,
1057 .id_table
= evdev_ids
,
1060 static int __init
evdev_init(void)
1062 return input_register_handler(&evdev_handler
);
1065 static void __exit
evdev_exit(void)
1067 input_unregister_handler(&evdev_handler
);
1070 module_init(evdev_init
);
1071 module_exit(evdev_exit
);
1073 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1074 MODULE_DESCRIPTION("Input driver event char devices");
1075 MODULE_LICENSE("GPL");