2 HIDP implementation for Linux Bluetooth stack (BlueZ).
3 Copyright (C) 2003-2004 Marcel Holtmann <marcel@holtmann.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License version 2 as
7 published by the Free Software Foundation;
9 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
10 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
11 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
12 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
13 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
14 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
19 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
20 SOFTWARE IS DISCLAIMED.
23 #include <linux/module.h>
25 #include <linux/types.h>
26 #include <linux/errno.h>
27 #include <linux/kernel.h>
28 #include <linux/sched.h>
29 #include <linux/slab.h>
30 #include <linux/poll.h>
31 #include <linux/freezer.h>
32 #include <linux/fcntl.h>
33 #include <linux/skbuff.h>
34 #include <linux/socket.h>
35 #include <linux/ioctl.h>
36 #include <linux/file.h>
37 #include <linux/init.h>
38 #include <linux/wait.h>
39 #include <linux/mutex.h>
40 #include <linux/kthread.h>
43 #include <linux/input.h>
44 #include <linux/hid.h>
45 #include <linux/hidraw.h>
47 #include <net/bluetooth/bluetooth.h>
48 #include <net/bluetooth/hci_core.h>
49 #include <net/bluetooth/l2cap.h>
55 static DECLARE_RWSEM(hidp_session_sem
);
56 static LIST_HEAD(hidp_session_list
);
58 static unsigned char hidp_keycode
[256] = {
59 0, 0, 0, 0, 30, 48, 46, 32, 18, 33, 34, 35, 23, 36,
60 37, 38, 50, 49, 24, 25, 16, 19, 31, 20, 22, 47, 17, 45,
61 21, 44, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 1,
62 14, 15, 57, 12, 13, 26, 27, 43, 43, 39, 40, 41, 51, 52,
63 53, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 87, 88,
64 99, 70, 119, 110, 102, 104, 111, 107, 109, 106, 105, 108, 103, 69,
65 98, 55, 74, 78, 96, 79, 80, 81, 75, 76, 77, 71, 72, 73,
66 82, 83, 86, 127, 116, 117, 183, 184, 185, 186, 187, 188, 189, 190,
67 191, 192, 193, 194, 134, 138, 130, 132, 128, 129, 131, 137, 133, 135,
68 136, 113, 115, 114, 0, 0, 0, 121, 0, 89, 93, 124, 92, 94,
69 95, 0, 0, 0, 122, 123, 90, 91, 85, 0, 0, 0, 0, 0,
70 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
71 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
72 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
73 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
74 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
75 29, 42, 56, 125, 97, 54, 100, 126, 164, 166, 165, 163, 161, 115,
76 114, 113, 150, 158, 159, 128, 136, 177, 178, 176, 142, 152, 173, 140
79 static unsigned char hidp_mkeyspat
[] = { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01 };
81 static struct hidp_session
*__hidp_get_session(bdaddr_t
*bdaddr
)
83 struct hidp_session
*session
;
88 list_for_each(p
, &hidp_session_list
) {
89 session
= list_entry(p
, struct hidp_session
, list
);
90 if (!bacmp(bdaddr
, &session
->bdaddr
))
96 static void __hidp_link_session(struct hidp_session
*session
)
98 __module_get(THIS_MODULE
);
99 list_add(&session
->list
, &hidp_session_list
);
101 hci_conn_hold_device(session
->conn
);
104 static void __hidp_unlink_session(struct hidp_session
*session
)
106 hci_conn_put_device(session
->conn
);
108 list_del(&session
->list
);
109 module_put(THIS_MODULE
);
112 static void __hidp_copy_session(struct hidp_session
*session
, struct hidp_conninfo
*ci
)
114 memset(ci
, 0, sizeof(*ci
));
115 bacpy(&ci
->bdaddr
, &session
->bdaddr
);
117 ci
->flags
= session
->flags
;
118 ci
->state
= session
->state
;
121 ci
->product
= 0x0000;
122 ci
->version
= 0x0000;
124 if (session
->input
) {
125 ci
->vendor
= session
->input
->id
.vendor
;
126 ci
->product
= session
->input
->id
.product
;
127 ci
->version
= session
->input
->id
.version
;
128 if (session
->input
->name
)
129 strncpy(ci
->name
, session
->input
->name
, 128);
131 strncpy(ci
->name
, "HID Boot Device", 128);
135 ci
->vendor
= session
->hid
->vendor
;
136 ci
->product
= session
->hid
->product
;
137 ci
->version
= session
->hid
->version
;
138 strncpy(ci
->name
, session
->hid
->name
, 128);
142 static int hidp_queue_event(struct hidp_session
*session
, struct input_dev
*dev
,
143 unsigned int type
, unsigned int code
, int value
)
145 unsigned char newleds
;
148 BT_DBG("session %p type %d code %d value %d", session
, type
, code
, value
);
153 newleds
= (!!test_bit(LED_KANA
, dev
->led
) << 3) |
154 (!!test_bit(LED_COMPOSE
, dev
->led
) << 3) |
155 (!!test_bit(LED_SCROLLL
, dev
->led
) << 2) |
156 (!!test_bit(LED_CAPSL
, dev
->led
) << 1) |
157 (!!test_bit(LED_NUML
, dev
->led
));
159 if (session
->leds
== newleds
)
162 session
->leds
= newleds
;
164 skb
= alloc_skb(3, GFP_ATOMIC
);
166 BT_ERR("Can't allocate memory for new frame");
170 *skb_put(skb
, 1) = HIDP_TRANS_DATA
| HIDP_DATA_RTYPE_OUPUT
;
171 *skb_put(skb
, 1) = 0x01;
172 *skb_put(skb
, 1) = newleds
;
174 skb_queue_tail(&session
->intr_transmit
, skb
);
176 hidp_schedule(session
);
181 static int hidp_hidinput_event(struct input_dev
*dev
, unsigned int type
, unsigned int code
, int value
)
183 struct hid_device
*hid
= input_get_drvdata(dev
);
184 struct hidp_session
*session
= hid
->driver_data
;
186 return hidp_queue_event(session
, dev
, type
, code
, value
);
189 static int hidp_input_event(struct input_dev
*dev
, unsigned int type
, unsigned int code
, int value
)
191 struct hidp_session
*session
= input_get_drvdata(dev
);
193 return hidp_queue_event(session
, dev
, type
, code
, value
);
196 static void hidp_input_report(struct hidp_session
*session
, struct sk_buff
*skb
)
198 struct input_dev
*dev
= session
->input
;
199 unsigned char *keys
= session
->keys
;
200 unsigned char *udata
= skb
->data
+ 1;
201 signed char *sdata
= skb
->data
+ 1;
202 int i
, size
= skb
->len
- 1;
204 switch (skb
->data
[0]) {
205 case 0x01: /* Keyboard report */
206 for (i
= 0; i
< 8; i
++)
207 input_report_key(dev
, hidp_keycode
[i
+ 224], (udata
[0] >> i
) & 1);
209 /* If all the key codes have been set to 0x01, it means
210 * too many keys were pressed at the same time. */
211 if (!memcmp(udata
+ 2, hidp_mkeyspat
, 6))
214 for (i
= 2; i
< 8; i
++) {
215 if (keys
[i
] > 3 && memscan(udata
+ 2, keys
[i
], 6) == udata
+ 8) {
216 if (hidp_keycode
[keys
[i
]])
217 input_report_key(dev
, hidp_keycode
[keys
[i
]], 0);
219 BT_ERR("Unknown key (scancode %#x) released.", keys
[i
]);
222 if (udata
[i
] > 3 && memscan(keys
+ 2, udata
[i
], 6) == keys
+ 8) {
223 if (hidp_keycode
[udata
[i
]])
224 input_report_key(dev
, hidp_keycode
[udata
[i
]], 1);
226 BT_ERR("Unknown key (scancode %#x) pressed.", udata
[i
]);
230 memcpy(keys
, udata
, 8);
233 case 0x02: /* Mouse report */
234 input_report_key(dev
, BTN_LEFT
, sdata
[0] & 0x01);
235 input_report_key(dev
, BTN_RIGHT
, sdata
[0] & 0x02);
236 input_report_key(dev
, BTN_MIDDLE
, sdata
[0] & 0x04);
237 input_report_key(dev
, BTN_SIDE
, sdata
[0] & 0x08);
238 input_report_key(dev
, BTN_EXTRA
, sdata
[0] & 0x10);
240 input_report_rel(dev
, REL_X
, sdata
[1]);
241 input_report_rel(dev
, REL_Y
, sdata
[2]);
244 input_report_rel(dev
, REL_WHEEL
, sdata
[3]);
251 static int __hidp_send_ctrl_message(struct hidp_session
*session
,
252 unsigned char hdr
, unsigned char *data
, int size
)
256 BT_DBG("session %p data %p size %d", session
, data
, size
);
258 skb
= alloc_skb(size
+ 1, GFP_ATOMIC
);
260 BT_ERR("Can't allocate memory for new frame");
264 *skb_put(skb
, 1) = hdr
;
265 if (data
&& size
> 0)
266 memcpy(skb_put(skb
, size
), data
, size
);
268 skb_queue_tail(&session
->ctrl_transmit
, skb
);
273 static inline int hidp_send_ctrl_message(struct hidp_session
*session
,
274 unsigned char hdr
, unsigned char *data
, int size
)
278 err
= __hidp_send_ctrl_message(session
, hdr
, data
, size
);
280 hidp_schedule(session
);
285 static int hidp_queue_report(struct hidp_session
*session
,
286 unsigned char *data
, int size
)
290 BT_DBG("session %p hid %p data %p size %d", session
, session
->hid
, data
, size
);
292 skb
= alloc_skb(size
+ 1, GFP_ATOMIC
);
294 BT_ERR("Can't allocate memory for new frame");
298 *skb_put(skb
, 1) = 0xa2;
300 memcpy(skb_put(skb
, size
), data
, size
);
302 skb_queue_tail(&session
->intr_transmit
, skb
);
304 hidp_schedule(session
);
309 static int hidp_send_report(struct hidp_session
*session
, struct hid_report
*report
)
311 unsigned char buf
[32];
314 rsize
= ((report
->size
- 1) >> 3) + 1 + (report
->id
> 0);
315 if (rsize
> sizeof(buf
))
318 hid_output_report(report
, buf
);
320 return hidp_queue_report(session
, buf
, rsize
);
323 static int hidp_get_raw_report(struct hid_device
*hid
,
324 unsigned char report_number
,
325 unsigned char *data
, size_t count
,
326 unsigned char report_type
)
328 struct hidp_session
*session
= hid
->driver_data
;
331 int numbered_reports
= hid
->report_enum
[report_type
].numbered
;
333 switch (report_type
) {
334 case HID_FEATURE_REPORT
:
335 report_type
= HIDP_TRANS_GET_REPORT
| HIDP_DATA_RTYPE_FEATURE
;
337 case HID_INPUT_REPORT
:
338 report_type
= HIDP_TRANS_GET_REPORT
| HIDP_DATA_RTYPE_INPUT
;
340 case HID_OUTPUT_REPORT
:
341 report_type
= HIDP_TRANS_GET_REPORT
| HIDP_DATA_RTYPE_OUPUT
;
347 if (mutex_lock_interruptible(&session
->report_mutex
))
350 /* Set up our wait, and send the report request to the device. */
351 session
->waiting_report_type
= report_type
& HIDP_DATA_RTYPE_MASK
;
352 session
->waiting_report_number
= numbered_reports
? report_number
: -1;
353 set_bit(HIDP_WAITING_FOR_RETURN
, &session
->flags
);
354 data
[0] = report_number
;
355 if (hidp_send_ctrl_message(hid
->driver_data
, report_type
, data
, 1))
358 /* Wait for the return of the report. The returned report
359 gets put in session->report_return. */
360 while (test_bit(HIDP_WAITING_FOR_RETURN
, &session
->flags
)) {
363 res
= wait_event_interruptible_timeout(session
->report_queue
,
364 !test_bit(HIDP_WAITING_FOR_RETURN
, &session
->flags
),
376 skb
= session
->report_return
;
378 len
= skb
->len
< count
? skb
->len
: count
;
379 memcpy(data
, skb
->data
, len
);
382 session
->report_return
= NULL
;
384 /* Device returned a HANDSHAKE, indicating protocol error. */
388 clear_bit(HIDP_WAITING_FOR_RETURN
, &session
->flags
);
389 mutex_unlock(&session
->report_mutex
);
394 clear_bit(HIDP_WAITING_FOR_RETURN
, &session
->flags
);
395 mutex_unlock(&session
->report_mutex
);
398 clear_bit(HIDP_WAITING_FOR_RETURN
, &session
->flags
);
399 mutex_unlock(&session
->report_mutex
);
403 static int hidp_output_raw_report(struct hid_device
*hid
, unsigned char *data
, size_t count
,
404 unsigned char report_type
)
406 struct hidp_session
*session
= hid
->driver_data
;
409 switch (report_type
) {
410 case HID_FEATURE_REPORT
:
411 report_type
= HIDP_TRANS_SET_REPORT
| HIDP_DATA_RTYPE_FEATURE
;
413 case HID_OUTPUT_REPORT
:
414 report_type
= HIDP_TRANS_SET_REPORT
| HIDP_DATA_RTYPE_OUPUT
;
420 if (mutex_lock_interruptible(&session
->report_mutex
))
423 /* Set up our wait, and send the report request to the device. */
424 set_bit(HIDP_WAITING_FOR_SEND_ACK
, &session
->flags
);
425 if (hidp_send_ctrl_message(hid
->driver_data
, report_type
,
431 /* Wait for the ACK from the device. */
432 while (test_bit(HIDP_WAITING_FOR_SEND_ACK
, &session
->flags
)) {
435 res
= wait_event_interruptible_timeout(session
->report_queue
,
436 !test_bit(HIDP_WAITING_FOR_SEND_ACK
, &session
->flags
),
450 if (!session
->output_report_success
) {
458 clear_bit(HIDP_WAITING_FOR_SEND_ACK
, &session
->flags
);
459 mutex_unlock(&session
->report_mutex
);
463 static void hidp_idle_timeout(unsigned long arg
)
465 struct hidp_session
*session
= (struct hidp_session
*) arg
;
467 atomic_inc(&session
->terminate
);
468 wake_up_process(session
->task
);
471 static void hidp_set_timer(struct hidp_session
*session
)
473 if (session
->idle_to
> 0)
474 mod_timer(&session
->timer
, jiffies
+ HZ
* session
->idle_to
);
477 static inline void hidp_del_timer(struct hidp_session
*session
)
479 if (session
->idle_to
> 0)
480 del_timer(&session
->timer
);
483 static void hidp_process_handshake(struct hidp_session
*session
,
486 BT_DBG("session %p param 0x%02x", session
, param
);
487 session
->output_report_success
= 0; /* default condition */
490 case HIDP_HSHK_SUCCESSFUL
:
491 /* FIXME: Call into SET_ GET_ handlers here */
492 session
->output_report_success
= 1;
495 case HIDP_HSHK_NOT_READY
:
496 case HIDP_HSHK_ERR_INVALID_REPORT_ID
:
497 case HIDP_HSHK_ERR_UNSUPPORTED_REQUEST
:
498 case HIDP_HSHK_ERR_INVALID_PARAMETER
:
499 if (test_bit(HIDP_WAITING_FOR_RETURN
, &session
->flags
)) {
500 clear_bit(HIDP_WAITING_FOR_RETURN
, &session
->flags
);
501 wake_up_interruptible(&session
->report_queue
);
503 /* FIXME: Call into SET_ GET_ handlers here */
506 case HIDP_HSHK_ERR_UNKNOWN
:
509 case HIDP_HSHK_ERR_FATAL
:
510 /* Device requests a reboot, as this is the only way this error
511 * can be recovered. */
512 __hidp_send_ctrl_message(session
,
513 HIDP_TRANS_HID_CONTROL
| HIDP_CTRL_SOFT_RESET
, NULL
, 0);
517 __hidp_send_ctrl_message(session
,
518 HIDP_TRANS_HANDSHAKE
| HIDP_HSHK_ERR_INVALID_PARAMETER
, NULL
, 0);
522 /* Wake up the waiting thread. */
523 if (test_bit(HIDP_WAITING_FOR_SEND_ACK
, &session
->flags
)) {
524 clear_bit(HIDP_WAITING_FOR_SEND_ACK
, &session
->flags
);
525 wake_up_interruptible(&session
->report_queue
);
529 static void hidp_process_hid_control(struct hidp_session
*session
,
532 BT_DBG("session %p param 0x%02x", session
, param
);
534 if (param
== HIDP_CTRL_VIRTUAL_CABLE_UNPLUG
) {
535 /* Flush the transmit queues */
536 skb_queue_purge(&session
->ctrl_transmit
);
537 skb_queue_purge(&session
->intr_transmit
);
539 atomic_inc(&session
->terminate
);
540 wake_up_process(current
);
544 /* Returns true if the passed-in skb should be freed by the caller. */
545 static int hidp_process_data(struct hidp_session
*session
, struct sk_buff
*skb
,
548 int done_with_skb
= 1;
549 BT_DBG("session %p skb %p len %d param 0x%02x", session
, skb
, skb
->len
, param
);
552 case HIDP_DATA_RTYPE_INPUT
:
553 hidp_set_timer(session
);
556 hidp_input_report(session
, skb
);
559 hid_input_report(session
->hid
, HID_INPUT_REPORT
, skb
->data
, skb
->len
, 0);
562 case HIDP_DATA_RTYPE_OTHER
:
563 case HIDP_DATA_RTYPE_OUPUT
:
564 case HIDP_DATA_RTYPE_FEATURE
:
568 __hidp_send_ctrl_message(session
,
569 HIDP_TRANS_HANDSHAKE
| HIDP_HSHK_ERR_INVALID_PARAMETER
, NULL
, 0);
572 if (test_bit(HIDP_WAITING_FOR_RETURN
, &session
->flags
) &&
573 param
== session
->waiting_report_type
) {
574 if (session
->waiting_report_number
< 0 ||
575 session
->waiting_report_number
== skb
->data
[0]) {
576 /* hidp_get_raw_report() is waiting on this report. */
577 session
->report_return
= skb
;
579 clear_bit(HIDP_WAITING_FOR_RETURN
, &session
->flags
);
580 wake_up_interruptible(&session
->report_queue
);
584 return done_with_skb
;
587 static void hidp_recv_ctrl_frame(struct hidp_session
*session
,
590 unsigned char hdr
, type
, param
;
593 BT_DBG("session %p skb %p len %d", session
, skb
, skb
->len
);
598 type
= hdr
& HIDP_HEADER_TRANS_MASK
;
599 param
= hdr
& HIDP_HEADER_PARAM_MASK
;
602 case HIDP_TRANS_HANDSHAKE
:
603 hidp_process_handshake(session
, param
);
606 case HIDP_TRANS_HID_CONTROL
:
607 hidp_process_hid_control(session
, param
);
610 case HIDP_TRANS_DATA
:
611 free_skb
= hidp_process_data(session
, skb
, param
);
615 __hidp_send_ctrl_message(session
,
616 HIDP_TRANS_HANDSHAKE
| HIDP_HSHK_ERR_UNSUPPORTED_REQUEST
, NULL
, 0);
624 static void hidp_recv_intr_frame(struct hidp_session
*session
,
629 BT_DBG("session %p skb %p len %d", session
, skb
, skb
->len
);
634 if (hdr
== (HIDP_TRANS_DATA
| HIDP_DATA_RTYPE_INPUT
)) {
635 hidp_set_timer(session
);
638 hidp_input_report(session
, skb
);
641 hid_input_report(session
->hid
, HID_INPUT_REPORT
, skb
->data
, skb
->len
, 1);
642 BT_DBG("report len %d", skb
->len
);
645 BT_DBG("Unsupported protocol header 0x%02x", hdr
);
651 static int hidp_send_frame(struct socket
*sock
, unsigned char *data
, int len
)
653 struct kvec iv
= { data
, len
};
656 BT_DBG("sock %p data %p len %d", sock
, data
, len
);
661 memset(&msg
, 0, sizeof(msg
));
663 return kernel_sendmsg(sock
, &msg
, &iv
, 1, len
);
666 static void hidp_process_transmit(struct hidp_session
*session
)
670 BT_DBG("session %p", session
);
672 while ((skb
= skb_dequeue(&session
->ctrl_transmit
))) {
673 if (hidp_send_frame(session
->ctrl_sock
, skb
->data
, skb
->len
) < 0) {
674 skb_queue_head(&session
->ctrl_transmit
, skb
);
678 hidp_set_timer(session
);
682 while ((skb
= skb_dequeue(&session
->intr_transmit
))) {
683 if (hidp_send_frame(session
->intr_sock
, skb
->data
, skb
->len
) < 0) {
684 skb_queue_head(&session
->intr_transmit
, skb
);
688 hidp_set_timer(session
);
693 static int hidp_session(void *arg
)
695 struct hidp_session
*session
= arg
;
696 struct sock
*ctrl_sk
= session
->ctrl_sock
->sk
;
697 struct sock
*intr_sk
= session
->intr_sock
->sk
;
699 wait_queue_t ctrl_wait
, intr_wait
;
701 BT_DBG("session %p", session
);
703 set_user_nice(current
, -15);
705 init_waitqueue_entry(&ctrl_wait
, current
);
706 init_waitqueue_entry(&intr_wait
, current
);
707 add_wait_queue(sk_sleep(ctrl_sk
), &ctrl_wait
);
708 add_wait_queue(sk_sleep(intr_sk
), &intr_wait
);
709 session
->waiting_for_startup
= 0;
710 wake_up_interruptible(&session
->startup_queue
);
711 set_current_state(TASK_INTERRUPTIBLE
);
712 while (!atomic_read(&session
->terminate
)) {
713 if (ctrl_sk
->sk_state
!= BT_CONNECTED
||
714 intr_sk
->sk_state
!= BT_CONNECTED
)
717 while ((skb
= skb_dequeue(&ctrl_sk
->sk_receive_queue
))) {
719 hidp_recv_ctrl_frame(session
, skb
);
722 while ((skb
= skb_dequeue(&intr_sk
->sk_receive_queue
))) {
724 hidp_recv_intr_frame(session
, skb
);
727 hidp_process_transmit(session
);
730 set_current_state(TASK_INTERRUPTIBLE
);
732 set_current_state(TASK_RUNNING
);
733 remove_wait_queue(sk_sleep(intr_sk
), &intr_wait
);
734 remove_wait_queue(sk_sleep(ctrl_sk
), &ctrl_wait
);
736 down_write(&hidp_session_sem
);
738 hidp_del_timer(session
);
740 if (session
->input
) {
741 input_unregister_device(session
->input
);
742 session
->input
= NULL
;
746 hid_destroy_device(session
->hid
);
750 /* Wakeup user-space polling for socket errors */
751 session
->intr_sock
->sk
->sk_err
= EUNATCH
;
752 session
->ctrl_sock
->sk
->sk_err
= EUNATCH
;
754 hidp_schedule(session
);
756 fput(session
->intr_sock
->file
);
758 wait_event_timeout(*(sk_sleep(ctrl_sk
)),
759 (ctrl_sk
->sk_state
== BT_CLOSED
), msecs_to_jiffies(500));
761 fput(session
->ctrl_sock
->file
);
763 __hidp_unlink_session(session
);
765 up_write(&hidp_session_sem
);
771 static struct device
*hidp_get_device(struct hidp_session
*session
)
773 bdaddr_t
*src
= &bt_sk(session
->ctrl_sock
->sk
)->src
;
774 bdaddr_t
*dst
= &bt_sk(session
->ctrl_sock
->sk
)->dst
;
775 struct device
*device
= NULL
;
776 struct hci_dev
*hdev
;
778 hdev
= hci_get_route(dst
, src
);
782 session
->conn
= hci_conn_hash_lookup_ba(hdev
, ACL_LINK
, dst
);
784 device
= &session
->conn
->dev
;
791 static int hidp_setup_input(struct hidp_session
*session
,
792 struct hidp_connadd_req
*req
)
794 struct input_dev
*input
;
797 input
= input_allocate_device();
801 session
->input
= input
;
803 input_set_drvdata(input
, session
);
805 input
->name
= "Bluetooth HID Boot Protocol Device";
807 input
->id
.bustype
= BUS_BLUETOOTH
;
808 input
->id
.vendor
= req
->vendor
;
809 input
->id
.product
= req
->product
;
810 input
->id
.version
= req
->version
;
812 if (req
->subclass
& 0x40) {
813 set_bit(EV_KEY
, input
->evbit
);
814 set_bit(EV_LED
, input
->evbit
);
815 set_bit(EV_REP
, input
->evbit
);
817 set_bit(LED_NUML
, input
->ledbit
);
818 set_bit(LED_CAPSL
, input
->ledbit
);
819 set_bit(LED_SCROLLL
, input
->ledbit
);
820 set_bit(LED_COMPOSE
, input
->ledbit
);
821 set_bit(LED_KANA
, input
->ledbit
);
823 for (i
= 0; i
< sizeof(hidp_keycode
); i
++)
824 set_bit(hidp_keycode
[i
], input
->keybit
);
825 clear_bit(0, input
->keybit
);
828 if (req
->subclass
& 0x80) {
829 input
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_REL
);
830 input
->keybit
[BIT_WORD(BTN_MOUSE
)] = BIT_MASK(BTN_LEFT
) |
831 BIT_MASK(BTN_RIGHT
) | BIT_MASK(BTN_MIDDLE
);
832 input
->relbit
[0] = BIT_MASK(REL_X
) | BIT_MASK(REL_Y
);
833 input
->keybit
[BIT_WORD(BTN_MOUSE
)] |= BIT_MASK(BTN_SIDE
) |
835 input
->relbit
[0] |= BIT_MASK(REL_WHEEL
);
838 input
->dev
.parent
= hidp_get_device(session
);
840 input
->event
= hidp_input_event
;
842 err
= input_register_device(input
);
844 hci_conn_put_device(session
->conn
);
851 static int hidp_open(struct hid_device
*hid
)
856 static void hidp_close(struct hid_device
*hid
)
860 static int hidp_parse(struct hid_device
*hid
)
862 struct hidp_session
*session
= hid
->driver_data
;
864 return hid_parse_report(session
->hid
, session
->rd_data
,
868 static int hidp_start(struct hid_device
*hid
)
870 struct hidp_session
*session
= hid
->driver_data
;
871 struct hid_report
*report
;
873 list_for_each_entry(report
, &hid
->report_enum
[HID_INPUT_REPORT
].
875 hidp_send_report(session
, report
);
877 list_for_each_entry(report
, &hid
->report_enum
[HID_FEATURE_REPORT
].
879 hidp_send_report(session
, report
);
884 static void hidp_stop(struct hid_device
*hid
)
886 struct hidp_session
*session
= hid
->driver_data
;
888 skb_queue_purge(&session
->ctrl_transmit
);
889 skb_queue_purge(&session
->intr_transmit
);
894 static struct hid_ll_driver hidp_hid_driver
= {
900 .hidinput_input_event
= hidp_hidinput_event
,
903 /* This function sets up the hid device. It does not add it
904 to the HID system. That is done in hidp_add_connection(). */
905 static int hidp_setup_hid(struct hidp_session
*session
,
906 struct hidp_connadd_req
*req
)
908 struct hid_device
*hid
;
911 session
->rd_data
= kzalloc(req
->rd_size
, GFP_KERNEL
);
912 if (!session
->rd_data
)
915 if (copy_from_user(session
->rd_data
, req
->rd_data
, req
->rd_size
)) {
919 session
->rd_size
= req
->rd_size
;
921 hid
= hid_allocate_device();
929 hid
->driver_data
= session
;
931 hid
->bus
= BUS_BLUETOOTH
;
932 hid
->vendor
= req
->vendor
;
933 hid
->product
= req
->product
;
934 hid
->version
= req
->version
;
935 hid
->country
= req
->country
;
937 strncpy(hid
->name
, req
->name
, sizeof(req
->name
) - 1);
938 strncpy(hid
->phys
, batostr(&bt_sk(session
->ctrl_sock
->sk
)->src
), 64);
939 strncpy(hid
->uniq
, batostr(&bt_sk(session
->ctrl_sock
->sk
)->dst
), 64);
941 hid
->dev
.parent
= hidp_get_device(session
);
942 hid
->ll_driver
= &hidp_hid_driver
;
944 hid
->hid_get_raw_report
= hidp_get_raw_report
;
945 hid
->hid_output_raw_report
= hidp_output_raw_report
;
950 kfree(session
->rd_data
);
951 session
->rd_data
= NULL
;
956 int hidp_add_connection(struct hidp_connadd_req
*req
, struct socket
*ctrl_sock
, struct socket
*intr_sock
)
958 struct hidp_session
*session
, *s
;
964 if (bacmp(&bt_sk(ctrl_sock
->sk
)->src
, &bt_sk(intr_sock
->sk
)->src
) ||
965 bacmp(&bt_sk(ctrl_sock
->sk
)->dst
, &bt_sk(intr_sock
->sk
)->dst
))
968 session
= kzalloc(sizeof(struct hidp_session
), GFP_KERNEL
);
972 BT_DBG("rd_data %p rd_size %d", req
->rd_data
, req
->rd_size
);
974 down_write(&hidp_session_sem
);
976 s
= __hidp_get_session(&bt_sk(ctrl_sock
->sk
)->dst
);
977 if (s
&& s
->state
== BT_CONNECTED
) {
982 bacpy(&session
->bdaddr
, &bt_sk(ctrl_sock
->sk
)->dst
);
984 session
->ctrl_mtu
= min_t(uint
, l2cap_pi(ctrl_sock
->sk
)->chan
->omtu
,
985 l2cap_pi(ctrl_sock
->sk
)->chan
->imtu
);
986 session
->intr_mtu
= min_t(uint
, l2cap_pi(intr_sock
->sk
)->chan
->omtu
,
987 l2cap_pi(intr_sock
->sk
)->chan
->imtu
);
989 BT_DBG("ctrl mtu %d intr mtu %d", session
->ctrl_mtu
, session
->intr_mtu
);
991 session
->ctrl_sock
= ctrl_sock
;
992 session
->intr_sock
= intr_sock
;
993 session
->state
= BT_CONNECTED
;
995 setup_timer(&session
->timer
, hidp_idle_timeout
, (unsigned long)session
);
997 skb_queue_head_init(&session
->ctrl_transmit
);
998 skb_queue_head_init(&session
->intr_transmit
);
1000 mutex_init(&session
->report_mutex
);
1001 init_waitqueue_head(&session
->report_queue
);
1002 init_waitqueue_head(&session
->startup_queue
);
1003 session
->waiting_for_startup
= 1;
1004 session
->flags
= req
->flags
& (1 << HIDP_BLUETOOTH_VENDOR_ID
);
1005 session
->idle_to
= req
->idle_to
;
1007 if (req
->rd_size
> 0) {
1008 err
= hidp_setup_hid(session
, req
);
1009 if (err
&& err
!= -ENODEV
)
1013 if (!session
->hid
) {
1014 err
= hidp_setup_input(session
, req
);
1019 __hidp_link_session(session
);
1021 hidp_set_timer(session
);
1024 vendor
= session
->hid
->vendor
;
1025 product
= session
->hid
->product
;
1026 } else if (session
->input
) {
1027 vendor
= session
->input
->id
.vendor
;
1028 product
= session
->input
->id
.product
;
1034 session
->task
= kthread_run(hidp_session
, session
, "khidpd_%04x%04x",
1036 if (IS_ERR(session
->task
)) {
1037 err
= PTR_ERR(session
->task
);
1041 while (session
->waiting_for_startup
) {
1042 wait_event_interruptible(session
->startup_queue
,
1043 !session
->waiting_for_startup
);
1046 err
= hid_add_device(session
->hid
);
1048 goto err_add_device
;
1050 if (session
->input
) {
1051 hidp_send_ctrl_message(session
,
1052 HIDP_TRANS_SET_PROTOCOL
| HIDP_PROTO_BOOT
, NULL
, 0);
1053 session
->flags
|= (1 << HIDP_BOOT_PROTOCOL_MODE
);
1055 session
->leds
= 0xff;
1056 hidp_input_event(session
->input
, EV_LED
, 0, 0);
1059 up_write(&hidp_session_sem
);
1063 hid_destroy_device(session
->hid
);
1064 session
->hid
= NULL
;
1065 atomic_inc(&session
->terminate
);
1066 wake_up_process(session
->task
);
1069 hidp_del_timer(session
);
1071 __hidp_unlink_session(session
);
1073 if (session
->input
) {
1074 input_unregister_device(session
->input
);
1075 session
->input
= NULL
;
1079 hid_destroy_device(session
->hid
);
1080 session
->hid
= NULL
;
1083 kfree(session
->rd_data
);
1084 session
->rd_data
= NULL
;
1087 skb_queue_purge(&session
->ctrl_transmit
);
1088 skb_queue_purge(&session
->intr_transmit
);
1091 up_write(&hidp_session_sem
);
1093 input_free_device(session
->input
);
1098 int hidp_del_connection(struct hidp_conndel_req
*req
)
1100 struct hidp_session
*session
;
1105 down_read(&hidp_session_sem
);
1107 session
= __hidp_get_session(&req
->bdaddr
);
1109 if (req
->flags
& (1 << HIDP_VIRTUAL_CABLE_UNPLUG
)) {
1110 hidp_send_ctrl_message(session
,
1111 HIDP_TRANS_HID_CONTROL
| HIDP_CTRL_VIRTUAL_CABLE_UNPLUG
, NULL
, 0);
1113 /* Flush the transmit queues */
1114 skb_queue_purge(&session
->ctrl_transmit
);
1115 skb_queue_purge(&session
->intr_transmit
);
1117 atomic_inc(&session
->terminate
);
1118 wake_up_process(session
->task
);
1123 up_read(&hidp_session_sem
);
1127 int hidp_get_connlist(struct hidp_connlist_req
*req
)
1129 struct list_head
*p
;
1134 down_read(&hidp_session_sem
);
1136 list_for_each(p
, &hidp_session_list
) {
1137 struct hidp_session
*session
;
1138 struct hidp_conninfo ci
;
1140 session
= list_entry(p
, struct hidp_session
, list
);
1142 __hidp_copy_session(session
, &ci
);
1144 if (copy_to_user(req
->ci
, &ci
, sizeof(ci
))) {
1149 if (++n
>= req
->cnum
)
1156 up_read(&hidp_session_sem
);
1160 int hidp_get_conninfo(struct hidp_conninfo
*ci
)
1162 struct hidp_session
*session
;
1165 down_read(&hidp_session_sem
);
1167 session
= __hidp_get_session(&ci
->bdaddr
);
1169 __hidp_copy_session(session
, ci
);
1173 up_read(&hidp_session_sem
);
1177 static const struct hid_device_id hidp_table
[] = {
1178 { HID_BLUETOOTH_DEVICE(HID_ANY_ID
, HID_ANY_ID
) },
1182 static struct hid_driver hidp_driver
= {
1183 .name
= "generic-bluetooth",
1184 .id_table
= hidp_table
,
1187 static int __init
hidp_init(void)
1191 BT_INFO("HIDP (Human Interface Emulation) ver %s", VERSION
);
1193 ret
= hid_register_driver(&hidp_driver
);
1197 ret
= hidp_init_sockets();
1203 hid_unregister_driver(&hidp_driver
);
1208 static void __exit
hidp_exit(void)
1210 hidp_cleanup_sockets();
1211 hid_unregister_driver(&hidp_driver
);
1214 module_init(hidp_init
);
1215 module_exit(hidp_exit
);
1217 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1218 MODULE_DESCRIPTION("Bluetooth HIDP ver " VERSION
);
1219 MODULE_VERSION(VERSION
);
1220 MODULE_LICENSE("GPL");
1221 MODULE_ALIAS("bt-proto-6");