2 * HID raw devices, giving access to raw HID events.
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.
9 * Copyright (c) 2007 Jiri Kosina
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.
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.
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>
33 #include <linux/sched.h>
34 #include <linux/smp_lock.h>
36 #include <linux/hidraw.h>
38 static int hidraw_major
;
39 static struct cdev hidraw_cdev
;
40 static struct class *hidraw_class
;
41 static struct hidraw
*hidraw_table
[HIDRAW_MAX_DEVICES
];
42 static DEFINE_MUTEX(minors_lock
);
44 static ssize_t
hidraw_read(struct file
*file
, char __user
*buffer
, size_t count
, loff_t
*ppos
)
46 struct hidraw_list
*list
= file
->private_data
;
49 DECLARE_WAITQUEUE(wait
, current
);
51 mutex_lock(&list
->read_mutex
);
54 if (list
->head
== list
->tail
) {
55 add_wait_queue(&list
->hidraw
->wait
, &wait
);
56 set_current_state(TASK_INTERRUPTIBLE
);
58 while (list
->head
== list
->tail
) {
59 if (file
->f_flags
& O_NONBLOCK
) {
63 if (signal_pending(current
)) {
67 if (!list
->hidraw
->exist
) {
72 /* allow O_NONBLOCK to work well from other threads */
73 mutex_unlock(&list
->read_mutex
);
75 mutex_lock(&list
->read_mutex
);
76 set_current_state(TASK_INTERRUPTIBLE
);
79 set_current_state(TASK_RUNNING
);
80 remove_wait_queue(&list
->hidraw
->wait
, &wait
);
86 report
= list
->buffer
[list
->tail
].value
;
87 len
= list
->buffer
[list
->tail
].len
> count
?
88 count
: list
->buffer
[list
->tail
].len
;
90 if (copy_to_user(buffer
, list
->buffer
[list
->tail
].value
, len
)) {
96 kfree(list
->buffer
[list
->tail
].value
);
97 list
->tail
= (list
->tail
+ 1) & (HIDRAW_BUFFER_SIZE
- 1);
100 mutex_unlock(&list
->read_mutex
);
104 /* the first byte is expected to be a report number */
105 static ssize_t
hidraw_write(struct file
*file
, const char __user
*buffer
, size_t count
, loff_t
*ppos
)
107 unsigned int minor
= iminor(file
->f_path
.dentry
->d_inode
);
108 struct hid_device
*dev
;
112 if (!hidraw_table
[minor
])
115 dev
= hidraw_table
[minor
]->hid
;
117 if (!dev
->hid_output_raw_report
)
120 if (count
> HID_MAX_BUFFER_SIZE
) {
121 printk(KERN_WARNING
"hidraw: pid %d passed too large report\n",
122 task_pid_nr(current
));
127 printk(KERN_WARNING
"hidraw: pid %d passed too short report\n",
128 task_pid_nr(current
));
132 buf
= kmalloc(count
* sizeof(__u8
), GFP_KERNEL
);
136 if (copy_from_user(buf
, buffer
, count
)) {
141 ret
= dev
->hid_output_raw_report(dev
, buf
, count
);
147 static unsigned int hidraw_poll(struct file
*file
, poll_table
*wait
)
149 struct hidraw_list
*list
= file
->private_data
;
151 poll_wait(file
, &list
->hidraw
->wait
, wait
);
152 if (list
->head
!= list
->tail
)
153 return POLLIN
| POLLRDNORM
;
154 if (!list
->hidraw
->exist
)
155 return POLLERR
| POLLHUP
;
159 static int hidraw_open(struct inode
*inode
, struct file
*file
)
161 unsigned int minor
= iminor(inode
);
163 struct hidraw_list
*list
;
166 if (!(list
= kzalloc(sizeof(struct hidraw_list
), GFP_KERNEL
))) {
172 mutex_lock(&minors_lock
);
173 if (!hidraw_table
[minor
]) {
174 printk(KERN_EMERG
"hidraw device with minor %d doesn't exist\n",
181 list
->hidraw
= hidraw_table
[minor
];
182 mutex_init(&list
->read_mutex
);
183 list_add_tail(&list
->node
, &hidraw_table
[minor
]->list
);
184 file
->private_data
= list
;
186 dev
= hidraw_table
[minor
];
188 if (dev
->hid
->ll_driver
->power
) {
189 err
= dev
->hid
->ll_driver
->power(dev
->hid
, PM_HINT_FULLON
);
193 err
= dev
->hid
->ll_driver
->open(dev
->hid
);
195 if (dev
->hid
->ll_driver
->power
)
196 dev
->hid
->ll_driver
->power(dev
->hid
, PM_HINT_NORMAL
);
202 mutex_unlock(&minors_lock
);
209 static int hidraw_release(struct inode
* inode
, struct file
* file
)
211 unsigned int minor
= iminor(inode
);
213 struct hidraw_list
*list
= file
->private_data
;
216 mutex_lock(&minors_lock
);
217 if (!hidraw_table
[minor
]) {
218 printk(KERN_EMERG
"hidraw device with minor %d doesn't exist\n",
224 list_del(&list
->node
);
225 dev
= hidraw_table
[minor
];
227 if (list
->hidraw
->exist
) {
228 if (dev
->hid
->ll_driver
->power
)
229 dev
->hid
->ll_driver
->power(dev
->hid
, PM_HINT_NORMAL
);
230 dev
->hid
->ll_driver
->close(dev
->hid
);
238 mutex_unlock(&minors_lock
);
243 static long hidraw_ioctl(struct file
*file
, unsigned int cmd
,
246 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
247 unsigned int minor
= iminor(inode
);
250 void __user
*user_arg
= (void __user
*) arg
;
253 dev
= hidraw_table
[minor
];
260 case HIDIOCGRDESCSIZE
:
261 if (put_user(dev
->hid
->rsize
, (int __user
*)arg
))
269 if (get_user(len
, (int __user
*)arg
))
271 else if (len
> HID_MAX_DESCRIPTOR_SIZE
- 1)
273 else if (copy_to_user(user_arg
+ offsetof(
274 struct hidraw_report_descriptor
,
277 min(dev
->hid
->rsize
, len
)))
283 struct hidraw_devinfo dinfo
;
285 dinfo
.bustype
= dev
->hid
->bus
;
286 dinfo
.vendor
= dev
->hid
->vendor
;
287 dinfo
.product
= dev
->hid
->product
;
288 if (copy_to_user(user_arg
, &dinfo
, sizeof(dinfo
)))
294 struct hid_device
*hid
= dev
->hid
;
295 if (_IOC_TYPE(cmd
) != 'H' || _IOC_DIR(cmd
) != _IOC_READ
) {
300 if (_IOC_NR(cmd
) == _IOC_NR(HIDIOCGRAWNAME(0))) {
306 len
= strlen(hid
->name
) + 1;
307 if (len
> _IOC_SIZE(cmd
))
308 len
= _IOC_SIZE(cmd
);
309 ret
= copy_to_user(user_arg
, hid
->name
, len
) ?
314 if (_IOC_NR(cmd
) == _IOC_NR(HIDIOCGRAWPHYS(0))) {
320 len
= strlen(hid
->phys
) + 1;
321 if (len
> _IOC_SIZE(cmd
))
322 len
= _IOC_SIZE(cmd
);
323 ret
= copy_to_user(user_arg
, hid
->phys
, len
) ?
336 static const struct file_operations hidraw_ops
= {
337 .owner
= THIS_MODULE
,
339 .write
= hidraw_write
,
342 .release
= hidraw_release
,
343 .unlocked_ioctl
= hidraw_ioctl
,
346 void hidraw_report_event(struct hid_device
*hid
, u8
*data
, int len
)
348 struct hidraw
*dev
= hid
->hidraw
;
349 struct hidraw_list
*list
;
351 list_for_each_entry(list
, &dev
->list
, node
) {
352 list
->buffer
[list
->head
].value
= kmemdup(data
, len
, GFP_ATOMIC
);
353 list
->buffer
[list
->head
].len
= len
;
354 list
->head
= (list
->head
+ 1) & (HIDRAW_BUFFER_SIZE
- 1);
355 kill_fasync(&list
->fasync
, SIGIO
, POLL_IN
);
358 wake_up_interruptible(&dev
->wait
);
360 EXPORT_SYMBOL_GPL(hidraw_report_event
);
362 int hidraw_connect(struct hid_device
*hid
)
367 /* we accept any HID device, no matter the applications */
369 dev
= kzalloc(sizeof(struct hidraw
), GFP_KERNEL
);
375 mutex_lock(&minors_lock
);
377 for (minor
= 0; minor
< HIDRAW_MAX_DEVICES
; minor
++) {
378 if (hidraw_table
[minor
])
380 hidraw_table
[minor
] = dev
;
386 mutex_unlock(&minors_lock
);
391 dev
->dev
= device_create(hidraw_class
, &hid
->dev
, MKDEV(hidraw_major
, minor
),
392 NULL
, "%s%d", "hidraw", minor
);
394 if (IS_ERR(dev
->dev
)) {
395 hidraw_table
[minor
] = NULL
;
396 mutex_unlock(&minors_lock
);
397 result
= PTR_ERR(dev
->dev
);
402 mutex_unlock(&minors_lock
);
403 init_waitqueue_head(&dev
->wait
);
404 INIT_LIST_HEAD(&dev
->list
);
416 EXPORT_SYMBOL_GPL(hidraw_connect
);
418 void hidraw_disconnect(struct hid_device
*hid
)
420 struct hidraw
*hidraw
= hid
->hidraw
;
424 mutex_lock(&minors_lock
);
425 hidraw_table
[hidraw
->minor
] = NULL
;
426 mutex_unlock(&minors_lock
);
428 device_destroy(hidraw_class
, MKDEV(hidraw_major
, hidraw
->minor
));
431 hid
->ll_driver
->close(hid
);
432 wake_up_interruptible(&hidraw
->wait
);
437 EXPORT_SYMBOL_GPL(hidraw_disconnect
);
439 int __init
hidraw_init(void)
444 result
= alloc_chrdev_region(&dev_id
, HIDRAW_FIRST_MINOR
,
445 HIDRAW_MAX_DEVICES
, "hidraw");
447 hidraw_major
= MAJOR(dev_id
);
450 printk(KERN_WARNING
"hidraw: can't get major number\n");
455 hidraw_class
= class_create(THIS_MODULE
, "hidraw");
456 if (IS_ERR(hidraw_class
)) {
457 result
= PTR_ERR(hidraw_class
);
458 unregister_chrdev(hidraw_major
, "hidraw");
462 cdev_init(&hidraw_cdev
, &hidraw_ops
);
463 cdev_add(&hidraw_cdev
, dev_id
, HIDRAW_MAX_DEVICES
);
468 void hidraw_exit(void)
470 dev_t dev_id
= MKDEV(hidraw_major
, 0);
472 cdev_del(&hidraw_cdev
);
473 class_destroy(hidraw_class
);
474 unregister_chrdev_region(dev_id
, HIDRAW_MAX_DEVICES
);