Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 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 | * |
| 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 | |
| 22 | #include <linux/fs.h> |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/errno.h> |
| 25 | #include <linux/kernel.h> |
| 26 | #include <linux/init.h> |
| 27 | #include <linux/cdev.h> |
| 28 | #include <linux/poll.h> |
| 29 | #include <linux/device.h> |
| 30 | #include <linux/major.h> |
| 31 | #include <linux/hid.h> |
| 32 | #include <linux/mutex.h> |
Alexey Dobriyan | a99bbaf | 2009-10-04 16:11:37 +0400 | [diff] [blame] | 33 | #include <linux/sched.h> |
Jonathan Corbet | 702e57d | 2008-05-15 10:25:44 -0600 | [diff] [blame] | 34 | #include <linux/smp_lock.h> |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 35 | |
| 36 | #include <linux/hidraw.h> |
| 37 | |
| 38 | static int hidraw_major; |
| 39 | static struct cdev hidraw_cdev; |
| 40 | static struct class *hidraw_class; |
| 41 | static struct hidraw *hidraw_table[HIDRAW_MAX_DEVICES]; |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 42 | static DEFINE_MUTEX(minors_lock); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 43 | |
| 44 | static ssize_t hidraw_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos) |
| 45 | { |
| 46 | struct hidraw_list *list = file->private_data; |
| 47 | int ret = 0, len; |
| 48 | char *report; |
| 49 | DECLARE_WAITQUEUE(wait, current); |
| 50 | |
Jiri Kosina | b0e1495 | 2009-10-12 11:25:56 +0200 | [diff] [blame] | 51 | mutex_lock(&list->read_mutex); |
| 52 | |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 53 | while (ret == 0) { |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 54 | if (list->head == list->tail) { |
| 55 | add_wait_queue(&list->hidraw->wait, &wait); |
| 56 | set_current_state(TASK_INTERRUPTIBLE); |
| 57 | |
| 58 | while (list->head == list->tail) { |
| 59 | if (file->f_flags & O_NONBLOCK) { |
| 60 | ret = -EAGAIN; |
| 61 | break; |
| 62 | } |
| 63 | if (signal_pending(current)) { |
| 64 | ret = -ERESTARTSYS; |
| 65 | break; |
| 66 | } |
| 67 | if (!list->hidraw->exist) { |
| 68 | ret = -EIO; |
| 69 | break; |
| 70 | } |
| 71 | |
| 72 | /* allow O_NONBLOCK to work well from other threads */ |
| 73 | mutex_unlock(&list->read_mutex); |
| 74 | schedule(); |
| 75 | mutex_lock(&list->read_mutex); |
| 76 | set_current_state(TASK_INTERRUPTIBLE); |
| 77 | } |
| 78 | |
| 79 | set_current_state(TASK_RUNNING); |
| 80 | remove_wait_queue(&list->hidraw->wait, &wait); |
| 81 | } |
| 82 | |
| 83 | if (ret) |
| 84 | goto out; |
| 85 | |
| 86 | report = list->buffer[list->tail].value; |
| 87 | 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 | } |
| 94 | ret += len; |
| 95 | |
| 96 | kfree(list->buffer[list->tail].value); |
| 97 | list->tail = (list->tail + 1) & (HIDRAW_BUFFER_SIZE - 1); |
| 98 | } |
| 99 | out: |
| 100 | mutex_unlock(&list->read_mutex); |
| 101 | return ret; |
| 102 | } |
| 103 | |
| 104 | /* the first byte is expected to be a report number */ |
| 105 | static ssize_t hidraw_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) |
| 106 | { |
| 107 | unsigned int minor = iminor(file->f_path.dentry->d_inode); |
Jiri Kosina | 2e57480 | 2010-03-25 14:15:11 +0100 | [diff] [blame^] | 108 | struct hid_device *dev; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 109 | __u8 *buf; |
| 110 | int ret = 0; |
| 111 | |
Jiri Kosina | 2e57480 | 2010-03-25 14:15:11 +0100 | [diff] [blame^] | 112 | mutex_lock(&minors_lock); |
| 113 | dev = hidraw_table[minor]->hid; |
| 114 | |
| 115 | if (!dev->hid_output_raw_report) { |
| 116 | ret = -ENODEV; |
| 117 | goto out; |
| 118 | } |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 119 | |
Jiri Kosina | 2b107d6 | 2008-09-17 19:41:58 +0200 | [diff] [blame] | 120 | if (count > HID_MAX_BUFFER_SIZE) { |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 121 | printk(KERN_WARNING "hidraw: pid %d passed too large report\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 122 | task_pid_nr(current)); |
Jiri Kosina | 2e57480 | 2010-03-25 14:15:11 +0100 | [diff] [blame^] | 123 | ret = -EINVAL; |
| 124 | goto out; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | if (count < 2) { |
| 128 | printk(KERN_WARNING "hidraw: pid %d passed too short report\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 129 | task_pid_nr(current)); |
Jiri Kosina | 2e57480 | 2010-03-25 14:15:11 +0100 | [diff] [blame^] | 130 | ret = -EINVAL; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 131 | goto out; |
| 132 | } |
| 133 | |
Jiri Kosina | 2e57480 | 2010-03-25 14:15:11 +0100 | [diff] [blame^] | 134 | buf = kmalloc(count * sizeof(__u8), GFP_KERNEL); |
| 135 | if (!buf) { |
| 136 | ret = -ENOMEM; |
| 137 | goto out; |
| 138 | } |
| 139 | |
| 140 | if (copy_from_user(buf, buffer, count)) { |
| 141 | ret = -EFAULT; |
| 142 | goto out_free; |
| 143 | } |
| 144 | |
Jiri Kosina | d4bfa03 | 2010-01-29 15:03:36 +0100 | [diff] [blame] | 145 | ret = dev->hid_output_raw_report(dev, buf, count, HID_OUTPUT_REPORT); |
Jiri Kosina | 2e57480 | 2010-03-25 14:15:11 +0100 | [diff] [blame^] | 146 | out_free: |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 147 | kfree(buf); |
Jiri Kosina | 2e57480 | 2010-03-25 14:15:11 +0100 | [diff] [blame^] | 148 | out: |
| 149 | mutex_unlock(&minors_lock); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 150 | return ret; |
| 151 | } |
| 152 | |
| 153 | static unsigned int hidraw_poll(struct file *file, poll_table *wait) |
| 154 | { |
| 155 | struct hidraw_list *list = file->private_data; |
| 156 | |
| 157 | poll_wait(file, &list->hidraw->wait, wait); |
| 158 | if (list->head != list->tail) |
| 159 | return POLLIN | POLLRDNORM; |
| 160 | if (!list->hidraw->exist) |
| 161 | return POLLERR | POLLHUP; |
| 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | static int hidraw_open(struct inode *inode, struct file *file) |
| 166 | { |
| 167 | unsigned int minor = iminor(inode); |
| 168 | struct hidraw *dev; |
| 169 | struct hidraw_list *list; |
| 170 | int err = 0; |
| 171 | |
| 172 | if (!(list = kzalloc(sizeof(struct hidraw_list), GFP_KERNEL))) { |
| 173 | err = -ENOMEM; |
| 174 | goto out; |
| 175 | } |
| 176 | |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 177 | mutex_lock(&minors_lock); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 178 | if (!hidraw_table[minor]) { |
| 179 | printk(KERN_EMERG "hidraw device with minor %d doesn't exist\n", |
| 180 | minor); |
| 181 | kfree(list); |
| 182 | err = -ENODEV; |
| 183 | goto out_unlock; |
| 184 | } |
| 185 | |
| 186 | list->hidraw = hidraw_table[minor]; |
| 187 | mutex_init(&list->read_mutex); |
| 188 | list_add_tail(&list->node, &hidraw_table[minor]->list); |
| 189 | file->private_data = list; |
| 190 | |
| 191 | dev = hidraw_table[minor]; |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 192 | if (!dev->open++) { |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 193 | if (dev->hid->ll_driver->power) { |
| 194 | err = dev->hid->ll_driver->power(dev->hid, PM_HINT_FULLON); |
| 195 | if (err < 0) |
| 196 | goto out_unlock; |
| 197 | } |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 198 | err = dev->hid->ll_driver->open(dev->hid); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 199 | if (err < 0) { |
| 200 | if (dev->hid->ll_driver->power) |
| 201 | dev->hid->ll_driver->power(dev->hid, PM_HINT_NORMAL); |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 202 | dev->open--; |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 203 | } |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 204 | } |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 205 | |
| 206 | out_unlock: |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 207 | mutex_unlock(&minors_lock); |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 208 | out: |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 209 | return err; |
| 210 | |
| 211 | } |
| 212 | |
| 213 | static int hidraw_release(struct inode * inode, struct file * file) |
| 214 | { |
| 215 | unsigned int minor = iminor(inode); |
| 216 | struct hidraw *dev; |
| 217 | struct hidraw_list *list = file->private_data; |
| 218 | |
| 219 | if (!hidraw_table[minor]) { |
| 220 | printk(KERN_EMERG "hidraw device with minor %d doesn't exist\n", |
| 221 | minor); |
| 222 | return -ENODEV; |
| 223 | } |
| 224 | |
| 225 | list_del(&list->node); |
| 226 | dev = hidraw_table[minor]; |
Oliver Neukum | b8a832b | 2008-12-15 13:12:08 +0100 | [diff] [blame] | 227 | if (!--dev->open) { |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 228 | if (list->hidraw->exist) { |
| 229 | if (dev->hid->ll_driver->power) |
| 230 | dev->hid->ll_driver->power(dev->hid, PM_HINT_NORMAL); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 231 | dev->hid->ll_driver->close(dev->hid); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 232 | } else { |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 233 | kfree(list->hidraw); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 234 | } |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 235 | } |
| 236 | |
Jiri Kosina | 4db1c62 | 2008-06-24 14:45:27 +0200 | [diff] [blame] | 237 | kfree(list); |
| 238 | |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 239 | return 0; |
| 240 | } |
| 241 | |
Alan Cox | 979c407 | 2008-05-26 11:25:26 +0200 | [diff] [blame] | 242 | static long hidraw_ioctl(struct file *file, unsigned int cmd, |
| 243 | unsigned long arg) |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 244 | { |
Alan Cox | 979c407 | 2008-05-26 11:25:26 +0200 | [diff] [blame] | 245 | struct inode *inode = file->f_path.dentry->d_inode; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 246 | unsigned int minor = iminor(inode); |
Alan Cox | 979c407 | 2008-05-26 11:25:26 +0200 | [diff] [blame] | 247 | long ret = 0; |
Jiri Kosina | 2e57480 | 2010-03-25 14:15:11 +0100 | [diff] [blame^] | 248 | struct hidraw *dev; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 249 | void __user *user_arg = (void __user*) arg; |
| 250 | |
Jiri Kosina | 2e57480 | 2010-03-25 14:15:11 +0100 | [diff] [blame^] | 251 | mutex_lock(&minors_lock); |
| 252 | dev = hidraw_table[minor]; |
| 253 | |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 254 | switch (cmd) { |
| 255 | case HIDIOCGRDESCSIZE: |
| 256 | if (put_user(dev->hid->rsize, (int __user *)arg)) |
Alan Cox | 979c407 | 2008-05-26 11:25:26 +0200 | [diff] [blame] | 257 | ret = -EFAULT; |
| 258 | break; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 259 | |
| 260 | case HIDIOCGRDESC: |
| 261 | { |
| 262 | __u32 len; |
| 263 | |
| 264 | if (get_user(len, (int __user *)arg)) |
Alan Cox | 979c407 | 2008-05-26 11:25:26 +0200 | [diff] [blame] | 265 | ret = -EFAULT; |
| 266 | else if (len > HID_MAX_DESCRIPTOR_SIZE - 1) |
| 267 | ret = -EINVAL; |
| 268 | else if (copy_to_user(user_arg + offsetof( |
| 269 | struct hidraw_report_descriptor, |
| 270 | value[0]), |
| 271 | dev->hid->rdesc, |
| 272 | min(dev->hid->rsize, len))) |
| 273 | ret = -EFAULT; |
| 274 | break; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 275 | } |
| 276 | case HIDIOCGRAWINFO: |
| 277 | { |
| 278 | struct hidraw_devinfo dinfo; |
| 279 | |
| 280 | dinfo.bustype = dev->hid->bus; |
| 281 | dinfo.vendor = dev->hid->vendor; |
| 282 | dinfo.product = dev->hid->product; |
| 283 | if (copy_to_user(user_arg, &dinfo, sizeof(dinfo))) |
Alan Cox | 979c407 | 2008-05-26 11:25:26 +0200 | [diff] [blame] | 284 | ret = -EFAULT; |
| 285 | break; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 286 | } |
| 287 | default: |
Jiri Kosina | 9188e79 | 2008-11-12 16:14:08 +0100 | [diff] [blame] | 288 | { |
| 289 | struct hid_device *hid = dev->hid; |
Dan Carpenter | dfd395af | 2009-02-03 16:35:17 +0300 | [diff] [blame] | 290 | if (_IOC_TYPE(cmd) != 'H' || _IOC_DIR(cmd) != _IOC_READ) { |
| 291 | ret = -EINVAL; |
| 292 | break; |
| 293 | } |
Jiri Kosina | 9188e79 | 2008-11-12 16:14:08 +0100 | [diff] [blame] | 294 | |
| 295 | if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWNAME(0))) { |
| 296 | int len; |
Dan Carpenter | 38089c6 | 2009-04-07 16:35:56 +0200 | [diff] [blame] | 297 | if (!hid->name) { |
| 298 | ret = 0; |
| 299 | break; |
| 300 | } |
Jiri Kosina | 9188e79 | 2008-11-12 16:14:08 +0100 | [diff] [blame] | 301 | len = strlen(hid->name) + 1; |
| 302 | if (len > _IOC_SIZE(cmd)) |
| 303 | len = _IOC_SIZE(cmd); |
Dan Carpenter | dfd395af | 2009-02-03 16:35:17 +0300 | [diff] [blame] | 304 | ret = copy_to_user(user_arg, hid->name, len) ? |
Jiri Kosina | 9188e79 | 2008-11-12 16:14:08 +0100 | [diff] [blame] | 305 | -EFAULT : len; |
Dan Carpenter | dfd395af | 2009-02-03 16:35:17 +0300 | [diff] [blame] | 306 | break; |
Jiri Kosina | 9188e79 | 2008-11-12 16:14:08 +0100 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | if (_IOC_NR(cmd) == _IOC_NR(HIDIOCGRAWPHYS(0))) { |
| 310 | int len; |
Dan Carpenter | 38089c6 | 2009-04-07 16:35:56 +0200 | [diff] [blame] | 311 | if (!hid->phys) { |
| 312 | ret = 0; |
| 313 | break; |
| 314 | } |
Jiri Kosina | 9188e79 | 2008-11-12 16:14:08 +0100 | [diff] [blame] | 315 | len = strlen(hid->phys) + 1; |
| 316 | if (len > _IOC_SIZE(cmd)) |
| 317 | len = _IOC_SIZE(cmd); |
Dan Carpenter | dfd395af | 2009-02-03 16:35:17 +0300 | [diff] [blame] | 318 | ret = copy_to_user(user_arg, hid->phys, len) ? |
Jiri Kosina | 9188e79 | 2008-11-12 16:14:08 +0100 | [diff] [blame] | 319 | -EFAULT : len; |
Dan Carpenter | dfd395af | 2009-02-03 16:35:17 +0300 | [diff] [blame] | 320 | break; |
Jiri Kosina | 9188e79 | 2008-11-12 16:14:08 +0100 | [diff] [blame] | 321 | } |
| 322 | } |
| 323 | |
Dan Carpenter | dfd395af | 2009-02-03 16:35:17 +0300 | [diff] [blame] | 324 | ret = -ENOTTY; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 325 | } |
Jiri Kosina | 2e57480 | 2010-03-25 14:15:11 +0100 | [diff] [blame^] | 326 | mutex_unlock(&minors_lock); |
Alan Cox | 979c407 | 2008-05-26 11:25:26 +0200 | [diff] [blame] | 327 | return ret; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | static const struct file_operations hidraw_ops = { |
| 331 | .owner = THIS_MODULE, |
| 332 | .read = hidraw_read, |
| 333 | .write = hidraw_write, |
| 334 | .poll = hidraw_poll, |
| 335 | .open = hidraw_open, |
| 336 | .release = hidraw_release, |
Alan Cox | 979c407 | 2008-05-26 11:25:26 +0200 | [diff] [blame] | 337 | .unlocked_ioctl = hidraw_ioctl, |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 338 | }; |
| 339 | |
| 340 | void hidraw_report_event(struct hid_device *hid, u8 *data, int len) |
| 341 | { |
| 342 | struct hidraw *dev = hid->hidraw; |
| 343 | struct hidraw_list *list; |
| 344 | |
| 345 | list_for_each_entry(list, &dev->list, node) { |
| 346 | list->buffer[list->head].value = kmemdup(data, len, GFP_ATOMIC); |
| 347 | list->buffer[list->head].len = len; |
| 348 | list->head = (list->head + 1) & (HIDRAW_BUFFER_SIZE - 1); |
| 349 | kill_fasync(&list->fasync, SIGIO, POLL_IN); |
| 350 | } |
| 351 | |
| 352 | wake_up_interruptible(&dev->wait); |
| 353 | } |
| 354 | EXPORT_SYMBOL_GPL(hidraw_report_event); |
| 355 | |
| 356 | int hidraw_connect(struct hid_device *hid) |
| 357 | { |
Mariusz Kozlowski | 709d27c | 2007-09-27 11:24:55 +0200 | [diff] [blame] | 358 | int minor, result; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 359 | struct hidraw *dev; |
| 360 | |
Jiri Kosina | bbe281f | 2009-06-04 15:44:25 +0200 | [diff] [blame] | 361 | /* we accept any HID device, no matter the applications */ |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 362 | |
Mariusz Kozlowski | 709d27c | 2007-09-27 11:24:55 +0200 | [diff] [blame] | 363 | dev = kzalloc(sizeof(struct hidraw), GFP_KERNEL); |
| 364 | if (!dev) |
| 365 | return -ENOMEM; |
| 366 | |
| 367 | result = -EINVAL; |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 368 | |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 369 | mutex_lock(&minors_lock); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 370 | |
| 371 | for (minor = 0; minor < HIDRAW_MAX_DEVICES; minor++) { |
| 372 | if (hidraw_table[minor]) |
| 373 | continue; |
| 374 | hidraw_table[minor] = dev; |
| 375 | result = 0; |
| 376 | break; |
| 377 | } |
| 378 | |
Mariusz Kozlowski | 709d27c | 2007-09-27 11:24:55 +0200 | [diff] [blame] | 379 | if (result) { |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 380 | mutex_unlock(&minors_lock); |
Mariusz Kozlowski | 709d27c | 2007-09-27 11:24:55 +0200 | [diff] [blame] | 381 | kfree(dev); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 382 | goto out; |
Mariusz Kozlowski | 709d27c | 2007-09-27 11:24:55 +0200 | [diff] [blame] | 383 | } |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 384 | |
Jiri Kosina | aae6c28 | 2008-12-04 16:16:46 +0100 | [diff] [blame] | 385 | dev->dev = device_create(hidraw_class, &hid->dev, MKDEV(hidraw_major, minor), |
Greg Kroah-Hartman | a9b1261 | 2008-07-21 20:03:34 -0700 | [diff] [blame] | 386 | NULL, "%s%d", "hidraw", minor); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 387 | |
| 388 | if (IS_ERR(dev->dev)) { |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 389 | hidraw_table[minor] = NULL; |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 390 | mutex_unlock(&minors_lock); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 391 | result = PTR_ERR(dev->dev); |
Mariusz Kozlowski | 709d27c | 2007-09-27 11:24:55 +0200 | [diff] [blame] | 392 | kfree(dev); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 393 | goto out; |
| 394 | } |
| 395 | |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 396 | mutex_unlock(&minors_lock); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 397 | init_waitqueue_head(&dev->wait); |
| 398 | INIT_LIST_HEAD(&dev->list); |
| 399 | |
| 400 | dev->hid = hid; |
| 401 | dev->minor = minor; |
| 402 | |
| 403 | dev->exist = 1; |
| 404 | hid->hidraw = dev; |
| 405 | |
| 406 | out: |
| 407 | return result; |
| 408 | |
| 409 | } |
| 410 | EXPORT_SYMBOL_GPL(hidraw_connect); |
| 411 | |
| 412 | void hidraw_disconnect(struct hid_device *hid) |
| 413 | { |
| 414 | struct hidraw *hidraw = hid->hidraw; |
| 415 | |
| 416 | hidraw->exist = 0; |
| 417 | |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 418 | mutex_lock(&minors_lock); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 419 | hidraw_table[hidraw->minor] = NULL; |
Oliver Neukum | 7d672cd | 2008-10-31 00:07:23 +0100 | [diff] [blame] | 420 | mutex_unlock(&minors_lock); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 421 | |
| 422 | device_destroy(hidraw_class, MKDEV(hidraw_major, hidraw->minor)); |
| 423 | |
| 424 | if (hidraw->open) { |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 425 | hid->ll_driver->close(hid); |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 426 | wake_up_interruptible(&hidraw->wait); |
| 427 | } else { |
| 428 | kfree(hidraw); |
| 429 | } |
| 430 | } |
| 431 | EXPORT_SYMBOL_GPL(hidraw_disconnect); |
| 432 | |
| 433 | int __init hidraw_init(void) |
| 434 | { |
| 435 | int result; |
| 436 | dev_t dev_id; |
| 437 | |
| 438 | result = alloc_chrdev_region(&dev_id, HIDRAW_FIRST_MINOR, |
| 439 | HIDRAW_MAX_DEVICES, "hidraw"); |
| 440 | |
| 441 | hidraw_major = MAJOR(dev_id); |
| 442 | |
| 443 | if (result < 0) { |
| 444 | printk(KERN_WARNING "hidraw: can't get major number\n"); |
| 445 | result = 0; |
| 446 | goto out; |
| 447 | } |
| 448 | |
| 449 | hidraw_class = class_create(THIS_MODULE, "hidraw"); |
| 450 | if (IS_ERR(hidraw_class)) { |
| 451 | result = PTR_ERR(hidraw_class); |
| 452 | unregister_chrdev(hidraw_major, "hidraw"); |
| 453 | goto out; |
| 454 | } |
| 455 | |
| 456 | cdev_init(&hidraw_cdev, &hidraw_ops); |
| 457 | cdev_add(&hidraw_cdev, dev_id, HIDRAW_MAX_DEVICES); |
| 458 | out: |
| 459 | return result; |
| 460 | } |
| 461 | |
Jiri Slaby | 140ae3e | 2008-10-17 18:04:48 +0200 | [diff] [blame] | 462 | void hidraw_exit(void) |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 463 | { |
| 464 | dev_t dev_id = MKDEV(hidraw_major, 0); |
| 465 | |
| 466 | cdev_del(&hidraw_cdev); |
| 467 | class_destroy(hidraw_class); |
| 468 | unregister_chrdev_region(dev_id, HIDRAW_MAX_DEVICES); |
| 469 | |
| 470 | } |