blob: 46b7caeb2817f3363eda4570d52e8bc1bdeedc00 [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>
Philip Langdale2d56f3a2008-10-16 22:31:42 -040040#include "../input-compat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static int uinput_dev_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
43{
Dmitry Torokhov373f9712007-04-12 01:34:33 -040044 struct uinput_device *udev = input_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46 udev->buff[udev->head].type = type;
47 udev->buff[udev->head].code = code;
48 udev->buff[udev->head].value = value;
49 do_gettimeofday(&udev->buff[udev->head].time);
50 udev->head = (udev->head + 1) % UINPUT_BUFFER_SIZE;
51
52 wake_up_interruptible(&udev->waitq);
53
54 return 0;
55}
56
Dmitry Torokhov0048e602005-06-30 00:48:14 -050057static int uinput_request_alloc_id(struct uinput_device *udev, struct uinput_request *request)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 /* Atomically allocate an ID for the given request. Returns 0 on success. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 int id;
Dmitry Torokhov152c12f2005-06-30 00:47:50 -050061 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Dmitry Torokhov0048e602005-06-30 00:48:14 -050063 spin_lock(&udev->requests_lock);
Dmitry Torokhov152c12f2005-06-30 00:47:50 -050064
65 for (id = 0; id < UINPUT_NUM_REQUESTS; id++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (!udev->requests[id]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 request->id = id;
Dmitry Torokhov0048e602005-06-30 00:48:14 -050068 udev->requests[id] = request;
Dmitry Torokhov152c12f2005-06-30 00:47:50 -050069 err = 0;
70 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 }
Dmitry Torokhov152c12f2005-06-30 00:47:50 -050072
Dmitry Torokhov0048e602005-06-30 00:48:14 -050073 spin_unlock(&udev->requests_lock);
Dmitry Torokhov152c12f2005-06-30 00:47:50 -050074 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77static struct uinput_request* uinput_request_find(struct uinput_device *udev, int id)
78{
79 /* Find an input request, by ID. Returns NULL if the ID isn't valid. */
80 if (id >= UINPUT_NUM_REQUESTS || id < 0)
81 return NULL;
Philip Langdale2d56f3a2008-10-16 22:31:42 -040082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return udev->requests[id];
84}
85
Dmitry Torokhov0048e602005-06-30 00:48:14 -050086static inline int uinput_request_reserve_slot(struct uinput_device *udev, struct uinput_request *request)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Dmitry Torokhov0048e602005-06-30 00:48:14 -050088 /* Allocate slot. If none are available right away, wait. */
89 return wait_event_interruptible(udev->requests_waitq,
90 !uinput_request_alloc_id(udev, request));
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Dmitry Torokhov0048e602005-06-30 00:48:14 -050093static void uinput_request_done(struct uinput_device *udev, struct uinput_request *request)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Dmitry Torokhov0048e602005-06-30 00:48:14 -050095 /* Mark slot as available */
96 udev->requests[request->id] = NULL;
Dmitry Torokhove597f0c82005-11-20 00:51:43 -050097 wake_up(&udev->requests_waitq);
Dmitry Torokhove7507ed2005-10-17 16:43:32 -070098
99 complete(&request->done);
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500100}
101
102static int uinput_request_submit(struct input_dev *dev, struct uinput_request *request)
103{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 /* 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 Torokhove597f0c82005-11-20 00:51:43 -0500108 wait_for_completion(&request->done);
109 return request->retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Anssi Hannulaff462552006-07-19 01:41:09 -0400112static void uinput_dev_set_gain(struct input_dev *dev, u16 gain)
113{
114 uinput_dev_event(dev, EV_FF, FF_GAIN, gain);
115}
116
117static void uinput_dev_set_autocenter(struct input_dev *dev, u16 magnitude)
118{
119 uinput_dev_event(dev, EV_FF, FF_AUTOCENTER, magnitude);
120}
121
122static int uinput_dev_playback(struct input_dev *dev, int effect_id, int value)
123{
124 return uinput_dev_event(dev, EV_FF, effect_id, value);
125}
126
127static int uinput_dev_upload_effect(struct input_dev *dev, struct ff_effect *effect, struct ff_effect *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 struct uinput_request request;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500130 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400132 /*
133 * uinput driver does not currently support periodic effects with
134 * custom waveform since it does not have a way to pass buffer of
135 * samples (custom_data) to userspace. If ever there is a device
136 * supporting custom waveforms we would need to define an additional
137 * ioctl (UI_UPLOAD_SAMPLES) but for now we just bail out.
138 */
139 if (effect->type == FF_PERIODIC &&
140 effect->u.periodic.waveform == FF_CUSTOM)
141 return -EINVAL;
142
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500143 request.id = -1;
144 init_completion(&request.done);
145 request.code = UI_FF_UPLOAD;
Anssi Hannulaff462552006-07-19 01:41:09 -0400146 request.u.upload.effect = effect;
147 request.u.upload.old = old;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500148
Dmitry Torokhov373f9712007-04-12 01:34:33 -0400149 retval = uinput_request_reserve_slot(input_get_drvdata(dev), &request);
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500150 if (!retval)
151 retval = uinput_request_submit(dev, &request);
152
153 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156static int uinput_dev_erase_effect(struct input_dev *dev, int effect_id)
157{
158 struct uinput_request request;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500159 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 if (!test_bit(EV_FF, dev->evbit))
162 return -ENOSYS;
163
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500164 request.id = -1;
165 init_completion(&request.done);
166 request.code = UI_FF_ERASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 request.u.effect_id = effect_id;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500168
Dmitry Torokhov373f9712007-04-12 01:34:33 -0400169 retval = uinput_request_reserve_slot(input_get_drvdata(dev), &request);
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500170 if (!retval)
171 retval = uinput_request_submit(dev, &request);
172
173 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Dmitry Torokhov29506412005-11-20 00:51:22 -0500176static void uinput_destroy_device(struct uinput_device *udev)
177{
178 const char *name, *phys;
179
180 if (udev->dev) {
181 name = udev->dev->name;
182 phys = udev->dev->phys;
183 if (udev->state == UIST_CREATED)
184 input_unregister_device(udev->dev);
185 else
186 input_free_device(udev->dev);
187 kfree(name);
188 kfree(phys);
189 udev->dev = NULL;
190 }
191
192 udev->state = UIST_NEW_DEVICE;
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static int uinput_create_device(struct uinput_device *udev)
196{
Anssi Hannulaff462552006-07-19 01:41:09 -0400197 struct input_dev *dev = udev->dev;
Dmitry Torokhov29506412005-11-20 00:51:22 -0500198 int error;
199
200 if (udev->state != UIST_SETUP_COMPLETE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 printk(KERN_DEBUG "%s: write device info first\n", UINPUT_NAME);
202 return -EINVAL;
203 }
204
Anssi Hannulaff462552006-07-19 01:41:09 -0400205 if (udev->ff_effects_max) {
206 error = input_ff_create(dev, udev->ff_effects_max);
207 if (error)
208 goto fail1;
209
210 dev->ff->upload = uinput_dev_upload_effect;
211 dev->ff->erase = uinput_dev_erase_effect;
212 dev->ff->playback = uinput_dev_playback;
213 dev->ff->set_gain = uinput_dev_set_gain;
214 dev->ff->set_autocenter = uinput_dev_set_autocenter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
Anssi Hannulaff462552006-07-19 01:41:09 -0400217 error = input_register_device(udev->dev);
218 if (error)
219 goto fail2;
220
Dmitry Torokhov29506412005-11-20 00:51:22 -0500221 udev->state = UIST_CREATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 return 0;
Anssi Hannulaff462552006-07-19 01:41:09 -0400224
225 fail2: input_ff_destroy(dev);
226 fail1: uinput_destroy_device(udev);
227 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
230static int uinput_open(struct inode *inode, struct file *file)
231{
Dmitry Torokhov29506412005-11-20 00:51:22 -0500232 struct uinput_device *newdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Dmitry Torokhov29506412005-11-20 00:51:22 -0500234 newdev = kzalloc(sizeof(struct uinput_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (!newdev)
Dmitry Torokhov29506412005-11-20 00:51:22 -0500236 return -ENOMEM;
237
Arnd Bergmann87029652008-05-20 19:16:53 +0200238 lock_kernel();
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500239 mutex_init(&newdev->mutex);
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500240 spin_lock_init(&newdev->requests_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 init_waitqueue_head(&newdev->requests_waitq);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500242 init_waitqueue_head(&newdev->waitq);
243 newdev->state = UIST_NEW_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 file->private_data = newdev;
Arnd Bergmann87029652008-05-20 19:16:53 +0200246 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251static int uinput_validate_absbits(struct input_dev *dev)
252{
253 unsigned int cnt;
254 int retval = 0;
255
256 for (cnt = 0; cnt < ABS_MAX + 1; cnt++) {
257 if (!test_bit(cnt, dev->absbit))
258 continue;
259
260 if ((dev->absmax[cnt] <= dev->absmin[cnt])) {
261 printk(KERN_DEBUG
262 "%s: invalid abs[%02x] min:%d max:%d\n",
263 UINPUT_NAME, cnt,
264 dev->absmin[cnt], dev->absmax[cnt]);
265 retval = -EINVAL;
266 break;
267 }
268
269 if (dev->absflat[cnt] > (dev->absmax[cnt] - dev->absmin[cnt])) {
270 printk(KERN_DEBUG
271 "%s: absflat[%02x] out of range: %d "
272 "(min:%d/max:%d)\n",
273 UINPUT_NAME, cnt, dev->absflat[cnt],
274 dev->absmin[cnt], dev->absmax[cnt]);
275 retval = -EINVAL;
276 break;
277 }
278 }
279 return retval;
280}
281
Dmitry Torokhov29506412005-11-20 00:51:22 -0500282static int uinput_allocate_device(struct uinput_device *udev)
283{
284 udev->dev = input_allocate_device();
285 if (!udev->dev)
286 return -ENOMEM;
287
288 udev->dev->event = uinput_dev_event;
Dmitry Torokhov373f9712007-04-12 01:34:33 -0400289 input_set_drvdata(udev->dev, udev);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500290
291 return 0;
292}
293
294static int uinput_setup_device(struct uinput_device *udev, const char __user *buffer, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct uinput_user_dev *user_dev;
297 struct input_dev *dev;
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500298 char *name;
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500299 int size;
300 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Dmitry Torokhov29506412005-11-20 00:51:22 -0500302 if (count != sizeof(struct uinput_user_dev))
303 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Dmitry Torokhov29506412005-11-20 00:51:22 -0500305 if (!udev->dev) {
306 retval = uinput_allocate_device(udev);
307 if (retval)
308 return retval;
309 }
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 dev = udev->dev;
312
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500313 user_dev = kmalloc(sizeof(struct uinput_user_dev), GFP_KERNEL);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500314 if (!user_dev)
315 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 if (copy_from_user(user_dev, buffer, sizeof(struct uinput_user_dev))) {
318 retval = -EFAULT;
319 goto exit;
320 }
321
Anssi Hannulaff462552006-07-19 01:41:09 -0400322 udev->ff_effects_max = user_dev->ff_effects_max;
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 size = strnlen(user_dev->name, UINPUT_MAX_NAME_SIZE) + 1;
Dmitry Torokhov29506412005-11-20 00:51:22 -0500325 if (!size) {
326 retval = -EINVAL;
327 goto exit;
328 }
329
330 kfree(dev->name);
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500331 dev->name = name = kmalloc(size, GFP_KERNEL);
332 if (!name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 retval = -ENOMEM;
334 goto exit;
335 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500336 strlcpy(name, user_dev->name, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 dev->id.bustype = user_dev->id.bustype;
339 dev->id.vendor = user_dev->id.vendor;
340 dev->id.product = user_dev->id.product;
341 dev->id.version = user_dev->id.version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 size = sizeof(int) * (ABS_MAX + 1);
344 memcpy(dev->absmax, user_dev->absmax, size);
345 memcpy(dev->absmin, user_dev->absmin, size);
346 memcpy(dev->absfuzz, user_dev->absfuzz, size);
347 memcpy(dev->absflat, user_dev->absflat, size);
348
349 /* check if absmin/absmax/absfuzz/absflat are filled as
350 * told in Documentation/input/input-programming.txt */
351 if (test_bit(EV_ABS, dev->evbit)) {
Dmitry Torokhov29506412005-11-20 00:51:22 -0500352 retval = uinput_validate_absbits(dev);
353 if (retval < 0)
354 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
Dmitry Torokhov29506412005-11-20 00:51:22 -0500357 udev->state = UIST_SETUP_COMPLETE;
358 retval = count;
359
360 exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 kfree(user_dev);
362 return retval;
363}
364
Dmitry Torokhov29506412005-11-20 00:51:22 -0500365static inline ssize_t uinput_inject_event(struct uinput_device *udev, const char __user *buffer, size_t count)
366{
367 struct input_event ev;
368
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400369 if (count < input_event_size())
Dmitry Torokhov29506412005-11-20 00:51:22 -0500370 return -EINVAL;
371
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400372 if (input_event_from_user(buffer, &ev))
Dmitry Torokhov29506412005-11-20 00:51:22 -0500373 return -EFAULT;
374
375 input_event(udev->dev, ev.type, ev.code, ev.value);
376
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400377 return input_event_size();
Dmitry Torokhov29506412005-11-20 00:51:22 -0500378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380static ssize_t uinput_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
381{
382 struct uinput_device *udev = file->private_data;
Dmitry Torokhov29506412005-11-20 00:51:22 -0500383 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500385 retval = mutex_lock_interruptible(&udev->mutex);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500386 if (retval)
387 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Dmitry Torokhov29506412005-11-20 00:51:22 -0500389 retval = udev->state == UIST_CREATED ?
390 uinput_inject_event(udev, buffer, count) :
391 uinput_setup_device(udev, buffer, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500393 mutex_unlock(&udev->mutex);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500394
395 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398static ssize_t uinput_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
399{
400 struct uinput_device *udev = file->private_data;
401 int retval = 0;
402
Dmitry Torokhov29506412005-11-20 00:51:22 -0500403 if (udev->state != UIST_CREATED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return -ENODEV;
405
Dmitry Torokhov152c12f2005-06-30 00:47:50 -0500406 if (udev->head == udev->tail && (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return -EAGAIN;
408
409 retval = wait_event_interruptible(udev->waitq,
Dmitry Torokhov29506412005-11-20 00:51:22 -0500410 udev->head != udev->tail || udev->state != UIST_CREATED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (retval)
412 return retval;
413
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500414 retval = mutex_lock_interruptible(&udev->mutex);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500415 if (retval)
416 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Dmitry Torokhov29506412005-11-20 00:51:22 -0500418 if (udev->state != UIST_CREATED) {
419 retval = -ENODEV;
420 goto out;
421 }
422
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400423 while (udev->head != udev->tail && retval + input_event_size() <= count) {
424 if (input_event_to_user(buffer + retval, &udev->buff[udev->tail])) {
Dmitry Torokhov29506412005-11-20 00:51:22 -0500425 retval = -EFAULT;
426 goto out;
427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 udev->tail = (udev->tail + 1) % UINPUT_BUFFER_SIZE;
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400429 retval += input_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431
Dmitry Torokhov29506412005-11-20 00:51:22 -0500432 out:
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500433 mutex_unlock(&udev->mutex);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return retval;
436}
437
438static unsigned int uinput_poll(struct file *file, poll_table *wait)
439{
440 struct uinput_device *udev = file->private_data;
441
442 poll_wait(file, &udev->waitq, wait);
443
444 if (udev->head != udev->tail)
445 return POLLIN | POLLRDNORM;
446
447 return 0;
448}
449
Dmitry Torokhov29506412005-11-20 00:51:22 -0500450static int uinput_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Dmitry Torokhov29506412005-11-20 00:51:22 -0500452 struct uinput_device *udev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Dmitry Torokhov29506412005-11-20 00:51:22 -0500454 uinput_destroy_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 kfree(udev);
456
457 return 0;
458}
459
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400460#ifdef CONFIG_COMPAT
461struct uinput_ff_upload_compat {
462 int request_id;
463 int retval;
464 struct ff_effect_compat effect;
465 struct ff_effect_compat old;
466};
467
468static int uinput_ff_upload_to_user(char __user *buffer,
469 const struct uinput_ff_upload *ff_up)
470{
471 if (INPUT_COMPAT_TEST) {
472 struct uinput_ff_upload_compat ff_up_compat;
473
474 ff_up_compat.request_id = ff_up->request_id;
475 ff_up_compat.retval = ff_up->retval;
476 /*
477 * It so happens that the pointer that gives us the trouble
478 * is the last field in the structure. Since we don't support
479 * custom waveforms in uinput anyway we can just copy the whole
480 * thing (to the compat size) and ignore the pointer.
481 */
482 memcpy(&ff_up_compat.effect, &ff_up->effect,
483 sizeof(struct ff_effect_compat));
484 memcpy(&ff_up_compat.old, &ff_up->old,
485 sizeof(struct ff_effect_compat));
486
487 if (copy_to_user(buffer, &ff_up_compat,
488 sizeof(struct uinput_ff_upload_compat)))
489 return -EFAULT;
490 } else {
491 if (copy_to_user(buffer, ff_up,
492 sizeof(struct uinput_ff_upload)))
493 return -EFAULT;
494 }
495
496 return 0;
497}
498
499static int uinput_ff_upload_from_user(const char __user *buffer,
500 struct uinput_ff_upload *ff_up)
501{
502 if (INPUT_COMPAT_TEST) {
503 struct uinput_ff_upload_compat ff_up_compat;
504
505 if (copy_from_user(&ff_up_compat, buffer,
506 sizeof(struct uinput_ff_upload_compat)))
507 return -EFAULT;
508
509 ff_up->request_id = ff_up_compat.request_id;
510 ff_up->retval = ff_up_compat.retval;
511 memcpy(&ff_up->effect, &ff_up_compat.effect,
512 sizeof(struct ff_effect_compat));
513 memcpy(&ff_up->old, &ff_up_compat.old,
514 sizeof(struct ff_effect_compat));
515
516 } else {
517 if (copy_from_user(ff_up, buffer,
518 sizeof(struct uinput_ff_upload)))
519 return -EFAULT;
520 }
521
522 return 0;
523}
524
525#else
526
527static int uinput_ff_upload_to_user(char __user *buffer,
528 const struct uinput_ff_upload *ff_up)
529{
530 if (copy_to_user(buffer, ff_up, sizeof(struct uinput_ff_upload)))
531 return -EFAULT;
532
533 return 0;
534}
535
536static int uinput_ff_upload_from_user(const char __user *buffer,
537 struct uinput_ff_upload *ff_up)
538{
539 if (copy_from_user(ff_up, buffer, sizeof(struct uinput_ff_upload)))
540 return -EFAULT;
541
542 return 0;
543}
544
545#endif
546
Dmitry Torokhov29506412005-11-20 00:51:22 -0500547#define uinput_set_bit(_arg, _bit, _max) \
548({ \
549 int __ret = 0; \
550 if (udev->state == UIST_CREATED) \
551 __ret = -EINVAL; \
552 else if ((_arg) > (_max)) \
553 __ret = -EINVAL; \
554 else set_bit((_arg), udev->dev->_bit); \
555 __ret; \
556})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400558static long uinput_ioctl_handler(struct file *file, unsigned int cmd,
559 unsigned long arg, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Dmitry Torokhov29506412005-11-20 00:51:22 -0500561 int retval;
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400562 struct uinput_device *udev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 struct uinput_ff_upload ff_up;
564 struct uinput_ff_erase ff_erase;
565 struct uinput_request *req;
566 int length;
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500567 char *phys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500569 retval = mutex_lock_interruptible(&udev->mutex);
Dmitry Torokhov29506412005-11-20 00:51:22 -0500570 if (retval)
571 return retval;
572
573 if (!udev->dev) {
574 retval = uinput_allocate_device(udev);
575 if (retval)
576 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578
579 switch (cmd) {
580 case UI_DEV_CREATE:
581 retval = uinput_create_device(udev);
582 break;
583
584 case UI_DEV_DESTROY:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500585 uinput_destroy_device(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 break;
587
588 case UI_SET_EVBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500589 retval = uinput_set_bit(arg, evbit, EV_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 break;
591
592 case UI_SET_KEYBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500593 retval = uinput_set_bit(arg, keybit, KEY_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 break;
595
596 case UI_SET_RELBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500597 retval = uinput_set_bit(arg, relbit, REL_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 break;
599
600 case UI_SET_ABSBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500601 retval = uinput_set_bit(arg, absbit, ABS_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 break;
603
604 case UI_SET_MSCBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500605 retval = uinput_set_bit(arg, mscbit, MSC_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 break;
607
608 case UI_SET_LEDBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500609 retval = uinput_set_bit(arg, ledbit, LED_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 break;
611
612 case UI_SET_SNDBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500613 retval = uinput_set_bit(arg, sndbit, SND_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 break;
615
616 case UI_SET_FFBIT:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500617 retval = uinput_set_bit(arg, ffbit, FF_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 break;
619
Dmitry Torokhov59c7c032005-11-20 00:51:33 -0500620 case UI_SET_SWBIT:
621 retval = uinput_set_bit(arg, swbit, SW_MAX);
622 break;
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 case UI_SET_PHYS:
Dmitry Torokhov29506412005-11-20 00:51:22 -0500625 if (udev->state == UIST_CREATED) {
626 retval = -EINVAL;
627 goto out;
628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 length = strnlen_user(p, 1024);
630 if (length <= 0) {
631 retval = -EFAULT;
632 break;
633 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500634 kfree(udev->dev->phys);
635 udev->dev->phys = phys = kmalloc(length, GFP_KERNEL);
636 if (!phys) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 retval = -ENOMEM;
638 break;
639 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500640 if (copy_from_user(phys, p, length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 udev->dev->phys = NULL;
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500642 kfree(phys);
643 retval = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 break;
645 }
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500646 phys[length - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 break;
648
649 case UI_BEGIN_FF_UPLOAD:
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400650 retval = uinput_ff_upload_from_user(p, &ff_up);
651 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 break;
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 req = uinput_request_find(udev, ff_up.request_id);
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400655 if (!req || req->code != UI_FF_UPLOAD || !req->u.upload.effect) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 retval = -EINVAL;
657 break;
658 }
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 ff_up.retval = 0;
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400661 ff_up.effect = *req->u.upload.effect;
Anssi Hannulaff462552006-07-19 01:41:09 -0400662 if (req->u.upload.old)
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400663 ff_up.old = *req->u.upload.old;
Anssi Hannulaff462552006-07-19 01:41:09 -0400664 else
665 memset(&ff_up.old, 0, sizeof(struct ff_effect));
666
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400667 retval = uinput_ff_upload_to_user(p, &ff_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 break;
669
670 case UI_BEGIN_FF_ERASE:
671 if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
672 retval = -EFAULT;
673 break;
674 }
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 req = uinput_request_find(udev, ff_erase.request_id);
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400677 if (!req || req->code != UI_FF_ERASE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 retval = -EINVAL;
679 break;
680 }
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 ff_erase.retval = 0;
683 ff_erase.effect_id = req->u.effect_id;
684 if (copy_to_user(p, &ff_erase, sizeof(ff_erase))) {
685 retval = -EFAULT;
686 break;
687 }
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 break;
690
691 case UI_END_FF_UPLOAD:
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400692 retval = uinput_ff_upload_from_user(p, &ff_up);
693 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 break;
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 req = uinput_request_find(udev, ff_up.request_id);
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400697 if (!req || req->code != UI_FF_UPLOAD ||
698 !req->u.upload.effect) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 retval = -EINVAL;
700 break;
701 }
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 req->retval = ff_up.retval;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500704 uinput_request_done(udev, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 break;
706
707 case UI_END_FF_ERASE:
708 if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
709 retval = -EFAULT;
710 break;
711 }
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 req = uinput_request_find(udev, ff_erase.request_id);
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400714 if (!req || req->code != UI_FF_ERASE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 retval = -EINVAL;
716 break;
717 }
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 req->retval = ff_erase.retval;
Dmitry Torokhov0048e602005-06-30 00:48:14 -0500720 uinput_request_done(udev, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 break;
722
723 default:
724 retval = -EINVAL;
725 }
Dmitry Torokhov29506412005-11-20 00:51:22 -0500726
727 out:
Dmitry Torokhov221979a2006-02-19 00:22:36 -0500728 mutex_unlock(&udev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return retval;
730}
731
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400732static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
733{
734 return uinput_ioctl_handler(file, cmd, arg, (void __user *)arg);
735}
736
737#ifdef CONFIG_COMPAT
738static long uinput_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
739{
740 return uinput_ioctl_handler(file, cmd, arg, compat_ptr(arg));
741}
742#endif
743
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800744static const struct file_operations uinput_fops = {
Dmitry Torokhov29506412005-11-20 00:51:22 -0500745 .owner = THIS_MODULE,
746 .open = uinput_open,
747 .release = uinput_release,
748 .read = uinput_read,
749 .write = uinput_write,
750 .poll = uinput_poll,
751 .unlocked_ioctl = uinput_ioctl,
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400752#ifdef CONFIG_COMPAT
753 .compat_ioctl = uinput_compat_ioctl,
754#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755};
756
757static struct miscdevice uinput_misc = {
Dmitry Torokhov29506412005-11-20 00:51:22 -0500758 .fops = &uinput_fops,
759 .minor = UINPUT_MINOR,
760 .name = UINPUT_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761};
762
763static int __init uinput_init(void)
764{
765 return misc_register(&uinput_misc);
766}
767
768static void __exit uinput_exit(void)
769{
770 misc_deregister(&uinput_misc);
771}
772
773MODULE_AUTHOR("Aristeu Sergio Rozanski Filho");
774MODULE_DESCRIPTION("User level driver support for input subsystem");
775MODULE_LICENSE("GPL");
Anssi Hannulaff462552006-07-19 01:41:09 -0400776MODULE_VERSION("0.3");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778module_init(uinput_init);
779module_exit(uinput_exit);
780