blob: 7919d3e843b69d8764dfba05285ce0bfcd5266d6 [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>
31#include <linux/hid.h>
32#include <linux/mutex.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040033#include <linux/sched.h>
Jonathan Corbet702e57d2008-05-15 10:25:44 -060034#include <linux/smp_lock.h>
Jiri Kosina86166b72007-05-14 09:57:40 +020035
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];
Oliver Neukum7d672cd2008-10-31 00:07:23 +010042static DEFINE_MUTEX(minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +020043
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;
48 char *report;
49 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
86 report = list->buffer[list->tail].value;
87 len = list->buffer[list->tail].len > count ?
88 count : list->buffer[list->tail].len;
89
90 if (copy_to_user(buffer, list->buffer[list->tail].value, len)) {
91 ret = -EFAULT;
92 goto out;
93 }
94 ret += len;
95
96 kfree(list->buffer[list->tail].value);
97 list->tail = (list->tail + 1) & (HIDRAW_BUFFER_SIZE - 1);
98 }
99out:
100 mutex_unlock(&list->read_mutex);
101 return ret;
102}
103
104/* the first byte is expected to be a report number */
105static ssize_t hidraw_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
106{
107 unsigned int minor = iminor(file->f_path.dentry->d_inode);
Jiri Kosina2e574802010-03-25 14:15:11 +0100108 struct hid_device *dev;
Jiri Kosina86166b72007-05-14 09:57:40 +0200109 __u8 *buf;
110 int ret = 0;
111
Jiri Kosina2e574802010-03-25 14:15:11 +0100112 mutex_lock(&minors_lock);
113 dev = hidraw_table[minor]->hid;
114
115 if (!dev->hid_output_raw_report) {
116 ret = -ENODEV;
117 goto out;
118 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200119
Jiri Kosina2b107d62008-09-17 19:41:58 +0200120 if (count > HID_MAX_BUFFER_SIZE) {
Jiri Kosina86166b72007-05-14 09:57:40 +0200121 printk(KERN_WARNING "hidraw: pid %d passed too large report\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700122 task_pid_nr(current));
Jiri Kosina2e574802010-03-25 14:15:11 +0100123 ret = -EINVAL;
124 goto out;
Jiri Kosina86166b72007-05-14 09:57:40 +0200125 }
126
127 if (count < 2) {
128 printk(KERN_WARNING "hidraw: pid %d passed too short report\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700129 task_pid_nr(current));
Jiri Kosina2e574802010-03-25 14:15:11 +0100130 ret = -EINVAL;
Jiri Kosina86166b72007-05-14 09:57:40 +0200131 goto out;
132 }
133
Jiri Kosina2e574802010-03-25 14:15:11 +0100134 buf = kmalloc(count * sizeof(__u8), GFP_KERNEL);
135 if (!buf) {
136 ret = -ENOMEM;
137 goto out;
138 }
139
140 if (copy_from_user(buf, buffer, count)) {
141 ret = -EFAULT;
142 goto out_free;
143 }
144
Jiri Kosinad4bfa032010-01-29 15:03:36 +0100145 ret = dev->hid_output_raw_report(dev, buf, count, HID_OUTPUT_REPORT);
Jiri Kosina2e574802010-03-25 14:15:11 +0100146out_free:
Jiri Kosina86166b72007-05-14 09:57:40 +0200147 kfree(buf);
Jiri Kosina2e574802010-03-25 14:15:11 +0100148out:
149 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200150 return ret;
151}
152
153static unsigned int hidraw_poll(struct file *file, poll_table *wait)
154{
155 struct hidraw_list *list = file->private_data;
156
157 poll_wait(file, &list->hidraw->wait, wait);
158 if (list->head != list->tail)
159 return POLLIN | POLLRDNORM;
160 if (!list->hidraw->exist)
161 return POLLERR | POLLHUP;
162 return 0;
163}
164
165static int hidraw_open(struct inode *inode, struct file *file)
166{
167 unsigned int minor = iminor(inode);
168 struct hidraw *dev;
169 struct hidraw_list *list;
170 int err = 0;
171
172 if (!(list = kzalloc(sizeof(struct hidraw_list), GFP_KERNEL))) {
173 err = -ENOMEM;
174 goto out;
175 }
176
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100177 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200178 if (!hidraw_table[minor]) {
Jiri Kosina86166b72007-05-14 09:57:40 +0200179 kfree(list);
180 err = -ENODEV;
181 goto out_unlock;
182 }
183
184 list->hidraw = hidraw_table[minor];
185 mutex_init(&list->read_mutex);
186 list_add_tail(&list->node, &hidraw_table[minor]->list);
187 file->private_data = list;
188
189 dev = hidraw_table[minor];
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100190 if (!dev->open++) {
Oliver Neukum0361a282008-12-17 15:38:03 +0100191 if (dev->hid->ll_driver->power) {
192 err = dev->hid->ll_driver->power(dev->hid, PM_HINT_FULLON);
193 if (err < 0)
194 goto out_unlock;
195 }
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100196 err = dev->hid->ll_driver->open(dev->hid);
Oliver Neukum0361a282008-12-17 15:38:03 +0100197 if (err < 0) {
198 if (dev->hid->ll_driver->power)
199 dev->hid->ll_driver->power(dev->hid, PM_HINT_NORMAL);
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100200 dev->open--;
Oliver Neukum0361a282008-12-17 15:38:03 +0100201 }
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100202 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200203
204out_unlock:
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100205 mutex_unlock(&minors_lock);
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100206out:
Jiri Kosina86166b72007-05-14 09:57:40 +0200207 return err;
208
209}
210
211static int hidraw_release(struct inode * inode, struct file * file)
212{
213 unsigned int minor = iminor(inode);
214 struct hidraw *dev;
215 struct hidraw_list *list = file->private_data;
216
Jiri Kosina0a504542010-03-25 15:20:01 +0100217 if (!hidraw_table[minor])
Jiri Kosina86166b72007-05-14 09:57:40 +0200218 return -ENODEV;
Jiri Kosina86166b72007-05-14 09:57:40 +0200219
220 list_del(&list->node);
221 dev = hidraw_table[minor];
Oliver Neukumb8a832b2008-12-15 13:12:08 +0100222 if (!--dev->open) {
Oliver Neukum0361a282008-12-17 15:38:03 +0100223 if (list->hidraw->exist) {
224 if (dev->hid->ll_driver->power)
225 dev->hid->ll_driver->power(dev->hid, PM_HINT_NORMAL);
Jiri Slabyc500c972008-05-16 11:49:16 +0200226 dev->hid->ll_driver->close(dev->hid);
Oliver Neukum0361a282008-12-17 15:38:03 +0100227 } else {
Jiri Kosina86166b72007-05-14 09:57:40 +0200228 kfree(list->hidraw);
Oliver Neukum0361a282008-12-17 15:38:03 +0100229 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200230 }
231
Jiri Kosina4db1c622008-06-24 14:45:27 +0200232 kfree(list);
233
Jiri Kosina86166b72007-05-14 09:57:40 +0200234 return 0;
235}
236
Alan Cox979c4072008-05-26 11:25:26 +0200237static long hidraw_ioctl(struct file *file, unsigned int cmd,
238 unsigned long arg)
Jiri Kosina86166b72007-05-14 09:57:40 +0200239{
Alan Cox979c4072008-05-26 11:25:26 +0200240 struct inode *inode = file->f_path.dentry->d_inode;
Jiri Kosina86166b72007-05-14 09:57:40 +0200241 unsigned int minor = iminor(inode);
Alan Cox979c4072008-05-26 11:25:26 +0200242 long ret = 0;
Jiri Kosina2e574802010-03-25 14:15:11 +0100243 struct hidraw *dev;
Jiri Kosina86166b72007-05-14 09:57:40 +0200244 void __user *user_arg = (void __user*) arg;
245
Jiri Kosina2e574802010-03-25 14:15:11 +0100246 mutex_lock(&minors_lock);
247 dev = hidraw_table[minor];
248
Jiri Kosina86166b72007-05-14 09:57:40 +0200249 switch (cmd) {
250 case HIDIOCGRDESCSIZE:
251 if (put_user(dev->hid->rsize, (int __user *)arg))
Alan Cox979c4072008-05-26 11:25:26 +0200252 ret = -EFAULT;
253 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200254
255 case HIDIOCGRDESC:
256 {
257 __u32 len;
258
259 if (get_user(len, (int __user *)arg))
Alan Cox979c4072008-05-26 11:25:26 +0200260 ret = -EFAULT;
261 else if (len > HID_MAX_DESCRIPTOR_SIZE - 1)
262 ret = -EINVAL;
263 else if (copy_to_user(user_arg + offsetof(
264 struct hidraw_report_descriptor,
265 value[0]),
266 dev->hid->rdesc,
267 min(dev->hid->rsize, len)))
268 ret = -EFAULT;
269 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200270 }
271 case HIDIOCGRAWINFO:
272 {
273 struct hidraw_devinfo dinfo;
274
275 dinfo.bustype = dev->hid->bus;
276 dinfo.vendor = dev->hid->vendor;
277 dinfo.product = dev->hid->product;
278 if (copy_to_user(user_arg, &dinfo, sizeof(dinfo)))
Alan Cox979c4072008-05-26 11:25:26 +0200279 ret = -EFAULT;
280 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200281 }
282 default:
Jiri Kosina9188e792008-11-12 16:14:08 +0100283 {
284 struct hid_device *hid = dev->hid;
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300285 if (_IOC_TYPE(cmd) != 'H' || _IOC_DIR(cmd) != _IOC_READ) {
286 ret = -EINVAL;
287 break;
288 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100289
290 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWNAME(0))) {
291 int len;
Dan Carpenter38089c62009-04-07 16:35:56 +0200292 if (!hid->name) {
293 ret = 0;
294 break;
295 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100296 len = strlen(hid->name) + 1;
297 if (len > _IOC_SIZE(cmd))
298 len = _IOC_SIZE(cmd);
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300299 ret = copy_to_user(user_arg, hid->name, len) ?
Jiri Kosina9188e792008-11-12 16:14:08 +0100300 -EFAULT : len;
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300301 break;
Jiri Kosina9188e792008-11-12 16:14:08 +0100302 }
303
304 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWPHYS(0))) {
305 int len;
Dan Carpenter38089c62009-04-07 16:35:56 +0200306 if (!hid->phys) {
307 ret = 0;
308 break;
309 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100310 len = strlen(hid->phys) + 1;
311 if (len > _IOC_SIZE(cmd))
312 len = _IOC_SIZE(cmd);
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300313 ret = copy_to_user(user_arg, hid->phys, len) ?
Jiri Kosina9188e792008-11-12 16:14:08 +0100314 -EFAULT : len;
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300315 break;
Jiri Kosina9188e792008-11-12 16:14:08 +0100316 }
317 }
318
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300319 ret = -ENOTTY;
Jiri Kosina86166b72007-05-14 09:57:40 +0200320 }
Jiri Kosina2e574802010-03-25 14:15:11 +0100321 mutex_unlock(&minors_lock);
Alan Cox979c4072008-05-26 11:25:26 +0200322 return ret;
Jiri Kosina86166b72007-05-14 09:57:40 +0200323}
324
325static const struct file_operations hidraw_ops = {
326 .owner = THIS_MODULE,
327 .read = hidraw_read,
328 .write = hidraw_write,
329 .poll = hidraw_poll,
330 .open = hidraw_open,
331 .release = hidraw_release,
Alan Cox979c4072008-05-26 11:25:26 +0200332 .unlocked_ioctl = hidraw_ioctl,
Jiri Kosina86166b72007-05-14 09:57:40 +0200333};
334
335void hidraw_report_event(struct hid_device *hid, u8 *data, int len)
336{
337 struct hidraw *dev = hid->hidraw;
338 struct hidraw_list *list;
339
340 list_for_each_entry(list, &dev->list, node) {
341 list->buffer[list->head].value = kmemdup(data, len, GFP_ATOMIC);
342 list->buffer[list->head].len = len;
343 list->head = (list->head + 1) & (HIDRAW_BUFFER_SIZE - 1);
344 kill_fasync(&list->fasync, SIGIO, POLL_IN);
345 }
346
347 wake_up_interruptible(&dev->wait);
348}
349EXPORT_SYMBOL_GPL(hidraw_report_event);
350
351int hidraw_connect(struct hid_device *hid)
352{
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200353 int minor, result;
Jiri Kosina86166b72007-05-14 09:57:40 +0200354 struct hidraw *dev;
355
Jiri Kosinabbe281f2009-06-04 15:44:25 +0200356 /* we accept any HID device, no matter the applications */
Jiri Kosina86166b72007-05-14 09:57:40 +0200357
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200358 dev = kzalloc(sizeof(struct hidraw), GFP_KERNEL);
359 if (!dev)
360 return -ENOMEM;
361
362 result = -EINVAL;
Jiri Kosina86166b72007-05-14 09:57:40 +0200363
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100364 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200365
366 for (minor = 0; minor < HIDRAW_MAX_DEVICES; minor++) {
367 if (hidraw_table[minor])
368 continue;
369 hidraw_table[minor] = dev;
370 result = 0;
371 break;
372 }
373
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200374 if (result) {
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100375 mutex_unlock(&minors_lock);
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200376 kfree(dev);
Jiri Kosina86166b72007-05-14 09:57:40 +0200377 goto out;
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200378 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200379
Jiri Kosinaaae6c282008-12-04 16:16:46 +0100380 dev->dev = device_create(hidraw_class, &hid->dev, MKDEV(hidraw_major, minor),
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -0700381 NULL, "%s%d", "hidraw", minor);
Jiri Kosina86166b72007-05-14 09:57:40 +0200382
383 if (IS_ERR(dev->dev)) {
Jiri Kosina86166b72007-05-14 09:57:40 +0200384 hidraw_table[minor] = NULL;
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100385 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200386 result = PTR_ERR(dev->dev);
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200387 kfree(dev);
Jiri Kosina86166b72007-05-14 09:57:40 +0200388 goto out;
389 }
390
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100391 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200392 init_waitqueue_head(&dev->wait);
393 INIT_LIST_HEAD(&dev->list);
394
395 dev->hid = hid;
396 dev->minor = minor;
397
398 dev->exist = 1;
399 hid->hidraw = dev;
400
401out:
402 return result;
403
404}
405EXPORT_SYMBOL_GPL(hidraw_connect);
406
407void hidraw_disconnect(struct hid_device *hid)
408{
409 struct hidraw *hidraw = hid->hidraw;
410
411 hidraw->exist = 0;
412
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100413 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200414 hidraw_table[hidraw->minor] = NULL;
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100415 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200416
417 device_destroy(hidraw_class, MKDEV(hidraw_major, hidraw->minor));
418
419 if (hidraw->open) {
Jiri Slabyc500c972008-05-16 11:49:16 +0200420 hid->ll_driver->close(hid);
Jiri Kosina86166b72007-05-14 09:57:40 +0200421 wake_up_interruptible(&hidraw->wait);
422 } else {
423 kfree(hidraw);
424 }
425}
426EXPORT_SYMBOL_GPL(hidraw_disconnect);
427
428int __init hidraw_init(void)
429{
430 int result;
431 dev_t dev_id;
432
433 result = alloc_chrdev_region(&dev_id, HIDRAW_FIRST_MINOR,
434 HIDRAW_MAX_DEVICES, "hidraw");
435
436 hidraw_major = MAJOR(dev_id);
437
438 if (result < 0) {
439 printk(KERN_WARNING "hidraw: can't get major number\n");
440 result = 0;
441 goto out;
442 }
443
444 hidraw_class = class_create(THIS_MODULE, "hidraw");
445 if (IS_ERR(hidraw_class)) {
446 result = PTR_ERR(hidraw_class);
447 unregister_chrdev(hidraw_major, "hidraw");
448 goto out;
449 }
450
451 cdev_init(&hidraw_cdev, &hidraw_ops);
452 cdev_add(&hidraw_cdev, dev_id, HIDRAW_MAX_DEVICES);
453out:
454 return result;
455}
456
Jiri Slaby140ae3e2008-10-17 18:04:48 +0200457void hidraw_exit(void)
Jiri Kosina86166b72007-05-14 09:57:40 +0200458{
459 dev_t dev_id = MKDEV(hidraw_major, 0);
460
461 cdev_del(&hidraw_cdev);
462 class_destroy(hidraw_class);
463 unregister_chrdev_region(dev_id, HIDRAW_MAX_DEVICES);
464
465}