blob: 0a29c51114aaf0d36c64f6c8c25195db5e2f3747 [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
Jiri Kosinaaffbb8c2009-08-20 12:04:14 +020047#define HIDDEV_BUFFER_SIZE 2048
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
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
Arnd Bergmannbd25f4d2010-07-11 15:34:05 +020070static struct usb_driver hiddev_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
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{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 struct hiddev_list *list = file->private_data;
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400231
Jonathan Corbet60aa4922009-02-01 14:52:56 -0700232 return fasync_helper(fd, file, on, &list->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
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;
Jiri Kosinacdcb44e2007-05-10 08:45:56 +0200242 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Jiri Kosinacdcb44e2007-05-10 08:45:56 +0200244 spin_lock_irqsave(&list->hiddev->list_lock, flags);
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400245 list_del(&list->node);
Jiri Kosinacdcb44e2007-05-10 08:45:56 +0200246 spin_unlock_irqrestore(&list->hiddev->list_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 if (!--list->hiddev->open) {
Oliver Neukum0361a282008-12-17 15:38:03 +0100249 if (list->hiddev->exist) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100250 usbhid_close(list->hiddev->hid);
Oliver Neukum0361a282008-12-17 15:38:03 +0100251 usbhid_put_power(list->hiddev->hid);
252 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 kfree(list->hiddev);
Oliver Neukum0361a282008-12-17 15:38:03 +0100254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256
257 kfree(list);
258
259 return 0;
260}
261
262/*
263 * open file op
264 */
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400265static int hiddev_open(struct inode *inode, struct file *file)
266{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 struct hiddev_list *list;
Arnd Bergmannbd25f4d2010-07-11 15:34:05 +0200268 struct usb_interface *intf;
Jiri Kosina9c9e54a2010-08-13 12:19:45 +0200269 struct hid_device *hid;
Arnd Bergmannbd25f4d2010-07-11 15:34:05 +0200270 struct hiddev *hiddev;
271 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Arnd Bergmannbd25f4d2010-07-11 15:34:05 +0200273 intf = usb_find_interface(&hiddev_driver, iminor(inode));
274 if (!intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return -ENODEV;
Jiri Kosina9c9e54a2010-08-13 12:19:45 +0200276 hid = usb_get_intfdata(intf);
277 hiddev = hid->hiddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Oliver Neukumbbdb7da2006-01-06 20:54:29 +0100279 if (!(list = kzalloc(sizeof(struct hiddev_list), GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return -ENOMEM;
Oliver Neukum07903402008-12-16 10:55:15 +0100281 mutex_init(&list->thread_lock);
Arnd Bergmannbd25f4d2010-07-11 15:34:05 +0200282 list->hiddev = hiddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 file->private_data = list;
284
Oliver Neukum07903402008-12-16 10:55:15 +0100285 /*
286 * no need for locking because the USB major number
287 * is shared which usbcore guards against disconnect
288 */
289 if (list->hiddev->exist) {
290 if (!list->hiddev->open++) {
Arnd Bergmannbd25f4d2010-07-11 15:34:05 +0200291 res = usbhid_open(hiddev->hid);
Oliver Neukum07903402008-12-16 10:55:15 +0100292 if (res < 0) {
293 res = -EIO;
294 goto bail;
295 }
296 }
297 } else {
298 res = -ENODEV;
299 goto bail;
300 }
301
302 spin_lock_irq(&list->hiddev->list_lock);
Arnd Bergmannbd25f4d2010-07-11 15:34:05 +0200303 list_add_tail(&list->node, &hiddev->list);
Oliver Neukum07903402008-12-16 10:55:15 +0100304 spin_unlock_irq(&list->hiddev->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Oliver Neukum0361a282008-12-17 15:38:03 +0100306 if (!list->hiddev->open++)
307 if (list->hiddev->exist) {
Arnd Bergmannbd25f4d2010-07-11 15:34:05 +0200308 struct hid_device *hid = hiddev->hid;
Oliver Neukum0361a282008-12-17 15:38:03 +0100309 res = usbhid_get_power(hid);
310 if (res < 0) {
311 res = -EIO;
312 goto bail;
313 }
314 usbhid_open(hid);
315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return 0;
Oliver Neukum07903402008-12-16 10:55:15 +0100317bail:
318 file->private_data = NULL;
Johannes Weiner48e7a3c2009-03-10 22:43:56 +0100319 kfree(list);
Oliver Neukum07903402008-12-16 10:55:15 +0100320 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
323/*
324 * "write" file op
325 */
326static ssize_t hiddev_write(struct file * file, const char __user * buffer, size_t count, loff_t *ppos)
327{
328 return -EINVAL;
329}
330
331/*
332 * "read" file op
333 */
334static ssize_t hiddev_read(struct file * file, char __user * buffer, size_t count, loff_t *ppos)
335{
Johannes Weiner96fe2ab2009-03-10 22:44:01 +0100336 DEFINE_WAIT(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 struct hiddev_list *list = file->private_data;
338 int event_size;
Oliver Neukum07903402008-12-16 10:55:15 +0100339 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 event_size = ((list->flags & HIDDEV_FLAG_UREF) != 0) ?
342 sizeof(struct hiddev_usage_ref) : sizeof(struct hiddev_event);
343
344 if (count < event_size)
345 return 0;
346
Oliver Neukum07903402008-12-16 10:55:15 +0100347 /* lock against other threads */
348 retval = mutex_lock_interruptible(&list->thread_lock);
349 if (retval)
350 return -ERESTARTSYS;
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 while (retval == 0) {
353 if (list->head == list->tail) {
Oliver Neukum07903402008-12-16 10:55:15 +0100354 prepare_to_wait(&list->hiddev->wait, &wait, TASK_INTERRUPTIBLE);
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 while (list->head == list->tail) {
357 if (file->f_flags & O_NONBLOCK) {
358 retval = -EAGAIN;
359 break;
360 }
361 if (signal_pending(current)) {
362 retval = -ERESTARTSYS;
363 break;
364 }
365 if (!list->hiddev->exist) {
366 retval = -EIO;
367 break;
368 }
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500369
Oliver Neukum07903402008-12-16 10:55:15 +0100370 /* let O_NONBLOCK tasks run */
371 mutex_unlock(&list->thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 schedule();
Oliver Neukum07903402008-12-16 10:55:15 +0100373 if (mutex_lock_interruptible(&list->thread_lock))
374 return -EINTR;
Micon, David48d70552006-05-20 14:59:59 -0700375 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
Oliver Neukum07903402008-12-16 10:55:15 +0100377 finish_wait(&list->hiddev->wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380
Oliver Neukum07903402008-12-16 10:55:15 +0100381 if (retval) {
382 mutex_unlock(&list->thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return retval;
Oliver Neukum07903402008-12-16 10:55:15 +0100384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500387 while (list->head != list->tail &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 retval + event_size <= count) {
389 if ((list->flags & HIDDEV_FLAG_UREF) == 0) {
Oliver Neukum07903402008-12-16 10:55:15 +0100390 if (list->buffer[list->tail].field_index != HID_FIELD_INDEX_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 struct hiddev_event event;
Oliver Neukum07903402008-12-16 10:55:15 +0100392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 event.hid = list->buffer[list->tail].usage_code;
394 event.value = list->buffer[list->tail].value;
Oliver Neukum07903402008-12-16 10:55:15 +0100395 if (copy_to_user(buffer + retval, &event, sizeof(struct hiddev_event))) {
396 mutex_unlock(&list->thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return -EFAULT;
Oliver Neukum07903402008-12-16 10:55:15 +0100398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 retval += sizeof(struct hiddev_event);
400 }
401 } else {
402 if (list->buffer[list->tail].field_index != HID_FIELD_INDEX_NONE ||
403 (list->flags & HIDDEV_FLAG_REPORT) != 0) {
Oliver Neukum07903402008-12-16 10:55:15 +0100404
405 if (copy_to_user(buffer + retval, list->buffer + list->tail, sizeof(struct hiddev_usage_ref))) {
406 mutex_unlock(&list->thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return -EFAULT;
Oliver Neukum07903402008-12-16 10:55:15 +0100408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 retval += sizeof(struct hiddev_usage_ref);
410 }
411 }
412 list->tail = (list->tail + 1) & (HIDDEV_BUFFER_SIZE - 1);
413 }
414
415 }
Oliver Neukum07903402008-12-16 10:55:15 +0100416 mutex_unlock(&list->thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 return retval;
419}
420
421/*
422 * "poll" file op
423 * No kernel lock - fine
424 */
425static unsigned int hiddev_poll(struct file *file, poll_table *wait)
426{
427 struct hiddev_list *list = file->private_data;
Dmitry Torokhov826d5982006-07-19 01:09:10 -0400428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 poll_wait(file, &list->hiddev->wait, wait);
430 if (list->head != list->tail)
431 return POLLIN | POLLRDNORM;
432 if (!list->hiddev->exist)
433 return POLLERR | POLLHUP;
434 return 0;
435}
436
437/*
438 * "ioctl" file op
439 */
Jean Delvarecf2a2992008-03-03 11:48:43 +0100440static noinline int hiddev_ioctl_usage(struct hiddev *hiddev, unsigned int cmd, void __user *user_arg)
441{
442 struct hid_device *hid = hiddev->hid;
443 struct hiddev_report_info rinfo;
444 struct hiddev_usage_ref_multi *uref_multi = NULL;
445 struct hiddev_usage_ref *uref;
446 struct hid_report *report;
447 struct hid_field *field;
448 int i;
449
450 uref_multi = kmalloc(sizeof(struct hiddev_usage_ref_multi), GFP_KERNEL);
451 if (!uref_multi)
452 return -ENOMEM;
453 uref = &uref_multi->uref;
454 if (cmd == HIDIOCGUSAGES || cmd == HIDIOCSUSAGES) {
455 if (copy_from_user(uref_multi, user_arg,
456 sizeof(*uref_multi)))
457 goto fault;
458 } else {
459 if (copy_from_user(uref, user_arg, sizeof(*uref)))
460 goto fault;
461 }
462
463 switch (cmd) {
464 case HIDIOCGUCODE:
465 rinfo.report_type = uref->report_type;
466 rinfo.report_id = uref->report_id;
467 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
468 goto inval;
469
470 if (uref->field_index >= report->maxfield)
471 goto inval;
472
473 field = report->field[uref->field_index];
474 if (uref->usage_index >= field->maxusage)
475 goto inval;
476
477 uref->usage_code = field->usage[uref->usage_index].hid;
478
479 if (copy_to_user(user_arg, uref, sizeof(*uref)))
480 goto fault;
481
Jiri Slabyeb991082008-10-23 01:47:34 +0200482 goto goodreturn;
Jean Delvarecf2a2992008-03-03 11:48:43 +0100483
484 default:
485 if (cmd != HIDIOCGUSAGE &&
486 cmd != HIDIOCGUSAGES &&
487 uref->report_type == HID_REPORT_TYPE_INPUT)
488 goto inval;
489
490 if (uref->report_id == HID_REPORT_ID_UNKNOWN) {
491 field = hiddev_lookup_usage(hid, uref);
492 if (field == NULL)
493 goto inval;
494 } else {
495 rinfo.report_type = uref->report_type;
496 rinfo.report_id = uref->report_id;
497 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
498 goto inval;
499
500 if (uref->field_index >= report->maxfield)
501 goto inval;
502
503 field = report->field[uref->field_index];
504
505 if (cmd == HIDIOCGCOLLECTIONINDEX) {
506 if (uref->usage_index >= field->maxusage)
507 goto inval;
508 } else if (uref->usage_index >= field->report_count)
509 goto inval;
510
511 else if ((cmd == HIDIOCGUSAGES || cmd == HIDIOCSUSAGES) &&
512 (uref_multi->num_values > HID_MAX_MULTI_USAGES ||
513 uref->usage_index + uref_multi->num_values > field->report_count))
514 goto inval;
515 }
516
517 switch (cmd) {
518 case HIDIOCGUSAGE:
519 uref->value = field->value[uref->usage_index];
520 if (copy_to_user(user_arg, uref, sizeof(*uref)))
521 goto fault;
522 goto goodreturn;
523
524 case HIDIOCSUSAGE:
525 field->value[uref->usage_index] = uref->value;
526 goto goodreturn;
527
528 case HIDIOCGCOLLECTIONINDEX:
Jiri Slaby48594842009-06-19 23:24:11 +0200529 i = field->usage[uref->usage_index].collection_index;
Jean Delvarecf2a2992008-03-03 11:48:43 +0100530 kfree(uref_multi);
Jiri Slaby48594842009-06-19 23:24:11 +0200531 return i;
Jean Delvarecf2a2992008-03-03 11:48:43 +0100532 case HIDIOCGUSAGES:
533 for (i = 0; i < uref_multi->num_values; i++)
534 uref_multi->values[i] =
535 field->value[uref->usage_index + i];
536 if (copy_to_user(user_arg, uref_multi,
537 sizeof(*uref_multi)))
538 goto fault;
539 goto goodreturn;
540 case HIDIOCSUSAGES:
541 for (i = 0; i < uref_multi->num_values; i++)
542 field->value[uref->usage_index + i] =
543 uref_multi->values[i];
544 goto goodreturn;
545 }
546
547goodreturn:
548 kfree(uref_multi);
549 return 0;
550fault:
551 kfree(uref_multi);
552 return -EFAULT;
553inval:
554 kfree(uref_multi);
555 return -EINVAL;
556 }
557}
558
559static noinline int hiddev_ioctl_string(struct hiddev *hiddev, unsigned int cmd, void __user *user_arg)
560{
561 struct hid_device *hid = hiddev->hid;
562 struct usb_device *dev = hid_to_usb_dev(hid);
563 int idx, len;
564 char *buf;
565
566 if (get_user(idx, (int __user *)user_arg))
567 return -EFAULT;
568
569 if ((buf = kmalloc(HID_STRING_SIZE, GFP_KERNEL)) == NULL)
570 return -ENOMEM;
571
572 if ((len = usb_string(dev, idx, buf, HID_STRING_SIZE-1)) < 0) {
573 kfree(buf);
574 return -EINVAL;
575 }
576
577 if (copy_to_user(user_arg+sizeof(int), buf, len+1)) {
578 kfree(buf);
579 return -EFAULT;
580 }
581
582 kfree(buf);
583
584 return len;
585}
586
Alan Cox7961df12008-05-26 11:25:20 +0200587static long hiddev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 struct hiddev_list *list = file->private_data;
590 struct hiddev *hiddev = list->hiddev;
591 struct hid_device *hid = hiddev->hid;
Chris Ball70322692010-08-12 19:07:40 -0400592 struct usb_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 struct hiddev_collection_info cinfo;
594 struct hiddev_report_info rinfo;
595 struct hiddev_field_info finfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 struct hiddev_devinfo dinfo;
597 struct hid_report *report;
598 struct hid_field *field;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100599 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 void __user *user_arg = (void __user *)arg;
Oliver Neukum07903402008-12-16 10:55:15 +0100601 int i, r;
Alan Cox7961df12008-05-26 11:25:20 +0200602
603 /* Called without BKL by compat methods so no BKL taken */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Alan Cox7961df12008-05-26 11:25:20 +0200605 /* FIXME: Who or what stop this racing with a disconnect ?? */
Chris Ball70322692010-08-12 19:07:40 -0400606 if (!hiddev->exist || !hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return -EIO;
608
Chris Ball70322692010-08-12 19:07:40 -0400609 dev = hid_to_usb_dev(hid);
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 switch (cmd) {
612
613 case HIDIOCGVERSION:
614 return put_user(HID_VERSION, (int __user *)arg);
615
616 case HIDIOCAPPLICATION:
617 if (arg < 0 || arg >= hid->maxapplication)
618 return -EINVAL;
619
620 for (i = 0; i < hid->maxcollection; i++)
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500621 if (hid->collection[i].type ==
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 HID_COLLECTION_APPLICATION && arg-- == 0)
623 break;
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (i == hid->maxcollection)
626 return -EINVAL;
627
628 return hid->collection[i].usage;
629
630 case HIDIOCGDEVINFO:
631 dinfo.bustype = BUS_USB;
632 dinfo.busnum = dev->bus->busnum;
633 dinfo.devnum = dev->devnum;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100634 dinfo.ifnum = usbhid->ifnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 dinfo.vendor = le16_to_cpu(dev->descriptor.idVendor);
636 dinfo.product = le16_to_cpu(dev->descriptor.idProduct);
637 dinfo.version = le16_to_cpu(dev->descriptor.bcdDevice);
638 dinfo.num_applications = hid->maxapplication;
639 if (copy_to_user(user_arg, &dinfo, sizeof(dinfo)))
640 return -EFAULT;
641
642 return 0;
643
644 case HIDIOCGFLAG:
645 if (put_user(list->flags, (int __user *)arg))
646 return -EFAULT;
647
648 return 0;
649
650 case HIDIOCSFLAG:
651 {
652 int newflags;
653 if (get_user(newflags, (int __user *)arg))
654 return -EFAULT;
655
656 if ((newflags & ~HIDDEV_FLAGS) != 0 ||
657 ((newflags & HIDDEV_FLAG_REPORT) != 0 &&
658 (newflags & HIDDEV_FLAG_UREF) == 0))
659 return -EINVAL;
660
661 list->flags = newflags;
662
663 return 0;
664 }
665
666 case HIDIOCGSTRING:
Oliver Neukum07903402008-12-16 10:55:15 +0100667 mutex_lock(&hiddev->existancelock);
Oliver Neukumbe5d0c82009-01-28 09:36:18 +0100668 if (hiddev->exist)
Oliver Neukum07903402008-12-16 10:55:15 +0100669 r = hiddev_ioctl_string(hiddev, cmd, user_arg);
670 else
671 r = -ENODEV;
672 mutex_unlock(&hiddev->existancelock);
673 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 case HIDIOCINITREPORT:
Oliver Neukum07903402008-12-16 10:55:15 +0100676 mutex_lock(&hiddev->existancelock);
677 if (!hiddev->exist) {
678 mutex_unlock(&hiddev->existancelock);
679 return -ENODEV;
680 }
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100681 usbhid_init_reports(hid);
Oliver Neukum07903402008-12-16 10:55:15 +0100682 mutex_unlock(&hiddev->existancelock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 return 0;
685
686 case HIDIOCGREPORT:
687 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
688 return -EFAULT;
689
690 if (rinfo.report_type == HID_REPORT_TYPE_OUTPUT)
691 return -EINVAL;
692
693 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
694 return -EINVAL;
695
Oliver Neukum07903402008-12-16 10:55:15 +0100696 mutex_lock(&hiddev->existancelock);
697 if (hiddev->exist) {
698 usbhid_submit_report(hid, report, USB_DIR_IN);
699 usbhid_wait_io(hid);
700 }
701 mutex_unlock(&hiddev->existancelock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 return 0;
704
705 case HIDIOCSREPORT:
706 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
707 return -EFAULT;
708
709 if (rinfo.report_type == HID_REPORT_TYPE_INPUT)
710 return -EINVAL;
711
712 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
713 return -EINVAL;
714
Oliver Neukum07903402008-12-16 10:55:15 +0100715 mutex_lock(&hiddev->existancelock);
716 if (hiddev->exist) {
717 usbhid_submit_report(hid, report, USB_DIR_OUT);
718 usbhid_wait_io(hid);
719 }
720 mutex_unlock(&hiddev->existancelock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 return 0;
723
724 case HIDIOCGREPORTINFO:
725 if (copy_from_user(&rinfo, user_arg, sizeof(rinfo)))
726 return -EFAULT;
727
728 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
729 return -EINVAL;
730
731 rinfo.num_fields = report->maxfield;
732
733 if (copy_to_user(user_arg, &rinfo, sizeof(rinfo)))
734 return -EFAULT;
735
736 return 0;
737
738 case HIDIOCGFIELDINFO:
739 if (copy_from_user(&finfo, user_arg, sizeof(finfo)))
740 return -EFAULT;
741 rinfo.report_type = finfo.report_type;
742 rinfo.report_id = finfo.report_id;
743 if ((report = hiddev_lookup_report(hid, &rinfo)) == NULL)
744 return -EINVAL;
745
746 if (finfo.field_index >= report->maxfield)
747 return -EINVAL;
748
749 field = report->field[finfo.field_index];
750 memset(&finfo, 0, sizeof(finfo));
751 finfo.report_type = rinfo.report_type;
752 finfo.report_id = rinfo.report_id;
753 finfo.field_index = field->report_count - 1;
754 finfo.maxusage = field->maxusage;
755 finfo.flags = field->flags;
756 finfo.physical = field->physical;
757 finfo.logical = field->logical;
758 finfo.application = field->application;
759 finfo.logical_minimum = field->logical_minimum;
760 finfo.logical_maximum = field->logical_maximum;
761 finfo.physical_minimum = field->physical_minimum;
762 finfo.physical_maximum = field->physical_maximum;
763 finfo.unit_exponent = field->unit_exponent;
764 finfo.unit = field->unit;
765
766 if (copy_to_user(user_arg, &finfo, sizeof(finfo)))
767 return -EFAULT;
768
769 return 0;
770
771 case HIDIOCGUCODE:
Jean Delvarecf2a2992008-03-03 11:48:43 +0100772 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 case HIDIOCGUSAGE:
774 case HIDIOCSUSAGE:
775 case HIDIOCGUSAGES:
776 case HIDIOCSUSAGES:
777 case HIDIOCGCOLLECTIONINDEX:
Oliver Neukum07903402008-12-16 10:55:15 +0100778 mutex_lock(&hiddev->existancelock);
779 if (hiddev->exist)
780 r = hiddev_ioctl_usage(hiddev, cmd, user_arg);
781 else
782 r = -ENODEV;
783 mutex_unlock(&hiddev->existancelock);
784 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 case HIDIOCGCOLLECTIONINFO:
787 if (copy_from_user(&cinfo, user_arg, sizeof(cinfo)))
788 return -EFAULT;
789
790 if (cinfo.index >= hid->maxcollection)
791 return -EINVAL;
792
793 cinfo.type = hid->collection[cinfo.index].type;
794 cinfo.usage = hid->collection[cinfo.index].usage;
795 cinfo.level = hid->collection[cinfo.index].level;
796
797 if (copy_to_user(user_arg, &cinfo, sizeof(cinfo)))
798 return -EFAULT;
799 return 0;
800
801 default:
802
803 if (_IOC_TYPE(cmd) != 'H' || _IOC_DIR(cmd) != _IOC_READ)
804 return -EINVAL;
805
806 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGNAME(0))) {
807 int len;
808 if (!hid->name)
809 return 0;
810 len = strlen(hid->name) + 1;
811 if (len > _IOC_SIZE(cmd))
812 len = _IOC_SIZE(cmd);
813 return copy_to_user(user_arg, hid->name, len) ?
814 -EFAULT : len;
815 }
816
817 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGPHYS(0))) {
818 int len;
819 if (!hid->phys)
820 return 0;
821 len = strlen(hid->phys) + 1;
822 if (len > _IOC_SIZE(cmd))
823 len = _IOC_SIZE(cmd);
824 return copy_to_user(user_arg, hid->phys, len) ?
825 -EFAULT : len;
826 }
827 }
828 return -EINVAL;
829}
830
Philip Langdalebb6c8d82007-10-14 12:03:58 +0200831#ifdef CONFIG_COMPAT
832static long hiddev_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
833{
Jiri Kosina88af45b2008-05-27 11:36:40 +0200834 return hiddev_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
Philip Langdalebb6c8d82007-10-14 12:03:58 +0200835}
836#endif
837
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300838static const struct file_operations hiddev_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 .owner = THIS_MODULE,
840 .read = hiddev_read,
841 .write = hiddev_write,
842 .poll = hiddev_poll,
843 .open = hiddev_open,
844 .release = hiddev_release,
Alan Cox7961df12008-05-26 11:25:20 +0200845 .unlocked_ioctl = hiddev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 .fasync = hiddev_fasync,
Philip Langdalebb6c8d82007-10-14 12:03:58 +0200847#ifdef CONFIG_COMPAT
848 .compat_ioctl = hiddev_compat_ioctl,
849#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850};
851
Kay Sieverse454cea2009-09-18 23:01:12 +0200852static char *hiddev_devnode(struct device *dev, mode_t *mode)
Kay Sieversf7a386c2009-04-30 15:23:42 +0200853{
854 return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev));
855}
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857static struct usb_class_driver hiddev_class = {
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700858 .name = "hiddev%d",
Kay Sieverse454cea2009-09-18 23:01:12 +0200859 .devnode = hiddev_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 .fops = &hiddev_fops,
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500861 .minor_base = HIDDEV_MINOR_BASE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862};
863
864/*
865 * This is where hid.c calls us to connect a hid device to the hiddev driver
866 */
Jiri Slaby93c10132008-06-27 00:04:24 +0200867int hiddev_connect(struct hid_device *hid, unsigned int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 struct hiddev *hiddev;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100870 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 int retval;
872
Jiri Slaby93c10132008-06-27 00:04:24 +0200873 if (!force) {
874 unsigned int i;
875 for (i = 0; i < hid->maxcollection; i++)
876 if (hid->collection[i].type ==
877 HID_COLLECTION_APPLICATION &&
878 !IS_INPUT_APPLICATION(hid->collection[i].usage))
879 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Jiri Slaby93c10132008-06-27 00:04:24 +0200881 if (i == hid->maxcollection)
882 return -1;
883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Oliver Neukumbbdb7da2006-01-06 20:54:29 +0100885 if (!(hiddev = kzalloc(sizeof(struct hiddev), GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Oliver Neukum07903402008-12-16 10:55:15 +0100888 init_waitqueue_head(&hiddev->wait);
889 INIT_LIST_HEAD(&hiddev->list);
890 spin_lock_init(&hiddev->list_lock);
891 mutex_init(&hiddev->existancelock);
Jiri Kosina76052742009-01-07 13:25:36 +0100892 hid->hiddev = hiddev;
Oliver Neukum07903402008-12-16 10:55:15 +0100893 hiddev->hid = hid;
894 hiddev->exist = 1;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100895 retval = usb_register_dev(usbhid->intf, &hiddev_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (retval) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200897 err_hid("Not able to get a minor for this device.");
Jiri Kosina76052742009-01-07 13:25:36 +0100898 hid->hiddev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 kfree(hiddev);
900 return -1;
901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return 0;
903}
904
905/*
906 * This is where hid.c calls us to disconnect a hiddev device from the
907 * corresponding hid device (usually because the usb device has disconnected)
908 */
909static struct usb_class_driver hiddev_class;
910void hiddev_disconnect(struct hid_device *hid)
911{
912 struct hiddev *hiddev = hid->hiddev;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100913 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Oliver Neukum07903402008-12-16 10:55:15 +0100915 mutex_lock(&hiddev->existancelock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 hiddev->exist = 0;
Oliver Neukum07903402008-12-16 10:55:15 +0100917 mutex_unlock(&hiddev->existancelock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100919 usb_deregister_dev(usbhid->intf, &hiddev_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 if (hiddev->open) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100922 usbhid_close(hiddev->hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 wake_up_interruptible(&hiddev->wait);
924 } else {
925 kfree(hiddev);
926 }
927}
928
929/* Currently this driver is a USB driver. It's not a conventional one in
930 * the sense that it doesn't probe at the USB level. Instead it waits to
931 * be connected by HID through the hiddev_connect / hiddev_disconnect
932 * routines. The reason to register as a USB device is to gain part of the
933 * minor number space from the USB major.
934 *
935 * In theory, should the HID code be generalized to more than one physical
936 * medium (say, IEEE 1384), this driver will probably need to register its
937 * own major number, and in doing so, no longer need to register with USB.
938 * At that point the probe routine and hiddev_driver struct below will no
939 * longer be useful.
940 */
941
942
943/* We never attach in this manner, and rely on HID to connect us. This
944 * is why there is no disconnect routine defined in the usb_driver either.
945 */
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500946static int hiddev_usbd_probe(struct usb_interface *intf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 const struct usb_device_id *hiddev_info)
948{
949 return -ENODEV;
950}
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952static /* const */ struct usb_driver hiddev_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 .name = "hiddev",
954 .probe = hiddev_usbd_probe,
955};
956
957int __init hiddev_init(void)
958{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return usb_register(&hiddev_driver);
960}
961
962void hiddev_exit(void)
963{
964 usb_deregister(&hiddev_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}