blob: fd7375627e5d69f4fb36527fef0f5f9428e951f9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#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>
Jiri Kosinadde58452006-12-08 18:40:44 +010035#include <linux/hid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/hiddev.h>
Philip Langdalebb6c8d82007-10-14 12:03:58 +020037#include <linux/compat.h>
Jiri Kosinadde58452006-12-08 18:40:44 +010038#include "usbhid.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
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 64
48
49struct hiddev {
50 int exist;
51 int open;
Oliver Neukum07903402008-12-16 10:55:15 +010052 struct mutex existancelock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 wait_queue_head_t wait;
54 struct hid_device *hid;
Dmitry Torokhov826d5982006-07-19 01:09:10 -040055 struct list_head list;
Jiri Kosinacdcb44e2007-05-10 08:45:56 +020056 spinlock_t list_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
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;
Dmitry Torokhov826d5982006-07-19 01:09:10 -040066 struct list_head node;
Oliver Neukum07903402008-12-16 10:55:15 +010067 struct mutex thread_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
70static struct hiddev *hiddev_table[HIDDEV_MINORS];
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{
Dmitry Torokhov826d5982006-07-19 01:09:10 -040081 unsigned int flags = rinfo->report_id & ~HID_REPORT_ID_MASK;
82 unsigned int rid = rinfo->report_id & HID_REPORT_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct hid_report_enum *report_enum;
Dmitry Torokhov826d5982006-07-19 01:09:10 -040084 struct hid_report *report;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 struct list_head *list;
86
87 if (rinfo->report_type < HID_REPORT_TYPE_MIN ||
Dmitry Torokhov826d5982006-07-19 01:09:10 -040088 rinfo->report_type > HID_REPORT_TYPE_MAX)
89 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
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:
Dmitry Torokhov826d5982006-07-19 01:09:10 -040099 if (list_empty(&report_enum->report_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return NULL;
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400101
102 list = report_enum->report_list.next;
103 report = list_entry(list, struct hid_report, list);
104 rinfo->report_id = report->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 break;
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 case HID_REPORT_ID_NEXT:
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400108 report = report_enum->report_id_hash[rid];
109 if (!report)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return NULL;
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400111
112 list = report->list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (list == &report_enum->report_list)
114 return NULL;
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400115
116 report = list_entry(list, struct hid_report, list);
117 rinfo->report_id = report->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 break;
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 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 ||
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400140 uref->report_type > HID_REPORT_TYPE_MAX)
141 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 report_enum = hid->report_enum +
144 (uref->report_type - HID_REPORT_TYPE_MIN);
145
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400146 list_for_each_entry(report, &report_enum->report_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 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 }
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
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;
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400167 struct hiddev_list *list;
Jiri Kosinacdcb44e2007-05-10 08:45:56 +0200168 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Jiri Kosinacdcb44e2007-05-10 08:45:56 +0200170 spin_lock_irqsave(&hiddev->list_lock, flags);
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400171 list_for_each_entry(list, &hiddev->list, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (uref->field_index != HID_FIELD_INDEX_NONE ||
173 (list->flags & HIDDEV_FLAG_REPORT) != 0) {
174 list->buffer[list->head] = *uref;
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500175 list->head = (list->head + 1) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 (HIDDEV_BUFFER_SIZE - 1);
177 kill_fasync(&list->fasync, SIGIO, POLL_IN);
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
Jiri Kosinacdcb44e2007-05-10 08:45:56 +0200180 spin_unlock_irqrestore(&hiddev->list_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
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,
David Howells7d12e782006-10-05 14:55:46 +0100190 struct hid_usage *usage, __s32 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 unsigned type = field->report_type;
193 struct hiddev_usage_ref uref;
194
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500195 uref.report_type =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 (type == HID_INPUT_REPORT) ? HID_REPORT_TYPE_INPUT :
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500197 ((type == HID_OUTPUT_REPORT) ? HID_REPORT_TYPE_OUTPUT :
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400198 ((type == HID_FEATURE_REPORT) ? HID_REPORT_TYPE_FEATURE : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 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}
Jiri Kosina229695e2006-12-08 18:40:53 +0100207EXPORT_SYMBOL_GPL(hiddev_hid_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
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));
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500215 uref.report_type =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 (type == HID_INPUT_REPORT) ? HID_REPORT_TYPE_INPUT :
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500217 ((type == HID_OUTPUT_REPORT) ? HID_REPORT_TYPE_OUTPUT :
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400218 ((type == HID_FEATURE_REPORT) ? HID_REPORT_TYPE_FEATURE : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 uref.report_id = report->id;
220 uref.field_index = HID_FIELD_INDEX_NONE;
221
222 hiddev_send_event(hid, &uref);
223}
Jiri Kosinaaa8de2f2006-12-08 18:41:17 +0100224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/*
226 * fasync file op
227 */
228static int hiddev_fasync(int fd, struct file *file, int on)
229{
230 int retval;
231 struct hiddev_list *list = file->private_data;
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 retval = fasync_helper(fd, file, on, &list->fasync);
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return retval < 0 ? retval : 0;
236}
237
238
239/*
240 * release file op
241 */
242static int hiddev_release(struct inode * inode, struct file * file)
243{
244 struct hiddev_list *list = file->private_data;
Jiri Kosinacdcb44e2007-05-10 08:45:56 +0200245 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Jiri Kosinacdcb44e2007-05-10 08:45:56 +0200247 spin_lock_irqsave(&list->hiddev->list_lock, flags);
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400248 list_del(&list->node);
Jiri Kosinacdcb44e2007-05-10 08:45:56 +0200249 spin_unlock_irqrestore(&list->hiddev->list_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 if (!--list->hiddev->open) {
Oliver Neukum0361a282008-12-17 15:38:03 +0100252 if (list->hiddev->exist) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100253 usbhid_close(list->hiddev->hid);
Oliver Neukum0361a282008-12-17 15:38:03 +0100254 usbhid_put_power(list->hiddev->hid);
255 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 kfree(list->hiddev);
Oliver Neukum0361a282008-12-17 15:38:03 +0100257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
259
260 kfree(list);
261
262 return 0;
263}
264
265/*
266 * open file op
267 */
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400268static int hiddev_open(struct inode *inode, struct file *file)
269{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 struct hiddev_list *list;
Oliver Neukum07903402008-12-16 10:55:15 +0100271 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 int i = iminor(inode) - HIDDEV_MINOR_BASE;
274
Oliver Neukum07903402008-12-16 10:55:15 +0100275 if (i >= HIDDEV_MINORS || i < 0 || !hiddev_table[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return -ENODEV;
277
Oliver Neukumbbdb7da2006-01-06 20:54:29 +0100278 if (!(list = kzalloc(sizeof(struct hiddev_list), GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return -ENOMEM;
Oliver Neukum07903402008-12-16 10:55:15 +0100280 mutex_init(&list->thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 list->hiddev = hiddev_table[i];
Jiri Kosinacdcb44e2007-05-10 08:45:56 +0200283
Jiri Kosinacdcb44e2007-05-10 08:45:56 +0200284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 file->private_data = list;
286
Oliver Neukum07903402008-12-16 10:55:15 +0100287 /*
288 * no need for locking because the USB major number
289 * is shared which usbcore guards against disconnect
290 */
291 if (list->hiddev->exist) {
292 if (!list->hiddev->open++) {
293 res = usbhid_open(hiddev_table[i]->hid);
294 if (res < 0) {
295 res = -EIO;
296 goto bail;
297 }
298 }
299 } else {
300 res = -ENODEV;
301 goto bail;
302 }
303
304 spin_lock_irq(&list->hiddev->list_lock);
305 list_add_tail(&list->node, &hiddev_table[i]->list);
306 spin_unlock_irq(&list->hiddev->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Oliver Neukum0361a282008-12-17 15:38:03 +0100308 if (!list->hiddev->open++)
309 if (list->hiddev->exist) {
310 struct hid_device *hid = hiddev_table[i]->hid;
311 res = usbhid_get_power(hid);
312 if (res < 0) {
313 res = -EIO;
314 goto bail;
315 }
316 usbhid_open(hid);
317 }
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return 0;
Oliver Neukum07903402008-12-16 10:55:15 +0100320bail:
321 file->private_data = NULL;
Johannes Weiner48e7a3c2009-03-10 22:43:56 +0100322 kfree(list);
Oliver Neukum07903402008-12-16 10:55:15 +0100323 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
326/*
327 * "write" file op
328 */
329static ssize_t hiddev_write(struct file * file, const char __user * buffer, size_t count, loff_t *ppos)
330{
331 return -EINVAL;
332}
333
334/*
335 * "read" file op
336 */
337static ssize_t hiddev_read(struct file * file, char __user * buffer, size_t count, loff_t *ppos)
338{
Johannes Weiner96fe2ab2009-03-10 22:44:01 +0100339 DEFINE_WAIT(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 struct hiddev_list *list = file->private_data;
341 int event_size;
Oliver Neukum07903402008-12-16 10:55:15 +0100342 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 event_size = ((list->flags & HIDDEV_FLAG_UREF) != 0) ?
345 sizeof(struct hiddev_usage_ref) : sizeof(struct hiddev_event);
346
347 if (count < event_size)
348 return 0;
349
Oliver Neukum07903402008-12-16 10:55:15 +0100350 /* lock against other threads */
351 retval = mutex_lock_interruptible(&list->thread_lock);
352 if (retval)
353 return -ERESTARTSYS;
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 while (retval == 0) {
356 if (list->head == list->tail) {
Oliver Neukum07903402008-12-16 10:55:15 +0100357 prepare_to_wait(&list->hiddev->wait, &wait, TASK_INTERRUPTIBLE);
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 while (list->head == list->tail) {
360 if (file->f_flags & O_NONBLOCK) {
361 retval = -EAGAIN;
362 break;
363 }
364 if (signal_pending(current)) {
365 retval = -ERESTARTSYS;
366 break;
367 }
368 if (!list->hiddev->exist) {
369 retval = -EIO;
370 break;
371 }
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500372
Oliver Neukum07903402008-12-16 10:55:15 +0100373 /* let O_NONBLOCK tasks run */
374 mutex_unlock(&list->thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 schedule();
Oliver Neukum07903402008-12-16 10:55:15 +0100376 if (mutex_lock_interruptible(&list->thread_lock))
377 return -EINTR;
Micon, David48d70552006-05-20 14:59:59 -0700378 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
Oliver Neukum07903402008-12-16 10:55:15 +0100380 finish_wait(&list->hiddev->wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
Oliver Neukum07903402008-12-16 10:55:15 +0100384 if (retval) {
385 mutex_unlock(&list->thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return retval;
Oliver Neukum07903402008-12-16 10:55:15 +0100387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500390 while (list->head != list->tail &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 retval + event_size <= count) {
392 if ((list->flags & HIDDEV_FLAG_UREF) == 0) {
Oliver Neukum07903402008-12-16 10:55:15 +0100393 if (list->buffer[list->tail].field_index != HID_FIELD_INDEX_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 struct hiddev_event event;
Oliver Neukum07903402008-12-16 10:55:15 +0100395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 event.hid = list->buffer[list->tail].usage_code;
397 event.value = list->buffer[list->tail].value;
Oliver Neukum07903402008-12-16 10:55:15 +0100398 if (copy_to_user(buffer + retval, &event, sizeof(struct hiddev_event))) {
399 mutex_unlock(&list->thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return -EFAULT;
Oliver Neukum07903402008-12-16 10:55:15 +0100401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 retval += sizeof(struct hiddev_event);
403 }
404 } else {
405 if (list->buffer[list->tail].field_index != HID_FIELD_INDEX_NONE ||
406 (list->flags & HIDDEV_FLAG_REPORT) != 0) {
Oliver Neukum07903402008-12-16 10:55:15 +0100407
408 if (copy_to_user(buffer + retval, list->buffer + list->tail, sizeof(struct hiddev_usage_ref))) {
409 mutex_unlock(&list->thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return -EFAULT;
Oliver Neukum07903402008-12-16 10:55:15 +0100411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 retval += sizeof(struct hiddev_usage_ref);
413 }
414 }
415 list->tail = (list->tail + 1) & (HIDDEV_BUFFER_SIZE - 1);
416 }
417
418 }
Oliver Neukum07903402008-12-16 10:55:15 +0100419 mutex_unlock(&list->thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 return retval;
422}
423
424/*
425 * "poll" file op
426 * No kernel lock - fine
427 */
428static unsigned int hiddev_poll(struct file *file, poll_table *wait)
429{
430 struct hiddev_list *list = file->private_data;
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 poll_wait(file, &list->hiddev->wait, wait);
433 if (list->head != list->tail)
434 return POLLIN | POLLRDNORM;
435 if (!list->hiddev->exist)
436 return POLLERR | POLLHUP;
437 return 0;
438}
439
440/*
441 * "ioctl" file op
442 */
Jean Delvarecf2a2992008-03-03 11:48:43 +0100443static noinline int hiddev_ioctl_usage(struct hiddev *hiddev, unsigned int cmd, void __user *user_arg)
444{
445 struct hid_device *hid = hiddev->hid;
446 struct hiddev_report_info rinfo;
447 struct hiddev_usage_ref_multi *uref_multi = NULL;
448 struct hiddev_usage_ref *uref;
449 struct hid_report *report;
450 struct hid_field *field;
451 int i;
452
453 uref_multi = kmalloc(sizeof(struct hiddev_usage_ref_multi), GFP_KERNEL);
454 if (!uref_multi)
455 return -ENOMEM;
Alan Cox7961df12008-05-26 11:25:20 +0200456 lock_kernel();
Jean Delvarecf2a2992008-03-03 11:48:43 +0100457 uref = &uref_multi->uref;
458 if (cmd == HIDIOCGUSAGES || cmd == HIDIOCSUSAGES) {
459 if (copy_from_user(uref_multi, user_arg,
460 sizeof(*uref_multi)))
461 goto fault;
462 } else {
463 if (copy_from_user(uref, user_arg, sizeof(*uref)))
464 goto fault;
465 }
466
467 switch (cmd) {
468 case HIDIOCGUCODE:
469 rinfo.report_type = uref->report_type;
470 rinfo.report_id = uref->report_id;
471 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
472 goto inval;
473
474 if (uref->field_index >= report->maxfield)
475 goto inval;
476
477 field = report->field[uref->field_index];
478 if (uref->usage_index >= field->maxusage)
479 goto inval;
480
481 uref->usage_code = field->usage[uref->usage_index].hid;
482
483 if (copy_to_user(user_arg, uref, sizeof(*uref)))
484 goto fault;
485
Jiri Slabyeb991082008-10-23 01:47:34 +0200486 goto goodreturn;
Jean Delvarecf2a2992008-03-03 11:48:43 +0100487
488 default:
489 if (cmd != HIDIOCGUSAGE &&
490 cmd != HIDIOCGUSAGES &&
491 uref->report_type == HID_REPORT_TYPE_INPUT)
492 goto inval;
493
494 if (uref->report_id == HID_REPORT_ID_UNKNOWN) {
495 field = hiddev_lookup_usage(hid, uref);
496 if (field == NULL)
497 goto inval;
498 } else {
499 rinfo.report_type = uref->report_type;
500 rinfo.report_id = uref->report_id;
501 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
502 goto inval;
503
504 if (uref->field_index >= report->maxfield)
505 goto inval;
506
507 field = report->field[uref->field_index];
508
509 if (cmd == HIDIOCGCOLLECTIONINDEX) {
510 if (uref->usage_index >= field->maxusage)
511 goto inval;
512 } else if (uref->usage_index >= field->report_count)
513 goto inval;
514
515 else if ((cmd == HIDIOCGUSAGES || cmd == HIDIOCSUSAGES) &&
516 (uref_multi->num_values > HID_MAX_MULTI_USAGES ||
517 uref->usage_index + uref_multi->num_values > field->report_count))
518 goto inval;
519 }
520
521 switch (cmd) {
522 case HIDIOCGUSAGE:
523 uref->value = field->value[uref->usage_index];
524 if (copy_to_user(user_arg, uref, sizeof(*uref)))
525 goto fault;
526 goto goodreturn;
527
528 case HIDIOCSUSAGE:
529 field->value[uref->usage_index] = uref->value;
530 goto goodreturn;
531
532 case HIDIOCGCOLLECTIONINDEX:
533 kfree(uref_multi);
534 return field->usage[uref->usage_index].collection_index;
535 case HIDIOCGUSAGES:
536 for (i = 0; i < uref_multi->num_values; i++)
537 uref_multi->values[i] =
538 field->value[uref->usage_index + i];
539 if (copy_to_user(user_arg, uref_multi,
540 sizeof(*uref_multi)))
541 goto fault;
542 goto goodreturn;
543 case HIDIOCSUSAGES:
544 for (i = 0; i < uref_multi->num_values; i++)
545 field->value[uref->usage_index + i] =
546 uref_multi->values[i];
547 goto goodreturn;
548 }
549
550goodreturn:
Alan Cox7961df12008-05-26 11:25:20 +0200551 unlock_kernel();
Jean Delvarecf2a2992008-03-03 11:48:43 +0100552 kfree(uref_multi);
553 return 0;
554fault:
Alan Cox7961df12008-05-26 11:25:20 +0200555 unlock_kernel();
Jean Delvarecf2a2992008-03-03 11:48:43 +0100556 kfree(uref_multi);
557 return -EFAULT;
558inval:
Alan Cox7961df12008-05-26 11:25:20 +0200559 unlock_kernel();
Jean Delvarecf2a2992008-03-03 11:48:43 +0100560 kfree(uref_multi);
561 return -EINVAL;
562 }
563}
564
565static noinline int hiddev_ioctl_string(struct hiddev *hiddev, unsigned int cmd, void __user *user_arg)
566{
567 struct hid_device *hid = hiddev->hid;
568 struct usb_device *dev = hid_to_usb_dev(hid);
569 int idx, len;
570 char *buf;
571
572 if (get_user(idx, (int __user *)user_arg))
573 return -EFAULT;
574
575 if ((buf = kmalloc(HID_STRING_SIZE, GFP_KERNEL)) == NULL)
576 return -ENOMEM;
577
578 if ((len = usb_string(dev, idx, buf, HID_STRING_SIZE-1)) < 0) {
579 kfree(buf);
580 return -EINVAL;
581 }
582
583 if (copy_to_user(user_arg+sizeof(int), buf, len+1)) {
584 kfree(buf);
585 return -EFAULT;
586 }
587
588 kfree(buf);
589
590 return len;
591}
592
Alan Cox7961df12008-05-26 11:25:20 +0200593static long hiddev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595 struct hiddev_list *list = file->private_data;
596 struct hiddev *hiddev = list->hiddev;
597 struct hid_device *hid = hiddev->hid;
Anssi Hannulabe820972007-01-19 19:28:17 +0200598 struct usb_device *dev = hid_to_usb_dev(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 struct hiddev_collection_info cinfo;
600 struct hiddev_report_info rinfo;
601 struct hiddev_field_info finfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 struct hiddev_devinfo dinfo;
603 struct hid_report *report;
604 struct hid_field *field;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100605 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 void __user *user_arg = (void __user *)arg;
Oliver Neukum07903402008-12-16 10:55:15 +0100607 int i, r;
Alan Cox7961df12008-05-26 11:25:20 +0200608
609 /* Called without BKL by compat methods so no BKL taken */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Alan Cox7961df12008-05-26 11:25:20 +0200611 /* FIXME: Who or what stop this racing with a disconnect ?? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (!hiddev->exist)
613 return -EIO;
614
615 switch (cmd) {
616
617 case HIDIOCGVERSION:
618 return put_user(HID_VERSION, (int __user *)arg);
619
620 case HIDIOCAPPLICATION:
621 if (arg < 0 || arg >= hid->maxapplication)
622 return -EINVAL;
623
624 for (i = 0; i < hid->maxcollection; i++)
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500625 if (hid->collection[i].type ==
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 HID_COLLECTION_APPLICATION && arg-- == 0)
627 break;
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (i == hid->maxcollection)
630 return -EINVAL;
631
632 return hid->collection[i].usage;
633
634 case HIDIOCGDEVINFO:
635 dinfo.bustype = BUS_USB;
636 dinfo.busnum = dev->bus->busnum;
637 dinfo.devnum = dev->devnum;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100638 dinfo.ifnum = usbhid->ifnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 dinfo.vendor = le16_to_cpu(dev->descriptor.idVendor);
640 dinfo.product = le16_to_cpu(dev->descriptor.idProduct);
641 dinfo.version = le16_to_cpu(dev->descriptor.bcdDevice);
642 dinfo.num_applications = hid->maxapplication;
643 if (copy_to_user(user_arg, &dinfo, sizeof(dinfo)))
644 return -EFAULT;
645
646 return 0;
647
648 case HIDIOCGFLAG:
649 if (put_user(list->flags, (int __user *)arg))
650 return -EFAULT;
651
652 return 0;
653
654 case HIDIOCSFLAG:
655 {
656 int newflags;
657 if (get_user(newflags, (int __user *)arg))
658 return -EFAULT;
659
660 if ((newflags & ~HIDDEV_FLAGS) != 0 ||
661 ((newflags & HIDDEV_FLAG_REPORT) != 0 &&
662 (newflags & HIDDEV_FLAG_UREF) == 0))
663 return -EINVAL;
664
665 list->flags = newflags;
666
667 return 0;
668 }
669
670 case HIDIOCGSTRING:
Oliver Neukum07903402008-12-16 10:55:15 +0100671 mutex_lock(&hiddev->existancelock);
Oliver Neukumbe5d0c82009-01-28 09:36:18 +0100672 if (hiddev->exist)
Oliver Neukum07903402008-12-16 10:55:15 +0100673 r = hiddev_ioctl_string(hiddev, cmd, user_arg);
674 else
675 r = -ENODEV;
676 mutex_unlock(&hiddev->existancelock);
677 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 case HIDIOCINITREPORT:
Oliver Neukum07903402008-12-16 10:55:15 +0100680 mutex_lock(&hiddev->existancelock);
681 if (!hiddev->exist) {
682 mutex_unlock(&hiddev->existancelock);
683 return -ENODEV;
684 }
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100685 usbhid_init_reports(hid);
Oliver Neukum07903402008-12-16 10:55:15 +0100686 mutex_unlock(&hiddev->existancelock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 return 0;
689
690 case HIDIOCGREPORT:
691 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
692 return -EFAULT;
693
694 if (rinfo.report_type == HID_REPORT_TYPE_OUTPUT)
695 return -EINVAL;
696
697 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
698 return -EINVAL;
699
Oliver Neukum07903402008-12-16 10:55:15 +0100700 mutex_lock(&hiddev->existancelock);
701 if (hiddev->exist) {
702 usbhid_submit_report(hid, report, USB_DIR_IN);
703 usbhid_wait_io(hid);
704 }
705 mutex_unlock(&hiddev->existancelock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 return 0;
708
709 case HIDIOCSREPORT:
710 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
711 return -EFAULT;
712
713 if (rinfo.report_type == HID_REPORT_TYPE_INPUT)
714 return -EINVAL;
715
716 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
717 return -EINVAL;
718
Oliver Neukum07903402008-12-16 10:55:15 +0100719 mutex_lock(&hiddev->existancelock);
720 if (hiddev->exist) {
721 usbhid_submit_report(hid, report, USB_DIR_OUT);
722 usbhid_wait_io(hid);
723 }
724 mutex_unlock(&hiddev->existancelock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 return 0;
727
728 case HIDIOCGREPORTINFO:
729 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
730 return -EFAULT;
731
732 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
733 return -EINVAL;
734
735 rinfo.num_fields = report->maxfield;
736
737 if (copy_to_user(user_arg, &rinfo, sizeof(rinfo)))
738 return -EFAULT;
739
740 return 0;
741
742 case HIDIOCGFIELDINFO:
743 if (copy_from_user(&finfo, user_arg, sizeof(finfo)))
744 return -EFAULT;
745 rinfo.report_type = finfo.report_type;
746 rinfo.report_id = finfo.report_id;
747 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
748 return -EINVAL;
749
750 if (finfo.field_index >= report->maxfield)
751 return -EINVAL;
752
753 field = report->field[finfo.field_index];
754 memset(&finfo, 0, sizeof(finfo));
755 finfo.report_type = rinfo.report_type;
756 finfo.report_id = rinfo.report_id;
757 finfo.field_index = field->report_count - 1;
758 finfo.maxusage = field->maxusage;
759 finfo.flags = field->flags;
760 finfo.physical = field->physical;
761 finfo.logical = field->logical;
762 finfo.application = field->application;
763 finfo.logical_minimum = field->logical_minimum;
764 finfo.logical_maximum = field->logical_maximum;
765 finfo.physical_minimum = field->physical_minimum;
766 finfo.physical_maximum = field->physical_maximum;
767 finfo.unit_exponent = field->unit_exponent;
768 finfo.unit = field->unit;
769
770 if (copy_to_user(user_arg, &finfo, sizeof(finfo)))
771 return -EFAULT;
772
773 return 0;
774
775 case HIDIOCGUCODE:
Jean Delvarecf2a2992008-03-03 11:48:43 +0100776 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 case HIDIOCGUSAGE:
778 case HIDIOCSUSAGE:
779 case HIDIOCGUSAGES:
780 case HIDIOCSUSAGES:
781 case HIDIOCGCOLLECTIONINDEX:
Oliver Neukum07903402008-12-16 10:55:15 +0100782 mutex_lock(&hiddev->existancelock);
783 if (hiddev->exist)
784 r = hiddev_ioctl_usage(hiddev, cmd, user_arg);
785 else
786 r = -ENODEV;
787 mutex_unlock(&hiddev->existancelock);
788 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 case HIDIOCGCOLLECTIONINFO:
791 if (copy_from_user(&cinfo, user_arg, sizeof(cinfo)))
792 return -EFAULT;
793
794 if (cinfo.index >= hid->maxcollection)
795 return -EINVAL;
796
797 cinfo.type = hid->collection[cinfo.index].type;
798 cinfo.usage = hid->collection[cinfo.index].usage;
799 cinfo.level = hid->collection[cinfo.index].level;
800
801 if (copy_to_user(user_arg, &cinfo, sizeof(cinfo)))
802 return -EFAULT;
803 return 0;
804
805 default:
806
807 if (_IOC_TYPE(cmd) != 'H' || _IOC_DIR(cmd) != _IOC_READ)
808 return -EINVAL;
809
810 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGNAME(0))) {
811 int len;
812 if (!hid->name)
813 return 0;
814 len = strlen(hid->name) + 1;
815 if (len > _IOC_SIZE(cmd))
816 len = _IOC_SIZE(cmd);
817 return copy_to_user(user_arg, hid->name, len) ?
818 -EFAULT : len;
819 }
820
821 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGPHYS(0))) {
822 int len;
823 if (!hid->phys)
824 return 0;
825 len = strlen(hid->phys) + 1;
826 if (len > _IOC_SIZE(cmd))
827 len = _IOC_SIZE(cmd);
828 return copy_to_user(user_arg, hid->phys, len) ?
829 -EFAULT : len;
830 }
831 }
832 return -EINVAL;
833}
834
Philip Langdalebb6c8d82007-10-14 12:03:58 +0200835#ifdef CONFIG_COMPAT
836static long hiddev_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
837{
Jiri Kosina88af45b2008-05-27 11:36:40 +0200838 return hiddev_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
Philip Langdalebb6c8d82007-10-14 12:03:58 +0200839}
840#endif
841
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300842static const struct file_operations hiddev_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 .owner = THIS_MODULE,
844 .read = hiddev_read,
845 .write = hiddev_write,
846 .poll = hiddev_poll,
847 .open = hiddev_open,
848 .release = hiddev_release,
Alan Cox7961df12008-05-26 11:25:20 +0200849 .unlocked_ioctl = hiddev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 .fasync = hiddev_fasync,
Philip Langdalebb6c8d82007-10-14 12:03:58 +0200851#ifdef CONFIG_COMPAT
852 .compat_ioctl = hiddev_compat_ioctl,
853#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854};
855
856static struct usb_class_driver hiddev_class = {
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700857 .name = "hiddev%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 .fops = &hiddev_fops,
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500859 .minor_base = HIDDEV_MINOR_BASE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860};
861
862/*
863 * This is where hid.c calls us to connect a hid device to the hiddev driver
864 */
Jiri Slaby93c10132008-06-27 00:04:24 +0200865int hiddev_connect(struct hid_device *hid, unsigned int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
867 struct hiddev *hiddev;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100868 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 int retval;
870
Jiri Slaby93c10132008-06-27 00:04:24 +0200871 if (!force) {
872 unsigned int i;
873 for (i = 0; i < hid->maxcollection; i++)
874 if (hid->collection[i].type ==
875 HID_COLLECTION_APPLICATION &&
876 !IS_INPUT_APPLICATION(hid->collection[i].usage))
877 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Jiri Slaby93c10132008-06-27 00:04:24 +0200879 if (i == hid->maxcollection)
880 return -1;
881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Oliver Neukumbbdb7da2006-01-06 20:54:29 +0100883 if (!(hiddev = kzalloc(sizeof(struct hiddev), GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Oliver Neukum07903402008-12-16 10:55:15 +0100886 init_waitqueue_head(&hiddev->wait);
887 INIT_LIST_HEAD(&hiddev->list);
888 spin_lock_init(&hiddev->list_lock);
889 mutex_init(&hiddev->existancelock);
Jiri Kosina76052742009-01-07 13:25:36 +0100890 hid->hiddev = hiddev;
Oliver Neukum07903402008-12-16 10:55:15 +0100891 hiddev->hid = hid;
892 hiddev->exist = 1;
893
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100894 retval = usb_register_dev(usbhid->intf, &hiddev_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (retval) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200896 err_hid("Not able to get a minor for this device.");
Jiri Kosina76052742009-01-07 13:25:36 +0100897 hid->hiddev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 kfree(hiddev);
899 return -1;
Oliver Neukum07903402008-12-16 10:55:15 +0100900 } else {
901 hid->minor = usbhid->intf->minor;
902 hiddev_table[usbhid->intf->minor - HIDDEV_MINOR_BASE] = hiddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return 0;
906}
907
908/*
909 * This is where hid.c calls us to disconnect a hiddev device from the
910 * corresponding hid device (usually because the usb device has disconnected)
911 */
912static struct usb_class_driver hiddev_class;
913void hiddev_disconnect(struct hid_device *hid)
914{
915 struct hiddev *hiddev = hid->hiddev;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100916 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Oliver Neukum07903402008-12-16 10:55:15 +0100918 mutex_lock(&hiddev->existancelock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 hiddev->exist = 0;
Oliver Neukum07903402008-12-16 10:55:15 +0100920 mutex_unlock(&hiddev->existancelock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 hiddev_table[hiddev->hid->minor - HIDDEV_MINOR_BASE] = NULL;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100923 usb_deregister_dev(usbhid->intf, &hiddev_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 if (hiddev->open) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100926 usbhid_close(hiddev->hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 wake_up_interruptible(&hiddev->wait);
928 } else {
929 kfree(hiddev);
930 }
931}
932
933/* Currently this driver is a USB driver. It's not a conventional one in
934 * the sense that it doesn't probe at the USB level. Instead it waits to
935 * be connected by HID through the hiddev_connect / hiddev_disconnect
936 * routines. The reason to register as a USB device is to gain part of the
937 * minor number space from the USB major.
938 *
939 * In theory, should the HID code be generalized to more than one physical
940 * medium (say, IEEE 1384), this driver will probably need to register its
941 * own major number, and in doing so, no longer need to register with USB.
942 * At that point the probe routine and hiddev_driver struct below will no
943 * longer be useful.
944 */
945
946
947/* We never attach in this manner, and rely on HID to connect us. This
948 * is why there is no disconnect routine defined in the usb_driver either.
949 */
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500950static int hiddev_usbd_probe(struct usb_interface *intf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 const struct usb_device_id *hiddev_info)
952{
953 return -ENODEV;
954}
955
956
957static /* const */ struct usb_driver hiddev_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 .name = "hiddev",
959 .probe = hiddev_usbd_probe,
960};
961
962int __init hiddev_init(void)
963{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 return usb_register(&hiddev_driver);
965}
966
967void hiddev_exit(void)
968{
969 usb_deregister(&hiddev_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}