blob: b6ded17b3be3adda86ca93bf582f679f837442aa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Event char devices, giving access to raw input device events.
3 *
4 * Copyright (c) 1999-2002 Vojtech Pavlik
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 */
10
Joe Perchesda0c4902010-11-29 23:33:07 -080011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#define EVDEV_MINOR_BASE 64
14#define EVDEV_MINORS 32
Henrik Rydberg63a64042010-06-10 12:05:24 -070015#define EVDEV_MIN_BUFFER_SIZE 64U
16#define EVDEV_BUF_PACKETS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <linux/poll.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040019#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
21#include <linux/module.h>
22#include <linux/init.h>
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +010023#include <linux/input/mt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/device.h>
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070026#include <linux/cdev.h>
Philip Langdale2d56f3a2008-10-16 22:31:42 -040027#include "input-compat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29struct evdev {
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 int open;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 struct input_handle handle;
32 wait_queue_head_t wait;
Arnd Bergmann2be85272010-03-04 15:50:28 +010033 struct evdev_client __rcu *grab;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040034 struct list_head client_list;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040035 spinlock_t client_lock; /* protects client_list */
36 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040037 struct device dev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070038 struct cdev cdev;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -070039 bool exist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040042struct evdev_client {
Jeff Brown9fb0f142011-04-12 23:29:38 -070043 unsigned int head;
44 unsigned int tail;
Jeff Browncdda9112011-04-26 22:16:11 -070045 unsigned int packet_head; /* [future] position of the first element of next packet */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040046 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 struct fasync_struct *fasync;
48 struct evdev *evdev;
49 struct list_head node;
John Stultza80b83b2012-02-03 00:19:07 -080050 int clkid;
David Herrmannc7dc6572013-09-07 12:23:05 -070051 bool revoked;
Jeff Brown9fb0f142011-04-12 23:29:38 -070052 unsigned int bufsize;
Henrik Rydbergb58f7082010-06-23 09:17:56 -070053 struct input_event buffer[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
David Herrmann48318022013-04-07 21:13:19 -070056/* flush queued events of type @type, caller must hold client->buffer_lock */
57static void __evdev_flush_queue(struct evdev_client *client, unsigned int type)
58{
59 unsigned int i, head, num;
60 unsigned int mask = client->bufsize - 1;
61 bool is_report;
62 struct input_event *ev;
63
64 BUG_ON(type == EV_SYN);
65
66 head = client->tail;
67 client->packet_head = client->tail;
68
69 /* init to 1 so a leading SYN_REPORT will not be dropped */
70 num = 1;
71
72 for (i = client->tail; i != client->head; i = (i + 1) & mask) {
73 ev = &client->buffer[i];
74 is_report = ev->type == EV_SYN && ev->code == SYN_REPORT;
75
76 if (ev->type == type) {
77 /* drop matched entry */
78 continue;
79 } else if (is_report && !num) {
80 /* drop empty SYN_REPORT groups */
81 continue;
82 } else if (head != i) {
83 /* move entry to fill the gap */
84 client->buffer[head].time = ev->time;
85 client->buffer[head].type = ev->type;
86 client->buffer[head].code = ev->code;
87 client->buffer[head].value = ev->value;
88 }
89
90 num++;
91 head = (head + 1) & mask;
92
93 if (is_report) {
94 num = 0;
95 client->packet_head = head;
96 }
97 }
98
99 client->head = head;
100}
101
102/* queue SYN_DROPPED event */
103static void evdev_queue_syn_dropped(struct evdev_client *client)
104{
105 unsigned long flags;
106 struct input_event ev;
107 ktime_t time;
108
109 time = ktime_get();
110 if (client->clkid != CLOCK_MONOTONIC)
111 time = ktime_sub(time, ktime_get_monotonic_offset());
112
113 ev.time = ktime_to_timeval(time);
114 ev.type = EV_SYN;
115 ev.code = SYN_DROPPED;
116 ev.value = 0;
117
118 spin_lock_irqsave(&client->buffer_lock, flags);
119
120 client->buffer[client->head++] = ev;
121 client->head &= client->bufsize - 1;
122
123 if (unlikely(client->head == client->tail)) {
124 /* drop queue but keep our SYN_DROPPED event */
125 client->tail = (client->head - 1) & (client->bufsize - 1);
126 client->packet_head = client->tail;
127 }
128
129 spin_unlock_irqrestore(&client->buffer_lock, flags);
130}
131
Henrik Rydberga274ac12012-08-29 20:48:02 +0200132static void __pass_event(struct evdev_client *client,
133 const struct input_event *event)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400134{
Jeff Brown9fb0f142011-04-12 23:29:38 -0700135 client->buffer[client->head++] = *event;
136 client->head &= client->bufsize - 1;
137
138 if (unlikely(client->head == client->tail)) {
139 /*
140 * This effectively "drops" all unconsumed events, leaving
141 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
142 */
143 client->tail = (client->head - 2) & (client->bufsize - 1);
144
145 client->buffer[client->tail].time = event->time;
146 client->buffer[client->tail].type = EV_SYN;
147 client->buffer[client->tail].code = SYN_DROPPED;
148 client->buffer[client->tail].value = 0;
Jeff Browncdda9112011-04-26 22:16:11 -0700149
150 client->packet_head = client->tail;
151 }
152
153 if (event->type == EV_SYN && event->code == SYN_REPORT) {
154 client->packet_head = client->head;
155 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Jeff Brown9fb0f142011-04-12 23:29:38 -0700156 }
Henrik Rydberga274ac12012-08-29 20:48:02 +0200157}
158
159static void evdev_pass_values(struct evdev_client *client,
160 const struct input_value *vals, unsigned int count,
161 ktime_t mono, ktime_t real)
162{
163 struct evdev *evdev = client->evdev;
164 const struct input_value *v;
165 struct input_event event;
166 bool wakeup = false;
167
David Herrmannc7dc6572013-09-07 12:23:05 -0700168 if (client->revoked)
169 return;
170
Henrik Rydberga274ac12012-08-29 20:48:02 +0200171 event.time = ktime_to_timeval(client->clkid == CLOCK_MONOTONIC ?
172 mono : real);
173
174 /* Interrupts are disabled, just acquire the lock. */
175 spin_lock(&client->buffer_lock);
176
177 for (v = vals; v != vals + count; v++) {
178 event.type = v->type;
179 event.code = v->code;
180 event.value = v->value;
181 __pass_event(client, &event);
182 if (v->type == EV_SYN && v->code == SYN_REPORT)
183 wakeup = true;
184 }
Jeff Brown9fb0f142011-04-12 23:29:38 -0700185
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400186 spin_unlock(&client->buffer_lock);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200187
188 if (wakeup)
189 wake_up_interruptible(&evdev->wait);
190}
191
192/*
193 * Pass incoming events to all connected clients.
194 */
195static void evdev_events(struct input_handle *handle,
196 const struct input_value *vals, unsigned int count)
197{
198 struct evdev *evdev = handle->private;
199 struct evdev_client *client;
200 ktime_t time_mono, time_real;
201
202 time_mono = ktime_get();
203 time_real = ktime_sub(time_mono, ktime_get_monotonic_offset());
204
205 rcu_read_lock();
206
207 client = rcu_dereference(evdev->grab);
208
209 if (client)
210 evdev_pass_values(client, vals, count, time_mono, time_real);
211 else
212 list_for_each_entry_rcu(client, &evdev->client_list, node)
213 evdev_pass_values(client, vals, count,
214 time_mono, time_real);
215
216 rcu_read_unlock();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400217}
218
219/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400220 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400221 */
222static void evdev_event(struct input_handle *handle,
223 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Henrik Rydberga274ac12012-08-29 20:48:02 +0200225 struct input_value vals[] = { { type, code, value } };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Henrik Rydberga274ac12012-08-29 20:48:02 +0200227 evdev_events(handle, vals, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
230static int evdev_fasync(int fd, struct file *file, int on)
231{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400232 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400233
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700234 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400237static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400239 struct evdev_client *client = file->private_data;
240 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400241 int retval;
242
243 retval = mutex_lock_interruptible(&evdev->mutex);
244 if (retval)
245 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400246
David Herrmannc7dc6572013-09-07 12:23:05 -0700247 if (!evdev->exist || client->revoked)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400248 retval = -ENODEV;
249 else
250 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400251
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400252 mutex_unlock(&evdev->mutex);
253 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400256static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400258 struct evdev *evdev = container_of(dev, struct evdev, dev);
259
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400260 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 kfree(evdev);
262}
263
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400264/*
265 * Grabs an event device (along with underlying input device).
266 * This function is called with evdev->mutex taken.
267 */
268static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
269{
270 int error;
271
272 if (evdev->grab)
273 return -EBUSY;
274
275 error = input_grab_device(&evdev->handle);
276 if (error)
277 return error;
278
279 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400280
281 return 0;
282}
283
284static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
285{
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700286 struct evdev_client *grab = rcu_dereference_protected(evdev->grab,
287 lockdep_is_held(&evdev->mutex));
288
289 if (grab != client)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400290 return -EINVAL;
291
292 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400293 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400294 input_release_device(&evdev->handle);
295
296 return 0;
297}
298
299static void evdev_attach_client(struct evdev *evdev,
300 struct evdev_client *client)
301{
302 spin_lock(&evdev->client_lock);
303 list_add_tail_rcu(&client->node, &evdev->client_list);
304 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400305}
306
307static void evdev_detach_client(struct evdev *evdev,
308 struct evdev_client *client)
309{
310 spin_lock(&evdev->client_lock);
311 list_del_rcu(&client->node);
312 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400313 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400314}
315
316static int evdev_open_device(struct evdev *evdev)
317{
318 int retval;
319
320 retval = mutex_lock_interruptible(&evdev->mutex);
321 if (retval)
322 return retval;
323
324 if (!evdev->exist)
325 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400326 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400327 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400328 if (retval)
329 evdev->open--;
330 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400331
332 mutex_unlock(&evdev->mutex);
333 return retval;
334}
335
336static void evdev_close_device(struct evdev *evdev)
337{
338 mutex_lock(&evdev->mutex);
339
340 if (evdev->exist && !--evdev->open)
341 input_close_device(&evdev->handle);
342
343 mutex_unlock(&evdev->mutex);
344}
345
346/*
347 * Wake up users waiting for IO so they can disconnect from
348 * dead device.
349 */
350static void evdev_hangup(struct evdev *evdev)
351{
352 struct evdev_client *client;
353
354 spin_lock(&evdev->client_lock);
355 list_for_each_entry(client, &evdev->client_list, node)
356 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
357 spin_unlock(&evdev->client_lock);
358
359 wake_up_interruptible(&evdev->wait);
360}
361
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400362static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400364 struct evdev_client *client = file->private_data;
365 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400367 mutex_lock(&evdev->mutex);
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700368 evdev_ungrab(evdev, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400369 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400371 evdev_detach_client(evdev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400372 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400374 evdev_close_device(evdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377}
378
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700379static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
380{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700381 unsigned int n_events =
382 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
383 EVDEV_MIN_BUFFER_SIZE);
384
385 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700386}
387
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400388static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700390 struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev);
391 unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400392 struct evdev_client *client;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400393 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700395 client = kzalloc(sizeof(struct evdev_client) +
396 bufsize * sizeof(struct input_event),
397 GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700398 if (!client)
399 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700401 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400402 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400403 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400404 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400406 error = evdev_open_device(evdev);
407 if (error)
408 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400410 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800411 nonseekable_open(inode, file);
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400414
415 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400416 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400417 kfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400418 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400421static ssize_t evdev_write(struct file *file, const char __user *buffer,
422 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400424 struct evdev_client *client = file->private_data;
425 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800427 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700429 if (count != 0 && count < input_event_size())
Peter Korsgaard439581e2011-02-25 09:30:46 -0800430 return -EINVAL;
431
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400432 retval = mutex_lock_interruptible(&evdev->mutex);
433 if (retval)
434 return retval;
435
David Herrmannc7dc6572013-09-07 12:23:05 -0700436 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400437 retval = -ENODEV;
438 goto out;
439 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500440
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700441 while (retval + input_event_size() <= count) {
442
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400443 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400444 retval = -EFAULT;
445 goto out;
446 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800447 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400448
449 input_inject_event(&evdev->handle,
450 event.type, event.code, event.value);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700451 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500452
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400453 out:
454 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500455 return retval;
456}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500457
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400458static int evdev_fetch_next_event(struct evdev_client *client,
459 struct input_event *event)
460{
461 int have_event;
462
463 spin_lock_irq(&client->buffer_lock);
464
Dima Zavin566cf5b2011-12-30 15:16:44 -0800465 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400466 if (have_event) {
467 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700468 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400469 }
470
471 spin_unlock_irq(&client->buffer_lock);
472
473 return have_event;
474}
475
476static ssize_t evdev_read(struct file *file, char __user *buffer,
477 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400479 struct evdev_client *client = file->private_data;
480 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400481 struct input_event event;
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700482 size_t read = 0;
483 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700485 if (count != 0 && count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return -EINVAL;
487
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700488 for (;;) {
David Herrmannc7dc6572013-09-07 12:23:05 -0700489 if (!evdev->exist || client->revoked)
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700490 return -ENODEV;
491
492 if (client->packet_head == client->tail &&
493 (file->f_flags & O_NONBLOCK))
494 return -EAGAIN;
495
496 /*
497 * count == 0 is special - no IO is done but we check
498 * for error conditions (see above).
499 */
500 if (count == 0)
501 break;
502
503 while (read + input_event_size() <= count &&
504 evdev_fetch_next_event(client, &event)) {
505
506 if (input_event_to_user(buffer + read, &event))
507 return -EFAULT;
508
509 read += input_event_size();
510 }
511
512 if (read)
513 break;
514
515 if (!(file->f_flags & O_NONBLOCK)) {
516 error = wait_event_interruptible(evdev->wait,
517 client->packet_head != client->tail ||
David Herrmannc7dc6572013-09-07 12:23:05 -0700518 !evdev->exist || client->revoked);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700519 if (error)
520 return error;
521 }
Dima Zavin509f87c2011-12-30 15:16:44 -0800522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700524 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527/* No kernel lock - fine */
528static unsigned int evdev_poll(struct file *file, poll_table *wait)
529{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400530 struct evdev_client *client = file->private_data;
531 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700532 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400533
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400534 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700535
David Herrmannc7dc6572013-09-07 12:23:05 -0700536 if (evdev->exist && !client->revoked)
537 mask = POLLOUT | POLLWRNORM;
538 else
539 mask = POLLHUP | POLLERR;
540
Jeff Browncdda9112011-04-26 22:16:11 -0700541 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700542 mask |= POLLIN | POLLRDNORM;
543
544 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500547#ifdef CONFIG_COMPAT
548
549#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700550#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500551
552#ifdef __BIG_ENDIAN
553static int bits_to_user(unsigned long *bits, unsigned int maxbit,
554 unsigned int maxlen, void __user *p, int compat)
555{
556 int len, i;
557
558 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700559 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400560 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500561 len = maxlen;
562
563 for (i = 0; i < len / sizeof(compat_long_t); i++)
564 if (copy_to_user((compat_long_t __user *) p + i,
565 (compat_long_t *) bits +
566 i + 1 - ((i % 2) << 1),
567 sizeof(compat_long_t)))
568 return -EFAULT;
569 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700570 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500571 if (len > maxlen)
572 len = maxlen;
573
574 if (copy_to_user(p, bits, len))
575 return -EFAULT;
576 }
577
578 return len;
579}
580#else
581static int bits_to_user(unsigned long *bits, unsigned int maxbit,
582 unsigned int maxlen, void __user *p, int compat)
583{
584 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700585 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
586 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500587
588 if (len > maxlen)
589 len = maxlen;
590
591 return copy_to_user(p, bits, len) ? -EFAULT : len;
592}
593#endif /* __BIG_ENDIAN */
594
595#else
596
597static int bits_to_user(unsigned long *bits, unsigned int maxbit,
598 unsigned int maxlen, void __user *p, int compat)
599{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700600 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500601
602 if (len > maxlen)
603 len = maxlen;
604
605 return copy_to_user(p, bits, len) ? -EFAULT : len;
606}
607
608#endif /* CONFIG_COMPAT */
609
610static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
611{
612 int len;
613
614 if (!str)
615 return -ENOENT;
616
617 len = strlen(str) + 1;
618 if (len > maxlen)
619 len = maxlen;
620
621 return copy_to_user(p, str, len) ? -EFAULT : len;
622}
623
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400624#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700625static int handle_eviocgbit(struct input_dev *dev,
626 unsigned int type, unsigned int size,
627 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400628{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400629 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400630 unsigned long *bits;
631 int len;
632
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700633 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400634
635 case 0: bits = dev->evbit; len = EV_MAX; break;
636 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
637 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
638 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
639 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
640 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
641 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
642 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
643 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
644 default: return -EINVAL;
645 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400646
647 /*
648 * Work around bugs in userspace programs that like to do
649 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
650 * should be in bytes, not in bits.
651 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700652 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400653 len = OLD_KEY_MAX;
654 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800655 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
656 "limiting output to %zu bytes. See "
657 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
658 OLD_KEY_MAX,
659 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400660 }
661
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700662 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400663}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400664#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400665
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800666static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
667{
668 struct input_keymap_entry ke = {
669 .len = sizeof(unsigned int),
670 .flags = 0,
671 };
672 int __user *ip = (int __user *)p;
673 int error;
674
675 /* legacy case */
676 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
677 return -EFAULT;
678
679 error = input_get_keycode(dev, &ke);
680 if (error)
681 return error;
682
683 if (put_user(ke.keycode, ip + 1))
684 return -EFAULT;
685
686 return 0;
687}
688
689static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700690{
691 struct input_keymap_entry ke;
692 int error;
693
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800694 if (copy_from_user(&ke, p, sizeof(ke)))
695 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700696
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800697 error = input_get_keycode(dev, &ke);
698 if (error)
699 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700700
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800701 if (copy_to_user(p, &ke, sizeof(ke)))
702 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700703
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700704 return 0;
705}
706
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800707static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
708{
709 struct input_keymap_entry ke = {
710 .len = sizeof(unsigned int),
711 .flags = 0,
712 };
713 int __user *ip = (int __user *)p;
714
715 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
716 return -EFAULT;
717
718 if (get_user(ke.keycode, ip + 1))
719 return -EFAULT;
720
721 return input_set_keycode(dev, &ke);
722}
723
724static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700725{
726 struct input_keymap_entry ke;
727
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800728 if (copy_from_user(&ke, p, sizeof(ke)))
729 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700730
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800731 if (ke.len > sizeof(ke.scancode))
732 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700733
734 return input_set_keycode(dev, &ke);
735}
736
David Herrmann48318022013-04-07 21:13:19 -0700737/*
738 * If we transfer state to the user, we should flush all pending events
739 * of the same type from the client's queue. Otherwise, they might end up
740 * with duplicate events, which can screw up client's state tracking.
741 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
742 * event so user-space will notice missing events.
743 *
744 * LOCKING:
745 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
746 * need the even_lock only to guarantee consistent state. We can safely release
747 * it while flushing the queue. This allows input-core to handle filters while
748 * we flush the queue.
749 */
750static int evdev_handle_get_val(struct evdev_client *client,
751 struct input_dev *dev, unsigned int type,
752 unsigned long *bits, unsigned int max,
753 unsigned int size, void __user *p, int compat)
754{
755 int ret;
756 unsigned long *mem;
757
758 mem = kmalloc(sizeof(unsigned long) * max, GFP_KERNEL);
759 if (!mem)
760 return -ENOMEM;
761
762 spin_lock_irq(&dev->event_lock);
763 spin_lock(&client->buffer_lock);
764
765 memcpy(mem, bits, sizeof(unsigned long) * max);
766
767 spin_unlock(&dev->event_lock);
768
769 __evdev_flush_queue(client, type);
770
771 spin_unlock_irq(&client->buffer_lock);
772
773 ret = bits_to_user(mem, max, size, p, compat);
774 if (ret < 0)
775 evdev_queue_syn_dropped(client);
776
777 kfree(mem);
778
779 return ret;
780}
781
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100782static int evdev_handle_mt_request(struct input_dev *dev,
783 unsigned int size,
784 int __user *ip)
785{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200786 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100787 unsigned int code;
788 int max_slots;
789 int i;
790
791 if (get_user(code, &ip[0]))
792 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200793 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100794 return -EINVAL;
795
796 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200797 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
798 int value = input_mt_get_value(&mt->slots[i], code);
799 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100800 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200801 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100802
803 return 0;
804}
805
David Herrmannc7dc6572013-09-07 12:23:05 -0700806static int evdev_revoke(struct evdev *evdev, struct evdev_client *client,
807 struct file *file)
808{
809 client->revoked = true;
810 evdev_ungrab(evdev, client);
811 input_flush_device(&evdev->handle, file);
812 wake_up_interruptible(&evdev->wait);
813
814 return 0;
815}
816
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400817static long evdev_do_ioctl(struct file *file, unsigned int cmd,
818 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400820 struct evdev_client *client = file->private_data;
821 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 struct input_dev *dev = evdev->handle.dev;
823 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400824 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500825 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800826 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700827 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400828 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700830 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 switch (cmd) {
832
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400833 case EVIOCGVERSION:
834 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400836 case EVIOCGID:
837 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
838 return -EFAULT;
839 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400840
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400841 case EVIOCGREP:
842 if (!test_bit(EV_REP, dev->evbit))
843 return -ENOSYS;
844 if (put_user(dev->rep[REP_DELAY], ip))
845 return -EFAULT;
846 if (put_user(dev->rep[REP_PERIOD], ip + 1))
847 return -EFAULT;
848 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400849
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400850 case EVIOCSREP:
851 if (!test_bit(EV_REP, dev->evbit))
852 return -ENOSYS;
853 if (get_user(u, ip))
854 return -EFAULT;
855 if (get_user(v, ip + 1))
856 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400857
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400858 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
859 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500860
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400861 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400863 case EVIOCRMFF:
864 return input_ff_erase(dev, (int)(unsigned long) p, file);
865
866 case EVIOCGEFFECTS:
867 i = test_bit(EV_FF, dev->evbit) ?
868 dev->ff->max_effects : 0;
869 if (put_user(i, ip))
870 return -EFAULT;
871 return 0;
872
873 case EVIOCGRAB:
874 if (p)
875 return evdev_grab(evdev, client);
876 else
877 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800878
David Herrmannc7dc6572013-09-07 12:23:05 -0700879 case EVIOCREVOKE:
880 if (p)
881 return -EINVAL;
882 else
883 return evdev_revoke(evdev, client, file);
884
John Stultza80b83b2012-02-03 00:19:07 -0800885 case EVIOCSCLOCKID:
886 if (copy_from_user(&i, p, sizeof(unsigned int)))
887 return -EFAULT;
888 if (i != CLOCK_MONOTONIC && i != CLOCK_REALTIME)
889 return -EINVAL;
890 client->clkid = i;
891 return 0;
892
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800893 case EVIOCGKEYCODE:
894 return evdev_handle_get_keycode(dev, p);
895
896 case EVIOCSKEYCODE:
897 return evdev_handle_set_keycode(dev, p);
898
899 case EVIOCGKEYCODE_V2:
900 return evdev_handle_get_keycode_v2(dev, p);
901
902 case EVIOCSKEYCODE_V2:
903 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700904 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400905
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700906 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400907
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700908 /* Now check variable-length commands */
909#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700910 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400911
Henrik Rydberg85b77202010-12-18 20:51:13 +0100912 case EVIOCGPROP(0):
913 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
914 size, p, compat_mode);
915
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100916 case EVIOCGMTSLOTS(0):
917 return evdev_handle_mt_request(dev, size, ip);
918
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700919 case EVIOCGKEY(0):
David Herrmann48318022013-04-07 21:13:19 -0700920 return evdev_handle_get_val(client, dev, EV_KEY, dev->key,
921 KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400922
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700923 case EVIOCGLED(0):
David Herrmann48318022013-04-07 21:13:19 -0700924 return evdev_handle_get_val(client, dev, EV_LED, dev->led,
925 LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400926
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700927 case EVIOCGSND(0):
David Herrmann48318022013-04-07 21:13:19 -0700928 return evdev_handle_get_val(client, dev, EV_SND, dev->snd,
929 SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400930
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700931 case EVIOCGSW(0):
David Herrmann48318022013-04-07 21:13:19 -0700932 return evdev_handle_get_val(client, dev, EV_SW, dev->sw,
933 SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400934
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700935 case EVIOCGNAME(0):
936 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400937
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700938 case EVIOCGPHYS(0):
939 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400940
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700941 case EVIOCGUNIQ(0):
942 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400943
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700944 case EVIOC_MASK_SIZE(EVIOCSFF):
945 if (input_ff_effect_from_user(p, size, &effect))
946 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400947
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700948 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400949
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700950 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
951 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400952
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700953 return error;
954 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400955
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700956 /* Multi-number variable-length handlers */
957 if (_IOC_TYPE(cmd) != 'E')
958 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700960 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700962 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
963 return handle_eviocgbit(dev,
964 _IOC_NR(cmd) & EV_MAX, size,
965 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700967 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400968
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700969 if (!dev->absinfo)
970 return -EINVAL;
971
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700972 t = _IOC_NR(cmd) & ABS_MAX;
973 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400974
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700975 if (copy_to_user(p, &abs, min_t(size_t,
976 size, sizeof(struct input_absinfo))))
977 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400978
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700979 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700982
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700983 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700984
985 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
986
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700987 if (!dev->absinfo)
988 return -EINVAL;
989
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700990 t = _IOC_NR(cmd) & ABS_MAX;
991
992 if (copy_from_user(&abs, p, min_t(size_t,
993 size, sizeof(struct input_absinfo))))
994 return -EFAULT;
995
996 if (size < sizeof(struct input_absinfo))
997 abs.resolution = 0;
998
999 /* We can't change number of reserved MT slots */
1000 if (t == ABS_MT_SLOT)
1001 return -EINVAL;
1002
1003 /*
1004 * Take event lock to ensure that we are not
1005 * changing device parameters in the middle
1006 * of event.
1007 */
1008 spin_lock_irq(&dev->event_lock);
1009 dev->absinfo[t] = abs;
1010 spin_unlock_irq(&dev->event_lock);
1011
1012 return 0;
1013 }
1014 }
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return -EINVAL;
1017}
1018
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001019static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
1020 void __user *p, int compat_mode)
1021{
1022 struct evdev_client *client = file->private_data;
1023 struct evdev *evdev = client->evdev;
1024 int retval;
1025
1026 retval = mutex_lock_interruptible(&evdev->mutex);
1027 if (retval)
1028 return retval;
1029
David Herrmannc7dc6572013-09-07 12:23:05 -07001030 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001031 retval = -ENODEV;
1032 goto out;
1033 }
1034
1035 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
1036
1037 out:
1038 mutex_unlock(&evdev->mutex);
1039 return retval;
1040}
1041
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001042static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1043{
1044 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
1045}
1046
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001047#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001048static long evdev_ioctl_compat(struct file *file,
1049 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001050{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001051 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001052}
1053#endif
1054
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001055static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001056 .owner = THIS_MODULE,
1057 .read = evdev_read,
1058 .write = evdev_write,
1059 .poll = evdev_poll,
1060 .open = evdev_open,
1061 .release = evdev_release,
1062 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001063#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001064 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001065#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001066 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001067 .flush = evdev_flush,
1068 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069};
1070
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001071/*
1072 * Mark device non-existent. This disables writes, ioctls and
1073 * prevents new users from opening the device. Already posted
1074 * blocking reads will stay, however new ones will fail.
1075 */
1076static void evdev_mark_dead(struct evdev *evdev)
1077{
1078 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001079 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001080 mutex_unlock(&evdev->mutex);
1081}
1082
1083static void evdev_cleanup(struct evdev *evdev)
1084{
1085 struct input_handle *handle = &evdev->handle;
1086
1087 evdev_mark_dead(evdev);
1088 evdev_hangup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001089
1090 cdev_del(&evdev->cdev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001091
1092 /* evdev is marked dead so no one else accesses evdev->open */
1093 if (evdev->open) {
1094 input_flush_device(handle, NULL);
1095 input_close_device(handle);
1096 }
1097}
1098
1099/*
1100 * Create new evdev device. Note that input core serializes calls
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001101 * to connect and disconnect.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001102 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001103static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
1104 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
1106 struct evdev *evdev;
1107 int minor;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001108 int dev_no;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001109 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001111 minor = input_get_new_minor(EVDEV_MINOR_BASE, EVDEV_MINORS, true);
1112 if (minor < 0) {
1113 error = minor;
1114 pr_err("failed to reserve new minor: %d\n", error);
1115 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
1117
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001118 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001119 if (!evdev) {
1120 error = -ENOMEM;
1121 goto err_free_minor;
1122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001124 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001125 spin_lock_init(&evdev->client_lock);
1126 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 init_waitqueue_head(&evdev->wait);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001128 evdev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001129
1130 dev_no = minor;
1131 /* Normalize device number if it falls into legacy range */
1132 if (dev_no < EVDEV_MINOR_BASE + EVDEV_MINORS)
1133 dev_no -= EVDEV_MINOR_BASE;
1134 dev_set_name(&evdev->dev, "event%d", dev_no);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001135
Dmitry Torokhova7097ff2008-04-01 00:22:53 -04001136 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -07001137 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 evdev->handle.handler = handler;
1139 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001140
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001141 evdev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001142 evdev->dev.class = &input_class;
1143 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001144 evdev->dev.release = evdev_free;
1145 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001147 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001148 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001149 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001151 cdev_init(&evdev->cdev, &evdev_fops);
Dmitry Torokhov4a215aa2012-10-21 17:57:20 -07001152 evdev->cdev.kobj.parent = &evdev->dev.kobj;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001153 error = cdev_add(&evdev->cdev, evdev->dev.devt, 1);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001154 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001155 goto err_unregister_handle;
1156
1157 error = device_add(&evdev->dev);
1158 if (error)
1159 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001160
1161 return 0;
1162
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001163 err_cleanup_evdev:
1164 evdev_cleanup(evdev);
1165 err_unregister_handle:
1166 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001167 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001168 put_device(&evdev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001169 err_free_minor:
1170 input_free_minor(minor);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001171 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172}
1173
1174static void evdev_disconnect(struct input_handle *handle)
1175{
1176 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001178 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001179 evdev_cleanup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001180 input_free_minor(MINOR(evdev->dev.devt));
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001181 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001182 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
1184
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001185static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 { .driver_info = 1 }, /* Matches all devices */
1187 { }, /* Terminating zero entry */
1188};
1189
1190MODULE_DEVICE_TABLE(input, evdev_ids);
1191
1192static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001193 .event = evdev_event,
Henrik Rydberga274ac12012-08-29 20:48:02 +02001194 .events = evdev_events,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001195 .connect = evdev_connect,
1196 .disconnect = evdev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001197 .legacy_minors = true,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001198 .minor = EVDEV_MINOR_BASE,
1199 .name = "evdev",
1200 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201};
1202
1203static int __init evdev_init(void)
1204{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001205 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
1208static void __exit evdev_exit(void)
1209{
1210 input_unregister_handler(&evdev_handler);
1211}
1212
1213module_init(evdev_init);
1214module_exit(evdev_exit);
1215
1216MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1217MODULE_DESCRIPTION("Input driver event char devices");
1218MODULE_LICENSE("GPL");