blob: 212980ff99b91e47b578b0b30c956aaf79f9129f [file] [log] [blame]
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 HIDP implementation for Linux Bluetooth stack (BlueZ).
3 Copyright (C) 2003-2004 Marcel Holtmann <marcel@holtmann.org>
David Herrmannb4f34d82013-04-06 20:28:46 +02004 Copyright (C) 2013 David Herrmann <dh.herrmann@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License version 2 as
8 published by the Free Software Foundation;
9
10 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
11 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
13 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090014 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
15 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090019 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
20 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 SOFTWARE IS DISCLAIMED.
22*/
23
David Herrmannb4f34d82013-04-06 20:28:46 +020024#include <linux/kref.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/file.h>
Szymon Jancaabf6f82011-04-05 15:37:45 +020027#include <linux/kthread.h>
Marcel Holtmann364f6352009-08-22 14:15:53 -070028#include <linux/hidraw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <net/bluetooth/bluetooth.h>
Marcel Holtmann0a85b962006-07-06 13:09:02 +020031#include <net/bluetooth/hci_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <net/bluetooth/l2cap.h>
33
34#include "hidp.h"
35
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +010036#define VERSION "1.2"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38static DECLARE_RWSEM(hidp_session_sem);
39static LIST_HEAD(hidp_session_list);
40
41static unsigned char hidp_keycode[256] = {
Szymon Janc17f09a72011-03-21 14:20:01 +010042 0, 0, 0, 0, 30, 48, 46, 32, 18, 33, 34, 35, 23, 36,
43 37, 38, 50, 49, 24, 25, 16, 19, 31, 20, 22, 47, 17, 45,
44 21, 44, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 1,
45 14, 15, 57, 12, 13, 26, 27, 43, 43, 39, 40, 41, 51, 52,
46 53, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 87, 88,
47 99, 70, 119, 110, 102, 104, 111, 107, 109, 106, 105, 108, 103, 69,
48 98, 55, 74, 78, 96, 79, 80, 81, 75, 76, 77, 71, 72, 73,
49 82, 83, 86, 127, 116, 117, 183, 184, 185, 186, 187, 188, 189, 190,
50 191, 192, 193, 194, 134, 138, 130, 132, 128, 129, 131, 137, 133, 135,
51 136, 113, 115, 114, 0, 0, 0, 121, 0, 89, 93, 124, 92, 94,
52 95, 0, 0, 0, 122, 123, 90, 91, 85, 0, 0, 0, 0, 0,
53 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
54 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
55 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
56 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
57 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
58 29, 42, 56, 125, 97, 54, 100, 126, 164, 166, 165, 163, 161, 115,
59 114, 113, 150, 158, 159, 128, 136, 177, 178, 176, 142, 152, 173, 140
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
62static unsigned char hidp_mkeyspat[] = { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01 };
63
David Herrmannb4f34d82013-04-06 20:28:46 +020064static int hidp_session_probe(struct l2cap_conn *conn,
65 struct l2cap_user *user);
66static void hidp_session_remove(struct l2cap_conn *conn,
67 struct l2cap_user *user);
68static int hidp_session_thread(void *arg);
69static void hidp_session_terminate(struct hidp_session *s);
70
David Herrmann52051852013-04-06 20:28:47 +020071static void hidp_copy_session(struct hidp_session *session, struct hidp_conninfo *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Vasiliy Kulikovd31dbf62010-10-30 18:26:31 +040073 memset(ci, 0, sizeof(*ci));
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 bacpy(&ci->bdaddr, &session->bdaddr);
75
76 ci->flags = session->flags;
David Herrmanndcc07642013-04-06 20:28:40 +020077 ci->state = BT_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 ci->vendor = 0x0000;
80 ci->product = 0x0000;
81 ci->version = 0x0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 if (session->input) {
84 ci->vendor = session->input->id.vendor;
85 ci->product = session->input->id.product;
86 ci->version = session->input->id.version;
87 if (session->input->name)
88 strncpy(ci->name, session->input->name, 128);
89 else
90 strncpy(ci->name, "HID Boot Device", 128);
91 }
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +010092
93 if (session->hid) {
94 ci->vendor = session->hid->vendor;
95 ci->product = session->hid->product;
96 ci->version = session->hid->version;
97 strncpy(ci->name, session->hid->name, 128);
98 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
David Herrmann41edc0c2013-04-06 20:28:50 +0200101/* assemble skb, queue message on @transmit and wake up the session thread */
102static int hidp_send_message(struct hidp_session *session, struct socket *sock,
103 struct sk_buff_head *transmit, unsigned char hdr,
104 const unsigned char *data, int size)
105{
106 struct sk_buff *skb;
107 struct sock *sk = sock->sk;
108
109 BT_DBG("session %p data %p size %d", session, data, size);
110
111 if (atomic_read(&session->terminate))
112 return -EIO;
113
114 skb = alloc_skb(size + 1, GFP_ATOMIC);
115 if (!skb) {
116 BT_ERR("Can't allocate memory for new frame");
117 return -ENOMEM;
118 }
119
120 *skb_put(skb, 1) = hdr;
121 if (data && size > 0)
122 memcpy(skb_put(skb, size), data, size);
123
124 skb_queue_tail(transmit, skb);
125 wake_up_interruptible(sk_sleep(sk));
126
127 return 0;
128}
129
130static int hidp_send_ctrl_message(struct hidp_session *session,
131 unsigned char hdr, const unsigned char *data,
132 int size)
133{
134 return hidp_send_message(session, session->ctrl_sock,
135 &session->ctrl_transmit, hdr, data, size);
136}
137
138static int hidp_send_intr_message(struct hidp_session *session,
139 unsigned char hdr, const unsigned char *data,
140 int size)
141{
142 return hidp_send_message(session, session->intr_sock,
143 &session->intr_transmit, hdr, data, size);
144}
145
David Herrmannaf87b3d2013-04-06 20:28:51 +0200146static int hidp_input_event(struct input_dev *dev, unsigned int type,
147 unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
David Herrmannaf87b3d2013-04-06 20:28:51 +0200149 struct hidp_session *session = input_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 unsigned char newleds;
David Herrmann41edc0c2013-04-06 20:28:50 +0200151 unsigned char hdr, data[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
David Herrmannaf87b3d2013-04-06 20:28:51 +0200153 BT_DBG("session %p type %d code %d value %d",
154 session, type, code, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 if (type != EV_LED)
157 return -1;
158
159 newleds = (!!test_bit(LED_KANA, dev->led) << 3) |
160 (!!test_bit(LED_COMPOSE, dev->led) << 3) |
161 (!!test_bit(LED_SCROLLL, dev->led) << 2) |
162 (!!test_bit(LED_CAPSL, dev->led) << 1) |
163 (!!test_bit(LED_NUML, dev->led));
164
165 if (session->leds == newleds)
166 return 0;
167
168 session->leds = newleds;
169
David Herrmann41edc0c2013-04-06 20:28:50 +0200170 hdr = HIDP_TRANS_DATA | HIDP_DATA_RTYPE_OUPUT;
171 data[0] = 0x01;
172 data[1] = newleds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
David Herrmann41edc0c2013-04-06 20:28:50 +0200174 return hidp_send_intr_message(session, hdr, data, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177static void hidp_input_report(struct hidp_session *session, struct sk_buff *skb)
178{
179 struct input_dev *dev = session->input;
180 unsigned char *keys = session->keys;
181 unsigned char *udata = skb->data + 1;
182 signed char *sdata = skb->data + 1;
183 int i, size = skb->len - 1;
184
185 switch (skb->data[0]) {
186 case 0x01: /* Keyboard report */
187 for (i = 0; i < 8; i++)
188 input_report_key(dev, hidp_keycode[i + 224], (udata[0] >> i) & 1);
189
190 /* If all the key codes have been set to 0x01, it means
191 * too many keys were pressed at the same time. */
192 if (!memcmp(udata + 2, hidp_mkeyspat, 6))
193 break;
194
195 for (i = 2; i < 8; i++) {
196 if (keys[i] > 3 && memscan(udata + 2, keys[i], 6) == udata + 8) {
197 if (hidp_keycode[keys[i]])
198 input_report_key(dev, hidp_keycode[keys[i]], 0);
199 else
200 BT_ERR("Unknown key (scancode %#x) released.", keys[i]);
201 }
202
203 if (udata[i] > 3 && memscan(keys + 2, udata[i], 6) == keys + 8) {
204 if (hidp_keycode[udata[i]])
205 input_report_key(dev, hidp_keycode[udata[i]], 1);
206 else
207 BT_ERR("Unknown key (scancode %#x) pressed.", udata[i]);
208 }
209 }
210
211 memcpy(keys, udata, 8);
212 break;
213
214 case 0x02: /* Mouse report */
215 input_report_key(dev, BTN_LEFT, sdata[0] & 0x01);
216 input_report_key(dev, BTN_RIGHT, sdata[0] & 0x02);
217 input_report_key(dev, BTN_MIDDLE, sdata[0] & 0x04);
218 input_report_key(dev, BTN_SIDE, sdata[0] & 0x08);
219 input_report_key(dev, BTN_EXTRA, sdata[0] & 0x10);
220
221 input_report_rel(dev, REL_X, sdata[1]);
222 input_report_rel(dev, REL_Y, sdata[2]);
223
224 if (size > 3)
225 input_report_rel(dev, REL_WHEEL, sdata[3]);
226 break;
227 }
228
229 input_sync(dev);
230}
231
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100232static int hidp_send_report(struct hidp_session *session, struct hid_report *report)
233{
Jiri Kosina27ce4052013-07-10 19:56:27 +0200234 unsigned char hdr;
235 u8 *buf;
236 int rsize, ret;
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100237
Jiri Kosina27ce4052013-07-10 19:56:27 +0200238 buf = hid_alloc_report_buf(report, GFP_ATOMIC);
239 if (!buf)
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100240 return -EIO;
241
242 hid_output_report(report, buf);
David Herrmann41edc0c2013-04-06 20:28:50 +0200243 hdr = HIDP_TRANS_DATA | HIDP_DATA_RTYPE_OUPUT;
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100244
Jiri Kosina27ce4052013-07-10 19:56:27 +0200245 ret = hidp_send_intr_message(session, hdr, buf, rsize);
246
247 kfree(buf);
248 return ret;
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100249}
250
Alan Ott0ff17312011-01-18 03:04:40 -0500251static int hidp_get_raw_report(struct hid_device *hid,
252 unsigned char report_number,
253 unsigned char *data, size_t count,
Jiri Kosinad4bfa032010-01-29 15:03:36 +0100254 unsigned char report_type)
Jiri Kosina2da31932009-11-26 16:20:56 +0100255{
Alan Ott0ff17312011-01-18 03:04:40 -0500256 struct hidp_session *session = hid->driver_data;
257 struct sk_buff *skb;
258 size_t len;
259 int numbered_reports = hid->report_enum[report_type].numbered;
David Herrmann794d1752011-08-26 14:06:02 +0200260 int ret;
Alan Ott0ff17312011-01-18 03:04:40 -0500261
Karl Reltonfd86c9b2013-02-20 18:16:19 +0000262 if (atomic_read(&session->terminate))
263 return -EIO;
264
Jiri Kosinad4bfa032010-01-29 15:03:36 +0100265 switch (report_type) {
266 case HID_FEATURE_REPORT:
Alan Ott0ff17312011-01-18 03:04:40 -0500267 report_type = HIDP_TRANS_GET_REPORT | HIDP_DATA_RTYPE_FEATURE;
268 break;
269 case HID_INPUT_REPORT:
270 report_type = HIDP_TRANS_GET_REPORT | HIDP_DATA_RTYPE_INPUT;
Jiri Kosinad4bfa032010-01-29 15:03:36 +0100271 break;
272 case HID_OUTPUT_REPORT:
Alan Ott0ff17312011-01-18 03:04:40 -0500273 report_type = HIDP_TRANS_GET_REPORT | HIDP_DATA_RTYPE_OUPUT;
Jiri Kosinad4bfa032010-01-29 15:03:36 +0100274 break;
275 default:
276 return -EINVAL;
277 }
278
Alan Ott0ff17312011-01-18 03:04:40 -0500279 if (mutex_lock_interruptible(&session->report_mutex))
280 return -ERESTARTSYS;
281
282 /* Set up our wait, and send the report request to the device. */
283 session->waiting_report_type = report_type & HIDP_DATA_RTYPE_MASK;
284 session->waiting_report_number = numbered_reports ? report_number : -1;
285 set_bit(HIDP_WAITING_FOR_RETURN, &session->flags);
286 data[0] = report_number;
David Herrmann41edc0c2013-04-06 20:28:50 +0200287 ret = hidp_send_ctrl_message(session, report_type, data, 1);
David Herrmann794d1752011-08-26 14:06:02 +0200288 if (ret)
289 goto err;
Alan Ott0ff17312011-01-18 03:04:40 -0500290
291 /* Wait for the return of the report. The returned report
292 gets put in session->report_return. */
David Herrmanne3492dc2013-04-06 20:28:41 +0200293 while (test_bit(HIDP_WAITING_FOR_RETURN, &session->flags) &&
294 !atomic_read(&session->terminate)) {
Alan Ott0ff17312011-01-18 03:04:40 -0500295 int res;
296
297 res = wait_event_interruptible_timeout(session->report_queue,
David Herrmanne3492dc2013-04-06 20:28:41 +0200298 !test_bit(HIDP_WAITING_FOR_RETURN, &session->flags)
299 || atomic_read(&session->terminate),
Alan Ott0ff17312011-01-18 03:04:40 -0500300 5*HZ);
301 if (res == 0) {
302 /* timeout */
David Herrmann794d1752011-08-26 14:06:02 +0200303 ret = -EIO;
304 goto err;
Alan Ott0ff17312011-01-18 03:04:40 -0500305 }
306 if (res < 0) {
307 /* signal */
David Herrmann794d1752011-08-26 14:06:02 +0200308 ret = -ERESTARTSYS;
309 goto err;
Alan Ott0ff17312011-01-18 03:04:40 -0500310 }
311 }
312
313 skb = session->report_return;
314 if (skb) {
315 len = skb->len < count ? skb->len : count;
316 memcpy(data, skb->data, len);
317
318 kfree_skb(skb);
319 session->report_return = NULL;
320 } else {
321 /* Device returned a HANDSHAKE, indicating protocol error. */
322 len = -EIO;
323 }
324
325 clear_bit(HIDP_WAITING_FOR_RETURN, &session->flags);
326 mutex_unlock(&session->report_mutex);
327
328 return len;
329
David Herrmann794d1752011-08-26 14:06:02 +0200330err:
Alan Ott0ff17312011-01-18 03:04:40 -0500331 clear_bit(HIDP_WAITING_FOR_RETURN, &session->flags);
332 mutex_unlock(&session->report_mutex);
David Herrmann794d1752011-08-26 14:06:02 +0200333 return ret;
Alan Ott0ff17312011-01-18 03:04:40 -0500334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336static int hidp_output_raw_report(struct hid_device *hid, unsigned char *data, size_t count,
Jiri Kosina2da31932009-11-26 16:20:56 +0100337 unsigned char report_type)
338{
Alan Ott08254112011-01-18 03:04:38 -0500339 struct hidp_session *session = hid->driver_data;
340 int ret;
341
David Herrmanne73dcfb2013-04-06 20:28:52 +0200342 if (report_type == HID_OUTPUT_REPORT) {
David Herrmann41edc0c2013-04-06 20:28:50 +0200343 report_type = HIDP_TRANS_DATA | HIDP_DATA_RTYPE_OUPUT;
David Herrmanne73dcfb2013-04-06 20:28:52 +0200344 return hidp_send_intr_message(session, report_type,
345 data, count);
346 } else if (report_type != HID_FEATURE_REPORT) {
Jiri Kosinad4bfa032010-01-29 15:03:36 +0100347 return -EINVAL;
348 }
349
Alan Ott08254112011-01-18 03:04:38 -0500350 if (mutex_lock_interruptible(&session->report_mutex))
351 return -ERESTARTSYS;
352
353 /* Set up our wait, and send the report request to the device. */
354 set_bit(HIDP_WAITING_FOR_SEND_ACK, &session->flags);
David Herrmanne73dcfb2013-04-06 20:28:52 +0200355 report_type = HIDP_TRANS_SET_REPORT | HIDP_DATA_RTYPE_FEATURE;
David Herrmann41edc0c2013-04-06 20:28:50 +0200356 ret = hidp_send_ctrl_message(session, report_type, data, count);
David Herrmann794d1752011-08-26 14:06:02 +0200357 if (ret)
Alan Ott08254112011-01-18 03:04:38 -0500358 goto err;
Alan Ott08254112011-01-18 03:04:38 -0500359
360 /* Wait for the ACK from the device. */
David Herrmanne3492dc2013-04-06 20:28:41 +0200361 while (test_bit(HIDP_WAITING_FOR_SEND_ACK, &session->flags) &&
362 !atomic_read(&session->terminate)) {
Alan Ott08254112011-01-18 03:04:38 -0500363 int res;
364
365 res = wait_event_interruptible_timeout(session->report_queue,
David Herrmanne3492dc2013-04-06 20:28:41 +0200366 !test_bit(HIDP_WAITING_FOR_SEND_ACK, &session->flags)
367 || atomic_read(&session->terminate),
Alan Ott08254112011-01-18 03:04:38 -0500368 10*HZ);
369 if (res == 0) {
370 /* timeout */
371 ret = -EIO;
372 goto err;
373 }
374 if (res < 0) {
375 /* signal */
376 ret = -ERESTARTSYS;
377 goto err;
378 }
379 }
380
381 if (!session->output_report_success) {
382 ret = -EIO;
383 goto err;
384 }
385
386 ret = count;
387
388err:
389 clear_bit(HIDP_WAITING_FOR_SEND_ACK, &session->flags);
390 mutex_unlock(&session->report_mutex);
391 return ret;
Jiri Kosina2da31932009-11-26 16:20:56 +0100392}
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394static void hidp_idle_timeout(unsigned long arg)
395{
396 struct hidp_session *session = (struct hidp_session *) arg;
397
David Herrmann52051852013-04-06 20:28:47 +0200398 hidp_session_terminate(session);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Andrew Morton91f5cca2008-02-05 03:07:58 -0800401static void hidp_set_timer(struct hidp_session *session)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 if (session->idle_to > 0)
404 mod_timer(&session->timer, jiffies + HZ * session->idle_to);
405}
406
Gustavo Padovan6039aa72012-05-23 04:04:18 -0300407static void hidp_del_timer(struct hidp_session *session)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 if (session->idle_to > 0)
410 del_timer(&session->timer);
411}
412
Andrew Morton91f5cca2008-02-05 03:07:58 -0800413static void hidp_process_handshake(struct hidp_session *session,
414 unsigned char param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 BT_DBG("session %p param 0x%02x", session, param);
Alan Ott08254112011-01-18 03:04:38 -0500417 session->output_report_success = 0; /* default condition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 switch (param) {
420 case HIDP_HSHK_SUCCESSFUL:
421 /* FIXME: Call into SET_ GET_ handlers here */
Alan Ott08254112011-01-18 03:04:38 -0500422 session->output_report_success = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 break;
424
425 case HIDP_HSHK_NOT_READY:
426 case HIDP_HSHK_ERR_INVALID_REPORT_ID:
427 case HIDP_HSHK_ERR_UNSUPPORTED_REQUEST:
428 case HIDP_HSHK_ERR_INVALID_PARAMETER:
Gustavo F. Padovanab88f712011-10-06 22:05:37 -0300429 if (test_and_clear_bit(HIDP_WAITING_FOR_RETURN, &session->flags))
Alan Ott0ff17312011-01-18 03:04:40 -0500430 wake_up_interruptible(&session->report_queue);
Gustavo F. Padovanab88f712011-10-06 22:05:37 -0300431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /* FIXME: Call into SET_ GET_ handlers here */
433 break;
434
435 case HIDP_HSHK_ERR_UNKNOWN:
436 break;
437
438 case HIDP_HSHK_ERR_FATAL:
439 /* Device requests a reboot, as this is the only way this error
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900440 * can be recovered. */
David Herrmann41edc0c2013-04-06 20:28:50 +0200441 hidp_send_ctrl_message(session,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 HIDP_TRANS_HID_CONTROL | HIDP_CTRL_SOFT_RESET, NULL, 0);
443 break;
444
445 default:
David Herrmann41edc0c2013-04-06 20:28:50 +0200446 hidp_send_ctrl_message(session,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 HIDP_TRANS_HANDSHAKE | HIDP_HSHK_ERR_INVALID_PARAMETER, NULL, 0);
448 break;
449 }
Alan Ott08254112011-01-18 03:04:38 -0500450
451 /* Wake up the waiting thread. */
Gustavo F. Padovanab88f712011-10-06 22:05:37 -0300452 if (test_and_clear_bit(HIDP_WAITING_FOR_SEND_ACK, &session->flags))
Alan Ott08254112011-01-18 03:04:38 -0500453 wake_up_interruptible(&session->report_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Andrew Morton91f5cca2008-02-05 03:07:58 -0800456static void hidp_process_hid_control(struct hidp_session *session,
457 unsigned char param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 BT_DBG("session %p param 0x%02x", session, param);
460
Dave Youngeff001e2008-02-05 03:07:14 -0800461 if (param == HIDP_CTRL_VIRTUAL_CABLE_UNPLUG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /* Flush the transmit queues */
463 skb_queue_purge(&session->ctrl_transmit);
464 skb_queue_purge(&session->intr_transmit);
465
David Herrmann52051852013-04-06 20:28:47 +0200466 hidp_session_terminate(session);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468}
469
Alan Ott0ff17312011-01-18 03:04:40 -0500470/* Returns true if the passed-in skb should be freed by the caller. */
471static int hidp_process_data(struct hidp_session *session, struct sk_buff *skb,
Andrew Morton91f5cca2008-02-05 03:07:58 -0800472 unsigned char param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Alan Ott0ff17312011-01-18 03:04:40 -0500474 int done_with_skb = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 BT_DBG("session %p skb %p len %d param 0x%02x", session, skb, skb->len, param);
476
477 switch (param) {
478 case HIDP_DATA_RTYPE_INPUT:
479 hidp_set_timer(session);
480
481 if (session->input)
482 hidp_input_report(session, skb);
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100483
484 if (session->hid)
485 hid_input_report(session->hid, HID_INPUT_REPORT, skb->data, skb->len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 break;
487
488 case HIDP_DATA_RTYPE_OTHER:
489 case HIDP_DATA_RTYPE_OUPUT:
490 case HIDP_DATA_RTYPE_FEATURE:
491 break;
492
493 default:
David Herrmann41edc0c2013-04-06 20:28:50 +0200494 hidp_send_ctrl_message(session,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 HIDP_TRANS_HANDSHAKE | HIDP_HSHK_ERR_INVALID_PARAMETER, NULL, 0);
496 }
Alan Ott0ff17312011-01-18 03:04:40 -0500497
498 if (test_bit(HIDP_WAITING_FOR_RETURN, &session->flags) &&
499 param == session->waiting_report_type) {
500 if (session->waiting_report_number < 0 ||
501 session->waiting_report_number == skb->data[0]) {
502 /* hidp_get_raw_report() is waiting on this report. */
503 session->report_return = skb;
504 done_with_skb = 0;
505 clear_bit(HIDP_WAITING_FOR_RETURN, &session->flags);
506 wake_up_interruptible(&session->report_queue);
507 }
508 }
509
510 return done_with_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Andrew Morton91f5cca2008-02-05 03:07:58 -0800513static void hidp_recv_ctrl_frame(struct hidp_session *session,
514 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 unsigned char hdr, type, param;
Alan Ott0ff17312011-01-18 03:04:40 -0500517 int free_skb = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 BT_DBG("session %p skb %p len %d", session, skb, skb->len);
520
521 hdr = skb->data[0];
522 skb_pull(skb, 1);
523
524 type = hdr & HIDP_HEADER_TRANS_MASK;
525 param = hdr & HIDP_HEADER_PARAM_MASK;
526
527 switch (type) {
528 case HIDP_TRANS_HANDSHAKE:
529 hidp_process_handshake(session, param);
530 break;
531
532 case HIDP_TRANS_HID_CONTROL:
533 hidp_process_hid_control(session, param);
534 break;
535
536 case HIDP_TRANS_DATA:
Alan Ott0ff17312011-01-18 03:04:40 -0500537 free_skb = hidp_process_data(session, skb, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 break;
539
540 default:
David Herrmann41edc0c2013-04-06 20:28:50 +0200541 hidp_send_ctrl_message(session,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 HIDP_TRANS_HANDSHAKE | HIDP_HSHK_ERR_UNSUPPORTED_REQUEST, NULL, 0);
543 break;
544 }
545
Alan Ott0ff17312011-01-18 03:04:40 -0500546 if (free_skb)
547 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
Andrew Morton91f5cca2008-02-05 03:07:58 -0800550static void hidp_recv_intr_frame(struct hidp_session *session,
551 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
553 unsigned char hdr;
554
555 BT_DBG("session %p skb %p len %d", session, skb, skb->len);
556
557 hdr = skb->data[0];
558 skb_pull(skb, 1);
559
560 if (hdr == (HIDP_TRANS_DATA | HIDP_DATA_RTYPE_INPUT)) {
561 hidp_set_timer(session);
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (session->input)
564 hidp_input_report(session, skb);
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100565
566 if (session->hid) {
567 hid_input_report(session->hid, HID_INPUT_REPORT, skb->data, skb->len, 1);
568 BT_DBG("report len %d", skb->len);
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 } else {
571 BT_DBG("Unsupported protocol header 0x%02x", hdr);
572 }
573
574 kfree_skb(skb);
575}
576
577static int hidp_send_frame(struct socket *sock, unsigned char *data, int len)
578{
579 struct kvec iv = { data, len };
580 struct msghdr msg;
581
582 BT_DBG("sock %p data %p len %d", sock, data, len);
583
584 if (!len)
585 return 0;
586
587 memset(&msg, 0, sizeof(msg));
588
589 return kernel_sendmsg(sock, &msg, &iv, 1, len);
590}
591
David Herrmann7350e6c2013-04-06 20:28:49 +0200592/* dequeue message from @transmit and send via @sock */
593static void hidp_process_transmit(struct hidp_session *session,
594 struct sk_buff_head *transmit,
595 struct socket *sock)
Gustavo F. Padovan679344e2011-10-06 20:51:37 -0300596{
597 struct sk_buff *skb;
David Herrmann2df01202013-04-06 20:28:48 +0200598 int ret;
Gustavo F. Padovan679344e2011-10-06 20:51:37 -0300599
600 BT_DBG("session %p", session);
601
David Herrmann7350e6c2013-04-06 20:28:49 +0200602 while ((skb = skb_dequeue(transmit))) {
603 ret = hidp_send_frame(sock, skb->data, skb->len);
David Herrmann2df01202013-04-06 20:28:48 +0200604 if (ret == -EAGAIN) {
David Herrmann7350e6c2013-04-06 20:28:49 +0200605 skb_queue_head(transmit, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 break;
David Herrmann2df01202013-04-06 20:28:48 +0200607 } else if (ret < 0) {
608 hidp_session_terminate(session);
609 kfree_skb(skb);
610 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
613 hidp_set_timer(session);
614 kfree_skb(skb);
615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Andrew Morton91f5cca2008-02-05 03:07:58 -0800618static int hidp_setup_input(struct hidp_session *session,
619 struct hidp_connadd_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Jiri Slabyc500c972008-05-16 11:49:16 +0200621 struct input_dev *input;
Gustavo F. Padovan3415a5f2011-10-06 21:17:32 -0300622 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Jiri Slabyc500c972008-05-16 11:49:16 +0200624 input = input_allocate_device();
625 if (!input)
626 return -ENOMEM;
627
628 session->input = input;
629
Marcel Holtmann5be39462007-05-09 09:15:30 +0200630 input_set_drvdata(input, session);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Dmitry Torokhov34abf912005-09-15 02:01:40 -0500632 input->name = "Bluetooth HID Boot Protocol Device";
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 input->id.bustype = BUS_BLUETOOTH;
635 input->id.vendor = req->vendor;
636 input->id.product = req->product;
637 input->id.version = req->version;
638
639 if (req->subclass & 0x40) {
640 set_bit(EV_KEY, input->evbit);
641 set_bit(EV_LED, input->evbit);
642 set_bit(EV_REP, input->evbit);
643
644 set_bit(LED_NUML, input->ledbit);
645 set_bit(LED_CAPSL, input->ledbit);
646 set_bit(LED_SCROLLL, input->ledbit);
647 set_bit(LED_COMPOSE, input->ledbit);
648 set_bit(LED_KANA, input->ledbit);
649
650 for (i = 0; i < sizeof(hidp_keycode); i++)
651 set_bit(hidp_keycode[i], input->keybit);
652 clear_bit(0, input->keybit);
653 }
654
655 if (req->subclass & 0x80) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700656 input->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
657 input->keybit[BIT_WORD(BTN_MOUSE)] = BIT_MASK(BTN_LEFT) |
658 BIT_MASK(BTN_RIGHT) | BIT_MASK(BTN_MIDDLE);
659 input->relbit[0] = BIT_MASK(REL_X) | BIT_MASK(REL_Y);
660 input->keybit[BIT_WORD(BTN_MOUSE)] |= BIT_MASK(BTN_SIDE) |
661 BIT_MASK(BTN_EXTRA);
662 input->relbit[0] |= BIT_MASK(REL_WHEEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
David Herrmann52051852013-04-06 20:28:47 +0200665 input->dev.parent = &session->conn->hcon->dev;
Marcel Holtmann0a85b962006-07-06 13:09:02 +0200666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 input->event = hidp_input_event;
668
Marcel Holtmannedad6382009-08-22 14:22:15 -0700669 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Marcel Holtmannf5ffd462007-02-17 23:58:53 +0100672static int hidp_open(struct hid_device *hid)
673{
674 return 0;
675}
676
677static void hidp_close(struct hid_device *hid)
678{
679}
680
Jiri Slabyc500c972008-05-16 11:49:16 +0200681static int hidp_parse(struct hid_device *hid)
682{
683 struct hidp_session *session = hid->driver_data;
Jiri Slabyc500c972008-05-16 11:49:16 +0200684
Michael Poole15c697c2010-02-05 12:23:43 -0500685 return hid_parse_report(session->hid, session->rd_data,
686 session->rd_size);
Jiri Slabyc500c972008-05-16 11:49:16 +0200687}
688
689static int hidp_start(struct hid_device *hid)
690{
691 struct hidp_session *session = hid->driver_data;
692 struct hid_report *report;
693
David Herrmann142c69c2011-08-26 13:27:12 +0200694 if (hid->quirks & HID_QUIRK_NO_INIT_REPORTS)
695 return 0;
696
Jiri Slabyc500c972008-05-16 11:49:16 +0200697 list_for_each_entry(report, &hid->report_enum[HID_INPUT_REPORT].
698 report_list, list)
699 hidp_send_report(session, report);
700
701 list_for_each_entry(report, &hid->report_enum[HID_FEATURE_REPORT].
702 report_list, list)
703 hidp_send_report(session, report);
704
Jiri Slabyc500c972008-05-16 11:49:16 +0200705 return 0;
706}
707
708static void hidp_stop(struct hid_device *hid)
709{
710 struct hidp_session *session = hid->driver_data;
711
712 skb_queue_purge(&session->ctrl_transmit);
713 skb_queue_purge(&session->intr_transmit);
714
Jiri Slabyc500c972008-05-16 11:49:16 +0200715 hid->claimed = 0;
716}
717
718static struct hid_ll_driver hidp_hid_driver = {
719 .parse = hidp_parse,
720 .start = hidp_start,
721 .stop = hidp_stop,
722 .open = hidp_open,
723 .close = hidp_close,
Jiri Slabyc500c972008-05-16 11:49:16 +0200724};
725
Alan Ott0f69dca2011-01-18 03:04:37 -0500726/* This function sets up the hid device. It does not add it
727 to the HID system. That is done in hidp_add_connection(). */
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200728static int hidp_setup_hid(struct hidp_session *session,
Andrew Morton91f5cca2008-02-05 03:07:58 -0800729 struct hidp_connadd_req *req)
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100730{
Jiri Slabyc500c972008-05-16 11:49:16 +0200731 struct hid_device *hid;
Marcel Holtmannedad6382009-08-22 14:22:15 -0700732 int err;
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100733
Michael Poole15c697c2010-02-05 12:23:43 -0500734 session->rd_data = kzalloc(req->rd_size, GFP_KERNEL);
735 if (!session->rd_data)
736 return -ENOMEM;
737
738 if (copy_from_user(session->rd_data, req->rd_data, req->rd_size)) {
739 err = -EFAULT;
740 goto fault;
741 }
742 session->rd_size = req->rd_size;
743
Jiri Slabyc500c972008-05-16 11:49:16 +0200744 hid = hid_allocate_device();
Michael Poole15c697c2010-02-05 12:23:43 -0500745 if (IS_ERR(hid)) {
746 err = PTR_ERR(hid);
747 goto fault;
748 }
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100749
Jiri Slabyc500c972008-05-16 11:49:16 +0200750 session->hid = hid;
Michael Poole15c697c2010-02-05 12:23:43 -0500751
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100752 hid->driver_data = session;
753
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100754 hid->bus = BUS_BLUETOOTH;
755 hid->vendor = req->vendor;
756 hid->product = req->product;
757 hid->version = req->version;
Jiri Slabyc500c972008-05-16 11:49:16 +0200758 hid->country = req->country;
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100759
Anderson Lizardo0a9ab9b2013-01-06 18:28:53 -0400760 strncpy(hid->name, req->name, sizeof(req->name) - 1);
Andrei Emeltchenkofcb73332012-09-25 12:49:44 +0300761
762 snprintf(hid->phys, sizeof(hid->phys), "%pMR",
763 &bt_sk(session->ctrl_sock->sk)->src);
764
765 snprintf(hid->uniq, sizeof(hid->uniq), "%pMR",
766 &bt_sk(session->ctrl_sock->sk)->dst);
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100767
David Herrmann52051852013-04-06 20:28:47 +0200768 hid->dev.parent = &session->conn->hcon->dev;
Jiri Slabyc500c972008-05-16 11:49:16 +0200769 hid->ll_driver = &hidp_hid_driver;
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200770
Alan Ott0ff17312011-01-18 03:04:40 -0500771 hid->hid_get_raw_report = hidp_get_raw_report;
Jiri Kosina2da31932009-11-26 16:20:56 +0100772 hid->hid_output_raw_report = hidp_output_raw_report;
773
Lamarque V. Souza4529eef2012-12-06 12:39:55 -0200774 /* True if device is blacklisted in drivers/hid/hid-core.c */
775 if (hid_ignore(hid)) {
776 hid_destroy_device(session->hid);
777 session->hid = NULL;
778 return -ENODEV;
779 }
780
Jiri Slabyc500c972008-05-16 11:49:16 +0200781 return 0;
Marcel Holtmannedad6382009-08-22 14:22:15 -0700782
Michael Poole15c697c2010-02-05 12:23:43 -0500783fault:
784 kfree(session->rd_data);
785 session->rd_data = NULL;
786
Marcel Holtmannedad6382009-08-22 14:22:15 -0700787 return err;
Marcel Holtmanne1aaadd2007-02-17 23:58:49 +0100788}
789
David Herrmannb4f34d82013-04-06 20:28:46 +0200790/* initialize session devices */
791static int hidp_session_dev_init(struct hidp_session *session,
792 struct hidp_connadd_req *req)
793{
794 int ret;
795
796 if (req->rd_size > 0) {
797 ret = hidp_setup_hid(session, req);
798 if (ret && ret != -ENODEV)
799 return ret;
800 }
801
802 if (!session->hid) {
803 ret = hidp_setup_input(session, req);
804 if (ret < 0)
805 return ret;
806 }
807
808 return 0;
809}
810
811/* destroy session devices */
812static void hidp_session_dev_destroy(struct hidp_session *session)
813{
814 if (session->hid)
815 put_device(&session->hid->dev);
816 else if (session->input)
817 input_put_device(session->input);
818
819 kfree(session->rd_data);
820 session->rd_data = NULL;
821}
822
823/* add HID/input devices to their underlying bus systems */
824static int hidp_session_dev_add(struct hidp_session *session)
825{
826 int ret;
827
828 /* Both HID and input systems drop a ref-count when unregistering the
829 * device but they don't take a ref-count when registering them. Work
830 * around this by explicitly taking a refcount during registration
831 * which is dropped automatically by unregistering the devices. */
832
833 if (session->hid) {
834 ret = hid_add_device(session->hid);
835 if (ret)
836 return ret;
837 get_device(&session->hid->dev);
838 } else if (session->input) {
839 ret = input_register_device(session->input);
840 if (ret)
841 return ret;
842 input_get_device(session->input);
843 }
844
845 return 0;
846}
847
848/* remove HID/input devices from their bus systems */
849static void hidp_session_dev_del(struct hidp_session *session)
850{
851 if (session->hid)
852 hid_destroy_device(session->hid);
853 else if (session->input)
854 input_unregister_device(session->input);
855}
856
857/*
David Herrmann4e713cd2013-05-23 13:10:25 +0200858 * Asynchronous device registration
859 * HID device drivers might want to perform I/O during initialization to
860 * detect device types. Therefore, call device registration in a separate
861 * worker so the HIDP thread can schedule I/O operations.
862 * Note that this must be called after the worker thread was initialized
863 * successfully. This will then add the devices and increase session state
864 * on success, otherwise it will terminate the session thread.
865 */
866static void hidp_session_dev_work(struct work_struct *work)
867{
868 struct hidp_session *session = container_of(work,
869 struct hidp_session,
870 dev_init);
871 int ret;
872
873 ret = hidp_session_dev_add(session);
874 if (!ret)
875 atomic_inc(&session->state);
876 else
877 hidp_session_terminate(session);
878}
879
880/*
David Herrmannb4f34d82013-04-06 20:28:46 +0200881 * Create new session object
882 * Allocate session object, initialize static fields, copy input data into the
883 * object and take a reference to all sub-objects.
884 * This returns 0 on success and puts a pointer to the new session object in
885 * \out. Otherwise, an error code is returned.
886 * The new session object has an initial ref-count of 1.
887 */
888static int hidp_session_new(struct hidp_session **out, const bdaddr_t *bdaddr,
889 struct socket *ctrl_sock,
890 struct socket *intr_sock,
891 struct hidp_connadd_req *req,
892 struct l2cap_conn *conn)
893{
894 struct hidp_session *session;
895 int ret;
896 struct bt_sock *ctrl, *intr;
897
898 ctrl = bt_sk(ctrl_sock->sk);
899 intr = bt_sk(intr_sock->sk);
900
901 session = kzalloc(sizeof(*session), GFP_KERNEL);
902 if (!session)
903 return -ENOMEM;
904
905 /* object and runtime management */
906 kref_init(&session->ref);
907 atomic_set(&session->state, HIDP_SESSION_IDLING);
908 init_waitqueue_head(&session->state_queue);
909 session->flags = req->flags & (1 << HIDP_BLUETOOTH_VENDOR_ID);
910
911 /* connection management */
912 bacpy(&session->bdaddr, bdaddr);
913 session->conn = conn;
914 session->user.probe = hidp_session_probe;
915 session->user.remove = hidp_session_remove;
916 session->ctrl_sock = ctrl_sock;
917 session->intr_sock = intr_sock;
918 skb_queue_head_init(&session->ctrl_transmit);
919 skb_queue_head_init(&session->intr_transmit);
920 session->ctrl_mtu = min_t(uint, l2cap_pi(ctrl)->chan->omtu,
921 l2cap_pi(ctrl)->chan->imtu);
922 session->intr_mtu = min_t(uint, l2cap_pi(intr)->chan->omtu,
923 l2cap_pi(intr)->chan->imtu);
924 session->idle_to = req->idle_to;
925
926 /* device management */
David Herrmann4e713cd2013-05-23 13:10:25 +0200927 INIT_WORK(&session->dev_init, hidp_session_dev_work);
David Herrmannb4f34d82013-04-06 20:28:46 +0200928 setup_timer(&session->timer, hidp_idle_timeout,
929 (unsigned long)session);
930
931 /* session data */
932 mutex_init(&session->report_mutex);
933 init_waitqueue_head(&session->report_queue);
934
935 ret = hidp_session_dev_init(session, req);
936 if (ret)
937 goto err_free;
938
939 l2cap_conn_get(session->conn);
940 get_file(session->intr_sock->file);
941 get_file(session->ctrl_sock->file);
942 *out = session;
943 return 0;
944
945err_free:
946 kfree(session);
947 return ret;
948}
949
950/* increase ref-count of the given session by one */
951static void hidp_session_get(struct hidp_session *session)
952{
953 kref_get(&session->ref);
954}
955
956/* release callback */
957static void session_free(struct kref *ref)
958{
959 struct hidp_session *session = container_of(ref, struct hidp_session,
960 ref);
961
962 hidp_session_dev_destroy(session);
963 skb_queue_purge(&session->ctrl_transmit);
964 skb_queue_purge(&session->intr_transmit);
965 fput(session->intr_sock->file);
966 fput(session->ctrl_sock->file);
967 l2cap_conn_put(session->conn);
968 kfree(session);
969}
970
971/* decrease ref-count of the given session by one */
972static void hidp_session_put(struct hidp_session *session)
973{
974 kref_put(&session->ref, session_free);
975}
976
977/*
978 * Search the list of active sessions for a session with target address
979 * \bdaddr. You must hold at least a read-lock on \hidp_session_sem. As long as
980 * you do not release this lock, the session objects cannot vanish and you can
981 * safely take a reference to the session yourself.
982 */
983static struct hidp_session *__hidp_session_find(const bdaddr_t *bdaddr)
984{
985 struct hidp_session *session;
986
987 list_for_each_entry(session, &hidp_session_list, list) {
988 if (!bacmp(bdaddr, &session->bdaddr))
989 return session;
990 }
991
992 return NULL;
993}
994
995/*
996 * Same as __hidp_session_find() but no locks must be held. This also takes a
997 * reference of the returned session (if non-NULL) so you must drop this
998 * reference if you no longer use the object.
999 */
1000static struct hidp_session *hidp_session_find(const bdaddr_t *bdaddr)
1001{
1002 struct hidp_session *session;
1003
1004 down_read(&hidp_session_sem);
1005
1006 session = __hidp_session_find(bdaddr);
1007 if (session)
1008 hidp_session_get(session);
1009
1010 up_read(&hidp_session_sem);
1011
1012 return session;
1013}
1014
1015/*
1016 * Start session synchronously
1017 * This starts a session thread and waits until initialization
1018 * is done or returns an error if it couldn't be started.
1019 * If this returns 0 the session thread is up and running. You must call
1020 * hipd_session_stop_sync() before deleting any runtime resources.
1021 */
1022static int hidp_session_start_sync(struct hidp_session *session)
1023{
1024 unsigned int vendor, product;
1025
1026 if (session->hid) {
1027 vendor = session->hid->vendor;
1028 product = session->hid->product;
1029 } else if (session->input) {
1030 vendor = session->input->id.vendor;
1031 product = session->input->id.product;
1032 } else {
1033 vendor = 0x0000;
1034 product = 0x0000;
1035 }
1036
1037 session->task = kthread_run(hidp_session_thread, session,
1038 "khidpd_%04x%04x", vendor, product);
1039 if (IS_ERR(session->task))
1040 return PTR_ERR(session->task);
1041
1042 while (atomic_read(&session->state) <= HIDP_SESSION_IDLING)
1043 wait_event(session->state_queue,
1044 atomic_read(&session->state) > HIDP_SESSION_IDLING);
1045
1046 return 0;
1047}
1048
1049/*
1050 * Terminate session thread
1051 * Wake up session thread and notify it to stop. This is asynchronous and
1052 * returns immediately. Call this whenever a runtime error occurs and you want
1053 * the session to stop.
1054 * Note: wake_up_process() performs any necessary memory-barriers for us.
1055 */
1056static void hidp_session_terminate(struct hidp_session *session)
1057{
1058 atomic_inc(&session->terminate);
1059 wake_up_process(session->task);
1060}
1061
1062/*
1063 * Probe HIDP session
1064 * This is called from the l2cap_conn core when our l2cap_user object is bound
1065 * to the hci-connection. We get the session via the \user object and can now
David Herrmann4e713cd2013-05-23 13:10:25 +02001066 * start the session thread, link it into the global session list and
1067 * schedule HID/input device registration.
David Herrmannb4f34d82013-04-06 20:28:46 +02001068 * The global session-list owns its own reference to the session object so you
1069 * can drop your own reference after registering the l2cap_user object.
1070 */
1071static int hidp_session_probe(struct l2cap_conn *conn,
1072 struct l2cap_user *user)
1073{
1074 struct hidp_session *session = container_of(user,
1075 struct hidp_session,
1076 user);
1077 struct hidp_session *s;
1078 int ret;
1079
1080 down_write(&hidp_session_sem);
1081
1082 /* check that no other session for this device exists */
1083 s = __hidp_session_find(&session->bdaddr);
1084 if (s) {
1085 ret = -EEXIST;
1086 goto out_unlock;
1087 }
1088
David Herrmann4e713cd2013-05-23 13:10:25 +02001089 if (session->input) {
1090 ret = hidp_session_dev_add(session);
1091 if (ret)
1092 goto out_unlock;
1093 }
1094
David Herrmannb4f34d82013-04-06 20:28:46 +02001095 ret = hidp_session_start_sync(session);
1096 if (ret)
David Herrmann4e713cd2013-05-23 13:10:25 +02001097 goto out_del;
David Herrmannb4f34d82013-04-06 20:28:46 +02001098
David Herrmann4e713cd2013-05-23 13:10:25 +02001099 /* HID device registration is async to allow I/O during probe */
1100 if (session->input)
1101 atomic_inc(&session->state);
1102 else
1103 schedule_work(&session->dev_init);
David Herrmannb4f34d82013-04-06 20:28:46 +02001104
1105 hidp_session_get(session);
1106 list_add(&session->list, &hidp_session_list);
1107 ret = 0;
1108 goto out_unlock;
1109
David Herrmann4e713cd2013-05-23 13:10:25 +02001110out_del:
1111 if (session->input)
1112 hidp_session_dev_del(session);
David Herrmannb4f34d82013-04-06 20:28:46 +02001113out_unlock:
1114 up_write(&hidp_session_sem);
1115 return ret;
1116}
1117
1118/*
1119 * Remove HIDP session
1120 * Called from the l2cap_conn core when either we explicitly unregistered
1121 * the l2cap_user object or if the underlying connection is shut down.
1122 * We signal the hidp-session thread to shut down, unregister the HID/input
1123 * devices and unlink the session from the global list.
1124 * This drops the reference to the session that is owned by the global
1125 * session-list.
1126 * Note: We _must_ not synchronosly wait for the session-thread to shut down.
1127 * This is, because the session-thread might be waiting for an HCI lock that is
1128 * held while we are called. Therefore, we only unregister the devices and
1129 * notify the session-thread to terminate. The thread itself owns a reference
1130 * to the session object so it can safely shut down.
1131 */
1132static void hidp_session_remove(struct l2cap_conn *conn,
1133 struct l2cap_user *user)
1134{
1135 struct hidp_session *session = container_of(user,
1136 struct hidp_session,
1137 user);
1138
1139 down_write(&hidp_session_sem);
1140
1141 hidp_session_terminate(session);
David Herrmann4e713cd2013-05-23 13:10:25 +02001142
1143 cancel_work_sync(&session->dev_init);
1144 if (session->input ||
1145 atomic_read(&session->state) > HIDP_SESSION_PREPARING)
1146 hidp_session_dev_del(session);
1147
David Herrmannb4f34d82013-04-06 20:28:46 +02001148 list_del(&session->list);
1149
1150 up_write(&hidp_session_sem);
1151
1152 hidp_session_put(session);
1153}
1154
1155/*
1156 * Session Worker
1157 * This performs the actual main-loop of the HIDP worker. We first check
1158 * whether the underlying connection is still alive, then parse all pending
1159 * messages and finally send all outstanding messages.
1160 */
1161static void hidp_session_run(struct hidp_session *session)
1162{
1163 struct sock *ctrl_sk = session->ctrl_sock->sk;
1164 struct sock *intr_sk = session->intr_sock->sk;
1165 struct sk_buff *skb;
1166
1167 for (;;) {
1168 /*
1169 * This thread can be woken up two ways:
1170 * - You call hidp_session_terminate() which sets the
1171 * session->terminate flag and wakes this thread up.
1172 * - Via modifying the socket state of ctrl/intr_sock. This
1173 * thread is woken up by ->sk_state_changed().
1174 *
1175 * Note: set_current_state() performs any necessary
1176 * memory-barriers for us.
1177 */
1178 set_current_state(TASK_INTERRUPTIBLE);
1179
1180 if (atomic_read(&session->terminate))
1181 break;
1182
1183 if (ctrl_sk->sk_state != BT_CONNECTED ||
1184 intr_sk->sk_state != BT_CONNECTED)
1185 break;
1186
1187 /* parse incoming intr-skbs */
1188 while ((skb = skb_dequeue(&intr_sk->sk_receive_queue))) {
1189 skb_orphan(skb);
1190 if (!skb_linearize(skb))
1191 hidp_recv_intr_frame(session, skb);
1192 else
1193 kfree_skb(skb);
1194 }
1195
1196 /* send pending intr-skbs */
David Herrmann7350e6c2013-04-06 20:28:49 +02001197 hidp_process_transmit(session, &session->intr_transmit,
1198 session->intr_sock);
David Herrmannb4f34d82013-04-06 20:28:46 +02001199
1200 /* parse incoming ctrl-skbs */
1201 while ((skb = skb_dequeue(&ctrl_sk->sk_receive_queue))) {
1202 skb_orphan(skb);
1203 if (!skb_linearize(skb))
1204 hidp_recv_ctrl_frame(session, skb);
1205 else
1206 kfree_skb(skb);
1207 }
1208
1209 /* send pending ctrl-skbs */
David Herrmann7350e6c2013-04-06 20:28:49 +02001210 hidp_process_transmit(session, &session->ctrl_transmit,
1211 session->ctrl_sock);
David Herrmannb4f34d82013-04-06 20:28:46 +02001212
1213 schedule();
1214 }
1215
1216 atomic_inc(&session->terminate);
1217 set_current_state(TASK_RUNNING);
1218}
1219
1220/*
1221 * HIDP session thread
1222 * This thread runs the I/O for a single HIDP session. Startup is synchronous
1223 * which allows us to take references to ourself here instead of doing that in
1224 * the caller.
1225 * When we are ready to run we notify the caller and call hidp_session_run().
1226 */
1227static int hidp_session_thread(void *arg)
1228{
1229 struct hidp_session *session = arg;
1230 wait_queue_t ctrl_wait, intr_wait;
1231
1232 BT_DBG("session %p", session);
1233
1234 /* initialize runtime environment */
1235 hidp_session_get(session);
1236 __module_get(THIS_MODULE);
1237 set_user_nice(current, -15);
1238 hidp_set_timer(session);
1239
1240 init_waitqueue_entry(&ctrl_wait, current);
1241 init_waitqueue_entry(&intr_wait, current);
1242 add_wait_queue(sk_sleep(session->ctrl_sock->sk), &ctrl_wait);
1243 add_wait_queue(sk_sleep(session->intr_sock->sk), &intr_wait);
1244 /* This memory barrier is paired with wq_has_sleeper(). See
1245 * sock_poll_wait() for more information why this is needed. */
1246 smp_mb();
1247
1248 /* notify synchronous startup that we're ready */
1249 atomic_inc(&session->state);
1250 wake_up(&session->state_queue);
1251
1252 /* run session */
1253 hidp_session_run(session);
1254
1255 /* cleanup runtime environment */
1256 remove_wait_queue(sk_sleep(session->intr_sock->sk), &intr_wait);
1257 remove_wait_queue(sk_sleep(session->intr_sock->sk), &ctrl_wait);
1258 wake_up_interruptible(&session->report_queue);
1259 hidp_del_timer(session);
1260
1261 /*
1262 * If we stopped ourself due to any internal signal, we should try to
1263 * unregister our own session here to avoid having it linger until the
1264 * parent l2cap_conn dies or user-space cleans it up.
1265 * This does not deadlock as we don't do any synchronous shutdown.
1266 * Instead, this call has the same semantics as if user-space tried to
1267 * delete the session.
1268 */
1269 l2cap_unregister_user(session->conn, &session->user);
1270 hidp_session_put(session);
1271
1272 module_put_and_exit(0);
1273 return 0;
1274}
1275
1276static int hidp_verify_sockets(struct socket *ctrl_sock,
1277 struct socket *intr_sock)
1278{
1279 struct bt_sock *ctrl, *intr;
1280 struct hidp_session *session;
1281
1282 if (!l2cap_is_socket(ctrl_sock) || !l2cap_is_socket(intr_sock))
1283 return -EINVAL;
1284
1285 ctrl = bt_sk(ctrl_sock->sk);
1286 intr = bt_sk(intr_sock->sk);
1287
1288 if (bacmp(&ctrl->src, &intr->src) || bacmp(&ctrl->dst, &intr->dst))
1289 return -ENOTUNIQ;
1290 if (ctrl->sk.sk_state != BT_CONNECTED ||
1291 intr->sk.sk_state != BT_CONNECTED)
1292 return -EBADFD;
1293
1294 /* early session check, we check again during session registration */
1295 session = hidp_session_find(&ctrl->dst);
1296 if (session) {
1297 hidp_session_put(session);
1298 return -EEXIST;
1299 }
1300
1301 return 0;
1302}
1303
1304int hidp_connection_add(struct hidp_connadd_req *req,
1305 struct socket *ctrl_sock,
1306 struct socket *intr_sock)
1307{
1308 struct hidp_session *session;
1309 struct l2cap_conn *conn;
1310 struct l2cap_chan *chan = l2cap_pi(ctrl_sock->sk)->chan;
1311 int ret;
1312
1313 ret = hidp_verify_sockets(ctrl_sock, intr_sock);
1314 if (ret)
1315 return ret;
1316
1317 conn = NULL;
1318 l2cap_chan_lock(chan);
1319 if (chan->conn) {
1320 l2cap_conn_get(chan->conn);
1321 conn = chan->conn;
1322 }
1323 l2cap_chan_unlock(chan);
1324
1325 if (!conn)
1326 return -EBADFD;
1327
1328 ret = hidp_session_new(&session, &bt_sk(ctrl_sock->sk)->dst, ctrl_sock,
1329 intr_sock, req, conn);
1330 if (ret)
1331 goto out_conn;
1332
1333 ret = l2cap_register_user(conn, &session->user);
1334 if (ret)
1335 goto out_session;
1336
1337 ret = 0;
1338
1339out_session:
1340 hidp_session_put(session);
1341out_conn:
1342 l2cap_conn_put(conn);
1343 return ret;
1344}
1345
1346int hidp_connection_del(struct hidp_conndel_req *req)
1347{
1348 struct hidp_session *session;
1349
1350 session = hidp_session_find(&req->bdaddr);
1351 if (!session)
1352 return -ENOENT;
1353
1354 if (req->flags & (1 << HIDP_VIRTUAL_CABLE_UNPLUG))
1355 hidp_send_ctrl_message(session,
1356 HIDP_TRANS_HID_CONTROL |
1357 HIDP_CTRL_VIRTUAL_CABLE_UNPLUG,
1358 NULL, 0);
1359 else
1360 l2cap_unregister_user(session->conn, &session->user);
1361
1362 hidp_session_put(session);
1363
1364 return 0;
1365}
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367int hidp_get_connlist(struct hidp_connlist_req *req)
1368{
Gustavo F. Padovancd11cdd2011-10-06 17:35:31 -03001369 struct hidp_session *session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 int err = 0, n = 0;
1371
1372 BT_DBG("");
1373
1374 down_read(&hidp_session_sem);
1375
Gustavo F. Padovancd11cdd2011-10-06 17:35:31 -03001376 list_for_each_entry(session, &hidp_session_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 struct hidp_conninfo ci;
1378
David Herrmann52051852013-04-06 20:28:47 +02001379 hidp_copy_session(session, &ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 if (copy_to_user(req->ci, &ci, sizeof(ci))) {
1382 err = -EFAULT;
1383 break;
1384 }
1385
1386 if (++n >= req->cnum)
1387 break;
1388
1389 req->ci++;
1390 }
1391 req->cnum = n;
1392
1393 up_read(&hidp_session_sem);
1394 return err;
1395}
1396
1397int hidp_get_conninfo(struct hidp_conninfo *ci)
1398{
1399 struct hidp_session *session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
David Herrmann52051852013-04-06 20:28:47 +02001401 session = hidp_session_find(&ci->bdaddr);
1402 if (session) {
1403 hidp_copy_session(session, ci);
1404 hidp_session_put(session);
1405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
David Herrmann52051852013-04-06 20:28:47 +02001407 return session ? 0 : -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
1410static int __init hidp_init(void)
1411{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 BT_INFO("HIDP (Human Interface Emulation) ver %s", VERSION);
1413
Henrik Rydberg8215d552012-04-23 12:07:07 +02001414 return hidp_init_sockets();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
1417static void __exit hidp_exit(void)
1418{
1419 hidp_cleanup_sockets();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
1422module_init(hidp_init);
1423module_exit(hidp_exit);
1424
1425MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
David Herrmannb4f34d82013-04-06 20:28:46 +02001426MODULE_AUTHOR("David Herrmann <dh.herrmann@gmail.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427MODULE_DESCRIPTION("Bluetooth HIDP ver " VERSION);
1428MODULE_VERSION(VERSION);
1429MODULE_LICENSE("GPL");
1430MODULE_ALIAS("bt-proto-6");