blob: 468e87b53ed26aadb86ed6b127599ea669a6aa99 [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
Joe Perches4291ee32010-12-09 19:29:03 -080022#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23
Jiri Kosina86166b72007-05-14 09:57:40 +020024#include <linux/fs.h>
25#include <linux/module.h>
26#include <linux/errno.h>
27#include <linux/kernel.h>
28#include <linux/init.h>
29#include <linux/cdev.h>
30#include <linux/poll.h>
31#include <linux/device.h>
32#include <linux/major.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Jiri Kosina86166b72007-05-14 09:57:40 +020034#include <linux/hid.h>
35#include <linux/mutex.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040036#include <linux/sched.h>
Jiri Kosina86166b72007-05-14 09:57:40 +020037
38#include <linux/hidraw.h>
39
40static int hidraw_major;
41static struct cdev hidraw_cdev;
42static struct class *hidraw_class;
43static struct hidraw *hidraw_table[HIDRAW_MAX_DEVICES];
Oliver Neukum7d672cd2008-10-31 00:07:23 +010044static DEFINE_MUTEX(minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +020045
46static ssize_t hidraw_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
47{
48 struct hidraw_list *list = file->private_data;
49 int ret = 0, len;
Jiri Kosina86166b72007-05-14 09:57:40 +020050 DECLARE_WAITQUEUE(wait, current);
51
Jiri Kosinab0e14952009-10-12 11:25:56 +020052 mutex_lock(&list->read_mutex);
53
Jiri Kosina86166b72007-05-14 09:57:40 +020054 while (ret == 0) {
Jiri Kosina86166b72007-05-14 09:57:40 +020055 if (list->head == list->tail) {
56 add_wait_queue(&list->hidraw->wait, &wait);
57 set_current_state(TASK_INTERRUPTIBLE);
58
59 while (list->head == list->tail) {
60 if (file->f_flags & O_NONBLOCK) {
61 ret = -EAGAIN;
62 break;
63 }
64 if (signal_pending(current)) {
65 ret = -ERESTARTSYS;
66 break;
67 }
68 if (!list->hidraw->exist) {
69 ret = -EIO;
70 break;
71 }
72
73 /* allow O_NONBLOCK to work well from other threads */
74 mutex_unlock(&list->read_mutex);
75 schedule();
76 mutex_lock(&list->read_mutex);
77 set_current_state(TASK_INTERRUPTIBLE);
78 }
79
80 set_current_state(TASK_RUNNING);
81 remove_wait_queue(&list->hidraw->wait, &wait);
82 }
83
84 if (ret)
85 goto out;
86
Jiri Kosina86166b72007-05-14 09:57:40 +020087 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);
Antonio Ospitee42dee92010-10-05 17:20:17 +0200113
114 if (!hidraw_table[minor]) {
115 ret = -ENODEV;
116 goto out;
117 }
118
Jiri Kosina2e574802010-03-25 14:15:11 +0100119 dev = hidraw_table[minor]->hid;
120
121 if (!dev->hid_output_raw_report) {
122 ret = -ENODEV;
123 goto out;
124 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200125
Jiri Kosina2b107d62008-09-17 19:41:58 +0200126 if (count > HID_MAX_BUFFER_SIZE) {
Joe Perches4291ee32010-12-09 19:29:03 -0800127 hid_warn(dev, "pid %d passed too large report\n",
128 task_pid_nr(current));
Jiri Kosina2e574802010-03-25 14:15:11 +0100129 ret = -EINVAL;
130 goto out;
Jiri Kosina86166b72007-05-14 09:57:40 +0200131 }
132
133 if (count < 2) {
Joe Perches4291ee32010-12-09 19:29:03 -0800134 hid_warn(dev, "pid %d passed too short report\n",
135 task_pid_nr(current));
Jiri Kosina2e574802010-03-25 14:15:11 +0100136 ret = -EINVAL;
Jiri Kosina86166b72007-05-14 09:57:40 +0200137 goto out;
138 }
139
Jiri Kosina2e574802010-03-25 14:15:11 +0100140 buf = kmalloc(count * sizeof(__u8), GFP_KERNEL);
141 if (!buf) {
142 ret = -ENOMEM;
143 goto out;
144 }
145
146 if (copy_from_user(buf, buffer, count)) {
147 ret = -EFAULT;
148 goto out_free;
149 }
150
Jiri Kosinad4bfa032010-01-29 15:03:36 +0100151 ret = dev->hid_output_raw_report(dev, buf, count, HID_OUTPUT_REPORT);
Jiri Kosina2e574802010-03-25 14:15:11 +0100152out_free:
Jiri Kosina86166b72007-05-14 09:57:40 +0200153 kfree(buf);
Jiri Kosina2e574802010-03-25 14:15:11 +0100154out:
155 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200156 return ret;
157}
158
159static unsigned int hidraw_poll(struct file *file, poll_table *wait)
160{
161 struct hidraw_list *list = file->private_data;
162
163 poll_wait(file, &list->hidraw->wait, wait);
164 if (list->head != list->tail)
165 return POLLIN | POLLRDNORM;
166 if (!list->hidraw->exist)
167 return POLLERR | POLLHUP;
168 return 0;
169}
170
171static int hidraw_open(struct inode *inode, struct file *file)
172{
173 unsigned int minor = iminor(inode);
174 struct hidraw *dev;
175 struct hidraw_list *list;
176 int err = 0;
177
178 if (!(list = kzalloc(sizeof(struct hidraw_list), GFP_KERNEL))) {
179 err = -ENOMEM;
180 goto out;
181 }
182
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100183 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200184 if (!hidraw_table[minor]) {
Jiri Kosina86166b72007-05-14 09:57:40 +0200185 kfree(list);
186 err = -ENODEV;
187 goto out_unlock;
188 }
189
190 list->hidraw = hidraw_table[minor];
191 mutex_init(&list->read_mutex);
192 list_add_tail(&list->node, &hidraw_table[minor]->list);
193 file->private_data = list;
194
195 dev = hidraw_table[minor];
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100196 if (!dev->open++) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800197 err = hid_hw_power(dev->hid, PM_HINT_FULLON);
198 if (err < 0)
199 goto out_unlock;
200
201 err = hid_hw_open(dev->hid);
Oliver Neukum0361a282008-12-17 15:38:03 +0100202 if (err < 0) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800203 hid_hw_power(dev->hid, PM_HINT_NORMAL);
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100204 dev->open--;
Oliver Neukum0361a282008-12-17 15:38:03 +0100205 }
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100206 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200207
208out_unlock:
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100209 mutex_unlock(&minors_lock);
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100210out:
Jiri Kosina86166b72007-05-14 09:57:40 +0200211 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;
Jiri Slabycb174682010-10-19 11:29:55 +0200220 int ret;
Jiri Kosina86166b72007-05-14 09:57:40 +0200221
Jiri Slabycb174682010-10-19 11:29:55 +0200222 mutex_lock(&minors_lock);
223 if (!hidraw_table[minor]) {
224 ret = -ENODEV;
225 goto unlock;
226 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200227
228 list_del(&list->node);
229 dev = hidraw_table[minor];
Oliver Neukumb8a832b2008-12-15 13:12:08 +0100230 if (!--dev->open) {
Oliver Neukum0361a282008-12-17 15:38:03 +0100231 if (list->hidraw->exist) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800232 hid_hw_power(dev->hid, PM_HINT_NORMAL);
233 hid_hw_close(dev->hid);
Oliver Neukum0361a282008-12-17 15:38:03 +0100234 } else {
Jiri Kosina86166b72007-05-14 09:57:40 +0200235 kfree(list->hidraw);
Oliver Neukum0361a282008-12-17 15:38:03 +0100236 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200237 }
Jiri Kosina4db1c622008-06-24 14:45:27 +0200238 kfree(list);
Jiri Slabycb174682010-10-19 11:29:55 +0200239 ret = 0;
240unlock:
241 mutex_unlock(&minors_lock);
Jiri Kosina4db1c622008-06-24 14:45:27 +0200242
Jiri Slabycb174682010-10-19 11:29:55 +0200243 return ret;
Jiri Kosina86166b72007-05-14 09:57:40 +0200244}
245
Alan Cox979c4072008-05-26 11:25:26 +0200246static long hidraw_ioctl(struct file *file, unsigned int cmd,
247 unsigned long arg)
Jiri Kosina86166b72007-05-14 09:57:40 +0200248{
Alan Cox979c4072008-05-26 11:25:26 +0200249 struct inode *inode = file->f_path.dentry->d_inode;
Jiri Kosina86166b72007-05-14 09:57:40 +0200250 unsigned int minor = iminor(inode);
Alan Cox979c4072008-05-26 11:25:26 +0200251 long ret = 0;
Jiri Kosina2e574802010-03-25 14:15:11 +0100252 struct hidraw *dev;
Jiri Kosina86166b72007-05-14 09:57:40 +0200253 void __user *user_arg = (void __user*) arg;
254
Jiri Kosina2e574802010-03-25 14:15:11 +0100255 mutex_lock(&minors_lock);
256 dev = hidraw_table[minor];
Antonio Ospited20d5ff2010-10-05 17:20:16 +0200257 if (!dev) {
258 ret = -ENODEV;
259 goto out;
260 }
Jiri Kosina2e574802010-03-25 14:15:11 +0100261
Jiri Kosina86166b72007-05-14 09:57:40 +0200262 switch (cmd) {
263 case HIDIOCGRDESCSIZE:
264 if (put_user(dev->hid->rsize, (int __user *)arg))
Alan Cox979c4072008-05-26 11:25:26 +0200265 ret = -EFAULT;
266 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200267
268 case HIDIOCGRDESC:
269 {
270 __u32 len;
271
272 if (get_user(len, (int __user *)arg))
Alan Cox979c4072008-05-26 11:25:26 +0200273 ret = -EFAULT;
274 else if (len > HID_MAX_DESCRIPTOR_SIZE - 1)
275 ret = -EINVAL;
276 else if (copy_to_user(user_arg + offsetof(
277 struct hidraw_report_descriptor,
278 value[0]),
279 dev->hid->rdesc,
280 min(dev->hid->rsize, len)))
281 ret = -EFAULT;
282 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200283 }
284 case HIDIOCGRAWINFO:
285 {
286 struct hidraw_devinfo dinfo;
287
288 dinfo.bustype = dev->hid->bus;
289 dinfo.vendor = dev->hid->vendor;
290 dinfo.product = dev->hid->product;
291 if (copy_to_user(user_arg, &dinfo, sizeof(dinfo)))
Alan Cox979c4072008-05-26 11:25:26 +0200292 ret = -EFAULT;
293 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200294 }
295 default:
Jiri Kosina9188e792008-11-12 16:14:08 +0100296 {
297 struct hid_device *hid = dev->hid;
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300298 if (_IOC_TYPE(cmd) != 'H' || _IOC_DIR(cmd) != _IOC_READ) {
299 ret = -EINVAL;
300 break;
301 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100302
303 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWNAME(0))) {
304 int len;
Dan Carpenter38089c62009-04-07 16:35:56 +0200305 if (!hid->name) {
306 ret = 0;
307 break;
308 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100309 len = strlen(hid->name) + 1;
310 if (len > _IOC_SIZE(cmd))
311 len = _IOC_SIZE(cmd);
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300312 ret = copy_to_user(user_arg, hid->name, len) ?
Jiri Kosina9188e792008-11-12 16:14:08 +0100313 -EFAULT : len;
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300314 break;
Jiri Kosina9188e792008-11-12 16:14:08 +0100315 }
316
317 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWPHYS(0))) {
318 int len;
Dan Carpenter38089c62009-04-07 16:35:56 +0200319 if (!hid->phys) {
320 ret = 0;
321 break;
322 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100323 len = strlen(hid->phys) + 1;
324 if (len > _IOC_SIZE(cmd))
325 len = _IOC_SIZE(cmd);
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300326 ret = copy_to_user(user_arg, hid->phys, len) ?
Jiri Kosina9188e792008-11-12 16:14:08 +0100327 -EFAULT : len;
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300328 break;
Jiri Kosina9188e792008-11-12 16:14:08 +0100329 }
Antonio Ospite81cd5842010-04-30 21:49:58 +0200330 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100331
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300332 ret = -ENOTTY;
Jiri Kosina86166b72007-05-14 09:57:40 +0200333 }
Antonio Ospited20d5ff2010-10-05 17:20:16 +0200334out:
Jiri Kosina2e574802010-03-25 14:15:11 +0100335 mutex_unlock(&minors_lock);
Alan Cox979c4072008-05-26 11:25:26 +0200336 return ret;
Jiri Kosina86166b72007-05-14 09:57:40 +0200337}
338
339static const struct file_operations hidraw_ops = {
340 .owner = THIS_MODULE,
341 .read = hidraw_read,
342 .write = hidraw_write,
343 .poll = hidraw_poll,
344 .open = hidraw_open,
345 .release = hidraw_release,
Alan Cox979c4072008-05-26 11:25:26 +0200346 .unlocked_ioctl = hidraw_ioctl,
Alan Ottae5e49c2011-01-04 00:37:22 -0500347#ifdef CONFIG_COMPAT
348 .compat_ioctl = hidraw_ioctl,
349#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +0200350 .llseek = noop_llseek,
Jiri Kosina86166b72007-05-14 09:57:40 +0200351};
352
353void hidraw_report_event(struct hid_device *hid, u8 *data, int len)
354{
355 struct hidraw *dev = hid->hidraw;
356 struct hidraw_list *list;
357
358 list_for_each_entry(list, &dev->list, node) {
359 list->buffer[list->head].value = kmemdup(data, len, GFP_ATOMIC);
360 list->buffer[list->head].len = len;
361 list->head = (list->head + 1) & (HIDRAW_BUFFER_SIZE - 1);
362 kill_fasync(&list->fasync, SIGIO, POLL_IN);
363 }
364
365 wake_up_interruptible(&dev->wait);
366}
367EXPORT_SYMBOL_GPL(hidraw_report_event);
368
369int hidraw_connect(struct hid_device *hid)
370{
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200371 int minor, result;
Jiri Kosina86166b72007-05-14 09:57:40 +0200372 struct hidraw *dev;
373
Jiri Kosinabbe281f2009-06-04 15:44:25 +0200374 /* we accept any HID device, no matter the applications */
Jiri Kosina86166b72007-05-14 09:57:40 +0200375
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200376 dev = kzalloc(sizeof(struct hidraw), GFP_KERNEL);
377 if (!dev)
378 return -ENOMEM;
379
380 result = -EINVAL;
Jiri Kosina86166b72007-05-14 09:57:40 +0200381
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100382 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200383
384 for (minor = 0; minor < HIDRAW_MAX_DEVICES; minor++) {
385 if (hidraw_table[minor])
386 continue;
387 hidraw_table[minor] = dev;
388 result = 0;
389 break;
390 }
391
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200392 if (result) {
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100393 mutex_unlock(&minors_lock);
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200394 kfree(dev);
Jiri Kosina86166b72007-05-14 09:57:40 +0200395 goto out;
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200396 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200397
Jiri Kosinaaae6c282008-12-04 16:16:46 +0100398 dev->dev = device_create(hidraw_class, &hid->dev, MKDEV(hidraw_major, minor),
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -0700399 NULL, "%s%d", "hidraw", minor);
Jiri Kosina86166b72007-05-14 09:57:40 +0200400
401 if (IS_ERR(dev->dev)) {
Jiri Kosina86166b72007-05-14 09:57:40 +0200402 hidraw_table[minor] = NULL;
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100403 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200404 result = PTR_ERR(dev->dev);
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200405 kfree(dev);
Jiri Kosina86166b72007-05-14 09:57:40 +0200406 goto out;
407 }
408
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100409 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200410 init_waitqueue_head(&dev->wait);
411 INIT_LIST_HEAD(&dev->list);
412
413 dev->hid = hid;
414 dev->minor = minor;
415
416 dev->exist = 1;
417 hid->hidraw = dev;
418
419out:
420 return result;
421
422}
423EXPORT_SYMBOL_GPL(hidraw_connect);
424
425void hidraw_disconnect(struct hid_device *hid)
426{
427 struct hidraw *hidraw = hid->hidraw;
428
429 hidraw->exist = 0;
430
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100431 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200432 hidraw_table[hidraw->minor] = NULL;
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100433 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200434
435 device_destroy(hidraw_class, MKDEV(hidraw_major, hidraw->minor));
436
437 if (hidraw->open) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800438 hid_hw_close(hid);
Jiri Kosina86166b72007-05-14 09:57:40 +0200439 wake_up_interruptible(&hidraw->wait);
440 } else {
441 kfree(hidraw);
442 }
443}
444EXPORT_SYMBOL_GPL(hidraw_disconnect);
445
446int __init hidraw_init(void)
447{
448 int result;
449 dev_t dev_id;
450
451 result = alloc_chrdev_region(&dev_id, HIDRAW_FIRST_MINOR,
452 HIDRAW_MAX_DEVICES, "hidraw");
453
454 hidraw_major = MAJOR(dev_id);
455
456 if (result < 0) {
Joe Perches4291ee32010-12-09 19:29:03 -0800457 pr_warn("can't get major number\n");
Jiri Kosina86166b72007-05-14 09:57:40 +0200458 result = 0;
459 goto out;
460 }
461
462 hidraw_class = class_create(THIS_MODULE, "hidraw");
463 if (IS_ERR(hidraw_class)) {
464 result = PTR_ERR(hidraw_class);
465 unregister_chrdev(hidraw_major, "hidraw");
466 goto out;
467 }
468
469 cdev_init(&hidraw_cdev, &hidraw_ops);
470 cdev_add(&hidraw_cdev, dev_id, HIDRAW_MAX_DEVICES);
471out:
472 return result;
473}
474
Jiri Slaby140ae3e2008-10-17 18:04:48 +0200475void hidraw_exit(void)
Jiri Kosina86166b72007-05-14 09:57:40 +0200476{
477 dev_t dev_id = MKDEV(hidraw_major, 0);
478
479 cdev_del(&hidraw_cdev);
480 class_destroy(hidraw_class);
481 unregister_chrdev_region(dev_id, HIDRAW_MAX_DEVICES);
482
483}