]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/input/misc/uinput.c
UBUNTU: SAUCE: (efi-lockdown) Add a sysrq option to exit secure boot mode
[mirror_ubuntu-artful-kernel.git] / drivers / input / misc / uinput.c
CommitLineData
1da177e4
LT
1/*
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:
e3480a61
BT
23 * 0.4 01/09/2014 (Benjamin Tissoires <benjamin.tissoires@redhat.com>)
24 * - add UI_GET_SYSNAME ioctl
ff462551
AH
25 * 0.3 09/04/2006 (Anssi Hannula <anssi.hannula@gmail.com>)
26 * - updated ff support for the changes in kernel interface
27 * - added MODULE_VERSION
1da177e4
LT
28 * 0.2 16/10/2004 (Micah Dowty <micah@navi.cx>)
29 * - added force feedback support
30 * - added UI_SET_PHYS
31 * 0.1 20/06/2002
32 * - first public version
33 */
34#include <linux/poll.h>
a99bbaf5 35#include <linux/sched.h>
1da177e4
LT
36#include <linux/slab.h>
37#include <linux/module.h>
38#include <linux/init.h>
1da177e4
LT
39#include <linux/fs.h>
40#include <linux/miscdevice.h>
41#include <linux/uinput.h>
47c78e89 42#include <linux/input/mt.h>
2d56f3a3 43#include "../input-compat.h"
1da177e4 44
54ce165e
DT
45static int uinput_dev_event(struct input_dev *dev,
46 unsigned int type, unsigned int code, int value)
1da177e4 47{
373f9713 48 struct uinput_device *udev = input_get_drvdata(dev);
1da177e4
LT
49
50 udev->buff[udev->head].type = type;
51 udev->buff[udev->head].code = code;
52 udev->buff[udev->head].value = value;
53 do_gettimeofday(&udev->buff[udev->head].time);
54 udev->head = (udev->head + 1) % UINPUT_BUFFER_SIZE;
55
56 wake_up_interruptible(&udev->waitq);
57
58 return 0;
59}
60
05cebd38 61/* Atomically allocate an ID for the given request. Returns 0 on success. */
00ce756c
DT
62static bool uinput_request_alloc_id(struct uinput_device *udev,
63 struct uinput_request *request)
1da177e4 64{
c5b3533a 65 unsigned int id;
00ce756c 66 bool reserved = false;
1da177e4 67
0048e603 68 spin_lock(&udev->requests_lock);
152c12f5 69
05cebd38 70 for (id = 0; id < UINPUT_NUM_REQUESTS; id++) {
1da177e4 71 if (!udev->requests[id]) {
1da177e4 72 request->id = id;
0048e603 73 udev->requests[id] = request;
00ce756c 74 reserved = true;
152c12f5 75 break;
1da177e4 76 }
05cebd38 77 }
152c12f5 78
0048e603 79 spin_unlock(&udev->requests_lock);
00ce756c 80 return reserved;
1da177e4
LT
81}
82
c5b3533a
DT
83static struct uinput_request *uinput_request_find(struct uinput_device *udev,
84 unsigned int id)
1da177e4
LT
85{
86 /* Find an input request, by ID. Returns NULL if the ID isn't valid. */
c5b3533a 87 if (id >= UINPUT_NUM_REQUESTS)
1da177e4 88 return NULL;
2d56f3a3 89
1da177e4
LT
90 return udev->requests[id];
91}
92
00ce756c
DT
93static int uinput_request_reserve_slot(struct uinput_device *udev,
94 struct uinput_request *request)
1da177e4 95{
0048e603
DT
96 /* Allocate slot. If none are available right away, wait. */
97 return wait_event_interruptible(udev->requests_waitq,
00ce756c 98 uinput_request_alloc_id(udev, request));
0048e603 99}
1da177e4 100
54ce165e
DT
101static void uinput_request_done(struct uinput_device *udev,
102 struct uinput_request *request)
0048e603 103{
0048e603
DT
104 /* Mark slot as available */
105 udev->requests[request->id] = NULL;
e597f0c8 106 wake_up(&udev->requests_waitq);
e7507ed9
DT
107
108 complete(&request->done);
1da177e4
LT
109}
110
00ce756c
DT
111static int uinput_request_send(struct uinput_device *udev,
112 struct uinput_request *request)
1da177e4 113{
05cebd38
ASRF
114 int retval;
115
05cebd38
ASRF
116 retval = mutex_lock_interruptible(&udev->mutex);
117 if (retval)
118 return retval;
119
120 if (udev->state != UIST_CREATED) {
121 retval = -ENODEV;
122 goto out;
123 }
124
00ce756c
DT
125 init_completion(&request->done);
126
127 /*
128 * Tell our userspace application about this new request
129 * by queueing an input event.
130 */
05cebd38
ASRF
131 uinput_dev_event(udev->dev, EV_UINPUT, request->code, request->id);
132
133 out:
134 mutex_unlock(&udev->mutex);
135 return retval;
136}
137
00ce756c
DT
138static int uinput_request_submit(struct uinput_device *udev,
139 struct uinput_request *request)
140{
141 int error;
142
143 error = uinput_request_reserve_slot(udev, request);
144 if (error)
145 return error;
146
147 error = uinput_request_send(udev, request);
148 if (error) {
149 uinput_request_done(udev, request);
150 return error;
151 }
152
153 wait_for_completion(&request->done);
154 return request->retval;
155}
156
05cebd38 157/*
54ce165e 158 * Fail all outstanding requests so handlers don't wait for the userspace
05cebd38
ASRF
159 * to finish processing them.
160 */
161static void uinput_flush_requests(struct uinput_device *udev)
162{
163 struct uinput_request *request;
164 int i;
1da177e4 165
05cebd38
ASRF
166 spin_lock(&udev->requests_lock);
167
168 for (i = 0; i < UINPUT_NUM_REQUESTS; i++) {
169 request = udev->requests[i];
170 if (request) {
171 request->retval = -ENODEV;
172 uinput_request_done(udev, request);
173 }
174 }
175
176 spin_unlock(&udev->requests_lock);
1da177e4
LT
177}
178
ff462551
AH
179static void uinput_dev_set_gain(struct input_dev *dev, u16 gain)
180{
181 uinput_dev_event(dev, EV_FF, FF_GAIN, gain);
182}
183
184static void uinput_dev_set_autocenter(struct input_dev *dev, u16 magnitude)
185{
186 uinput_dev_event(dev, EV_FF, FF_AUTOCENTER, magnitude);
187}
188
189static int uinput_dev_playback(struct input_dev *dev, int effect_id, int value)
190{
191 return uinput_dev_event(dev, EV_FF, effect_id, value);
192}
193
54ce165e
DT
194static int uinput_dev_upload_effect(struct input_dev *dev,
195 struct ff_effect *effect,
196 struct ff_effect *old)
1da177e4 197{
05cebd38 198 struct uinput_device *udev = input_get_drvdata(dev);
1da177e4
LT
199 struct uinput_request request;
200
2d56f3a3
PL
201 /*
202 * uinput driver does not currently support periodic effects with
203 * custom waveform since it does not have a way to pass buffer of
204 * samples (custom_data) to userspace. If ever there is a device
205 * supporting custom waveforms we would need to define an additional
206 * ioctl (UI_UPLOAD_SAMPLES) but for now we just bail out.
207 */
208 if (effect->type == FF_PERIODIC &&
209 effect->u.periodic.waveform == FF_CUSTOM)
210 return -EINVAL;
211
0048e603 212 request.code = UI_FF_UPLOAD;
ff462551
AH
213 request.u.upload.effect = effect;
214 request.u.upload.old = old;
0048e603 215
00ce756c 216 return uinput_request_submit(udev, &request);
1da177e4
LT
217}
218
219static int uinput_dev_erase_effect(struct input_dev *dev, int effect_id)
220{
05cebd38 221 struct uinput_device *udev = input_get_drvdata(dev);
1da177e4
LT
222 struct uinput_request request;
223
224 if (!test_bit(EV_FF, dev->evbit))
225 return -ENOSYS;
226
0048e603 227 request.code = UI_FF_ERASE;
1da177e4 228 request.u.effect_id = effect_id;
0048e603 229
00ce756c 230 return uinput_request_submit(udev, &request);
1da177e4
LT
231}
232
29506415 233static void uinput_destroy_device(struct uinput_device *udev)
1da177e4 234{
29506415 235 const char *name, *phys;
05cebd38
ASRF
236 struct input_dev *dev = udev->dev;
237 enum uinput_state old_state = udev->state;
238
239 udev->state = UIST_NEW_DEVICE;
29506415 240
05cebd38
ASRF
241 if (dev) {
242 name = dev->name;
243 phys = dev->phys;
244 if (old_state == UIST_CREATED) {
245 uinput_flush_requests(udev);
246 input_unregister_device(dev);
247 } else {
248 input_free_device(dev);
249 }
29506415
DT
250 kfree(name);
251 kfree(phys);
252 udev->dev = NULL;
1da177e4 253 }
1da177e4
LT
254}
255
29506415 256static int uinput_create_device(struct uinput_device *udev)
1da177e4 257{
ff462551 258 struct input_dev *dev = udev->dev;
fbae10db 259 int error, nslot;
29506415
DT
260
261 if (udev->state != UIST_SETUP_COMPLETE) {
262 printk(KERN_DEBUG "%s: write device info first\n", UINPUT_NAME);
1da177e4
LT
263 return -EINVAL;
264 }
265
601bbbe0
DT
266 if (test_bit(EV_ABS, dev->evbit)) {
267 input_alloc_absinfo(dev);
268 if (!dev->absinfo) {
269 error = -EINVAL;
fbae10db 270 goto fail1;
601bbbe0
DT
271 }
272
273 if (test_bit(ABS_MT_SLOT, dev->absbit)) {
274 nslot = input_abs_get_max(dev, ABS_MT_SLOT) + 1;
275 error = input_mt_init_slots(dev, nslot, 0);
276 if (error)
277 goto fail1;
278 } else if (test_bit(ABS_MT_POSITION_X, dev->absbit)) {
279 input_set_events_per_packet(dev, 60);
280 }
fbae10db
DH
281 }
282
daf6cd0c
EV
283 if (test_bit(EV_FF, dev->evbit) && !udev->ff_effects_max) {
284 printk(KERN_DEBUG "%s: ff_effects_max should be non-zero when FF_BIT is set\n",
285 UINPUT_NAME);
286 error = -EINVAL;
287 goto fail1;
288 }
289
ff462551
AH
290 if (udev->ff_effects_max) {
291 error = input_ff_create(dev, udev->ff_effects_max);
292 if (error)
293 goto fail1;
294
295 dev->ff->upload = uinput_dev_upload_effect;
296 dev->ff->erase = uinput_dev_erase_effect;
297 dev->ff->playback = uinput_dev_playback;
298 dev->ff->set_gain = uinput_dev_set_gain;
299 dev->ff->set_autocenter = uinput_dev_set_autocenter;
29506415 300 }
1da177e4 301
ff462551
AH
302 error = input_register_device(udev->dev);
303 if (error)
304 goto fail2;
305
29506415 306 udev->state = UIST_CREATED;
1da177e4
LT
307
308 return 0;
ff462551
AH
309
310 fail2: input_ff_destroy(dev);
311 fail1: uinput_destroy_device(udev);
312 return error;
1da177e4
LT
313}
314
315static int uinput_open(struct inode *inode, struct file *file)
316{
29506415 317 struct uinput_device *newdev;
1da177e4 318
29506415 319 newdev = kzalloc(sizeof(struct uinput_device), GFP_KERNEL);
1da177e4 320 if (!newdev)
29506415
DT
321 return -ENOMEM;
322
221979aa 323 mutex_init(&newdev->mutex);
0048e603 324 spin_lock_init(&newdev->requests_lock);
1da177e4 325 init_waitqueue_head(&newdev->requests_waitq);
29506415
DT
326 init_waitqueue_head(&newdev->waitq);
327 newdev->state = UIST_NEW_DEVICE;
1da177e4
LT
328
329 file->private_data = newdev;
daf8a96b 330 nonseekable_open(inode, file);
1da177e4
LT
331
332 return 0;
1da177e4
LT
333}
334
fbae10db
DH
335static int uinput_validate_absinfo(struct input_dev *dev, unsigned int code,
336 const struct input_absinfo *abs)
337{
338 int min, max;
339
340 min = abs->minimum;
341 max = abs->maximum;
342
343 if ((min != 0 || max != 0) && max <= min) {
344 printk(KERN_DEBUG
345 "%s: invalid abs[%02x] min:%d max:%d\n",
346 UINPUT_NAME, code, min, max);
347 return -EINVAL;
348 }
349
350 if (abs->flat > max - min) {
351 printk(KERN_DEBUG
352 "%s: abs_flat #%02x out of range: %d (min:%d/max:%d)\n",
353 UINPUT_NAME, code, abs->flat, min, max);
354 return -EINVAL;
355 }
356
357 return 0;
358}
359
1da177e4
LT
360static int uinput_validate_absbits(struct input_dev *dev)
361{
362 unsigned int cnt;
fbae10db 363 int error;
bcb898e5
DH
364
365 if (!test_bit(EV_ABS, dev->evbit))
366 return 0;
367
368 /*
369 * Check if absmin/absmax/absfuzz/absflat are sane.
370 */
1da177e4 371
b6d30968 372 for_each_set_bit(cnt, dev->absbit, ABS_CNT) {
fbae10db 373 if (!dev->absinfo)
bcb898e5 374 return -EINVAL;
bcb898e5 375
fbae10db
DH
376 error = uinput_validate_absinfo(dev, cnt, &dev->absinfo[cnt]);
377 if (error)
378 return error;
bcb898e5
DH
379 }
380
381 return 0;
1da177e4
LT
382}
383
29506415
DT
384static int uinput_allocate_device(struct uinput_device *udev)
385{
386 udev->dev = input_allocate_device();
387 if (!udev->dev)
388 return -ENOMEM;
389
bfd27940 390 udev->dev->flags |= INPUTDEV_FLAGS_SYNTHETIC;
29506415 391 udev->dev->event = uinput_dev_event;
373f9713 392 input_set_drvdata(udev->dev, udev);
29506415
DT
393
394 return 0;
395}
396
052876f8
BT
397static int uinput_dev_setup(struct uinput_device *udev,
398 struct uinput_setup __user *arg)
399{
400 struct uinput_setup setup;
401 struct input_dev *dev;
052876f8
BT
402
403 if (udev->state == UIST_CREATED)
404 return -EINVAL;
405
406 if (copy_from_user(&setup, arg, sizeof(setup)))
407 return -EFAULT;
408
409 if (!setup.name[0])
410 return -EINVAL;
411
412 dev = udev->dev;
413 dev->id = setup.id;
414 udev->ff_effects_max = setup.ff_effects_max;
415
416 kfree(dev->name);
417 dev->name = kstrndup(setup.name, UINPUT_MAX_NAME_SIZE, GFP_KERNEL);
418 if (!dev->name)
419 return -ENOMEM;
420
052876f8
BT
421 udev->state = UIST_SETUP_COMPLETE;
422 return 0;
423}
424
425static int uinput_abs_setup(struct uinput_device *udev,
426 struct uinput_setup __user *arg, size_t size)
427{
428 struct uinput_abs_setup setup = {};
429 struct input_dev *dev;
fbae10db 430 int error;
052876f8
BT
431
432 if (size > sizeof(setup))
433 return -E2BIG;
434
435 if (udev->state == UIST_CREATED)
436 return -EINVAL;
437
438 if (copy_from_user(&setup, arg, size))
439 return -EFAULT;
440
441 if (setup.code > ABS_MAX)
442 return -ERANGE;
443
444 dev = udev->dev;
445
fbae10db
DH
446 error = uinput_validate_absinfo(dev, setup.code, &setup.absinfo);
447 if (error)
448 return error;
449
052876f8
BT
450 input_alloc_absinfo(dev);
451 if (!dev->absinfo)
452 return -ENOMEM;
453
454 set_bit(setup.code, dev->absbit);
455 dev->absinfo[setup.code] = setup.absinfo;
052876f8
BT
456 return 0;
457}
458
459/* legacy setup via write() */
460static int uinput_setup_device_legacy(struct uinput_device *udev,
461 const char __user *buffer, size_t count)
1da177e4
LT
462{
463 struct uinput_user_dev *user_dev;
464 struct input_dev *dev;
5d9d6e91 465 int i;
152c12f5 466 int retval;
1da177e4 467
29506415
DT
468 if (count != sizeof(struct uinput_user_dev))
469 return -EINVAL;
470
471 if (!udev->dev) {
472 retval = uinput_allocate_device(udev);
473 if (retval)
474 return retval;
475 }
1da177e4 476
1da177e4
LT
477 dev = udev->dev;
478
4dfcc271 479 user_dev = memdup_user(buffer, sizeof(struct uinput_user_dev));
163d2770 480 if (IS_ERR(user_dev))
4dfcc271 481 return PTR_ERR(user_dev);
1da177e4 482
ff462551
AH
483 udev->ff_effects_max = user_dev->ff_effects_max;
484
5d9d6e91
DH
485 /* Ensure name is filled in */
486 if (!user_dev->name[0]) {
29506415
DT
487 retval = -EINVAL;
488 goto exit;
489 }
490
491 kfree(dev->name);
5d9d6e91
DH
492 dev->name = kstrndup(user_dev->name, UINPUT_MAX_NAME_SIZE,
493 GFP_KERNEL);
494 if (!dev->name) {
1da177e4
LT
495 retval = -ENOMEM;
496 goto exit;
497 }
498
1da177e4
LT
499 dev->id.bustype = user_dev->id.bustype;
500 dev->id.vendor = user_dev->id.vendor;
501 dev->id.product = user_dev->id.product;
502 dev->id.version = user_dev->id.version;
1da177e4 503
72d47362 504 for (i = 0; i < ABS_CNT; i++) {
987a6c02
DM
505 input_abs_set_max(dev, i, user_dev->absmax[i]);
506 input_abs_set_min(dev, i, user_dev->absmin[i]);
507 input_abs_set_fuzz(dev, i, user_dev->absfuzz[i]);
508 input_abs_set_flat(dev, i, user_dev->absflat[i]);
509 }
1da177e4 510
bcb898e5
DH
511 retval = uinput_validate_absbits(dev);
512 if (retval < 0)
513 goto exit;
1da177e4 514
29506415
DT
515 udev->state = UIST_SETUP_COMPLETE;
516 retval = count;
517
518 exit:
1da177e4
LT
519 kfree(user_dev);
520 return retval;
521}
522
cbf05413
RM
523static ssize_t uinput_inject_events(struct uinput_device *udev,
524 const char __user *buffer, size_t count)
29506415
DT
525{
526 struct input_event ev;
cbf05413 527 size_t bytes = 0;
29506415 528
cbf05413 529 if (count != 0 && count < input_event_size())
29506415
DT
530 return -EINVAL;
531
cbf05413
RM
532 while (bytes + input_event_size() <= count) {
533 /*
534 * Note that even if some events were fetched successfully
535 * we are still going to return EFAULT instead of partial
536 * count to let userspace know that it got it's buffers
537 * all wrong.
538 */
539 if (input_event_from_user(buffer + bytes, &ev))
540 return -EFAULT;
29506415 541
cbf05413
RM
542 input_event(udev->dev, ev.type, ev.code, ev.value);
543 bytes += input_event_size();
544 }
29506415 545
cbf05413 546 return bytes;
29506415
DT
547}
548
54ce165e
DT
549static ssize_t uinput_write(struct file *file, const char __user *buffer,
550 size_t count, loff_t *ppos)
1da177e4
LT
551{
552 struct uinput_device *udev = file->private_data;
29506415 553 int retval;
1da177e4 554
22ae19c6
DT
555 if (count == 0)
556 return 0;
557
221979aa 558 retval = mutex_lock_interruptible(&udev->mutex);
29506415
DT
559 if (retval)
560 return retval;
561
562 retval = udev->state == UIST_CREATED ?
cbf05413 563 uinput_inject_events(udev, buffer, count) :
052876f8 564 uinput_setup_device_legacy(udev, buffer, count);
1da177e4 565
221979aa 566 mutex_unlock(&udev->mutex);
1da177e4 567
29506415 568 return retval;
1da177e4
LT
569}
570
929d1af5
DT
571static bool uinput_fetch_next_event(struct uinput_device *udev,
572 struct input_event *event)
573{
574 bool have_event;
575
576 spin_lock_irq(&udev->dev->event_lock);
577
578 have_event = udev->head != udev->tail;
579 if (have_event) {
580 *event = udev->buff[udev->tail];
581 udev->tail = (udev->tail + 1) % UINPUT_BUFFER_SIZE;
582 }
583
584 spin_unlock_irq(&udev->dev->event_lock);
585
586 return have_event;
587}
588
22ae19c6
DT
589static ssize_t uinput_events_to_user(struct uinput_device *udev,
590 char __user *buffer, size_t count)
1da177e4 591{
929d1af5 592 struct input_event event;
22ae19c6 593 size_t read = 0;
1da177e4 594
22ae19c6
DT
595 while (read + input_event_size() <= count &&
596 uinput_fetch_next_event(udev, &event)) {
f40033ac 597
00ce756c
DT
598 if (input_event_to_user(buffer + read, &event))
599 return -EFAULT;
1da177e4 600
22ae19c6
DT
601 read += input_event_size();
602 }
1da177e4 603
00ce756c 604 return read;
22ae19c6 605}
1da177e4 606
22ae19c6
DT
607static ssize_t uinput_read(struct file *file, char __user *buffer,
608 size_t count, loff_t *ppos)
609{
610 struct uinput_device *udev = file->private_data;
611 ssize_t retval;
29506415 612
22ae19c6
DT
613 if (count != 0 && count < input_event_size())
614 return -EINVAL;
1da177e4 615
22ae19c6
DT
616 do {
617 retval = mutex_lock_interruptible(&udev->mutex);
618 if (retval)
619 return retval;
929d1af5 620
22ae19c6
DT
621 if (udev->state != UIST_CREATED)
622 retval = -ENODEV;
623 else if (udev->head == udev->tail &&
624 (file->f_flags & O_NONBLOCK))
625 retval = -EAGAIN;
626 else
627 retval = uinput_events_to_user(udev, buffer, count);
929d1af5 628
22ae19c6 629 mutex_unlock(&udev->mutex);
1da177e4 630
22ae19c6
DT
631 if (retval || count == 0)
632 break;
633
634 if (!(file->f_flags & O_NONBLOCK))
635 retval = wait_event_interruptible(udev->waitq,
636 udev->head != udev->tail ||
637 udev->state != UIST_CREATED);
638 } while (retval == 0);
29506415 639
1da177e4
LT
640 return retval;
641}
642
643static unsigned int uinput_poll(struct file *file, poll_table *wait)
644{
645 struct uinput_device *udev = file->private_data;
646
647 poll_wait(file, &udev->waitq, wait);
648
649 if (udev->head != udev->tail)
650 return POLLIN | POLLRDNORM;
651
652 return 0;
653}
654
29506415 655static int uinput_release(struct inode *inode, struct file *file)
1da177e4 656{
29506415 657 struct uinput_device *udev = file->private_data;
1da177e4 658
29506415 659 uinput_destroy_device(udev);
1da177e4
LT
660 kfree(udev);
661
662 return 0;
663}
664
2d56f3a3
PL
665#ifdef CONFIG_COMPAT
666struct uinput_ff_upload_compat {
c5b3533a
DT
667 __u32 request_id;
668 __s32 retval;
2d56f3a3
PL
669 struct ff_effect_compat effect;
670 struct ff_effect_compat old;
671};
672
673static int uinput_ff_upload_to_user(char __user *buffer,
674 const struct uinput_ff_upload *ff_up)
675{
b8b4ead1 676 if (in_compat_syscall()) {
2d56f3a3
PL
677 struct uinput_ff_upload_compat ff_up_compat;
678
679 ff_up_compat.request_id = ff_up->request_id;
680 ff_up_compat.retval = ff_up->retval;
681 /*
682 * It so happens that the pointer that gives us the trouble
683 * is the last field in the structure. Since we don't support
684 * custom waveforms in uinput anyway we can just copy the whole
685 * thing (to the compat size) and ignore the pointer.
686 */
687 memcpy(&ff_up_compat.effect, &ff_up->effect,
688 sizeof(struct ff_effect_compat));
689 memcpy(&ff_up_compat.old, &ff_up->old,
690 sizeof(struct ff_effect_compat));
691
692 if (copy_to_user(buffer, &ff_up_compat,
693 sizeof(struct uinput_ff_upload_compat)))
694 return -EFAULT;
695 } else {
696 if (copy_to_user(buffer, ff_up,
697 sizeof(struct uinput_ff_upload)))
698 return -EFAULT;
699 }
700
701 return 0;
702}
703
704static int uinput_ff_upload_from_user(const char __user *buffer,
705 struct uinput_ff_upload *ff_up)
706{
b8b4ead1 707 if (in_compat_syscall()) {
2d56f3a3
PL
708 struct uinput_ff_upload_compat ff_up_compat;
709
710 if (copy_from_user(&ff_up_compat, buffer,
711 sizeof(struct uinput_ff_upload_compat)))
712 return -EFAULT;
713
714 ff_up->request_id = ff_up_compat.request_id;
715 ff_up->retval = ff_up_compat.retval;
716 memcpy(&ff_up->effect, &ff_up_compat.effect,
717 sizeof(struct ff_effect_compat));
718 memcpy(&ff_up->old, &ff_up_compat.old,
719 sizeof(struct ff_effect_compat));
720
721 } else {
722 if (copy_from_user(ff_up, buffer,
723 sizeof(struct uinput_ff_upload)))
724 return -EFAULT;
725 }
726
727 return 0;
728}
729
730#else
731
732static int uinput_ff_upload_to_user(char __user *buffer,
733 const struct uinput_ff_upload *ff_up)
734{
735 if (copy_to_user(buffer, ff_up, sizeof(struct uinput_ff_upload)))
736 return -EFAULT;
737
738 return 0;
739}
740
741static int uinput_ff_upload_from_user(const char __user *buffer,
742 struct uinput_ff_upload *ff_up)
743{
744 if (copy_from_user(ff_up, buffer, sizeof(struct uinput_ff_upload)))
745 return -EFAULT;
746
747 return 0;
748}
749
750#endif
751
29506415
DT
752#define uinput_set_bit(_arg, _bit, _max) \
753({ \
754 int __ret = 0; \
755 if (udev->state == UIST_CREATED) \
756 __ret = -EINVAL; \
757 else if ((_arg) > (_max)) \
758 __ret = -EINVAL; \
759 else set_bit((_arg), udev->dev->_bit); \
760 __ret; \
761})
762
e3480a61
BT
763static int uinput_str_to_user(void __user *dest, const char *str,
764 unsigned int maxlen)
765{
766 char __user *p = dest;
767 int len, ret;
768
769 if (!str)
770 return -ENOENT;
771
772 if (maxlen == 0)
773 return -EINVAL;
774
775 len = strlen(str) + 1;
776 if (len > maxlen)
777 len = maxlen;
778
779 ret = copy_to_user(p, str, len);
780 if (ret)
781 return -EFAULT;
782
783 /* force terminating '\0' */
784 ret = put_user(0, p + len - 1);
785 return ret ? -EFAULT : len;
786}
787
2d56f3a3
PL
788static long uinput_ioctl_handler(struct file *file, unsigned int cmd,
789 unsigned long arg, void __user *p)
1da177e4 790{
29506415 791 int retval;
2d56f3a3 792 struct uinput_device *udev = file->private_data;
1da177e4
LT
793 struct uinput_ff_upload ff_up;
794 struct uinput_ff_erase ff_erase;
795 struct uinput_request *req;
5b6271bd 796 char *phys;
e3480a61
BT
797 const char *name;
798 unsigned int size;
1da177e4 799
221979aa 800 retval = mutex_lock_interruptible(&udev->mutex);
29506415
DT
801 if (retval)
802 return retval;
803
804 if (!udev->dev) {
805 retval = uinput_allocate_device(udev);
806 if (retval)
807 goto out;
1da177e4
LT
808 }
809
810 switch (cmd) {
ba4e9a61
DH
811 case UI_GET_VERSION:
812 if (put_user(UINPUT_VERSION,
813 (unsigned int __user *)p))
814 retval = -EFAULT;
815 goto out;
816
1da177e4
LT
817 case UI_DEV_CREATE:
818 retval = uinput_create_device(udev);
9d51e801 819 goto out;
1da177e4
LT
820
821 case UI_DEV_DESTROY:
29506415 822 uinput_destroy_device(udev);
9d51e801 823 goto out;
1da177e4 824
052876f8
BT
825 case UI_DEV_SETUP:
826 retval = uinput_dev_setup(udev, p);
827 goto out;
828
829 /* UI_ABS_SETUP is handled in the variable size ioctls */
830
1da177e4 831 case UI_SET_EVBIT:
29506415 832 retval = uinput_set_bit(arg, evbit, EV_MAX);
9d51e801 833 goto out;
1da177e4
LT
834
835 case UI_SET_KEYBIT:
29506415 836 retval = uinput_set_bit(arg, keybit, KEY_MAX);
9d51e801 837 goto out;
1da177e4
LT
838
839 case UI_SET_RELBIT:
29506415 840 retval = uinput_set_bit(arg, relbit, REL_MAX);
9d51e801 841 goto out;
1da177e4
LT
842
843 case UI_SET_ABSBIT:
29506415 844 retval = uinput_set_bit(arg, absbit, ABS_MAX);
9d51e801 845 goto out;
1da177e4
LT
846
847 case UI_SET_MSCBIT:
29506415 848 retval = uinput_set_bit(arg, mscbit, MSC_MAX);
9d51e801 849 goto out;
1da177e4
LT
850
851 case UI_SET_LEDBIT:
29506415 852 retval = uinput_set_bit(arg, ledbit, LED_MAX);
9d51e801 853 goto out;
1da177e4
LT
854
855 case UI_SET_SNDBIT:
29506415 856 retval = uinput_set_bit(arg, sndbit, SND_MAX);
9d51e801 857 goto out;
1da177e4
LT
858
859 case UI_SET_FFBIT:
29506415 860 retval = uinput_set_bit(arg, ffbit, FF_MAX);
9d51e801 861 goto out;
1da177e4 862
59c7c037
DT
863 case UI_SET_SWBIT:
864 retval = uinput_set_bit(arg, swbit, SW_MAX);
9d51e801 865 goto out;
59c7c037 866
85b77200
HR
867 case UI_SET_PROPBIT:
868 retval = uinput_set_bit(arg, propbit, INPUT_PROP_MAX);
9d51e801 869 goto out;
85b77200 870
1da177e4 871 case UI_SET_PHYS:
29506415
DT
872 if (udev->state == UIST_CREATED) {
873 retval = -EINVAL;
874 goto out;
875 }
4dfcc271
DT
876
877 phys = strndup_user(p, 1024);
878 if (IS_ERR(phys)) {
879 retval = PTR_ERR(phys);
880 goto out;
1da177e4 881 }
4dfcc271 882
5b6271bd 883 kfree(udev->dev->phys);
4dfcc271 884 udev->dev->phys = phys;
9d51e801 885 goto out;
1da177e4
LT
886
887 case UI_BEGIN_FF_UPLOAD:
2d56f3a3
PL
888 retval = uinput_ff_upload_from_user(p, &ff_up);
889 if (retval)
9d51e801 890 goto out;
2d56f3a3 891
1da177e4 892 req = uinput_request_find(udev, ff_up.request_id);
54ce165e
DT
893 if (!req || req->code != UI_FF_UPLOAD ||
894 !req->u.upload.effect) {
1da177e4 895 retval = -EINVAL;
9d51e801 896 goto out;
1da177e4 897 }
2d56f3a3 898
1da177e4 899 ff_up.retval = 0;
2d56f3a3 900 ff_up.effect = *req->u.upload.effect;
ff462551 901 if (req->u.upload.old)
2d56f3a3 902 ff_up.old = *req->u.upload.old;
ff462551
AH
903 else
904 memset(&ff_up.old, 0, sizeof(struct ff_effect));
905
2d56f3a3 906 retval = uinput_ff_upload_to_user(p, &ff_up);
9d51e801 907 goto out;
1da177e4
LT
908
909 case UI_BEGIN_FF_ERASE:
910 if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
911 retval = -EFAULT;
9d51e801 912 goto out;
1da177e4 913 }
2d56f3a3 914
1da177e4 915 req = uinput_request_find(udev, ff_erase.request_id);
2d56f3a3 916 if (!req || req->code != UI_FF_ERASE) {
1da177e4 917 retval = -EINVAL;
9d51e801 918 goto out;
1da177e4 919 }
2d56f3a3 920
1da177e4
LT
921 ff_erase.retval = 0;
922 ff_erase.effect_id = req->u.effect_id;
923 if (copy_to_user(p, &ff_erase, sizeof(ff_erase))) {
924 retval = -EFAULT;
9d51e801 925 goto out;
1da177e4 926 }
2d56f3a3 927
9d51e801 928 goto out;
1da177e4
LT
929
930 case UI_END_FF_UPLOAD:
2d56f3a3
PL
931 retval = uinput_ff_upload_from_user(p, &ff_up);
932 if (retval)
9d51e801 933 goto out;
2d56f3a3 934
1da177e4 935 req = uinput_request_find(udev, ff_up.request_id);
2d56f3a3
PL
936 if (!req || req->code != UI_FF_UPLOAD ||
937 !req->u.upload.effect) {
1da177e4 938 retval = -EINVAL;
9d51e801 939 goto out;
1da177e4 940 }
2d56f3a3 941
1da177e4 942 req->retval = ff_up.retval;
0048e603 943 uinput_request_done(udev, req);
9d51e801 944 goto out;
1da177e4
LT
945
946 case UI_END_FF_ERASE:
947 if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
948 retval = -EFAULT;
9d51e801 949 goto out;
1da177e4 950 }
2d56f3a3 951
1da177e4 952 req = uinput_request_find(udev, ff_erase.request_id);
2d56f3a3 953 if (!req || req->code != UI_FF_ERASE) {
1da177e4 954 retval = -EINVAL;
9d51e801 955 goto out;
1da177e4 956 }
2d56f3a3 957
1da177e4 958 req->retval = ff_erase.retval;
0048e603 959 uinput_request_done(udev, req);
9d51e801 960 goto out;
1da177e4 961 }
29506415 962
e3480a61
BT
963 size = _IOC_SIZE(cmd);
964
965 /* Now check variable-length commands */
966 switch (cmd & ~IOCSIZE_MASK) {
967 case UI_GET_SYSNAME(0):
968 if (udev->state != UIST_CREATED) {
969 retval = -ENOENT;
970 goto out;
971 }
972 name = dev_name(&udev->dev->dev);
973 retval = uinput_str_to_user(p, name, size);
974 goto out;
052876f8
BT
975
976 case UI_ABS_SETUP & ~IOCSIZE_MASK:
977 retval = uinput_abs_setup(udev, p, size);
978 goto out;
e3480a61
BT
979 }
980
9d51e801 981 retval = -EINVAL;
29506415 982 out:
221979aa 983 mutex_unlock(&udev->mutex);
1da177e4
LT
984 return retval;
985}
986
2d56f3a3
PL
987static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
988{
989 return uinput_ioctl_handler(file, cmd, arg, (void __user *)arg);
990}
991
992#ifdef CONFIG_COMPAT
affa80bd
RL
993
994#define UI_SET_PHYS_COMPAT _IOW(UINPUT_IOCTL_BASE, 108, compat_uptr_t)
995
54ce165e
DT
996static long uinput_compat_ioctl(struct file *file,
997 unsigned int cmd, unsigned long arg)
2d56f3a3 998{
affa80bd
RL
999 if (cmd == UI_SET_PHYS_COMPAT)
1000 cmd = UI_SET_PHYS;
1001
2d56f3a3
PL
1002 return uinput_ioctl_handler(file, cmd, arg, compat_ptr(arg));
1003}
1004#endif
1005
2b8693c0 1006static const struct file_operations uinput_fops = {
29506415
DT
1007 .owner = THIS_MODULE,
1008 .open = uinput_open,
1009 .release = uinput_release,
1010 .read = uinput_read,
1011 .write = uinput_write,
1012 .poll = uinput_poll,
1013 .unlocked_ioctl = uinput_ioctl,
2d56f3a3
PL
1014#ifdef CONFIG_COMPAT
1015 .compat_ioctl = uinput_compat_ioctl,
1016#endif
6038f373 1017 .llseek = no_llseek,
1da177e4
LT
1018};
1019
1020static struct miscdevice uinput_misc = {
29506415
DT
1021 .fops = &uinput_fops,
1022 .minor = UINPUT_MINOR,
1023 .name = UINPUT_NAME,
1da177e4 1024};
ca75d601
PM
1025module_misc_device(uinput_misc);
1026
8905aaaf
KS
1027MODULE_ALIAS_MISCDEV(UINPUT_MINOR);
1028MODULE_ALIAS("devname:" UINPUT_NAME);
1da177e4 1029
1da177e4
LT
1030MODULE_AUTHOR("Aristeu Sergio Rozanski Filho");
1031MODULE_DESCRIPTION("User level driver support for input subsystem");
1032MODULE_LICENSE("GPL");
ff462551 1033MODULE_VERSION("0.3");