uinput.c 19.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 *  User level driver support for input subsystem
 *
 * Heavily based on evdev.c by Vojtech Pavlik
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 * Author: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
 *
 * Changes/Revisions:
23 24 25
 *	0.3	09/04/2006 (Anssi Hannula <anssi.hannula@gmail.com>)
 *		- updated ff support for the changes in kernel interface
 *		- added MODULE_VERSION
L
Linus Torvalds 已提交
26 27 28 29 30 31 32
 *	0.2	16/10/2004 (Micah Dowty <micah@navi.cx>)
 *		- added force feedback support
 *              - added UI_SET_PHYS
 *	0.1	20/06/2002
 *		- first public version
 */
#include <linux/poll.h>
33
#include <linux/sched.h>
L
Linus Torvalds 已提交
34 35 36 37 38 39
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/miscdevice.h>
#include <linux/uinput.h>
40
#include <linux/input/mt.h>
41
#include "../input-compat.h"
L
Linus Torvalds 已提交
42 43 44

static int uinput_dev_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
{
45
	struct uinput_device	*udev = input_get_drvdata(dev);
L
Linus Torvalds 已提交
46 47 48 49 50 51 52 53 54 55 56 57

	udev->buff[udev->head].type = type;
	udev->buff[udev->head].code = code;
	udev->buff[udev->head].value = value;
	do_gettimeofday(&udev->buff[udev->head].time);
	udev->head = (udev->head + 1) % UINPUT_BUFFER_SIZE;

	wake_up_interruptible(&udev->waitq);

	return 0;
}

58
/* Atomically allocate an ID for the given request. Returns 0 on success. */
59
static int uinput_request_alloc_id(struct uinput_device *udev, struct uinput_request *request)
L
Linus Torvalds 已提交
60 61
{
	int id;
62
	int err = -1;
L
Linus Torvalds 已提交
63

64
	spin_lock(&udev->requests_lock);
65

66
	for (id = 0; id < UINPUT_NUM_REQUESTS; id++) {
L
Linus Torvalds 已提交
67 68
		if (!udev->requests[id]) {
			request->id = id;
69
			udev->requests[id] = request;
70 71
			err = 0;
			break;
L
Linus Torvalds 已提交
72
		}
73
	}
74

75
	spin_unlock(&udev->requests_lock);
76
	return err;
L
Linus Torvalds 已提交
77 78
}

79
static struct uinput_request *uinput_request_find(struct uinput_device *udev, int id)
L
Linus Torvalds 已提交
80 81 82 83
{
	/* Find an input request, by ID. Returns NULL if the ID isn't valid. */
	if (id >= UINPUT_NUM_REQUESTS || id < 0)
		return NULL;
84

L
Linus Torvalds 已提交
85 86 87
	return udev->requests[id];
}

88
static inline int uinput_request_reserve_slot(struct uinput_device *udev, struct uinput_request *request)
L
Linus Torvalds 已提交
89
{
90 91 92 93
	/* Allocate slot. If none are available right away, wait. */
	return wait_event_interruptible(udev->requests_waitq,
					!uinput_request_alloc_id(udev, request));
}
L
Linus Torvalds 已提交
94

95 96 97 98
static void uinput_request_done(struct uinput_device *udev, struct uinput_request *request)
{
	/* Mark slot as available */
	udev->requests[request->id] = NULL;
99
	wake_up(&udev->requests_waitq);
100 101

	complete(&request->done);
L
Linus Torvalds 已提交
102 103
}

104
static int uinput_request_submit(struct uinput_device *udev, struct uinput_request *request)
L
Linus Torvalds 已提交
105
{
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
	int retval;

	retval = uinput_request_reserve_slot(udev, request);
	if (retval)
		return retval;

	retval = mutex_lock_interruptible(&udev->mutex);
	if (retval)
		return retval;

	if (udev->state != UIST_CREATED) {
		retval = -ENODEV;
		goto out;
	}

L
Linus Torvalds 已提交
121
	/* Tell our userspace app about this new request by queueing an input event */
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
	uinput_dev_event(udev->dev, EV_UINPUT, request->code, request->id);

 out:
	mutex_unlock(&udev->mutex);
	return retval;
}

