blob: a9d871651ce70e5a1f6288b2343b240e599de3b2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Event char devices, giving access to raw input device events.
3 *
4 * Copyright (c) 1999-2002 Vojtech Pavlik
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 */
10
Joe Perchesda0c4902010-11-29 23:33:07 -080011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#define EVDEV_MINOR_BASE 64
14#define EVDEV_MINORS 32
Henrik Rydberg63a64042010-06-10 12:05:24 -070015#define EVDEV_MIN_BUFFER_SIZE 64U
16#define EVDEV_BUF_PACKETS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <linux/poll.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040019#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
21#include <linux/module.h>
22#include <linux/init.h>
23#include <linux/input.h>
24#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/device.h>
Philip Langdale2d56f3a2008-10-16 22:31:42 -040026#include "input-compat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28struct evdev {
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 int open;
30 int minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 struct input_handle handle;
32 wait_queue_head_t wait;
Arnd Bergmann2be85272010-03-04 15:50:28 +010033 struct evdev_client __rcu *grab;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040034 struct list_head client_list;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040035 spinlock_t client_lock; /* protects client_list */
36 struct mutex mutex;
Dmitry Torokhov9657d752007-06-14 23:32:24 -040037 struct device dev;
Dmitry Torokhov20da92d2010-07-15 23:27:36 -070038 bool exist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040041struct evdev_client {
Jeff Brown9fb0f142011-04-12 23:29:38 -070042 unsigned int head;
43 unsigned int tail;
Jeff Browncdda9112011-04-26 22:16:11 -070044 unsigned int packet_head; /* [future] position of the first element of next packet */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040045 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 struct fasync_struct *fasync;
47 struct evdev *evdev;
48 struct list_head node;
Jeff Brown9fb0f142011-04-12 23:29:38 -070049 unsigned int bufsize;
Henrik Rydbergb58f7082010-06-23 09:17:56 -070050 struct input_event buffer[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
53static struct evdev *evdev_table[EVDEV_MINORS];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040054static DEFINE_MUTEX(evdev_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040056static void evdev_pass_event(struct evdev_client *client,
57 struct input_event *event)
58{
Jeff Brown9fb0f142011-04-12 23:29:38 -070059 /* Interrupts are disabled, just acquire the lock. */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040060 spin_lock(&client->buffer_lock);
Jeff Brown9fb0f142011-04-12 23:29:38 -070061
62 client->buffer[client->head++] = *event;
63 client->head &= client->bufsize - 1;
64
65 if (unlikely(client->head == client->tail)) {
66 /*
67 * This effectively "drops" all unconsumed events, leaving
68 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
69 */
70 client->tail = (client->head - 2) & (client->bufsize - 1);
71
72 client->buffer[client->tail].time = event->time;
73 client->buffer[client->tail].type = EV_SYN;
74 client->buffer[client->tail].code = SYN_DROPPED;
75 client->buffer[client->tail].value = 0;
Jeff Browncdda9112011-04-26 22:16:11 -070076
77 client->packet_head = client->tail;
78 }
79
80 if (event->type == EV_SYN && event->code == SYN_REPORT) {
81 client->packet_head = client->head;
82 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Jeff Brown9fb0f142011-04-12 23:29:38 -070083 }
84
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040085 spin_unlock(&client->buffer_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040086}
87
88/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040089 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040090 */
91static void evdev_event(struct input_handle *handle,
92 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 struct evdev *evdev = handle->private;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -040095 struct evdev_client *client;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040096 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040098 do_gettimeofday(&event.time);
99 event.type = type;
100 event.code = code;
101 event.value = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400103 rcu_read_lock();
104
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400105 client = rcu_dereference(evdev->grab);
106 if (client)
107 evdev_pass_event(client, &event);
108 else
109 list_for_each_entry_rcu(client, &evdev->client_list, node)
110 evdev_pass_event(client, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400112 rcu_read_unlock();
113
Dmitry Torokhovda40b0b2011-06-18 02:50:11 -0700114 if (type == EV_SYN && code == SYN_REPORT)
115 wake_up_interruptible(&evdev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118static int evdev_fasync(int fd, struct file *file, int on)
119{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400120 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400121
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700122 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400125static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400127 struct evdev_client *client = file->private_data;
128 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400129 int retval;
130
131 retval = mutex_lock_interruptible(&evdev->mutex);
132 if (retval)
133 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400134
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400135 if (!evdev->exist)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400136 retval = -ENODEV;
137 else
138 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400139
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400140 mutex_unlock(&evdev->mutex);
141 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400144static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400146 struct evdev *evdev = container_of(dev, struct evdev, dev);
147
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400148 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 kfree(evdev);
150}
151
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400152/*
153 * Grabs an event device (along with underlying input device).
154 * This function is called with evdev->mutex taken.
155 */
156static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
157{
158 int error;
159
160 if (evdev->grab)
161 return -EBUSY;
162
163 error = input_grab_device(&evdev->handle);
164 if (error)
165 return error;
166
167 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400168
169 return 0;
170}
171
172static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
173{
174 if (evdev->grab != client)
175 return -EINVAL;
176
177 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400178 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400179 input_release_device(&evdev->handle);
180
181 return 0;
182}
183
184static void evdev_attach_client(struct evdev *evdev,
185 struct evdev_client *client)
186{
187 spin_lock(&evdev->client_lock);
188 list_add_tail_rcu(&client->node, &evdev->client_list);
189 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400190}
191
192static void evdev_detach_client(struct evdev *evdev,
193 struct evdev_client *client)
194{
195 spin_lock(&evdev->client_lock);
196 list_del_rcu(&client->node);
197 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400198 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400199}
200
201static int evdev_open_device(struct evdev *evdev)
202{
203 int retval;
204
205 retval = mutex_lock_interruptible(&evdev->mutex);
206 if (retval)
207 return retval;
208
209 if (!evdev->exist)
210 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400211 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400212 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400213 if (retval)
214 evdev->open--;
215 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400216
217 mutex_unlock(&evdev->mutex);
218 return retval;
219}
220
221static void evdev_close_device(struct evdev *evdev)
222{
223 mutex_lock(&evdev->mutex);
224
225 if (evdev->exist && !--evdev->open)
226 input_close_device(&evdev->handle);
227
228 mutex_unlock(&evdev->mutex);
229}
230
231/*
232 * Wake up users waiting for IO so they can disconnect from
233 * dead device.
234 */
235static void evdev_hangup(struct evdev *evdev)
236{
237 struct evdev_client *client;
238
239 spin_lock(&evdev->client_lock);
240 list_for_each_entry(client, &evdev->client_list, node)
241 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
242 spin_unlock(&evdev->client_lock);
243
244 wake_up_interruptible(&evdev->wait);
245}
246
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400247static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400249 struct evdev_client *client = file->private_data;
250 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400252 mutex_lock(&evdev->mutex);
253 if (evdev->grab == client)
254 evdev_ungrab(evdev, client);
255 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400257 evdev_detach_client(evdev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400258 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400260 evdev_close_device(evdev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400261 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return 0;
264}
265
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700266static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
267{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700268 unsigned int n_events =
269 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
270 EVDEV_MIN_BUFFER_SIZE);
271
272 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700273}
274
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400275static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400277 struct evdev *evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400278 struct evdev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 int i = iminor(inode) - EVDEV_MINOR_BASE;
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700280 unsigned int bufsize;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400281 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400283 if (i >= EVDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return -ENODEV;
285
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400286 error = mutex_lock_interruptible(&evdev_table_mutex);
287 if (error)
288 return error;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400289 evdev = evdev_table[i];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400290 if (evdev)
291 get_device(&evdev->dev);
292 mutex_unlock(&evdev_table_mutex);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400293
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400294 if (!evdev)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400295 return -ENODEV;
296
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700297 bufsize = evdev_compute_buffer_size(evdev->handle.dev);
298
299 client = kzalloc(sizeof(struct evdev_client) +
300 bufsize * sizeof(struct input_event),
301 GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400302 if (!client) {
303 error = -ENOMEM;
304 goto err_put_evdev;
305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700307 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400308 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400309 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400310 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400312 error = evdev_open_device(evdev);
313 if (error)
314 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400316 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800317 nonseekable_open(inode, file);
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400320
321 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400322 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400323 kfree(client);
324 err_put_evdev:
325 put_device(&evdev->dev);
326 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400329static ssize_t evdev_write(struct file *file, const char __user *buffer,
330 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400332 struct evdev_client *client = file->private_data;
333 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct input_event event;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400335 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Peter Korsgaard439581e2011-02-25 09:30:46 -0800337 if (count < input_event_size())
338 return -EINVAL;
339
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400340 retval = mutex_lock_interruptible(&evdev->mutex);
341 if (retval)
342 return retval;
343
344 if (!evdev->exist) {
345 retval = -ENODEV;
346 goto out;
347 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500348
Peter Korsgaard439581e2011-02-25 09:30:46 -0800349 do {
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400350 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400351 retval = -EFAULT;
352 goto out;
353 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800354 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400355
356 input_inject_event(&evdev->handle,
357 event.type, event.code, event.value);
Peter Korsgaard439581e2011-02-25 09:30:46 -0800358 } while (retval + input_event_size() <= count);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500359
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400360 out:
361 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500362 return retval;
363}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500364
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400365static int evdev_fetch_next_event(struct evdev_client *client,
366 struct input_event *event)
367{
368 int have_event;
369
370 spin_lock_irq(&client->buffer_lock);
371
Dima Zavin566cf5b2011-12-30 15:16:44 -0800372 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400373 if (have_event) {
374 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700375 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400376 }
377
378 spin_unlock_irq(&client->buffer_lock);
379
380 return have_event;
381}
382
383static ssize_t evdev_read(struct file *file, char __user *buffer,
384 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400386 struct evdev_client *client = file->private_data;
387 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400388 struct input_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 int retval;
390
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400391 if (count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return -EINVAL;
393
Jeff Browncdda9112011-04-26 22:16:11 -0700394 if (client->packet_head == client->tail && evdev->exist &&
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400395 (file->f_flags & O_NONBLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return -EAGAIN;
397
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400398 retval = wait_event_interruptible(evdev->wait,
Jeff Browncdda9112011-04-26 22:16:11 -0700399 client->packet_head != client->tail || !evdev->exist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (retval)
401 return retval;
402
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400403 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return -ENODEV;
405
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400406 while (retval + input_event_size() <= count &&
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400407 evdev_fetch_next_event(client, &event)) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500408
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400409 if (input_event_to_user(buffer + retval, &event))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500410 return -EFAULT;
411
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400412 retval += input_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414
Dima Zavine90f8692011-12-30 15:16:44 -0800415 if (retval == 0 && (file->f_flags & O_NONBLOCK))
416 return -EAGAIN;
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return retval;
419}
420
421/* No kernel lock - fine */
422static unsigned int evdev_poll(struct file *file, poll_table *wait)
423{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400424 struct evdev_client *client = file->private_data;
425 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700426 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400427
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400428 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700429
430 mask = evdev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
Jeff Browncdda9112011-04-26 22:16:11 -0700431 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700432 mask |= POLLIN | POLLRDNORM;
433
434 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500437#ifdef CONFIG_COMPAT
438
439#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700440#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500441
442#ifdef __BIG_ENDIAN
443static int bits_to_user(unsigned long *bits, unsigned int maxbit,
444 unsigned int maxlen, void __user *p, int compat)
445{
446 int len, i;
447
448 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700449 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400450 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500451 len = maxlen;
452
453 for (i = 0; i < len / sizeof(compat_long_t); i++)
454 if (copy_to_user((compat_long_t __user *) p + i,
455 (compat_long_t *) bits +
456 i + 1 - ((i % 2) << 1),
457 sizeof(compat_long_t)))
458 return -EFAULT;
459 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700460 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500461 if (len > maxlen)
462 len = maxlen;
463
464 if (copy_to_user(p, bits, len))
465 return -EFAULT;
466 }
467
468 return len;
469}
470#else
471static int bits_to_user(unsigned long *bits, unsigned int maxbit,
472 unsigned int maxlen, void __user *p, int compat)
473{
474 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700475 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
476 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500477
478 if (len > maxlen)
479 len = maxlen;
480
481 return copy_to_user(p, bits, len) ? -EFAULT : len;
482}
483#endif /* __BIG_ENDIAN */
484
485#else
486
487static int bits_to_user(unsigned long *bits, unsigned int maxbit,
488 unsigned int maxlen, void __user *p, int compat)
489{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700490 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500491
492 if (len > maxlen)
493 len = maxlen;
494
495 return copy_to_user(p, bits, len) ? -EFAULT : len;
496}
497
498#endif /* CONFIG_COMPAT */
499
500static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
501{
502 int len;
503
504 if (!str)
505 return -ENOENT;
506
507 len = strlen(str) + 1;
508 if (len > maxlen)
509 len = maxlen;
510
511 return copy_to_user(p, str, len) ? -EFAULT : len;
512}
513
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400514#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700515static int handle_eviocgbit(struct input_dev *dev,
516 unsigned int type, unsigned int size,
517 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400518{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400519 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400520 unsigned long *bits;
521 int len;
522
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700523 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400524
525 case 0: bits = dev->evbit; len = EV_MAX; break;
526 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
527 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
528 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
529 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
530 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
531 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
532 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
533 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
534 default: return -EINVAL;
535 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400536
537 /*
538 * Work around bugs in userspace programs that like to do
539 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
540 * should be in bytes, not in bits.
541 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700542 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400543 len = OLD_KEY_MAX;
544 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800545 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
546 "limiting output to %zu bytes. See "
547 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
548 OLD_KEY_MAX,
549 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400550 }
551
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700552 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400553}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400554#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400555
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800556static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
557{
558 struct input_keymap_entry ke = {
559 .len = sizeof(unsigned int),
560 .flags = 0,
561 };
562 int __user *ip = (int __user *)p;
563 int error;
564
565 /* legacy case */
566 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
567 return -EFAULT;
568
569 error = input_get_keycode(dev, &ke);
570 if (error)
571 return error;
572
573 if (put_user(ke.keycode, ip + 1))
574 return -EFAULT;
575
576 return 0;
577}
578
579static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700580{
581 struct input_keymap_entry ke;
582 int error;
583
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800584 if (copy_from_user(&ke, p, sizeof(ke)))
585 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700586
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800587 error = input_get_keycode(dev, &ke);
588 if (error)
589 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700590
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800591 if (copy_to_user(p, &ke, sizeof(ke)))
592 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700593
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700594 return 0;
595}
596
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800597static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
598{
599 struct input_keymap_entry ke = {
600 .len = sizeof(unsigned int),
601 .flags = 0,
602 };
603 int __user *ip = (int __user *)p;
604
605 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
606 return -EFAULT;
607
608 if (get_user(ke.keycode, ip + 1))
609 return -EFAULT;
610
611 return input_set_keycode(dev, &ke);
612}
613
614static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700615{
616 struct input_keymap_entry ke;
617
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800618 if (copy_from_user(&ke, p, sizeof(ke)))
619 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700620
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800621 if (ke.len > sizeof(ke.scancode))
622 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700623
624 return input_set_keycode(dev, &ke);
625}
626
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400627static long evdev_do_ioctl(struct file *file, unsigned int cmd,
628 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400630 struct evdev_client *client = file->private_data;
631 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 struct input_dev *dev = evdev->handle.dev;
633 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400634 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500635 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800636 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700637 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400638 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700640 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 switch (cmd) {
642
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400643 case EVIOCGVERSION:
644 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400646 case EVIOCGID:
647 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
648 return -EFAULT;
649 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400650
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400651 case EVIOCGREP:
652 if (!test_bit(EV_REP, dev->evbit))
653 return -ENOSYS;
654 if (put_user(dev->rep[REP_DELAY], ip))
655 return -EFAULT;
656 if (put_user(dev->rep[REP_PERIOD], ip + 1))
657 return -EFAULT;
658 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400659
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400660 case EVIOCSREP:
661 if (!test_bit(EV_REP, dev->evbit))
662 return -ENOSYS;
663 if (get_user(u, ip))
664 return -EFAULT;
665 if (get_user(v, ip + 1))
666 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400667
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400668 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
669 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500670
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400671 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400673 case EVIOCRMFF:
674 return input_ff_erase(dev, (int)(unsigned long) p, file);
675
676 case EVIOCGEFFECTS:
677 i = test_bit(EV_FF, dev->evbit) ?
678 dev->ff->max_effects : 0;
679 if (put_user(i, ip))
680 return -EFAULT;
681 return 0;
682
683 case EVIOCGRAB:
684 if (p)
685 return evdev_grab(evdev, client);
686 else
687 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800688
689 case EVIOCGKEYCODE:
690 return evdev_handle_get_keycode(dev, p);
691
692 case EVIOCSKEYCODE:
693 return evdev_handle_set_keycode(dev, p);
694
695 case EVIOCGKEYCODE_V2:
696 return evdev_handle_get_keycode_v2(dev, p);
697
698 case EVIOCSKEYCODE_V2:
699 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700700 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400701
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700702 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400703
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700704 /* Now check variable-length commands */
705#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700706 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400707
Henrik Rydberg85b77202010-12-18 20:51:13 +0100708 case EVIOCGPROP(0):
709 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
710 size, p, compat_mode);
711
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700712 case EVIOCGKEY(0):
713 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400714
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700715 case EVIOCGLED(0):
716 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400717
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700718 case EVIOCGSND(0):
719 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400720
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700721 case EVIOCGSW(0):
722 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400723
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700724 case EVIOCGNAME(0):
725 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400726
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700727 case EVIOCGPHYS(0):
728 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400729
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700730 case EVIOCGUNIQ(0):
731 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400732
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700733 case EVIOC_MASK_SIZE(EVIOCSFF):
734 if (input_ff_effect_from_user(p, size, &effect))
735 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400736
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700737 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400738
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700739 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
740 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400741
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700742 return error;
743 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400744
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700745 /* Multi-number variable-length handlers */
746 if (_IOC_TYPE(cmd) != 'E')
747 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700749 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700751 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
752 return handle_eviocgbit(dev,
753 _IOC_NR(cmd) & EV_MAX, size,
754 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700756 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400757
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700758 if (!dev->absinfo)
759 return -EINVAL;
760
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700761 t = _IOC_NR(cmd) & ABS_MAX;
762 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400763
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700764 if (copy_to_user(p, &abs, min_t(size_t,
765 size, sizeof(struct input_absinfo))))
766 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400767
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700768 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700771
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700772 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700773
774 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
775
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700776 if (!dev->absinfo)
777 return -EINVAL;
778
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700779 t = _IOC_NR(cmd) & ABS_MAX;
780
781 if (copy_from_user(&abs, p, min_t(size_t,
782 size, sizeof(struct input_absinfo))))
783 return -EFAULT;
784
785 if (size < sizeof(struct input_absinfo))
786 abs.resolution = 0;
787
788 /* We can't change number of reserved MT slots */
789 if (t == ABS_MT_SLOT)
790 return -EINVAL;
791
792 /*
793 * Take event lock to ensure that we are not
794 * changing device parameters in the middle
795 * of event.
796 */
797 spin_lock_irq(&dev->event_lock);
798 dev->absinfo[t] = abs;
799 spin_unlock_irq(&dev->event_lock);
800
801 return 0;
802 }
803 }
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return -EINVAL;
806}
807
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400808static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
809 void __user *p, int compat_mode)
810{
811 struct evdev_client *client = file->private_data;
812 struct evdev *evdev = client->evdev;
813 int retval;
814
815 retval = mutex_lock_interruptible(&evdev->mutex);
816 if (retval)
817 return retval;
818
819 if (!evdev->exist) {
820 retval = -ENODEV;
821 goto out;
822 }
823
824 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
825
826 out:
827 mutex_unlock(&evdev->mutex);
828 return retval;
829}
830
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500831static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
832{
833 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
834}
835
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500836#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400837static long evdev_ioctl_compat(struct file *file,
838 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500839{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500840 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500841}
842#endif
843
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400844static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400845 .owner = THIS_MODULE,
846 .read = evdev_read,
847 .write = evdev_write,
848 .poll = evdev_poll,
849 .open = evdev_open,
850 .release = evdev_release,
851 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500852#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400853 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500854#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400855 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200856 .flush = evdev_flush,
857 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858};
859
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400860static int evdev_install_chrdev(struct evdev *evdev)
861{
862 /*
863 * No need to do any locking here as calls to connect and
864 * disconnect are serialized by the input core
865 */
866 evdev_table[evdev->minor] = evdev;
867 return 0;
868}
869
870static void evdev_remove_chrdev(struct evdev *evdev)
871{
872 /*
873 * Lock evdev table to prevent race with evdev_open()
874 */
875 mutex_lock(&evdev_table_mutex);
876 evdev_table[evdev->minor] = NULL;
877 mutex_unlock(&evdev_table_mutex);
878}
879
880/*
881 * Mark device non-existent. This disables writes, ioctls and
882 * prevents new users from opening the device. Already posted
883 * blocking reads will stay, however new ones will fail.
884 */
885static void evdev_mark_dead(struct evdev *evdev)
886{
887 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700888 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400889 mutex_unlock(&evdev->mutex);
890}
891
892static void evdev_cleanup(struct evdev *evdev)
893{
894 struct input_handle *handle = &evdev->handle;
895
896 evdev_mark_dead(evdev);
897 evdev_hangup(evdev);
898 evdev_remove_chrdev(evdev);
899
900 /* evdev is marked dead so no one else accesses evdev->open */
901 if (evdev->open) {
902 input_flush_device(handle, NULL);
903 input_close_device(handle);
904 }
905}
906
907/*
908 * Create new evdev device. Note that input core serializes calls
909 * to connect and disconnect so we don't need to lock evdev_table here.
910 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400911static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
912 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
914 struct evdev *evdev;
915 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400916 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400918 for (minor = 0; minor < EVDEV_MINORS; minor++)
919 if (!evdev_table[minor])
920 break;
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (minor == EVDEV_MINORS) {
Joe Perchesda0c4902010-11-29 23:33:07 -0800923 pr_err("no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400924 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400927 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
928 if (!evdev)
929 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400931 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400932 spin_lock_init(&evdev->client_lock);
933 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 init_waitqueue_head(&evdev->wait);
935
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700936 dev_set_name(&evdev->dev, "event%d", minor);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700937 evdev->exist = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400939
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400940 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700941 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 evdev->handle.handler = handler;
943 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400944
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400945 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400946 evdev->dev.class = &input_class;
947 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400948 evdev->dev.release = evdev_free;
949 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400951 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400952 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400953 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400955 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400956 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400957 goto err_unregister_handle;
958
959 error = device_add(&evdev->dev);
960 if (error)
961 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400962
963 return 0;
964
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400965 err_cleanup_evdev:
966 evdev_cleanup(evdev);
967 err_unregister_handle:
968 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400969 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400970 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400971 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}
973
974static void evdev_disconnect(struct input_handle *handle)
975{
976 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400978 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400979 evdev_cleanup(evdev);
980 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400981 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400984static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 { .driver_info = 1 }, /* Matches all devices */
986 { }, /* Terminating zero entry */
987};
988
989MODULE_DEVICE_TABLE(input, evdev_ids);
990
991static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400992 .event = evdev_event,
993 .connect = evdev_connect,
994 .disconnect = evdev_disconnect,
995 .fops = &evdev_fops,
996 .minor = EVDEV_MINOR_BASE,
997 .name = "evdev",
998 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999};
1000
1001static int __init evdev_init(void)
1002{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001003 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
1006static void __exit evdev_exit(void)
1007{
1008 input_unregister_handler(&evdev_handler);
1009}
1010
1011module_init(evdev_init);
1012module_exit(evdev_exit);
1013
1014MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1015MODULE_DESCRIPTION("Input driver event char devices");
1016MODULE_LICENSE("GPL");