blob: 08d496411f7570bf73368cdfc32b01ed98c59da8 [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>
Daniel Stone92eb77d2013-10-31 00:25:34 -070021#include <linux/vmalloc.h>
22#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
24#include <linux/init.h>
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +010025#include <linux/input/mt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/device.h>
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070028#include <linux/cdev.h>
Philip Langdale2d56f3a2008-10-16 22:31:42 -040029#include "input-compat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -080031enum evdev_clock_type {
32 EV_CLK_REAL = 0,
33 EV_CLK_MONO,
34 EV_CLK_BOOT,
35 EV_CLK_MAX
36};
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038struct evdev {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 int open;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 struct input_handle handle;
41 wait_queue_head_t wait;
Arnd Bergmann2be85272010-03-04 15:50:28 +010042 struct evdev_client __rcu *grab;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040043 struct list_head client_list;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040044 spinlock_t client_lock; /* protects client_list */
45 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040046 struct device dev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070047 struct cdev cdev;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -070048 bool exist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040051struct evdev_client {
Jeff Brown9fb0f142011-04-12 23:29:38 -070052 unsigned int head;
53 unsigned int tail;
Jeff Browncdda9112011-04-26 22:16:11 -070054 unsigned int packet_head; /* [future] position of the first element of next packet */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040055 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 struct fasync_struct *fasync;
57 struct evdev *evdev;
58 struct list_head node;
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -080059 int clk_type;
David Herrmannc7dc6572013-09-07 12:23:05 -070060 bool revoked;
Jeff Brown9fb0f142011-04-12 23:29:38 -070061 unsigned int bufsize;
Henrik Rydbergb58f7082010-06-23 09:17:56 -070062 struct input_event buffer[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
David Herrmann48318022013-04-07 21:13:19 -070065/* flush queued events of type @type, caller must hold client->buffer_lock */
66static void __evdev_flush_queue(struct evdev_client *client, unsigned int type)
67{
68 unsigned int i, head, num;
69 unsigned int mask = client->bufsize - 1;
70 bool is_report;
71 struct input_event *ev;
72
73 BUG_ON(type == EV_SYN);
74
75 head = client->tail;
76 client->packet_head = client->tail;
77
78 /* init to 1 so a leading SYN_REPORT will not be dropped */
79 num = 1;
80
81 for (i = client->tail; i != client->head; i = (i + 1) & mask) {
82 ev = &client->buffer[i];
83 is_report = ev->type == EV_SYN && ev->code == SYN_REPORT;
84
85 if (ev->type == type) {
86 /* drop matched entry */
87 continue;
88 } else if (is_report && !num) {
89 /* drop empty SYN_REPORT groups */
90 continue;
91 } else if (head != i) {
92 /* move entry to fill the gap */
93 client->buffer[head].time = ev->time;
94 client->buffer[head].type = ev->type;
95 client->buffer[head].code = ev->code;
96 client->buffer[head].value = ev->value;
97 }
98
99 num++;
100 head = (head + 1) & mask;
101
102 if (is_report) {
103 num = 0;
104 client->packet_head = head;
105 }
106 }
107
108 client->head = head;
109}
110
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800111static void __evdev_queue_syn_dropped(struct evdev_client *client)
David Herrmann48318022013-04-07 21:13:19 -0700112{
David Herrmann48318022013-04-07 21:13:19 -0700113 struct input_event ev;
114 ktime_t time;
115
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800116 time = client->clk_type == EV_CLK_REAL ?
117 ktime_get_real() :
118 client->clk_type == EV_CLK_MONO ?
119 ktime_get() :
120 ktime_get_boottime();
David Herrmann48318022013-04-07 21:13:19 -0700121
122 ev.time = ktime_to_timeval(time);
123 ev.type = EV_SYN;
124 ev.code = SYN_DROPPED;
125 ev.value = 0;
126
David Herrmann48318022013-04-07 21:13:19 -0700127 client->buffer[client->head++] = ev;
128 client->head &= client->bufsize - 1;
129
130 if (unlikely(client->head == client->tail)) {
131 /* drop queue but keep our SYN_DROPPED event */
132 client->tail = (client->head - 1) & (client->bufsize - 1);
133 client->packet_head = client->tail;
134 }
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800135}
David Herrmann48318022013-04-07 21:13:19 -0700136
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800137static void evdev_queue_syn_dropped(struct evdev_client *client)
138{
139 unsigned long flags;
140
141 spin_lock_irqsave(&client->buffer_lock, flags);
142 __evdev_queue_syn_dropped(client);
David Herrmann48318022013-04-07 21:13:19 -0700143 spin_unlock_irqrestore(&client->buffer_lock, flags);
144}
145
Anshul Garg0c3e9942015-01-15 09:06:50 -0800146static int evdev_set_clk_type(struct evdev_client *client, unsigned int clkid)
147{
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800148 unsigned long flags;
149
Anshul Garg0c3e9942015-01-15 09:06:50 -0800150 if (client->clk_type == clkid)
151 return 0;
152
153 switch (clkid) {
154
155 case CLOCK_REALTIME:
156 client->clk_type = EV_CLK_REAL;
157 break;
158 case CLOCK_MONOTONIC:
159 client->clk_type = EV_CLK_MONO;
160 break;
161 case CLOCK_BOOTTIME:
162 client->clk_type = EV_CLK_BOOT;
163 break;
164 default:
165 return -EINVAL;
166 }
167
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800168 /*
169 * Flush pending events and queue SYN_DROPPED event,
170 * but only if the queue is not empty.
171 */
172 spin_lock_irqsave(&client->buffer_lock, flags);
173
174 if (client->head != client->tail) {
175 client->packet_head = client->head = client->tail;
176 __evdev_queue_syn_dropped(client);
177 }
178
179 spin_unlock_irqrestore(&client->buffer_lock, flags);
Anshul Garg0c3e9942015-01-15 09:06:50 -0800180
181 return 0;
182}
183
Henrik Rydberga274ac12012-08-29 20:48:02 +0200184static void __pass_event(struct evdev_client *client,
185 const struct input_event *event)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400186{
Jeff Brown9fb0f142011-04-12 23:29:38 -0700187 client->buffer[client->head++] = *event;
188 client->head &= client->bufsize - 1;
189
190 if (unlikely(client->head == client->tail)) {
191 /*
192 * This effectively "drops" all unconsumed events, leaving
193 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
194 */
195 client->tail = (client->head - 2) & (client->bufsize - 1);
196
197 client->buffer[client->tail].time = event->time;
198 client->buffer[client->tail].type = EV_SYN;
199 client->buffer[client->tail].code = SYN_DROPPED;
200 client->buffer[client->tail].value = 0;
Jeff Browncdda9112011-04-26 22:16:11 -0700201
202 client->packet_head = client->tail;
203 }
204
205 if (event->type == EV_SYN && event->code == SYN_REPORT) {
206 client->packet_head = client->head;
207 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Jeff Brown9fb0f142011-04-12 23:29:38 -0700208 }
Henrik Rydberga274ac12012-08-29 20:48:02 +0200209}
210
211static void evdev_pass_values(struct evdev_client *client,
212 const struct input_value *vals, unsigned int count,
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800213 ktime_t *ev_time)
Henrik Rydberga274ac12012-08-29 20:48:02 +0200214{
215 struct evdev *evdev = client->evdev;
216 const struct input_value *v;
217 struct input_event event;
218 bool wakeup = false;
219
David Herrmannc7dc6572013-09-07 12:23:05 -0700220 if (client->revoked)
221 return;
222
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800223 event.time = ktime_to_timeval(ev_time[client->clk_type]);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200224
225 /* Interrupts are disabled, just acquire the lock. */
226 spin_lock(&client->buffer_lock);
227
228 for (v = vals; v != vals + count; v++) {
229 event.type = v->type;
230 event.code = v->code;
231 event.value = v->value;
232 __pass_event(client, &event);
233 if (v->type == EV_SYN && v->code == SYN_REPORT)
234 wakeup = true;
235 }
Jeff Brown9fb0f142011-04-12 23:29:38 -0700236
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400237 spin_unlock(&client->buffer_lock);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200238
239 if (wakeup)
240 wake_up_interruptible(&evdev->wait);
241}
242
243/*
244 * Pass incoming events to all connected clients.
245 */
246static void evdev_events(struct input_handle *handle,
247 const struct input_value *vals, unsigned int count)
248{
249 struct evdev *evdev = handle->private;
250 struct evdev_client *client;
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800251 ktime_t ev_time[EV_CLK_MAX];
Henrik Rydberga274ac12012-08-29 20:48:02 +0200252
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800253 ev_time[EV_CLK_MONO] = ktime_get();
254 ev_time[EV_CLK_REAL] = ktime_mono_to_real(ev_time[EV_CLK_MONO]);
255 ev_time[EV_CLK_BOOT] = ktime_mono_to_any(ev_time[EV_CLK_MONO],
256 TK_OFFS_BOOT);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200257
258 rcu_read_lock();
259
260 client = rcu_dereference(evdev->grab);
261
262 if (client)
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800263 evdev_pass_values(client, vals, count, ev_time);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200264 else
265 list_for_each_entry_rcu(client, &evdev->client_list, node)
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800266 evdev_pass_values(client, vals, count, ev_time);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200267
268 rcu_read_unlock();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400269}
270
271/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400272 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400273 */
274static void evdev_event(struct input_handle *handle,
275 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Henrik Rydberga274ac12012-08-29 20:48:02 +0200277 struct input_value vals[] = { { type, code, value } };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Henrik Rydberga274ac12012-08-29 20:48:02 +0200279 evdev_events(handle, vals, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282static int evdev_fasync(int fd, struct file *file, int on)
283{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400284 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400285
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700286 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400289static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400291 struct evdev_client *client = file->private_data;
292 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400293
Takashi Iwaieb38f3a2015-09-03 22:20:00 -0700294 mutex_lock(&evdev->mutex);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400295
Takashi Iwaieb38f3a2015-09-03 22:20:00 -0700296 if (evdev->exist && !client->revoked)
297 input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400298
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400299 mutex_unlock(&evdev->mutex);
Takashi Iwaieb38f3a2015-09-03 22:20:00 -0700300 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400303static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400305 struct evdev *evdev = container_of(dev, struct evdev, dev);
306
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400307 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 kfree(evdev);
309}
310
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400311/*
312 * Grabs an event device (along with underlying input device).
313 * This function is called with evdev->mutex taken.
314 */
315static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
316{
317 int error;
318
319 if (evdev->grab)
320 return -EBUSY;
321
322 error = input_grab_device(&evdev->handle);
323 if (error)
324 return error;
325
326 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400327
328 return 0;
329}
330
331static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
332{
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700333 struct evdev_client *grab = rcu_dereference_protected(evdev->grab,
334 lockdep_is_held(&evdev->mutex));
335
336 if (grab != client)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400337 return -EINVAL;
338
339 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400340 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400341 input_release_device(&evdev->handle);
342
343 return 0;
344}
345
346static void evdev_attach_client(struct evdev *evdev,
347 struct evdev_client *client)
348{
349 spin_lock(&evdev->client_lock);
350 list_add_tail_rcu(&client->node, &evdev->client_list);
351 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400352}
353
354static void evdev_detach_client(struct evdev *evdev,
355 struct evdev_client *client)
356{
357 spin_lock(&evdev->client_lock);
358 list_del_rcu(&client->node);
359 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400360 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400361}
362
363static int evdev_open_device(struct evdev *evdev)
364{
365 int retval;
366
367 retval = mutex_lock_interruptible(&evdev->mutex);
368 if (retval)
369 return retval;
370
371 if (!evdev->exist)
372 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400373 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400374 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400375 if (retval)
376 evdev->open--;
377 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400378
379 mutex_unlock(&evdev->mutex);
380 return retval;
381}
382
383static void evdev_close_device(struct evdev *evdev)
384{
385 mutex_lock(&evdev->mutex);
386
387 if (evdev->exist && !--evdev->open)
388 input_close_device(&evdev->handle);
389
390 mutex_unlock(&evdev->mutex);
391}
392
393/*
394 * Wake up users waiting for IO so they can disconnect from
395 * dead device.
396 */
397static void evdev_hangup(struct evdev *evdev)
398{
399 struct evdev_client *client;
400
401 spin_lock(&evdev->client_lock);
402 list_for_each_entry(client, &evdev->client_list, node)
403 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
404 spin_unlock(&evdev->client_lock);
405
406 wake_up_interruptible(&evdev->wait);
407}
408
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400409static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400411 struct evdev_client *client = file->private_data;
412 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400414 mutex_lock(&evdev->mutex);
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700415 evdev_ungrab(evdev, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400416 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400418 evdev_detach_client(evdev, client);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700419
Pekka Enberg67367fd2015-05-15 13:45:40 -0700420 kvfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400422 evdev_close_device(evdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 0;
425}
426
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700427static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
428{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700429 unsigned int n_events =
430 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
431 EVDEV_MIN_BUFFER_SIZE);
432
433 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700434}
435
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400436static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700438 struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev);
439 unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700440 unsigned int size = sizeof(struct evdev_client) +
441 bufsize * sizeof(struct input_event);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400442 struct evdev_client *client;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400443 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Daniel Stone92eb77d2013-10-31 00:25:34 -0700445 client = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
446 if (!client)
447 client = vzalloc(size);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700448 if (!client)
449 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700451 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400452 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400453 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400454 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400456 error = evdev_open_device(evdev);
457 if (error)
458 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400460 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800461 nonseekable_open(inode, file);
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400464
465 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400466 evdev_detach_client(evdev, client);
Andrew Morton92788ac2014-12-02 15:59:31 -0800467 kvfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400468 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400471static ssize_t evdev_write(struct file *file, const char __user *buffer,
472 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400474 struct evdev_client *client = file->private_data;
475 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800477 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700479 if (count != 0 && count < input_event_size())
Peter Korsgaard439581e2011-02-25 09:30:46 -0800480 return -EINVAL;
481
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400482 retval = mutex_lock_interruptible(&evdev->mutex);
483 if (retval)
484 return retval;
485
David Herrmannc7dc6572013-09-07 12:23:05 -0700486 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400487 retval = -ENODEV;
488 goto out;
489 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500490
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700491 while (retval + input_event_size() <= count) {
492
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400493 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400494 retval = -EFAULT;
495 goto out;
496 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800497 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400498
499 input_inject_event(&evdev->handle,
500 event.type, event.code, event.value);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700501 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500502
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400503 out:
504 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500505 return retval;
506}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500507
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400508static int evdev_fetch_next_event(struct evdev_client *client,
509 struct input_event *event)
510{
511 int have_event;
512
513 spin_lock_irq(&client->buffer_lock);
514
Dima Zavin566cf5b2011-12-30 15:16:44 -0800515 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400516 if (have_event) {
517 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700518 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400519 }
520
521 spin_unlock_irq(&client->buffer_lock);
522
523 return have_event;
524}
525
526static ssize_t evdev_read(struct file *file, char __user *buffer,
527 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400529 struct evdev_client *client = file->private_data;
530 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400531 struct input_event event;
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700532 size_t read = 0;
533 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700535 if (count != 0 && count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return -EINVAL;
537
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700538 for (;;) {
David Herrmannc7dc6572013-09-07 12:23:05 -0700539 if (!evdev->exist || client->revoked)
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700540 return -ENODEV;
541
542 if (client->packet_head == client->tail &&
543 (file->f_flags & O_NONBLOCK))
544 return -EAGAIN;
545
546 /*
547 * count == 0 is special - no IO is done but we check
548 * for error conditions (see above).
549 */
550 if (count == 0)
551 break;
552
553 while (read + input_event_size() <= count &&
554 evdev_fetch_next_event(client, &event)) {
555
556 if (input_event_to_user(buffer + read, &event))
557 return -EFAULT;
558
559 read += input_event_size();
560 }
561
562 if (read)
563 break;
564
565 if (!(file->f_flags & O_NONBLOCK)) {
566 error = wait_event_interruptible(evdev->wait,
567 client->packet_head != client->tail ||
David Herrmannc7dc6572013-09-07 12:23:05 -0700568 !evdev->exist || client->revoked);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700569 if (error)
570 return error;
571 }
Dima Zavin509f87c2011-12-30 15:16:44 -0800572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700574 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
577/* No kernel lock - fine */
578static unsigned int evdev_poll(struct file *file, poll_table *wait)
579{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400580 struct evdev_client *client = file->private_data;
581 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700582 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400583
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400584 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700585
David Herrmannc7dc6572013-09-07 12:23:05 -0700586 if (evdev->exist && !client->revoked)
587 mask = POLLOUT | POLLWRNORM;
588 else
589 mask = POLLHUP | POLLERR;
590
Jeff Browncdda9112011-04-26 22:16:11 -0700591 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700592 mask |= POLLIN | POLLRDNORM;
593
594 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500597#ifdef CONFIG_COMPAT
598
599#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700600#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500601
602#ifdef __BIG_ENDIAN
603static int bits_to_user(unsigned long *bits, unsigned int maxbit,
604 unsigned int maxlen, void __user *p, int compat)
605{
606 int len, i;
607
608 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700609 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400610 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500611 len = maxlen;
612
613 for (i = 0; i < len / sizeof(compat_long_t); i++)
614 if (copy_to_user((compat_long_t __user *) p + i,
615 (compat_long_t *) bits +
616 i + 1 - ((i % 2) << 1),
617 sizeof(compat_long_t)))
618 return -EFAULT;
619 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700620 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500621 if (len > maxlen)
622 len = maxlen;
623
624 if (copy_to_user(p, bits, len))
625 return -EFAULT;
626 }
627
628 return len;
629}
630#else
631static int bits_to_user(unsigned long *bits, unsigned int maxbit,
632 unsigned int maxlen, void __user *p, int compat)
633{
634 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700635 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
636 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500637
638 if (len > maxlen)
639 len = maxlen;
640
641 return copy_to_user(p, bits, len) ? -EFAULT : len;
642}
643#endif /* __BIG_ENDIAN */
644
645#else
646
647static int bits_to_user(unsigned long *bits, unsigned int maxbit,
648 unsigned int maxlen, void __user *p, int compat)
649{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700650 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500651
652 if (len > maxlen)
653 len = maxlen;
654
655 return copy_to_user(p, bits, len) ? -EFAULT : len;
656}
657
658#endif /* CONFIG_COMPAT */
659
660static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
661{
662 int len;
663
664 if (!str)
665 return -ENOENT;
666
667 len = strlen(str) + 1;
668 if (len > maxlen)
669 len = maxlen;
670
671 return copy_to_user(p, str, len) ? -EFAULT : len;
672}
673
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700674static int handle_eviocgbit(struct input_dev *dev,
675 unsigned int type, unsigned int size,
676 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400677{
678 unsigned long *bits;
679 int len;
680
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700681 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400682
683 case 0: bits = dev->evbit; len = EV_MAX; break;
684 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
685 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
686 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
687 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
688 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
689 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
690 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
691 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
692 default: return -EINVAL;
693 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400694
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700695 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400696}
Linus Torvalds5402a732008-08-05 11:42:42 -0400697
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800698static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
699{
700 struct input_keymap_entry ke = {
701 .len = sizeof(unsigned int),
702 .flags = 0,
703 };
704 int __user *ip = (int __user *)p;
705 int error;
706
707 /* legacy case */
708 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
709 return -EFAULT;
710
711 error = input_get_keycode(dev, &ke);
712 if (error)
713 return error;
714
715 if (put_user(ke.keycode, ip + 1))
716 return -EFAULT;
717
718 return 0;
719}
720
721static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700722{
723 struct input_keymap_entry ke;
724 int error;
725
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800726 if (copy_from_user(&ke, p, sizeof(ke)))
727 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700728
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800729 error = input_get_keycode(dev, &ke);
730 if (error)
731 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700732
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800733 if (copy_to_user(p, &ke, sizeof(ke)))
734 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700735
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700736 return 0;
737}
738
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800739static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
740{
741 struct input_keymap_entry ke = {
742 .len = sizeof(unsigned int),
743 .flags = 0,
744 };
745 int __user *ip = (int __user *)p;
746
747 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
748 return -EFAULT;
749
750 if (get_user(ke.keycode, ip + 1))
751 return -EFAULT;
752
753 return input_set_keycode(dev, &ke);
754}
755
756static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700757{
758 struct input_keymap_entry ke;
759
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800760 if (copy_from_user(&ke, p, sizeof(ke)))
761 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700762
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800763 if (ke.len > sizeof(ke.scancode))
764 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700765
766 return input_set_keycode(dev, &ke);
767}
768
David Herrmann48318022013-04-07 21:13:19 -0700769/*
770 * If we transfer state to the user, we should flush all pending events
771 * of the same type from the client's queue. Otherwise, they might end up
772 * with duplicate events, which can screw up client's state tracking.
773 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
774 * event so user-space will notice missing events.
775 *
776 * LOCKING:
777 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
778 * need the even_lock only to guarantee consistent state. We can safely release
779 * it while flushing the queue. This allows input-core to handle filters while
780 * we flush the queue.
781 */
782static int evdev_handle_get_val(struct evdev_client *client,
783 struct input_dev *dev, unsigned int type,
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700784 unsigned long *bits, unsigned int maxbit,
785 unsigned int maxlen, void __user *p,
786 int compat)
David Herrmann48318022013-04-07 21:13:19 -0700787{
788 int ret;
789 unsigned long *mem;
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700790 size_t len;
David Herrmann48318022013-04-07 21:13:19 -0700791
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700792 len = BITS_TO_LONGS(maxbit) * sizeof(unsigned long);
793 mem = kmalloc(len, GFP_KERNEL);
David Herrmann48318022013-04-07 21:13:19 -0700794 if (!mem)
795 return -ENOMEM;
796
797 spin_lock_irq(&dev->event_lock);
798 spin_lock(&client->buffer_lock);
799
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700800 memcpy(mem, bits, len);
David Herrmann48318022013-04-07 21:13:19 -0700801
802 spin_unlock(&dev->event_lock);
803
804 __evdev_flush_queue(client, type);
805
806 spin_unlock_irq(&client->buffer_lock);
807
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700808 ret = bits_to_user(mem, maxbit, maxlen, p, compat);
David Herrmann48318022013-04-07 21:13:19 -0700809 if (ret < 0)
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800810 evdev_queue_syn_dropped(client);
David Herrmann48318022013-04-07 21:13:19 -0700811
812 kfree(mem);
813
814 return ret;
815}
816
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100817static int evdev_handle_mt_request(struct input_dev *dev,
818 unsigned int size,
819 int __user *ip)
820{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200821 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100822 unsigned int code;
823 int max_slots;
824 int i;
825
826 if (get_user(code, &ip[0]))
827 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200828 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100829 return -EINVAL;
830
831 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200832 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
833 int value = input_mt_get_value(&mt->slots[i], code);
834 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100835 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200836 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100837
838 return 0;
839}
840
David Herrmannc7dc6572013-09-07 12:23:05 -0700841static int evdev_revoke(struct evdev *evdev, struct evdev_client *client,
842 struct file *file)
843{
844 client->revoked = true;
845 evdev_ungrab(evdev, client);
846 input_flush_device(&evdev->handle, file);
847 wake_up_interruptible(&evdev->wait);
848
849 return 0;
850}
851
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400852static long evdev_do_ioctl(struct file *file, unsigned int cmd,
853 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400855 struct evdev_client *client = file->private_data;
856 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 struct input_dev *dev = evdev->handle.dev;
858 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400859 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500860 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800861 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700862 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400863 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700865 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 switch (cmd) {
867
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400868 case EVIOCGVERSION:
869 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400871 case EVIOCGID:
872 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
873 return -EFAULT;
874 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400875
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400876 case EVIOCGREP:
877 if (!test_bit(EV_REP, dev->evbit))
878 return -ENOSYS;
879 if (put_user(dev->rep[REP_DELAY], ip))
880 return -EFAULT;
881 if (put_user(dev->rep[REP_PERIOD], ip + 1))
882 return -EFAULT;
883 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400884
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400885 case EVIOCSREP:
886 if (!test_bit(EV_REP, dev->evbit))
887 return -ENOSYS;
888 if (get_user(u, ip))
889 return -EFAULT;
890 if (get_user(v, ip + 1))
891 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400892
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400893 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
894 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500895
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400896 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400898 case EVIOCRMFF:
899 return input_ff_erase(dev, (int)(unsigned long) p, file);
900
901 case EVIOCGEFFECTS:
902 i = test_bit(EV_FF, dev->evbit) ?
903 dev->ff->max_effects : 0;
904 if (put_user(i, ip))
905 return -EFAULT;
906 return 0;
907
908 case EVIOCGRAB:
909 if (p)
910 return evdev_grab(evdev, client);
911 else
912 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800913
David Herrmannc7dc6572013-09-07 12:23:05 -0700914 case EVIOCREVOKE:
915 if (p)
916 return -EINVAL;
917 else
918 return evdev_revoke(evdev, client, file);
919
John Stultza80b83b2012-02-03 00:19:07 -0800920 case EVIOCSCLOCKID:
921 if (copy_from_user(&i, p, sizeof(unsigned int)))
922 return -EFAULT;
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800923
924 return evdev_set_clk_type(client, i);
John Stultza80b83b2012-02-03 00:19:07 -0800925
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800926 case EVIOCGKEYCODE:
927 return evdev_handle_get_keycode(dev, p);
928
929 case EVIOCSKEYCODE:
930 return evdev_handle_set_keycode(dev, p);
931
932 case EVIOCGKEYCODE_V2:
933 return evdev_handle_get_keycode_v2(dev, p);
934
935 case EVIOCSKEYCODE_V2:
936 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700937 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400938
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700939 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400940
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700941 /* Now check variable-length commands */
942#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700943 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400944
Henrik Rydberg85b77202010-12-18 20:51:13 +0100945 case EVIOCGPROP(0):
946 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
947 size, p, compat_mode);
948
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100949 case EVIOCGMTSLOTS(0):
950 return evdev_handle_mt_request(dev, size, ip);
951
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700952 case EVIOCGKEY(0):
David Herrmann48318022013-04-07 21:13:19 -0700953 return evdev_handle_get_val(client, dev, EV_KEY, dev->key,
954 KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400955
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700956 case EVIOCGLED(0):
David Herrmann48318022013-04-07 21:13:19 -0700957 return evdev_handle_get_val(client, dev, EV_LED, dev->led,
958 LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400959
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700960 case EVIOCGSND(0):
David Herrmann48318022013-04-07 21:13:19 -0700961 return evdev_handle_get_val(client, dev, EV_SND, dev->snd,
962 SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400963
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700964 case EVIOCGSW(0):
David Herrmann48318022013-04-07 21:13:19 -0700965 return evdev_handle_get_val(client, dev, EV_SW, dev->sw,
966 SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400967
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700968 case EVIOCGNAME(0):
969 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400970
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700971 case EVIOCGPHYS(0):
972 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400973
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700974 case EVIOCGUNIQ(0):
975 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400976
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700977 case EVIOC_MASK_SIZE(EVIOCSFF):
978 if (input_ff_effect_from_user(p, size, &effect))
979 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400980
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700981 error = input_ff_upload(dev, &effect, file);
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -0700982 if (error)
983 return error;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400984
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700985 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
986 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400987
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -0700988 return 0;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700989 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400990
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700991 /* Multi-number variable-length handlers */
992 if (_IOC_TYPE(cmd) != 'E')
993 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700995 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700997 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
998 return handle_eviocgbit(dev,
999 _IOC_NR(cmd) & EV_MAX, size,
1000 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001002 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001003
Daniel Mack0a74a1d2010-10-18 08:43:30 -07001004 if (!dev->absinfo)
1005 return -EINVAL;
1006
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001007 t = _IOC_NR(cmd) & ABS_MAX;
1008 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001009
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001010 if (copy_to_user(p, &abs, min_t(size_t,
1011 size, sizeof(struct input_absinfo))))
1012 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001013
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001014 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001017
Daniel Mackf9ce6eb2010-10-18 08:43:50 -07001018 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001019
1020 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
1021
Daniel Mack0a74a1d2010-10-18 08:43:30 -07001022 if (!dev->absinfo)
1023 return -EINVAL;
1024
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001025 t = _IOC_NR(cmd) & ABS_MAX;
1026
1027 if (copy_from_user(&abs, p, min_t(size_t,
1028 size, sizeof(struct input_absinfo))))
1029 return -EFAULT;
1030
1031 if (size < sizeof(struct input_absinfo))
1032 abs.resolution = 0;
1033
1034 /* We can't change number of reserved MT slots */
1035 if (t == ABS_MT_SLOT)
1036 return -EINVAL;
1037
1038 /*
1039 * Take event lock to ensure that we are not
1040 * changing device parameters in the middle
1041 * of event.
1042 */
1043 spin_lock_irq(&dev->event_lock);
1044 dev->absinfo[t] = abs;
1045 spin_unlock_irq(&dev->event_lock);
1046
1047 return 0;
1048 }
1049 }
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 return -EINVAL;
1052}
1053
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001054static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
1055 void __user *p, int compat_mode)
1056{
1057 struct evdev_client *client = file->private_data;
1058 struct evdev *evdev = client->evdev;
1059 int retval;
1060
1061 retval = mutex_lock_interruptible(&evdev->mutex);
1062 if (retval)
1063 return retval;
1064
David Herrmannc7dc6572013-09-07 12:23:05 -07001065 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001066 retval = -ENODEV;
1067 goto out;
1068 }
1069
1070 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
1071
1072 out:
1073 mutex_unlock(&evdev->mutex);
1074 return retval;
1075}
1076
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001077static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1078{
1079 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
1080}
1081
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001082#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001083static long evdev_ioctl_compat(struct file *file,
1084 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001085{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001086 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001087}
1088#endif
1089
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001090static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001091 .owner = THIS_MODULE,
1092 .read = evdev_read,
1093 .write = evdev_write,
1094 .poll = evdev_poll,
1095 .open = evdev_open,
1096 .release = evdev_release,
1097 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001098#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001099 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001100#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001101 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001102 .flush = evdev_flush,
1103 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104};
1105
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001106/*
1107 * Mark device non-existent. This disables writes, ioctls and
1108 * prevents new users from opening the device. Already posted
1109 * blocking reads will stay, however new ones will fail.
1110 */
1111static void evdev_mark_dead(struct evdev *evdev)
1112{
1113 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001114 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001115 mutex_unlock(&evdev->mutex);
1116}
1117
1118static void evdev_cleanup(struct evdev *evdev)
1119{
1120 struct input_handle *handle = &evdev->handle;
1121
1122 evdev_mark_dead(evdev);
1123 evdev_hangup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001124
1125 cdev_del(&evdev->cdev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001126
1127 /* evdev is marked dead so no one else accesses evdev->open */
1128 if (evdev->open) {
1129 input_flush_device(handle, NULL);
1130 input_close_device(handle);
1131 }
1132}
1133
1134/*
1135 * Create new evdev device. Note that input core serializes calls
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001136 * to connect and disconnect.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001137 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001138static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
1139 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
1141 struct evdev *evdev;
1142 int minor;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001143 int dev_no;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001144 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001146 minor = input_get_new_minor(EVDEV_MINOR_BASE, EVDEV_MINORS, true);
1147 if (minor < 0) {
1148 error = minor;
1149 pr_err("failed to reserve new minor: %d\n", error);
1150 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
1152
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001153 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001154 if (!evdev) {
1155 error = -ENOMEM;
1156 goto err_free_minor;
1157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001159 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001160 spin_lock_init(&evdev->client_lock);
1161 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 init_waitqueue_head(&evdev->wait);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001163 evdev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001164
1165 dev_no = minor;
1166 /* Normalize device number if it falls into legacy range */
1167 if (dev_no < EVDEV_MINOR_BASE + EVDEV_MINORS)
1168 dev_no -= EVDEV_MINOR_BASE;
1169 dev_set_name(&evdev->dev, "event%d", dev_no);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001170
Dmitry Torokhova7097ff2008-04-01 00:22:53 -04001171 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -07001172 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 evdev->handle.handler = handler;
1174 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001175
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001176 evdev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001177 evdev->dev.class = &input_class;
1178 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001179 evdev->dev.release = evdev_free;
1180 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001182 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001183 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001184 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001186 cdev_init(&evdev->cdev, &evdev_fops);
Dmitry Torokhov4a215aa2012-10-21 17:57:20 -07001187 evdev->cdev.kobj.parent = &evdev->dev.kobj;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001188 error = cdev_add(&evdev->cdev, evdev->dev.devt, 1);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001189 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001190 goto err_unregister_handle;
1191
1192 error = device_add(&evdev->dev);
1193 if (error)
1194 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001195
1196 return 0;
1197
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001198 err_cleanup_evdev:
1199 evdev_cleanup(evdev);
1200 err_unregister_handle:
1201 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001202 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001203 put_device(&evdev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001204 err_free_minor:
1205 input_free_minor(minor);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001206 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
1208
1209static void evdev_disconnect(struct input_handle *handle)
1210{
1211 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001213 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001214 evdev_cleanup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001215 input_free_minor(MINOR(evdev->dev.devt));
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001216 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001217 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001220static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 { .driver_info = 1 }, /* Matches all devices */
1222 { }, /* Terminating zero entry */
1223};
1224
1225MODULE_DEVICE_TABLE(input, evdev_ids);
1226
1227static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001228 .event = evdev_event,
Henrik Rydberga274ac12012-08-29 20:48:02 +02001229 .events = evdev_events,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001230 .connect = evdev_connect,
1231 .disconnect = evdev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001232 .legacy_minors = true,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001233 .minor = EVDEV_MINOR_BASE,
1234 .name = "evdev",
1235 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236};
1237
1238static int __init evdev_init(void)
1239{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001240 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
1243static void __exit evdev_exit(void)
1244{
1245 input_unregister_handler(&evdev_handler);
1246}
1247
1248module_init(evdev_init);
1249module_exit(evdev_exit);
1250
1251MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1252MODULE_DESCRIPTION("Input driver event char devices");
1253MODULE_LICENSE("GPL");