blob: 4b2e10d5d641a9d90f41afdf43f6fb6ed64c5987 [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;
John Stultza80b83b2012-02-03 00:19:07 -080049 int clkid;
Jeff Brown9fb0f142011-04-12 23:29:38 -070050 unsigned int bufsize;
Henrik Rydbergb58f7082010-06-23 09:17:56 -070051 struct input_event buffer[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
54static struct evdev *evdev_table[EVDEV_MINORS];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040055static DEFINE_MUTEX(evdev_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040057static void evdev_pass_event(struct evdev_client *client,
John Stultza80b83b2012-02-03 00:19:07 -080058 struct input_event *event,
59 ktime_t mono, ktime_t real)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040060{
John Stultza80b83b2012-02-03 00:19:07 -080061 event->time = ktime_to_timeval(client->clkid == CLOCK_MONOTONIC ?
62 mono : real);
63
Jeff Brown9fb0f142011-04-12 23:29:38 -070064 /* Interrupts are disabled, just acquire the lock. */
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040065 spin_lock(&client->buffer_lock);
Jeff Brown9fb0f142011-04-12 23:29:38 -070066
67 client->buffer[client->head++] = *event;
68 client->head &= client->bufsize - 1;
69
70 if (unlikely(client->head == client->tail)) {
71 /*
72 * This effectively "drops" all unconsumed events, leaving
73 * EV_SYN/SYN_DROPPED plus the newest event in the queue.
74 */
75 client->tail = (client->head - 2) & (client->bufsize - 1);
76
77 client->buffer[client->tail].time = event->time;
78 client->buffer[client->tail].type = EV_SYN;
79 client->buffer[client->tail].code = SYN_DROPPED;
80 client->buffer[client->tail].value = 0;
Jeff Browncdda9112011-04-26 22:16:11 -070081
82 client->packet_head = client->tail;
83 }
84
85 if (event->type == EV_SYN && event->code == SYN_REPORT) {
86 client->packet_head = client->head;
87 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Jeff Brown9fb0f142011-04-12 23:29:38 -070088 }
89
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040090 spin_unlock(&client->buffer_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040091}
92
93/*
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -040094 * Pass incoming event to all connected clients.
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -040095 */
96static void evdev_event(struct input_handle *handle,
97 unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 struct evdev *evdev = handle->private;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400100 struct evdev_client *client;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400101 struct input_event event;
John Stultza80b83b2012-02-03 00:19:07 -0800102 ktime_t time_mono, time_real;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
John Stultza80b83b2012-02-03 00:19:07 -0800104 time_mono = ktime_get();
105 time_real = ktime_sub(time_mono, ktime_get_monotonic_offset());
106
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400107 event.type = type;
108 event.code = code;
109 event.value = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400111 rcu_read_lock();
112
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400113 client = rcu_dereference(evdev->grab);
John Stultza80b83b2012-02-03 00:19:07 -0800114
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400115 if (client)
John Stultza80b83b2012-02-03 00:19:07 -0800116 evdev_pass_event(client, &event, time_mono, time_real);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400117 else
118 list_for_each_entry_rcu(client, &evdev->client_list, node)
John Stultza80b83b2012-02-03 00:19:07 -0800119 evdev_pass_event(client, &event, time_mono, time_real);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400121 rcu_read_unlock();
122
Dmitry Torokhovda40b0b2011-06-18 02:50:11 -0700123 if (type == EV_SYN && code == SYN_REPORT)
124 wake_up_interruptible(&evdev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127static int evdev_fasync(int fd, struct file *file, int on)
128{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400129 struct evdev_client *client = file->private_data;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400130
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700131 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400134static int evdev_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400136 struct evdev_client *client = file->private_data;
137 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400138 int retval;
139
140 retval = mutex_lock_interruptible(&evdev->mutex);
141 if (retval)
142 return retval;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400143
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400144 if (!evdev->exist)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400145 retval = -ENODEV;
146 else
147 retval = input_flush_device(&evdev->handle, file);
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400148
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400149 mutex_unlock(&evdev->mutex);
150 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400153static void evdev_free(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400155 struct evdev *evdev = container_of(dev, struct evdev, dev);
156
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400157 input_put_device(evdev->handle.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 kfree(evdev);
159}
160
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400161/*
162 * Grabs an event device (along with underlying input device).
163 * This function is called with evdev->mutex taken.
164 */
165static int evdev_grab(struct evdev *evdev, struct evdev_client *client)
166{
167 int error;
168
169 if (evdev->grab)
170 return -EBUSY;
171
172 error = input_grab_device(&evdev->handle);
173 if (error)
174 return error;
175
176 rcu_assign_pointer(evdev->grab, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400177
178 return 0;
179}
180
181static int evdev_ungrab(struct evdev *evdev, struct evdev_client *client)
182{
183 if (evdev->grab != client)
184 return -EINVAL;
185
186 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400187 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400188 input_release_device(&evdev->handle);
189
190 return 0;
191}
192
193static void evdev_attach_client(struct evdev *evdev,
194 struct evdev_client *client)
195{
196 spin_lock(&evdev->client_lock);
197 list_add_tail_rcu(&client->node, &evdev->client_list);
198 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400199}
200
201static void evdev_detach_client(struct evdev *evdev,
202 struct evdev_client *client)
203{
204 spin_lock(&evdev->client_lock);
205 list_del_rcu(&client->node);
206 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400207 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400208}
209
210static int evdev_open_device(struct evdev *evdev)
211{
212 int retval;
213
214 retval = mutex_lock_interruptible(&evdev->mutex);
215 if (retval)
216 return retval;
217
218 if (!evdev->exist)
219 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400220 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400221 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400222 if (retval)
223 evdev->open--;
224 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400225
226 mutex_unlock(&evdev->mutex);
227 return retval;
228}
229
230static void evdev_close_device(struct evdev *evdev)
231{
232 mutex_lock(&evdev->mutex);
233
234 if (evdev->exist && !--evdev->open)
235 input_close_device(&evdev->handle);
236
237 mutex_unlock(&evdev->mutex);
238}
239
240/*
241 * Wake up users waiting for IO so they can disconnect from
242 * dead device.
243 */
244static void evdev_hangup(struct evdev *evdev)
245{
246 struct evdev_client *client;
247
248 spin_lock(&evdev->client_lock);
249 list_for_each_entry(client, &evdev->client_list, node)
250 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
251 spin_unlock(&evdev->client_lock);
252
253 wake_up_interruptible(&evdev->wait);
254}
255
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400256static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400258 struct evdev_client *client = file->private_data;
259 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400261 mutex_lock(&evdev->mutex);
262 if (evdev->grab == client)
263 evdev_ungrab(evdev, client);
264 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400266 evdev_detach_client(evdev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400267 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400269 evdev_close_device(evdev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400270 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return 0;
273}
274
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700275static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
276{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700277 unsigned int n_events =
278 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
279 EVDEV_MIN_BUFFER_SIZE);
280
281 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700282}
283
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400284static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400286 struct evdev *evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400287 struct evdev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 int i = iminor(inode) - EVDEV_MINOR_BASE;
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700289 unsigned int bufsize;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400290 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400292 if (i >= EVDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return -ENODEV;
294
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400295 error = mutex_lock_interruptible(&evdev_table_mutex);
296 if (error)
297 return error;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400298 evdev = evdev_table[i];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400299 if (evdev)
300 get_device(&evdev->dev);
301 mutex_unlock(&evdev_table_mutex);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400302
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400303 if (!evdev)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400304 return -ENODEV;
305
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700306 bufsize = evdev_compute_buffer_size(evdev->handle.dev);
307
308 client = kzalloc(sizeof(struct evdev_client) +
309 bufsize * sizeof(struct input_event),
310 GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400311 if (!client) {
312 error = -ENOMEM;
313 goto err_put_evdev;
314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700316 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400317 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400318 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400319 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400321 error = evdev_open_device(evdev);
322 if (error)
323 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400325 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800326 nonseekable_open(inode, file);
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400329
330 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400331 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400332 kfree(client);
333 err_put_evdev:
334 put_device(&evdev->dev);
335 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400338static ssize_t evdev_write(struct file *file, const char __user *buffer,
339 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400341 struct evdev_client *client = file->private_data;
342 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800344 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Peter Korsgaard439581e2011-02-25 09:30:46 -0800346 if (count < input_event_size())
347 return -EINVAL;
348
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400349 retval = mutex_lock_interruptible(&evdev->mutex);
350 if (retval)
351 return retval;
352
353 if (!evdev->exist) {
354 retval = -ENODEV;
355 goto out;
356 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500357
Peter Korsgaard439581e2011-02-25 09:30:46 -0800358 do {
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400359 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400360 retval = -EFAULT;
361 goto out;
362 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800363 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400364
365 input_inject_event(&evdev->handle,
366 event.type, event.code, event.value);
Peter Korsgaard439581e2011-02-25 09:30:46 -0800367 } while (retval + input_event_size() <= count);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500368
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400369 out:
370 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500371 return retval;
372}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500373
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400374static int evdev_fetch_next_event(struct evdev_client *client,
375 struct input_event *event)
376{
377 int have_event;
378
379 spin_lock_irq(&client->buffer_lock);
380
Dima Zavin566cf5b2011-12-30 15:16:44 -0800381 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400382 if (have_event) {
383 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700384 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400385 }
386
387 spin_unlock_irq(&client->buffer_lock);
388
389 return have_event;
390}
391
392static ssize_t evdev_read(struct file *file, char __user *buffer,
393 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400395 struct evdev_client *client = file->private_data;
396 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400397 struct input_event event;
Heiko Stübner42f57872012-02-01 09:12:23 -0800398 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400400 if (count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return -EINVAL;
402
Dima Zavin509f87c2011-12-30 15:16:44 -0800403 if (!(file->f_flags & O_NONBLOCK)) {
404 retval = wait_event_interruptible(evdev->wait,
405 client->packet_head != client->tail ||
406 !evdev->exist);
407 if (retval)
408 return retval;
409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400411 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return -ENODEV;
413
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400414 while (retval + input_event_size() <= count &&
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400415 evdev_fetch_next_event(client, &event)) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500416
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400417 if (input_event_to_user(buffer + retval, &event))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500418 return -EFAULT;
419
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400420 retval += input_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
Dima Zavine90f8692011-12-30 15:16:44 -0800423 if (retval == 0 && (file->f_flags & O_NONBLOCK))
424 return -EAGAIN;
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return retval;
427}
428
429/* No kernel lock - fine */
430static unsigned int evdev_poll(struct file *file, poll_table *wait)
431{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400432 struct evdev_client *client = file->private_data;
433 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700434 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400435
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400436 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700437
438 mask = evdev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
Jeff Browncdda9112011-04-26 22:16:11 -0700439 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700440 mask |= POLLIN | POLLRDNORM;
441
442 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500445#ifdef CONFIG_COMPAT
446
447#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700448#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500449
450#ifdef __BIG_ENDIAN
451static int bits_to_user(unsigned long *bits, unsigned int maxbit,
452 unsigned int maxlen, void __user *p, int compat)
453{
454 int len, i;
455
456 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700457 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400458 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500459 len = maxlen;
460
461 for (i = 0; i < len / sizeof(compat_long_t); i++)
462 if (copy_to_user((compat_long_t __user *) p + i,
463 (compat_long_t *) bits +
464 i + 1 - ((i % 2) << 1),
465 sizeof(compat_long_t)))
466 return -EFAULT;
467 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700468 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500469 if (len > maxlen)
470 len = maxlen;
471
472 if (copy_to_user(p, bits, len))
473 return -EFAULT;
474 }
475
476 return len;
477}
478#else
479static int bits_to_user(unsigned long *bits, unsigned int maxbit,
480 unsigned int maxlen, void __user *p, int compat)
481{
482 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700483 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
484 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500485
486 if (len > maxlen)
487 len = maxlen;
488
489 return copy_to_user(p, bits, len) ? -EFAULT : len;
490}
491#endif /* __BIG_ENDIAN */
492
493#else
494
495static int bits_to_user(unsigned long *bits, unsigned int maxbit,
496 unsigned int maxlen, void __user *p, int compat)
497{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700498 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500499
500 if (len > maxlen)
501 len = maxlen;
502
503 return copy_to_user(p, bits, len) ? -EFAULT : len;
504}
505
506#endif /* CONFIG_COMPAT */
507
508static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
509{
510 int len;
511
512 if (!str)
513 return -ENOENT;
514
515 len = strlen(str) + 1;
516 if (len > maxlen)
517 len = maxlen;
518
519 return copy_to_user(p, str, len) ? -EFAULT : len;
520}
521
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400522#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700523static int handle_eviocgbit(struct input_dev *dev,
524 unsigned int type, unsigned int size,
525 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400526{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400527 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400528 unsigned long *bits;
529 int len;
530
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700531 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400532
533 case 0: bits = dev->evbit; len = EV_MAX; break;
534 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
535 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
536 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
537 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
538 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
539 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
540 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
541 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
542 default: return -EINVAL;
543 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400544
545 /*
546 * Work around bugs in userspace programs that like to do
547 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
548 * should be in bytes, not in bits.
549 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700550 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400551 len = OLD_KEY_MAX;
552 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800553 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
554 "limiting output to %zu bytes. See "
555 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
556 OLD_KEY_MAX,
557 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400558 }
559
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700560 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400561}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400562#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400563
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800564static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
565{
566 struct input_keymap_entry ke = {
567 .len = sizeof(unsigned int),
568 .flags = 0,
569 };
570 int __user *ip = (int __user *)p;
571 int error;
572
573 /* legacy case */
574 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
575 return -EFAULT;
576
577 error = input_get_keycode(dev, &ke);
578 if (error)
579 return error;
580
581 if (put_user(ke.keycode, ip + 1))
582 return -EFAULT;
583
584 return 0;
585}
586
587static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700588{
589 struct input_keymap_entry ke;
590 int error;
591
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800592 if (copy_from_user(&ke, p, sizeof(ke)))
593 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700594
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800595 error = input_get_keycode(dev, &ke);
596 if (error)
597 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700598
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800599 if (copy_to_user(p, &ke, sizeof(ke)))
600 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700601
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700602 return 0;
603}
604
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800605static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
606{
607 struct input_keymap_entry ke = {
608 .len = sizeof(unsigned int),
609 .flags = 0,
610 };
611 int __user *ip = (int __user *)p;
612
613 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
614 return -EFAULT;
615
616 if (get_user(ke.keycode, ip + 1))
617 return -EFAULT;
618
619 return input_set_keycode(dev, &ke);
620}
621
622static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700623{
624 struct input_keymap_entry ke;
625
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800626 if (copy_from_user(&ke, p, sizeof(ke)))
627 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700628
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800629 if (ke.len > sizeof(ke.scancode))
630 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700631
632 return input_set_keycode(dev, &ke);
633}
634
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100635static int evdev_handle_mt_request(struct input_dev *dev,
636 unsigned int size,
637 int __user *ip)
638{
639 const struct input_mt_slot *mt = dev->mt;
640 unsigned int code;
641 int max_slots;
642 int i;
643
644 if (get_user(code, &ip[0]))
645 return -EFAULT;
646 if (!input_is_mt_value(code))
647 return -EINVAL;
648
649 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
650 for (i = 0; i < dev->mtsize && i < max_slots; i++)
651 if (put_user(input_mt_get_value(&mt[i], code), &ip[1 + i]))
652 return -EFAULT;
653
654 return 0;
655}
656
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400657static long evdev_do_ioctl(struct file *file, unsigned int cmd,
658 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400660 struct evdev_client *client = file->private_data;
661 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 struct input_dev *dev = evdev->handle.dev;
663 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400664 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500665 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800666 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700667 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400668 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700670 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 switch (cmd) {
672
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400673 case EVIOCGVERSION:
674 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400676 case EVIOCGID:
677 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
678 return -EFAULT;
679 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400680
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400681 case EVIOCGREP:
682 if (!test_bit(EV_REP, dev->evbit))
683 return -ENOSYS;
684 if (put_user(dev->rep[REP_DELAY], ip))
685 return -EFAULT;
686 if (put_user(dev->rep[REP_PERIOD], ip + 1))
687 return -EFAULT;
688 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400689
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400690 case EVIOCSREP:
691 if (!test_bit(EV_REP, dev->evbit))
692 return -ENOSYS;
693 if (get_user(u, ip))
694 return -EFAULT;
695 if (get_user(v, ip + 1))
696 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400697
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400698 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
699 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500700
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400701 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400703 case EVIOCRMFF:
704 return input_ff_erase(dev, (int)(unsigned long) p, file);
705
706 case EVIOCGEFFECTS:
707 i = test_bit(EV_FF, dev->evbit) ?
708 dev->ff->max_effects : 0;
709 if (put_user(i, ip))
710 return -EFAULT;
711 return 0;
712
713 case EVIOCGRAB:
714 if (p)
715 return evdev_grab(evdev, client);
716 else
717 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800718
John Stultza80b83b2012-02-03 00:19:07 -0800719 case EVIOCSCLOCKID:
720 if (copy_from_user(&i, p, sizeof(unsigned int)))
721 return -EFAULT;
722 if (i != CLOCK_MONOTONIC && i != CLOCK_REALTIME)
723 return -EINVAL;
724 client->clkid = i;
725 return 0;
726
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800727 case EVIOCGKEYCODE:
728 return evdev_handle_get_keycode(dev, p);
729
730 case EVIOCSKEYCODE:
731 return evdev_handle_set_keycode(dev, p);
732
733 case EVIOCGKEYCODE_V2:
734 return evdev_handle_get_keycode_v2(dev, p);
735
736 case EVIOCSKEYCODE_V2:
737 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700738 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400739
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700740 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400741
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700742 /* Now check variable-length commands */
743#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700744 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400745
Henrik Rydberg85b77202010-12-18 20:51:13 +0100746 case EVIOCGPROP(0):
747 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
748 size, p, compat_mode);
749
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100750 case EVIOCGMTSLOTS(0):
751 return evdev_handle_mt_request(dev, size, ip);
752
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700753 case EVIOCGKEY(0):
754 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400755
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700756 case EVIOCGLED(0):
757 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400758
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700759 case EVIOCGSND(0):
760 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400761
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700762 case EVIOCGSW(0):
763 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400764
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700765 case EVIOCGNAME(0):
766 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400767
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700768 case EVIOCGPHYS(0):
769 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400770
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700771 case EVIOCGUNIQ(0):
772 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400773
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700774 case EVIOC_MASK_SIZE(EVIOCSFF):
775 if (input_ff_effect_from_user(p, size, &effect))
776 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400777
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700778 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400779
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700780 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
781 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400782
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700783 return error;
784 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400785
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700786 /* Multi-number variable-length handlers */
787 if (_IOC_TYPE(cmd) != 'E')
788 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700790 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700792 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
793 return handle_eviocgbit(dev,
794 _IOC_NR(cmd) & EV_MAX, size,
795 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700797 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400798
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700799 if (!dev->absinfo)
800 return -EINVAL;
801
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700802 t = _IOC_NR(cmd) & ABS_MAX;
803 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400804
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700805 if (copy_to_user(p, &abs, min_t(size_t,
806 size, sizeof(struct input_absinfo))))
807 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400808
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700809 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700812
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700813 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700814
815 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
816
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700817 if (!dev->absinfo)
818 return -EINVAL;
819
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700820 t = _IOC_NR(cmd) & ABS_MAX;
821
822 if (copy_from_user(&abs, p, min_t(size_t,
823 size, sizeof(struct input_absinfo))))
824 return -EFAULT;
825
826 if (size < sizeof(struct input_absinfo))
827 abs.resolution = 0;
828
829 /* We can't change number of reserved MT slots */
830 if (t == ABS_MT_SLOT)
831 return -EINVAL;
832
833 /*
834 * Take event lock to ensure that we are not
835 * changing device parameters in the middle
836 * of event.
837 */
838 spin_lock_irq(&dev->event_lock);
839 dev->absinfo[t] = abs;
840 spin_unlock_irq(&dev->event_lock);
841
842 return 0;
843 }
844 }
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return -EINVAL;
847}
848
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400849static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
850 void __user *p, int compat_mode)
851{
852 struct evdev_client *client = file->private_data;
853 struct evdev *evdev = client->evdev;
854 int retval;
855
856 retval = mutex_lock_interruptible(&evdev->mutex);
857 if (retval)
858 return retval;
859
860 if (!evdev->exist) {
861 retval = -ENODEV;
862 goto out;
863 }
864
865 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
866
867 out:
868 mutex_unlock(&evdev->mutex);
869 return retval;
870}
871
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500872static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
873{
874 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
875}
876
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500877#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400878static long evdev_ioctl_compat(struct file *file,
879 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500880{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500881 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500882}
883#endif
884
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400885static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400886 .owner = THIS_MODULE,
887 .read = evdev_read,
888 .write = evdev_write,
889 .poll = evdev_poll,
890 .open = evdev_open,
891 .release = evdev_release,
892 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500893#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400894 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500895#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400896 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200897 .flush = evdev_flush,
898 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899};
900
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400901static int evdev_install_chrdev(struct evdev *evdev)
902{
903 /*
904 * No need to do any locking here as calls to connect and
905 * disconnect are serialized by the input core
906 */
907 evdev_table[evdev->minor] = evdev;
908 return 0;
909}
910
911static void evdev_remove_chrdev(struct evdev *evdev)
912{
913 /*
914 * Lock evdev table to prevent race with evdev_open()
915 */
916 mutex_lock(&evdev_table_mutex);
917 evdev_table[evdev->minor] = NULL;
918 mutex_unlock(&evdev_table_mutex);
919}
920
921/*
922 * Mark device non-existent. This disables writes, ioctls and
923 * prevents new users from opening the device. Already posted
924 * blocking reads will stay, however new ones will fail.
925 */
926static void evdev_mark_dead(struct evdev *evdev)
927{
928 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700929 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400930 mutex_unlock(&evdev->mutex);
931}
932
933static void evdev_cleanup(struct evdev *evdev)
934{
935 struct input_handle *handle = &evdev->handle;
936
937 evdev_mark_dead(evdev);
938 evdev_hangup(evdev);
939 evdev_remove_chrdev(evdev);
940
941 /* evdev is marked dead so no one else accesses evdev->open */
942 if (evdev->open) {
943 input_flush_device(handle, NULL);
944 input_close_device(handle);
945 }
946}
947
948/*
949 * Create new evdev device. Note that input core serializes calls
950 * to connect and disconnect so we don't need to lock evdev_table here.
951 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400952static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
953 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
955 struct evdev *evdev;
956 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400957 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400959 for (minor = 0; minor < EVDEV_MINORS; minor++)
960 if (!evdev_table[minor])
961 break;
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (minor == EVDEV_MINORS) {
Joe Perchesda0c4902010-11-29 23:33:07 -0800964 pr_err("no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400965 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400968 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
969 if (!evdev)
970 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400972 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400973 spin_lock_init(&evdev->client_lock);
974 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 init_waitqueue_head(&evdev->wait);
976
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700977 dev_set_name(&evdev->dev, "event%d", minor);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700978 evdev->exist = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400980
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400981 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700982 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 evdev->handle.handler = handler;
984 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400985
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400986 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400987 evdev->dev.class = &input_class;
988 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400989 evdev->dev.release = evdev_free;
990 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400992 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400993 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400994 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400996 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400997 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400998 goto err_unregister_handle;
999
1000 error = device_add(&evdev->dev);
1001 if (error)
1002 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001003
1004 return 0;
1005
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001006 err_cleanup_evdev:
1007 evdev_cleanup(evdev);
1008 err_unregister_handle:
1009 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001010 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001011 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001012 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
1015static void evdev_disconnect(struct input_handle *handle)
1016{
1017 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001019 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001020 evdev_cleanup(evdev);
1021 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001022 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001025static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 { .driver_info = 1 }, /* Matches all devices */
1027 { }, /* Terminating zero entry */
1028};
1029
1030MODULE_DEVICE_TABLE(input, evdev_ids);
1031
1032static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001033 .event = evdev_event,
1034 .connect = evdev_connect,
1035 .disconnect = evdev_disconnect,
1036 .fops = &evdev_fops,
1037 .minor = EVDEV_MINOR_BASE,
1038 .name = "evdev",
1039 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040};
1041
1042static int __init evdev_init(void)
1043{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001044 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
1047static void __exit evdev_exit(void)
1048{
1049 input_unregister_handler(&evdev_handler);
1050}
1051
1052module_init(evdev_init);
1053module_exit(evdev_exit);
1054
1055MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1056MODULE_DESCRIPTION("Input driver event char devices");
1057MODULE_LICENSE("GPL");