blob: dee6706038aad7ad1519f551bd4d71f02fa6f9c1 [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>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040016#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/slab.h>
18#include <linux/module.h>
19#include <linux/init.h>
20#include <linux/input.h>
21#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/device.h>
Philip Langdale2d56f3a2008-10-16 22:31:42 -040023#include "input-compat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25struct evdev {
26 int exist;
27 int open;
28 int minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 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/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040066 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040067 */
68static void evdev_event(struct input_handle *handle,
69 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 struct evdev *evdev = handle->private;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040072 struct evdev_client *client;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040073 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040075 do_gettimeofday(&event.time);
76 event.type = type;
77 event.code = code;
78 event.value = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040080 rcu_read_lock();
81
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040082 client = rcu_dereference(evdev->grab);
83 if (client)
84 evdev_pass_event(client, &event);
85 else
86 list_for_each_entry_rcu(client, &evdev->client_list, node)
87 evdev_pass_event(client, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040089 rcu_read_unlock();
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 wake_up_interruptible(&evdev->wait);
92}
93
94static int evdev_fasync(int fd, struct file *file, int on)
95{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040096 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -040097
Jonathan Corbet60aa4922009-02-01 14:52:56 -070098 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400101static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400103 struct evdev_client *client = file->private_data;
104 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400105 int retval;
106
107 retval = mutex_lock_interruptible(&evdev->mutex);
108 if (retval)
109 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400110
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400111 if (!evdev->exist)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400112 retval = -ENODEV;
113 else
114 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400115
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400116 mutex_unlock(&evdev->mutex);
117 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400120static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400122 struct evdev *evdev = container_of(dev, struct evdev, dev);
123
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400124 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 kfree(evdev);
126}
127
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400128/*
129 * Grabs an event device (along with underlying input device).
130 * This function is called with evdev->mutex taken.
131 */
132static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
133{
134 int error;
135
136 if (evdev->grab)
137 return -EBUSY;
138
139 error = input_grab_device(&evdev->handle);
140 if (error)
141 return error;
142
143 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400144 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400145
146 return 0;
147}
148
149static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
150{
151 if (evdev->grab != client)
152 return -EINVAL;
153
154 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400155 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400156 input_release_device(&evdev->handle);
157
158 return 0;
159}
160
161static void evdev_attach_client(struct evdev *evdev,
162 struct evdev_client *client)
163{
164 spin_lock(&evdev->client_lock);
165 list_add_tail_rcu(&client->node, &evdev->client_list);
166 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400167 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400168}
169
170static void evdev_detach_client(struct evdev *evdev,
171 struct evdev_client *client)
172{
173 spin_lock(&evdev->client_lock);
174 list_del_rcu(&client->node);
175 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400176 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400177}
178
179static int evdev_open_device(struct evdev *evdev)
180{
181 int retval;
182
183 retval = mutex_lock_interruptible(&evdev->mutex);
184 if (retval)
185 return retval;
186
187 if (!evdev->exist)
188 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400189 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400190 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400191 if (retval)
192 evdev->open--;
193 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400194
195 mutex_unlock(&evdev->mutex);
196 return retval;
197}
198
199static void evdev_close_device(struct evdev *evdev)
200{
201 mutex_lock(&evdev->mutex);
202
203 if (evdev->exist && !--evdev->open)
204 input_close_device(&evdev->handle);
205
206 mutex_unlock(&evdev->mutex);
207}
208
209/*
210 * Wake up users waiting for IO so they can disconnect from
211 * dead device.
212 */
213static void evdev_hangup(struct evdev *evdev)
214{
215 struct evdev_client *client;
216
217 spin_lock(&evdev->client_lock);
218 list_for_each_entry(client, &evdev->client_list, node)
219 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
220 spin_unlock(&evdev->client_lock);
221
222 wake_up_interruptible(&evdev->wait);
223}
224
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400225static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400227 struct evdev_client *client = file->private_data;
228 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400230 mutex_lock(&evdev->mutex);
231 if (evdev->grab == client)
232 evdev_ungrab(evdev, client);
233 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400235 evdev_detach_client(evdev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400236 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400238 evdev_close_device(evdev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400239 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return 0;
242}
243
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400244static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400246 struct evdev *evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400247 struct evdev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int i = iminor(inode) - EVDEV_MINOR_BASE;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400249 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400251 if (i >= EVDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return -ENODEV;
253
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400254 error = mutex_lock_interruptible(&evdev_table_mutex);
255 if (error)
256 return error;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400257 evdev = evdev_table[i];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400258 if (evdev)
259 get_device(&evdev->dev);
260 mutex_unlock(&evdev_table_mutex);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400261
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400262 if (!evdev)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400263 return -ENODEV;
264
265 client = kzalloc(sizeof(struct evdev_client), GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400266 if (!client) {
267 error = -ENOMEM;
268 goto err_put_evdev;
269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400271 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400272 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400273 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400275 error = evdev_open_device(evdev);
276 if (error)
277 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400279 file->private_data = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400281
282 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400283 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400284 kfree(client);
285 err_put_evdev:
286 put_device(&evdev->dev);
287 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400290static ssize_t evdev_write(struct file *file, const char __user *buffer,
291 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400293 struct evdev_client *client = file->private_data;
294 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 struct input_event event;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400296 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400298 retval = mutex_lock_interruptible(&evdev->mutex);
299 if (retval)
300 return retval;
301
302 if (!evdev->exist) {
303 retval = -ENODEV;
304 goto out;
305 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500306
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500307 while (retval < count) {
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500308
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400309 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400310 retval = -EFAULT;
311 goto out;
312 }
313
314 input_inject_event(&evdev->handle,
315 event.type, event.code, event.value);
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400316 retval += input_event_size();
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500317 }
318
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400319 out:
320 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500321 return retval;
322}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500323
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400324static int evdev_fetch_next_event(struct evdev_client *client,
325 struct input_event *event)
326{
327 int have_event;
328
329 spin_lock_irq(&client->buffer_lock);
330
331 have_event = client->head != client->tail;
332 if (have_event) {
333 *event = client->buffer[client->tail++];
334 client->tail &= EVDEV_BUFFER_SIZE - 1;
335 }
336
337 spin_unlock_irq(&client->buffer_lock);
338
339 return have_event;
340}
341
342static ssize_t evdev_read(struct file *file, char __user *buffer,
343 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400345 struct evdev_client *client = file->private_data;
346 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400347 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 int retval;
349
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400350 if (count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return -EINVAL;
352
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400353 if (client->head == client->tail && evdev->exist &&
354 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return -EAGAIN;
356
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400357 retval = wait_event_interruptible(evdev->wait,
358 client->head != client->tail || !evdev->exist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (retval)
360 return retval;
361
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400362 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return -ENODEV;
364
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400365 while (retval + input_event_size() <= count &&
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400366 evdev_fetch_next_event(client, &event)) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500367
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400368 if (input_event_to_user(buffer + retval, &event))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500369 return -EFAULT;
370
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400371 retval += input_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
373
374 return retval;
375}
376
377/* No kernel lock - fine */
378static unsigned int evdev_poll(struct file *file, poll_table *wait)
379{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400380 struct evdev_client *client = file->private_data;
381 struct evdev *evdev = client->evdev;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400382
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400383 poll_wait(file, &evdev->wait, wait);
384 return ((client->head == client->tail) ? 0 : (POLLIN | POLLRDNORM)) |
385 (evdev->exist ? 0 : (POLLHUP | POLLERR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500388#ifdef CONFIG_COMPAT
389
390#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700391#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500392
393#ifdef __BIG_ENDIAN
394static int bits_to_user(unsigned long *bits, unsigned int maxbit,
395 unsigned int maxlen, void __user *p, int compat)
396{
397 int len, i;
398
399 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700400 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400401 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500402 len = maxlen;
403
404 for (i = 0; i < len / sizeof(compat_long_t); i++)
405 if (copy_to_user((compat_long_t __user *) p + i,
406 (compat_long_t *) bits +
407 i + 1 - ((i % 2) << 1),
408 sizeof(compat_long_t)))
409 return -EFAULT;
410 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700411 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500412 if (len > maxlen)
413 len = maxlen;
414
415 if (copy_to_user(p, bits, len))
416 return -EFAULT;
417 }
418
419 return len;
420}
421#else
422static int bits_to_user(unsigned long *bits, unsigned int maxbit,
423 unsigned int maxlen, void __user *p, int compat)
424{
425 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700426 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
427 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500428
429 if (len > maxlen)
430 len = maxlen;
431
432 return copy_to_user(p, bits, len) ? -EFAULT : len;
433}
434#endif /* __BIG_ENDIAN */
435
436#else
437
438static int bits_to_user(unsigned long *bits, unsigned int maxbit,
439 unsigned int maxlen, void __user *p, int compat)
440{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700441 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500442
443 if (len > maxlen)
444 len = maxlen;
445
446 return copy_to_user(p, bits, len) ? -EFAULT : len;
447}
448
449#endif /* CONFIG_COMPAT */
450
451static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
452{
453 int len;
454
455 if (!str)
456 return -ENOENT;
457
458 len = strlen(str) + 1;
459 if (len > maxlen)
460 len = maxlen;
461
462 return copy_to_user(p, str, len) ? -EFAULT : len;
463}
464
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400465#define OLD_KEY_MAX 0x1ff
Linus Torvalds5402a732008-08-05 11:42:42 -0400466static int handle_eviocgbit(struct input_dev *dev, unsigned int cmd, void __user *p, int compat_mode)
467{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400468 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400469 unsigned long *bits;
470 int len;
471
472 switch (_IOC_NR(cmd) & EV_MAX) {
473
474 case 0: bits = dev->evbit; len = EV_MAX; break;
475 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
476 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
477 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
478 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
479 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
480 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
481 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
482 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
483 default: return -EINVAL;
484 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400485
486 /*
487 * Work around bugs in userspace programs that like to do
488 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
489 * should be in bytes, not in bits.
490 */
491 if ((_IOC_NR(cmd) & EV_MAX) == EV_KEY && _IOC_SIZE(cmd) == OLD_KEY_MAX) {
492 len = OLD_KEY_MAX;
493 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
494 printk(KERN_WARNING
Geert Uytterhoevenc85e2032008-08-19 11:28:23 -0400495 "evdev.c(EVIOCGBIT): Suspicious buffer size %u, "
496 "limiting output to %zu bytes. See "
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400497 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
498 OLD_KEY_MAX,
499 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
500 }
501
Linus Torvalds5402a732008-08-05 11:42:42 -0400502 return bits_to_user(bits, len, _IOC_SIZE(cmd), p, compat_mode);
503}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400504#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400505
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400506static long evdev_do_ioctl(struct file *file, unsigned int cmd,
507 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400509 struct evdev_client *client = file->private_data;
510 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 struct input_dev *dev = evdev->handle.dev;
512 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400513 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500514 int __user *ip = (int __user *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 int i, t, u, v;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400516 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 switch (cmd) {
519
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400520 case EVIOCGVERSION:
521 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400523 case EVIOCGID:
524 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
525 return -EFAULT;
526 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400527
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400528 case EVIOCGREP:
529 if (!test_bit(EV_REP, dev->evbit))
530 return -ENOSYS;
531 if (put_user(dev->rep[REP_DELAY], ip))
532 return -EFAULT;
533 if (put_user(dev->rep[REP_PERIOD], ip + 1))
534 return -EFAULT;
535 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400536
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400537 case EVIOCSREP:
538 if (!test_bit(EV_REP, dev->evbit))
539 return -ENOSYS;
540 if (get_user(u, ip))
541 return -EFAULT;
542 if (get_user(v, ip + 1))
543 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400544
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400545 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
546 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500547
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400548 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400550 case EVIOCGKEYCODE:
551 if (get_user(t, ip))
552 return -EFAULT;
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400553
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400554 error = input_get_keycode(dev, t, &v);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400555 if (error)
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400556 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400558 if (put_user(v, ip + 1))
559 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400561 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400563 case EVIOCSKEYCODE:
564 if (get_user(t, ip) || get_user(v, ip + 1))
565 return -EFAULT;
566
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400567 return input_set_keycode(dev, t, v);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400568
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400569 case EVIOCRMFF:
570 return input_ff_erase(dev, (int)(unsigned long) p, file);
571
572 case EVIOCGEFFECTS:
573 i = test_bit(EV_FF, dev->evbit) ?
574 dev->ff->max_effects : 0;
575 if (put_user(i, ip))
576 return -EFAULT;
577 return 0;
578
579 case EVIOCGRAB:
580 if (p)
581 return evdev_grab(evdev, client);
582 else
583 return evdev_ungrab(evdev, client);
584
585 default:
586
587 if (_IOC_TYPE(cmd) != 'E')
588 return -EINVAL;
589
590 if (_IOC_DIR(cmd) == _IOC_READ) {
591
Linus Torvalds5402a732008-08-05 11:42:42 -0400592 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
593 return handle_eviocgbit(dev, cmd, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400594
595 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGKEY(0)))
596 return bits_to_user(dev->key, KEY_MAX, _IOC_SIZE(cmd),
597 p, compat_mode);
598
599 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGLED(0)))
600 return bits_to_user(dev->led, LED_MAX, _IOC_SIZE(cmd),
601 p, compat_mode);
602
603 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGSND(0)))
604 return bits_to_user(dev->snd, SND_MAX, _IOC_SIZE(cmd),
605 p, compat_mode);
606
607 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGSW(0)))
608 return bits_to_user(dev->sw, SW_MAX, _IOC_SIZE(cmd),
609 p, compat_mode);
610
611 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGNAME(0)))
Daniel Mackf9366012009-07-13 22:22:49 -0700612 return str_to_user(dev->name, _IOC_SIZE(cmd), p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400613
614 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGPHYS(0)))
615 return str_to_user(dev->phys, _IOC_SIZE(cmd), p);
616
617 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGUNIQ(0)))
618 return str_to_user(dev->uniq, _IOC_SIZE(cmd), p);
619
620 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
621
622 t = _IOC_NR(cmd) & ABS_MAX;
623
624 abs.value = dev->abs[t];
625 abs.minimum = dev->absmin[t];
626 abs.maximum = dev->absmax[t];
627 abs.fuzz = dev->absfuzz[t];
628 abs.flat = dev->absflat[t];
Tero Saarniec20a022009-06-10 23:27:24 -0700629 abs.resolution = dev->absres[t];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400630
Tero Saarniec20a022009-06-10 23:27:24 -0700631 if (copy_to_user(p, &abs, min_t(size_t,
632 _IOC_SIZE(cmd),
633 sizeof(struct input_absinfo))))
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400634 return -EFAULT;
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 0;
637 }
638
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400641 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400643 if (_IOC_NR(cmd) == _IOC_NR(EVIOCSFF)) {
644
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400645 if (input_ff_effect_from_user(p, _IOC_SIZE(cmd), &effect))
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400646 return -EFAULT;
647
648 error = input_ff_upload(dev, &effect, file);
649
650 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
651 return -EFAULT;
652
653 return error;
654 }
655
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400656 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400658 t = _IOC_NR(cmd) & ABS_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Tero Saarniec20a022009-06-10 23:27:24 -0700660 if (copy_from_user(&abs, p, min_t(size_t,
661 _IOC_SIZE(cmd),
662 sizeof(struct input_absinfo))))
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400663 return -EFAULT;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500664
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400665 /*
666 * Take event lock to ensure that we are not
667 * changing device parameters in the middle
668 * of event.
669 */
670 spin_lock_irq(&dev->event_lock);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500671
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400672 dev->abs[t] = abs.value;
673 dev->absmin[t] = abs.minimum;
674 dev->absmax[t] = abs.maximum;
675 dev->absfuzz[t] = abs.fuzz;
676 dev->absflat[t] = abs.flat;
Tero Saarniec20a022009-06-10 23:27:24 -0700677 dev->absres[t] = _IOC_SIZE(cmd) < sizeof(struct input_absinfo) ?
678 0 : abs.resolution;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500679
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400680 spin_unlock_irq(&dev->event_lock);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500681
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400682 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686 return -EINVAL;
687}
688
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400689static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
690 void __user *p, int compat_mode)
691{
692 struct evdev_client *client = file->private_data;
693 struct evdev *evdev = client->evdev;
694 int retval;
695
696 retval = mutex_lock_interruptible(&evdev->mutex);
697 if (retval)
698 return retval;
699
700 if (!evdev->exist) {
701 retval = -ENODEV;
702 goto out;
703 }
704
705 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
706
707 out:
708 mutex_unlock(&evdev->mutex);
709 return retval;
710}
711
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500712static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
713{
714 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
715}
716
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500717#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400718static long evdev_ioctl_compat(struct file *file,
719 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500720{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500721 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500722}
723#endif
724
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400725static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400726 .owner = THIS_MODULE,
727 .read = evdev_read,
728 .write = evdev_write,
729 .poll = evdev_poll,
730 .open = evdev_open,
731 .release = evdev_release,
732 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500733#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400734 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500735#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400736 .fasync = evdev_fasync,
737 .flush = evdev_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738};
739
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400740static int evdev_install_chrdev(struct evdev *evdev)
741{
742 /*
743 * No need to do any locking here as calls to connect and
744 * disconnect are serialized by the input core
745 */
746 evdev_table[evdev->minor] = evdev;
747 return 0;
748}
749
750static void evdev_remove_chrdev(struct evdev *evdev)
751{
752 /*
753 * Lock evdev table to prevent race with evdev_open()
754 */
755 mutex_lock(&evdev_table_mutex);
756 evdev_table[evdev->minor] = NULL;
757 mutex_unlock(&evdev_table_mutex);
758}
759
760/*
761 * Mark device non-existent. This disables writes, ioctls and
762 * prevents new users from opening the device. Already posted
763 * blocking reads will stay, however new ones will fail.
764 */
765static void evdev_mark_dead(struct evdev *evdev)
766{
767 mutex_lock(&evdev->mutex);
768 evdev->exist = 0;
769 mutex_unlock(&evdev->mutex);
770}
771
772static void evdev_cleanup(struct evdev *evdev)
773{
774 struct input_handle *handle = &evdev->handle;
775
776 evdev_mark_dead(evdev);
777 evdev_hangup(evdev);
778 evdev_remove_chrdev(evdev);
779
780 /* evdev is marked dead so no one else accesses evdev->open */
781 if (evdev->open) {
782 input_flush_device(handle, NULL);
783 input_close_device(handle);
784 }
785}
786
787/*
788 * Create new evdev device. Note that input core serializes calls
789 * to connect and disconnect so we don't need to lock evdev_table here.
790 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400791static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
792 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
794 struct evdev *evdev;
795 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400796 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400798 for (minor = 0; minor < EVDEV_MINORS; minor++)
799 if (!evdev_table[minor])
800 break;
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (minor == EVDEV_MINORS) {
803 printk(KERN_ERR "evdev: no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400804 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400807 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
808 if (!evdev)
809 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400811 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400812 spin_lock_init(&evdev->client_lock);
813 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 init_waitqueue_head(&evdev->wait);
815
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700816 dev_set_name(&evdev->dev, "event%d", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 evdev->exist = 1;
818 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400819
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400820 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700821 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 evdev->handle.handler = handler;
823 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400824
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400825 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400826 evdev->dev.class = &input_class;
827 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400828 evdev->dev.release = evdev_free;
829 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400831 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400832 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400833 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400835 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400836 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400837 goto err_unregister_handle;
838
839 error = device_add(&evdev->dev);
840 if (error)
841 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400842
843 return 0;
844
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400845 err_cleanup_evdev:
846 evdev_cleanup(evdev);
847 err_unregister_handle:
848 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400849 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400850 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400851 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
854static void evdev_disconnect(struct input_handle *handle)
855{
856 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400858 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400859 evdev_cleanup(evdev);
860 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400861 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400864static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 { .driver_info = 1 }, /* Matches all devices */
866 { }, /* Terminating zero entry */
867};
868
869MODULE_DEVICE_TABLE(input, evdev_ids);
870
871static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400872 .event = evdev_event,
873 .connect = evdev_connect,
874 .disconnect = evdev_disconnect,
875 .fops = &evdev_fops,
876 .minor = EVDEV_MINOR_BASE,
877 .name = "evdev",
878 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879};
880
881static int __init evdev_init(void)
882{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400883 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
886static void __exit evdev_exit(void)
887{
888 input_unregister_handler(&evdev_handler);
889}
890
891module_init(evdev_init);
892module_exit(evdev_exit);
893
894MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
895MODULE_DESCRIPTION("Input driver event char devices");
896MODULE_LICENSE("GPL");