Merge git://git.kernel.org/pub/scm/linux/kernel/git/nico/orion
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / hid / usbhid / hiddev.c
1 /*
2 * Copyright (c) 2001 Paul Stewart
3 * Copyright (c) 2001 Vojtech Pavlik
4 *
5 * HID char devices, giving access to raw HID device events.
6 *
7 */
8
9 /*
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 * Should you need to contact me, the author, you can do so either by
25 * e-mail - mail your message to Paul Stewart <stewart@wetlogic.net>
26 */
27
28 #include <linux/poll.h>
29 #include <linux/slab.h>
30 #include <linux/module.h>
31 #include <linux/init.h>
32 #include <linux/smp_lock.h>
33 #include <linux/input.h>
34 #include <linux/usb.h>
35 #include <linux/hid.h>
36 #include <linux/hiddev.h>
37 #include <linux/compat.h>
38 #include "usbhid.h"
39
40 #ifdef CONFIG_USB_DYNAMIC_MINORS
41 #define HIDDEV_MINOR_BASE 0
42 #define HIDDEV_MINORS 256
43 #else
44 #define HIDDEV_MINOR_BASE 96
45 #define HIDDEV_MINORS 16
46 #endif
47 #define HIDDEV_BUFFER_SIZE 2048
48
49 struct hiddev {
50 int exist;
51 int open;
52 struct mutex existancelock;
53 wait_queue_head_t wait;
54 struct hid_device *hid;
55 struct list_head list;
56 spinlock_t list_lock;
57 };
58
59 struct hiddev_list {
60 struct hiddev_usage_ref buffer[HIDDEV_BUFFER_SIZE];
61 int head;
62 int tail;
63 unsigned flags;
64 struct fasync_struct *fasync;
65 struct hiddev *hiddev;
66 struct list_head node;
67 struct mutex thread_lock;
68 };
69
70 /*
71 * Find a report, given the report's type and ID. The ID can be specified
72 * indirectly by REPORT_ID_FIRST (which returns the first report of the given
73 * type) or by (REPORT_ID_NEXT | old_id), which returns the next report of the
74 * given type which follows old_id.
75 */
76 static struct hid_report *
77 hiddev_lookup_report(struct hid_device *hid, struct hiddev_report_info *rinfo)
78 {
79 unsigned int flags = rinfo->report_id & ~HID_REPORT_ID_MASK;
80 unsigned int rid = rinfo->report_id & HID_REPORT_ID_MASK;
81 struct hid_report_enum *report_enum;
82 struct hid_report *report;
83 struct list_head *list;
84
85 if (rinfo->report_type < HID_REPORT_TYPE_MIN ||
86 rinfo->report_type > HID_REPORT_TYPE_MAX)
87 return NULL;
88
89 report_enum = hid->report_enum +
90 (rinfo->report_type - HID_REPORT_TYPE_MIN);
91
92 switch (flags) {
93 case 0: /* Nothing to do -- report_id is already set correctly */
94 break;
95
96 case HID_REPORT_ID_FIRST:
97 if (list_empty(&report_enum->report_list))
98 return NULL;
99
100 list = report_enum->report_list.next;
101 report = list_entry(list, struct hid_report, list);
102 rinfo->report_id = report->id;
103 break;
104
105 case HID_REPORT_ID_NEXT:
106 report = report_enum->report_id_hash[rid];
107 if (!report)
108 return NULL;
109
110 list = report->list.next;
111 if (list == &report_enum->report_list)
112 return NULL;
113
114 report = list_entry(list, struct hid_report, list);
115 rinfo->report_id = report->id;
116 break;
117
118 default:
119 return NULL;
120 }
121
122 return report_enum->report_id_hash[rinfo->report_id];
123 }
124
125 /*
126 * Perform an exhaustive search of the report table for a usage, given its
127 * type and usage id.
128 */
129 static struct hid_field *
130 hiddev_lookup_usage(struct hid_device *hid, struct hiddev_usage_ref *uref)
131 {
132 int i, j;
133 struct hid_report *report;
134 struct hid_report_enum *report_enum;
135 struct hid_field *field;
136
137 if (uref->report_type < HID_REPORT_TYPE_MIN ||
138 uref->report_type > HID_REPORT_TYPE_MAX)
139 return NULL;
140
141 report_enum = hid->report_enum +
142 (uref->report_type - HID_REPORT_TYPE_MIN);
143
144 list_for_each_entry(report, &report_enum->report_list, list) {
145 for (i = 0; i < report->maxfield; i++) {
146 field = report->field[i];
147 for (j = 0; j < field->maxusage; j++) {
148 if (field->usage[j].hid == uref->usage_code) {
149 uref->report_id = report->id;
150 uref->field_index = i;
151 uref->usage_index = j;
152 return field;
153 }
154 }
155 }
156 }
157
158 return NULL;
159 }
160
161 static void hiddev_send_event(struct hid_device *hid,
162 struct hiddev_usage_ref *uref)
163 {
164 struct hiddev *hiddev = hid->hiddev;
165 struct hiddev_list *list;
166 unsigned long flags;
167
168 spin_lock_irqsave(&hiddev->list_lock, flags);
169 list_for_each_entry(list, &hiddev->list, node) {
170 if (uref->field_index != HID_FIELD_INDEX_NONE ||
171 (list->flags & HIDDEV_FLAG_REPORT) != 0) {
172 list->buffer[list->head] = *uref;
173 list->head = (list->head + 1) &
174 (HIDDEV_BUFFER_SIZE - 1);
175 kill_fasync(&list->fasync, SIGIO, POLL_IN);
176 }
177 }
178 spin_unlock_irqrestore(&hiddev->list_lock, flags);
179
180 wake_up_interruptible(&hiddev->wait);
181 }
182
183 /*
184 * This is where hid.c calls into hiddev to pass an event that occurred over
185 * the interrupt pipe
186 */
187 void hiddev_hid_event(struct hid_device *hid, struct hid_field *field,
188 struct hid_usage *usage, __s32 value)
189 {
190 unsigned type = field->report_type;
191 struct hiddev_usage_ref uref;
192
193 uref.report_type =
194 (type == HID_INPUT_REPORT) ? HID_REPORT_TYPE_INPUT :
195 ((type == HID_OUTPUT_REPORT) ? HID_REPORT_TYPE_OUTPUT :
196 ((type == HID_FEATURE_REPORT) ? HID_REPORT_TYPE_FEATURE : 0));
197 uref.report_id = field->report->id;
198 uref.field_index = field->index;
199 uref.usage_index = (usage - field->usage);
200 uref.usage_code = usage->hid;
201 uref.value = value;
202
203 hiddev_send_event(hid, &uref);
204 }
205 EXPORT_SYMBOL_GPL(hiddev_hid_event);
206
207 void hiddev_report_event(struct hid_device *hid, struct hid_report *report)
208 {
209 unsigned type = report->type;
210 struct hiddev_usage_ref uref;
211
212 memset(&uref, 0, sizeof(uref));
213 uref.report_type =
214 (type == HID_INPUT_REPORT) ? HID_REPORT_TYPE_INPUT :
215 ((type == HID_OUTPUT_REPORT) ? HID_REPORT_TYPE_OUTPUT :
216 ((type == HID_FEATURE_REPORT) ? HID_REPORT_TYPE_FEATURE : 0));
217 uref.report_id = report->id;
218 uref.field_index = HID_FIELD_INDEX_NONE;
219
220 hiddev_send_event(hid, &uref);
221 }
222
223 /*
224 * fasync file op
225 */
226 static int hiddev_fasync(int fd, struct file *file, int on)
227 {
228 struct hiddev_list *list = file->private_data;
229
230 return fasync_helper(fd, file, on, &list->fasync);
231 }
232
233
234 /*
235 * release file op
236 */
237 static int hiddev_release(struct inode * inode, struct file * file)
238 {
239 struct hiddev_list *list = file->private_data;
240 unsigned long flags;
241
242 spin_lock_irqsave(&list->hiddev->list_lock, flags);
243 list_del(&list->node);
244 spin_unlock_irqrestore(&list->hiddev->list_lock, flags);
245
246 if (!--list->hiddev->open) {
247 if (list->hiddev->exist) {
248 usbhid_close(list->hiddev->hid);
249 usbhid_put_power(list->hiddev->hid);
250 } else {
251 kfree(list->hiddev);
252 }
253 }
254
255 kfree(list);
256
257 return 0;
258 }
259
260 /*
261 * open file op
262 */
263 static int hiddev_open(struct inode *inode, struct file *file)
264 {
265 struct hiddev_list *list;
266 struct usb_interface *intf;
267 struct hid_device *hid;
268 struct hiddev *hiddev;
269 int res;
270
271 intf = usbhid_find_interface(iminor(inode));
272 if (!intf)
273 return -ENODEV;
274 hid = usb_get_intfdata(intf);
275 hiddev = hid->hiddev;
276
277 if (!(list = kzalloc(sizeof(struct hiddev_list), GFP_KERNEL)))
278 return -ENOMEM;
279 mutex_init(&list->thread_lock);
280 list->hiddev = hiddev;
281 file->private_data = list;
282
283 /*
284 * no need for locking because the USB major number
285 * is shared which usbcore guards against disconnect
286 */
287 if (list->hiddev->exist) {
288 if (!list->hiddev->open++) {
289 res = usbhid_open(hiddev->hid);
290 if (res < 0) {
291 res = -EIO;
292 goto bail;
293 }
294 }
295 } else {
296 res = -ENODEV;
297 goto bail;
298 }
299
300 spin_lock_irq(&list->hiddev->list_lock);
301 list_add_tail(&list->node, &hiddev->list);
302 spin_unlock_irq(&list->hiddev->list_lock);
303
304 if (!list->hiddev->open++)
305 if (list->hiddev->exist) {
306 struct hid_device *hid = hiddev->hid;
307 res = usbhid_get_power(hid);
308 if (res < 0) {
309 res = -EIO;
310 goto bail;
311 }
312 usbhid_open(hid);
313 }
314 return 0;
315 bail:
316 file->private_data = NULL;
317 kfree(list);
318 return res;
319 }
320
321 /*
322 * "write" file op
323 */
324 static ssize_t hiddev_write(struct file * file, const char __user * buffer, size_t count, loff_t *ppos)
325 {
326 return -EINVAL;
327 }
328
329 /*
330 * "read" file op
331 */
332 static ssize_t hiddev_read(struct file * file, char __user * buffer, size_t count, loff_t *ppos)
333 {
334 DEFINE_WAIT(wait);
335 struct hiddev_list *list = file->private_data;
336 int event_size;
337 int retval;
338
339 event_size = ((list->flags & HIDDEV_FLAG_UREF) != 0) ?
340 sizeof(struct hiddev_usage_ref) : sizeof(struct hiddev_event);
341
342 if (count < event_size)
343 return 0;
344
345 /* lock against other threads */
346 retval = mutex_lock_interruptible(&list->thread_lock);
347 if (retval)
348 return -ERESTARTSYS;
349
350 while (retval == 0) {
351 if (list->head == list->tail) {
352 prepare_to_wait(&list->hiddev->wait, &wait, TASK_INTERRUPTIBLE);
353
354 while (list->head == list->tail) {
355 if (file->f_flags & O_NONBLOCK) {
356 retval = -EAGAIN;
357 break;
358 }
359 if (signal_pending(current)) {
360 retval = -ERESTARTSYS;
361 break;
362 }
363 if (!list->hiddev->exist) {
364 retval = -EIO;
365 break;
366 }
367
368 /* let O_NONBLOCK tasks run */
369 mutex_unlock(&list->thread_lock);
370 schedule();
371 if (mutex_lock_interruptible(&list->thread_lock))
372 return -EINTR;
373 set_current_state(TASK_INTERRUPTIBLE);
374 }
375 finish_wait(&list->hiddev->wait, &wait);
376
377 }
378
379 if (retval) {
380 mutex_unlock(&list->thread_lock);
381 return retval;
382 }
383
384
385 while (list->head != list->tail &&
386 retval + event_size <= count) {
387 if ((list->flags & HIDDEV_FLAG_UREF) == 0) {
388 if (list->buffer[list->tail].field_index != HID_FIELD_INDEX_NONE) {
389 struct hiddev_event event;
390
391 event.hid = list->buffer[list->tail].usage_code;
392 event.value = list->buffer[list->tail].value;
393 if (copy_to_user(buffer + retval, &event, sizeof(struct hiddev_event))) {
394 mutex_unlock(&list->thread_lock);
395 return -EFAULT;
396 }
397 retval += sizeof(struct hiddev_event);
398 }
399 } else {
400 if (list->buffer[list->tail].field_index != HID_FIELD_INDEX_NONE ||
401 (list->flags & HIDDEV_FLAG_REPORT) != 0) {
402
403 if (copy_to_user(buffer + retval, list->buffer + list->tail, sizeof(struct hiddev_usage_ref))) {
404 mutex_unlock(&list->thread_lock);
405 return -EFAULT;
406 }
407 retval += sizeof(struct hiddev_usage_ref);
408 }
409 }
410 list->tail = (list->tail + 1) & (HIDDEV_BUFFER_SIZE - 1);
411 }
412
413 }
414 mutex_unlock(&list->thread_lock);
415
416 return retval;
417 }
418
419 /*
420 * "poll" file op
421 * No kernel lock - fine
422 */
423 static unsigned int hiddev_poll(struct file *file, poll_table *wait)
424 {
425 struct hiddev_list *list = file->private_data;
426
427 poll_wait(file, &list->hiddev->wait, wait);
428 if (list->head != list->tail)
429 return POLLIN | POLLRDNORM;
430 if (!list->hiddev->exist)
431 return POLLERR | POLLHUP;
432 return 0;
433 }
434
435 /*
436 * "ioctl" file op
437 */
438 static noinline int hiddev_ioctl_usage(struct hiddev *hiddev, unsigned int cmd, void __user *user_arg)
439 {
440 struct hid_device *hid = hiddev->hid;
441 struct hiddev_report_info rinfo;
442 struct hiddev_usage_ref_multi *uref_multi = NULL;
443 struct hiddev_usage_ref *uref;
444 struct hid_report *report;
445 struct hid_field *field;
446 int i;
447
448 uref_multi = kmalloc(sizeof(struct hiddev_usage_ref_multi), GFP_KERNEL);
449 if (!uref_multi)
450 return -ENOMEM;
451 uref = &uref_multi->uref;
452 if (cmd == HIDIOCGUSAGES || cmd == HIDIOCSUSAGES) {
453 if (copy_from_user(uref_multi, user_arg,
454 sizeof(*uref_multi)))
455 goto fault;
456 } else {
457 if (copy_from_user(uref, user_arg, sizeof(*uref)))
458 goto fault;
459 }
460
461 switch (cmd) {
462 case HIDIOCGUCODE:
463 rinfo.report_type = uref->report_type;
464 rinfo.report_id = uref->report_id;
465 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
466 goto inval;
467
468 if (uref->field_index >= report->maxfield)
469 goto inval;
470
471 field = report->field[uref->field_index];
472 if (uref->usage_index >= field->maxusage)
473 goto inval;
474
475 uref->usage_code = field->usage[uref->usage_index].hid;
476
477 if (copy_to_user(user_arg, uref, sizeof(*uref)))
478 goto fault;
479
480 goto goodreturn;
481
482 default:
483 if (cmd != HIDIOCGUSAGE &&
484 cmd != HIDIOCGUSAGES &&
485 uref->report_type == HID_REPORT_TYPE_INPUT)
486 goto inval;
487
488 if (uref->report_id == HID_REPORT_ID_UNKNOWN) {
489 field = hiddev_lookup_usage(hid, uref);
490 if (field == NULL)
491 goto inval;
492 } else {
493 rinfo.report_type = uref->report_type;
494 rinfo.report_id = uref->report_id;
495 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
496 goto inval;
497
498 if (uref->field_index >= report->maxfield)
499 goto inval;
500
501 field = report->field[uref->field_index];
502
503 if (cmd == HIDIOCGCOLLECTIONINDEX) {
504 if (uref->usage_index >= field->maxusage)
505 goto inval;
506 } else if (uref->usage_index >= field->report_count)
507 goto inval;
508
509 else if ((cmd == HIDIOCGUSAGES || cmd == HIDIOCSUSAGES) &&
510 (uref_multi->num_values > HID_MAX_MULTI_USAGES ||
511 uref->usage_index + uref_multi->num_values > field->report_count))
512 goto inval;
513 }
514
515 switch (cmd) {
516 case HIDIOCGUSAGE:
517 uref->value = field->value[uref->usage_index];
518 if (copy_to_user(user_arg, uref, sizeof(*uref)))
519 goto fault;
520 goto goodreturn;
521
522 case HIDIOCSUSAGE:
523 field->value[uref->usage_index] = uref->value;
524 goto goodreturn;
525
526 case HIDIOCGCOLLECTIONINDEX:
527 i = field->usage[uref->usage_index].collection_index;
528 kfree(uref_multi);
529 return i;
530 case HIDIOCGUSAGES:
531 for (i = 0; i < uref_multi->num_values; i++)
532 uref_multi->values[i] =
533 field->value[uref->usage_index + i];
534 if (copy_to_user(user_arg, uref_multi,
535 sizeof(*uref_multi)))
536 goto fault;
537 goto goodreturn;
538 case HIDIOCSUSAGES:
539 for (i = 0; i < uref_multi->num_values; i++)
540 field->value[uref->usage_index + i] =
541 uref_multi->values[i];
542 goto goodreturn;
543 }
544
545 goodreturn:
546 kfree(uref_multi);
547 return 0;
548 fault:
549 kfree(uref_multi);
550 return -EFAULT;
551 inval:
552 kfree(uref_multi);
553 return -EINVAL;
554 }
555 }
556
557 static noinline int hiddev_ioctl_string(struct hiddev *hiddev, unsigned int cmd, void __user *user_arg)
558 {
559 struct hid_device *hid = hiddev->hid;
560 struct usb_device *dev = hid_to_usb_dev(hid);
561 int idx, len;
562 char *buf;
563
564 if (get_user(idx, (int __user *)user_arg))
565 return -EFAULT;
566
567 if ((buf = kmalloc(HID_STRING_SIZE, GFP_KERNEL)) == NULL)
568 return -ENOMEM;
569
570 if ((len = usb_string(dev, idx, buf, HID_STRING_SIZE-1)) < 0) {
571 kfree(buf);
572 return -EINVAL;
573 }
574
575 if (copy_to_user(user_arg+sizeof(int), buf, len+1)) {
576 kfree(buf);
577 return -EFAULT;
578 }
579
580 kfree(buf);
581
582 return len;
583 }
584
585 static long hiddev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
586 {
587 struct hiddev_list *list = file->private_data;
588 struct hiddev *hiddev = list->hiddev;
589 struct hid_device *hid = hiddev->hid;
590 struct usb_device *dev;
591 struct hiddev_collection_info cinfo;
592 struct hiddev_report_info rinfo;
593 struct hiddev_field_info finfo;
594 struct hiddev_devinfo dinfo;
595 struct hid_report *report;
596 struct hid_field *field;
597 struct usbhid_device *usbhid = hid->driver_data;
598 void __user *user_arg = (void __user *)arg;
599 int i, r;
600
601 /* Called without BKL by compat methods so no BKL taken */
602
603 /* FIXME: Who or what stop this racing with a disconnect ?? */
604 if (!hiddev->exist || !hid)
605 return -EIO;
606
607 dev = hid_to_usb_dev(hid);
608
609 switch (cmd) {
610
611 case HIDIOCGVERSION:
612 return put_user(HID_VERSION, (int __user *)arg);
613
614 case HIDIOCAPPLICATION:
615 if (arg < 0 || arg >= hid->maxapplication)
616 return -EINVAL;
617
618 for (i = 0; i < hid->maxcollection; i++)
619 if (hid->collection[i].type ==
620 HID_COLLECTION_APPLICATION && arg-- == 0)
621 break;
622
623 if (i == hid->maxcollection)
624 return -EINVAL;
625
626 return hid->collection[i].usage;
627
628 case HIDIOCGDEVINFO:
629 dinfo.bustype = BUS_USB;
630 dinfo.busnum = dev->bus->busnum;
631 dinfo.devnum = dev->devnum;
632 dinfo.ifnum = usbhid->ifnum;
633 dinfo.vendor = le16_to_cpu(dev->descriptor.idVendor);
634 dinfo.product = le16_to_cpu(dev->descriptor.idProduct);
635 dinfo.version = le16_to_cpu(dev->descriptor.bcdDevice);
636 dinfo.num_applications = hid->maxapplication;
637 if (copy_to_user(user_arg, &dinfo, sizeof(dinfo)))
638 return -EFAULT;
639
640 return 0;
641
642 case HIDIOCGFLAG:
643 if (put_user(list->flags, (int __user *)arg))
644 return -EFAULT;
645
646 return 0;
647
648 case HIDIOCSFLAG:
649 {
650 int newflags;
651 if (get_user(newflags, (int __user *)arg))
652 return -EFAULT;
653
654 if ((newflags & ~HIDDEV_FLAGS) != 0 ||
655 ((newflags & HIDDEV_FLAG_REPORT) != 0 &&
656 (newflags & HIDDEV_FLAG_UREF) == 0))
657 return -EINVAL;
658
659 list->flags = newflags;
660
661 return 0;
662 }
663
664 case HIDIOCGSTRING:
665 mutex_lock(&hiddev->existancelock);
666 if (hiddev->exist)
667 r = hiddev_ioctl_string(hiddev, cmd, user_arg);
668 else
669 r = -ENODEV;
670 mutex_unlock(&hiddev->existancelock);
671 return r;
672
673 case HIDIOCINITREPORT:
674 mutex_lock(&hiddev->existancelock);
675 if (!hiddev->exist) {
676 mutex_unlock(&hiddev->existancelock);
677 return -ENODEV;
678 }
679 usbhid_init_reports(hid);
680 mutex_unlock(&hiddev->existancelock);
681
682 return 0;
683
684 case HIDIOCGREPORT:
685 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
686 return -EFAULT;
687
688 if (rinfo.report_type == HID_REPORT_TYPE_OUTPUT)
689 return -EINVAL;
690
691 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
692 return -EINVAL;
693
694 mutex_lock(&hiddev->existancelock);
695 if (hiddev->exist) {
696 usbhid_submit_report(hid, report, USB_DIR_IN);
697 usbhid_wait_io(hid);
698 }
699 mutex_unlock(&hiddev->existancelock);
700
701 return 0;
702
703 case HIDIOCSREPORT:
704 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
705 return -EFAULT;
706
707 if (rinfo.report_type == HID_REPORT_TYPE_INPUT)
708 return -EINVAL;
709
710 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
711 return -EINVAL;
712
713 mutex_lock(&hiddev->existancelock);
714 if (hiddev->exist) {
715 usbhid_submit_report(hid, report, USB_DIR_OUT);
716 usbhid_wait_io(hid);
717 }
718 mutex_unlock(&hiddev->existancelock);
719
720 return 0;
721
722 case HIDIOCGREPORTINFO:
723 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
724 return -EFAULT;
725
726 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
727 return -EINVAL;
728
729 rinfo.num_fields = report->maxfield;
730
731 if (copy_to_user(user_arg, &rinfo, sizeof(rinfo)))
732 return -EFAULT;
733
734 return 0;
735
736 case HIDIOCGFIELDINFO:
737 if (copy_from_user(&finfo, user_arg, sizeof(finfo)))
738 return -EFAULT;
739 rinfo.report_type = finfo.report_type;
740 rinfo.report_id = finfo.report_id;
741 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
742 return -EINVAL;
743
744 if (finfo.field_index >= report->maxfield)
745 return -EINVAL;
746
747 field = report->field[finfo.field_index];
748 memset(&finfo, 0, sizeof(finfo));
749 finfo.report_type = rinfo.report_type;
750 finfo.report_id = rinfo.report_id;
751 finfo.field_index = field->report_count - 1;
752 finfo.maxusage = field->maxusage;
753 finfo.flags = field->flags;
754 finfo.physical = field->physical;
755 finfo.logical = field->logical;
756 finfo.application = field->application;
757 finfo.logical_minimum = field->logical_minimum;
758 finfo.logical_maximum = field->logical_maximum;
759 finfo.physical_minimum = field->physical_minimum;
760 finfo.physical_maximum = field->physical_maximum;
761 finfo.unit_exponent = field->unit_exponent;
762 finfo.unit = field->unit;
763
764 if (copy_to_user(user_arg, &finfo, sizeof(finfo)))
765 return -EFAULT;
766
767 return 0;
768
769 case HIDIOCGUCODE:
770 /* fall through */
771 case HIDIOCGUSAGE:
772 case HIDIOCSUSAGE:
773 case HIDIOCGUSAGES:
774 case HIDIOCSUSAGES:
775 case HIDIOCGCOLLECTIONINDEX:
776 mutex_lock(&hiddev->existancelock);
777 if (hiddev->exist)
778 r = hiddev_ioctl_usage(hiddev, cmd, user_arg);
779 else
780 r = -ENODEV;
781 mutex_unlock(&hiddev->existancelock);
782 return r;
783
784 case HIDIOCGCOLLECTIONINFO:
785 if (copy_from_user(&cinfo, user_arg, sizeof(cinfo)))
786 return -EFAULT;
787
788 if (cinfo.index >= hid->maxcollection)
789 return -EINVAL;
790
791 cinfo.type = hid->collection[cinfo.index].type;
792 cinfo.usage = hid->collection[cinfo.index].usage;
793 cinfo.level = hid->collection[cinfo.index].level;
794
795 if (copy_to_user(user_arg, &cinfo, sizeof(cinfo)))
796 return -EFAULT;
797 return 0;
798
799 default:
800
801 if (_IOC_TYPE(cmd) != 'H' || _IOC_DIR(cmd) != _IOC_READ)
802 return -EINVAL;
803
804 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGNAME(0))) {
805 int len;
806 if (!hid->name)
807 return 0;
808 len = strlen(hid->name) + 1;
809 if (len > _IOC_SIZE(cmd))
810 len = _IOC_SIZE(cmd);
811 return copy_to_user(user_arg, hid->name, len) ?
812 -EFAULT : len;
813 }
814
815 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGPHYS(0))) {
816 int len;
817 if (!hid->phys)
818 return 0;
819 len = strlen(hid->phys) + 1;
820 if (len > _IOC_SIZE(cmd))
821 len = _IOC_SIZE(cmd);
822 return copy_to_user(user_arg, hid->phys, len) ?
823 -EFAULT : len;
824 }
825 }
826 return -EINVAL;
827 }
828
829 #ifdef CONFIG_COMPAT
830 static long hiddev_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
831 {
832 return hiddev_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
833 }
834 #endif
835
836 static const struct file_operations hiddev_fops = {
837 .owner = THIS_MODULE,
838 .read = hiddev_read,
839 .write = hiddev_write,
840 .poll = hiddev_poll,
841 .open = hiddev_open,
842 .release = hiddev_release,
843 .unlocked_ioctl = hiddev_ioctl,
844 .fasync = hiddev_fasync,
845 #ifdef CONFIG_COMPAT
846 .compat_ioctl = hiddev_compat_ioctl,
847 #endif
848 .llseek = noop_llseek,
849 };
850
851 static char *hiddev_devnode(struct device *dev, mode_t *mode)
852 {
853 return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev));
854 }
855
856 static struct usb_class_driver hiddev_class = {
857 .name = "hiddev%d",
858 .devnode = hiddev_devnode,
859 .fops = &hiddev_fops,
860 .minor_base = HIDDEV_MINOR_BASE,
861 };
862
863 /*
864 * This is where hid.c calls us to connect a hid device to the hiddev driver
865 */
866 int hiddev_connect(struct hid_device *hid, unsigned int force)
867 {
868 struct hiddev *hiddev;
869 struct usbhid_device *usbhid = hid->driver_data;
870 int retval;
871
872 if (!force) {
873 unsigned int i;
874 for (i = 0; i < hid->maxcollection; i++)
875 if (hid->collection[i].type ==
876 HID_COLLECTION_APPLICATION &&
877 !IS_INPUT_APPLICATION(hid->collection[i].usage))
878 break;
879
880 if (i == hid->maxcollection)
881 return -1;
882 }
883
884 if (!(hiddev = kzalloc(sizeof(struct hiddev), GFP_KERNEL)))
885 return -1;
886
887 init_waitqueue_head(&hiddev->wait);
888 INIT_LIST_HEAD(&hiddev->list);
889 spin_lock_init(&hiddev->list_lock);
890 mutex_init(&hiddev->existancelock);
891 hid->hiddev = hiddev;
892 hiddev->hid = hid;
893 hiddev->exist = 1;
894 retval = usb_register_dev(usbhid->intf, &hiddev_class);
895 if (retval) {
896 err_hid("Not able to get a minor for this device.");
897 hid->hiddev = NULL;
898 kfree(hiddev);
899 return -1;
900 }
901 return 0;
902 }
903
904 /*
905 * This is where hid.c calls us to disconnect a hiddev device from the
906 * corresponding hid device (usually because the usb device has disconnected)
907 */
908 static struct usb_class_driver hiddev_class;
909 void hiddev_disconnect(struct hid_device *hid)
910 {
911 struct hiddev *hiddev = hid->hiddev;
912 struct usbhid_device *usbhid = hid->driver_data;
913
914 mutex_lock(&hiddev->existancelock);
915 hiddev->exist = 0;
916 mutex_unlock(&hiddev->existancelock);
917
918 usb_deregister_dev(usbhid->intf, &hiddev_class);
919
920 if (hiddev->open) {
921 usbhid_close(hiddev->hid);
922 wake_up_interruptible(&hiddev->wait);
923 } else {
924 kfree(hiddev);
925 }
926 }