/*
 * Fail all ouitstanding requests so handlers don't wait for the userspace
 * to finish processing them.
 */
static void uinput_flush_requests(struct uinput_device *udev)
{
	struct uinput_request *request;
	int i;
L
Linus Torvalds 已提交
137

138 139 140 141 142 143 144 145 146 147 148
	spin_lock(&udev->requests_lock);

	for (i = 0; i < UINPUT_NUM_REQUESTS; i++) {
		request = udev->requests[i];
		if (request) {
			request->retval = -ENODEV;
			uinput_request_done(udev, request);
		}
	}

	spin_unlock(&udev->requests_lock);
L
Linus Torvalds 已提交
149 150
}

151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
static void uinput_dev_set_gain(struct input_dev *dev, u16 gain)
{
	uinput_dev_event(dev, EV_FF, FF_GAIN, gain);
}

static void uinput_dev_set_autocenter(struct input_dev *dev, u16 magnitude)
{
	uinput_dev_event(dev, EV_FF, FF_AUTOCENTER, magnitude);
}

static int uinput_dev_playback(struct input_dev *dev, int effect_id, int value)
{
	return uinput_dev_event(dev, EV_FF, effect_id, value);
}

static int uinput_dev_upload_effect(struct input_dev *dev, struct ff_effect *effect, struct ff_effect *old)
L
Linus Torvalds 已提交
167
{
168
	struct uinput_device *udev = input_get_drvdata(dev);
L
Linus Torvalds 已提交
169
	struct uinput_request request;
170
	int retval;
L
Linus Torvalds 已提交
171

172 173 174 175 176 177 178 179 180 181 182
	/*
	 * uinput driver does not currently support periodic effects with
	 * custom waveform since it does not have a way to pass buffer of
	 * samples (custom_data) to userspace. If ever there is a device
	 * supporting custom waveforms we would need to define an additional
	 * ioctl (UI_UPLOAD_SAMPLES) but for now we just bail out.
	 */
	if (effect->type == FF_PERIODIC &&
			effect->u.periodic.waveform == FF_CUSTOM)
		return -EINVAL;

183 184 185
	request.id = -1;
	init_completion(&request.done);
	request.code = UI_FF_UPLOAD;
186 187
	request.u.upload.effect = effect;
	request.u.upload.old = old;
188

189 190 191 192 193
	retval = uinput_request_submit(udev, &request);
	if (!retval) {
		wait_for_completion(&request.done);
		retval = request.retval;
	}
194 195

	return retval;
L
Linus Torvalds 已提交
196 197 198 199
}

static int uinput_dev_erase_effect(struct input_dev *dev, int effect_id)
{
200
	struct uinput_device *udev = input_get_drvdata(dev);
L
Linus Torvalds 已提交
201
	struct uinput_request request;
202
	int retval;
L
Linus Torvalds 已提交
203 204 205 206

	if (!test_bit(EV_FF, dev->evbit))
		return -ENOSYS;

207 208 209
	request.id = -1;
	init_completion(&request.done);
	request.code = UI_FF_ERASE;
L
Linus Torvalds 已提交
210
	request.u.effect_id = effect_id;
211

212 213 214 215 216
	retval = uinput_request_submit(udev, &request);
	if (!retval) {
		wait_for_completion(&request.done);
		retval = request.retval;
	}
217 218

	return retval;
L
Linus Torvalds 已提交
219 220
}

