]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/hid/usbhid/hiddev.c
HID: hiddev: use usb_find_interface, get rid of BKL
[net-next-2.6.git] / drivers / hid / usbhid / hiddev.c
CommitLineData
1da177e4
LT
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
1da177e4
LT
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>
dde5845a 35#include <linux/hid.h>
1da177e4 36#include <linux/hiddev.h>
bb6c8d8f 37#include <linux/compat.h>
dde5845a 38#include "usbhid.h"
1da177e4
LT
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
affbb8c6 47#define HIDDEV_BUFFER_SIZE 2048
1da177e4
LT
48
49struct hiddev {
50 int exist;
51 int open;
07903407 52 struct mutex existancelock;
1da177e4
LT
53 wait_queue_head_t wait;
54 struct hid_device *hid;
826d5982 55 struct list_head list;
cdcb44e8 56 spinlock_t list_lock;
1da177e4
LT
57};
58
59struct 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;
826d5982 66 struct list_head node;
07903407 67 struct mutex thread_lock;
1da177e4
LT
68};
69
bd25f4dd 70static struct usb_driver hiddev_driver;
1da177e4
LT
71
72/*
73 * Find a report, given the report's type and ID. The ID can be specified
74 * indirectly by REPORT_ID_FIRST (which returns the first report of the given
75 * type) or by (REPORT_ID_NEXT | old_id), which returns the next report of the
76 * given type which follows old_id.
77 */
78static struct hid_report *
79hiddev_lookup_report(struct hid_device *hid, struct hiddev_report_info *rinfo)
80{
826d5982
DT
81 unsigned int flags = rinfo->report_id & ~HID_REPORT_ID_MASK;
82 unsigned int rid = rinfo->report_id & HID_REPORT_ID_MASK;
1da177e4 83 struct hid_report_enum *report_enum;
826d5982 84 struct hid_report *report;
1da177e4
LT
85 struct list_head *list;
86
87 if (rinfo->report_type < HID_REPORT_TYPE_MIN ||
826d5982
DT
88 rinfo->report_type > HID_REPORT_TYPE_MAX)
89 return NULL;
1da177e4
LT
90
91 report_enum = hid->report_enum +
92 (rinfo->report_type - HID_REPORT_TYPE_MIN);
93
94 switch (flags) {
95 case 0: /* Nothing to do -- report_id is already set correctly */
96 break;
97
98 case HID_REPORT_ID_FIRST:
826d5982 99 if (list_empty(&report_enum->report_list))
1da177e4 100 return NULL;
826d5982
DT
101
102 list = report_enum->report_list.next;
103 report = list_entry(list, struct hid_report, list);
104 rinfo->report_id = report->id;
1da177e4 105 break;
05f091ab 106
1da177e4 107 case HID_REPORT_ID_NEXT:
826d5982
DT
108 report = report_enum->report_id_hash[rid];
109 if (!report)
1da177e4 110 return NULL;
826d5982
DT
111
112 list = report->list.next;
1da177e4
LT
113 if (list == &report_enum->report_list)
114 return NULL;
826d5982
DT
115
116 report = list_entry(list, struct hid_report, list);
117 rinfo->report_id = report->id;
1da177e4 118 break;
05f091ab 119
1da177e4
LT
120 default:
121 return NULL;
122 }
123
124 return report_enum->report_id_hash[rinfo->report_id];
125}
126
127/*
128 * Perform an exhaustive search of the report table for a usage, given its
129 * type and usage id.
130 */
131static struct hid_field *
132hiddev_lookup_usage(struct hid_device *hid, struct hiddev_usage_ref *uref)
133{
134 int i, j;
135 struct hid_report *report;
136 struct hid_report_enum *report_enum;
137 struct hid_field *field;
138
139 if (uref->report_type < HID_REPORT_TYPE_MIN ||
826d5982
DT
140 uref->report_type > HID_REPORT_TYPE_MAX)
141 return NULL;
1da177e4
LT
142
143 report_enum = hid->report_enum +
144 (uref->report_type - HID_REPORT_TYPE_MIN);
145
826d5982 146 list_for_each_entry(report, &report_enum->report_list, list) {
1da177e4
LT
147 for (i = 0; i < report->maxfield; i++) {
148 field = report->field[i];
149 for (j = 0; j < field->maxusage; j++) {
150 if (field->usage[j].hid == uref->usage_code) {
151 uref->report_id = report->id;
152 uref->field_index = i;
153 uref->usage_index = j;
154 return field;
155 }
156 }
157 }
826d5982 158 }
1da177e4
LT
159
160 return NULL;
161}
162
163static void hiddev_send_event(struct hid_device *hid,
164 struct hiddev_usage_ref *uref)
165{
166 struct hiddev *hiddev = hid->hiddev;
826d5982 167 struct hiddev_list *list;
cdcb44e8 168 unsigned long flags;
1da177e4 169
cdcb44e8 170 spin_lock_irqsave(&hiddev->list_lock, flags);
826d5982 171 list_for_each_entry(list, &hiddev->list, node) {
1da177e4
LT
172 if (uref->field_index != HID_FIELD_INDEX_NONE ||
173 (list->flags & HIDDEV_FLAG_REPORT) != 0) {
174 list->buffer[list->head] = *uref;
05f091ab 175 list->head = (list->head + 1) &
1da177e4
LT
176 (HIDDEV_BUFFER_SIZE - 1);
177 kill_fasync(&list->fasync, SIGIO, POLL_IN);
178 }
1da177e4 179 }
cdcb44e8 180 spin_unlock_irqrestore(&hiddev->list_lock, flags);
1da177e4
LT
181
182 wake_up_interruptible(&hiddev->wait);
183}
184
185/*
186 * This is where hid.c calls into hiddev to pass an event that occurred over
187 * the interrupt pipe
188 */
189void hiddev_hid_event(struct hid_device *hid, struct hid_field *field,
7d12e780 190 struct hid_usage *usage, __s32 value)
1da177e4
LT
191{
192 unsigned type = field->report_type;
193 struct hiddev_usage_ref uref;
194
05f091ab 195 uref.report_type =
1da177e4 196 (type == HID_INPUT_REPORT) ? HID_REPORT_TYPE_INPUT :
05f091ab 197 ((type == HID_OUTPUT_REPORT) ? HID_REPORT_TYPE_OUTPUT :
826d5982 198 ((type == HID_FEATURE_REPORT) ? HID_REPORT_TYPE_FEATURE : 0));
1da177e4
LT
199 uref.report_id = field->report->id;
200 uref.field_index = field->index;
201 uref.usage_index = (usage - field->usage);
202 uref.usage_code = usage->hid;
203 uref.value = value;
204
205 hiddev_send_event(hid, &uref);
206}
229695e5 207EXPORT_SYMBOL_GPL(hiddev_hid_event);
1da177e4
LT
208
209void hiddev_report_event(struct hid_device *hid, struct hid_report *report)
210{
211 unsigned type = report->type;
212 struct hiddev_usage_ref uref;
213
214 memset(&uref, 0, sizeof(uref));
05f091ab 215 uref.report_type =
1da177e4 216 (type == HID_INPUT_REPORT) ? HID_REPORT_TYPE_INPUT :
05f091ab 217 ((type == HID_OUTPUT_REPORT) ? HID_REPORT_TYPE_OUTPUT :
826d5982 218 ((type == HID_FEATURE_REPORT) ? HID_REPORT_TYPE_FEATURE : 0));
1da177e4
LT
219 uref.report_id = report->id;
220 uref.field_index = HID_FIELD_INDEX_NONE;
221
222 hiddev_send_event(hid, &uref);
223}
aa8de2f0 224
1da177e4
LT
225/*
226 * fasync file op
227 */
228static int hiddev_fasync(int fd, struct file *file, int on)
229{
1da177e4 230 struct hiddev_list *list = file->private_data;
826d5982 231
60aa4924 232 return fasync_helper(fd, file, on, &list->fasync);
1da177e4
LT
233}
234
235
236/*
237 * release file op
238 */
239static int hiddev_release(struct inode * inode, struct file * file)
240{
241 struct hiddev_list *list = file->private_data;
cdcb44e8 242 unsigned long flags;
1da177e4 243
cdcb44e8 244 spin_lock_irqsave(&list->hiddev->list_lock, flags);
826d5982 245 list_del(&list->node);
cdcb44e8 246 spin_unlock_irqrestore(&list->hiddev->list_lock, flags);
1da177e4
LT
247
248 if (!--list->hiddev->open) {
0361a28d 249 if (list->hiddev->exist) {
4916b3a5 250 usbhid_close(list->hiddev->hid);
0361a28d
ON
251 usbhid_put_power(list->hiddev->hid);
252 } else {
1da177e4 253 kfree(list->hiddev);
0361a28d 254 }
1da177e4
LT
255 }
256
257 kfree(list);
258
259 return 0;
260}
261
262/*
263 * open file op
264 */
826d5982
DT
265static int hiddev_open(struct inode *inode, struct file *file)
266{
1da177e4 267 struct hiddev_list *list;
bd25f4dd
AB
268 struct usb_interface *intf;
269 struct hiddev *hiddev;
270 int res;
1da177e4 271
bd25f4dd
AB
272 intf = usb_find_interface(&hiddev_driver, iminor(inode));
273 if (!intf)
1da177e4 274 return -ENODEV;
bd25f4dd 275 hiddev = usb_get_intfdata(intf);
1da177e4 276
bbdb7daf 277 if (!(list = kzalloc(sizeof(struct hiddev_list), GFP_KERNEL)))
1da177e4 278 return -ENOMEM;
07903407 279 mutex_init(&list->thread_lock);
bd25f4dd 280 list->hiddev = hiddev;
1da177e4
LT
281 file->private_data = list;
282
07903407
ON
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++) {
bd25f4dd 289 res = usbhid_open(hiddev->hid);
07903407
ON
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);
bd25f4dd 301 list_add_tail(&list->node, &hiddev->list);
07903407 302 spin_unlock_irq(&list->hiddev->list_lock);
1da177e4 303
0361a28d
ON
304 if (!list->hiddev->open++)
305 if (list->hiddev->exist) {
bd25f4dd 306 struct hid_device *hid = hiddev->hid;
0361a28d
ON
307 res = usbhid_get_power(hid);
308 if (res < 0) {
309 res = -EIO;
310 goto bail;
311 }
312 usbhid_open(hid);
313 }
1da177e4 314 return 0;
07903407
ON
315bail:
316 file->private_data = NULL;
48e7a3c9 317 kfree(list);
07903407 318 return res;
1da177e4
LT
319}
320
321/*
322 * "write" file op
323 */
324static 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 */
332static ssize_t hiddev_read(struct file * file, char __user * buffer, size_t count, loff_t *ppos)
333{
96fe2ab8 334 DEFINE_WAIT(wait);
1da177e4
LT
335 struct hiddev_list *list = file->private_data;
336 int event_size;
07903407 337 int retval;
1da177e4
LT
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
07903407
ON
345 /* lock against other threads */
346 retval = mutex_lock_interruptible(&list->thread_lock);
347 if (retval)
348 return -ERESTARTSYS;
349
1da177e4
LT
350 while (retval == 0) {
351 if (list->head == list->tail) {
07903407 352 prepare_to_wait(&list->hiddev->wait, &wait, TASK_INTERRUPTIBLE);
05f091ab 353
1da177e4
LT
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 }
05f091ab 367
07903407
ON
368 /* let O_NONBLOCK tasks run */
369 mutex_unlock(&list->thread_lock);
1da177e4 370 schedule();
07903407
ON
371 if (mutex_lock_interruptible(&list->thread_lock))
372 return -EINTR;
48d70552 373 set_current_state(TASK_INTERRUPTIBLE);
1da177e4 374 }
07903407 375 finish_wait(&list->hiddev->wait, &wait);
1da177e4 376
1da177e4
LT
377 }
378
07903407
ON
379 if (retval) {
380 mutex_unlock(&list->thread_lock);
1da177e4 381 return retval;
07903407 382 }
1da177e4
LT
383
384
05f091ab 385 while (list->head != list->tail &&
1da177e4
LT
386 retval + event_size <= count) {
387 if ((list->flags & HIDDEV_FLAG_UREF) == 0) {
07903407 388 if (list->buffer[list->tail].field_index != HID_FIELD_INDEX_NONE) {
1da177e4 389 struct hiddev_event event;
07903407 390
1da177e4
LT
391 event.hid = list->buffer[list->tail].usage_code;
392 event.value = list->buffer[list->tail].value;
07903407
ON
393 if (copy_to_user(buffer + retval, &event, sizeof(struct hiddev_event))) {
394 mutex_unlock(&list->thread_lock);
1da177e4 395 return -EFAULT;
07903407 396 }
1da177e4
LT
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) {
07903407
ON
402
403 if (copy_to_user(buffer + retval, list->buffer + list->tail, sizeof(struct hiddev_usage_ref))) {
404 mutex_unlock(&list->thread_lock);
1da177e4 405 return -EFAULT;
07903407 406 }
1da177e4
LT
407 retval += sizeof(struct hiddev_usage_ref);
408 }
409 }
410 list->tail = (list->tail + 1) & (HIDDEV_BUFFER_SIZE - 1);
411 }
412
413 }
07903407 414 mutex_unlock(&list->thread_lock);
1da177e4
LT
415
416 return retval;
417}
418
419/*
420 * "poll" file op
421 * No kernel lock - fine
422 */
423static unsigned int hiddev_poll(struct file *file, poll_table *wait)
424{
425 struct hiddev_list *list = file->private_data;
826d5982 426
1da177e4
LT
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 */
cf2a299e
JD
438static 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
eb991089 480 goto goodreturn;
cf2a299e
JD
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:
4859484b 527 i = field->usage[uref->usage_index].collection_index;
cf2a299e 528 kfree(uref_multi);
4859484b 529 return i;
cf2a299e
JD
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
545goodreturn:
546 kfree(uref_multi);
547 return 0;
548fault:
549 kfree(uref_multi);
550 return -EFAULT;
551inval:
552 kfree(uref_multi);
553 return -EINVAL;
554 }
555}
556
557static 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
7961df16 585static long hiddev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1da177e4
LT
586{
587 struct hiddev_list *list = file->private_data;
588 struct hiddev *hiddev = list->hiddev;
589 struct hid_device *hid = hiddev->hid;
be820975 590 struct usb_device *dev = hid_to_usb_dev(hid);
1da177e4
LT
591 struct hiddev_collection_info cinfo;
592 struct hiddev_report_info rinfo;
593 struct hiddev_field_info finfo;
1da177e4
LT
594 struct hiddev_devinfo dinfo;
595 struct hid_report *report;
596 struct hid_field *field;
4916b3a5 597 struct usbhid_device *usbhid = hid->driver_data;
1da177e4 598 void __user *user_arg = (void __user *)arg;
07903407 599 int i, r;
7961df16
AC
600
601 /* Called without BKL by compat methods so no BKL taken */
1da177e4 602
7961df16 603 /* FIXME: Who or what stop this racing with a disconnect ?? */
1da177e4
LT
604 if (!hiddev->exist)
605 return -EIO;
606
607 switch (cmd) {
608
609 case HIDIOCGVERSION:
610 return put_user(HID_VERSION, (int __user *)arg);
611
612 case HIDIOCAPPLICATION:
613 if (arg < 0 || arg >= hid->maxapplication)
614 return -EINVAL;
615
616 for (i = 0; i < hid->maxcollection; i++)
05f091ab 617 if (hid->collection[i].type ==
1da177e4
LT
618 HID_COLLECTION_APPLICATION && arg-- == 0)
619 break;
05f091ab 620
1da177e4
LT
621 if (i == hid->maxcollection)
622 return -EINVAL;
623
624 return hid->collection[i].usage;
625
626 case HIDIOCGDEVINFO:
627 dinfo.bustype = BUS_USB;
628 dinfo.busnum = dev->bus->busnum;
629 dinfo.devnum = dev->devnum;
4916b3a5 630 dinfo.ifnum = usbhid->ifnum;
1da177e4
LT
631 dinfo.vendor = le16_to_cpu(dev->descriptor.idVendor);
632 dinfo.product = le16_to_cpu(dev->descriptor.idProduct);
633 dinfo.version = le16_to_cpu(dev->descriptor.bcdDevice);
634 dinfo.num_applications = hid->maxapplication;
635 if (copy_to_user(user_arg, &dinfo, sizeof(dinfo)))
636 return -EFAULT;
637
638 return 0;
639
640 case HIDIOCGFLAG:
641 if (put_user(list->flags, (int __user *)arg))
642 return -EFAULT;
643
644 return 0;
645
646 case HIDIOCSFLAG:
647 {
648 int newflags;
649 if (get_user(newflags, (int __user *)arg))
650 return -EFAULT;
651
652 if ((newflags & ~HIDDEV_FLAGS) != 0 ||
653 ((newflags & HIDDEV_FLAG_REPORT) != 0 &&
654 (newflags & HIDDEV_FLAG_UREF) == 0))
655 return -EINVAL;
656
657 list->flags = newflags;
658
659 return 0;
660 }
661
662 case HIDIOCGSTRING:
07903407 663 mutex_lock(&hiddev->existancelock);
be5d0c83 664 if (hiddev->exist)
07903407
ON
665 r = hiddev_ioctl_string(hiddev, cmd, user_arg);
666 else
667 r = -ENODEV;
668 mutex_unlock(&hiddev->existancelock);
669 return r;
1da177e4
LT
670
671 case HIDIOCINITREPORT:
07903407
ON
672 mutex_lock(&hiddev->existancelock);
673 if (!hiddev->exist) {
674 mutex_unlock(&hiddev->existancelock);
675 return -ENODEV;
676 }
4916b3a5 677 usbhid_init_reports(hid);
07903407 678 mutex_unlock(&hiddev->existancelock);
1da177e4
LT
679
680 return 0;
681
682 case HIDIOCGREPORT:
683 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
684 return -EFAULT;
685
686 if (rinfo.report_type == HID_REPORT_TYPE_OUTPUT)
687 return -EINVAL;
688
689 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
690 return -EINVAL;
691
07903407
ON
692 mutex_lock(&hiddev->existancelock);
693 if (hiddev->exist) {
694 usbhid_submit_report(hid, report, USB_DIR_IN);
695 usbhid_wait_io(hid);
696 }
697 mutex_unlock(&hiddev->existancelock);
1da177e4
LT
698
699 return 0;
700
701 case HIDIOCSREPORT:
702 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
703 return -EFAULT;
704
705 if (rinfo.report_type == HID_REPORT_TYPE_INPUT)
706 return -EINVAL;
707
708 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
709 return -EINVAL;
710
07903407
ON
711 mutex_lock(&hiddev->existancelock);
712 if (hiddev->exist) {
713 usbhid_submit_report(hid, report, USB_DIR_OUT);
714 usbhid_wait_io(hid);
715 }
716 mutex_unlock(&hiddev->existancelock);
1da177e4
LT
717
718 return 0;
719
720 case HIDIOCGREPORTINFO:
721 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
722 return -EFAULT;
723
724 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
725 return -EINVAL;
726
727 rinfo.num_fields = report->maxfield;
728
729 if (copy_to_user(user_arg, &rinfo, sizeof(rinfo)))
730 return -EFAULT;
731
732 return 0;
733
734 case HIDIOCGFIELDINFO:
735 if (copy_from_user(&finfo, user_arg, sizeof(finfo)))
736 return -EFAULT;
737 rinfo.report_type = finfo.report_type;
738 rinfo.report_id = finfo.report_id;
739 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
740 return -EINVAL;
741
742 if (finfo.field_index >= report->maxfield)
743 return -EINVAL;
744
745 field = report->field[finfo.field_index];
746 memset(&finfo, 0, sizeof(finfo));
747 finfo.report_type = rinfo.report_type;
748 finfo.report_id = rinfo.report_id;
749 finfo.field_index = field->report_count - 1;
750 finfo.maxusage = field->maxusage;
751 finfo.flags = field->flags;
752 finfo.physical = field->physical;
753 finfo.logical = field->logical;
754 finfo.application = field->application;
755 finfo.logical_minimum = field->logical_minimum;
756 finfo.logical_maximum = field->logical_maximum;
757 finfo.physical_minimum = field->physical_minimum;
758 finfo.physical_maximum = field->physical_maximum;
759 finfo.unit_exponent = field->unit_exponent;
760 finfo.unit = field->unit;
761
762 if (copy_to_user(user_arg, &finfo, sizeof(finfo)))
763 return -EFAULT;
764
765 return 0;
766
767 case HIDIOCGUCODE:
cf2a299e 768 /* fall through */
1da177e4
LT
769 case HIDIOCGUSAGE:
770 case HIDIOCSUSAGE:
771 case HIDIOCGUSAGES:
772 case HIDIOCSUSAGES:
773 case HIDIOCGCOLLECTIONINDEX:
07903407
ON
774 mutex_lock(&hiddev->existancelock);
775 if (hiddev->exist)
776 r = hiddev_ioctl_usage(hiddev, cmd, user_arg);
777 else
778 r = -ENODEV;
779 mutex_unlock(&hiddev->existancelock);
780 return r;
1da177e4
LT
781
782 case HIDIOCGCOLLECTIONINFO:
783 if (copy_from_user(&cinfo, user_arg, sizeof(cinfo)))
784 return -EFAULT;
785
786 if (cinfo.index >= hid->maxcollection)
787 return -EINVAL;
788
789 cinfo.type = hid->collection[cinfo.index].type;
790 cinfo.usage = hid->collection[cinfo.index].usage;
791 cinfo.level = hid->collection[cinfo.index].level;
792
793 if (copy_to_user(user_arg, &cinfo, sizeof(cinfo)))
794 return -EFAULT;
795 return 0;
796
797 default:
798
799 if (_IOC_TYPE(cmd) != 'H' || _IOC_DIR(cmd) != _IOC_READ)
800 return -EINVAL;
801
802 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGNAME(0))) {
803 int len;
804 if (!hid->name)
805 return 0;
806 len = strlen(hid->name) + 1;
807 if (len > _IOC_SIZE(cmd))
808 len = _IOC_SIZE(cmd);
809 return copy_to_user(user_arg, hid->name, len) ?
810 -EFAULT : len;
811 }
812
813 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGPHYS(0))) {
814 int len;
815 if (!hid->phys)
816 return 0;
817 len = strlen(hid->phys) + 1;
818 if (len > _IOC_SIZE(cmd))
819 len = _IOC_SIZE(cmd);
820 return copy_to_user(user_arg, hid->phys, len) ?
821 -EFAULT : len;
822 }
823 }
824 return -EINVAL;
825}
826
bb6c8d8f
PL
827#ifdef CONFIG_COMPAT
828static long hiddev_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
829{
88af45ba 830 return hiddev_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
bb6c8d8f
PL
831}
832#endif
833
066202dd 834static const struct file_operations hiddev_fops = {
1da177e4
LT
835 .owner = THIS_MODULE,
836 .read = hiddev_read,
837 .write = hiddev_write,
838 .poll = hiddev_poll,
839 .open = hiddev_open,
840 .release = hiddev_release,
7961df16 841 .unlocked_ioctl = hiddev_ioctl,
1da177e4 842 .fasync = hiddev_fasync,
bb6c8d8f
PL
843#ifdef CONFIG_COMPAT
844 .compat_ioctl = hiddev_compat_ioctl,
845#endif
1da177e4
LT
846};
847
e454cea2 848static char *hiddev_devnode(struct device *dev, mode_t *mode)
f7a386c5
KS
849{
850 return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev));
851}
852
1da177e4 853static struct usb_class_driver hiddev_class = {
d6e5bcf4 854 .name = "hiddev%d",
e454cea2 855 .devnode = hiddev_devnode,
1da177e4 856 .fops = &hiddev_fops,
05f091ab 857 .minor_base = HIDDEV_MINOR_BASE,
1da177e4
LT
858};
859
860/*
861 * This is where hid.c calls us to connect a hid device to the hiddev driver
862 */
93c10132 863int hiddev_connect(struct hid_device *hid, unsigned int force)
1da177e4
LT
864{
865 struct hiddev *hiddev;
4916b3a5 866 struct usbhid_device *usbhid = hid->driver_data;
1da177e4
LT
867 int retval;
868
93c10132
JS
869 if (!force) {
870 unsigned int i;
871 for (i = 0; i < hid->maxcollection; i++)
872 if (hid->collection[i].type ==
873 HID_COLLECTION_APPLICATION &&
874 !IS_INPUT_APPLICATION(hid->collection[i].usage))
875 break;
1da177e4 876
93c10132
JS
877 if (i == hid->maxcollection)
878 return -1;
879 }
1da177e4 880
bbdb7daf 881 if (!(hiddev = kzalloc(sizeof(struct hiddev), GFP_KERNEL)))
1da177e4 882 return -1;
1da177e4 883
1da177e4 884 init_waitqueue_head(&hiddev->wait);
826d5982 885 INIT_LIST_HEAD(&hiddev->list);
cdcb44e8 886 spin_lock_init(&hiddev->list_lock);
07903407 887 mutex_init(&hiddev->existancelock);
76052749 888 hid->hiddev = hiddev;
1da177e4
LT
889 hiddev->hid = hid;
890 hiddev->exist = 1;
bd25f4dd 891 usb_set_intfdata(usbhid->intf, usbhid);
07903407
ON
892 retval = usb_register_dev(usbhid->intf, &hiddev_class);
893 if (retval) {
894 err_hid("Not able to get a minor for this device.");
76052749 895 hid->hiddev = NULL;
07903407
ON
896 kfree(hiddev);
897 return -1;
07903407 898 }
1da177e4
LT
899 return 0;
900}
901
902/*
903 * This is where hid.c calls us to disconnect a hiddev device from the
904 * corresponding hid device (usually because the usb device has disconnected)
905 */
906static struct usb_class_driver hiddev_class;
907void hiddev_disconnect(struct hid_device *hid)
908{
909 struct hiddev *hiddev = hid->hiddev;
4916b3a5 910 struct usbhid_device *usbhid = hid->driver_data;
1da177e4 911
07903407 912 mutex_lock(&hiddev->existancelock);
1da177e4 913 hiddev->exist = 0;
07903407 914 mutex_unlock(&hiddev->existancelock);
1da177e4 915
4916b3a5 916 usb_deregister_dev(usbhid->intf, &hiddev_class);
1da177e4
LT
917
918 if (hiddev->open) {
4916b3a5 919 usbhid_close(hiddev->hid);
1da177e4
LT
920 wake_up_interruptible(&hiddev->wait);
921 } else {
922 kfree(hiddev);
923 }
924}
925
926/* Currently this driver is a USB driver. It's not a conventional one in
927 * the sense that it doesn't probe at the USB level. Instead it waits to
928 * be connected by HID through the hiddev_connect / hiddev_disconnect
929 * routines. The reason to register as a USB device is to gain part of the
930 * minor number space from the USB major.
931 *
932 * In theory, should the HID code be generalized to more than one physical
933 * medium (say, IEEE 1384), this driver will probably need to register its
934 * own major number, and in doing so, no longer need to register with USB.
935 * At that point the probe routine and hiddev_driver struct below will no
936 * longer be useful.
937 */
938
939
940/* We never attach in this manner, and rely on HID to connect us. This
941 * is why there is no disconnect routine defined in the usb_driver either.
942 */
05f091ab 943static int hiddev_usbd_probe(struct usb_interface *intf,
1da177e4
LT
944 const struct usb_device_id *hiddev_info)
945{
946 return -ENODEV;
947}
948
1da177e4 949static /* const */ struct usb_driver hiddev_driver = {
1da177e4
LT
950 .name = "hiddev",
951 .probe = hiddev_usbd_probe,
952};
953
954int __init hiddev_init(void)
955{
1da177e4
LT
956 return usb_register(&hiddev_driver);
957}
958
959void hiddev_exit(void)
960{
961 usb_deregister(&hiddev_driver);
1da177e4 962}