blob: 93b407cd46009ed895007d60284b94c6f34caaa8 [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>
21#include <linux/smp_lock.h>
22#include <linux/device.h>
Juergen Kreileder52658bb2005-05-29 02:26:43 -050023#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25struct evdev {
26 int exist;
27 int open;
28 int minor;
29 char name[16];
30 struct input_handle handle;
31 wait_queue_head_t wait;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040032 struct evdev_client *grab;
33 struct list_head client_list;
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
98static void evdev_free(struct evdev *evdev)
99{
100 evdev_table[evdev->minor] = NULL;
101 kfree(evdev);
102}
103
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400104static int evdev_release(struct inode *inode, struct file *file)
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400109 if (evdev->grab == client) {
110 input_release_device(&evdev->handle);
111 evdev->grab = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113
114 evdev_fasync(-1, file, 0);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400115 list_del(&client->node);
116 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400118 if (!--evdev->open) {
119 if (evdev->exist)
120 input_close_device(&evdev->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 else
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400122 evdev_free(evdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124
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
143 client = kzalloc(sizeof(struct evdev_client), GFP_KERNEL);
144 if (!client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400147 client->evdev = evdev;
148 list_add_tail(&client->node, &evdev->client_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400150 if (!evdev->open++ && evdev->exist) {
151 error = input_open_device(&evdev->handle);
152 if (error) {
153 list_del(&client->node);
154 kfree(client);
155 return error;
156 }
157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400159 file->private_data = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return 0;
161}
162
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500163#ifdef CONFIG_COMPAT
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500164
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500165struct input_event_compat {
166 struct compat_timeval time;
167 __u16 type;
168 __u16 code;
169 __s32 value;
170};
171
Andi Kleenbf2fcc62006-01-11 22:44:06 +0100172/* Note to the author of this code: did it ever occur to
173 you why the ifdefs are needed? Think about it again. -AK */
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500174#ifdef CONFIG_X86_64
Andi Kleenbf2fcc62006-01-11 22:44:06 +0100175# define COMPAT_TEST is_compat_task()
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500176#elif defined(CONFIG_IA64)
Al Viro64505782006-01-12 01:06:06 -0800177# define COMPAT_TEST IS_IA32_PROCESS(task_pt_regs(current))
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800178#elif defined(CONFIG_S390)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500179# define COMPAT_TEST test_thread_flag(TIF_31BIT)
Ralf Baechle59df6bb2005-09-03 15:56:23 -0700180#elif defined(CONFIG_MIPS)
181# define COMPAT_TEST (current->thread.mflags & MF_32BIT_ADDR)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500182#else
183# define COMPAT_TEST test_thread_flag(TIF_32BIT)
184#endif
185
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500186static inline size_t evdev_event_size(void)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500187{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500188 return COMPAT_TEST ?
189 sizeof(struct input_event_compat) : sizeof(struct input_event);
190}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500191
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500192static int evdev_event_from_user(const char __user *buffer, struct input_event *event)
193{
194 if (COMPAT_TEST) {
195 struct input_event_compat compat_event;
196
197 if (copy_from_user(&compat_event, buffer, sizeof(struct input_event_compat)))
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500198 return -EFAULT;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500199
200 event->time.tv_sec = compat_event.time.tv_sec;
201 event->time.tv_usec = compat_event.time.tv_usec;
202 event->type = compat_event.type;
203 event->code = compat_event.code;
204 event->value = compat_event.value;
205
206 } else {
207 if (copy_from_user(event, buffer, sizeof(struct input_event)))
208 return -EFAULT;
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500209 }
210
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500211 return 0;
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500212}
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500213
214static int evdev_event_to_user(char __user *buffer, const struct input_event *event)
215{
216 if (COMPAT_TEST) {
217 struct input_event_compat compat_event;
218
219 compat_event.time.tv_sec = event->time.tv_sec;
220 compat_event.time.tv_usec = event->time.tv_usec;
221 compat_event.type = event->type;
222 compat_event.code = event->code;
223 compat_event.value = event->value;
224
225 if (copy_to_user(buffer, &compat_event, sizeof(struct input_event_compat)))
226 return -EFAULT;
227
228 } else {
229 if (copy_to_user(buffer, event, sizeof(struct input_event)))
230 return -EFAULT;
231 }
232
233 return 0;
234}
235
236#else
237
238static inline size_t evdev_event_size(void)
239{
240 return sizeof(struct input_event);
241}
242
243static int evdev_event_from_user(const char __user *buffer, struct input_event *event)
244{
245 if (copy_from_user(event, buffer, sizeof(struct input_event)))
246 return -EFAULT;
247
248 return 0;
249}
250
251static int evdev_event_to_user(char __user *buffer, const struct input_event *event)
252{
253 if (copy_to_user(buffer, event, sizeof(struct input_event)))
254 return -EFAULT;
255
256 return 0;
257}
258
259#endif /* CONFIG_COMPAT */
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500260
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400261static ssize_t evdev_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400263 struct evdev_client *client = file->private_data;
264 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 struct input_event event;
266 int retval = 0;
267
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400268 if (!evdev->exist)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500269 return -ENODEV;
270
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500271 while (retval < count) {
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500272
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500273 if (evdev_event_from_user(buffer + retval, &event))
274 return -EFAULT;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400275 input_inject_event(&evdev->handle, event.type, event.code, event.value);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500276 retval += evdev_event_size();
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500277 }
278
279 return retval;
280}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500281
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400282static ssize_t evdev_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400284 struct evdev_client *client = file->private_data;
285 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 int retval;
287
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500288 if (count < evdev_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return -EINVAL;
290
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400291 if (client->head == client->tail && evdev->exist && (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return -EAGAIN;
293
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400294 retval = wait_event_interruptible(evdev->wait,
295 client->head != client->tail || !evdev->exist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (retval)
297 return retval;
298
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400299 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return -ENODEV;
301
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400302 while (client->head != client->tail && retval + evdev_event_size() <= count) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500303
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400304 struct input_event *event = (struct input_event *) client->buffer + client->tail;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500305
306 if (evdev_event_to_user(buffer + retval, event))
307 return -EFAULT;
308
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400309 client->tail = (client->tail + 1) & (EVDEV_BUFFER_SIZE - 1);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500310 retval += evdev_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312
313 return retval;
314}
315
316/* No kernel lock - fine */
317static unsigned int evdev_poll(struct file *file, poll_table *wait)
318{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400319 struct evdev_client *client = file->private_data;
320 struct evdev *evdev = client->evdev;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400321
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400322 poll_wait(file, &evdev->wait, wait);
323 return ((client->head == client->tail) ? 0 : (POLLIN | POLLRDNORM)) |
324 (evdev->exist ? 0 : (POLLHUP | POLLERR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500327#ifdef CONFIG_COMPAT
328
329#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
330#define NBITS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
331
332#ifdef __BIG_ENDIAN
333static int bits_to_user(unsigned long *bits, unsigned int maxbit,
334 unsigned int maxlen, void __user *p, int compat)
335{
336 int len, i;
337
338 if (compat) {
339 len = NBITS_COMPAT(maxbit) * sizeof(compat_long_t);
340 if (len < maxlen)
341 len = maxlen;
342
343 for (i = 0; i < len / sizeof(compat_long_t); i++)
344 if (copy_to_user((compat_long_t __user *) p + i,
345 (compat_long_t *) bits +
346 i + 1 - ((i % 2) << 1),
347 sizeof(compat_long_t)))
348 return -EFAULT;
349 } else {
350 len = NBITS(maxbit) * sizeof(long);
351 if (len > maxlen)
352 len = maxlen;
353
354 if (copy_to_user(p, bits, len))
355 return -EFAULT;
356 }
357
358 return len;
359}
360#else
361static int bits_to_user(unsigned long *bits, unsigned int maxbit,
362 unsigned int maxlen, void __user *p, int compat)
363{
364 int len = compat ?
365 NBITS_COMPAT(maxbit) * sizeof(compat_long_t) :
366 NBITS(maxbit) * sizeof(long);
367
368 if (len > maxlen)
369 len = maxlen;
370
371 return copy_to_user(p, bits, len) ? -EFAULT : len;
372}
373#endif /* __BIG_ENDIAN */
374
375#else
376
377static int bits_to_user(unsigned long *bits, unsigned int maxbit,
378 unsigned int maxlen, void __user *p, int compat)
379{
380 int len = NBITS(maxbit) * sizeof(long);
381
382 if (len > maxlen)
383 len = maxlen;
384
385 return copy_to_user(p, bits, len) ? -EFAULT : len;
386}
387
388#endif /* CONFIG_COMPAT */
389
390static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
391{
392 int len;
393
394 if (!str)
395 return -ENOENT;
396
397 len = strlen(str) + 1;
398 if (len > maxlen)
399 len = maxlen;
400
401 return copy_to_user(p, str, len) ? -EFAULT : len;
402}
403
404static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
405 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400407 struct evdev_client *client = file->private_data;
408 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 struct input_dev *dev = evdev->handle.dev;
410 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400411 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500412 int __user *ip = (int __user *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 int i, t, u, v;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400414 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500416 if (!evdev->exist)
417 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 switch (cmd) {
420
421 case EVIOCGVERSION:
422 return put_user(EV_VERSION, ip);
423
424 case EVIOCGID:
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500425 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
426 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400427 return 0;
428
429 case EVIOCGREP:
430 if (!test_bit(EV_REP, dev->evbit))
431 return -ENOSYS;
432 if (put_user(dev->rep[REP_DELAY], ip))
433 return -EFAULT;
434 if (put_user(dev->rep[REP_PERIOD], ip + 1))
435 return -EFAULT;
436 return 0;
437
438 case EVIOCSREP:
439 if (!test_bit(EV_REP, dev->evbit))
440 return -ENOSYS;
441 if (get_user(u, ip))
442 return -EFAULT;
443 if (get_user(v, ip + 1))
444 return -EFAULT;
445
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400446 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
447 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500448
449 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 case EVIOCGKEYCODE:
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500452 if (get_user(t, ip))
453 return -EFAULT;
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400454
455 error = dev->getkeycode(dev, t, &v);
456 if (error)
457 return error;
458
459 if (put_user(v, ip + 1))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500460 return -EFAULT;
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return 0;
463
464 case EVIOCSKEYCODE:
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400465 if (get_user(t, ip) || get_user(v, ip + 1))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500466 return -EFAULT;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500467
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400468 return dev->setkeycode(dev, t, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 case EVIOCSFF:
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400471 if (copy_from_user(&effect, p, sizeof(effect)))
472 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400474 error = input_ff_upload(dev, &effect, file);
475
476 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
477 return -EFAULT;
478
479 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 case EVIOCRMFF:
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400482 return input_ff_erase(dev, (int)(unsigned long) p, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 case EVIOCGEFFECTS:
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400485 i = test_bit(EV_FF, dev->evbit) ? dev->ff->max_effects : 0;
486 if (put_user(i, ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return -EFAULT;
488 return 0;
489
490 case EVIOCGRAB:
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500491 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (evdev->grab)
493 return -EBUSY;
494 if (input_grab_device(&evdev->handle))
495 return -EBUSY;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400496 evdev->grab = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return 0;
498 } else {
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400499 if (evdev->grab != client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return -EINVAL;
501 input_release_device(&evdev->handle);
502 evdev->grab = NULL;
503 return 0;
504 }
505
506 default:
507
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500508 if (_IOC_TYPE(cmd) != 'E')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return -EINVAL;
510
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500511 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500513 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0,0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Dmitry Torokhovce305b62007-05-03 00:53:18 -0400515 unsigned long *bits;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500516 int len;
517
518 switch (_IOC_NR(cmd) & EV_MAX) {
519 case 0: bits = dev->evbit; len = EV_MAX; break;
520 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
521 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
522 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
523 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
524 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
525 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
526 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
Richard Purdie31581062005-09-06 15:19:06 -0700527 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500528 default: return -EINVAL;
529 }
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500530 return bits_to_user(bits, len, _IOC_SIZE(cmd), p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500532
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500533 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGKEY(0)))
534 return bits_to_user(dev->key, KEY_MAX, _IOC_SIZE(cmd),
535 p, compat_mode);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500536
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500537 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGLED(0)))
538 return bits_to_user(dev->led, LED_MAX, _IOC_SIZE(cmd),
539 p, compat_mode);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500540
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500541 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGSND(0)))
542 return bits_to_user(dev->snd, SND_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(EVIOCGSW(0)))
546 return bits_to_user(dev->sw, SW_MAX, _IOC_SIZE(cmd),
547 p, compat_mode);
Richard Purdie31581062005-09-06 15:19:06 -0700548
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500549 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGNAME(0)))
550 return str_to_user(dev->name, _IOC_SIZE(cmd), p);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500551
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500552 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGPHYS(0)))
553 return str_to_user(dev->phys, _IOC_SIZE(cmd), p);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500554
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500555 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGUNIQ(0)))
556 return str_to_user(dev->uniq, _IOC_SIZE(cmd), p);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500557
558 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
559
Dmitry Torokhovce305b62007-05-03 00:53:18 -0400560 t = _IOC_NR(cmd) & ABS_MAX;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500561
562 abs.value = dev->abs[t];
563 abs.minimum = dev->absmin[t];
564 abs.maximum = dev->absmax[t];
565 abs.fuzz = dev->absfuzz[t];
566 abs.flat = dev->absflat[t];
567
568 if (copy_to_user(p, &abs, sizeof(struct input_absinfo)))
569 return -EFAULT;
570
571 return 0;
572 }
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
575
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500576 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500578 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Dmitry Torokhovce305b62007-05-03 00:53:18 -0400580 t = _IOC_NR(cmd) & ABS_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500582 if (copy_from_user(&abs, p, sizeof(struct input_absinfo)))
583 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500585 dev->abs[t] = abs.value;
586 dev->absmin[t] = abs.minimum;
587 dev->absmax[t] = abs.maximum;
588 dev->absfuzz[t] = abs.fuzz;
589 dev->absflat[t] = abs.flat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500591 return 0;
592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594 }
595 return -EINVAL;
596}
597
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500598static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
599{
600 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
601}
602
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500603#ifdef CONFIG_COMPAT
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500604static long evdev_ioctl_compat(struct file *file, unsigned int cmd, unsigned long arg)
605{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500606 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500607}
608#endif
609
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400610static const struct file_operations evdev_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 .owner = THIS_MODULE,
612 .read = evdev_read,
613 .write = evdev_write,
614 .poll = evdev_poll,
615 .open = evdev_open,
616 .release = evdev_release,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500617 .unlocked_ioctl = evdev_ioctl,
618#ifdef CONFIG_COMPAT
619 .compat_ioctl = evdev_ioctl_compat,
620#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 .fasync = evdev_fasync,
622 .flush = evdev_flush
623};
624
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400625static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
626 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 struct evdev *evdev;
Greg Kroah-Hartmanc9bcd582005-10-27 22:25:43 -0700629 struct class_device *cdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400630 dev_t devt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400632 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 for (minor = 0; minor < EVDEV_MINORS && evdev_table[minor]; minor++);
635 if (minor == EVDEV_MINORS) {
636 printk(KERN_ERR "evdev: no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400637 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400640 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
641 if (!evdev)
642 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400644 INIT_LIST_HEAD(&evdev->client_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 init_waitqueue_head(&evdev->wait);
646
647 evdev->exist = 1;
648 evdev->minor = minor;
649 evdev->handle.dev = dev;
650 evdev->handle.name = evdev->name;
651 evdev->handle.handler = handler;
652 evdev->handle.private = evdev;
653 sprintf(evdev->name, "event%d", minor);
654
655 evdev_table[minor] = evdev;
656
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400657 devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor),
658
659 cdev = class_device_create(&input_class, &dev->cdev, devt,
660 dev->cdev.dev, evdev->name);
661 if (IS_ERR(cdev)) {
662 error = PTR_ERR(cdev);
663 goto err_free_evdev;
664 }
Greg Kroah-Hartmanc9bcd582005-10-27 22:25:43 -0700665
666 /* temporary symlink to keep userspace happy */
Linus Torvaldsa3d52132007-05-04 18:13:17 -0700667 error = sysfs_create_link(&input_class.subsys.kobj,
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400668 &cdev->kobj, evdev->name);
669 if (error)
670 goto err_cdev_destroy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400672 error = input_register_handle(&evdev->handle);
673 if (error)
674 goto err_remove_link;
675
676 return 0;
677
678 err_remove_link:
Linus Torvaldsa3d52132007-05-04 18:13:17 -0700679 sysfs_remove_link(&input_class.subsys.kobj, evdev->name);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400680 err_cdev_destroy:
681 class_device_destroy(&input_class, devt);
682 err_free_evdev:
683 kfree(evdev);
684 evdev_table[minor] = NULL;
685 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);
694
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700695 sysfs_remove_link(&input_class.subsys.kobj, evdev->name);
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -0700696 class_device_destroy(&input_class,
gregkh@suse.de12356862005-03-15 14:26:30 -0800697 MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + evdev->minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 evdev->exist = 0;
699
700 if (evdev->open) {
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400701 input_flush_device(handle, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 input_close_device(handle);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400703 list_for_each_entry(client, &evdev->client_list, node)
704 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
Dmitry Torokhov1dfa2812007-06-03 23:29:36 -0400705 wake_up_interruptible(&evdev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 } else
707 evdev_free(evdev);
708}
709
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400710static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 { .driver_info = 1 }, /* Matches all devices */
712 { }, /* Terminating zero entry */
713};
714
715MODULE_DEVICE_TABLE(input, evdev_ids);
716
717static struct input_handler evdev_handler = {
718 .event = evdev_event,
719 .connect = evdev_connect,
720 .disconnect = evdev_disconnect,
721 .fops = &evdev_fops,
722 .minor = EVDEV_MINOR_BASE,
723 .name = "evdev",
724 .id_table = evdev_ids,
725};
726
727static int __init evdev_init(void)
728{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400729 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
732static void __exit evdev_exit(void)
733{
734 input_unregister_handler(&evdev_handler);
735}
736
737module_init(evdev_init);
738module_exit(evdev_exit);
739
740MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
741MODULE_DESCRIPTION("Input driver event char devices");
742MODULE_LICENSE("GPL");