blob: 4cf25347b01546b1578e0b9987d6717c38db0366 [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
372 have_event = client->head != client->tail;
373 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
415 return retval;
416}
417
418/* No kernel lock - fine */
419static unsigned int evdev_poll(struct file *file, poll_table *wait)
420{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400421 struct evdev_client *client = file->private_data;
422 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700423 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400424
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400425 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700426
427 mask = evdev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
Jeff Browncdda9112011-04-26 22:16:11 -0700428 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700429 mask |= POLLIN | POLLRDNORM;
430
431 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500434#ifdef CONFIG_COMPAT
435
436#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700437#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500438
439#ifdef __BIG_ENDIAN
440static int bits_to_user(unsigned long *bits, unsigned int maxbit,
441 unsigned int maxlen, void __user *p, int compat)
442{
443 int len, i;
444
445 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700446 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400447 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500448 len = maxlen;
449
450 for (i = 0; i < len / sizeof(compat_long_t); i++)
451 if (copy_to_user((compat_long_t __user *) p + i,
452 (compat_long_t *) bits +
453 i + 1 - ((i % 2) << 1),
454 sizeof(compat_long_t)))
455 return -EFAULT;
456 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700457 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500458 if (len > maxlen)
459 len = maxlen;
460
461 if (copy_to_user(p, bits, len))
462 return -EFAULT;
463 }
464
465 return len;
466}
467#else
468static int bits_to_user(unsigned long *bits, unsigned int maxbit,
469 unsigned int maxlen, void __user *p, int compat)
470{
471 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700472 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
473 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500474
475 if (len > maxlen)
476 len = maxlen;
477
478 return copy_to_user(p, bits, len) ? -EFAULT : len;
479}
480#endif /* __BIG_ENDIAN */
481
482#else
483
484static int bits_to_user(unsigned long *bits, unsigned int maxbit,
485 unsigned int maxlen, void __user *p, int compat)
486{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700487 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500488
489 if (len > maxlen)
490 len = maxlen;
491
492 return copy_to_user(p, bits, len) ? -EFAULT : len;
493}
494
495#endif /* CONFIG_COMPAT */
496
497static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
498{
499 int len;
500
501 if (!str)
502 return -ENOENT;
503
504 len = strlen(str) + 1;
505 if (len > maxlen)
506 len = maxlen;
507
508 return copy_to_user(p, str, len) ? -EFAULT : len;
509}
510
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400511#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700512static int handle_eviocgbit(struct input_dev *dev,
513 unsigned int type, unsigned int size,
514 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400515{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400516 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400517 unsigned long *bits;
518 int len;
519
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700520 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400521
522 case 0: bits = dev->evbit; len = EV_MAX; break;
523 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
524 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
525 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
526 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
527 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
528 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
529 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
530 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
531 default: return -EINVAL;
532 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400533
534 /*
535 * Work around bugs in userspace programs that like to do
536 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
537 * should be in bytes, not in bits.
538 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700539 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400540 len = OLD_KEY_MAX;
541 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800542 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
543 "limiting output to %zu bytes. See "
544 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
545 OLD_KEY_MAX,
546 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400547 }
548
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700549 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400550}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400551#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400552
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800553static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
554{
555 struct input_keymap_entry ke = {
556 .len = sizeof(unsigned int),
557 .flags = 0,
558 };
559 int __user *ip = (int __user *)p;
560 int error;
561
562 /* legacy case */
563 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
564 return -EFAULT;
565
566 error = input_get_keycode(dev, &ke);
567 if (error)
568 return error;
569
570 if (put_user(ke.keycode, ip + 1))
571 return -EFAULT;
572
573 return 0;
574}
575
576static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700577{
578 struct input_keymap_entry ke;
579 int error;
580
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800581 if (copy_from_user(&ke, p, sizeof(ke)))
582 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700583
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800584 error = input_get_keycode(dev, &ke);
585 if (error)
586 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700587
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800588 if (copy_to_user(p, &ke, sizeof(ke)))
589 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700590
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700591 return 0;
592}
593
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800594static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
595{
596 struct input_keymap_entry ke = {
597 .len = sizeof(unsigned int),
598 .flags = 0,
599 };
600 int __user *ip = (int __user *)p;
601
602 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
603 return -EFAULT;
604
605 if (get_user(ke.keycode, ip + 1))
606 return -EFAULT;
607
608 return input_set_keycode(dev, &ke);
609}
610
611static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700612{
613 struct input_keymap_entry ke;
614
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800615 if (copy_from_user(&ke, p, sizeof(ke)))
616 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700617
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800618 if (ke.len > sizeof(ke.scancode))
619 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700620
621 return input_set_keycode(dev, &ke);
622}
623
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400624static long evdev_do_ioctl(struct file *file, unsigned int cmd,
625 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400627 struct evdev_client *client = file->private_data;
628 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 struct input_dev *dev = evdev->handle.dev;
630 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400631 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500632 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800633 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700634 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400635 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700637 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 switch (cmd) {
639
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400640 case EVIOCGVERSION:
641 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400643 case EVIOCGID:
644 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
645 return -EFAULT;
646 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400647
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400648 case EVIOCGREP:
649 if (!test_bit(EV_REP, dev->evbit))
650 return -ENOSYS;
651 if (put_user(dev->rep[REP_DELAY], ip))
652 return -EFAULT;
653 if (put_user(dev->rep[REP_PERIOD], ip + 1))
654 return -EFAULT;
655 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400656
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400657 case EVIOCSREP:
658 if (!test_bit(EV_REP, dev->evbit))
659 return -ENOSYS;
660 if (get_user(u, ip))
661 return -EFAULT;
662 if (get_user(v, ip + 1))
663 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400664
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400665 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
666 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500667
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400668 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400670 case EVIOCRMFF:
671 return input_ff_erase(dev, (int)(unsigned long) p, file);
672
673 case EVIOCGEFFECTS:
674 i = test_bit(EV_FF, dev->evbit) ?
675 dev->ff->max_effects : 0;
676 if (put_user(i, ip))
677 return -EFAULT;
678 return 0;
679
680 case EVIOCGRAB:
681 if (p)
682 return evdev_grab(evdev, client);
683 else
684 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800685
686 case EVIOCGKEYCODE:
687 return evdev_handle_get_keycode(dev, p);
688
689 case EVIOCSKEYCODE:
690 return evdev_handle_set_keycode(dev, p);
691
692 case EVIOCGKEYCODE_V2:
693 return evdev_handle_get_keycode_v2(dev, p);
694
695 case EVIOCSKEYCODE_V2:
696 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700697 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400698
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700699 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400700
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700701 /* Now check variable-length commands */
702#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700703 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400704
Henrik Rydberg85b77202010-12-18 20:51:13 +0100705 case EVIOCGPROP(0):
706 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
707 size, p, compat_mode);
708
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700709 case EVIOCGKEY(0):
710 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400711
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700712 case EVIOCGLED(0):
713 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400714
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700715 case EVIOCGSND(0):
716 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400717
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700718 case EVIOCGSW(0):
719 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400720
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700721 case EVIOCGNAME(0):
722 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400723
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700724 case EVIOCGPHYS(0):
725 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400726
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700727 case EVIOCGUNIQ(0):
728 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400729
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700730 case EVIOC_MASK_SIZE(EVIOCSFF):
731 if (input_ff_effect_from_user(p, size, &effect))
732 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400733
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700734 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400735
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700736 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
737 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400738
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700739 return error;
740 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400741
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700742 /* Multi-number variable-length handlers */
743 if (_IOC_TYPE(cmd) != 'E')
744 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700746 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700748 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
749 return handle_eviocgbit(dev,
750 _IOC_NR(cmd) & EV_MAX, size,
751 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700753 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400754
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700755 if (!dev->absinfo)
756 return -EINVAL;
757
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700758 t = _IOC_NR(cmd) & ABS_MAX;
759 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400760
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700761 if (copy_to_user(p, &abs, min_t(size_t,
762 size, sizeof(struct input_absinfo))))
763 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400764
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700765 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700768
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700769 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700770
771 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
772
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700773 if (!dev->absinfo)
774 return -EINVAL;
775
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700776 t = _IOC_NR(cmd) & ABS_MAX;
777
778 if (copy_from_user(&abs, p, min_t(size_t,
779 size, sizeof(struct input_absinfo))))
780 return -EFAULT;
781
782 if (size < sizeof(struct input_absinfo))
783 abs.resolution = 0;
784
785 /* We can't change number of reserved MT slots */
786 if (t == ABS_MT_SLOT)
787 return -EINVAL;
788
789 /*
790 * Take event lock to ensure that we are not
791 * changing device parameters in the middle
792 * of event.
793 */
794 spin_lock_irq(&dev->event_lock);
795 dev->absinfo[t] = abs;
796 spin_unlock_irq(&dev->event_lock);
797
798 return 0;
799 }
800 }
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return -EINVAL;
803}
804
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400805static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
806 void __user *p, int compat_mode)
807{
808 struct evdev_client *client = file->private_data;
809 struct evdev *evdev = client->evdev;
810 int retval;
811
812 retval = mutex_lock_interruptible(&evdev->mutex);
813 if (retval)
814 return retval;
815
816 if (!evdev->exist) {
817 retval = -ENODEV;
818 goto out;
819 }
820
821 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
822
823 out:
824 mutex_unlock(&evdev->mutex);
825 return retval;
826}
827
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500828static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
829{
830 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
831}
832
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500833#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400834static long evdev_ioctl_compat(struct file *file,
835 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500836{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500837 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500838}
839#endif
840
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400841static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400842 .owner = THIS_MODULE,
843 .read = evdev_read,
844 .write = evdev_write,
845 .poll = evdev_poll,
846 .open = evdev_open,
847 .release = evdev_release,
848 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500849#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400850 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500851#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400852 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200853 .flush = evdev_flush,
854 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855};
856
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400857static int evdev_install_chrdev(struct evdev *evdev)
858{
859 /*
860 * No need to do any locking here as calls to connect and
861 * disconnect are serialized by the input core
862 */
863 evdev_table[evdev->minor] = evdev;
864 return 0;
865}
866
867static void evdev_remove_chrdev(struct evdev *evdev)
868{
869 /*
870 * Lock evdev table to prevent race with evdev_open()
871 */
872 mutex_lock(&evdev_table_mutex);
873 evdev_table[evdev->minor] = NULL;
874 mutex_unlock(&evdev_table_mutex);
875}
876
877/*
878 * Mark device non-existent. This disables writes, ioctls and
879 * prevents new users from opening the device. Already posted
880 * blocking reads will stay, however new ones will fail.
881 */
882static void evdev_mark_dead(struct evdev *evdev)
883{
884 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700885 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400886 mutex_unlock(&evdev->mutex);
887}
888
889static void evdev_cleanup(struct evdev *evdev)
890{
891 struct input_handle *handle = &evdev->handle;
892
893 evdev_mark_dead(evdev);
894 evdev_hangup(evdev);
895 evdev_remove_chrdev(evdev);
896
897 /* evdev is marked dead so no one else accesses evdev->open */
898 if (evdev->open) {
899 input_flush_device(handle, NULL);
900 input_close_device(handle);
901 }
902}
903
904/*
905 * Create new evdev device. Note that input core serializes calls
906 * to connect and disconnect so we don't need to lock evdev_table here.
907 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400908static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
909 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
911 struct evdev *evdev;
912 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400913 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400915 for (minor = 0; minor < EVDEV_MINORS; minor++)
916 if (!evdev_table[minor])
917 break;
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (minor == EVDEV_MINORS) {
Joe Perchesda0c4902010-11-29 23:33:07 -0800920 pr_err("no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400921 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400924 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
925 if (!evdev)
926 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400928 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400929 spin_lock_init(&evdev->client_lock);
930 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 init_waitqueue_head(&evdev->wait);
932
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700933 dev_set_name(&evdev->dev, "event%d", minor);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700934 evdev->exist = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400936
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400937 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700938 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 evdev->handle.handler = handler;
940 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400941
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400942 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400943 evdev->dev.class = &input_class;
944 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400945 evdev->dev.release = evdev_free;
946 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400948 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400949 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400950 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400952 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400953 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400954 goto err_unregister_handle;
955
956 error = device_add(&evdev->dev);
957 if (error)
958 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400959
960 return 0;
961
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400962 err_cleanup_evdev:
963 evdev_cleanup(evdev);
964 err_unregister_handle:
965 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400966 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400967 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400968 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
971static void evdev_disconnect(struct input_handle *handle)
972{
973 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400975 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400976 evdev_cleanup(evdev);
977 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400978 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400981static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 { .driver_info = 1 }, /* Matches all devices */
983 { }, /* Terminating zero entry */
984};
985
986MODULE_DEVICE_TABLE(input, evdev_ids);
987
988static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400989 .event = evdev_event,
990 .connect = evdev_connect,
991 .disconnect = evdev_disconnect,
992 .fops = &evdev_fops,
993 .minor = EVDEV_MINOR_BASE,
994 .name = "evdev",
995 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996};
997
998static int __init evdev_init(void)
999{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001000 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
1003static void __exit evdev_exit(void)
1004{
1005 input_unregister_handler(&evdev_handler);
1006}
1007
1008module_init(evdev_init);
1009module_exit(evdev_exit);
1010
1011MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1012MODULE_DESCRIPTION("Input driver event char devices");
1013MODULE_LICENSE("GPL");