blob: f1c3d6cebd585a5392c96e0ed1a25e9cf275a73a [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 Torokhov9657d752007-06-14 23:32:24 -040033 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034};
35
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040036struct evdev_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 struct input_event buffer[EVDEV_BUFFER_SIZE];
38 int head;
39 int tail;
40 struct fasync_struct *fasync;
41 struct evdev *evdev;
42 struct list_head node;
43};
44
45static struct evdev *evdev_table[EVDEV_MINORS];
46
47static void evdev_event(struct input_handle *handle, unsigned int type, unsigned int code, int value)
48{
49 struct evdev *evdev = handle->private;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040050 struct evdev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 if (evdev->grab) {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040053 client = evdev->grab;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040055 do_gettimeofday(&client->buffer[client->head].time);
56 client->buffer[client->head].type = type;
57 client->buffer[client->head].code = code;
58 client->buffer[client->head].value = value;
59 client->head = (client->head + 1) & (EVDEV_BUFFER_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040061 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 } else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040063 list_for_each_entry(client, &evdev->client_list, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040065 do_gettimeofday(&client->buffer[client->head].time);
66 client->buffer[client->head].type = type;
67 client->buffer[client->head].code = code;
68 client->buffer[client->head].value = value;
69 client->head = (client->head + 1) & (EVDEV_BUFFER_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040071 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 }
73
74 wake_up_interruptible(&evdev->wait);
75}
76
77static int evdev_fasync(int fd, struct file *file, int on)
78{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040079 struct evdev_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 int retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -040081
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040082 retval = fasync_helper(fd, file, on, &client->fasync);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -040083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return retval < 0 ? retval : 0;
85}
86
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -040087static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040089 struct evdev_client *client = file->private_data;
90 struct evdev *evdev = client->evdev;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -040091
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040092 if (!evdev->exist)
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -040093 return -ENODEV;
94
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040095 return input_flush_device(&evdev->handle, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Dmitry Torokhov9657d752007-06-14 23:32:24 -040098static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400100 struct evdev *evdev = container_of(dev, struct evdev, dev);
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 evdev_table[evdev->minor] = NULL;
103 kfree(evdev);
104}
105
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400106static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400108 struct evdev_client *client = file->private_data;
109 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400111 if (evdev->grab == client) {
112 input_release_device(&evdev->handle);
113 evdev->grab = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115
116 evdev_fasync(-1, file, 0);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400117 list_del(&client->node);
118 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400120 if (!--evdev->open && evdev->exist)
121 input_close_device(&evdev->handle);
122
123 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return 0;
126}
127
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400128static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400130 struct evdev_client *client;
131 struct evdev *evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int i = iminor(inode) - EVDEV_MINOR_BASE;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400133 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400135 if (i >= EVDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return -ENODEV;
137
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400138 evdev = evdev_table[i];
139
140 if (!evdev || !evdev->exist)
141 return -ENODEV;
142
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400143 get_device(&evdev->dev);
144
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400145 client = kzalloc(sizeof(struct evdev_client), GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400146 if (!client) {
147 error = -ENOMEM;
148 goto err_put_evdev;
149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400151 client->evdev = evdev;
152 list_add_tail(&client->node, &evdev->client_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400154 if (!evdev->open++ && evdev->exist) {
155 error = input_open_device(&evdev->handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400156 if (error)
157 goto err_free_client;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400160 file->private_data = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400162
163 err_free_client:
164 list_del(&client->node);
165 kfree(client);
166 err_put_evdev:
167 put_device(&evdev->dev);
168 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500171#ifdef CONFIG_COMPAT
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500172
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500173struct input_event_compat {
174 struct compat_timeval time;
175 __u16 type;
176 __u16 code;
177 __s32 value;
178};
179
Andi Kleenbf2fcc62006-01-11 22:44:06 +0100180/* Note to the author of this code: did it ever occur to
181 you why the ifdefs are needed? Think about it again. -AK */
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500182#ifdef CONFIG_X86_64
Andi Kleenbf2fcc62006-01-11 22:44:06 +0100183# define COMPAT_TEST is_compat_task()
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500184#elif defined(CONFIG_IA64)
Al Viro64505782006-01-12 01:06:06 -0800185# define COMPAT_TEST IS_IA32_PROCESS(task_pt_regs(current))
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800186#elif defined(CONFIG_S390)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500187# define COMPAT_TEST test_thread_flag(TIF_31BIT)
Ralf Baechle59df6bb2005-09-03 15:56:23 -0700188#elif defined(CONFIG_MIPS)
Ralf Baechle293c5bd2007-07-25 16:19:33 +0100189# define COMPAT_TEST test_thread_flag(TIF_32BIT_ADDR)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500190#else
191# define COMPAT_TEST test_thread_flag(TIF_32BIT)
192#endif
193
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500194static inline size_t evdev_event_size(void)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500195{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500196 return COMPAT_TEST ?
197 sizeof(struct input_event_compat) : sizeof(struct input_event);
198}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500199
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500200static int evdev_event_from_user(const char __user *buffer, struct input_event *event)
201{
202 if (COMPAT_TEST) {
203 struct input_event_compat compat_event;
204
205 if (copy_from_user(&compat_event, buffer, sizeof(struct input_event_compat)))
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500206 return -EFAULT;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500207
208 event->time.tv_sec = compat_event.time.tv_sec;
209 event->time.tv_usec = compat_event.time.tv_usec;
210 event->type = compat_event.type;
211 event->code = compat_event.code;
212 event->value = compat_event.value;
213
214 } else {
215 if (copy_from_user(event, buffer, sizeof(struct input_event)))
216 return -EFAULT;
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500217 }
218
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500219 return 0;
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500220}
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500221
222static int evdev_event_to_user(char __user *buffer, const struct input_event *event)
223{
224 if (COMPAT_TEST) {
225 struct input_event_compat compat_event;
226
227 compat_event.time.tv_sec = event->time.tv_sec;
228 compat_event.time.tv_usec = event->time.tv_usec;
229 compat_event.type = event->type;
230 compat_event.code = event->code;
231 compat_event.value = event->value;
232
233 if (copy_to_user(buffer, &compat_event, sizeof(struct input_event_compat)))
234 return -EFAULT;
235
236 } else {
237 if (copy_to_user(buffer, event, sizeof(struct input_event)))
238 return -EFAULT;
239 }
240
241 return 0;
242}
243
244#else
245
246static inline size_t evdev_event_size(void)
247{
248 return sizeof(struct input_event);
249}
250
251static int evdev_event_from_user(const char __user *buffer, struct input_event *event)
252{
253 if (copy_from_user(event, buffer, sizeof(struct input_event)))
254 return -EFAULT;
255
256 return 0;
257}
258
259static int evdev_event_to_user(char __user *buffer, const struct input_event *event)
260{
261 if (copy_to_user(buffer, event, sizeof(struct input_event)))
262 return -EFAULT;
263
264 return 0;
265}
266
267#endif /* CONFIG_COMPAT */
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500268
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400269static ssize_t evdev_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400271 struct evdev_client *client = file->private_data;
272 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 struct input_event event;
274 int retval = 0;
275
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400276 if (!evdev->exist)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500277 return -ENODEV;
278
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500279 while (retval < count) {
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500280
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500281 if (evdev_event_from_user(buffer + retval, &event))
282 return -EFAULT;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400283 input_inject_event(&evdev->handle, event.type, event.code, event.value);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500284 retval += evdev_event_size();
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500285 }
286
287 return retval;
288}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500289
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400290static ssize_t evdev_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400292 struct evdev_client *client = file->private_data;
293 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 int retval;
295
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500296 if (count < evdev_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return -EINVAL;
298
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400299 if (client->head == client->tail && evdev->exist && (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return -EAGAIN;
301
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400302 retval = wait_event_interruptible(evdev->wait,
303 client->head != client->tail || !evdev->exist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (retval)
305 return retval;
306
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400307 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return -ENODEV;
309
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400310 while (client->head != client->tail && retval + evdev_event_size() <= count) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500311
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400312 struct input_event *event = (struct input_event *) client->buffer + client->tail;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500313
314 if (evdev_event_to_user(buffer + retval, event))
315 return -EFAULT;
316
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400317 client->tail = (client->tail + 1) & (EVDEV_BUFFER_SIZE - 1);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500318 retval += evdev_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
321 return retval;
322}
323
324/* No kernel lock - fine */
325static unsigned int evdev_poll(struct file *file, poll_table *wait)
326{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400327 struct evdev_client *client = file->private_data;
328 struct evdev *evdev = client->evdev;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400329
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400330 poll_wait(file, &evdev->wait, wait);
331 return ((client->head == client->tail) ? 0 : (POLLIN | POLLRDNORM)) |
332 (evdev->exist ? 0 : (POLLHUP | POLLERR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500335#ifdef CONFIG_COMPAT
336
337#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
338#define NBITS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
339
340#ifdef __BIG_ENDIAN
341static int bits_to_user(unsigned long *bits, unsigned int maxbit,
342 unsigned int maxlen, void __user *p, int compat)
343{
344 int len, i;
345
346 if (compat) {
347 len = NBITS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400348 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500349 len = maxlen;
350
351 for (i = 0; i < len / sizeof(compat_long_t); i++)
352 if (copy_to_user((compat_long_t __user *) p + i,
353 (compat_long_t *) bits +
354 i + 1 - ((i % 2) << 1),
355 sizeof(compat_long_t)))
356 return -EFAULT;
357 } else {
358 len = NBITS(maxbit) * sizeof(long);
359 if (len > maxlen)
360 len = maxlen;
361
362 if (copy_to_user(p, bits, len))
363 return -EFAULT;
364 }
365
366 return len;
367}
368#else
369static int bits_to_user(unsigned long *bits, unsigned int maxbit,
370 unsigned int maxlen, void __user *p, int compat)
371{
372 int len = compat ?
373 NBITS_COMPAT(maxbit) * sizeof(compat_long_t) :
374 NBITS(maxbit) * sizeof(long);
375
376 if (len > maxlen)
377 len = maxlen;
378
379 return copy_to_user(p, bits, len) ? -EFAULT : len;
380}
381#endif /* __BIG_ENDIAN */
382
383#else
384
385static int bits_to_user(unsigned long *bits, unsigned int maxbit,
386 unsigned int maxlen, void __user *p, int compat)
387{
388 int len = NBITS(maxbit) * sizeof(long);
389
390 if (len > maxlen)
391 len = maxlen;
392
393 return copy_to_user(p, bits, len) ? -EFAULT : len;
394}
395
396#endif /* CONFIG_COMPAT */
397
398static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
399{
400 int len;
401
402 if (!str)
403 return -ENOENT;
404
405 len = strlen(str) + 1;
406 if (len > maxlen)
407 len = maxlen;
408
409 return copy_to_user(p, str, len) ? -EFAULT : len;
410}
411
412static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
413 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400415 struct evdev_client *client = file->private_data;
416 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 struct input_dev *dev = evdev->handle.dev;
418 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400419 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500420 int __user *ip = (int __user *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 int i, t, u, v;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400422 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500424 if (!evdev->exist)
425 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 switch (cmd) {
428
429 case EVIOCGVERSION:
430 return put_user(EV_VERSION, ip);
431
432 case EVIOCGID:
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500433 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
434 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400435 return 0;
436
437 case EVIOCGREP:
438 if (!test_bit(EV_REP, dev->evbit))
439 return -ENOSYS;
440 if (put_user(dev->rep[REP_DELAY], ip))
441 return -EFAULT;
442 if (put_user(dev->rep[REP_PERIOD], ip + 1))
443 return -EFAULT;
444 return 0;
445
446 case EVIOCSREP:
447 if (!test_bit(EV_REP, dev->evbit))
448 return -ENOSYS;
449 if (get_user(u, ip))
450 return -EFAULT;
451 if (get_user(v, ip + 1))
452 return -EFAULT;
453
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400454 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
455 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500456
457 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 case EVIOCGKEYCODE:
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500460 if (get_user(t, ip))
461 return -EFAULT;
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400462
463 error = dev->getkeycode(dev, t, &v);
464 if (error)
465 return error;
466
467 if (put_user(v, ip + 1))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500468 return -EFAULT;
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return 0;
471
472 case EVIOCSKEYCODE:
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400473 if (get_user(t, ip) || get_user(v, ip + 1))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500474 return -EFAULT;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500475
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400476 return dev->setkeycode(dev, t, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 case EVIOCSFF:
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400479 if (copy_from_user(&effect, p, sizeof(effect)))
480 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400482 error = input_ff_upload(dev, &effect, file);
483
484 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
485 return -EFAULT;
486
487 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 case EVIOCRMFF:
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400490 return input_ff_erase(dev, (int)(unsigned long) p, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 case EVIOCGEFFECTS:
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400493 i = test_bit(EV_FF, dev->evbit) ? dev->ff->max_effects : 0;
494 if (put_user(i, ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return -EFAULT;
496 return 0;
497
498 case EVIOCGRAB:
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500499 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (evdev->grab)
501 return -EBUSY;
502 if (input_grab_device(&evdev->handle))
503 return -EBUSY;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400504 evdev->grab = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return 0;
506 } else {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400507 if (evdev->grab != client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return -EINVAL;
509 input_release_device(&evdev->handle);
510 evdev->grab = NULL;
511 return 0;
512 }
513
514 default:
515
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500516 if (_IOC_TYPE(cmd) != 'E')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return -EINVAL;
518
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500519 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500521 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0,0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Dmitry Torokhovce305b62007-05-03 00:53:18 -0400523 unsigned long *bits;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500524 int len;
525
526 switch (_IOC_NR(cmd) & EV_MAX) {
527 case 0: bits = dev->evbit; len = EV_MAX; break;
528 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
529 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
530 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
531 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
532 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
533 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
534 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
Richard Purdie31581062005-09-06 15:19:06 -0700535 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500536 default: return -EINVAL;
537 }
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500538 return bits_to_user(bits, len, _IOC_SIZE(cmd), p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500540
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500541 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGKEY(0)))
542 return bits_to_user(dev->key, KEY_MAX, _IOC_SIZE(cmd),
543 p, compat_mode);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500544
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500545 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGLED(0)))
546 return bits_to_user(dev->led, LED_MAX, _IOC_SIZE(cmd),
547 p, compat_mode);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500548
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500549 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGSND(0)))
550 return bits_to_user(dev->snd, SND_MAX, _IOC_SIZE(cmd),
551 p, compat_mode);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500552
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500553 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGSW(0)))
554 return bits_to_user(dev->sw, SW_MAX, _IOC_SIZE(cmd),
555 p, compat_mode);
Richard Purdie31581062005-09-06 15:19:06 -0700556
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500557 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGNAME(0)))
558 return str_to_user(dev->name, _IOC_SIZE(cmd), p);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500559
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500560 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGPHYS(0)))
561 return str_to_user(dev->phys, _IOC_SIZE(cmd), p);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500562
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500563 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGUNIQ(0)))
564 return str_to_user(dev->uniq, _IOC_SIZE(cmd), p);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500565
566 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
567
Dmitry Torokhovce305b62007-05-03 00:53:18 -0400568 t = _IOC_NR(cmd) & ABS_MAX;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500569
570 abs.value = dev->abs[t];
571 abs.minimum = dev->absmin[t];
572 abs.maximum = dev->absmax[t];
573 abs.fuzz = dev->absfuzz[t];
574 abs.flat = dev->absflat[t];
575
576 if (copy_to_user(p, &abs, sizeof(struct input_absinfo)))
577 return -EFAULT;
578
579 return 0;
580 }
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500584 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500586 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Dmitry Torokhovce305b62007-05-03 00:53:18 -0400588 t = _IOC_NR(cmd) & ABS_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500590 if (copy_from_user(&abs, p, sizeof(struct input_absinfo)))
591 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500593 dev->abs[t] = abs.value;
594 dev->absmin[t] = abs.minimum;
595 dev->absmax[t] = abs.maximum;
596 dev->absfuzz[t] = abs.fuzz;
597 dev->absflat[t] = abs.flat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500599 return 0;
600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
602 }
603 return -EINVAL;
604}
605
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500606static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
607{
608 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
609}
610
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500611#ifdef CONFIG_COMPAT
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500612static long evdev_ioctl_compat(struct file *file, unsigned int cmd, unsigned long arg)
613{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500614 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500615}
616#endif
617
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400618static const struct file_operations evdev_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 .owner = THIS_MODULE,
620 .read = evdev_read,
621 .write = evdev_write,
622 .poll = evdev_poll,
623 .open = evdev_open,
624 .release = evdev_release,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500625 .unlocked_ioctl = evdev_ioctl,
626#ifdef CONFIG_COMPAT
627 .compat_ioctl = evdev_ioctl_compat,
628#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 .fasync = evdev_fasync,
630 .flush = evdev_flush
631};
632
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400633static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
634 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 struct evdev *evdev;
637 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400638 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 for (minor = 0; minor < EVDEV_MINORS && evdev_table[minor]; minor++);
641 if (minor == EVDEV_MINORS) {
642 printk(KERN_ERR "evdev: no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400643 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400646 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
647 if (!evdev)
648 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400650 INIT_LIST_HEAD(&evdev->client_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 init_waitqueue_head(&evdev->wait);
652
653 evdev->exist = 1;
654 evdev->minor = minor;
655 evdev->handle.dev = dev;
656 evdev->handle.name = evdev->name;
657 evdev->handle.handler = handler;
658 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400659 snprintf(evdev->name, sizeof(evdev->name), "event%d", minor);
660
661 snprintf(evdev->dev.bus_id, sizeof(evdev->dev.bus_id),
662 "event%d", minor);
663 evdev->dev.class = &input_class;
664 evdev->dev.parent = &dev->dev;
665 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
666 evdev->dev.release = evdev_free;
667 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 evdev_table[minor] = evdev;
670
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400671 error = device_add(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400672 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400673 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400675 error = input_register_handle(&evdev->handle);
676 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400677 goto err_delete_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400678
679 return 0;
680
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400681 err_delete_evdev:
682 device_del(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400683 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400684 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400685 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688static void evdev_disconnect(struct input_handle *handle)
689{
690 struct evdev *evdev = handle->private;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400691 struct evdev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400693 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400694 device_del(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 evdev->exist = 0;
697
698 if (evdev->open) {
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400699 input_flush_device(handle, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 input_close_device(handle);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400701 list_for_each_entry(client, &evdev->client_list, node)
702 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
Dmitry Torokhov1dfa2812007-06-03 23:29:36 -0400703 wake_up_interruptible(&evdev->wait);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400704 }
705
706 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400709static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 { .driver_info = 1 }, /* Matches all devices */
711 { }, /* Terminating zero entry */
712};
713
714MODULE_DEVICE_TABLE(input, evdev_ids);
715
716static struct input_handler evdev_handler = {
717 .event = evdev_event,
718 .connect = evdev_connect,
719 .disconnect = evdev_disconnect,
720 .fops = &evdev_fops,
721 .minor = EVDEV_MINOR_BASE,
722 .name = "evdev",
723 .id_table = evdev_ids,
724};
725
726static int __init evdev_init(void)
727{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400728 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
730
731static void __exit evdev_exit(void)
732{
733 input_unregister_handler(&evdev_handler);
734}
735
736module_init(evdev_init);
737module_exit(evdev_exit);
738
739MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
740MODULE_DESCRIPTION("Input driver event char devices");
741MODULE_LICENSE("GPL");