HID: hidraw: fix window in hidraw_release
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / hid / hidraw.c
blob5a6f99b1db126de0a8f20d14842c1efef2c2aa65
1 /*
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.
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/slab.h>
32 #include <linux/hid.h>
33 #include <linux/mutex.h>
34 #include <linux/sched.h>
35 #include <linux/smp_lock.h>
37 #include <linux/hidraw.h>
39 static int hidraw_major;
40 static struct cdev hidraw_cdev;
41 static struct class *hidraw_class;
42 static struct hidraw *hidraw_table[HIDRAW_MAX_DEVICES];
43 static DEFINE_MUTEX(minors_lock);
45 static ssize_t hidraw_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
47 struct hidraw_list *list = file->private_data;
48 int ret = 0, len;
49 DECLARE_WAITQUEUE(wait, current);
51 mutex_lock(&list->read_mutex);
53 while (ret == 0) {
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) {
60 ret = -EAGAIN;
61 break;
63 if (signal_pending(current)) {
64 ret = -ERESTARTSYS;
65 break;
67 if (!list->hidraw->exist) {
68 ret = -EIO;
69 break;
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);
79 set_current_state(TASK_RUNNING);
80 remove_wait_queue(&list->hidraw->wait, &wait);
83 if (ret)
84 goto out;
86 len = list->buffer[list->tail].len > count ?
87 count : list->buffer[list->tail].len;
89 if (copy_to_user(buffer, list->buffer[list->tail].value, len)) {
90 ret = -EFAULT;
91 goto out;
93 ret += len;
95 kfree(list->buffer[list->tail].value);
96 list->tail = (list->tail + 1) & (HIDRAW_BUFFER_SIZE - 1);
98 out:
99 mutex_unlock(&list->read_mutex);
100 return ret;
103 /* the first byte is expected to be a report number */
104 static ssize_t hidraw_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
106 unsigned int minor = iminor(file->f_path.dentry->d_inode);
107 struct hid_device *dev;
108 __u8 *buf;
109 int ret = 0;
111 mutex_lock(&minors_lock);
112 dev = hidraw_table[minor]->hid;
114 if (!dev->hid_output_raw_report) {
115 ret = -ENODEV;
116 goto out;
119 if (count > HID_MAX_BUFFER_SIZE) {
120 printk(KERN_WARNING "hidraw: pid %d passed too large report\n",
121 task_pid_nr(current));
122 ret = -EINVAL;
123 goto out;
126 if (count < 2) {
127 printk(KERN_WARNING "hidraw: pid %d passed too short report\n",
128 task_pid_nr(current));
129 ret = -EINVAL;
130 goto out;
133 buf = kmalloc(count * sizeof(__u8), GFP_KERNEL);
134 if (!buf) {
135 ret = -ENOMEM;
136 goto out;
139 if (copy_from_user(buf, buffer, count)) {
140 ret = -EFAULT;
141 goto out_free;
144 ret = dev->hid_output_raw_report(dev, buf, count, HID_OUTPUT_REPORT);
145 out_free:
146 kfree(buf);
147 out:
148 mutex_unlock(&minors_lock);
149 return ret;
152 static unsigned int hidraw_poll(struct file *file, poll_table *wait)
154 struct hidraw_list *list = file->private_data;
156 poll_wait(file, &list->hidraw->wait, wait);
157 if (list->head != list->tail)
158 return POLLIN | POLLRDNORM;
159 if (!list->hidraw->exist)
160 return POLLERR | POLLHUP;
161 return 0;
164 static int hidraw_open(struct inode *inode, struct file *file)
166 unsigned int minor = iminor(inode);
167 struct hidraw *dev;
168 struct hidraw_list *list;
169 int err = 0;
171 if (!(list = kzalloc(sizeof(struct hidraw_list), GFP_KERNEL))) {
172 err = -ENOMEM;
173 goto out;
176 mutex_lock(&minors_lock);
177 if (!hidraw_table[minor]) {
178 kfree(list);
179 err = -ENODEV;
180 goto out_unlock;
183 list->hidraw = hidraw_table[minor];
184 mutex_init(&list->read_mutex);
185 list_add_tail(&list->node, &hidraw_table[minor]->list);
186 file->private_data = list;
188 dev = hidraw_table[minor];
189 if (!dev->open++) {
190 if (dev->hid->ll_driver->power) {
191 err = dev->hid->ll_driver->power(dev->hid, PM_HINT_FULLON);
192 if (err < 0)
193 goto out_unlock;
195 err = dev->hid->ll_driver->open(dev->hid);
196 if (err < 0) {
197 if (dev->hid->ll_driver->power)
198 dev->hid->ll_driver->power(dev->hid, PM_HINT_NORMAL);
199 dev->open--;
203 out_unlock:
204 mutex_unlock(&minors_lock);
205 out:
206 return err;
210 static int hidraw_release(struct inode * inode, struct file * file)
212 unsigned int minor = iminor(inode);
213 struct hidraw *dev;
214 struct hidraw_list *list = file->private_data;
215 int ret;
217 mutex_lock(&minors_lock);
218 if (!hidraw_table[minor]) {
219 ret = -ENODEV;
220 goto unlock;
223 list_del(&list->node);
224 dev = hidraw_table[minor];
225 if (!--dev->open) {
226 if (list->hidraw->exist) {
227 if (dev->hid->ll_driver->power)
228 dev->hid->ll_driver->power(dev->hid, PM_HINT_NORMAL);
229 dev->hid->ll_driver->close(dev->hid);
230 } else {
231 kfree(list->hidraw);
234 kfree(list);
235 ret = 0;
236 unlock:
237 mutex_unlock(&minors_lock);
239 return ret;
242 static long hidraw_ioctl(struct file *file, unsigned int cmd,
243 unsigned long arg)
245 struct inode *inode = file->f_path.dentry->d_inode;
246 unsigned int minor = iminor(inode);
247 long ret = 0;
248 struct hidraw *dev;
249 void __user *user_arg = (void __user*) arg;
251 mutex_lock(&minors_lock);
252 dev = hidraw_table[minor];
254 switch (cmd) {
255 case HIDIOCGRDESCSIZE:
256 if (put_user(dev->hid->rsize, (int __user *)arg))
257 ret = -EFAULT;
258 break;
260 case HIDIOCGRDESC:
262 __u32 len;
264 if (get_user(len, (int __user *)arg))
265 ret = -EFAULT;
266 else if (len > HID_MAX_DESCRIPTOR_SIZE - 1)
267 ret = -EINVAL;
268 else if (copy_to_user(user_arg + offsetof(
269 struct hidraw_report_descriptor,
270 value[0]),
271 dev->hid->rdesc,
272 min(dev->hid->rsize, len)))
273 ret = -EFAULT;
274 break;
276 case HIDIOCGRAWINFO:
278 struct hidraw_devinfo dinfo;
280 dinfo.bustype = dev->hid->bus;
281 dinfo.vendor = dev->hid->vendor;
282 dinfo.product = dev->hid->product;
283 if (copy_to_user(user_arg, &dinfo, sizeof(dinfo)))
284 ret = -EFAULT;
285 break;
287 default:
289 struct hid_device *hid = dev->hid;
290 if (_IOC_TYPE(cmd) != 'H' || _IOC_DIR(cmd) != _IOC_READ) {
291 ret = -EINVAL;
292 break;
295 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWNAME(0))) {
296 int len;
297 if (!hid->name) {
298 ret = 0;
299 break;
301 len = strlen(hid->name) + 1;
302 if (len > _IOC_SIZE(cmd))
303 len = _IOC_SIZE(cmd);
304 ret = copy_to_user(user_arg, hid->name, len) ?
305 -EFAULT : len;
306 break;
309 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWPHYS(0))) {
310 int len;
311 if (!hid->phys) {
312 ret = 0;
313 break;
315 len = strlen(hid->phys) + 1;
316 if (len > _IOC_SIZE(cmd))
317 len = _IOC_SIZE(cmd);
318 ret = copy_to_user(user_arg, hid->phys, len) ?
319 -EFAULT : len;
320 break;
324 ret = -ENOTTY;
326 mutex_unlock(&minors_lock);
327 return ret;
330 static const struct file_operations hidraw_ops = {
331 .owner = THIS_MODULE,
332 .read = hidraw_read,
333 .write = hidraw_write,
334 .poll = hidraw_poll,
335 .open = hidraw_open,
336 .release = hidraw_release,
337 .unlocked_ioctl = hidraw_ioctl,
340 void hidraw_report_event(struct hid_device *hid, u8 *data, int len)
342 struct hidraw *dev = hid->hidraw;
343 struct hidraw_list *list;
345 list_for_each_entry(list, &dev->list, node) {
346 list->buffer[list->head].value = kmemdup(data, len, GFP_ATOMIC);
347 list->buffer[list->head].len = len;
348 list->head = (list->head + 1) & (HIDRAW_BUFFER_SIZE - 1);
349 kill_fasync(&list->fasync, SIGIO, POLL_IN);
352 wake_up_interruptible(&dev->wait);
354 EXPORT_SYMBOL_GPL(hidraw_report_event);
356 int hidraw_connect(struct hid_device *hid)
358 int minor, result;
359 struct hidraw *dev;
361 /* we accept any HID device, no matter the applications */
363 dev = kzalloc(sizeof(struct hidraw), GFP_KERNEL);
364 if (!dev)
365 return -ENOMEM;
367 result = -EINVAL;
369 mutex_lock(&minors_lock);
371 for (minor = 0; minor < HIDRAW_MAX_DEVICES; minor++) {
372 if (hidraw_table[minor])
373 continue;
374 hidraw_table[minor] = dev;
375 result = 0;
376 break;
379 if (result) {
380 mutex_unlock(&minors_lock);
381 kfree(dev);
382 goto out;
385 dev->dev = device_create(hidraw_class, &hid->dev, MKDEV(hidraw_major, minor),
386 NULL, "%s%d", "hidraw", minor);
388 if (IS_ERR(dev->dev)) {
389 hidraw_table[minor] = NULL;
390 mutex_unlock(&minors_lock);
391 result = PTR_ERR(dev->dev);
392 kfree(dev);
393 goto out;
396 mutex_unlock(&minors_lock);
397 init_waitqueue_head(&dev->wait);
398 INIT_LIST_HEAD(&dev->list);
400 dev->hid = hid;
401 dev->minor = minor;
403 dev->exist = 1;
404 hid->hidraw = dev;
406 out:
407 return result;
410 EXPORT_SYMBOL_GPL(hidraw_connect);
412 void hidraw_disconnect(struct hid_device *hid)
414 struct hidraw *hidraw = hid->hidraw;
416 hidraw->exist = 0;
418 mutex_lock(&minors_lock);
419 hidraw_table[hidraw->minor] = NULL;
420 mutex_unlock(&minors_lock);
422 device_destroy(hidraw_class, MKDEV(hidraw_major, hidraw->minor));
424 if (hidraw->open) {
425 hid->ll_driver->close(hid);
426 wake_up_interruptible(&hidraw->wait);
427 } else {
428 kfree(hidraw);
431 EXPORT_SYMBOL_GPL(hidraw_disconnect);
433 int __init hidraw_init(void)
435 int result;
436 dev_t dev_id;
438 result = alloc_chrdev_region(&dev_id, HIDRAW_FIRST_MINOR,
439 HIDRAW_MAX_DEVICES, "hidraw");
441 hidraw_major = MAJOR(dev_id);
443 if (result < 0) {
444 printk(KERN_WARNING "hidraw: can't get major number\n");
445 result = 0;
446 goto out;
449 hidraw_class = class_create(THIS_MODULE, "hidraw");
450 if (IS_ERR(hidraw_class)) {
451 result = PTR_ERR(hidraw_class);
452 unregister_chrdev(hidraw_major, "hidraw");
453 goto out;
456 cdev_init(&hidraw_cdev, &hidraw_ops);
457 cdev_add(&hidraw_cdev, dev_id, HIDRAW_MAX_DEVICES);
458 out:
459 return result;
462 void hidraw_exit(void)
464 dev_t dev_id = MKDEV(hidraw_major, 0);
466 cdev_del(&hidraw_cdev);
467 class_destroy(hidraw_class);
468 unregister_chrdev_region(dev_id, HIDRAW_MAX_DEVICES);