221
static void uinput_destroy_device(struct uinput_device *udev)
L
Linus Torvalds 已提交
222
{
223
	const char *name, *phys;
224 225 226 227
	struct input_dev *dev = udev->dev;
	enum uinput_state old_state = udev->state;

	udev->state = UIST_NEW_DEVICE;
228

229 230 231 232 233 234 235 236 237
	if (dev) {
		name = dev->name;
		phys = dev->phys;
		if (old_state == UIST_CREATED) {
			uinput_flush_requests(udev);
			input_unregister_device(dev);
		} else {
			input_free_device(dev);
		}
238 239 240
		kfree(name);
		kfree(phys);
		udev->dev = NULL;
L
Linus Torvalds 已提交
241 242 243
	}
}

244
static int uinput_create_device(struct uinput_device *udev)
L
Linus Torvalds 已提交
245
{
246
	struct input_dev *dev = udev->dev;
247 248 249 250
	int error;

	if (udev->state != UIST_SETUP_COMPLETE) {
		printk(KERN_DEBUG "%s: write device info first\n", UINPUT_NAME);
L
Linus Torvalds 已提交
251 252 253
		return -EINVAL;
	}

254 255 256 257 258 259 260 261 262 263
	if (udev->ff_effects_max) {
		error = input_ff_create(dev, udev->ff_effects_max);
		if (error)
			goto fail1;

		dev->ff->upload = uinput_dev_upload_effect;
		dev->ff->erase = uinput_dev_erase_effect;
		dev->ff->playback = uinput_dev_playback;
		dev->ff->set_gain = uinput_dev_set_gain;
		dev->ff->set_autocenter = uinput_dev_set_autocenter;
264
	}
L
Linus Torvalds 已提交
265

266 267 268 269
	error = input_register_device(udev->dev);
	if (error)
		goto fail2;

270
	udev->state = UIST_CREATED;
L
Linus Torvalds 已提交
271 272

	return 0;
273 274 275 276

 fail2:	input_ff_destroy(dev);
 fail1: uinput_destroy_device(udev);
	return error;
L
Linus Torvalds 已提交
277 278 279 280
}

static int uinput_open(struct inode *inode, struct file *file)
{
281
	struct uinput_device *newdev;
L
Linus Torvalds 已提交
282

283
	newdev = kzalloc(sizeof(struct uinput_device), GFP_KERNEL);
L
Linus Torvalds 已提交
284
	if (!newdev)
285 286
		return -ENOMEM;

287
	mutex_init(&newdev->mutex);
288
	spin_lock_init(&newdev->requests_lock);
L
Linus Torvalds 已提交
289
	init_waitqueue_head(&newdev->requests_waitq);
290 291
	init_waitqueue_head(&newdev->waitq);
	newdev->state = UIST_NEW_DEVICE;
L
Linus Torvalds 已提交
292 293

	file->private_data = newdev;
294
	nonseekable_open(inode, file);
L
Linus Torvalds 已提交
295 296 297 298 299 300 301 302 303

	return 0;
}

static int uinput_validate_absbits(struct input_dev *dev)
{
	unsigned int cnt;
	int retval = 0;

304
	for (cnt = 0; cnt < ABS_CNT; cnt++) {
L
Linus Torvalds 已提交
305 306 307
		if (!test_bit(cnt, dev->absbit))
			continue;

308
		if (input_abs_get_max(dev, cnt) <= input_abs_get_min(dev, cnt)) {
L
Linus Torvalds 已提交
309 310 311
			printk(KERN_DEBUG
				"%s: invalid abs[%02x] min:%d max:%d\n",
				UINPUT_NAME, cnt,
312 313
				input_abs_get_min(dev, cnt),
				input_abs_get_max(dev, cnt));
L
Linus Torvalds 已提交
314 315 316 317
			retval = -EINVAL;
			break;
		}

318 319
		if (input_abs_get_flat(dev, cnt) >
		    input_abs_get_max(dev, cnt) - input_abs_get_min(dev, cnt)) {
L
Linus Torvalds 已提交
320
			printk(KERN_DEBUG
321
				"%s: abs_flat #%02x out of range: %d "
L
Linus Torvalds 已提交
322
				"(min:%d/max:%d)\n",
323 324 325 326
				UINPUT_NAME, cnt,
				input_abs_get_flat(dev, cnt),
				input_abs_get_min(dev, cnt),
				input_abs_get_max(dev, cnt));
L
Linus Torvalds 已提交
327 328 329 330 331 332 333
			retval = -EINVAL;
			break;
		}
	}
	return retval;
}

