blob: 7f42d3a454d2d6aaebdc41e0e5a8c6700d6a00df [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 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 int head;
43 int tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040044 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 struct fasync_struct *fasync;
46 struct evdev *evdev;
47 struct list_head node;
Henrik Rydbergb58f7082010-06-23 09:17:56 -070048 int bufsize;
49 struct input_event buffer[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070050};
51
52static struct evdev *evdev_table[EVDEV_MINORS];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040053static DEFINE_MUTEX(evdev_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040055static void evdev_pass_event(struct evdev_client *client,
56 struct input_event *event)
57{
58 /*
Henrik Rydberge725a492010-06-23 10:09:26 -070059 * Interrupts are disabled, just acquire the lock.
60 * Make sure we don't leave with the client buffer
61 * "empty" by having client->head == client->tail.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040062 */
63 spin_lock(&client->buffer_lock);
Henrik Rydberge725a492010-06-23 10:09:26 -070064 do {
65 client->buffer[client->head++] = *event;
66 client->head &= client->bufsize - 1;
67 } while (client->head == client->tail);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040068 spin_unlock(&client->buffer_lock);
69
Adam Jackson30a589f2010-01-05 17:56:04 -080070 if (event->type == EV_SYN)
71 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040072}
73
74/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040075 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040076 */
77static void evdev_event(struct input_handle *handle,
78 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 struct evdev *evdev = handle->private;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040081 struct evdev_client *client;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040082 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040084 do_gettimeofday(&event.time);
85 event.type = type;
86 event.code = code;
87 event.value = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040089 rcu_read_lock();
90
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040091 client = rcu_dereference(evdev->grab);
92 if (client)
93 evdev_pass_event(client, &event);
94 else
95 list_for_each_entry_rcu(client, &evdev->client_list, node)
96 evdev_pass_event(client, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040098 rcu_read_unlock();
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 wake_up_interruptible(&evdev->wait);
101}
102
103static int evdev_fasync(int fd, struct file *file, int on)
104{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400105 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400106
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700107 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400110static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400112 struct evdev_client *client = file->private_data;
113 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400114 int retval;
115
116 retval = mutex_lock_interruptible(&evdev->mutex);
117 if (retval)
118 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400119
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400120 if (!evdev->exist)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400121 retval = -ENODEV;
122 else
123 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400124
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400125 mutex_unlock(&evdev->mutex);
126 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400129static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400131 struct evdev *evdev = container_of(dev, struct evdev, dev);
132
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400133 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 kfree(evdev);
135}
136
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400137/*
138 * Grabs an event device (along with underlying input device).
139 * This function is called with evdev->mutex taken.
140 */
141static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
142{
143 int error;
144
145 if (evdev->grab)
146 return -EBUSY;
147
148 error = input_grab_device(&evdev->handle);
149 if (error)
150 return error;
151
152 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400153 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400154
155 return 0;
156}
157
158static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
159{
160 if (evdev->grab != client)
161 return -EINVAL;
162
163 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400164 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400165 input_release_device(&evdev->handle);
166
167 return 0;
168}
169
170static void evdev_attach_client(struct evdev *evdev,
171 struct evdev_client *client)
172{
173 spin_lock(&evdev->client_lock);
174 list_add_tail_rcu(&client->node, &evdev->client_list);
175 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400176 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400177}
178
179static void evdev_detach_client(struct evdev *evdev,
180 struct evdev_client *client)
181{
182 spin_lock(&evdev->client_lock);
183 list_del_rcu(&client->node);
184 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400185 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400186}
187
188static int evdev_open_device(struct evdev *evdev)
189{
190 int retval;
191
192 retval = mutex_lock_interruptible(&evdev->mutex);
193 if (retval)
194 return retval;
195
196 if (!evdev->exist)
197 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400198 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400199 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400200 if (retval)
201 evdev->open--;
202 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400203
204 mutex_unlock(&evdev->mutex);
205 return retval;
206}
207
208static void evdev_close_device(struct evdev *evdev)
209{
210 mutex_lock(&evdev->mutex);
211
212 if (evdev->exist && !--evdev->open)
213 input_close_device(&evdev->handle);
214
215 mutex_unlock(&evdev->mutex);
216}
217
218/*
219 * Wake up users waiting for IO so they can disconnect from
220 * dead device.
221 */
222static void evdev_hangup(struct evdev *evdev)
223{
224 struct evdev_client *client;
225
226 spin_lock(&evdev->client_lock);
227 list_for_each_entry(client, &evdev->client_list, node)
228 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
229 spin_unlock(&evdev->client_lock);
230
231 wake_up_interruptible(&evdev->wait);
232}
233
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400234static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400236 struct evdev_client *client = file->private_data;
237 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400239 mutex_lock(&evdev->mutex);
240 if (evdev->grab == client)
241 evdev_ungrab(evdev, client);
242 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400244 evdev_detach_client(evdev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400245 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400247 evdev_close_device(evdev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400248 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return 0;
251}
252
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700253static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
254{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700255 unsigned int n_events =
256 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
257 EVDEV_MIN_BUFFER_SIZE);
258
259 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700260}
261
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400262static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400264 struct evdev *evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400265 struct evdev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 int i = iminor(inode) - EVDEV_MINOR_BASE;
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700267 unsigned int bufsize;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400268 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400270 if (i >= EVDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return -ENODEV;
272
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400273 error = mutex_lock_interruptible(&evdev_table_mutex);
274 if (error)
275 return error;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400276 evdev = evdev_table[i];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400277 if (evdev)
278 get_device(&evdev->dev);
279 mutex_unlock(&evdev_table_mutex);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400280
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400281 if (!evdev)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400282 return -ENODEV;
283
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700284 bufsize = evdev_compute_buffer_size(evdev->handle.dev);
285
286 client = kzalloc(sizeof(struct evdev_client) +
287 bufsize * sizeof(struct input_event),
288 GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400289 if (!client) {
290 error = -ENOMEM;
291 goto err_put_evdev;
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700294 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400295 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400296 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400297 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400299 error = evdev_open_device(evdev);
300 if (error)
301 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400303 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800304 nonseekable_open(inode, file);
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400307
308 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400309 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400310 kfree(client);
311 err_put_evdev:
312 put_device(&evdev->dev);
313 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400316static ssize_t evdev_write(struct file *file, const char __user *buffer,
317 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400319 struct evdev_client *client = file->private_data;
320 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 struct input_event event;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400322 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Peter Korsgaard439581e2011-02-25 09:30:46 -0800324 if (count < input_event_size())
325 return -EINVAL;
326
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400327 retval = mutex_lock_interruptible(&evdev->mutex);
328 if (retval)
329 return retval;
330
331 if (!evdev->exist) {
332 retval = -ENODEV;
333 goto out;
334 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500335
Peter Korsgaard439581e2011-02-25 09:30:46 -0800336 do {
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400337 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400338 retval = -EFAULT;
339 goto out;
340 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800341 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400342
343 input_inject_event(&evdev->handle,
344 event.type, event.code, event.value);
Peter Korsgaard439581e2011-02-25 09:30:46 -0800345 } while (retval + input_event_size() <= count);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500346
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400347 out:
348 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500349 return retval;
350}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500351
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400352static int evdev_fetch_next_event(struct evdev_client *client,
353 struct input_event *event)
354{
355 int have_event;
356
357 spin_lock_irq(&client->buffer_lock);
358
359 have_event = client->head != client->tail;
360 if (have_event) {
361 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700362 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400363 }
364
365 spin_unlock_irq(&client->buffer_lock);
366
367 return have_event;
368}
369
370static ssize_t evdev_read(struct file *file, char __user *buffer,
371 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400373 struct evdev_client *client = file->private_data;
374 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400375 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 int retval;
377
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400378 if (count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return -EINVAL;
380
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400381 if (client->head == client->tail && evdev->exist &&
382 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return -EAGAIN;
384
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400385 retval = wait_event_interruptible(evdev->wait,
386 client->head != client->tail || !evdev->exist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (retval)
388 return retval;
389
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400390 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return -ENODEV;
392
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400393 while (retval + input_event_size() <= count &&
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400394 evdev_fetch_next_event(client, &event)) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500395
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400396 if (input_event_to_user(buffer + retval, &event))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500397 return -EFAULT;
398
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400399 retval += input_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
402 return retval;
403}
404
405/* No kernel lock - fine */
406static unsigned int evdev_poll(struct file *file, poll_table *wait)
407{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400408 struct evdev_client *client = file->private_data;
409 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700410 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400411
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400412 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700413
414 mask = evdev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
415 if (client->head != client->tail)
416 mask |= POLLIN | POLLRDNORM;
417
418 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500421#ifdef CONFIG_COMPAT
422
423#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700424#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500425
426#ifdef __BIG_ENDIAN
427static int bits_to_user(unsigned long *bits, unsigned int maxbit,
428 unsigned int maxlen, void __user *p, int compat)
429{
430 int len, i;
431
432 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700433 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400434 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500435 len = maxlen;
436
437 for (i = 0; i < len / sizeof(compat_long_t); i++)
438 if (copy_to_user((compat_long_t __user *) p + i,
439 (compat_long_t *) bits +
440 i + 1 - ((i % 2) << 1),
441 sizeof(compat_long_t)))
442 return -EFAULT;
443 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700444 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500445 if (len > maxlen)
446 len = maxlen;
447
448 if (copy_to_user(p, bits, len))
449 return -EFAULT;
450 }
451
452 return len;
453}
454#else
455static int bits_to_user(unsigned long *bits, unsigned int maxbit,
456 unsigned int maxlen, void __user *p, int compat)
457{
458 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700459 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
460 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500461
462 if (len > maxlen)
463 len = maxlen;
464
465 return copy_to_user(p, bits, len) ? -EFAULT : len;
466}
467#endif /* __BIG_ENDIAN */
468
469#else
470
471static int bits_to_user(unsigned long *bits, unsigned int maxbit,
472 unsigned int maxlen, void __user *p, int compat)
473{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700474 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500475
476 if (len > maxlen)
477 len = maxlen;
478
479 return copy_to_user(p, bits, len) ? -EFAULT : len;
480}
481
482#endif /* CONFIG_COMPAT */
483
484static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
485{
486 int len;
487
488 if (!str)
489 return -ENOENT;
490
491 len = strlen(str) + 1;
492 if (len > maxlen)
493 len = maxlen;
494
495 return copy_to_user(p, str, len) ? -EFAULT : len;
496}
497
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400498#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700499static int handle_eviocgbit(struct input_dev *dev,
500 unsigned int type, unsigned int size,
501 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400502{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400503 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400504 unsigned long *bits;
505 int len;
506
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700507 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400508
509 case 0: bits = dev->evbit; len = EV_MAX; break;
510 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
511 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
512 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
513 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
514 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
515 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
516 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
517 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
518 default: return -EINVAL;
519 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400520
521 /*
522 * Work around bugs in userspace programs that like to do
523 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
524 * should be in bytes, not in bits.
525 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700526 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400527 len = OLD_KEY_MAX;
528 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800529 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
530 "limiting output to %zu bytes. See "
531 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
532 OLD_KEY_MAX,
533 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400534 }
535
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700536 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400537}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400538#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400539
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800540static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
541{
542 struct input_keymap_entry ke = {
543 .len = sizeof(unsigned int),
544 .flags = 0,
545 };
546 int __user *ip = (int __user *)p;
547 int error;
548
549 /* legacy case */
550 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
551 return -EFAULT;
552
553 error = input_get_keycode(dev, &ke);
554 if (error)
555 return error;
556
557 if (put_user(ke.keycode, ip + 1))
558 return -EFAULT;
559
560 return 0;
561}
562
563static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700564{
565 struct input_keymap_entry ke;
566 int error;
567
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800568 if (copy_from_user(&ke, p, sizeof(ke)))
569 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700570
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800571 error = input_get_keycode(dev, &ke);
572 if (error)
573 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700574
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800575 if (copy_to_user(p, &ke, sizeof(ke)))
576 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700577
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700578 return 0;
579}
580
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800581static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
582{
583 struct input_keymap_entry ke = {
584 .len = sizeof(unsigned int),
585 .flags = 0,
586 };
587 int __user *ip = (int __user *)p;
588
589 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
590 return -EFAULT;
591
592 if (get_user(ke.keycode, ip + 1))
593 return -EFAULT;
594
595 return input_set_keycode(dev, &ke);
596}
597
598static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700599{
600 struct input_keymap_entry ke;
601
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800602 if (copy_from_user(&ke, p, sizeof(ke)))
603 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700604
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800605 if (ke.len > sizeof(ke.scancode))
606 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700607
608 return input_set_keycode(dev, &ke);
609}
610
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400611static long evdev_do_ioctl(struct file *file, unsigned int cmd,
612 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400614 struct evdev_client *client = file->private_data;
615 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 struct input_dev *dev = evdev->handle.dev;
617 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400618 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500619 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800620 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700621 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400622 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700624 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 switch (cmd) {
626
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400627 case EVIOCGVERSION:
628 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400630 case EVIOCGID:
631 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
632 return -EFAULT;
633 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400634
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400635 case EVIOCGREP:
636 if (!test_bit(EV_REP, dev->evbit))
637 return -ENOSYS;
638 if (put_user(dev->rep[REP_DELAY], ip))
639 return -EFAULT;
640 if (put_user(dev->rep[REP_PERIOD], ip + 1))
641 return -EFAULT;
642 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400643
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400644 case EVIOCSREP:
645 if (!test_bit(EV_REP, dev->evbit))
646 return -ENOSYS;
647 if (get_user(u, ip))
648 return -EFAULT;
649 if (get_user(v, ip + 1))
650 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400651
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400652 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
653 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500654
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400655 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400657 case EVIOCRMFF:
658 return input_ff_erase(dev, (int)(unsigned long) p, file);
659
660 case EVIOCGEFFECTS:
661 i = test_bit(EV_FF, dev->evbit) ?
662 dev->ff->max_effects : 0;
663 if (put_user(i, ip))
664 return -EFAULT;
665 return 0;
666
667 case EVIOCGRAB:
668 if (p)
669 return evdev_grab(evdev, client);
670 else
671 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800672
673 case EVIOCGKEYCODE:
674 return evdev_handle_get_keycode(dev, p);
675
676 case EVIOCSKEYCODE:
677 return evdev_handle_set_keycode(dev, p);
678
679 case EVIOCGKEYCODE_V2:
680 return evdev_handle_get_keycode_v2(dev, p);
681
682 case EVIOCSKEYCODE_V2:
683 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700684 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400685
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700686 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400687
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700688 /* Now check variable-length commands */
689#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700690 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400691
Henrik Rydberg85b77202010-12-18 20:51:13 +0100692 case EVIOCGPROP(0):
693 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
694 size, p, compat_mode);
695
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700696 case EVIOCGKEY(0):
697 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400698
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700699 case EVIOCGLED(0):
700 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400701
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700702 case EVIOCGSND(0):
703 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400704
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700705 case EVIOCGSW(0):
706 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400707
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700708 case EVIOCGNAME(0):
709 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400710
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700711 case EVIOCGPHYS(0):
712 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400713
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700714 case EVIOCGUNIQ(0):
715 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400716
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700717 case EVIOC_MASK_SIZE(EVIOCSFF):
718 if (input_ff_effect_from_user(p, size, &effect))
719 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400720
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700721 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400722
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700723 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
724 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400725
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700726 return error;
727 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400728
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700729 /* Multi-number variable-length handlers */
730 if (_IOC_TYPE(cmd) != 'E')
731 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700733 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700735 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
736 return handle_eviocgbit(dev,
737 _IOC_NR(cmd) & EV_MAX, size,
738 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700740 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400741
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700742 if (!dev->absinfo)
743 return -EINVAL;
744
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700745 t = _IOC_NR(cmd) & ABS_MAX;
746 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400747
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700748 if (copy_to_user(p, &abs, min_t(size_t,
749 size, sizeof(struct input_absinfo))))
750 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400751
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700752 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700755
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700756 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700757
758 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
759
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700760 if (!dev->absinfo)
761 return -EINVAL;
762
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700763 t = _IOC_NR(cmd) & ABS_MAX;
764
765 if (copy_from_user(&abs, p, min_t(size_t,
766 size, sizeof(struct input_absinfo))))
767 return -EFAULT;
768
769 if (size < sizeof(struct input_absinfo))
770 abs.resolution = 0;
771
772 /* We can't change number of reserved MT slots */
773 if (t == ABS_MT_SLOT)
774 return -EINVAL;
775
776 /*
777 * Take event lock to ensure that we are not
778 * changing device parameters in the middle
779 * of event.
780 */
781 spin_lock_irq(&dev->event_lock);
782 dev->absinfo[t] = abs;
783 spin_unlock_irq(&dev->event_lock);
784
785 return 0;
786 }
787 }
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return -EINVAL;
790}
791
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400792static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
793 void __user *p, int compat_mode)
794{
795 struct evdev_client *client = file->private_data;
796 struct evdev *evdev = client->evdev;
797 int retval;
798
799 retval = mutex_lock_interruptible(&evdev->mutex);
800 if (retval)
801 return retval;
802
803 if (!evdev->exist) {
804 retval = -ENODEV;
805 goto out;
806 }
807
808 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
809
810 out:
811 mutex_unlock(&evdev->mutex);
812 return retval;
813}
814
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500815static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
816{
817 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
818}
819
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500820#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400821static long evdev_ioctl_compat(struct file *file,
822 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500823{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500824 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500825}
826#endif
827
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400828static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400829 .owner = THIS_MODULE,
830 .read = evdev_read,
831 .write = evdev_write,
832 .poll = evdev_poll,
833 .open = evdev_open,
834 .release = evdev_release,
835 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500836#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400837 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500838#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400839 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200840 .flush = evdev_flush,
841 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842};
843
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400844static int evdev_install_chrdev(struct evdev *evdev)
845{
846 /*
847 * No need to do any locking here as calls to connect and
848 * disconnect are serialized by the input core
849 */
850 evdev_table[evdev->minor] = evdev;
851 return 0;
852}
853
854static void evdev_remove_chrdev(struct evdev *evdev)
855{
856 /*
857 * Lock evdev table to prevent race with evdev_open()
858 */
859 mutex_lock(&evdev_table_mutex);
860 evdev_table[evdev->minor] = NULL;
861 mutex_unlock(&evdev_table_mutex);
862}
863
864/*
865 * Mark device non-existent. This disables writes, ioctls and
866 * prevents new users from opening the device. Already posted
867 * blocking reads will stay, however new ones will fail.
868 */
869static void evdev_mark_dead(struct evdev *evdev)
870{
871 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700872 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400873 mutex_unlock(&evdev->mutex);
874}
875
876static void evdev_cleanup(struct evdev *evdev)
877{
878 struct input_handle *handle = &evdev->handle;
879
880 evdev_mark_dead(evdev);
881 evdev_hangup(evdev);
882 evdev_remove_chrdev(evdev);
883
884 /* evdev is marked dead so no one else accesses evdev->open */
885 if (evdev->open) {
886 input_flush_device(handle, NULL);
887 input_close_device(handle);
888 }
889}
890
891/*
892 * Create new evdev device. Note that input core serializes calls
893 * to connect and disconnect so we don't need to lock evdev_table here.
894 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400895static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
896 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 struct evdev *evdev;
899 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400900 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400902 for (minor = 0; minor < EVDEV_MINORS; minor++)
903 if (!evdev_table[minor])
904 break;
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (minor == EVDEV_MINORS) {
Joe Perchesda0c4902010-11-29 23:33:07 -0800907 pr_err("no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400908 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400911 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
912 if (!evdev)
913 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400915 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400916 spin_lock_init(&evdev->client_lock);
917 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 init_waitqueue_head(&evdev->wait);
919
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700920 dev_set_name(&evdev->dev, "event%d", minor);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700921 evdev->exist = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400923
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400924 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700925 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 evdev->handle.handler = handler;
927 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400928
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400929 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400930 evdev->dev.class = &input_class;
931 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400932 evdev->dev.release = evdev_free;
933 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400935 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400936 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400937 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400939 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400940 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400941 goto err_unregister_handle;
942
943 error = device_add(&evdev->dev);
944 if (error)
945 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400946
947 return 0;
948
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400949 err_cleanup_evdev:
950 evdev_cleanup(evdev);
951 err_unregister_handle:
952 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400953 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400954 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400955 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
958static void evdev_disconnect(struct input_handle *handle)
959{
960 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400962 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400963 evdev_cleanup(evdev);
964 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400965 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400968static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 { .driver_info = 1 }, /* Matches all devices */
970 { }, /* Terminating zero entry */
971};
972
973MODULE_DEVICE_TABLE(input, evdev_ids);
974
975static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400976 .event = evdev_event,
977 .connect = evdev_connect,
978 .disconnect = evdev_disconnect,
979 .fops = &evdev_fops,
980 .minor = EVDEV_MINOR_BASE,
981 .name = "evdev",
982 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983};
984
985static int __init evdev_init(void)
986{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400987 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
990static void __exit evdev_exit(void)
991{
992 input_unregister_handler(&evdev_handler);
993}
994
995module_init(evdev_init);
996module_exit(evdev_exit);
997
998MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
999MODULE_DESCRIPTION("Input driver event char devices");
1000MODULE_LICENSE("GPL");