blob: de055451d1af6e5beab07118eb38b6a90003c8a8 [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
31struct evdev {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 int open;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 struct input_handle handle;
34 wait_queue_head_t wait;
Arnd Bergmann2be85272010-03-04 15:50:28 +010035 struct evdev_client __rcu *grab;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040036 struct list_head client_list;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040037 spinlock_t client_lock; /* protects client_list */
38 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040039 struct device dev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070040 struct cdev cdev;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -070041 bool exist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
43
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040044struct evdev_client {
Jeff Brown9fb0f142011-04-12 23:29:38 -070045 unsigned int head;
46 unsigned int tail;
Jeff Browncdda9112011-04-26 22:16:11 -070047 unsigned int packet_head; /* [future] position of the first element of next packet */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040048 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct fasync_struct *fasync;
50 struct evdev *evdev;
51 struct list_head node;
John Stultza80b83b2012-02-03 00:19:07 -080052 int clkid;
David Herrmannc7dc6572013-09-07 12:23:05 -070053 bool revoked;
Jeff Brown9fb0f142011-04-12 23:29:38 -070054 unsigned int bufsize;
Henrik Rydbergb58f7082010-06-23 09:17:56 -070055 struct input_event buffer[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
David Herrmann48318022013-04-07 21:13:19 -070058/* flush queued events of type @type, caller must hold client->buffer_lock */
59static void __evdev_flush_queue(struct evdev_client *client, unsigned int type)
60{
61 unsigned int i, head, num;
62 unsigned int mask = client->bufsize - 1;
63 bool is_report;
64 struct input_event *ev;
65
66 BUG_ON(type == EV_SYN);
67
68 head = client->tail;
69 client->packet_head = client->tail;
70
71 /* init to 1 so a leading SYN_REPORT will not be dropped */
72 num = 1;
73
74 for (i = client->tail; i != client->head; i = (i + 1) & mask) {
75 ev = &client->buffer[i];
76 is_report = ev->type == EV_SYN && ev->code == SYN_REPORT;
77
78 if (ev->type == type) {
79 /* drop matched entry */
80 continue;
81 } else if (is_report && !num) {
82 /* drop empty SYN_REPORT groups */
83 continue;
84 } else if (head != i) {
85 /* move entry to fill the gap */
86 client->buffer[head].time = ev->time;
87 client->buffer[head].type = ev->type;
88 client->buffer[head].code = ev->code;
89 client->buffer[head].value = ev->value;
90 }
91
92 num++;
93 head = (head + 1) & mask;
94
95 if (is_report) {
96 num = 0;
97 client->packet_head = head;
98 }
99 }
100
101 client->head = head;
102}
103
104/* queue SYN_DROPPED event */
105static void evdev_queue_syn_dropped(struct evdev_client *client)
106{
107 unsigned long flags;
108 struct input_event ev;
109 ktime_t time;
110
Thomas Gleixner5cac2f42014-07-16 21:04:25 +0000111 time = (client->clkid == CLOCK_MONOTONIC) ?
112 ktime_get() : ktime_get_real();
David Herrmann48318022013-04-07 21:13:19 -0700113
114 ev.time = ktime_to_timeval(time);
115 ev.type = EV_SYN;
116 ev.code = SYN_DROPPED;
117 ev.value = 0;
118
119 spin_lock_irqsave(&client->buffer_lock, flags);
120
121 client->buffer[client->head++] = ev;
122 client->head &= client->bufsize - 1;
123
124 if (unlikely(client->head == client->tail)) {
125 /* drop queue but keep our SYN_DROPPED event */
126 client->tail = (client->head - 1) & (client->bufsize - 1);
127 client->packet_head = client->tail;
128 }
129
130 spin_unlock_irqrestore(&client->buffer_lock, flags);
131}
132
Henrik Rydberga274ac12012-08-29 20:48:02 +0200133static void __pass_event(struct evdev_client *client,
134 const struct input_event *event)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400135{
Jeff Brown9fb0f142011-04-12 23:29:38 -0700136 client->buffer[client->head++] = *event;
137 client->head &= client->bufsize - 1;
138
139 if (unlikely(client->head == client->tail)) {
140 /*
141 * This effectively "drops" all unconsumed events, leaving
142 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
143 */
144 client->tail = (client->head - 2) & (client->bufsize - 1);
145
146 client->buffer[client->tail].time = event->time;
147 client->buffer[client->tail].type = EV_SYN;
148 client->buffer[client->tail].code = SYN_DROPPED;
149 client->buffer[client->tail].value = 0;
Jeff Browncdda9112011-04-26 22:16:11 -0700150
151 client->packet_head = client->tail;
152 }
153
154 if (event->type == EV_SYN && event->code == SYN_REPORT) {
155 client->packet_head = client->head;
156 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Jeff Brown9fb0f142011-04-12 23:29:38 -0700157 }
Henrik Rydberga274ac12012-08-29 20:48:02 +0200158}
159
160static void evdev_pass_values(struct evdev_client *client,
161 const struct input_value *vals, unsigned int count,
162 ktime_t mono, ktime_t real)
163{
164 struct evdev *evdev = client->evdev;
165 const struct input_value *v;
166 struct input_event event;
167 bool wakeup = false;
168
David Herrmannc7dc6572013-09-07 12:23:05 -0700169 if (client->revoked)
170 return;
171
Henrik Rydberga274ac12012-08-29 20:48:02 +0200172 event.time = ktime_to_timeval(client->clkid == CLOCK_MONOTONIC ?
173 mono : real);
174
175 /* Interrupts are disabled, just acquire the lock. */
176 spin_lock(&client->buffer_lock);
177
178 for (v = vals; v != vals + count; v++) {
179 event.type = v->type;
180 event.code = v->code;
181 event.value = v->value;
182 __pass_event(client, &event);
183 if (v->type == EV_SYN && v->code == SYN_REPORT)
184 wakeup = true;
185 }
Jeff Brown9fb0f142011-04-12 23:29:38 -0700186
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400187 spin_unlock(&client->buffer_lock);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200188
189 if (wakeup)
190 wake_up_interruptible(&evdev->wait);
191}
192
193/*
194 * Pass incoming events to all connected clients.
195 */
196static void evdev_events(struct input_handle *handle,
197 const struct input_value *vals, unsigned int count)
198{
199 struct evdev *evdev = handle->private;
200 struct evdev_client *client;
201 ktime_t time_mono, time_real;
202
203 time_mono = ktime_get();
Thomas Gleixner5cac2f42014-07-16 21:04:25 +0000204 time_real = ktime_mono_to_real(time_mono);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200205
206 rcu_read_lock();
207
208 client = rcu_dereference(evdev->grab);
209
210 if (client)
211 evdev_pass_values(client, vals, count, time_mono, time_real);
212 else
213 list_for_each_entry_rcu(client, &evdev->client_list, node)
214 evdev_pass_values(client, vals, count,
215 time_mono, time_real);
216
217 rcu_read_unlock();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400218}
219
220/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400221 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400222 */
223static void evdev_event(struct input_handle *handle,
224 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Henrik Rydberga274ac12012-08-29 20:48:02 +0200226 struct input_value vals[] = { { type, code, value } };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Henrik Rydberga274ac12012-08-29 20:48:02 +0200228 evdev_events(handle, vals, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231static int evdev_fasync(int fd, struct file *file, int on)
232{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400233 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400234
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700235 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400238static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400240 struct evdev_client *client = file->private_data;
241 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400242 int retval;
243
244 retval = mutex_lock_interruptible(&evdev->mutex);
245 if (retval)
246 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400247
David Herrmannc7dc6572013-09-07 12:23:05 -0700248 if (!evdev->exist || client->revoked)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400249 retval = -ENODEV;
250 else
251 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400252
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400253 mutex_unlock(&evdev->mutex);
254 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400257static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400259 struct evdev *evdev = container_of(dev, struct evdev, dev);
260
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400261 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 kfree(evdev);
263}
264
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400265/*
266 * Grabs an event device (along with underlying input device).
267 * This function is called with evdev->mutex taken.
268 */
269static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
270{
271 int error;
272
273 if (evdev->grab)
274 return -EBUSY;
275
276 error = input_grab_device(&evdev->handle);
277 if (error)
278 return error;
279
280 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400281
282 return 0;
283}
284
285static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
286{
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700287 struct evdev_client *grab = rcu_dereference_protected(evdev->grab,
288 lockdep_is_held(&evdev->mutex));
289
290 if (grab != client)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400291 return -EINVAL;
292
293 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400294 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400295 input_release_device(&evdev->handle);
296
297 return 0;
298}
299
300static void evdev_attach_client(struct evdev *evdev,
301 struct evdev_client *client)
302{
303 spin_lock(&evdev->client_lock);
304 list_add_tail_rcu(&client->node, &evdev->client_list);
305 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400306}
307
308static void evdev_detach_client(struct evdev *evdev,
309 struct evdev_client *client)
310{
311 spin_lock(&evdev->client_lock);
312 list_del_rcu(&client->node);
313 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400314 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400315}
316
317static int evdev_open_device(struct evdev *evdev)
318{
319 int retval;
320
321 retval = mutex_lock_interruptible(&evdev->mutex);
322 if (retval)
323 return retval;
324
325 if (!evdev->exist)
326 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400327 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400328 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400329 if (retval)
330 evdev->open--;
331 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400332
333 mutex_unlock(&evdev->mutex);
334 return retval;
335}
336
337static void evdev_close_device(struct evdev *evdev)
338{
339 mutex_lock(&evdev->mutex);
340
341 if (evdev->exist && !--evdev->open)
342 input_close_device(&evdev->handle);
343
344 mutex_unlock(&evdev->mutex);
345}
346
347/*
348 * Wake up users waiting for IO so they can disconnect from
349 * dead device.
350 */
351static void evdev_hangup(struct evdev *evdev)
352{
353 struct evdev_client *client;
354
355 spin_lock(&evdev->client_lock);
356 list_for_each_entry(client, &evdev->client_list, node)
357 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
358 spin_unlock(&evdev->client_lock);
359
360 wake_up_interruptible(&evdev->wait);
361}
362
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400363static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400365 struct evdev_client *client = file->private_data;
366 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400368 mutex_lock(&evdev->mutex);
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700369 evdev_ungrab(evdev, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400370 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400372 evdev_detach_client(evdev, client);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700373
374 if (is_vmalloc_addr(client))
375 vfree(client);
376 else
377 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400379 evdev_close_device(evdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return 0;
382}
383
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700384static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
385{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700386 unsigned int n_events =
387 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
388 EVDEV_MIN_BUFFER_SIZE);
389
390 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700391}
392
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400393static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700395 struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev);
396 unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700397 unsigned int size = sizeof(struct evdev_client) +
398 bufsize * sizeof(struct input_event);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400399 struct evdev_client *client;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400400 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Daniel Stone92eb77d2013-10-31 00:25:34 -0700402 client = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
403 if (!client)
404 client = vzalloc(size);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700405 if (!client)
406 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700408 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400409 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400410 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400411 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400413 error = evdev_open_device(evdev);
414 if (error)
415 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400417 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800418 nonseekable_open(inode, file);
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400421
422 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400423 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400424 kfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400425 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400428static ssize_t evdev_write(struct file *file, const char __user *buffer,
429 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400431 struct evdev_client *client = file->private_data;
432 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800434 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700436 if (count != 0 && count < input_event_size())
Peter Korsgaard439581e2011-02-25 09:30:46 -0800437 return -EINVAL;
438
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400439 retval = mutex_lock_interruptible(&evdev->mutex);
440 if (retval)
441 return retval;
442
David Herrmannc7dc6572013-09-07 12:23:05 -0700443 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400444 retval = -ENODEV;
445 goto out;
446 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500447
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700448 while (retval + input_event_size() <= count) {
449
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400450 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400451 retval = -EFAULT;
452 goto out;
453 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800454 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400455
456 input_inject_event(&evdev->handle,
457 event.type, event.code, event.value);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700458 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500459
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400460 out:
461 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500462 return retval;
463}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500464
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400465static int evdev_fetch_next_event(struct evdev_client *client,
466 struct input_event *event)
467{
468 int have_event;
469
470 spin_lock_irq(&client->buffer_lock);
471
Dima Zavin566cf5b2011-12-30 15:16:44 -0800472 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400473 if (have_event) {
474 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700475 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400476 }
477
478 spin_unlock_irq(&client->buffer_lock);
479
480 return have_event;
481}
482
483static ssize_t evdev_read(struct file *file, char __user *buffer,
484 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400486 struct evdev_client *client = file->private_data;
487 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400488 struct input_event event;
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700489 size_t read = 0;
490 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700492 if (count != 0 && count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return -EINVAL;
494
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700495 for (;;) {
David Herrmannc7dc6572013-09-07 12:23:05 -0700496 if (!evdev->exist || client->revoked)
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700497 return -ENODEV;
498
499 if (client->packet_head == client->tail &&
500 (file->f_flags & O_NONBLOCK))
501 return -EAGAIN;
502
503 /*
504 * count == 0 is special - no IO is done but we check
505 * for error conditions (see above).
506 */
507 if (count == 0)
508 break;
509
510 while (read + input_event_size() <= count &&
511 evdev_fetch_next_event(client, &event)) {
512
513 if (input_event_to_user(buffer + read, &event))
514 return -EFAULT;
515
516 read += input_event_size();
517 }
518
519 if (read)
520 break;
521
522 if (!(file->f_flags & O_NONBLOCK)) {
523 error = wait_event_interruptible(evdev->wait,
524 client->packet_head != client->tail ||
David Herrmannc7dc6572013-09-07 12:23:05 -0700525 !evdev->exist || client->revoked);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700526 if (error)
527 return error;
528 }
Dima Zavin509f87c2011-12-30 15:16:44 -0800529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700531 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
534/* No kernel lock - fine */
535static unsigned int evdev_poll(struct file *file, poll_table *wait)
536{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400537 struct evdev_client *client = file->private_data;
538 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700539 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400540
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400541 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700542
David Herrmannc7dc6572013-09-07 12:23:05 -0700543 if (evdev->exist && !client->revoked)
544 mask = POLLOUT | POLLWRNORM;
545 else
546 mask = POLLHUP | POLLERR;
547
Jeff Browncdda9112011-04-26 22:16:11 -0700548 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700549 mask |= POLLIN | POLLRDNORM;
550
551 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500554#ifdef CONFIG_COMPAT
555
556#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700557#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500558
559#ifdef __BIG_ENDIAN
560static int bits_to_user(unsigned long *bits, unsigned int maxbit,
561 unsigned int maxlen, void __user *p, int compat)
562{
563 int len, i;
564
565 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700566 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400567 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500568 len = maxlen;
569
570 for (i = 0; i < len / sizeof(compat_long_t); i++)
571 if (copy_to_user((compat_long_t __user *) p + i,
572 (compat_long_t *) bits +
573 i + 1 - ((i % 2) << 1),
574 sizeof(compat_long_t)))
575 return -EFAULT;
576 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700577 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500578 if (len > maxlen)
579 len = maxlen;
580
581 if (copy_to_user(p, bits, len))
582 return -EFAULT;
583 }
584
585 return len;
586}
587#else
588static int bits_to_user(unsigned long *bits, unsigned int maxbit,
589 unsigned int maxlen, void __user *p, int compat)
590{
591 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700592 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
593 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500594
595 if (len > maxlen)
596 len = maxlen;
597
598 return copy_to_user(p, bits, len) ? -EFAULT : len;
599}
600#endif /* __BIG_ENDIAN */
601
602#else
603
604static int bits_to_user(unsigned long *bits, unsigned int maxbit,
605 unsigned int maxlen, void __user *p, int compat)
606{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700607 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500608
609 if (len > maxlen)
610 len = maxlen;
611
612 return copy_to_user(p, bits, len) ? -EFAULT : len;
613}
614
615#endif /* CONFIG_COMPAT */
616
617static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
618{
619 int len;
620
621 if (!str)
622 return -ENOENT;
623
624 len = strlen(str) + 1;
625 if (len > maxlen)
626 len = maxlen;
627
628 return copy_to_user(p, str, len) ? -EFAULT : len;
629}
630
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700631static int handle_eviocgbit(struct input_dev *dev,
632 unsigned int type, unsigned int size,
633 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400634{
635 unsigned long *bits;
636 int len;
637
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700638 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400639
640 case 0: bits = dev->evbit; len = EV_MAX; break;
641 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
642 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
643 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
644 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
645 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
646 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
647 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
648 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
649 default: return -EINVAL;
650 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400651
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700652 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400653}
Linus Torvalds5402a732008-08-05 11:42:42 -0400654
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800655static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
656{
657 struct input_keymap_entry ke = {
658 .len = sizeof(unsigned int),
659 .flags = 0,
660 };
661 int __user *ip = (int __user *)p;
662 int error;
663
664 /* legacy case */
665 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
666 return -EFAULT;
667
668 error = input_get_keycode(dev, &ke);
669 if (error)
670 return error;
671
672 if (put_user(ke.keycode, ip + 1))
673 return -EFAULT;
674
675 return 0;
676}
677
678static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700679{
680 struct input_keymap_entry ke;
681 int error;
682
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800683 if (copy_from_user(&ke, p, sizeof(ke)))
684 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700685
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800686 error = input_get_keycode(dev, &ke);
687 if (error)
688 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700689
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800690 if (copy_to_user(p, &ke, sizeof(ke)))
691 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700692
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700693 return 0;
694}
695
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800696static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
697{
698 struct input_keymap_entry ke = {
699 .len = sizeof(unsigned int),
700 .flags = 0,
701 };
702 int __user *ip = (int __user *)p;
703
704 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
705 return -EFAULT;
706
707 if (get_user(ke.keycode, ip + 1))
708 return -EFAULT;
709
710 return input_set_keycode(dev, &ke);
711}
712
713static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700714{
715 struct input_keymap_entry ke;
716
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800717 if (copy_from_user(&ke, p, sizeof(ke)))
718 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700719
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800720 if (ke.len > sizeof(ke.scancode))
721 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700722
723 return input_set_keycode(dev, &ke);
724}
725
David Herrmann48318022013-04-07 21:13:19 -0700726/*
727 * If we transfer state to the user, we should flush all pending events
728 * of the same type from the client's queue. Otherwise, they might end up
729 * with duplicate events, which can screw up client's state tracking.
730 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
731 * event so user-space will notice missing events.
732 *
733 * LOCKING:
734 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
735 * need the even_lock only to guarantee consistent state. We can safely release
736 * it while flushing the queue. This allows input-core to handle filters while
737 * we flush the queue.
738 */
739static int evdev_handle_get_val(struct evdev_client *client,
740 struct input_dev *dev, unsigned int type,
741 unsigned long *bits, unsigned int max,
742 unsigned int size, void __user *p, int compat)
743{
744 int ret;
745 unsigned long *mem;
746
747 mem = kmalloc(sizeof(unsigned long) * max, GFP_KERNEL);
748 if (!mem)
749 return -ENOMEM;
750
751 spin_lock_irq(&dev->event_lock);
752 spin_lock(&client->buffer_lock);
753
754 memcpy(mem, bits, sizeof(unsigned long) * max);
755
756 spin_unlock(&dev->event_lock);
757
758 __evdev_flush_queue(client, type);
759
760 spin_unlock_irq(&client->buffer_lock);
761
762 ret = bits_to_user(mem, max, size, p, compat);
763 if (ret < 0)
764 evdev_queue_syn_dropped(client);
765
766 kfree(mem);
767
768 return ret;
769}
770
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100771static int evdev_handle_mt_request(struct input_dev *dev,
772 unsigned int size,
773 int __user *ip)
774{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200775 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100776 unsigned int code;
777 int max_slots;
778 int i;
779
780 if (get_user(code, &ip[0]))
781 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200782 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100783 return -EINVAL;
784
785 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200786 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
787 int value = input_mt_get_value(&mt->slots[i], code);
788 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100789 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200790 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100791
792 return 0;
793}
794
David Herrmannc7dc6572013-09-07 12:23:05 -0700795static int evdev_revoke(struct evdev *evdev, struct evdev_client *client,
796 struct file *file)
797{
798 client->revoked = true;
799 evdev_ungrab(evdev, client);
800 input_flush_device(&evdev->handle, file);
801 wake_up_interruptible(&evdev->wait);
802
803 return 0;
804}
805
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400806static long evdev_do_ioctl(struct file *file, unsigned int cmd,
807 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400809 struct evdev_client *client = file->private_data;
810 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 struct input_dev *dev = evdev->handle.dev;
812 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400813 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500814 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800815 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700816 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400817 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700819 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 switch (cmd) {
821
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400822 case EVIOCGVERSION:
823 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400825 case EVIOCGID:
826 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
827 return -EFAULT;
828 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400829
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400830 case EVIOCGREP:
831 if (!test_bit(EV_REP, dev->evbit))
832 return -ENOSYS;
833 if (put_user(dev->rep[REP_DELAY], ip))
834 return -EFAULT;
835 if (put_user(dev->rep[REP_PERIOD], ip + 1))
836 return -EFAULT;
837 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400838
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400839 case EVIOCSREP:
840 if (!test_bit(EV_REP, dev->evbit))
841 return -ENOSYS;
842 if (get_user(u, ip))
843 return -EFAULT;
844 if (get_user(v, ip + 1))
845 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400846
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400847 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
848 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500849
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400850 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400852 case EVIOCRMFF:
853 return input_ff_erase(dev, (int)(unsigned long) p, file);
854
855 case EVIOCGEFFECTS:
856 i = test_bit(EV_FF, dev->evbit) ?
857 dev->ff->max_effects : 0;
858 if (put_user(i, ip))
859 return -EFAULT;
860 return 0;
861
862 case EVIOCGRAB:
863 if (p)
864 return evdev_grab(evdev, client);
865 else
866 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800867
David Herrmannc7dc6572013-09-07 12:23:05 -0700868 case EVIOCREVOKE:
869 if (p)
870 return -EINVAL;
871 else
872 return evdev_revoke(evdev, client, file);
873
John Stultza80b83b2012-02-03 00:19:07 -0800874 case EVIOCSCLOCKID:
875 if (copy_from_user(&i, p, sizeof(unsigned int)))
876 return -EFAULT;
877 if (i != CLOCK_MONOTONIC && i != CLOCK_REALTIME)
878 return -EINVAL;
879 client->clkid = i;
880 return 0;
881
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800882 case EVIOCGKEYCODE:
883 return evdev_handle_get_keycode(dev, p);
884
885 case EVIOCSKEYCODE:
886 return evdev_handle_set_keycode(dev, p);
887
888 case EVIOCGKEYCODE_V2:
889 return evdev_handle_get_keycode_v2(dev, p);
890
891 case EVIOCSKEYCODE_V2:
892 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700893 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400894
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700895 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400896
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700897 /* Now check variable-length commands */
898#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700899 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400900
Henrik Rydberg85b77202010-12-18 20:51:13 +0100901 case EVIOCGPROP(0):
902 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
903 size, p, compat_mode);
904
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100905 case EVIOCGMTSLOTS(0):
906 return evdev_handle_mt_request(dev, size, ip);
907
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700908 case EVIOCGKEY(0):
David Herrmann48318022013-04-07 21:13:19 -0700909 return evdev_handle_get_val(client, dev, EV_KEY, dev->key,
910 KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400911
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700912 case EVIOCGLED(0):
David Herrmann48318022013-04-07 21:13:19 -0700913 return evdev_handle_get_val(client, dev, EV_LED, dev->led,
914 LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400915
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700916 case EVIOCGSND(0):
David Herrmann48318022013-04-07 21:13:19 -0700917 return evdev_handle_get_val(client, dev, EV_SND, dev->snd,
918 SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400919
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700920 case EVIOCGSW(0):
David Herrmann48318022013-04-07 21:13:19 -0700921 return evdev_handle_get_val(client, dev, EV_SW, dev->sw,
922 SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400923
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700924 case EVIOCGNAME(0):
925 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400926
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700927 case EVIOCGPHYS(0):
928 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400929
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700930 case EVIOCGUNIQ(0):
931 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400932
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700933 case EVIOC_MASK_SIZE(EVIOCSFF):
934 if (input_ff_effect_from_user(p, size, &effect))
935 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400936
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700937 error = input_ff_upload(dev, &effect, file);
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -0700938 if (error)
939 return error;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400940
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700941 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
942 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400943
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -0700944 return 0;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700945 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400946
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700947 /* Multi-number variable-length handlers */
948 if (_IOC_TYPE(cmd) != 'E')
949 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700951 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700953 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
954 return handle_eviocgbit(dev,
955 _IOC_NR(cmd) & EV_MAX, size,
956 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700958 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400959
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700960 if (!dev->absinfo)
961 return -EINVAL;
962
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700963 t = _IOC_NR(cmd) & ABS_MAX;
964 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400965
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700966 if (copy_to_user(p, &abs, min_t(size_t,
967 size, sizeof(struct input_absinfo))))
968 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400969
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700970 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700973
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700974 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700975
976 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
977
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700978 if (!dev->absinfo)
979 return -EINVAL;
980
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700981 t = _IOC_NR(cmd) & ABS_MAX;
982
983 if (copy_from_user(&abs, p, min_t(size_t,
984 size, sizeof(struct input_absinfo))))
985 return -EFAULT;
986
987 if (size < sizeof(struct input_absinfo))
988 abs.resolution = 0;
989
990 /* We can't change number of reserved MT slots */
991 if (t == ABS_MT_SLOT)
992 return -EINVAL;
993
994 /*
995 * Take event lock to ensure that we are not
996 * changing device parameters in the middle
997 * of event.
998 */
999 spin_lock_irq(&dev->event_lock);
1000 dev->absinfo[t] = abs;
1001 spin_unlock_irq(&dev->event_lock);
1002
1003 return 0;
1004 }
1005 }
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 return -EINVAL;
1008}
1009
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001010static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
1011 void __user *p, int compat_mode)
1012{
1013 struct evdev_client *client = file->private_data;
1014 struct evdev *evdev = client->evdev;
1015 int retval;
1016
1017 retval = mutex_lock_interruptible(&evdev->mutex);
1018 if (retval)
1019 return retval;
1020
David Herrmannc7dc6572013-09-07 12:23:05 -07001021 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001022 retval = -ENODEV;
1023 goto out;
1024 }
1025
1026 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
1027
1028 out:
1029 mutex_unlock(&evdev->mutex);
1030 return retval;
1031}
1032
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001033static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1034{
1035 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
1036}
1037
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001038#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001039static long evdev_ioctl_compat(struct file *file,
1040 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001041{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001042 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001043}
1044#endif
1045
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001046static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001047 .owner = THIS_MODULE,
1048 .read = evdev_read,
1049 .write = evdev_write,
1050 .poll = evdev_poll,
1051 .open = evdev_open,
1052 .release = evdev_release,
1053 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001054#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001055 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001056#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001057 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001058 .flush = evdev_flush,
1059 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060};
1061
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001062/*
1063 * Mark device non-existent. This disables writes, ioctls and
1064 * prevents new users from opening the device. Already posted
1065 * blocking reads will stay, however new ones will fail.
1066 */
1067static void evdev_mark_dead(struct evdev *evdev)
1068{
1069 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001070 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001071 mutex_unlock(&evdev->mutex);
1072}
1073
1074static void evdev_cleanup(struct evdev *evdev)
1075{
1076 struct input_handle *handle = &evdev->handle;
1077
1078 evdev_mark_dead(evdev);
1079 evdev_hangup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001080
1081 cdev_del(&evdev->cdev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001082
1083 /* evdev is marked dead so no one else accesses evdev->open */
1084 if (evdev->open) {
1085 input_flush_device(handle, NULL);
1086 input_close_device(handle);
1087 }
1088}
1089
1090/*
1091 * Create new evdev device. Note that input core serializes calls
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001092 * to connect and disconnect.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001093 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001094static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
1095 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
1097 struct evdev *evdev;
1098 int minor;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001099 int dev_no;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001100 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001102 minor = input_get_new_minor(EVDEV_MINOR_BASE, EVDEV_MINORS, true);
1103 if (minor < 0) {
1104 error = minor;
1105 pr_err("failed to reserve new minor: %d\n", error);
1106 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 }
1108
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001109 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001110 if (!evdev) {
1111 error = -ENOMEM;
1112 goto err_free_minor;
1113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001115 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001116 spin_lock_init(&evdev->client_lock);
1117 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 init_waitqueue_head(&evdev->wait);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001119 evdev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001120
1121 dev_no = minor;
1122 /* Normalize device number if it falls into legacy range */
1123 if (dev_no < EVDEV_MINOR_BASE + EVDEV_MINORS)
1124 dev_no -= EVDEV_MINOR_BASE;
1125 dev_set_name(&evdev->dev, "event%d", dev_no);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001126
Dmitry Torokhova7097ff2008-04-01 00:22:53 -04001127 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -07001128 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 evdev->handle.handler = handler;
1130 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001131
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001132 evdev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001133 evdev->dev.class = &input_class;
1134 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001135 evdev->dev.release = evdev_free;
1136 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001138 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001139 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001140 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001142 cdev_init(&evdev->cdev, &evdev_fops);
Dmitry Torokhov4a215aa2012-10-21 17:57:20 -07001143 evdev->cdev.kobj.parent = &evdev->dev.kobj;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001144 error = cdev_add(&evdev->cdev, evdev->dev.devt, 1);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001145 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001146 goto err_unregister_handle;
1147
1148 error = device_add(&evdev->dev);
1149 if (error)
1150 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001151
1152 return 0;
1153
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001154 err_cleanup_evdev:
1155 evdev_cleanup(evdev);
1156 err_unregister_handle:
1157 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001158 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001159 put_device(&evdev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001160 err_free_minor:
1161 input_free_minor(minor);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001162 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
1165static void evdev_disconnect(struct input_handle *handle)
1166{
1167 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001169 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001170 evdev_cleanup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001171 input_free_minor(MINOR(evdev->dev.devt));
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001172 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001173 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001176static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 { .driver_info = 1 }, /* Matches all devices */
1178 { }, /* Terminating zero entry */
1179};
1180
1181MODULE_DEVICE_TABLE(input, evdev_ids);
1182
1183static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001184 .event = evdev_event,
Henrik Rydberga274ac12012-08-29 20:48:02 +02001185 .events = evdev_events,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001186 .connect = evdev_connect,
1187 .disconnect = evdev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001188 .legacy_minors = true,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001189 .minor = EVDEV_MINOR_BASE,
1190 .name = "evdev",
1191 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192};
1193
1194static int __init evdev_init(void)
1195{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001196 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
1199static void __exit evdev_exit(void)
1200{
1201 input_unregister_handler(&evdev_handler);
1202}
1203
1204module_init(evdev_init);
1205module_exit(evdev_exit);
1206
1207MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1208MODULE_DESCRIPTION("Input driver event char devices");
1209MODULE_LICENSE("GPL");