334 335 336 337 338 339 340
static int uinput_allocate_device(struct uinput_device *udev)
{
	udev->dev = input_allocate_device();
	if (!udev->dev)
		return -ENOMEM;

	udev->dev->event = uinput_dev_event;
341
	input_set_drvdata(udev->dev, udev);
342 343 344 345 346

	return 0;
}

static int uinput_setup_device(struct uinput_device *udev, const char __user *buffer, size_t count)
L
Linus Torvalds 已提交
347 348 349
{
	struct uinput_user_dev	*user_dev;
	struct input_dev	*dev;
350
	char			*name;
351
	int			i, size;
352
	int			retval;
L
Linus Torvalds 已提交
353

354 355 356 357 358 359 360 361
	if (count != sizeof(struct uinput_user_dev))
		return -EINVAL;

	if (!udev->dev) {
		retval = uinput_allocate_device(udev);
		if (retval)
			return retval;
	}
L
Linus Torvalds 已提交
362 363 364

	dev = udev->dev;

365
	user_dev = kmalloc(sizeof(struct uinput_user_dev), GFP_KERNEL);
366 367
	if (!user_dev)
		return -ENOMEM;
L
Linus Torvalds 已提交
368 369 370 371 372 373

	if (copy_from_user(user_dev, buffer, sizeof(struct uinput_user_dev))) {
		retval = -EFAULT;
		goto exit;
	}

374 375
	udev->ff_effects_max = user_dev->ff_effects_max;

L
Linus Torvalds 已提交
376
	size = strnlen(user_dev->name, UINPUT_MAX_NAME_SIZE) + 1;
377 378 379 380 381 382
	if (!size) {
		retval = -EINVAL;
		goto exit;
	}

	kfree(dev->name);
383 384
	dev->name = name = kmalloc(size, GFP_KERNEL);
	if (!name) {
L
Linus Torvalds 已提交
385 386 387
		retval = -ENOMEM;
		goto exit;
	}
388
	strlcpy(name, user_dev->name, size);
L
Linus Torvalds 已提交
389 390 391 392 393 394

	dev->id.bustype	= user_dev->id.bustype;
	dev->id.vendor	= user_dev->id.vendor;
	dev->id.product	= user_dev->id.product;
	dev->id.version	= user_dev->id.version;

395 396 397 398 399 400
	for (i = 0; i < ABS_CNT; i++) {
		input_abs_set_max(dev, i, user_dev->absmax[i]);
		input_abs_set_min(dev, i, user_dev->absmin[i]);
		input_abs_set_fuzz(dev, i, user_dev->absfuzz[i]);
		input_abs_set_flat(dev, i, user_dev->absflat[i]);
	}
L
Linus Torvalds 已提交
401 402 403 404

	/* check if absmin/absmax/absfuzz/absflat are filled as
	 * told in Documentation/input/input-programming.txt */
	if (test_bit(EV_ABS, dev->evbit)) {
405 406 407
		retval = uinput_validate_absbits(dev);
		if (retval < 0)
			goto exit;
408 409
		if (test_bit(ABS_MT_SLOT, dev->absbit)) {
			int nslot = input_abs_get_max(dev, ABS_MT_SLOT) + 1;
410
			input_mt_init_slots(dev, nslot);
411 412 413
		} else if (test_bit(ABS_MT_POSITION_X, dev->absbit)) {
			input_set_events_per_packet(dev, 60);
		}
L
Linus Torvalds 已提交
414 415
	}

416 417 418 419
	udev->state = UIST_SETUP_COMPLETE;
	retval = count;

 exit:
L
Linus Torvalds 已提交
420 421 422 423
	kfree(user_dev);
	return retval;
}

