Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 2 | /* |
| 3 | * User-space I/O driver support for HID subsystem |
| 4 | * Copyright (c) 2012 David Herrmann |
| 5 | */ |
| 6 | |
| 7 | /* |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <linux/atomic.h> |
Dmitry Torokhov | befde02 | 2013-02-18 11:26:11 +0100 | [diff] [blame] | 11 | #include <linux/compat.h> |
Eric Biggers | 8c01db7 | 2018-11-14 13:55:09 -0800 | [diff] [blame] | 12 | #include <linux/cred.h> |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 13 | #include <linux/device.h> |
| 14 | #include <linux/fs.h> |
| 15 | #include <linux/hid.h> |
| 16 | #include <linux/input.h> |
| 17 | #include <linux/miscdevice.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/mutex.h> |
| 20 | #include <linux/poll.h> |
| 21 | #include <linux/sched.h> |
| 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/uhid.h> |
| 24 | #include <linux/wait.h> |
| 25 | |
| 26 | #define UHID_NAME "uhid" |
David Herrmann | ace3d86 | 2012-06-10 15:16:14 +0200 | [diff] [blame] | 27 | #define UHID_BUFSIZE 32 |
| 28 | |
| 29 | struct uhid_device { |
David Herrmann | d937ae5 | 2012-06-10 15:16:16 +0200 | [diff] [blame] | 30 | struct mutex devlock; |
Jann Horn | c2e39d5 | 2022-01-14 14:33:30 +0100 | [diff] [blame] | 31 | |
| 32 | /* This flag tracks whether the HID device is usable for commands from |
| 33 | * userspace. The flag is already set before hid_add_device(), which |
| 34 | * runs in workqueue context, to allow hid_add_device() to communicate |
| 35 | * with userspace. |
| 36 | * However, if hid_add_device() fails, the flag is cleared without |
| 37 | * holding devlock. |
| 38 | * We guarantee that if @running changes from true to false while you're |
| 39 | * holding @devlock, it's still fine to access @hid. |
| 40 | */ |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 41 | bool running; |
| 42 | |
| 43 | __u8 *rd_data; |
| 44 | uint rd_size; |
| 45 | |
Jann Horn | c2e39d5 | 2022-01-14 14:33:30 +0100 | [diff] [blame] | 46 | /* When this is NULL, userspace may use UHID_CREATE/UHID_CREATE2. */ |
David Herrmann | ace3d86 | 2012-06-10 15:16:14 +0200 | [diff] [blame] | 47 | struct hid_device *hid; |
David Herrmann | 6664ef7 | 2012-06-10 15:16:17 +0200 | [diff] [blame] | 48 | struct uhid_event input_buf; |
David Herrmann | ace3d86 | 2012-06-10 15:16:14 +0200 | [diff] [blame] | 49 | |
| 50 | wait_queue_head_t waitq; |
| 51 | spinlock_t qlock; |
| 52 | __u8 head; |
| 53 | __u8 tail; |
| 54 | struct uhid_event *outq[UHID_BUFSIZE]; |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 55 | |
David Herrmann | 8cad5b0 | 2014-07-29 17:14:19 +0200 | [diff] [blame] | 56 | /* blocking GET_REPORT support; state changes protected by qlock */ |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 57 | struct mutex report_lock; |
| 58 | wait_queue_head_t report_wait; |
David Herrmann | 5942b84 | 2014-07-29 17:14:20 +0200 | [diff] [blame] | 59 | bool report_running; |
David Herrmann | 8cad5b0 | 2014-07-29 17:14:19 +0200 | [diff] [blame] | 60 | u32 report_id; |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 61 | u32 report_type; |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 62 | struct uhid_event report_buf; |
Roderick Colenbrander | 67f8ecc | 2016-05-18 13:11:09 -0700 | [diff] [blame] | 63 | struct work_struct worker; |
David Herrmann | ace3d86 | 2012-06-10 15:16:14 +0200 | [diff] [blame] | 64 | }; |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 65 | |
| 66 | static struct miscdevice uhid_misc; |
| 67 | |
Roderick Colenbrander | 67f8ecc | 2016-05-18 13:11:09 -0700 | [diff] [blame] | 68 | static void uhid_device_add_worker(struct work_struct *work) |
| 69 | { |
| 70 | struct uhid_device *uhid = container_of(work, struct uhid_device, worker); |
| 71 | int ret; |
| 72 | |
| 73 | ret = hid_add_device(uhid->hid); |
| 74 | if (ret) { |
| 75 | hid_err(uhid->hid, "Cannot register HID device: error %d\n", ret); |
| 76 | |
Jann Horn | c2e39d5 | 2022-01-14 14:33:30 +0100 | [diff] [blame] | 77 | /* We used to call hid_destroy_device() here, but that's really |
| 78 | * messy to get right because we have to coordinate with |
| 79 | * concurrent writes from userspace that might be in the middle |
| 80 | * of using uhid->hid. |
| 81 | * Just leave uhid->hid as-is for now, and clean it up when |
| 82 | * userspace tries to close or reinitialize the uhid instance. |
| 83 | * |
| 84 | * However, we do have to clear the ->running flag and do a |
| 85 | * wakeup to make sure userspace knows that the device is gone. |
| 86 | */ |
Roderick Colenbrander | 67f8ecc | 2016-05-18 13:11:09 -0700 | [diff] [blame] | 87 | uhid->running = false; |
Jann Horn | c2e39d5 | 2022-01-14 14:33:30 +0100 | [diff] [blame] | 88 | wake_up_interruptible(&uhid->report_wait); |
Roderick Colenbrander | 67f8ecc | 2016-05-18 13:11:09 -0700 | [diff] [blame] | 89 | } |
| 90 | } |
| 91 | |
David Herrmann | ace3d86 | 2012-06-10 15:16:14 +0200 | [diff] [blame] | 92 | static void uhid_queue(struct uhid_device *uhid, struct uhid_event *ev) |
| 93 | { |
| 94 | __u8 newhead; |
| 95 | |
| 96 | newhead = (uhid->head + 1) % UHID_BUFSIZE; |
| 97 | |
| 98 | if (newhead != uhid->tail) { |
| 99 | uhid->outq[uhid->head] = ev; |
| 100 | uhid->head = newhead; |
| 101 | wake_up_interruptible(&uhid->waitq); |
| 102 | } else { |
| 103 | hid_warn(uhid->hid, "Output queue is full\n"); |
| 104 | kfree(ev); |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | static int uhid_queue_event(struct uhid_device *uhid, __u32 event) |
| 109 | { |
| 110 | unsigned long flags; |
| 111 | struct uhid_event *ev; |
| 112 | |
| 113 | ev = kzalloc(sizeof(*ev), GFP_KERNEL); |
| 114 | if (!ev) |
| 115 | return -ENOMEM; |
| 116 | |
| 117 | ev->type = event; |
| 118 | |
| 119 | spin_lock_irqsave(&uhid->qlock, flags); |
| 120 | uhid_queue(uhid, ev); |
| 121 | spin_unlock_irqrestore(&uhid->qlock, flags); |
| 122 | |
| 123 | return 0; |
| 124 | } |
| 125 | |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 126 | static int uhid_hid_start(struct hid_device *hid) |
| 127 | { |
David Herrmann | ec4b7de | 2012-06-10 15:16:21 +0200 | [diff] [blame] | 128 | struct uhid_device *uhid = hid->driver_data; |
David Herrmann | c2b2f16 | 2014-07-29 17:14:25 +0200 | [diff] [blame] | 129 | struct uhid_event *ev; |
| 130 | unsigned long flags; |
David Herrmann | ec4b7de | 2012-06-10 15:16:21 +0200 | [diff] [blame] | 131 | |
David Herrmann | c2b2f16 | 2014-07-29 17:14:25 +0200 | [diff] [blame] | 132 | ev = kzalloc(sizeof(*ev), GFP_KERNEL); |
| 133 | if (!ev) |
| 134 | return -ENOMEM; |
| 135 | |
| 136 | ev->type = UHID_START; |
| 137 | |
| 138 | if (hid->report_enum[HID_FEATURE_REPORT].numbered) |
| 139 | ev->u.start.dev_flags |= UHID_DEV_NUMBERED_FEATURE_REPORTS; |
| 140 | if (hid->report_enum[HID_OUTPUT_REPORT].numbered) |
| 141 | ev->u.start.dev_flags |= UHID_DEV_NUMBERED_OUTPUT_REPORTS; |
| 142 | if (hid->report_enum[HID_INPUT_REPORT].numbered) |
| 143 | ev->u.start.dev_flags |= UHID_DEV_NUMBERED_INPUT_REPORTS; |
| 144 | |
| 145 | spin_lock_irqsave(&uhid->qlock, flags); |
| 146 | uhid_queue(uhid, ev); |
| 147 | spin_unlock_irqrestore(&uhid->qlock, flags); |
| 148 | |
| 149 | return 0; |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | static void uhid_hid_stop(struct hid_device *hid) |
| 153 | { |
David Herrmann | ec4b7de | 2012-06-10 15:16:21 +0200 | [diff] [blame] | 154 | struct uhid_device *uhid = hid->driver_data; |
| 155 | |
| 156 | hid->claimed = 0; |
| 157 | uhid_queue_event(uhid, UHID_STOP); |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | static int uhid_hid_open(struct hid_device *hid) |
| 161 | { |
David Herrmann | e719147 | 2012-06-10 15:16:22 +0200 | [diff] [blame] | 162 | struct uhid_device *uhid = hid->driver_data; |
| 163 | |
| 164 | return uhid_queue_event(uhid, UHID_OPEN); |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | static void uhid_hid_close(struct hid_device *hid) |
| 168 | { |
David Herrmann | e719147 | 2012-06-10 15:16:22 +0200 | [diff] [blame] | 169 | struct uhid_device *uhid = hid->driver_data; |
| 170 | |
| 171 | uhid_queue_event(uhid, UHID_CLOSE); |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 172 | } |
| 173 | |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 174 | static int uhid_hid_parse(struct hid_device *hid) |
| 175 | { |
David Herrmann | 037c061 | 2012-06-10 15:16:20 +0200 | [diff] [blame] | 176 | struct uhid_device *uhid = hid->driver_data; |
| 177 | |
| 178 | return hid_parse_report(hid, uhid->rd_data, uhid->rd_size); |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 179 | } |
| 180 | |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 181 | /* must be called with report_lock held */ |
| 182 | static int __uhid_report_queue_and_wait(struct uhid_device *uhid, |
| 183 | struct uhid_event *ev, |
| 184 | __u32 *report_id) |
Jiri Kosina | 289a716 | 2014-02-17 14:49:34 +0100 | [diff] [blame] | 185 | { |
Jiri Kosina | 289a716 | 2014-02-17 14:49:34 +0100 | [diff] [blame] | 186 | unsigned long flags; |
| 187 | int ret; |
Jiri Kosina | 289a716 | 2014-02-17 14:49:34 +0100 | [diff] [blame] | 188 | |
| 189 | spin_lock_irqsave(&uhid->qlock, flags); |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 190 | *report_id = ++uhid->report_id; |
Benjamin Tissoires | 8493ecc | 2014-10-01 11:59:47 -0400 | [diff] [blame] | 191 | uhid->report_type = ev->type + 1; |
David Herrmann | 5942b84 | 2014-07-29 17:14:20 +0200 | [diff] [blame] | 192 | uhid->report_running = true; |
Jiri Kosina | 289a716 | 2014-02-17 14:49:34 +0100 | [diff] [blame] | 193 | uhid_queue(uhid, ev); |
| 194 | spin_unlock_irqrestore(&uhid->qlock, flags); |
| 195 | |
| 196 | ret = wait_event_interruptible_timeout(uhid->report_wait, |
David Herrmann | 5942b84 | 2014-07-29 17:14:20 +0200 | [diff] [blame] | 197 | !uhid->report_running || !uhid->running, |
| 198 | 5 * HZ); |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 199 | if (!ret || !uhid->running || uhid->report_running) |
Jiri Kosina | 289a716 | 2014-02-17 14:49:34 +0100 | [diff] [blame] | 200 | ret = -EIO; |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 201 | else if (ret < 0) |
Jiri Kosina | 289a716 | 2014-02-17 14:49:34 +0100 | [diff] [blame] | 202 | ret = -ERESTARTSYS; |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 203 | else |
| 204 | ret = 0; |
Jiri Kosina | 289a716 | 2014-02-17 14:49:34 +0100 | [diff] [blame] | 205 | |
David Herrmann | 5942b84 | 2014-07-29 17:14:20 +0200 | [diff] [blame] | 206 | uhid->report_running = false; |
Jiri Kosina | 289a716 | 2014-02-17 14:49:34 +0100 | [diff] [blame] | 207 | |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 208 | return ret; |
| 209 | } |
| 210 | |
| 211 | static void uhid_report_wake_up(struct uhid_device *uhid, u32 id, |
| 212 | const struct uhid_event *ev) |
| 213 | { |
| 214 | unsigned long flags; |
| 215 | |
| 216 | spin_lock_irqsave(&uhid->qlock, flags); |
| 217 | |
| 218 | /* id for old report; drop it silently */ |
| 219 | if (uhid->report_type != ev->type || uhid->report_id != id) |
| 220 | goto unlock; |
| 221 | if (!uhid->report_running) |
| 222 | goto unlock; |
| 223 | |
| 224 | memcpy(&uhid->report_buf, ev, sizeof(*ev)); |
| 225 | uhid->report_running = false; |
| 226 | wake_up_interruptible(&uhid->report_wait); |
| 227 | |
| 228 | unlock: |
| 229 | spin_unlock_irqrestore(&uhid->qlock, flags); |
| 230 | } |
| 231 | |
| 232 | static int uhid_hid_get_report(struct hid_device *hid, unsigned char rnum, |
| 233 | u8 *buf, size_t count, u8 rtype) |
| 234 | { |
| 235 | struct uhid_device *uhid = hid->driver_data; |
| 236 | struct uhid_get_report_reply_req *req; |
| 237 | struct uhid_event *ev; |
| 238 | int ret; |
| 239 | |
| 240 | if (!uhid->running) |
| 241 | return -EIO; |
| 242 | |
| 243 | ev = kzalloc(sizeof(*ev), GFP_KERNEL); |
| 244 | if (!ev) |
| 245 | return -ENOMEM; |
| 246 | |
| 247 | ev->type = UHID_GET_REPORT; |
| 248 | ev->u.get_report.rnum = rnum; |
| 249 | ev->u.get_report.rtype = rtype; |
| 250 | |
| 251 | ret = mutex_lock_interruptible(&uhid->report_lock); |
| 252 | if (ret) { |
| 253 | kfree(ev); |
| 254 | return ret; |
| 255 | } |
| 256 | |
| 257 | /* this _always_ takes ownership of @ev */ |
| 258 | ret = __uhid_report_queue_and_wait(uhid, ev, &ev->u.get_report.id); |
| 259 | if (ret) |
| 260 | goto unlock; |
| 261 | |
| 262 | req = &uhid->report_buf.u.get_report_reply; |
| 263 | if (req->err) { |
| 264 | ret = -EIO; |
| 265 | } else { |
| 266 | ret = min3(count, (size_t)req->size, (size_t)UHID_DATA_MAX); |
| 267 | memcpy(buf, req->data, ret); |
| 268 | } |
| 269 | |
Jiri Kosina | 289a716 | 2014-02-17 14:49:34 +0100 | [diff] [blame] | 270 | unlock: |
| 271 | mutex_unlock(&uhid->report_lock); |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 272 | return ret; |
| 273 | } |
| 274 | |
| 275 | static int uhid_hid_set_report(struct hid_device *hid, unsigned char rnum, |
| 276 | const u8 *buf, size_t count, u8 rtype) |
| 277 | { |
| 278 | struct uhid_device *uhid = hid->driver_data; |
| 279 | struct uhid_event *ev; |
| 280 | int ret; |
| 281 | |
| 282 | if (!uhid->running || count > UHID_DATA_MAX) |
| 283 | return -EIO; |
| 284 | |
| 285 | ev = kzalloc(sizeof(*ev), GFP_KERNEL); |
| 286 | if (!ev) |
| 287 | return -ENOMEM; |
| 288 | |
| 289 | ev->type = UHID_SET_REPORT; |
| 290 | ev->u.set_report.rnum = rnum; |
| 291 | ev->u.set_report.rtype = rtype; |
| 292 | ev->u.set_report.size = count; |
| 293 | memcpy(ev->u.set_report.data, buf, count); |
| 294 | |
| 295 | ret = mutex_lock_interruptible(&uhid->report_lock); |
| 296 | if (ret) { |
| 297 | kfree(ev); |
| 298 | return ret; |
| 299 | } |
| 300 | |
| 301 | /* this _always_ takes ownership of @ev */ |
| 302 | ret = __uhid_report_queue_and_wait(uhid, ev, &ev->u.set_report.id); |
| 303 | if (ret) |
| 304 | goto unlock; |
| 305 | |
| 306 | if (uhid->report_buf.u.set_report_reply.err) |
| 307 | ret = -EIO; |
| 308 | else |
| 309 | ret = count; |
| 310 | |
| 311 | unlock: |
| 312 | mutex_unlock(&uhid->report_lock); |
| 313 | return ret; |
Jiri Kosina | 289a716 | 2014-02-17 14:49:34 +0100 | [diff] [blame] | 314 | } |
| 315 | |
David Herrmann | 7c4003b | 2014-07-29 17:14:23 +0200 | [diff] [blame] | 316 | static int uhid_hid_raw_request(struct hid_device *hid, unsigned char reportnum, |
| 317 | __u8 *buf, size_t len, unsigned char rtype, |
| 318 | int reqtype) |
| 319 | { |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 320 | u8 u_rtype; |
| 321 | |
| 322 | switch (rtype) { |
| 323 | case HID_FEATURE_REPORT: |
| 324 | u_rtype = UHID_FEATURE_REPORT; |
| 325 | break; |
| 326 | case HID_OUTPUT_REPORT: |
| 327 | u_rtype = UHID_OUTPUT_REPORT; |
| 328 | break; |
| 329 | case HID_INPUT_REPORT: |
| 330 | u_rtype = UHID_INPUT_REPORT; |
| 331 | break; |
| 332 | default: |
| 333 | return -EINVAL; |
| 334 | } |
| 335 | |
David Herrmann | 7c4003b | 2014-07-29 17:14:23 +0200 | [diff] [blame] | 336 | switch (reqtype) { |
| 337 | case HID_REQ_GET_REPORT: |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 338 | return uhid_hid_get_report(hid, reportnum, buf, len, u_rtype); |
David Herrmann | 7c4003b | 2014-07-29 17:14:23 +0200 | [diff] [blame] | 339 | case HID_REQ_SET_REPORT: |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 340 | return uhid_hid_set_report(hid, reportnum, buf, len, u_rtype); |
David Herrmann | 7c4003b | 2014-07-29 17:14:23 +0200 | [diff] [blame] | 341 | default: |
| 342 | return -EIO; |
| 343 | } |
| 344 | } |
| 345 | |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 346 | static int uhid_hid_output_raw(struct hid_device *hid, __u8 *buf, size_t count, |
| 347 | unsigned char report_type) |
| 348 | { |
David Herrmann | 3b3baa8 | 2012-06-10 15:16:24 +0200 | [diff] [blame] | 349 | struct uhid_device *uhid = hid->driver_data; |
| 350 | __u8 rtype; |
| 351 | unsigned long flags; |
| 352 | struct uhid_event *ev; |
| 353 | |
| 354 | switch (report_type) { |
| 355 | case HID_FEATURE_REPORT: |
| 356 | rtype = UHID_FEATURE_REPORT; |
| 357 | break; |
| 358 | case HID_OUTPUT_REPORT: |
| 359 | rtype = UHID_OUTPUT_REPORT; |
| 360 | break; |
| 361 | default: |
| 362 | return -EINVAL; |
| 363 | } |
| 364 | |
| 365 | if (count < 1 || count > UHID_DATA_MAX) |
| 366 | return -EINVAL; |
| 367 | |
| 368 | ev = kzalloc(sizeof(*ev), GFP_KERNEL); |
| 369 | if (!ev) |
| 370 | return -ENOMEM; |
| 371 | |
| 372 | ev->type = UHID_OUTPUT; |
| 373 | ev->u.output.size = count; |
| 374 | ev->u.output.rtype = rtype; |
| 375 | memcpy(ev->u.output.data, buf, count); |
| 376 | |
| 377 | spin_lock_irqsave(&uhid->qlock, flags); |
| 378 | uhid_queue(uhid, ev); |
| 379 | spin_unlock_irqrestore(&uhid->qlock, flags); |
| 380 | |
| 381 | return count; |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 382 | } |
| 383 | |
Frank Praznik | 596cfdd | 2014-01-22 13:49:43 -0500 | [diff] [blame] | 384 | static int uhid_hid_output_report(struct hid_device *hid, __u8 *buf, |
| 385 | size_t count) |
| 386 | { |
Benjamin Tissoires | 41abfb3 | 2014-02-10 12:58:46 -0500 | [diff] [blame] | 387 | return uhid_hid_output_raw(hid, buf, count, HID_OUTPUT_REPORT); |
Frank Praznik | 596cfdd | 2014-01-22 13:49:43 -0500 | [diff] [blame] | 388 | } |
| 389 | |
Jason Gerecke | fc2237a | 2017-07-24 09:46:18 -0700 | [diff] [blame] | 390 | struct hid_ll_driver uhid_hid_driver = { |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 391 | .start = uhid_hid_start, |
| 392 | .stop = uhid_hid_stop, |
| 393 | .open = uhid_hid_open, |
| 394 | .close = uhid_hid_close, |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 395 | .parse = uhid_hid_parse, |
David Herrmann | 7c4003b | 2014-07-29 17:14:23 +0200 | [diff] [blame] | 396 | .raw_request = uhid_hid_raw_request, |
Frank Praznik | 596cfdd | 2014-01-22 13:49:43 -0500 | [diff] [blame] | 397 | .output_report = uhid_hid_output_report, |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 398 | }; |
Jason Gerecke | fc2237a | 2017-07-24 09:46:18 -0700 | [diff] [blame] | 399 | EXPORT_SYMBOL_GPL(uhid_hid_driver); |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 400 | |
Dmitry Torokhov | befde02 | 2013-02-18 11:26:11 +0100 | [diff] [blame] | 401 | #ifdef CONFIG_COMPAT |
| 402 | |
| 403 | /* Apparently we haven't stepped on these rakes enough times yet. */ |
| 404 | struct uhid_create_req_compat { |
| 405 | __u8 name[128]; |
| 406 | __u8 phys[64]; |
| 407 | __u8 uniq[64]; |
| 408 | |
| 409 | compat_uptr_t rd_data; |
| 410 | __u16 rd_size; |
| 411 | |
| 412 | __u16 bus; |
| 413 | __u32 vendor; |
| 414 | __u32 product; |
| 415 | __u32 version; |
| 416 | __u32 country; |
| 417 | } __attribute__((__packed__)); |
| 418 | |
| 419 | static int uhid_event_from_user(const char __user *buffer, size_t len, |
| 420 | struct uhid_event *event) |
| 421 | { |
Andy Lutomirski | 7365abb | 2016-03-22 14:25:24 -0700 | [diff] [blame] | 422 | if (in_compat_syscall()) { |
Dmitry Torokhov | befde02 | 2013-02-18 11:26:11 +0100 | [diff] [blame] | 423 | u32 type; |
| 424 | |
| 425 | if (get_user(type, buffer)) |
| 426 | return -EFAULT; |
| 427 | |
| 428 | if (type == UHID_CREATE) { |
| 429 | /* |
| 430 | * This is our messed up request with compat pointer. |
| 431 | * It is largish (more than 256 bytes) so we better |
| 432 | * allocate it from the heap. |
| 433 | */ |
| 434 | struct uhid_create_req_compat *compat; |
| 435 | |
David Herrmann | 80897aa | 2013-11-26 13:58:18 +0100 | [diff] [blame] | 436 | compat = kzalloc(sizeof(*compat), GFP_KERNEL); |
Dmitry Torokhov | befde02 | 2013-02-18 11:26:11 +0100 | [diff] [blame] | 437 | if (!compat) |
| 438 | return -ENOMEM; |
| 439 | |
| 440 | buffer += sizeof(type); |
| 441 | len -= sizeof(type); |
| 442 | if (copy_from_user(compat, buffer, |
| 443 | min(len, sizeof(*compat)))) { |
| 444 | kfree(compat); |
| 445 | return -EFAULT; |
| 446 | } |
| 447 | |
| 448 | /* Shuffle the data over to proper structure */ |
| 449 | event->type = type; |
| 450 | |
| 451 | memcpy(event->u.create.name, compat->name, |
| 452 | sizeof(compat->name)); |
| 453 | memcpy(event->u.create.phys, compat->phys, |
| 454 | sizeof(compat->phys)); |
| 455 | memcpy(event->u.create.uniq, compat->uniq, |
| 456 | sizeof(compat->uniq)); |
| 457 | |
| 458 | event->u.create.rd_data = compat_ptr(compat->rd_data); |
| 459 | event->u.create.rd_size = compat->rd_size; |
| 460 | |
| 461 | event->u.create.bus = compat->bus; |
| 462 | event->u.create.vendor = compat->vendor; |
| 463 | event->u.create.product = compat->product; |
| 464 | event->u.create.version = compat->version; |
| 465 | event->u.create.country = compat->country; |
| 466 | |
| 467 | kfree(compat); |
| 468 | return 0; |
| 469 | } |
| 470 | /* All others can be copied directly */ |
| 471 | } |
| 472 | |
| 473 | if (copy_from_user(event, buffer, min(len, sizeof(*event)))) |
| 474 | return -EFAULT; |
| 475 | |
| 476 | return 0; |
| 477 | } |
| 478 | #else |
| 479 | static int uhid_event_from_user(const char __user *buffer, size_t len, |
| 480 | struct uhid_event *event) |
| 481 | { |
| 482 | if (copy_from_user(event, buffer, min(len, sizeof(*event)))) |
| 483 | return -EFAULT; |
| 484 | |
| 485 | return 0; |
| 486 | } |
| 487 | #endif |
| 488 | |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 489 | static int uhid_dev_create2(struct uhid_device *uhid, |
| 490 | const struct uhid_event *ev) |
| 491 | { |
| 492 | struct hid_device *hid; |
David Herrmann | 25be7fe | 2014-07-29 17:14:18 +0200 | [diff] [blame] | 493 | size_t rd_size, len; |
David Herrmann | 41c4a464 | 2014-07-29 17:14:17 +0200 | [diff] [blame] | 494 | void *rd_data; |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 495 | int ret; |
| 496 | |
Jann Horn | c2e39d5 | 2022-01-14 14:33:30 +0100 | [diff] [blame] | 497 | if (uhid->hid) |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 498 | return -EALREADY; |
| 499 | |
David Herrmann | 41c4a464 | 2014-07-29 17:14:17 +0200 | [diff] [blame] | 500 | rd_size = ev->u.create2.rd_size; |
| 501 | if (rd_size <= 0 || rd_size > HID_MAX_DESCRIPTOR_SIZE) |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 502 | return -EINVAL; |
| 503 | |
David Herrmann | 41c4a464 | 2014-07-29 17:14:17 +0200 | [diff] [blame] | 504 | rd_data = kmemdup(ev->u.create2.rd_data, rd_size, GFP_KERNEL); |
| 505 | if (!rd_data) |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 506 | return -ENOMEM; |
| 507 | |
David Herrmann | 41c4a464 | 2014-07-29 17:14:17 +0200 | [diff] [blame] | 508 | uhid->rd_size = rd_size; |
| 509 | uhid->rd_data = rd_data; |
| 510 | |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 511 | hid = hid_allocate_device(); |
| 512 | if (IS_ERR(hid)) { |
| 513 | ret = PTR_ERR(hid); |
| 514 | goto err_free; |
| 515 | } |
| 516 | |
David Herrmann | 4d26d1d | 2018-11-14 14:16:42 +0100 | [diff] [blame] | 517 | /* @hid is zero-initialized, strncpy() is correct, strlcpy() not */ |
| 518 | len = min(sizeof(hid->name), sizeof(ev->u.create2.name)) - 1; |
| 519 | strncpy(hid->name, ev->u.create2.name, len); |
| 520 | len = min(sizeof(hid->phys), sizeof(ev->u.create2.phys)) - 1; |
| 521 | strncpy(hid->phys, ev->u.create2.phys, len); |
| 522 | len = min(sizeof(hid->uniq), sizeof(ev->u.create2.uniq)) - 1; |
| 523 | strncpy(hid->uniq, ev->u.create2.uniq, len); |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 524 | |
| 525 | hid->ll_driver = &uhid_hid_driver; |
| 526 | hid->bus = ev->u.create2.bus; |
| 527 | hid->vendor = ev->u.create2.vendor; |
| 528 | hid->product = ev->u.create2.product; |
| 529 | hid->version = ev->u.create2.version; |
| 530 | hid->country = ev->u.create2.country; |
| 531 | hid->driver_data = uhid; |
| 532 | hid->dev.parent = uhid_misc.this_device; |
| 533 | |
| 534 | uhid->hid = hid; |
| 535 | uhid->running = true; |
| 536 | |
Roderick Colenbrander | 67f8ecc | 2016-05-18 13:11:09 -0700 | [diff] [blame] | 537 | /* Adding of a HID device is done through a worker, to allow HID drivers |
| 538 | * which use feature requests during .probe to work, without they would |
| 539 | * be blocked on devlock, which is held by uhid_char_write. |
| 540 | */ |
| 541 | schedule_work(&uhid->worker); |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 542 | |
| 543 | return 0; |
| 544 | |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 545 | err_free: |
| 546 | kfree(uhid->rd_data); |
David Herrmann | 41c4a464 | 2014-07-29 17:14:17 +0200 | [diff] [blame] | 547 | uhid->rd_data = NULL; |
| 548 | uhid->rd_size = 0; |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 549 | return ret; |
| 550 | } |
| 551 | |
David Herrmann | 56c4775 | 2014-07-29 17:14:16 +0200 | [diff] [blame] | 552 | static int uhid_dev_create(struct uhid_device *uhid, |
| 553 | struct uhid_event *ev) |
| 554 | { |
| 555 | struct uhid_create_req orig; |
| 556 | |
| 557 | orig = ev->u.create; |
| 558 | |
| 559 | if (orig.rd_size <= 0 || orig.rd_size > HID_MAX_DESCRIPTOR_SIZE) |
| 560 | return -EINVAL; |
| 561 | if (copy_from_user(&ev->u.create2.rd_data, orig.rd_data, orig.rd_size)) |
| 562 | return -EFAULT; |
| 563 | |
| 564 | memcpy(ev->u.create2.name, orig.name, sizeof(orig.name)); |
| 565 | memcpy(ev->u.create2.phys, orig.phys, sizeof(orig.phys)); |
| 566 | memcpy(ev->u.create2.uniq, orig.uniq, sizeof(orig.uniq)); |
| 567 | ev->u.create2.rd_size = orig.rd_size; |
| 568 | ev->u.create2.bus = orig.bus; |
| 569 | ev->u.create2.vendor = orig.vendor; |
| 570 | ev->u.create2.product = orig.product; |
| 571 | ev->u.create2.version = orig.version; |
| 572 | ev->u.create2.country = orig.country; |
| 573 | |
| 574 | return uhid_dev_create2(uhid, ev); |
| 575 | } |
| 576 | |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 577 | static int uhid_dev_destroy(struct uhid_device *uhid) |
| 578 | { |
Jann Horn | c2e39d5 | 2022-01-14 14:33:30 +0100 | [diff] [blame] | 579 | if (!uhid->hid) |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 580 | return -EINVAL; |
| 581 | |
| 582 | uhid->running = false; |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 583 | wake_up_interruptible(&uhid->report_wait); |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 584 | |
Roderick Colenbrander | 67f8ecc | 2016-05-18 13:11:09 -0700 | [diff] [blame] | 585 | cancel_work_sync(&uhid->worker); |
| 586 | |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 587 | hid_destroy_device(uhid->hid); |
Jann Horn | c2e39d5 | 2022-01-14 14:33:30 +0100 | [diff] [blame] | 588 | uhid->hid = NULL; |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 589 | kfree(uhid->rd_data); |
| 590 | |
| 591 | return 0; |
| 592 | } |
| 593 | |
David Herrmann | 5e87a36 | 2012-06-10 15:16:19 +0200 | [diff] [blame] | 594 | static int uhid_dev_input(struct uhid_device *uhid, struct uhid_event *ev) |
| 595 | { |
| 596 | if (!uhid->running) |
| 597 | return -EINVAL; |
| 598 | |
| 599 | hid_input_report(uhid->hid, HID_INPUT_REPORT, ev->u.input.data, |
| 600 | min_t(size_t, ev->u.input.size, UHID_DATA_MAX), 0); |
| 601 | |
| 602 | return 0; |
| 603 | } |
| 604 | |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 605 | static int uhid_dev_input2(struct uhid_device *uhid, struct uhid_event *ev) |
| 606 | { |
| 607 | if (!uhid->running) |
| 608 | return -EINVAL; |
| 609 | |
| 610 | hid_input_report(uhid->hid, HID_INPUT_REPORT, ev->u.input2.data, |
| 611 | min_t(size_t, ev->u.input2.size, UHID_DATA_MAX), 0); |
| 612 | |
| 613 | return 0; |
| 614 | } |
| 615 | |
David Herrmann | fa71f32 | 2014-07-29 17:14:21 +0200 | [diff] [blame] | 616 | static int uhid_dev_get_report_reply(struct uhid_device *uhid, |
| 617 | struct uhid_event *ev) |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 618 | { |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 619 | if (!uhid->running) |
| 620 | return -EINVAL; |
| 621 | |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 622 | uhid_report_wake_up(uhid, ev->u.get_report_reply.id, ev); |
| 623 | return 0; |
| 624 | } |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 625 | |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 626 | static int uhid_dev_set_report_reply(struct uhid_device *uhid, |
| 627 | struct uhid_event *ev) |
| 628 | { |
| 629 | if (!uhid->running) |
| 630 | return -EINVAL; |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 631 | |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 632 | uhid_report_wake_up(uhid, ev->u.set_report_reply.id, ev); |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 633 | return 0; |
| 634 | } |
| 635 | |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 636 | static int uhid_char_open(struct inode *inode, struct file *file) |
| 637 | { |
David Herrmann | ace3d86 | 2012-06-10 15:16:14 +0200 | [diff] [blame] | 638 | struct uhid_device *uhid; |
| 639 | |
| 640 | uhid = kzalloc(sizeof(*uhid), GFP_KERNEL); |
| 641 | if (!uhid) |
| 642 | return -ENOMEM; |
| 643 | |
David Herrmann | d937ae5 | 2012-06-10 15:16:16 +0200 | [diff] [blame] | 644 | mutex_init(&uhid->devlock); |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 645 | mutex_init(&uhid->report_lock); |
David Herrmann | ace3d86 | 2012-06-10 15:16:14 +0200 | [diff] [blame] | 646 | spin_lock_init(&uhid->qlock); |
| 647 | init_waitqueue_head(&uhid->waitq); |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 648 | init_waitqueue_head(&uhid->report_wait); |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 649 | uhid->running = false; |
Roderick Colenbrander | 67f8ecc | 2016-05-18 13:11:09 -0700 | [diff] [blame] | 650 | INIT_WORK(&uhid->worker, uhid_device_add_worker); |
David Herrmann | ace3d86 | 2012-06-10 15:16:14 +0200 | [diff] [blame] | 651 | |
| 652 | file->private_data = uhid; |
Kirill Smelkov | c5bf68f | 2019-03-26 23:51:19 +0300 | [diff] [blame] | 653 | stream_open(inode, file); |
David Herrmann | ace3d86 | 2012-06-10 15:16:14 +0200 | [diff] [blame] | 654 | |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 655 | return 0; |
| 656 | } |
| 657 | |
| 658 | static int uhid_char_release(struct inode *inode, struct file *file) |
| 659 | { |
David Herrmann | ace3d86 | 2012-06-10 15:16:14 +0200 | [diff] [blame] | 660 | struct uhid_device *uhid = file->private_data; |
| 661 | unsigned int i; |
| 662 | |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 663 | uhid_dev_destroy(uhid); |
| 664 | |
David Herrmann | ace3d86 | 2012-06-10 15:16:14 +0200 | [diff] [blame] | 665 | for (i = 0; i < UHID_BUFSIZE; ++i) |
| 666 | kfree(uhid->outq[i]); |
| 667 | |
| 668 | kfree(uhid); |
| 669 | |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 670 | return 0; |
| 671 | } |
| 672 | |
| 673 | static ssize_t uhid_char_read(struct file *file, char __user *buffer, |
| 674 | size_t count, loff_t *ppos) |
| 675 | { |
David Herrmann | d937ae5 | 2012-06-10 15:16:16 +0200 | [diff] [blame] | 676 | struct uhid_device *uhid = file->private_data; |
| 677 | int ret; |
| 678 | unsigned long flags; |
| 679 | size_t len; |
| 680 | |
| 681 | /* they need at least the "type" member of uhid_event */ |
| 682 | if (count < sizeof(__u32)) |
| 683 | return -EINVAL; |
| 684 | |
| 685 | try_again: |
| 686 | if (file->f_flags & O_NONBLOCK) { |
| 687 | if (uhid->head == uhid->tail) |
| 688 | return -EAGAIN; |
| 689 | } else { |
| 690 | ret = wait_event_interruptible(uhid->waitq, |
| 691 | uhid->head != uhid->tail); |
| 692 | if (ret) |
| 693 | return ret; |
| 694 | } |
| 695 | |
| 696 | ret = mutex_lock_interruptible(&uhid->devlock); |
| 697 | if (ret) |
| 698 | return ret; |
| 699 | |
| 700 | if (uhid->head == uhid->tail) { |
| 701 | mutex_unlock(&uhid->devlock); |
| 702 | goto try_again; |
| 703 | } else { |
| 704 | len = min(count, sizeof(**uhid->outq)); |
Vinicius Costa Gomes | adefb69 | 2012-07-14 18:59:25 -0300 | [diff] [blame] | 705 | if (copy_to_user(buffer, uhid->outq[uhid->tail], len)) { |
David Herrmann | d937ae5 | 2012-06-10 15:16:16 +0200 | [diff] [blame] | 706 | ret = -EFAULT; |
| 707 | } else { |
| 708 | kfree(uhid->outq[uhid->tail]); |
| 709 | uhid->outq[uhid->tail] = NULL; |
| 710 | |
| 711 | spin_lock_irqsave(&uhid->qlock, flags); |
| 712 | uhid->tail = (uhid->tail + 1) % UHID_BUFSIZE; |
| 713 | spin_unlock_irqrestore(&uhid->qlock, flags); |
| 714 | } |
| 715 | } |
| 716 | |
| 717 | mutex_unlock(&uhid->devlock); |
| 718 | return ret ? ret : len; |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | static ssize_t uhid_char_write(struct file *file, const char __user *buffer, |
| 722 | size_t count, loff_t *ppos) |
| 723 | { |
David Herrmann | 6664ef7 | 2012-06-10 15:16:17 +0200 | [diff] [blame] | 724 | struct uhid_device *uhid = file->private_data; |
| 725 | int ret; |
| 726 | size_t len; |
| 727 | |
| 728 | /* we need at least the "type" member of uhid_event */ |
| 729 | if (count < sizeof(__u32)) |
| 730 | return -EINVAL; |
| 731 | |
| 732 | ret = mutex_lock_interruptible(&uhid->devlock); |
| 733 | if (ret) |
| 734 | return ret; |
| 735 | |
| 736 | memset(&uhid->input_buf, 0, sizeof(uhid->input_buf)); |
| 737 | len = min(count, sizeof(uhid->input_buf)); |
Dmitry Torokhov | befde02 | 2013-02-18 11:26:11 +0100 | [diff] [blame] | 738 | |
| 739 | ret = uhid_event_from_user(buffer, len, &uhid->input_buf); |
| 740 | if (ret) |
David Herrmann | 6664ef7 | 2012-06-10 15:16:17 +0200 | [diff] [blame] | 741 | goto unlock; |
David Herrmann | 6664ef7 | 2012-06-10 15:16:17 +0200 | [diff] [blame] | 742 | |
| 743 | switch (uhid->input_buf.type) { |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 744 | case UHID_CREATE: |
Eric Biggers | 8c01db7 | 2018-11-14 13:55:09 -0800 | [diff] [blame] | 745 | /* |
| 746 | * 'struct uhid_create_req' contains a __user pointer which is |
| 747 | * copied from, so it's unsafe to allow this with elevated |
| 748 | * privileges (e.g. from a setuid binary) or via kernel_write(). |
| 749 | */ |
| 750 | if (file->f_cred != current_cred() || uaccess_kernel()) { |
| 751 | pr_err_once("UHID_CREATE from different security context by process %d (%s), this is not allowed.\n", |
| 752 | task_tgid_vnr(current), current->comm); |
| 753 | ret = -EACCES; |
| 754 | goto unlock; |
| 755 | } |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 756 | ret = uhid_dev_create(uhid, &uhid->input_buf); |
| 757 | break; |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 758 | case UHID_CREATE2: |
| 759 | ret = uhid_dev_create2(uhid, &uhid->input_buf); |
| 760 | break; |
David Herrmann | d365c6c | 2012-06-10 15:16:18 +0200 | [diff] [blame] | 761 | case UHID_DESTROY: |
| 762 | ret = uhid_dev_destroy(uhid); |
| 763 | break; |
David Herrmann | 5e87a36 | 2012-06-10 15:16:19 +0200 | [diff] [blame] | 764 | case UHID_INPUT: |
| 765 | ret = uhid_dev_input(uhid, &uhid->input_buf); |
| 766 | break; |
Petri Gynther | 4522643 | 2014-03-24 13:50:01 -0700 | [diff] [blame] | 767 | case UHID_INPUT2: |
| 768 | ret = uhid_dev_input2(uhid, &uhid->input_buf); |
| 769 | break; |
David Herrmann | fa71f32 | 2014-07-29 17:14:21 +0200 | [diff] [blame] | 770 | case UHID_GET_REPORT_REPLY: |
| 771 | ret = uhid_dev_get_report_reply(uhid, &uhid->input_buf); |
David Herrmann | fcfcf0d | 2012-06-10 15:16:25 +0200 | [diff] [blame] | 772 | break; |
David Herrmann | 11c2215 | 2014-07-29 17:14:24 +0200 | [diff] [blame] | 773 | case UHID_SET_REPORT_REPLY: |
| 774 | ret = uhid_dev_set_report_reply(uhid, &uhid->input_buf); |
| 775 | break; |
David Herrmann | 6664ef7 | 2012-06-10 15:16:17 +0200 | [diff] [blame] | 776 | default: |
| 777 | ret = -EOPNOTSUPP; |
| 778 | } |
| 779 | |
| 780 | unlock: |
| 781 | mutex_unlock(&uhid->devlock); |
| 782 | |
| 783 | /* return "count" not "len" to not confuse the caller */ |
| 784 | return ret ? ret : count; |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 785 | } |
| 786 | |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 787 | static __poll_t uhid_char_poll(struct file *file, poll_table *wait) |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 788 | { |
David Herrmann | 1f9dec1 | 2012-06-10 15:16:15 +0200 | [diff] [blame] | 789 | struct uhid_device *uhid = file->private_data; |
Jiri Kosina | 9e635c2 | 2020-01-10 15:32:51 +0100 | [diff] [blame] | 790 | __poll_t mask = EPOLLOUT | EPOLLWRNORM; /* uhid is always writable */ |
David Herrmann | 1f9dec1 | 2012-06-10 15:16:15 +0200 | [diff] [blame] | 791 | |
| 792 | poll_wait(file, &uhid->waitq, wait); |
| 793 | |
| 794 | if (uhid->head != uhid->tail) |
Jiri Kosina | 9e635c2 | 2020-01-10 15:32:51 +0100 | [diff] [blame] | 795 | mask |= EPOLLIN | EPOLLRDNORM; |
David Herrmann | 1f9dec1 | 2012-06-10 15:16:15 +0200 | [diff] [blame] | 796 | |
Jiri Kosina | 9e635c2 | 2020-01-10 15:32:51 +0100 | [diff] [blame] | 797 | return mask; |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | static const struct file_operations uhid_fops = { |
| 801 | .owner = THIS_MODULE, |
| 802 | .open = uhid_char_open, |
| 803 | .release = uhid_char_release, |
| 804 | .read = uhid_char_read, |
| 805 | .write = uhid_char_write, |
| 806 | .poll = uhid_char_poll, |
| 807 | .llseek = no_llseek, |
| 808 | }; |
| 809 | |
| 810 | static struct miscdevice uhid_misc = { |
| 811 | .fops = &uhid_fops, |
David Herrmann | 19872d2 | 2013-09-09 18:33:54 +0200 | [diff] [blame] | 812 | .minor = UHID_MINOR, |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 813 | .name = UHID_NAME, |
| 814 | }; |
PrasannaKumar Muralidharan | ca75d60 | 2016-08-25 22:30:49 +0530 | [diff] [blame] | 815 | module_misc_device(uhid_misc); |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 816 | |
David Herrmann | 1ccd7a2 | 2012-06-10 15:16:13 +0200 | [diff] [blame] | 817 | MODULE_LICENSE("GPL"); |
| 818 | MODULE_AUTHOR("David Herrmann <dh.herrmann@gmail.com>"); |
| 819 | MODULE_DESCRIPTION("User-space I/O driver support for HID subsystem"); |
David Herrmann | 19872d2 | 2013-09-09 18:33:54 +0200 | [diff] [blame] | 820 | MODULE_ALIAS_MISCDEV(UHID_MINOR); |
Marcel Holtmann | 60cbd53 | 2013-09-01 11:02:46 -0700 | [diff] [blame] | 821 | MODULE_ALIAS("devname:" UHID_NAME); |