blob: 6ae2ac47c9c806ecf5224e2eb02c49a704b40432 [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);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400295 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return 0;
298}
299
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700300static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
301{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700302 unsigned int n_events =
303 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
304 EVDEV_MIN_BUFFER_SIZE);
305
306 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700307}
308
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400309static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700311 struct evdev *evdev = container_of(inode->i_cdev, struct evdev, cdev);
312 unsigned int bufsize = evdev_compute_buffer_size(evdev->handle.dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400313 struct evdev_client *client;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400314 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700316 client = kzalloc(sizeof(struct evdev_client) +
317 bufsize * sizeof(struct input_event),
318 GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700319 if (!client)
320 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700322 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400323 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400324 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400325 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400327 error = evdev_open_device(evdev);
328 if (error)
329 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400331 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800332 nonseekable_open(inode, file);
333
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700334 get_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400336
337 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400338 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400339 kfree(client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400340 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400343static ssize_t evdev_write(struct file *file, const char __user *buffer,
344 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400346 struct evdev_client *client = file->private_data;
347 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800349 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700351 if (count != 0 && count < input_event_size())
Peter Korsgaard439581e2011-02-25 09:30:46 -0800352 return -EINVAL;
353
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400354 retval = mutex_lock_interruptible(&evdev->mutex);
355 if (retval)
356 return retval;
357
358 if (!evdev->exist) {
359 retval = -ENODEV;
360 goto out;
361 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500362
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700363 while (retval + input_event_size() <= count) {
364
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400365 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400366 retval = -EFAULT;
367 goto out;
368 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800369 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400370
371 input_inject_event(&evdev->handle,
372 event.type, event.code, event.value);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700373 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500374
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400375 out:
376 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500377 return retval;
378}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500379
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400380static int evdev_fetch_next_event(struct evdev_client *client,
381 struct input_event *event)
382{
383 int have_event;
384
385 spin_lock_irq(&client->buffer_lock);
386
Dima Zavin566cf5b2011-12-30 15:16:44 -0800387 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400388 if (have_event) {
389 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700390 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400391 }
392
393 spin_unlock_irq(&client->buffer_lock);
394
395 return have_event;
396}
397
398static ssize_t evdev_read(struct file *file, char __user *buffer,
399 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400401 struct evdev_client *client = file->private_data;
402 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400403 struct input_event event;
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700404 size_t read = 0;
405 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700407 if (count != 0 && count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return -EINVAL;
409
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700410 for (;;) {
411 if (!evdev->exist)
412 return -ENODEV;
413
414 if (client->packet_head == client->tail &&
415 (file->f_flags & O_NONBLOCK))
416 return -EAGAIN;
417
418 /*
419 * count == 0 is special - no IO is done but we check
420 * for error conditions (see above).
421 */
422 if (count == 0)
423 break;
424
425 while (read + input_event_size() <= count &&
426 evdev_fetch_next_event(client, &event)) {
427
428 if (input_event_to_user(buffer + read, &event))
429 return -EFAULT;
430
431 read += input_event_size();
432 }
433
434 if (read)
435 break;
436
437 if (!(file->f_flags & O_NONBLOCK)) {
438 error = wait_event_interruptible(evdev->wait,
439 client->packet_head != client->tail ||
440 !evdev->exist);
441 if (error)
442 return error;
443 }
Dima Zavin509f87c2011-12-30 15:16:44 -0800444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700446 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449/* No kernel lock - fine */
450static unsigned int evdev_poll(struct file *file, poll_table *wait)
451{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400452 struct evdev_client *client = file->private_data;
453 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700454 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400455
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400456 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700457
458 mask = evdev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
Jeff Browncdda9112011-04-26 22:16:11 -0700459 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700460 mask |= POLLIN | POLLRDNORM;
461
462 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500465#ifdef CONFIG_COMPAT
466
467#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700468#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500469
470#ifdef __BIG_ENDIAN
471static int bits_to_user(unsigned long *bits, unsigned int maxbit,
472 unsigned int maxlen, void __user *p, int compat)
473{
474 int len, i;
475
476 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700477 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400478 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500479 len = maxlen;
480
481 for (i = 0; i < len / sizeof(compat_long_t); i++)
482 if (copy_to_user((compat_long_t __user *) p + i,
483 (compat_long_t *) bits +
484 i + 1 - ((i % 2) << 1),
485 sizeof(compat_long_t)))
486 return -EFAULT;
487 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700488 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500489 if (len > maxlen)
490 len = maxlen;
491
492 if (copy_to_user(p, bits, len))
493 return -EFAULT;
494 }
495
496 return len;
497}
498#else
499static int bits_to_user(unsigned long *bits, unsigned int maxbit,
500 unsigned int maxlen, void __user *p, int compat)
501{
502 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700503 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
504 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500505
506 if (len > maxlen)
507 len = maxlen;
508
509 return copy_to_user(p, bits, len) ? -EFAULT : len;
510}
511#endif /* __BIG_ENDIAN */
512
513#else
514
515static int bits_to_user(unsigned long *bits, unsigned int maxbit,
516 unsigned int maxlen, void __user *p, int compat)
517{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700518 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500519
520 if (len > maxlen)
521 len = maxlen;
522
523 return copy_to_user(p, bits, len) ? -EFAULT : len;
524}
525
526#endif /* CONFIG_COMPAT */
527
528static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
529{
530 int len;
531
532 if (!str)
533 return -ENOENT;
534
535 len = strlen(str) + 1;
536 if (len > maxlen)
537 len = maxlen;
538
539 return copy_to_user(p, str, len) ? -EFAULT : len;
540}
541
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400542#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700543static int handle_eviocgbit(struct input_dev *dev,
544 unsigned int type, unsigned int size,
545 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400546{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400547 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400548 unsigned long *bits;
549 int len;
550
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700551 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400552
553 case 0: bits = dev->evbit; len = EV_MAX; break;
554 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
555 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
556 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
557 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
558 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
559 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
560 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
561 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
562 default: return -EINVAL;
563 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400564
565 /*
566 * Work around bugs in userspace programs that like to do
567 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
568 * should be in bytes, not in bits.
569 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700570 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400571 len = OLD_KEY_MAX;
572 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800573 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
574 "limiting output to %zu bytes. See "
575 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
576 OLD_KEY_MAX,
577 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400578 }
579
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700580 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400581}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400582#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400583
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800584static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
585{
586 struct input_keymap_entry ke = {
587 .len = sizeof(unsigned int),
588 .flags = 0,
589 };
590 int __user *ip = (int __user *)p;
591 int error;
592
593 /* legacy case */
594 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
595 return -EFAULT;
596
597 error = input_get_keycode(dev, &ke);
598 if (error)
599 return error;
600
601 if (put_user(ke.keycode, ip + 1))
602 return -EFAULT;
603
604 return 0;
605}
606
607static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700608{
609 struct input_keymap_entry ke;
610 int error;
611
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800612 if (copy_from_user(&ke, p, sizeof(ke)))
613 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700614
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800615 error = input_get_keycode(dev, &ke);
616 if (error)
617 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700618
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800619 if (copy_to_user(p, &ke, sizeof(ke)))
620 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700621
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700622 return 0;
623}
624
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800625static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
626{
627 struct input_keymap_entry ke = {
628 .len = sizeof(unsigned int),
629 .flags = 0,
630 };
631 int __user *ip = (int __user *)p;
632
633 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
634 return -EFAULT;
635
636 if (get_user(ke.keycode, ip + 1))
637 return -EFAULT;
638
639 return input_set_keycode(dev, &ke);
640}
641
642static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700643{
644 struct input_keymap_entry ke;
645
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800646 if (copy_from_user(&ke, p, sizeof(ke)))
647 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700648
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800649 if (ke.len > sizeof(ke.scancode))
650 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700651
652 return input_set_keycode(dev, &ke);
653}
654
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100655static int evdev_handle_mt_request(struct input_dev *dev,
656 unsigned int size,
657 int __user *ip)
658{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200659 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100660 unsigned int code;
661 int max_slots;
662 int i;
663
664 if (get_user(code, &ip[0]))
665 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200666 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100667 return -EINVAL;
668
669 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200670 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
671 int value = input_mt_get_value(&mt->slots[i], code);
672 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100673 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200674 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100675
676 return 0;
677}
678
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400679static long evdev_do_ioctl(struct file *file, unsigned int cmd,
680 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400682 struct evdev_client *client = file->private_data;
683 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 struct input_dev *dev = evdev->handle.dev;
685 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400686 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500687 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800688 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700689 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400690 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700692 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 switch (cmd) {
694
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400695 case EVIOCGVERSION:
696 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400698 case EVIOCGID:
699 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
700 return -EFAULT;
701 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400702
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400703 case EVIOCGREP:
704 if (!test_bit(EV_REP, dev->evbit))
705 return -ENOSYS;
706 if (put_user(dev->rep[REP_DELAY], ip))
707 return -EFAULT;
708 if (put_user(dev->rep[REP_PERIOD], ip + 1))
709 return -EFAULT;
710 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400711
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400712 case EVIOCSREP:
713 if (!test_bit(EV_REP, dev->evbit))
714 return -ENOSYS;
715 if (get_user(u, ip))
716 return -EFAULT;
717 if (get_user(v, ip + 1))
718 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400719
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400720 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
721 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500722
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400723 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400725 case EVIOCRMFF:
726 return input_ff_erase(dev, (int)(unsigned long) p, file);
727
728 case EVIOCGEFFECTS:
729 i = test_bit(EV_FF, dev->evbit) ?
730 dev->ff->max_effects : 0;
731 if (put_user(i, ip))
732 return -EFAULT;
733 return 0;
734
735 case EVIOCGRAB:
736 if (p)
737 return evdev_grab(evdev, client);
738 else
739 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800740
John Stultza80b83b2012-02-03 00:19:07 -0800741 case EVIOCSCLOCKID:
742 if (copy_from_user(&i, p, sizeof(unsigned int)))
743 return -EFAULT;
744 if (i != CLOCK_MONOTONIC && i != CLOCK_REALTIME)
745 return -EINVAL;
746 client->clkid = i;
747 return 0;
748
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800749 case EVIOCGKEYCODE:
750 return evdev_handle_get_keycode(dev, p);
751
752 case EVIOCSKEYCODE:
753 return evdev_handle_set_keycode(dev, p);
754
755 case EVIOCGKEYCODE_V2:
756 return evdev_handle_get_keycode_v2(dev, p);
757
758 case EVIOCSKEYCODE_V2:
759 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700760 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400761
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700762 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400763
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700764 /* Now check variable-length commands */
765#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700766 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400767
Henrik Rydberg85b77202010-12-18 20:51:13 +0100768 case EVIOCGPROP(0):
769 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
770 size, p, compat_mode);
771
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100772 case EVIOCGMTSLOTS(0):
773 return evdev_handle_mt_request(dev, size, ip);
774
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700775 case EVIOCGKEY(0):
776 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400777
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700778 case EVIOCGLED(0):
779 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400780
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700781 case EVIOCGSND(0):
782 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400783
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700784 case EVIOCGSW(0):
785 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400786
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700787 case EVIOCGNAME(0):
788 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400789
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700790 case EVIOCGPHYS(0):
791 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400792
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700793 case EVIOCGUNIQ(0):
794 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400795
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700796 case EVIOC_MASK_SIZE(EVIOCSFF):
797 if (input_ff_effect_from_user(p, size, &effect))
798 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400799
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700800 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400801
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700802 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
803 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400804
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700805 return error;
806 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400807
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700808 /* Multi-number variable-length handlers */
809 if (_IOC_TYPE(cmd) != 'E')
810 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700812 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700814 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
815 return handle_eviocgbit(dev,
816 _IOC_NR(cmd) & EV_MAX, size,
817 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700819 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400820
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700821 if (!dev->absinfo)
822 return -EINVAL;
823
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700824 t = _IOC_NR(cmd) & ABS_MAX;
825 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400826
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700827 if (copy_to_user(p, &abs, min_t(size_t,
828 size, sizeof(struct input_absinfo))))
829 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400830
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700831 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700834
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700835 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700836
837 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
838
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700839 if (!dev->absinfo)
840 return -EINVAL;
841
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700842 t = _IOC_NR(cmd) & ABS_MAX;
843
844 if (copy_from_user(&abs, p, min_t(size_t,
845 size, sizeof(struct input_absinfo))))
846 return -EFAULT;
847
848 if (size < sizeof(struct input_absinfo))
849 abs.resolution = 0;
850
851 /* We can't change number of reserved MT slots */
852 if (t == ABS_MT_SLOT)
853 return -EINVAL;
854
855 /*
856 * Take event lock to ensure that we are not
857 * changing device parameters in the middle
858 * of event.
859 */
860 spin_lock_irq(&dev->event_lock);
861 dev->absinfo[t] = abs;
862 spin_unlock_irq(&dev->event_lock);
863
864 return 0;
865 }
866 }
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return -EINVAL;
869}
870
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400871static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
872 void __user *p, int compat_mode)
873{
874 struct evdev_client *client = file->private_data;
875 struct evdev *evdev = client->evdev;
876 int retval;
877
878 retval = mutex_lock_interruptible(&evdev->mutex);
879 if (retval)
880 return retval;
881
882 if (!evdev->exist) {
883 retval = -ENODEV;
884 goto out;
885 }
886
887 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
888
889 out:
890 mutex_unlock(&evdev->mutex);
891 return retval;
892}
893
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500894static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
895{
896 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
897}
898
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500899#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400900static long evdev_ioctl_compat(struct file *file,
901 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500902{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500903 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500904}
905#endif
906
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400907static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400908 .owner = THIS_MODULE,
909 .read = evdev_read,
910 .write = evdev_write,
911 .poll = evdev_poll,
912 .open = evdev_open,
913 .release = evdev_release,
914 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500915#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400916 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500917#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400918 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200919 .flush = evdev_flush,
920 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921};
922
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400923/*
924 * Mark device non-existent. This disables writes, ioctls and
925 * prevents new users from opening the device. Already posted
926 * blocking reads will stay, however new ones will fail.
927 */
928static void evdev_mark_dead(struct evdev *evdev)
929{
930 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700931 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400932 mutex_unlock(&evdev->mutex);
933}
934
935static void evdev_cleanup(struct evdev *evdev)
936{
937 struct input_handle *handle = &evdev->handle;
938
939 evdev_mark_dead(evdev);
940 evdev_hangup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700941
942 cdev_del(&evdev->cdev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400943
944 /* evdev is marked dead so no one else accesses evdev->open */
945 if (evdev->open) {
946 input_flush_device(handle, NULL);
947 input_close_device(handle);
948 }
949}
950
951/*
952 * Create new evdev device. Note that input core serializes calls
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700953 * to connect and disconnect.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400954 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400955static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
956 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
958 struct evdev *evdev;
959 int minor;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700960 int dev_no;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400961 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700963 minor = input_get_new_minor(EVDEV_MINOR_BASE, EVDEV_MINORS, true);
964 if (minor < 0) {
965 error = minor;
966 pr_err("failed to reserve new minor: %d\n", error);
967 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 }
969
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400970 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700971 if (!evdev) {
972 error = -ENOMEM;
973 goto err_free_minor;
974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400976 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400977 spin_lock_init(&evdev->client_lock);
978 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 init_waitqueue_head(&evdev->wait);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700980 evdev->exist = true;
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700981
982 dev_no = minor;
983 /* Normalize device number if it falls into legacy range */
984 if (dev_no < EVDEV_MINOR_BASE + EVDEV_MINORS)
985 dev_no -= EVDEV_MINOR_BASE;
986 dev_set_name(&evdev->dev, "event%d", dev_no);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400987
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400988 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700989 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 evdev->handle.handler = handler;
991 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400992
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700993 evdev->dev.devt = MKDEV(INPUT_MAJOR, minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400994 evdev->dev.class = &input_class;
995 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400996 evdev->dev.release = evdev_free;
997 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400999 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001000 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001001 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001003 cdev_init(&evdev->cdev, &evdev_fops);
1004 error = cdev_add(&evdev->cdev, evdev->dev.devt, 1);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001005 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001006 goto err_unregister_handle;
1007
1008 error = device_add(&evdev->dev);
1009 if (error)
1010 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001011
1012 return 0;
1013
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001014 err_cleanup_evdev:
1015 evdev_cleanup(evdev);
1016 err_unregister_handle:
1017 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001018 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001019 put_device(&evdev->dev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001020 err_free_minor:
1021 input_free_minor(minor);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001022 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
1025static void evdev_disconnect(struct input_handle *handle)
1026{
1027 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001029 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001030 evdev_cleanup(evdev);
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001031 input_free_minor(MINOR(evdev->dev.devt));
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001032 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001033 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001036static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 { .driver_info = 1 }, /* Matches all devices */
1038 { }, /* Terminating zero entry */
1039};
1040
1041MODULE_DEVICE_TABLE(input, evdev_ids);
1042
1043static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001044 .event = evdev_event,
Henrik Rydberga274ac12012-08-29 20:48:02 +02001045 .events = evdev_events,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001046 .connect = evdev_connect,
1047 .disconnect = evdev_disconnect,
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -07001048 .legacy_minors = true,
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001049 .minor = EVDEV_MINOR_BASE,
1050 .name = "evdev",
1051 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052};
1053
1054static int __init evdev_init(void)
1055{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001056 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
1059static void __exit evdev_exit(void)
1060{
1061 input_unregister_handler(&evdev_handler);
1062}
1063
1064module_init(evdev_init);
1065module_exit(evdev_exit);
1066
1067MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1068MODULE_DESCRIPTION("Input driver event char devices");
1069MODULE_LICENSE("GPL");