424 425 426 427
static inline ssize_t uinput_inject_event(struct uinput_device *udev, const char __user *buffer, size_t count)
{
	struct input_event ev;

428
	if (count < input_event_size())
429 430
		return -EINVAL;

431
	if (input_event_from_user(buffer, &ev))
432 433 434 435
		return -EFAULT;

	input_event(udev->dev, ev.type, ev.code, ev.value);

436
	return input_event_size();
437 438
}

L
Linus Torvalds 已提交
439 440 441
static ssize_t uinput_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
{
	struct uinput_device *udev = file->private_data;
442
	int retval;
L
Linus Torvalds 已提交
443

444
	retval = mutex_lock_interruptible(&udev->mutex);
445 446 447 448 449 450
	if (retval)
		return retval;

	retval = udev->state == UIST_CREATED ?
			uinput_inject_event(udev, buffer, count) :
			uinput_setup_device(udev, buffer, count);
L
Linus Torvalds 已提交
451

452
	mutex_unlock(&udev->mutex);
L
Linus Torvalds 已提交
453

454
	return retval;
L
Linus Torvalds 已提交
455 456 457 458 459 460 461
}

static ssize_t uinput_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
{
	struct uinput_device *udev = file->private_data;
	int retval = 0;

462
	if (udev->state != UIST_CREATED)
L
Linus Torvalds 已提交
463 464
		return -ENODEV;

465
	if (udev->head == udev->tail && (file->f_flags & O_NONBLOCK))
L
Linus Torvalds 已提交
466 467 468
		return -EAGAIN;

	retval = wait_event_interruptible(udev->waitq,
469
			udev->head != udev->tail || udev->state != UIST_CREATED);
L
Linus Torvalds 已提交
470 471 472
	if (retval)
		return retval;

473
	retval = mutex_lock_interruptible(&udev->mutex);
474 475 476 477 478 479 480
	if (retval)
		return retval;

	if (udev->state != UIST_CREATED) {
		retval = -ENODEV;
		goto out;
	}
L
Linus Torvalds 已提交
481

482 483
	while (udev->head != udev->tail && retval + input_event_size() <= count) {
		if (input_event_to_user(buffer + retval, &udev->buff[udev->tail])) {
484 485 486
			retval = -EFAULT;
			goto out;
		}
L
Linus Torvalds 已提交
487
		udev->tail = (udev->tail + 1) % UINPUT_BUFFER_SIZE;
488
		retval += input_event_size();
L
Linus Torvalds 已提交
489 490
	}

491
 out:
492
	mutex_unlock(&udev->mutex);
493

L
Linus Torvalds 已提交
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
	return retval;
}

static unsigned int uinput_poll(struct file *file, poll_table *wait)
{
	struct uinput_device *udev = file->private_data;

	poll_wait(file, &udev->waitq, wait);

	if (udev->head != udev->tail)
		return POLLIN | POLLRDNORM;

	return 0;
}

509
static int uinput_release(struct inode *inode, struct file *file)
L
Linus Torvalds 已提交
510
{
511
	struct uinput_device *udev = file->private_data;
L
Linus Torvalds 已提交
512

513
	uinput_destroy_device(udev);
L
Linus Torvalds 已提交
514 515 516 517 518
	kfree(udev);

	return 0;
}

519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
#ifdef CONFIG_COMPAT
struct uinput_ff_upload_compat {
	int			request_id;
	int			retval;
	struct ff_effect_compat	effect;
	struct ff_effect_compat	old;
};

