blob: f040d8881ff2a2db34d56a816026e69524239f3b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Event char devices, giving access to raw input device events.
3 *
4 * Copyright (c) 1999-2002 Vojtech Pavlik
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 */
10
Joe Perchesda0c4902010-11-29 23:33:07 -080011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#define EVDEV_MINOR_BASE 64
14#define EVDEV_MINORS 32
Henrik Rydberg63a64042010-06-10 12:05:24 -070015#define EVDEV_MIN_BUFFER_SIZE 64U
16#define EVDEV_BUF_PACKETS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <linux/poll.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040019#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
Daniel Stone92eb77d2013-10-31 00:25:34 -070021#include <linux/vmalloc.h>
22#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
24#include <linux/init.h>
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +010025#include <linux/input/mt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/device.h>
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070028#include <linux/cdev.h>
Philip Langdale2d56f3a2008-10-16 22:31:42 -040029#include "input-compat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -080031enum evdev_clock_type {
32 EV_CLK_REAL = 0,
33 EV_CLK_MONO,
34 EV_CLK_BOOT,
35 EV_CLK_MAX
36};
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038struct evdev {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 int open;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 struct input_handle handle;
41 wait_queue_head_t wait;
Arnd Bergmann2be85272010-03-04 15:50:28 +010042 struct evdev_client __rcu *grab;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040043 struct list_head client_list;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040044 spinlock_t client_lock; /* protects client_list */
45 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040046 struct device dev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070047 struct cdev cdev;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -070048 bool exist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040051struct evdev_client {
Jeff Brown9fb0f142011-04-12 23:29:38 -070052 unsigned int head;
53 unsigned int tail;
Jeff Browncdda9112011-04-26 22:16:11 -070054 unsigned int packet_head; /* [future] position of the first element of next packet */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040055 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 struct fasync_struct *fasync;
57 struct evdev *evdev;
58 struct list_head node;
Aniroop Mathurbf5f18d2015-10-30 04:15:37 -070059 unsigned int clk_type;
David Herrmannc7dc6572013-09-07 12:23:05 -070060 bool revoked;
David Herrmann06a16292015-10-24 16:20:18 -070061 unsigned long *evmasks[EV_CNT];
Jeff Brown9fb0f142011-04-12 23:29:38 -070062 unsigned int bufsize;
Henrik Rydbergb58f7082010-06-23 09:17:56 -070063 struct input_event buffer[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
David Herrmann06a16292015-10-24 16:20:18 -070066static size_t evdev_get_mask_cnt(unsigned int type)
67{
68 static const size_t counts[EV_CNT] = {
69 /* EV_SYN==0 is EV_CNT, _not_ SYN_CNT, see EVIOCGBIT */
70 [EV_SYN] = EV_CNT,
71 [EV_KEY] = KEY_CNT,
72 [EV_REL] = REL_CNT,
73 [EV_ABS] = ABS_CNT,
74 [EV_MSC] = MSC_CNT,
75 [EV_SW] = SW_CNT,
76 [EV_LED] = LED_CNT,
77 [EV_SND] = SND_CNT,
78 [EV_FF] = FF_CNT,
79 };
80
81 return (type < EV_CNT) ? counts[type] : 0;
82}
83
84/* requires the buffer lock to be held */
85static bool __evdev_is_filtered(struct evdev_client *client,
86 unsigned int type,
87 unsigned int code)
88{
89 unsigned long *mask;
90 size_t cnt;
91
92 /* EV_SYN and unknown codes are never filtered */
93 if (type == EV_SYN || type >= EV_CNT)
94 return false;
95
96 /* first test whether the type is filtered */
97 mask = client->evmasks[0];
98 if (mask && !test_bit(type, mask))
99 return true;
100
101 /* unknown values are never filtered */
102 cnt = evdev_get_mask_cnt(type);
103 if (!cnt || code >= cnt)
104 return false;
105
106 mask = client->evmasks[type];
107 return mask && !test_bit(code, mask);
108}
109
David Herrmann48318022013-04-07 21:13:19 -0700110/* flush queued events of type @type, caller must hold client->buffer_lock */
111static void __evdev_flush_queue(struct evdev_client *client, unsigned int type)
112{
113 unsigned int i, head, num;
114 unsigned int mask = client->bufsize - 1;
115 bool is_report;
116 struct input_event *ev;
117
118 BUG_ON(type == EV_SYN);
119
120 head = client->tail;
121 client->packet_head = client->tail;
122
123 /* init to 1 so a leading SYN_REPORT will not be dropped */
124 num = 1;
125
126 for (i = client->tail; i != client->head; i = (i + 1) & mask) {
127 ev = &client->buffer[i];
128 is_report = ev->type == EV_SYN && ev->code == SYN_REPORT;
129
130 if (ev->type == type) {
131 /* drop matched entry */
132 continue;
133 } else if (is_report && !num) {
134 /* drop empty SYN_REPORT groups */
135 continue;
136 } else if (head != i) {
137 /* move entry to fill the gap */
Deepa Dinamani152194f2018-01-07 17:44:42 -0800138 client->buffer[head] = *ev;
David Herrmann48318022013-04-07 21:13:19 -0700139 }
140
141 num++;
142 head = (head + 1) & mask;
143
144 if (is_report) {
145 num = 0;
146 client->packet_head = head;
147 }
148 }
149
150 client->head = head;
151}
152
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800153static void __evdev_queue_syn_dropped(struct evdev_client *client)
David Herrmann48318022013-04-07 21:13:19 -0700154{
David Herrmann48318022013-04-07 21:13:19 -0700155 struct input_event ev;
156 ktime_t time;
Deepa Dinamani152194f2018-01-07 17:44:42 -0800157 struct timespec64 ts;
David Herrmann48318022013-04-07 21:13:19 -0700158
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800159 time = client->clk_type == EV_CLK_REAL ?
160 ktime_get_real() :
161 client->clk_type == EV_CLK_MONO ?
162 ktime_get() :
163 ktime_get_boottime();
David Herrmann48318022013-04-07 21:13:19 -0700164
Deepa Dinamani152194f2018-01-07 17:44:42 -0800165 ts = ktime_to_timespec64(time);
166 ev.input_event_sec = ts.tv_sec;
167 ev.input_event_usec = ts.tv_nsec / NSEC_PER_USEC;
David Herrmann48318022013-04-07 21:13:19 -0700168 ev.type = EV_SYN;
169 ev.code = SYN_DROPPED;
170 ev.value = 0;
171
David Herrmann48318022013-04-07 21:13:19 -0700172 client->buffer[client->head++] = ev;
173 client->head &= client->bufsize - 1;
174
175 if (unlikely(client->head == client->tail)) {
176 /* drop queue but keep our SYN_DROPPED event */
177 client->tail = (client->head - 1) & (client->bufsize - 1);
178 client->packet_head = client->tail;
179 }
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800180}
David Herrmann48318022013-04-07 21:13:19 -0700181
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800182static void evdev_queue_syn_dropped(struct evdev_client *client)
183{
184 unsigned long flags;
185
186 spin_lock_irqsave(&client->buffer_lock, flags);
187 __evdev_queue_syn_dropped(client);
David Herrmann48318022013-04-07 21:13:19 -0700188 spin_unlock_irqrestore(&client->buffer_lock, flags);
189}
190
Anshul Garg0c3e9942015-01-15 09:06:50 -0800191static int evdev_set_clk_type(struct evdev_client *client, unsigned int clkid)
192{
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800193 unsigned long flags;
Aniroop Mathurbf5f18d2015-10-30 04:15:37 -0700194 unsigned int clk_type;
Anshul Garg0c3e9942015-01-15 09:06:50 -0800195
196 switch (clkid) {
197
198 case CLOCK_REALTIME:
Aniroop Mathurbf5f18d2015-10-30 04:15:37 -0700199 clk_type = EV_CLK_REAL;
Anshul Garg0c3e9942015-01-15 09:06:50 -0800200 break;
201 case CLOCK_MONOTONIC:
Aniroop Mathurbf5f18d2015-10-30 04:15:37 -0700202 clk_type = EV_CLK_MONO;
Anshul Garg0c3e9942015-01-15 09:06:50 -0800203 break;
204 case CLOCK_BOOTTIME:
Aniroop Mathurbf5f18d2015-10-30 04:15:37 -0700205 clk_type = EV_CLK_BOOT;
Anshul Garg0c3e9942015-01-15 09:06:50 -0800206 break;
207 default:
208 return -EINVAL;
209 }
210
Aniroop Mathurbf5f18d2015-10-30 04:15:37 -0700211 if (client->clk_type != clk_type) {
212 client->clk_type = clk_type;
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800213
Aniroop Mathurbf5f18d2015-10-30 04:15:37 -0700214 /*
215 * Flush pending events and queue SYN_DROPPED event,
216 * but only if the queue is not empty.
217 */
218 spin_lock_irqsave(&client->buffer_lock, flags);
219
220 if (client->head != client->tail) {
221 client->packet_head = client->head = client->tail;
222 __evdev_queue_syn_dropped(client);
223 }
224
225 spin_unlock_irqrestore(&client->buffer_lock, flags);
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800226 }
227
Anshul Garg0c3e9942015-01-15 09:06:50 -0800228 return 0;
229}
230
Henrik Rydberga274ac12012-08-29 20:48:02 +0200231static void __pass_event(struct evdev_client *client,
232 const struct input_event *event)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400233{
Jeff Brown9fb0f142011-04-12 23:29:38 -0700234 client->buffer[client->head++] = *event;
235 client->head &= client->bufsize - 1;
236
237 if (unlikely(client->head == client->tail)) {
238 /*
239 * This effectively "drops" all unconsumed events, leaving
240 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
241 */
242 client->tail = (client->head - 2) & (client->bufsize - 1);
243
Deepa Dinamani152194f2018-01-07 17:44:42 -0800244 client->buffer[client->tail].input_event_sec =
245 event->input_event_sec;
246 client->buffer[client->tail].input_event_usec =
247 event->input_event_usec;
Jeff Brown9fb0f142011-04-12 23:29:38 -0700248 client->buffer[client->tail].type = EV_SYN;
249 client->buffer[client->tail].code = SYN_DROPPED;
250 client->buffer[client->tail].value = 0;
Jeff Browncdda9112011-04-26 22:16:11 -0700251
252 client->packet_head = client->tail;
253 }
254
255 if (event->type == EV_SYN && event->code == SYN_REPORT) {
256 client->packet_head = client->head;
257 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Jeff Brown9fb0f142011-04-12 23:29:38 -0700258 }
Henrik Rydberga274ac12012-08-29 20:48:02 +0200259}
260
261static void evdev_pass_values(struct evdev_client *client,
262 const struct input_value *vals, unsigned int count,
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800263 ktime_t *ev_time)
Henrik Rydberga274ac12012-08-29 20:48:02 +0200264{
265 struct evdev *evdev = client->evdev;
266 const struct input_value *v;
267 struct input_event event;
Deepa Dinamani152194f2018-01-07 17:44:42 -0800268 struct timespec64 ts;
Henrik Rydberga274ac12012-08-29 20:48:02 +0200269 bool wakeup = false;
270
David Herrmannc7dc6572013-09-07 12:23:05 -0700271 if (client->revoked)
272 return;
273
Deepa Dinamani152194f2018-01-07 17:44:42 -0800274 ts = ktime_to_timespec64(ev_time[client->clk_type]);
275 event.input_event_sec = ts.tv_sec;
276 event.input_event_usec = ts.tv_nsec / NSEC_PER_USEC;
Henrik Rydberga274ac12012-08-29 20:48:02 +0200277
278 /* Interrupts are disabled, just acquire the lock. */
279 spin_lock(&client->buffer_lock);
280
281 for (v = vals; v != vals + count; v++) {
David Herrmann06a16292015-10-24 16:20:18 -0700282 if (__evdev_is_filtered(client, v->type, v->code))
283 continue;
284
285 if (v->type == EV_SYN && v->code == SYN_REPORT) {
286 /* drop empty SYN_REPORT */
287 if (client->packet_head == client->head)
288 continue;
289
290 wakeup = true;
291 }
292
Henrik Rydberga274ac12012-08-29 20:48:02 +0200293 event.type = v->type;
294 event.code = v->code;
295 event.value = v->value;
296 __pass_event(client, &event);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200297 }
Jeff Brown9fb0f142011-04-12 23:29:38 -0700298
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400299 spin_unlock(&client->buffer_lock);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200300
301 if (wakeup)
302 wake_up_interruptible(&evdev->wait);
303}
304
305/*
306 * Pass incoming events to all connected clients.
307 */
308static void evdev_events(struct input_handle *handle,
309 const struct input_value *vals, unsigned int count)
310{
311 struct evdev *evdev = handle->private;
312 struct evdev_client *client;
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800313 ktime_t ev_time[EV_CLK_MAX];
Henrik Rydberga274ac12012-08-29 20:48:02 +0200314
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800315 ev_time[EV_CLK_MONO] = ktime_get();
316 ev_time[EV_CLK_REAL] = ktime_mono_to_real(ev_time[EV_CLK_MONO]);
317 ev_time[EV_CLK_BOOT] = ktime_mono_to_any(ev_time[EV_CLK_MONO],
318 TK_OFFS_BOOT);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200319
320 rcu_read_lock();
321
322 client = rcu_dereference(evdev->grab);
323
324 if (client)
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800325 evdev_pass_values(client, vals, count, ev_time);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200326 else
327 list_for_each_entry_rcu(client, &evdev->client_list, node)
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -0800328 evdev_pass_values(client, vals, count, ev_time);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200329
330 rcu_read_unlock();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400331}
332
333/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400334 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400335 */
336static void evdev_event(struct input_handle *handle,
337 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Henrik Rydberga274ac12012-08-29 20:48:02 +0200339 struct input_value vals[] = { { type, code, value } };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Henrik Rydberga274ac12012-08-29 20:48:02 +0200341 evdev_events(handle, vals, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344static int evdev_fasync(int fd, struct file *file, int on)
345{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400346 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400347
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700348 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400351static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400353 struct evdev_client *client = file->private_data;
354 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400355
Takashi Iwaieb38f3a2015-09-03 22:20:00 -0700356 mutex_lock(&evdev->mutex);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400357
Takashi Iwaieb38f3a2015-09-03 22:20:00 -0700358 if (evdev->exist && !client->revoked)
359 input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400360
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400361 mutex_unlock(&evdev->mutex);
Takashi Iwaieb38f3a2015-09-03 22:20:00 -0700362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400365static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400367 struct evdev *evdev = container_of(dev, struct evdev, dev);
368
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400369 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 kfree(evdev);
371}
372
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400373/*
374 * Grabs an event device (along with underlying input device).
375 * This function is called with evdev->mutex taken.
376 */
377static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
378{
379 int error;
380
381 if (evdev->grab)
382 return -EBUSY;
383
384 error = input_grab_device(&evdev->handle);
385 if (error)
386 return error;
387
388 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400389
390 return 0;
391}
392
393static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
394{
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700395 struct evdev_client *grab = rcu_dereference_protected(evdev->grab,
396 lockdep_is_held(&evdev->mutex));
397
398 if (grab != client)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400399 return -EINVAL;
400
401 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400402 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400403 input_release_device(&evdev->handle);
404
405 return 0;
406}
407
408static void evdev_attach_client(struct evdev *evdev,
409 struct evdev_client *client)
410{
411 spin_lock(&evdev->client_lock);
412 list_add_tail_rcu(&client->node, &evdev->client_list);
413 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400414}
415
416static void evdev_detach_client(struct evdev *evdev,
417 struct evdev_client *client)
418{
419 spin_lock(&evdev->client_lock);
420 list_del_rcu(&client->node);
421 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400422 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400423}
424
425static int evdev_open_device(struct evdev *evdev)
426{
427 int retval;
428
429 retval = mutex_lock_interruptible(&evdev->mutex);
430 if (retval)
431 return retval;
432
433 if (!evdev->exist)
434 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400435 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400436 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400437 if (retval)
438 evdev->open--;
439 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400440
441 mutex_unlock(&evdev->mutex);
442 return retval;
443}
444
445static void evdev_close_device(struct evdev *evdev)
446{
447 mutex_lock(&evdev->mutex);
448
449 if (evdev->exist && !--evdev->open)
450 input_close_device(&evdev->handle);
451
452 mutex_unlock(&evdev->mutex);
453}
454
455/*
456 * Wake up users waiting for IO so they can disconnect from
457 * dead device.
458 */
459static void evdev_hangup(struct evdev *evdev)
460{
461 struct evdev_client *client;
462
463 spin_lock(&evdev->client_lock);
464 list_for_each_entry(client, &evdev->client_list, node)
465 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
466 spin_unlock(&evdev->client_lock);
467
468 wake_up_interruptible(&evdev->wait);
469}
470
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400471static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400473 struct evdev_client *client = file->private_data;
474 struct evdev *evdev = client->evdev;
David Herrmann06a16292015-10-24 16:20:18 -0700475 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400477 mutex_lock(&evdev->mutex);
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700478 evdev_ungrab(evdev, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400479 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400481 evdev_detach_client(evdev, client);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700482
David Herrmann06a16292015-10-24 16:20:18 -0700483 for (i = 0; i < EV_CNT; ++i)
Andy Shevchenko60780912018-08-01 15:47:47 -0700484 bitmap_free(client->evmasks[i]);
David Herrmann06a16292015-10-24 16:20:18 -0700485
Pekka Enberg67367fd2015-05-15 13:45:40 -0700486 kvfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400488 evdev_close_device(evdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return 0;
491}
492
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700493static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
494{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700495 unsigned int n_events =
496 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
497 EVDEV_MIN_BUFFER_SIZE);
498
499 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700500}
501
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400502static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700504 struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev);
505 unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev);
Daniel Stone92eb77d2013-10-31 00:25:34 -0700506 unsigned int size = sizeof(struct evdev_client) +
507 bufsize * sizeof(struct input_event);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400508 struct evdev_client *client;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400509 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Daniel Stone92eb77d2013-10-31 00:25:34 -0700511 client = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
512 if (!client)
513 client = vzalloc(size);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700514 if (!client)
515 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700517 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400518 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400519 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400520 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400522 error = evdev_open_device(evdev);
523 if (error)
524 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400526 file->private_data = client;
Kirill Smelkovc5bf68f2019-03-26 23:51:19 +0300527 stream_open(inode, file);
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400530
531 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400532 evdev_detach_client(evdev, client);
Andrew Morton92788ac2014-12-02 15:59:31 -0800533 kvfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400534 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400537static ssize_t evdev_write(struct file *file, const char __user *buffer,
538 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400540 struct evdev_client *client = file->private_data;
541 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800543 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700545 if (count != 0 && count < input_event_size())
Peter Korsgaard439581e2011-02-25 09:30:46 -0800546 return -EINVAL;
547
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400548 retval = mutex_lock_interruptible(&evdev->mutex);
549 if (retval)
550 return retval;
551
David Herrmannc7dc6572013-09-07 12:23:05 -0700552 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400553 retval = -ENODEV;
554 goto out;
555 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500556
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700557 while (retval + input_event_size() <= count) {
558
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400559 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400560 retval = -EFAULT;
561 goto out;
562 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800563 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400564
565 input_inject_event(&evdev->handle,
566 event.type, event.code, event.value);
Dmitry Torokhov36d25822018-10-04 17:45:54 -0700567 cond_resched();
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700568 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500569
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400570 out:
571 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500572 return retval;
573}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500574
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400575static int evdev_fetch_next_event(struct evdev_client *client,
576 struct input_event *event)
577{
578 int have_event;
579
580 spin_lock_irq(&client->buffer_lock);
581
Dima Zavin566cf5b2011-12-30 15:16:44 -0800582 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400583 if (have_event) {
584 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700585 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400586 }
587
588 spin_unlock_irq(&client->buffer_lock);
589
590 return have_event;
591}
592
593static ssize_t evdev_read(struct file *file, char __user *buffer,
594 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400596 struct evdev_client *client = file->private_data;
597 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400598 struct input_event event;
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700599 size_t read = 0;
600 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700602 if (count != 0 && count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return -EINVAL;
604
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700605 for (;;) {
David Herrmannc7dc6572013-09-07 12:23:05 -0700606 if (!evdev->exist || client->revoked)
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700607 return -ENODEV;
608
609 if (client->packet_head == client->tail &&
610 (file->f_flags & O_NONBLOCK))
611 return -EAGAIN;
612
613 /*
614 * count == 0 is special - no IO is done but we check
615 * for error conditions (see above).
616 */
617 if (count == 0)
618 break;
619
620 while (read + input_event_size() <= count &&
621 evdev_fetch_next_event(client, &event)) {
622
623 if (input_event_to_user(buffer + read, &event))
624 return -EFAULT;
625
626 read += input_event_size();
627 }
628
629 if (read)
630 break;
631
632 if (!(file->f_flags & O_NONBLOCK)) {
633 error = wait_event_interruptible(evdev->wait,
634 client->packet_head != client->tail ||
David Herrmannc7dc6572013-09-07 12:23:05 -0700635 !evdev->exist || client->revoked);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700636 if (error)
637 return error;
638 }
Dima Zavin509f87c2011-12-30 15:16:44 -0800639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700641 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
644/* No kernel lock - fine */
Al Viroafc9a422017-07-03 06:39:46 -0400645static __poll_t evdev_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400647 struct evdev_client *client = file->private_data;
648 struct evdev *evdev = client->evdev;
Al Viroafc9a422017-07-03 06:39:46 -0400649 __poll_t mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400650
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400651 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700652
David Herrmannc7dc6572013-09-07 12:23:05 -0700653 if (evdev->exist && !client->revoked)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800654 mask = EPOLLOUT | EPOLLWRNORM;
David Herrmannc7dc6572013-09-07 12:23:05 -0700655 else
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800656 mask = EPOLLHUP | EPOLLERR;
David Herrmannc7dc6572013-09-07 12:23:05 -0700657
Jeff Browncdda9112011-04-26 22:16:11 -0700658 if (client->packet_head != client->tail)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800659 mask |= EPOLLIN | EPOLLRDNORM;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700660
661 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500664#ifdef CONFIG_COMPAT
665
666#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700667#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500668
669#ifdef __BIG_ENDIAN
670static int bits_to_user(unsigned long *bits, unsigned int maxbit,
671 unsigned int maxlen, void __user *p, int compat)
672{
673 int len, i;
674
675 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700676 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400677 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500678 len = maxlen;
679
680 for (i = 0; i < len / sizeof(compat_long_t); i++)
681 if (copy_to_user((compat_long_t __user *) p + i,
682 (compat_long_t *) bits +
683 i + 1 - ((i % 2) << 1),
684 sizeof(compat_long_t)))
685 return -EFAULT;
686 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700687 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500688 if (len > maxlen)
689 len = maxlen;
690
691 if (copy_to_user(p, bits, len))
692 return -EFAULT;
693 }
694
695 return len;
696}
David Herrmann06a16292015-10-24 16:20:18 -0700697
698static int bits_from_user(unsigned long *bits, unsigned int maxbit,
699 unsigned int maxlen, const void __user *p, int compat)
700{
701 int len, i;
702
703 if (compat) {
704 if (maxlen % sizeof(compat_long_t))
705 return -EINVAL;
706
707 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
708 if (len > maxlen)
709 len = maxlen;
710
711 for (i = 0; i < len / sizeof(compat_long_t); i++)
712 if (copy_from_user((compat_long_t *) bits +
713 i + 1 - ((i % 2) << 1),
714 (compat_long_t __user *) p + i,
715 sizeof(compat_long_t)))
716 return -EFAULT;
717 if (i % 2)
718 *((compat_long_t *) bits + i - 1) = 0;
719
720 } else {
721 if (maxlen % sizeof(long))
722 return -EINVAL;
723
724 len = BITS_TO_LONGS(maxbit) * sizeof(long);
725 if (len > maxlen)
726 len = maxlen;
727
728 if (copy_from_user(bits, p, len))
729 return -EFAULT;
730 }
731
732 return len;
733}
734
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500735#else
David Herrmann06a16292015-10-24 16:20:18 -0700736
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500737static int bits_to_user(unsigned long *bits, unsigned int maxbit,
738 unsigned int maxlen, void __user *p, int compat)
739{
740 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700741 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
742 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500743
744 if (len > maxlen)
745 len = maxlen;
746
747 return copy_to_user(p, bits, len) ? -EFAULT : len;
748}
David Herrmann06a16292015-10-24 16:20:18 -0700749
750static int bits_from_user(unsigned long *bits, unsigned int maxbit,
751 unsigned int maxlen, const void __user *p, int compat)
752{
753 size_t chunk_size = compat ? sizeof(compat_long_t) : sizeof(long);
754 int len;
755
756 if (maxlen % chunk_size)
757 return -EINVAL;
758
759 len = compat ? BITS_TO_LONGS_COMPAT(maxbit) : BITS_TO_LONGS(maxbit);
760 len *= chunk_size;
761 if (len > maxlen)
762 len = maxlen;
763
764 return copy_from_user(bits, p, len) ? -EFAULT : len;
765}
766
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500767#endif /* __BIG_ENDIAN */
768
769#else
770
771static int bits_to_user(unsigned long *bits, unsigned int maxbit,
772 unsigned int maxlen, void __user *p, int compat)
773{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700774 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500775
776 if (len > maxlen)
777 len = maxlen;
778
779 return copy_to_user(p, bits, len) ? -EFAULT : len;
780}
781
David Herrmann06a16292015-10-24 16:20:18 -0700782static int bits_from_user(unsigned long *bits, unsigned int maxbit,
783 unsigned int maxlen, const void __user *p, int compat)
784{
785 int len;
786
787 if (maxlen % sizeof(long))
788 return -EINVAL;
789
790 len = BITS_TO_LONGS(maxbit) * sizeof(long);
791 if (len > maxlen)
792 len = maxlen;
793
794 return copy_from_user(bits, p, len) ? -EFAULT : len;
795}
796
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500797#endif /* CONFIG_COMPAT */
798
799static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
800{
801 int len;
802
803 if (!str)
804 return -ENOENT;
805
806 len = strlen(str) + 1;
807 if (len > maxlen)
808 len = maxlen;
809
810 return copy_to_user(p, str, len) ? -EFAULT : len;
811}
812
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700813static int handle_eviocgbit(struct input_dev *dev,
814 unsigned int type, unsigned int size,
815 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400816{
817 unsigned long *bits;
818 int len;
819
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700820 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400821
822 case 0: bits = dev->evbit; len = EV_MAX; break;
823 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
824 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
825 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
826 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
827 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
828 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
829 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
830 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
831 default: return -EINVAL;
832 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400833
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700834 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400835}
Linus Torvalds5402a732008-08-05 11:42:42 -0400836
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800837static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
838{
839 struct input_keymap_entry ke = {
840 .len = sizeof(unsigned int),
841 .flags = 0,
842 };
843 int __user *ip = (int __user *)p;
844 int error;
845
846 /* legacy case */
847 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
848 return -EFAULT;
849
850 error = input_get_keycode(dev, &ke);
851 if (error)
852 return error;
853
854 if (put_user(ke.keycode, ip + 1))
855 return -EFAULT;
856
857 return 0;
858}
859
860static int evdev_handle_get_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 int error;
864
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800865 if (copy_from_user(&ke, p, sizeof(ke)))
866 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700867
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800868 error = input_get_keycode(dev, &ke);
869 if (error)
870 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700871
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800872 if (copy_to_user(p, &ke, sizeof(ke)))
873 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700874
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700875 return 0;
876}
877
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800878static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
879{
880 struct input_keymap_entry ke = {
881 .len = sizeof(unsigned int),
882 .flags = 0,
883 };
884 int __user *ip = (int __user *)p;
885
886 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
887 return -EFAULT;
888
889 if (get_user(ke.keycode, ip + 1))
890 return -EFAULT;
891
892 return input_set_keycode(dev, &ke);
893}
894
895static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700896{
897 struct input_keymap_entry ke;
898
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800899 if (copy_from_user(&ke, p, sizeof(ke)))
900 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700901
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800902 if (ke.len > sizeof(ke.scancode))
903 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700904
905 return input_set_keycode(dev, &ke);
906}
907
David Herrmann48318022013-04-07 21:13:19 -0700908/*
909 * If we transfer state to the user, we should flush all pending events
910 * of the same type from the client's queue. Otherwise, they might end up
911 * with duplicate events, which can screw up client's state tracking.
912 * If bits_to_user fails after flushing the queue, we queue a SYN_DROPPED
913 * event so user-space will notice missing events.
914 *
915 * LOCKING:
916 * We need to take event_lock before buffer_lock to avoid dead-locks. But we
917 * need the even_lock only to guarantee consistent state. We can safely release
918 * it while flushing the queue. This allows input-core to handle filters while
919 * we flush the queue.
920 */
921static int evdev_handle_get_val(struct evdev_client *client,
922 struct input_dev *dev, unsigned int type,
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700923 unsigned long *bits, unsigned int maxbit,
924 unsigned int maxlen, void __user *p,
925 int compat)
David Herrmann48318022013-04-07 21:13:19 -0700926{
927 int ret;
928 unsigned long *mem;
929
Andy Shevchenko60780912018-08-01 15:47:47 -0700930 mem = bitmap_alloc(maxbit, GFP_KERNEL);
David Herrmann48318022013-04-07 21:13:19 -0700931 if (!mem)
932 return -ENOMEM;
933
934 spin_lock_irq(&dev->event_lock);
935 spin_lock(&client->buffer_lock);
936
Andy Shevchenko60780912018-08-01 15:47:47 -0700937 bitmap_copy(mem, bits, maxbit);
David Herrmann48318022013-04-07 21:13:19 -0700938
939 spin_unlock(&dev->event_lock);
940
941 __evdev_flush_queue(client, type);
942
943 spin_unlock_irq(&client->buffer_lock);
944
Dmitry Torokhov7c4f5602014-10-06 10:55:49 -0700945 ret = bits_to_user(mem, maxbit, maxlen, p, compat);
David Herrmann48318022013-04-07 21:13:19 -0700946 if (ret < 0)
Dmitry Torokhovb881d532015-02-05 15:56:28 -0800947 evdev_queue_syn_dropped(client);
David Herrmann48318022013-04-07 21:13:19 -0700948
Andy Shevchenko60780912018-08-01 15:47:47 -0700949 bitmap_free(mem);
David Herrmann48318022013-04-07 21:13:19 -0700950
951 return ret;
952}
953
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100954static int evdev_handle_mt_request(struct input_dev *dev,
955 unsigned int size,
956 int __user *ip)
957{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200958 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100959 unsigned int code;
960 int max_slots;
961 int i;
962
963 if (get_user(code, &ip[0]))
964 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200965 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100966 return -EINVAL;
967
968 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200969 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
970 int value = input_mt_get_value(&mt->slots[i], code);
971 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100972 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200973 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100974
975 return 0;
976}
977
David Herrmannc7dc6572013-09-07 12:23:05 -0700978static int evdev_revoke(struct evdev *evdev, struct evdev_client *client,
979 struct file *file)
980{
981 client->revoked = true;
982 evdev_ungrab(evdev, client);
983 input_flush_device(&evdev->handle, file);
984 wake_up_interruptible(&evdev->wait);
985
986 return 0;
987}
988
David Herrmann06a16292015-10-24 16:20:18 -0700989/* must be called with evdev-mutex held */
990static int evdev_set_mask(struct evdev_client *client,
991 unsigned int type,
992 const void __user *codes,
993 u32 codes_size,
994 int compat)
995{
996 unsigned long flags, *mask, *oldmask;
997 size_t cnt;
998 int error;
999
1000 /* we allow unknown types and 'codes_size > size' for forward-compat */
1001 cnt = evdev_get_mask_cnt(type);
1002 if (!cnt)
1003 return 0;
1004
Andy Shevchenko60780912018-08-01 15:47:47 -07001005 mask = bitmap_zalloc(cnt, GFP_KERNEL);
David Herrmann06a16292015-10-24 16:20:18 -07001006 if (!mask)
1007 return -ENOMEM;
1008
1009 error = bits_from_user(mask, cnt - 1, codes_size, codes, compat);
1010 if (error < 0) {
Andy Shevchenko60780912018-08-01 15:47:47 -07001011 bitmap_free(mask);
David Herrmann06a16292015-10-24 16:20:18 -07001012 return error;
1013 }
1014
1015 spin_lock_irqsave(&client->buffer_lock, flags);
1016 oldmask = client->evmasks[type];
1017 client->evmasks[type] = mask;
1018 spin_unlock_irqrestore(&client->buffer_lock, flags);
1019
Andy Shevchenko60780912018-08-01 15:47:47 -07001020 bitmap_free(oldmask);
David Herrmann06a16292015-10-24 16:20:18 -07001021
1022 return 0;
1023}
1024
1025/* must be called with evdev-mutex held */
1026static int evdev_get_mask(struct evdev_client *client,
1027 unsigned int type,
1028 void __user *codes,
1029 u32 codes_size,
1030 int compat)
1031{
1032 unsigned long *mask;
1033 size_t cnt, size, xfer_size;
1034 int i;
1035 int error;
1036
1037 /* we allow unknown types and 'codes_size > size' for forward-compat */
1038 cnt = evdev_get_mask_cnt(type);
1039 size = sizeof(unsigned long) * BITS_TO_LONGS(cnt);
1040 xfer_size = min_t(size_t, codes_size, size);
1041
1042 if (cnt > 0) {
1043 mask = client->evmasks[type];
1044 if (mask) {
1045 error = bits_to_user(mask, cnt - 1,
1046 xfer_size, codes, compat);
1047 if (error < 0)
1048 return error;
1049 } else {
1050 /* fake mask with all bits set */
1051 for (i = 0; i < xfer_size; i++)
1052 if (put_user(0xffU, (u8 __user *)codes + i))
1053 return -EFAULT;
1054 }
1055 }
1056
1057 if (xfer_size < codes_size)
1058 if (clear_user(codes + xfer_size, codes_size - xfer_size))
1059 return -EFAULT;
1060
1061 return 0;
1062}
1063
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001064static long evdev_do_ioctl(struct file *file, unsigned int cmd,
1065 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001067 struct evdev_client *client = file->private_data;
1068 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 struct input_dev *dev = evdev->handle.dev;
1070 struct input_absinfo abs;
David Herrmann06a16292015-10-24 16:20:18 -07001071 struct input_mask mask;
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001072 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001073 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -08001074 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001075 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -04001076 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001078 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 switch (cmd) {
1080
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001081 case EVIOCGVERSION:
1082 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001084 case EVIOCGID:
1085 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
1086 return -EFAULT;
1087 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -04001088
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001089 case EVIOCGREP:
1090 if (!test_bit(EV_REP, dev->evbit))
1091 return -ENOSYS;
1092 if (put_user(dev->rep[REP_DELAY], ip))
1093 return -EFAULT;
1094 if (put_user(dev->rep[REP_PERIOD], ip + 1))
1095 return -EFAULT;
1096 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -04001097
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001098 case EVIOCSREP:
1099 if (!test_bit(EV_REP, dev->evbit))
1100 return -ENOSYS;
1101 if (get_user(u, ip))
1102 return -EFAULT;
1103 if (get_user(v, ip + 1))
1104 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -04001105
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001106 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
1107 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001108
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001109 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001111 case EVIOCRMFF:
1112 return input_ff_erase(dev, (int)(unsigned long) p, file);
1113
1114 case EVIOCGEFFECTS:
1115 i = test_bit(EV_FF, dev->evbit) ?
1116 dev->ff->max_effects : 0;
1117 if (put_user(i, ip))
1118 return -EFAULT;
1119 return 0;
1120
1121 case EVIOCGRAB:
1122 if (p)
1123 return evdev_grab(evdev, client);
1124 else
1125 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -08001126
David Herrmannc7dc6572013-09-07 12:23:05 -07001127 case EVIOCREVOKE:
1128 if (p)
1129 return -EINVAL;
1130 else
1131 return evdev_revoke(evdev, client, file);
1132
David Herrmann06a16292015-10-24 16:20:18 -07001133 case EVIOCGMASK: {
1134 void __user *codes_ptr;
1135
1136 if (copy_from_user(&mask, p, sizeof(mask)))
1137 return -EFAULT;
1138
1139 codes_ptr = (void __user *)(unsigned long)mask.codes_ptr;
1140 return evdev_get_mask(client,
1141 mask.type, codes_ptr, mask.codes_size,
1142 compat_mode);
1143 }
1144
1145 case EVIOCSMASK: {
1146 const void __user *codes_ptr;
1147
1148 if (copy_from_user(&mask, p, sizeof(mask)))
1149 return -EFAULT;
1150
1151 codes_ptr = (const void __user *)(unsigned long)mask.codes_ptr;
1152 return evdev_set_mask(client,
1153 mask.type, codes_ptr, mask.codes_size,
1154 compat_mode);
1155 }
1156
John Stultza80b83b2012-02-03 00:19:07 -08001157 case EVIOCSCLOCKID:
1158 if (copy_from_user(&i, p, sizeof(unsigned int)))
1159 return -EFAULT;
Aniroop Mathuraac8bcf2014-12-17 15:33:06 -08001160
1161 return evdev_set_clk_type(client, i);
John Stultza80b83b2012-02-03 00:19:07 -08001162
Dmitry Torokhovab4e0192010-12-14 23:53:21 -08001163 case EVIOCGKEYCODE:
1164 return evdev_handle_get_keycode(dev, p);
1165
1166 case EVIOCSKEYCODE:
1167 return evdev_handle_set_keycode(dev, p);
1168
1169 case EVIOCGKEYCODE_V2:
1170 return evdev_handle_get_keycode_v2(dev, p);
1171
1172 case EVIOCSKEYCODE_V2:
1173 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001174 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001175
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001176 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001177
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001178 /* Now check variable-length commands */
1179#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001180 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001181
Henrik Rydberg85b77202010-12-18 20:51:13 +01001182 case EVIOCGPROP(0):
1183 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
1184 size, p, compat_mode);
1185
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +01001186 case EVIOCGMTSLOTS(0):
1187 return evdev_handle_mt_request(dev, size, ip);
1188
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001189 case EVIOCGKEY(0):
David Herrmann48318022013-04-07 21:13:19 -07001190 return evdev_handle_get_val(client, dev, EV_KEY, dev->key,
1191 KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001192
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001193 case EVIOCGLED(0):
David Herrmann48318022013-04-07 21:13:19 -07001194 return evdev_handle_get_val(client, dev, EV_LED, dev->led,
1195 LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001196
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001197 case EVIOCGSND(0):
David Herrmann48318022013-04-07 21:13:19 -07001198 return evdev_handle_get_val(client, dev, EV_SND, dev->snd,
1199 SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001200
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001201 case EVIOCGSW(0):
David Herrmann48318022013-04-07 21:13:19 -07001202 return evdev_handle_get_val(client, dev, EV_SW, dev->sw,
1203 SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001204
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001205 case EVIOCGNAME(0):
1206 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001207
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001208 case EVIOCGPHYS(0):
1209 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001210
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001211 case EVIOCGUNIQ(0):
1212 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001213
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001214 case EVIOC_MASK_SIZE(EVIOCSFF):
1215 if (input_ff_effect_from_user(p, size, &effect))
1216 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001217
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001218 error = input_ff_upload(dev, &effect, file);
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -07001219 if (error)
1220 return error;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001221
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001222 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
1223 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001224
Elias Vanderstuyftfc7392a2014-03-29 12:08:45 -07001225 return 0;
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001226 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001227
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001228 /* Multi-number variable-length handlers */
1229 if (_IOC_TYPE(cmd) != 'E')
1230 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001232 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001234 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
1235 return handle_eviocgbit(dev,
1236 _IOC_NR(cmd) & EV_MAX, size,
1237 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001239 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001240
Daniel Mack0a74a1d2010-10-18 08:43:30 -07001241 if (!dev->absinfo)
1242 return -EINVAL;
1243
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001244 t = _IOC_NR(cmd) & ABS_MAX;
1245 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001246
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001247 if (copy_to_user(p, &abs, min_t(size_t,
1248 size, sizeof(struct input_absinfo))))
1249 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -04001250
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001251 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001254
Daniel Mackf9ce6eb52010-10-18 08:43:50 -07001255 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001256
1257 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
1258
Daniel Mack0a74a1d2010-10-18 08:43:30 -07001259 if (!dev->absinfo)
1260 return -EINVAL;
1261
Dmitry Torokhov448cd162010-08-02 20:29:10 -07001262 t = _IOC_NR(cmd) & ABS_MAX;
1263
1264 if (copy_from_user(&abs, p, min_t(size_t,
1265 size, sizeof(struct input_absinfo))))
1266 return -EFAULT;
1267
1268 if (size < sizeof(struct input_absinfo))
1269 abs.resolution = 0;
1270
1271 /* We can't change number of reserved MT slots */
1272 if (t == ABS_MT_SLOT)
1273 return -EINVAL;
1274
1275 /*
1276 * Take event lock to ensure that we are not
1277 * changing device parameters in the middle
1278 * of event.
1279 */
1280 spin_lock_irq(&dev->event_lock);
1281 dev->absinfo[t] = abs;
1282 spin_unlock_irq(&dev->event_lock);
1283
1284 return 0;
1285 }
1286 }
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 return -EINVAL;
1289}
1290
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001291static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
1292 void __user *p, int compat_mode)
1293{
1294 struct evdev_client *client = file->private_data;
1295 struct evdev *evdev = client->evdev;
1296 int retval;
1297
1298 retval = mutex_lock_interruptible(&evdev->mutex);
1299 if (retval)
1300 return retval;
1301
David Herrmannc7dc6572013-09-07 12:23:05 -07001302 if (!evdev->exist || client->revoked) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001303 retval = -ENODEV;
1304 goto out;
1305 }
1306
1307 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
1308
1309 out:
1310 mutex_unlock(&evdev->mutex);
1311 return retval;
1312}
1313
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001314static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1315{
1316 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
1317}
1318
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001319#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001320static long evdev_ioctl_compat(struct file *file,
1321 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001322{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -05001323 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001324}
1325#endif
1326
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001327static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001328 .owner = THIS_MODULE,
1329 .read = evdev_read,
1330 .write = evdev_write,
1331 .poll = evdev_poll,
1332 .open = evdev_open,
1333 .release = evdev_release,
1334 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001335#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001336 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -05001337#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001338 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001339 .flush = evdev_flush,
1340 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341};
1342
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001343/*
1344 * Mark device non-existent. This disables writes, ioctls and
1345 * prevents new users from opening the device. Already posted
1346 * blocking reads will stay, however new ones will fail.
1347 */
1348static void evdev_mark_dead(struct evdev *evdev)
1349{
1350 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001351 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001352 mutex_unlock(&evdev->mutex);
1353}
1354
1355static void evdev_cleanup(struct evdev *evdev)
1356{
1357 struct input_handle *handle = &evdev->handle;
1358
1359 evdev_mark_dead(evdev);
1360 evdev_hangup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001361
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001362 /* evdev is marked dead so no one else accesses evdev->open */
1363 if (evdev->open) {
1364 input_flush_device(handle, NULL);
1365 input_close_device(handle);
1366 }
1367}
1368
1369/*
1370 * Create new evdev device. Note that input core serializes calls
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001371 * to connect and disconnect.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001372 */
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001373static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
1374 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
1376 struct evdev *evdev;
1377 int minor;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001378 int dev_no;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001379 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001381 minor = input_get_new_minor(EVDEV_MINOR_BASE, EVDEV_MINORS, true);
1382 if (minor < 0) {
1383 error = minor;
1384 pr_err("failed to reserve new minor: %d\n", error);
1385 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001388 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001389 if (!evdev) {
1390 error = -ENOMEM;
1391 goto err_free_minor;
1392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -04001394 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001395 spin_lock_init(&evdev->client_lock);
1396 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 init_waitqueue_head(&evdev->wait);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -07001398 evdev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001399
1400 dev_no = minor;
1401 /* Normalize device number if it falls into legacy range */
1402 if (dev_no < EVDEV_MINOR_BASE + EVDEV_MINORS)
1403 dev_no -= EVDEV_MINOR_BASE;
1404 dev_set_name(&evdev->dev, "event%d", dev_no);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001405
Dmitry Torokhova7097ff2008-04-01 00:22:53 -04001406 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -07001407 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 evdev->handle.handler = handler;
1409 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001410
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001411 evdev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001412 evdev->dev.class = &input_class;
1413 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001414 evdev->dev.release = evdev_free;
1415 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001417 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001418 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001419 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001421 cdev_init(&evdev->cdev, &evdev_fops);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001422
Logan Gunthorpe358a89c2017-03-17 12:48:11 -06001423 error = cdev_device_add(&evdev->cdev, &evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001424 if (error)
1425 goto err_cleanup_evdev;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001426
1427 return 0;
1428
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001429 err_cleanup_evdev:
1430 evdev_cleanup(evdev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001431 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001432 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001433 put_device(&evdev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001434 err_free_minor:
1435 input_free_minor(minor);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -04001436 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437}
1438
1439static void evdev_disconnect(struct input_handle *handle)
1440{
1441 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Logan Gunthorpe358a89c2017-03-17 12:48:11 -06001443 cdev_device_del(&evdev->cdev, &evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001444 evdev_cleanup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001445 input_free_minor(MINOR(evdev->dev.devt));
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001446 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001447 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001450static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 { .driver_info = 1 }, /* Matches all devices */
1452 { }, /* Terminating zero entry */
1453};
1454
1455MODULE_DEVICE_TABLE(input, evdev_ids);
1456
1457static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001458 .event = evdev_event,
Henrik Rydberga274ac12012-08-29 20:48:02 +02001459 .events = evdev_events,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001460 .connect = evdev_connect,
1461 .disconnect = evdev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001462 .legacy_minors = true,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001463 .minor = EVDEV_MINOR_BASE,
1464 .name = "evdev",
1465 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466};
1467
1468static int __init evdev_init(void)
1469{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001470 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471}
1472
1473static void __exit evdev_exit(void)
1474{
1475 input_unregister_handler(&evdev_handler);
1476}
1477
1478module_init(evdev_init);
1479module_exit(evdev_exit);
1480
1481MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1482MODULE_DESCRIPTION("Input driver event char devices");
1483MODULE_LICENSE("GPL");