blob: e4cad161be9d832d5baeaabe047024c2dbe4332e [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>
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +010023#include <linux/input/mt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100626static int evdev_handle_mt_request(struct input_dev *dev,
627 unsigned int size,
628 int __user *ip)
629{
630 const struct input_mt_slot *mt = dev->mt;
631 unsigned int code;
632 int max_slots;
633 int i;
634
635 if (get_user(code, &ip[0]))
636 return -EFAULT;
637 if (!input_is_mt_value(code))
638 return -EINVAL;
639
640 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
641 for (i = 0; i < dev->mtsize && i < max_slots; i++)
642 if (put_user(input_mt_get_value(&mt[i], code), &ip[1 + i]))
643 return -EFAULT;
644
645 return 0;
646}
647
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400648static long evdev_do_ioctl(struct file *file, unsigned int cmd,
649 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400651 struct evdev_client *client = file->private_data;
652 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 struct input_dev *dev = evdev->handle.dev;
654 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400655 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500656 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800657 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700658 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400659 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700661 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 switch (cmd) {
663
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400664 case EVIOCGVERSION:
665 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400667 case EVIOCGID:
668 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
669 return -EFAULT;
670 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400671
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400672 case EVIOCGREP:
673 if (!test_bit(EV_REP, dev->evbit))
674 return -ENOSYS;
675 if (put_user(dev->rep[REP_DELAY], ip))
676 return -EFAULT;
677 if (put_user(dev->rep[REP_PERIOD], ip + 1))
678 return -EFAULT;
679 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400680
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400681 case EVIOCSREP:
682 if (!test_bit(EV_REP, dev->evbit))
683 return -ENOSYS;
684 if (get_user(u, ip))
685 return -EFAULT;
686 if (get_user(v, ip + 1))
687 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400688
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400689 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
690 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500691
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400692 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400694 case EVIOCRMFF:
695 return input_ff_erase(dev, (int)(unsigned long) p, file);
696
697 case EVIOCGEFFECTS:
698 i = test_bit(EV_FF, dev->evbit) ?
699 dev->ff->max_effects : 0;
700 if (put_user(i, ip))
701 return -EFAULT;
702 return 0;
703
704 case EVIOCGRAB:
705 if (p)
706 return evdev_grab(evdev, client);
707 else
708 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800709
710 case EVIOCGKEYCODE:
711 return evdev_handle_get_keycode(dev, p);
712
713 case EVIOCSKEYCODE:
714 return evdev_handle_set_keycode(dev, p);
715
716 case EVIOCGKEYCODE_V2:
717 return evdev_handle_get_keycode_v2(dev, p);
718
719 case EVIOCSKEYCODE_V2:
720 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700721 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400722
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700723 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400724
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700725 /* Now check variable-length commands */
726#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700727 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400728
Henrik Rydberg85b77202010-12-18 20:51:13 +0100729 case EVIOCGPROP(0):
730 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
731 size, p, compat_mode);
732
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100733 case EVIOCGMTSLOTS(0):
734 return evdev_handle_mt_request(dev, size, ip);
735
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700736 case EVIOCGKEY(0):
737 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400738
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700739 case EVIOCGLED(0):
740 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400741
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700742 case EVIOCGSND(0):
743 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400744
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700745 case EVIOCGSW(0):
746 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400747
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700748 case EVIOCGNAME(0):
749 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400750
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700751 case EVIOCGPHYS(0):
752 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400753
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700754 case EVIOCGUNIQ(0):
755 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400756
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700757 case EVIOC_MASK_SIZE(EVIOCSFF):
758 if (input_ff_effect_from_user(p, size, &effect))
759 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400760
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700761 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400762
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700763 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
764 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400765
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700766 return error;
767 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400768
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700769 /* Multi-number variable-length handlers */
770 if (_IOC_TYPE(cmd) != 'E')
771 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700773 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700775 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
776 return handle_eviocgbit(dev,
777 _IOC_NR(cmd) & EV_MAX, size,
778 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700780 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400781
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700782 if (!dev->absinfo)
783 return -EINVAL;
784
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700785 t = _IOC_NR(cmd) & ABS_MAX;
786 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400787
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700788 if (copy_to_user(p, &abs, min_t(size_t,
789 size, sizeof(struct input_absinfo))))
790 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400791
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700792 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700795
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700796 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700797
798 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
799
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700800 if (!dev->absinfo)
801 return -EINVAL;
802
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700803 t = _IOC_NR(cmd) & ABS_MAX;
804
805 if (copy_from_user(&abs, p, min_t(size_t,
806 size, sizeof(struct input_absinfo))))
807 return -EFAULT;
808
809 if (size < sizeof(struct input_absinfo))
810 abs.resolution = 0;
811
812 /* We can't change number of reserved MT slots */
813 if (t == ABS_MT_SLOT)
814 return -EINVAL;
815
816 /*
817 * Take event lock to ensure that we are not
818 * changing device parameters in the middle
819 * of event.
820 */
821 spin_lock_irq(&dev->event_lock);
822 dev->absinfo[t] = abs;
823 spin_unlock_irq(&dev->event_lock);
824
825 return 0;
826 }
827 }
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return -EINVAL;
830}
831
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400832static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
833 void __user *p, int compat_mode)
834{
835 struct evdev_client *client = file->private_data;
836 struct evdev *evdev = client->evdev;
837 int retval;
838
839 retval = mutex_lock_interruptible(&evdev->mutex);
840 if (retval)
841 return retval;
842
843 if (!evdev->exist) {
844 retval = -ENODEV;
845 goto out;
846 }
847
848 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
849
850 out:
851 mutex_unlock(&evdev->mutex);
852 return retval;
853}
854
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500855static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
856{
857 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
858}
859
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500860#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400861static long evdev_ioctl_compat(struct file *file,
862 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500863{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500864 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500865}
866#endif
867
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400868static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400869 .owner = THIS_MODULE,
870 .read = evdev_read,
871 .write = evdev_write,
872 .poll = evdev_poll,
873 .open = evdev_open,
874 .release = evdev_release,
875 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500876#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400877 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500878#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400879 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200880 .flush = evdev_flush,
881 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882};
883
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400884static int evdev_install_chrdev(struct evdev *evdev)
885{
886 /*
887 * No need to do any locking here as calls to connect and
888 * disconnect are serialized by the input core
889 */
890 evdev_table[evdev->minor] = evdev;
891 return 0;
892}
893
894static void evdev_remove_chrdev(struct evdev *evdev)
895{
896 /*
897 * Lock evdev table to prevent race with evdev_open()
898 */
899 mutex_lock(&evdev_table_mutex);
900 evdev_table[evdev->minor] = NULL;
901 mutex_unlock(&evdev_table_mutex);
902}
903
904/*
905 * Mark device non-existent. This disables writes, ioctls and
906 * prevents new users from opening the device. Already posted
907 * blocking reads will stay, however new ones will fail.
908 */
909static void evdev_mark_dead(struct evdev *evdev)
910{
911 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700912 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400913 mutex_unlock(&evdev->mutex);
914}
915
916static void evdev_cleanup(struct evdev *evdev)
917{
918 struct input_handle *handle = &evdev->handle;
919
920 evdev_mark_dead(evdev);
921 evdev_hangup(evdev);
922 evdev_remove_chrdev(evdev);
923
924 /* evdev is marked dead so no one else accesses evdev->open */
925 if (evdev->open) {
926 input_flush_device(handle, NULL);
927 input_close_device(handle);
928 }
929}
930
931/*
932 * Create new evdev device. Note that input core serializes calls
933 * to connect and disconnect so we don't need to lock evdev_table here.
934 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400935static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
936 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
938 struct evdev *evdev;
939 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400940 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400942 for (minor = 0; minor < EVDEV_MINORS; minor++)
943 if (!evdev_table[minor])
944 break;
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (minor == EVDEV_MINORS) {
Joe Perchesda0c4902010-11-29 23:33:07 -0800947 pr_err("no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400948 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400951 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
952 if (!evdev)
953 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400955 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400956 spin_lock_init(&evdev->client_lock);
957 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 init_waitqueue_head(&evdev->wait);
959
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700960 dev_set_name(&evdev->dev, "event%d", minor);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700961 evdev->exist = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400963
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400964 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700965 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 evdev->handle.handler = handler;
967 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400968
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400969 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400970 evdev->dev.class = &input_class;
971 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400972 evdev->dev.release = evdev_free;
973 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400975 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400976 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400977 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400979 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400980 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400981 goto err_unregister_handle;
982
983 error = device_add(&evdev->dev);
984 if (error)
985 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400986
987 return 0;
988
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400989 err_cleanup_evdev:
990 evdev_cleanup(evdev);
991 err_unregister_handle:
992 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400993 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400994 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400995 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
998static void evdev_disconnect(struct input_handle *handle)
999{
1000 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001002 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001003 evdev_cleanup(evdev);
1004 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001005 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001008static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 { .driver_info = 1 }, /* Matches all devices */
1010 { }, /* Terminating zero entry */
1011};
1012
1013MODULE_DEVICE_TABLE(input, evdev_ids);
1014
1015static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001016 .event = evdev_event,
1017 .connect = evdev_connect,
1018 .disconnect = evdev_disconnect,
1019 .fops = &evdev_fops,
1020 .minor = EVDEV_MINOR_BASE,
1021 .name = "evdev",
1022 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023};
1024
1025static int __init evdev_init(void)
1026{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001027 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
1030static void __exit evdev_exit(void)
1031{
1032 input_unregister_handler(&evdev_handler);
1033}
1034
1035module_init(evdev_init);
1036module_exit(evdev_exit);
1037
1038MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1039MODULE_DESCRIPTION("Input driver event char devices");
1040MODULE_LICENSE("GPL");