blob: 8d9b87df292ffce8cae722f8657c0a73d53281fe [file] [log] [blame]
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
Gustavo F. Padovan590051d2011-12-18 13:39:33 -02004 Copyright (C) 2011 ProFUSION Embedded Systems
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
6 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License version 2 as
10 published by the Free Software Foundation;
11
12 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
13 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
15 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090016 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
17 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090021 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
22 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 SOFTWARE IS DISCLAIMED.
24*/
25
26/* Bluetooth HCI core. */
27
Gustavo Padovan8c520a52012-05-23 04:04:22 -030028#include <linux/export.h>
Sasha Levin3df92b32012-05-27 22:36:56 +020029#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Marcel Holtmann611b30f2009-06-08 14:41:38 +020031#include <linux/rfkill.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <net/bluetooth/bluetooth.h>
34#include <net/bluetooth/hci_core.h>
35
Marcel Holtmannb78752c2010-08-08 23:06:53 -040036static void hci_rx_work(struct work_struct *work);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -020037static void hci_cmd_work(struct work_struct *work);
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -020038static void hci_tx_work(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/* HCI device list */
41LIST_HEAD(hci_dev_list);
42DEFINE_RWLOCK(hci_dev_list_lock);
43
44/* HCI callback list */
45LIST_HEAD(hci_cb_list);
46DEFINE_RWLOCK(hci_cb_list_lock);
47
Sasha Levin3df92b32012-05-27 22:36:56 +020048/* HCI ID Numbering */
49static DEFINE_IDA(hci_index_ida);
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* ---- HCI notifications ---- */
52
Marcel Holtmann65164552005-10-28 19:20:48 +020053static void hci_notify(struct hci_dev *hdev, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Marcel Holtmann040030e2012-02-20 14:50:37 +010055 hci_sock_dev_event(hdev, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
58/* ---- HCI requests ---- */
59
Johan Hedberg42c6b122013-03-05 20:37:49 +020060static void hci_req_sync_complete(struct hci_dev *hdev, u8 result)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Johan Hedberg42c6b122013-03-05 20:37:49 +020062 BT_DBG("%s result 0x%2.2x", hdev->name, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 if (hdev->req_status == HCI_REQ_PEND) {
65 hdev->req_result = result;
66 hdev->req_status = HCI_REQ_DONE;
67 wake_up_interruptible(&hdev->req_wait_q);
68 }
69}
70
71static void hci_req_cancel(struct hci_dev *hdev, int err)
72{
73 BT_DBG("%s err 0x%2.2x", hdev->name, err);
74
75 if (hdev->req_status == HCI_REQ_PEND) {
76 hdev->req_result = err;
77 hdev->req_status = HCI_REQ_CANCELED;
78 wake_up_interruptible(&hdev->req_wait_q);
79 }
80}
81
Fengguang Wu77a63e02013-04-20 16:24:31 +030082static struct sk_buff *hci_get_cmd_complete(struct hci_dev *hdev, u16 opcode,
83 u8 event)
Johan Hedberg75e84b72013-04-02 13:35:04 +030084{
85 struct hci_ev_cmd_complete *ev;
86 struct hci_event_hdr *hdr;
87 struct sk_buff *skb;
88
89 hci_dev_lock(hdev);
90
91 skb = hdev->recv_evt;
92 hdev->recv_evt = NULL;
93
94 hci_dev_unlock(hdev);
95
96 if (!skb)
97 return ERR_PTR(-ENODATA);
98
99 if (skb->len < sizeof(*hdr)) {
100 BT_ERR("Too short HCI event");
101 goto failed;
102 }
103
104 hdr = (void *) skb->data;
105 skb_pull(skb, HCI_EVENT_HDR_SIZE);
106
Johan Hedberg7b1abbb2013-04-03 21:54:47 +0300107 if (event) {
108 if (hdr->evt != event)
109 goto failed;
110 return skb;
111 }
112
Johan Hedberg75e84b72013-04-02 13:35:04 +0300113 if (hdr->evt != HCI_EV_CMD_COMPLETE) {
114 BT_DBG("Last event is not cmd complete (0x%2.2x)", hdr->evt);
115 goto failed;
116 }
117
118 if (skb->len < sizeof(*ev)) {
119 BT_ERR("Too short cmd_complete event");
120 goto failed;
121 }
122
123 ev = (void *) skb->data;
124 skb_pull(skb, sizeof(*ev));
125
126 if (opcode == __le16_to_cpu(ev->opcode))
127 return skb;
128
129 BT_DBG("opcode doesn't match (0x%2.2x != 0x%2.2x)", opcode,
130 __le16_to_cpu(ev->opcode));
131
132failed:
133 kfree_skb(skb);
134 return ERR_PTR(-ENODATA);
135}
136
Johan Hedberg7b1abbb2013-04-03 21:54:47 +0300137struct sk_buff *__hci_cmd_sync_ev(struct hci_dev *hdev, u16 opcode, u32 plen,
Johan Hedberg07dc93d2013-04-19 10:14:51 +0300138 const void *param, u8 event, u32 timeout)
Johan Hedberg75e84b72013-04-02 13:35:04 +0300139{
140 DECLARE_WAITQUEUE(wait, current);
141 struct hci_request req;
142 int err = 0;
143
144 BT_DBG("%s", hdev->name);
145
146 hci_req_init(&req, hdev);
147
Johan Hedberg7b1abbb2013-04-03 21:54:47 +0300148 hci_req_add_ev(&req, opcode, plen, param, event);
Johan Hedberg75e84b72013-04-02 13:35:04 +0300149
150 hdev->req_status = HCI_REQ_PEND;
151
152 err = hci_req_run(&req, hci_req_sync_complete);
153 if (err < 0)
154 return ERR_PTR(err);
155
156 add_wait_queue(&hdev->req_wait_q, &wait);
157 set_current_state(TASK_INTERRUPTIBLE);
158
159 schedule_timeout(timeout);
160
161 remove_wait_queue(&hdev->req_wait_q, &wait);
162
163 if (signal_pending(current))
164 return ERR_PTR(-EINTR);
165
166 switch (hdev->req_status) {
167 case HCI_REQ_DONE:
168 err = -bt_to_errno(hdev->req_result);
169 break;
170
171 case HCI_REQ_CANCELED:
172 err = -hdev->req_result;
173 break;
174
175 default:
176 err = -ETIMEDOUT;
177 break;
178 }
179
180 hdev->req_status = hdev->req_result = 0;
181
182 BT_DBG("%s end: err %d", hdev->name, err);
183
184 if (err < 0)
185 return ERR_PTR(err);
186
Johan Hedberg7b1abbb2013-04-03 21:54:47 +0300187 return hci_get_cmd_complete(hdev, opcode, event);
188}
189EXPORT_SYMBOL(__hci_cmd_sync_ev);
190
191struct sk_buff *__hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen,
Johan Hedberg07dc93d2013-04-19 10:14:51 +0300192 const void *param, u32 timeout)
Johan Hedberg7b1abbb2013-04-03 21:54:47 +0300193{
194 return __hci_cmd_sync_ev(hdev, opcode, plen, param, 0, timeout);
Johan Hedberg75e84b72013-04-02 13:35:04 +0300195}
196EXPORT_SYMBOL(__hci_cmd_sync);
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/* Execute request and wait for completion. */
Johan Hedberg01178cd2013-03-05 20:37:41 +0200199static int __hci_req_sync(struct hci_dev *hdev,
Johan Hedberg42c6b122013-03-05 20:37:49 +0200200 void (*func)(struct hci_request *req,
201 unsigned long opt),
Johan Hedberg01178cd2013-03-05 20:37:41 +0200202 unsigned long opt, __u32 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200204 struct hci_request req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 DECLARE_WAITQUEUE(wait, current);
206 int err = 0;
207
208 BT_DBG("%s start", hdev->name);
209
Johan Hedberg42c6b122013-03-05 20:37:49 +0200210 hci_req_init(&req, hdev);
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 hdev->req_status = HCI_REQ_PEND;
213
Johan Hedberg42c6b122013-03-05 20:37:49 +0200214 func(&req, opt);
Johan Hedberg53cce222013-03-05 20:37:42 +0200215
Johan Hedberg42c6b122013-03-05 20:37:49 +0200216 err = hci_req_run(&req, hci_req_sync_complete);
217 if (err < 0) {
Johan Hedberg53cce222013-03-05 20:37:42 +0200218 hdev->req_status = 0;
Andre Guedes920c8302013-03-08 11:20:15 -0300219
220 /* ENODATA means the HCI request command queue is empty.
221 * This can happen when a request with conditionals doesn't
222 * trigger any commands to be sent. This is normal behavior
223 * and should not trigger an error return.
Johan Hedberg42c6b122013-03-05 20:37:49 +0200224 */
Andre Guedes920c8302013-03-08 11:20:15 -0300225 if (err == -ENODATA)
226 return 0;
227
228 return err;
Johan Hedberg53cce222013-03-05 20:37:42 +0200229 }
230
Andre Guedesbc4445c2013-03-08 11:20:13 -0300231 add_wait_queue(&hdev->req_wait_q, &wait);
232 set_current_state(TASK_INTERRUPTIBLE);
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 schedule_timeout(timeout);
235
236 remove_wait_queue(&hdev->req_wait_q, &wait);
237
238 if (signal_pending(current))
239 return -EINTR;
240
241 switch (hdev->req_status) {
242 case HCI_REQ_DONE:
Joe Perchese1750722011-06-29 18:18:29 -0700243 err = -bt_to_errno(hdev->req_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 break;
245
246 case HCI_REQ_CANCELED:
247 err = -hdev->req_result;
248 break;
249
250 default:
251 err = -ETIMEDOUT;
252 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Johan Hedberga5040ef2011-01-10 13:28:59 +0200255 hdev->req_status = hdev->req_result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 BT_DBG("%s end: err %d", hdev->name, err);
258
259 return err;
260}
261
Johan Hedberg01178cd2013-03-05 20:37:41 +0200262static int hci_req_sync(struct hci_dev *hdev,
Johan Hedberg42c6b122013-03-05 20:37:49 +0200263 void (*req)(struct hci_request *req,
264 unsigned long opt),
Johan Hedberg01178cd2013-03-05 20:37:41 +0200265 unsigned long opt, __u32 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 int ret;
268
Marcel Holtmann7c6a3292008-09-12 03:11:54 +0200269 if (!test_bit(HCI_UP, &hdev->flags))
270 return -ENETDOWN;
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /* Serialize all requests */
273 hci_req_lock(hdev);
Johan Hedberg01178cd2013-03-05 20:37:41 +0200274 ret = __hci_req_sync(hdev, req, opt, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 hci_req_unlock(hdev);
276
277 return ret;
278}
279
Johan Hedberg42c6b122013-03-05 20:37:49 +0200280static void hci_reset_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200282 BT_DBG("%s %ld", req->hdev->name, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 /* Reset device */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200285 set_bit(HCI_RESET, &req->hdev->flags);
286 hci_req_add(req, HCI_OP_RESET, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Johan Hedberg42c6b122013-03-05 20:37:49 +0200289static void bredr_init(struct hci_request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200291 req->hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_PACKET_BASED;
Andrei Emeltchenko2455a3e2011-12-19 16:31:28 +0200292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* Read Local Supported Features */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200294 hci_req_add(req, HCI_OP_READ_LOCAL_FEATURES, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200296 /* Read Local Version */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200297 hci_req_add(req, HCI_OP_READ_LOCAL_VERSION, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200298
299 /* Read BD Address */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200300 hci_req_add(req, HCI_OP_READ_BD_ADDR, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Johan Hedberg42c6b122013-03-05 20:37:49 +0200303static void amp_init(struct hci_request *req)
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200304{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200305 req->hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_BLOCK_BASED;
Andrei Emeltchenko2455a3e2011-12-19 16:31:28 +0200306
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200307 /* Read Local Version */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200308 hci_req_add(req, HCI_OP_READ_LOCAL_VERSION, 0, NULL);
Andrei Emeltchenko6bcbc482012-03-28 16:31:24 +0300309
310 /* Read Local AMP Info */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200311 hci_req_add(req, HCI_OP_READ_LOCAL_AMP_INFO, 0, NULL);
Andrei Emeltchenkoe71dfab2012-09-06 15:05:46 +0300312
313 /* Read Data Blk size */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200314 hci_req_add(req, HCI_OP_READ_DATA_BLOCK_SIZE, 0, NULL);
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200315}
316
Johan Hedberg42c6b122013-03-05 20:37:49 +0200317static void hci_init1_req(struct hci_request *req, unsigned long opt)
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200318{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200319 struct hci_dev *hdev = req->hdev;
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200320
321 BT_DBG("%s %ld", hdev->name, opt);
322
Andrei Emeltchenko11778712012-06-11 11:13:10 +0300323 /* Reset */
324 if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks))
Johan Hedberg42c6b122013-03-05 20:37:49 +0200325 hci_reset_req(req, 0);
Andrei Emeltchenko11778712012-06-11 11:13:10 +0300326
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200327 switch (hdev->dev_type) {
328 case HCI_BREDR:
Johan Hedberg42c6b122013-03-05 20:37:49 +0200329 bredr_init(req);
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200330 break;
331
332 case HCI_AMP:
Johan Hedberg42c6b122013-03-05 20:37:49 +0200333 amp_init(req);
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200334 break;
335
336 default:
337 BT_ERR("Unknown device type %d", hdev->dev_type);
338 break;
339 }
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200340}
341
Johan Hedberg42c6b122013-03-05 20:37:49 +0200342static void bredr_setup(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200343{
Johan Hedberg2177bab2013-03-05 20:37:43 +0200344 __le16 param;
345 __u8 flt_type;
346
347 /* Read Buffer Size (ACL mtu, max pkt, etc.) */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200348 hci_req_add(req, HCI_OP_READ_BUFFER_SIZE, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200349
350 /* Read Class of Device */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200351 hci_req_add(req, HCI_OP_READ_CLASS_OF_DEV, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200352
353 /* Read Local Name */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200354 hci_req_add(req, HCI_OP_READ_LOCAL_NAME, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200355
356 /* Read Voice Setting */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200357 hci_req_add(req, HCI_OP_READ_VOICE_SETTING, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200358
359 /* Clear Event Filters */
360 flt_type = HCI_FLT_CLEAR_ALL;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200361 hci_req_add(req, HCI_OP_SET_EVENT_FLT, 1, &flt_type);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200362
363 /* Connection accept timeout ~20 secs */
364 param = __constant_cpu_to_le16(0x7d00);
Johan Hedberg42c6b122013-03-05 20:37:49 +0200365 hci_req_add(req, HCI_OP_WRITE_CA_TIMEOUT, 2, &param);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200366
Johan Hedbergf332ec62013-03-15 17:07:11 -0500367 /* Read page scan parameters */
368 if (req->hdev->hci_ver > BLUETOOTH_VER_1_1) {
369 hci_req_add(req, HCI_OP_READ_PAGE_SCAN_ACTIVITY, 0, NULL);
370 hci_req_add(req, HCI_OP_READ_PAGE_SCAN_TYPE, 0, NULL);
371 }
Johan Hedberg2177bab2013-03-05 20:37:43 +0200372}
373
Johan Hedberg42c6b122013-03-05 20:37:49 +0200374static void le_setup(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200375{
Johan Hedbergc73eee92013-04-19 18:35:21 +0300376 struct hci_dev *hdev = req->hdev;
377
Johan Hedberg2177bab2013-03-05 20:37:43 +0200378 /* Read LE Buffer Size */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200379 hci_req_add(req, HCI_OP_LE_READ_BUFFER_SIZE, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200380
381 /* Read LE Local Supported Features */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200382 hci_req_add(req, HCI_OP_LE_READ_LOCAL_FEATURES, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200383
384 /* Read LE Advertising Channel TX Power */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200385 hci_req_add(req, HCI_OP_LE_READ_ADV_TX_POWER, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200386
387 /* Read LE White List Size */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200388 hci_req_add(req, HCI_OP_LE_READ_WHITE_LIST_SIZE, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200389
390 /* Read LE Supported States */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200391 hci_req_add(req, HCI_OP_LE_READ_SUPPORTED_STATES, 0, NULL);
Johan Hedbergc73eee92013-04-19 18:35:21 +0300392
393 /* LE-only controllers have LE implicitly enabled */
394 if (!lmp_bredr_capable(hdev))
395 set_bit(HCI_LE_ENABLED, &hdev->dev_flags);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200396}
397
398static u8 hci_get_inquiry_mode(struct hci_dev *hdev)
399{
400 if (lmp_ext_inq_capable(hdev))
401 return 0x02;
402
403 if (lmp_inq_rssi_capable(hdev))
404 return 0x01;
405
406 if (hdev->manufacturer == 11 && hdev->hci_rev == 0x00 &&
407 hdev->lmp_subver == 0x0757)
408 return 0x01;
409
410 if (hdev->manufacturer == 15) {
411 if (hdev->hci_rev == 0x03 && hdev->lmp_subver == 0x6963)
412 return 0x01;
413 if (hdev->hci_rev == 0x09 && hdev->lmp_subver == 0x6963)
414 return 0x01;
415 if (hdev->hci_rev == 0x00 && hdev->lmp_subver == 0x6965)
416 return 0x01;
417 }
418
419 if (hdev->manufacturer == 31 && hdev->hci_rev == 0x2005 &&
420 hdev->lmp_subver == 0x1805)
421 return 0x01;
422
423 return 0x00;
424}
425
Johan Hedberg42c6b122013-03-05 20:37:49 +0200426static void hci_setup_inquiry_mode(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200427{
428 u8 mode;
429
Johan Hedberg42c6b122013-03-05 20:37:49 +0200430 mode = hci_get_inquiry_mode(req->hdev);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200431
Johan Hedberg42c6b122013-03-05 20:37:49 +0200432 hci_req_add(req, HCI_OP_WRITE_INQUIRY_MODE, 1, &mode);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200433}
434
Johan Hedberg42c6b122013-03-05 20:37:49 +0200435static void hci_setup_event_mask(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200436{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200437 struct hci_dev *hdev = req->hdev;
438
Johan Hedberg2177bab2013-03-05 20:37:43 +0200439 /* The second byte is 0xff instead of 0x9f (two reserved bits
440 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
441 * command otherwise.
442 */
443 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
444
445 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
446 * any event mask for pre 1.2 devices.
447 */
448 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
449 return;
450
451 if (lmp_bredr_capable(hdev)) {
452 events[4] |= 0x01; /* Flow Specification Complete */
453 events[4] |= 0x02; /* Inquiry Result with RSSI */
454 events[4] |= 0x04; /* Read Remote Extended Features Complete */
455 events[5] |= 0x08; /* Synchronous Connection Complete */
456 events[5] |= 0x10; /* Synchronous Connection Changed */
Marcel Holtmannc7882cb2013-08-13 10:00:54 -0700457 } else {
458 /* Use a different default for LE-only devices */
459 memset(events, 0, sizeof(events));
460 events[0] |= 0x10; /* Disconnection Complete */
461 events[0] |= 0x80; /* Encryption Change */
462 events[1] |= 0x08; /* Read Remote Version Information Complete */
463 events[1] |= 0x20; /* Command Complete */
464 events[1] |= 0x40; /* Command Status */
465 events[1] |= 0x80; /* Hardware Error */
466 events[2] |= 0x04; /* Number of Completed Packets */
467 events[3] |= 0x02; /* Data Buffer Overflow */
468 events[5] |= 0x80; /* Encryption Key Refresh Complete */
Johan Hedberg2177bab2013-03-05 20:37:43 +0200469 }
470
471 if (lmp_inq_rssi_capable(hdev))
472 events[4] |= 0x02; /* Inquiry Result with RSSI */
473
474 if (lmp_sniffsubr_capable(hdev))
475 events[5] |= 0x20; /* Sniff Subrating */
476
477 if (lmp_pause_enc_capable(hdev))
478 events[5] |= 0x80; /* Encryption Key Refresh Complete */
479
480 if (lmp_ext_inq_capable(hdev))
481 events[5] |= 0x40; /* Extended Inquiry Result */
482
483 if (lmp_no_flush_capable(hdev))
484 events[7] |= 0x01; /* Enhanced Flush Complete */
485
486 if (lmp_lsto_capable(hdev))
487 events[6] |= 0x80; /* Link Supervision Timeout Changed */
488
489 if (lmp_ssp_capable(hdev)) {
490 events[6] |= 0x01; /* IO Capability Request */
491 events[6] |= 0x02; /* IO Capability Response */
492 events[6] |= 0x04; /* User Confirmation Request */
493 events[6] |= 0x08; /* User Passkey Request */
494 events[6] |= 0x10; /* Remote OOB Data Request */
495 events[6] |= 0x20; /* Simple Pairing Complete */
496 events[7] |= 0x04; /* User Passkey Notification */
497 events[7] |= 0x08; /* Keypress Notification */
498 events[7] |= 0x10; /* Remote Host Supported
499 * Features Notification
500 */
501 }
502
503 if (lmp_le_capable(hdev))
504 events[7] |= 0x20; /* LE Meta-Event */
505
Johan Hedberg42c6b122013-03-05 20:37:49 +0200506 hci_req_add(req, HCI_OP_SET_EVENT_MASK, sizeof(events), events);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200507
508 if (lmp_le_capable(hdev)) {
509 memset(events, 0, sizeof(events));
510 events[0] = 0x1f;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200511 hci_req_add(req, HCI_OP_LE_SET_EVENT_MASK,
512 sizeof(events), events);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200513 }
514}
515
Johan Hedberg42c6b122013-03-05 20:37:49 +0200516static void hci_init2_req(struct hci_request *req, unsigned long opt)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200517{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200518 struct hci_dev *hdev = req->hdev;
519
Johan Hedberg2177bab2013-03-05 20:37:43 +0200520 if (lmp_bredr_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +0200521 bredr_setup(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200522
523 if (lmp_le_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +0200524 le_setup(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200525
Johan Hedberg42c6b122013-03-05 20:37:49 +0200526 hci_setup_event_mask(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200527
528 if (hdev->hci_ver > BLUETOOTH_VER_1_1)
Johan Hedberg42c6b122013-03-05 20:37:49 +0200529 hci_req_add(req, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200530
531 if (lmp_ssp_capable(hdev)) {
532 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
533 u8 mode = 0x01;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200534 hci_req_add(req, HCI_OP_WRITE_SSP_MODE,
535 sizeof(mode), &mode);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200536 } else {
537 struct hci_cp_write_eir cp;
538
539 memset(hdev->eir, 0, sizeof(hdev->eir));
540 memset(&cp, 0, sizeof(cp));
541
Johan Hedberg42c6b122013-03-05 20:37:49 +0200542 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200543 }
544 }
545
546 if (lmp_inq_rssi_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +0200547 hci_setup_inquiry_mode(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200548
549 if (lmp_inq_tx_pwr_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +0200550 hci_req_add(req, HCI_OP_READ_INQ_RSP_TX_POWER, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200551
552 if (lmp_ext_feat_capable(hdev)) {
553 struct hci_cp_read_local_ext_features cp;
554
555 cp.page = 0x01;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200556 hci_req_add(req, HCI_OP_READ_LOCAL_EXT_FEATURES,
557 sizeof(cp), &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200558 }
559
560 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags)) {
561 u8 enable = 1;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200562 hci_req_add(req, HCI_OP_WRITE_AUTH_ENABLE, sizeof(enable),
563 &enable);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200564 }
565}
566
Johan Hedberg42c6b122013-03-05 20:37:49 +0200567static void hci_setup_link_policy(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200568{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200569 struct hci_dev *hdev = req->hdev;
Johan Hedberg2177bab2013-03-05 20:37:43 +0200570 struct hci_cp_write_def_link_policy cp;
571 u16 link_policy = 0;
572
573 if (lmp_rswitch_capable(hdev))
574 link_policy |= HCI_LP_RSWITCH;
575 if (lmp_hold_capable(hdev))
576 link_policy |= HCI_LP_HOLD;
577 if (lmp_sniff_capable(hdev))
578 link_policy |= HCI_LP_SNIFF;
579 if (lmp_park_capable(hdev))
580 link_policy |= HCI_LP_PARK;
581
582 cp.policy = cpu_to_le16(link_policy);
Johan Hedberg42c6b122013-03-05 20:37:49 +0200583 hci_req_add(req, HCI_OP_WRITE_DEF_LINK_POLICY, sizeof(cp), &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200584}
585
Johan Hedberg42c6b122013-03-05 20:37:49 +0200586static void hci_set_le_support(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200587{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200588 struct hci_dev *hdev = req->hdev;
Johan Hedberg2177bab2013-03-05 20:37:43 +0200589 struct hci_cp_write_le_host_supported cp;
590
Johan Hedbergc73eee92013-04-19 18:35:21 +0300591 /* LE-only devices do not support explicit enablement */
592 if (!lmp_bredr_capable(hdev))
593 return;
594
Johan Hedberg2177bab2013-03-05 20:37:43 +0200595 memset(&cp, 0, sizeof(cp));
596
597 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
598 cp.le = 0x01;
599 cp.simul = lmp_le_br_capable(hdev);
600 }
601
602 if (cp.le != lmp_host_le_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +0200603 hci_req_add(req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(cp),
604 &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200605}
606
Johan Hedberg42c6b122013-03-05 20:37:49 +0200607static void hci_init3_req(struct hci_request *req, unsigned long opt)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200608{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200609 struct hci_dev *hdev = req->hdev;
Johan Hedbergd2c5d772013-04-17 15:00:52 +0300610 u8 p;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200611
Gustavo Padovanb8f4e062013-06-13 12:34:31 +0100612 /* Some Broadcom based Bluetooth controllers do not support the
613 * Delete Stored Link Key command. They are clearly indicating its
614 * absence in the bit mask of supported commands.
615 *
616 * Check the supported commands and only if the the command is marked
617 * as supported send it. If not supported assume that the controller
618 * does not have actual support for stored link keys which makes this
619 * command redundant anyway.
Marcel Holtmann637b4ca2013-07-01 14:14:46 -0700620 */
Johan Hedberg59f45d52013-06-13 11:01:13 +0300621 if (hdev->commands[6] & 0x80) {
622 struct hci_cp_delete_stored_link_key cp;
623
624 bacpy(&cp.bdaddr, BDADDR_ANY);
625 cp.delete_all = 0x01;
626 hci_req_add(req, HCI_OP_DELETE_STORED_LINK_KEY,
627 sizeof(cp), &cp);
628 }
629
Johan Hedberg2177bab2013-03-05 20:37:43 +0200630 if (hdev->commands[5] & 0x10)
Johan Hedberg42c6b122013-03-05 20:37:49 +0200631 hci_setup_link_policy(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200632
Johan Hedberg04b4edc2013-03-15 17:07:01 -0500633 if (lmp_le_capable(hdev)) {
Johan Hedberg42c6b122013-03-05 20:37:49 +0200634 hci_set_le_support(req);
Johan Hedberg04b4edc2013-03-15 17:07:01 -0500635 hci_update_ad(req);
636 }
Johan Hedbergd2c5d772013-04-17 15:00:52 +0300637
638 /* Read features beyond page 1 if available */
639 for (p = 2; p < HCI_MAX_PAGES && p <= hdev->max_page; p++) {
640 struct hci_cp_read_local_ext_features cp;
641
642 cp.page = p;
643 hci_req_add(req, HCI_OP_READ_LOCAL_EXT_FEATURES,
644 sizeof(cp), &cp);
645 }
Johan Hedberg2177bab2013-03-05 20:37:43 +0200646}
647
648static int __hci_init(struct hci_dev *hdev)
649{
650 int err;
651
652 err = __hci_req_sync(hdev, hci_init1_req, 0, HCI_INIT_TIMEOUT);
653 if (err < 0)
654 return err;
655
656 /* HCI_BREDR covers both single-mode LE, BR/EDR and dual-mode
657 * BR/EDR/LE type controllers. AMP controllers only need the
658 * first stage init.
659 */
660 if (hdev->dev_type != HCI_BREDR)
661 return 0;
662
663 err = __hci_req_sync(hdev, hci_init2_req, 0, HCI_INIT_TIMEOUT);
664 if (err < 0)
665 return err;
666
667 return __hci_req_sync(hdev, hci_init3_req, 0, HCI_INIT_TIMEOUT);
668}
669
Johan Hedberg42c6b122013-03-05 20:37:49 +0200670static void hci_scan_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 __u8 scan = opt;
673
Johan Hedberg42c6b122013-03-05 20:37:49 +0200674 BT_DBG("%s %x", req->hdev->name, scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 /* Inquiry and Page scans */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200677 hci_req_add(req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Johan Hedberg42c6b122013-03-05 20:37:49 +0200680static void hci_auth_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 __u8 auth = opt;
683
Johan Hedberg42c6b122013-03-05 20:37:49 +0200684 BT_DBG("%s %x", req->hdev->name, auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 /* Authentication */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200687 hci_req_add(req, HCI_OP_WRITE_AUTH_ENABLE, 1, &auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
Johan Hedberg42c6b122013-03-05 20:37:49 +0200690static void hci_encrypt_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 __u8 encrypt = opt;
693
Johan Hedberg42c6b122013-03-05 20:37:49 +0200694 BT_DBG("%s %x", req->hdev->name, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200696 /* Encryption */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200697 hci_req_add(req, HCI_OP_WRITE_ENCRYPT_MODE, 1, &encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Johan Hedberg42c6b122013-03-05 20:37:49 +0200700static void hci_linkpol_req(struct hci_request *req, unsigned long opt)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200701{
702 __le16 policy = cpu_to_le16(opt);
703
Johan Hedberg42c6b122013-03-05 20:37:49 +0200704 BT_DBG("%s %x", req->hdev->name, policy);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200705
706 /* Default link policy */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200707 hci_req_add(req, HCI_OP_WRITE_DEF_LINK_POLICY, 2, &policy);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200708}
709
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900710/* Get HCI device by index.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 * Device is held on return. */
712struct hci_dev *hci_dev_get(int index)
713{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200714 struct hci_dev *hdev = NULL, *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 BT_DBG("%d", index);
717
718 if (index < 0)
719 return NULL;
720
721 read_lock(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200722 list_for_each_entry(d, &hci_dev_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (d->id == index) {
724 hdev = hci_dev_hold(d);
725 break;
726 }
727 }
728 read_unlock(&hci_dev_list_lock);
729 return hdev;
730}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732/* ---- Inquiry support ---- */
Johan Hedbergff9ef572012-01-04 14:23:45 +0200733
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200734bool hci_discovery_active(struct hci_dev *hdev)
735{
736 struct discovery_state *discov = &hdev->discovery;
737
Andre Guedes6fbe1952012-02-03 17:47:58 -0300738 switch (discov->state) {
Andre Guedes343f9352012-02-17 20:39:37 -0300739 case DISCOVERY_FINDING:
Andre Guedes6fbe1952012-02-03 17:47:58 -0300740 case DISCOVERY_RESOLVING:
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200741 return true;
742
Andre Guedes6fbe1952012-02-03 17:47:58 -0300743 default:
744 return false;
745 }
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200746}
747
Johan Hedbergff9ef572012-01-04 14:23:45 +0200748void hci_discovery_set_state(struct hci_dev *hdev, int state)
749{
750 BT_DBG("%s state %u -> %u", hdev->name, hdev->discovery.state, state);
751
752 if (hdev->discovery.state == state)
753 return;
754
755 switch (state) {
756 case DISCOVERY_STOPPED:
Andre Guedes7b99b652012-02-13 15:41:02 -0300757 if (hdev->discovery.state != DISCOVERY_STARTING)
758 mgmt_discovering(hdev, 0);
Johan Hedbergff9ef572012-01-04 14:23:45 +0200759 break;
760 case DISCOVERY_STARTING:
761 break;
Andre Guedes343f9352012-02-17 20:39:37 -0300762 case DISCOVERY_FINDING:
Johan Hedbergff9ef572012-01-04 14:23:45 +0200763 mgmt_discovering(hdev, 1);
764 break;
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200765 case DISCOVERY_RESOLVING:
766 break;
Johan Hedbergff9ef572012-01-04 14:23:45 +0200767 case DISCOVERY_STOPPING:
768 break;
769 }
770
771 hdev->discovery.state = state;
772}
773
Andre Guedes1f9b9a52013-04-30 15:29:27 -0300774void hci_inquiry_cache_flush(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Johan Hedberg30883512012-01-04 14:16:21 +0200776 struct discovery_state *cache = &hdev->discovery;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200777 struct inquiry_entry *p, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Johan Hedberg561aafb2012-01-04 13:31:59 +0200779 list_for_each_entry_safe(p, n, &cache->all, all) {
780 list_del(&p->all);
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200781 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
Johan Hedberg561aafb2012-01-04 13:31:59 +0200783
784 INIT_LIST_HEAD(&cache->unknown);
785 INIT_LIST_HEAD(&cache->resolve);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300788struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev,
789 bdaddr_t *bdaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Johan Hedberg30883512012-01-04 14:16:21 +0200791 struct discovery_state *cache = &hdev->discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 struct inquiry_entry *e;
793
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300794 BT_DBG("cache %p, %pMR", cache, bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Johan Hedberg561aafb2012-01-04 13:31:59 +0200796 list_for_each_entry(e, &cache->all, all) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (!bacmp(&e->data.bdaddr, bdaddr))
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200798 return e;
799 }
800
801 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
Johan Hedberg561aafb2012-01-04 13:31:59 +0200804struct inquiry_entry *hci_inquiry_cache_lookup_unknown(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300805 bdaddr_t *bdaddr)
Johan Hedberg561aafb2012-01-04 13:31:59 +0200806{
Johan Hedberg30883512012-01-04 14:16:21 +0200807 struct discovery_state *cache = &hdev->discovery;
Johan Hedberg561aafb2012-01-04 13:31:59 +0200808 struct inquiry_entry *e;
809
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300810 BT_DBG("cache %p, %pMR", cache, bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +0200811
812 list_for_each_entry(e, &cache->unknown, list) {
813 if (!bacmp(&e->data.bdaddr, bdaddr))
814 return e;
815 }
816
817 return NULL;
818}
819
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200820struct inquiry_entry *hci_inquiry_cache_lookup_resolve(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300821 bdaddr_t *bdaddr,
822 int state)
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200823{
824 struct discovery_state *cache = &hdev->discovery;
825 struct inquiry_entry *e;
826
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300827 BT_DBG("cache %p bdaddr %pMR state %d", cache, bdaddr, state);
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200828
829 list_for_each_entry(e, &cache->resolve, list) {
830 if (!bacmp(bdaddr, BDADDR_ANY) && e->name_state == state)
831 return e;
832 if (!bacmp(&e->data.bdaddr, bdaddr))
833 return e;
834 }
835
836 return NULL;
837}
838
Johan Hedberga3d4e202012-01-09 00:53:02 +0200839void hci_inquiry_cache_update_resolve(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300840 struct inquiry_entry *ie)
Johan Hedberga3d4e202012-01-09 00:53:02 +0200841{
842 struct discovery_state *cache = &hdev->discovery;
843 struct list_head *pos = &cache->resolve;
844 struct inquiry_entry *p;
845
846 list_del(&ie->list);
847
848 list_for_each_entry(p, &cache->resolve, list) {
849 if (p->name_state != NAME_PENDING &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300850 abs(p->data.rssi) >= abs(ie->data.rssi))
Johan Hedberga3d4e202012-01-09 00:53:02 +0200851 break;
852 pos = &p->list;
853 }
854
855 list_add(&ie->list, pos);
856}
857
Johan Hedberg31754052012-01-04 13:39:52 +0200858bool hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300859 bool name_known, bool *ssp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Johan Hedberg30883512012-01-04 14:16:21 +0200861 struct discovery_state *cache = &hdev->discovery;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200862 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300864 BT_DBG("cache %p, %pMR", cache, &data->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Szymon Janc2b2fec42012-11-20 11:38:54 +0100866 hci_remove_remote_oob_data(hdev, &data->bdaddr);
867
Johan Hedberg388fc8f2012-02-23 00:38:59 +0200868 if (ssp)
869 *ssp = data->ssp_mode;
870
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200871 ie = hci_inquiry_cache_lookup(hdev, &data->bdaddr);
Johan Hedberga3d4e202012-01-09 00:53:02 +0200872 if (ie) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +0200873 if (ie->data.ssp_mode && ssp)
874 *ssp = true;
875
Johan Hedberga3d4e202012-01-09 00:53:02 +0200876 if (ie->name_state == NAME_NEEDED &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300877 data->rssi != ie->data.rssi) {
Johan Hedberga3d4e202012-01-09 00:53:02 +0200878 ie->data.rssi = data->rssi;
879 hci_inquiry_cache_update_resolve(hdev, ie);
880 }
881
Johan Hedberg561aafb2012-01-04 13:31:59 +0200882 goto update;
Johan Hedberga3d4e202012-01-09 00:53:02 +0200883 }
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200884
Johan Hedberg561aafb2012-01-04 13:31:59 +0200885 /* Entry not in the cache. Add new one. */
886 ie = kzalloc(sizeof(struct inquiry_entry), GFP_ATOMIC);
887 if (!ie)
Johan Hedberg31754052012-01-04 13:39:52 +0200888 return false;
Johan Hedberg561aafb2012-01-04 13:31:59 +0200889
890 list_add(&ie->all, &cache->all);
891
892 if (name_known) {
893 ie->name_state = NAME_KNOWN;
894 } else {
895 ie->name_state = NAME_NOT_KNOWN;
896 list_add(&ie->list, &cache->unknown);
897 }
898
899update:
900 if (name_known && ie->name_state != NAME_KNOWN &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300901 ie->name_state != NAME_PENDING) {
Johan Hedberg561aafb2012-01-04 13:31:59 +0200902 ie->name_state = NAME_KNOWN;
903 list_del(&ie->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
905
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200906 memcpy(&ie->data, data, sizeof(*data));
907 ie->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 cache->timestamp = jiffies;
Johan Hedberg31754052012-01-04 13:39:52 +0200909
910 if (ie->name_state == NAME_NOT_KNOWN)
911 return false;
912
913 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
916static int inquiry_cache_dump(struct hci_dev *hdev, int num, __u8 *buf)
917{
Johan Hedberg30883512012-01-04 14:16:21 +0200918 struct discovery_state *cache = &hdev->discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 struct inquiry_info *info = (struct inquiry_info *) buf;
920 struct inquiry_entry *e;
921 int copied = 0;
922
Johan Hedberg561aafb2012-01-04 13:31:59 +0200923 list_for_each_entry(e, &cache->all, all) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 struct inquiry_data *data = &e->data;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200925
926 if (copied >= num)
927 break;
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 bacpy(&info->bdaddr, &data->bdaddr);
930 info->pscan_rep_mode = data->pscan_rep_mode;
931 info->pscan_period_mode = data->pscan_period_mode;
932 info->pscan_mode = data->pscan_mode;
933 memcpy(info->dev_class, data->dev_class, 3);
934 info->clock_offset = data->clock_offset;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 info++;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200937 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939
940 BT_DBG("cache %p, copied %d", cache, copied);
941 return copied;
942}
943
Johan Hedberg42c6b122013-03-05 20:37:49 +0200944static void hci_inq_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
946 struct hci_inquiry_req *ir = (struct hci_inquiry_req *) opt;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200947 struct hci_dev *hdev = req->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 struct hci_cp_inquiry cp;
949
950 BT_DBG("%s", hdev->name);
951
952 if (test_bit(HCI_INQUIRY, &hdev->flags))
953 return;
954
955 /* Start Inquiry */
956 memcpy(&cp.lap, &ir->lap, 3);
957 cp.length = ir->length;
958 cp.num_rsp = ir->num_rsp;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200959 hci_req_add(req, HCI_OP_INQUIRY, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960}
961
Andre Guedes3e13fa12013-03-27 20:04:56 -0300962static int wait_inquiry(void *word)
963{
964 schedule();
965 return signal_pending(current);
966}
967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968int hci_inquiry(void __user *arg)
969{
970 __u8 __user *ptr = arg;
971 struct hci_inquiry_req ir;
972 struct hci_dev *hdev;
973 int err = 0, do_inquiry = 0, max_rsp;
974 long timeo;
975 __u8 *buf;
976
977 if (copy_from_user(&ir, ptr, sizeof(ir)))
978 return -EFAULT;
979
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200980 hdev = hci_dev_get(ir.dev_id);
981 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return -ENODEV;
983
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300984 hci_dev_lock(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900985 if (inquiry_cache_age(hdev) > INQUIRY_CACHE_AGE_MAX ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300986 inquiry_cache_empty(hdev) || ir.flags & IREQ_CACHE_FLUSH) {
Andre Guedes1f9b9a52013-04-30 15:29:27 -0300987 hci_inquiry_cache_flush(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 do_inquiry = 1;
989 }
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300990 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Marcel Holtmann04837f62006-07-03 10:02:33 +0200992 timeo = ir.length * msecs_to_jiffies(2000);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200993
994 if (do_inquiry) {
Johan Hedberg01178cd2013-03-05 20:37:41 +0200995 err = hci_req_sync(hdev, hci_inq_req, (unsigned long) &ir,
996 timeo);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200997 if (err < 0)
998 goto done;
Andre Guedes3e13fa12013-03-27 20:04:56 -0300999
1000 /* Wait until Inquiry procedure finishes (HCI_INQUIRY flag is
1001 * cleared). If it is interrupted by a signal, return -EINTR.
1002 */
1003 if (wait_on_bit(&hdev->flags, HCI_INQUIRY, wait_inquiry,
1004 TASK_INTERRUPTIBLE))
1005 return -EINTR;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001008 /* for unlimited number of responses we will use buffer with
1009 * 255 entries
1010 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 max_rsp = (ir.num_rsp == 0) ? 255 : ir.num_rsp;
1012
1013 /* cache_dump can't sleep. Therefore we allocate temp buffer and then
1014 * copy it to the user space.
1015 */
Szymon Janc01df8c32011-02-17 16:46:47 +01001016 buf = kmalloc(sizeof(struct inquiry_info) * max_rsp, GFP_KERNEL);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001017 if (!buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 err = -ENOMEM;
1019 goto done;
1020 }
1021
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001022 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 ir.num_rsp = inquiry_cache_dump(hdev, max_rsp, buf);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001024 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 BT_DBG("num_rsp %d", ir.num_rsp);
1027
1028 if (!copy_to_user(ptr, &ir, sizeof(ir))) {
1029 ptr += sizeof(ir);
1030 if (copy_to_user(ptr, buf, sizeof(struct inquiry_info) *
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001031 ir.num_rsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 err = -EFAULT;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001033 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 err = -EFAULT;
1035
1036 kfree(buf);
1037
1038done:
1039 hci_dev_put(hdev);
1040 return err;
1041}
1042
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001043static u8 create_ad(struct hci_dev *hdev, u8 *ptr)
1044{
1045 u8 ad_len = 0, flags = 0;
1046 size_t name_len;
1047
1048 if (test_bit(HCI_LE_PERIPHERAL, &hdev->dev_flags))
1049 flags |= LE_AD_GENERAL;
1050
1051 if (!lmp_bredr_capable(hdev))
1052 flags |= LE_AD_NO_BREDR;
1053
1054 if (lmp_le_br_capable(hdev))
1055 flags |= LE_AD_SIM_LE_BREDR_CTRL;
1056
1057 if (lmp_host_le_br_capable(hdev))
1058 flags |= LE_AD_SIM_LE_BREDR_HOST;
1059
1060 if (flags) {
1061 BT_DBG("adv flags 0x%02x", flags);
1062
1063 ptr[0] = 2;
1064 ptr[1] = EIR_FLAGS;
1065 ptr[2] = flags;
1066
1067 ad_len += 3;
1068 ptr += 3;
1069 }
1070
1071 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID) {
1072 ptr[0] = 2;
1073 ptr[1] = EIR_TX_POWER;
1074 ptr[2] = (u8) hdev->adv_tx_power;
1075
1076 ad_len += 3;
1077 ptr += 3;
1078 }
1079
1080 name_len = strlen(hdev->dev_name);
1081 if (name_len > 0) {
1082 size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2;
1083
1084 if (name_len > max_len) {
1085 name_len = max_len;
1086 ptr[1] = EIR_NAME_SHORT;
1087 } else
1088 ptr[1] = EIR_NAME_COMPLETE;
1089
1090 ptr[0] = name_len + 1;
1091
1092 memcpy(ptr + 2, hdev->dev_name, name_len);
1093
1094 ad_len += (name_len + 2);
1095 ptr += (name_len + 2);
1096 }
1097
1098 return ad_len;
1099}
1100
Johan Hedberg04b4edc2013-03-15 17:07:01 -05001101void hci_update_ad(struct hci_request *req)
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001102{
Johan Hedberg04b4edc2013-03-15 17:07:01 -05001103 struct hci_dev *hdev = req->hdev;
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001104 struct hci_cp_le_set_adv_data cp;
1105 u8 len;
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001106
Johan Hedberg04b4edc2013-03-15 17:07:01 -05001107 if (!lmp_le_capable(hdev))
1108 return;
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001109
1110 memset(&cp, 0, sizeof(cp));
1111
1112 len = create_ad(hdev, cp.data);
1113
1114 if (hdev->adv_data_len == len &&
Johan Hedberg04b4edc2013-03-15 17:07:01 -05001115 memcmp(cp.data, hdev->adv_data, len) == 0)
1116 return;
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001117
1118 memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
1119 hdev->adv_data_len = len;
1120
1121 cp.length = len;
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001122
Johan Hedberg04b4edc2013-03-15 17:07:01 -05001123 hci_req_add(req, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp);
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001124}
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126/* ---- HCI ioctl helpers ---- */
1127
1128int hci_dev_open(__u16 dev)
1129{
1130 struct hci_dev *hdev;
1131 int ret = 0;
1132
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001133 hdev = hci_dev_get(dev);
1134 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return -ENODEV;
1136
1137 BT_DBG("%s %p", hdev->name, hdev);
1138
1139 hci_req_lock(hdev);
1140
Johan Hovold94324962012-03-15 14:48:41 +01001141 if (test_bit(HCI_UNREGISTER, &hdev->dev_flags)) {
1142 ret = -ENODEV;
1143 goto done;
1144 }
1145
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001146 if (hdev->rfkill && rfkill_blocked(hdev->rfkill)) {
1147 ret = -ERFKILL;
1148 goto done;
1149 }
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (test_bit(HCI_UP, &hdev->flags)) {
1152 ret = -EALREADY;
1153 goto done;
1154 }
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (hdev->open(hdev)) {
1157 ret = -EIO;
1158 goto done;
1159 }
1160
Marcel Holtmannf41c70c2012-11-12 14:02:14 +09001161 atomic_set(&hdev->cmd_cnt, 1);
1162 set_bit(HCI_INIT, &hdev->flags);
1163
1164 if (hdev->setup && test_bit(HCI_SETUP, &hdev->dev_flags))
1165 ret = hdev->setup(hdev);
1166
1167 if (!ret) {
1168 /* Treat all non BR/EDR controllers as raw devices if
1169 * enable_hs is not set.
1170 */
1171 if (hdev->dev_type != HCI_BREDR && !enable_hs)
1172 set_bit(HCI_RAW, &hdev->flags);
1173
1174 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
1175 set_bit(HCI_RAW, &hdev->flags);
1176
1177 if (!test_bit(HCI_RAW, &hdev->flags))
1178 ret = __hci_init(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180
Marcel Holtmannf41c70c2012-11-12 14:02:14 +09001181 clear_bit(HCI_INIT, &hdev->flags);
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (!ret) {
1184 hci_dev_hold(hdev);
1185 set_bit(HCI_UP, &hdev->flags);
1186 hci_notify(hdev, HCI_DEV_UP);
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03001187 if (!test_bit(HCI_SETUP, &hdev->dev_flags) &&
1188 mgmt_valid_hdev(hdev)) {
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001189 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02001190 mgmt_powered(hdev, 1);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001191 hci_dev_unlock(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001192 }
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001193 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 /* Init failed, cleanup */
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02001195 flush_work(&hdev->tx_work);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02001196 flush_work(&hdev->cmd_work);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04001197 flush_work(&hdev->rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 skb_queue_purge(&hdev->cmd_q);
1200 skb_queue_purge(&hdev->rx_q);
1201
1202 if (hdev->flush)
1203 hdev->flush(hdev);
1204
1205 if (hdev->sent_cmd) {
1206 kfree_skb(hdev->sent_cmd);
1207 hdev->sent_cmd = NULL;
1208 }
1209
1210 hdev->close(hdev);
1211 hdev->flags = 0;
1212 }
1213
1214done:
1215 hci_req_unlock(hdev);
1216 hci_dev_put(hdev);
1217 return ret;
1218}
1219
1220static int hci_dev_do_close(struct hci_dev *hdev)
1221{
1222 BT_DBG("%s %p", hdev->name, hdev);
1223
Vinicius Costa Gomes78c04c02012-09-14 16:34:46 -03001224 cancel_delayed_work(&hdev->power_off);
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 hci_req_cancel(hdev, ENODEV);
1227 hci_req_lock(hdev);
1228
1229 if (!test_and_clear_bit(HCI_UP, &hdev->flags)) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -03001230 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 hci_req_unlock(hdev);
1232 return 0;
1233 }
1234
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02001235 /* Flush RX and TX works */
1236 flush_work(&hdev->tx_work);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04001237 flush_work(&hdev->rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001239 if (hdev->discov_timeout > 0) {
Johan Hedberge0f93092011-11-09 01:44:22 +02001240 cancel_delayed_work(&hdev->discov_off);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001241 hdev->discov_timeout = 0;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001242 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001243 }
1244
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001245 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg7d785252011-12-15 00:47:39 +02001246 cancel_delayed_work(&hdev->service_cache);
1247
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001248 cancel_delayed_work_sync(&hdev->le_scan_disable);
1249
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001250 hci_dev_lock(hdev);
Andre Guedes1f9b9a52013-04-30 15:29:27 -03001251 hci_inquiry_cache_flush(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 hci_conn_hash_flush(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001253 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 hci_notify(hdev, HCI_DEV_DOWN);
1256
1257 if (hdev->flush)
1258 hdev->flush(hdev);
1259
1260 /* Reset device */
1261 skb_queue_purge(&hdev->cmd_q);
1262 atomic_set(&hdev->cmd_cnt, 1);
Johan Hedberg8af59462012-02-03 21:29:40 +02001263 if (!test_bit(HCI_RAW, &hdev->flags) &&
Szymon Janca6c511c2012-05-23 12:35:46 +02001264 test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 set_bit(HCI_INIT, &hdev->flags);
Johan Hedberg01178cd2013-03-05 20:37:41 +02001266 __hci_req_sync(hdev, hci_reset_req, 0, HCI_CMD_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 clear_bit(HCI_INIT, &hdev->flags);
1268 }
1269
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02001270 /* flush cmd work */
1271 flush_work(&hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 /* Drop queues */
1274 skb_queue_purge(&hdev->rx_q);
1275 skb_queue_purge(&hdev->cmd_q);
1276 skb_queue_purge(&hdev->raw_q);
1277
1278 /* Drop last sent command */
1279 if (hdev->sent_cmd) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -03001280 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 kfree_skb(hdev->sent_cmd);
1282 hdev->sent_cmd = NULL;
1283 }
1284
Johan Hedbergb6ddb632013-04-02 13:34:31 +03001285 kfree_skb(hdev->recv_evt);
1286 hdev->recv_evt = NULL;
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 /* After this point our queues are empty
1289 * and no tasks are scheduled. */
1290 hdev->close(hdev);
1291
Johan Hedberg35b973c2013-03-15 17:06:59 -05001292 /* Clear flags */
1293 hdev->flags = 0;
1294 hdev->dev_flags &= ~HCI_PERSISTENT_MASK;
1295
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03001296 if (!test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags) &&
1297 mgmt_valid_hdev(hdev)) {
Marcel Holtmann8ee56542012-02-21 12:33:48 +01001298 hci_dev_lock(hdev);
1299 mgmt_powered(hdev, 0);
1300 hci_dev_unlock(hdev);
1301 }
Johan Hedberg5add6af2010-12-16 10:00:37 +02001302
Andrei Emeltchenkoced5c332012-11-28 17:59:42 +02001303 /* Controller radio is available but is currently powered down */
1304 hdev->amp_status = 0;
1305
Johan Hedberge59fda82012-02-22 18:11:53 +02001306 memset(hdev->eir, 0, sizeof(hdev->eir));
Johan Hedberg09b3c3f2012-02-22 22:01:41 +02001307 memset(hdev->dev_class, 0, sizeof(hdev->dev_class));
Johan Hedberge59fda82012-02-22 18:11:53 +02001308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 hci_req_unlock(hdev);
1310
1311 hci_dev_put(hdev);
1312 return 0;
1313}
1314
1315int hci_dev_close(__u16 dev)
1316{
1317 struct hci_dev *hdev;
1318 int err;
1319
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001320 hdev = hci_dev_get(dev);
1321 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 return -ENODEV;
Marcel Holtmann8ee56542012-02-21 12:33:48 +01001323
1324 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
1325 cancel_delayed_work(&hdev->power_off);
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 err = hci_dev_do_close(hdev);
Marcel Holtmann8ee56542012-02-21 12:33:48 +01001328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 hci_dev_put(hdev);
1330 return err;
1331}
1332
1333int hci_dev_reset(__u16 dev)
1334{
1335 struct hci_dev *hdev;
1336 int ret = 0;
1337
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001338 hdev = hci_dev_get(dev);
1339 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return -ENODEV;
1341
1342 hci_req_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 if (!test_bit(HCI_UP, &hdev->flags))
1345 goto done;
1346
1347 /* Drop queues */
1348 skb_queue_purge(&hdev->rx_q);
1349 skb_queue_purge(&hdev->cmd_q);
1350
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001351 hci_dev_lock(hdev);
Andre Guedes1f9b9a52013-04-30 15:29:27 -03001352 hci_inquiry_cache_flush(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 hci_conn_hash_flush(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001354 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 if (hdev->flush)
1357 hdev->flush(hdev);
1358
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001359 atomic_set(&hdev->cmd_cnt, 1);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03001360 hdev->acl_cnt = 0; hdev->sco_cnt = 0; hdev->le_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
1362 if (!test_bit(HCI_RAW, &hdev->flags))
Johan Hedberg01178cd2013-03-05 20:37:41 +02001363 ret = __hci_req_sync(hdev, hci_reset_req, 0, HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 hci_req_unlock(hdev);
1367 hci_dev_put(hdev);
1368 return ret;
1369}
1370
1371int hci_dev_reset_stat(__u16 dev)
1372{
1373 struct hci_dev *hdev;
1374 int ret = 0;
1375
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001376 hdev = hci_dev_get(dev);
1377 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return -ENODEV;
1379
1380 memset(&hdev->stat, 0, sizeof(struct hci_dev_stats));
1381
1382 hci_dev_put(hdev);
1383
1384 return ret;
1385}
1386
1387int hci_dev_cmd(unsigned int cmd, void __user *arg)
1388{
1389 struct hci_dev *hdev;
1390 struct hci_dev_req dr;
1391 int err = 0;
1392
1393 if (copy_from_user(&dr, arg, sizeof(dr)))
1394 return -EFAULT;
1395
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001396 hdev = hci_dev_get(dr.dev_id);
1397 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 return -ENODEV;
1399
1400 switch (cmd) {
1401 case HCISETAUTH:
Johan Hedberg01178cd2013-03-05 20:37:41 +02001402 err = hci_req_sync(hdev, hci_auth_req, dr.dev_opt,
1403 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 break;
1405
1406 case HCISETENCRYPT:
1407 if (!lmp_encrypt_capable(hdev)) {
1408 err = -EOPNOTSUPP;
1409 break;
1410 }
1411
1412 if (!test_bit(HCI_AUTH, &hdev->flags)) {
1413 /* Auth must be enabled first */
Johan Hedberg01178cd2013-03-05 20:37:41 +02001414 err = hci_req_sync(hdev, hci_auth_req, dr.dev_opt,
1415 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (err)
1417 break;
1418 }
1419
Johan Hedberg01178cd2013-03-05 20:37:41 +02001420 err = hci_req_sync(hdev, hci_encrypt_req, dr.dev_opt,
1421 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 break;
1423
1424 case HCISETSCAN:
Johan Hedberg01178cd2013-03-05 20:37:41 +02001425 err = hci_req_sync(hdev, hci_scan_req, dr.dev_opt,
1426 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 break;
1428
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001429 case HCISETLINKPOL:
Johan Hedberg01178cd2013-03-05 20:37:41 +02001430 err = hci_req_sync(hdev, hci_linkpol_req, dr.dev_opt,
1431 HCI_INIT_TIMEOUT);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001432 break;
1433
1434 case HCISETLINKMODE:
1435 hdev->link_mode = ((__u16) dr.dev_opt) &
1436 (HCI_LM_MASTER | HCI_LM_ACCEPT);
1437 break;
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 case HCISETPTYPE:
1440 hdev->pkt_type = (__u16) dr.dev_opt;
1441 break;
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 case HCISETACLMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001444 hdev->acl_mtu = *((__u16 *) &dr.dev_opt + 1);
1445 hdev->acl_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 break;
1447
1448 case HCISETSCOMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001449 hdev->sco_mtu = *((__u16 *) &dr.dev_opt + 1);
1450 hdev->sco_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 break;
1452
1453 default:
1454 err = -EINVAL;
1455 break;
1456 }
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 hci_dev_put(hdev);
1459 return err;
1460}
1461
1462int hci_get_dev_list(void __user *arg)
1463{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001464 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 struct hci_dev_list_req *dl;
1466 struct hci_dev_req *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 int n = 0, size, err;
1468 __u16 dev_num;
1469
1470 if (get_user(dev_num, (__u16 __user *) arg))
1471 return -EFAULT;
1472
1473 if (!dev_num || dev_num > (PAGE_SIZE * 2) / sizeof(*dr))
1474 return -EINVAL;
1475
1476 size = sizeof(*dl) + dev_num * sizeof(*dr);
1477
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001478 dl = kzalloc(size, GFP_KERNEL);
1479 if (!dl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return -ENOMEM;
1481
1482 dr = dl->dev_req;
1483
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001484 read_lock(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001485 list_for_each_entry(hdev, &hci_dev_list, list) {
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001486 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
Johan Hedberge0f93092011-11-09 01:44:22 +02001487 cancel_delayed_work(&hdev->power_off);
Johan Hedbergc542a062011-01-26 13:11:03 +02001488
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001489 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
1490 set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergc542a062011-01-26 13:11:03 +02001491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 (dr + n)->dev_id = hdev->id;
1493 (dr + n)->dev_opt = hdev->flags;
Johan Hedbergc542a062011-01-26 13:11:03 +02001494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 if (++n >= dev_num)
1496 break;
1497 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001498 read_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 dl->dev_num = n;
1501 size = sizeof(*dl) + n * sizeof(*dr);
1502
1503 err = copy_to_user(arg, dl, size);
1504 kfree(dl);
1505
1506 return err ? -EFAULT : 0;
1507}
1508
1509int hci_get_dev_info(void __user *arg)
1510{
1511 struct hci_dev *hdev;
1512 struct hci_dev_info di;
1513 int err = 0;
1514
1515 if (copy_from_user(&di, arg, sizeof(di)))
1516 return -EFAULT;
1517
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001518 hdev = hci_dev_get(di.dev_id);
1519 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return -ENODEV;
1521
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001522 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
Johan Hedberg32435532011-11-07 22:16:04 +02001523 cancel_delayed_work_sync(&hdev->power_off);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001524
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001525 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
1526 set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergc542a062011-01-26 13:11:03 +02001527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 strcpy(di.name, hdev->name);
1529 di.bdaddr = hdev->bdaddr;
Marcel Holtmann943da252010-02-13 02:28:41 +01001530 di.type = (hdev->bus & 0x0f) | (hdev->dev_type << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 di.flags = hdev->flags;
1532 di.pkt_type = hdev->pkt_type;
Johan Hedberg572c7f82012-10-19 20:57:46 +03001533 if (lmp_bredr_capable(hdev)) {
1534 di.acl_mtu = hdev->acl_mtu;
1535 di.acl_pkts = hdev->acl_pkts;
1536 di.sco_mtu = hdev->sco_mtu;
1537 di.sco_pkts = hdev->sco_pkts;
1538 } else {
1539 di.acl_mtu = hdev->le_mtu;
1540 di.acl_pkts = hdev->le_pkts;
1541 di.sco_mtu = 0;
1542 di.sco_pkts = 0;
1543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 di.link_policy = hdev->link_policy;
1545 di.link_mode = hdev->link_mode;
1546
1547 memcpy(&di.stat, &hdev->stat, sizeof(di.stat));
1548 memcpy(&di.features, &hdev->features, sizeof(di.features));
1549
1550 if (copy_to_user(arg, &di, sizeof(di)))
1551 err = -EFAULT;
1552
1553 hci_dev_put(hdev);
1554
1555 return err;
1556}
1557
1558/* ---- Interface to HCI drivers ---- */
1559
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001560static int hci_rfkill_set_block(void *data, bool blocked)
1561{
1562 struct hci_dev *hdev = data;
1563
1564 BT_DBG("%p name %s blocked %d", hdev, hdev->name, blocked);
1565
1566 if (!blocked)
1567 return 0;
1568
1569 hci_dev_do_close(hdev);
1570
1571 return 0;
1572}
1573
1574static const struct rfkill_ops hci_rfkill_ops = {
1575 .set_block = hci_rfkill_set_block,
1576};
1577
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001578static void hci_power_on(struct work_struct *work)
1579{
1580 struct hci_dev *hdev = container_of(work, struct hci_dev, power_on);
Johan Hedberg96570ff2013-05-29 09:51:29 +03001581 int err;
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001582
1583 BT_DBG("%s", hdev->name);
1584
Johan Hedberg96570ff2013-05-29 09:51:29 +03001585 err = hci_dev_open(hdev->id);
1586 if (err < 0) {
1587 mgmt_set_powered_failed(hdev, err);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001588 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03001589 }
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001590
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001591 if (test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
Johan Hedberg19202572013-01-14 22:33:51 +02001592 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
1593 HCI_AUTO_OFF_TIMEOUT);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001594
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001595 if (test_and_clear_bit(HCI_SETUP, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +02001596 mgmt_index_added(hdev);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001597}
1598
1599static void hci_power_off(struct work_struct *work)
1600{
Johan Hedberg32435532011-11-07 22:16:04 +02001601 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001602 power_off.work);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001603
1604 BT_DBG("%s", hdev->name);
1605
Marcel Holtmann8ee56542012-02-21 12:33:48 +01001606 hci_dev_do_close(hdev);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001607}
1608
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001609static void hci_discov_off(struct work_struct *work)
1610{
1611 struct hci_dev *hdev;
1612 u8 scan = SCAN_PAGE;
1613
1614 hdev = container_of(work, struct hci_dev, discov_off.work);
1615
1616 BT_DBG("%s", hdev->name);
1617
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001618 hci_dev_lock(hdev);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001619
1620 hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
1621
1622 hdev->discov_timeout = 0;
1623
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001624 hci_dev_unlock(hdev);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001625}
1626
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001627int hci_uuids_clear(struct hci_dev *hdev)
1628{
Johan Hedberg48210022013-01-27 00:31:28 +02001629 struct bt_uuid *uuid, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001630
Johan Hedberg48210022013-01-27 00:31:28 +02001631 list_for_each_entry_safe(uuid, tmp, &hdev->uuids, list) {
1632 list_del(&uuid->list);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001633 kfree(uuid);
1634 }
1635
1636 return 0;
1637}
1638
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001639int hci_link_keys_clear(struct hci_dev *hdev)
1640{
1641 struct list_head *p, *n;
1642
1643 list_for_each_safe(p, n, &hdev->link_keys) {
1644 struct link_key *key;
1645
1646 key = list_entry(p, struct link_key, list);
1647
1648 list_del(p);
1649 kfree(key);
1650 }
1651
1652 return 0;
1653}
1654
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03001655int hci_smp_ltks_clear(struct hci_dev *hdev)
1656{
1657 struct smp_ltk *k, *tmp;
1658
1659 list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) {
1660 list_del(&k->list);
1661 kfree(k);
1662 }
1663
1664 return 0;
1665}
1666
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001667struct link_key *hci_find_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
1668{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001669 struct link_key *k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001670
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001671 list_for_each_entry(k, &hdev->link_keys, list)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001672 if (bacmp(bdaddr, &k->bdaddr) == 0)
1673 return k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001674
1675 return NULL;
1676}
1677
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301678static bool hci_persistent_key(struct hci_dev *hdev, struct hci_conn *conn,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001679 u8 key_type, u8 old_key_type)
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001680{
1681 /* Legacy key */
1682 if (key_type < 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301683 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001684
1685 /* Debug keys are insecure so don't store them persistently */
1686 if (key_type == HCI_LK_DEBUG_COMBINATION)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301687 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001688
1689 /* Changed combination key and there's no previous one */
1690 if (key_type == HCI_LK_CHANGED_COMBINATION && old_key_type == 0xff)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301691 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001692
1693 /* Security mode 3 case */
1694 if (!conn)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301695 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001696
1697 /* Neither local nor remote side had no-bonding as requirement */
1698 if (conn->auth_type > 0x01 && conn->remote_auth > 0x01)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301699 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001700
1701 /* Local side had dedicated bonding as requirement */
1702 if (conn->auth_type == 0x02 || conn->auth_type == 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301703 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001704
1705 /* Remote side had dedicated bonding as requirement */
1706 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301707 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001708
1709 /* If none of the above criteria match, then don't store the key
1710 * persistently */
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301711 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001712}
1713
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001714struct smp_ltk *hci_find_ltk(struct hci_dev *hdev, __le16 ediv, u8 rand[8])
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001715{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001716 struct smp_ltk *k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001717
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001718 list_for_each_entry(k, &hdev->long_term_keys, list) {
1719 if (k->ediv != ediv ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001720 memcmp(rand, k->rand, sizeof(k->rand)))
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001721 continue;
1722
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001723 return k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001724 }
1725
1726 return NULL;
1727}
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001728
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001729struct smp_ltk *hci_find_ltk_by_addr(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001730 u8 addr_type)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001731{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001732 struct smp_ltk *k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001733
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001734 list_for_each_entry(k, &hdev->long_term_keys, list)
1735 if (addr_type == k->bdaddr_type &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001736 bacmp(bdaddr, &k->bdaddr) == 0)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001737 return k;
1738
1739 return NULL;
1740}
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001741
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001742int hci_add_link_key(struct hci_dev *hdev, struct hci_conn *conn, int new_key,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001743 bdaddr_t *bdaddr, u8 *val, u8 type, u8 pin_len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001744{
1745 struct link_key *key, *old_key;
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301746 u8 old_key_type;
1747 bool persistent;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001748
1749 old_key = hci_find_link_key(hdev, bdaddr);
1750 if (old_key) {
1751 old_key_type = old_key->type;
1752 key = old_key;
1753 } else {
Johan Hedberg12adcf32011-04-28 11:29:00 -07001754 old_key_type = conn ? conn->key_type : 0xff;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001755 key = kzalloc(sizeof(*key), GFP_ATOMIC);
1756 if (!key)
1757 return -ENOMEM;
1758 list_add(&key->list, &hdev->link_keys);
1759 }
1760
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001761 BT_DBG("%s key for %pMR type %u", hdev->name, bdaddr, type);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001762
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001763 /* Some buggy controller combinations generate a changed
1764 * combination key for legacy pairing even when there's no
1765 * previous key */
1766 if (type == HCI_LK_CHANGED_COMBINATION &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001767 (!conn || conn->remote_auth == 0xff) && old_key_type == 0xff) {
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001768 type = HCI_LK_COMBINATION;
Johan Hedberg655fe6e2011-04-28 11:29:01 -07001769 if (conn)
1770 conn->key_type = type;
1771 }
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001772
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001773 bacpy(&key->bdaddr, bdaddr);
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03001774 memcpy(key->val, val, HCI_LINK_KEY_SIZE);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001775 key->pin_len = pin_len;
1776
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +02001777 if (type == HCI_LK_CHANGED_COMBINATION)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001778 key->type = old_key_type;
Johan Hedberg4748fed2011-04-28 11:29:02 -07001779 else
1780 key->type = type;
1781
Johan Hedberg4df378a2011-04-28 11:29:03 -07001782 if (!new_key)
1783 return 0;
1784
1785 persistent = hci_persistent_key(hdev, conn, type, old_key_type);
1786
Johan Hedberg744cf192011-11-08 20:40:14 +02001787 mgmt_new_link_key(hdev, key, persistent);
Johan Hedberg4df378a2011-04-28 11:29:03 -07001788
Vishal Agarwal6ec5bca2012-04-16 14:44:44 +05301789 if (conn)
1790 conn->flush_key = !persistent;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001791
1792 return 0;
1793}
1794
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001795int hci_add_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 addr_type, u8 type,
Andrei Emeltchenko9a006652012-03-09 12:12:12 +02001796 int new_key, u8 authenticated, u8 tk[16], u8 enc_size, __le16
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001797 ediv, u8 rand[8])
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001798{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001799 struct smp_ltk *key, *old_key;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001800
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001801 if (!(type & HCI_SMP_STK) && !(type & HCI_SMP_LTK))
1802 return 0;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001803
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001804 old_key = hci_find_ltk_by_addr(hdev, bdaddr, addr_type);
1805 if (old_key)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001806 key = old_key;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001807 else {
1808 key = kzalloc(sizeof(*key), GFP_ATOMIC);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001809 if (!key)
1810 return -ENOMEM;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001811 list_add(&key->list, &hdev->long_term_keys);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001812 }
1813
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001814 bacpy(&key->bdaddr, bdaddr);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001815 key->bdaddr_type = addr_type;
1816 memcpy(key->val, tk, sizeof(key->val));
1817 key->authenticated = authenticated;
1818 key->ediv = ediv;
1819 key->enc_size = enc_size;
1820 key->type = type;
1821 memcpy(key->rand, rand, sizeof(key->rand));
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001822
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001823 if (!new_key)
1824 return 0;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001825
Vinicius Costa Gomes261cc5a2012-02-02 21:08:05 -03001826 if (type & HCI_SMP_LTK)
1827 mgmt_new_ltk(hdev, key, 1);
1828
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001829 return 0;
1830}
1831
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001832int hci_remove_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
1833{
1834 struct link_key *key;
1835
1836 key = hci_find_link_key(hdev, bdaddr);
1837 if (!key)
1838 return -ENOENT;
1839
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001840 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001841
1842 list_del(&key->list);
1843 kfree(key);
1844
1845 return 0;
1846}
1847
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03001848int hci_remove_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr)
1849{
1850 struct smp_ltk *k, *tmp;
1851
1852 list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) {
1853 if (bacmp(bdaddr, &k->bdaddr))
1854 continue;
1855
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001856 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03001857
1858 list_del(&k->list);
1859 kfree(k);
1860 }
1861
1862 return 0;
1863}
1864
Ville Tervo6bd32322011-02-16 16:32:41 +02001865/* HCI command timer function */
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03001866static void hci_cmd_timeout(unsigned long arg)
Ville Tervo6bd32322011-02-16 16:32:41 +02001867{
1868 struct hci_dev *hdev = (void *) arg;
1869
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03001870 if (hdev->sent_cmd) {
1871 struct hci_command_hdr *sent = (void *) hdev->sent_cmd->data;
1872 u16 opcode = __le16_to_cpu(sent->opcode);
1873
1874 BT_ERR("%s command 0x%4.4x tx timeout", hdev->name, opcode);
1875 } else {
1876 BT_ERR("%s command tx timeout", hdev->name);
1877 }
1878
Ville Tervo6bd32322011-02-16 16:32:41 +02001879 atomic_set(&hdev->cmd_cnt, 1);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02001880 queue_work(hdev->workqueue, &hdev->cmd_work);
Ville Tervo6bd32322011-02-16 16:32:41 +02001881}
1882
Szymon Janc2763eda2011-03-22 13:12:22 +01001883struct oob_data *hci_find_remote_oob_data(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001884 bdaddr_t *bdaddr)
Szymon Janc2763eda2011-03-22 13:12:22 +01001885{
1886 struct oob_data *data;
1887
1888 list_for_each_entry(data, &hdev->remote_oob_data, list)
1889 if (bacmp(bdaddr, &data->bdaddr) == 0)
1890 return data;
1891
1892 return NULL;
1893}
1894
1895int hci_remove_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr)
1896{
1897 struct oob_data *data;
1898
1899 data = hci_find_remote_oob_data(hdev, bdaddr);
1900 if (!data)
1901 return -ENOENT;
1902
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001903 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01001904
1905 list_del(&data->list);
1906 kfree(data);
1907
1908 return 0;
1909}
1910
1911int hci_remote_oob_data_clear(struct hci_dev *hdev)
1912{
1913 struct oob_data *data, *n;
1914
1915 list_for_each_entry_safe(data, n, &hdev->remote_oob_data, list) {
1916 list_del(&data->list);
1917 kfree(data);
1918 }
1919
1920 return 0;
1921}
1922
1923int hci_add_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001924 u8 *randomizer)
Szymon Janc2763eda2011-03-22 13:12:22 +01001925{
1926 struct oob_data *data;
1927
1928 data = hci_find_remote_oob_data(hdev, bdaddr);
1929
1930 if (!data) {
1931 data = kmalloc(sizeof(*data), GFP_ATOMIC);
1932 if (!data)
1933 return -ENOMEM;
1934
1935 bacpy(&data->bdaddr, bdaddr);
1936 list_add(&data->list, &hdev->remote_oob_data);
1937 }
1938
1939 memcpy(data->hash, hash, sizeof(data->hash));
1940 memcpy(data->randomizer, randomizer, sizeof(data->randomizer));
1941
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001942 BT_DBG("%s for %pMR", hdev->name, bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01001943
1944 return 0;
1945}
1946
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001947struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001948{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001949 struct bdaddr_list *b;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001950
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001951 list_for_each_entry(b, &hdev->blacklist, list)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001952 if (bacmp(bdaddr, &b->bdaddr) == 0)
1953 return b;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001954
1955 return NULL;
1956}
1957
1958int hci_blacklist_clear(struct hci_dev *hdev)
1959{
1960 struct list_head *p, *n;
1961
1962 list_for_each_safe(p, n, &hdev->blacklist) {
1963 struct bdaddr_list *b;
1964
1965 b = list_entry(p, struct bdaddr_list, list);
1966
1967 list_del(p);
1968 kfree(b);
1969 }
1970
1971 return 0;
1972}
1973
Johan Hedberg88c1fe42012-02-09 15:56:11 +02001974int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001975{
1976 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001977
1978 if (bacmp(bdaddr, BDADDR_ANY) == 0)
1979 return -EBADF;
1980
Antti Julku5e762442011-08-25 16:48:02 +03001981 if (hci_blacklist_lookup(hdev, bdaddr))
1982 return -EEXIST;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001983
1984 entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL);
Antti Julku5e762442011-08-25 16:48:02 +03001985 if (!entry)
1986 return -ENOMEM;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001987
1988 bacpy(&entry->bdaddr, bdaddr);
1989
1990 list_add(&entry->list, &hdev->blacklist);
1991
Johan Hedberg88c1fe42012-02-09 15:56:11 +02001992 return mgmt_device_blocked(hdev, bdaddr, type);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001993}
1994
Johan Hedberg88c1fe42012-02-09 15:56:11 +02001995int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001996{
1997 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001998
Szymon Janc1ec918c2011-11-16 09:32:21 +01001999 if (bacmp(bdaddr, BDADDR_ANY) == 0)
Antti Julku5e762442011-08-25 16:48:02 +03002000 return hci_blacklist_clear(hdev);
Antti Julkub2a66aa2011-06-15 12:01:14 +03002001
2002 entry = hci_blacklist_lookup(hdev, bdaddr);
Szymon Janc1ec918c2011-11-16 09:32:21 +01002003 if (!entry)
Antti Julku5e762442011-08-25 16:48:02 +03002004 return -ENOENT;
Antti Julkub2a66aa2011-06-15 12:01:14 +03002005
2006 list_del(&entry->list);
2007 kfree(entry);
2008
Johan Hedberg88c1fe42012-02-09 15:56:11 +02002009 return mgmt_device_unblocked(hdev, bdaddr, type);
Antti Julkub2a66aa2011-06-15 12:01:14 +03002010}
2011
Andre Guedes4c87eaa2013-04-30 15:29:32 -03002012static void inquiry_complete(struct hci_dev *hdev, u8 status)
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002013{
Andre Guedes4c87eaa2013-04-30 15:29:32 -03002014 if (status) {
2015 BT_ERR("Failed to start inquiry: status %d", status);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002016
Andre Guedes4c87eaa2013-04-30 15:29:32 -03002017 hci_dev_lock(hdev);
2018 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2019 hci_dev_unlock(hdev);
2020 return;
2021 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002022}
2023
Andre Guedes4c87eaa2013-04-30 15:29:32 -03002024static void le_scan_disable_work_complete(struct hci_dev *hdev, u8 status)
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002025{
Andre Guedes4c87eaa2013-04-30 15:29:32 -03002026 /* General inquiry access code (GIAC) */
2027 u8 lap[3] = { 0x33, 0x8b, 0x9e };
2028 struct hci_request req;
2029 struct hci_cp_inquiry cp;
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002030 int err;
2031
Andre Guedes4c87eaa2013-04-30 15:29:32 -03002032 if (status) {
2033 BT_ERR("Failed to disable LE scanning: status %d", status);
2034 return;
Andre Guedes7dbfac12012-03-15 16:52:07 -03002035 }
2036
Andre Guedes4c87eaa2013-04-30 15:29:32 -03002037 switch (hdev->discovery.type) {
2038 case DISCOV_TYPE_LE:
2039 hci_dev_lock(hdev);
2040 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2041 hci_dev_unlock(hdev);
2042 break;
2043
2044 case DISCOV_TYPE_INTERLEAVED:
2045 hci_req_init(&req, hdev);
2046
2047 memset(&cp, 0, sizeof(cp));
2048 memcpy(&cp.lap, lap, sizeof(cp.lap));
2049 cp.length = DISCOV_INTERLEAVED_INQUIRY_LEN;
2050 hci_req_add(&req, HCI_OP_INQUIRY, sizeof(cp), &cp);
2051
2052 hci_dev_lock(hdev);
2053
2054 hci_inquiry_cache_flush(hdev);
2055
2056 err = hci_req_run(&req, inquiry_complete);
2057 if (err) {
2058 BT_ERR("Inquiry request failed: err %d", err);
2059 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
2060 }
2061
2062 hci_dev_unlock(hdev);
2063 break;
2064 }
Andre Guedes7dbfac12012-03-15 16:52:07 -03002065}
2066
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002067static void le_scan_disable_work(struct work_struct *work)
2068{
2069 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002070 le_scan_disable.work);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002071 struct hci_cp_le_set_scan_enable cp;
Andre Guedes4c87eaa2013-04-30 15:29:32 -03002072 struct hci_request req;
2073 int err;
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002074
2075 BT_DBG("%s", hdev->name);
2076
Andre Guedes4c87eaa2013-04-30 15:29:32 -03002077 hci_req_init(&req, hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002078
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002079 memset(&cp, 0, sizeof(cp));
Andre Guedes4c87eaa2013-04-30 15:29:32 -03002080 cp.enable = LE_SCAN_DISABLE;
2081 hci_req_add(&req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002082
Andre Guedes4c87eaa2013-04-30 15:29:32 -03002083 err = hci_req_run(&req, le_scan_disable_work_complete);
2084 if (err)
2085 BT_ERR("Disable LE scanning request failed: err %d", err);
Andre Guedes28b75a82012-02-03 17:48:00 -03002086}
2087
David Herrmann9be0dab2012-04-22 14:39:57 +02002088/* Alloc HCI device */
2089struct hci_dev *hci_alloc_dev(void)
2090{
2091 struct hci_dev *hdev;
2092
2093 hdev = kzalloc(sizeof(struct hci_dev), GFP_KERNEL);
2094 if (!hdev)
2095 return NULL;
2096
David Herrmannb1b813d2012-04-22 14:39:58 +02002097 hdev->pkt_type = (HCI_DM1 | HCI_DH1 | HCI_HV1);
2098 hdev->esco_type = (ESCO_HV1);
2099 hdev->link_mode = (HCI_LM_ACCEPT);
2100 hdev->io_capability = 0x03; /* No Input No Output */
Johan Hedbergbbaf4442012-11-08 01:22:59 +01002101 hdev->inq_tx_power = HCI_TX_POWER_INVALID;
2102 hdev->adv_tx_power = HCI_TX_POWER_INVALID;
David Herrmannb1b813d2012-04-22 14:39:58 +02002103
David Herrmannb1b813d2012-04-22 14:39:58 +02002104 hdev->sniff_max_interval = 800;
2105 hdev->sniff_min_interval = 80;
2106
2107 mutex_init(&hdev->lock);
2108 mutex_init(&hdev->req_lock);
2109
2110 INIT_LIST_HEAD(&hdev->mgmt_pending);
2111 INIT_LIST_HEAD(&hdev->blacklist);
2112 INIT_LIST_HEAD(&hdev->uuids);
2113 INIT_LIST_HEAD(&hdev->link_keys);
2114 INIT_LIST_HEAD(&hdev->long_term_keys);
2115 INIT_LIST_HEAD(&hdev->remote_oob_data);
Andrei Emeltchenko6b536b52012-08-31 16:39:28 +03002116 INIT_LIST_HEAD(&hdev->conn_hash.list);
David Herrmannb1b813d2012-04-22 14:39:58 +02002117
2118 INIT_WORK(&hdev->rx_work, hci_rx_work);
2119 INIT_WORK(&hdev->cmd_work, hci_cmd_work);
2120 INIT_WORK(&hdev->tx_work, hci_tx_work);
2121 INIT_WORK(&hdev->power_on, hci_power_on);
David Herrmannb1b813d2012-04-22 14:39:58 +02002122
David Herrmannb1b813d2012-04-22 14:39:58 +02002123 INIT_DELAYED_WORK(&hdev->power_off, hci_power_off);
2124 INIT_DELAYED_WORK(&hdev->discov_off, hci_discov_off);
2125 INIT_DELAYED_WORK(&hdev->le_scan_disable, le_scan_disable_work);
2126
David Herrmannb1b813d2012-04-22 14:39:58 +02002127 skb_queue_head_init(&hdev->rx_q);
2128 skb_queue_head_init(&hdev->cmd_q);
2129 skb_queue_head_init(&hdev->raw_q);
2130
2131 init_waitqueue_head(&hdev->req_wait_q);
2132
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03002133 setup_timer(&hdev->cmd_timer, hci_cmd_timeout, (unsigned long) hdev);
David Herrmannb1b813d2012-04-22 14:39:58 +02002134
David Herrmannb1b813d2012-04-22 14:39:58 +02002135 hci_init_sysfs(hdev);
2136 discovery_init(hdev);
David Herrmann9be0dab2012-04-22 14:39:57 +02002137
2138 return hdev;
2139}
2140EXPORT_SYMBOL(hci_alloc_dev);
2141
2142/* Free HCI device */
2143void hci_free_dev(struct hci_dev *hdev)
2144{
David Herrmann9be0dab2012-04-22 14:39:57 +02002145 /* will free via device release */
2146 put_device(&hdev->dev);
2147}
2148EXPORT_SYMBOL(hci_free_dev);
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150/* Register HCI device */
2151int hci_register_dev(struct hci_dev *hdev)
2152{
David Herrmannb1b813d2012-04-22 14:39:58 +02002153 int id, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
David Herrmann010666a2012-01-07 15:47:07 +01002155 if (!hdev->open || !hdev->close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return -EINVAL;
2157
Mat Martineau08add512011-11-02 16:18:36 -07002158 /* Do not allow HCI_AMP devices to register at index 0,
2159 * so the index can be used as the AMP controller ID.
2160 */
Sasha Levin3df92b32012-05-27 22:36:56 +02002161 switch (hdev->dev_type) {
2162 case HCI_BREDR:
2163 id = ida_simple_get(&hci_index_ida, 0, 0, GFP_KERNEL);
2164 break;
2165 case HCI_AMP:
2166 id = ida_simple_get(&hci_index_ida, 1, 0, GFP_KERNEL);
2167 break;
2168 default:
2169 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 }
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002171
Sasha Levin3df92b32012-05-27 22:36:56 +02002172 if (id < 0)
2173 return id;
2174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 sprintf(hdev->name, "hci%d", id);
2176 hdev->id = id;
Andrei Emeltchenko2d8b3a12012-04-16 16:32:04 +03002177
2178 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
2179
Sasha Levin3df92b32012-05-27 22:36:56 +02002180 write_lock(&hci_dev_list_lock);
2181 list_add(&hdev->list, &hci_dev_list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002182 write_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Kees Cookd8537542013-07-03 15:04:57 -07002184 hdev->workqueue = alloc_workqueue("%s", WQ_HIGHPRI | WQ_UNBOUND |
2185 WQ_MEM_RECLAIM, 1, hdev->name);
David Herrmann33ca9542011-10-08 14:58:49 +02002186 if (!hdev->workqueue) {
2187 error = -ENOMEM;
2188 goto err;
2189 }
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002190
Kees Cookd8537542013-07-03 15:04:57 -07002191 hdev->req_workqueue = alloc_workqueue("%s", WQ_HIGHPRI | WQ_UNBOUND |
2192 WQ_MEM_RECLAIM, 1, hdev->name);
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02002193 if (!hdev->req_workqueue) {
2194 destroy_workqueue(hdev->workqueue);
2195 error = -ENOMEM;
2196 goto err;
2197 }
2198
David Herrmann33ca9542011-10-08 14:58:49 +02002199 error = hci_add_sysfs(hdev);
2200 if (error < 0)
2201 goto err_wqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Marcel Holtmann611b30f2009-06-08 14:41:38 +02002203 hdev->rfkill = rfkill_alloc(hdev->name, &hdev->dev,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002204 RFKILL_TYPE_BLUETOOTH, &hci_rfkill_ops,
2205 hdev);
Marcel Holtmann611b30f2009-06-08 14:41:38 +02002206 if (hdev->rfkill) {
2207 if (rfkill_register(hdev->rfkill) < 0) {
2208 rfkill_destroy(hdev->rfkill);
2209 hdev->rfkill = NULL;
2210 }
2211 }
2212
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002213 set_bit(HCI_SETUP, &hdev->dev_flags);
Andrei Emeltchenkoce2be9a2012-06-29 15:07:00 +03002214
2215 if (hdev->dev_type != HCI_AMP)
2216 set_bit(HCI_AUTO_OFF, &hdev->dev_flags);
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 hci_notify(hdev, HCI_DEV_REG);
David Herrmanndc946bd2012-01-07 15:47:24 +01002219 hci_dev_hold(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Johan Hedberg19202572013-01-14 22:33:51 +02002221 queue_work(hdev->req_workqueue, &hdev->power_on);
Marcel Holtmannfbe96d62012-10-30 01:35:40 -07002222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 return id;
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002224
David Herrmann33ca9542011-10-08 14:58:49 +02002225err_wqueue:
2226 destroy_workqueue(hdev->workqueue);
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02002227 destroy_workqueue(hdev->req_workqueue);
David Herrmann33ca9542011-10-08 14:58:49 +02002228err:
Sasha Levin3df92b32012-05-27 22:36:56 +02002229 ida_simple_remove(&hci_index_ida, hdev->id);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002230 write_lock(&hci_dev_list_lock);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002231 list_del(&hdev->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002232 write_unlock(&hci_dev_list_lock);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002233
David Herrmann33ca9542011-10-08 14:58:49 +02002234 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235}
2236EXPORT_SYMBOL(hci_register_dev);
2237
2238/* Unregister HCI device */
David Herrmann59735632011-10-26 10:43:19 +02002239void hci_unregister_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Sasha Levin3df92b32012-05-27 22:36:56 +02002241 int i, id;
Marcel Holtmannef222012007-07-11 06:42:04 +02002242
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002243 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Johan Hovold94324962012-03-15 14:48:41 +01002245 set_bit(HCI_UNREGISTER, &hdev->dev_flags);
2246
Sasha Levin3df92b32012-05-27 22:36:56 +02002247 id = hdev->id;
2248
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002249 write_lock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 list_del(&hdev->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002251 write_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
2253 hci_dev_do_close(hdev);
2254
Suraj Sumangalacd4c5392010-07-14 13:02:16 +05302255 for (i = 0; i < NUM_REASSEMBLY; i++)
Marcel Holtmannef222012007-07-11 06:42:04 +02002256 kfree_skb(hdev->reassembly[i]);
2257
Gustavo Padovanb9b5ef12012-11-21 00:50:21 -02002258 cancel_work_sync(&hdev->power_on);
2259
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002260 if (!test_bit(HCI_INIT, &hdev->flags) &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002261 !test_bit(HCI_SETUP, &hdev->dev_flags)) {
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002262 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02002263 mgmt_index_removed(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002264 hci_dev_unlock(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02002265 }
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002266
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002267 /* mgmt_index_removed should take care of emptying the
2268 * pending list */
2269 BUG_ON(!list_empty(&hdev->mgmt_pending));
2270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 hci_notify(hdev, HCI_DEV_UNREG);
2272
Marcel Holtmann611b30f2009-06-08 14:41:38 +02002273 if (hdev->rfkill) {
2274 rfkill_unregister(hdev->rfkill);
2275 rfkill_destroy(hdev->rfkill);
2276 }
2277
David Herrmannce242972011-10-08 14:58:48 +02002278 hci_del_sysfs(hdev);
Dave Young147e2d52008-03-05 18:45:59 -08002279
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002280 destroy_workqueue(hdev->workqueue);
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02002281 destroy_workqueue(hdev->req_workqueue);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002282
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002283 hci_dev_lock(hdev);
Johan Hedberge2e0cac2011-01-04 12:08:50 +02002284 hci_blacklist_clear(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002285 hci_uuids_clear(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002286 hci_link_keys_clear(hdev);
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03002287 hci_smp_ltks_clear(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002288 hci_remote_oob_data_clear(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002289 hci_dev_unlock(hdev);
Johan Hedberge2e0cac2011-01-04 12:08:50 +02002290
David Herrmanndc946bd2012-01-07 15:47:24 +01002291 hci_dev_put(hdev);
Sasha Levin3df92b32012-05-27 22:36:56 +02002292
2293 ida_simple_remove(&hci_index_ida, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294}
2295EXPORT_SYMBOL(hci_unregister_dev);
2296
2297/* Suspend HCI device */
2298int hci_suspend_dev(struct hci_dev *hdev)
2299{
2300 hci_notify(hdev, HCI_DEV_SUSPEND);
2301 return 0;
2302}
2303EXPORT_SYMBOL(hci_suspend_dev);
2304
2305/* Resume HCI device */
2306int hci_resume_dev(struct hci_dev *hdev)
2307{
2308 hci_notify(hdev, HCI_DEV_RESUME);
2309 return 0;
2310}
2311EXPORT_SYMBOL(hci_resume_dev);
2312
Marcel Holtmann76bca882009-11-18 00:40:39 +01002313/* Receive frame from HCI drivers */
2314int hci_recv_frame(struct sk_buff *skb)
2315{
2316 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
2317 if (!hdev || (!test_bit(HCI_UP, &hdev->flags)
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002318 && !test_bit(HCI_INIT, &hdev->flags))) {
Marcel Holtmann76bca882009-11-18 00:40:39 +01002319 kfree_skb(skb);
2320 return -ENXIO;
2321 }
2322
Jorrit Schippersd82603c2012-12-27 17:33:02 +01002323 /* Incoming skb */
Marcel Holtmann76bca882009-11-18 00:40:39 +01002324 bt_cb(skb)->incoming = 1;
2325
2326 /* Time stamp */
2327 __net_timestamp(skb);
2328
Marcel Holtmann76bca882009-11-18 00:40:39 +01002329 skb_queue_tail(&hdev->rx_q, skb);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04002330 queue_work(hdev->workqueue, &hdev->rx_work);
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002331
Marcel Holtmann76bca882009-11-18 00:40:39 +01002332 return 0;
2333}
2334EXPORT_SYMBOL(hci_recv_frame);
2335
Suraj Sumangala33e882a2010-07-14 13:02:17 +05302336static int hci_reassembly(struct hci_dev *hdev, int type, void *data,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002337 int count, __u8 index)
Suraj Sumangala33e882a2010-07-14 13:02:17 +05302338{
2339 int len = 0;
2340 int hlen = 0;
2341 int remain = count;
2342 struct sk_buff *skb;
2343 struct bt_skb_cb *scb;
2344
2345 if ((type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT) ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002346 index >= NUM_REASSEMBLY)
Suraj Sumangala33e882a2010-07-14 13:02:17 +05302347 return -EILSEQ;
2348
2349 skb = hdev->reassembly[index];
2350
2351 if (!skb) {
2352 switch (type) {
2353 case HCI_ACLDATA_PKT:
2354 len = HCI_MAX_FRAME_SIZE;
2355 hlen = HCI_ACL_HDR_SIZE;
2356 break;
2357 case HCI_EVENT_PKT:
2358 len = HCI_MAX_EVENT_SIZE;
2359 hlen = HCI_EVENT_HDR_SIZE;
2360 break;
2361 case HCI_SCODATA_PKT:
2362 len = HCI_MAX_SCO_SIZE;
2363 hlen = HCI_SCO_HDR_SIZE;
2364 break;
2365 }
2366
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03002367 skb = bt_skb_alloc(len, GFP_ATOMIC);
Suraj Sumangala33e882a2010-07-14 13:02:17 +05302368 if (!skb)
2369 return -ENOMEM;
2370
2371 scb = (void *) skb->cb;
2372 scb->expect = hlen;
2373 scb->pkt_type = type;
2374
2375 skb->dev = (void *) hdev;
2376 hdev->reassembly[index] = skb;
2377 }
2378
2379 while (count) {
2380 scb = (void *) skb->cb;
Dan Carpenter89bb46d2012-02-28 09:57:59 +03002381 len = min_t(uint, scb->expect, count);
Suraj Sumangala33e882a2010-07-14 13:02:17 +05302382
2383 memcpy(skb_put(skb, len), data, len);
2384
2385 count -= len;
2386 data += len;
2387 scb->expect -= len;
2388 remain = count;
2389
2390 switch (type) {
2391 case HCI_EVENT_PKT:
2392 if (skb->len == HCI_EVENT_HDR_SIZE) {
2393 struct hci_event_hdr *h = hci_event_hdr(skb);
2394 scb->expect = h->plen;
2395
2396 if (skb_tailroom(skb) < scb->expect) {
2397 kfree_skb(skb);
2398 hdev->reassembly[index] = NULL;
2399 return -ENOMEM;
2400 }
2401 }
2402 break;
2403
2404 case HCI_ACLDATA_PKT:
2405 if (skb->len == HCI_ACL_HDR_SIZE) {
2406 struct hci_acl_hdr *h = hci_acl_hdr(skb);
2407 scb->expect = __le16_to_cpu(h->dlen);
2408
2409 if (skb_tailroom(skb) < scb->expect) {
2410 kfree_skb(skb);
2411 hdev->reassembly[index] = NULL;
2412 return -ENOMEM;
2413 }
2414 }
2415 break;
2416
2417 case HCI_SCODATA_PKT:
2418 if (skb->len == HCI_SCO_HDR_SIZE) {
2419 struct hci_sco_hdr *h = hci_sco_hdr(skb);
2420 scb->expect = h->dlen;
2421
2422 if (skb_tailroom(skb) < scb->expect) {
2423 kfree_skb(skb);
2424 hdev->reassembly[index] = NULL;
2425 return -ENOMEM;
2426 }
2427 }
2428 break;
2429 }
2430
2431 if (scb->expect == 0) {
2432 /* Complete frame */
2433
2434 bt_cb(skb)->pkt_type = type;
2435 hci_recv_frame(skb);
2436
2437 hdev->reassembly[index] = NULL;
2438 return remain;
2439 }
2440 }
2441
2442 return remain;
2443}
2444
Marcel Holtmannef222012007-07-11 06:42:04 +02002445int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count)
2446{
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302447 int rem = 0;
2448
Marcel Holtmannef222012007-07-11 06:42:04 +02002449 if (type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT)
2450 return -EILSEQ;
2451
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03002452 while (count) {
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03002453 rem = hci_reassembly(hdev, type, data, count, type - 1);
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302454 if (rem < 0)
2455 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02002456
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302457 data += (count - rem);
2458 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00002459 }
Marcel Holtmannef222012007-07-11 06:42:04 +02002460
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302461 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02002462}
2463EXPORT_SYMBOL(hci_recv_fragment);
2464
Suraj Sumangala99811512010-07-14 13:02:19 +05302465#define STREAM_REASSEMBLY 0
2466
2467int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count)
2468{
2469 int type;
2470 int rem = 0;
2471
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03002472 while (count) {
Suraj Sumangala99811512010-07-14 13:02:19 +05302473 struct sk_buff *skb = hdev->reassembly[STREAM_REASSEMBLY];
2474
2475 if (!skb) {
2476 struct { char type; } *pkt;
2477
2478 /* Start of the frame */
2479 pkt = data;
2480 type = pkt->type;
2481
2482 data++;
2483 count--;
2484 } else
2485 type = bt_cb(skb)->pkt_type;
2486
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03002487 rem = hci_reassembly(hdev, type, data, count,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002488 STREAM_REASSEMBLY);
Suraj Sumangala99811512010-07-14 13:02:19 +05302489 if (rem < 0)
2490 return rem;
2491
2492 data += (count - rem);
2493 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00002494 }
Suraj Sumangala99811512010-07-14 13:02:19 +05302495
2496 return rem;
2497}
2498EXPORT_SYMBOL(hci_recv_stream_fragment);
2499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500/* ---- Interface to upper protocols ---- */
2501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502int hci_register_cb(struct hci_cb *cb)
2503{
2504 BT_DBG("%p name %s", cb, cb->name);
2505
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002506 write_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 list_add(&cb->list, &hci_cb_list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002508 write_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510 return 0;
2511}
2512EXPORT_SYMBOL(hci_register_cb);
2513
2514int hci_unregister_cb(struct hci_cb *cb)
2515{
2516 BT_DBG("%p name %s", cb, cb->name);
2517
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002518 write_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 list_del(&cb->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002520 write_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
2522 return 0;
2523}
2524EXPORT_SYMBOL(hci_unregister_cb);
2525
2526static int hci_send_frame(struct sk_buff *skb)
2527{
2528 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
2529
2530 if (!hdev) {
2531 kfree_skb(skb);
2532 return -ENODEV;
2533 }
2534
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002535 BT_DBG("%s type %d len %d", hdev->name, bt_cb(skb)->pkt_type, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Marcel Holtmanncd82e612012-02-20 20:34:38 +01002537 /* Time stamp */
2538 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Marcel Holtmanncd82e612012-02-20 20:34:38 +01002540 /* Send copy to monitor */
2541 hci_send_to_monitor(hdev, skb);
2542
2543 if (atomic_read(&hdev->promisc)) {
2544 /* Send copy to the sockets */
Marcel Holtmann470fe1b2012-02-20 14:50:30 +01002545 hci_send_to_sock(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 }
2547
2548 /* Get rid of skb owner, prior to sending to the driver. */
2549 skb_orphan(skb);
2550
2551 return hdev->send(skb);
2552}
2553
Johan Hedberg3119ae92013-03-05 20:37:44 +02002554void hci_req_init(struct hci_request *req, struct hci_dev *hdev)
2555{
2556 skb_queue_head_init(&req->cmd_q);
2557 req->hdev = hdev;
Andre Guedes5d73e032013-03-08 11:20:16 -03002558 req->err = 0;
Johan Hedberg3119ae92013-03-05 20:37:44 +02002559}
2560
2561int hci_req_run(struct hci_request *req, hci_req_complete_t complete)
2562{
2563 struct hci_dev *hdev = req->hdev;
2564 struct sk_buff *skb;
2565 unsigned long flags;
2566
2567 BT_DBG("length %u", skb_queue_len(&req->cmd_q));
2568
Andre Guedes5d73e032013-03-08 11:20:16 -03002569 /* If an error occured during request building, remove all HCI
2570 * commands queued on the HCI request queue.
2571 */
2572 if (req->err) {
2573 skb_queue_purge(&req->cmd_q);
2574 return req->err;
2575 }
2576
Johan Hedberg3119ae92013-03-05 20:37:44 +02002577 /* Do not allow empty requests */
2578 if (skb_queue_empty(&req->cmd_q))
Andre Guedes382b0c32013-03-08 11:20:14 -03002579 return -ENODATA;
Johan Hedberg3119ae92013-03-05 20:37:44 +02002580
2581 skb = skb_peek_tail(&req->cmd_q);
2582 bt_cb(skb)->req.complete = complete;
2583
2584 spin_lock_irqsave(&hdev->cmd_q.lock, flags);
2585 skb_queue_splice_tail(&req->cmd_q, &hdev->cmd_q);
2586 spin_unlock_irqrestore(&hdev->cmd_q.lock, flags);
2587
2588 queue_work(hdev->workqueue, &hdev->cmd_work);
2589
2590 return 0;
2591}
2592
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02002593static struct sk_buff *hci_prepare_cmd(struct hci_dev *hdev, u16 opcode,
Johan Hedberg07dc93d2013-04-19 10:14:51 +03002594 u32 plen, const void *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595{
2596 int len = HCI_COMMAND_HDR_SIZE + plen;
2597 struct hci_command_hdr *hdr;
2598 struct sk_buff *skb;
2599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 skb = bt_skb_alloc(len, GFP_ATOMIC);
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02002601 if (!skb)
2602 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
2604 hdr = (struct hci_command_hdr *) skb_put(skb, HCI_COMMAND_HDR_SIZE);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002605 hdr->opcode = cpu_to_le16(opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 hdr->plen = plen;
2607
2608 if (plen)
2609 memcpy(skb_put(skb, plen), param, plen);
2610
2611 BT_DBG("skb len %d", skb->len);
2612
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002613 bt_cb(skb)->pkt_type = HCI_COMMAND_PKT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 skb->dev = (void *) hdev;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002615
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02002616 return skb;
2617}
2618
2619/* Send HCI command */
Johan Hedberg07dc93d2013-04-19 10:14:51 +03002620int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen,
2621 const void *param)
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02002622{
2623 struct sk_buff *skb;
2624
2625 BT_DBG("%s opcode 0x%4.4x plen %d", hdev->name, opcode, plen);
2626
2627 skb = hci_prepare_cmd(hdev, opcode, plen, param);
2628 if (!skb) {
2629 BT_ERR("%s no memory for command", hdev->name);
2630 return -ENOMEM;
2631 }
2632
Johan Hedberg11714b32013-03-05 20:37:47 +02002633 /* Stand-alone HCI commands must be flaged as
2634 * single-command requests.
2635 */
2636 bt_cb(skb)->req.start = true;
2637
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 skb_queue_tail(&hdev->cmd_q, skb);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002639 queue_work(hdev->workqueue, &hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
2641 return 0;
2642}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Johan Hedberg71c76a12013-03-05 20:37:46 +02002644/* Queue a command to an asynchronous HCI request */
Johan Hedberg07dc93d2013-04-19 10:14:51 +03002645void hci_req_add_ev(struct hci_request *req, u16 opcode, u32 plen,
2646 const void *param, u8 event)
Johan Hedberg71c76a12013-03-05 20:37:46 +02002647{
2648 struct hci_dev *hdev = req->hdev;
2649 struct sk_buff *skb;
2650
2651 BT_DBG("%s opcode 0x%4.4x plen %d", hdev->name, opcode, plen);
2652
Andre Guedes34739c12013-03-08 11:20:18 -03002653 /* If an error occured during request building, there is no point in
2654 * queueing the HCI command. We can simply return.
2655 */
2656 if (req->err)
2657 return;
2658
Johan Hedberg71c76a12013-03-05 20:37:46 +02002659 skb = hci_prepare_cmd(hdev, opcode, plen, param);
2660 if (!skb) {
Andre Guedes5d73e032013-03-08 11:20:16 -03002661 BT_ERR("%s no memory for command (opcode 0x%4.4x)",
2662 hdev->name, opcode);
2663 req->err = -ENOMEM;
Andre Guedese348fe62013-03-08 11:20:17 -03002664 return;
Johan Hedberg71c76a12013-03-05 20:37:46 +02002665 }
2666
2667 if (skb_queue_empty(&req->cmd_q))
2668 bt_cb(skb)->req.start = true;
2669
Johan Hedberg02350a72013-04-03 21:50:29 +03002670 bt_cb(skb)->req.event = event;
2671
Johan Hedberg71c76a12013-03-05 20:37:46 +02002672 skb_queue_tail(&req->cmd_q, skb);
Johan Hedberg71c76a12013-03-05 20:37:46 +02002673}
2674
Johan Hedberg07dc93d2013-04-19 10:14:51 +03002675void hci_req_add(struct hci_request *req, u16 opcode, u32 plen,
2676 const void *param)
Johan Hedberg02350a72013-04-03 21:50:29 +03002677{
2678 hci_req_add_ev(req, opcode, plen, param, 0);
2679}
2680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681/* Get data from the previously sent command */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002682void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683{
2684 struct hci_command_hdr *hdr;
2685
2686 if (!hdev->sent_cmd)
2687 return NULL;
2688
2689 hdr = (void *) hdev->sent_cmd->data;
2690
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002691 if (hdr->opcode != cpu_to_le16(opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 return NULL;
2693
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03002694 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
2696 return hdev->sent_cmd->data + HCI_COMMAND_HDR_SIZE;
2697}
2698
2699/* Send ACL data */
2700static void hci_add_acl_hdr(struct sk_buff *skb, __u16 handle, __u16 flags)
2701{
2702 struct hci_acl_hdr *hdr;
2703 int len = skb->len;
2704
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002705 skb_push(skb, HCI_ACL_HDR_SIZE);
2706 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002707 hdr = (struct hci_acl_hdr *)skb_transport_header(skb);
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07002708 hdr->handle = cpu_to_le16(hci_handle_pack(handle, flags));
2709 hdr->dlen = cpu_to_le16(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710}
2711
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002712static void hci_queue_acl(struct hci_chan *chan, struct sk_buff_head *queue,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002713 struct sk_buff *skb, __u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714{
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002715 struct hci_conn *conn = chan->conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 struct hci_dev *hdev = conn->hdev;
2717 struct sk_buff *list;
2718
Gustavo Padovan087bfd92012-05-11 13:16:11 -03002719 skb->len = skb_headlen(skb);
2720 skb->data_len = 0;
2721
2722 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
Andrei Emeltchenko204a6e52012-10-15 11:58:39 +03002723
2724 switch (hdev->dev_type) {
2725 case HCI_BREDR:
2726 hci_add_acl_hdr(skb, conn->handle, flags);
2727 break;
2728 case HCI_AMP:
2729 hci_add_acl_hdr(skb, chan->handle, flags);
2730 break;
2731 default:
2732 BT_ERR("%s unknown dev_type %d", hdev->name, hdev->dev_type);
2733 return;
2734 }
Gustavo Padovan087bfd92012-05-11 13:16:11 -03002735
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002736 list = skb_shinfo(skb)->frag_list;
2737 if (!list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 /* Non fragmented */
2739 BT_DBG("%s nonfrag skb %p len %d", hdev->name, skb, skb->len);
2740
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002741 skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 } else {
2743 /* Fragmented */
2744 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
2745
2746 skb_shinfo(skb)->frag_list = NULL;
2747
2748 /* Queue all fragments atomically */
Gustavo F. Padovanaf3e6352011-12-22 16:35:05 -02002749 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002751 __skb_queue_tail(queue, skb);
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02002752
2753 flags &= ~ACL_START;
2754 flags |= ACL_CONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 do {
2756 skb = list; list = list->next;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002757
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 skb->dev = (void *) hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002759 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02002760 hci_add_acl_hdr(skb, conn->handle, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
2763
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002764 __skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 } while (list);
2766
Gustavo F. Padovanaf3e6352011-12-22 16:35:05 -02002767 spin_unlock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002769}
2770
2771void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags)
2772{
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002773 struct hci_dev *hdev = chan->conn->hdev;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002774
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03002775 BT_DBG("%s chan %p flags 0x%4.4x", hdev->name, chan, flags);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002776
2777 skb->dev = (void *) hdev;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002778
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002779 hci_queue_acl(chan, &chan->data_q, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002781 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784/* Send SCO data */
Gustavo F. Padovan0d861d82010-05-01 16:15:35 -03002785void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786{
2787 struct hci_dev *hdev = conn->hdev;
2788 struct hci_sco_hdr hdr;
2789
2790 BT_DBG("%s len %d", hdev->name, skb->len);
2791
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07002792 hdr.handle = cpu_to_le16(conn->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 hdr.dlen = skb->len;
2794
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002795 skb_push(skb, HCI_SCO_HDR_SIZE);
2796 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002797 memcpy(skb_transport_header(skb), &hdr, HCI_SCO_HDR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
2799 skb->dev = (void *) hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002800 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002801
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 skb_queue_tail(&conn->data_q, skb);
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002803 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
2806/* ---- HCI TX task (outgoing data) ---- */
2807
2808/* HCI Connection scheduler */
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002809static struct hci_conn *hci_low_sent(struct hci_dev *hdev, __u8 type,
2810 int *quote)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811{
2812 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002813 struct hci_conn *conn = NULL, *c;
Mikel Astizabc5de82012-04-11 08:48:47 +02002814 unsigned int num = 0, min = ~0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002816 /* We don't have to lock device here. Connections are always
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 * added and removed with TX task disabled. */
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002818
2819 rcu_read_lock();
2820
2821 list_for_each_entry_rcu(c, &h->list, list) {
Marcel Holtmann769be972008-07-14 20:13:49 +02002822 if (c->type != type || skb_queue_empty(&c->data_q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 continue;
Marcel Holtmann769be972008-07-14 20:13:49 +02002824
2825 if (c->state != BT_CONNECTED && c->state != BT_CONFIG)
2826 continue;
2827
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 num++;
2829
2830 if (c->sent < min) {
2831 min = c->sent;
2832 conn = c;
2833 }
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002834
2835 if (hci_conn_num(hdev, type) == num)
2836 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 }
2838
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002839 rcu_read_unlock();
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 if (conn) {
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002842 int cnt, q;
2843
2844 switch (conn->type) {
2845 case ACL_LINK:
2846 cnt = hdev->acl_cnt;
2847 break;
2848 case SCO_LINK:
2849 case ESCO_LINK:
2850 cnt = hdev->sco_cnt;
2851 break;
2852 case LE_LINK:
2853 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
2854 break;
2855 default:
2856 cnt = 0;
2857 BT_ERR("Unknown link type");
2858 }
2859
2860 q = cnt / num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 *quote = q ? q : 1;
2862 } else
2863 *quote = 0;
2864
2865 BT_DBG("conn %p quote %d", conn, *quote);
2866 return conn;
2867}
2868
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002869static void hci_link_tx_to(struct hci_dev *hdev, __u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870{
2871 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002872 struct hci_conn *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Ville Tervobae1f5d92011-02-10 22:38:53 -03002874 BT_ERR("%s link tx timeout", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002876 rcu_read_lock();
2877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 /* Kill stalled connections */
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002879 list_for_each_entry_rcu(c, &h->list, list) {
Ville Tervobae1f5d92011-02-10 22:38:53 -03002880 if (c->type == type && c->sent) {
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03002881 BT_ERR("%s killing stalled connection %pMR",
2882 hdev->name, &c->dst);
Andre Guedesbed71742013-01-30 11:50:56 -03002883 hci_disconnect(c, HCI_ERROR_REMOTE_USER_TERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 }
2885 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002886
2887 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002890static struct hci_chan *hci_chan_sent(struct hci_dev *hdev, __u8 type,
2891 int *quote)
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002892{
2893 struct hci_conn_hash *h = &hdev->conn_hash;
2894 struct hci_chan *chan = NULL;
Mikel Astizabc5de82012-04-11 08:48:47 +02002895 unsigned int num = 0, min = ~0, cur_prio = 0;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002896 struct hci_conn *conn;
2897 int cnt, q, conn_num = 0;
2898
2899 BT_DBG("%s", hdev->name);
2900
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002901 rcu_read_lock();
2902
2903 list_for_each_entry_rcu(conn, &h->list, list) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002904 struct hci_chan *tmp;
2905
2906 if (conn->type != type)
2907 continue;
2908
2909 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
2910 continue;
2911
2912 conn_num++;
2913
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -02002914 list_for_each_entry_rcu(tmp, &conn->chan_list, list) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002915 struct sk_buff *skb;
2916
2917 if (skb_queue_empty(&tmp->data_q))
2918 continue;
2919
2920 skb = skb_peek(&tmp->data_q);
2921 if (skb->priority < cur_prio)
2922 continue;
2923
2924 if (skb->priority > cur_prio) {
2925 num = 0;
2926 min = ~0;
2927 cur_prio = skb->priority;
2928 }
2929
2930 num++;
2931
2932 if (conn->sent < min) {
2933 min = conn->sent;
2934 chan = tmp;
2935 }
2936 }
2937
2938 if (hci_conn_num(hdev, type) == conn_num)
2939 break;
2940 }
2941
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002942 rcu_read_unlock();
2943
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002944 if (!chan)
2945 return NULL;
2946
2947 switch (chan->conn->type) {
2948 case ACL_LINK:
2949 cnt = hdev->acl_cnt;
2950 break;
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03002951 case AMP_LINK:
2952 cnt = hdev->block_cnt;
2953 break;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002954 case SCO_LINK:
2955 case ESCO_LINK:
2956 cnt = hdev->sco_cnt;
2957 break;
2958 case LE_LINK:
2959 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
2960 break;
2961 default:
2962 cnt = 0;
2963 BT_ERR("Unknown link type");
2964 }
2965
2966 q = cnt / num;
2967 *quote = q ? q : 1;
2968 BT_DBG("chan %p quote %d", chan, *quote);
2969 return chan;
2970}
2971
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002972static void hci_prio_recalculate(struct hci_dev *hdev, __u8 type)
2973{
2974 struct hci_conn_hash *h = &hdev->conn_hash;
2975 struct hci_conn *conn;
2976 int num = 0;
2977
2978 BT_DBG("%s", hdev->name);
2979
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002980 rcu_read_lock();
2981
2982 list_for_each_entry_rcu(conn, &h->list, list) {
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002983 struct hci_chan *chan;
2984
2985 if (conn->type != type)
2986 continue;
2987
2988 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
2989 continue;
2990
2991 num++;
2992
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -02002993 list_for_each_entry_rcu(chan, &conn->chan_list, list) {
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002994 struct sk_buff *skb;
2995
2996 if (chan->sent) {
2997 chan->sent = 0;
2998 continue;
2999 }
3000
3001 if (skb_queue_empty(&chan->data_q))
3002 continue;
3003
3004 skb = skb_peek(&chan->data_q);
3005 if (skb->priority >= HCI_PRIO_MAX - 1)
3006 continue;
3007
3008 skb->priority = HCI_PRIO_MAX - 1;
3009
3010 BT_DBG("chan %p skb %p promoted to %d", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003011 skb->priority);
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003012 }
3013
3014 if (hci_conn_num(hdev, type) == num)
3015 break;
3016 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02003017
3018 rcu_read_unlock();
3019
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003020}
3021
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003022static inline int __get_blocks(struct hci_dev *hdev, struct sk_buff *skb)
3023{
3024 /* Calculate count of blocks used by this packet */
3025 return DIV_ROUND_UP(skb->len - HCI_ACL_HDR_SIZE, hdev->block_len);
3026}
3027
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003028static void __check_timeout(struct hci_dev *hdev, unsigned int cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 if (!test_bit(HCI_RAW, &hdev->flags)) {
3031 /* ACL tx timeout must be longer than maximum
3032 * link supervision timeout (40.9 seconds) */
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02003033 if (!cnt && time_after(jiffies, hdev->acl_last_tx +
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +03003034 HCI_ACL_TX_TIMEOUT))
Ville Tervobae1f5d92011-02-10 22:38:53 -03003035 hci_link_tx_to(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 }
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02003037}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003039static void hci_sched_acl_pkt(struct hci_dev *hdev)
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02003040{
3041 unsigned int cnt = hdev->acl_cnt;
3042 struct hci_chan *chan;
3043 struct sk_buff *skb;
3044 int quote;
3045
3046 __check_timeout(hdev, cnt);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003047
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003048 while (hdev->acl_cnt &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003049 (chan = hci_chan_sent(hdev, ACL_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02003050 u32 priority = (skb_peek(&chan->data_q))->priority;
3051 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003052 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003053 skb->len, skb->priority);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003054
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02003055 /* Stop if priority has changed */
3056 if (skb->priority < priority)
3057 break;
3058
3059 skb = skb_dequeue(&chan->data_q);
3060
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003061 hci_conn_enter_active_mode(chan->conn,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003062 bt_cb(skb)->force_active);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 hci_send_frame(skb);
3065 hdev->acl_last_tx = jiffies;
3066
3067 hdev->acl_cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003068 chan->sent++;
3069 chan->conn->sent++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 }
3071 }
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003072
3073 if (cnt != hdev->acl_cnt)
3074 hci_prio_recalculate(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075}
3076
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003077static void hci_sched_acl_blk(struct hci_dev *hdev)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003078{
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02003079 unsigned int cnt = hdev->block_cnt;
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003080 struct hci_chan *chan;
3081 struct sk_buff *skb;
3082 int quote;
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03003083 u8 type;
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003084
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02003085 __check_timeout(hdev, cnt);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003086
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03003087 BT_DBG("%s", hdev->name);
3088
3089 if (hdev->dev_type == HCI_AMP)
3090 type = AMP_LINK;
3091 else
3092 type = ACL_LINK;
3093
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003094 while (hdev->block_cnt > 0 &&
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03003095 (chan = hci_chan_sent(hdev, type, &quote))) {
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003096 u32 priority = (skb_peek(&chan->data_q))->priority;
3097 while (quote > 0 && (skb = skb_peek(&chan->data_q))) {
3098 int blocks;
3099
3100 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003101 skb->len, skb->priority);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003102
3103 /* Stop if priority has changed */
3104 if (skb->priority < priority)
3105 break;
3106
3107 skb = skb_dequeue(&chan->data_q);
3108
3109 blocks = __get_blocks(hdev, skb);
3110 if (blocks > hdev->block_cnt)
3111 return;
3112
3113 hci_conn_enter_active_mode(chan->conn,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003114 bt_cb(skb)->force_active);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003115
3116 hci_send_frame(skb);
3117 hdev->acl_last_tx = jiffies;
3118
3119 hdev->block_cnt -= blocks;
3120 quote -= blocks;
3121
3122 chan->sent += blocks;
3123 chan->conn->sent += blocks;
3124 }
3125 }
3126
3127 if (cnt != hdev->block_cnt)
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03003128 hci_prio_recalculate(hdev, type);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003129}
3130
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003131static void hci_sched_acl(struct hci_dev *hdev)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003132{
3133 BT_DBG("%s", hdev->name);
3134
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03003135 /* No ACL link over BR/EDR controller */
3136 if (!hci_conn_num(hdev, ACL_LINK) && hdev->dev_type == HCI_BREDR)
3137 return;
3138
3139 /* No AMP link over AMP controller */
3140 if (!hci_conn_num(hdev, AMP_LINK) && hdev->dev_type == HCI_AMP)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003141 return;
3142
3143 switch (hdev->flow_ctl_mode) {
3144 case HCI_FLOW_CTL_MODE_PACKET_BASED:
3145 hci_sched_acl_pkt(hdev);
3146 break;
3147
3148 case HCI_FLOW_CTL_MODE_BLOCK_BASED:
3149 hci_sched_acl_blk(hdev);
3150 break;
3151 }
3152}
3153
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154/* Schedule SCO */
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003155static void hci_sched_sco(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156{
3157 struct hci_conn *conn;
3158 struct sk_buff *skb;
3159 int quote;
3160
3161 BT_DBG("%s", hdev->name);
3162
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03003163 if (!hci_conn_num(hdev, SCO_LINK))
3164 return;
3165
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, SCO_LINK, &quote))) {
3167 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
3168 BT_DBG("skb %p len %d", skb, skb->len);
3169 hci_send_frame(skb);
3170
3171 conn->sent++;
3172 if (conn->sent == ~0)
3173 conn->sent = 0;
3174 }
3175 }
3176}
3177
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003178static void hci_sched_esco(struct hci_dev *hdev)
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003179{
3180 struct hci_conn *conn;
3181 struct sk_buff *skb;
3182 int quote;
3183
3184 BT_DBG("%s", hdev->name);
3185
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03003186 if (!hci_conn_num(hdev, ESCO_LINK))
3187 return;
3188
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003189 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, ESCO_LINK,
3190 &quote))) {
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003191 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
3192 BT_DBG("skb %p len %d", skb, skb->len);
3193 hci_send_frame(skb);
3194
3195 conn->sent++;
3196 if (conn->sent == ~0)
3197 conn->sent = 0;
3198 }
3199 }
3200}
3201
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003202static void hci_sched_le(struct hci_dev *hdev)
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003203{
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003204 struct hci_chan *chan;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003205 struct sk_buff *skb;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003206 int quote, cnt, tmp;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003207
3208 BT_DBG("%s", hdev->name);
3209
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03003210 if (!hci_conn_num(hdev, LE_LINK))
3211 return;
3212
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003213 if (!test_bit(HCI_RAW, &hdev->flags)) {
3214 /* LE tx timeout must be longer than maximum
3215 * link supervision timeout (40.9 seconds) */
Ville Tervobae1f5d92011-02-10 22:38:53 -03003216 if (!hdev->le_cnt && hdev->le_pkts &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003217 time_after(jiffies, hdev->le_last_tx + HZ * 45))
Ville Tervobae1f5d92011-02-10 22:38:53 -03003218 hci_link_tx_to(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003219 }
3220
3221 cnt = hdev->le_pkts ? hdev->le_cnt : hdev->acl_cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003222 tmp = cnt;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003223 while (cnt && (chan = hci_chan_sent(hdev, LE_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02003224 u32 priority = (skb_peek(&chan->data_q))->priority;
3225 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003226 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003227 skb->len, skb->priority);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003228
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02003229 /* Stop if priority has changed */
3230 if (skb->priority < priority)
3231 break;
3232
3233 skb = skb_dequeue(&chan->data_q);
3234
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003235 hci_send_frame(skb);
3236 hdev->le_last_tx = jiffies;
3237
3238 cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003239 chan->sent++;
3240 chan->conn->sent++;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003241 }
3242 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003243
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003244 if (hdev->le_pkts)
3245 hdev->le_cnt = cnt;
3246 else
3247 hdev->acl_cnt = cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003248
3249 if (cnt != tmp)
3250 hci_prio_recalculate(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003251}
3252
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02003253static void hci_tx_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254{
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02003255 struct hci_dev *hdev = container_of(work, struct hci_dev, tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 struct sk_buff *skb;
3257
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003258 BT_DBG("%s acl %d sco %d le %d", hdev->name, hdev->acl_cnt,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003259 hdev->sco_cnt, hdev->le_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
3261 /* Schedule queues and send stuff to HCI driver */
3262
3263 hci_sched_acl(hdev);
3264
3265 hci_sched_sco(hdev);
3266
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003267 hci_sched_esco(hdev);
3268
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003269 hci_sched_le(hdev);
3270
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 /* Send next queued raw (unknown type) packet */
3272 while ((skb = skb_dequeue(&hdev->raw_q)))
3273 hci_send_frame(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274}
3275
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003276/* ----- HCI RX task (incoming data processing) ----- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
3278/* ACL data packet */
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003279static void hci_acldata_packet(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280{
3281 struct hci_acl_hdr *hdr = (void *) skb->data;
3282 struct hci_conn *conn;
3283 __u16 handle, flags;
3284
3285 skb_pull(skb, HCI_ACL_HDR_SIZE);
3286
3287 handle = __le16_to_cpu(hdr->handle);
3288 flags = hci_flags(handle);
3289 handle = hci_handle(handle);
3290
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03003291 BT_DBG("%s len %d handle 0x%4.4x flags 0x%4.4x", hdev->name, skb->len,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003292 handle, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293
3294 hdev->stat.acl_rx++;
3295
3296 hci_dev_lock(hdev);
3297 conn = hci_conn_hash_lookup_handle(hdev, handle);
3298 hci_dev_unlock(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09003299
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 if (conn) {
Mat Martineau65983fc2011-12-13 15:06:02 -08003301 hci_conn_enter_active_mode(conn, BT_POWER_FORCE_ACTIVE_OFF);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003302
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 /* Send to upper protocol */
Ulisses Furquim686ebf22011-12-21 10:11:33 -02003304 l2cap_recv_acldata(conn, skb, flags);
3305 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09003307 BT_ERR("%s ACL packet for unknown connection handle %d",
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003308 hdev->name, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 }
3310
3311 kfree_skb(skb);
3312}
3313
3314/* SCO data packet */
Gustavo Padovan6039aa72012-05-23 04:04:18 -03003315static void hci_scodata_packet(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316{
3317 struct hci_sco_hdr *hdr = (void *) skb->data;
3318 struct hci_conn *conn;
3319 __u16 handle;
3320
3321 skb_pull(skb, HCI_SCO_HDR_SIZE);
3322
3323 handle = __le16_to_cpu(hdr->handle);
3324
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03003325 BT_DBG("%s len %d handle 0x%4.4x", hdev->name, skb->len, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326
3327 hdev->stat.sco_rx++;
3328
3329 hci_dev_lock(hdev);
3330 conn = hci_conn_hash_lookup_handle(hdev, handle);
3331 hci_dev_unlock(hdev);
3332
3333 if (conn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 /* Send to upper protocol */
Ulisses Furquim686ebf22011-12-21 10:11:33 -02003335 sco_recv_scodata(conn, skb);
3336 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09003338 BT_ERR("%s SCO packet for unknown connection handle %d",
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003339 hdev->name, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 }
3341
3342 kfree_skb(skb);
3343}
3344
Johan Hedberg9238f362013-03-05 20:37:48 +02003345static bool hci_req_is_complete(struct hci_dev *hdev)
3346{
3347 struct sk_buff *skb;
3348
3349 skb = skb_peek(&hdev->cmd_q);
3350 if (!skb)
3351 return true;
3352
3353 return bt_cb(skb)->req.start;
3354}
3355
Johan Hedberg42c6b122013-03-05 20:37:49 +02003356static void hci_resend_last(struct hci_dev *hdev)
3357{
3358 struct hci_command_hdr *sent;
3359 struct sk_buff *skb;
3360 u16 opcode;
3361
3362 if (!hdev->sent_cmd)
3363 return;
3364
3365 sent = (void *) hdev->sent_cmd->data;
3366 opcode = __le16_to_cpu(sent->opcode);
3367 if (opcode == HCI_OP_RESET)
3368 return;
3369
3370 skb = skb_clone(hdev->sent_cmd, GFP_KERNEL);
3371 if (!skb)
3372 return;
3373
3374 skb_queue_head(&hdev->cmd_q, skb);
3375 queue_work(hdev->workqueue, &hdev->cmd_work);
3376}
3377
Johan Hedberg9238f362013-03-05 20:37:48 +02003378void hci_req_cmd_complete(struct hci_dev *hdev, u16 opcode, u8 status)
3379{
3380 hci_req_complete_t req_complete = NULL;
3381 struct sk_buff *skb;
3382 unsigned long flags;
3383
3384 BT_DBG("opcode 0x%04x status 0x%02x", opcode, status);
3385
Johan Hedberg42c6b122013-03-05 20:37:49 +02003386 /* If the completed command doesn't match the last one that was
3387 * sent we need to do special handling of it.
Johan Hedberg9238f362013-03-05 20:37:48 +02003388 */
Johan Hedberg42c6b122013-03-05 20:37:49 +02003389 if (!hci_sent_cmd_data(hdev, opcode)) {
3390 /* Some CSR based controllers generate a spontaneous
3391 * reset complete event during init and any pending
3392 * command will never be completed. In such a case we
3393 * need to resend whatever was the last sent
3394 * command.
3395 */
3396 if (test_bit(HCI_INIT, &hdev->flags) && opcode == HCI_OP_RESET)
3397 hci_resend_last(hdev);
3398
Johan Hedberg9238f362013-03-05 20:37:48 +02003399 return;
Johan Hedberg42c6b122013-03-05 20:37:49 +02003400 }
Johan Hedberg9238f362013-03-05 20:37:48 +02003401
3402 /* If the command succeeded and there's still more commands in
3403 * this request the request is not yet complete.
3404 */
3405 if (!status && !hci_req_is_complete(hdev))
3406 return;
3407
3408 /* If this was the last command in a request the complete
3409 * callback would be found in hdev->sent_cmd instead of the
3410 * command queue (hdev->cmd_q).
3411 */
3412 if (hdev->sent_cmd) {
3413 req_complete = bt_cb(hdev->sent_cmd)->req.complete;
3414 if (req_complete)
3415 goto call_complete;
3416 }
3417
3418 /* Remove all pending commands belonging to this request */
3419 spin_lock_irqsave(&hdev->cmd_q.lock, flags);
3420 while ((skb = __skb_dequeue(&hdev->cmd_q))) {
3421 if (bt_cb(skb)->req.start) {
3422 __skb_queue_head(&hdev->cmd_q, skb);
3423 break;
3424 }
3425
3426 req_complete = bt_cb(skb)->req.complete;
3427 kfree_skb(skb);
3428 }
3429 spin_unlock_irqrestore(&hdev->cmd_q.lock, flags);
3430
3431call_complete:
3432 if (req_complete)
3433 req_complete(hdev, status);
3434}
3435
Marcel Holtmannb78752c2010-08-08 23:06:53 -04003436static void hci_rx_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437{
Marcel Holtmannb78752c2010-08-08 23:06:53 -04003438 struct hci_dev *hdev = container_of(work, struct hci_dev, rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 struct sk_buff *skb;
3440
3441 BT_DBG("%s", hdev->name);
3442
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 while ((skb = skb_dequeue(&hdev->rx_q))) {
Marcel Holtmanncd82e612012-02-20 20:34:38 +01003444 /* Send copy to monitor */
3445 hci_send_to_monitor(hdev, skb);
3446
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 if (atomic_read(&hdev->promisc)) {
3448 /* Send copy to the sockets */
Marcel Holtmann470fe1b2012-02-20 14:50:30 +01003449 hci_send_to_sock(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 }
3451
3452 if (test_bit(HCI_RAW, &hdev->flags)) {
3453 kfree_skb(skb);
3454 continue;
3455 }
3456
3457 if (test_bit(HCI_INIT, &hdev->flags)) {
3458 /* Don't process data packets in this states. */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07003459 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 case HCI_ACLDATA_PKT:
3461 case HCI_SCODATA_PKT:
3462 kfree_skb(skb);
3463 continue;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 }
3466
3467 /* Process frame */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07003468 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 case HCI_EVENT_PKT:
Marcel Holtmannb78752c2010-08-08 23:06:53 -04003470 BT_DBG("%s Event packet", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 hci_event_packet(hdev, skb);
3472 break;
3473
3474 case HCI_ACLDATA_PKT:
3475 BT_DBG("%s ACL data packet", hdev->name);
3476 hci_acldata_packet(hdev, skb);
3477 break;
3478
3479 case HCI_SCODATA_PKT:
3480 BT_DBG("%s SCO data packet", hdev->name);
3481 hci_scodata_packet(hdev, skb);
3482 break;
3483
3484 default:
3485 kfree_skb(skb);
3486 break;
3487 }
3488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489}
3490
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02003491static void hci_cmd_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492{
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02003493 struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 struct sk_buff *skb;
3495
Andrei Emeltchenko21047862012-07-10 15:27:47 +03003496 BT_DBG("%s cmd_cnt %d cmd queued %d", hdev->name,
3497 atomic_read(&hdev->cmd_cnt), skb_queue_len(&hdev->cmd_q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 /* Send queued commands */
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02003500 if (atomic_read(&hdev->cmd_cnt)) {
3501 skb = skb_dequeue(&hdev->cmd_q);
3502 if (!skb)
3503 return;
3504
Wei Yongjun7585b972009-02-25 18:29:52 +08003505 kfree_skb(hdev->sent_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02003507 hdev->sent_cmd = skb_clone(skb, GFP_ATOMIC);
3508 if (hdev->sent_cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 atomic_dec(&hdev->cmd_cnt);
3510 hci_send_frame(skb);
Szymon Janc7bdb8a52011-07-26 22:46:54 +02003511 if (test_bit(HCI_RESET, &hdev->flags))
3512 del_timer(&hdev->cmd_timer);
3513 else
3514 mod_timer(&hdev->cmd_timer,
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +03003515 jiffies + HCI_CMD_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 } else {
3517 skb_queue_head(&hdev->cmd_q, skb);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02003518 queue_work(hdev->workqueue, &hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 }
3520 }
3521}
Andre Guedes2519a1f2011-11-07 11:45:24 -03003522
Andre Guedes31f79562012-04-24 21:02:53 -03003523u8 bdaddr_to_le(u8 bdaddr_type)
3524{
3525 switch (bdaddr_type) {
3526 case BDADDR_LE_PUBLIC:
3527 return ADDR_LE_DEV_PUBLIC;
3528
3529 default:
3530 /* Fallback to LE Random address type */
3531 return ADDR_LE_DEV_RANDOM;
3532 }
3533}