blob: 17660b1c85911206c620aa0c2a2b3e5893dba02a [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
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400324 retval = mutex_lock_interruptible(&evdev->mutex);
325 if (retval)
326 return retval;
327
328 if (!evdev->exist) {
329 retval = -ENODEV;
330 goto out;
331 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500332
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500333 while (retval < count) {
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500334
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400335 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400336 retval = -EFAULT;
337 goto out;
338 }
339
340 input_inject_event(&evdev->handle,
341 event.type, event.code, event.value);
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400342 retval += input_event_size();
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500343 }
344
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400345 out:
346 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500347 return retval;
348}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500349
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400350static int evdev_fetch_next_event(struct evdev_client *client,
351 struct input_event *event)
352{
353 int have_event;
354
355 spin_lock_irq(&client->buffer_lock);
356
357 have_event = client->head != client->tail;
358 if (have_event) {
359 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700360 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400361 }
362
363 spin_unlock_irq(&client->buffer_lock);
364
365 return have_event;
366}
367
368static ssize_t evdev_read(struct file *file, char __user *buffer,
369 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400371 struct evdev_client *client = file->private_data;
372 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400373 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 int retval;
375
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400376 if (count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return -EINVAL;
378
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400379 if (client->head == client->tail && evdev->exist &&
380 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return -EAGAIN;
382
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400383 retval = wait_event_interruptible(evdev->wait,
384 client->head != client->tail || !evdev->exist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (retval)
386 return retval;
387
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400388 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return -ENODEV;
390
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400391 while (retval + input_event_size() <= count &&
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400392 evdev_fetch_next_event(client, &event)) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500393
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400394 if (input_event_to_user(buffer + retval, &event))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500395 return -EFAULT;
396
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400397 retval += input_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
400 return retval;
401}
402
403/* No kernel lock - fine */
404static unsigned int evdev_poll(struct file *file, poll_table *wait)
405{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400406 struct evdev_client *client = file->private_data;
407 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700408 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400409
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400410 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700411
412 mask = evdev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
413 if (client->head != client->tail)
414 mask |= POLLIN | POLLRDNORM;
415
416 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500419#ifdef CONFIG_COMPAT
420
421#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700422#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500423
424#ifdef __BIG_ENDIAN
425static int bits_to_user(unsigned long *bits, unsigned int maxbit,
426 unsigned int maxlen, void __user *p, int compat)
427{
428 int len, i;
429
430 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700431 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400432 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500433 len = maxlen;
434
435 for (i = 0; i < len / sizeof(compat_long_t); i++)
436 if (copy_to_user((compat_long_t __user *) p + i,
437 (compat_long_t *) bits +
438 i + 1 - ((i % 2) << 1),
439 sizeof(compat_long_t)))
440 return -EFAULT;
441 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700442 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500443 if (len > maxlen)
444 len = maxlen;
445
446 if (copy_to_user(p, bits, len))
447 return -EFAULT;
448 }
449
450 return len;
451}
452#else
453static int bits_to_user(unsigned long *bits, unsigned int maxbit,
454 unsigned int maxlen, void __user *p, int compat)
455{
456 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700457 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
458 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500459
460 if (len > maxlen)
461 len = maxlen;
462
463 return copy_to_user(p, bits, len) ? -EFAULT : len;
464}
465#endif /* __BIG_ENDIAN */
466
467#else
468
469static int bits_to_user(unsigned long *bits, unsigned int maxbit,
470 unsigned int maxlen, void __user *p, int compat)
471{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700472 int len = 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
480#endif /* CONFIG_COMPAT */
481
482static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
483{
484 int len;
485
486 if (!str)
487 return -ENOENT;
488
489 len = strlen(str) + 1;
490 if (len > maxlen)
491 len = maxlen;
492
493 return copy_to_user(p, str, len) ? -EFAULT : len;
494}
495
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400496#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700497static int handle_eviocgbit(struct input_dev *dev,
498 unsigned int type, unsigned int size,
499 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400500{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400501 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400502 unsigned long *bits;
503 int len;
504
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700505 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400506
507 case 0: bits = dev->evbit; len = EV_MAX; break;
508 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
509 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
510 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
511 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
512 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
513 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
514 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
515 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
516 default: return -EINVAL;
517 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400518
519 /*
520 * Work around bugs in userspace programs that like to do
521 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
522 * should be in bytes, not in bits.
523 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700524 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400525 len = OLD_KEY_MAX;
526 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800527 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
528 "limiting output to %zu bytes. See "
529 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
530 OLD_KEY_MAX,
531 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400532 }
533
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700534 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400535}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400536#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400537
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700538static int evdev_handle_get_keycode(struct input_dev *dev,
539 void __user *p, size_t size)
540{
541 struct input_keymap_entry ke;
542 int error;
543
544 memset(&ke, 0, sizeof(ke));
545
546 if (size == sizeof(unsigned int[2])) {
547 /* legacy case */
548 int __user *ip = (int __user *)p;
549
550 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
551 return -EFAULT;
552
553 ke.len = sizeof(unsigned int);
554 ke.flags = 0;
555
556 error = input_get_keycode(dev, &ke);
557 if (error)
558 return error;
559
560 if (put_user(ke.keycode, ip + 1))
561 return -EFAULT;
562
563 } else {
564 size = min(size, sizeof(ke));
565
566 if (copy_from_user(&ke, p, size))
567 return -EFAULT;
568
569 error = input_get_keycode(dev, &ke);
570 if (error)
571 return error;
572
573 if (copy_to_user(p, &ke, size))
574 return -EFAULT;
575 }
576 return 0;
577}
578
579static int evdev_handle_set_keycode(struct input_dev *dev,
580 void __user *p, size_t size)
581{
582 struct input_keymap_entry ke;
583
584 memset(&ke, 0, sizeof(ke));
585
586 if (size == sizeof(unsigned int[2])) {
587 /* legacy case */
588 int __user *ip = (int __user *)p;
589
590 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
591 return -EFAULT;
592
593 if (get_user(ke.keycode, ip + 1))
594 return -EFAULT;
595
596 ke.len = sizeof(unsigned int);
597 ke.flags = 0;
598
599 } else {
600 size = min(size, sizeof(ke));
601
602 if (copy_from_user(&ke, p, size))
603 return -EFAULT;
604
605 if (ke.len > sizeof(ke.scancode))
606 return -EINVAL;
607 }
608
609 return input_set_keycode(dev, &ke);
610}
611
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400612static long evdev_do_ioctl(struct file *file, unsigned int cmd,
613 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400615 struct evdev_client *client = file->private_data;
616 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct input_dev *dev = evdev->handle.dev;
618 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400619 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500620 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800621 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700622 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400623 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700625 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 switch (cmd) {
627
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400628 case EVIOCGVERSION:
629 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400631 case EVIOCGID:
632 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
633 return -EFAULT;
634 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400635
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400636 case EVIOCGREP:
637 if (!test_bit(EV_REP, dev->evbit))
638 return -ENOSYS;
639 if (put_user(dev->rep[REP_DELAY], ip))
640 return -EFAULT;
641 if (put_user(dev->rep[REP_PERIOD], ip + 1))
642 return -EFAULT;
643 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400644
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400645 case EVIOCSREP:
646 if (!test_bit(EV_REP, dev->evbit))
647 return -ENOSYS;
648 if (get_user(u, ip))
649 return -EFAULT;
650 if (get_user(v, ip + 1))
651 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400652
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400653 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
654 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500655
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400656 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400658 case EVIOCRMFF:
659 return input_ff_erase(dev, (int)(unsigned long) p, file);
660
661 case EVIOCGEFFECTS:
662 i = test_bit(EV_FF, dev->evbit) ?
663 dev->ff->max_effects : 0;
664 if (put_user(i, ip))
665 return -EFAULT;
666 return 0;
667
668 case EVIOCGRAB:
669 if (p)
670 return evdev_grab(evdev, client);
671 else
672 return evdev_ungrab(evdev, client);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700673 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400674
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700675 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400676
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700677 /* Now check variable-length commands */
678#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700679 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400680
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700681 case EVIOCGKEY(0):
682 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400683
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700684 case EVIOCGLED(0):
685 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400686
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700687 case EVIOCGSND(0):
688 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400689
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700690 case EVIOCGSW(0):
691 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400692
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700693 case EVIOCGNAME(0):
694 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400695
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700696 case EVIOCGPHYS(0):
697 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400698
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700699 case EVIOCGUNIQ(0):
700 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400701
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700702 case EVIOC_MASK_SIZE(EVIOCSFF):
703 if (input_ff_effect_from_user(p, size, &effect))
704 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400705
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700706 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400707
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700708 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
709 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400710
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700711 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700712
713 case EVIOC_MASK_SIZE(EVIOCGKEYCODE):
714 return evdev_handle_get_keycode(dev, p, size);
715
716 case EVIOC_MASK_SIZE(EVIOCSKEYCODE):
717 return evdev_handle_set_keycode(dev, p, size);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700718 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400719
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700720 /* Multi-number variable-length handlers */
721 if (_IOC_TYPE(cmd) != 'E')
722 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700724 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700726 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
727 return handle_eviocgbit(dev,
728 _IOC_NR(cmd) & EV_MAX, size,
729 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700731 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400732
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700733 if (!dev->absinfo)
734 return -EINVAL;
735
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700736 t = _IOC_NR(cmd) & ABS_MAX;
737 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400738
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700739 if (copy_to_user(p, &abs, min_t(size_t,
740 size, sizeof(struct input_absinfo))))
741 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400742
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700743 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700746
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700747 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700748
749 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
750
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700751 if (!dev->absinfo)
752 return -EINVAL;
753
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700754 t = _IOC_NR(cmd) & ABS_MAX;
755
756 if (copy_from_user(&abs, p, min_t(size_t,
757 size, sizeof(struct input_absinfo))))
758 return -EFAULT;
759
760 if (size < sizeof(struct input_absinfo))
761 abs.resolution = 0;
762
763 /* We can't change number of reserved MT slots */
764 if (t == ABS_MT_SLOT)
765 return -EINVAL;
766
767 /*
768 * Take event lock to ensure that we are not
769 * changing device parameters in the middle
770 * of event.
771 */
772 spin_lock_irq(&dev->event_lock);
773 dev->absinfo[t] = abs;
774 spin_unlock_irq(&dev->event_lock);
775
776 return 0;
777 }
778 }
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return -EINVAL;
781}
782
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400783static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
784 void __user *p, int compat_mode)
785{
786 struct evdev_client *client = file->private_data;
787 struct evdev *evdev = client->evdev;
788 int retval;
789
790 retval = mutex_lock_interruptible(&evdev->mutex);
791 if (retval)
792 return retval;
793
794 if (!evdev->exist) {
795 retval = -ENODEV;
796 goto out;
797 }
798
799 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
800
801 out:
802 mutex_unlock(&evdev->mutex);
803 return retval;
804}
805
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500806static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
807{
808 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
809}
810
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500811#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400812static long evdev_ioctl_compat(struct file *file,
813 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500814{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500815 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500816}
817#endif
818
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400819static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400820 .owner = THIS_MODULE,
821 .read = evdev_read,
822 .write = evdev_write,
823 .poll = evdev_poll,
824 .open = evdev_open,
825 .release = evdev_release,
826 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500827#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400828 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500829#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400830 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200831 .flush = evdev_flush,
832 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833};
834
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400835static int evdev_install_chrdev(struct evdev *evdev)
836{
837 /*
838 * No need to do any locking here as calls to connect and
839 * disconnect are serialized by the input core
840 */
841 evdev_table[evdev->minor] = evdev;
842 return 0;
843}
844
845static void evdev_remove_chrdev(struct evdev *evdev)
846{
847 /*
848 * Lock evdev table to prevent race with evdev_open()
849 */
850 mutex_lock(&evdev_table_mutex);
851 evdev_table[evdev->minor] = NULL;
852 mutex_unlock(&evdev_table_mutex);
853}
854
855/*
856 * Mark device non-existent. This disables writes, ioctls and
857 * prevents new users from opening the device. Already posted
858 * blocking reads will stay, however new ones will fail.
859 */
860static void evdev_mark_dead(struct evdev *evdev)
861{
862 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700863 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400864 mutex_unlock(&evdev->mutex);
865}
866
867static void evdev_cleanup(struct evdev *evdev)
868{
869 struct input_handle *handle = &evdev->handle;
870
871 evdev_mark_dead(evdev);
872 evdev_hangup(evdev);
873 evdev_remove_chrdev(evdev);
874
875 /* evdev is marked dead so no one else accesses evdev->open */
876 if (evdev->open) {
877 input_flush_device(handle, NULL);
878 input_close_device(handle);
879 }
880}
881
882/*
883 * Create new evdev device. Note that input core serializes calls
884 * to connect and disconnect so we don't need to lock evdev_table here.
885 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400886static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
887 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 struct evdev *evdev;
890 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400891 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400893 for (minor = 0; minor < EVDEV_MINORS; minor++)
894 if (!evdev_table[minor])
895 break;
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (minor == EVDEV_MINORS) {
Joe Perchesda0c4902010-11-29 23:33:07 -0800898 pr_err("no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400899 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400902 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
903 if (!evdev)
904 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400906 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400907 spin_lock_init(&evdev->client_lock);
908 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 init_waitqueue_head(&evdev->wait);
910
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700911 dev_set_name(&evdev->dev, "event%d", minor);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700912 evdev->exist = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400914
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400915 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700916 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 evdev->handle.handler = handler;
918 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400919
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400920 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400921 evdev->dev.class = &input_class;
922 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400923 evdev->dev.release = evdev_free;
924 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400926 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400927 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400928 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400930 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400931 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400932 goto err_unregister_handle;
933
934 error = device_add(&evdev->dev);
935 if (error)
936 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400937
938 return 0;
939
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400940 err_cleanup_evdev:
941 evdev_cleanup(evdev);
942 err_unregister_handle:
943 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400944 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400945 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400946 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
949static void evdev_disconnect(struct input_handle *handle)
950{
951 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400953 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400954 evdev_cleanup(evdev);
955 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400956 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400959static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 { .driver_info = 1 }, /* Matches all devices */
961 { }, /* Terminating zero entry */
962};
963
964MODULE_DEVICE_TABLE(input, evdev_ids);
965
966static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400967 .event = evdev_event,
968 .connect = evdev_connect,
969 .disconnect = evdev_disconnect,
970 .fops = &evdev_fops,
971 .minor = EVDEV_MINOR_BASE,
972 .name = "evdev",
973 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974};
975
976static int __init evdev_init(void)
977{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -0400978 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
981static void __exit evdev_exit(void)
982{
983 input_unregister_handler(&evdev_handler);
984}
985
986module_init(evdev_init);
987module_exit(evdev_exit);
988
989MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
990MODULE_DESCRIPTION("Input driver event char devices");
991MODULE_LICENSE("GPL");