blob: 928dec311c2b1dff3dfe95ca2a51da931d3d405f [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
Takashi Iwai638f3102015-09-03 22:20:00 -0700243 mutex_lock(&evdev->mutex);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400244
Takashi Iwai638f3102015-09-03 22:20:00 -0700245 if (evdev->exist && !client->revoked)
246 input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400247
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400248 mutex_unlock(&evdev->mutex);
Takashi Iwai638f3102015-09-03 22:20:00 -0700249 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400252static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400254 struct evdev *evdev = container_of(dev, struct evdev, dev);
255
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400256 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 kfree(evdev);
258}
259
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400260/*
261 * Grabs an event device (along with underlying input device).
262 * This function is called with evdev->mutex taken.
263 */
264static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
265{
266 int error;
267
268 if (evdev->grab)
269 return -EBUSY;
270
271 error = input_grab_device(&evdev->handle);
272 if (error)
273 return error;
274
275 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400276
277 return 0;
278}
279
280static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
281{
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700282 struct evdev_client *grab = rcu_dereference_protected(evdev->grab,
283 lockdep_is_held(&evdev->mutex));
284
285 if (grab != client)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400286 return -EINVAL;
287
288 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400289 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400290 input_release_device(&evdev->handle);
291
292 return 0;
293}
294
295static void evdev_attach_client(struct evdev *evdev,
296 struct evdev_client *client)
297{
298 spin_lock(&evdev->client_lock);
299 list_add_tail_rcu(&client->node, &evdev->client_list);
300 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400301}
302
303static void evdev_detach_client(struct evdev *evdev,
304 struct evdev_client *client)
305{
306 spin_lock(&evdev->client_lock);
307 list_del_rcu(&client->node);
308 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400309 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400310}
311
312static int evdev_open_device(struct evdev *evdev)
313{
314 int retval;
315
316 retval = mutex_lock_interruptible(&evdev->mutex);
317 if (retval)
318 return retval;
319
320 if (!evdev->exist)
321 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400322 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400323 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400324 if (retval)
325 evdev->open--;
326 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400327
328 mutex_unlock(&evdev->mutex);
329 return retval;
330}
331
332static void evdev_close_device(struct evdev *evdev)
333{
334 mutex_lock(&evdev->mutex);
335
336 if (evdev->exist && !--evdev->open)
337 input_close_device(&evdev->handle);
338
339 mutex_unlock(&evdev->mutex);
340}
341
342/*
343 * Wake up users waiting for IO so they can disconnect from
344 * dead device.
345 */
346static void evdev_hangup(struct evdev *evdev)
347{
348 struct evdev_client *client;
349
350 spin_lock(&evdev->client_lock);
351 list_for_each_entry(client, &evdev->client_list, node)
352 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
353 spin_unlock(&evdev->client_lock);
354
355 wake_up_interruptible(&evdev->wait);
356}
357
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400358static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400360 struct evdev_client *client = file->private_data;
361 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400363 mutex_lock(&evdev->mutex);
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700364 evdev_ungrab(evdev, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400365 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400367 evdev_detach_client(evdev, client);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700368
369 if (is_vmalloc_addr(client))
370 vfree(client);
371 else
372 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400374 evdev_close_device(evdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377}
378
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700379static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
380{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700381 unsigned int n_events =
382 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
383 EVDEV_MIN_BUFFER_SIZE);
384
385 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700386}
387
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400388static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700390 struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev);
391 unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700392 unsigned int size = sizeof(struct evdev_client) +
393 bufsize * sizeof(struct input_event);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400394 struct evdev_client *client;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400395 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Daniel Stone92eb77d2013-10-31 00:25:34 -0700397 client = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
398 if (!client)
399 client = vzalloc(size);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700400 if (!client)
401 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700403 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400404 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400405 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400406 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400408 error = evdev_open_device(evdev);
409 if (error)
410 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400412 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800413 nonseekable_open(inode, file);
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400416
417 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400418 evdev_detach_client(evdev, client);
Andrew Morton92788ac2014-12-02 15:59:31 -0800419 kvfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400420 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400423static ssize_t evdev_write(struct file *file, const char __user *buffer,
424 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400426 struct evdev_client *client = file->private_data;
427 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800429 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700431 if (count != 0 && count < input_event_size())
Peter Korsgaard439581e2011-02-25 09:30:46 -0800432 return -EINVAL;
433
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400434 retval = mutex_lock_interruptible(&evdev->mutex);
435 if (retval)
436 return retval;
437
David Herrmannc7dc6572013-09-07 12:23:05 -0700438 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400439 retval = -ENODEV;
440 goto out;
441 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500442
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700443 while (retval + input_event_size() <= count) {
444
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400445 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400446 retval = -EFAULT;
447 goto out;
448 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800449 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400450
451 input_inject_event(&evdev->handle,
452 event.type, event.code, event.value);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700453 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500454
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400455 out:
456 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500457 return retval;
458}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500459
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400460static int evdev_fetch_next_event(struct evdev_client *client,
461 struct input_event *event)
462{
463 int have_event;
464
465 spin_lock_irq(&client->buffer_lock);
466
Dima Zavin566cf5b2011-12-30 15:16:44 -0800467 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400468 if (have_event) {
469 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700470 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400471 }
472
473 spin_unlock_irq(&client->buffer_lock);
474
475 return have_event;
476}
477
478static ssize_t evdev_read(struct file *file, char __user *buffer,
479 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400481 struct evdev_client *client = file->private_data;
482 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400483 struct input_event event;
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700484 size_t read = 0;
485 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700487 if (count != 0 && count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return -EINVAL;
489
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700490 for (;;) {
David Herrmannc7dc6572013-09-07 12:23:05 -0700491 if (!evdev->exist || client->revoked)
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700492 return -ENODEV;
493
494 if (client->packet_head == client->tail &&
495 (file->f_flags & O_NONBLOCK))
496 return -EAGAIN;
497
498 /*
499 * count == 0 is special - no IO is done but we check
500 * for error conditions (see above).
501 */
502 if (count == 0)
503 break;
504
505 while (read + input_event_size() <= count &&
506 evdev_fetch_next_event(client, &event)) {
507
508 if (input_event_to_user(buffer + read, &event))
509 return -EFAULT;
510
511 read += input_event_size();
512 }
513
514 if (read)
515 break;
516
517 if (!(file->f_flags & O_NONBLOCK)) {
518 error = wait_event_interruptible(evdev->wait,
519 client->packet_head != client->tail ||
David Herrmannc7dc6572013-09-07 12:23:05 -0700520 !evdev->exist || client->revoked);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700521 if (error)
522 return error;
523 }
Dima Zavin509f87c2011-12-30 15:16:44 -0800524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700526 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
529/* No kernel lock - fine */
530static unsigned int evdev_poll(struct file *file, poll_table *wait)
531{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400532 struct evdev_client *client = file->private_data;
533 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700534 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400535
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400536 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700537
David Herrmannc7dc6572013-09-07 12:23:05 -0700538 if (evdev->exist && !client->revoked)
539 mask = POLLOUT | POLLWRNORM;
540 else
541 mask = POLLHUP | POLLERR;
542
Jeff Browncdda9112011-04-26 22:16:11 -0700543 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700544 mask |= POLLIN | POLLRDNORM;
545
546 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500549#ifdef CONFIG_COMPAT
550
551#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700552#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500553
554#ifdef __BIG_ENDIAN
555static int bits_to_user(unsigned long *bits, unsigned int maxbit,
556 unsigned int maxlen, void __user *p, int compat)
557{
558 int len, i;
559
560 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700561 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400562 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500563 len = maxlen;
564
565 for (i = 0; i < len / sizeof(compat_long_t); i++)
566 if (copy_to_user((compat_long_t __user *) p + i,
567 (compat_long_t *) bits +
568 i + 1 - ((i % 2) << 1),
569 sizeof(compat_long_t)))
570 return -EFAULT;
571 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700572 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500573 if (len > maxlen)
574 len = maxlen;
575
576 if (copy_to_user(p, bits, len))
577 return -EFAULT;
578 }
579
580 return len;
581}
582#else
583static int bits_to_user(unsigned long *bits, unsigned int maxbit,
584 unsigned int maxlen, void __user *p, int compat)
585{
586 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700587 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
588 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500589
590 if (len > maxlen)
591 len = maxlen;
592
593 return copy_to_user(p, bits, len) ? -EFAULT : len;
594}
595#endif /* __BIG_ENDIAN */
596
597#else
598
599static int bits_to_user(unsigned long *bits, unsigned int maxbit,
600 unsigned int maxlen, void __user *p, int compat)
601{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700602 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500603
604 if (len > maxlen)
605 len = maxlen;
606
607 return copy_to_user(p, bits, len) ? -EFAULT : len;
608}
609
610#endif /* CONFIG_COMPAT */
611
612static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
613{
614 int len;
615
616 if (!str)
617 return -ENOENT;
618
619 len = strlen(str) + 1;
620 if (len > maxlen)
621 len = maxlen;
622
623 return copy_to_user(p, str, len) ? -EFAULT : len;
624}
625
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700626static int handle_eviocgbit(struct input_dev *dev,
627 unsigned int type, unsigned int size,
628 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400629{
630 unsigned long *bits;
631 int len;
632
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700633 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400634
635 case 0: bits = dev->evbit; len = EV_MAX; break;
636 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
637 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
638 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
639 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
640 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
641 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
642 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
643 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
644 default: return -EINVAL;
645 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400646
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700647 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400648}
Linus Torvalds5402a732008-08-05 11:42:42 -0400649
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800650static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
651{
652 struct input_keymap_entry ke = {
653 .len = sizeof(unsigned int),
654 .flags = 0,
655 };
656 int __user *ip = (int __user *)p;
657 int error;
658
659 /* legacy case */
660 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
661 return -EFAULT;
662
663 error = input_get_keycode(dev, &ke);
664 if (error)
665 return error;
666
667 if (put_user(ke.keycode, ip + 1))
668 return -EFAULT;
669
670 return 0;
671}
672
673static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700674{
675 struct input_keymap_entry ke;
676 int error;
677
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800678 if (copy_from_user(&ke, p, sizeof(ke)))
679 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700680
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800681 error = input_get_keycode(dev, &ke);
682 if (error)
683 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700684
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800685 if (copy_to_user(p, &ke, sizeof(ke)))
686 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700687
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700688 return 0;
689}
690
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800691static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
692{
693 struct input_keymap_entry ke = {
694 .len = sizeof(unsigned int),
695 .flags = 0,
696 };
697 int __user *ip = (int __user *)p;
698
699 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
700 return -EFAULT;
701
702 if (get_user(ke.keycode, ip + 1))
703 return -EFAULT;
704
705 return input_set_keycode(dev, &ke);
706}
707
708static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700709{
710 struct input_keymap_entry ke;
711
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800712 if (copy_from_user(&ke, p, sizeof(ke)))
713 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700714
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800715 if (ke.len > sizeof(ke.scancode))
716 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700717
718 return input_set_keycode(dev, &ke);
719}
720
David Herrmann48318022013-04-07 21:13:19 -0700721/*
722 * If we transfer state to the user, we should flush all pending events
723 * of the same type from the client's queue. Otherwise, they might end up
724 * with duplicate events, which can screw up client's state tracking.
725 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
726 * event so user-space will notice missing events.
727 *
728 * LOCKING:
729 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
730 * need the even_lock only to guarantee consistent state. We can safely release
731 * it while flushing the queue. This allows input-core to handle filters while
732 * we flush the queue.
733 */
734static int evdev_handle_get_val(struct evdev_client *client,
735 struct input_dev *dev, unsigned int type,
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700736 unsigned long *bits, unsigned int maxbit,
737 unsigned int maxlen, void __user *p,
738 int compat)
David Herrmann48318022013-04-07 21:13:19 -0700739{
740 int ret;
741 unsigned long *mem;
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700742 size_t len;
David Herrmann48318022013-04-07 21:13:19 -0700743
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700744 len = BITS_TO_LONGS(maxbit) * sizeof(unsigned long);
745 mem = kmalloc(len, GFP_KERNEL);
David Herrmann48318022013-04-07 21:13:19 -0700746 if (!mem)
747 return -ENOMEM;
748
749 spin_lock_irq(&dev->event_lock);
750 spin_lock(&client->buffer_lock);
751
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700752 memcpy(mem, bits, len);
David Herrmann48318022013-04-07 21:13:19 -0700753
754 spin_unlock(&dev->event_lock);
755
756 __evdev_flush_queue(client, type);
757
758 spin_unlock_irq(&client->buffer_lock);
759
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700760 ret = bits_to_user(mem, maxbit, maxlen, p, compat);
David Herrmann48318022013-04-07 21:13:19 -0700761 if (ret < 0)
762 evdev_queue_syn_dropped(client);
763
764 kfree(mem);
765
766 return ret;
767}
768
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100769static int evdev_handle_mt_request(struct input_dev *dev,
770 unsigned int size,
771 int __user *ip)
772{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200773 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100774 unsigned int code;
775 int max_slots;
776 int i;
777
778 if (get_user(code, &ip[0]))
779 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200780 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100781 return -EINVAL;
782
783 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200784 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
785 int value = input_mt_get_value(&mt->slots[i], code);
786 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100787 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200788 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100789
790 return 0;
791}
792
David Herrmannc7dc6572013-09-07 12:23:05 -0700793static int evdev_revoke(struct evdev *evdev, struct evdev_client *client,
794 struct file *file)
795{
796 client->revoked = true;
797 evdev_ungrab(evdev, client);
798 input_flush_device(&evdev->handle, file);
799 wake_up_interruptible(&evdev->wait);
800
801 return 0;
802}
803
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400804static long evdev_do_ioctl(struct file *file, unsigned int cmd,
805 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400807 struct evdev_client *client = file->private_data;
808 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 struct input_dev *dev = evdev->handle.dev;
810 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400811 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500812 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800813 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700814 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400815 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700817 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 switch (cmd) {
819
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400820 case EVIOCGVERSION:
821 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400823 case EVIOCGID:
824 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
825 return -EFAULT;
826 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400827
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400828 case EVIOCGREP:
829 if (!test_bit(EV_REP, dev->evbit))
830 return -ENOSYS;
831 if (put_user(dev->rep[REP_DELAY], ip))
832 return -EFAULT;
833 if (put_user(dev->rep[REP_PERIOD], ip + 1))
834 return -EFAULT;
835 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400836
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400837 case EVIOCSREP:
838 if (!test_bit(EV_REP, dev->evbit))
839 return -ENOSYS;
840 if (get_user(u, ip))
841 return -EFAULT;
842 if (get_user(v, ip + 1))
843 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400844
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400845 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
846 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500847
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400848 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400850 case EVIOCRMFF:
851 return input_ff_erase(dev, (int)(unsigned long) p, file);
852
853 case EVIOCGEFFECTS:
854 i = test_bit(EV_FF, dev->evbit) ?
855 dev->ff->max_effects : 0;
856 if (put_user(i, ip))
857 return -EFAULT;
858 return 0;
859
860 case EVIOCGRAB:
861 if (p)
862 return evdev_grab(evdev, client);
863 else
864 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800865
David Herrmannc7dc6572013-09-07 12:23:05 -0700866 case EVIOCREVOKE:
867 if (p)
868 return -EINVAL;
869 else
870 return evdev_revoke(evdev, client, file);
871
John Stultza80b83b2012-02-03 00:19:07 -0800872 case EVIOCSCLOCKID:
873 if (copy_from_user(&i, p, sizeof(unsigned int)))
874 return -EFAULT;
875 if (i != CLOCK_MONOTONIC && i != CLOCK_REALTIME)
876 return -EINVAL;
877 client->clkid = i;
878 return 0;
879
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800880 case EVIOCGKEYCODE:
881 return evdev_handle_get_keycode(dev, p);
882
883 case EVIOCSKEYCODE:
884 return evdev_handle_set_keycode(dev, p);
885
886 case EVIOCGKEYCODE_V2:
887 return evdev_handle_get_keycode_v2(dev, p);
888
889 case EVIOCSKEYCODE_V2:
890 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700891 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400892
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700893 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400894
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700895 /* Now check variable-length commands */
896#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700897 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400898
Henrik Rydberg85b77202010-12-18 20:51:13 +0100899 case EVIOCGPROP(0):
900 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
901 size, p, compat_mode);
902
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100903 case EVIOCGMTSLOTS(0):
904 return evdev_handle_mt_request(dev, size, ip);
905
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700906 case EVIOCGKEY(0):
David Herrmann48318022013-04-07 21:13:19 -0700907 return evdev_handle_get_val(client, dev, EV_KEY, dev->key,
908 KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400909
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700910 case EVIOCGLED(0):
David Herrmann48318022013-04-07 21:13:19 -0700911 return evdev_handle_get_val(client, dev, EV_LED, dev->led,
912 LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400913
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700914 case EVIOCGSND(0):
David Herrmann48318022013-04-07 21:13:19 -0700915 return evdev_handle_get_val(client, dev, EV_SND, dev->snd,
916 SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400917
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700918 case EVIOCGSW(0):
David Herrmann48318022013-04-07 21:13:19 -0700919 return evdev_handle_get_val(client, dev, EV_SW, dev->sw,
920 SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400921
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700922 case EVIOCGNAME(0):
923 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400924
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700925 case EVIOCGPHYS(0):
926 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400927
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700928 case EVIOCGUNIQ(0):
929 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400930
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700931 case EVIOC_MASK_SIZE(EVIOCSFF):
932 if (input_ff_effect_from_user(p, size, &effect))
933 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400934
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700935 error = input_ff_upload(dev, &effect, file);
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -0700936 if (error)
937 return error;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400938
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700939 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
940 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400941
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -0700942 return 0;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700943 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400944
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700945 /* Multi-number variable-length handlers */
946 if (_IOC_TYPE(cmd) != 'E')
947 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700949 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700951 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
952 return handle_eviocgbit(dev,
953 _IOC_NR(cmd) & EV_MAX, size,
954 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700956 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400957
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700958 if (!dev->absinfo)
959 return -EINVAL;
960
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700961 t = _IOC_NR(cmd) & ABS_MAX;
962 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400963
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700964 if (copy_to_user(p, &abs, min_t(size_t,
965 size, sizeof(struct input_absinfo))))
966 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400967
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700968 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700971
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700972 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700973
974 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
975
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700976 if (!dev->absinfo)
977 return -EINVAL;
978
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700979 t = _IOC_NR(cmd) & ABS_MAX;
980
981 if (copy_from_user(&abs, p, min_t(size_t,
982 size, sizeof(struct input_absinfo))))
983 return -EFAULT;
984
985 if (size < sizeof(struct input_absinfo))
986 abs.resolution = 0;
987
988 /* We can't change number of reserved MT slots */
989 if (t == ABS_MT_SLOT)
990 return -EINVAL;
991
992 /*
993 * Take event lock to ensure that we are not
994 * changing device parameters in the middle
995 * of event.
996 */
997 spin_lock_irq(&dev->event_lock);
998 dev->absinfo[t] = abs;
999 spin_unlock_irq(&dev->event_lock);
1000
1001 return 0;
1002 }
1003 }
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return -EINVAL;
1006}
1007
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001008static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
1009 void __user *p, int compat_mode)
1010{
1011 struct evdev_client *client = file->private_data;
1012 struct evdev *evdev = client->evdev;
1013 int retval;
1014
1015 retval = mutex_lock_interruptible(&evdev->mutex);
1016 if (retval)
1017 return retval;
1018
David Herrmannc7dc6572013-09-07 12:23:05 -07001019 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001020 retval = -ENODEV;
1021 goto out;
1022 }
1023
1024 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
1025
1026 out:
1027 mutex_unlock(&evdev->mutex);
1028 return retval;
1029}
1030
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001031static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1032{
1033 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
1034}
1035
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001036#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001037static long evdev_ioctl_compat(struct file *file,
1038 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001039{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001040 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001041}
1042#endif
1043
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001044static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001045 .owner = THIS_MODULE,
1046 .read = evdev_read,
1047 .write = evdev_write,
1048 .poll = evdev_poll,
1049 .open = evdev_open,
1050 .release = evdev_release,
1051 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001052#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001053 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001054#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001055 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001056 .flush = evdev_flush,
1057 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058};
1059
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001060/*
1061 * Mark device non-existent. This disables writes, ioctls and
1062 * prevents new users from opening the device. Already posted
1063 * blocking reads will stay, however new ones will fail.
1064 */
1065static void evdev_mark_dead(struct evdev *evdev)
1066{
1067 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001068 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001069 mutex_unlock(&evdev->mutex);
1070}
1071
1072static void evdev_cleanup(struct evdev *evdev)
1073{
1074 struct input_handle *handle = &evdev->handle;
1075
1076 evdev_mark_dead(evdev);
1077 evdev_hangup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001078
1079 cdev_del(&evdev->cdev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001080
1081 /* evdev is marked dead so no one else accesses evdev->open */
1082 if (evdev->open) {
1083 input_flush_device(handle, NULL);
1084 input_close_device(handle);
1085 }
1086}
1087
1088/*
1089 * Create new evdev device. Note that input core serializes calls
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001090 * to connect and disconnect.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001091 */
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001092static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
1093 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 struct evdev *evdev;
1096 int minor;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001097 int dev_no;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001098 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001100 minor = input_get_new_minor(EVDEV_MINOR_BASE, EVDEV_MINORS, true);
1101 if (minor < 0) {
1102 error = minor;
1103 pr_err("failed to reserve new minor: %d\n", error);
1104 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 }
1106
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001107 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001108 if (!evdev) {
1109 error = -ENOMEM;
1110 goto err_free_minor;
1111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001113 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001114 spin_lock_init(&evdev->client_lock);
1115 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 init_waitqueue_head(&evdev->wait);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001117 evdev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001118
1119 dev_no = minor;
1120 /* Normalize device number if it falls into legacy range */
1121 if (dev_no < EVDEV_MINOR_BASE + EVDEV_MINORS)
1122 dev_no -= EVDEV_MINOR_BASE;
1123 dev_set_name(&evdev->dev, "event%d", dev_no);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001124
Dmitry Torokhova7097ff2008-04-01 00:22:53 -04001125 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -07001126 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 evdev->handle.handler = handler;
1128 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001129
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001130 evdev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001131 evdev->dev.class = &input_class;
1132 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001133 evdev->dev.release = evdev_free;
1134 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001136 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001137 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001138 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001140 cdev_init(&evdev->cdev, &evdev_fops);
Dmitry Torokhov4a215aa2012-10-21 17:57:20 -07001141 evdev->cdev.kobj.parent = &evdev->dev.kobj;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001142 error = cdev_add(&evdev->cdev, evdev->dev.devt, 1);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001143 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001144 goto err_unregister_handle;
1145
1146 error = device_add(&evdev->dev);
1147 if (error)
1148 goto err_cleanup_evdev;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001149
1150 return 0;
1151
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001152 err_cleanup_evdev:
1153 evdev_cleanup(evdev);
1154 err_unregister_handle:
1155 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001156 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001157 put_device(&evdev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001158 err_free_minor:
1159 input_free_minor(minor);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001160 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161}
1162
1163static void evdev_disconnect(struct input_handle *handle)
1164{
1165 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001167 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001168 evdev_cleanup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001169 input_free_minor(MINOR(evdev->dev.devt));
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001170 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001171 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172}
1173
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001174static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 { .driver_info = 1 }, /* Matches all devices */
1176 { }, /* Terminating zero entry */
1177};
1178
1179MODULE_DEVICE_TABLE(input, evdev_ids);
1180
1181static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001182 .event = evdev_event,
Henrik Rydberga274ac12012-08-29 20:48:02 +02001183 .events = evdev_events,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001184 .connect = evdev_connect,
1185 .disconnect = evdev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001186 .legacy_minors = true,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001187 .minor = EVDEV_MINOR_BASE,
1188 .name = "evdev",
1189 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190};
1191
1192static int __init evdev_init(void)
1193{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001194 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
1197static void __exit evdev_exit(void)
1198{
1199 input_unregister_handler(&evdev_handler);
1200}
1201
1202module_init(evdev_init);
1203module_exit(evdev_exit);
1204
1205MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1206MODULE_DESCRIPTION("Input driver event char devices");
1207MODULE_LICENSE("GPL");