blob: c841a8e77339b381bf8e0693c9779201377dfa06 [file] [log] [blame]
Jiri Kosina86166b72007-05-14 09:57:40 +02001/*
2 * HID raw devices, giving access to raw HID events.
3 *
4 * In comparison to hiddev, this device does not process the
5 * hid events at all (no parsing, no lookups). This lets applications
6 * to work on raw hid events as they want to, and avoids a need to
7 * use a transport-specific userspace libhid/libusb libraries.
8 *
9 * Copyright (c) 2007 Jiri Kosina
10 */
11
12/*
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms and conditions of the GNU General Public License,
15 * version 2, as published by the Free Software Foundation.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
Joe Perches4291ee32010-12-09 19:29:03 -080022#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23
Jiri Kosina86166b72007-05-14 09:57:40 +020024#include <linux/fs.h>
25#include <linux/module.h>
26#include <linux/errno.h>
27#include <linux/kernel.h>
28#include <linux/init.h>
29#include <linux/cdev.h>
30#include <linux/poll.h>
31#include <linux/device.h>
32#include <linux/major.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Jiri Kosina86166b72007-05-14 09:57:40 +020034#include <linux/hid.h>
35#include <linux/mutex.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040036#include <linux/sched.h>
Jiri Kosina86166b72007-05-14 09:57:40 +020037
38#include <linux/hidraw.h>
39
40static int hidraw_major;
41static struct cdev hidraw_cdev;
42static struct class *hidraw_class;
43static struct hidraw *hidraw_table[HIDRAW_MAX_DEVICES];
Oliver Neukum7d672cd2008-10-31 00:07:23 +010044static DEFINE_MUTEX(minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +020045
46static ssize_t hidraw_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
47{
48 struct hidraw_list *list = file->private_data;
49 int ret = 0, len;
Jiri Kosina86166b72007-05-14 09:57:40 +020050 DECLARE_WAITQUEUE(wait, current);
51
Jiri Kosinab0e14952009-10-12 11:25:56 +020052 mutex_lock(&list->read_mutex);
53
Jiri Kosina86166b72007-05-14 09:57:40 +020054 while (ret == 0) {
Jiri Kosina86166b72007-05-14 09:57:40 +020055 if (list->head == list->tail) {
56 add_wait_queue(&list->hidraw->wait, &wait);
57 set_current_state(TASK_INTERRUPTIBLE);
58
59 while (list->head == list->tail) {
60 if (file->f_flags & O_NONBLOCK) {
61 ret = -EAGAIN;
62 break;
63 }
64 if (signal_pending(current)) {
65 ret = -ERESTARTSYS;
66 break;
67 }
68 if (!list->hidraw->exist) {
69 ret = -EIO;
70 break;
71 }
72
73 /* allow O_NONBLOCK to work well from other threads */
74 mutex_unlock(&list->read_mutex);
75 schedule();
76 mutex_lock(&list->read_mutex);
77 set_current_state(TASK_INTERRUPTIBLE);
78 }
79
80 set_current_state(TASK_RUNNING);
81 remove_wait_queue(&list->hidraw->wait, &wait);
82 }
83
84 if (ret)
85 goto out;
86
Jiri Kosina86166b72007-05-14 09:57:40 +020087 len = list->buffer[list->tail].len > count ?
88 count : list->buffer[list->tail].len;
89
90 if (copy_to_user(buffer, list->buffer[list->tail].value, len)) {
91 ret = -EFAULT;
92 goto out;
93 }
Alan Ottcf28a672011-01-26 22:25:18 -050094 ret = len;
Jiri Kosina86166b72007-05-14 09:57:40 +020095
96 kfree(list->buffer[list->tail].value);
97 list->tail = (list->tail + 1) & (HIDRAW_BUFFER_SIZE - 1);
98 }
99out:
100 mutex_unlock(&list->read_mutex);
101 return ret;
102}
103
Jiri Kosinad2a1cfe2011-03-27 20:29:02 +0200104/* The first byte is expected to be a report number.
105 * This function is to be called with the minors_lock mutex held */
Alan Ottb4dbde92011-01-18 03:04:39 -0500106static ssize_t hidraw_send_report(struct file *file, const char __user *buffer, size_t count, unsigned char report_type)
Jiri Kosina86166b72007-05-14 09:57:40 +0200107{
108 unsigned int minor = iminor(file->f_path.dentry->d_inode);
Jiri Kosina2e574802010-03-25 14:15:11 +0100109 struct hid_device *dev;
Jiri Kosina86166b72007-05-14 09:57:40 +0200110 __u8 *buf;
111 int ret = 0;
112
Antonio Ospitee42dee92010-10-05 17:20:17 +0200113 if (!hidraw_table[minor]) {
114 ret = -ENODEV;
115 goto out;
116 }
117
Jiri Kosina2e574802010-03-25 14:15:11 +0100118 dev = hidraw_table[minor]->hid;
119
120 if (!dev->hid_output_raw_report) {
121 ret = -ENODEV;
122 goto out;
123 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200124
Jiri Kosina2b107d62008-09-17 19:41:58 +0200125 if (count > HID_MAX_BUFFER_SIZE) {
Joe Perches4291ee32010-12-09 19:29:03 -0800126 hid_warn(dev, "pid %d passed too large report\n",
127 task_pid_nr(current));
Jiri Kosina2e574802010-03-25 14:15:11 +0100128 ret = -EINVAL;
129 goto out;
Jiri Kosina86166b72007-05-14 09:57:40 +0200130 }
131
132 if (count < 2) {
Joe Perches4291ee32010-12-09 19:29:03 -0800133 hid_warn(dev, "pid %d passed too short report\n",
134 task_pid_nr(current));
Jiri Kosina2e574802010-03-25 14:15:11 +0100135 ret = -EINVAL;
Jiri Kosina86166b72007-05-14 09:57:40 +0200136 goto out;
137 }
138
Jiri Kosina2e574802010-03-25 14:15:11 +0100139 buf = kmalloc(count * sizeof(__u8), GFP_KERNEL);
140 if (!buf) {
141 ret = -ENOMEM;
142 goto out;
143 }
144
145 if (copy_from_user(buf, buffer, count)) {
146 ret = -EFAULT;
147 goto out_free;
148 }
149
Alan Ottb4dbde92011-01-18 03:04:39 -0500150 ret = dev->hid_output_raw_report(dev, buf, count, report_type);
Jiri Kosina2e574802010-03-25 14:15:11 +0100151out_free:
Jiri Kosina86166b72007-05-14 09:57:40 +0200152 kfree(buf);
Jiri Kosina2e574802010-03-25 14:15:11 +0100153out:
Alan Ottb4dbde92011-01-18 03:04:39 -0500154 return ret;
155}
156
157/* the first byte is expected to be a report number */
158static ssize_t hidraw_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
159{
160 ssize_t ret;
161 mutex_lock(&minors_lock);
162 ret = hidraw_send_report(file, buffer, count, HID_OUTPUT_REPORT);
Jiri Kosina2e574802010-03-25 14:15:11 +0100163 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200164 return ret;
165}
166
Alan Ottb4dbde92011-01-18 03:04:39 -0500167
168/* This function performs a Get_Report transfer over the control endpoint
Jiri Kosinad2a1cfe2011-03-27 20:29:02 +0200169 * per section 7.2.1 of the HID specification, version 1.1. The first byte
170 * of buffer is the report number to request, or 0x0 if the defice does not
171 * use numbered reports. The report_type parameter can be HID_FEATURE_REPORT
172 * or HID_INPUT_REPORT. This function is to be called with the minors_lock
173 * mutex held. */
Alan Ottb4dbde92011-01-18 03:04:39 -0500174static ssize_t hidraw_get_report(struct file *file, char __user *buffer, size_t count, unsigned char report_type)
175{
176 unsigned int minor = iminor(file->f_path.dentry->d_inode);
177 struct hid_device *dev;
178 __u8 *buf;
179 int ret = 0, len;
180 unsigned char report_number;
181
182 dev = hidraw_table[minor]->hid;
183
184 if (!dev->hid_get_raw_report) {
185 ret = -ENODEV;
186 goto out;
187 }
188
189 if (count > HID_MAX_BUFFER_SIZE) {
190 printk(KERN_WARNING "hidraw: pid %d passed too large report\n",
191 task_pid_nr(current));
192 ret = -EINVAL;
193 goto out;
194 }
195
196 if (count < 2) {
197 printk(KERN_WARNING "hidraw: pid %d passed too short report\n",
198 task_pid_nr(current));
199 ret = -EINVAL;
200 goto out;
201 }
202
203 buf = kmalloc(count * sizeof(__u8), GFP_KERNEL);
204 if (!buf) {
205 ret = -ENOMEM;
206 goto out;
207 }
208
209 /* Read the first byte from the user. This is the report number,
Jiri Kosinad2a1cfe2011-03-27 20:29:02 +0200210 * which is passed to dev->hid_get_raw_report(). */
Alan Ottb4dbde92011-01-18 03:04:39 -0500211 if (copy_from_user(&report_number, buffer, 1)) {
212 ret = -EFAULT;
213 goto out_free;
214 }
215
216 ret = dev->hid_get_raw_report(dev, report_number, buf, count, report_type);
217
218 if (ret < 0)
219 goto out_free;
220
221 len = (ret < count) ? ret : count;
222
223 if (copy_to_user(buffer, buf, len)) {
224 ret = -EFAULT;
225 goto out_free;
226 }
227
228 ret = len;
229
230out_free:
231 kfree(buf);
232out:
233 return ret;
234}
235
Jiri Kosina86166b72007-05-14 09:57:40 +0200236static unsigned int hidraw_poll(struct file *file, poll_table *wait)
237{
238 struct hidraw_list *list = file->private_data;
239
240 poll_wait(file, &list->hidraw->wait, wait);
241 if (list->head != list->tail)
242 return POLLIN | POLLRDNORM;
243 if (!list->hidraw->exist)
244 return POLLERR | POLLHUP;
245 return 0;
246}
247
248static int hidraw_open(struct inode *inode, struct file *file)
249{
250 unsigned int minor = iminor(inode);
251 struct hidraw *dev;
252 struct hidraw_list *list;
253 int err = 0;
254
255 if (!(list = kzalloc(sizeof(struct hidraw_list), GFP_KERNEL))) {
256 err = -ENOMEM;
257 goto out;
258 }
259
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100260 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200261 if (!hidraw_table[minor]) {
Jiri Kosina86166b72007-05-14 09:57:40 +0200262 err = -ENODEV;
263 goto out_unlock;
264 }
265
266 list->hidraw = hidraw_table[minor];
267 mutex_init(&list->read_mutex);
268 list_add_tail(&list->node, &hidraw_table[minor]->list);
269 file->private_data = list;
270
271 dev = hidraw_table[minor];
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100272 if (!dev->open++) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800273 err = hid_hw_power(dev->hid, PM_HINT_FULLON);
274 if (err < 0)
275 goto out_unlock;
276
277 err = hid_hw_open(dev->hid);
Oliver Neukum0361a282008-12-17 15:38:03 +0100278 if (err < 0) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800279 hid_hw_power(dev->hid, PM_HINT_NORMAL);
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100280 dev->open--;
Oliver Neukum0361a282008-12-17 15:38:03 +0100281 }
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100282 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200283
284out_unlock:
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100285 mutex_unlock(&minors_lock);
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100286out:
Amit Nagal1a896232011-09-07 13:48:47 +0200287 if (err < 0)
288 kfree(list);
Jiri Kosina86166b72007-05-14 09:57:40 +0200289 return err;
290
291}
292
293static int hidraw_release(struct inode * inode, struct file * file)
294{
295 unsigned int minor = iminor(inode);
296 struct hidraw *dev;
297 struct hidraw_list *list = file->private_data;
Jiri Slabycb174682010-10-19 11:29:55 +0200298 int ret;
Jiri Kosina86166b72007-05-14 09:57:40 +0200299
Jiri Slabycb174682010-10-19 11:29:55 +0200300 mutex_lock(&minors_lock);
301 if (!hidraw_table[minor]) {
302 ret = -ENODEV;
303 goto unlock;
304 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200305
306 list_del(&list->node);
307 dev = hidraw_table[minor];
Oliver Neukumb8a832b2008-12-15 13:12:08 +0100308 if (!--dev->open) {
Oliver Neukum0361a282008-12-17 15:38:03 +0100309 if (list->hidraw->exist) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800310 hid_hw_power(dev->hid, PM_HINT_NORMAL);
311 hid_hw_close(dev->hid);
Oliver Neukum0361a282008-12-17 15:38:03 +0100312 } else {
Jiri Kosina86166b72007-05-14 09:57:40 +0200313 kfree(list->hidraw);
Oliver Neukum0361a282008-12-17 15:38:03 +0100314 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200315 }
Jiri Kosina4db1c622008-06-24 14:45:27 +0200316 kfree(list);
Jiri Slabycb174682010-10-19 11:29:55 +0200317 ret = 0;
318unlock:
319 mutex_unlock(&minors_lock);
Jiri Kosina4db1c622008-06-24 14:45:27 +0200320
Jiri Slabycb174682010-10-19 11:29:55 +0200321 return ret;
Jiri Kosina86166b72007-05-14 09:57:40 +0200322}
323
Alan Cox979c4072008-05-26 11:25:26 +0200324static long hidraw_ioctl(struct file *file, unsigned int cmd,
325 unsigned long arg)
Jiri Kosina86166b72007-05-14 09:57:40 +0200326{
Alan Cox979c4072008-05-26 11:25:26 +0200327 struct inode *inode = file->f_path.dentry->d_inode;
Jiri Kosina86166b72007-05-14 09:57:40 +0200328 unsigned int minor = iminor(inode);
Alan Cox979c4072008-05-26 11:25:26 +0200329 long ret = 0;
Jiri Kosina2e574802010-03-25 14:15:11 +0100330 struct hidraw *dev;
Jiri Kosina86166b72007-05-14 09:57:40 +0200331 void __user *user_arg = (void __user*) arg;
332
Jiri Kosina2e574802010-03-25 14:15:11 +0100333 mutex_lock(&minors_lock);
334 dev = hidraw_table[minor];
Antonio Ospited20d5ff2010-10-05 17:20:16 +0200335 if (!dev) {
336 ret = -ENODEV;
337 goto out;
338 }
Jiri Kosina2e574802010-03-25 14:15:11 +0100339
Jiri Kosina86166b72007-05-14 09:57:40 +0200340 switch (cmd) {
341 case HIDIOCGRDESCSIZE:
342 if (put_user(dev->hid->rsize, (int __user *)arg))
Alan Cox979c4072008-05-26 11:25:26 +0200343 ret = -EFAULT;
344 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200345
346 case HIDIOCGRDESC:
347 {
348 __u32 len;
349
350 if (get_user(len, (int __user *)arg))
Alan Cox979c4072008-05-26 11:25:26 +0200351 ret = -EFAULT;
352 else if (len > HID_MAX_DESCRIPTOR_SIZE - 1)
353 ret = -EINVAL;
354 else if (copy_to_user(user_arg + offsetof(
355 struct hidraw_report_descriptor,
356 value[0]),
357 dev->hid->rdesc,
358 min(dev->hid->rsize, len)))
359 ret = -EFAULT;
360 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200361 }
362 case HIDIOCGRAWINFO:
363 {
364 struct hidraw_devinfo dinfo;
365
366 dinfo.bustype = dev->hid->bus;
367 dinfo.vendor = dev->hid->vendor;
368 dinfo.product = dev->hid->product;
369 if (copy_to_user(user_arg, &dinfo, sizeof(dinfo)))
Alan Cox979c4072008-05-26 11:25:26 +0200370 ret = -EFAULT;
371 break;
Jiri Kosina86166b72007-05-14 09:57:40 +0200372 }
373 default:
Jiri Kosina9188e792008-11-12 16:14:08 +0100374 {
375 struct hid_device *hid = dev->hid;
Alan Ottb4dbde92011-01-18 03:04:39 -0500376 if (_IOC_TYPE(cmd) != 'H') {
377 ret = -EINVAL;
378 break;
379 }
380
381 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCSFEATURE(0))) {
382 int len = _IOC_SIZE(cmd);
383 ret = hidraw_send_report(file, user_arg, len, HID_FEATURE_REPORT);
384 break;
385 }
386 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGFEATURE(0))) {
387 int len = _IOC_SIZE(cmd);
388 ret = hidraw_get_report(file, user_arg, len, HID_FEATURE_REPORT);
389 break;
390 }
391
392 /* Begin Read-only ioctls. */
393 if (_IOC_DIR(cmd) != _IOC_READ) {
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300394 ret = -EINVAL;
395 break;
396 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100397
398 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWNAME(0))) {
Daniel Mackdd2ed482011-05-15 18:07:42 +0200399 int len = strlen(hid->name) + 1;
Jiri Kosina9188e792008-11-12 16:14:08 +0100400 if (len > _IOC_SIZE(cmd))
401 len = _IOC_SIZE(cmd);
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300402 ret = copy_to_user(user_arg, hid->name, len) ?
Jiri Kosina9188e792008-11-12 16:14:08 +0100403 -EFAULT : len;
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300404 break;
Jiri Kosina9188e792008-11-12 16:14:08 +0100405 }
406
407 if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWPHYS(0))) {
Daniel Mackdd2ed482011-05-15 18:07:42 +0200408 int len = strlen(hid->phys) + 1;
Jiri Kosina9188e792008-11-12 16:14:08 +0100409 if (len > _IOC_SIZE(cmd))
410 len = _IOC_SIZE(cmd);
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300411 ret = copy_to_user(user_arg, hid->phys, len) ?
Jiri Kosina9188e792008-11-12 16:14:08 +0100412 -EFAULT : len;
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300413 break;
Jiri Kosina9188e792008-11-12 16:14:08 +0100414 }
Alan Ottb4dbde92011-01-18 03:04:39 -0500415 }
Jiri Kosina9188e792008-11-12 16:14:08 +0100416
Dan Carpenterdfd395af2009-02-03 16:35:17 +0300417 ret = -ENOTTY;
Jiri Kosina86166b72007-05-14 09:57:40 +0200418 }
Antonio Ospited20d5ff2010-10-05 17:20:16 +0200419out:
Jiri Kosina2e574802010-03-25 14:15:11 +0100420 mutex_unlock(&minors_lock);
Alan Cox979c4072008-05-26 11:25:26 +0200421 return ret;
Jiri Kosina86166b72007-05-14 09:57:40 +0200422}
423
424static const struct file_operations hidraw_ops = {
425 .owner = THIS_MODULE,
426 .read = hidraw_read,
427 .write = hidraw_write,
428 .poll = hidraw_poll,
429 .open = hidraw_open,
430 .release = hidraw_release,
Alan Cox979c4072008-05-26 11:25:26 +0200431 .unlocked_ioctl = hidraw_ioctl,
Alan Ottae5e49c2011-01-04 00:37:22 -0500432#ifdef CONFIG_COMPAT
433 .compat_ioctl = hidraw_ioctl,
434#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +0200435 .llseek = noop_llseek,
Jiri Kosina86166b72007-05-14 09:57:40 +0200436};
437
438void hidraw_report_event(struct hid_device *hid, u8 *data, int len)
439{
440 struct hidraw *dev = hid->hidraw;
441 struct hidraw_list *list;
442
443 list_for_each_entry(list, &dev->list, node) {
444 list->buffer[list->head].value = kmemdup(data, len, GFP_ATOMIC);
445 list->buffer[list->head].len = len;
446 list->head = (list->head + 1) & (HIDRAW_BUFFER_SIZE - 1);
447 kill_fasync(&list->fasync, SIGIO, POLL_IN);
448 }
449
450 wake_up_interruptible(&dev->wait);
451}
452EXPORT_SYMBOL_GPL(hidraw_report_event);
453
454int hidraw_connect(struct hid_device *hid)
455{
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200456 int minor, result;
Jiri Kosina86166b72007-05-14 09:57:40 +0200457 struct hidraw *dev;
458
Jiri Kosinabbe281f2009-06-04 15:44:25 +0200459 /* we accept any HID device, no matter the applications */
Jiri Kosina86166b72007-05-14 09:57:40 +0200460
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200461 dev = kzalloc(sizeof(struct hidraw), GFP_KERNEL);
462 if (!dev)
463 return -ENOMEM;
464
465 result = -EINVAL;
Jiri Kosina86166b72007-05-14 09:57:40 +0200466
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100467 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200468
469 for (minor = 0; minor < HIDRAW_MAX_DEVICES; minor++) {
470 if (hidraw_table[minor])
471 continue;
472 hidraw_table[minor] = dev;
473 result = 0;
474 break;
475 }
476
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200477 if (result) {
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100478 mutex_unlock(&minors_lock);
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200479 kfree(dev);
Jiri Kosina86166b72007-05-14 09:57:40 +0200480 goto out;
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200481 }
Jiri Kosina86166b72007-05-14 09:57:40 +0200482
Jiri Kosinaaae6c282008-12-04 16:16:46 +0100483 dev->dev = device_create(hidraw_class, &hid->dev, MKDEV(hidraw_major, minor),
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -0700484 NULL, "%s%d", "hidraw", minor);
Jiri Kosina86166b72007-05-14 09:57:40 +0200485
486 if (IS_ERR(dev->dev)) {
Jiri Kosina86166b72007-05-14 09:57:40 +0200487 hidraw_table[minor] = NULL;
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100488 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200489 result = PTR_ERR(dev->dev);
Mariusz Kozlowski709d27c2007-09-27 11:24:55 +0200490 kfree(dev);
Jiri Kosina86166b72007-05-14 09:57:40 +0200491 goto out;
492 }
493
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100494 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200495 init_waitqueue_head(&dev->wait);
496 INIT_LIST_HEAD(&dev->list);
497
498 dev->hid = hid;
499 dev->minor = minor;
500
501 dev->exist = 1;
502 hid->hidraw = dev;
503
504out:
505 return result;
506
507}
508EXPORT_SYMBOL_GPL(hidraw_connect);
509
510void hidraw_disconnect(struct hid_device *hid)
511{
512 struct hidraw *hidraw = hid->hidraw;
513
514 hidraw->exist = 0;
515
Stefan Achatz3a22ebe2011-01-29 02:17:30 +0100516 device_destroy(hidraw_class, MKDEV(hidraw_major, hidraw->minor));
517
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100518 mutex_lock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200519 hidraw_table[hidraw->minor] = NULL;
Oliver Neukum7d672cd2008-10-31 00:07:23 +0100520 mutex_unlock(&minors_lock);
Jiri Kosina86166b72007-05-14 09:57:40 +0200521
Jiri Kosina86166b72007-05-14 09:57:40 +0200522 if (hidraw->open) {
Dmitry Torokhov5bea7662010-12-07 23:02:48 -0800523 hid_hw_close(hid);
Jiri Kosina86166b72007-05-14 09:57:40 +0200524 wake_up_interruptible(&hidraw->wait);
525 } else {
526 kfree(hidraw);
527 }
528}
529EXPORT_SYMBOL_GPL(hidraw_disconnect);
530
531int __init hidraw_init(void)
532{
533 int result;
534 dev_t dev_id;
535
536 result = alloc_chrdev_region(&dev_id, HIDRAW_FIRST_MINOR,
537 HIDRAW_MAX_DEVICES, "hidraw");
538
539 hidraw_major = MAJOR(dev_id);
540
541 if (result < 0) {
Joe Perches4291ee32010-12-09 19:29:03 -0800542 pr_warn("can't get major number\n");
Jiri Kosina86166b72007-05-14 09:57:40 +0200543 result = 0;
544 goto out;
545 }
546
547 hidraw_class = class_create(THIS_MODULE, "hidraw");
548 if (IS_ERR(hidraw_class)) {
549 result = PTR_ERR(hidraw_class);
550 unregister_chrdev(hidraw_major, "hidraw");
551 goto out;
552 }
553
554 cdev_init(&hidraw_cdev, &hidraw_ops);
555 cdev_add(&hidraw_cdev, dev_id, HIDRAW_MAX_DEVICES);
556out:
557 return result;
558}
559
Jiri Slaby140ae3e2008-10-17 18:04:48 +0200560void hidraw_exit(void)
Jiri Kosina86166b72007-05-14 09:57:40 +0200561{
562 dev_t dev_id = MKDEV(hidraw_major, 0);
563
564 cdev_del(&hidraw_cdev);
565 class_destroy(hidraw_class);
566 unregister_chrdev_region(dev_id, HIDRAW_MAX_DEVICES);
567
568}