mm/backing-dev.c: reset bdi min_ratio in bdi_unregister()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / hid / hidraw.c
blob7dca2faacdfa253d512865b6edaf03a291fd1b6d
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 char *report;
50 DECLARE_WAITQUEUE(wait, current);
52 mutex_lock(&list->read_mutex);
54 while (ret == 0) {
55 if (list->head == list->tail) {
56 add_wait_queue(&list->hidraw->wait, &wait);
57 set_current_state(TASK_INTERRUPTIBLE);
59 while (list->head == list->tail) {
60 if (file->f_flags & O_NONBLOCK) {
61 ret = -EAGAIN;
62 break;
64 if (signal_pending(current)) {
65 ret = -ERESTARTSYS;
66 break;
68 if (!list->hidraw->exist) {
69 ret = -EIO;
70 break;
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);
80 set_current_state(TASK_RUNNING);
81 remove_wait_queue(&list->hidraw->wait, &wait);
84 if (ret)
85 goto out;
87 report = list->buffer[list->tail].value;
88 len = list->buffer[list->tail].len > count ?
89 count : list->buffer[list->tail].len;
91 if (copy_to_user(buffer, list->buffer[list->tail].value, len)) {
92 ret = -EFAULT;
93 goto out;
95 ret += len;
97 kfree(list->buffer[list->tail].value);
98 list->tail = (list->tail + 1) & (HIDRAW_BUFFER_SIZE - 1);
100 out:
101 mutex_unlock(&list->read_mutex);
102 return ret;
105 /* the first byte is expected to be a report number */
106 static ssize_t hidraw_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
108 unsigned int minor = iminor(file->f_path.dentry->d_inode);
109 struct hid_device *dev;
110 __u8 *buf;
111 int ret = 0;
113 mutex_lock(&minors_lock);
115 if (!hidraw_table[minor]) {
116 ret = -ENODEV;
117 goto out;
120 dev = hidraw_table[minor]->hid;
122 if (!dev->hid_output_raw_report) {
123 ret = -ENODEV;
124 goto out;
127 if (count > HID_MAX_BUFFER_SIZE) {
128 printk(KERN_WARNING "hidraw: pid %d passed too large report\n",
129 task_pid_nr(current));
130 ret = -EINVAL;
131 goto out;
134 if (count < 2) {
135 printk(KERN_WARNING "hidraw: pid %d passed too short report\n",
136 task_pid_nr(current));
137 ret = -EINVAL;
138 goto out;
141 buf = kmalloc(count * sizeof(__u8), GFP_KERNEL);
142 if (!buf) {
143 ret = -ENOMEM;
144 goto out;
147 if (copy_from_user(buf, buffer, count)) {
148 ret = -EFAULT;
149 goto out_free;
152 ret = dev->hid_output_raw_report(dev, buf, count, HID_OUTPUT_REPORT);
153 out_free:
154 kfree(buf);
155 out:
156 mutex_unlock(&minors_lock);
157 return ret;
160 static unsigned int hidraw_poll(struct file *file, poll_table *wait)
162 struct hidraw_list *list = file->private_data;
164 poll_wait(file, &list->hidraw->wait, wait);
165 if (list->head != list->tail)
166 return POLLIN | POLLRDNORM;
167 if (!list->hidraw->exist)
168 return POLLERR | POLLHUP;
169 return 0;
172 static int hidraw_open(struct inode *inode, struct file *file)
174 unsigned int minor = iminor(inode);
175 struct hidraw *dev;
176 struct hidraw_list *list;
177 int err = 0;
179 if (!(list = kzalloc(sizeof(struct hidraw_list), GFP_KERNEL))) {
180 err = -ENOMEM;
181 goto out;
184 mutex_lock(&minors_lock);
185 if (!hidraw_table[minor]) {
186 kfree(list);
187 err = -ENODEV;
188 goto out_unlock;
191 list->hidraw = hidraw_table[minor];
192 mutex_init(&list->read_mutex);
193 list_add_tail(&list->node, &hidraw_table[minor]->list);
194 file->private_data = list;
196 dev = hidraw_table[minor];
197 if (!dev->open++) {
198 if (dev->hid->ll_driver->power) {
199 err = dev->hid->ll_driver->power(dev->hid, PM_HINT_FULLON);
200 if (err < 0)
201 goto out_unlock;
203 err = dev->hid->ll_driver->open(dev->hid);
204 if (err < 0) {
205 if (dev->hid->ll_driver->power)
206 dev->hid->ll_driver->power(dev->hid, PM_HINT_NORMAL);
207 dev->open--;
211 out_unlock:
212 mutex_unlock(&minors_lock);
213 out:
214 return err;
218 static int hidraw_release(struct inode * inode, struct file * file)
220 unsigned int minor = iminor(inode);
221 struct hidraw *dev;
222 struct hidraw_list *list = file->private_data;
224 if (!hidraw_table[minor])
225 return -ENODEV;
227 list_del(&list->node);
228 dev = hidraw_table[minor];
229 if (!--dev->open) {
230 if (list->hidraw->exist) {
231 if (dev->hid->ll_driver->power)
232 dev->hid->ll_driver->power(dev->hid, PM_HINT_NORMAL);
233 dev->hid->ll_driver->close(dev->hid);
234 } else {
235 kfree(list->hidraw);
239 kfree(list);
241 return 0;
244 static long hidraw_ioctl(struct file *file, unsigned int cmd,
245 unsigned long arg)
247 struct inode *inode = file->f_path.dentry->d_inode;
248 unsigned int minor = iminor(inode);
249 long ret = 0;
250 struct hidraw *dev;
251 void __user *user_arg = (void __user*) arg;
253 mutex_lock(&minors_lock);
254 dev = hidraw_table[minor];
255 if (!dev) {
256 ret = -ENODEV;
257 goto out;
260 switch (cmd) {
261 case HIDIOCGRDESCSIZE:
262 if (put_user(dev->hid->rsize, (int __user *)arg))
263 ret = -EFAULT;
264 break;
266 case HIDIOCGRDESC:
268 __u32 len;
270 if (get_user(len, (int __user *)arg))
271 ret = -EFAULT;
272 else if (len > HID_MAX_DESCRIPTOR_SIZE - 1)
273 ret = -EINVAL;
274 else if (copy_to_user(user_arg + offsetof(
275 struct hidraw_report_descriptor,
276 value[0]),
277 dev->hid->rdesc,
278 min(dev->hid->rsize, len)))
279 ret = -EFAULT;
280 break;
282 case HIDIOCGRAWINFO:
284 struct hidraw_devinfo dinfo;
286 dinfo.bustype = dev->hid->bus;
287 dinfo.vendor = dev->hid->vendor;
288 dinfo.product = dev->hid->product;
289 if (copy_to_user(user_arg, &dinfo, sizeof(dinfo)))
290 ret = -EFAULT;
291 break;
293 default:
295 struct hid_device *hid = dev->hid;
296 if (_IOC_TYPE(cmd) != 'H' || _IOC_DIR(cmd) != _IOC_READ) {
297 ret = -EINVAL;
298 break;
301 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWNAME(0))) {
302 int len;
303 if (!hid->name) {
304 ret = 0;
305 break;
307 len = strlen(hid->name) + 1;
308 if (len > _IOC_SIZE(cmd))
309 len = _IOC_SIZE(cmd);
310 ret = copy_to_user(user_arg, hid->name, len) ?
311 -EFAULT : len;
312 break;
315 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWPHYS(0))) {
316 int len;
317 if (!hid->phys) {
318 ret = 0;
319 break;
321 len = strlen(hid->phys) + 1;
322 if (len > _IOC_SIZE(cmd))
323 len = _IOC_SIZE(cmd);
324 ret = copy_to_user(user_arg, hid->phys, len) ?
325 -EFAULT : len;
326 break;
330 ret = -ENOTTY;
332 out:
333 mutex_unlock(&minors_lock);
334 return ret;
337 static const struct file_operations hidraw_ops = {
338 .owner = THIS_MODULE,
339 .read = hidraw_read,
340 .write = hidraw_write,
341 .poll = hidraw_poll,
342 .open = hidraw_open,
343 .release = hidraw_release,
344 .unlocked_ioctl = hidraw_ioctl,
347 void hidraw_report_event(struct hid_device *hid, u8 *data, int len)
349 struct hidraw *dev = hid->hidraw;
350 struct hidraw_list *list;
352 list_for_each_entry(list, &dev->list, node) {
353 list->buffer[list->head].value = kmemdup(data, len, GFP_ATOMIC);
354 list->buffer[list->head].len = len;
355 list->head = (list->head + 1) & (HIDRAW_BUFFER_SIZE - 1);
356 kill_fasync(&list->fasync, SIGIO, POLL_IN);
359 wake_up_interruptible(&dev->wait);
361 EXPORT_SYMBOL_GPL(hidraw_report_event);
363 int hidraw_connect(struct hid_device *hid)
365 int minor, result;
366 struct hidraw *dev;
368 /* we accept any HID device, no matter the applications */
370 dev = kzalloc(sizeof(struct hidraw), GFP_KERNEL);
371 if (!dev)
372 return -ENOMEM;
374 result = -EINVAL;
376 mutex_lock(&minors_lock);
378 for (minor = 0; minor < HIDRAW_MAX_DEVICES; minor++) {
379 if (hidraw_table[minor])
380 continue;
381 hidraw_table[minor] = dev;
382 result = 0;
383 break;
386 if (result) {
387 mutex_unlock(&minors_lock);
388 kfree(dev);
389 goto out;
392 dev->dev = device_create(hidraw_class, &hid->dev, MKDEV(hidraw_major, minor),
393 NULL, "%s%d", "hidraw", minor);
395 if (IS_ERR(dev->dev)) {
396 hidraw_table[minor] = NULL;
397 mutex_unlock(&minors_lock);
398 result = PTR_ERR(dev->dev);
399 kfree(dev);
400 goto out;
403 mutex_unlock(&minors_lock);
404 init_waitqueue_head(&dev->wait);
405 INIT_LIST_HEAD(&dev->list);
407 dev->hid = hid;
408 dev->minor = minor;
410 dev->exist = 1;
411 hid->hidraw = dev;
413 out:
414 return result;
417 EXPORT_SYMBOL_GPL(hidraw_connect);
419 void hidraw_disconnect(struct hid_device *hid)
421 struct hidraw *hidraw = hid->hidraw;
423 hidraw->exist = 0;
425 mutex_lock(&minors_lock);
426 hidraw_table[hidraw->minor] = NULL;
427 mutex_unlock(&minors_lock);
429 device_destroy(hidraw_class, MKDEV(hidraw_major, hidraw->minor));
431 if (hidraw->open) {
432 hid->ll_driver->close(hid);
433 wake_up_interruptible(&hidraw->wait);
434 } else {
435 kfree(hidraw);
438 EXPORT_SYMBOL_GPL(hidraw_disconnect);
440 int __init hidraw_init(void)
442 int result;
443 dev_t dev_id;
445 result = alloc_chrdev_region(&dev_id, HIDRAW_FIRST_MINOR,
446 HIDRAW_MAX_DEVICES, "hidraw");
448 hidraw_major = MAJOR(dev_id);
450 if (result < 0) {
451 printk(KERN_WARNING "hidraw: can't get major number\n");
452 result = 0;
453 goto out;
456 hidraw_class = class_create(THIS_MODULE, "hidraw");
457 if (IS_ERR(hidraw_class)) {
458 result = PTR_ERR(hidraw_class);
459 unregister_chrdev(hidraw_major, "hidraw");
460 goto out;
463 cdev_init(&hidraw_cdev, &hidraw_ops);
464 cdev_add(&hidraw_cdev, dev_id, HIDRAW_MAX_DEVICES);
465 out:
466 return result;
469 void hidraw_exit(void)
471 dev_t dev_id = MKDEV(hidraw_major, 0);
473 cdev_del(&hidraw_cdev);
474 class_destroy(hidraw_class);
475 unregister_chrdev_region(dev_id, HIDRAW_MAX_DEVICES);