blob: 5aefe73cf795f3523ac7473cb03352c48b14a39c [file] [log] [blame]
Jiri Kosina86166b72007-05-14 09:57:40 +02001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Jiri Kosina86166b72007-05-14 09:57:40 +020032#include <linux/hid.h>
33#include <linux/mutex.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040034#include <linux/sched.h>
Jonathan Corbet702e57d2008-05-15 10:25:44 -060035#include <linux/smp_lock.h>
Jiri Kosina86166b72007-05-14 09:57:40 +020036
37#include <linux/hidraw.h>
38
39static int hidraw_major;
40static struct cdev hidraw_cdev;
41static struct class *hidraw_class;
42static struct hidraw *hidraw_table[HIDRAW_MAX_DEVICES];
Oliver Neukum7d672cd2008-10-31 00:07:23 +010043static DEFINE_MUTEX(minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +020044
45static ssize_t hidraw_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
46{
47 struct hidraw_list *list = file->private_data;
48 int ret = 0, len;
Jiri Kosina86166b72007-05-14 09:57:40 +020049 DECLARE_WAITQUEUE(wait, current);
50
Jiri Kosinab0e14952009-10-12 11:25:56 +020051 mutex_lock(&list->read_mutex);
52
Jiri Kosina86166b72007-05-14 09:57:40 +020053 while (ret == 0) {
Jiri Kosina86166b72007-05-14 09:57:40 +020054 if (list->head == list->tail) {
55 add_wait_queue(&list->hidraw->wait, &wait);
56 set_current_state(TASK_INTERRUPTIBLE);
57
58 while (list->head == list->tail) {
59 if (file->f_flags & O_NONBLOCK) {
60 ret = -EAGAIN;
61 break;
62 }
63 if (signal_pending(current)) {
64 ret = -ERESTARTSYS;
65 break;
66 }
67 if (!list->hidraw->exist) {
68 ret = -EIO;
69 break;
70 }
71
72 /* allow O_NONBLOCK to work well from other threads */
73 mutex_unlock(&list->read_mutex);
74 schedule();
75 mutex_lock(&list->read_mutex);
76 set_current_state(TASK_INTERRUPTIBLE);
77 }
78
79 set_current_state(TASK_RUNNING);
80 remove_wait_queue(&list->hidraw->wait, &wait);
81 }
82
83 if (ret)
84 goto out;
85
Jiri Kosina86166b72007-05-14 09:57:40 +020086 len = list->buffer[list->tail].len > count ?
87 count : list->buffer[list->tail].len;
88
89 if (copy_to_user(buffer, list->buffer[list->tail].value, len)) {
90 ret = -EFAULT;
91 goto out;
92 }
93 ret += len;
94
95 kfree(list->buffer[list->tail].value);
96 list->tail = (list->tail + 1) & (HIDRAW_BUFFER_SIZE - 1);
97 }
98out:
99 mutex_unlock(&list->read_mutex);
100 return ret;
101}
102
103/* the first byte is expected to be a report number */
104static ssize_t hidraw_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
105{
106 unsigned int minor = iminor(file->f_path.dentry->d_inode);
Jiri Kosina2e574802010-03-25 14:15:11 +0100107 struct hid_device *dev;
Jiri Kosina86166b72007-05-14 09:57:40 +0200108 __u8 *buf;
109 int ret = 0;
110
Jiri Kosina2e574802010-03-25 14:15:11 +0100111 mutex_lock(&minors_lock);
Antonio Ospitee42dee92010-10-05 17:20:17 +0200112
113 if (!hidraw_table[minor]) {
114 ret = -ENODEV;
115 goto out;
116 }
117
Jiri Kosina2e574802010-03-25 14:15:11 +0100118 dev = hidraw_table[minor]->hid;
119
120 if (!dev->hid_output_raw_report) {
121 ret = -ENODEV;
122 goto out;
123 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200124
Jiri Kosina2b107d62008-09-17 19:41:58 +0200125 if (count > HID_MAX_BUFFER_SIZE) {
Jiri Kosina86166b72007-05-14 09:57:40 +0200126 printk(KERN_WARNING "hidraw: pid %d passed too large report\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700127 task_pid_nr(current));
Jiri Kosina2e574802010-03-25 14:15:11 +0100128 ret = -EINVAL;
129 goto out;
Jiri Kosina86166b72007-05-14 09:57:40 +0200130 }
131
132 if (count < 2) {
133 printk(KERN_WARNING "hidraw: pid %d passed too short report\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700134 task_pid_nr(current));
Jiri Kosina2e574802010-03-25 14:15:11 +0100135 ret = -EINVAL;
Jiri Kosina86166b72007-05-14 09:57:40 +0200136 goto out;
137 }
138
Jiri Kosina2e574802010-03-25 14:15:11 +0100139 buf = kmalloc(count * sizeof(__u8), GFP_KERNEL);
140 if (!buf) {
141 ret = -ENOMEM;
142 goto out;
143 }
144
145 if (copy_from_user(buf, buffer, count)) {
146 ret = -EFAULT;
147 goto out_free;
148 }
149
Jiri Kosinad4bfa032010-01-29 15:03:36 +0100150 ret = dev->hid_output_raw_report(dev, buf, count, HID_OUTPUT_REPORT);
Jiri Kosina2e574802010-03-25 14:15:11 +0100151out_free:
Jiri Kosina86166b72007-05-14 09:57:40 +0200152 kfree(buf);
Jiri Kosina2e574802010-03-25 14:15:11 +0100153out:
154 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200155 return ret;
156}
157
158static unsigned int hidraw_poll(struct file *file, poll_table *wait)
159{
160 struct hidraw_list *list = file->private_data;
161
162 poll_wait(file, &list->hidraw->wait, wait);
163 if (list->head != list->tail)
164 return POLLIN | POLLRDNORM;
165 if (!list->hidraw->exist)
166 return POLLERR | POLLHUP;
167 return 0;
168}
169
170static int hidraw_open(struct inode *inode, struct file *file)
171{
172 unsigned int minor = iminor(inode);
173 struct hidraw *dev;
174 struct hidraw_list *list;
175 int err = 0;
176
177 if (!(list = kzalloc(sizeof(struct hidraw_list), GFP_KERNEL))) {
178 err = -ENOMEM;
179 goto out;
180 }
181
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100182 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200183 if (!hidraw_table[minor]) {
Jiri Kosina86166b72007-05-14 09:57:40 +0200184 kfree(list);
185 err = -ENODEV;
186 goto out_unlock;
187 }
188
189 list->hidraw = hidraw_table[minor];
190 mutex_init(&list->read_mutex);
191 list_add_tail(&list->node, &hidraw_table[minor]->list);
192 file->private_data = list;
193
194 dev = hidraw_table[minor];
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100195 if (!dev->open++) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800196 err = hid_hw_power(dev->hid, PM_HINT_FULLON);
197 if (err < 0)
198 goto out_unlock;
199
200 err = hid_hw_open(dev->hid);
Oliver Neukum0361a282008-12-17 15:38:03 +0100201 if (err < 0) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800202 hid_hw_power(dev->hid, PM_HINT_NORMAL);
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100203 dev->open--;
Oliver Neukum0361a282008-12-17 15:38:03 +0100204 }
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100205 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200206
207out_unlock:
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100208 mutex_unlock(&minors_lock);
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100209out:
Jiri Kosina86166b72007-05-14 09:57:40 +0200210 return err;
211
212}
213
214static int hidraw_release(struct inode * inode, struct file * file)
215{
216 unsigned int minor = iminor(inode);
217 struct hidraw *dev;
218 struct hidraw_list *list = file->private_data;
Jiri Slabycb174682010-10-19 11:29:55 +0200219 int ret;
Jiri Kosina86166b72007-05-14 09:57:40 +0200220
Jiri Slabycb174682010-10-19 11:29:55 +0200221 mutex_lock(&minors_lock);
222 if (!hidraw_table[minor]) {
223 ret = -ENODEV;
224 goto unlock;
225 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200226
227 list_del(&list->node);
228 dev = hidraw_table[minor];
Oliver Neukumb8a832b2008-12-15 13:12:08 +0100229 if (!--dev->open) {
Oliver Neukum0361a282008-12-17 15:38:03 +0100230 if (list->hidraw->exist) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800231 hid_hw_power(dev->hid, PM_HINT_NORMAL);
232 hid_hw_close(dev->hid);
Oliver Neukum0361a282008-12-17 15:38:03 +0100233 } else {
Jiri Kosina86166b72007-05-14 09:57:40 +0200234 kfree(list->hidraw);
Oliver Neukum0361a282008-12-17 15:38:03 +0100235 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200236 }
Jiri Kosina4db1c622008-06-24 14:45:27 +0200237 kfree(list);
Jiri Slabycb174682010-10-19 11:29:55 +0200238 ret = 0;
239unlock:
240 mutex_unlock(&minors_lock);
Jiri Kosina4db1c622008-06-24 14:45:27 +0200241
Jiri Slabycb174682010-10-19 11:29:55 +0200242 return ret;
Jiri Kosina86166b72007-05-14 09:57:40 +0200243}
244
Alan Cox979c4072008-05-26 11:25:26 +0200245static long hidraw_ioctl(struct file *file, unsigned int cmd,
246 unsigned long arg)
Jiri Kosina86166b72007-05-14 09:57:40 +0200247{
Alan Cox979c4072008-05-26 11:25:26 +0200248 struct inode *inode = file->f_path.dentry->d_inode;
Jiri Kosina86166b72007-05-14 09:57:40 +0200249 unsigned int minor = iminor(inode);
Alan Cox979c4072008-05-26 11:25:26 +0200250 long ret = 0;
Jiri Kosina2e574802010-03-25 14:15:11 +0100251 struct hidraw *dev;
Jiri Kosina86166b72007-05-14 09:57:40 +0200252 void __user *user_arg = (void __user*) arg;
253
Jiri Kosina2e574802010-03-25 14:15:11 +0100254 mutex_lock(&minors_lock);
255 dev = hidraw_table[minor];
Antonio Ospited20d5ff2010-10-05 17:20:16 +0200256 if (!dev) {
257 ret = -ENODEV;
258 goto out;
259 }
Jiri Kosina2e574802010-03-25 14:15:11 +0100260
Jiri Kosina86166b72007-05-14 09:57:40 +0200261 switch (cmd) {
262 case HIDIOCGRDESCSIZE:
263 if (put_user(dev->hid->rsize, (int __user *)arg))
Alan Cox979c4072008-05-26 11:25:26 +0200264 ret = -EFAULT;
265 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200266
267 case HIDIOCGRDESC:
268 {
269 __u32 len;
270
271 if (get_user(len, (int __user *)arg))
Alan Cox979c4072008-05-26 11:25:26 +0200272 ret = -EFAULT;
273 else if (len > HID_MAX_DESCRIPTOR_SIZE - 1)
274 ret = -EINVAL;
275 else if (copy_to_user(user_arg + offsetof(
276 struct hidraw_report_descriptor,
277 value[0]),
278 dev->hid->rdesc,
279 min(dev->hid->rsize, len)))
280 ret = -EFAULT;
281 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200282 }
283 case HIDIOCGRAWINFO:
284 {
285 struct hidraw_devinfo dinfo;
286
287 dinfo.bustype = dev->hid->bus;
288 dinfo.vendor = dev->hid->vendor;
289 dinfo.product = dev->hid->product;
290 if (copy_to_user(user_arg, &dinfo, sizeof(dinfo)))
Alan Cox979c4072008-05-26 11:25:26 +0200291 ret = -EFAULT;
292 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200293 }
294 default:
Jiri Kosina9188e792008-11-12 16:14:08 +0100295 {
296 struct hid_device *hid = dev->hid;
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300297 if (_IOC_TYPE(cmd) != 'H' || _IOC_DIR(cmd) != _IOC_READ) {
298 ret = -EINVAL;
299 break;
300 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100301
302 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWNAME(0))) {
303 int len;
Dan Carpenter38089c62009-04-07 16:35:56 +0200304 if (!hid->name) {
305 ret = 0;
306 break;
307 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100308 len = strlen(hid->name) + 1;
309 if (len > _IOC_SIZE(cmd))
310 len = _IOC_SIZE(cmd);
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300311 ret = copy_to_user(user_arg, hid->name, len) ?
Jiri Kosina9188e792008-11-12 16:14:08 +0100312 -EFAULT : len;
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300313 break;
Jiri Kosina9188e792008-11-12 16:14:08 +0100314 }
315
316 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWPHYS(0))) {
317 int len;
Dan Carpenter38089c62009-04-07 16:35:56 +0200318 if (!hid->phys) {
319 ret = 0;
320 break;
321 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100322 len = strlen(hid->phys) + 1;
323 if (len > _IOC_SIZE(cmd))
324 len = _IOC_SIZE(cmd);
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300325 ret = copy_to_user(user_arg, hid->phys, len) ?
Jiri Kosina9188e792008-11-12 16:14:08 +0100326 -EFAULT : len;
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300327 break;
Jiri Kosina9188e792008-11-12 16:14:08 +0100328 }
Antonio Ospite81cd5842010-04-30 21:49:58 +0200329 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100330
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300331 ret = -ENOTTY;
Jiri Kosina86166b72007-05-14 09:57:40 +0200332 }
Antonio Ospited20d5ff2010-10-05 17:20:16 +0200333out:
Jiri Kosina2e574802010-03-25 14:15:11 +0100334 mutex_unlock(&minors_lock);
Alan Cox979c4072008-05-26 11:25:26 +0200335 return ret;
Jiri Kosina86166b72007-05-14 09:57:40 +0200336}
337
338static const struct file_operations hidraw_ops = {
339 .owner = THIS_MODULE,
340 .read = hidraw_read,
341 .write = hidraw_write,
342 .poll = hidraw_poll,
343 .open = hidraw_open,
344 .release = hidraw_release,
Alan Cox979c4072008-05-26 11:25:26 +0200345 .unlocked_ioctl = hidraw_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200346 .llseek = noop_llseek,
Jiri Kosina86166b72007-05-14 09:57:40 +0200347};
348
349void hidraw_report_event(struct hid_device *hid, u8 *data, int len)
350{
351 struct hidraw *dev = hid->hidraw;
352 struct hidraw_list *list;
353
354 list_for_each_entry(list, &dev->list, node) {
355 list->buffer[list->head].value = kmemdup(data, len, GFP_ATOMIC);
356 list->buffer[list->head].len = len;
357 list->head = (list->head + 1) & (HIDRAW_BUFFER_SIZE - 1);
358 kill_fasync(&list->fasync, SIGIO, POLL_IN);
359 }
360
361 wake_up_interruptible(&dev->wait);
362}
363EXPORT_SYMBOL_GPL(hidraw_report_event);
364
365int hidraw_connect(struct hid_device *hid)
366{
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200367 int minor, result;
Jiri Kosina86166b72007-05-14 09:57:40 +0200368 struct hidraw *dev;
369
Jiri Kosinabbe281f2009-06-04 15:44:25 +0200370 /* we accept any HID device, no matter the applications */
Jiri Kosina86166b72007-05-14 09:57:40 +0200371
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200372 dev = kzalloc(sizeof(struct hidraw), GFP_KERNEL);
373 if (!dev)
374 return -ENOMEM;
375
376 result = -EINVAL;
Jiri Kosina86166b72007-05-14 09:57:40 +0200377
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100378 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200379
380 for (minor = 0; minor < HIDRAW_MAX_DEVICES; minor++) {
381 if (hidraw_table[minor])
382 continue;
383 hidraw_table[minor] = dev;
384 result = 0;
385 break;
386 }
387
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200388 if (result) {
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100389 mutex_unlock(&minors_lock);
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200390 kfree(dev);
Jiri Kosina86166b72007-05-14 09:57:40 +0200391 goto out;
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200392 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200393
Jiri Kosinaaae6c282008-12-04 16:16:46 +0100394 dev->dev = device_create(hidraw_class, &hid->dev, MKDEV(hidraw_major, minor),
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -0700395 NULL, "%s%d", "hidraw", minor);
Jiri Kosina86166b72007-05-14 09:57:40 +0200396
397 if (IS_ERR(dev->dev)) {
Jiri Kosina86166b72007-05-14 09:57:40 +0200398 hidraw_table[minor] = NULL;
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100399 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200400 result = PTR_ERR(dev->dev);
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200401 kfree(dev);
Jiri Kosina86166b72007-05-14 09:57:40 +0200402 goto out;
403 }
404
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100405 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200406 init_waitqueue_head(&dev->wait);
407 INIT_LIST_HEAD(&dev->list);
408
409 dev->hid = hid;
410 dev->minor = minor;
411
412 dev->exist = 1;
413 hid->hidraw = dev;
414
415out:
416 return result;
417
418}
419EXPORT_SYMBOL_GPL(hidraw_connect);
420
421void hidraw_disconnect(struct hid_device *hid)
422{
423 struct hidraw *hidraw = hid->hidraw;
424
425 hidraw->exist = 0;
426
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100427 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200428 hidraw_table[hidraw->minor] = NULL;
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100429 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200430
431 device_destroy(hidraw_class, MKDEV(hidraw_major, hidraw->minor));
432
433 if (hidraw->open) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800434 hid_hw_close(hid);
Jiri Kosina86166b72007-05-14 09:57:40 +0200435 wake_up_interruptible(&hidraw->wait);
436 } else {
437 kfree(hidraw);
438 }
439}
440EXPORT_SYMBOL_GPL(hidraw_disconnect);
441
442int __init hidraw_init(void)
443{
444 int result;
445 dev_t dev_id;
446
447 result = alloc_chrdev_region(&dev_id, HIDRAW_FIRST_MINOR,
448 HIDRAW_MAX_DEVICES, "hidraw");
449
450 hidraw_major = MAJOR(dev_id);
451
452 if (result < 0) {
453 printk(KERN_WARNING "hidraw: can't get major number\n");
454 result = 0;
455 goto out;
456 }
457
458 hidraw_class = class_create(THIS_MODULE, "hidraw");
459 if (IS_ERR(hidraw_class)) {
460 result = PTR_ERR(hidraw_class);
461 unregister_chrdev(hidraw_major, "hidraw");
462 goto out;
463 }
464
465 cdev_init(&hidraw_cdev, &hidraw_ops);
466 cdev_add(&hidraw_cdev, dev_id, HIDRAW_MAX_DEVICES);
467out:
468 return result;
469}
470
Jiri Slaby140ae3e2008-10-17 18:04:48 +0200471void hidraw_exit(void)
Jiri Kosina86166b72007-05-14 09:57:40 +0200472{
473 dev_t dev_id = MKDEV(hidraw_major, 0);
474
475 cdev_del(&hidraw_cdev);
476 class_destroy(hidraw_class);
477 unregister_chrdev_region(dev_id, HIDRAW_MAX_DEVICES);
478
479}