static int uinput_ff_upload_to_user(char __user *buffer,
				    const struct uinput_ff_upload *ff_up)
{
	if (INPUT_COMPAT_TEST) {
		struct uinput_ff_upload_compat ff_up_compat;

		ff_up_compat.request_id = ff_up->request_id;
		ff_up_compat.retval = ff_up->retval;
		/*
		 * It so happens that the pointer that gives us the trouble
		 * is the last field in the structure. Since we don't support
		 * custom waveforms in uinput anyway we can just copy the whole
		 * thing (to the compat size) and ignore the pointer.
		 */
		memcpy(&ff_up_compat.effect, &ff_up->effect,
			sizeof(struct ff_effect_compat));
		memcpy(&ff_up_compat.old, &ff_up->old,
			sizeof(struct ff_effect_compat));

		if (copy_to_user(buffer, &ff_up_compat,
				 sizeof(struct uinput_ff_upload_compat)))
			return -EFAULT;
	} else {
		if (copy_to_user(buffer, ff_up,
				 sizeof(struct uinput_ff_upload)))
			return -EFAULT;
	}

	return 0;
}

static int uinput_ff_upload_from_user(const char __user *buffer,
				      struct uinput_ff_upload *ff_up)
{
	if (INPUT_COMPAT_TEST) {
		struct uinput_ff_upload_compat ff_up_compat;

		if (copy_from_user(&ff_up_compat, buffer,
				   sizeof(struct uinput_ff_upload_compat)))
			return -EFAULT;

		ff_up->request_id = ff_up_compat.request_id;
		ff_up->retval = ff_up_compat.retval;
		memcpy(&ff_up->effect, &ff_up_compat.effect,
			sizeof(struct ff_effect_compat));
		memcpy(&ff_up->old, &ff_up_compat.old,
			sizeof(struct ff_effect_compat));

	} else {
		if (copy_from_user(ff_up, buffer,
				   sizeof(struct uinput_ff_upload)))
			return -EFAULT;
	}

	return 0;
}

#else

static int uinput_ff_upload_to_user(char __user *buffer,
				    const struct uinput_ff_upload *ff_up)
{
	if (copy_to_user(buffer, ff_up, sizeof(struct uinput_ff_upload)))
		return -EFAULT;

	return 0;
}

static int uinput_ff_upload_from_user(const char __user *buffer,
				      struct uinput_ff_upload *ff_up)
{
	if (copy_from_user(ff_up, buffer, sizeof(struct uinput_ff_upload)))
		return -EFAULT;

	return 0;
}

#endif

606 607 608 609 610 611 612 613 614 615 616
#define uinput_set_bit(_arg, _bit, _max)		\
({							\
	int __ret = 0;					\
	if (udev->state == UIST_CREATED)		\
		__ret =  -EINVAL;			\
	else if ((_arg) > (_max))			\
		__ret = -EINVAL;			\
	else set_bit((_arg), udev->dev->_bit);		\
	__ret;						\
})

617 618
static long uinput_ioctl_handler(struct file *file, unsigned int cmd,
				 unsigned long arg, void __user *p)
