blob: be0921ef6b52ace2a2e15a5d1437c6134799dbf0 [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>
23#include <linux/input.h>
24#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/device.h>
Philip Langdale2d56f3a2008-10-16 22:31:42 -040026#include "input-compat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28struct evdev {
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 int open;
30 int minor;
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 Torokhov20da92d2010-07-15 23:27:36 -070038 bool exist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040041struct evdev_client {
Jeff Brown9fb0f142011-04-12 23:29:38 -070042 unsigned int head;
43 unsigned int tail;
Jeff Browncdda9112011-04-26 22:16:11 -070044 unsigned int packet_head; /* [future] position of the first element of next packet */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040045 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 struct fasync_struct *fasync;
47 struct evdev *evdev;
48 struct list_head node;
Jeff Brown9fb0f142011-04-12 23:29:38 -070049 unsigned int bufsize;
Henrik Rydbergb58f7082010-06-23 09:17:56 -070050 struct input_event buffer[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
53static struct evdev *evdev_table[EVDEV_MINORS];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040054static DEFINE_MUTEX(evdev_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040056static void evdev_pass_event(struct evdev_client *client,
57 struct input_event *event)
58{
Jeff Brown9fb0f142011-04-12 23:29:38 -070059 /* Interrupts are disabled, just acquire the lock. */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040060 spin_lock(&client->buffer_lock);
Jeff Brown9fb0f142011-04-12 23:29:38 -070061
62 client->buffer[client->head++] = *event;
63 client->head &= client->bufsize - 1;
64
65 if (unlikely(client->head == client->tail)) {
66 /*
67 * This effectively "drops" all unconsumed events, leaving
68 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
69 */
70 client->tail = (client->head - 2) & (client->bufsize - 1);
71
72 client->buffer[client->tail].time = event->time;
73 client->buffer[client->tail].type = EV_SYN;
74 client->buffer[client->tail].code = SYN_DROPPED;
75 client->buffer[client->tail].value = 0;
Jeff Browncdda9112011-04-26 22:16:11 -070076
77 client->packet_head = client->tail;
78 }
79
80 if (event->type == EV_SYN && event->code == SYN_REPORT) {
81 client->packet_head = client->head;
82 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Jeff Brown9fb0f142011-04-12 23:29:38 -070083 }
84
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040085 spin_unlock(&client->buffer_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040086}
87
88/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040089 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040090 */
91static void evdev_event(struct input_handle *handle,
92 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 struct evdev *evdev = handle->private;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040095 struct evdev_client *client;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040096 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040098 do_gettimeofday(&event.time);
99 event.type = type;
100 event.code = code;
101 event.value = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400103 rcu_read_lock();
104
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400105 client = rcu_dereference(evdev->grab);
106 if (client)
107 evdev_pass_event(client, &event);
108 else
109 list_for_each_entry_rcu(client, &evdev->client_list, node)
110 evdev_pass_event(client, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400112 rcu_read_unlock();
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 wake_up_interruptible(&evdev->wait);
115}
116
117static int evdev_fasync(int fd, struct file *file, int on)
118{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400119 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400120
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700121 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400124static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400126 struct evdev_client *client = file->private_data;
127 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400128 int retval;
129
130 retval = mutex_lock_interruptible(&evdev->mutex);
131 if (retval)
132 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400133
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400134 if (!evdev->exist)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400135 retval = -ENODEV;
136 else
137 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400138
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400139 mutex_unlock(&evdev->mutex);
140 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400143static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400145 struct evdev *evdev = container_of(dev, struct evdev, dev);
146
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400147 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 kfree(evdev);
149}
150
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400151/*
152 * Grabs an event device (along with underlying input device).
153 * This function is called with evdev->mutex taken.
154 */
155static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
156{
157 int error;
158
159 if (evdev->grab)
160 return -EBUSY;
161
162 error = input_grab_device(&evdev->handle);
163 if (error)
164 return error;
165
166 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400167
168 return 0;
169}
170
171static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
172{
173 if (evdev->grab != client)
174 return -EINVAL;
175
176 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400177 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400178 input_release_device(&evdev->handle);
179
180 return 0;
181}
182
183static void evdev_attach_client(struct evdev *evdev,
184 struct evdev_client *client)
185{
186 spin_lock(&evdev->client_lock);
187 list_add_tail_rcu(&client->node, &evdev->client_list);
188 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400189}
190
191static void evdev_detach_client(struct evdev *evdev,
192 struct evdev_client *client)
193{
194 spin_lock(&evdev->client_lock);
195 list_del_rcu(&client->node);
196 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400197 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400198}
199
200static int evdev_open_device(struct evdev *evdev)
201{
202 int retval;
203
204 retval = mutex_lock_interruptible(&evdev->mutex);
205 if (retval)
206 return retval;
207
208 if (!evdev->exist)
209 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400210 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400211 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400212 if (retval)
213 evdev->open--;
214 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400215
216 mutex_unlock(&evdev->mutex);
217 return retval;
218}
219
220static void evdev_close_device(struct evdev *evdev)
221{
222 mutex_lock(&evdev->mutex);
223
224 if (evdev->exist && !--evdev->open)
225 input_close_device(&evdev->handle);
226
227 mutex_unlock(&evdev->mutex);
228}
229
230/*
231 * Wake up users waiting for IO so they can disconnect from
232 * dead device.
233 */
234static void evdev_hangup(struct evdev *evdev)
235{
236 struct evdev_client *client;
237
238 spin_lock(&evdev->client_lock);
239 list_for_each_entry(client, &evdev->client_list, node)
240 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
241 spin_unlock(&evdev->client_lock);
242
243 wake_up_interruptible(&evdev->wait);
244}
245
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400246static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400248 struct evdev_client *client = file->private_data;
249 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400251 mutex_lock(&evdev->mutex);
252 if (evdev->grab == client)
253 evdev_ungrab(evdev, client);
254 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400256 evdev_detach_client(evdev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400257 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400259 evdev_close_device(evdev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400260 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return 0;
263}
264
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700265static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
266{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700267 unsigned int n_events =
268 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
269 EVDEV_MIN_BUFFER_SIZE);
270
271 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700272}
273
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400274static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400276 struct evdev *evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400277 struct evdev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 int i = iminor(inode) - EVDEV_MINOR_BASE;
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700279 unsigned int bufsize;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400280 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400282 if (i >= EVDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return -ENODEV;
284
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400285 error = mutex_lock_interruptible(&evdev_table_mutex);
286 if (error)
287 return error;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400288 evdev = evdev_table[i];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400289 if (evdev)
290 get_device(&evdev->dev);
291 mutex_unlock(&evdev_table_mutex);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400292
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400293 if (!evdev)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400294 return -ENODEV;
295
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700296 bufsize = evdev_compute_buffer_size(evdev->handle.dev);
297
298 client = kzalloc(sizeof(struct evdev_client) +
299 bufsize * sizeof(struct input_event),
300 GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400301 if (!client) {
302 error = -ENOMEM;
303 goto err_put_evdev;
304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700306 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400307 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400308 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400309 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400311 error = evdev_open_device(evdev);
312 if (error)
313 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400315 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800316 nonseekable_open(inode, file);
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400319
320 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400321 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400322 kfree(client);
323 err_put_evdev:
324 put_device(&evdev->dev);
325 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400328static ssize_t evdev_write(struct file *file, const char __user *buffer,
329 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400331 struct evdev_client *client = file->private_data;
332 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 struct input_event event;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400334 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Peter Korsgaard439581e2011-02-25 09:30:46 -0800336 if (count < input_event_size())
337 return -EINVAL;
338
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400339 retval = mutex_lock_interruptible(&evdev->mutex);
340 if (retval)
341 return retval;
342
343 if (!evdev->exist) {
344 retval = -ENODEV;
345 goto out;
346 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500347
Peter Korsgaard439581e2011-02-25 09:30:46 -0800348 do {
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400349 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400350 retval = -EFAULT;
351 goto out;
352 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800353 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400354
355 input_inject_event(&evdev->handle,
356 event.type, event.code, event.value);
Peter Korsgaard439581e2011-02-25 09:30:46 -0800357 } while (retval + input_event_size() <= count);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500358
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400359 out:
360 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500361 return retval;
362}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500363
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400364static int evdev_fetch_next_event(struct evdev_client *client,
365 struct input_event *event)
366{
367 int have_event;
368
369 spin_lock_irq(&client->buffer_lock);
370
371 have_event = client->head != client->tail;
372 if (have_event) {
373 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700374 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400375 }
376
377 spin_unlock_irq(&client->buffer_lock);
378
379 return have_event;
380}
381
382static ssize_t evdev_read(struct file *file, char __user *buffer,
383 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400385 struct evdev_client *client = file->private_data;
386 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400387 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 int retval;
389
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400390 if (count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return -EINVAL;
392
Jeff Browncdda9112011-04-26 22:16:11 -0700393 if (client->packet_head == client->tail && evdev->exist &&
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400394 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return -EAGAIN;
396
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400397 retval = wait_event_interruptible(evdev->wait,
Jeff Browncdda9112011-04-26 22:16:11 -0700398 client->packet_head != client->tail || !evdev->exist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (retval)
400 return retval;
401
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400402 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return -ENODEV;
404
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400405 while (retval + input_event_size() <= count &&
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400406 evdev_fetch_next_event(client, &event)) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500407
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400408 if (input_event_to_user(buffer + retval, &event))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500409 return -EFAULT;
410
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400411 retval += input_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413
414 return retval;
415}
416
417/* No kernel lock - fine */
418static unsigned int evdev_poll(struct file *file, poll_table *wait)
419{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400420 struct evdev_client *client = file->private_data;
421 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700422 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400423
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400424 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700425
426 mask = evdev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
Jeff Browncdda9112011-04-26 22:16:11 -0700427 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700428 mask |= POLLIN | POLLRDNORM;
429
430 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500433#ifdef CONFIG_COMPAT
434
435#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700436#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500437
438#ifdef __BIG_ENDIAN
439static int bits_to_user(unsigned long *bits, unsigned int maxbit,
440 unsigned int maxlen, void __user *p, int compat)
441{
442 int len, i;
443
444 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700445 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400446 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500447 len = maxlen;
448
449 for (i = 0; i < len / sizeof(compat_long_t); i++)
450 if (copy_to_user((compat_long_t __user *) p + i,
451 (compat_long_t *) bits +
452 i + 1 - ((i % 2) << 1),
453 sizeof(compat_long_t)))
454 return -EFAULT;
455 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700456 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500457 if (len > maxlen)
458 len = maxlen;
459
460 if (copy_to_user(p, bits, len))
461 return -EFAULT;
462 }
463
464 return len;
465}
466#else
467static int bits_to_user(unsigned long *bits, unsigned int maxbit,
468 unsigned int maxlen, void __user *p, int compat)
469{
470 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700471 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
472 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500473
474 if (len > maxlen)
475 len = maxlen;
476
477 return copy_to_user(p, bits, len) ? -EFAULT : len;
478}
479#endif /* __BIG_ENDIAN */
480
481#else
482
483static int bits_to_user(unsigned long *bits, unsigned int maxbit,
484 unsigned int maxlen, void __user *p, int compat)
485{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700486 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500487
488 if (len > maxlen)
489 len = maxlen;
490
491 return copy_to_user(p, bits, len) ? -EFAULT : len;
492}
493
494#endif /* CONFIG_COMPAT */
495
496static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
497{
498 int len;
499
500 if (!str)
501 return -ENOENT;
502
503 len = strlen(str) + 1;
504 if (len > maxlen)
505 len = maxlen;
506
507 return copy_to_user(p, str, len) ? -EFAULT : len;
508}
509
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400510#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700511static int handle_eviocgbit(struct input_dev *dev,
512 unsigned int type, unsigned int size,
513 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400514{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400515 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400516 unsigned long *bits;
517 int len;
518
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700519 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400520
521 case 0: bits = dev->evbit; len = EV_MAX; break;
522 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
523 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
524 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
525 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
526 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
527 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
528 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
529 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
530 default: return -EINVAL;
531 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400532
533 /*
534 * Work around bugs in userspace programs that like to do
535 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
536 * should be in bytes, not in bits.
537 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700538 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400539 len = OLD_KEY_MAX;
540 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800541 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
542 "limiting output to %zu bytes. See "
543 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
544 OLD_KEY_MAX,
545 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400546 }
547
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700548 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400549}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400550#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400551
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800552static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
553{
554 struct input_keymap_entry ke = {
555 .len = sizeof(unsigned int),
556 .flags = 0,
557 };
558 int __user *ip = (int __user *)p;
559 int error;
560
561 /* legacy case */
562 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
563 return -EFAULT;
564
565 error = input_get_keycode(dev, &ke);
566 if (error)
567 return error;
568
569 if (put_user(ke.keycode, ip + 1))
570 return -EFAULT;
571
572 return 0;
573}
574
575static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700576{
577 struct input_keymap_entry ke;
578 int error;
579
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800580 if (copy_from_user(&ke, p, sizeof(ke)))
581 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700582
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800583 error = input_get_keycode(dev, &ke);
584 if (error)
585 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700586
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800587 if (copy_to_user(p, &ke, sizeof(ke)))
588 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700589
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700590 return 0;
591}
592
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800593static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
594{
595 struct input_keymap_entry ke = {
596 .len = sizeof(unsigned int),
597 .flags = 0,
598 };
599 int __user *ip = (int __user *)p;
600
601 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
602 return -EFAULT;
603
604 if (get_user(ke.keycode, ip + 1))
605 return -EFAULT;
606
607 return input_set_keycode(dev, &ke);
608}
609
610static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700611{
612 struct input_keymap_entry ke;
613
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800614 if (copy_from_user(&ke, p, sizeof(ke)))
615 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700616
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800617 if (ke.len > sizeof(ke.scancode))
618 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700619
620 return input_set_keycode(dev, &ke);
621}
622
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400623static long evdev_do_ioctl(struct file *file, unsigned int cmd,
624 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400626 struct evdev_client *client = file->private_data;
627 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 struct input_dev *dev = evdev->handle.dev;
629 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400630 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500631 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800632 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700633 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400634 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700636 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 switch (cmd) {
638
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400639 case EVIOCGVERSION:
640 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400642 case EVIOCGID:
643 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
644 return -EFAULT;
645 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400646
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400647 case EVIOCGREP:
648 if (!test_bit(EV_REP, dev->evbit))
649 return -ENOSYS;
650 if (put_user(dev->rep[REP_DELAY], ip))
651 return -EFAULT;
652 if (put_user(dev->rep[REP_PERIOD], ip + 1))
653 return -EFAULT;
654 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400655
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400656 case EVIOCSREP:
657 if (!test_bit(EV_REP, dev->evbit))
658 return -ENOSYS;
659 if (get_user(u, ip))
660 return -EFAULT;
661 if (get_user(v, ip + 1))
662 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400663
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400664 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
665 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500666
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400667 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400669 case EVIOCRMFF:
670 return input_ff_erase(dev, (int)(unsigned long) p, file);
671
672 case EVIOCGEFFECTS:
673 i = test_bit(EV_FF, dev->evbit) ?
674 dev->ff->max_effects : 0;
675 if (put_user(i, ip))
676 return -EFAULT;
677 return 0;
678
679 case EVIOCGRAB:
680 if (p)
681 return evdev_grab(evdev, client);
682 else
683 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800684
685 case EVIOCGKEYCODE:
686 return evdev_handle_get_keycode(dev, p);
687
688 case EVIOCSKEYCODE:
689 return evdev_handle_set_keycode(dev, p);
690
691 case EVIOCGKEYCODE_V2:
692 return evdev_handle_get_keycode_v2(dev, p);
693
694 case EVIOCSKEYCODE_V2:
695 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700696 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400697
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700698 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400699
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700700 /* Now check variable-length commands */
701#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700702 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400703
Henrik Rydberg85b77202010-12-18 20:51:13 +0100704 case EVIOCGPROP(0):
705 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
706 size, p, compat_mode);
707
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700708 case EVIOCGKEY(0):
709 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400710
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700711 case EVIOCGLED(0):
712 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400713
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700714 case EVIOCGSND(0):
715 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400716
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700717 case EVIOCGSW(0):
718 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400719
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700720 case EVIOCGNAME(0):
721 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400722
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700723 case EVIOCGPHYS(0):
724 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400725
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700726 case EVIOCGUNIQ(0):
727 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400728
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700729 case EVIOC_MASK_SIZE(EVIOCSFF):
730 if (input_ff_effect_from_user(p, size, &effect))
731 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400732
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700733 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400734
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700735 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
736 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400737
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700738 return error;
739 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400740
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700741 /* Multi-number variable-length handlers */
742 if (_IOC_TYPE(cmd) != 'E')
743 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700745 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700747 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
748 return handle_eviocgbit(dev,
749 _IOC_NR(cmd) & EV_MAX, size,
750 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700752 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400753
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700754 if (!dev->absinfo)
755 return -EINVAL;
756
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700757 t = _IOC_NR(cmd) & ABS_MAX;
758 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400759
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700760 if (copy_to_user(p, &abs, min_t(size_t,
761 size, sizeof(struct input_absinfo))))
762 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400763
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700764 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700767
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700768 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700769
770 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
771
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700772 if (!dev->absinfo)
773 return -EINVAL;
774
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700775 t = _IOC_NR(cmd) & ABS_MAX;
776
777 if (copy_from_user(&abs, p, min_t(size_t,
778 size, sizeof(struct input_absinfo))))
779 return -EFAULT;
780
781 if (size < sizeof(struct input_absinfo))
782 abs.resolution = 0;
783
784 /* We can't change number of reserved MT slots */
785 if (t == ABS_MT_SLOT)
786 return -EINVAL;
787
788 /*
789 * Take event lock to ensure that we are not
790 * changing device parameters in the middle
791 * of event.
792 */
793 spin_lock_irq(&dev->event_lock);
794 dev->absinfo[t] = abs;
795 spin_unlock_irq(&dev->event_lock);
796
797 return 0;
798 }
799 }
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return -EINVAL;
802}
803
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400804static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
805 void __user *p, int compat_mode)
806{
807 struct evdev_client *client = file->private_data;
808 struct evdev *evdev = client->evdev;
809 int retval;
810
811 retval = mutex_lock_interruptible(&evdev->mutex);
812 if (retval)
813 return retval;
814
815 if (!evdev->exist) {
816 retval = -ENODEV;
817 goto out;
818 }
819
820 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
821
822 out:
823 mutex_unlock(&evdev->mutex);
824 return retval;
825}
826
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500827static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
828{
829 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
830}
831
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500832#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400833static long evdev_ioctl_compat(struct file *file,
834 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500835{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500836 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500837}
838#endif
839
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400840static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400841 .owner = THIS_MODULE,
842 .read = evdev_read,
843 .write = evdev_write,
844 .poll = evdev_poll,
845 .open = evdev_open,
846 .release = evdev_release,
847 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500848#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400849 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500850#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400851 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200852 .flush = evdev_flush,
853 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854};
855
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400856static int evdev_install_chrdev(struct evdev *evdev)
857{
858 /*
859 * No need to do any locking here as calls to connect and
860 * disconnect are serialized by the input core
861 */
862 evdev_table[evdev->minor] = evdev;
863 return 0;
864}
865
866static void evdev_remove_chrdev(struct evdev *evdev)
867{
868 /*
869 * Lock evdev table to prevent race with evdev_open()
870 */
871 mutex_lock(&evdev_table_mutex);
872 evdev_table[evdev->minor] = NULL;
873 mutex_unlock(&evdev_table_mutex);
874}
875
876/*
877 * Mark device non-existent. This disables writes, ioctls and
878 * prevents new users from opening the device. Already posted
879 * blocking reads will stay, however new ones will fail.
880 */
881static void evdev_mark_dead(struct evdev *evdev)
882{
883 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700884 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400885 mutex_unlock(&evdev->mutex);
886}
887
888static void evdev_cleanup(struct evdev *evdev)
889{
890 struct input_handle *handle = &evdev->handle;
891
892 evdev_mark_dead(evdev);
893 evdev_hangup(evdev);
894 evdev_remove_chrdev(evdev);
895
896 /* evdev is marked dead so no one else accesses evdev->open */
897 if (evdev->open) {
898 input_flush_device(handle, NULL);
899 input_close_device(handle);
900 }
901}
902
903/*
904 * Create new evdev device. Note that input core serializes calls
905 * to connect and disconnect so we don't need to lock evdev_table here.
906 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400907static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
908 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 struct evdev *evdev;
911 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400912 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400914 for (minor = 0; minor < EVDEV_MINORS; minor++)
915 if (!evdev_table[minor])
916 break;
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (minor == EVDEV_MINORS) {
Joe Perchesda0c4902010-11-29 23:33:07 -0800919 pr_err("no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400920 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
922
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400923 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
924 if (!evdev)
925 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400927 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400928 spin_lock_init(&evdev->client_lock);
929 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 init_waitqueue_head(&evdev->wait);
931
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700932 dev_set_name(&evdev->dev, "event%d", minor);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700933 evdev->exist = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400935
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400936 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700937 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 evdev->handle.handler = handler;
939 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400940
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400941 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400942 evdev->dev.class = &input_class;
943 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400944 evdev->dev.release = evdev_free;
945 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400947 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400948 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400949 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400951 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400952 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400953 goto err_unregister_handle;
954
955 error = device_add(&evdev->dev);
956 if (error)
957 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400958
959 return 0;
960
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400961 err_cleanup_evdev:
962 evdev_cleanup(evdev);
963 err_unregister_handle:
964 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400965 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400966 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400967 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
970static void evdev_disconnect(struct input_handle *handle)
971{
972 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400974 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400975 evdev_cleanup(evdev);
976 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400977 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400980static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 { .driver_info = 1 }, /* Matches all devices */
982 { }, /* Terminating zero entry */
983};
984
985MODULE_DEVICE_TABLE(input, evdev_ids);
986
987static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400988 .event = evdev_event,
989 .connect = evdev_connect,
990 .disconnect = evdev_disconnect,
991 .fops = &evdev_fops,
992 .minor = EVDEV_MINOR_BASE,
993 .name = "evdev",
994 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995};
996
997static int __init evdev_init(void)
998{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400999 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
1002static void __exit evdev_exit(void)
1003{
1004 input_unregister_handler(&evdev_handler);
1005}
1006
1007module_init(evdev_init);
1008module_exit(evdev_exit);
1009
1010MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1011MODULE_DESCRIPTION("Input driver event char devices");
1012MODULE_LICENSE("GPL");