blob: 4702ade804ac9ef5c73876a5e2acbc4e648e8797 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * User level driver support for input subsystem
3 *
4 * Heavily based on evdev.c by Vojtech Pavlik
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 * Author: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
21 *
22 * Changes/Revisions:
23 * 0.2 16/10/2004 (Micah Dowty <micah@navi.cx>)
24 * - added force feedback support
25 * - added UI_SET_PHYS
26 * 0.1 20/06/2002
27 * - first public version
28 */
29#include <linux/poll.h>
30#include <linux/slab.h>
31#include <linux/module.h>
32#include <linux/init.h>
33#include <linux/input.h>
34#include <linux/smp_lock.h>
35#include <linux/fs.h>
36#include <linux/miscdevice.h>
37#include <linux/uinput.h>
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039static int uinput_dev_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
40{
41 struct uinput_device *udev;
42
43 udev = dev->private;
44
45 udev->buff[udev->head].type = type;
46 udev->buff[udev->head].code = code;
47 udev->buff[udev->head].value = value;
48 do_gettimeofday(&udev->buff[udev->head].time);
49 udev->head = (udev->head + 1) % UINPUT_BUFFER_SIZE;
50
51 wake_up_interruptible(&udev->waitq);
52
53 return 0;
54}
55
Dmitry Torokhov0048e602005-06-30 00:48:14 -050056static int uinput_request_alloc_id(struct uinput_device *udev, struct uinput_request *request)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
58 /* Atomically allocate an ID for the given request. Returns 0 on success. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 int id;
Dmitry Torokhov152c12f2005-06-30 00:47:50 -050060 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Dmitry Torokhov0048e602005-06-30 00:48:14 -050062 spin_lock(&udev->requests_lock);
Dmitry Torokhov152c12f2005-06-30 00:47:50 -050063
64 for (id = 0; id < UINPUT_NUM_REQUESTS; id++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 if (!udev->requests[id]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 request->id = id;
Dmitry Torokhov0048e602005-06-30 00:48:14 -050067 udev->requests[id] = request;
Dmitry Torokhov152c12f2005-06-30 00:47:50 -050068 err = 0;
69 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
Dmitry Torokhov152c12f2005-06-30 00:47:50 -050071
Dmitry Torokhov0048e602005-06-30 00:48:14 -050072 spin_unlock(&udev->requests_lock);
Dmitry Torokhov152c12f2005-06-30 00:47:50 -050073 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
76static struct uinput_request* uinput_request_find(struct uinput_device *udev, int id)
77{
78 /* Find an input request, by ID. Returns NULL if the ID isn't valid. */
79 if (id >= UINPUT_NUM_REQUESTS || id < 0)
80 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return udev->requests[id];
82}
83
Dmitry Torokhov0048e602005-06-30 00:48:14 -050084static inline int uinput_request_reserve_slot(struct uinput_device *udev, struct uinput_request *request)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Dmitry Torokhov0048e602005-06-30 00:48:14 -050086 /* Allocate slot. If none are available right away, wait. */
87 return wait_event_interruptible(udev->requests_waitq,
88 !uinput_request_alloc_id(udev, request));
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
Dmitry Torokhov0048e602005-06-30 00:48:14 -050091static void uinput_request_done(struct uinput_device *udev, struct uinput_request *request)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Dmitry Torokhov0048e602005-06-30 00:48:14 -050093 /* Mark slot as available */
94 udev->requests[request->id] = NULL;
95 wake_up_interruptible(&udev->requests_waitq);
Dmitry Torokhove7507ed2005-10-17 16:43:32 -070096
97 complete(&request->done);
Dmitry Torokhov0048e602005-06-30 00:48:14 -050098}
99
100static int uinput_request_submit(struct input_dev *dev, struct uinput_request *request)
101{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 int retval;
103
104 /* Tell our userspace app about this new request by queueing an input event */
105 uinput_dev_event(dev, EV_UINPUT, request->code, request->id);
106
107 /* Wait for the request to complete */
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500108 retval = wait_for_completion_interruptible(&request->done);
109 if (!retval)
110 retval = request->retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500112 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115static int uinput_dev_upload_effect(struct input_dev *dev, struct ff_effect *effect)
116{
117 struct uinput_request request;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500118 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 if (!test_bit(EV_FF, dev->evbit))
121 return -ENOSYS;
122
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500123 request.id = -1;
124 init_completion(&request.done);
125 request.code = UI_FF_UPLOAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 request.u.effect = effect;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500127
128 retval = uinput_request_reserve_slot(dev->private, &request);
129 if (!retval)
130 retval = uinput_request_submit(dev, &request);
131
132 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135static int uinput_dev_erase_effect(struct input_dev *dev, int effect_id)
136{
137 struct uinput_request request;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500138 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 if (!test_bit(EV_FF, dev->evbit))
141 return -ENOSYS;
142
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500143 request.id = -1;
144 init_completion(&request.done);
145 request.code = UI_FF_ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 request.u.effect_id = effect_id;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500147
148 retval = uinput_request_reserve_slot(dev->private, &request);
149 if (!retval)
150 retval = uinput_request_submit(dev, &request);
151
152 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Dmitry Torokhov29506412005-11-20 00:51:22 -0500155static void uinput_destroy_device(struct uinput_device *udev)
156{
157 const char *name, *phys;
158
159 if (udev->dev) {
160 name = udev->dev->name;
161 phys = udev->dev->phys;
162 if (udev->state == UIST_CREATED)
163 input_unregister_device(udev->dev);
164 else
165 input_free_device(udev->dev);
166 kfree(name);
167 kfree(phys);
168 udev->dev = NULL;
169 }
170
171 udev->state = UIST_NEW_DEVICE;
172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174static int uinput_create_device(struct uinput_device *udev)
175{
Dmitry Torokhov29506412005-11-20 00:51:22 -0500176 int error;
177
178 if (udev->state != UIST_SETUP_COMPLETE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 printk(KERN_DEBUG "%s: write device info first\n", UINPUT_NAME);
180 return -EINVAL;
181 }
182
Dmitry Torokhov29506412005-11-20 00:51:22 -0500183 error = input_register_device(udev->dev);
184 if (error) {
185 uinput_destroy_device(udev);
186 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188
Dmitry Torokhov29506412005-11-20 00:51:22 -0500189 udev->state = UIST_CREATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 return 0;
192}
193
194static int uinput_open(struct inode *inode, struct file *file)
195{
Dmitry Torokhov29506412005-11-20 00:51:22 -0500196 struct uinput_device *newdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Dmitry Torokhov29506412005-11-20 00:51:22 -0500198 newdev = kzalloc(sizeof(struct uinput_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (!newdev)
Dmitry Torokhov29506412005-11-20 00:51:22 -0500200 return -ENOMEM;
201
202 init_MUTEX(&newdev->sem);
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500203 spin_lock_init(&newdev->requests_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 init_waitqueue_head(&newdev->requests_waitq);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500205 init_waitqueue_head(&newdev->waitq);
206 newdev->state = UIST_NEW_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 file->private_data = newdev;
209
210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213static int uinput_validate_absbits(struct input_dev *dev)
214{
215 unsigned int cnt;
216 int retval = 0;
217
218 for (cnt = 0; cnt < ABS_MAX + 1; cnt++) {
219 if (!test_bit(cnt, dev->absbit))
220 continue;
221
222 if ((dev->absmax[cnt] <= dev->absmin[cnt])) {
223 printk(KERN_DEBUG
224 "%s: invalid abs[%02x] min:%d max:%d\n",
225 UINPUT_NAME, cnt,
226 dev->absmin[cnt], dev->absmax[cnt]);
227 retval = -EINVAL;
228 break;
229 }
230
231 if (dev->absflat[cnt] > (dev->absmax[cnt] - dev->absmin[cnt])) {
232 printk(KERN_DEBUG
233 "%s: absflat[%02x] out of range: %d "
234 "(min:%d/max:%d)\n",
235 UINPUT_NAME, cnt, dev->absflat[cnt],
236 dev->absmin[cnt], dev->absmax[cnt]);
237 retval = -EINVAL;
238 break;
239 }
240 }
241 return retval;
242}
243
Dmitry Torokhov29506412005-11-20 00:51:22 -0500244static int uinput_allocate_device(struct uinput_device *udev)
245{
246 udev->dev = input_allocate_device();
247 if (!udev->dev)
248 return -ENOMEM;
249
250 udev->dev->event = uinput_dev_event;
251 udev->dev->upload_effect = uinput_dev_upload_effect;
252 udev->dev->erase_effect = uinput_dev_erase_effect;
253 udev->dev->private = udev;
254
255 return 0;
256}
257
258static int uinput_setup_device(struct uinput_device *udev, const char __user *buffer, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 struct uinput_user_dev *user_dev;
261 struct input_dev *dev;
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500262 char *name;
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500263 int size;
264 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Dmitry Torokhov29506412005-11-20 00:51:22 -0500266 if (count != sizeof(struct uinput_user_dev))
267 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Dmitry Torokhov29506412005-11-20 00:51:22 -0500269 if (!udev->dev) {
270 retval = uinput_allocate_device(udev);
271 if (retval)
272 return retval;
273 }
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 dev = udev->dev;
276
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500277 user_dev = kmalloc(sizeof(struct uinput_user_dev), GFP_KERNEL);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500278 if (!user_dev)
279 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 if (copy_from_user(user_dev, buffer, sizeof(struct uinput_user_dev))) {
282 retval = -EFAULT;
283 goto exit;
284 }
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 size = strnlen(user_dev->name, UINPUT_MAX_NAME_SIZE) + 1;
Dmitry Torokhov29506412005-11-20 00:51:22 -0500287 if (!size) {
288 retval = -EINVAL;
289 goto exit;
290 }
291
292 kfree(dev->name);
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500293 dev->name = name = kmalloc(size, GFP_KERNEL);
294 if (!name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 retval = -ENOMEM;
296 goto exit;
297 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500298 strlcpy(name, user_dev->name, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 dev->id.bustype = user_dev->id.bustype;
301 dev->id.vendor = user_dev->id.vendor;
302 dev->id.product = user_dev->id.product;
303 dev->id.version = user_dev->id.version;
304 dev->ff_effects_max = user_dev->ff_effects_max;
305
306 size = sizeof(int) * (ABS_MAX + 1);
307 memcpy(dev->absmax, user_dev->absmax, size);
308 memcpy(dev->absmin, user_dev->absmin, size);
309 memcpy(dev->absfuzz, user_dev->absfuzz, size);
310 memcpy(dev->absflat, user_dev->absflat, size);
311
312 /* check if absmin/absmax/absfuzz/absflat are filled as
313 * told in Documentation/input/input-programming.txt */
314 if (test_bit(EV_ABS, dev->evbit)) {
Dmitry Torokhov29506412005-11-20 00:51:22 -0500315 retval = uinput_validate_absbits(dev);
316 if (retval < 0)
317 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319
Dmitry Torokhov29506412005-11-20 00:51:22 -0500320 udev->state = UIST_SETUP_COMPLETE;
321 retval = count;
322
323 exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 kfree(user_dev);
325 return retval;
326}
327
Dmitry Torokhov29506412005-11-20 00:51:22 -0500328static inline ssize_t uinput_inject_event(struct uinput_device *udev, const char __user *buffer, size_t count)
329{
330 struct input_event ev;
331
332 if (count != sizeof(struct input_event))
333 return -EINVAL;
334
335 if (copy_from_user(&ev, buffer, sizeof(struct input_event)))
336 return -EFAULT;
337
338 input_event(udev->dev, ev.type, ev.code, ev.value);
339
340 return sizeof(struct input_event);
341}
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343static ssize_t uinput_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
344{
345 struct uinput_device *udev = file->private_data;
Dmitry Torokhov29506412005-11-20 00:51:22 -0500346 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Dmitry Torokhov29506412005-11-20 00:51:22 -0500348 retval = down_interruptible(&udev->sem);
349 if (retval)
350 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Dmitry Torokhov29506412005-11-20 00:51:22 -0500352 retval = udev->state == UIST_CREATED ?
353 uinput_inject_event(udev, buffer, count) :
354 uinput_setup_device(udev, buffer, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Dmitry Torokhov29506412005-11-20 00:51:22 -0500356 up(&udev->sem);
357
358 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
361static ssize_t uinput_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
362{
363 struct uinput_device *udev = file->private_data;
364 int retval = 0;
365
Dmitry Torokhov29506412005-11-20 00:51:22 -0500366 if (udev->state != UIST_CREATED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return -ENODEV;
368
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500369 if (udev->head == udev->tail && (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return -EAGAIN;
371
372 retval = wait_event_interruptible(udev->waitq,
Dmitry Torokhov29506412005-11-20 00:51:22 -0500373 udev->head != udev->tail || udev->state != UIST_CREATED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (retval)
375 return retval;
376
Dmitry Torokhov29506412005-11-20 00:51:22 -0500377 retval = down_interruptible(&udev->sem);
378 if (retval)
379 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Dmitry Torokhov29506412005-11-20 00:51:22 -0500381 if (udev->state != UIST_CREATED) {
382 retval = -ENODEV;
383 goto out;
384 }
385
386 while (udev->head != udev->tail && retval + sizeof(struct input_event) <= count) {
387 if (copy_to_user(buffer + retval, &udev->buff[udev->tail], sizeof(struct input_event))) {
388 retval = -EFAULT;
389 goto out;
390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 udev->tail = (udev->tail + 1) % UINPUT_BUFFER_SIZE;
392 retval += sizeof(struct input_event);
393 }
394
Dmitry Torokhov29506412005-11-20 00:51:22 -0500395 out:
396 up(&udev->sem);
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return retval;
399}
400
401static unsigned int uinput_poll(struct file *file, poll_table *wait)
402{
403 struct uinput_device *udev = file->private_data;
404
405 poll_wait(file, &udev->waitq, wait);
406
407 if (udev->head != udev->tail)
408 return POLLIN | POLLRDNORM;
409
410 return 0;
411}
412
Dmitry Torokhov29506412005-11-20 00:51:22 -0500413static int uinput_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Dmitry Torokhov29506412005-11-20 00:51:22 -0500415 struct uinput_device *udev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Dmitry Torokhov29506412005-11-20 00:51:22 -0500417 uinput_destroy_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 kfree(udev);
419
420 return 0;
421}
422
Dmitry Torokhov29506412005-11-20 00:51:22 -0500423#define uinput_set_bit(_arg, _bit, _max) \
424({ \
425 int __ret = 0; \
426 if (udev->state == UIST_CREATED) \
427 __ret = -EINVAL; \
428 else if ((_arg) > (_max)) \
429 __ret = -EINVAL; \
430 else set_bit((_arg), udev->dev->_bit); \
431 __ret; \
432})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Dmitry Torokhov29506412005-11-20 00:51:22 -0500434static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Dmitry Torokhov29506412005-11-20 00:51:22 -0500436 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 struct uinput_device *udev;
438 void __user *p = (void __user *)arg;
439 struct uinput_ff_upload ff_up;
440 struct uinput_ff_erase ff_erase;
441 struct uinput_request *req;
442 int length;
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500443 char *phys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 udev = file->private_data;
446
Dmitry Torokhov29506412005-11-20 00:51:22 -0500447 retval = down_interruptible(&udev->sem);
448 if (retval)
449 return retval;
450
451 if (!udev->dev) {
452 retval = uinput_allocate_device(udev);
453 if (retval)
454 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456
457 switch (cmd) {
458 case UI_DEV_CREATE:
459 retval = uinput_create_device(udev);
460 break;
461
462 case UI_DEV_DESTROY:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500463 uinput_destroy_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 break;
465
466 case UI_SET_EVBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500467 retval = uinput_set_bit(arg, evbit, EV_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 break;
469
470 case UI_SET_KEYBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500471 retval = uinput_set_bit(arg, keybit, KEY_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
473
474 case UI_SET_RELBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500475 retval = uinput_set_bit(arg, relbit, REL_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 break;
477
478 case UI_SET_ABSBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500479 retval = uinput_set_bit(arg, absbit, ABS_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 break;
481
482 case UI_SET_MSCBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500483 retval = uinput_set_bit(arg, mscbit, MSC_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 break;
485
486 case UI_SET_LEDBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500487 retval = uinput_set_bit(arg, ledbit, LED_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 break;
489
490 case UI_SET_SNDBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500491 retval = uinput_set_bit(arg, sndbit, SND_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 break;
493
494 case UI_SET_FFBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500495 retval = uinput_set_bit(arg, ffbit, FF_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 break;
497
Dmitry Torokhov59c7c032005-11-20 00:51:33 -0500498 case UI_SET_SWBIT:
499 retval = uinput_set_bit(arg, swbit, SW_MAX);
500 break;
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 case UI_SET_PHYS:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500503 if (udev->state == UIST_CREATED) {
504 retval = -EINVAL;
505 goto out;
506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 length = strnlen_user(p, 1024);
508 if (length <= 0) {
509 retval = -EFAULT;
510 break;
511 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500512 kfree(udev->dev->phys);
513 udev->dev->phys = phys = kmalloc(length, GFP_KERNEL);
514 if (!phys) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 retval = -ENOMEM;
516 break;
517 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500518 if (copy_from_user(phys, p, length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 udev->dev->phys = NULL;
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500520 kfree(phys);
521 retval = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 break;
523 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500524 phys[length - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
526
527 case UI_BEGIN_FF_UPLOAD:
528 if (copy_from_user(&ff_up, p, sizeof(ff_up))) {
529 retval = -EFAULT;
530 break;
531 }
532 req = uinput_request_find(udev, ff_up.request_id);
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500533 if (!(req && req->code == UI_FF_UPLOAD && req->u.effect)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 retval = -EINVAL;
535 break;
536 }
537 ff_up.retval = 0;
538 memcpy(&ff_up.effect, req->u.effect, sizeof(struct ff_effect));
539 if (copy_to_user(p, &ff_up, sizeof(ff_up))) {
540 retval = -EFAULT;
541 break;
542 }
543 break;
544
545 case UI_BEGIN_FF_ERASE:
546 if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
547 retval = -EFAULT;
548 break;
549 }
550 req = uinput_request_find(udev, ff_erase.request_id);
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500551 if (!(req && req->code == UI_FF_ERASE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 retval = -EINVAL;
553 break;
554 }
555 ff_erase.retval = 0;
556 ff_erase.effect_id = req->u.effect_id;
557 if (copy_to_user(p, &ff_erase, sizeof(ff_erase))) {
558 retval = -EFAULT;
559 break;
560 }
561 break;
562
563 case UI_END_FF_UPLOAD:
564 if (copy_from_user(&ff_up, p, sizeof(ff_up))) {
565 retval = -EFAULT;
566 break;
567 }
568 req = uinput_request_find(udev, ff_up.request_id);
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500569 if (!(req && req->code == UI_FF_UPLOAD && req->u.effect)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 retval = -EINVAL;
571 break;
572 }
573 req->retval = ff_up.retval;
574 memcpy(req->u.effect, &ff_up.effect, sizeof(struct ff_effect));
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500575 uinput_request_done(udev, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 break;
577
578 case UI_END_FF_ERASE:
579 if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
580 retval = -EFAULT;
581 break;
582 }
583 req = uinput_request_find(udev, ff_erase.request_id);
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500584 if (!(req && req->code == UI_FF_ERASE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 retval = -EINVAL;
586 break;
587 }
588 req->retval = ff_erase.retval;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500589 uinput_request_done(udev, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 break;
591
592 default:
593 retval = -EINVAL;
594 }
Dmitry Torokhov29506412005-11-20 00:51:22 -0500595
596 out:
597 up(&udev->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return retval;
599}
600
601static struct file_operations uinput_fops = {
Dmitry Torokhov29506412005-11-20 00:51:22 -0500602 .owner = THIS_MODULE,
603 .open = uinput_open,
604 .release = uinput_release,
605 .read = uinput_read,
606 .write = uinput_write,
607 .poll = uinput_poll,
608 .unlocked_ioctl = uinput_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609};
610
611static struct miscdevice uinput_misc = {
Dmitry Torokhov29506412005-11-20 00:51:22 -0500612 .fops = &uinput_fops,
613 .minor = UINPUT_MINOR,
614 .name = UINPUT_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615};
616
617static int __init uinput_init(void)
618{
619 return misc_register(&uinput_misc);
620}
621
622static void __exit uinput_exit(void)
623{
624 misc_deregister(&uinput_misc);
625}
626
627MODULE_AUTHOR("Aristeu Sergio Rozanski Filho");
628MODULE_DESCRIPTION("User level driver support for input subsystem");
629MODULE_LICENSE("GPL");
630
631module_init(uinput_init);
632module_exit(uinput_exit);
633