L
Linus Torvalds 已提交
619
{
620
	int			retval;
621
	struct uinput_device	*udev = file->private_data;
L
Linus Torvalds 已提交
622 623 624 625
	struct uinput_ff_upload ff_up;
	struct uinput_ff_erase  ff_erase;
	struct uinput_request   *req;
	int                     length;
626
	char			*phys;
L
Linus Torvalds 已提交
627

628
	retval = mutex_lock_interruptible(&udev->mutex);
629 630 631 632 633 634 635
	if (retval)
		return retval;

	if (!udev->dev) {
		retval = uinput_allocate_device(udev);
		if (retval)
			goto out;
L
Linus Torvalds 已提交
636 637 638 639 640 641 642 643
	}

	switch (cmd) {
		case UI_DEV_CREATE:
			retval = uinput_create_device(udev);
			break;

		case UI_DEV_DESTROY:
644
			uinput_destroy_device(udev);
L
Linus Torvalds 已提交
645 646 647
			break;

		case UI_SET_EVBIT:
648
			retval = uinput_set_bit(arg, evbit, EV_MAX);
L
Linus Torvalds 已提交
649 650 651
			break;

		case UI_SET_KEYBIT:
652
			retval = uinput_set_bit(arg, keybit, KEY_MAX);
L
Linus Torvalds 已提交
653 654 655
			break;

		case UI_SET_RELBIT:
656
			retval = uinput_set_bit(arg, relbit, REL_MAX);
L
Linus Torvalds 已提交
657 658 659
			break;

		case UI_SET_ABSBIT:
660
			retval = uinput_set_bit(arg, absbit, ABS_MAX);
L
Linus Torvalds 已提交
661 662 663
			break;

		case UI_SET_MSCBIT:
664
			retval = uinput_set_bit(arg, mscbit, MSC_MAX);
L
Linus Torvalds 已提交
665 666 667
			break;

		case UI_SET_LEDBIT:
668
			retval = uinput_set_bit(arg, ledbit, LED_MAX);
L
Linus Torvalds 已提交
669 670 671
			break;

		case UI_SET_SNDBIT:
672
			retval = uinput_set_bit(arg, sndbit, SND_MAX);
L
Linus Torvalds 已提交
673 674 675
			break;

		case UI_SET_FFBIT:
676
			retval = uinput_set_bit(arg, ffbit, FF_MAX);
L
Linus Torvalds 已提交
677 678
			break;

679 680 681 682
		case UI_SET_SWBIT:
			retval = uinput_set_bit(arg, swbit, SW_MAX);
			break;

L
Linus Torvalds 已提交
683
		case UI_SET_PHYS:
684 685 686 687
			if (udev->state == UIST_CREATED) {
				retval = -EINVAL;
				goto out;
			}
L
Linus Torvalds 已提交
688 689 690 691 692
			length = strnlen_user(p, 1024);
			if (length <= 0) {
				retval = -EFAULT;
				break;
			}
693 694 695
			kfree(udev->dev->phys);
			udev->dev->phys = phys = kmalloc(length, GFP_KERNEL);
			if (!phys) {
L
Linus Torvalds 已提交
696 697 698
				retval = -ENOMEM;
				break;
			}
699
			if (copy_from_user(phys, p, length)) {
L
Linus Torvalds 已提交
700
				udev->dev->phys = NULL;
701 702
				kfree(phys);
				retval = -EFAULT;
L
Linus Torvalds 已提交
703 704
				break;
			}
705
			phys[length - 1] = '\0';
L
Linus Torvalds 已提交
706 707 708
			break;

		case UI_BEGIN_FF_UPLOAD:
709 710
			retval = uinput_ff_upload_from_user(p, &ff_up);
			if (retval)
L
Linus Torvalds 已提交
711
				break;
712

L
Linus Torvalds 已提交
713
			req = uinput_request_find(udev, ff_up.request_id);
714
			if (!req || req->code != UI_FF_UPLOAD || !req->u.upload.effect) {
L
Linus Torvalds 已提交
715 716 717
				retval = -EINVAL;
				break;
			}
718

L
Linus Torvalds 已提交
719
			ff_up.retval = 0;
720
			ff_up.effect = *req->u.upload.effect;
721
			if (req->u.upload.old)
722
				ff_up.old = *req->u.upload.old;
723 724 725
			else
				memset(&ff_up.old, 0, sizeof(struct ff_effect));

726
			retval = uinput_ff_upload_to_user(p, &ff_up);
L
Linus Torvalds 已提交
727 728 729 730 731 732 733
			break;

		case UI_BEGIN_FF_ERASE:
			if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
				retval = -EFAULT;
				break;
			}
734

L
Linus Torvalds 已提交
735
			req = uinput_request_find(udev, ff_erase.request_id);
736
			if (!req || req->code != UI_FF_ERASE) {
L
Linus Torvalds 已提交
737 738 739
				retval = -EINVAL;
				break;
			}
740

L
Linus Torvalds 已提交
741 742 743 744 745 746
			ff_erase.retval = 0;
			ff_erase.effect_id = req->u.effect_id;
			if (copy_to_user(p, &ff_erase, sizeof(ff_erase))) {
				retval = -EFAULT;
				break;
			}
747

L
Linus Torvalds 已提交
748 749 750
			break;

		case UI_END_FF_UPLOAD:
751 752
			retval = uinput_ff_upload_from_user(p, &ff_up);
			if (retval)
L
Linus Torvalds 已提交
753
				break;
754

L
Linus Torvalds 已提交
755
			req = uinput_request_find(udev, ff_up.request_id);
756 757
			if (!req || req->code != UI_FF_UPLOAD ||
			    !req->u.upload.effect) {
L
Linus Torvalds 已提交
758 759 760
				retval = -EINVAL;
				break;
			}
761

L
Linus Torvalds 已提交
762
			req->retval = ff_up.retval;
763
			uinput_request_done(udev, req);
L
Linus Torvalds 已提交
764 765 766 767 768 769 770
			break;

		case UI_END_FF_ERASE:
			if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
				retval = -EFAULT;
				break;
			}
