blob: bc203485716d870205a22d38add99ad6c1a9ea1e [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,
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700741 unsigned long *bits, unsigned int maxbit,
742 unsigned int maxlen, void __user *p,
743 int compat)
David Herrmann48318022013-04-07 21:13:19 -0700744{
745 int ret;
746 unsigned long *mem;
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700747 size_t len;
David Herrmann48318022013-04-07 21:13:19 -0700748
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700749 len = BITS_TO_LONGS(maxbit) * sizeof(unsigned long);
750 mem = kmalloc(len, GFP_KERNEL);
David Herrmann48318022013-04-07 21:13:19 -0700751 if (!mem)
752 return -ENOMEM;
753
754 spin_lock_irq(&dev->event_lock);
755 spin_lock(&client->buffer_lock);
756
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700757 memcpy(mem, bits, len);
David Herrmann48318022013-04-07 21:13:19 -0700758
759 spin_unlock(&dev->event_lock);
760
761 __evdev_flush_queue(client, type);
762
763 spin_unlock_irq(&client->buffer_lock);
764
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700765 ret = bits_to_user(mem, maxbit, maxlen, p, compat);
David Herrmann48318022013-04-07 21:13:19 -0700766 if (ret < 0)
767 evdev_queue_syn_dropped(client);
768
769 kfree(mem);
770
771 return ret;
772}
773
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100774static int evdev_handle_mt_request(struct input_dev *dev,
775 unsigned int size,
776 int __user *ip)
777{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200778 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100779 unsigned int code;
780 int max_slots;
781 int i;
782
783 if (get_user(code, &ip[0]))
784 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200785 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100786 return -EINVAL;
787
788 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200789 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
790 int value = input_mt_get_value(&mt->slots[i], code);
791 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100792 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200793 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100794
795 return 0;
796}
797
David Herrmannc7dc6572013-09-07 12:23:05 -0700798static int evdev_revoke(struct evdev *evdev, struct evdev_client *client,
799 struct file *file)
800{
801 client->revoked = true;
802 evdev_ungrab(evdev, client);
803 input_flush_device(&evdev->handle, file);
804 wake_up_interruptible(&evdev->wait);
805
806 return 0;
807}
808
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400809static long evdev_do_ioctl(struct file *file, unsigned int cmd,
810 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400812 struct evdev_client *client = file->private_data;
813 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 struct input_dev *dev = evdev->handle.dev;
815 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400816 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500817 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800818 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700819 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400820 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700822 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 switch (cmd) {
824
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400825 case EVIOCGVERSION:
826 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400828 case EVIOCGID:
829 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
830 return -EFAULT;
831 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400832
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400833 case EVIOCGREP:
834 if (!test_bit(EV_REP, dev->evbit))
835 return -ENOSYS;
836 if (put_user(dev->rep[REP_DELAY], ip))
837 return -EFAULT;
838 if (put_user(dev->rep[REP_PERIOD], ip + 1))
839 return -EFAULT;
840 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400841
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400842 case EVIOCSREP:
843 if (!test_bit(EV_REP, dev->evbit))
844 return -ENOSYS;
845 if (get_user(u, ip))
846 return -EFAULT;
847 if (get_user(v, ip + 1))
848 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400849
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400850 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
851 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500852
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400853 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400855 case EVIOCRMFF:
856 return input_ff_erase(dev, (int)(unsigned long) p, file);
857
858 case EVIOCGEFFECTS:
859 i = test_bit(EV_FF, dev->evbit) ?
860 dev->ff->max_effects : 0;
861 if (put_user(i, ip))
862 return -EFAULT;
863 return 0;
864
865 case EVIOCGRAB:
866 if (p)
867 return evdev_grab(evdev, client);
868 else
869 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800870
David Herrmannc7dc6572013-09-07 12:23:05 -0700871 case EVIOCREVOKE:
872 if (p)
873 return -EINVAL;
874 else
875 return evdev_revoke(evdev, client, file);
876
John Stultza80b83b2012-02-03 00:19:07 -0800877 case EVIOCSCLOCKID:
878 if (copy_from_user(&i, p, sizeof(unsigned int)))
879 return -EFAULT;
880 if (i != CLOCK_MONOTONIC && i != CLOCK_REALTIME)
881 return -EINVAL;
882 client->clkid = i;
883 return 0;
884
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800885 case EVIOCGKEYCODE:
886 return evdev_handle_get_keycode(dev, p);
887
888 case EVIOCSKEYCODE:
889 return evdev_handle_set_keycode(dev, p);
890
891 case EVIOCGKEYCODE_V2:
892 return evdev_handle_get_keycode_v2(dev, p);
893
894 case EVIOCSKEYCODE_V2:
895 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700896 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400897
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700898 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400899
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700900 /* Now check variable-length commands */
901#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700902 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400903
Henrik Rydberg85b77202010-12-18 20:51:13 +0100904 case EVIOCGPROP(0):
905 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
906 size, p, compat_mode);
907
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100908 case EVIOCGMTSLOTS(0):
909 return evdev_handle_mt_request(dev, size, ip);
910
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700911 case EVIOCGKEY(0):
David Herrmann48318022013-04-07 21:13:19 -0700912 return evdev_handle_get_val(client, dev, EV_KEY, dev->key,
913 KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400914
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700915 case EVIOCGLED(0):
David Herrmann48318022013-04-07 21:13:19 -0700916 return evdev_handle_get_val(client, dev, EV_LED, dev->led,
917 LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400918
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700919 case EVIOCGSND(0):
David Herrmann48318022013-04-07 21:13:19 -0700920 return evdev_handle_get_val(client, dev, EV_SND, dev->snd,
921 SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400922
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700923 case EVIOCGSW(0):
David Herrmann48318022013-04-07 21:13:19 -0700924 return evdev_handle_get_val(client, dev, EV_SW, dev->sw,
925 SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400926
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700927 case EVIOCGNAME(0):
928 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400929
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700930 case EVIOCGPHYS(0):
931 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400932
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700933 case EVIOCGUNIQ(0):
934 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400935
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700936 case EVIOC_MASK_SIZE(EVIOCSFF):
937 if (input_ff_effect_from_user(p, size, &effect))
938 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400939
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700940 error = input_ff_upload(dev, &effect, file);
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -0700941 if (error)
942 return error;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400943
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700944 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
945 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400946
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -0700947 return 0;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700948 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400949
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700950 /* Multi-number variable-length handlers */
951 if (_IOC_TYPE(cmd) != 'E')
952 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700954 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700956 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
957 return handle_eviocgbit(dev,
958 _IOC_NR(cmd) & EV_MAX, size,
959 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700961 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400962
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700963 if (!dev->absinfo)
964 return -EINVAL;
965
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700966 t = _IOC_NR(cmd) & ABS_MAX;
967 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400968
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700969 if (copy_to_user(p, &abs, min_t(size_t,
970 size, sizeof(struct input_absinfo))))
971 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400972
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700973 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700976
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700977 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700978
979 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
980
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700981 if (!dev->absinfo)
982 return -EINVAL;
983
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700984 t = _IOC_NR(cmd) & ABS_MAX;
985
986 if (copy_from_user(&abs, p, min_t(size_t,
987 size, sizeof(struct input_absinfo))))
988 return -EFAULT;
989
990 if (size < sizeof(struct input_absinfo))
991 abs.resolution = 0;
992
993 /* We can't change number of reserved MT slots */
994 if (t == ABS_MT_SLOT)
995 return -EINVAL;
996
997 /*
998 * Take event lock to ensure that we are not
999 * changing device parameters in the middle
1000 * of event.
1001 */
1002 spin_lock_irq(&dev->event_lock);
1003 dev->absinfo[t] = abs;
1004 spin_unlock_irq(&dev->event_lock);
1005
1006 return 0;
1007 }
1008 }
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 return -EINVAL;
1011}
1012
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001013static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
1014 void __user *p, int compat_mode)
1015{
1016 struct evdev_client *client = file->private_data;
1017 struct evdev *evdev = client->evdev;
1018 int retval;
1019
1020 retval = mutex_lock_interruptible(&evdev->mutex);
1021 if (retval)
1022 return retval;
1023
David Herrmannc7dc6572013-09-07 12:23:05 -07001024 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001025 retval = -ENODEV;
1026 goto out;
1027 }
1028
1029 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
1030
1031 out:
1032 mutex_unlock(&evdev->mutex);
1033 return retval;
1034}
1035
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001036static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1037{
1038 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
1039}
1040
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001041#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001042static long evdev_ioctl_compat(struct file *file,
1043 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001044{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001045 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001046}
1047#endif
1048
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001049static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001050 .owner = THIS_MODULE,
1051 .read = evdev_read,
1052 .write = evdev_write,
1053 .poll = evdev_poll,
1054 .open = evdev_open,
1055 .release = evdev_release,
1056 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001057#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001058 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001059#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001060 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001061 .flush = evdev_flush,
1062 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063};
1064
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001065/*
1066 * Mark device non-existent. This disables writes, ioctls and
1067 * prevents new users from opening the device. Already posted
1068 * blocking reads will stay, however new ones will fail.
1069 */
1070static void evdev_mark_dead(struct evdev *evdev)
1071{
1072 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001073 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001074 mutex_unlock(&evdev->mutex);
1075}
1076
1077static void evdev_cleanup(struct evdev *evdev)
1078{
1079 struct input_handle *handle = &evdev->handle;
1080
1081 evdev_mark_dead(evdev);
1082 evdev_hangup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001083
1084 cdev_del(&evdev->cdev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001085
1086 /* evdev is marked dead so no one else accesses evdev->open */
1087 if (evdev->open) {
1088 input_flush_device(handle, NULL);
1089 input_close_device(handle);
1090 }
1091}
1092
1093/*
1094 * Create new evdev device. Note that input core serializes calls
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001095 * to connect and disconnect.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001096 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001097static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
1098 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
1100 struct evdev *evdev;
1101 int minor;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001102 int dev_no;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001103 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001105 minor = input_get_new_minor(EVDEV_MINOR_BASE, EVDEV_MINORS, true);
1106 if (minor < 0) {
1107 error = minor;
1108 pr_err("failed to reserve new minor: %d\n", error);
1109 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001112 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001113 if (!evdev) {
1114 error = -ENOMEM;
1115 goto err_free_minor;
1116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001118 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001119 spin_lock_init(&evdev->client_lock);
1120 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 init_waitqueue_head(&evdev->wait);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001122 evdev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001123
1124 dev_no = minor;
1125 /* Normalize device number if it falls into legacy range */
1126 if (dev_no < EVDEV_MINOR_BASE + EVDEV_MINORS)
1127 dev_no -= EVDEV_MINOR_BASE;
1128 dev_set_name(&evdev->dev, "event%d", dev_no);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001129
Dmitry Torokhova7097ff2008-04-01 00:22:53 -04001130 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -07001131 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 evdev->handle.handler = handler;
1133 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001134
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001135 evdev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001136 evdev->dev.class = &input_class;
1137 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001138 evdev->dev.release = evdev_free;
1139 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001141 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001142 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001143 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001145 cdev_init(&evdev->cdev, &evdev_fops);
Dmitry Torokhov4a215aa2012-10-21 17:57:20 -07001146 evdev->cdev.kobj.parent = &evdev->dev.kobj;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001147 error = cdev_add(&evdev->cdev, evdev->dev.devt, 1);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001148 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001149 goto err_unregister_handle;
1150
1151 error = device_add(&evdev->dev);
1152 if (error)
1153 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001154
1155 return 0;
1156
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001157 err_cleanup_evdev:
1158 evdev_cleanup(evdev);
1159 err_unregister_handle:
1160 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001161 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001162 put_device(&evdev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001163 err_free_minor:
1164 input_free_minor(minor);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001165 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}
1167
1168static void evdev_disconnect(struct input_handle *handle)
1169{
1170 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001172 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001173 evdev_cleanup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001174 input_free_minor(MINOR(evdev->dev.devt));
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001175 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001176 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177}
1178
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001179static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 { .driver_info = 1 }, /* Matches all devices */
1181 { }, /* Terminating zero entry */
1182};
1183
1184MODULE_DEVICE_TABLE(input, evdev_ids);
1185
1186static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001187 .event = evdev_event,
Henrik Rydberga274ac12012-08-29 20:48:02 +02001188 .events = evdev_events,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001189 .connect = evdev_connect,
1190 .disconnect = evdev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001191 .legacy_minors = true,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001192 .minor = EVDEV_MINOR_BASE,
1193 .name = "evdev",
1194 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195};
1196
1197static int __init evdev_init(void)
1198{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001199 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
1202static void __exit evdev_exit(void)
1203{
1204 input_unregister_handler(&evdev_handler);
1205}
1206
1207module_init(evdev_init);
1208module_exit(evdev_exit);
1209
1210MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1211MODULE_DESCRIPTION("Input driver event char devices");
1212MODULE_LICENSE("GPL");