blob: 223d56d5555b345e9068e9d7957e8843f980c032 [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:
Anssi Hannulaff462552006-07-19 01:41:09 -040023 * 0.3 09/04/2006 (Anssi Hannula <anssi.hannula@gmail.com>)
24 * - updated ff support for the changes in kernel interface
25 * - added MODULE_VERSION
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * 0.2 16/10/2004 (Micah Dowty <micah@navi.cx>)
27 * - added force feedback support
28 * - added UI_SET_PHYS
29 * 0.1 20/06/2002
30 * - first public version
31 */
32#include <linux/poll.h>
33#include <linux/slab.h>
34#include <linux/module.h>
35#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/smp_lock.h>
37#include <linux/fs.h>
38#include <linux/miscdevice.h>
39#include <linux/uinput.h>
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static int uinput_dev_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
42{
Dmitry Torokhov373f9712007-04-12 01:34:33 -040043 struct uinput_device *udev = input_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
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;
Dmitry Torokhove597f0c82005-11-20 00:51:43 -050095 wake_up(&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 /* Tell our userspace app about this new request by queueing an input event */
103 uinput_dev_event(dev, EV_UINPUT, request->code, request->id);
104
105 /* Wait for the request to complete */
Dmitry Torokhove597f0c82005-11-20 00:51:43 -0500106 wait_for_completion(&request->done);
107 return request->retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Anssi Hannulaff462552006-07-19 01:41:09 -0400110static void uinput_dev_set_gain(struct input_dev *dev, u16 gain)
111{
112 uinput_dev_event(dev, EV_FF, FF_GAIN, gain);
113}
114
115static void uinput_dev_set_autocenter(struct input_dev *dev, u16 magnitude)
116{
117 uinput_dev_event(dev, EV_FF, FF_AUTOCENTER, magnitude);
118}
119
120static int uinput_dev_playback(struct input_dev *dev, int effect_id, int value)
121{
122 return uinput_dev_event(dev, EV_FF, effect_id, value);
123}
124
125static int uinput_dev_upload_effect(struct input_dev *dev, struct ff_effect *effect, struct ff_effect *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 struct uinput_request request;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500128 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500130 request.id = -1;
131 init_completion(&request.done);
132 request.code = UI_FF_UPLOAD;
Anssi Hannulaff462552006-07-19 01:41:09 -0400133 request.u.upload.effect = effect;
134 request.u.upload.old = old;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500135
Dmitry Torokhov373f9712007-04-12 01:34:33 -0400136 retval = uinput_request_reserve_slot(input_get_drvdata(dev), &request);
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500137 if (!retval)
138 retval = uinput_request_submit(dev, &request);
139
140 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143static int uinput_dev_erase_effect(struct input_dev *dev, int effect_id)
144{
145 struct uinput_request request;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500146 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 if (!test_bit(EV_FF, dev->evbit))
149 return -ENOSYS;
150
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500151 request.id = -1;
152 init_completion(&request.done);
153 request.code = UI_FF_ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 request.u.effect_id = effect_id;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500155
Dmitry Torokhov373f9712007-04-12 01:34:33 -0400156 retval = uinput_request_reserve_slot(input_get_drvdata(dev), &request);
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500157 if (!retval)
158 retval = uinput_request_submit(dev, &request);
159
160 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Dmitry Torokhov29506412005-11-20 00:51:22 -0500163static void uinput_destroy_device(struct uinput_device *udev)
164{
165 const char *name, *phys;
166
167 if (udev->dev) {
168 name = udev->dev->name;
169 phys = udev->dev->phys;
170 if (udev->state == UIST_CREATED)
171 input_unregister_device(udev->dev);
172 else
173 input_free_device(udev->dev);
174 kfree(name);
175 kfree(phys);
176 udev->dev = NULL;
177 }
178
179 udev->state = UIST_NEW_DEVICE;
180}
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182static int uinput_create_device(struct uinput_device *udev)
183{
Anssi Hannulaff462552006-07-19 01:41:09 -0400184 struct input_dev *dev = udev->dev;
Dmitry Torokhov29506412005-11-20 00:51:22 -0500185 int error;
186
187 if (udev->state != UIST_SETUP_COMPLETE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 printk(KERN_DEBUG "%s: write device info first\n", UINPUT_NAME);
189 return -EINVAL;
190 }
191
Anssi Hannulaff462552006-07-19 01:41:09 -0400192 if (udev->ff_effects_max) {
193 error = input_ff_create(dev, udev->ff_effects_max);
194 if (error)
195 goto fail1;
196
197 dev->ff->upload = uinput_dev_upload_effect;
198 dev->ff->erase = uinput_dev_erase_effect;
199 dev->ff->playback = uinput_dev_playback;
200 dev->ff->set_gain = uinput_dev_set_gain;
201 dev->ff->set_autocenter = uinput_dev_set_autocenter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
Anssi Hannulaff462552006-07-19 01:41:09 -0400204 error = input_register_device(udev->dev);
205 if (error)
206 goto fail2;
207
Dmitry Torokhov29506412005-11-20 00:51:22 -0500208 udev->state = UIST_CREATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 return 0;
Anssi Hannulaff462552006-07-19 01:41:09 -0400211
212 fail2: input_ff_destroy(dev);
213 fail1: uinput_destroy_device(udev);
214 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217static int uinput_open(struct inode *inode, struct file *file)
218{
Dmitry Torokhov29506412005-11-20 00:51:22 -0500219 struct uinput_device *newdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Dmitry Torokhov29506412005-11-20 00:51:22 -0500221 newdev = kzalloc(sizeof(struct uinput_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (!newdev)
Dmitry Torokhov29506412005-11-20 00:51:22 -0500223 return -ENOMEM;
224
Arnd Bergmann87029652008-05-20 19:16:53 +0200225 lock_kernel();
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500226 mutex_init(&newdev->mutex);
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500227 spin_lock_init(&newdev->requests_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 init_waitqueue_head(&newdev->requests_waitq);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500229 init_waitqueue_head(&newdev->waitq);
230 newdev->state = UIST_NEW_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 file->private_data = newdev;
Arnd Bergmann87029652008-05-20 19:16:53 +0200233 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238static int uinput_validate_absbits(struct input_dev *dev)
239{
240 unsigned int cnt;
241 int retval = 0;
242
243 for (cnt = 0; cnt < ABS_MAX + 1; cnt++) {
244 if (!test_bit(cnt, dev->absbit))
245 continue;
246
247 if ((dev->absmax[cnt] <= dev->absmin[cnt])) {
248 printk(KERN_DEBUG
249 "%s: invalid abs[%02x] min:%d max:%d\n",
250 UINPUT_NAME, cnt,
251 dev->absmin[cnt], dev->absmax[cnt]);
252 retval = -EINVAL;
253 break;
254 }
255
256 if (dev->absflat[cnt] > (dev->absmax[cnt] - dev->absmin[cnt])) {
257 printk(KERN_DEBUG
258 "%s: absflat[%02x] out of range: %d "
259 "(min:%d/max:%d)\n",
260 UINPUT_NAME, cnt, dev->absflat[cnt],
261 dev->absmin[cnt], dev->absmax[cnt]);
262 retval = -EINVAL;
263 break;
264 }
265 }
266 return retval;
267}
268
Dmitry Torokhov29506412005-11-20 00:51:22 -0500269static int uinput_allocate_device(struct uinput_device *udev)
270{
271 udev->dev = input_allocate_device();
272 if (!udev->dev)
273 return -ENOMEM;
274
275 udev->dev->event = uinput_dev_event;
Dmitry Torokhov373f9712007-04-12 01:34:33 -0400276 input_set_drvdata(udev->dev, udev);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500277
278 return 0;
279}
280
281static int uinput_setup_device(struct uinput_device *udev, const char __user *buffer, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 struct uinput_user_dev *user_dev;
284 struct input_dev *dev;
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500285 char *name;
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500286 int size;
287 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Dmitry Torokhov29506412005-11-20 00:51:22 -0500289 if (count != sizeof(struct uinput_user_dev))
290 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Dmitry Torokhov29506412005-11-20 00:51:22 -0500292 if (!udev->dev) {
293 retval = uinput_allocate_device(udev);
294 if (retval)
295 return retval;
296 }
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 dev = udev->dev;
299
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500300 user_dev = kmalloc(sizeof(struct uinput_user_dev), GFP_KERNEL);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500301 if (!user_dev)
302 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 if (copy_from_user(user_dev, buffer, sizeof(struct uinput_user_dev))) {
305 retval = -EFAULT;
306 goto exit;
307 }
308
Anssi Hannulaff462552006-07-19 01:41:09 -0400309 udev->ff_effects_max = user_dev->ff_effects_max;
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 size = strnlen(user_dev->name, UINPUT_MAX_NAME_SIZE) + 1;
Dmitry Torokhov29506412005-11-20 00:51:22 -0500312 if (!size) {
313 retval = -EINVAL;
314 goto exit;
315 }
316
317 kfree(dev->name);
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500318 dev->name = name = kmalloc(size, GFP_KERNEL);
319 if (!name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 retval = -ENOMEM;
321 goto exit;
322 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500323 strlcpy(name, user_dev->name, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 dev->id.bustype = user_dev->id.bustype;
326 dev->id.vendor = user_dev->id.vendor;
327 dev->id.product = user_dev->id.product;
328 dev->id.version = user_dev->id.version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 size = sizeof(int) * (ABS_MAX + 1);
331 memcpy(dev->absmax, user_dev->absmax, size);
332 memcpy(dev->absmin, user_dev->absmin, size);
333 memcpy(dev->absfuzz, user_dev->absfuzz, size);
334 memcpy(dev->absflat, user_dev->absflat, size);
335
336 /* check if absmin/absmax/absfuzz/absflat are filled as
337 * told in Documentation/input/input-programming.txt */
338 if (test_bit(EV_ABS, dev->evbit)) {
Dmitry Torokhov29506412005-11-20 00:51:22 -0500339 retval = uinput_validate_absbits(dev);
340 if (retval < 0)
341 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
Dmitry Torokhov29506412005-11-20 00:51:22 -0500344 udev->state = UIST_SETUP_COMPLETE;
345 retval = count;
346
347 exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 kfree(user_dev);
349 return retval;
350}
351
Dmitry Torokhov29506412005-11-20 00:51:22 -0500352static inline ssize_t uinput_inject_event(struct uinput_device *udev, const char __user *buffer, size_t count)
353{
354 struct input_event ev;
355
356 if (count != sizeof(struct input_event))
357 return -EINVAL;
358
359 if (copy_from_user(&ev, buffer, sizeof(struct input_event)))
360 return -EFAULT;
361
362 input_event(udev->dev, ev.type, ev.code, ev.value);
363
364 return sizeof(struct input_event);
365}
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367static ssize_t uinput_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
368{
369 struct uinput_device *udev = file->private_data;
Dmitry Torokhov29506412005-11-20 00:51:22 -0500370 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500372 retval = mutex_lock_interruptible(&udev->mutex);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500373 if (retval)
374 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Dmitry Torokhov29506412005-11-20 00:51:22 -0500376 retval = udev->state == UIST_CREATED ?
377 uinput_inject_event(udev, buffer, count) :
378 uinput_setup_device(udev, buffer, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500380 mutex_unlock(&udev->mutex);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500381
382 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385static ssize_t uinput_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
386{
387 struct uinput_device *udev = file->private_data;
388 int retval = 0;
389
Dmitry Torokhov29506412005-11-20 00:51:22 -0500390 if (udev->state != UIST_CREATED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return -ENODEV;
392
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500393 if (udev->head == udev->tail && (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return -EAGAIN;
395
396 retval = wait_event_interruptible(udev->waitq,
Dmitry Torokhov29506412005-11-20 00:51:22 -0500397 udev->head != udev->tail || udev->state != UIST_CREATED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (retval)
399 return retval;
400
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500401 retval = mutex_lock_interruptible(&udev->mutex);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500402 if (retval)
403 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Dmitry Torokhov29506412005-11-20 00:51:22 -0500405 if (udev->state != UIST_CREATED) {
406 retval = -ENODEV;
407 goto out;
408 }
409
410 while (udev->head != udev->tail && retval + sizeof(struct input_event) <= count) {
411 if (copy_to_user(buffer + retval, &udev->buff[udev->tail], sizeof(struct input_event))) {
412 retval = -EFAULT;
413 goto out;
414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 udev->tail = (udev->tail + 1) % UINPUT_BUFFER_SIZE;
416 retval += sizeof(struct input_event);
417 }
418
Dmitry Torokhov29506412005-11-20 00:51:22 -0500419 out:
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500420 mutex_unlock(&udev->mutex);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return retval;
423}
424
425static unsigned int uinput_poll(struct file *file, poll_table *wait)
426{
427 struct uinput_device *udev = file->private_data;
428
429 poll_wait(file, &udev->waitq, wait);
430
431 if (udev->head != udev->tail)
432 return POLLIN | POLLRDNORM;
433
434 return 0;
435}
436
Dmitry Torokhov29506412005-11-20 00:51:22 -0500437static int uinput_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Dmitry Torokhov29506412005-11-20 00:51:22 -0500439 struct uinput_device *udev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Dmitry Torokhov29506412005-11-20 00:51:22 -0500441 uinput_destroy_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 kfree(udev);
443
444 return 0;
445}
446
Dmitry Torokhov29506412005-11-20 00:51:22 -0500447#define uinput_set_bit(_arg, _bit, _max) \
448({ \
449 int __ret = 0; \
450 if (udev->state == UIST_CREATED) \
451 __ret = -EINVAL; \
452 else if ((_arg) > (_max)) \
453 __ret = -EINVAL; \
454 else set_bit((_arg), udev->dev->_bit); \
455 __ret; \
456})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Dmitry Torokhov29506412005-11-20 00:51:22 -0500458static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Dmitry Torokhov29506412005-11-20 00:51:22 -0500460 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 struct uinput_device *udev;
462 void __user *p = (void __user *)arg;
463 struct uinput_ff_upload ff_up;
464 struct uinput_ff_erase ff_erase;
465 struct uinput_request *req;
466 int length;
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500467 char *phys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 udev = file->private_data;
470
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500471 retval = mutex_lock_interruptible(&udev->mutex);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500472 if (retval)
473 return retval;
474
475 if (!udev->dev) {
476 retval = uinput_allocate_device(udev);
477 if (retval)
478 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480
481 switch (cmd) {
482 case UI_DEV_CREATE:
483 retval = uinput_create_device(udev);
484 break;
485
486 case UI_DEV_DESTROY:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500487 uinput_destroy_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 break;
489
490 case UI_SET_EVBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500491 retval = uinput_set_bit(arg, evbit, EV_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 break;
493
494 case UI_SET_KEYBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500495 retval = uinput_set_bit(arg, keybit, KEY_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 break;
497
498 case UI_SET_RELBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500499 retval = uinput_set_bit(arg, relbit, REL_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 break;
501
502 case UI_SET_ABSBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500503 retval = uinput_set_bit(arg, absbit, ABS_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505
506 case UI_SET_MSCBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500507 retval = uinput_set_bit(arg, mscbit, MSC_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 break;
509
510 case UI_SET_LEDBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500511 retval = uinput_set_bit(arg, ledbit, LED_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 break;
513
514 case UI_SET_SNDBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500515 retval = uinput_set_bit(arg, sndbit, SND_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 break;
517
518 case UI_SET_FFBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500519 retval = uinput_set_bit(arg, ffbit, FF_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 break;
521
Dmitry Torokhov59c7c032005-11-20 00:51:33 -0500522 case UI_SET_SWBIT:
523 retval = uinput_set_bit(arg, swbit, SW_MAX);
524 break;
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 case UI_SET_PHYS:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500527 if (udev->state == UIST_CREATED) {
528 retval = -EINVAL;
529 goto out;
530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 length = strnlen_user(p, 1024);
532 if (length <= 0) {
533 retval = -EFAULT;
534 break;
535 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500536 kfree(udev->dev->phys);
537 udev->dev->phys = phys = kmalloc(length, GFP_KERNEL);
538 if (!phys) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 retval = -ENOMEM;
540 break;
541 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500542 if (copy_from_user(phys, p, length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 udev->dev->phys = NULL;
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500544 kfree(phys);
545 retval = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 break;
547 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500548 phys[length - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 break;
550
551 case UI_BEGIN_FF_UPLOAD:
552 if (copy_from_user(&ff_up, p, sizeof(ff_up))) {
553 retval = -EFAULT;
554 break;
555 }
556 req = uinput_request_find(udev, ff_up.request_id);
Anssi Hannulaff462552006-07-19 01:41:09 -0400557 if (!(req && req->code == UI_FF_UPLOAD && req->u.upload.effect)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 retval = -EINVAL;
559 break;
560 }
561 ff_up.retval = 0;
Anssi Hannulaff462552006-07-19 01:41:09 -0400562 memcpy(&ff_up.effect, req->u.upload.effect, sizeof(struct ff_effect));
563 if (req->u.upload.old)
564 memcpy(&ff_up.old, req->u.upload.old, sizeof(struct ff_effect));
565 else
566 memset(&ff_up.old, 0, sizeof(struct ff_effect));
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (copy_to_user(p, &ff_up, sizeof(ff_up))) {
569 retval = -EFAULT;
570 break;
571 }
572 break;
573
574 case UI_BEGIN_FF_ERASE:
575 if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
576 retval = -EFAULT;
577 break;
578 }
579 req = uinput_request_find(udev, ff_erase.request_id);
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500580 if (!(req && req->code == UI_FF_ERASE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 retval = -EINVAL;
582 break;
583 }
584 ff_erase.retval = 0;
585 ff_erase.effect_id = req->u.effect_id;
586 if (copy_to_user(p, &ff_erase, sizeof(ff_erase))) {
587 retval = -EFAULT;
588 break;
589 }
590 break;
591
592 case UI_END_FF_UPLOAD:
593 if (copy_from_user(&ff_up, p, sizeof(ff_up))) {
594 retval = -EFAULT;
595 break;
596 }
597 req = uinput_request_find(udev, ff_up.request_id);
Anssi Hannulaff462552006-07-19 01:41:09 -0400598 if (!(req && req->code == UI_FF_UPLOAD && req->u.upload.effect)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 retval = -EINVAL;
600 break;
601 }
602 req->retval = ff_up.retval;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500603 uinput_request_done(udev, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 break;
605
606 case UI_END_FF_ERASE:
607 if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
608 retval = -EFAULT;
609 break;
610 }
611 req = uinput_request_find(udev, ff_erase.request_id);
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500612 if (!(req && req->code == UI_FF_ERASE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 retval = -EINVAL;
614 break;
615 }
616 req->retval = ff_erase.retval;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500617 uinput_request_done(udev, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 break;
619
620 default:
621 retval = -EINVAL;
622 }
Dmitry Torokhov29506412005-11-20 00:51:22 -0500623
624 out:
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500625 mutex_unlock(&udev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return retval;
627}
628
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800629static const struct file_operations uinput_fops = {
Dmitry Torokhov29506412005-11-20 00:51:22 -0500630 .owner = THIS_MODULE,
631 .open = uinput_open,
632 .release = uinput_release,
633 .read = uinput_read,
634 .write = uinput_write,
635 .poll = uinput_poll,
636 .unlocked_ioctl = uinput_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637};
638
639static struct miscdevice uinput_misc = {
Dmitry Torokhov29506412005-11-20 00:51:22 -0500640 .fops = &uinput_fops,
641 .minor = UINPUT_MINOR,
642 .name = UINPUT_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643};
644
645static int __init uinput_init(void)
646{
647 return misc_register(&uinput_misc);
648}
649
650static void __exit uinput_exit(void)
651{
652 misc_deregister(&uinput_misc);
653}
654
655MODULE_AUTHOR("Aristeu Sergio Rozanski Filho");
656MODULE_DESCRIPTION("User level driver support for input subsystem");
657MODULE_LICENSE("GPL");
Anssi Hannulaff462552006-07-19 01:41:09 -0400658MODULE_VERSION("0.3");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660module_init(uinput_init);
661module_exit(uinput_exit);
662