blob: 70c0eb52ca96219291d936fc40a9d3f4414e09c6 [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
11#define EVDEV_MINOR_BASE 64
12#define EVDEV_MINORS 32
Henrik Rydberg63a64042010-06-10 12:05:24 -070013#define EVDEV_MIN_BUFFER_SIZE 64U
14#define EVDEV_BUF_PACKETS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <linux/poll.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040017#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/slab.h>
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/input.h>
22#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/device.h>
Philip Langdale2d56f3a2008-10-16 22:31:42 -040024#include "input-compat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26struct evdev {
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 int open;
28 int minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 struct input_handle handle;
30 wait_queue_head_t wait;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040031 struct evdev_client *grab;
32 struct list_head client_list;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040033 spinlock_t client_lock; /* protects client_list */
34 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040035 struct device dev;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -070036 bool exist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
38
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040039struct evdev_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 int head;
41 int tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040042 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 struct fasync_struct *fasync;
44 struct evdev *evdev;
45 struct list_head node;
Henrik Rydbergb58f7082010-06-23 09:17:56 -070046 int bufsize;
47 struct input_event buffer[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
50static struct evdev *evdev_table[EVDEV_MINORS];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040051static DEFINE_MUTEX(evdev_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040053static void evdev_pass_event(struct evdev_client *client,
54 struct input_event *event)
55{
56 /*
Henrik Rydberge725a492010-06-23 10:09:26 -070057 * Interrupts are disabled, just acquire the lock.
58 * Make sure we don't leave with the client buffer
59 * "empty" by having client->head == client->tail.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040060 */
61 spin_lock(&client->buffer_lock);
Henrik Rydberge725a492010-06-23 10:09:26 -070062 do {
63 client->buffer[client->head++] = *event;
64 client->head &= client->bufsize - 1;
65 } while (client->head == client->tail);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040066 spin_unlock(&client->buffer_lock);
67
Adam Jackson30a589f2010-01-05 17:56:04 -080068 if (event->type == EV_SYN)
69 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040070}
71
72/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040073 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040074 */
75static void evdev_event(struct input_handle *handle,
76 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 struct evdev *evdev = handle->private;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040079 struct evdev_client *client;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040080 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040082 do_gettimeofday(&event.time);
83 event.type = type;
84 event.code = code;
85 event.value = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040087 rcu_read_lock();
88
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040089 client = rcu_dereference(evdev->grab);
90 if (client)
91 evdev_pass_event(client, &event);
92 else
93 list_for_each_entry_rcu(client, &evdev->client_list, node)
94 evdev_pass_event(client, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040096 rcu_read_unlock();
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 wake_up_interruptible(&evdev->wait);
99}
100
101static int evdev_fasync(int fd, struct file *file, int on)
102{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400103 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400104
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700105 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400108static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400110 struct evdev_client *client = file->private_data;
111 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400112 int retval;
113
114 retval = mutex_lock_interruptible(&evdev->mutex);
115 if (retval)
116 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400117
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400118 if (!evdev->exist)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400119 retval = -ENODEV;
120 else
121 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400122
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400123 mutex_unlock(&evdev->mutex);
124 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400127static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400129 struct evdev *evdev = container_of(dev, struct evdev, dev);
130
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400131 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 kfree(evdev);
133}
134
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400135/*
136 * Grabs an event device (along with underlying input device).
137 * This function is called with evdev->mutex taken.
138 */
139static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
140{
141 int error;
142
143 if (evdev->grab)
144 return -EBUSY;
145
146 error = input_grab_device(&evdev->handle);
147 if (error)
148 return error;
149
150 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400151 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400152
153 return 0;
154}
155
156static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
157{
158 if (evdev->grab != client)
159 return -EINVAL;
160
161 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400162 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400163 input_release_device(&evdev->handle);
164
165 return 0;
166}
167
168static void evdev_attach_client(struct evdev *evdev,
169 struct evdev_client *client)
170{
171 spin_lock(&evdev->client_lock);
172 list_add_tail_rcu(&client->node, &evdev->client_list);
173 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400174 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400175}
176
177static void evdev_detach_client(struct evdev *evdev,
178 struct evdev_client *client)
179{
180 spin_lock(&evdev->client_lock);
181 list_del_rcu(&client->node);
182 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400183 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400184}
185
186static int evdev_open_device(struct evdev *evdev)
187{
188 int retval;
189
190 retval = mutex_lock_interruptible(&evdev->mutex);
191 if (retval)
192 return retval;
193
194 if (!evdev->exist)
195 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400196 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400197 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400198 if (retval)
199 evdev->open--;
200 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400201
202 mutex_unlock(&evdev->mutex);
203 return retval;
204}
205
206static void evdev_close_device(struct evdev *evdev)
207{
208 mutex_lock(&evdev->mutex);
209
210 if (evdev->exist && !--evdev->open)
211 input_close_device(&evdev->handle);
212
213 mutex_unlock(&evdev->mutex);
214}
215
216/*
217 * Wake up users waiting for IO so they can disconnect from
218 * dead device.
219 */
220static void evdev_hangup(struct evdev *evdev)
221{
222 struct evdev_client *client;
223
224 spin_lock(&evdev->client_lock);
225 list_for_each_entry(client, &evdev->client_list, node)
226 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
227 spin_unlock(&evdev->client_lock);
228
229 wake_up_interruptible(&evdev->wait);
230}
231
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400232static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400234 struct evdev_client *client = file->private_data;
235 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400237 mutex_lock(&evdev->mutex);
238 if (evdev->grab == client)
239 evdev_ungrab(evdev, client);
240 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400242 evdev_detach_client(evdev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400243 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400245 evdev_close_device(evdev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400246 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return 0;
249}
250
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700251static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
252{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700253 unsigned int n_events =
254 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
255 EVDEV_MIN_BUFFER_SIZE);
256
257 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700258}
259
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400260static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400262 struct evdev *evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400263 struct evdev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 int i = iminor(inode) - EVDEV_MINOR_BASE;
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700265 unsigned int bufsize;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400266 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400268 if (i >= EVDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return -ENODEV;
270
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400271 error = mutex_lock_interruptible(&evdev_table_mutex);
272 if (error)
273 return error;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400274 evdev = evdev_table[i];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400275 if (evdev)
276 get_device(&evdev->dev);
277 mutex_unlock(&evdev_table_mutex);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400278
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400279 if (!evdev)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400280 return -ENODEV;
281
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700282 bufsize = evdev_compute_buffer_size(evdev->handle.dev);
283
284 client = kzalloc(sizeof(struct evdev_client) +
285 bufsize * sizeof(struct input_event),
286 GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400287 if (!client) {
288 error = -ENOMEM;
289 goto err_put_evdev;
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700292 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400293 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400294 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400295 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400297 error = evdev_open_device(evdev);
298 if (error)
299 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400301 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800302 nonseekable_open(inode, file);
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400305
306 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400307 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400308 kfree(client);
309 err_put_evdev:
310 put_device(&evdev->dev);
311 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400314static ssize_t evdev_write(struct file *file, const char __user *buffer,
315 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400317 struct evdev_client *client = file->private_data;
318 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 struct input_event event;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400320 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400322 retval = mutex_lock_interruptible(&evdev->mutex);
323 if (retval)
324 return retval;
325
326 if (!evdev->exist) {
327 retval = -ENODEV;
328 goto out;
329 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500330
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500331 while (retval < count) {
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500332
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400333 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400334 retval = -EFAULT;
335 goto out;
336 }
337
338 input_inject_event(&evdev->handle,
339 event.type, event.code, event.value);
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400340 retval += input_event_size();
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500341 }
342
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400343 out:
344 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500345 return retval;
346}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500347
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400348static int evdev_fetch_next_event(struct evdev_client *client,
349 struct input_event *event)
350{
351 int have_event;
352
353 spin_lock_irq(&client->buffer_lock);
354
355 have_event = client->head != client->tail;
356 if (have_event) {
357 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700358 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400359 }
360
361 spin_unlock_irq(&client->buffer_lock);
362
363 return have_event;
364}
365
366static ssize_t evdev_read(struct file *file, char __user *buffer,
367 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400369 struct evdev_client *client = file->private_data;
370 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400371 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 int retval;
373
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400374 if (count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return -EINVAL;
376
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400377 if (client->head == client->tail && evdev->exist &&
378 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return -EAGAIN;
380
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400381 retval = wait_event_interruptible(evdev->wait,
382 client->head != client->tail || !evdev->exist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (retval)
384 return retval;
385
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400386 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return -ENODEV;
388
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400389 while (retval + input_event_size() <= count &&
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400390 evdev_fetch_next_event(client, &event)) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500391
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400392 if (input_event_to_user(buffer + retval, &event))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500393 return -EFAULT;
394
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400395 retval += input_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397
398 return retval;
399}
400
401/* No kernel lock - fine */
402static unsigned int evdev_poll(struct file *file, poll_table *wait)
403{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400404 struct evdev_client *client = file->private_data;
405 struct evdev *evdev = client->evdev;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400406
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400407 poll_wait(file, &evdev->wait, wait);
408 return ((client->head == client->tail) ? 0 : (POLLIN | POLLRDNORM)) |
409 (evdev->exist ? 0 : (POLLHUP | POLLERR));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500412#ifdef CONFIG_COMPAT
413
414#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700415#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500416
417#ifdef __BIG_ENDIAN
418static int bits_to_user(unsigned long *bits, unsigned int maxbit,
419 unsigned int maxlen, void __user *p, int compat)
420{
421 int len, i;
422
423 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700424 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400425 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500426 len = maxlen;
427
428 for (i = 0; i < len / sizeof(compat_long_t); i++)
429 if (copy_to_user((compat_long_t __user *) p + i,
430 (compat_long_t *) bits +
431 i + 1 - ((i % 2) << 1),
432 sizeof(compat_long_t)))
433 return -EFAULT;
434 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700435 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500436 if (len > maxlen)
437 len = maxlen;
438
439 if (copy_to_user(p, bits, len))
440 return -EFAULT;
441 }
442
443 return len;
444}
445#else
446static int bits_to_user(unsigned long *bits, unsigned int maxbit,
447 unsigned int maxlen, void __user *p, int compat)
448{
449 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700450 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
451 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500452
453 if (len > maxlen)
454 len = maxlen;
455
456 return copy_to_user(p, bits, len) ? -EFAULT : len;
457}
458#endif /* __BIG_ENDIAN */
459
460#else
461
462static int bits_to_user(unsigned long *bits, unsigned int maxbit,
463 unsigned int maxlen, void __user *p, int compat)
464{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700465 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500466
467 if (len > maxlen)
468 len = maxlen;
469
470 return copy_to_user(p, bits, len) ? -EFAULT : len;
471}
472
473#endif /* CONFIG_COMPAT */
474
475static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
476{
477 int len;
478
479 if (!str)
480 return -ENOENT;
481
482 len = strlen(str) + 1;
483 if (len > maxlen)
484 len = maxlen;
485
486 return copy_to_user(p, str, len) ? -EFAULT : len;
487}
488
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400489#define OLD_KEY_MAX 0x1ff
Linus Torvalds5402a732008-08-05 11:42:42 -0400490static int handle_eviocgbit(struct input_dev *dev, unsigned int cmd, void __user *p, int compat_mode)
491{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400492 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400493 unsigned long *bits;
494 int len;
495
496 switch (_IOC_NR(cmd) & EV_MAX) {
497
498 case 0: bits = dev->evbit; len = EV_MAX; break;
499 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
500 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
501 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
502 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
503 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
504 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
505 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
506 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
507 default: return -EINVAL;
508 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400509
510 /*
511 * Work around bugs in userspace programs that like to do
512 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
513 * should be in bytes, not in bits.
514 */
515 if ((_IOC_NR(cmd) & EV_MAX) == EV_KEY && _IOC_SIZE(cmd) == OLD_KEY_MAX) {
516 len = OLD_KEY_MAX;
517 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
518 printk(KERN_WARNING
Geert Uytterhoevenc85e2032008-08-19 11:28:23 -0400519 "evdev.c(EVIOCGBIT): Suspicious buffer size %u, "
520 "limiting output to %zu bytes. See "
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400521 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
522 OLD_KEY_MAX,
523 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
524 }
525
Linus Torvalds5402a732008-08-05 11:42:42 -0400526 return bits_to_user(bits, len, _IOC_SIZE(cmd), p, compat_mode);
527}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400528#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400529
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400530static long evdev_do_ioctl(struct file *file, unsigned int cmd,
531 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400533 struct evdev_client *client = file->private_data;
534 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 struct input_dev *dev = evdev->handle.dev;
536 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400537 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500538 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800539 unsigned int i, t, u, v;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400540 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 switch (cmd) {
543
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400544 case EVIOCGVERSION:
545 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400547 case EVIOCGID:
548 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
549 return -EFAULT;
550 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400551
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400552 case EVIOCGREP:
553 if (!test_bit(EV_REP, dev->evbit))
554 return -ENOSYS;
555 if (put_user(dev->rep[REP_DELAY], ip))
556 return -EFAULT;
557 if (put_user(dev->rep[REP_PERIOD], ip + 1))
558 return -EFAULT;
559 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400560
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400561 case EVIOCSREP:
562 if (!test_bit(EV_REP, dev->evbit))
563 return -ENOSYS;
564 if (get_user(u, ip))
565 return -EFAULT;
566 if (get_user(v, ip + 1))
567 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400568
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400569 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
570 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500571
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400572 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400574 case EVIOCGKEYCODE:
575 if (get_user(t, ip))
576 return -EFAULT;
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400577
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400578 error = input_get_keycode(dev, t, &v);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400579 if (error)
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400580 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400582 if (put_user(v, ip + 1))
583 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400585 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400587 case EVIOCSKEYCODE:
588 if (get_user(t, ip) || get_user(v, ip + 1))
589 return -EFAULT;
590
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400591 return input_set_keycode(dev, t, v);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400592
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400593 case EVIOCRMFF:
594 return input_ff_erase(dev, (int)(unsigned long) p, file);
595
596 case EVIOCGEFFECTS:
597 i = test_bit(EV_FF, dev->evbit) ?
598 dev->ff->max_effects : 0;
599 if (put_user(i, ip))
600 return -EFAULT;
601 return 0;
602
603 case EVIOCGRAB:
604 if (p)
605 return evdev_grab(evdev, client);
606 else
607 return evdev_ungrab(evdev, client);
608
609 default:
610
611 if (_IOC_TYPE(cmd) != 'E')
612 return -EINVAL;
613
614 if (_IOC_DIR(cmd) == _IOC_READ) {
615
Linus Torvalds5402a732008-08-05 11:42:42 -0400616 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
617 return handle_eviocgbit(dev, cmd, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400618
619 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGKEY(0)))
620 return bits_to_user(dev->key, KEY_MAX, _IOC_SIZE(cmd),
621 p, compat_mode);
622
623 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGLED(0)))
624 return bits_to_user(dev->led, LED_MAX, _IOC_SIZE(cmd),
625 p, compat_mode);
626
627 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGSND(0)))
628 return bits_to_user(dev->snd, SND_MAX, _IOC_SIZE(cmd),
629 p, compat_mode);
630
631 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGSW(0)))
632 return bits_to_user(dev->sw, SW_MAX, _IOC_SIZE(cmd),
633 p, compat_mode);
634
635 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGNAME(0)))
Daniel Mackf9366012009-07-13 22:22:49 -0700636 return str_to_user(dev->name, _IOC_SIZE(cmd), p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400637
638 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGPHYS(0)))
639 return str_to_user(dev->phys, _IOC_SIZE(cmd), p);
640
641 if (_IOC_NR(cmd) == _IOC_NR(EVIOCGUNIQ(0)))
642 return str_to_user(dev->uniq, _IOC_SIZE(cmd), p);
643
644 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
645
646 t = _IOC_NR(cmd) & ABS_MAX;
647
648 abs.value = dev->abs[t];
649 abs.minimum = dev->absmin[t];
650 abs.maximum = dev->absmax[t];
651 abs.fuzz = dev->absfuzz[t];
652 abs.flat = dev->absflat[t];
Tero Saarniec20a022009-06-10 23:27:24 -0700653 abs.resolution = dev->absres[t];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400654
Tero Saarniec20a022009-06-10 23:27:24 -0700655 if (copy_to_user(p, &abs, min_t(size_t,
656 _IOC_SIZE(cmd),
657 sizeof(struct input_absinfo))))
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400658 return -EFAULT;
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return 0;
661 }
662
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400665 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400667 if (_IOC_NR(cmd) == _IOC_NR(EVIOCSFF)) {
668
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400669 if (input_ff_effect_from_user(p, _IOC_SIZE(cmd), &effect))
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400670 return -EFAULT;
671
672 error = input_ff_upload(dev, &effect, file);
673
674 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
675 return -EFAULT;
676
677 return error;
678 }
679
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400680 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400682 t = _IOC_NR(cmd) & ABS_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Tero Saarniec20a022009-06-10 23:27:24 -0700684 if (copy_from_user(&abs, p, min_t(size_t,
685 _IOC_SIZE(cmd),
686 sizeof(struct input_absinfo))))
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400687 return -EFAULT;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500688
Henrik Rydberg40d007e2010-07-15 23:10:10 -0700689 /* We can't change number of reserved MT slots */
690 if (t == ABS_MT_SLOT)
691 return -EINVAL;
692
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400693 /*
694 * Take event lock to ensure that we are not
695 * changing device parameters in the middle
696 * of event.
697 */
698 spin_lock_irq(&dev->event_lock);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500699
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400700 dev->abs[t] = abs.value;
701 dev->absmin[t] = abs.minimum;
702 dev->absmax[t] = abs.maximum;
703 dev->absfuzz[t] = abs.fuzz;
704 dev->absflat[t] = abs.flat;
Tero Saarniec20a022009-06-10 23:27:24 -0700705 dev->absres[t] = _IOC_SIZE(cmd) < sizeof(struct input_absinfo) ?
706 0 : abs.resolution;
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500707
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400708 spin_unlock_irq(&dev->event_lock);
Vojtech Pavlik41e979f2005-05-29 02:30:15 -0500709
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400710 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714 return -EINVAL;
715}
716
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400717static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
718 void __user *p, int compat_mode)
719{
720 struct evdev_client *client = file->private_data;
721 struct evdev *evdev = client->evdev;
722 int retval;
723
724 retval = mutex_lock_interruptible(&evdev->mutex);
725 if (retval)
726 return retval;
727
728 if (!evdev->exist) {
729 retval = -ENODEV;
730 goto out;
731 }
732
733 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
734
735 out:
736 mutex_unlock(&evdev->mutex);
737 return retval;
738}
739
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500740static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
741{
742 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
743}
744
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500745#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400746static long evdev_ioctl_compat(struct file *file,
747 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500748{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500749 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500750}
751#endif
752
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400753static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400754 .owner = THIS_MODULE,
755 .read = evdev_read,
756 .write = evdev_write,
757 .poll = evdev_poll,
758 .open = evdev_open,
759 .release = evdev_release,
760 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500761#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400762 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500763#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400764 .fasync = evdev_fasync,
765 .flush = evdev_flush
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766};
767
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400768static int evdev_install_chrdev(struct evdev *evdev)
769{
770 /*
771 * No need to do any locking here as calls to connect and
772 * disconnect are serialized by the input core
773 */
774 evdev_table[evdev->minor] = evdev;
775 return 0;
776}
777
778static void evdev_remove_chrdev(struct evdev *evdev)
779{
780 /*
781 * Lock evdev table to prevent race with evdev_open()
782 */
783 mutex_lock(&evdev_table_mutex);
784 evdev_table[evdev->minor] = NULL;
785 mutex_unlock(&evdev_table_mutex);
786}
787
788/*
789 * Mark device non-existent. This disables writes, ioctls and
790 * prevents new users from opening the device. Already posted
791 * blocking reads will stay, however new ones will fail.
792 */
793static void evdev_mark_dead(struct evdev *evdev)
794{
795 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700796 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400797 mutex_unlock(&evdev->mutex);
798}
799
800static void evdev_cleanup(struct evdev *evdev)
801{
802 struct input_handle *handle = &evdev->handle;
803
804 evdev_mark_dead(evdev);
805 evdev_hangup(evdev);
806 evdev_remove_chrdev(evdev);
807
808 /* evdev is marked dead so no one else accesses evdev->open */
809 if (evdev->open) {
810 input_flush_device(handle, NULL);
811 input_close_device(handle);
812 }
813}
814
815/*
816 * Create new evdev device. Note that input core serializes calls
817 * to connect and disconnect so we don't need to lock evdev_table here.
818 */
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400819static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
820 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 struct evdev *evdev;
823 int minor;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400824 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400826 for (minor = 0; minor < EVDEV_MINORS; minor++)
827 if (!evdev_table[minor])
828 break;
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (minor == EVDEV_MINORS) {
831 printk(KERN_ERR "evdev: no more free evdev devices\n");
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400832 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400835 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
836 if (!evdev)
837 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400839 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400840 spin_lock_init(&evdev->client_lock);
841 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 init_waitqueue_head(&evdev->wait);
843
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700844 dev_set_name(&evdev->dev, "event%d", minor);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700845 evdev->exist = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400847
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400848 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700849 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 evdev->handle.handler = handler;
851 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400852
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400853 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400854 evdev->dev.class = &input_class;
855 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400856 evdev->dev.release = evdev_free;
857 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400859 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400860 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400861 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400863 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400864 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400865 goto err_unregister_handle;
866
867 error = device_add(&evdev->dev);
868 if (error)
869 goto err_cleanup_evdev;
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400870
871 return 0;
872
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400873 err_cleanup_evdev:
874 evdev_cleanup(evdev);
875 err_unregister_handle:
876 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400877 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400878 put_device(&evdev->dev);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400879 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
882static void evdev_disconnect(struct input_handle *handle)
883{
884 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400886 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400887 evdev_cleanup(evdev);
888 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400889 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400892static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 { .driver_info = 1 }, /* Matches all devices */
894 { }, /* Terminating zero entry */
895};
896
897MODULE_DEVICE_TABLE(input, evdev_ids);
898
899static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400900 .event = evdev_event,
901 .connect = evdev_connect,
902 .disconnect = evdev_disconnect,
903 .fops = &evdev_fops,
904 .minor = EVDEV_MINOR_BASE,
905 .name = "evdev",
906 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907};
908
909static int __init evdev_init(void)
910{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400911 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
914static void __exit evdev_exit(void)
915{
916 input_unregister_handler(&evdev_handler);
917}
918
919module_init(evdev_init);
920module_exit(evdev_exit);
921
922MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
923MODULE_DESCRIPTION("Input driver event char devices");
924MODULE_LICENSE("GPL");