771

L
Linus Torvalds 已提交
772
			req = uinput_request_find(udev, ff_erase.request_id);
773
			if (!req || req->code != UI_FF_ERASE) {
L
Linus Torvalds 已提交
774 775 776
				retval = -EINVAL;
				break;
			}
777

L
Linus Torvalds 已提交
778
			req->retval = ff_erase.retval;
779
			uinput_request_done(udev, req);
L
Linus Torvalds 已提交
780 781 782 783 784
			break;

		default:
			retval = -EINVAL;
	}
785 786

 out:
787
	mutex_unlock(&udev->mutex);
L
Linus Torvalds 已提交
788 789 790
	return retval;
}

791 792 793 794 795 796 797 798 799 800 801 802
static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
	return uinput_ioctl_handler(file, cmd, arg, (void __user *)arg);
}

#ifdef CONFIG_COMPAT
static long uinput_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
	return uinput_ioctl_handler(file, cmd, arg, compat_ptr(arg));
}
#endif

803
static const struct file_operations uinput_fops = {
804 805 806 807 808 809 810
	.owner		= THIS_MODULE,
	.open		= uinput_open,
	.release	= uinput_release,
	.read		= uinput_read,
	.write		= uinput_write,
	.poll		= uinput_poll,
	.unlocked_ioctl	= uinput_ioctl,
811 812 813
#ifdef CONFIG_COMPAT
	.compat_ioctl	= uinput_compat_ioctl,
#endif
814
	.llseek		= no_llseek,
L
Linus Torvalds 已提交
815 816 817
};

static struct miscdevice uinput_misc = {
818 819 820
	.fops		= &uinput_fops,
	.minor		= UINPUT_MINOR,
	.name		= UINPUT_NAME,
L
Linus Torvalds 已提交
821
};
822 823
MODULE_ALIAS_MISCDEV(UINPUT_MINOR);
MODULE_ALIAS("devname:" UINPUT_NAME);
L
Linus Torvalds 已提交
824 825 826 827 828 829 830 831 832 833 834 835 836 837

static int __init uinput_init(void)
{
	return misc_register(&uinput_misc);
}

static void __exit uinput_exit(void)
{
	misc_deregister(&uinput_misc);
}

MODULE_AUTHOR("Aristeu Sergio Rozanski Filho");
MODULE_DESCRIPTION("User level driver support for input subsystem");
MODULE_LICENSE("GPL");
838
MODULE_VERSION("0.3");
L
Linus Torvalds 已提交
839 840 841 842

module_init(uinput_init);
module_exit(uinput_exit);