blob: d7dd6fcf2db05a8841e60a4089dd71212d15c476 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Event char devices, giving access to raw input device events.
4 *
5 * Copyright (c) 1999-2002 Vojtech Pavlik
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Joe Perchesda0c4902010-11-29 23:33:07 -08008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#define EVDEV_MINOR_BASE 64
11#define EVDEV_MINORS 32
Henrik Rydberg63a64042010-06-10 12:05:24 -070012#define EVDEV_MIN_BUFFER_SIZE 64U
13#define EVDEV_BUF_PACKETS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#include <linux/poll.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040016#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/slab.h>
Daniel Stone92eb77d2013-10-31 00:25:34 -070018#include <linux/vmalloc.h>
19#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/module.h>
21#include <linux/init.h>
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +010022#include <linux/input/mt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/device.h>
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070025#include <linux/cdev.h>
Philip Langdale2d56f3a2008-10-16 22:31:42 -040026#include "input-compat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28struct evdev {
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 int open;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 struct input_handle handle;
31 wait_queue_head_t wait;
Arnd Bergmann2be85272010-03-04 15:50:28 +010032 struct evdev_client __rcu *grab;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040033 struct list_head client_list;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040034 spinlock_t client_lock; /* protects client_list */
35 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040036 struct device dev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070037 struct cdev cdev;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -070038 bool exist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040041struct evdev_client {
Jeff Brown9fb0f142011-04-12 23:29:38 -070042 unsigned int head;
43 unsigned int tail;
Jeff Browncdda9112011-04-26 22:16:11 -070044 unsigned int packet_head; /* [future] position of the first element of next packet */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040045 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 struct fasync_struct *fasync;
47 struct evdev *evdev;
48 struct list_head node;
Atif Niyaz3b51c442019-07-24 22:26:31 +030049 enum input_clock_type clk_type;
David Herrmannc7dc6572013-09-07 12:23:05 -070050 bool revoked;
David Herrmann06a16292015-10-24 16:20:18 -070051 unsigned long *evmasks[EV_CNT];
Jeff Brown9fb0f142011-04-12 23:29:38 -070052 unsigned int bufsize;
Henrik Rydbergb58f7082010-06-23 09:17:56 -070053 struct input_event buffer[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
David Herrmann06a16292015-10-24 16:20:18 -070056static size_t evdev_get_mask_cnt(unsigned int type)
57{
58 static const size_t counts[EV_CNT] = {
59 /* EV_SYN==0 is EV_CNT, _not_ SYN_CNT, see EVIOCGBIT */
60 [EV_SYN] = EV_CNT,
61 [EV_KEY] = KEY_CNT,
62 [EV_REL] = REL_CNT,
63 [EV_ABS] = ABS_CNT,
64 [EV_MSC] = MSC_CNT,
65 [EV_SW] = SW_CNT,
66 [EV_LED] = LED_CNT,
67 [EV_SND] = SND_CNT,
68 [EV_FF] = FF_CNT,
69 };
70
71 return (type < EV_CNT) ? counts[type] : 0;
72}
73
74/* requires the buffer lock to be held */
75static bool __evdev_is_filtered(struct evdev_client *client,
76 unsigned int type,
77 unsigned int code)
78{
79 unsigned long *mask;
80 size_t cnt;
81
82 /* EV_SYN and unknown codes are never filtered */
83 if (type == EV_SYN || type >= EV_CNT)
84 return false;
85
86 /* first test whether the type is filtered */
87 mask = client->evmasks[0];
88 if (mask && !test_bit(type, mask))
89 return true;
90
91 /* unknown values are never filtered */
92 cnt = evdev_get_mask_cnt(type);
93 if (!cnt || code >= cnt)
94 return false;
95
96 mask = client->evmasks[type];
97 return mask && !test_bit(code, mask);
98}
99
David Herrmann48318022013-04-07 21:13:19 -0700100/* flush queued events of type @type, caller must hold client->buffer_lock */
101static void __evdev_flush_queue(struct evdev_client *client, unsigned int type)
102{
103 unsigned int i, head, num;
104 unsigned int mask = client->bufsize - 1;
105 bool is_report;
106 struct input_event *ev;
107
108 BUG_ON(type == EV_SYN);
109
110 head = client->tail;
111 client->packet_head = client->tail;
112
113 /* init to 1 so a leading SYN_REPORT will not be dropped */
114 num = 1;
115
116 for (i = client->tail; i != client->head; i = (i + 1) & mask) {
117 ev = &client->buffer[i];
118 is_report = ev->type == EV_SYN && ev->code == SYN_REPORT;
119
120 if (ev->type == type) {
121 /* drop matched entry */
122 continue;
123 } else if (is_report && !num) {
124 /* drop empty SYN_REPORT groups */
125 continue;
126 } else if (head != i) {
127 /* move entry to fill the gap */
Deepa Dinamani152194f2018-01-07 17:44:42 -0800128 client->buffer[head] = *ev;
David Herrmann48318022013-04-07 21:13:19 -0700129 }
130
131 num++;
132 head = (head + 1) & mask;
133
134 if (is_report) {
135 num = 0;
136 client->packet_head = head;
137 }
138 }
139
140 client->head = head;
141}
142
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800143static void __evdev_queue_syn_dropped(struct evdev_client *client)
David Herrmann48318022013-04-07 21:13:19 -0700144{
Atif Niyaz3b51c442019-07-24 22:26:31 +0300145 ktime_t *ev_time = input_get_timestamp(client->evdev->handle.dev);
146 struct timespec64 ts = ktime_to_timespec64(ev_time[client->clk_type]);
David Herrmann48318022013-04-07 21:13:19 -0700147 struct input_event ev;
David Herrmann48318022013-04-07 21:13:19 -0700148
Deepa Dinamani152194f2018-01-07 17:44:42 -0800149 ev.input_event_sec = ts.tv_sec;
150 ev.input_event_usec = ts.tv_nsec / NSEC_PER_USEC;
David Herrmann48318022013-04-07 21:13:19 -0700151 ev.type = EV_SYN;
152 ev.code = SYN_DROPPED;
153 ev.value = 0;
154
David Herrmann48318022013-04-07 21:13:19 -0700155 client->buffer[client->head++] = ev;
156 client->head &= client->bufsize - 1;
157
158 if (unlikely(client->head == client->tail)) {
159 /* drop queue but keep our SYN_DROPPED event */
160 client->tail = (client->head - 1) & (client->bufsize - 1);
161 client->packet_head = client->tail;
162 }
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800163}
David Herrmann48318022013-04-07 21:13:19 -0700164
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800165static void evdev_queue_syn_dropped(struct evdev_client *client)
166{
167 unsigned long flags;
168
169 spin_lock_irqsave(&client->buffer_lock, flags);
170 __evdev_queue_syn_dropped(client);
David Herrmann48318022013-04-07 21:13:19 -0700171 spin_unlock_irqrestore(&client->buffer_lock, flags);
172}
173
Anshul Garg0c3e9942015-01-15 09:06:50 -0800174static int evdev_set_clk_type(struct evdev_client *client, unsigned int clkid)
175{
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800176 unsigned long flags;
Atif Niyaz3b51c442019-07-24 22:26:31 +0300177 enum input_clock_type clk_type;
Anshul Garg0c3e9942015-01-15 09:06:50 -0800178
179 switch (clkid) {
180
181 case CLOCK_REALTIME:
Atif Niyaz3b51c442019-07-24 22:26:31 +0300182 clk_type = INPUT_CLK_REAL;
Anshul Garg0c3e9942015-01-15 09:06:50 -0800183 break;
184 case CLOCK_MONOTONIC:
Atif Niyaz3b51c442019-07-24 22:26:31 +0300185 clk_type = INPUT_CLK_MONO;
Anshul Garg0c3e9942015-01-15 09:06:50 -0800186 break;
187 case CLOCK_BOOTTIME:
Atif Niyaz3b51c442019-07-24 22:26:31 +0300188 clk_type = INPUT_CLK_BOOT;
Anshul Garg0c3e9942015-01-15 09:06:50 -0800189 break;
190 default:
191 return -EINVAL;
192 }
193
Aniroop Mathurbf5f18d2015-10-30 04:15:37 -0700194 if (client->clk_type != clk_type) {
195 client->clk_type = clk_type;
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800196
Aniroop Mathurbf5f18d2015-10-30 04:15:37 -0700197 /*
198 * Flush pending events and queue SYN_DROPPED event,
199 * but only if the queue is not empty.
200 */
201 spin_lock_irqsave(&client->buffer_lock, flags);
202
203 if (client->head != client->tail) {
204 client->packet_head = client->head = client->tail;
205 __evdev_queue_syn_dropped(client);
206 }
207
208 spin_unlock_irqrestore(&client->buffer_lock, flags);
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800209 }
210
Anshul Garg0c3e9942015-01-15 09:06:50 -0800211 return 0;
212}
213
Henrik Rydberga274ac12012-08-29 20:48:02 +0200214static void __pass_event(struct evdev_client *client,
215 const struct input_event *event)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400216{
Jeff Brown9fb0f142011-04-12 23:29:38 -0700217 client->buffer[client->head++] = *event;
218 client->head &= client->bufsize - 1;
219
220 if (unlikely(client->head == client->tail)) {
221 /*
222 * This effectively "drops" all unconsumed events, leaving
223 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
224 */
225 client->tail = (client->head - 2) & (client->bufsize - 1);
226
Deepa Dinamani152194f2018-01-07 17:44:42 -0800227 client->buffer[client->tail].input_event_sec =
228 event->input_event_sec;
229 client->buffer[client->tail].input_event_usec =
230 event->input_event_usec;
Jeff Brown9fb0f142011-04-12 23:29:38 -0700231 client->buffer[client->tail].type = EV_SYN;
232 client->buffer[client->tail].code = SYN_DROPPED;
233 client->buffer[client->tail].value = 0;
Jeff Browncdda9112011-04-26 22:16:11 -0700234
235 client->packet_head = client->tail;
236 }
237
238 if (event->type == EV_SYN && event->code == SYN_REPORT) {
239 client->packet_head = client->head;
240 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Jeff Brown9fb0f142011-04-12 23:29:38 -0700241 }
Henrik Rydberga274ac12012-08-29 20:48:02 +0200242}
243
244static void evdev_pass_values(struct evdev_client *client,
245 const struct input_value *vals, unsigned int count,
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800246 ktime_t *ev_time)
Henrik Rydberga274ac12012-08-29 20:48:02 +0200247{
248 struct evdev *evdev = client->evdev;
249 const struct input_value *v;
250 struct input_event event;
Deepa Dinamani152194f2018-01-07 17:44:42 -0800251 struct timespec64 ts;
Henrik Rydberga274ac12012-08-29 20:48:02 +0200252 bool wakeup = false;
253
David Herrmannc7dc6572013-09-07 12:23:05 -0700254 if (client->revoked)
255 return;
256
Deepa Dinamani152194f2018-01-07 17:44:42 -0800257 ts = ktime_to_timespec64(ev_time[client->clk_type]);
258 event.input_event_sec = ts.tv_sec;
259 event.input_event_usec = ts.tv_nsec / NSEC_PER_USEC;
Henrik Rydberga274ac12012-08-29 20:48:02 +0200260
261 /* Interrupts are disabled, just acquire the lock. */
262 spin_lock(&client->buffer_lock);
263
264 for (v = vals; v != vals + count; v++) {
David Herrmann06a16292015-10-24 16:20:18 -0700265 if (__evdev_is_filtered(client, v->type, v->code))
266 continue;
267
268 if (v->type == EV_SYN && v->code == SYN_REPORT) {
269 /* drop empty SYN_REPORT */
270 if (client->packet_head == client->head)
271 continue;
272
273 wakeup = true;
274 }
275
Henrik Rydberga274ac12012-08-29 20:48:02 +0200276 event.type = v->type;
277 event.code = v->code;
278 event.value = v->value;
279 __pass_event(client, &event);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200280 }
Jeff Brown9fb0f142011-04-12 23:29:38 -0700281
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400282 spin_unlock(&client->buffer_lock);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200283
284 if (wakeup)
285 wake_up_interruptible(&evdev->wait);
286}
287
288/*
289 * Pass incoming events to all connected clients.
290 */
291static void evdev_events(struct input_handle *handle,
292 const struct input_value *vals, unsigned int count)
293{
294 struct evdev *evdev = handle->private;
295 struct evdev_client *client;
Atif Niyaz3b51c442019-07-24 22:26:31 +0300296 ktime_t *ev_time = input_get_timestamp(handle->dev);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200297
298 rcu_read_lock();
299
300 client = rcu_dereference(evdev->grab);
301
302 if (client)
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800303 evdev_pass_values(client, vals, count, ev_time);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200304 else
305 list_for_each_entry_rcu(client, &evdev->client_list, node)
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800306 evdev_pass_values(client, vals, count, ev_time);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200307
308 rcu_read_unlock();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400309}
310
311/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400312 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400313 */
314static void evdev_event(struct input_handle *handle,
315 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Henrik Rydberga274ac12012-08-29 20:48:02 +0200317 struct input_value vals[] = { { type, code, value } };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Henrik Rydberga274ac12012-08-29 20:48:02 +0200319 evdev_events(handle, vals, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322static int evdev_fasync(int fd, struct file *file, int on)
323{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400324 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400325
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700326 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400329static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400331 struct evdev_client *client = file->private_data;
332 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400333
Takashi Iwaieb38f3a2015-09-03 22:20:00 -0700334 mutex_lock(&evdev->mutex);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400335
Takashi Iwaieb38f3a2015-09-03 22:20:00 -0700336 if (evdev->exist && !client->revoked)
337 input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400338
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400339 mutex_unlock(&evdev->mutex);
Takashi Iwaieb38f3a2015-09-03 22:20:00 -0700340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400343static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400345 struct evdev *evdev = container_of(dev, struct evdev, dev);
346
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400347 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 kfree(evdev);
349}
350
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400351/*
352 * Grabs an event device (along with underlying input device).
353 * This function is called with evdev->mutex taken.
354 */
355static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
356{
357 int error;
358
359 if (evdev->grab)
360 return -EBUSY;
361
362 error = input_grab_device(&evdev->handle);
363 if (error)
364 return error;
365
366 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400367
368 return 0;
369}
370
371static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
372{
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700373 struct evdev_client *grab = rcu_dereference_protected(evdev->grab,
374 lockdep_is_held(&evdev->mutex));
375
376 if (grab != client)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400377 return -EINVAL;
378
379 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400380 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400381 input_release_device(&evdev->handle);
382
383 return 0;
384}
385
386static void evdev_attach_client(struct evdev *evdev,
387 struct evdev_client *client)
388{
389 spin_lock(&evdev->client_lock);
390 list_add_tail_rcu(&client->node, &evdev->client_list);
391 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400392}
393
394static void evdev_detach_client(struct evdev *evdev,
395 struct evdev_client *client)
396{
397 spin_lock(&evdev->client_lock);
398 list_del_rcu(&client->node);
399 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400400 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400401}
402
403static int evdev_open_device(struct evdev *evdev)
404{
405 int retval;
406
407 retval = mutex_lock_interruptible(&evdev->mutex);
408 if (retval)
409 return retval;
410
411 if (!evdev->exist)
412 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400413 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400414 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400415 if (retval)
416 evdev->open--;
417 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400418
419 mutex_unlock(&evdev->mutex);
420 return retval;
421}
422
423static void evdev_close_device(struct evdev *evdev)
424{
425 mutex_lock(&evdev->mutex);
426
427 if (evdev->exist && !--evdev->open)
428 input_close_device(&evdev->handle);
429
430 mutex_unlock(&evdev->mutex);
431}
432
433/*
434 * Wake up users waiting for IO so they can disconnect from
435 * dead device.
436 */
437static void evdev_hangup(struct evdev *evdev)
438{
439 struct evdev_client *client;
440
441 spin_lock(&evdev->client_lock);
442 list_for_each_entry(client, &evdev->client_list, node)
443 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
444 spin_unlock(&evdev->client_lock);
445
446 wake_up_interruptible(&evdev->wait);
447}
448
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400449static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400451 struct evdev_client *client = file->private_data;
452 struct evdev *evdev = client->evdev;
David Herrmann06a16292015-10-24 16:20:18 -0700453 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400455 mutex_lock(&evdev->mutex);
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700456 evdev_ungrab(evdev, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400457 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400459 evdev_detach_client(evdev, client);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700460
David Herrmann06a16292015-10-24 16:20:18 -0700461 for (i = 0; i < EV_CNT; ++i)
Andy Shevchenko60780912018-08-01 15:47:47 -0700462 bitmap_free(client->evmasks[i]);
David Herrmann06a16292015-10-24 16:20:18 -0700463
Pekka Enberg67367fd2015-05-15 13:45:40 -0700464 kvfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400466 evdev_close_device(evdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return 0;
469}
470
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700471static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
472{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700473 unsigned int n_events =
474 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
475 EVDEV_MIN_BUFFER_SIZE);
476
477 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700478}
479
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400480static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700482 struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev);
483 unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400484 struct evdev_client *client;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400485 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Gustavo A. R. Silvaecdf3a92019-04-03 10:51:10 -0700487 client = kzalloc(struct_size(client, buffer, bufsize),
488 GFP_KERNEL | __GFP_NOWARN);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700489 if (!client)
Gustavo A. R. Silvaecdf3a92019-04-03 10:51:10 -0700490 client = vzalloc(struct_size(client, buffer, bufsize));
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700491 if (!client)
492 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700494 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400495 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400496 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400497 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400499 error = evdev_open_device(evdev);
500 if (error)
501 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400503 file->private_data = client;
Kirill Smelkovc5bf68f2019-03-26 23:51:19 +0300504 stream_open(inode, file);
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400507
508 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400509 evdev_detach_client(evdev, client);
Andrew Morton92788ac2014-12-02 15:59:31 -0800510 kvfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400511 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400514static ssize_t evdev_write(struct file *file, const char __user *buffer,
515 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400517 struct evdev_client *client = file->private_data;
518 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800520 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700522 if (count != 0 && count < input_event_size())
Peter Korsgaard439581e2011-02-25 09:30:46 -0800523 return -EINVAL;
524
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400525 retval = mutex_lock_interruptible(&evdev->mutex);
526 if (retval)
527 return retval;
528
David Herrmannc7dc6572013-09-07 12:23:05 -0700529 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400530 retval = -ENODEV;
531 goto out;
532 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500533
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700534 while (retval + input_event_size() <= count) {
535
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400536 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400537 retval = -EFAULT;
538 goto out;
539 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800540 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400541
542 input_inject_event(&evdev->handle,
543 event.type, event.code, event.value);
Dmitry Torokhov36d25822018-10-04 17:45:54 -0700544 cond_resched();
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700545 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500546
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400547 out:
548 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500549 return retval;
550}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500551
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400552static int evdev_fetch_next_event(struct evdev_client *client,
553 struct input_event *event)
554{
555 int have_event;
556
557 spin_lock_irq(&client->buffer_lock);
558
Dima Zavin566cf5b2011-12-30 15:16:44 -0800559 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400560 if (have_event) {
561 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700562 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400563 }
564
565 spin_unlock_irq(&client->buffer_lock);
566
567 return have_event;
568}
569
570static ssize_t evdev_read(struct file *file, char __user *buffer,
571 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400573 struct evdev_client *client = file->private_data;
574 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400575 struct input_event event;
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700576 size_t read = 0;
577 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700579 if (count != 0 && count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return -EINVAL;
581
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700582 for (;;) {
David Herrmannc7dc6572013-09-07 12:23:05 -0700583 if (!evdev->exist || client->revoked)
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700584 return -ENODEV;
585
586 if (client->packet_head == client->tail &&
587 (file->f_flags & O_NONBLOCK))
588 return -EAGAIN;
589
590 /*
591 * count == 0 is special - no IO is done but we check
592 * for error conditions (see above).
593 */
594 if (count == 0)
595 break;
596
597 while (read + input_event_size() <= count &&
598 evdev_fetch_next_event(client, &event)) {
599
600 if (input_event_to_user(buffer + read, &event))
601 return -EFAULT;
602
603 read += input_event_size();
604 }
605
606 if (read)
607 break;
608
609 if (!(file->f_flags & O_NONBLOCK)) {
610 error = wait_event_interruptible(evdev->wait,
611 client->packet_head != client->tail ||
David Herrmannc7dc6572013-09-07 12:23:05 -0700612 !evdev->exist || client->revoked);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700613 if (error)
614 return error;
615 }
Dima Zavin509f87c2011-12-30 15:16:44 -0800616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700618 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
621/* No kernel lock - fine */
Al Viroafc9a422017-07-03 06:39:46 -0400622static __poll_t evdev_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400624 struct evdev_client *client = file->private_data;
625 struct evdev *evdev = client->evdev;
Al Viroafc9a422017-07-03 06:39:46 -0400626 __poll_t mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400627
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400628 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700629
David Herrmannc7dc6572013-09-07 12:23:05 -0700630 if (evdev->exist && !client->revoked)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800631 mask = EPOLLOUT | EPOLLWRNORM;
David Herrmannc7dc6572013-09-07 12:23:05 -0700632 else
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800633 mask = EPOLLHUP | EPOLLERR;
David Herrmannc7dc6572013-09-07 12:23:05 -0700634
Jeff Browncdda9112011-04-26 22:16:11 -0700635 if (client->packet_head != client->tail)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800636 mask |= EPOLLIN | EPOLLRDNORM;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700637
638 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500641#ifdef CONFIG_COMPAT
642
643#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700644#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500645
646#ifdef __BIG_ENDIAN
647static int bits_to_user(unsigned long *bits, unsigned int maxbit,
648 unsigned int maxlen, void __user *p, int compat)
649{
650 int len, i;
651
652 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700653 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400654 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500655 len = maxlen;
656
657 for (i = 0; i < len / sizeof(compat_long_t); i++)
658 if (copy_to_user((compat_long_t __user *) p + i,
659 (compat_long_t *) bits +
660 i + 1 - ((i % 2) << 1),
661 sizeof(compat_long_t)))
662 return -EFAULT;
663 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700664 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500665 if (len > maxlen)
666 len = maxlen;
667
668 if (copy_to_user(p, bits, len))
669 return -EFAULT;
670 }
671
672 return len;
673}
David Herrmann06a16292015-10-24 16:20:18 -0700674
675static int bits_from_user(unsigned long *bits, unsigned int maxbit,
676 unsigned int maxlen, const void __user *p, int compat)
677{
678 int len, i;
679
680 if (compat) {
681 if (maxlen % sizeof(compat_long_t))
682 return -EINVAL;
683
684 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
685 if (len > maxlen)
686 len = maxlen;
687
688 for (i = 0; i < len / sizeof(compat_long_t); i++)
689 if (copy_from_user((compat_long_t *) bits +
690 i + 1 - ((i % 2) << 1),
691 (compat_long_t __user *) p + i,
692 sizeof(compat_long_t)))
693 return -EFAULT;
694 if (i % 2)
695 *((compat_long_t *) bits + i - 1) = 0;
696
697 } else {
698 if (maxlen % sizeof(long))
699 return -EINVAL;
700
701 len = BITS_TO_LONGS(maxbit) * sizeof(long);
702 if (len > maxlen)
703 len = maxlen;
704
705 if (copy_from_user(bits, p, len))
706 return -EFAULT;
707 }
708
709 return len;
710}
711
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500712#else
David Herrmann06a16292015-10-24 16:20:18 -0700713
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500714static int bits_to_user(unsigned long *bits, unsigned int maxbit,
715 unsigned int maxlen, void __user *p, int compat)
716{
717 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700718 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
719 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500720
721 if (len > maxlen)
722 len = maxlen;
723
724 return copy_to_user(p, bits, len) ? -EFAULT : len;
725}
David Herrmann06a16292015-10-24 16:20:18 -0700726
727static int bits_from_user(unsigned long *bits, unsigned int maxbit,
728 unsigned int maxlen, const void __user *p, int compat)
729{
730 size_t chunk_size = compat ? sizeof(compat_long_t) : sizeof(long);
731 int len;
732
733 if (maxlen % chunk_size)
734 return -EINVAL;
735
736 len = compat ? BITS_TO_LONGS_COMPAT(maxbit) : BITS_TO_LONGS(maxbit);
737 len *= chunk_size;
738 if (len > maxlen)
739 len = maxlen;
740
741 return copy_from_user(bits, p, len) ? -EFAULT : len;
742}
743
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500744#endif /* __BIG_ENDIAN */
745
746#else
747
748static int bits_to_user(unsigned long *bits, unsigned int maxbit,
749 unsigned int maxlen, void __user *p, int compat)
750{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700751 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500752
753 if (len > maxlen)
754 len = maxlen;
755
756 return copy_to_user(p, bits, len) ? -EFAULT : len;
757}
758
David Herrmann06a16292015-10-24 16:20:18 -0700759static int bits_from_user(unsigned long *bits, unsigned int maxbit,
760 unsigned int maxlen, const void __user *p, int compat)
761{
762 int len;
763
764 if (maxlen % sizeof(long))
765 return -EINVAL;
766
767 len = BITS_TO_LONGS(maxbit) * sizeof(long);
768 if (len > maxlen)
769 len = maxlen;
770
771 return copy_from_user(bits, p, len) ? -EFAULT : len;
772}
773
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500774#endif /* CONFIG_COMPAT */
775
776static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
777{
778 int len;
779
780 if (!str)
781 return -ENOENT;
782
783 len = strlen(str) + 1;
784 if (len > maxlen)
785 len = maxlen;
786
787 return copy_to_user(p, str, len) ? -EFAULT : len;
788}
789
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700790static int handle_eviocgbit(struct input_dev *dev,
791 unsigned int type, unsigned int size,
792 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400793{
794 unsigned long *bits;
795 int len;
796
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700797 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400798
799 case 0: bits = dev->evbit; len = EV_MAX; break;
800 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
801 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
802 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
803 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
804 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
805 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
806 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
807 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
808 default: return -EINVAL;
809 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400810
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700811 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400812}
Linus Torvalds5402a732008-08-05 11:42:42 -0400813
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800814static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
815{
816 struct input_keymap_entry ke = {
817 .len = sizeof(unsigned int),
818 .flags = 0,
819 };
820 int __user *ip = (int __user *)p;
821 int error;
822
823 /* legacy case */
824 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
825 return -EFAULT;
826
827 error = input_get_keycode(dev, &ke);
828 if (error)
829 return error;
830
831 if (put_user(ke.keycode, ip + 1))
832 return -EFAULT;
833
834 return 0;
835}
836
837static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700838{
839 struct input_keymap_entry ke;
840 int error;
841
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800842 if (copy_from_user(&ke, p, sizeof(ke)))
843 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700844
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800845 error = input_get_keycode(dev, &ke);
846 if (error)
847 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700848
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800849 if (copy_to_user(p, &ke, sizeof(ke)))
850 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700851
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700852 return 0;
853}
854
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800855static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
856{
857 struct input_keymap_entry ke = {
858 .len = sizeof(unsigned int),
859 .flags = 0,
860 };
861 int __user *ip = (int __user *)p;
862
863 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
864 return -EFAULT;
865
866 if (get_user(ke.keycode, ip + 1))
867 return -EFAULT;
868
869 return input_set_keycode(dev, &ke);
870}
871
872static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700873{
874 struct input_keymap_entry ke;
875
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800876 if (copy_from_user(&ke, p, sizeof(ke)))
877 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700878
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800879 if (ke.len > sizeof(ke.scancode))
880 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700881
882 return input_set_keycode(dev, &ke);
883}
884
David Herrmann48318022013-04-07 21:13:19 -0700885/*
886 * If we transfer state to the user, we should flush all pending events
887 * of the same type from the client's queue. Otherwise, they might end up
888 * with duplicate events, which can screw up client's state tracking.
889 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
890 * event so user-space will notice missing events.
891 *
892 * LOCKING:
893 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
894 * need the even_lock only to guarantee consistent state. We can safely release
895 * it while flushing the queue. This allows input-core to handle filters while
896 * we flush the queue.
897 */
898static int evdev_handle_get_val(struct evdev_client *client,
899 struct input_dev *dev, unsigned int type,
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700900 unsigned long *bits, unsigned int maxbit,
901 unsigned int maxlen, void __user *p,
902 int compat)
David Herrmann48318022013-04-07 21:13:19 -0700903{
904 int ret;
905 unsigned long *mem;
906
Andy Shevchenko60780912018-08-01 15:47:47 -0700907 mem = bitmap_alloc(maxbit, GFP_KERNEL);
David Herrmann48318022013-04-07 21:13:19 -0700908 if (!mem)
909 return -ENOMEM;
910
911 spin_lock_irq(&dev->event_lock);
912 spin_lock(&client->buffer_lock);
913
Andy Shevchenko60780912018-08-01 15:47:47 -0700914 bitmap_copy(mem, bits, maxbit);
David Herrmann48318022013-04-07 21:13:19 -0700915
916 spin_unlock(&dev->event_lock);
917
918 __evdev_flush_queue(client, type);
919
920 spin_unlock_irq(&client->buffer_lock);
921
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700922 ret = bits_to_user(mem, maxbit, maxlen, p, compat);
David Herrmann48318022013-04-07 21:13:19 -0700923 if (ret < 0)
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800924 evdev_queue_syn_dropped(client);
David Herrmann48318022013-04-07 21:13:19 -0700925
Andy Shevchenko60780912018-08-01 15:47:47 -0700926 bitmap_free(mem);
David Herrmann48318022013-04-07 21:13:19 -0700927
928 return ret;
929}
930
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100931static int evdev_handle_mt_request(struct input_dev *dev,
932 unsigned int size,
933 int __user *ip)
934{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200935 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100936 unsigned int code;
937 int max_slots;
938 int i;
939
940 if (get_user(code, &ip[0]))
941 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200942 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100943 return -EINVAL;
944
945 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200946 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
947 int value = input_mt_get_value(&mt->slots[i], code);
948 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100949 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200950 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100951
952 return 0;
953}
954
David Herrmannc7dc6572013-09-07 12:23:05 -0700955static int evdev_revoke(struct evdev *evdev, struct evdev_client *client,
956 struct file *file)
957{
958 client->revoked = true;
959 evdev_ungrab(evdev, client);
960 input_flush_device(&evdev->handle, file);
961 wake_up_interruptible(&evdev->wait);
962
963 return 0;
964}
965
David Herrmann06a16292015-10-24 16:20:18 -0700966/* must be called with evdev-mutex held */
967static int evdev_set_mask(struct evdev_client *client,
968 unsigned int type,
969 const void __user *codes,
970 u32 codes_size,
971 int compat)
972{
973 unsigned long flags, *mask, *oldmask;
974 size_t cnt;
975 int error;
976
977 /* we allow unknown types and 'codes_size > size' for forward-compat */
978 cnt = evdev_get_mask_cnt(type);
979 if (!cnt)
980 return 0;
981
Andy Shevchenko60780912018-08-01 15:47:47 -0700982 mask = bitmap_zalloc(cnt, GFP_KERNEL);
David Herrmann06a16292015-10-24 16:20:18 -0700983 if (!mask)
984 return -ENOMEM;
985
986 error = bits_from_user(mask, cnt - 1, codes_size, codes, compat);
987 if (error < 0) {
Andy Shevchenko60780912018-08-01 15:47:47 -0700988 bitmap_free(mask);
David Herrmann06a16292015-10-24 16:20:18 -0700989 return error;
990 }
991
992 spin_lock_irqsave(&client->buffer_lock, flags);
993 oldmask = client->evmasks[type];
994 client->evmasks[type] = mask;
995 spin_unlock_irqrestore(&client->buffer_lock, flags);
996
Andy Shevchenko60780912018-08-01 15:47:47 -0700997 bitmap_free(oldmask);
David Herrmann06a16292015-10-24 16:20:18 -0700998
999 return 0;
1000}
1001
1002/* must be called with evdev-mutex held */
1003static int evdev_get_mask(struct evdev_client *client,
1004 unsigned int type,
1005 void __user *codes,
1006 u32 codes_size,
1007 int compat)
1008{
1009 unsigned long *mask;
1010 size_t cnt, size, xfer_size;
1011 int i;
1012 int error;
1013
1014 /* we allow unknown types and 'codes_size > size' for forward-compat */
1015 cnt = evdev_get_mask_cnt(type);
1016 size = sizeof(unsigned long) * BITS_TO_LONGS(cnt);
1017 xfer_size = min_t(size_t, codes_size, size);
1018
1019 if (cnt > 0) {
1020 mask = client->evmasks[type];
1021 if (mask) {
1022 error = bits_to_user(mask, cnt - 1,
1023 xfer_size, codes, compat);
1024 if (error < 0)
1025 return error;
1026 } else {
1027 /* fake mask with all bits set */
1028 for (i = 0; i < xfer_size; i++)
1029 if (put_user(0xffU, (u8 __user *)codes + i))
1030 return -EFAULT;
1031 }
1032 }
1033
1034 if (xfer_size < codes_size)
1035 if (clear_user(codes + xfer_size, codes_size - xfer_size))
1036 return -EFAULT;
1037
1038 return 0;
1039}
1040
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001041static long evdev_do_ioctl(struct file *file, unsigned int cmd,
1042 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001044 struct evdev_client *client = file->private_data;
1045 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 struct input_dev *dev = evdev->handle.dev;
1047 struct input_absinfo abs;
David Herrmann06a16292015-10-24 16:20:18 -07001048 struct input_mask mask;
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001049 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001050 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -08001051 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001052 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001053 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001055 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 switch (cmd) {
1057
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001058 case EVIOCGVERSION:
1059 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001061 case EVIOCGID:
1062 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
1063 return -EFAULT;
1064 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -04001065
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001066 case EVIOCGREP:
1067 if (!test_bit(EV_REP, dev->evbit))
1068 return -ENOSYS;
1069 if (put_user(dev->rep[REP_DELAY], ip))
1070 return -EFAULT;
1071 if (put_user(dev->rep[REP_PERIOD], ip + 1))
1072 return -EFAULT;
1073 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -04001074
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001075 case EVIOCSREP:
1076 if (!test_bit(EV_REP, dev->evbit))
1077 return -ENOSYS;
1078 if (get_user(u, ip))
1079 return -EFAULT;
1080 if (get_user(v, ip + 1))
1081 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -04001082
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001083 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
1084 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001085
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001086 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001088 case EVIOCRMFF:
1089 return input_ff_erase(dev, (int)(unsigned long) p, file);
1090
1091 case EVIOCGEFFECTS:
1092 i = test_bit(EV_FF, dev->evbit) ?
1093 dev->ff->max_effects : 0;
1094 if (put_user(i, ip))
1095 return -EFAULT;
1096 return 0;
1097
1098 case EVIOCGRAB:
1099 if (p)
1100 return evdev_grab(evdev, client);
1101 else
1102 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -08001103
David Herrmannc7dc6572013-09-07 12:23:05 -07001104 case EVIOCREVOKE:
1105 if (p)
1106 return -EINVAL;
1107 else
1108 return evdev_revoke(evdev, client, file);
1109
David Herrmann06a16292015-10-24 16:20:18 -07001110 case EVIOCGMASK: {
1111 void __user *codes_ptr;
1112
1113 if (copy_from_user(&mask, p, sizeof(mask)))
1114 return -EFAULT;
1115
1116 codes_ptr = (void __user *)(unsigned long)mask.codes_ptr;
1117 return evdev_get_mask(client,
1118 mask.type, codes_ptr, mask.codes_size,
1119 compat_mode);
1120 }
1121
1122 case EVIOCSMASK: {
1123 const void __user *codes_ptr;
1124
1125 if (copy_from_user(&mask, p, sizeof(mask)))
1126 return -EFAULT;
1127
1128 codes_ptr = (const void __user *)(unsigned long)mask.codes_ptr;
1129 return evdev_set_mask(client,
1130 mask.type, codes_ptr, mask.codes_size,
1131 compat_mode);
1132 }
1133
John Stultza80b83b2012-02-03 00:19:07 -08001134 case EVIOCSCLOCKID:
1135 if (copy_from_user(&i, p, sizeof(unsigned int)))
1136 return -EFAULT;
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -08001137
1138 return evdev_set_clk_type(client, i);
John Stultza80b83b2012-02-03 00:19:07 -08001139
Dmitry Torokhovab4e0192010-12-14 23:53:21 -08001140 case EVIOCGKEYCODE:
1141 return evdev_handle_get_keycode(dev, p);
1142
1143 case EVIOCSKEYCODE:
1144 return evdev_handle_set_keycode(dev, p);
1145
1146 case EVIOCGKEYCODE_V2:
1147 return evdev_handle_get_keycode_v2(dev, p);
1148
1149 case EVIOCSKEYCODE_V2:
1150 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001151 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001152
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001153 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001154
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001155 /* Now check variable-length commands */
1156#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001157 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001158
Henrik Rydberg85b77202010-12-18 20:51:13 +01001159 case EVIOCGPROP(0):
1160 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
1161 size, p, compat_mode);
1162
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +01001163 case EVIOCGMTSLOTS(0):
1164 return evdev_handle_mt_request(dev, size, ip);
1165
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001166 case EVIOCGKEY(0):
David Herrmann48318022013-04-07 21:13:19 -07001167 return evdev_handle_get_val(client, dev, EV_KEY, dev->key,
1168 KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001169
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001170 case EVIOCGLED(0):
David Herrmann48318022013-04-07 21:13:19 -07001171 return evdev_handle_get_val(client, dev, EV_LED, dev->led,
1172 LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001173
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001174 case EVIOCGSND(0):
David Herrmann48318022013-04-07 21:13:19 -07001175 return evdev_handle_get_val(client, dev, EV_SND, dev->snd,
1176 SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001177
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001178 case EVIOCGSW(0):
David Herrmann48318022013-04-07 21:13:19 -07001179 return evdev_handle_get_val(client, dev, EV_SW, dev->sw,
1180 SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001181
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001182 case EVIOCGNAME(0):
1183 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001184
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001185 case EVIOCGPHYS(0):
1186 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001187
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001188 case EVIOCGUNIQ(0):
1189 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001190
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001191 case EVIOC_MASK_SIZE(EVIOCSFF):
1192 if (input_ff_effect_from_user(p, size, &effect))
1193 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001194
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001195 error = input_ff_upload(dev, &effect, file);
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -07001196 if (error)
1197 return error;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001198
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001199 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
1200 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001201
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -07001202 return 0;
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001203 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001204
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001205 /* Multi-number variable-length handlers */
1206 if (_IOC_TYPE(cmd) != 'E')
1207 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001209 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001211 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
1212 return handle_eviocgbit(dev,
1213 _IOC_NR(cmd) & EV_MAX, size,
1214 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001216 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001217
Daniel Mack0a74a1d2010-10-18 08:43:30 -07001218 if (!dev->absinfo)
1219 return -EINVAL;
1220
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001221 t = _IOC_NR(cmd) & ABS_MAX;
1222 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001223
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001224 if (copy_to_user(p, &abs, min_t(size_t,
1225 size, sizeof(struct input_absinfo))))
1226 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001227
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001228 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001231
Daniel Mackf9ce6eb52010-10-18 08:43:50 -07001232 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001233
1234 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
1235
Daniel Mack0a74a1d2010-10-18 08:43:30 -07001236 if (!dev->absinfo)
1237 return -EINVAL;
1238
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001239 t = _IOC_NR(cmd) & ABS_MAX;
1240
1241 if (copy_from_user(&abs, p, min_t(size_t,
1242 size, sizeof(struct input_absinfo))))
1243 return -EFAULT;
1244
1245 if (size < sizeof(struct input_absinfo))
1246 abs.resolution = 0;
1247
1248 /* We can't change number of reserved MT slots */
1249 if (t == ABS_MT_SLOT)
1250 return -EINVAL;
1251
1252 /*
1253 * Take event lock to ensure that we are not
1254 * changing device parameters in the middle
1255 * of event.
1256 */
1257 spin_lock_irq(&dev->event_lock);
1258 dev->absinfo[t] = abs;
1259 spin_unlock_irq(&dev->event_lock);
1260
1261 return 0;
1262 }
1263 }
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return -EINVAL;
1266}
1267
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001268static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
1269 void __user *p, int compat_mode)
1270{
1271 struct evdev_client *client = file->private_data;
1272 struct evdev *evdev = client->evdev;
1273 int retval;
1274
1275 retval = mutex_lock_interruptible(&evdev->mutex);
1276 if (retval)
1277 return retval;
1278
David Herrmannc7dc6572013-09-07 12:23:05 -07001279 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001280 retval = -ENODEV;
1281 goto out;
1282 }
1283
1284 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
1285
1286 out:
1287 mutex_unlock(&evdev->mutex);
1288 return retval;
1289}
1290
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001291static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1292{
1293 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
1294}
1295
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001296#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001297static long evdev_ioctl_compat(struct file *file,
1298 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001299{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001300 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001301}
1302#endif
1303
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001304static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001305 .owner = THIS_MODULE,
1306 .read = evdev_read,
1307 .write = evdev_write,
1308 .poll = evdev_poll,
1309 .open = evdev_open,
1310 .release = evdev_release,
1311 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001312#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001313 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001314#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001315 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001316 .flush = evdev_flush,
1317 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318};
1319
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001320/*
1321 * Mark device non-existent. This disables writes, ioctls and
1322 * prevents new users from opening the device. Already posted
1323 * blocking reads will stay, however new ones will fail.
1324 */
1325static void evdev_mark_dead(struct evdev *evdev)
1326{
1327 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001328 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001329 mutex_unlock(&evdev->mutex);
1330}
1331
1332static void evdev_cleanup(struct evdev *evdev)
1333{
1334 struct input_handle *handle = &evdev->handle;
1335
1336 evdev_mark_dead(evdev);
1337 evdev_hangup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001338
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001339 /* evdev is marked dead so no one else accesses evdev->open */
1340 if (evdev->open) {
1341 input_flush_device(handle, NULL);
1342 input_close_device(handle);
1343 }
1344}
1345
1346/*
1347 * Create new evdev device. Note that input core serializes calls
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001348 * to connect and disconnect.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001349 */
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001350static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
1351 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 struct evdev *evdev;
1354 int minor;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001355 int dev_no;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001356 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001358 minor = input_get_new_minor(EVDEV_MINOR_BASE, EVDEV_MINORS, true);
1359 if (minor < 0) {
1360 error = minor;
1361 pr_err("failed to reserve new minor: %d\n", error);
1362 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
1364
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001365 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001366 if (!evdev) {
1367 error = -ENOMEM;
1368 goto err_free_minor;
1369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001371 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001372 spin_lock_init(&evdev->client_lock);
1373 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 init_waitqueue_head(&evdev->wait);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001375 evdev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001376
1377 dev_no = minor;
1378 /* Normalize device number if it falls into legacy range */
1379 if (dev_no < EVDEV_MINOR_BASE + EVDEV_MINORS)
1380 dev_no -= EVDEV_MINOR_BASE;
1381 dev_set_name(&evdev->dev, "event%d", dev_no);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001382
Dmitry Torokhova7097ff2008-04-01 00:22:53 -04001383 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -07001384 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 evdev->handle.handler = handler;
1386 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001387
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001388 evdev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001389 evdev->dev.class = &input_class;
1390 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001391 evdev->dev.release = evdev_free;
1392 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001394 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001395 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001396 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001398 cdev_init(&evdev->cdev, &evdev_fops);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001399
Logan Gunthorpe358a89c2017-03-17 12:48:11 -06001400 error = cdev_device_add(&evdev->cdev, &evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001401 if (error)
1402 goto err_cleanup_evdev;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001403
1404 return 0;
1405
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001406 err_cleanup_evdev:
1407 evdev_cleanup(evdev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001408 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001409 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001410 put_device(&evdev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001411 err_free_minor:
1412 input_free_minor(minor);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001413 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414}
1415
1416static void evdev_disconnect(struct input_handle *handle)
1417{
1418 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Logan Gunthorpe358a89c2017-03-17 12:48:11 -06001420 cdev_device_del(&evdev->cdev, &evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001421 evdev_cleanup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001422 input_free_minor(MINOR(evdev->dev.devt));
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001423 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001424 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425}
1426
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001427static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 { .driver_info = 1 }, /* Matches all devices */
1429 { }, /* Terminating zero entry */
1430};
1431
1432MODULE_DEVICE_TABLE(input, evdev_ids);
1433
1434static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001435 .event = evdev_event,
Henrik Rydberga274ac12012-08-29 20:48:02 +02001436 .events = evdev_events,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001437 .connect = evdev_connect,
1438 .disconnect = evdev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001439 .legacy_minors = true,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001440 .minor = EVDEV_MINOR_BASE,
1441 .name = "evdev",
1442 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443};
1444
1445static int __init evdev_init(void)
1446{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001447 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
1450static void __exit evdev_exit(void)
1451{
1452 input_unregister_handler(&evdev_handler);
1453}
1454
1455module_init(evdev_init);
1456module_exit(evdev_exit);
1457
1458MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1459MODULE_DESCRIPTION("Input driver event char devices");
1460MODULE_LICENSE("GPL");