blob: 1d62c8b88e121307427a491a204a023c9510c3d5 [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/*
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 int retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -040098
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040099 retval = fasync_helper(fd, file, on, &client->fasync);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return retval < 0 ? retval : 0;
102}
103
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400104static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400106 struct evdev_client *client = file->private_data;
107 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400108 int retval;
109
110 retval = mutex_lock_interruptible(&evdev->mutex);
111 if (retval)
112 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400113
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400114 if (!evdev->exist)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400115 retval = -ENODEV;
116 else
117 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400118
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400119 mutex_unlock(&evdev->mutex);
120 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400123static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400125 struct evdev *evdev = container_of(dev, struct evdev, dev);
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 kfree(evdev);
128}
129
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400130/*
131 * Grabs an event device (along with underlying input device).
132 * This function is called with evdev->mutex taken.
133 */
134static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
135{
136 int error;
137
138 if (evdev->grab)
139 return -EBUSY;
140
141 error = input_grab_device(&evdev->handle);
142 if (error)
143 return error;
144
145 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400146 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400147
148 return 0;
149}
150
151static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
152{
153 if (evdev->grab != client)
154 return -EINVAL;
155
156 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400157 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400158 input_release_device(&evdev->handle);
159
160 return 0;
161}
162
163static void evdev_attach_client(struct evdev *evdev,
164 struct evdev_client *client)
165{
166 spin_lock(&evdev->client_lock);
167 list_add_tail_rcu(&client->node, &evdev->client_list);
168 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400169 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400170}
171
172static void evdev_detach_client(struct evdev *evdev,
173 struct evdev_client *client)
174{
175 spin_lock(&evdev->client_lock);
176 list_del_rcu(&client->node);
177 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400178 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400179}
180
181static int evdev_open_device(struct evdev *evdev)
182{
183 int retval;
184
185 retval = mutex_lock_interruptible(&evdev->mutex);
186 if (retval)
187 return retval;
188
189 if (!evdev->exist)
190 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400191 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400192 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400193 if (retval)
194 evdev->open--;
195 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400196
197 mutex_unlock(&evdev->mutex);
198 return retval;
199}
200
201static void evdev_close_device(struct evdev *evdev)
202{
203 mutex_lock(&evdev->mutex);
204
205 if (evdev->exist && !--evdev->open)
206 input_close_device(&evdev->handle);
207
208 mutex_unlock(&evdev->mutex);
209}
210
211/*
212 * Wake up users waiting for IO so they can disconnect from
213 * dead device.
214 */
215static void evdev_hangup(struct evdev *evdev)
216{
217 struct evdev_client *client;
218
219 spin_lock(&evdev->client_lock);
220 list_for_each_entry(client, &evdev->client_list, node)
221 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
222 spin_unlock(&evdev->client_lock);
223
224 wake_up_interruptible(&evdev->wait);
225}
226
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400227static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400229 struct evdev_client *client = file->private_data;
230 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400232 mutex_lock(&evdev->mutex);
233 if (evdev->grab == client)
234 evdev_ungrab(evdev, client);
235 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 evdev_fasync(-1, file, 0);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400238 evdev_detach_client(evdev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400239 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400241 evdev_close_device(evdev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400242 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return 0;
245}
246
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400247static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400249 struct evdev *evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400250 struct evdev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 int i = iminor(inode) - EVDEV_MINOR_BASE;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400252 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400254 if (i >= EVDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return -ENODEV;
256
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400257 error = mutex_lock_interruptible(&evdev_table_mutex);
258 if (error)
259 return error;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400260 evdev = evdev_table[i];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400261 if (evdev)
262 get_device(&evdev->dev);
263 mutex_unlock(&evdev_table_mutex);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400264
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400265 if (!evdev)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400266 return -ENODEV;
267
268 client = kzalloc(sizeof(struct evdev_client), GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400269 if (!client) {
270 error = -ENOMEM;
271 goto err_put_evdev;
272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400274 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400275 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400276 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400278 error = evdev_open_device(evdev);
279 if (error)
280 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400282 file->private_data = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400284
285 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400286 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400287 kfree(client);
288 err_put_evdev:
289 put_device(&evdev->dev);
290 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500293#ifdef CONFIG_COMPAT
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500294
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500295struct input_event_compat {
296 struct compat_timeval time;
297 __u16 type;
298 __u16 code;
299 __s32 value;
300};
301
Andi Kleenbf2fcc62006-01-11 22:44:06 +0100302/* Note to the author of this code: did it ever occur to
303 you why the ifdefs are needed? Think about it again. -AK */
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500304#ifdef CONFIG_X86_64
Andi Kleenbf2fcc62006-01-11 22:44:06 +0100305# define COMPAT_TEST is_compat_task()
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500306#elif defined(CONFIG_IA64)
Al Viro64505782006-01-12 01:06:06 -0800307# define COMPAT_TEST IS_IA32_PROCESS(task_pt_regs(current))
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800308#elif defined(CONFIG_S390)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500309# define COMPAT_TEST test_thread_flag(TIF_31BIT)
Ralf Baechle59df6bb2005-09-03 15:56:23 -0700310#elif defined(CONFIG_MIPS)
Ralf Baechle293c5bd2007-07-25 16:19:33 +0100311# define COMPAT_TEST test_thread_flag(TIF_32BIT_ADDR)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500312#else
313# define COMPAT_TEST test_thread_flag(TIF_32BIT)
314#endif
315
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500316static inline size_t evdev_event_size(void)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500317{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500318 return COMPAT_TEST ?
319 sizeof(struct input_event_compat) : sizeof(struct input_event);
320}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500321
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400322static int evdev_event_from_user(const char __user *buffer,
323 struct input_event *event)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500324{
325 if (COMPAT_TEST) {
326 struct input_event_compat compat_event;
327
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400328 if (copy_from_user(&compat_event, buffer,
329 sizeof(struct input_event_compat)))
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500330 return -EFAULT;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500331
332 event->time.tv_sec = compat_event.time.tv_sec;
333 event->time.tv_usec = compat_event.time.tv_usec;
334 event->type = compat_event.type;
335 event->code = compat_event.code;
336 event->value = compat_event.value;
337
338 } else {
339 if (copy_from_user(event, buffer, sizeof(struct input_event)))
340 return -EFAULT;
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500341 }
342
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500343 return 0;
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500344}
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500345
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400346static int evdev_event_to_user(char __user *buffer,
347 const struct input_event *event)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500348{
349 if (COMPAT_TEST) {
350 struct input_event_compat compat_event;
351
352 compat_event.time.tv_sec = event->time.tv_sec;
353 compat_event.time.tv_usec = event->time.tv_usec;
354 compat_event.type = event->type;
355 compat_event.code = event->code;
356 compat_event.value = event->value;
357
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400358 if (copy_to_user(buffer, &compat_event,
359 sizeof(struct input_event_compat)))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500360 return -EFAULT;
361
362 } else {
363 if (copy_to_user(buffer, event, sizeof(struct input_event)))
364 return -EFAULT;
365 }
366
367 return 0;
368}
369
370#else
371
372static inline size_t evdev_event_size(void)
373{
374 return sizeof(struct input_event);
375}
376
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400377static int evdev_event_from_user(const char __user *buffer,
378 struct input_event *event)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500379{
380 if (copy_from_user(event, buffer, sizeof(struct input_event)))
381 return -EFAULT;
382
383 return 0;
384}
385
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400386static int evdev_event_to_user(char __user *buffer,
387 const struct input_event *event)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500388{
389 if (copy_to_user(buffer, event, sizeof(struct input_event)))
390 return -EFAULT;
391
392 return 0;
393}
394
395#endif /* CONFIG_COMPAT */
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500396
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400397static ssize_t evdev_write(struct file *file, const char __user *buffer,
398 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400400 struct evdev_client *client = file->private_data;
401 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 struct input_event event;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400403 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400405 retval = mutex_lock_interruptible(&evdev->mutex);
406 if (retval)
407 return retval;
408
409 if (!evdev->exist) {
410 retval = -ENODEV;
411 goto out;
412 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500413
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500414 while (retval < count) {
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500415
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400416 if (evdev_event_from_user(buffer + retval, &event)) {
417 retval = -EFAULT;
418 goto out;
419 }
420
421 input_inject_event(&evdev->handle,
422 event.type, event.code, event.value);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500423 retval += evdev_event_size();
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500424 }
425
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400426 out:
427 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500428 return retval;
429}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500430
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400431static int evdev_fetch_next_event(struct evdev_client *client,
432 struct input_event *event)
433{
434 int have_event;
435
436 spin_lock_irq(&client->buffer_lock);
437
438 have_event = client->head != client->tail;
439 if (have_event) {
440 *event = client->buffer[client->tail++];
441 client->tail &= EVDEV_BUFFER_SIZE - 1;
442 }
443
444 spin_unlock_irq(&client->buffer_lock);
445
446 return have_event;
447}
448
449static ssize_t evdev_read(struct file *file, char __user *buffer,
450 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400452 struct evdev_client *client = file->private_data;
453 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400454 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 int retval;
456
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500457 if (count < evdev_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return -EINVAL;
459
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400460 if (client->head == client->tail && evdev->exist &&
461 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return -EAGAIN;
463
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400464 retval = wait_event_interruptible(evdev->wait,
465 client->head != client->tail || !evdev->exist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (retval)
467 return retval;
468
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400469 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return -ENODEV;
471
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400472 while (retval + evdev_event_size() <= count &&
473 evdev_fetch_next_event(client, &event)) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500474
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400475 if (evdev_event_to_user(buffer + retval, &event))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500476 return -EFAULT;
477
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500478 retval += evdev_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480
481 return retval;
482}
483
484/* No kernel lock - fine */
485static unsigned int evdev_poll(struct file *file, poll_table *wait)
486{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400487 struct evdev_client *client = file->private_data;
488 struct evdev *evdev = client->evdev;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400489
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400490 poll_wait(file, &evdev->wait, wait);
491 return ((client->head == client->tail) ? 0 : (POLLIN | POLLRDNORM)) |
492 (evdev->exist ? 0 : (POLLHUP | POLLERR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500495#ifdef CONFIG_COMPAT
496
497#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
498#define NBITS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
499
500#ifdef __BIG_ENDIAN
501static int bits_to_user(unsigned long *bits, unsigned int maxbit,
502 unsigned int maxlen, void __user *p, int compat)
503{
504 int len, i;
505
506 if (compat) {
507 len = NBITS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400508 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500509 len = maxlen;
510
511 for (i = 0; i < len / sizeof(compat_long_t); i++)
512 if (copy_to_user((compat_long_t __user *) p + i,
513 (compat_long_t *) bits +
514 i + 1 - ((i % 2) << 1),
515 sizeof(compat_long_t)))
516 return -EFAULT;
517 } else {
518 len = NBITS(maxbit) * sizeof(long);
519 if (len > maxlen)
520 len = maxlen;
521
522 if (copy_to_user(p, bits, len))
523 return -EFAULT;
524 }
525
526 return len;
527}
528#else
529static int bits_to_user(unsigned long *bits, unsigned int maxbit,
530 unsigned int maxlen, void __user *p, int compat)
531{
532 int len = compat ?
533 NBITS_COMPAT(maxbit) * sizeof(compat_long_t) :
534 NBITS(maxbit) * sizeof(long);
535
536 if (len > maxlen)
537 len = maxlen;
538
539 return copy_to_user(p, bits, len) ? -EFAULT : len;
540}
541#endif /* __BIG_ENDIAN */
542
543#else
544
545static int bits_to_user(unsigned long *bits, unsigned int maxbit,
546 unsigned int maxlen, void __user *p, int compat)
547{
548 int len = NBITS(maxbit) * sizeof(long);
549
550 if (len > maxlen)
551 len = maxlen;
552
553 return copy_to_user(p, bits, len) ? -EFAULT : len;
554}
555
556#endif /* CONFIG_COMPAT */
557
558static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
559{
560 int len;
561
562 if (!str)
563 return -ENOENT;
564
565 len = strlen(str) + 1;
566 if (len > maxlen)
567 len = maxlen;
568
569 return copy_to_user(p, str, len) ? -EFAULT : len;
570}
571
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400572static long evdev_do_ioctl(struct file *file, unsigned int cmd,
573 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400575 struct evdev_client *client = file->private_data;
576 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 struct input_dev *dev = evdev->handle.dev;
578 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400579 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500580 int __user *ip = (int __user *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 int i, t, u, v;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400582 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 switch (cmd) {
585
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400586 case EVIOCGVERSION:
587 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400589 case EVIOCGID:
590 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
591 return -EFAULT;
592 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400593
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400594 case EVIOCGREP:
595 if (!test_bit(EV_REP, dev->evbit))
596 return -ENOSYS;
597 if (put_user(dev->rep[REP_DELAY], ip))
598 return -EFAULT;
599 if (put_user(dev->rep[REP_PERIOD], ip + 1))
600 return -EFAULT;
601 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400602
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400603 case EVIOCSREP:
604 if (!test_bit(EV_REP, dev->evbit))
605 return -ENOSYS;
606 if (get_user(u, ip))
607 return -EFAULT;
608 if (get_user(v, ip + 1))
609 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400610
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400611 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
612 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500613
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400614 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400616 case EVIOCGKEYCODE:
617 if (get_user(t, ip))
618 return -EFAULT;
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400619
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400620 error = dev->getkeycode(dev, t, &v);
621 if (error)
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400622 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400624 if (put_user(v, ip + 1))
625 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400627 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400629 case EVIOCSKEYCODE:
630 if (get_user(t, ip) || get_user(v, ip + 1))
631 return -EFAULT;
632
633 return dev->setkeycode(dev, t, v);
634
635 case EVIOCSFF:
636 if (copy_from_user(&effect, p, sizeof(effect)))
637 return -EFAULT;
638
639 error = input_ff_upload(dev, &effect, file);
640
641 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
642 return -EFAULT;
643
644 return error;
645
646 case EVIOCRMFF:
647 return input_ff_erase(dev, (int)(unsigned long) p, file);
648
649 case EVIOCGEFFECTS:
650 i = test_bit(EV_FF, dev->evbit) ?
651 dev->ff->max_effects : 0;
652 if (put_user(i, ip))
653 return -EFAULT;
654 return 0;
655
656 case EVIOCGRAB:
657 if (p)
658 return evdev_grab(evdev, client);
659 else
660 return evdev_ungrab(evdev, client);
661
662 default:
663
664 if (_IOC_TYPE(cmd) != 'E')
665 return -EINVAL;
666
667 if (_IOC_DIR(cmd) == _IOC_READ) {
668
669 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0))) {
670
671 unsigned long *bits;
672 int len;
673
674 switch (_IOC_NR(cmd) & EV_MAX) {
675
676 case 0: bits = dev->evbit; len = EV_MAX; break;
677 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
678 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
679 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
680 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
681 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
682 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
683 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
684 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
685 default: return -EINVAL;
686 }
687 return bits_to_user(bits, len, _IOC_SIZE(cmd), p, compat_mode);
688 }
689
690 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGKEY(0)))
691 return bits_to_user(dev->key, KEY_MAX, _IOC_SIZE(cmd),
692 p, compat_mode);
693
694 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGLED(0)))
695 return bits_to_user(dev->led, LED_MAX, _IOC_SIZE(cmd),
696 p, compat_mode);
697
698 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGSND(0)))
699 return bits_to_user(dev->snd, SND_MAX, _IOC_SIZE(cmd),
700 p, compat_mode);
701
702 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGSW(0)))
703 return bits_to_user(dev->sw, SW_MAX, _IOC_SIZE(cmd),
704 p, compat_mode);
705
706 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGNAME(0)))
707 return str_to_user(dev->name, _IOC_SIZE(cmd), p);
708
709 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGPHYS(0)))
710 return str_to_user(dev->phys, _IOC_SIZE(cmd), p);
711
712 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGUNIQ(0)))
713 return str_to_user(dev->uniq, _IOC_SIZE(cmd), p);
714
715 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
716
717 t = _IOC_NR(cmd) & ABS_MAX;
718
719 abs.value = dev->abs[t];
720 abs.minimum = dev->absmin[t];
721 abs.maximum = dev->absmax[t];
722 abs.fuzz = dev->absfuzz[t];
723 abs.flat = dev->absflat[t];
724
725 if (copy_to_user(p, &abs, sizeof(struct input_absinfo)))
726 return -EFAULT;
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return 0;
729 }
730
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400733 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400735 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400737 t = _IOC_NR(cmd) & ABS_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400739 if (copy_from_user(&abs, p,
740 sizeof(struct input_absinfo)))
741 return -EFAULT;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500742
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400743 /*
744 * Take event lock to ensure that we are not
745 * changing device parameters in the middle
746 * of event.
747 */
748 spin_lock_irq(&dev->event_lock);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500749
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400750 dev->abs[t] = abs.value;
751 dev->absmin[t] = abs.minimum;
752 dev->absmax[t] = abs.maximum;
753 dev->absfuzz[t] = abs.fuzz;
754 dev->absflat[t] = abs.flat;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500755
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400756 spin_unlock_irq(&dev->event_lock);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500757
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400758 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762 return -EINVAL;
763}
764
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400765static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
766 void __user *p, int compat_mode)
767{
768 struct evdev_client *client = file->private_data;
769 struct evdev *evdev = client->evdev;
770 int retval;
771
772 retval = mutex_lock_interruptible(&evdev->mutex);
773 if (retval)
774 return retval;
775
776 if (!evdev->exist) {
777 retval = -ENODEV;
778 goto out;
779 }
780
781 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
782
783 out:
784 mutex_unlock(&evdev->mutex);
785 return retval;
786}
787
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500788static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
789{
790 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
791}
792
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500793#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400794static long evdev_ioctl_compat(struct file *file,
795 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500796{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500797 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500798}
799#endif
800
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400801static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400802 .owner = THIS_MODULE,
803 .read = evdev_read,
804 .write = evdev_write,
805 .poll = evdev_poll,
806 .open = evdev_open,
807 .release = evdev_release,
808 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500809#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400810 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500811#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400812 .fasync = evdev_fasync,
813 .flush = evdev_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814};
815
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400816static int evdev_install_chrdev(struct evdev *evdev)
817{
818 /*
819 * No need to do any locking here as calls to connect and
820 * disconnect are serialized by the input core
821 */
822 evdev_table[evdev->minor] = evdev;
823 return 0;
824}
825
826static void evdev_remove_chrdev(struct evdev *evdev)
827{
828 /*
829 * Lock evdev table to prevent race with evdev_open()
830 */
831 mutex_lock(&evdev_table_mutex);
832 evdev_table[evdev->minor] = NULL;
833 mutex_unlock(&evdev_table_mutex);
834}
835
836/*
837 * Mark device non-existent. This disables writes, ioctls and
838 * prevents new users from opening the device. Already posted
839 * blocking reads will stay, however new ones will fail.
840 */
841static void evdev_mark_dead(struct evdev *evdev)
842{
843 mutex_lock(&evdev->mutex);
844 evdev->exist = 0;
845 mutex_unlock(&evdev->mutex);
846}
847
848static void evdev_cleanup(struct evdev *evdev)
849{
850 struct input_handle *handle = &evdev->handle;
851
852 evdev_mark_dead(evdev);
853 evdev_hangup(evdev);
854 evdev_remove_chrdev(evdev);
855
856 /* evdev is marked dead so no one else accesses evdev->open */
857 if (evdev->open) {
858 input_flush_device(handle, NULL);
859 input_close_device(handle);
860 }
861}
862
863/*
864 * Create new evdev device. Note that input core serializes calls
865 * to connect and disconnect so we don't need to lock evdev_table here.
866 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400867static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
868 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
870 struct evdev *evdev;
871 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400872 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400874 for (minor = 0; minor < EVDEV_MINORS; minor++)
875 if (!evdev_table[minor])
876 break;
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (minor == EVDEV_MINORS) {
879 printk(KERN_ERR "evdev: no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400880 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400883 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
884 if (!evdev)
885 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400887 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400888 spin_lock_init(&evdev->client_lock);
889 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 init_waitqueue_head(&evdev->wait);
891
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400892 snprintf(evdev->name, sizeof(evdev->name), "event%d", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 evdev->exist = 1;
894 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 evdev->handle.dev = dev;
897 evdev->handle.name = evdev->name;
898 evdev->handle.handler = handler;
899 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400900
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400901 strlcpy(evdev->dev.bus_id, evdev->name, sizeof(evdev->dev.bus_id));
902 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400903 evdev->dev.class = &input_class;
904 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400905 evdev->dev.release = evdev_free;
906 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400908 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400909 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400910 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400912 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400913 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400914 goto err_unregister_handle;
915
916 error = device_add(&evdev->dev);
917 if (error)
918 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400919
920 return 0;
921
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400922 err_cleanup_evdev:
923 evdev_cleanup(evdev);
924 err_unregister_handle:
925 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400926 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400927 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400928 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
931static void evdev_disconnect(struct input_handle *handle)
932{
933 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400935 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400936 evdev_cleanup(evdev);
937 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400938 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400941static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 { .driver_info = 1 }, /* Matches all devices */
943 { }, /* Terminating zero entry */
944};
945
946MODULE_DEVICE_TABLE(input, evdev_ids);
947
948static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400949 .event = evdev_event,
950 .connect = evdev_connect,
951 .disconnect = evdev_disconnect,
952 .fops = &evdev_fops,
953 .minor = EVDEV_MINOR_BASE,
954 .name = "evdev",
955 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956};
957
958static int __init evdev_init(void)
959{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400960 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
963static void __exit evdev_exit(void)
964{
965 input_unregister_handler(&evdev_handler);
966}
967
968module_init(evdev_init);
969module_exit(evdev_exit);
970
971MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
972MODULE_DESCRIPTION("Input driver event char devices");
973MODULE_LICENSE("GPL");