]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/hid/hidraw.c
Merge commit 'v2.6.37-rc7' into x86/security
[mirror_ubuntu-artful-kernel.git] / drivers / hid / hidraw.c
CommitLineData
86166b7b
JK
1/*
2 * HID raw devices, giving access to raw HID events.
3 *
4 * In comparison to hiddev, this device does not process the
5 * hid events at all (no parsing, no lookups). This lets applications
6 * to work on raw hid events as they want to, and avoids a need to
7 * use a transport-specific userspace libhid/libusb libraries.
8 *
9 * Copyright (c) 2007 Jiri Kosina
10 */
11
12/*
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms and conditions of the GNU General Public License,
15 * version 2, as published by the Free Software Foundation.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
22#include <linux/fs.h>
23#include <linux/module.h>
24#include <linux/errno.h>
25#include <linux/kernel.h>
26#include <linux/init.h>
27#include <linux/cdev.h>
28#include <linux/poll.h>
29#include <linux/device.h>
30#include <linux/major.h>
5a0e3ad6 31#include <linux/slab.h>
86166b7b
JK
32#include <linux/hid.h>
33#include <linux/mutex.h>
a99bbaf5 34#include <linux/sched.h>
86166b7b
JK
35
36#include <linux/hidraw.h>
37
38static int hidraw_major;
39static struct cdev hidraw_cdev;
40static struct class *hidraw_class;
41static struct hidraw *hidraw_table[HIDRAW_MAX_DEVICES];
7d672cd7 42static DEFINE_MUTEX(minors_lock);
86166b7b
JK
43
44static ssize_t hidraw_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
45{
46 struct hidraw_list *list = file->private_data;
47 int ret = 0, len;
86166b7b
JK
48 DECLARE_WAITQUEUE(wait, current);
49
b0e14951 50 mutex_lock(&list->read_mutex);
86166b7b 51
b0e14951 52 while (ret == 0) {
86166b7b
JK
53 if (list->head == list->tail) {
54 add_wait_queue(&list->hidraw->wait, &wait);
55 set_current_state(TASK_INTERRUPTIBLE);
56
57 while (list->head == list->tail) {
58 if (file->f_flags & O_NONBLOCK) {
59 ret = -EAGAIN;
60 break;
61 }
62 if (signal_pending(current)) {
63 ret = -ERESTARTSYS;
64 break;
65 }
66 if (!list->hidraw->exist) {
67 ret = -EIO;
68 break;
69 }
70
71 /* allow O_NONBLOCK to work well from other threads */
72 mutex_unlock(&list->read_mutex);
73 schedule();
74 mutex_lock(&list->read_mutex);
75 set_current_state(TASK_INTERRUPTIBLE);
76 }
77
78 set_current_state(TASK_RUNNING);
79 remove_wait_queue(&list->hidraw->wait, &wait);
80 }
81
82 if (ret)
83 goto out;
84
86166b7b
JK
85 len = list->buffer[list->tail].len > count ?
86 count : list->buffer[list->tail].len;
87
88 if (copy_to_user(buffer, list->buffer[list->tail].value, len)) {
89 ret = -EFAULT;
90 goto out;
91 }
92 ret += len;
93
94 kfree(list->buffer[list->tail].value);
95 list->tail = (list->tail + 1) & (HIDRAW_BUFFER_SIZE - 1);
96 }
97out:
98 mutex_unlock(&list->read_mutex);
99 return ret;
100}
101
102/* the first byte is expected to be a report number */
103static ssize_t hidraw_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
104{
105 unsigned int minor = iminor(file->f_path.dentry->d_inode);
2e57480b 106 struct hid_device *dev;
86166b7b
JK
107 __u8 *buf;
108 int ret = 0;
109
2e57480b 110 mutex_lock(&minors_lock);
e42dee9a
AO
111
112 if (!hidraw_table[minor]) {
113 ret = -ENODEV;
114 goto out;
115 }
116
2e57480b
JK
117 dev = hidraw_table[minor]->hid;
118
119 if (!dev->hid_output_raw_report) {
120 ret = -ENODEV;
121 goto out;
122 }
86166b7b 123
2b107d62 124 if (count > HID_MAX_BUFFER_SIZE) {
86166b7b 125 printk(KERN_WARNING "hidraw: pid %d passed too large report\n",
ba25f9dc 126 task_pid_nr(current));
2e57480b
JK
127 ret = -EINVAL;
128 goto out;
86166b7b
JK
129 }
130
131 if (count < 2) {
132 printk(KERN_WARNING "hidraw: pid %d passed too short report\n",
ba25f9dc 133 task_pid_nr(current));
2e57480b
JK
134 ret = -EINVAL;
135 goto out;
86166b7b
JK
136 }
137
138 buf = kmalloc(count * sizeof(__u8), GFP_KERNEL);
2e57480b
JK
139 if (!buf) {
140 ret = -ENOMEM;
141 goto out;
142 }
86166b7b
JK
143
144 if (copy_from_user(buf, buffer, count)) {
145 ret = -EFAULT;
2e57480b 146 goto out_free;
86166b7b
JK
147 }
148
d4bfa033 149 ret = dev->hid_output_raw_report(dev, buf, count, HID_OUTPUT_REPORT);
2e57480b 150out_free:
86166b7b 151 kfree(buf);
2e57480b
JK
152out:
153 mutex_unlock(&minors_lock);
86166b7b
JK
154 return ret;
155}
156
157static unsigned int hidraw_poll(struct file *file, poll_table *wait)
158{
159 struct hidraw_list *list = file->private_data;
160
161 poll_wait(file, &list->hidraw->wait, wait);
162 if (list->head != list->tail)
163 return POLLIN | POLLRDNORM;
164 if (!list->hidraw->exist)
165 return POLLERR | POLLHUP;
166 return 0;
167}
168
169static int hidraw_open(struct inode *inode, struct file *file)
170{
171 unsigned int minor = iminor(inode);
172 struct hidraw *dev;
173 struct hidraw_list *list;
174 int err = 0;
175
176 if (!(list = kzalloc(sizeof(struct hidraw_list), GFP_KERNEL))) {
177 err = -ENOMEM;
178 goto out;
179 }
180
7d672cd7 181 mutex_lock(&minors_lock);
86166b7b 182 if (!hidraw_table[minor]) {
86166b7b
JK
183 kfree(list);
184 err = -ENODEV;
185 goto out_unlock;
186 }
187
188 list->hidraw = hidraw_table[minor];
189 mutex_init(&list->read_mutex);
190 list_add_tail(&list->node, &hidraw_table[minor]->list);
191 file->private_data = list;
192
193 dev = hidraw_table[minor];
7d672cd7 194 if (!dev->open++) {
0361a28d
ON
195 if (dev->hid->ll_driver->power) {
196 err = dev->hid->ll_driver->power(dev->hid, PM_HINT_FULLON);
197 if (err < 0)
198 goto out_unlock;
199 }
7d672cd7 200 err = dev->hid->ll_driver->open(dev->hid);
0361a28d
ON
201 if (err < 0) {
202 if (dev->hid->ll_driver->power)
203 dev->hid->ll_driver->power(dev->hid, PM_HINT_NORMAL);
7d672cd7 204 dev->open--;
0361a28d 205 }
7d672cd7 206 }
86166b7b
JK
207
208out_unlock:
7d672cd7 209 mutex_unlock(&minors_lock);
7d672cd7 210out:
86166b7b
JK
211 return err;
212
213}
214
215static int hidraw_release(struct inode * inode, struct file * file)
216{
217 unsigned int minor = iminor(inode);
218 struct hidraw *dev;
219 struct hidraw_list *list = file->private_data;
cb174681 220 int ret;
86166b7b 221
cb174681
JS
222 mutex_lock(&minors_lock);
223 if (!hidraw_table[minor]) {
224 ret = -ENODEV;
225 goto unlock;
226 }
86166b7b
JK
227
228 list_del(&list->node);
229 dev = hidraw_table[minor];
b8a832b1 230 if (!--dev->open) {
0361a28d
ON
231 if (list->hidraw->exist) {
232 if (dev->hid->ll_driver->power)
233 dev->hid->ll_driver->power(dev->hid, PM_HINT_NORMAL);
c500c971 234 dev->hid->ll_driver->close(dev->hid);
0361a28d 235 } else {
86166b7b 236 kfree(list->hidraw);
0361a28d 237 }
86166b7b 238 }
4db1c62c 239 kfree(list);
cb174681
JS
240 ret = 0;
241unlock:
242 mutex_unlock(&minors_lock);
4db1c62c 243
cb174681 244 return ret;
86166b7b
JK
245}
246
979c407e
AC
247static long hidraw_ioctl(struct file *file, unsigned int cmd,
248 unsigned long arg)
86166b7b 249{
979c407e 250 struct inode *inode = file->f_path.dentry->d_inode;
86166b7b 251 unsigned int minor = iminor(inode);
979c407e 252 long ret = 0;
2e57480b 253 struct hidraw *dev;
86166b7b
JK
254 void __user *user_arg = (void __user*) arg;
255
2e57480b
JK
256 mutex_lock(&minors_lock);
257 dev = hidraw_table[minor];
d20d5ffa
AO
258 if (!dev) {
259 ret = -ENODEV;
260 goto out;
261 }
2e57480b 262
86166b7b
JK
263 switch (cmd) {
264 case HIDIOCGRDESCSIZE:
265 if (put_user(dev->hid->rsize, (int __user *)arg))
979c407e
AC
266 ret = -EFAULT;
267 break;
86166b7b
JK
268
269 case HIDIOCGRDESC:
270 {
271 __u32 len;
272
273 if (get_user(len, (int __user *)arg))
979c407e
AC
274 ret = -EFAULT;
275 else if (len > HID_MAX_DESCRIPTOR_SIZE - 1)
276 ret = -EINVAL;
277 else if (copy_to_user(user_arg + offsetof(
278 struct hidraw_report_descriptor,
279 value[0]),
280 dev->hid->rdesc,
281 min(dev->hid->rsize, len)))
282 ret = -EFAULT;
283 break;
86166b7b
JK
284 }
285 case HIDIOCGRAWINFO:
286 {
287 struct hidraw_devinfo dinfo;
288
289 dinfo.bustype = dev->hid->bus;
290 dinfo.vendor = dev->hid->vendor;
291 dinfo.product = dev->hid->product;
292 if (copy_to_user(user_arg, &dinfo, sizeof(dinfo)))
979c407e
AC
293 ret = -EFAULT;
294 break;
86166b7b
JK
295 }
296 default:
9188e79e
JK
297 {
298 struct hid_device *hid = dev->hid;
dfd395af
DC
299 if (_IOC_TYPE(cmd) != 'H' || _IOC_DIR(cmd) != _IOC_READ) {
300 ret = -EINVAL;
301 break;
302 }
9188e79e
JK
303
304 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWNAME(0))) {
305 int len;
38089c65
DC
306 if (!hid->name) {
307 ret = 0;
308 break;
309 }
9188e79e
JK
310 len = strlen(hid->name) + 1;
311 if (len > _IOC_SIZE(cmd))
312 len = _IOC_SIZE(cmd);
dfd395af 313 ret = copy_to_user(user_arg, hid->name, len) ?
9188e79e 314 -EFAULT : len;
dfd395af 315 break;
9188e79e
JK
316 }
317
318 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWPHYS(0))) {
319 int len;
38089c65
DC
320 if (!hid->phys) {
321 ret = 0;
322 break;
323 }
9188e79e
JK
324 len = strlen(hid->phys) + 1;
325 if (len > _IOC_SIZE(cmd))
326 len = _IOC_SIZE(cmd);
dfd395af 327 ret = copy_to_user(user_arg, hid->phys, len) ?
9188e79e 328 -EFAULT : len;
dfd395af 329 break;
9188e79e 330 }
81cd5843 331 }
9188e79e 332
dfd395af 333 ret = -ENOTTY;
86166b7b 334 }
d20d5ffa 335out:
2e57480b 336 mutex_unlock(&minors_lock);
979c407e 337 return ret;
86166b7b
JK
338}
339
340static const struct file_operations hidraw_ops = {
341 .owner = THIS_MODULE,
342 .read = hidraw_read,
343 .write = hidraw_write,
344 .poll = hidraw_poll,
345 .open = hidraw_open,
346 .release = hidraw_release,
979c407e 347 .unlocked_ioctl = hidraw_ioctl,
6038f373 348 .llseek = noop_llseek,
86166b7b
JK
349};
350
351void hidraw_report_event(struct hid_device *hid, u8 *data, int len)
352{
353 struct hidraw *dev = hid->hidraw;
354 struct hidraw_list *list;
355
356 list_for_each_entry(list, &dev->list, node) {
357 list->buffer[list->head].value = kmemdup(data, len, GFP_ATOMIC);
358 list->buffer[list->head].len = len;
359 list->head = (list->head + 1) & (HIDRAW_BUFFER_SIZE - 1);
360 kill_fasync(&list->fasync, SIGIO, POLL_IN);
361 }
362
363 wake_up_interruptible(&dev->wait);
364}
365EXPORT_SYMBOL_GPL(hidraw_report_event);
366
367int hidraw_connect(struct hid_device *hid)
368{
709d27c0 369 int minor, result;
86166b7b
JK
370 struct hidraw *dev;
371
bbe281fa 372 /* we accept any HID device, no matter the applications */
86166b7b 373
709d27c0
MK
374 dev = kzalloc(sizeof(struct hidraw), GFP_KERNEL);
375 if (!dev)
376 return -ENOMEM;
377
378 result = -EINVAL;
86166b7b 379
7d672cd7 380 mutex_lock(&minors_lock);
86166b7b
JK
381
382 for (minor = 0; minor < HIDRAW_MAX_DEVICES; minor++) {
383 if (hidraw_table[minor])
384 continue;
385 hidraw_table[minor] = dev;
386 result = 0;
387 break;
388 }
389
709d27c0 390 if (result) {
7d672cd7 391 mutex_unlock(&minors_lock);
709d27c0 392 kfree(dev);
86166b7b 393 goto out;
709d27c0 394 }
86166b7b 395
aae6c286 396 dev->dev = device_create(hidraw_class, &hid->dev, MKDEV(hidraw_major, minor),
a9b12619 397 NULL, "%s%d", "hidraw", minor);
86166b7b
JK
398
399 if (IS_ERR(dev->dev)) {
86166b7b 400 hidraw_table[minor] = NULL;
7d672cd7 401 mutex_unlock(&minors_lock);
86166b7b 402 result = PTR_ERR(dev->dev);
709d27c0 403 kfree(dev);
86166b7b
JK
404 goto out;
405 }
406
7d672cd7 407 mutex_unlock(&minors_lock);
86166b7b
JK
408 init_waitqueue_head(&dev->wait);
409 INIT_LIST_HEAD(&dev->list);
410
411 dev->hid = hid;
412 dev->minor = minor;
413
414 dev->exist = 1;
415 hid->hidraw = dev;
416
417out:
418 return result;
419
420}
421EXPORT_SYMBOL_GPL(hidraw_connect);
422
423void hidraw_disconnect(struct hid_device *hid)
424{
425 struct hidraw *hidraw = hid->hidraw;
426
427 hidraw->exist = 0;
428
7d672cd7 429 mutex_lock(&minors_lock);
86166b7b 430 hidraw_table[hidraw->minor] = NULL;
7d672cd7 431 mutex_unlock(&minors_lock);
86166b7b
JK
432
433 device_destroy(hidraw_class, MKDEV(hidraw_major, hidraw->minor));
434
435 if (hidraw->open) {
c500c971 436 hid->ll_driver->close(hid);
86166b7b
JK
437 wake_up_interruptible(&hidraw->wait);
438 } else {
439 kfree(hidraw);
440 }
441}
442EXPORT_SYMBOL_GPL(hidraw_disconnect);
443
444int __init hidraw_init(void)
445{
446 int result;
447 dev_t dev_id;
448
449 result = alloc_chrdev_region(&dev_id, HIDRAW_FIRST_MINOR,
450 HIDRAW_MAX_DEVICES, "hidraw");
451
452 hidraw_major = MAJOR(dev_id);
453
454 if (result < 0) {
455 printk(KERN_WARNING "hidraw: can't get major number\n");
456 result = 0;
457 goto out;
458 }
459
460 hidraw_class = class_create(THIS_MODULE, "hidraw");
461 if (IS_ERR(hidraw_class)) {
462 result = PTR_ERR(hidraw_class);
463 unregister_chrdev(hidraw_major, "hidraw");
464 goto out;
465 }
466
467 cdev_init(&hidraw_cdev, &hidraw_ops);
468 cdev_add(&hidraw_cdev, dev_id, HIDRAW_MAX_DEVICES);
469out:
470 return result;
471}
472
140ae3eb 473void hidraw_exit(void)
86166b7b
JK
474{
475 dev_t dev_id = MKDEV(hidraw_major, 0);
476
477 cdev_del(&hidraw_cdev);
478 class_destroy(hidraw_class);
479 unregister_chrdev_region(dev_id, HIDRAW_MAX_DEVICES);
480
481}