blob: b6de903920750b26ea3eb864a8a896eb726d83a1 [file] [log] [blame]
David Herrmann1ccd7a22012-06-10 15:16:13 +02001/*
2 * User-space I/O driver support for HID subsystem
3 * Copyright (c) 2012 David Herrmann
4 */
5
6/*
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation; either version 2 of the License, or (at your option)
10 * any later version.
11 */
12
13#include <linux/atomic.h>
Dmitry Torokhovbefde022013-02-18 11:26:11 +010014#include <linux/compat.h>
David Herrmann1ccd7a22012-06-10 15:16:13 +020015#include <linux/device.h>
16#include <linux/fs.h>
17#include <linux/hid.h>
18#include <linux/input.h>
19#include <linux/miscdevice.h>
20#include <linux/module.h>
21#include <linux/mutex.h>
22#include <linux/poll.h>
23#include <linux/sched.h>
24#include <linux/spinlock.h>
25#include <linux/uhid.h>
26#include <linux/wait.h>
27
28#define UHID_NAME "uhid"
David Herrmannace3d862012-06-10 15:16:14 +020029#define UHID_BUFSIZE 32
30
31struct uhid_device {
David Herrmannd937ae52012-06-10 15:16:16 +020032 struct mutex devlock;
David Herrmannd365c6c2012-06-10 15:16:18 +020033 bool running;
34
35 __u8 *rd_data;
36 uint rd_size;
37
David Herrmannace3d862012-06-10 15:16:14 +020038 struct hid_device *hid;
David Herrmann6664ef72012-06-10 15:16:17 +020039 struct uhid_event input_buf;
David Herrmannace3d862012-06-10 15:16:14 +020040
41 wait_queue_head_t waitq;
42 spinlock_t qlock;
43 __u8 head;
44 __u8 tail;
45 struct uhid_event *outq[UHID_BUFSIZE];
David Herrmannfcfcf0d2012-06-10 15:16:25 +020046
47 struct mutex report_lock;
48 wait_queue_head_t report_wait;
49 atomic_t report_done;
50 atomic_t report_id;
51 struct uhid_event report_buf;
David Herrmannace3d862012-06-10 15:16:14 +020052};
David Herrmann1ccd7a22012-06-10 15:16:13 +020053
54static struct miscdevice uhid_misc;
55
David Herrmannace3d862012-06-10 15:16:14 +020056static void uhid_queue(struct uhid_device *uhid, struct uhid_event *ev)
57{
58 __u8 newhead;
59
60 newhead = (uhid->head + 1) % UHID_BUFSIZE;
61
62 if (newhead != uhid->tail) {
63 uhid->outq[uhid->head] = ev;
64 uhid->head = newhead;
65 wake_up_interruptible(&uhid->waitq);
66 } else {
67 hid_warn(uhid->hid, "Output queue is full\n");
68 kfree(ev);
69 }
70}
71
72static int uhid_queue_event(struct uhid_device *uhid, __u32 event)
73{
74 unsigned long flags;
75 struct uhid_event *ev;
76
77 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
78 if (!ev)
79 return -ENOMEM;
80
81 ev->type = event;
82
83 spin_lock_irqsave(&uhid->qlock, flags);
84 uhid_queue(uhid, ev);
85 spin_unlock_irqrestore(&uhid->qlock, flags);
86
87 return 0;
88}
89
David Herrmannd365c6c2012-06-10 15:16:18 +020090static int uhid_hid_start(struct hid_device *hid)
91{
David Herrmannec4b7de2012-06-10 15:16:21 +020092 struct uhid_device *uhid = hid->driver_data;
93
94 return uhid_queue_event(uhid, UHID_START);
David Herrmannd365c6c2012-06-10 15:16:18 +020095}
96
97static void uhid_hid_stop(struct hid_device *hid)
98{
David Herrmannec4b7de2012-06-10 15:16:21 +020099 struct uhid_device *uhid = hid->driver_data;
100
101 hid->claimed = 0;
102 uhid_queue_event(uhid, UHID_STOP);
David Herrmannd365c6c2012-06-10 15:16:18 +0200103}
104
105static int uhid_hid_open(struct hid_device *hid)
106{
David Herrmanne7191472012-06-10 15:16:22 +0200107 struct uhid_device *uhid = hid->driver_data;
108
109 return uhid_queue_event(uhid, UHID_OPEN);
David Herrmannd365c6c2012-06-10 15:16:18 +0200110}
111
112static void uhid_hid_close(struct hid_device *hid)
113{
David Herrmanne7191472012-06-10 15:16:22 +0200114 struct uhid_device *uhid = hid->driver_data;
115
116 uhid_queue_event(uhid, UHID_CLOSE);
David Herrmannd365c6c2012-06-10 15:16:18 +0200117}
118
David Herrmannd365c6c2012-06-10 15:16:18 +0200119static int uhid_hid_parse(struct hid_device *hid)
120{
David Herrmann037c0612012-06-10 15:16:20 +0200121 struct uhid_device *uhid = hid->driver_data;
122
123 return hid_parse_report(hid, uhid->rd_data, uhid->rd_size);
David Herrmannd365c6c2012-06-10 15:16:18 +0200124}
125
Jiri Kosina289a7162014-02-17 14:49:34 +0100126static int uhid_hid_get_raw(struct hid_device *hid, unsigned char rnum,
127 __u8 *buf, size_t count, unsigned char rtype)
128{
129 struct uhid_device *uhid = hid->driver_data;
130 __u8 report_type;
131 struct uhid_event *ev;
132 unsigned long flags;
133 int ret;
134 size_t uninitialized_var(len);
135 struct uhid_feature_answer_req *req;
136
137 if (!uhid->running)
138 return -EIO;
139
140 switch (rtype) {
141 case HID_FEATURE_REPORT:
142 report_type = UHID_FEATURE_REPORT;
143 break;
144 case HID_OUTPUT_REPORT:
145 report_type = UHID_OUTPUT_REPORT;
146 break;
147 case HID_INPUT_REPORT:
148 report_type = UHID_INPUT_REPORT;
149 break;
150 default:
151 return -EINVAL;
152 }
153
154 ret = mutex_lock_interruptible(&uhid->report_lock);
155 if (ret)
156 return ret;
157
158 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
159 if (!ev) {
160 ret = -ENOMEM;
161 goto unlock;
162 }
163
164 spin_lock_irqsave(&uhid->qlock, flags);
165 ev->type = UHID_FEATURE;
166 ev->u.feature.id = atomic_inc_return(&uhid->report_id);
167 ev->u.feature.rnum = rnum;
168 ev->u.feature.rtype = report_type;
169
170 atomic_set(&uhid->report_done, 0);
171 uhid_queue(uhid, ev);
172 spin_unlock_irqrestore(&uhid->qlock, flags);
173
174 ret = wait_event_interruptible_timeout(uhid->report_wait,
175 atomic_read(&uhid->report_done), 5 * HZ);
176
177 /*
178 * Make sure "uhid->running" is cleared on shutdown before
179 * "uhid->report_done" is set.
180 */
181 smp_rmb();
182 if (!ret || !uhid->running) {
183 ret = -EIO;
184 } else if (ret < 0) {
185 ret = -ERESTARTSYS;
186 } else {
187 spin_lock_irqsave(&uhid->qlock, flags);
188 req = &uhid->report_buf.u.feature_answer;
189
190 if (req->err) {
191 ret = -EIO;
192 } else {
193 ret = 0;
194 len = min(count,
195 min_t(size_t, req->size, UHID_DATA_MAX));
196 memcpy(buf, req->data, len);
197 }
198
199 spin_unlock_irqrestore(&uhid->qlock, flags);
200 }
201
202 atomic_set(&uhid->report_done, 1);
203
204unlock:
205 mutex_unlock(&uhid->report_lock);
206 return ret ? ret : len;
207}
208
David Herrmannd365c6c2012-06-10 15:16:18 +0200209static int uhid_hid_output_raw(struct hid_device *hid, __u8 *buf, size_t count,
210 unsigned char report_type)
211{
David Herrmann3b3baa82012-06-10 15:16:24 +0200212 struct uhid_device *uhid = hid->driver_data;
213 __u8 rtype;
214 unsigned long flags;
215 struct uhid_event *ev;
216
217 switch (report_type) {
218 case HID_FEATURE_REPORT:
219 rtype = UHID_FEATURE_REPORT;
220 break;
221 case HID_OUTPUT_REPORT:
222 rtype = UHID_OUTPUT_REPORT;
223 break;
224 default:
225 return -EINVAL;
226 }
227
228 if (count < 1 || count > UHID_DATA_MAX)
229 return -EINVAL;
230
231 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
232 if (!ev)
233 return -ENOMEM;
234
235 ev->type = UHID_OUTPUT;
236 ev->u.output.size = count;
237 ev->u.output.rtype = rtype;
238 memcpy(ev->u.output.data, buf, count);
239
240 spin_lock_irqsave(&uhid->qlock, flags);
241 uhid_queue(uhid, ev);
242 spin_unlock_irqrestore(&uhid->qlock, flags);
243
244 return count;
David Herrmannd365c6c2012-06-10 15:16:18 +0200245}
246
Frank Praznik596cfdd2014-01-22 13:49:43 -0500247static int uhid_hid_output_report(struct hid_device *hid, __u8 *buf,
248 size_t count)
249{
Benjamin Tissoires41abfb32014-02-10 12:58:46 -0500250 return uhid_hid_output_raw(hid, buf, count, HID_OUTPUT_REPORT);
Frank Praznik596cfdd2014-01-22 13:49:43 -0500251}
252
David Herrmannd365c6c2012-06-10 15:16:18 +0200253static struct hid_ll_driver uhid_hid_driver = {
254 .start = uhid_hid_start,
255 .stop = uhid_hid_stop,
256 .open = uhid_hid_open,
257 .close = uhid_hid_close,
David Herrmannd365c6c2012-06-10 15:16:18 +0200258 .parse = uhid_hid_parse,
Frank Praznik596cfdd2014-01-22 13:49:43 -0500259 .output_report = uhid_hid_output_report,
David Herrmannd365c6c2012-06-10 15:16:18 +0200260};
261
Dmitry Torokhovbefde022013-02-18 11:26:11 +0100262#ifdef CONFIG_COMPAT
263
264/* Apparently we haven't stepped on these rakes enough times yet. */
265struct uhid_create_req_compat {
266 __u8 name[128];
267 __u8 phys[64];
268 __u8 uniq[64];
269
270 compat_uptr_t rd_data;
271 __u16 rd_size;
272
273 __u16 bus;
274 __u32 vendor;
275 __u32 product;
276 __u32 version;
277 __u32 country;
278} __attribute__((__packed__));
279
280static int uhid_event_from_user(const char __user *buffer, size_t len,
281 struct uhid_event *event)
282{
283 if (is_compat_task()) {
284 u32 type;
285
286 if (get_user(type, buffer))
287 return -EFAULT;
288
289 if (type == UHID_CREATE) {
290 /*
291 * This is our messed up request with compat pointer.
292 * It is largish (more than 256 bytes) so we better
293 * allocate it from the heap.
294 */
295 struct uhid_create_req_compat *compat;
296
David Herrmann80897aa2013-11-26 13:58:18 +0100297 compat = kzalloc(sizeof(*compat), GFP_KERNEL);
Dmitry Torokhovbefde022013-02-18 11:26:11 +0100298 if (!compat)
299 return -ENOMEM;
300
301 buffer += sizeof(type);
302 len -= sizeof(type);
303 if (copy_from_user(compat, buffer,
304 min(len, sizeof(*compat)))) {
305 kfree(compat);
306 return -EFAULT;
307 }
308
309 /* Shuffle the data over to proper structure */
310 event->type = type;
311
312 memcpy(event->u.create.name, compat->name,
313 sizeof(compat->name));
314 memcpy(event->u.create.phys, compat->phys,
315 sizeof(compat->phys));
316 memcpy(event->u.create.uniq, compat->uniq,
317 sizeof(compat->uniq));
318
319 event->u.create.rd_data = compat_ptr(compat->rd_data);
320 event->u.create.rd_size = compat->rd_size;
321
322 event->u.create.bus = compat->bus;
323 event->u.create.vendor = compat->vendor;
324 event->u.create.product = compat->product;
325 event->u.create.version = compat->version;
326 event->u.create.country = compat->country;
327
328 kfree(compat);
329 return 0;
330 }
331 /* All others can be copied directly */
332 }
333
334 if (copy_from_user(event, buffer, min(len, sizeof(*event))))
335 return -EFAULT;
336
337 return 0;
338}
339#else
340static int uhid_event_from_user(const char __user *buffer, size_t len,
341 struct uhid_event *event)
342{
343 if (copy_from_user(event, buffer, min(len, sizeof(*event))))
344 return -EFAULT;
345
346 return 0;
347}
348#endif
349
David Herrmannd365c6c2012-06-10 15:16:18 +0200350static int uhid_dev_create(struct uhid_device *uhid,
351 const struct uhid_event *ev)
352{
353 struct hid_device *hid;
354 int ret;
355
356 if (uhid->running)
357 return -EALREADY;
358
359 uhid->rd_size = ev->u.create.rd_size;
360 if (uhid->rd_size <= 0 || uhid->rd_size > HID_MAX_DESCRIPTOR_SIZE)
361 return -EINVAL;
362
363 uhid->rd_data = kmalloc(uhid->rd_size, GFP_KERNEL);
364 if (!uhid->rd_data)
365 return -ENOMEM;
366
367 if (copy_from_user(uhid->rd_data, ev->u.create.rd_data,
368 uhid->rd_size)) {
369 ret = -EFAULT;
370 goto err_free;
371 }
372
373 hid = hid_allocate_device();
374 if (IS_ERR(hid)) {
375 ret = PTR_ERR(hid);
376 goto err_free;
377 }
378
379 strncpy(hid->name, ev->u.create.name, 127);
380 hid->name[127] = 0;
381 strncpy(hid->phys, ev->u.create.phys, 63);
382 hid->phys[63] = 0;
383 strncpy(hid->uniq, ev->u.create.uniq, 63);
384 hid->uniq[63] = 0;
385
386 hid->ll_driver = &uhid_hid_driver;
David Herrmannd365c6c2012-06-10 15:16:18 +0200387 hid->hid_output_raw_report = uhid_hid_output_raw;
388 hid->bus = ev->u.create.bus;
389 hid->vendor = ev->u.create.vendor;
390 hid->product = ev->u.create.product;
391 hid->version = ev->u.create.version;
392 hid->country = ev->u.create.country;
393 hid->driver_data = uhid;
394 hid->dev.parent = uhid_misc.this_device;
395
396 uhid->hid = hid;
397 uhid->running = true;
398
399 ret = hid_add_device(hid);
400 if (ret) {
401 hid_err(hid, "Cannot register HID device\n");
402 goto err_hid;
403 }
404
405 return 0;
406
407err_hid:
408 hid_destroy_device(hid);
409 uhid->hid = NULL;
410 uhid->running = false;
411err_free:
412 kfree(uhid->rd_data);
413 return ret;
414}
415
416static int uhid_dev_destroy(struct uhid_device *uhid)
417{
418 if (!uhid->running)
419 return -EINVAL;
420
David Herrmannfcfcf0d2012-06-10 15:16:25 +0200421 /* clear "running" before setting "report_done" */
David Herrmannd365c6c2012-06-10 15:16:18 +0200422 uhid->running = false;
David Herrmannfcfcf0d2012-06-10 15:16:25 +0200423 smp_wmb();
424 atomic_set(&uhid->report_done, 1);
425 wake_up_interruptible(&uhid->report_wait);
David Herrmannd365c6c2012-06-10 15:16:18 +0200426
427 hid_destroy_device(uhid->hid);
428 kfree(uhid->rd_data);
429
430 return 0;
431}
432
David Herrmann5e87a362012-06-10 15:16:19 +0200433static int uhid_dev_input(struct uhid_device *uhid, struct uhid_event *ev)
434{
435 if (!uhid->running)
436 return -EINVAL;
437
438 hid_input_report(uhid->hid, HID_INPUT_REPORT, ev->u.input.data,
439 min_t(size_t, ev->u.input.size, UHID_DATA_MAX), 0);
440
441 return 0;
442}
443
David Herrmannfcfcf0d2012-06-10 15:16:25 +0200444static int uhid_dev_feature_answer(struct uhid_device *uhid,
445 struct uhid_event *ev)
446{
447 unsigned long flags;
448
449 if (!uhid->running)
450 return -EINVAL;
451
452 spin_lock_irqsave(&uhid->qlock, flags);
453
454 /* id for old report; drop it silently */
455 if (atomic_read(&uhid->report_id) != ev->u.feature_answer.id)
456 goto unlock;
457 if (atomic_read(&uhid->report_done))
458 goto unlock;
459
460 memcpy(&uhid->report_buf, ev, sizeof(*ev));
461 atomic_set(&uhid->report_done, 1);
462 wake_up_interruptible(&uhid->report_wait);
463
464unlock:
465 spin_unlock_irqrestore(&uhid->qlock, flags);
466 return 0;
467}
468
David Herrmann1ccd7a22012-06-10 15:16:13 +0200469static int uhid_char_open(struct inode *inode, struct file *file)
470{
David Herrmannace3d862012-06-10 15:16:14 +0200471 struct uhid_device *uhid;
472
473 uhid = kzalloc(sizeof(*uhid), GFP_KERNEL);
474 if (!uhid)
475 return -ENOMEM;
476
David Herrmannd937ae52012-06-10 15:16:16 +0200477 mutex_init(&uhid->devlock);
David Herrmannfcfcf0d2012-06-10 15:16:25 +0200478 mutex_init(&uhid->report_lock);
David Herrmannace3d862012-06-10 15:16:14 +0200479 spin_lock_init(&uhid->qlock);
480 init_waitqueue_head(&uhid->waitq);
David Herrmannfcfcf0d2012-06-10 15:16:25 +0200481 init_waitqueue_head(&uhid->report_wait);
David Herrmannd365c6c2012-06-10 15:16:18 +0200482 uhid->running = false;
David Herrmannfcfcf0d2012-06-10 15:16:25 +0200483 atomic_set(&uhid->report_done, 1);
David Herrmannace3d862012-06-10 15:16:14 +0200484
485 file->private_data = uhid;
486 nonseekable_open(inode, file);
487
David Herrmann1ccd7a22012-06-10 15:16:13 +0200488 return 0;
489}
490
491static int uhid_char_release(struct inode *inode, struct file *file)
492{
David Herrmannace3d862012-06-10 15:16:14 +0200493 struct uhid_device *uhid = file->private_data;
494 unsigned int i;
495
David Herrmannd365c6c2012-06-10 15:16:18 +0200496 uhid_dev_destroy(uhid);
497
David Herrmannace3d862012-06-10 15:16:14 +0200498 for (i = 0; i < UHID_BUFSIZE; ++i)
499 kfree(uhid->outq[i]);
500
501 kfree(uhid);
502
David Herrmann1ccd7a22012-06-10 15:16:13 +0200503 return 0;
504}
505
506static ssize_t uhid_char_read(struct file *file, char __user *buffer,
507 size_t count, loff_t *ppos)
508{
David Herrmannd937ae52012-06-10 15:16:16 +0200509 struct uhid_device *uhid = file->private_data;
510 int ret;
511 unsigned long flags;
512 size_t len;
513
514 /* they need at least the "type" member of uhid_event */
515 if (count < sizeof(__u32))
516 return -EINVAL;
517
518try_again:
519 if (file->f_flags & O_NONBLOCK) {
520 if (uhid->head == uhid->tail)
521 return -EAGAIN;
522 } else {
523 ret = wait_event_interruptible(uhid->waitq,
524 uhid->head != uhid->tail);
525 if (ret)
526 return ret;
527 }
528
529 ret = mutex_lock_interruptible(&uhid->devlock);
530 if (ret)
531 return ret;
532
533 if (uhid->head == uhid->tail) {
534 mutex_unlock(&uhid->devlock);
535 goto try_again;
536 } else {
537 len = min(count, sizeof(**uhid->outq));
Vinicius Costa Gomesadefb692012-07-14 18:59:25 -0300538 if (copy_to_user(buffer, uhid->outq[uhid->tail], len)) {
David Herrmannd937ae52012-06-10 15:16:16 +0200539 ret = -EFAULT;
540 } else {
541 kfree(uhid->outq[uhid->tail]);
542 uhid->outq[uhid->tail] = NULL;
543
544 spin_lock_irqsave(&uhid->qlock, flags);
545 uhid->tail = (uhid->tail + 1) % UHID_BUFSIZE;
546 spin_unlock_irqrestore(&uhid->qlock, flags);
547 }
548 }
549
550 mutex_unlock(&uhid->devlock);
551 return ret ? ret : len;
David Herrmann1ccd7a22012-06-10 15:16:13 +0200552}
553
554static ssize_t uhid_char_write(struct file *file, const char __user *buffer,
555 size_t count, loff_t *ppos)
556{
David Herrmann6664ef72012-06-10 15:16:17 +0200557 struct uhid_device *uhid = file->private_data;
558 int ret;
559 size_t len;
560
561 /* we need at least the "type" member of uhid_event */
562 if (count < sizeof(__u32))
563 return -EINVAL;
564
565 ret = mutex_lock_interruptible(&uhid->devlock);
566 if (ret)
567 return ret;
568
569 memset(&uhid->input_buf, 0, sizeof(uhid->input_buf));
570 len = min(count, sizeof(uhid->input_buf));
Dmitry Torokhovbefde022013-02-18 11:26:11 +0100571
572 ret = uhid_event_from_user(buffer, len, &uhid->input_buf);
573 if (ret)
David Herrmann6664ef72012-06-10 15:16:17 +0200574 goto unlock;
David Herrmann6664ef72012-06-10 15:16:17 +0200575
576 switch (uhid->input_buf.type) {
David Herrmannd365c6c2012-06-10 15:16:18 +0200577 case UHID_CREATE:
578 ret = uhid_dev_create(uhid, &uhid->input_buf);
579 break;
580 case UHID_DESTROY:
581 ret = uhid_dev_destroy(uhid);
582 break;
David Herrmann5e87a362012-06-10 15:16:19 +0200583 case UHID_INPUT:
584 ret = uhid_dev_input(uhid, &uhid->input_buf);
585 break;
David Herrmannfcfcf0d2012-06-10 15:16:25 +0200586 case UHID_FEATURE_ANSWER:
587 ret = uhid_dev_feature_answer(uhid, &uhid->input_buf);
588 break;
David Herrmann6664ef72012-06-10 15:16:17 +0200589 default:
590 ret = -EOPNOTSUPP;
591 }
592
593unlock:
594 mutex_unlock(&uhid->devlock);
595
596 /* return "count" not "len" to not confuse the caller */
597 return ret ? ret : count;
David Herrmann1ccd7a22012-06-10 15:16:13 +0200598}
599
600static unsigned int uhid_char_poll(struct file *file, poll_table *wait)
601{
David Herrmann1f9dec12012-06-10 15:16:15 +0200602 struct uhid_device *uhid = file->private_data;
603
604 poll_wait(file, &uhid->waitq, wait);
605
606 if (uhid->head != uhid->tail)
607 return POLLIN | POLLRDNORM;
608
David Herrmann1ccd7a22012-06-10 15:16:13 +0200609 return 0;
610}
611
612static const struct file_operations uhid_fops = {
613 .owner = THIS_MODULE,
614 .open = uhid_char_open,
615 .release = uhid_char_release,
616 .read = uhid_char_read,
617 .write = uhid_char_write,
618 .poll = uhid_char_poll,
619 .llseek = no_llseek,
620};
621
622static struct miscdevice uhid_misc = {
623 .fops = &uhid_fops,
David Herrmann19872d22013-09-09 18:33:54 +0200624 .minor = UHID_MINOR,
David Herrmann1ccd7a22012-06-10 15:16:13 +0200625 .name = UHID_NAME,
626};
627
628static int __init uhid_init(void)
629{
630 return misc_register(&uhid_misc);
631}
632
633static void __exit uhid_exit(void)
634{
635 misc_deregister(&uhid_misc);
636}
637
638module_init(uhid_init);
639module_exit(uhid_exit);
640MODULE_LICENSE("GPL");
641MODULE_AUTHOR("David Herrmann <dh.herrmann@gmail.com>");
642MODULE_DESCRIPTION("User-space I/O driver support for HID subsystem");
David Herrmann19872d22013-09-09 18:33:54 +0200643MODULE_ALIAS_MISCDEV(UHID_MINOR);
Marcel Holtmann60cbd532013-09-01 11:02:46 -0700644MODULE_ALIAS("devname:" UHID_NAME);