blob: 76457d50bc3493e351c40fbe5b667d1b2e33ff6a [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
Dima Zavin509f87c2011-12-30 15:16:44 -0800394 if (!(file->f_flags & O_NONBLOCK)) {
395 retval = wait_event_interruptible(evdev->wait,
396 client->packet_head != client->tail ||
397 !evdev->exist);
398 if (retval)
399 return retval;
400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400402 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return -ENODEV;
404
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400405 while (retval + input_event_size() <= count &&
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400406 evdev_fetch_next_event(client, &event)) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500407
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400408 if (input_event_to_user(buffer + retval, &event))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500409 return -EFAULT;
410
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400411 retval += input_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413
Dima Zavine90f8692011-12-30 15:16:44 -0800414 if (retval == 0 && (file->f_flags & O_NONBLOCK))
415 return -EAGAIN;
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return retval;
418}
419
420/* No kernel lock - fine */
421static unsigned int evdev_poll(struct file *file, poll_table *wait)
422{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400423 struct evdev_client *client = file->private_data;
424 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700425 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400426
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400427 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700428
429 mask = evdev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
Jeff Browncdda9112011-04-26 22:16:11 -0700430 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700431 mask |= POLLIN | POLLRDNORM;
432
433 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500436#ifdef CONFIG_COMPAT
437
438#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700439#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500440
441#ifdef __BIG_ENDIAN
442static int bits_to_user(unsigned long *bits, unsigned int maxbit,
443 unsigned int maxlen, void __user *p, int compat)
444{
445 int len, i;
446
447 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700448 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400449 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500450 len = maxlen;
451
452 for (i = 0; i < len / sizeof(compat_long_t); i++)
453 if (copy_to_user((compat_long_t __user *) p + i,
454 (compat_long_t *) bits +
455 i + 1 - ((i % 2) << 1),
456 sizeof(compat_long_t)))
457 return -EFAULT;
458 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700459 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500460 if (len > maxlen)
461 len = maxlen;
462
463 if (copy_to_user(p, bits, len))
464 return -EFAULT;
465 }
466
467 return len;
468}
469#else
470static int bits_to_user(unsigned long *bits, unsigned int maxbit,
471 unsigned int maxlen, void __user *p, int compat)
472{
473 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700474 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
475 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500476
477 if (len > maxlen)
478 len = maxlen;
479
480 return copy_to_user(p, bits, len) ? -EFAULT : len;
481}
482#endif /* __BIG_ENDIAN */
483
484#else
485
486static int bits_to_user(unsigned long *bits, unsigned int maxbit,
487 unsigned int maxlen, void __user *p, int compat)
488{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700489 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500490
491 if (len > maxlen)
492 len = maxlen;
493
494 return copy_to_user(p, bits, len) ? -EFAULT : len;
495}
496
497#endif /* CONFIG_COMPAT */
498
499static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
500{
501 int len;
502
503 if (!str)
504 return -ENOENT;
505
506 len = strlen(str) + 1;
507 if (len > maxlen)
508 len = maxlen;
509
510 return copy_to_user(p, str, len) ? -EFAULT : len;
511}
512
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400513#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700514static int handle_eviocgbit(struct input_dev *dev,
515 unsigned int type, unsigned int size,
516 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400517{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400518 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400519 unsigned long *bits;
520 int len;
521
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700522 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400523
524 case 0: bits = dev->evbit; len = EV_MAX; break;
525 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
526 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
527 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
528 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
529 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
530 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
531 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
532 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
533 default: return -EINVAL;
534 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400535
536 /*
537 * Work around bugs in userspace programs that like to do
538 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
539 * should be in bytes, not in bits.
540 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700541 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400542 len = OLD_KEY_MAX;
543 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800544 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
545 "limiting output to %zu bytes. See "
546 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
547 OLD_KEY_MAX,
548 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400549 }
550
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700551 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400552}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400553#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400554
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800555static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
556{
557 struct input_keymap_entry ke = {
558 .len = sizeof(unsigned int),
559 .flags = 0,
560 };
561 int __user *ip = (int __user *)p;
562 int error;
563
564 /* legacy case */
565 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
566 return -EFAULT;
567
568 error = input_get_keycode(dev, &ke);
569 if (error)
570 return error;
571
572 if (put_user(ke.keycode, ip + 1))
573 return -EFAULT;
574
575 return 0;
576}
577
578static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700579{
580 struct input_keymap_entry ke;
581 int error;
582
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800583 if (copy_from_user(&ke, p, sizeof(ke)))
584 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700585
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800586 error = input_get_keycode(dev, &ke);
587 if (error)
588 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700589
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800590 if (copy_to_user(p, &ke, sizeof(ke)))
591 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700592
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700593 return 0;
594}
595
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800596static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
597{
598 struct input_keymap_entry ke = {
599 .len = sizeof(unsigned int),
600 .flags = 0,
601 };
602 int __user *ip = (int __user *)p;
603
604 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
605 return -EFAULT;
606
607 if (get_user(ke.keycode, ip + 1))
608 return -EFAULT;
609
610 return input_set_keycode(dev, &ke);
611}
612
613static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700614{
615 struct input_keymap_entry ke;
616
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800617 if (copy_from_user(&ke, p, sizeof(ke)))
618 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700619
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800620 if (ke.len > sizeof(ke.scancode))
621 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700622
623 return input_set_keycode(dev, &ke);
624}
625
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400626static long evdev_do_ioctl(struct file *file, unsigned int cmd,
627 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400629 struct evdev_client *client = file->private_data;
630 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 struct input_dev *dev = evdev->handle.dev;
632 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400633 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500634 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800635 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700636 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400637 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700639 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 switch (cmd) {
641
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400642 case EVIOCGVERSION:
643 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400645 case EVIOCGID:
646 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
647 return -EFAULT;
648 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400649
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400650 case EVIOCGREP:
651 if (!test_bit(EV_REP, dev->evbit))
652 return -ENOSYS;
653 if (put_user(dev->rep[REP_DELAY], ip))
654 return -EFAULT;
655 if (put_user(dev->rep[REP_PERIOD], ip + 1))
656 return -EFAULT;
657 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400658
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400659 case EVIOCSREP:
660 if (!test_bit(EV_REP, dev->evbit))
661 return -ENOSYS;
662 if (get_user(u, ip))
663 return -EFAULT;
664 if (get_user(v, ip + 1))
665 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400666
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400667 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
668 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500669
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400670 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400672 case EVIOCRMFF:
673 return input_ff_erase(dev, (int)(unsigned long) p, file);
674
675 case EVIOCGEFFECTS:
676 i = test_bit(EV_FF, dev->evbit) ?
677 dev->ff->max_effects : 0;
678 if (put_user(i, ip))
679 return -EFAULT;
680 return 0;
681
682 case EVIOCGRAB:
683 if (p)
684 return evdev_grab(evdev, client);
685 else
686 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800687
688 case EVIOCGKEYCODE:
689 return evdev_handle_get_keycode(dev, p);
690
691 case EVIOCSKEYCODE:
692 return evdev_handle_set_keycode(dev, p);
693
694 case EVIOCGKEYCODE_V2:
695 return evdev_handle_get_keycode_v2(dev, p);
696
697 case EVIOCSKEYCODE_V2:
698 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700699 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400700
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700701 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400702
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700703 /* Now check variable-length commands */
704#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700705 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400706
Henrik Rydberg85b77202010-12-18 20:51:13 +0100707 case EVIOCGPROP(0):
708 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
709 size, p, compat_mode);
710
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700711 case EVIOCGKEY(0):
712 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400713
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700714 case EVIOCGLED(0):
715 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400716
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700717 case EVIOCGSND(0):
718 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400719
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700720 case EVIOCGSW(0):
721 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400722
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700723 case EVIOCGNAME(0):
724 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400725
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700726 case EVIOCGPHYS(0):
727 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400728
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700729 case EVIOCGUNIQ(0):
730 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400731
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700732 case EVIOC_MASK_SIZE(EVIOCSFF):
733 if (input_ff_effect_from_user(p, size, &effect))
734 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400735
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700736 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400737
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700738 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
739 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400740
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700741 return error;
742 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400743
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700744 /* Multi-number variable-length handlers */
745 if (_IOC_TYPE(cmd) != 'E')
746 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700748 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700750 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
751 return handle_eviocgbit(dev,
752 _IOC_NR(cmd) & EV_MAX, size,
753 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700755 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400756
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700757 if (!dev->absinfo)
758 return -EINVAL;
759
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700760 t = _IOC_NR(cmd) & ABS_MAX;
761 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400762
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700763 if (copy_to_user(p, &abs, min_t(size_t,
764 size, sizeof(struct input_absinfo))))
765 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400766
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700767 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700770
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700771 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700772
773 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
774
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700775 if (!dev->absinfo)
776 return -EINVAL;
777
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700778 t = _IOC_NR(cmd) & ABS_MAX;
779
780 if (copy_from_user(&abs, p, min_t(size_t,
781 size, sizeof(struct input_absinfo))))
782 return -EFAULT;
783
784 if (size < sizeof(struct input_absinfo))
785 abs.resolution = 0;
786
787 /* We can't change number of reserved MT slots */
788 if (t == ABS_MT_SLOT)
789 return -EINVAL;
790
791 /*
792 * Take event lock to ensure that we are not
793 * changing device parameters in the middle
794 * of event.
795 */
796 spin_lock_irq(&dev->event_lock);
797 dev->absinfo[t] = abs;
798 spin_unlock_irq(&dev->event_lock);
799
800 return 0;
801 }
802 }
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return -EINVAL;
805}
806
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400807static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
808 void __user *p, int compat_mode)
809{
810 struct evdev_client *client = file->private_data;
811 struct evdev *evdev = client->evdev;
812 int retval;
813
814 retval = mutex_lock_interruptible(&evdev->mutex);
815 if (retval)
816 return retval;
817
818 if (!evdev->exist) {
819 retval = -ENODEV;
820 goto out;
821 }
822
823 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
824
825 out:
826 mutex_unlock(&evdev->mutex);
827 return retval;
828}
829
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500830static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
831{
832 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
833}
834
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500835#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400836static long evdev_ioctl_compat(struct file *file,
837 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500838{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500839 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500840}
841#endif
842
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400843static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400844 .owner = THIS_MODULE,
845 .read = evdev_read,
846 .write = evdev_write,
847 .poll = evdev_poll,
848 .open = evdev_open,
849 .release = evdev_release,
850 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500851#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400852 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500853#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400854 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200855 .flush = evdev_flush,
856 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857};
858
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400859static int evdev_install_chrdev(struct evdev *evdev)
860{
861 /*
862 * No need to do any locking here as calls to connect and
863 * disconnect are serialized by the input core
864 */
865 evdev_table[evdev->minor] = evdev;
866 return 0;
867}
868
869static void evdev_remove_chrdev(struct evdev *evdev)
870{
871 /*
872 * Lock evdev table to prevent race with evdev_open()
873 */
874 mutex_lock(&evdev_table_mutex);
875 evdev_table[evdev->minor] = NULL;
876 mutex_unlock(&evdev_table_mutex);
877}
878
879/*
880 * Mark device non-existent. This disables writes, ioctls and
881 * prevents new users from opening the device. Already posted
882 * blocking reads will stay, however new ones will fail.
883 */
884static void evdev_mark_dead(struct evdev *evdev)
885{
886 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700887 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400888 mutex_unlock(&evdev->mutex);
889}
890
891static void evdev_cleanup(struct evdev *evdev)
892{
893 struct input_handle *handle = &evdev->handle;
894
895 evdev_mark_dead(evdev);
896 evdev_hangup(evdev);
897 evdev_remove_chrdev(evdev);
898
899 /* evdev is marked dead so no one else accesses evdev->open */
900 if (evdev->open) {
901 input_flush_device(handle, NULL);
902 input_close_device(handle);
903 }
904}
905
906/*
907 * Create new evdev device. Note that input core serializes calls
908 * to connect and disconnect so we don't need to lock evdev_table here.
909 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400910static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
911 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 struct evdev *evdev;
914 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400915 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400917 for (minor = 0; minor < EVDEV_MINORS; minor++)
918 if (!evdev_table[minor])
919 break;
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (minor == EVDEV_MINORS) {
Joe Perchesda0c4902010-11-29 23:33:07 -0800922 pr_err("no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400923 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400926 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
927 if (!evdev)
928 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400930 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400931 spin_lock_init(&evdev->client_lock);
932 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 init_waitqueue_head(&evdev->wait);
934
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700935 dev_set_name(&evdev->dev, "event%d", minor);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700936 evdev->exist = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400938
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400939 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700940 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 evdev->handle.handler = handler;
942 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400943
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400944 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400945 evdev->dev.class = &input_class;
946 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400947 evdev->dev.release = evdev_free;
948 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400950 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400951 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400952 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400954 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400955 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400956 goto err_unregister_handle;
957
958 error = device_add(&evdev->dev);
959 if (error)
960 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400961
962 return 0;
963
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400964 err_cleanup_evdev:
965 evdev_cleanup(evdev);
966 err_unregister_handle:
967 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400968 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400969 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400970 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
973static void evdev_disconnect(struct input_handle *handle)
974{
975 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400977 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400978 evdev_cleanup(evdev);
979 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400980 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400983static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 { .driver_info = 1 }, /* Matches all devices */
985 { }, /* Terminating zero entry */
986};
987
988MODULE_DEVICE_TABLE(input, evdev_ids);
989
990static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400991 .event = evdev_event,
992 .connect = evdev_connect,
993 .disconnect = evdev_disconnect,
994 .fops = &evdev_fops,
995 .minor = EVDEV_MINOR_BASE,
996 .name = "evdev",
997 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998};
999
1000static int __init evdev_init(void)
1001{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001002 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
1005static void __exit evdev_exit(void)
1006{
1007 input_unregister_handler(&evdev_handler);
1008}
1009
1010module_init(evdev_init);
1011module_exit(evdev_exit);
1012
1013MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1014MODULE_DESCRIPTION("Input driver event char devices");
1015MODULE_LICENSE("GPL");