blob: a0692c551be52844728a80670c8f576658aa73de [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
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700348 if (count != 0 && count < input_event_size())
Peter Korsgaard439581e2011-02-25 09:30:46 -0800349 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
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700360 while (retval + input_event_size() <= count) {
361
Philip Langdale2d56f3a2008-10-16 22:31:42 -0400362 if (input_event_from_user(buffer + retval, &event)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400363 retval = -EFAULT;
364 goto out;
365 }
Peter Korsgaard439581e2011-02-25 09:30:46 -0800366 retval += input_event_size();
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400367
368 input_inject_event(&evdev->handle,
369 event.type, event.code, event.value);
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700370 }
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500371
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400372 out:
373 mutex_unlock(&evdev->mutex);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500374 return retval;
375}
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500376
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400377static int evdev_fetch_next_event(struct evdev_client *client,
378 struct input_event *event)
379{
380 int have_event;
381
382 spin_lock_irq(&client->buffer_lock);
383
Dima Zavin566cf5b2011-12-30 15:16:44 -0800384 have_event = client->packet_head != client->tail;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400385 if (have_event) {
386 *event = client->buffer[client->tail++];
Henrik Rydbergb58f7082010-06-23 09:17:56 -0700387 client->tail &= client->bufsize - 1;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400388 }
389
390 spin_unlock_irq(&client->buffer_lock);
391
392 return have_event;
393}
394
395static ssize_t evdev_read(struct file *file, char __user *buffer,
396 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400398 struct evdev_client *client = file->private_data;
399 struct evdev *evdev = client->evdev;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400400 struct input_event event;
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700401 size_t read = 0;
402 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700404 if (count != 0 && count < input_event_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return -EINVAL;
406
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700407 for (;;) {
408 if (!evdev->exist)
409 return -ENODEV;
410
411 if (client->packet_head == client->tail &&
412 (file->f_flags & O_NONBLOCK))
413 return -EAGAIN;
414
415 /*
416 * count == 0 is special - no IO is done but we check
417 * for error conditions (see above).
418 */
419 if (count == 0)
420 break;
421
422 while (read + input_event_size() <= count &&
423 evdev_fetch_next_event(client, &event)) {
424
425 if (input_event_to_user(buffer + read, &event))
426 return -EFAULT;
427
428 read += input_event_size();
429 }
430
431 if (read)
432 break;
433
434 if (!(file->f_flags & O_NONBLOCK)) {
435 error = wait_event_interruptible(evdev->wait,
436 client->packet_head != client->tail ||
437 !evdev->exist);
438 if (error)
439 return error;
440 }
Dima Zavin509f87c2011-12-30 15:16:44 -0800441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Dmitry Torokhov2872a9b2012-05-02 00:13:37 -0700443 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446/* No kernel lock - fine */
447static unsigned int evdev_poll(struct file *file, poll_table *wait)
448{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400449 struct evdev_client *client = file->private_data;
450 struct evdev *evdev = client->evdev;
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700451 unsigned int mask;
Dmitry Torokhov1e0afb22006-06-26 01:48:47 -0400452
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400453 poll_wait(file, &evdev->wait, wait);
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700454
455 mask = evdev->exist ? POLLOUT | POLLWRNORM : POLLHUP | POLLERR;
Jeff Browncdda9112011-04-26 22:16:11 -0700456 if (client->packet_head != client->tail)
Dmitry Torokhovc18fb132010-07-15 23:28:42 -0700457 mask |= POLLIN | POLLRDNORM;
458
459 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500462#ifdef CONFIG_COMPAT
463
464#define BITS_PER_LONG_COMPAT (sizeof(compat_long_t) * 8)
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700465#define BITS_TO_LONGS_COMPAT(x) ((((x) - 1) / BITS_PER_LONG_COMPAT) + 1)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500466
467#ifdef __BIG_ENDIAN
468static int bits_to_user(unsigned long *bits, unsigned int maxbit,
469 unsigned int maxlen, void __user *p, int compat)
470{
471 int len, i;
472
473 if (compat) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700474 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
Kenichi Nagaibf61f8d2007-05-11 01:12:15 -0400475 if (len > maxlen)
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500476 len = maxlen;
477
478 for (i = 0; i < len / sizeof(compat_long_t); i++)
479 if (copy_to_user((compat_long_t __user *) p + i,
480 (compat_long_t *) bits +
481 i + 1 - ((i % 2) << 1),
482 sizeof(compat_long_t)))
483 return -EFAULT;
484 } else {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700485 len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500486 if (len > maxlen)
487 len = maxlen;
488
489 if (copy_to_user(p, bits, len))
490 return -EFAULT;
491 }
492
493 return len;
494}
495#else
496static int bits_to_user(unsigned long *bits, unsigned int maxbit,
497 unsigned int maxlen, void __user *p, int compat)
498{
499 int len = compat ?
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700500 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
501 BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500502
503 if (len > maxlen)
504 len = maxlen;
505
506 return copy_to_user(p, bits, len) ? -EFAULT : len;
507}
508#endif /* __BIG_ENDIAN */
509
510#else
511
512static int bits_to_user(unsigned long *bits, unsigned int maxbit,
513 unsigned int maxlen, void __user *p, int compat)
514{
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700515 int len = BITS_TO_LONGS(maxbit) * sizeof(long);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500516
517 if (len > maxlen)
518 len = maxlen;
519
520 return copy_to_user(p, bits, len) ? -EFAULT : len;
521}
522
523#endif /* CONFIG_COMPAT */
524
525static int str_to_user(const char *str, unsigned int maxlen, void __user *p)
526{
527 int len;
528
529 if (!str)
530 return -ENOENT;
531
532 len = strlen(str) + 1;
533 if (len > maxlen)
534 len = maxlen;
535
536 return copy_to_user(p, str, len) ? -EFAULT : len;
537}
538
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400539#define OLD_KEY_MAX 0x1ff
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700540static int handle_eviocgbit(struct input_dev *dev,
541 unsigned int type, unsigned int size,
542 void __user *p, int compat_mode)
Linus Torvalds5402a732008-08-05 11:42:42 -0400543{
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400544 static unsigned long keymax_warn_time;
Linus Torvalds5402a732008-08-05 11:42:42 -0400545 unsigned long *bits;
546 int len;
547
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700548 switch (type) {
Linus Torvalds5402a732008-08-05 11:42:42 -0400549
550 case 0: bits = dev->evbit; len = EV_MAX; break;
551 case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
552 case EV_REL: bits = dev->relbit; len = REL_MAX; break;
553 case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
554 case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
555 case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
556 case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
557 case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
558 case EV_SW: bits = dev->swbit; len = SW_MAX; break;
559 default: return -EINVAL;
560 }
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400561
562 /*
563 * Work around bugs in userspace programs that like to do
564 * EVIOCGBIT(EV_KEY, KEY_MAX) and not realize that 'len'
565 * should be in bytes, not in bits.
566 */
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700567 if (type == EV_KEY && size == OLD_KEY_MAX) {
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400568 len = OLD_KEY_MAX;
569 if (printk_timed_ratelimit(&keymax_warn_time, 10 * 1000))
Joe Perchesda0c4902010-11-29 23:33:07 -0800570 pr_warning("(EVIOCGBIT): Suspicious buffer size %u, "
571 "limiting output to %zu bytes. See "
572 "http://userweb.kernel.org/~dtor/eviocgbit-bug.html\n",
573 OLD_KEY_MAX,
574 BITS_TO_LONGS(OLD_KEY_MAX) * sizeof(long));
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400575 }
576
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700577 return bits_to_user(bits, len, size, p, compat_mode);
Linus Torvalds5402a732008-08-05 11:42:42 -0400578}
Dmitry Torokhovf2afa772008-08-08 11:46:53 -0400579#undef OLD_KEY_MAX
Linus Torvalds5402a732008-08-05 11:42:42 -0400580
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800581static int evdev_handle_get_keycode(struct input_dev *dev, void __user *p)
582{
583 struct input_keymap_entry ke = {
584 .len = sizeof(unsigned int),
585 .flags = 0,
586 };
587 int __user *ip = (int __user *)p;
588 int error;
589
590 /* legacy case */
591 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
592 return -EFAULT;
593
594 error = input_get_keycode(dev, &ke);
595 if (error)
596 return error;
597
598 if (put_user(ke.keycode, ip + 1))
599 return -EFAULT;
600
601 return 0;
602}
603
604static int evdev_handle_get_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700605{
606 struct input_keymap_entry ke;
607 int error;
608
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800609 if (copy_from_user(&ke, p, sizeof(ke)))
610 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700611
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800612 error = input_get_keycode(dev, &ke);
613 if (error)
614 return error;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700615
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800616 if (copy_to_user(p, &ke, sizeof(ke)))
617 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700618
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700619 return 0;
620}
621
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800622static int evdev_handle_set_keycode(struct input_dev *dev, void __user *p)
623{
624 struct input_keymap_entry ke = {
625 .len = sizeof(unsigned int),
626 .flags = 0,
627 };
628 int __user *ip = (int __user *)p;
629
630 if (copy_from_user(ke.scancode, p, sizeof(unsigned int)))
631 return -EFAULT;
632
633 if (get_user(ke.keycode, ip + 1))
634 return -EFAULT;
635
636 return input_set_keycode(dev, &ke);
637}
638
639static int evdev_handle_set_keycode_v2(struct input_dev *dev, void __user *p)
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700640{
641 struct input_keymap_entry ke;
642
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800643 if (copy_from_user(&ke, p, sizeof(ke)))
644 return -EFAULT;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700645
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800646 if (ke.len > sizeof(ke.scancode))
647 return -EINVAL;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700648
649 return input_set_keycode(dev, &ke);
650}
651
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100652static int evdev_handle_mt_request(struct input_dev *dev,
653 unsigned int size,
654 int __user *ip)
655{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200656 const struct input_mt *mt = dev->mt;
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100657 unsigned int code;
658 int max_slots;
659 int i;
660
661 if (get_user(code, &ip[0]))
662 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200663 if (!mt || !input_is_mt_value(code))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100664 return -EINVAL;
665
666 max_slots = (size - sizeof(__u32)) / sizeof(__s32);
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200667 for (i = 0; i < mt->num_slots && i < max_slots; i++) {
668 int value = input_mt_get_value(&mt->slots[i], code);
669 if (put_user(value, &ip[1 + i]))
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100670 return -EFAULT;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200671 }
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100672
673 return 0;
674}
675
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400676static long evdev_do_ioctl(struct file *file, unsigned int cmd,
677 void __user *p, int compat_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400679 struct evdev_client *client = file->private_data;
680 struct evdev *evdev = client->evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 struct input_dev *dev = evdev->handle.dev;
682 struct input_absinfo abs;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400683 struct ff_effect effect;
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500684 int __user *ip = (int __user *)p;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800685 unsigned int i, t, u, v;
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700686 unsigned int size;
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400687 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700689 /* First we check for fixed-length commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 switch (cmd) {
691
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400692 case EVIOCGVERSION:
693 return put_user(EV_VERSION, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400695 case EVIOCGID:
696 if (copy_to_user(p, &dev->id, sizeof(struct input_id)))
697 return -EFAULT;
698 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400699
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400700 case EVIOCGREP:
701 if (!test_bit(EV_REP, dev->evbit))
702 return -ENOSYS;
703 if (put_user(dev->rep[REP_DELAY], ip))
704 return -EFAULT;
705 if (put_user(dev->rep[REP_PERIOD], ip + 1))
706 return -EFAULT;
707 return 0;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400708
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400709 case EVIOCSREP:
710 if (!test_bit(EV_REP, dev->evbit))
711 return -ENOSYS;
712 if (get_user(u, ip))
713 return -EFAULT;
714 if (get_user(v, ip + 1))
715 return -EFAULT;
Dmitry Torokhov08791e52006-04-29 01:13:21 -0400716
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400717 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
718 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500719
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400720 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400722 case EVIOCRMFF:
723 return input_ff_erase(dev, (int)(unsigned long) p, file);
724
725 case EVIOCGEFFECTS:
726 i = test_bit(EV_FF, dev->evbit) ?
727 dev->ff->max_effects : 0;
728 if (put_user(i, ip))
729 return -EFAULT;
730 return 0;
731
732 case EVIOCGRAB:
733 if (p)
734 return evdev_grab(evdev, client);
735 else
736 return evdev_ungrab(evdev, client);
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800737
John Stultza80b83b2012-02-03 00:19:07 -0800738 case EVIOCSCLOCKID:
739 if (copy_from_user(&i, p, sizeof(unsigned int)))
740 return -EFAULT;
741 if (i != CLOCK_MONOTONIC && i != CLOCK_REALTIME)
742 return -EINVAL;
743 client->clkid = i;
744 return 0;
745
Dmitry Torokhovab4e0192010-12-14 23:53:21 -0800746 case EVIOCGKEYCODE:
747 return evdev_handle_get_keycode(dev, p);
748
749 case EVIOCSKEYCODE:
750 return evdev_handle_set_keycode(dev, p);
751
752 case EVIOCGKEYCODE_V2:
753 return evdev_handle_get_keycode_v2(dev, p);
754
755 case EVIOCSKEYCODE_V2:
756 return evdev_handle_set_keycode_v2(dev, p);
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700757 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400758
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700759 size = _IOC_SIZE(cmd);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400760
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700761 /* Now check variable-length commands */
762#define EVIOC_MASK_SIZE(nr) ((nr) & ~(_IOC_SIZEMASK << _IOC_SIZESHIFT))
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700763 switch (EVIOC_MASK_SIZE(cmd)) {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400764
Henrik Rydberg85b77202010-12-18 20:51:13 +0100765 case EVIOCGPROP(0):
766 return bits_to_user(dev->propbit, INPUT_PROP_MAX,
767 size, p, compat_mode);
768
Henrik Rydberg1cf0c6e2012-02-06 08:49:25 +0100769 case EVIOCGMTSLOTS(0):
770 return evdev_handle_mt_request(dev, size, ip);
771
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700772 case EVIOCGKEY(0):
773 return bits_to_user(dev->key, KEY_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400774
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700775 case EVIOCGLED(0):
776 return bits_to_user(dev->led, LED_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400777
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700778 case EVIOCGSND(0):
779 return bits_to_user(dev->snd, SND_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400780
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700781 case EVIOCGSW(0):
782 return bits_to_user(dev->sw, SW_MAX, size, p, compat_mode);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400783
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700784 case EVIOCGNAME(0):
785 return str_to_user(dev->name, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400786
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700787 case EVIOCGPHYS(0):
788 return str_to_user(dev->phys, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400789
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700790 case EVIOCGUNIQ(0):
791 return str_to_user(dev->uniq, size, p);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400792
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700793 case EVIOC_MASK_SIZE(EVIOCSFF):
794 if (input_ff_effect_from_user(p, size, &effect))
795 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400796
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700797 error = input_ff_upload(dev, &effect, file);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400798
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700799 if (put_user(effect.id, &(((struct ff_effect __user *)p)->id)))
800 return -EFAULT;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400801
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700802 return error;
803 }
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400804
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700805 /* Multi-number variable-length handlers */
806 if (_IOC_TYPE(cmd) != 'E')
807 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700809 if (_IOC_DIR(cmd) == _IOC_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700811 if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0, 0)))
812 return handle_eviocgbit(dev,
813 _IOC_NR(cmd) & EV_MAX, size,
814 p, compat_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700816 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400817
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700818 if (!dev->absinfo)
819 return -EINVAL;
820
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700821 t = _IOC_NR(cmd) & ABS_MAX;
822 abs = dev->absinfo[t];
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400823
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700824 if (copy_to_user(p, &abs, min_t(size_t,
825 size, sizeof(struct input_absinfo))))
826 return -EFAULT;
Adam Dawidowskif2278f32008-06-02 01:08:10 -0400827
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700828 return 0;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700831
Daniel Mackf9ce6eb2010-10-18 08:43:50 -0700832 if (_IOC_DIR(cmd) == _IOC_WRITE) {
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700833
834 if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCSABS(0))) {
835
Daniel Mack0a74a1d2010-10-18 08:43:30 -0700836 if (!dev->absinfo)
837 return -EINVAL;
838
Dmitry Torokhov448cd162010-08-02 20:29:10 -0700839 t = _IOC_NR(cmd) & ABS_MAX;
840
841 if (copy_from_user(&abs, p, min_t(size_t,
842 size, sizeof(struct input_absinfo))))
843 return -EFAULT;
844
845 if (size < sizeof(struct input_absinfo))
846 abs.resolution = 0;
847
848 /* We can't change number of reserved MT slots */
849 if (t == ABS_MT_SLOT)
850 return -EINVAL;
851
852 /*
853 * Take event lock to ensure that we are not
854 * changing device parameters in the middle
855 * of event.
856 */
857 spin_lock_irq(&dev->event_lock);
858 dev->absinfo[t] = abs;
859 spin_unlock_irq(&dev->event_lock);
860
861 return 0;
862 }
863 }
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return -EINVAL;
866}
867
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400868static long evdev_ioctl_handler(struct file *file, unsigned int cmd,
869 void __user *p, int compat_mode)
870{
871 struct evdev_client *client = file->private_data;
872 struct evdev *evdev = client->evdev;
873 int retval;
874
875 retval = mutex_lock_interruptible(&evdev->mutex);
876 if (retval)
877 return retval;
878
879 if (!evdev->exist) {
880 retval = -ENODEV;
881 goto out;
882 }
883
884 retval = evdev_do_ioctl(file, cmd, p, compat_mode);
885
886 out:
887 mutex_unlock(&evdev->mutex);
888 return retval;
889}
890
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500891static long evdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
892{
893 return evdev_ioctl_handler(file, cmd, (void __user *)arg, 0);
894}
895
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500896#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400897static long evdev_ioctl_compat(struct file *file,
898 unsigned int cmd, unsigned long arg)
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500899{
Dmitry Torokhov3a51f7c2005-12-11 12:40:37 -0500900 return evdev_ioctl_handler(file, cmd, compat_ptr(arg), 1);
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500901}
902#endif
903
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400904static const struct file_operations evdev_fops = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400905 .owner = THIS_MODULE,
906 .read = evdev_read,
907 .write = evdev_write,
908 .poll = evdev_poll,
909 .open = evdev_open,
910 .release = evdev_release,
911 .unlocked_ioctl = evdev_ioctl,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500912#ifdef CONFIG_COMPAT
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400913 .compat_ioctl = evdev_ioctl_compat,
Juergen Kreileder52658bb2005-05-29 02:26:43 -0500914#endif
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400915 .fasync = evdev_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200916 .flush = evdev_flush,
917 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918};
919
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400920static int evdev_install_chrdev(struct evdev *evdev)
921{
922 /*
923 * No need to do any locking here as calls to connect and
924 * disconnect are serialized by the input core
925 */
926 evdev_table[evdev->minor] = evdev;
927 return 0;
928}
929
930static void evdev_remove_chrdev(struct evdev *evdev)
931{
932 /*
933 * Lock evdev table to prevent race with evdev_open()
934 */
935 mutex_lock(&evdev_table_mutex);
936 evdev_table[evdev->minor] = NULL;
937 mutex_unlock(&evdev_table_mutex);
938}
939
940/*
941 * Mark device non-existent. This disables writes, ioctls and
942 * prevents new users from opening the device. Already posted
943 * blocking reads will stay, however new ones will fail.
944 */
945static void evdev_mark_dead(struct evdev *evdev)
946{
947 mutex_lock(&evdev->mutex);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700948 evdev->exist = false;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400949 mutex_unlock(&evdev->mutex);
950}
951
952static void evdev_cleanup(struct evdev *evdev)
953{
954 struct input_handle *handle = &evdev->handle;
955
956 evdev_mark_dead(evdev);
957 evdev_hangup(evdev);
958 evdev_remove_chrdev(evdev);
959
960 /* evdev is marked dead so no one else accesses evdev->open */
961 if (evdev->open) {
962 input_flush_device(handle, NULL);
963 input_close_device(handle);
964 }
965}
966
967/*
968 * Create new evdev device. Note that input core serializes calls
969 * to connect and disconnect so we don't need to lock evdev_table here.
970 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400971static int evdev_connect(struct input_handler *handler, struct input_dev *dev,
972 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
974 struct evdev *evdev;
975 int minor;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400976 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400978 for (minor = 0; minor < EVDEV_MINORS; minor++)
979 if (!evdev_table[minor])
980 break;
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (minor == EVDEV_MINORS) {
Joe Perchesda0c4902010-11-29 23:33:07 -0800983 pr_err("no more free evdev devices\n");
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400984 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -0400987 evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL);
988 if (!evdev)
989 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Dmitry Torokhovd0ffb9b2007-04-12 01:30:00 -0400991 INIT_LIST_HEAD(&evdev->client_list);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400992 spin_lock_init(&evdev->client_lock);
993 mutex_init(&evdev->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 init_waitqueue_head(&evdev->wait);
995
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -0700996 dev_set_name(&evdev->dev, "event%d", minor);
Dmitry Torokhov20da92d2010-07-15 23:27:36 -0700997 evdev->exist = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 evdev->minor = minor;
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -0400999
Dmitry Torokhova7097ff2008-04-01 00:22:53 -04001000 evdev->handle.dev = input_get_device(dev);
Thadeu Lima de Souza Cascardo3d5cb602009-05-09 16:08:04 -07001001 evdev->handle.name = dev_name(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 evdev->handle.handler = handler;
1003 evdev->handle.private = evdev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001004
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001005 evdev->dev.devt = MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001006 evdev->dev.class = &input_class;
1007 evdev->dev.parent = &dev->dev;
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001008 evdev->dev.release = evdev_free;
1009 device_initialize(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001011 error = input_register_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001012 if (error)
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001013 goto err_free_evdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001015 error = evdev_install_chrdev(evdev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001016 if (error)
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001017 goto err_unregister_handle;
1018
1019 error = device_add(&evdev->dev);
1020 if (error)
1021 goto err_cleanup_evdev;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001022
1023 return 0;
1024
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001025 err_cleanup_evdev:
1026 evdev_cleanup(evdev);
1027 err_unregister_handle:
1028 input_unregister_handle(&evdev->handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001029 err_free_evdev:
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001030 put_device(&evdev->dev);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001031 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032}
1033
1034static void evdev_disconnect(struct input_handle *handle)
1035{
1036 struct evdev *evdev = handle->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001038 device_del(&evdev->dev);
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001039 evdev_cleanup(evdev);
1040 input_unregister_handle(handle);
Dmitry Torokhov9657d752007-06-14 23:32:24 -04001041 put_device(&evdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001044static const struct input_device_id evdev_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 { .driver_info = 1 }, /* Matches all devices */
1046 { }, /* Terminating zero entry */
1047};
1048
1049MODULE_DEVICE_TABLE(input, evdev_ids);
1050
1051static struct input_handler evdev_handler = {
Dmitry Torokhov6addb1d2007-08-30 00:22:18 -04001052 .event = evdev_event,
1053 .connect = evdev_connect,
1054 .disconnect = evdev_disconnect,
1055 .fops = &evdev_fops,
1056 .minor = EVDEV_MINOR_BASE,
1057 .name = "evdev",
1058 .id_table = evdev_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059};
1060
1061static int __init evdev_init(void)
1062{
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001063 return input_register_handler(&evdev_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
1066static void __exit evdev_exit(void)
1067{
1068 input_unregister_handler(&evdev_handler);
1069}
1070
1071module_init(evdev_init);
1072module_exit(evdev_exit);
1073
1074MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
1075MODULE_DESCRIPTION("Input driver event char devices");
1076MODULE_LICENSE("GPL");