blob: 9226b4d9118f5c2d453d0ef643543e57b75dea18 [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{
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700183 struct evdev_client *grab = rcu_dereference_protected(evdev->grab,
184 lockdep_is_held(&evdev->mutex));
185
186 if (grab != client)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400187 return -EINVAL;
188
189 rcu_assign_pointer(evdev->grab, NULL);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400190 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400191 input_release_device(&evdev->handle);
192
193 return 0;
194}
195
196static void evdev_attach_client(struct evdev *evdev,
197 struct evdev_client *client)
198{
199 spin_lock(&evdev->client_lock);
200 list_add_tail_rcu(&client->node, &evdev->client_list);
201 spin_unlock(&evdev->client_lock);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400202}
203
204static void evdev_detach_client(struct evdev *evdev,
205 struct evdev_client *client)
206{
207 spin_lock(&evdev->client_lock);
208 list_del_rcu(&client->node);
209 spin_unlock(&evdev->client_lock);
Dmitry Torokhov82ba56c2007-10-13 15:46:55 -0400210 synchronize_rcu();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400211}
212
213static int evdev_open_device(struct evdev *evdev)
214{
215 int retval;
216
217 retval = mutex_lock_interruptible(&evdev->mutex);
218 if (retval)
219 return retval;
220
221 if (!evdev->exist)
222 retval = -ENODEV;
Oliver Neukum06445012007-10-12 14:18:40 -0400223 else if (!evdev->open++) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400224 retval = input_open_device(&evdev->handle);
Oliver Neukum06445012007-10-12 14:18:40 -0400225 if (retval)
226 evdev->open--;
227 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400228
229 mutex_unlock(&evdev->mutex);
230 return retval;
231}
232
233static void evdev_close_device(struct evdev *evdev)
234{
235 mutex_lock(&evdev->mutex);
236
237 if (evdev->exist && !--evdev->open)
238 input_close_device(&evdev->handle);
239
240 mutex_unlock(&evdev->mutex);
241}
242
243/*
244 * Wake up users waiting for IO so they can disconnect from
245 * dead device.
246 */
247static void evdev_hangup(struct evdev *evdev)
248{
249 struct evdev_client *client;
250
251 spin_lock(&evdev->client_lock);
252 list_for_each_entry(client, &evdev->client_list, node)
253 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
254 spin_unlock(&evdev->client_lock);
255
256 wake_up_interruptible(&evdev->wait);
257}
258
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400259static int evdev_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400261 struct evdev_client *client = file->private_data;
262 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400264 mutex_lock(&evdev->mutex);
Dmitry Torokhovdba42582012-05-02 00:13:36 -0700265 evdev_ungrab(evdev, client);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400266 mutex_unlock(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400268 evdev_detach_client(evdev, client);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400269 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400271 evdev_close_device(evdev);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400272 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return 0;
275}
276
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700277static unsigned int evdev_compute_buffer_size(struct input_dev *dev)
278{
Henrik Rydberg63a64042010-06-10 12:05:24 -0700279 unsigned int n_events =
280 max(dev->hint_events_per_packet * EVDEV_BUF_PACKETS,
281 EVDEV_MIN_BUFFER_SIZE);
282
283 return roundup_pow_of_two(n_events);
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700284}
285
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400286static int evdev_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400288 struct evdev *evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400289 struct evdev_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 int i = iminor(inode) - EVDEV_MINOR_BASE;
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700291 unsigned int bufsize;
Dmitry Torokhovd542ed82007-04-12 01:30:15 -0400292 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400294 if (i >= EVDEV_MINORS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return -ENODEV;
296
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400297 error = mutex_lock_interruptible(&evdev_table_mutex);
298 if (error)
299 return error;
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400300 evdev = evdev_table[i];
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400301 if (evdev)
302 get_device(&evdev->dev);
303 mutex_unlock(&evdev_table_mutex);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400304
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400305 if (!evdev)
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400306 return -ENODEV;
307
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700308 bufsize = evdev_compute_buffer_size(evdev->handle.dev);
309
310 client = kzalloc(sizeof(struct evdev_client) +
311 bufsize * sizeof(struct input_event),
312 GFP_KERNEL);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400313 if (!client) {
314 error = -ENOMEM;
315 goto err_put_evdev;
316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700318 client->bufsize = bufsize;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400319 spin_lock_init(&client->buffer_lock);
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400320 client->evdev = evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400321 evdev_attach_client(evdev, client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400323 error = evdev_open_device(evdev);
324 if (error)
325 goto err_free_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400327 file->private_data = client;
Dmitry Torokhov3d7bbd42010-02-04 00:30:42 -0800328 nonseekable_open(inode, file);
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return 0;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400331
332 err_free_client:
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400333 evdev_detach_client(evdev, client);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400334 kfree(client);
335 err_put_evdev:
336 put_device(&evdev->dev);
337 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400340static ssize_t evdev_write(struct file *file, const char __user *buffer,
341 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400343 struct evdev_client *client = file->private_data;
344 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 struct input_event event;
Heiko Stübner02dfc492012-02-08 23:08:48 -0800346 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Peter Korsgaard439581e2011-02-25 09:30:46 -0800348 if (count < input_event_size())
349 return -EINVAL;
350
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400351 retval = mutex_lock_interruptible(&evdev->mutex);
352 if (retval)
353 return retval;
354
355 if (!evdev->exist) {
356 retval = -ENODEV;
357 goto out;
358 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500359
Peter Korsgaard439581e2011-02-25 09:30:46 -0800360 do {
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400361 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400362 retval = -EFAULT;
363 goto out;
364 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800365 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400366
367 input_inject_event(&evdev->handle,
368 event.type, event.code, event.value);
Peter Korsgaard439581e2011-02-25 09:30:46 -0800369 } while (retval + input_event_size() <= count);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500370
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400371 out:
372 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500373 return retval;
374}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500375
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400376static int evdev_fetch_next_event(struct evdev_client *client,
377 struct input_event *event)
378{
379 int have_event;
380
381 spin_lock_irq(&client->buffer_lock);
382
Dima Zavin566cf5b2011-12-30 15:16:44 -0800383 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400384 if (have_event) {
385 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700386 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400387 }
388
389 spin_unlock_irq(&client->buffer_lock);
390
391 return have_event;
392}
393
394static ssize_t evdev_read(struct file *file, char __user *buffer,
395 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400397 struct evdev_client *client = file->private_data;
398 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400399 struct input_event event;
Heiko Stübner42f57872012-02-01 09:12:23 -0800400 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400402 if (count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return -EINVAL;
404
Dima Zavin509f87c2011-12-30 15:16:44 -0800405 if (!(file->f_flags & O_NONBLOCK)) {
406 retval = wait_event_interruptible(evdev->wait,
407 client->packet_head != client->tail ||
408 !evdev->exist);
409 if (retval)
410 return retval;
411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400413 if (!evdev->exist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return -ENODEV;
415
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400416 while (retval + input_event_size() <= count &&
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400417 evdev_fetch_next_event(client, &event)) {
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500418
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400419 if (input_event_to_user(buffer + retval, &event))
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500420 return -EFAULT;
421
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400422 retval += input_event_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424
Dima Zavine90f8692011-12-30 15:16:44 -0800425 if (retval == 0 && (file->f_flags & O_NONBLOCK))
426 return -EAGAIN;
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return retval;
429}
430
431/* No kernel lock - fine */
432static unsigned int evdev_poll(struct file *file, poll_table *wait)
433{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400434 struct evdev_client *client = file->private_data;
435 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700436 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400437
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400438 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700439
440 mask = evdev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
Jeff Browncdda9112011-04-26 22:16:11 -0700441 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700442 mask |= POLLIN | POLLRDNORM;
443
444 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500447#ifdef CONFIG_COMPAT
448
449#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700450#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500451
452#ifdef __BIG_ENDIAN
453static int bits_to_user(unsigned long *bits, unsigned int maxbit,
454 unsigned int maxlen, void __user *p, int compat)
455{
456 int len, i;
457
458 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700459 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400460 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500461 len = maxlen;
462
463 for (i = 0; i < len / sizeof(compat_long_t); i++)
464 if (copy_to_user((compat_long_t __user *) p + i,
465 (compat_long_t *) bits +
466 i + 1 - ((i % 2) << 1),
467 sizeof(compat_long_t)))
468 return -EFAULT;
469 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700470 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500471 if (len > maxlen)
472 len = maxlen;
473
474 if (copy_to_user(p, bits, len))
475 return -EFAULT;
476 }
477
478 return len;
479}
480#else
481static int bits_to_user(unsigned long *bits, unsigned int maxbit,
482 unsigned int maxlen, void __user *p, int compat)
483{
484 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700485 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
486 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500487
488 if (len > maxlen)
489 len = maxlen;
490
491 return copy_to_user(p, bits, len) ? -EFAULT : len;
492}
493#endif /* __BIG_ENDIAN */
494
495#else
496
497static int bits_to_user(unsigned long *bits, unsigned int maxbit,
498 unsigned int maxlen, void __user *p, int compat)
499{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700500 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500501
502 if (len > maxlen)
503 len = maxlen;
504
505 return copy_to_user(p, bits, len) ? -EFAULT : len;
506}
507
508#endif /* CONFIG_COMPAT */
509
510static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
511{
512 int len;
513
514 if (!str)
515 return -ENOENT;
516
517 len = strlen(str) + 1;
518 if (len > maxlen)
519 len = maxlen;
520
521 return copy_to_user(p, str, len) ? -EFAULT : len;
522}
523
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400524#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700525static int handle_eviocgbit(struct input_dev *dev,
526 unsigned int type, unsigned int size,
527 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400528{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400529 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400530 unsigned long *bits;
531 int len;
532
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700533 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400534
535 case 0: bits = dev->evbit; len = EV_MAX; break;
536 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
537 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
538 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
539 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
540 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
541 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
542 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
543 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
544 default: return -EINVAL;
545 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400546
547 /*
548 * Work around bugs in userspace programs that like to do
549 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
550 * should be in bytes, not in bits.
551 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700552 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400553 len = OLD_KEY_MAX;
554 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800555 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
556 "limiting output to %zu bytes. See "
557 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
558 OLD_KEY_MAX,
559 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400560 }
561
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700562 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400563}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400564#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400565
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800566static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
567{
568 struct input_keymap_entry ke = {
569 .len = sizeof(unsigned int),
570 .flags = 0,
571 };
572 int __user *ip = (int __user *)p;
573 int error;
574
575 /* legacy case */
576 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
577 return -EFAULT;
578
579 error = input_get_keycode(dev, &ke);
580 if (error)
581 return error;
582
583 if (put_user(ke.keycode, ip + 1))
584 return -EFAULT;
585
586 return 0;
587}
588
589static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700590{
591 struct input_keymap_entry ke;
592 int error;
593
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800594 if (copy_from_user(&ke, p, sizeof(ke)))
595 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700596
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800597 error = input_get_keycode(dev, &ke);
598 if (error)
599 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700600
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800601 if (copy_to_user(p, &ke, sizeof(ke)))
602 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700603
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700604 return 0;
605}
606
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800607static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
608{
609 struct input_keymap_entry ke = {
610 .len = sizeof(unsigned int),
611 .flags = 0,
612 };
613 int __user *ip = (int __user *)p;
614
615 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
616 return -EFAULT;
617
618 if (get_user(ke.keycode, ip + 1))
619 return -EFAULT;
620
621 return input_set_keycode(dev, &ke);
622}
623
624static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700625{
626 struct input_keymap_entry ke;
627
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800628 if (copy_from_user(&ke, p, sizeof(ke)))
629 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700630
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800631 if (ke.len > sizeof(ke.scancode))
632 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700633
634 return input_set_keycode(dev, &ke);
635}
636
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100637static int evdev_handle_mt_request(struct input_dev *dev,
638 unsigned int size,
639 int __user *ip)
640{
641 const struct input_mt_slot *mt = dev->mt;
642 unsigned int code;
643 int max_slots;
644 int i;
645
646 if (get_user(code, &ip[0]))
647 return -EFAULT;
648 if (!input_is_mt_value(code))
649 return -EINVAL;
650
651 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
652 for (i = 0; i < dev->mtsize && i < max_slots; i++)
653 if (put_user(input_mt_get_value(&mt[i], code), &ip[1 + i]))
654 return -EFAULT;
655
656 return 0;
657}
658
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400659static long evdev_do_ioctl(struct file *file, unsigned int cmd,
660 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400662 struct evdev_client *client = file->private_data;
663 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 struct input_dev *dev = evdev->handle.dev;
665 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400666 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500667 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800668 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700669 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400670 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700672 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 switch (cmd) {
674
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400675 case EVIOCGVERSION:
676 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400678 case EVIOCGID:
679 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
680 return -EFAULT;
681 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400682
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400683 case EVIOCGREP:
684 if (!test_bit(EV_REP, dev->evbit))
685 return -ENOSYS;
686 if (put_user(dev->rep[REP_DELAY], ip))
687 return -EFAULT;
688 if (put_user(dev->rep[REP_PERIOD], ip + 1))
689 return -EFAULT;
690 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400691
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400692 case EVIOCSREP:
693 if (!test_bit(EV_REP, dev->evbit))
694 return -ENOSYS;
695 if (get_user(u, ip))
696 return -EFAULT;
697 if (get_user(v, ip + 1))
698 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400699
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400700 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
701 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500702
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400703 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400705 case EVIOCRMFF:
706 return input_ff_erase(dev, (int)(unsigned long) p, file);
707
708 case EVIOCGEFFECTS:
709 i = test_bit(EV_FF, dev->evbit) ?
710 dev->ff->max_effects : 0;
711 if (put_user(i, ip))
712 return -EFAULT;
713 return 0;
714
715 case EVIOCGRAB:
716 if (p)
717 return evdev_grab(evdev, client);
718 else
719 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800720
John Stultza80b83b2012-02-03 00:19:07 -0800721 case EVIOCSCLOCKID:
722 if (copy_from_user(&i, p, sizeof(unsigned int)))
723 return -EFAULT;
724 if (i != CLOCK_MONOTONIC && i != CLOCK_REALTIME)
725 return -EINVAL;
726 client->clkid = i;
727 return 0;
728
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800729 case EVIOCGKEYCODE:
730 return evdev_handle_get_keycode(dev, p);
731
732 case EVIOCSKEYCODE:
733 return evdev_handle_set_keycode(dev, p);
734
735 case EVIOCGKEYCODE_V2:
736 return evdev_handle_get_keycode_v2(dev, p);
737
738 case EVIOCSKEYCODE_V2:
739 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700740 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400741
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700742 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400743
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700744 /* Now check variable-length commands */
745#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700746 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400747
Henrik Rydberg85b77202010-12-18 20:51:13 +0100748 case EVIOCGPROP(0):
749 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
750 size, p, compat_mode);
751
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100752 case EVIOCGMTSLOTS(0):
753 return evdev_handle_mt_request(dev, size, ip);
754
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700755 case EVIOCGKEY(0):
756 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400757
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700758 case EVIOCGLED(0):
759 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400760
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700761 case EVIOCGSND(0):
762 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400763
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700764 case EVIOCGSW(0):
765 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400766
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700767 case EVIOCGNAME(0):
768 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400769
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700770 case EVIOCGPHYS(0):
771 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400772
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700773 case EVIOCGUNIQ(0):
774 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400775
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700776 case EVIOC_MASK_SIZE(EVIOCSFF):
777 if (input_ff_effect_from_user(p, size, &effect))
778 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400779
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700780 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400781
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700782 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
783 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400784
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700785 return error;
786 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400787
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700788 /* Multi-number variable-length handlers */
789 if (_IOC_TYPE(cmd) != 'E')
790 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700792 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700794 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
795 return handle_eviocgbit(dev,
796 _IOC_NR(cmd) & EV_MAX, size,
797 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700799 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400800
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700801 if (!dev->absinfo)
802 return -EINVAL;
803
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700804 t = _IOC_NR(cmd) & ABS_MAX;
805 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400806
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700807 if (copy_to_user(p, &abs, min_t(size_t,
808 size, sizeof(struct input_absinfo))))
809 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400810
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700811 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700814
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700815 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700816
817 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
818
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700819 if (!dev->absinfo)
820 return -EINVAL;
821
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700822 t = _IOC_NR(cmd) & ABS_MAX;
823
824 if (copy_from_user(&abs, p, min_t(size_t,
825 size, sizeof(struct input_absinfo))))
826 return -EFAULT;
827
828 if (size < sizeof(struct input_absinfo))
829 abs.resolution = 0;
830
831 /* We can't change number of reserved MT slots */
832 if (t == ABS_MT_SLOT)
833 return -EINVAL;
834
835 /*
836 * Take event lock to ensure that we are not
837 * changing device parameters in the middle
838 * of event.
839 */
840 spin_lock_irq(&dev->event_lock);
841 dev->absinfo[t] = abs;
842 spin_unlock_irq(&dev->event_lock);
843
844 return 0;
845 }
846 }
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return -EINVAL;
849}
850
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400851static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
852 void __user *p, int compat_mode)
853{
854 struct evdev_client *client = file->private_data;
855 struct evdev *evdev = client->evdev;
856 int retval;
857
858 retval = mutex_lock_interruptible(&evdev->mutex);
859 if (retval)
860 return retval;
861
862 if (!evdev->exist) {
863 retval = -ENODEV;
864 goto out;
865 }
866
867 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
868
869 out:
870 mutex_unlock(&evdev->mutex);
871 return retval;
872}
873
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500874static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
875{
876 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
877}
878
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500879#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400880static long evdev_ioctl_compat(struct file *file,
881 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500882{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500883 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500884}
885#endif
886
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400887static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400888 .owner = THIS_MODULE,
889 .read = evdev_read,
890 .write = evdev_write,
891 .poll = evdev_poll,
892 .open = evdev_open,
893 .release = evdev_release,
894 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500895#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400896 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500897#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400898 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200899 .flush = evdev_flush,
900 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901};
902
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400903static int evdev_install_chrdev(struct evdev *evdev)
904{
905 /*
906 * No need to do any locking here as calls to connect and
907 * disconnect are serialized by the input core
908 */
909 evdev_table[evdev->minor] = evdev;
910 return 0;
911}
912
913static void evdev_remove_chrdev(struct evdev *evdev)
914{
915 /*
916 * Lock evdev table to prevent race with evdev_open()
917 */
918 mutex_lock(&evdev_table_mutex);
919 evdev_table[evdev->minor] = NULL;
920 mutex_unlock(&evdev_table_mutex);
921}
922
923/*
924 * Mark device non-existent. This disables writes, ioctls and
925 * prevents new users from opening the device. Already posted
926 * blocking reads will stay, however new ones will fail.
927 */
928static void evdev_mark_dead(struct evdev *evdev)
929{
930 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700931 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400932 mutex_unlock(&evdev->mutex);
933}
934
935static void evdev_cleanup(struct evdev *evdev)
936{
937 struct input_handle *handle = &evdev->handle;
938
939 evdev_mark_dead(evdev);
940 evdev_hangup(evdev);
941 evdev_remove_chrdev(evdev);
942
943 /* evdev is marked dead so no one else accesses evdev->open */
944 if (evdev->open) {
945 input_flush_device(handle, NULL);
946 input_close_device(handle);
947 }
948}
949
950/*
951 * Create new evdev device. Note that input core serializes calls
952 * to connect and disconnect so we don't need to lock evdev_table here.
953 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400954static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
955 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 struct evdev *evdev;
958 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400959 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400961 for (minor = 0; minor < EVDEV_MINORS; minor++)
962 if (!evdev_table[minor])
963 break;
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (minor == EVDEV_MINORS) {
Joe Perchesda0c4902010-11-29 23:33:07 -0800966 pr_err("no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400967 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 }
969
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400970 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
971 if (!evdev)
972 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400974 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400975 spin_lock_init(&evdev->client_lock);
976 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 init_waitqueue_head(&evdev->wait);
978
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700979 dev_set_name(&evdev->dev, "event%d", minor);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700980 evdev->exist = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400982
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400983 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700984 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 evdev->handle.handler = handler;
986 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400987
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400988 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400989 evdev->dev.class = &input_class;
990 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400991 evdev->dev.release = evdev_free;
992 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400994 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400995 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400996 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400998 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400999 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001000 goto err_unregister_handle;
1001
1002 error = device_add(&evdev->dev);
1003 if (error)
1004 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001005
1006 return 0;
1007
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001008 err_cleanup_evdev:
1009 evdev_cleanup(evdev);
1010 err_unregister_handle:
1011 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001012 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001013 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001014 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016
1017static void evdev_disconnect(struct input_handle *handle)
1018{
1019 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001021 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001022 evdev_cleanup(evdev);
1023 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001024 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001027static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 { .driver_info = 1 }, /* Matches all devices */
1029 { }, /* Terminating zero entry */
1030};
1031
1032MODULE_DEVICE_TABLE(input, evdev_ids);
1033
1034static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001035 .event = evdev_event,
1036 .connect = evdev_connect,
1037 .disconnect = evdev_disconnect,
1038 .fops = &evdev_fops,
1039 .minor = EVDEV_MINOR_BASE,
1040 .name = "evdev",
1041 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042};
1043
1044static int __init evdev_init(void)
1045{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001046 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
1049static void __exit evdev_exit(void)
1050{
1051 input_unregister_handler(&evdev_handler);
1052}
1053
1054module_init(evdev_init);
1055module_exit(evdev_exit);
1056
1057MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1058MODULE_DESCRIPTION("Input driver event char devices");
1059MODULE_LICENSE("GPL");