blob: f0f8928b3c8a2902295ccfdf4803b43e00f3a0c9 [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>
21#include <linux/module.h>
22#include <linux/init.h>
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +010023#include <linux/input/mt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/device.h>
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070026#include <linux/cdev.h>
Philip Langdale2d56f3a2008-10-16 22:31:42 -040027#include "input-compat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29struct evdev {
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 int open;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 struct input_handle handle;
32 wait_queue_head_t wait;
Arnd Bergmann2be85272010-03-04 15:50:28 +010033 struct evdev_client __rcu *grab;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040034 struct list_head client_list;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040035 spinlock_t client_lock; /* protects client_list */
36 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040037 struct device dev;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -070038 struct cdev cdev;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -070039 bool exist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040042struct evdev_client {
Jeff Brown9fb0f142011-04-12 23:29:38 -070043 unsigned int head;
44 unsigned int tail;
Jeff Browncdda9112011-04-26 22:16:11 -070045 unsigned int packet_head; /* [future] position of the first element of next packet */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040046 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 struct fasync_struct *fasync;
48 struct evdev *evdev;
49 struct list_head node;
John Stultza80b83b2012-02-03 00:19:07 -080050 int clkid;
Jeff Brown9fb0f142011-04-12 23:29:38 -070051 unsigned int bufsize;
Henrik Rydbergb58f7082010-06-23 09:17:56 -070052 struct input_event buffer[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
Henrik Rydberga274ac12012-08-29 20:48:02 +020055static void __pass_event(struct evdev_client *client,
56 const struct input_event *event)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040057{
Jeff Brown9fb0f142011-04-12 23:29:38 -070058 client->buffer[client->head++] = *event;
59 client->head &= client->bufsize - 1;
60
61 if (unlikely(client->head == client->tail)) {
62 /*
63 * This effectively "drops" all unconsumed events, leaving
64 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
65 */
66 client->tail = (client->head - 2) & (client->bufsize - 1);
67
68 client->buffer[client->tail].time = event->time;
69 client->buffer[client->tail].type = EV_SYN;
70 client->buffer[client->tail].code = SYN_DROPPED;
71 client->buffer[client->tail].value = 0;
Jeff Browncdda9112011-04-26 22:16:11 -070072
73 client->packet_head = client->tail;
74 }
75
76 if (event->type == EV_SYN && event->code == SYN_REPORT) {
77 client->packet_head = client->head;
78 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Jeff Brown9fb0f142011-04-12 23:29:38 -070079 }
Henrik Rydberga274ac12012-08-29 20:48:02 +020080}
81
82static void evdev_pass_values(struct evdev_client *client,
83 const struct input_value *vals, unsigned int count,
84 ktime_t mono, ktime_t real)
85{
86 struct evdev *evdev = client->evdev;
87 const struct input_value *v;
88 struct input_event event;
89 bool wakeup = false;
90
91 event.time = ktime_to_timeval(client->clkid == CLOCK_MONOTONIC ?
92 mono : real);
93
94 /* Interrupts are disabled, just acquire the lock. */
95 spin_lock(&client->buffer_lock);
96
97 for (v = vals; v != vals + count; v++) {
98 event.type = v->type;
99 event.code = v->code;
100 event.value = v->value;
101 __pass_event(client, &event);
102 if (v->type == EV_SYN && v->code == SYN_REPORT)
103 wakeup = true;
104 }
Jeff Brown9fb0f142011-04-12 23:29:38 -0700105
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400106 spin_unlock(&client->buffer_lock);
Henrik Rydberga274ac12012-08-29 20:48:02 +0200107
108 if (wakeup)
109 wake_up_interruptible(&evdev->wait);
110}
111
112/*
113 * Pass incoming events to all connected clients.
114 */
115static void evdev_events(struct input_handle *handle,
116 const struct input_value *vals, unsigned int count)
117{
118 struct evdev *evdev = handle->private;
119 struct evdev_client *client;
120 ktime_t time_mono, time_real;
121
122 time_mono = ktime_get();
123 time_real = ktime_sub(time_mono, ktime_get_monotonic_offset());
124
125 rcu_read_lock();
126
127 client = rcu_dereference(evdev->grab);
128
129 if (client)
130 evdev_pass_values(client, vals, count, time_mono, time_real);
131 else
132 list_for_each_entry_rcu(client, &evdev->client_list, node)
133 evdev_pass_values(client, vals, count,
134 time_mono, time_real);
135
136 rcu_read_unlock();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400137}
138
139/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400140 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400141 */
142static void evdev_event(struct input_handle *handle,
143 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Henrik Rydberga274ac12012-08-29 20:48:02 +0200145 struct input_value vals[] = { { type, code, value } };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Henrik Rydberga274ac12012-08-29 20:48:02 +0200147 evdev_events(handle, vals, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150static int evdev_fasync(int fd, struct file *file, int on)
151{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400152 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400153
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700154 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400157static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400159 struct evdev_client *client = file->private_data;
160 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400161 int retval;
162
163 retval = mutex_lock_interruptible(&evdev->mutex);
164 if (retval)
165 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400166
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400167 if (!evdev->exist)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400168 retval = -ENODEV;
169 else
170 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400171
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400172 mutex_unlock(&evdev->mutex);
173 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400176static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400178 struct evdev *evdev = container_of(dev, struct evdev, dev);
179
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400180 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 kfree(evdev);
182}
183
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400184/*
185 * Grabs an event device (along with underlying input device).
186 * This function is called with evdev->mutex taken.
187 */
188static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
189{
190 int error;
191
192 if (evdev->grab)
193 return -EBUSY;
194
195 error = input_grab_device(&evdev->handle);
196 if (error)
197 return error;
198
199 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400200
201 return 0;
202}
203
204static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
205{
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700206 struct evdev_client *grab = rcu_dereference_protected(evdev->grab,
207 lockdep_is_held(&evdev->mutex));
208
209 if (grab != client)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400210 return -EINVAL;
211
212 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400213 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400214 input_release_device(&evdev->handle);
215
216 return 0;
217}
218
219static void evdev_attach_client(struct evdev *evdev,
220 struct evdev_client *client)
221{
222 spin_lock(&evdev->client_lock);
223 list_add_tail_rcu(&client->node, &evdev->client_list);
224 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400225}
226
227static void evdev_detach_client(struct evdev *evdev,
228 struct evdev_client *client)
229{
230 spin_lock(&evdev->client_lock);
231 list_del_rcu(&client->node);
232 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400233 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400234}
235
236static int evdev_open_device(struct evdev *evdev)
237{
238 int retval;
239
240 retval = mutex_lock_interruptible(&evdev->mutex);
241 if (retval)
242 return retval;
243
244 if (!evdev->exist)
245 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400246 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400247 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400248 if (retval)
249 evdev->open--;
250 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400251
252 mutex_unlock(&evdev->mutex);
253 return retval;
254}
255
256static void evdev_close_device(struct evdev *evdev)
257{
258 mutex_lock(&evdev->mutex);
259
260 if (evdev->exist && !--evdev->open)
261 input_close_device(&evdev->handle);
262
263 mutex_unlock(&evdev->mutex);
264}
265
266/*
267 * Wake up users waiting for IO so they can disconnect from
268 * dead device.
269 */
270static void evdev_hangup(struct evdev *evdev)
271{
272 struct evdev_client *client;
273
274 spin_lock(&evdev->client_lock);
275 list_for_each_entry(client, &evdev->client_list, node)
276 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
277 spin_unlock(&evdev->client_lock);
278
279 wake_up_interruptible(&evdev->wait);
280}
281
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400282static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400284 struct evdev_client *client = file->private_data;
285 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400287 mutex_lock(&evdev->mutex);
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700288 evdev_ungrab(evdev, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400289 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400291 evdev_detach_client(evdev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400292 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400294 evdev_close_device(evdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return 0;
297}
298
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700299static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
300{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700301 unsigned int n_events =
302 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
303 EVDEV_MIN_BUFFER_SIZE);
304
305 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700306}
307
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400308static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700310 struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev);
311 unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400312 struct evdev_client *client;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400313 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700315 client = kzalloc(sizeof(struct evdev_client) +
316 bufsize * sizeof(struct input_event),
317 GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700318 if (!client)
319 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700321 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400322 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400323 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400324 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400326 error = evdev_open_device(evdev);
327 if (error)
328 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400330 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800331 nonseekable_open(inode, file);
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400334
335 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400336 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400337 kfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400338 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400341static ssize_t evdev_write(struct file *file, const char __user *buffer,
342 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400344 struct evdev_client *client = file->private_data;
345 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800347 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700349 if (count != 0 && count < input_event_size())
Peter Korsgaard439581e2011-02-25 09:30:46 -0800350 return -EINVAL;
351
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400352 retval = mutex_lock_interruptible(&evdev->mutex);
353 if (retval)
354 return retval;
355
356 if (!evdev->exist) {
357 retval = -ENODEV;
358 goto out;
359 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500360
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700361 while (retval + input_event_size() <= count) {
362
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400363 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400364 retval = -EFAULT;
365 goto out;
366 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800367 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400368
369 input_inject_event(&evdev->handle,
370 event.type, event.code, event.value);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700371 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500372
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400373 out:
374 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500375 return retval;
376}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500377
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400378static int evdev_fetch_next_event(struct evdev_client *client,
379 struct input_event *event)
380{
381 int have_event;
382
383 spin_lock_irq(&client->buffer_lock);
384
Dima Zavin566cf5b2011-12-30 15:16:44 -0800385 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400386 if (have_event) {
387 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700388 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400389 }
390
391 spin_unlock_irq(&client->buffer_lock);
392
393 return have_event;
394}
395
396static ssize_t evdev_read(struct file *file, char __user *buffer,
397 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400399 struct evdev_client *client = file->private_data;
400 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400401 struct input_event event;
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700402 size_t read = 0;
403 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700405 if (count != 0 && count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return -EINVAL;
407
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700408 for (;;) {
409 if (!evdev->exist)
410 return -ENODEV;
411
412 if (client->packet_head == client->tail &&
413 (file->f_flags & O_NONBLOCK))
414 return -EAGAIN;
415
416 /*
417 * count == 0 is special - no IO is done but we check
418 * for error conditions (see above).
419 */
420 if (count == 0)
421 break;
422
423 while (read + input_event_size() <= count &&
424 evdev_fetch_next_event(client, &event)) {
425
426 if (input_event_to_user(buffer + read, &event))
427 return -EFAULT;
428
429 read += input_event_size();
430 }
431
432 if (read)
433 break;
434
435 if (!(file->f_flags & O_NONBLOCK)) {
436 error = wait_event_interruptible(evdev->wait,
437 client->packet_head != client->tail ||
438 !evdev->exist);
439 if (error)
440 return error;
441 }
Dima Zavin509f87c2011-12-30 15:16:44 -0800442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700444 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
447/* No kernel lock - fine */
448static unsigned int evdev_poll(struct file *file, poll_table *wait)
449{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400450 struct evdev_client *client = file->private_data;
451 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700452 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400453
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400454 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700455
456 mask = evdev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
Jeff Browncdda9112011-04-26 22:16:11 -0700457 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700458 mask |= POLLIN | POLLRDNORM;
459
460 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500463#ifdef CONFIG_COMPAT
464
465#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700466#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500467
468#ifdef __BIG_ENDIAN
469static int bits_to_user(unsigned long *bits, unsigned int maxbit,
470 unsigned int maxlen, void __user *p, int compat)
471{
472 int len, i;
473
474 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700475 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400476 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500477 len = maxlen;
478
479 for (i = 0; i < len / sizeof(compat_long_t); i++)
480 if (copy_to_user((compat_long_t __user *) p + i,
481 (compat_long_t *) bits +
482 i + 1 - ((i % 2) << 1),
483 sizeof(compat_long_t)))
484 return -EFAULT;
485 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700486 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500487 if (len > maxlen)
488 len = maxlen;
489
490 if (copy_to_user(p, bits, len))
491 return -EFAULT;
492 }
493
494 return len;
495}
496#else
497static int bits_to_user(unsigned long *bits, unsigned int maxbit,
498 unsigned int maxlen, void __user *p, int compat)
499{
500 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700501 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
502 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500503
504 if (len > maxlen)
505 len = maxlen;
506
507 return copy_to_user(p, bits, len) ? -EFAULT : len;
508}
509#endif /* __BIG_ENDIAN */
510
511#else
512
513static int bits_to_user(unsigned long *bits, unsigned int maxbit,
514 unsigned int maxlen, void __user *p, int compat)
515{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700516 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500517
518 if (len > maxlen)
519 len = maxlen;
520
521 return copy_to_user(p, bits, len) ? -EFAULT : len;
522}
523
524#endif /* CONFIG_COMPAT */
525
526static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
527{
528 int len;
529
530 if (!str)
531 return -ENOENT;
532
533 len = strlen(str) + 1;
534 if (len > maxlen)
535 len = maxlen;
536
537 return copy_to_user(p, str, len) ? -EFAULT : len;
538}
539
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400540#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700541static int handle_eviocgbit(struct input_dev *dev,
542 unsigned int type, unsigned int size,
543 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400544{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400545 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400546 unsigned long *bits;
547 int len;
548
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700549 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400550
551 case 0: bits = dev->evbit; len = EV_MAX; break;
552 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
553 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
554 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
555 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
556 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
557 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
558 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
559 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
560 default: return -EINVAL;
561 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400562
563 /*
564 * Work around bugs in userspace programs that like to do
565 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
566 * should be in bytes, not in bits.
567 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700568 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400569 len = OLD_KEY_MAX;
570 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800571 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
572 "limiting output to %zu bytes. See "
573 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
574 OLD_KEY_MAX,
575 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400576 }
577
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700578 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400579}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400580#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400581
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800582static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
583{
584 struct input_keymap_entry ke = {
585 .len = sizeof(unsigned int),
586 .flags = 0,
587 };
588 int __user *ip = (int __user *)p;
589 int error;
590
591 /* legacy case */
592 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
593 return -EFAULT;
594
595 error = input_get_keycode(dev, &ke);
596 if (error)
597 return error;
598
599 if (put_user(ke.keycode, ip + 1))
600 return -EFAULT;
601
602 return 0;
603}
604
605static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700606{
607 struct input_keymap_entry ke;
608 int error;
609
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800610 if (copy_from_user(&ke, p, sizeof(ke)))
611 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700612
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800613 error = input_get_keycode(dev, &ke);
614 if (error)
615 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700616
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800617 if (copy_to_user(p, &ke, sizeof(ke)))
618 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700619
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700620 return 0;
621}
622
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800623static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
624{
625 struct input_keymap_entry ke = {
626 .len = sizeof(unsigned int),
627 .flags = 0,
628 };
629 int __user *ip = (int __user *)p;
630
631 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
632 return -EFAULT;
633
634 if (get_user(ke.keycode, ip + 1))
635 return -EFAULT;
636
637 return input_set_keycode(dev, &ke);
638}
639
640static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700641{
642 struct input_keymap_entry ke;
643
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800644 if (copy_from_user(&ke, p, sizeof(ke)))
645 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700646
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800647 if (ke.len > sizeof(ke.scancode))
648 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700649
650 return input_set_keycode(dev, &ke);
651}
652
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100653static int evdev_handle_mt_request(struct input_dev *dev,
654 unsigned int size,
655 int __user *ip)
656{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200657 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100658 unsigned int code;
659 int max_slots;
660 int i;
661
662 if (get_user(code, &ip[0]))
663 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200664 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100665 return -EINVAL;
666
667 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200668 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
669 int value = input_mt_get_value(&mt->slots[i], code);
670 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100671 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200672 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100673
674 return 0;
675}
676
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400677static long evdev_do_ioctl(struct file *file, unsigned int cmd,
678 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400680 struct evdev_client *client = file->private_data;
681 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 struct input_dev *dev = evdev->handle.dev;
683 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400684 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500685 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800686 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700687 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400688 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700690 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 switch (cmd) {
692
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400693 case EVIOCGVERSION:
694 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400696 case EVIOCGID:
697 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
698 return -EFAULT;
699 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400700
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400701 case EVIOCGREP:
702 if (!test_bit(EV_REP, dev->evbit))
703 return -ENOSYS;
704 if (put_user(dev->rep[REP_DELAY], ip))
705 return -EFAULT;
706 if (put_user(dev->rep[REP_PERIOD], ip + 1))
707 return -EFAULT;
708 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400709
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400710 case EVIOCSREP:
711 if (!test_bit(EV_REP, dev->evbit))
712 return -ENOSYS;
713 if (get_user(u, ip))
714 return -EFAULT;
715 if (get_user(v, ip + 1))
716 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400717
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400718 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
719 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500720
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400723 case EVIOCRMFF:
724 return input_ff_erase(dev, (int)(unsigned long) p, file);
725
726 case EVIOCGEFFECTS:
727 i = test_bit(EV_FF, dev->evbit) ?
728 dev->ff->max_effects : 0;
729 if (put_user(i, ip))
730 return -EFAULT;
731 return 0;
732
733 case EVIOCGRAB:
734 if (p)
735 return evdev_grab(evdev, client);
736 else
737 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800738
John Stultza80b83b2012-02-03 00:19:07 -0800739 case EVIOCSCLOCKID:
740 if (copy_from_user(&i, p, sizeof(unsigned int)))
741 return -EFAULT;
742 if (i != CLOCK_MONOTONIC && i != CLOCK_REALTIME)
743 return -EINVAL;
744 client->clkid = i;
745 return 0;
746
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800747 case EVIOCGKEYCODE:
748 return evdev_handle_get_keycode(dev, p);
749
750 case EVIOCSKEYCODE:
751 return evdev_handle_set_keycode(dev, p);
752
753 case EVIOCGKEYCODE_V2:
754 return evdev_handle_get_keycode_v2(dev, p);
755
756 case EVIOCSKEYCODE_V2:
757 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700758 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400759
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700760 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400761
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700762 /* Now check variable-length commands */
763#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700764 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400765
Henrik Rydberg85b77202010-12-18 20:51:13 +0100766 case EVIOCGPROP(0):
767 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
768 size, p, compat_mode);
769
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100770 case EVIOCGMTSLOTS(0):
771 return evdev_handle_mt_request(dev, size, ip);
772
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700773 case EVIOCGKEY(0):
774 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400775
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700776 case EVIOCGLED(0):
777 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400778
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700779 case EVIOCGSND(0):
780 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400781
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700782 case EVIOCGSW(0):
783 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400784
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700785 case EVIOCGNAME(0):
786 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400787
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700788 case EVIOCGPHYS(0):
789 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400790
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700791 case EVIOCGUNIQ(0):
792 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400793
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700794 case EVIOC_MASK_SIZE(EVIOCSFF):
795 if (input_ff_effect_from_user(p, size, &effect))
796 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400797
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700798 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400799
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700800 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
801 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400802
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700803 return error;
804 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400805
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700806 /* Multi-number variable-length handlers */
807 if (_IOC_TYPE(cmd) != 'E')
808 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700810 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700812 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
813 return handle_eviocgbit(dev,
814 _IOC_NR(cmd) & EV_MAX, size,
815 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700817 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400818
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700819 if (!dev->absinfo)
820 return -EINVAL;
821
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700822 t = _IOC_NR(cmd) & ABS_MAX;
823 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400824
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700825 if (copy_to_user(p, &abs, min_t(size_t,
826 size, sizeof(struct input_absinfo))))
827 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400828
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700829 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700832
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700833 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700834
835 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
836
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700837 if (!dev->absinfo)
838 return -EINVAL;
839
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700840 t = _IOC_NR(cmd) & ABS_MAX;
841
842 if (copy_from_user(&abs, p, min_t(size_t,
843 size, sizeof(struct input_absinfo))))
844 return -EFAULT;
845
846 if (size < sizeof(struct input_absinfo))
847 abs.resolution = 0;
848
849 /* We can't change number of reserved MT slots */
850 if (t == ABS_MT_SLOT)
851 return -EINVAL;
852
853 /*
854 * Take event lock to ensure that we are not
855 * changing device parameters in the middle
856 * of event.
857 */
858 spin_lock_irq(&dev->event_lock);
859 dev->absinfo[t] = abs;
860 spin_unlock_irq(&dev->event_lock);
861
862 return 0;
863 }
864 }
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return -EINVAL;
867}
868
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400869static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
870 void __user *p, int compat_mode)
871{
872 struct evdev_client *client = file->private_data;
873 struct evdev *evdev = client->evdev;
874 int retval;
875
876 retval = mutex_lock_interruptible(&evdev->mutex);
877 if (retval)
878 return retval;
879
880 if (!evdev->exist) {
881 retval = -ENODEV;
882 goto out;
883 }
884
885 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
886
887 out:
888 mutex_unlock(&evdev->mutex);
889 return retval;
890}
891
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500892static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
893{
894 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
895}
896
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500897#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400898static long evdev_ioctl_compat(struct file *file,
899 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500900{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500901 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500902}
903#endif
904
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400905static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400906 .owner = THIS_MODULE,
907 .read = evdev_read,
908 .write = evdev_write,
909 .poll = evdev_poll,
910 .open = evdev_open,
911 .release = evdev_release,
912 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500913#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400914 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500915#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400916 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200917 .flush = evdev_flush,
918 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919};
920
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400921/*
922 * Mark device non-existent. This disables writes, ioctls and
923 * prevents new users from opening the device. Already posted
924 * blocking reads will stay, however new ones will fail.
925 */
926static void evdev_mark_dead(struct evdev *evdev)
927{
928 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700929 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400930 mutex_unlock(&evdev->mutex);
931}
932
933static void evdev_cleanup(struct evdev *evdev)
934{
935 struct input_handle *handle = &evdev->handle;
936
937 evdev_mark_dead(evdev);
938 evdev_hangup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700939
940 cdev_del(&evdev->cdev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400941
942 /* evdev is marked dead so no one else accesses evdev->open */
943 if (evdev->open) {
944 input_flush_device(handle, NULL);
945 input_close_device(handle);
946 }
947}
948
949/*
950 * Create new evdev device. Note that input core serializes calls
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700951 * to connect and disconnect.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400952 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400953static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
954 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 struct evdev *evdev;
957 int minor;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700958 int dev_no;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400959 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700961 minor = input_get_new_minor(EVDEV_MINOR_BASE, EVDEV_MINORS, true);
962 if (minor < 0) {
963 error = minor;
964 pr_err("failed to reserve new minor: %d\n", error);
965 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400968 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700969 if (!evdev) {
970 error = -ENOMEM;
971 goto err_free_minor;
972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400974 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400975 spin_lock_init(&evdev->client_lock);
976 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 init_waitqueue_head(&evdev->wait);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700978 evdev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700979
980 dev_no = minor;
981 /* Normalize device number if it falls into legacy range */
982 if (dev_no < EVDEV_MINOR_BASE + EVDEV_MINORS)
983 dev_no -= EVDEV_MINOR_BASE;
984 dev_set_name(&evdev->dev, "event%d", dev_no);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400985
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400986 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700987 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 evdev->handle.handler = handler;
989 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400990
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700991 evdev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400992 evdev->dev.class = &input_class;
993 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400994 evdev->dev.release = evdev_free;
995 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400997 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400998 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400999 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001001 cdev_init(&evdev->cdev, &evdev_fops);
Dmitry Torokhov4a215aa2012-10-21 17:57:20 -07001002 evdev->cdev.kobj.parent = &evdev->dev.kobj;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001003 error = cdev_add(&evdev->cdev, evdev->dev.devt, 1);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001004 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001005 goto err_unregister_handle;
1006
1007 error = device_add(&evdev->dev);
1008 if (error)
1009 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001010
1011 return 0;
1012
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001013 err_cleanup_evdev:
1014 evdev_cleanup(evdev);
1015 err_unregister_handle:
1016 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001017 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001018 put_device(&evdev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001019 err_free_minor:
1020 input_free_minor(minor);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001021 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
1023
1024static void evdev_disconnect(struct input_handle *handle)
1025{
1026 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001028 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001029 evdev_cleanup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001030 input_free_minor(MINOR(evdev->dev.devt));
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001031 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001032 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001035static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 { .driver_info = 1 }, /* Matches all devices */
1037 { }, /* Terminating zero entry */
1038};
1039
1040MODULE_DEVICE_TABLE(input, evdev_ids);
1041
1042static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001043 .event = evdev_event,
Henrik Rydberga274ac12012-08-29 20:48:02 +02001044 .events = evdev_events,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001045 .connect = evdev_connect,
1046 .disconnect = evdev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001047 .legacy_minors = true,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001048 .minor = EVDEV_MINOR_BASE,
1049 .name = "evdev",
1050 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051};
1052
1053static int __init evdev_init(void)
1054{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001055 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
1058static void __exit evdev_exit(void)
1059{
1060 input_unregister_handler(&evdev_handler);
1061}
1062
1063module_init(evdev_init);
1064module_exit(evdev_exit);
1065
1066MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1067MODULE_DESCRIPTION("Input driver event char devices");
1068MODULE_LICENSE("GPL");