blob: d404aa8680ea1aa83c660a8a5f5ef98059fcb66c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Event char devices, giving access to raw input device events.
3 *
4 * Copyright (c) 1999-2002 Vojtech Pavlik
5 *
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.
9 */
10
11#define EVDEV_MINOR_BASE 64
12#define EVDEV_MINORS 32
13#define EVDEV_BUFFER_SIZE 64
14
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/device.h>
Juergen Kreileder52658bb2005-05-29 02:26:43 -050022#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24struct evdev {
25 int exist;
26 int open;
27 int minor;
28 char name[16];
29 struct input_handle handle;
30 wait_queue_head_t wait;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040031 struct evdev_client *grab;
32 struct list_head client_list;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040033 spinlock_t client_lock; /* protects client_list */
34 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040035 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036};
37
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040038struct evdev_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 struct input_event buffer[EVDEV_BUFFER_SIZE];
40 int head;
41 int tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040042 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 struct fasync_struct *fasync;
44 struct evdev *evdev;
45 struct list_head node;
46};
47
48static struct evdev *evdev_table[EVDEV_MINORS];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040049static DEFINE_MUTEX(evdev_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040051static void evdev_pass_event(struct evdev_client *client,
52 struct input_event *event)
53{
54 /*
55 * Interrupts are disabled, just acquire the lock
56 */
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);
61
62 kill_fasync(&client->fasync, SIGIO, POLL_IN);
63}
64
65/*
66 * Pass incoming event to all connected clients. Note that we are
67 * caleld under a spinlock with interrupts off so we don't need
68 * to use rcu_read_lock() here. Writers will be using syncronize_sched()
69 * instead of synchrnoize_rcu().
70 */
71static void evdev_event(struct input_handle *handle,
72 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 struct evdev *evdev = handle->private;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040075 struct evdev_client *client;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040076 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040078 do_gettimeofday(&event.time);
79 event.type = type;
80 event.code = code;
81 event.value = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040083 client = rcu_dereference(evdev->grab);
84 if (client)
85 evdev_pass_event(client, &event);
86 else
87 list_for_each_entry_rcu(client, &evdev->client_list, node)
88 evdev_pass_event(client, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 wake_up_interruptible(&evdev->wait);
91}
92
93static int evdev_fasync(int fd, struct file *file, int on)
94{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040095 struct evdev_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 int retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -040097
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040098 retval = fasync_helper(fd, file, on, &client->fasync);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -040099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return retval < 0 ? retval : 0;
101}
102
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400103static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400105 struct evdev_client *client = file->private_data;
106 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400107 int retval;
108
109 retval = mutex_lock_interruptible(&evdev->mutex);
110 if (retval)
111 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400112
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400113 if (!evdev->exist)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400114 retval = -ENODEV;
115 else
116 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400117
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400118 mutex_unlock(&evdev->mutex);
119 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400122static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400124 struct evdev *evdev = container_of(dev, struct evdev, dev);
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 kfree(evdev);
127}
128
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400129/*
130 * Grabs an event device (along with underlying input device).
131 * This function is called with evdev->mutex taken.
132 */
133static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
134{
135 int error;
136
137 if (evdev->grab)
138 return -EBUSY;
139
140 error = input_grab_device(&evdev->handle);
141 if (error)
142 return error;
143
144 rcu_assign_pointer(evdev->grab, client);
145 /*
146 * We don't use synchronize_rcu() here because read-side
147 * critical section is protected by a spinlock instead
148 * of rcu_read_lock().
149 */
150 synchronize_sched();
151
152 return 0;
153}
154
155static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
156{
157 if (evdev->grab != client)
158 return -EINVAL;
159
160 rcu_assign_pointer(evdev->grab, NULL);
161 synchronize_sched();
162 input_release_device(&evdev->handle);
163
164 return 0;
165}
166
167static void evdev_attach_client(struct evdev *evdev,
168 struct evdev_client *client)
169{
170 spin_lock(&evdev->client_lock);
171 list_add_tail_rcu(&client->node, &evdev->client_list);
172 spin_unlock(&evdev->client_lock);
173 synchronize_sched();
174}
175
176static void evdev_detach_client(struct evdev *evdev,
177 struct evdev_client *client)
178{
179 spin_lock(&evdev->client_lock);
180 list_del_rcu(&client->node);
181 spin_unlock(&evdev->client_lock);
182 synchronize_sched();
183}
184
185static int evdev_open_device(struct evdev *evdev)
186{
187 int retval;
188
189 retval = mutex_lock_interruptible(&evdev->mutex);
190 if (retval)
191 return retval;
192
193 if (!evdev->exist)
194 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400195 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400196 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400197 if (retval)
198 evdev->open--;
199 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400200
201 mutex_unlock(&evdev->mutex);
202 return retval;
203}
204
205static void evdev_close_device(struct evdev *evdev)
206{
207 mutex_lock(&evdev->mutex);
208
209 if (evdev->exist && !--evdev->open)
210 input_close_device(&evdev->handle);
211
212 mutex_unlock(&evdev->mutex);
213}
214
215/*
216 * Wake up users waiting for IO so they can disconnect from
217 * dead device.
218 */
219static void evdev_hangup(struct evdev *evdev)
220{
221 struct evdev_client *client;
222
223 spin_lock(&evdev->client_lock);
224 list_for_each_entry(client, &evdev->client_list, node)
225 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
226 spin_unlock(&evdev->client_lock);
227
228 wake_up_interruptible(&evdev->wait);
229}
230
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400231static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400233 struct evdev_client *client = file->private_data;
234 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400236 mutex_lock(&evdev->mutex);
237 if (evdev->grab == client)
238 evdev_ungrab(evdev, client);
239 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 evdev_fasync(-1, file, 0);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400242 evdev_detach_client(evdev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400243 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400245 evdev_close_device(evdev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400246 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return 0;
249}
250
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400251static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400253 struct evdev *evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400254 struct evdev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 int i = iminor(inode) - EVDEV_MINOR_BASE;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400256 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400258 if (i >= EVDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return -ENODEV;
260
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400261 error = mutex_lock_interruptible(&evdev_table_mutex);
262 if (error)
263 return error;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400264 evdev = evdev_table[i];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400265 if (evdev)
266 get_device(&evdev->dev);
267 mutex_unlock(&evdev_table_mutex);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400268
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400269 if (!evdev)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400270 return -ENODEV;
271
272 client = kzalloc(sizeof(struct evdev_client), GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400273 if (!client) {
274 error = -ENOMEM;
275 goto err_put_evdev;
276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400278 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400279 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400280 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400282 error = evdev_open_device(evdev);
283 if (error)
284 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400286 file->private_data = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400288
289 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400290 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400291 kfree(client);
292 err_put_evdev:
293 put_device(&evdev->dev);
294 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500297#ifdef CONFIG_COMPAT
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500298
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500299struct input_event_compat {
300 struct compat_timeval time;
301 __u16 type;
302 __u16 code;
303 __s32 value;
304};
305
Andi Kleenbf2fcc62006-01-11 22:44:06 +0100306/* Note to the author of this code: did it ever occur to
307 you why the ifdefs are needed? Think about it again. -AK */
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500308#ifdef CONFIG_X86_64
Andi Kleenbf2fcc62006-01-11 22:44:06 +0100309# define COMPAT_TEST is_compat_task()
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500310#elif defined(CONFIG_IA64)
Al Viro64505782006-01-12 01:06:06 -0800311# define COMPAT_TEST IS_IA32_PROCESS(task_pt_regs(current))
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800312#elif defined(CONFIG_S390)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500313# define COMPAT_TEST test_thread_flag(TIF_31BIT)
Ralf Baechle59df6bb2005-09-03 15:56:23 -0700314#elif defined(CONFIG_MIPS)
315# define COMPAT_TEST (current->thread.mflags & MF_32BIT_ADDR)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500316#else
317# define COMPAT_TEST test_thread_flag(TIF_32BIT)
318#endif
319
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500320static inline size_t evdev_event_size(void)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500321{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500322 return COMPAT_TEST ?
323 sizeof(struct input_event_compat) : sizeof(struct input_event);
324}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500325
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400326static int evdev_event_from_user(const char __user *buffer,
327 struct input_event *event)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500328{
329 if (COMPAT_TEST) {
330 struct input_event_compat compat_event;
331
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400332 if (copy_from_user(&compat_event, buffer,
333 sizeof(struct input_event_compat)))
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500334 return -EFAULT;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500335
336 event->time.tv_sec = compat_event.time.tv_sec;
337 event->time.tv_usec = compat_event.time.tv_usec;
338 event->type = compat_event.type;
339 event->code = compat_event.code;
340 event->value = compat_event.value;
341
342 } else {
343 if (copy_from_user(event, buffer, sizeof(struct input_event)))
344 return -EFAULT;
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500345 }
346
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500347 return 0;
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500348}
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500349
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400350static int evdev_event_to_user(char __user *buffer,
351 const struct input_event *event)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500352{
353 if (COMPAT_TEST) {
354 struct input_event_compat compat_event;
355
356 compat_event.time.tv_sec = event->time.tv_sec;
357 compat_event.time.tv_usec = event->time.tv_usec;
358 compat_event.type = event->type;
359 compat_event.code = event->code;
360 compat_event.value = event->value;
361
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400362 if (copy_to_user(buffer, &compat_event,
363 sizeof(struct input_event_compat)))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500364 return -EFAULT;
365
366 } else {
367 if (copy_to_user(buffer, event, sizeof(struct input_event)))
368 return -EFAULT;
369 }
370
371 return 0;
372}
373
374#else
375
376static inline size_t evdev_event_size(void)
377{
378 return sizeof(struct input_event);
379}
380
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400381static int evdev_event_from_user(const char __user *buffer,
382 struct input_event *event)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500383{
384 if (copy_from_user(event, buffer, sizeof(struct input_event)))
385 return -EFAULT;
386
387 return 0;
388}
389
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400390static int evdev_event_to_user(char __user *buffer,
391 const struct input_event *event)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500392{
393 if (copy_to_user(buffer, event, sizeof(struct input_event)))
394 return -EFAULT;
395
396 return 0;
397}
398
399#endif /* CONFIG_COMPAT */
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500400
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400401static ssize_t evdev_write(struct file *file, const char __user *buffer,
402 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400404 struct evdev_client *client = file->private_data;
405 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 struct input_event event;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400407 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400409 retval = mutex_lock_interruptible(&evdev->mutex);
410 if (retval)
411 return retval;
412
413 if (!evdev->exist) {
414 retval = -ENODEV;
415 goto out;
416 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500417
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500418 while (retval < count) {
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500419
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400420 if (evdev_event_from_user(buffer + retval, &event)) {
421 retval = -EFAULT;
422 goto out;
423 }
424
425 input_inject_event(&evdev->handle,
426 event.type, event.code, event.value);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500427 retval += evdev_event_size();
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500428 }
429
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400430 out:
431 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500432 return retval;
433}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500434
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400435static int evdev_fetch_next_event(struct evdev_client *client,
436 struct input_event *event)
437{
438 int have_event;
439
440 spin_lock_irq(&client->buffer_lock);
441
442 have_event = client->head != client->tail;
443 if (have_event) {
444 *event = client->buffer[client->tail++];
445 client->tail &= EVDEV_BUFFER_SIZE - 1;
446 }
447
448 spin_unlock_irq(&client->buffer_lock);
449
450 return have_event;
451}
452
453static ssize_t evdev_read(struct file *file, char __user *buffer,
454 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400456 struct evdev_client *client = file->private_data;
457 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400458 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 int retval;
460
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500461 if (count < evdev_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return -EINVAL;
463
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400464 if (client->head == client->tail && evdev->exist &&
465 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return -EAGAIN;
467
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400468 retval = wait_event_interruptible(evdev->wait,
469 client->head != client->tail || !evdev->exist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (retval)
471 return retval;
472
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400473 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return -ENODEV;
475
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400476 while (retval + evdev_event_size() <= count &&
477 evdev_fetch_next_event(client, &event)) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500478
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400479 if (evdev_event_to_user(buffer + retval, &event))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500480 return -EFAULT;
481
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500482 retval += evdev_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484
485 return retval;
486}
487
488/* No kernel lock - fine */
489static unsigned int evdev_poll(struct file *file, poll_table *wait)
490{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400491 struct evdev_client *client = file->private_data;
492 struct evdev *evdev = client->evdev;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400493
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400494 poll_wait(file, &evdev->wait, wait);
495 return ((client->head == client->tail) ? 0 : (POLLIN | POLLRDNORM)) |
496 (evdev->exist ? 0 : (POLLHUP | POLLERR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500499#ifdef CONFIG_COMPAT
500
501#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
502#define NBITS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
503
504#ifdef __BIG_ENDIAN
505static int bits_to_user(unsigned long *bits, unsigned int maxbit,
506 unsigned int maxlen, void __user *p, int compat)
507{
508 int len, i;
509
510 if (compat) {
511 len = NBITS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400512 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500513 len = maxlen;
514
515 for (i = 0; i < len / sizeof(compat_long_t); i++)
516 if (copy_to_user((compat_long_t __user *) p + i,
517 (compat_long_t *) bits +
518 i + 1 - ((i % 2) << 1),
519 sizeof(compat_long_t)))
520 return -EFAULT;
521 } else {
522 len = NBITS(maxbit) * sizeof(long);
523 if (len > maxlen)
524 len = maxlen;
525
526 if (copy_to_user(p, bits, len))
527 return -EFAULT;
528 }
529
530 return len;
531}
532#else
533static int bits_to_user(unsigned long *bits, unsigned int maxbit,
534 unsigned int maxlen, void __user *p, int compat)
535{
536 int len = compat ?
537 NBITS_COMPAT(maxbit) * sizeof(compat_long_t) :
538 NBITS(maxbit) * sizeof(long);
539
540 if (len > maxlen)
541 len = maxlen;
542
543 return copy_to_user(p, bits, len) ? -EFAULT : len;
544}
545#endif /* __BIG_ENDIAN */
546
547#else
548
549static int bits_to_user(unsigned long *bits, unsigned int maxbit,
550 unsigned int maxlen, void __user *p, int compat)
551{
552 int len = NBITS(maxbit) * sizeof(long);
553
554 if (len > maxlen)
555 len = maxlen;
556
557 return copy_to_user(p, bits, len) ? -EFAULT : len;
558}
559
560#endif /* CONFIG_COMPAT */
561
562static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
563{
564 int len;
565
566 if (!str)
567 return -ENOENT;
568
569 len = strlen(str) + 1;
570 if (len > maxlen)
571 len = maxlen;
572
573 return copy_to_user(p, str, len) ? -EFAULT : len;
574}
575
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400576static long evdev_do_ioctl(struct file *file, unsigned int cmd,
577 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400579 struct evdev_client *client = file->private_data;
580 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 struct input_dev *dev = evdev->handle.dev;
582 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400583 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500584 int __user *ip = (int __user *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 int i, t, u, v;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400586 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 switch (cmd) {
589
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400590 case EVIOCGVERSION:
591 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400593 case EVIOCGID:
594 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
595 return -EFAULT;
596 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400597
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400598 case EVIOCGREP:
599 if (!test_bit(EV_REP, dev->evbit))
600 return -ENOSYS;
601 if (put_user(dev->rep[REP_DELAY], ip))
602 return -EFAULT;
603 if (put_user(dev->rep[REP_PERIOD], ip + 1))
604 return -EFAULT;
605 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400606
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400607 case EVIOCSREP:
608 if (!test_bit(EV_REP, dev->evbit))
609 return -ENOSYS;
610 if (get_user(u, ip))
611 return -EFAULT;
612 if (get_user(v, ip + 1))
613 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400614
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400615 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
616 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500617
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400618 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400620 case EVIOCGKEYCODE:
621 if (get_user(t, ip))
622 return -EFAULT;
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400623
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400624 error = dev->getkeycode(dev, t, &v);
625 if (error)
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400626 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400628 if (put_user(v, ip + 1))
629 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400631 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400633 case EVIOCSKEYCODE:
634 if (get_user(t, ip) || get_user(v, ip + 1))
635 return -EFAULT;
636
637 return dev->setkeycode(dev, t, v);
638
639 case EVIOCSFF:
640 if (copy_from_user(&effect, p, sizeof(effect)))
641 return -EFAULT;
642
643 error = input_ff_upload(dev, &effect, file);
644
645 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
646 return -EFAULT;
647
648 return error;
649
650 case EVIOCRMFF:
651 return input_ff_erase(dev, (int)(unsigned long) p, file);
652
653 case EVIOCGEFFECTS:
654 i = test_bit(EV_FF, dev->evbit) ?
655 dev->ff->max_effects : 0;
656 if (put_user(i, ip))
657 return -EFAULT;
658 return 0;
659
660 case EVIOCGRAB:
661 if (p)
662 return evdev_grab(evdev, client);
663 else
664 return evdev_ungrab(evdev, client);
665
666 default:
667
668 if (_IOC_TYPE(cmd) != 'E')
669 return -EINVAL;
670
671 if (_IOC_DIR(cmd) == _IOC_READ) {
672
673 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0))) {
674
675 unsigned long *bits;
676 int len;
677
678 switch (_IOC_NR(cmd) & EV_MAX) {
679
680 case 0: bits = dev->evbit; len = EV_MAX; break;
681 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
682 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
683 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
684 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
685 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
686 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
687 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
688 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
689 default: return -EINVAL;
690 }
691 return bits_to_user(bits, len, _IOC_SIZE(cmd), p, compat_mode);
692 }
693
694 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGKEY(0)))
695 return bits_to_user(dev->key, KEY_MAX, _IOC_SIZE(cmd),
696 p, compat_mode);
697
698 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGLED(0)))
699 return bits_to_user(dev->led, LED_MAX, _IOC_SIZE(cmd),
700 p, compat_mode);
701
702 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGSND(0)))
703 return bits_to_user(dev->snd, SND_MAX, _IOC_SIZE(cmd),
704 p, compat_mode);
705
706 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGSW(0)))
707 return bits_to_user(dev->sw, SW_MAX, _IOC_SIZE(cmd),
708 p, compat_mode);
709
710 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGNAME(0)))
711 return str_to_user(dev->name, _IOC_SIZE(cmd), p);
712
713 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGPHYS(0)))
714 return str_to_user(dev->phys, _IOC_SIZE(cmd), p);
715
716 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGUNIQ(0)))
717 return str_to_user(dev->uniq, _IOC_SIZE(cmd), p);
718
719 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
720
721 t = _IOC_NR(cmd) & ABS_MAX;
722
723 abs.value = dev->abs[t];
724 abs.minimum = dev->absmin[t];
725 abs.maximum = dev->absmax[t];
726 abs.fuzz = dev->absfuzz[t];
727 abs.flat = dev->absflat[t];
728
729 if (copy_to_user(p, &abs, sizeof(struct input_absinfo)))
730 return -EFAULT;
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return 0;
733 }
734
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400737 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400739 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400741 t = _IOC_NR(cmd) & ABS_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400743 if (copy_from_user(&abs, p,
744 sizeof(struct input_absinfo)))
745 return -EFAULT;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500746
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400747 /*
748 * Take event lock to ensure that we are not
749 * changing device parameters in the middle
750 * of event.
751 */
752 spin_lock_irq(&dev->event_lock);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500753
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400754 dev->abs[t] = abs.value;
755 dev->absmin[t] = abs.minimum;
756 dev->absmax[t] = abs.maximum;
757 dev->absfuzz[t] = abs.fuzz;
758 dev->absflat[t] = abs.flat;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500759
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400760 spin_unlock_irq(&dev->event_lock);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500761
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
766 return -EINVAL;
767}
768
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400769static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
770 void __user *p, int compat_mode)
771{
772 struct evdev_client *client = file->private_data;
773 struct evdev *evdev = client->evdev;
774 int retval;
775
776 retval = mutex_lock_interruptible(&evdev->mutex);
777 if (retval)
778 return retval;
779
780 if (!evdev->exist) {
781 retval = -ENODEV;
782 goto out;
783 }
784
785 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
786
787 out:
788 mutex_unlock(&evdev->mutex);
789 return retval;
790}
791
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500792static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
793{
794 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
795}
796
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500797#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400798static long evdev_ioctl_compat(struct file *file,
799 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500800{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500801 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500802}
803#endif
804
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400805static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400806 .owner = THIS_MODULE,
807 .read = evdev_read,
808 .write = evdev_write,
809 .poll = evdev_poll,
810 .open = evdev_open,
811 .release = evdev_release,
812 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500813#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400814 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500815#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400816 .fasync = evdev_fasync,
817 .flush = evdev_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818};
819
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400820static int evdev_install_chrdev(struct evdev *evdev)
821{
822 /*
823 * No need to do any locking here as calls to connect and
824 * disconnect are serialized by the input core
825 */
826 evdev_table[evdev->minor] = evdev;
827 return 0;
828}
829
830static void evdev_remove_chrdev(struct evdev *evdev)
831{
832 /*
833 * Lock evdev table to prevent race with evdev_open()
834 */
835 mutex_lock(&evdev_table_mutex);
836 evdev_table[evdev->minor] = NULL;
837 mutex_unlock(&evdev_table_mutex);
838}
839
840/*
841 * Mark device non-existent. This disables writes, ioctls and
842 * prevents new users from opening the device. Already posted
843 * blocking reads will stay, however new ones will fail.
844 */
845static void evdev_mark_dead(struct evdev *evdev)
846{
847 mutex_lock(&evdev->mutex);
848 evdev->exist = 0;
849 mutex_unlock(&evdev->mutex);
850}
851
852static void evdev_cleanup(struct evdev *evdev)
853{
854 struct input_handle *handle = &evdev->handle;
855
856 evdev_mark_dead(evdev);
857 evdev_hangup(evdev);
858 evdev_remove_chrdev(evdev);
859
860 /* evdev is marked dead so no one else accesses evdev->open */
861 if (evdev->open) {
862 input_flush_device(handle, NULL);
863 input_close_device(handle);
864 }
865}
866
867/*
868 * Create new evdev device. Note that input core serializes calls
869 * to connect and disconnect so we don't need to lock evdev_table here.
870 */
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400871static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
872 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
874 struct evdev *evdev;
875 int minor;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400876 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400878 for (minor = 0; minor < EVDEV_MINORS; minor++)
879 if (!evdev_table[minor])
880 break;
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (minor == EVDEV_MINORS) {
883 printk(KERN_ERR "evdev: no more free evdev devices\n");
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400884 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
886
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400887 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
888 if (!evdev)
889 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400891 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400892 spin_lock_init(&evdev->client_lock);
893 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 init_waitqueue_head(&evdev->wait);
895
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400896 snprintf(evdev->name, sizeof(evdev->name), "event%d", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 evdev->exist = 1;
898 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 evdev->handle.dev = dev;
901 evdev->handle.name = evdev->name;
902 evdev->handle.handler = handler;
903 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400904
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400905 strlcpy(evdev->dev.bus_id, evdev->name, sizeof(evdev->dev.bus_id));
906 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400907 evdev->dev.class = &input_class;
908 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400909 evdev->dev.release = evdev_free;
910 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400912 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400913 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400914 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400916 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400917 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400918 goto err_unregister_handle;
919
920 error = device_add(&evdev->dev);
921 if (error)
922 goto err_cleanup_evdev;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400923
924 return 0;
925
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400926 err_cleanup_evdev:
927 evdev_cleanup(evdev);
928 err_unregister_handle:
929 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400930 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400931 put_device(&evdev->dev);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400932 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
935static void evdev_disconnect(struct input_handle *handle)
936{
937 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400939 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400940 evdev_cleanup(evdev);
941 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400942 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400945static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 { .driver_info = 1 }, /* Matches all devices */
947 { }, /* Terminating zero entry */
948};
949
950MODULE_DEVICE_TABLE(input, evdev_ids);
951
952static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400953 .event = evdev_event,
954 .connect = evdev_connect,
955 .disconnect = evdev_disconnect,
956 .fops = &evdev_fops,
957 .minor = EVDEV_MINOR_BASE,
958 .name = "evdev",
959 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960};
961
962static int __init evdev_init(void)
963{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400964 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
967static void __exit evdev_exit(void)
968{
969 input_unregister_handler(&evdev_handler);
970}
971
972module_init(evdev_init);
973module_exit(evdev_exit);
974
975MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
976MODULE_DESCRIPTION("Input driver event char devices");
977MODULE_LICENSE("GPL");