blob: a18f41b89b6a90bc9f92053af8b16e466c2f562b [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 int retval;
294
295 retval = mutex_lock_interruptible(&evdev->mutex);
296 if (retval)
297 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400298
David Herrmannc7dc6572013-09-07 12:23:05 -0700299 if (!evdev->exist || client->revoked)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400300 retval = -ENODEV;
301 else
302 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400303
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400304 mutex_unlock(&evdev->mutex);
305 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400308static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400310 struct evdev *evdev = container_of(dev, struct evdev, dev);
311
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400312 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 kfree(evdev);
314}
315
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400316/*
317 * Grabs an event device (along with underlying input device).
318 * This function is called with evdev->mutex taken.
319 */
320static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
321{
322 int error;
323
324 if (evdev->grab)
325 return -EBUSY;
326
327 error = input_grab_device(&evdev->handle);
328 if (error)
329 return error;
330
331 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400332
333 return 0;
334}
335
336static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
337{
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700338 struct evdev_client *grab = rcu_dereference_protected(evdev->grab,
339 lockdep_is_held(&evdev->mutex));
340
341 if (grab != client)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400342 return -EINVAL;
343
344 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400345 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400346 input_release_device(&evdev->handle);
347
348 return 0;
349}
350
351static void evdev_attach_client(struct evdev *evdev,
352 struct evdev_client *client)
353{
354 spin_lock(&evdev->client_lock);
355 list_add_tail_rcu(&client->node, &evdev->client_list);
356 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400357}
358
359static void evdev_detach_client(struct evdev *evdev,
360 struct evdev_client *client)
361{
362 spin_lock(&evdev->client_lock);
363 list_del_rcu(&client->node);
364 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400365 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400366}
367
368static int evdev_open_device(struct evdev *evdev)
369{
370 int retval;
371
372 retval = mutex_lock_interruptible(&evdev->mutex);
373 if (retval)
374 return retval;
375
376 if (!evdev->exist)
377 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400378 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400379 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400380 if (retval)
381 evdev->open--;
382 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400383
384 mutex_unlock(&evdev->mutex);
385 return retval;
386}
387
388static void evdev_close_device(struct evdev *evdev)
389{
390 mutex_lock(&evdev->mutex);
391
392 if (evdev->exist && !--evdev->open)
393 input_close_device(&evdev->handle);
394
395 mutex_unlock(&evdev->mutex);
396}
397
398/*
399 * Wake up users waiting for IO so they can disconnect from
400 * dead device.
401 */
402static void evdev_hangup(struct evdev *evdev)
403{
404 struct evdev_client *client;
405
406 spin_lock(&evdev->client_lock);
407 list_for_each_entry(client, &evdev->client_list, node)
408 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
409 spin_unlock(&evdev->client_lock);
410
411 wake_up_interruptible(&evdev->wait);
412}
413
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400414static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400416 struct evdev_client *client = file->private_data;
417 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400419 mutex_lock(&evdev->mutex);
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700420 evdev_ungrab(evdev, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400421 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400423 evdev_detach_client(evdev, client);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700424
425 if (is_vmalloc_addr(client))
426 vfree(client);
427 else
428 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400430 evdev_close_device(evdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return 0;
433}
434
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700435static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
436{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700437 unsigned int n_events =
438 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
439 EVDEV_MIN_BUFFER_SIZE);
440
441 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700442}
443
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400444static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700446 struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev);
447 unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700448 unsigned int size = sizeof(struct evdev_client) +
449 bufsize * sizeof(struct input_event);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400450 struct evdev_client *client;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400451 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Daniel Stone92eb77d2013-10-31 00:25:34 -0700453 client = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
454 if (!client)
455 client = vzalloc(size);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700456 if (!client)
457 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700459 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400460 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400461 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400462 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400464 error = evdev_open_device(evdev);
465 if (error)
466 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400468 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800469 nonseekable_open(inode, file);
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400472
473 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400474 evdev_detach_client(evdev, client);
Andrew Morton92788ac2014-12-02 15:59:31 -0800475 kvfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400476 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400479static ssize_t evdev_write(struct file *file, const char __user *buffer,
480 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400482 struct evdev_client *client = file->private_data;
483 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800485 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700487 if (count != 0 && count < input_event_size())
Peter Korsgaard439581e2011-02-25 09:30:46 -0800488 return -EINVAL;
489
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400490 retval = mutex_lock_interruptible(&evdev->mutex);
491 if (retval)
492 return retval;
493
David Herrmannc7dc6572013-09-07 12:23:05 -0700494 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400495 retval = -ENODEV;
496 goto out;
497 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500498
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700499 while (retval + input_event_size() <= count) {
500
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400501 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400502 retval = -EFAULT;
503 goto out;
504 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800505 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400506
507 input_inject_event(&evdev->handle,
508 event.type, event.code, event.value);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700509 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500510
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400511 out:
512 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500513 return retval;
514}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500515
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400516static int evdev_fetch_next_event(struct evdev_client *client,
517 struct input_event *event)
518{
519 int have_event;
520
521 spin_lock_irq(&client->buffer_lock);
522
Dima Zavin566cf5b2011-12-30 15:16:44 -0800523 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400524 if (have_event) {
525 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700526 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400527 }
528
529 spin_unlock_irq(&client->buffer_lock);
530
531 return have_event;
532}
533
534static ssize_t evdev_read(struct file *file, char __user *buffer,
535 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400537 struct evdev_client *client = file->private_data;
538 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400539 struct input_event event;
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700540 size_t read = 0;
541 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700543 if (count != 0 && count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return -EINVAL;
545
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700546 for (;;) {
David Herrmannc7dc6572013-09-07 12:23:05 -0700547 if (!evdev->exist || client->revoked)
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700548 return -ENODEV;
549
550 if (client->packet_head == client->tail &&
551 (file->f_flags & O_NONBLOCK))
552 return -EAGAIN;
553
554 /*
555 * count == 0 is special - no IO is done but we check
556 * for error conditions (see above).
557 */
558 if (count == 0)
559 break;
560
561 while (read + input_event_size() <= count &&
562 evdev_fetch_next_event(client, &event)) {
563
564 if (input_event_to_user(buffer + read, &event))
565 return -EFAULT;
566
567 read += input_event_size();
568 }
569
570 if (read)
571 break;
572
573 if (!(file->f_flags & O_NONBLOCK)) {
574 error = wait_event_interruptible(evdev->wait,
575 client->packet_head != client->tail ||
David Herrmannc7dc6572013-09-07 12:23:05 -0700576 !evdev->exist || client->revoked);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700577 if (error)
578 return error;
579 }
Dima Zavin509f87c2011-12-30 15:16:44 -0800580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700582 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585/* No kernel lock - fine */
586static unsigned int evdev_poll(struct file *file, poll_table *wait)
587{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400588 struct evdev_client *client = file->private_data;
589 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700590 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400591
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400592 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700593
David Herrmannc7dc6572013-09-07 12:23:05 -0700594 if (evdev->exist && !client->revoked)
595 mask = POLLOUT | POLLWRNORM;
596 else
597 mask = POLLHUP | POLLERR;
598
Jeff Browncdda9112011-04-26 22:16:11 -0700599 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700600 mask |= POLLIN | POLLRDNORM;
601
602 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500605#ifdef CONFIG_COMPAT
606
607#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700608#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500609
610#ifdef __BIG_ENDIAN
611static int bits_to_user(unsigned long *bits, unsigned int maxbit,
612 unsigned int maxlen, void __user *p, int compat)
613{
614 int len, i;
615
616 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700617 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400618 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500619 len = maxlen;
620
621 for (i = 0; i < len / sizeof(compat_long_t); i++)
622 if (copy_to_user((compat_long_t __user *) p + i,
623 (compat_long_t *) bits +
624 i + 1 - ((i % 2) << 1),
625 sizeof(compat_long_t)))
626 return -EFAULT;
627 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700628 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500629 if (len > maxlen)
630 len = maxlen;
631
632 if (copy_to_user(p, bits, len))
633 return -EFAULT;
634 }
635
636 return len;
637}
638#else
639static int bits_to_user(unsigned long *bits, unsigned int maxbit,
640 unsigned int maxlen, void __user *p, int compat)
641{
642 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700643 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
644 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500645
646 if (len > maxlen)
647 len = maxlen;
648
649 return copy_to_user(p, bits, len) ? -EFAULT : len;
650}
651#endif /* __BIG_ENDIAN */
652
653#else
654
655static int bits_to_user(unsigned long *bits, unsigned int maxbit,
656 unsigned int maxlen, void __user *p, int compat)
657{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700658 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500659
660 if (len > maxlen)
661 len = maxlen;
662
663 return copy_to_user(p, bits, len) ? -EFAULT : len;
664}
665
666#endif /* CONFIG_COMPAT */
667
668static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
669{
670 int len;
671
672 if (!str)
673 return -ENOENT;
674
675 len = strlen(str) + 1;
676 if (len > maxlen)
677 len = maxlen;
678
679 return copy_to_user(p, str, len) ? -EFAULT : len;
680}
681
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700682static int handle_eviocgbit(struct input_dev *dev,
683 unsigned int type, unsigned int size,
684 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400685{
686 unsigned long *bits;
687 int len;
688
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700689 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400690
691 case 0: bits = dev->evbit; len = EV_MAX; break;
692 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
693 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
694 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
695 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
696 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
697 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
698 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
699 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
700 default: return -EINVAL;
701 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400702
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700703 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400704}
Linus Torvalds5402a732008-08-05 11:42:42 -0400705
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800706static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
707{
708 struct input_keymap_entry ke = {
709 .len = sizeof(unsigned int),
710 .flags = 0,
711 };
712 int __user *ip = (int __user *)p;
713 int error;
714
715 /* legacy case */
716 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
717 return -EFAULT;
718
719 error = input_get_keycode(dev, &ke);
720 if (error)
721 return error;
722
723 if (put_user(ke.keycode, ip + 1))
724 return -EFAULT;
725
726 return 0;
727}
728
729static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700730{
731 struct input_keymap_entry ke;
732 int error;
733
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800734 if (copy_from_user(&ke, p, sizeof(ke)))
735 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700736
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800737 error = input_get_keycode(dev, &ke);
738 if (error)
739 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700740
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800741 if (copy_to_user(p, &ke, sizeof(ke)))
742 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700743
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700744 return 0;
745}
746
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800747static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
748{
749 struct input_keymap_entry ke = {
750 .len = sizeof(unsigned int),
751 .flags = 0,
752 };
753 int __user *ip = (int __user *)p;
754
755 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
756 return -EFAULT;
757
758 if (get_user(ke.keycode, ip + 1))
759 return -EFAULT;
760
761 return input_set_keycode(dev, &ke);
762}
763
764static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700765{
766 struct input_keymap_entry ke;
767
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800768 if (copy_from_user(&ke, p, sizeof(ke)))
769 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700770
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800771 if (ke.len > sizeof(ke.scancode))
772 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700773
774 return input_set_keycode(dev, &ke);
775}
776
David Herrmann48318022013-04-07 21:13:19 -0700777/*
778 * If we transfer state to the user, we should flush all pending events
779 * of the same type from the client's queue. Otherwise, they might end up
780 * with duplicate events, which can screw up client's state tracking.
781 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
782 * event so user-space will notice missing events.
783 *
784 * LOCKING:
785 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
786 * need the even_lock only to guarantee consistent state. We can safely release
787 * it while flushing the queue. This allows input-core to handle filters while
788 * we flush the queue.
789 */
790static int evdev_handle_get_val(struct evdev_client *client,
791 struct input_dev *dev, unsigned int type,
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700792 unsigned long *bits, unsigned int maxbit,
793 unsigned int maxlen, void __user *p,
794 int compat)
David Herrmann48318022013-04-07 21:13:19 -0700795{
796 int ret;
797 unsigned long *mem;
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700798 size_t len;
David Herrmann48318022013-04-07 21:13:19 -0700799
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700800 len = BITS_TO_LONGS(maxbit) * sizeof(unsigned long);
801 mem = kmalloc(len, GFP_KERNEL);
David Herrmann48318022013-04-07 21:13:19 -0700802 if (!mem)
803 return -ENOMEM;
804
805 spin_lock_irq(&dev->event_lock);
806 spin_lock(&client->buffer_lock);
807
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700808 memcpy(mem, bits, len);
David Herrmann48318022013-04-07 21:13:19 -0700809
810 spin_unlock(&dev->event_lock);
811
812 __evdev_flush_queue(client, type);
813
814 spin_unlock_irq(&client->buffer_lock);
815
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700816 ret = bits_to_user(mem, maxbit, maxlen, p, compat);
David Herrmann48318022013-04-07 21:13:19 -0700817 if (ret < 0)
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800818 evdev_queue_syn_dropped(client);
David Herrmann48318022013-04-07 21:13:19 -0700819
820 kfree(mem);
821
822 return ret;
823}
824
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100825static int evdev_handle_mt_request(struct input_dev *dev,
826 unsigned int size,
827 int __user *ip)
828{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200829 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100830 unsigned int code;
831 int max_slots;
832 int i;
833
834 if (get_user(code, &ip[0]))
835 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200836 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100837 return -EINVAL;
838
839 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200840 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
841 int value = input_mt_get_value(&mt->slots[i], code);
842 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100843 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200844 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100845
846 return 0;
847}
848
David Herrmannc7dc6572013-09-07 12:23:05 -0700849static int evdev_revoke(struct evdev *evdev, struct evdev_client *client,
850 struct file *file)
851{
852 client->revoked = true;
853 evdev_ungrab(evdev, client);
854 input_flush_device(&evdev->handle, file);
855 wake_up_interruptible(&evdev->wait);
856
857 return 0;
858}
859
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400860static long evdev_do_ioctl(struct file *file, unsigned int cmd,
861 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400863 struct evdev_client *client = file->private_data;
864 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 struct input_dev *dev = evdev->handle.dev;
866 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400867 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500868 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800869 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700870 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400871 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700873 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 switch (cmd) {
875
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400876 case EVIOCGVERSION:
877 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400879 case EVIOCGID:
880 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
881 return -EFAULT;
882 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400883
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400884 case EVIOCGREP:
885 if (!test_bit(EV_REP, dev->evbit))
886 return -ENOSYS;
887 if (put_user(dev->rep[REP_DELAY], ip))
888 return -EFAULT;
889 if (put_user(dev->rep[REP_PERIOD], ip + 1))
890 return -EFAULT;
891 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400892
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400893 case EVIOCSREP:
894 if (!test_bit(EV_REP, dev->evbit))
895 return -ENOSYS;
896 if (get_user(u, ip))
897 return -EFAULT;
898 if (get_user(v, ip + 1))
899 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400900
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400901 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
902 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500903
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400904 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400906 case EVIOCRMFF:
907 return input_ff_erase(dev, (int)(unsigned long) p, file);
908
909 case EVIOCGEFFECTS:
910 i = test_bit(EV_FF, dev->evbit) ?
911 dev->ff->max_effects : 0;
912 if (put_user(i, ip))
913 return -EFAULT;
914 return 0;
915
916 case EVIOCGRAB:
917 if (p)
918 return evdev_grab(evdev, client);
919 else
920 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800921
David Herrmannc7dc6572013-09-07 12:23:05 -0700922 case EVIOCREVOKE:
923 if (p)
924 return -EINVAL;
925 else
926 return evdev_revoke(evdev, client, file);
927
John Stultza80b83b2012-02-03 00:19:07 -0800928 case EVIOCSCLOCKID:
929 if (copy_from_user(&i, p, sizeof(unsigned int)))
930 return -EFAULT;
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800931
932 return evdev_set_clk_type(client, i);
John Stultza80b83b2012-02-03 00:19:07 -0800933
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800934 case EVIOCGKEYCODE:
935 return evdev_handle_get_keycode(dev, p);
936
937 case EVIOCSKEYCODE:
938 return evdev_handle_set_keycode(dev, p);
939
940 case EVIOCGKEYCODE_V2:
941 return evdev_handle_get_keycode_v2(dev, p);
942
943 case EVIOCSKEYCODE_V2:
944 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700945 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400946
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700947 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400948
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700949 /* Now check variable-length commands */
950#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700951 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400952
Henrik Rydberg85b77202010-12-18 20:51:13 +0100953 case EVIOCGPROP(0):
954 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
955 size, p, compat_mode);
956
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100957 case EVIOCGMTSLOTS(0):
958 return evdev_handle_mt_request(dev, size, ip);
959
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700960 case EVIOCGKEY(0):
David Herrmann48318022013-04-07 21:13:19 -0700961 return evdev_handle_get_val(client, dev, EV_KEY, dev->key,
962 KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400963
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700964 case EVIOCGLED(0):
David Herrmann48318022013-04-07 21:13:19 -0700965 return evdev_handle_get_val(client, dev, EV_LED, dev->led,
966 LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400967
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700968 case EVIOCGSND(0):
David Herrmann48318022013-04-07 21:13:19 -0700969 return evdev_handle_get_val(client, dev, EV_SND, dev->snd,
970 SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400971
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700972 case EVIOCGSW(0):
David Herrmann48318022013-04-07 21:13:19 -0700973 return evdev_handle_get_val(client, dev, EV_SW, dev->sw,
974 SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400975
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700976 case EVIOCGNAME(0):
977 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400978
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700979 case EVIOCGPHYS(0):
980 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400981
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700982 case EVIOCGUNIQ(0):
983 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400984
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700985 case EVIOC_MASK_SIZE(EVIOCSFF):
986 if (input_ff_effect_from_user(p, size, &effect))
987 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400988
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700989 error = input_ff_upload(dev, &effect, file);
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -0700990 if (error)
991 return error;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400992
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700993 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
994 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400995
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -0700996 return 0;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700997 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400998
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700999 /* Multi-number variable-length handlers */
1000 if (_IOC_TYPE(cmd) != 'E')
1001 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001003 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001005 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
1006 return handle_eviocgbit(dev,
1007 _IOC_NR(cmd) & EV_MAX, size,
1008 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001010 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001011
Daniel Mack0a74a1d2010-10-18 08:43:30 -07001012 if (!dev->absinfo)
1013 return -EINVAL;
1014
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001015 t = _IOC_NR(cmd) & ABS_MAX;
1016 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001017
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001018 if (copy_to_user(p, &abs, min_t(size_t,
1019 size, sizeof(struct input_absinfo))))
1020 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001021
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001022 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001025
Daniel Mackf9ce6eb2010-10-18 08:43:50 -07001026 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001027
1028 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
1029
Daniel Mack0a74a1d2010-10-18 08:43:30 -07001030 if (!dev->absinfo)
1031 return -EINVAL;
1032
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001033 t = _IOC_NR(cmd) & ABS_MAX;
1034
1035 if (copy_from_user(&abs, p, min_t(size_t,
1036 size, sizeof(struct input_absinfo))))
1037 return -EFAULT;
1038
1039 if (size < sizeof(struct input_absinfo))
1040 abs.resolution = 0;
1041
1042 /* We can't change number of reserved MT slots */
1043 if (t == ABS_MT_SLOT)
1044 return -EINVAL;
1045
1046 /*
1047 * Take event lock to ensure that we are not
1048 * changing device parameters in the middle
1049 * of event.
1050 */
1051 spin_lock_irq(&dev->event_lock);
1052 dev->absinfo[t] = abs;
1053 spin_unlock_irq(&dev->event_lock);
1054
1055 return 0;
1056 }
1057 }
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return -EINVAL;
1060}
1061
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001062static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
1063 void __user *p, int compat_mode)
1064{
1065 struct evdev_client *client = file->private_data;
1066 struct evdev *evdev = client->evdev;
1067 int retval;
1068
1069 retval = mutex_lock_interruptible(&evdev->mutex);
1070 if (retval)
1071 return retval;
1072
David Herrmannc7dc6572013-09-07 12:23:05 -07001073 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001074 retval = -ENODEV;
1075 goto out;
1076 }
1077
1078 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
1079
1080 out:
1081 mutex_unlock(&evdev->mutex);
1082 return retval;
1083}
1084
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001085static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1086{
1087 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
1088}
1089
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001090#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001091static long evdev_ioctl_compat(struct file *file,
1092 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001093{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001094 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001095}
1096#endif
1097
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001098static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001099 .owner = THIS_MODULE,
1100 .read = evdev_read,
1101 .write = evdev_write,
1102 .poll = evdev_poll,
1103 .open = evdev_open,
1104 .release = evdev_release,
1105 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001106#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001107 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001108#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001109 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001110 .flush = evdev_flush,
1111 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112};
1113
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001114/*
1115 * Mark device non-existent. This disables writes, ioctls and
1116 * prevents new users from opening the device. Already posted
1117 * blocking reads will stay, however new ones will fail.
1118 */
1119static void evdev_mark_dead(struct evdev *evdev)
1120{
1121 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001122 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001123 mutex_unlock(&evdev->mutex);
1124}
1125
1126static void evdev_cleanup(struct evdev *evdev)
1127{
1128 struct input_handle *handle = &evdev->handle;
1129
1130 evdev_mark_dead(evdev);
1131 evdev_hangup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001132
1133 cdev_del(&evdev->cdev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001134
1135 /* evdev is marked dead so no one else accesses evdev->open */
1136 if (evdev->open) {
1137 input_flush_device(handle, NULL);
1138 input_close_device(handle);
1139 }
1140}
1141
1142/*
1143 * Create new evdev device. Note that input core serializes calls
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001144 * to connect and disconnect.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001145 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001146static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
1147 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 struct evdev *evdev;
1150 int minor;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001151 int dev_no;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001152 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001154 minor = input_get_new_minor(EVDEV_MINOR_BASE, EVDEV_MINORS, true);
1155 if (minor < 0) {
1156 error = minor;
1157 pr_err("failed to reserve new minor: %d\n", error);
1158 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001161 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001162 if (!evdev) {
1163 error = -ENOMEM;
1164 goto err_free_minor;
1165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001167 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001168 spin_lock_init(&evdev->client_lock);
1169 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 init_waitqueue_head(&evdev->wait);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001171 evdev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001172
1173 dev_no = minor;
1174 /* Normalize device number if it falls into legacy range */
1175 if (dev_no < EVDEV_MINOR_BASE + EVDEV_MINORS)
1176 dev_no -= EVDEV_MINOR_BASE;
1177 dev_set_name(&evdev->dev, "event%d", dev_no);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001178
Dmitry Torokhova7097ff2008-04-01 00:22:53 -04001179 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -07001180 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 evdev->handle.handler = handler;
1182 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001183
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001184 evdev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001185 evdev->dev.class = &input_class;
1186 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001187 evdev->dev.release = evdev_free;
1188 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001190 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001191 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001192 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001194 cdev_init(&evdev->cdev, &evdev_fops);
Dmitry Torokhov4a215aa2012-10-21 17:57:20 -07001195 evdev->cdev.kobj.parent = &evdev->dev.kobj;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001196 error = cdev_add(&evdev->cdev, evdev->dev.devt, 1);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001197 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001198 goto err_unregister_handle;
1199
1200 error = device_add(&evdev->dev);
1201 if (error)
1202 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001203
1204 return 0;
1205
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001206 err_cleanup_evdev:
1207 evdev_cleanup(evdev);
1208 err_unregister_handle:
1209 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001210 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001211 put_device(&evdev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001212 err_free_minor:
1213 input_free_minor(minor);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001214 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
1217static void evdev_disconnect(struct input_handle *handle)
1218{
1219 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001221 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001222 evdev_cleanup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001223 input_free_minor(MINOR(evdev->dev.devt));
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001224 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001225 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001228static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 { .driver_info = 1 }, /* Matches all devices */
1230 { }, /* Terminating zero entry */
1231};
1232
1233MODULE_DEVICE_TABLE(input, evdev_ids);
1234
1235static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001236 .event = evdev_event,
Henrik Rydberga274ac12012-08-29 20:48:02 +02001237 .events = evdev_events,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001238 .connect = evdev_connect,
1239 .disconnect = evdev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001240 .legacy_minors = true,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001241 .minor = EVDEV_MINOR_BASE,
1242 .name = "evdev",
1243 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244};
1245
1246static int __init evdev_init(void)
1247{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001248 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
1250
1251static void __exit evdev_exit(void)
1252{
1253 input_unregister_handler(&evdev_handler);
1254}
1255
1256module_init(evdev_init);
1257module_exit(evdev_exit);
1258
1259MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1260MODULE_DESCRIPTION("Input driver event char devices");
1261MODULE_LICENSE("GPL");