blob: 95f90699d2b17b4e42e067bf44b6deac611fdb8b [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;
Arnd Bergmann2be85272010-03-04 15:50:28 +010031 struct evdev_client __rcu *grab;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040032 struct list_head client_list;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040033 spinlock_t client_lock; /* protects client_list */
34 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040035 struct device dev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070036 struct cdev cdev;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -070037 bool exist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040040struct evdev_client {
Jeff Brown9fb0f142011-04-12 23:29:38 -070041 unsigned int head;
42 unsigned int tail;
Jeff Browncdda9112011-04-26 22:16:11 -070043 unsigned int packet_head; /* [future] position of the first element of next packet */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040044 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Kenny Levinsen4ba8b8a2020-10-05 11:15:55 -070045 wait_queue_head_t wait;
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
Arnd Bergmannf729a1b2019-12-13 14:06:58 -0800227 client->buffer[client->tail] = (struct input_event) {
228 .input_event_sec = event->input_event_sec,
229 .input_event_usec = event->input_event_usec,
230 .type = EV_SYN,
231 .code = SYN_DROPPED,
232 .value = 0,
233 };
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{
Henrik Rydberga274ac12012-08-29 20:48:02 +0200248 const struct input_value *v;
249 struct input_event event;
Deepa Dinamani152194f2018-01-07 17:44:42 -0800250 struct timespec64 ts;
Henrik Rydberga274ac12012-08-29 20:48:02 +0200251 bool wakeup = false;
252
David Herrmannc7dc6572013-09-07 12:23:05 -0700253 if (client->revoked)
254 return;
255
Deepa Dinamani152194f2018-01-07 17:44:42 -0800256 ts = ktime_to_timespec64(ev_time[client->clk_type]);
257 event.input_event_sec = ts.tv_sec;
258 event.input_event_usec = ts.tv_nsec / NSEC_PER_USEC;
Henrik Rydberga274ac12012-08-29 20:48:02 +0200259
260 /* Interrupts are disabled, just acquire the lock. */
261 spin_lock(&client->buffer_lock);
262
263 for (v = vals; v != vals + count; v++) {
David Herrmann06a16292015-10-24 16:20:18 -0700264 if (__evdev_is_filtered(client, v->type, v->code))
265 continue;
266
267 if (v->type == EV_SYN && v->code == SYN_REPORT) {
268 /* drop empty SYN_REPORT */
269 if (client->packet_head == client->head)
270 continue;
271
272 wakeup = true;
273 }
274
Henrik Rydberga274ac12012-08-29 20:48:02 +0200275 event.type = v->type;
276 event.code = v->code;
277 event.value = v->value;
278 __pass_event(client, &event);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200279 }
Jeff Brown9fb0f142011-04-12 23:29:38 -0700280
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400281 spin_unlock(&client->buffer_lock);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200282
283 if (wakeup)
Kenny Levinsen4ba8b8a2020-10-05 11:15:55 -0700284 wake_up_interruptible_poll(&client->wait,
Kenny Levinsen81b4d1d2020-04-18 21:26:50 -0700285 EPOLLIN | EPOLLOUT | EPOLLRDNORM | EPOLLWRNORM);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200286}
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 Torokhov9657d752007-06-14 23:32:24 -0400329static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400331 struct evdev *evdev = container_of(dev, struct evdev, dev);
332
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400333 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 kfree(evdev);
335}
336
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400337/*
338 * Grabs an event device (along with underlying input device).
339 * This function is called with evdev->mutex taken.
340 */
341static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
342{
343 int error;
344
345 if (evdev->grab)
346 return -EBUSY;
347
348 error = input_grab_device(&evdev->handle);
349 if (error)
350 return error;
351
352 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400353
354 return 0;
355}
356
357static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
358{
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700359 struct evdev_client *grab = rcu_dereference_protected(evdev->grab,
360 lockdep_is_held(&evdev->mutex));
361
362 if (grab != client)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400363 return -EINVAL;
364
365 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400366 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400367 input_release_device(&evdev->handle);
368
369 return 0;
370}
371
372static void evdev_attach_client(struct evdev *evdev,
373 struct evdev_client *client)
374{
375 spin_lock(&evdev->client_lock);
376 list_add_tail_rcu(&client->node, &evdev->client_list);
377 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400378}
379
380static void evdev_detach_client(struct evdev *evdev,
381 struct evdev_client *client)
382{
383 spin_lock(&evdev->client_lock);
384 list_del_rcu(&client->node);
385 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400386 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400387}
388
389static int evdev_open_device(struct evdev *evdev)
390{
391 int retval;
392
393 retval = mutex_lock_interruptible(&evdev->mutex);
394 if (retval)
395 return retval;
396
397 if (!evdev->exist)
398 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400399 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400400 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400401 if (retval)
402 evdev->open--;
403 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400404
405 mutex_unlock(&evdev->mutex);
406 return retval;
407}
408
409static void evdev_close_device(struct evdev *evdev)
410{
411 mutex_lock(&evdev->mutex);
412
413 if (evdev->exist && !--evdev->open)
414 input_close_device(&evdev->handle);
415
416 mutex_unlock(&evdev->mutex);
417}
418
419/*
420 * Wake up users waiting for IO so they can disconnect from
421 * dead device.
422 */
423static void evdev_hangup(struct evdev *evdev)
424{
425 struct evdev_client *client;
426
427 spin_lock(&evdev->client_lock);
Kenny Levinsen4ba8b8a2020-10-05 11:15:55 -0700428 list_for_each_entry(client, &evdev->client_list, node) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400429 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
Kenny Levinsen4ba8b8a2020-10-05 11:15:55 -0700430 wake_up_interruptible_poll(&client->wait, EPOLLHUP | EPOLLERR);
431 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400432 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400433}
434
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400435static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400437 struct evdev_client *client = file->private_data;
438 struct evdev *evdev = client->evdev;
David Herrmann06a16292015-10-24 16:20:18 -0700439 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400441 mutex_lock(&evdev->mutex);
Brendan Shanks09264092020-04-22 13:45:12 -0700442
443 if (evdev->exist && !client->revoked)
444 input_flush_device(&evdev->handle, file);
445
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700446 evdev_ungrab(evdev, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400447 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400449 evdev_detach_client(evdev, client);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700450
David Herrmann06a16292015-10-24 16:20:18 -0700451 for (i = 0; i < EV_CNT; ++i)
Andy Shevchenko60780912018-08-01 15:47:47 -0700452 bitmap_free(client->evmasks[i]);
David Herrmann06a16292015-10-24 16:20:18 -0700453
Pekka Enberg67367fd2015-05-15 13:45:40 -0700454 kvfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400456 evdev_close_device(evdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return 0;
459}
460
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700461static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
462{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700463 unsigned int n_events =
464 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
465 EVDEV_MIN_BUFFER_SIZE);
466
467 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700468}
469
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400470static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700472 struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev);
473 unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400474 struct evdev_client *client;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400475 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Miles Chen7f439bc2020-01-02 15:10:16 -0800477 client = kvzalloc(struct_size(client, buffer, bufsize), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700478 if (!client)
479 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Kenny Levinsen4ba8b8a2020-10-05 11:15:55 -0700481 init_waitqueue_head(&client->wait);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700482 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400483 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400484 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400485 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400487 error = evdev_open_device(evdev);
488 if (error)
489 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400491 file->private_data = client;
Kirill Smelkovc5bf68f2019-03-26 23:51:19 +0300492 stream_open(inode, file);
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400495
496 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400497 evdev_detach_client(evdev, client);
Andrew Morton92788ac2014-12-02 15:59:31 -0800498 kvfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400499 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400502static ssize_t evdev_write(struct file *file, const char __user *buffer,
503 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400505 struct evdev_client *client = file->private_data;
506 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800508 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700510 if (count != 0 && count < input_event_size())
Peter Korsgaard439581e2011-02-25 09:30:46 -0800511 return -EINVAL;
512
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400513 retval = mutex_lock_interruptible(&evdev->mutex);
514 if (retval)
515 return retval;
516
David Herrmannc7dc6572013-09-07 12:23:05 -0700517 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400518 retval = -ENODEV;
519 goto out;
520 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500521
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700522 while (retval + input_event_size() <= count) {
523
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400524 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400525 retval = -EFAULT;
526 goto out;
527 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800528 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400529
530 input_inject_event(&evdev->handle,
531 event.type, event.code, event.value);
Dmitry Torokhov36d25822018-10-04 17:45:54 -0700532 cond_resched();
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700533 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500534
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400535 out:
536 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500537 return retval;
538}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500539
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400540static int evdev_fetch_next_event(struct evdev_client *client,
541 struct input_event *event)
542{
543 int have_event;
544
545 spin_lock_irq(&client->buffer_lock);
546
Dima Zavin566cf5b2011-12-30 15:16:44 -0800547 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400548 if (have_event) {
549 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700550 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400551 }
552
553 spin_unlock_irq(&client->buffer_lock);
554
555 return have_event;
556}
557
558static ssize_t evdev_read(struct file *file, char __user *buffer,
559 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400561 struct evdev_client *client = file->private_data;
562 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400563 struct input_event event;
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700564 size_t read = 0;
565 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700567 if (count != 0 && count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return -EINVAL;
569
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700570 for (;;) {
David Herrmannc7dc6572013-09-07 12:23:05 -0700571 if (!evdev->exist || client->revoked)
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700572 return -ENODEV;
573
574 if (client->packet_head == client->tail &&
575 (file->f_flags & O_NONBLOCK))
576 return -EAGAIN;
577
578 /*
579 * count == 0 is special - no IO is done but we check
580 * for error conditions (see above).
581 */
582 if (count == 0)
583 break;
584
585 while (read + input_event_size() <= count &&
586 evdev_fetch_next_event(client, &event)) {
587
588 if (input_event_to_user(buffer + read, &event))
589 return -EFAULT;
590
591 read += input_event_size();
592 }
593
594 if (read)
595 break;
596
597 if (!(file->f_flags & O_NONBLOCK)) {
Kenny Levinsen4ba8b8a2020-10-05 11:15:55 -0700598 error = wait_event_interruptible(client->wait,
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700599 client->packet_head != client->tail ||
David Herrmannc7dc6572013-09-07 12:23:05 -0700600 !evdev->exist || client->revoked);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700601 if (error)
602 return error;
603 }
Dima Zavin509f87c2011-12-30 15:16:44 -0800604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700606 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609/* No kernel lock - fine */
Al Viroafc9a422017-07-03 06:39:46 -0400610static __poll_t evdev_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400612 struct evdev_client *client = file->private_data;
613 struct evdev *evdev = client->evdev;
Al Viroafc9a422017-07-03 06:39:46 -0400614 __poll_t mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400615
Kenny Levinsen4ba8b8a2020-10-05 11:15:55 -0700616 poll_wait(file, &client->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700617
David Herrmannc7dc6572013-09-07 12:23:05 -0700618 if (evdev->exist && !client->revoked)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800619 mask = EPOLLOUT | EPOLLWRNORM;
David Herrmannc7dc6572013-09-07 12:23:05 -0700620 else
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800621 mask = EPOLLHUP | EPOLLERR;
David Herrmannc7dc6572013-09-07 12:23:05 -0700622
Jeff Browncdda9112011-04-26 22:16:11 -0700623 if (client->packet_head != client->tail)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800624 mask |= EPOLLIN | EPOLLRDNORM;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700625
626 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500629#ifdef CONFIG_COMPAT
630
631#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700632#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500633
634#ifdef __BIG_ENDIAN
635static int bits_to_user(unsigned long *bits, unsigned int maxbit,
636 unsigned int maxlen, void __user *p, int compat)
637{
638 int len, i;
639
640 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700641 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400642 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500643 len = maxlen;
644
645 for (i = 0; i < len / sizeof(compat_long_t); i++)
646 if (copy_to_user((compat_long_t __user *) p + i,
647 (compat_long_t *) bits +
648 i + 1 - ((i % 2) << 1),
649 sizeof(compat_long_t)))
650 return -EFAULT;
651 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700652 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500653 if (len > maxlen)
654 len = maxlen;
655
656 if (copy_to_user(p, bits, len))
657 return -EFAULT;
658 }
659
660 return len;
661}
David Herrmann06a16292015-10-24 16:20:18 -0700662
663static int bits_from_user(unsigned long *bits, unsigned int maxbit,
664 unsigned int maxlen, const void __user *p, int compat)
665{
666 int len, i;
667
668 if (compat) {
669 if (maxlen % sizeof(compat_long_t))
670 return -EINVAL;
671
672 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
673 if (len > maxlen)
674 len = maxlen;
675
676 for (i = 0; i < len / sizeof(compat_long_t); i++)
677 if (copy_from_user((compat_long_t *) bits +
678 i + 1 - ((i % 2) << 1),
679 (compat_long_t __user *) p + i,
680 sizeof(compat_long_t)))
681 return -EFAULT;
682 if (i % 2)
683 *((compat_long_t *) bits + i - 1) = 0;
684
685 } else {
686 if (maxlen % sizeof(long))
687 return -EINVAL;
688
689 len = BITS_TO_LONGS(maxbit) * sizeof(long);
690 if (len > maxlen)
691 len = maxlen;
692
693 if (copy_from_user(bits, p, len))
694 return -EFAULT;
695 }
696
697 return len;
698}
699
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500700#else
David Herrmann06a16292015-10-24 16:20:18 -0700701
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500702static int bits_to_user(unsigned long *bits, unsigned int maxbit,
703 unsigned int maxlen, void __user *p, int compat)
704{
705 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700706 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
707 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500708
709 if (len > maxlen)
710 len = maxlen;
711
712 return copy_to_user(p, bits, len) ? -EFAULT : len;
713}
David Herrmann06a16292015-10-24 16:20:18 -0700714
715static int bits_from_user(unsigned long *bits, unsigned int maxbit,
716 unsigned int maxlen, const void __user *p, int compat)
717{
718 size_t chunk_size = compat ? sizeof(compat_long_t) : sizeof(long);
719 int len;
720
721 if (maxlen % chunk_size)
722 return -EINVAL;
723
724 len = compat ? BITS_TO_LONGS_COMPAT(maxbit) : BITS_TO_LONGS(maxbit);
725 len *= chunk_size;
726 if (len > maxlen)
727 len = maxlen;
728
729 return copy_from_user(bits, p, len) ? -EFAULT : len;
730}
731
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500732#endif /* __BIG_ENDIAN */
733
734#else
735
736static int bits_to_user(unsigned long *bits, unsigned int maxbit,
737 unsigned int maxlen, void __user *p, int compat)
738{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700739 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500740
741 if (len > maxlen)
742 len = maxlen;
743
744 return copy_to_user(p, bits, len) ? -EFAULT : len;
745}
746
David Herrmann06a16292015-10-24 16:20:18 -0700747static int bits_from_user(unsigned long *bits, unsigned int maxbit,
748 unsigned int maxlen, const void __user *p, int compat)
749{
750 int len;
751
752 if (maxlen % sizeof(long))
753 return -EINVAL;
754
755 len = BITS_TO_LONGS(maxbit) * sizeof(long);
756 if (len > maxlen)
757 len = maxlen;
758
759 return copy_from_user(bits, p, len) ? -EFAULT : len;
760}
761
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500762#endif /* CONFIG_COMPAT */
763
764static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
765{
766 int len;
767
768 if (!str)
769 return -ENOENT;
770
771 len = strlen(str) + 1;
772 if (len > maxlen)
773 len = maxlen;
774
775 return copy_to_user(p, str, len) ? -EFAULT : len;
776}
777
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700778static int handle_eviocgbit(struct input_dev *dev,
779 unsigned int type, unsigned int size,
780 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400781{
782 unsigned long *bits;
783 int len;
784
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700785 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400786
787 case 0: bits = dev->evbit; len = EV_MAX; break;
788 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
789 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
790 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
791 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
792 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
793 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
794 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
795 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
796 default: return -EINVAL;
797 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400798
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700799 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400800}
Linus Torvalds5402a732008-08-05 11:42:42 -0400801
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800802static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
803{
804 struct input_keymap_entry ke = {
805 .len = sizeof(unsigned int),
806 .flags = 0,
807 };
808 int __user *ip = (int __user *)p;
809 int error;
810
811 /* legacy case */
812 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
813 return -EFAULT;
814
815 error = input_get_keycode(dev, &ke);
816 if (error)
817 return error;
818
819 if (put_user(ke.keycode, ip + 1))
820 return -EFAULT;
821
822 return 0;
823}
824
825static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700826{
827 struct input_keymap_entry ke;
828 int error;
829
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800830 if (copy_from_user(&ke, p, sizeof(ke)))
831 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700832
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800833 error = input_get_keycode(dev, &ke);
834 if (error)
835 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700836
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800837 if (copy_to_user(p, &ke, sizeof(ke)))
838 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700839
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700840 return 0;
841}
842
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800843static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
844{
845 struct input_keymap_entry ke = {
846 .len = sizeof(unsigned int),
847 .flags = 0,
848 };
849 int __user *ip = (int __user *)p;
850
851 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
852 return -EFAULT;
853
854 if (get_user(ke.keycode, ip + 1))
855 return -EFAULT;
856
857 return input_set_keycode(dev, &ke);
858}
859
860static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700861{
862 struct input_keymap_entry ke;
863
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800864 if (copy_from_user(&ke, p, sizeof(ke)))
865 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700866
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800867 if (ke.len > sizeof(ke.scancode))
868 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700869
870 return input_set_keycode(dev, &ke);
871}
872
David Herrmann48318022013-04-07 21:13:19 -0700873/*
874 * If we transfer state to the user, we should flush all pending events
875 * of the same type from the client's queue. Otherwise, they might end up
876 * with duplicate events, which can screw up client's state tracking.
877 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
878 * event so user-space will notice missing events.
879 *
880 * LOCKING:
881 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
882 * need the even_lock only to guarantee consistent state. We can safely release
883 * it while flushing the queue. This allows input-core to handle filters while
884 * we flush the queue.
885 */
886static int evdev_handle_get_val(struct evdev_client *client,
887 struct input_dev *dev, unsigned int type,
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700888 unsigned long *bits, unsigned int maxbit,
889 unsigned int maxlen, void __user *p,
890 int compat)
David Herrmann48318022013-04-07 21:13:19 -0700891{
892 int ret;
893 unsigned long *mem;
894
Andy Shevchenko60780912018-08-01 15:47:47 -0700895 mem = bitmap_alloc(maxbit, GFP_KERNEL);
David Herrmann48318022013-04-07 21:13:19 -0700896 if (!mem)
897 return -ENOMEM;
898
899 spin_lock_irq(&dev->event_lock);
900 spin_lock(&client->buffer_lock);
901
Andy Shevchenko60780912018-08-01 15:47:47 -0700902 bitmap_copy(mem, bits, maxbit);
David Herrmann48318022013-04-07 21:13:19 -0700903
904 spin_unlock(&dev->event_lock);
905
906 __evdev_flush_queue(client, type);
907
908 spin_unlock_irq(&client->buffer_lock);
909
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700910 ret = bits_to_user(mem, maxbit, maxlen, p, compat);
David Herrmann48318022013-04-07 21:13:19 -0700911 if (ret < 0)
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800912 evdev_queue_syn_dropped(client);
David Herrmann48318022013-04-07 21:13:19 -0700913
Andy Shevchenko60780912018-08-01 15:47:47 -0700914 bitmap_free(mem);
David Herrmann48318022013-04-07 21:13:19 -0700915
916 return ret;
917}
918
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100919static int evdev_handle_mt_request(struct input_dev *dev,
920 unsigned int size,
921 int __user *ip)
922{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200923 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100924 unsigned int code;
925 int max_slots;
926 int i;
927
928 if (get_user(code, &ip[0]))
929 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200930 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100931 return -EINVAL;
932
933 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200934 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
935 int value = input_mt_get_value(&mt->slots[i], code);
936 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100937 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200938 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100939
940 return 0;
941}
942
David Herrmannc7dc6572013-09-07 12:23:05 -0700943static int evdev_revoke(struct evdev *evdev, struct evdev_client *client,
944 struct file *file)
945{
946 client->revoked = true;
947 evdev_ungrab(evdev, client);
948 input_flush_device(&evdev->handle, file);
Kenny Levinsen4ba8b8a2020-10-05 11:15:55 -0700949 wake_up_interruptible_poll(&client->wait, EPOLLHUP | EPOLLERR);
David Herrmannc7dc6572013-09-07 12:23:05 -0700950
951 return 0;
952}
953
David Herrmann06a16292015-10-24 16:20:18 -0700954/* must be called with evdev-mutex held */
955static int evdev_set_mask(struct evdev_client *client,
956 unsigned int type,
957 const void __user *codes,
958 u32 codes_size,
959 int compat)
960{
961 unsigned long flags, *mask, *oldmask;
962 size_t cnt;
963 int error;
964
965 /* we allow unknown types and 'codes_size > size' for forward-compat */
966 cnt = evdev_get_mask_cnt(type);
967 if (!cnt)
968 return 0;
969
Andy Shevchenko60780912018-08-01 15:47:47 -0700970 mask = bitmap_zalloc(cnt, GFP_KERNEL);
David Herrmann06a16292015-10-24 16:20:18 -0700971 if (!mask)
972 return -ENOMEM;
973
974 error = bits_from_user(mask, cnt - 1, codes_size, codes, compat);
975 if (error < 0) {
Andy Shevchenko60780912018-08-01 15:47:47 -0700976 bitmap_free(mask);
David Herrmann06a16292015-10-24 16:20:18 -0700977 return error;
978 }
979
980 spin_lock_irqsave(&client->buffer_lock, flags);
981 oldmask = client->evmasks[type];
982 client->evmasks[type] = mask;
983 spin_unlock_irqrestore(&client->buffer_lock, flags);
984
Andy Shevchenko60780912018-08-01 15:47:47 -0700985 bitmap_free(oldmask);
David Herrmann06a16292015-10-24 16:20:18 -0700986
987 return 0;
988}
989
990/* must be called with evdev-mutex held */
991static int evdev_get_mask(struct evdev_client *client,
992 unsigned int type,
993 void __user *codes,
994 u32 codes_size,
995 int compat)
996{
997 unsigned long *mask;
998 size_t cnt, size, xfer_size;
999 int i;
1000 int error;
1001
1002 /* we allow unknown types and 'codes_size > size' for forward-compat */
1003 cnt = evdev_get_mask_cnt(type);
1004 size = sizeof(unsigned long) * BITS_TO_LONGS(cnt);
1005 xfer_size = min_t(size_t, codes_size, size);
1006
1007 if (cnt > 0) {
1008 mask = client->evmasks[type];
1009 if (mask) {
1010 error = bits_to_user(mask, cnt - 1,
1011 xfer_size, codes, compat);
1012 if (error < 0)
1013 return error;
1014 } else {
1015 /* fake mask with all bits set */
1016 for (i = 0; i < xfer_size; i++)
1017 if (put_user(0xffU, (u8 __user *)codes + i))
1018 return -EFAULT;
1019 }
1020 }
1021
1022 if (xfer_size < codes_size)
1023 if (clear_user(codes + xfer_size, codes_size - xfer_size))
1024 return -EFAULT;
1025
1026 return 0;
1027}
1028
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001029static long evdev_do_ioctl(struct file *file, unsigned int cmd,
1030 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001032 struct evdev_client *client = file->private_data;
1033 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct input_dev *dev = evdev->handle.dev;
1035 struct input_absinfo abs;
David Herrmann06a16292015-10-24 16:20:18 -07001036 struct input_mask mask;
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001037 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001038 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -08001039 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001040 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001041 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001043 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 switch (cmd) {
1045
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001046 case EVIOCGVERSION:
1047 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001049 case EVIOCGID:
1050 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
1051 return -EFAULT;
1052 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -04001053
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001054 case EVIOCGREP:
1055 if (!test_bit(EV_REP, dev->evbit))
1056 return -ENOSYS;
1057 if (put_user(dev->rep[REP_DELAY], ip))
1058 return -EFAULT;
1059 if (put_user(dev->rep[REP_PERIOD], ip + 1))
1060 return -EFAULT;
1061 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -04001062
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001063 case EVIOCSREP:
1064 if (!test_bit(EV_REP, dev->evbit))
1065 return -ENOSYS;
1066 if (get_user(u, ip))
1067 return -EFAULT;
1068 if (get_user(v, ip + 1))
1069 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -04001070
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001071 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
1072 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001073
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001074 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001076 case EVIOCRMFF:
1077 return input_ff_erase(dev, (int)(unsigned long) p, file);
1078
1079 case EVIOCGEFFECTS:
1080 i = test_bit(EV_FF, dev->evbit) ?
1081 dev->ff->max_effects : 0;
1082 if (put_user(i, ip))
1083 return -EFAULT;
1084 return 0;
1085
1086 case EVIOCGRAB:
1087 if (p)
1088 return evdev_grab(evdev, client);
1089 else
1090 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -08001091
David Herrmannc7dc6572013-09-07 12:23:05 -07001092 case EVIOCREVOKE:
1093 if (p)
1094 return -EINVAL;
1095 else
1096 return evdev_revoke(evdev, client, file);
1097
David Herrmann06a16292015-10-24 16:20:18 -07001098 case EVIOCGMASK: {
1099 void __user *codes_ptr;
1100
1101 if (copy_from_user(&mask, p, sizeof(mask)))
1102 return -EFAULT;
1103
1104 codes_ptr = (void __user *)(unsigned long)mask.codes_ptr;
1105 return evdev_get_mask(client,
1106 mask.type, codes_ptr, mask.codes_size,
1107 compat_mode);
1108 }
1109
1110 case EVIOCSMASK: {
1111 const void __user *codes_ptr;
1112
1113 if (copy_from_user(&mask, p, sizeof(mask)))
1114 return -EFAULT;
1115
1116 codes_ptr = (const void __user *)(unsigned long)mask.codes_ptr;
1117 return evdev_set_mask(client,
1118 mask.type, codes_ptr, mask.codes_size,
1119 compat_mode);
1120 }
1121
John Stultza80b83b2012-02-03 00:19:07 -08001122 case EVIOCSCLOCKID:
1123 if (copy_from_user(&i, p, sizeof(unsigned int)))
1124 return -EFAULT;
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -08001125
1126 return evdev_set_clk_type(client, i);
John Stultza80b83b2012-02-03 00:19:07 -08001127
Dmitry Torokhovab4e0192010-12-14 23:53:21 -08001128 case EVIOCGKEYCODE:
1129 return evdev_handle_get_keycode(dev, p);
1130
1131 case EVIOCSKEYCODE:
1132 return evdev_handle_set_keycode(dev, p);
1133
1134 case EVIOCGKEYCODE_V2:
1135 return evdev_handle_get_keycode_v2(dev, p);
1136
1137 case EVIOCSKEYCODE_V2:
1138 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001139 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001140
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001141 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001142
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001143 /* Now check variable-length commands */
1144#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001145 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001146
Henrik Rydberg85b77202010-12-18 20:51:13 +01001147 case EVIOCGPROP(0):
1148 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
1149 size, p, compat_mode);
1150
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +01001151 case EVIOCGMTSLOTS(0):
1152 return evdev_handle_mt_request(dev, size, ip);
1153
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001154 case EVIOCGKEY(0):
David Herrmann48318022013-04-07 21:13:19 -07001155 return evdev_handle_get_val(client, dev, EV_KEY, dev->key,
1156 KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001157
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001158 case EVIOCGLED(0):
David Herrmann48318022013-04-07 21:13:19 -07001159 return evdev_handle_get_val(client, dev, EV_LED, dev->led,
1160 LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001161
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001162 case EVIOCGSND(0):
David Herrmann48318022013-04-07 21:13:19 -07001163 return evdev_handle_get_val(client, dev, EV_SND, dev->snd,
1164 SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001165
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001166 case EVIOCGSW(0):
David Herrmann48318022013-04-07 21:13:19 -07001167 return evdev_handle_get_val(client, dev, EV_SW, dev->sw,
1168 SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001169
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001170 case EVIOCGNAME(0):
1171 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001172
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001173 case EVIOCGPHYS(0):
1174 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001175
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001176 case EVIOCGUNIQ(0):
1177 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001178
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001179 case EVIOC_MASK_SIZE(EVIOCSFF):
1180 if (input_ff_effect_from_user(p, size, &effect))
1181 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001182
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001183 error = input_ff_upload(dev, &effect, file);
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -07001184 if (error)
1185 return error;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001186
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001187 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
1188 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001189
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -07001190 return 0;
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001191 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001192
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001193 /* Multi-number variable-length handlers */
1194 if (_IOC_TYPE(cmd) != 'E')
1195 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001197 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001199 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
1200 return handle_eviocgbit(dev,
1201 _IOC_NR(cmd) & EV_MAX, size,
1202 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001204 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001205
Daniel Mack0a74a1d2010-10-18 08:43:30 -07001206 if (!dev->absinfo)
1207 return -EINVAL;
1208
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001209 t = _IOC_NR(cmd) & ABS_MAX;
1210 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001211
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001212 if (copy_to_user(p, &abs, min_t(size_t,
1213 size, sizeof(struct input_absinfo))))
1214 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001215
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001216 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001219
Daniel Mackf9ce6eb52010-10-18 08:43:50 -07001220 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001221
1222 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
1223
Daniel Mack0a74a1d2010-10-18 08:43:30 -07001224 if (!dev->absinfo)
1225 return -EINVAL;
1226
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001227 t = _IOC_NR(cmd) & ABS_MAX;
1228
1229 if (copy_from_user(&abs, p, min_t(size_t,
1230 size, sizeof(struct input_absinfo))))
1231 return -EFAULT;
1232
1233 if (size < sizeof(struct input_absinfo))
1234 abs.resolution = 0;
1235
1236 /* We can't change number of reserved MT slots */
1237 if (t == ABS_MT_SLOT)
1238 return -EINVAL;
1239
1240 /*
1241 * Take event lock to ensure that we are not
1242 * changing device parameters in the middle
1243 * of event.
1244 */
1245 spin_lock_irq(&dev->event_lock);
1246 dev->absinfo[t] = abs;
1247 spin_unlock_irq(&dev->event_lock);
1248
1249 return 0;
1250 }
1251 }
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return -EINVAL;
1254}
1255
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001256static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
1257 void __user *p, int compat_mode)
1258{
1259 struct evdev_client *client = file->private_data;
1260 struct evdev *evdev = client->evdev;
1261 int retval;
1262
1263 retval = mutex_lock_interruptible(&evdev->mutex);
1264 if (retval)
1265 return retval;
1266
David Herrmannc7dc6572013-09-07 12:23:05 -07001267 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001268 retval = -ENODEV;
1269 goto out;
1270 }
1271
1272 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
1273
1274 out:
1275 mutex_unlock(&evdev->mutex);
1276 return retval;
1277}
1278
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001279static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1280{
1281 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
1282}
1283
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001284#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001285static long evdev_ioctl_compat(struct file *file,
1286 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001287{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001288 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001289}
1290#endif
1291
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001292static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001293 .owner = THIS_MODULE,
1294 .read = evdev_read,
1295 .write = evdev_write,
1296 .poll = evdev_poll,
1297 .open = evdev_open,
1298 .release = evdev_release,
1299 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001300#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001301 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001302#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001303 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001304 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305};
1306
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001307/*
1308 * Mark device non-existent. This disables writes, ioctls and
1309 * prevents new users from opening the device. Already posted
1310 * blocking reads will stay, however new ones will fail.
1311 */
1312static void evdev_mark_dead(struct evdev *evdev)
1313{
1314 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001315 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001316 mutex_unlock(&evdev->mutex);
1317}
1318
1319static void evdev_cleanup(struct evdev *evdev)
1320{
1321 struct input_handle *handle = &evdev->handle;
1322
1323 evdev_mark_dead(evdev);
1324 evdev_hangup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001325
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001326 /* evdev is marked dead so no one else accesses evdev->open */
1327 if (evdev->open) {
1328 input_flush_device(handle, NULL);
1329 input_close_device(handle);
1330 }
1331}
1332
1333/*
1334 * Create new evdev device. Note that input core serializes calls
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001335 * to connect and disconnect.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001336 */
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001337static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
1338 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
1340 struct evdev *evdev;
1341 int minor;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001342 int dev_no;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001343 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001345 minor = input_get_new_minor(EVDEV_MINOR_BASE, EVDEV_MINORS, true);
1346 if (minor < 0) {
1347 error = minor;
1348 pr_err("failed to reserve new minor: %d\n", error);
1349 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
1351
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001352 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001353 if (!evdev) {
1354 error = -ENOMEM;
1355 goto err_free_minor;
1356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001358 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001359 spin_lock_init(&evdev->client_lock);
1360 mutex_init(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001361 evdev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001362
1363 dev_no = minor;
1364 /* Normalize device number if it falls into legacy range */
1365 if (dev_no < EVDEV_MINOR_BASE + EVDEV_MINORS)
1366 dev_no -= EVDEV_MINOR_BASE;
1367 dev_set_name(&evdev->dev, "event%d", dev_no);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001368
Dmitry Torokhova7097ff2008-04-01 00:22:53 -04001369 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -07001370 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 evdev->handle.handler = handler;
1372 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001373
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001374 evdev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001375 evdev->dev.class = &input_class;
1376 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001377 evdev->dev.release = evdev_free;
1378 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001380 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001381 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001382 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001384 cdev_init(&evdev->cdev, &evdev_fops);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001385
Logan Gunthorpe358a89c2017-03-17 12:48:11 -06001386 error = cdev_device_add(&evdev->cdev, &evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001387 if (error)
1388 goto err_cleanup_evdev;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001389
1390 return 0;
1391
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001392 err_cleanup_evdev:
1393 evdev_cleanup(evdev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001394 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001395 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001396 put_device(&evdev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001397 err_free_minor:
1398 input_free_minor(minor);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001399 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
1402static void evdev_disconnect(struct input_handle *handle)
1403{
1404 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Logan Gunthorpe358a89c2017-03-17 12:48:11 -06001406 cdev_device_del(&evdev->cdev, &evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001407 evdev_cleanup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001408 input_free_minor(MINOR(evdev->dev.devt));
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001409 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001410 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001413static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 { .driver_info = 1 }, /* Matches all devices */
1415 { }, /* Terminating zero entry */
1416};
1417
1418MODULE_DEVICE_TABLE(input, evdev_ids);
1419
1420static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001421 .event = evdev_event,
Henrik Rydberga274ac12012-08-29 20:48:02 +02001422 .events = evdev_events,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001423 .connect = evdev_connect,
1424 .disconnect = evdev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001425 .legacy_minors = true,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001426 .minor = EVDEV_MINOR_BASE,
1427 .name = "evdev",
1428 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429};
1430
1431static int __init evdev_init(void)
1432{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001433 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
1436static void __exit evdev_exit(void)
1437{
1438 input_unregister_handler(&evdev_handler);
1439}
1440
1441module_init(evdev_init);
1442module_exit(evdev_exit);
1443
1444MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1445MODULE_DESCRIPTION("Input driver event char devices");
1446MODULE_LICENSE("GPL");