]>
Commit | Line | Data |
---|---|---|
86166b7b JK |
1 | /* |
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 | * | |
61834535 | 9 | * Copyright (c) 2007-2014 Jiri Kosina |
86166b7b JK |
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 | ||
4291ee30 JP |
22 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
23 | ||
86166b7b JK |
24 | #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> | |
5a0e3ad6 | 33 | #include <linux/slab.h> |
86166b7b JK |
34 | #include <linux/hid.h> |
35 | #include <linux/mutex.h> | |
174cd4b1 | 36 | #include <linux/sched/signal.h> |
8f507c8b | 37 | #include <linux/string.h> |
86166b7b JK |
38 | |
39 | #include <linux/hidraw.h> | |
40 | ||
41 | static int hidraw_major; | |
42 | static struct cdev hidraw_cdev; | |
43 | static struct class *hidraw_class; | |
44 | static struct hidraw *hidraw_table[HIDRAW_MAX_DEVICES]; | |
7d672cd7 | 45 | static DEFINE_MUTEX(minors_lock); |
86166b7b JK |
46 | |
47 | static ssize_t hidraw_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos) | |
48 | { | |
49 | struct hidraw_list *list = file->private_data; | |
50 | int ret = 0, len; | |
86166b7b JK |
51 | DECLARE_WAITQUEUE(wait, current); |
52 | ||
b0e14951 | 53 | mutex_lock(&list->read_mutex); |
86166b7b | 54 | |
b0e14951 | 55 | while (ret == 0) { |
86166b7b JK |
56 | if (list->head == list->tail) { |
57 | add_wait_queue(&list->hidraw->wait, &wait); | |
58 | set_current_state(TASK_INTERRUPTIBLE); | |
59 | ||
60 | while (list->head == list->tail) { | |
86166b7b JK |
61 | if (signal_pending(current)) { |
62 | ret = -ERESTARTSYS; | |
63 | break; | |
64 | } | |
65 | if (!list->hidraw->exist) { | |
66 | ret = -EIO; | |
67 | break; | |
68 | } | |
7611e8d2 FF |
69 | if (file->f_flags & O_NONBLOCK) { |
70 | ret = -EAGAIN; | |
71 | break; | |
72 | } | |
86166b7b JK |
73 | |
74 | /* allow O_NONBLOCK to work well from other threads */ | |
75 | mutex_unlock(&list->read_mutex); | |
76 | schedule(); | |
77 | mutex_lock(&list->read_mutex); | |
78 | set_current_state(TASK_INTERRUPTIBLE); | |
79 | } | |
80 | ||
81 | set_current_state(TASK_RUNNING); | |
82 | remove_wait_queue(&list->hidraw->wait, &wait); | |
83 | } | |
84 | ||
85 | if (ret) | |
86 | goto out; | |
87 | ||
86166b7b JK |
88 | len = list->buffer[list->tail].len > count ? |
89 | count : list->buffer[list->tail].len; | |
90 | ||
b6787242 JK |
91 | if (list->buffer[list->tail].value) { |
92 | if (copy_to_user(buffer, list->buffer[list->tail].value, len)) { | |
93 | ret = -EFAULT; | |
94 | goto out; | |
95 | } | |
96 | ret = len; | |
86166b7b | 97 | } |
86166b7b JK |
98 | |
99 | kfree(list->buffer[list->tail].value); | |
4c7b417e | 100 | list->buffer[list->tail].value = NULL; |
86166b7b JK |
101 | list->tail = (list->tail + 1) & (HIDRAW_BUFFER_SIZE - 1); |
102 | } | |
103 | out: | |
104 | mutex_unlock(&list->read_mutex); | |
105 | return ret; | |
106 | } | |
107 | ||
61834535 JK |
108 | /* |
109 | * The first byte of the report buffer is expected to be a report number. | |
61834535 | 110 | */ |
b4dbde9d | 111 | static ssize_t hidraw_send_report(struct file *file, const char __user *buffer, size_t count, unsigned char report_type) |
86166b7b | 112 | { |
496ad9aa | 113 | unsigned int minor = iminor(file_inode(file)); |
2e57480b | 114 | struct hid_device *dev; |
86166b7b JK |
115 | __u8 *buf; |
116 | int ret = 0; | |
117 | ||
cc7ed49a JK |
118 | lockdep_assert_held(&minors_lock); |
119 | ||
212a871a | 120 | if (!hidraw_table[minor] || !hidraw_table[minor]->exist) { |
e42dee9a AO |
121 | ret = -ENODEV; |
122 | goto out; | |
123 | } | |
124 | ||
2e57480b JK |
125 | dev = hidraw_table[minor]->hid; |
126 | ||
2b107d62 | 127 | if (count > HID_MAX_BUFFER_SIZE) { |
4291ee30 JP |
128 | hid_warn(dev, "pid %d passed too large report\n", |
129 | task_pid_nr(current)); | |
2e57480b JK |
130 | ret = -EINVAL; |
131 | goto out; | |
86166b7b JK |
132 | } |
133 | ||
134 | if (count < 2) { | |
4291ee30 JP |
135 | hid_warn(dev, "pid %d passed too short report\n", |
136 | task_pid_nr(current)); | |
2e57480b JK |
137 | ret = -EINVAL; |
138 | goto out; | |
86166b7b JK |
139 | } |
140 | ||
8f507c8b DT |
141 | buf = memdup_user(buffer, count); |
142 | if (IS_ERR(buf)) { | |
143 | ret = PTR_ERR(buf); | |
2e57480b JK |
144 | goto out; |
145 | } | |
86166b7b | 146 | |
e534a935 BT |
147 | if ((report_type == HID_OUTPUT_REPORT) && |
148 | !(dev->quirks & HID_QUIRK_NO_OUTPUT_REPORTS_ON_INTR_EP)) { | |
3a75b249 BT |
149 | ret = hid_hw_output_report(dev, buf, count); |
150 | /* | |
151 | * compatibility with old implementation of USB-HID and I2C-HID: | |
152 | * if the device does not support receiving output reports, | |
153 | * on an interrupt endpoint, fallback to SET_REPORT HID command. | |
154 | */ | |
155 | if (ret != -ENOSYS) | |
156 | goto out_free; | |
157 | } | |
158 | ||
159 | ret = hid_hw_raw_request(dev, buf[0], buf, count, report_type, | |
160 | HID_REQ_SET_REPORT); | |
161 | ||
2e57480b | 162 | out_free: |
86166b7b | 163 | kfree(buf); |
2e57480b | 164 | out: |
b4dbde9d AO |
165 | return ret; |
166 | } | |
167 | ||
b4dbde9d AO |
168 | static ssize_t hidraw_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) |
169 | { | |
170 | ssize_t ret; | |
171 | mutex_lock(&minors_lock); | |
172 | ret = hidraw_send_report(file, buffer, count, HID_OUTPUT_REPORT); | |
2e57480b | 173 | mutex_unlock(&minors_lock); |
86166b7b JK |
174 | return ret; |
175 | } | |
176 | ||
b4dbde9d | 177 | |
61834535 JK |
178 | /* |
179 | * This function performs a Get_Report transfer over the control endpoint | |
d2a1cfeb JK |
180 | * per section 7.2.1 of the HID specification, version 1.1. The first byte |
181 | * of buffer is the report number to request, or 0x0 if the defice does not | |
182 | * use numbered reports. The report_type parameter can be HID_FEATURE_REPORT | |
61834535 | 183 | * or HID_INPUT_REPORT. |
61834535 | 184 | */ |
b4dbde9d AO |
185 | static ssize_t hidraw_get_report(struct file *file, char __user *buffer, size_t count, unsigned char report_type) |
186 | { | |
496ad9aa | 187 | unsigned int minor = iminor(file_inode(file)); |
b4dbde9d AO |
188 | struct hid_device *dev; |
189 | __u8 *buf; | |
190 | int ret = 0, len; | |
191 | unsigned char report_number; | |
192 | ||
cc7ed49a JK |
193 | lockdep_assert_held(&minors_lock); |
194 | ||
a955358d RRC |
195 | if (!hidraw_table[minor] || !hidraw_table[minor]->exist) { |
196 | ret = -ENODEV; | |
197 | goto out; | |
198 | } | |
199 | ||
b4dbde9d AO |
200 | dev = hidraw_table[minor]->hid; |
201 | ||
cafebc05 | 202 | if (!dev->ll_driver->raw_request) { |
b4dbde9d AO |
203 | ret = -ENODEV; |
204 | goto out; | |
205 | } | |
206 | ||
207 | if (count > HID_MAX_BUFFER_SIZE) { | |
208 | printk(KERN_WARNING "hidraw: pid %d passed too large report\n", | |
209 | task_pid_nr(current)); | |
210 | ret = -EINVAL; | |
211 | goto out; | |
212 | } | |
213 | ||
214 | if (count < 2) { | |
215 | printk(KERN_WARNING "hidraw: pid %d passed too short report\n", | |
216 | task_pid_nr(current)); | |
217 | ret = -EINVAL; | |
218 | goto out; | |
219 | } | |
220 | ||
6da2ec56 | 221 | buf = kmalloc(count, GFP_KERNEL); |
b4dbde9d AO |
222 | if (!buf) { |
223 | ret = -ENOMEM; | |
224 | goto out; | |
225 | } | |
226 | ||
61834535 JK |
227 | /* |
228 | * Read the first byte from the user. This is the report number, | |
cafebc05 | 229 | * which is passed to hid_hw_raw_request(). |
61834535 | 230 | */ |
b4dbde9d AO |
231 | if (copy_from_user(&report_number, buffer, 1)) { |
232 | ret = -EFAULT; | |
233 | goto out_free; | |
234 | } | |
235 | ||
cafebc05 BT |
236 | ret = hid_hw_raw_request(dev, report_number, buf, count, report_type, |
237 | HID_REQ_GET_REPORT); | |
b4dbde9d AO |
238 | |
239 | if (ret < 0) | |
240 | goto out_free; | |
241 | ||
242 | len = (ret < count) ? ret : count; | |
243 | ||
244 | if (copy_to_user(buffer, buf, len)) { | |
245 | ret = -EFAULT; | |
246 | goto out_free; | |
247 | } | |
248 | ||
249 | ret = len; | |
250 | ||
251 | out_free: | |
252 | kfree(buf); | |
253 | out: | |
254 | return ret; | |
255 | } | |
256 | ||
afc9a42b | 257 | static __poll_t hidraw_poll(struct file *file, poll_table *wait) |
86166b7b JK |
258 | { |
259 | struct hidraw_list *list = file->private_data; | |
260 | ||
261 | poll_wait(file, &list->hidraw->wait, wait); | |
262 | if (list->head != list->tail) | |
a9a08845 | 263 | return EPOLLIN | EPOLLRDNORM; |
86166b7b | 264 | if (!list->hidraw->exist) |
a9a08845 | 265 | return EPOLLERR | EPOLLHUP; |
86166b7b JK |
266 | return 0; |
267 | } | |
268 | ||
269 | static int hidraw_open(struct inode *inode, struct file *file) | |
270 | { | |
271 | unsigned int minor = iminor(inode); | |
272 | struct hidraw *dev; | |
273 | struct hidraw_list *list; | |
277fe44d | 274 | unsigned long flags; |
86166b7b JK |
275 | int err = 0; |
276 | ||
277 | if (!(list = kzalloc(sizeof(struct hidraw_list), GFP_KERNEL))) { | |
278 | err = -ENOMEM; | |
279 | goto out; | |
280 | } | |
281 | ||
7d672cd7 | 282 | mutex_lock(&minors_lock); |
212a871a | 283 | if (!hidraw_table[minor] || !hidraw_table[minor]->exist) { |
86166b7b JK |
284 | err = -ENODEV; |
285 | goto out_unlock; | |
286 | } | |
287 | ||
86166b7b | 288 | dev = hidraw_table[minor]; |
7d672cd7 | 289 | if (!dev->open++) { |
5bea7660 | 290 | err = hid_hw_power(dev->hid, PM_HINT_FULLON); |
f554ff80 AN |
291 | if (err < 0) { |
292 | dev->open--; | |
5bea7660 | 293 | goto out_unlock; |
f554ff80 | 294 | } |
5bea7660 DT |
295 | |
296 | err = hid_hw_open(dev->hid); | |
0361a28d | 297 | if (err < 0) { |
5bea7660 | 298 | hid_hw_power(dev->hid, PM_HINT_NORMAL); |
7d672cd7 | 299 | dev->open--; |
277fe44d | 300 | goto out_unlock; |
0361a28d | 301 | } |
7d672cd7 | 302 | } |
86166b7b | 303 | |
277fe44d YZ |
304 | list->hidraw = hidraw_table[minor]; |
305 | mutex_init(&list->read_mutex); | |
306 | spin_lock_irqsave(&hidraw_table[minor]->list_lock, flags); | |
307 | list_add_tail(&list->node, &hidraw_table[minor]->list); | |
308 | spin_unlock_irqrestore(&hidraw_table[minor]->list_lock, flags); | |
309 | file->private_data = list; | |
86166b7b | 310 | out_unlock: |
7d672cd7 | 311 | mutex_unlock(&minors_lock); |
7d672cd7 | 312 | out: |
1a896231 AN |
313 | if (err < 0) |
314 | kfree(list); | |
86166b7b JK |
315 | return err; |
316 | ||
317 | } | |
318 | ||
b5531318 AD |
319 | static int hidraw_fasync(int fd, struct file *file, int on) |
320 | { | |
321 | struct hidraw_list *list = file->private_data; | |
322 | ||
323 | return fasync_helper(fd, file, on, &list->fasync); | |
324 | } | |
325 | ||
212a871a MC |
326 | static void drop_ref(struct hidraw *hidraw, int exists_bit) |
327 | { | |
328 | if (exists_bit) { | |
212a871a | 329 | hidraw->exist = 0; |
0f5a24c6 MC |
330 | if (hidraw->open) { |
331 | hid_hw_close(hidraw->hid); | |
212a871a | 332 | wake_up_interruptible(&hidraw->wait); |
0f5a24c6 | 333 | } |
47587fc0 FLVC |
334 | device_destroy(hidraw_class, |
335 | MKDEV(hidraw_major, hidraw->minor)); | |
212a871a MC |
336 | } else { |
337 | --hidraw->open; | |
338 | } | |
0f5a24c6 MC |
339 | if (!hidraw->open) { |
340 | if (!hidraw->exist) { | |
0f5a24c6 MC |
341 | hidraw_table[hidraw->minor] = NULL; |
342 | kfree(hidraw); | |
343 | } else { | |
344 | /* close device for last reader */ | |
0f5a24c6 | 345 | hid_hw_close(hidraw->hid); |
814b6d17 | 346 | hid_hw_power(hidraw->hid, PM_HINT_NORMAL); |
0f5a24c6 | 347 | } |
212a871a MC |
348 | } |
349 | } | |
350 | ||
86166b7b JK |
351 | static int hidraw_release(struct inode * inode, struct file * file) |
352 | { | |
353 | unsigned int minor = iminor(inode); | |
86166b7b | 354 | struct hidraw_list *list = file->private_data; |
277fe44d | 355 | unsigned long flags; |
df0cfd69 JK |
356 | |
357 | mutex_lock(&minors_lock); | |
86166b7b | 358 | |
277fe44d | 359 | spin_lock_irqsave(&hidraw_table[minor]->list_lock, flags); |
86166b7b | 360 | list_del(&list->node); |
277fe44d | 361 | spin_unlock_irqrestore(&hidraw_table[minor]->list_lock, flags); |
4db1c62c | 362 | kfree(list); |
df0cfd69 | 363 | |
212a871a MC |
364 | drop_ref(hidraw_table[minor], 0); |
365 | ||
366 | mutex_unlock(&minors_lock); | |
367 | return 0; | |
86166b7b JK |
368 | } |
369 | ||
979c407e AC |
370 | static long hidraw_ioctl(struct file *file, unsigned int cmd, |
371 | unsigned long arg) | |
86166b7b | 372 | { |
496ad9aa | 373 | struct inode *inode = file_inode(file); |
86166b7b | 374 | unsigned int minor = iminor(inode); |
979c407e | 375 | long ret = 0; |
2e57480b | 376 | struct hidraw *dev; |
86166b7b JK |
377 | void __user *user_arg = (void __user*) arg; |
378 | ||
2e57480b JK |
379 | mutex_lock(&minors_lock); |
380 | dev = hidraw_table[minor]; | |
d20d5ffa AO |
381 | if (!dev) { |
382 | ret = -ENODEV; | |
383 | goto out; | |
384 | } | |
2e57480b | 385 | |
86166b7b JK |
386 | switch (cmd) { |
387 | case HIDIOCGRDESCSIZE: | |
388 | if (put_user(dev->hid->rsize, (int __user *)arg)) | |
979c407e AC |
389 | ret = -EFAULT; |
390 | break; | |
86166b7b JK |
391 | |
392 | case HIDIOCGRDESC: | |
393 | { | |
394 | __u32 len; | |
395 | ||
396 | if (get_user(len, (int __user *)arg)) | |
979c407e AC |
397 | ret = -EFAULT; |
398 | else if (len > HID_MAX_DESCRIPTOR_SIZE - 1) | |
399 | ret = -EINVAL; | |
400 | else if (copy_to_user(user_arg + offsetof( | |
401 | struct hidraw_report_descriptor, | |
402 | value[0]), | |
403 | dev->hid->rdesc, | |
404 | min(dev->hid->rsize, len))) | |
405 | ret = -EFAULT; | |
406 | break; | |
86166b7b JK |
407 | } |
408 | case HIDIOCGRAWINFO: | |
409 | { | |
410 | struct hidraw_devinfo dinfo; | |
411 | ||
412 | dinfo.bustype = dev->hid->bus; | |
413 | dinfo.vendor = dev->hid->vendor; | |
414 | dinfo.product = dev->hid->product; | |
415 | if (copy_to_user(user_arg, &dinfo, sizeof(dinfo))) | |
979c407e AC |
416 | ret = -EFAULT; |
417 | break; | |
86166b7b JK |
418 | } |
419 | default: | |
9188e79e JK |
420 | { |
421 | struct hid_device *hid = dev->hid; | |
b4dbde9d AO |
422 | if (_IOC_TYPE(cmd) != 'H') { |
423 | ret = -EINVAL; | |
424 | break; | |
425 | } | |
426 | ||
427 | if (_IOC_NR(cmd) == _IOC_NR(HIDIOCSFEATURE(0))) { | |
428 | int len = _IOC_SIZE(cmd); | |
429 | ret = hidraw_send_report(file, user_arg, len, HID_FEATURE_REPORT); | |
430 | break; | |
431 | } | |
432 | if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGFEATURE(0))) { | |
433 | int len = _IOC_SIZE(cmd); | |
434 | ret = hidraw_get_report(file, user_arg, len, HID_FEATURE_REPORT); | |
435 | break; | |
436 | } | |
437 | ||
438 | /* Begin Read-only ioctls. */ | |
439 | if (_IOC_DIR(cmd) != _IOC_READ) { | |
dfd395af DC |
440 | ret = -EINVAL; |
441 | break; | |
442 | } | |
9188e79e JK |
443 | |
444 | if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWNAME(0))) { | |
dd2ed487 | 445 | int len = strlen(hid->name) + 1; |
9188e79e JK |
446 | if (len > _IOC_SIZE(cmd)) |
447 | len = _IOC_SIZE(cmd); | |
dfd395af | 448 | ret = copy_to_user(user_arg, hid->name, len) ? |
9188e79e | 449 | -EFAULT : len; |
dfd395af | 450 | break; |
9188e79e JK |
451 | } |
452 | ||
453 | if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWPHYS(0))) { | |
dd2ed487 | 454 | int len = strlen(hid->phys) + 1; |
9188e79e JK |
455 | if (len > _IOC_SIZE(cmd)) |
456 | len = _IOC_SIZE(cmd); | |
dfd395af | 457 | ret = copy_to_user(user_arg, hid->phys, len) ? |
9188e79e | 458 | -EFAULT : len; |
dfd395af | 459 | break; |
9188e79e | 460 | } |
b4dbde9d | 461 | } |
9188e79e | 462 | |
dfd395af | 463 | ret = -ENOTTY; |
86166b7b | 464 | } |
d20d5ffa | 465 | out: |
2e57480b | 466 | mutex_unlock(&minors_lock); |
979c407e | 467 | return ret; |
86166b7b JK |
468 | } |
469 | ||
470 | static const struct file_operations hidraw_ops = { | |
471 | .owner = THIS_MODULE, | |
472 | .read = hidraw_read, | |
473 | .write = hidraw_write, | |
474 | .poll = hidraw_poll, | |
475 | .open = hidraw_open, | |
476 | .release = hidraw_release, | |
979c407e | 477 | .unlocked_ioctl = hidraw_ioctl, |
b5531318 | 478 | .fasync = hidraw_fasync, |
ae5e49c7 AO |
479 | #ifdef CONFIG_COMPAT |
480 | .compat_ioctl = hidraw_ioctl, | |
481 | #endif | |
6038f373 | 482 | .llseek = noop_llseek, |
86166b7b JK |
483 | }; |
484 | ||
b6787242 | 485 | int hidraw_report_event(struct hid_device *hid, u8 *data, int len) |
86166b7b JK |
486 | { |
487 | struct hidraw *dev = hid->hidraw; | |
488 | struct hidraw_list *list; | |
b6787242 | 489 | int ret = 0; |
277fe44d | 490 | unsigned long flags; |
86166b7b | 491 | |
277fe44d | 492 | spin_lock_irqsave(&dev->list_lock, flags); |
86166b7b | 493 | list_for_each_entry(list, &dev->list, node) { |
4c7b417e MC |
494 | int new_head = (list->head + 1) & (HIDRAW_BUFFER_SIZE - 1); |
495 | ||
496 | if (new_head == list->tail) | |
497 | continue; | |
498 | ||
b6787242 JK |
499 | if (!(list->buffer[list->head].value = kmemdup(data, len, GFP_ATOMIC))) { |
500 | ret = -ENOMEM; | |
501 | break; | |
502 | } | |
86166b7b | 503 | list->buffer[list->head].len = len; |
4c7b417e | 504 | list->head = new_head; |
86166b7b JK |
505 | kill_fasync(&list->fasync, SIGIO, POLL_IN); |
506 | } | |
277fe44d | 507 | spin_unlock_irqrestore(&dev->list_lock, flags); |
86166b7b JK |
508 | |
509 | wake_up_interruptible(&dev->wait); | |
b6787242 | 510 | return ret; |
86166b7b JK |
511 | } |
512 | EXPORT_SYMBOL_GPL(hidraw_report_event); | |
513 | ||
514 | int hidraw_connect(struct hid_device *hid) | |
515 | { | |
709d27c0 | 516 | int minor, result; |
86166b7b JK |
517 | struct hidraw *dev; |
518 | ||
61834535 | 519 | /* we accept any HID device, all applications */ |
86166b7b | 520 | |
709d27c0 MK |
521 | dev = kzalloc(sizeof(struct hidraw), GFP_KERNEL); |
522 | if (!dev) | |
523 | return -ENOMEM; | |
524 | ||
525 | result = -EINVAL; | |
86166b7b | 526 | |
7d672cd7 | 527 | mutex_lock(&minors_lock); |
86166b7b JK |
528 | |
529 | for (minor = 0; minor < HIDRAW_MAX_DEVICES; minor++) { | |
530 | if (hidraw_table[minor]) | |
531 | continue; | |
532 | hidraw_table[minor] = dev; | |
533 | result = 0; | |
534 | break; | |
535 | } | |
536 | ||
709d27c0 | 537 | if (result) { |
7d672cd7 | 538 | mutex_unlock(&minors_lock); |
709d27c0 | 539 | kfree(dev); |
86166b7b | 540 | goto out; |
709d27c0 | 541 | } |
86166b7b | 542 | |
aae6c286 | 543 | dev->dev = device_create(hidraw_class, &hid->dev, MKDEV(hidraw_major, minor), |
a9b12619 | 544 | NULL, "%s%d", "hidraw", minor); |
86166b7b JK |
545 | |
546 | if (IS_ERR(dev->dev)) { | |
86166b7b | 547 | hidraw_table[minor] = NULL; |
7d672cd7 | 548 | mutex_unlock(&minors_lock); |
86166b7b | 549 | result = PTR_ERR(dev->dev); |
709d27c0 | 550 | kfree(dev); |
86166b7b JK |
551 | goto out; |
552 | } | |
553 | ||
554 | init_waitqueue_head(&dev->wait); | |
277fe44d | 555 | spin_lock_init(&dev->list_lock); |
86166b7b JK |
556 | INIT_LIST_HEAD(&dev->list); |
557 | ||
558 | dev->hid = hid; | |
559 | dev->minor = minor; | |
560 | ||
561 | dev->exist = 1; | |
562 | hid->hidraw = dev; | |
563 | ||
8e552e53 | 564 | mutex_unlock(&minors_lock); |
86166b7b JK |
565 | out: |
566 | return result; | |
567 | ||
568 | } | |
569 | EXPORT_SYMBOL_GPL(hidraw_connect); | |
570 | ||
571 | void hidraw_disconnect(struct hid_device *hid) | |
572 | { | |
573 | struct hidraw *hidraw = hid->hidraw; | |
df0cfd69 JK |
574 | |
575 | mutex_lock(&minors_lock); | |
df0cfd69 | 576 | |
212a871a | 577 | drop_ref(hidraw, 1); |
df0cfd69 | 578 | |
df0cfd69 | 579 | mutex_unlock(&minors_lock); |
86166b7b JK |
580 | } |
581 | EXPORT_SYMBOL_GPL(hidraw_disconnect); | |
582 | ||
583 | int __init hidraw_init(void) | |
584 | { | |
585 | int result; | |
586 | dev_t dev_id; | |
587 | ||
588 | result = alloc_chrdev_region(&dev_id, HIDRAW_FIRST_MINOR, | |
589 | HIDRAW_MAX_DEVICES, "hidraw"); | |
86166b7b | 590 | if (result < 0) { |
4291ee30 | 591 | pr_warn("can't get major number\n"); |
86166b7b JK |
592 | goto out; |
593 | } | |
594 | ||
6edac6fd DC |
595 | hidraw_major = MAJOR(dev_id); |
596 | ||
86166b7b JK |
597 | hidraw_class = class_create(THIS_MODULE, "hidraw"); |
598 | if (IS_ERR(hidraw_class)) { | |
599 | result = PTR_ERR(hidraw_class); | |
bcb4a75b | 600 | goto error_cdev; |
86166b7b JK |
601 | } |
602 | ||
603 | cdev_init(&hidraw_cdev, &hidraw_ops); | |
bcb4a75b AK |
604 | result = cdev_add(&hidraw_cdev, dev_id, HIDRAW_MAX_DEVICES); |
605 | if (result < 0) | |
606 | goto error_class; | |
607 | ||
0f690ccf | 608 | printk(KERN_INFO "hidraw: raw HID events driver (C) Jiri Kosina\n"); |
86166b7b JK |
609 | out: |
610 | return result; | |
bcb4a75b AK |
611 | |
612 | error_class: | |
613 | class_destroy(hidraw_class); | |
614 | error_cdev: | |
615 | unregister_chrdev_region(dev_id, HIDRAW_MAX_DEVICES); | |
616 | goto out; | |
86166b7b JK |
617 | } |
618 | ||
140ae3eb | 619 | void hidraw_exit(void) |
86166b7b JK |
620 | { |
621 | dev_t dev_id = MKDEV(hidraw_major, 0); | |
622 | ||
623 | cdev_del(&hidraw_cdev); | |
624 | class_destroy(hidraw_class); | |
625 | unregister_chrdev_region(dev_id, HIDRAW_MAX_DEVICES); | |
626 | ||
627 | } |