blob: 33843c5c49398f0e2a373de8919cde67a840451a [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{
344 struct hci_cp_delete_stored_link_key cp;
345 __le16 param;
346 __u8 flt_type;
347
348 /* Read Buffer Size (ACL mtu, max pkt, etc.) */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200349 hci_req_add(req, HCI_OP_READ_BUFFER_SIZE, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200350
351 /* Read Class of Device */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200352 hci_req_add(req, HCI_OP_READ_CLASS_OF_DEV, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200353
354 /* Read Local Name */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200355 hci_req_add(req, HCI_OP_READ_LOCAL_NAME, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200356
357 /* Read Voice Setting */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200358 hci_req_add(req, HCI_OP_READ_VOICE_SETTING, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200359
360 /* Clear Event Filters */
361 flt_type = HCI_FLT_CLEAR_ALL;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200362 hci_req_add(req, HCI_OP_SET_EVENT_FLT, 1, &flt_type);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200363
364 /* Connection accept timeout ~20 secs */
365 param = __constant_cpu_to_le16(0x7d00);
Johan Hedberg42c6b122013-03-05 20:37:49 +0200366 hci_req_add(req, HCI_OP_WRITE_CA_TIMEOUT, 2, &param);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200367
368 bacpy(&cp.bdaddr, BDADDR_ANY);
369 cp.delete_all = 0x01;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200370 hci_req_add(req, HCI_OP_DELETE_STORED_LINK_KEY, sizeof(cp), &cp);
Johan Hedbergf332ec62013-03-15 17:07:11 -0500371
372 /* Read page scan parameters */
373 if (req->hdev->hci_ver > BLUETOOTH_VER_1_1) {
374 hci_req_add(req, HCI_OP_READ_PAGE_SCAN_ACTIVITY, 0, NULL);
375 hci_req_add(req, HCI_OP_READ_PAGE_SCAN_TYPE, 0, NULL);
376 }
Johan Hedberg2177bab2013-03-05 20:37:43 +0200377}
378
Johan Hedberg42c6b122013-03-05 20:37:49 +0200379static void le_setup(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200380{
Johan Hedbergc73eee92013-04-19 18:35:21 +0300381 struct hci_dev *hdev = req->hdev;
382
Johan Hedberg2177bab2013-03-05 20:37:43 +0200383 /* Read LE Buffer Size */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200384 hci_req_add(req, HCI_OP_LE_READ_BUFFER_SIZE, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200385
386 /* Read LE Local Supported Features */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200387 hci_req_add(req, HCI_OP_LE_READ_LOCAL_FEATURES, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200388
389 /* Read LE Advertising Channel TX Power */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200390 hci_req_add(req, HCI_OP_LE_READ_ADV_TX_POWER, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200391
392 /* Read LE White List Size */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200393 hci_req_add(req, HCI_OP_LE_READ_WHITE_LIST_SIZE, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200394
395 /* Read LE Supported States */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200396 hci_req_add(req, HCI_OP_LE_READ_SUPPORTED_STATES, 0, NULL);
Johan Hedbergc73eee92013-04-19 18:35:21 +0300397
398 /* LE-only controllers have LE implicitly enabled */
399 if (!lmp_bredr_capable(hdev))
400 set_bit(HCI_LE_ENABLED, &hdev->dev_flags);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200401}
402
403static u8 hci_get_inquiry_mode(struct hci_dev *hdev)
404{
405 if (lmp_ext_inq_capable(hdev))
406 return 0x02;
407
408 if (lmp_inq_rssi_capable(hdev))
409 return 0x01;
410
411 if (hdev->manufacturer == 11 && hdev->hci_rev == 0x00 &&
412 hdev->lmp_subver == 0x0757)
413 return 0x01;
414
415 if (hdev->manufacturer == 15) {
416 if (hdev->hci_rev == 0x03 && hdev->lmp_subver == 0x6963)
417 return 0x01;
418 if (hdev->hci_rev == 0x09 && hdev->lmp_subver == 0x6963)
419 return 0x01;
420 if (hdev->hci_rev == 0x00 && hdev->lmp_subver == 0x6965)
421 return 0x01;
422 }
423
424 if (hdev->manufacturer == 31 && hdev->hci_rev == 0x2005 &&
425 hdev->lmp_subver == 0x1805)
426 return 0x01;
427
428 return 0x00;
429}
430
Johan Hedberg42c6b122013-03-05 20:37:49 +0200431static void hci_setup_inquiry_mode(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200432{
433 u8 mode;
434
Johan Hedberg42c6b122013-03-05 20:37:49 +0200435 mode = hci_get_inquiry_mode(req->hdev);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200436
Johan Hedberg42c6b122013-03-05 20:37:49 +0200437 hci_req_add(req, HCI_OP_WRITE_INQUIRY_MODE, 1, &mode);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200438}
439
Johan Hedberg42c6b122013-03-05 20:37:49 +0200440static void hci_setup_event_mask(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200441{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200442 struct hci_dev *hdev = req->hdev;
443
Johan Hedberg2177bab2013-03-05 20:37:43 +0200444 /* The second byte is 0xff instead of 0x9f (two reserved bits
445 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
446 * command otherwise.
447 */
448 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
449
450 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
451 * any event mask for pre 1.2 devices.
452 */
453 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
454 return;
455
456 if (lmp_bredr_capable(hdev)) {
457 events[4] |= 0x01; /* Flow Specification Complete */
458 events[4] |= 0x02; /* Inquiry Result with RSSI */
459 events[4] |= 0x04; /* Read Remote Extended Features Complete */
460 events[5] |= 0x08; /* Synchronous Connection Complete */
461 events[5] |= 0x10; /* Synchronous Connection Changed */
462 }
463
464 if (lmp_inq_rssi_capable(hdev))
465 events[4] |= 0x02; /* Inquiry Result with RSSI */
466
467 if (lmp_sniffsubr_capable(hdev))
468 events[5] |= 0x20; /* Sniff Subrating */
469
470 if (lmp_pause_enc_capable(hdev))
471 events[5] |= 0x80; /* Encryption Key Refresh Complete */
472
473 if (lmp_ext_inq_capable(hdev))
474 events[5] |= 0x40; /* Extended Inquiry Result */
475
476 if (lmp_no_flush_capable(hdev))
477 events[7] |= 0x01; /* Enhanced Flush Complete */
478
479 if (lmp_lsto_capable(hdev))
480 events[6] |= 0x80; /* Link Supervision Timeout Changed */
481
482 if (lmp_ssp_capable(hdev)) {
483 events[6] |= 0x01; /* IO Capability Request */
484 events[6] |= 0x02; /* IO Capability Response */
485 events[6] |= 0x04; /* User Confirmation Request */
486 events[6] |= 0x08; /* User Passkey Request */
487 events[6] |= 0x10; /* Remote OOB Data Request */
488 events[6] |= 0x20; /* Simple Pairing Complete */
489 events[7] |= 0x04; /* User Passkey Notification */
490 events[7] |= 0x08; /* Keypress Notification */
491 events[7] |= 0x10; /* Remote Host Supported
492 * Features Notification
493 */
494 }
495
496 if (lmp_le_capable(hdev))
497 events[7] |= 0x20; /* LE Meta-Event */
498
Johan Hedberg42c6b122013-03-05 20:37:49 +0200499 hci_req_add(req, HCI_OP_SET_EVENT_MASK, sizeof(events), events);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200500
501 if (lmp_le_capable(hdev)) {
502 memset(events, 0, sizeof(events));
503 events[0] = 0x1f;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200504 hci_req_add(req, HCI_OP_LE_SET_EVENT_MASK,
505 sizeof(events), events);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200506 }
507}
508
Johan Hedberg42c6b122013-03-05 20:37:49 +0200509static void hci_init2_req(struct hci_request *req, unsigned long opt)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200510{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200511 struct hci_dev *hdev = req->hdev;
512
Johan Hedberg2177bab2013-03-05 20:37:43 +0200513 if (lmp_bredr_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +0200514 bredr_setup(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200515
516 if (lmp_le_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +0200517 le_setup(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200518
Johan Hedberg42c6b122013-03-05 20:37:49 +0200519 hci_setup_event_mask(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200520
521 if (hdev->hci_ver > BLUETOOTH_VER_1_1)
Johan Hedberg42c6b122013-03-05 20:37:49 +0200522 hci_req_add(req, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200523
524 if (lmp_ssp_capable(hdev)) {
525 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
526 u8 mode = 0x01;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200527 hci_req_add(req, HCI_OP_WRITE_SSP_MODE,
528 sizeof(mode), &mode);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200529 } else {
530 struct hci_cp_write_eir cp;
531
532 memset(hdev->eir, 0, sizeof(hdev->eir));
533 memset(&cp, 0, sizeof(cp));
534
Johan Hedberg42c6b122013-03-05 20:37:49 +0200535 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200536 }
537 }
538
539 if (lmp_inq_rssi_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +0200540 hci_setup_inquiry_mode(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200541
542 if (lmp_inq_tx_pwr_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +0200543 hci_req_add(req, HCI_OP_READ_INQ_RSP_TX_POWER, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200544
545 if (lmp_ext_feat_capable(hdev)) {
546 struct hci_cp_read_local_ext_features cp;
547
548 cp.page = 0x01;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200549 hci_req_add(req, HCI_OP_READ_LOCAL_EXT_FEATURES,
550 sizeof(cp), &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200551 }
552
553 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags)) {
554 u8 enable = 1;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200555 hci_req_add(req, HCI_OP_WRITE_AUTH_ENABLE, sizeof(enable),
556 &enable);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200557 }
558}
559
Johan Hedberg42c6b122013-03-05 20:37:49 +0200560static void hci_setup_link_policy(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200561{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200562 struct hci_dev *hdev = req->hdev;
Johan Hedberg2177bab2013-03-05 20:37:43 +0200563 struct hci_cp_write_def_link_policy cp;
564 u16 link_policy = 0;
565
566 if (lmp_rswitch_capable(hdev))
567 link_policy |= HCI_LP_RSWITCH;
568 if (lmp_hold_capable(hdev))
569 link_policy |= HCI_LP_HOLD;
570 if (lmp_sniff_capable(hdev))
571 link_policy |= HCI_LP_SNIFF;
572 if (lmp_park_capable(hdev))
573 link_policy |= HCI_LP_PARK;
574
575 cp.policy = cpu_to_le16(link_policy);
Johan Hedberg42c6b122013-03-05 20:37:49 +0200576 hci_req_add(req, HCI_OP_WRITE_DEF_LINK_POLICY, sizeof(cp), &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200577}
578
Johan Hedberg42c6b122013-03-05 20:37:49 +0200579static void hci_set_le_support(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200580{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200581 struct hci_dev *hdev = req->hdev;
Johan Hedberg2177bab2013-03-05 20:37:43 +0200582 struct hci_cp_write_le_host_supported cp;
583
Johan Hedbergc73eee92013-04-19 18:35:21 +0300584 /* LE-only devices do not support explicit enablement */
585 if (!lmp_bredr_capable(hdev))
586 return;
587
Johan Hedberg2177bab2013-03-05 20:37:43 +0200588 memset(&cp, 0, sizeof(cp));
589
590 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
591 cp.le = 0x01;
592 cp.simul = lmp_le_br_capable(hdev);
593 }
594
595 if (cp.le != lmp_host_le_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +0200596 hci_req_add(req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(cp),
597 &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200598}
599
Johan Hedberg42c6b122013-03-05 20:37:49 +0200600static void hci_init3_req(struct hci_request *req, unsigned long opt)
Johan Hedberg2177bab2013-03-05 20:37:43 +0200601{
Johan Hedberg42c6b122013-03-05 20:37:49 +0200602 struct hci_dev *hdev = req->hdev;
Johan Hedbergd2c5d772013-04-17 15:00:52 +0300603 u8 p;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200604
Johan Hedberg2177bab2013-03-05 20:37:43 +0200605 if (hdev->commands[5] & 0x10)
Johan Hedberg42c6b122013-03-05 20:37:49 +0200606 hci_setup_link_policy(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +0200607
Johan Hedberg04b4edc2013-03-15 17:07:01 -0500608 if (lmp_le_capable(hdev)) {
Johan Hedberg42c6b122013-03-05 20:37:49 +0200609 hci_set_le_support(req);
Johan Hedberg04b4edc2013-03-15 17:07:01 -0500610 hci_update_ad(req);
611 }
Johan Hedbergd2c5d772013-04-17 15:00:52 +0300612
613 /* Read features beyond page 1 if available */
614 for (p = 2; p < HCI_MAX_PAGES && p <= hdev->max_page; p++) {
615 struct hci_cp_read_local_ext_features cp;
616
617 cp.page = p;
618 hci_req_add(req, HCI_OP_READ_LOCAL_EXT_FEATURES,
619 sizeof(cp), &cp);
620 }
Johan Hedberg2177bab2013-03-05 20:37:43 +0200621}
622
623static int __hci_init(struct hci_dev *hdev)
624{
625 int err;
626
627 err = __hci_req_sync(hdev, hci_init1_req, 0, HCI_INIT_TIMEOUT);
628 if (err < 0)
629 return err;
630
631 /* HCI_BREDR covers both single-mode LE, BR/EDR and dual-mode
632 * BR/EDR/LE type controllers. AMP controllers only need the
633 * first stage init.
634 */
635 if (hdev->dev_type != HCI_BREDR)
636 return 0;
637
638 err = __hci_req_sync(hdev, hci_init2_req, 0, HCI_INIT_TIMEOUT);
639 if (err < 0)
640 return err;
641
642 return __hci_req_sync(hdev, hci_init3_req, 0, HCI_INIT_TIMEOUT);
643}
644
Johan Hedberg42c6b122013-03-05 20:37:49 +0200645static void hci_scan_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
647 __u8 scan = opt;
648
Johan Hedberg42c6b122013-03-05 20:37:49 +0200649 BT_DBG("%s %x", req->hdev->name, scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 /* Inquiry and Page scans */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200652 hci_req_add(req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Johan Hedberg42c6b122013-03-05 20:37:49 +0200655static void hci_auth_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 __u8 auth = opt;
658
Johan Hedberg42c6b122013-03-05 20:37:49 +0200659 BT_DBG("%s %x", req->hdev->name, auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 /* Authentication */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200662 hci_req_add(req, HCI_OP_WRITE_AUTH_ENABLE, 1, &auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
Johan Hedberg42c6b122013-03-05 20:37:49 +0200665static void hci_encrypt_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 __u8 encrypt = opt;
668
Johan Hedberg42c6b122013-03-05 20:37:49 +0200669 BT_DBG("%s %x", req->hdev->name, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200671 /* Encryption */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200672 hci_req_add(req, HCI_OP_WRITE_ENCRYPT_MODE, 1, &encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Johan Hedberg42c6b122013-03-05 20:37:49 +0200675static void hci_linkpol_req(struct hci_request *req, unsigned long opt)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200676{
677 __le16 policy = cpu_to_le16(opt);
678
Johan Hedberg42c6b122013-03-05 20:37:49 +0200679 BT_DBG("%s %x", req->hdev->name, policy);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200680
681 /* Default link policy */
Johan Hedberg42c6b122013-03-05 20:37:49 +0200682 hci_req_add(req, HCI_OP_WRITE_DEF_LINK_POLICY, 2, &policy);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200683}
684
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900685/* Get HCI device by index.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 * Device is held on return. */
687struct hci_dev *hci_dev_get(int index)
688{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200689 struct hci_dev *hdev = NULL, *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 BT_DBG("%d", index);
692
693 if (index < 0)
694 return NULL;
695
696 read_lock(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200697 list_for_each_entry(d, &hci_dev_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (d->id == index) {
699 hdev = hci_dev_hold(d);
700 break;
701 }
702 }
703 read_unlock(&hci_dev_list_lock);
704 return hdev;
705}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707/* ---- Inquiry support ---- */
Johan Hedbergff9ef572012-01-04 14:23:45 +0200708
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200709bool hci_discovery_active(struct hci_dev *hdev)
710{
711 struct discovery_state *discov = &hdev->discovery;
712
Andre Guedes6fbe1952012-02-03 17:47:58 -0300713 switch (discov->state) {
Andre Guedes343f9352012-02-17 20:39:37 -0300714 case DISCOVERY_FINDING:
Andre Guedes6fbe1952012-02-03 17:47:58 -0300715 case DISCOVERY_RESOLVING:
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200716 return true;
717
Andre Guedes6fbe1952012-02-03 17:47:58 -0300718 default:
719 return false;
720 }
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200721}
722
Johan Hedbergff9ef572012-01-04 14:23:45 +0200723void hci_discovery_set_state(struct hci_dev *hdev, int state)
724{
725 BT_DBG("%s state %u -> %u", hdev->name, hdev->discovery.state, state);
726
727 if (hdev->discovery.state == state)
728 return;
729
730 switch (state) {
731 case DISCOVERY_STOPPED:
Andre Guedes7b99b652012-02-13 15:41:02 -0300732 if (hdev->discovery.state != DISCOVERY_STARTING)
733 mgmt_discovering(hdev, 0);
Johan Hedbergff9ef572012-01-04 14:23:45 +0200734 break;
735 case DISCOVERY_STARTING:
736 break;
Andre Guedes343f9352012-02-17 20:39:37 -0300737 case DISCOVERY_FINDING:
Johan Hedbergff9ef572012-01-04 14:23:45 +0200738 mgmt_discovering(hdev, 1);
739 break;
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200740 case DISCOVERY_RESOLVING:
741 break;
Johan Hedbergff9ef572012-01-04 14:23:45 +0200742 case DISCOVERY_STOPPING:
743 break;
744 }
745
746 hdev->discovery.state = state;
747}
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749static void inquiry_cache_flush(struct hci_dev *hdev)
750{
Johan Hedberg30883512012-01-04 14:16:21 +0200751 struct discovery_state *cache = &hdev->discovery;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200752 struct inquiry_entry *p, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Johan Hedberg561aafb2012-01-04 13:31:59 +0200754 list_for_each_entry_safe(p, n, &cache->all, all) {
755 list_del(&p->all);
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200756 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
Johan Hedberg561aafb2012-01-04 13:31:59 +0200758
759 INIT_LIST_HEAD(&cache->unknown);
760 INIT_LIST_HEAD(&cache->resolve);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300763struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev,
764 bdaddr_t *bdaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Johan Hedberg30883512012-01-04 14:16:21 +0200766 struct discovery_state *cache = &hdev->discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 struct inquiry_entry *e;
768
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300769 BT_DBG("cache %p, %pMR", cache, bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Johan Hedberg561aafb2012-01-04 13:31:59 +0200771 list_for_each_entry(e, &cache->all, all) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (!bacmp(&e->data.bdaddr, bdaddr))
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200773 return e;
774 }
775
776 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
Johan Hedberg561aafb2012-01-04 13:31:59 +0200779struct inquiry_entry *hci_inquiry_cache_lookup_unknown(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300780 bdaddr_t *bdaddr)
Johan Hedberg561aafb2012-01-04 13:31:59 +0200781{
Johan Hedberg30883512012-01-04 14:16:21 +0200782 struct discovery_state *cache = &hdev->discovery;
Johan Hedberg561aafb2012-01-04 13:31:59 +0200783 struct inquiry_entry *e;
784
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300785 BT_DBG("cache %p, %pMR", cache, bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +0200786
787 list_for_each_entry(e, &cache->unknown, list) {
788 if (!bacmp(&e->data.bdaddr, bdaddr))
789 return e;
790 }
791
792 return NULL;
793}
794
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200795struct inquiry_entry *hci_inquiry_cache_lookup_resolve(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300796 bdaddr_t *bdaddr,
797 int state)
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200798{
799 struct discovery_state *cache = &hdev->discovery;
800 struct inquiry_entry *e;
801
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300802 BT_DBG("cache %p bdaddr %pMR state %d", cache, bdaddr, state);
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200803
804 list_for_each_entry(e, &cache->resolve, list) {
805 if (!bacmp(bdaddr, BDADDR_ANY) && e->name_state == state)
806 return e;
807 if (!bacmp(&e->data.bdaddr, bdaddr))
808 return e;
809 }
810
811 return NULL;
812}
813
Johan Hedberga3d4e202012-01-09 00:53:02 +0200814void hci_inquiry_cache_update_resolve(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300815 struct inquiry_entry *ie)
Johan Hedberga3d4e202012-01-09 00:53:02 +0200816{
817 struct discovery_state *cache = &hdev->discovery;
818 struct list_head *pos = &cache->resolve;
819 struct inquiry_entry *p;
820
821 list_del(&ie->list);
822
823 list_for_each_entry(p, &cache->resolve, list) {
824 if (p->name_state != NAME_PENDING &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300825 abs(p->data.rssi) >= abs(ie->data.rssi))
Johan Hedberga3d4e202012-01-09 00:53:02 +0200826 break;
827 pos = &p->list;
828 }
829
830 list_add(&ie->list, pos);
831}
832
Johan Hedberg31754052012-01-04 13:39:52 +0200833bool hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300834 bool name_known, bool *ssp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Johan Hedberg30883512012-01-04 14:16:21 +0200836 struct discovery_state *cache = &hdev->discovery;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200837 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300839 BT_DBG("cache %p, %pMR", cache, &data->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Szymon Janc2b2fec42012-11-20 11:38:54 +0100841 hci_remove_remote_oob_data(hdev, &data->bdaddr);
842
Johan Hedberg388fc8f2012-02-23 00:38:59 +0200843 if (ssp)
844 *ssp = data->ssp_mode;
845
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200846 ie = hci_inquiry_cache_lookup(hdev, &data->bdaddr);
Johan Hedberga3d4e202012-01-09 00:53:02 +0200847 if (ie) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +0200848 if (ie->data.ssp_mode && ssp)
849 *ssp = true;
850
Johan Hedberga3d4e202012-01-09 00:53:02 +0200851 if (ie->name_state == NAME_NEEDED &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300852 data->rssi != ie->data.rssi) {
Johan Hedberga3d4e202012-01-09 00:53:02 +0200853 ie->data.rssi = data->rssi;
854 hci_inquiry_cache_update_resolve(hdev, ie);
855 }
856
Johan Hedberg561aafb2012-01-04 13:31:59 +0200857 goto update;
Johan Hedberga3d4e202012-01-09 00:53:02 +0200858 }
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200859
Johan Hedberg561aafb2012-01-04 13:31:59 +0200860 /* Entry not in the cache. Add new one. */
861 ie = kzalloc(sizeof(struct inquiry_entry), GFP_ATOMIC);
862 if (!ie)
Johan Hedberg31754052012-01-04 13:39:52 +0200863 return false;
Johan Hedberg561aafb2012-01-04 13:31:59 +0200864
865 list_add(&ie->all, &cache->all);
866
867 if (name_known) {
868 ie->name_state = NAME_KNOWN;
869 } else {
870 ie->name_state = NAME_NOT_KNOWN;
871 list_add(&ie->list, &cache->unknown);
872 }
873
874update:
875 if (name_known && ie->name_state != NAME_KNOWN &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300876 ie->name_state != NAME_PENDING) {
Johan Hedberg561aafb2012-01-04 13:31:59 +0200877 ie->name_state = NAME_KNOWN;
878 list_del(&ie->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200881 memcpy(&ie->data, data, sizeof(*data));
882 ie->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 cache->timestamp = jiffies;
Johan Hedberg31754052012-01-04 13:39:52 +0200884
885 if (ie->name_state == NAME_NOT_KNOWN)
886 return false;
887
888 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
891static int inquiry_cache_dump(struct hci_dev *hdev, int num, __u8 *buf)
892{
Johan Hedberg30883512012-01-04 14:16:21 +0200893 struct discovery_state *cache = &hdev->discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 struct inquiry_info *info = (struct inquiry_info *) buf;
895 struct inquiry_entry *e;
896 int copied = 0;
897
Johan Hedberg561aafb2012-01-04 13:31:59 +0200898 list_for_each_entry(e, &cache->all, all) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 struct inquiry_data *data = &e->data;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200900
901 if (copied >= num)
902 break;
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 bacpy(&info->bdaddr, &data->bdaddr);
905 info->pscan_rep_mode = data->pscan_rep_mode;
906 info->pscan_period_mode = data->pscan_period_mode;
907 info->pscan_mode = data->pscan_mode;
908 memcpy(info->dev_class, data->dev_class, 3);
909 info->clock_offset = data->clock_offset;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 info++;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200912 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
914
915 BT_DBG("cache %p, copied %d", cache, copied);
916 return copied;
917}
918
Johan Hedberg42c6b122013-03-05 20:37:49 +0200919static void hci_inq_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 struct hci_inquiry_req *ir = (struct hci_inquiry_req *) opt;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200922 struct hci_dev *hdev = req->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 struct hci_cp_inquiry cp;
924
925 BT_DBG("%s", hdev->name);
926
927 if (test_bit(HCI_INQUIRY, &hdev->flags))
928 return;
929
930 /* Start Inquiry */
931 memcpy(&cp.lap, &ir->lap, 3);
932 cp.length = ir->length;
933 cp.num_rsp = ir->num_rsp;
Johan Hedberg42c6b122013-03-05 20:37:49 +0200934 hci_req_add(req, HCI_OP_INQUIRY, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
Andre Guedes3e13fa12013-03-27 20:04:56 -0300937static int wait_inquiry(void *word)
938{
939 schedule();
940 return signal_pending(current);
941}
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943int hci_inquiry(void __user *arg)
944{
945 __u8 __user *ptr = arg;
946 struct hci_inquiry_req ir;
947 struct hci_dev *hdev;
948 int err = 0, do_inquiry = 0, max_rsp;
949 long timeo;
950 __u8 *buf;
951
952 if (copy_from_user(&ir, ptr, sizeof(ir)))
953 return -EFAULT;
954
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200955 hdev = hci_dev_get(ir.dev_id);
956 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return -ENODEV;
958
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300959 hci_dev_lock(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900960 if (inquiry_cache_age(hdev) > INQUIRY_CACHE_AGE_MAX ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300961 inquiry_cache_empty(hdev) || ir.flags & IREQ_CACHE_FLUSH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 inquiry_cache_flush(hdev);
963 do_inquiry = 1;
964 }
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300965 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Marcel Holtmann04837f62006-07-03 10:02:33 +0200967 timeo = ir.length * msecs_to_jiffies(2000);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200968
969 if (do_inquiry) {
Johan Hedberg01178cd2013-03-05 20:37:41 +0200970 err = hci_req_sync(hdev, hci_inq_req, (unsigned long) &ir,
971 timeo);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200972 if (err < 0)
973 goto done;
Andre Guedes3e13fa12013-03-27 20:04:56 -0300974
975 /* Wait until Inquiry procedure finishes (HCI_INQUIRY flag is
976 * cleared). If it is interrupted by a signal, return -EINTR.
977 */
978 if (wait_on_bit(&hdev->flags, HCI_INQUIRY, wait_inquiry,
979 TASK_INTERRUPTIBLE))
980 return -EINTR;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300983 /* for unlimited number of responses we will use buffer with
984 * 255 entries
985 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 max_rsp = (ir.num_rsp == 0) ? 255 : ir.num_rsp;
987
988 /* cache_dump can't sleep. Therefore we allocate temp buffer and then
989 * copy it to the user space.
990 */
Szymon Janc01df8c32011-02-17 16:46:47 +0100991 buf = kmalloc(sizeof(struct inquiry_info) * max_rsp, GFP_KERNEL);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200992 if (!buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 err = -ENOMEM;
994 goto done;
995 }
996
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300997 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 ir.num_rsp = inquiry_cache_dump(hdev, max_rsp, buf);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300999 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 BT_DBG("num_rsp %d", ir.num_rsp);
1002
1003 if (!copy_to_user(ptr, &ir, sizeof(ir))) {
1004 ptr += sizeof(ir);
1005 if (copy_to_user(ptr, buf, sizeof(struct inquiry_info) *
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001006 ir.num_rsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 err = -EFAULT;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001008 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 err = -EFAULT;
1010
1011 kfree(buf);
1012
1013done:
1014 hci_dev_put(hdev);
1015 return err;
1016}
1017
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001018static u8 create_ad(struct hci_dev *hdev, u8 *ptr)
1019{
1020 u8 ad_len = 0, flags = 0;
1021 size_t name_len;
1022
1023 if (test_bit(HCI_LE_PERIPHERAL, &hdev->dev_flags))
1024 flags |= LE_AD_GENERAL;
1025
1026 if (!lmp_bredr_capable(hdev))
1027 flags |= LE_AD_NO_BREDR;
1028
1029 if (lmp_le_br_capable(hdev))
1030 flags |= LE_AD_SIM_LE_BREDR_CTRL;
1031
1032 if (lmp_host_le_br_capable(hdev))
1033 flags |= LE_AD_SIM_LE_BREDR_HOST;
1034
1035 if (flags) {
1036 BT_DBG("adv flags 0x%02x", flags);
1037
1038 ptr[0] = 2;
1039 ptr[1] = EIR_FLAGS;
1040 ptr[2] = flags;
1041
1042 ad_len += 3;
1043 ptr += 3;
1044 }
1045
1046 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID) {
1047 ptr[0] = 2;
1048 ptr[1] = EIR_TX_POWER;
1049 ptr[2] = (u8) hdev->adv_tx_power;
1050
1051 ad_len += 3;
1052 ptr += 3;
1053 }
1054
1055 name_len = strlen(hdev->dev_name);
1056 if (name_len > 0) {
1057 size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2;
1058
1059 if (name_len > max_len) {
1060 name_len = max_len;
1061 ptr[1] = EIR_NAME_SHORT;
1062 } else
1063 ptr[1] = EIR_NAME_COMPLETE;
1064
1065 ptr[0] = name_len + 1;
1066
1067 memcpy(ptr + 2, hdev->dev_name, name_len);
1068
1069 ad_len += (name_len + 2);
1070 ptr += (name_len + 2);
1071 }
1072
1073 return ad_len;
1074}
1075
Johan Hedberg04b4edc2013-03-15 17:07:01 -05001076void hci_update_ad(struct hci_request *req)
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001077{
Johan Hedberg04b4edc2013-03-15 17:07:01 -05001078 struct hci_dev *hdev = req->hdev;
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001079 struct hci_cp_le_set_adv_data cp;
1080 u8 len;
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001081
Johan Hedberg04b4edc2013-03-15 17:07:01 -05001082 if (!lmp_le_capable(hdev))
1083 return;
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001084
1085 memset(&cp, 0, sizeof(cp));
1086
1087 len = create_ad(hdev, cp.data);
1088
1089 if (hdev->adv_data_len == len &&
Johan Hedberg04b4edc2013-03-15 17:07:01 -05001090 memcmp(cp.data, hdev->adv_data, len) == 0)
1091 return;
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001092
1093 memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
1094 hdev->adv_data_len = len;
1095
1096 cp.length = len;
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001097
Johan Hedberg04b4edc2013-03-15 17:07:01 -05001098 hci_req_add(req, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp);
Johan Hedberg3f0f5242012-11-08 01:23:00 +01001099}
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101/* ---- HCI ioctl helpers ---- */
1102
1103int hci_dev_open(__u16 dev)
1104{
1105 struct hci_dev *hdev;
1106 int ret = 0;
1107
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02001108 hdev = hci_dev_get(dev);
1109 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return -ENODEV;
1111
1112 BT_DBG("%s %p", hdev->name, hdev);
1113
1114 hci_req_lock(hdev);
1115
Johan Hovold94324962012-03-15 14:48:41 +01001116 if (test_bit(HCI_UNREGISTER, &hdev->dev_flags)) {
1117 ret = -ENODEV;
1118 goto done;
1119 }
1120
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001121 if (hdev->rfkill && rfkill_blocked(hdev->rfkill)) {
1122 ret = -ERFKILL;
1123 goto done;
1124 }
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (test_bit(HCI_UP, &hdev->flags)) {
1127 ret = -EALREADY;
1128 goto done;
1129 }
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (hdev->open(hdev)) {
1132 ret = -EIO;
1133 goto done;
1134 }
1135
Marcel Holtmannf41c70c2012-11-12 14:02:14 +09001136 atomic_set(&hdev->cmd_cnt, 1);
1137 set_bit(HCI_INIT, &hdev->flags);
1138
1139 if (hdev->setup && test_bit(HCI_SETUP, &hdev->dev_flags))
1140 ret = hdev->setup(hdev);
1141
1142 if (!ret) {
1143 /* Treat all non BR/EDR controllers as raw devices if
1144 * enable_hs is not set.
1145 */
1146 if (hdev->dev_type != HCI_BREDR && !enable_hs)
1147 set_bit(HCI_RAW, &hdev->flags);
1148
1149 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
1150 set_bit(HCI_RAW, &hdev->flags);
1151
1152 if (!test_bit(HCI_RAW, &hdev->flags))
1153 ret = __hci_init(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
1155
Marcel Holtmannf41c70c2012-11-12 14:02:14 +09001156 clear_bit(HCI_INIT, &hdev->flags);
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (!ret) {
1159 hci_dev_hold(hdev);
1160 set_bit(HCI_UP, &hdev->flags);
1161 hci_notify(hdev, HCI_DEV_UP);
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03001162 if (!test_bit(HCI_SETUP, &hdev->dev_flags) &&
1163 mgmt_valid_hdev(hdev)) {
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001164 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02001165 mgmt_powered(hdev, 1);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001166 hci_dev_unlock(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001167 }
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001168 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /* Init failed, cleanup */
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02001170 flush_work(&hdev->tx_work);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02001171 flush_work(&hdev->cmd_work);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04001172 flush_work(&hdev->rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 skb_queue_purge(&hdev->cmd_q);
1175 skb_queue_purge(&hdev->rx_q);
1176
1177 if (hdev->flush)
1178 hdev->flush(hdev);
1179
1180 if (hdev->sent_cmd) {
1181 kfree_skb(hdev->sent_cmd);
1182 hdev->sent_cmd = NULL;
1183 }
1184
1185 hdev->close(hdev);
1186 hdev->flags = 0;
1187 }
1188
1189done:
1190 hci_req_unlock(hdev);
1191 hci_dev_put(hdev);
1192 return ret;
1193}
1194
1195static int hci_dev_do_close(struct hci_dev *hdev)
1196{
1197 BT_DBG("%s %p", hdev->name, hdev);
1198
Andre Guedes28b75a82012-02-03 17:48:00 -03001199 cancel_work_sync(&hdev->le_scan);
1200
Vinicius Costa Gomes78c04c02012-09-14 16:34:46 -03001201 cancel_delayed_work(&hdev->power_off);
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 hci_req_cancel(hdev, ENODEV);
1204 hci_req_lock(hdev);
1205
1206 if (!test_and_clear_bit(HCI_UP, &hdev->flags)) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -03001207 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 hci_req_unlock(hdev);
1209 return 0;
1210 }
1211
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02001212 /* Flush RX and TX works */
1213 flush_work(&hdev->tx_work);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04001214 flush_work(&hdev->rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001216 if (hdev->discov_timeout > 0) {
Johan Hedberge0f93092011-11-09 01:44:22 +02001217 cancel_delayed_work(&hdev->discov_off);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001218 hdev->discov_timeout = 0;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001219 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001220 }
1221
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001222 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg7d785252011-12-15 00:47:39 +02001223 cancel_delayed_work(&hdev->service_cache);
1224
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001225 cancel_delayed_work_sync(&hdev->le_scan_disable);
1226
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001227 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 inquiry_cache_flush(hdev);
1229 hci_conn_hash_flush(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001230 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 hci_notify(hdev, HCI_DEV_DOWN);
1233
1234 if (hdev->flush)
1235 hdev->flush(hdev);
1236
1237 /* Reset device */
1238 skb_queue_purge(&hdev->cmd_q);
1239 atomic_set(&hdev->cmd_cnt, 1);
Johan Hedberg8af59462012-02-03 21:29:40 +02001240 if (!test_bit(HCI_RAW, &hdev->flags) &&
Szymon Janca6c511c2012-05-23 12:35:46 +02001241 test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 set_bit(HCI_INIT, &hdev->flags);
Johan Hedberg01178cd2013-03-05 20:37:41 +02001243 __hci_req_sync(hdev, hci_reset_req, 0, HCI_CMD_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 clear_bit(HCI_INIT, &hdev->flags);
1245 }
1246
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02001247 /* flush cmd work */
1248 flush_work(&hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 /* Drop queues */
1251 skb_queue_purge(&hdev->rx_q);
1252 skb_queue_purge(&hdev->cmd_q);
1253 skb_queue_purge(&hdev->raw_q);
1254
1255 /* Drop last sent command */
1256 if (hdev->sent_cmd) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -03001257 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 kfree_skb(hdev->sent_cmd);
1259 hdev->sent_cmd = NULL;
1260 }
1261
Johan Hedbergb6ddb632013-04-02 13:34:31 +03001262 kfree_skb(hdev->recv_evt);
1263 hdev->recv_evt = NULL;
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /* After this point our queues are empty
1266 * and no tasks are scheduled. */
1267 hdev->close(hdev);
1268
Johan Hedberg35b973c2013-03-15 17:06:59 -05001269 /* Clear flags */
1270 hdev->flags = 0;
1271 hdev->dev_flags &= ~HCI_PERSISTENT_MASK;
1272
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03001273 if (!test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags) &&
1274 mgmt_valid_hdev(hdev)) {
Marcel Holtmann8ee56542012-02-21 12:33:48 +01001275 hci_dev_lock(hdev);
1276 mgmt_powered(hdev, 0);
1277 hci_dev_unlock(hdev);
1278 }
Johan Hedberg5add6af2010-12-16 10:00:37 +02001279
Andrei Emeltchenkoced5c332012-11-28 17:59:42 +02001280 /* Controller radio is available but is currently powered down */
1281 hdev->amp_status = 0;
1282
Johan Hedberge59fda82012-02-22 18:11:53 +02001283 memset(hdev->eir, 0, sizeof(hdev->eir));
Johan Hedberg09b3c3f2012-02-22 22:01:41 +02001284 memset(hdev->dev_class, 0, sizeof(hdev->dev_class));
Johan Hedberge59fda82012-02-22 18:11:53 +02001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 hci_req_unlock(hdev);
1287
1288 hci_dev_put(hdev);
1289 return 0;
1290}
1291
1292int hci_dev_close(__u16 dev)
1293{
1294 struct hci_dev *hdev;
1295 int err;
1296
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001297 hdev = hci_dev_get(dev);
1298 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 return -ENODEV;
Marcel Holtmann8ee56542012-02-21 12:33:48 +01001300
1301 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
1302 cancel_delayed_work(&hdev->power_off);
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 err = hci_dev_do_close(hdev);
Marcel Holtmann8ee56542012-02-21 12:33:48 +01001305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 hci_dev_put(hdev);
1307 return err;
1308}
1309
1310int hci_dev_reset(__u16 dev)
1311{
1312 struct hci_dev *hdev;
1313 int ret = 0;
1314
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001315 hdev = hci_dev_get(dev);
1316 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return -ENODEV;
1318
1319 hci_req_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 if (!test_bit(HCI_UP, &hdev->flags))
1322 goto done;
1323
1324 /* Drop queues */
1325 skb_queue_purge(&hdev->rx_q);
1326 skb_queue_purge(&hdev->cmd_q);
1327
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001328 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 inquiry_cache_flush(hdev);
1330 hci_conn_hash_flush(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001331 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 if (hdev->flush)
1334 hdev->flush(hdev);
1335
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001336 atomic_set(&hdev->cmd_cnt, 1);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03001337 hdev->acl_cnt = 0; hdev->sco_cnt = 0; hdev->le_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 if (!test_bit(HCI_RAW, &hdev->flags))
Johan Hedberg01178cd2013-03-05 20:37:41 +02001340 ret = __hci_req_sync(hdev, hci_reset_req, 0, HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 hci_req_unlock(hdev);
1344 hci_dev_put(hdev);
1345 return ret;
1346}
1347
1348int hci_dev_reset_stat(__u16 dev)
1349{
1350 struct hci_dev *hdev;
1351 int ret = 0;
1352
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001353 hdev = hci_dev_get(dev);
1354 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return -ENODEV;
1356
1357 memset(&hdev->stat, 0, sizeof(struct hci_dev_stats));
1358
1359 hci_dev_put(hdev);
1360
1361 return ret;
1362}
1363
1364int hci_dev_cmd(unsigned int cmd, void __user *arg)
1365{
1366 struct hci_dev *hdev;
1367 struct hci_dev_req dr;
1368 int err = 0;
1369
1370 if (copy_from_user(&dr, arg, sizeof(dr)))
1371 return -EFAULT;
1372
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001373 hdev = hci_dev_get(dr.dev_id);
1374 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return -ENODEV;
1376
1377 switch (cmd) {
1378 case HCISETAUTH:
Johan Hedberg01178cd2013-03-05 20:37:41 +02001379 err = hci_req_sync(hdev, hci_auth_req, dr.dev_opt,
1380 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 break;
1382
1383 case HCISETENCRYPT:
1384 if (!lmp_encrypt_capable(hdev)) {
1385 err = -EOPNOTSUPP;
1386 break;
1387 }
1388
1389 if (!test_bit(HCI_AUTH, &hdev->flags)) {
1390 /* Auth must be enabled first */
Johan Hedberg01178cd2013-03-05 20:37:41 +02001391 err = hci_req_sync(hdev, hci_auth_req, dr.dev_opt,
1392 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 if (err)
1394 break;
1395 }
1396
Johan Hedberg01178cd2013-03-05 20:37:41 +02001397 err = hci_req_sync(hdev, hci_encrypt_req, dr.dev_opt,
1398 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 break;
1400
1401 case HCISETSCAN:
Johan Hedberg01178cd2013-03-05 20:37:41 +02001402 err = hci_req_sync(hdev, hci_scan_req, dr.dev_opt,
1403 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 break;
1405
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001406 case HCISETLINKPOL:
Johan Hedberg01178cd2013-03-05 20:37:41 +02001407 err = hci_req_sync(hdev, hci_linkpol_req, dr.dev_opt,
1408 HCI_INIT_TIMEOUT);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001409 break;
1410
1411 case HCISETLINKMODE:
1412 hdev->link_mode = ((__u16) dr.dev_opt) &
1413 (HCI_LM_MASTER | HCI_LM_ACCEPT);
1414 break;
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 case HCISETPTYPE:
1417 hdev->pkt_type = (__u16) dr.dev_opt;
1418 break;
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 case HCISETACLMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001421 hdev->acl_mtu = *((__u16 *) &dr.dev_opt + 1);
1422 hdev->acl_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 break;
1424
1425 case HCISETSCOMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001426 hdev->sco_mtu = *((__u16 *) &dr.dev_opt + 1);
1427 hdev->sco_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 break;
1429
1430 default:
1431 err = -EINVAL;
1432 break;
1433 }
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 hci_dev_put(hdev);
1436 return err;
1437}
1438
1439int hci_get_dev_list(void __user *arg)
1440{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001441 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 struct hci_dev_list_req *dl;
1443 struct hci_dev_req *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 int n = 0, size, err;
1445 __u16 dev_num;
1446
1447 if (get_user(dev_num, (__u16 __user *) arg))
1448 return -EFAULT;
1449
1450 if (!dev_num || dev_num > (PAGE_SIZE * 2) / sizeof(*dr))
1451 return -EINVAL;
1452
1453 size = sizeof(*dl) + dev_num * sizeof(*dr);
1454
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001455 dl = kzalloc(size, GFP_KERNEL);
1456 if (!dl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return -ENOMEM;
1458
1459 dr = dl->dev_req;
1460
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001461 read_lock(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001462 list_for_each_entry(hdev, &hci_dev_list, list) {
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001463 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
Johan Hedberge0f93092011-11-09 01:44:22 +02001464 cancel_delayed_work(&hdev->power_off);
Johan Hedbergc542a062011-01-26 13:11:03 +02001465
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001466 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
1467 set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergc542a062011-01-26 13:11:03 +02001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 (dr + n)->dev_id = hdev->id;
1470 (dr + n)->dev_opt = hdev->flags;
Johan Hedbergc542a062011-01-26 13:11:03 +02001471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (++n >= dev_num)
1473 break;
1474 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001475 read_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 dl->dev_num = n;
1478 size = sizeof(*dl) + n * sizeof(*dr);
1479
1480 err = copy_to_user(arg, dl, size);
1481 kfree(dl);
1482
1483 return err ? -EFAULT : 0;
1484}
1485
1486int hci_get_dev_info(void __user *arg)
1487{
1488 struct hci_dev *hdev;
1489 struct hci_dev_info di;
1490 int err = 0;
1491
1492 if (copy_from_user(&di, arg, sizeof(di)))
1493 return -EFAULT;
1494
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001495 hdev = hci_dev_get(di.dev_id);
1496 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 return -ENODEV;
1498
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001499 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
Johan Hedberg32435532011-11-07 22:16:04 +02001500 cancel_delayed_work_sync(&hdev->power_off);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001501
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001502 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
1503 set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergc542a062011-01-26 13:11:03 +02001504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 strcpy(di.name, hdev->name);
1506 di.bdaddr = hdev->bdaddr;
Marcel Holtmann943da252010-02-13 02:28:41 +01001507 di.type = (hdev->bus & 0x0f) | (hdev->dev_type << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 di.flags = hdev->flags;
1509 di.pkt_type = hdev->pkt_type;
Johan Hedberg572c7f82012-10-19 20:57:46 +03001510 if (lmp_bredr_capable(hdev)) {
1511 di.acl_mtu = hdev->acl_mtu;
1512 di.acl_pkts = hdev->acl_pkts;
1513 di.sco_mtu = hdev->sco_mtu;
1514 di.sco_pkts = hdev->sco_pkts;
1515 } else {
1516 di.acl_mtu = hdev->le_mtu;
1517 di.acl_pkts = hdev->le_pkts;
1518 di.sco_mtu = 0;
1519 di.sco_pkts = 0;
1520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 di.link_policy = hdev->link_policy;
1522 di.link_mode = hdev->link_mode;
1523
1524 memcpy(&di.stat, &hdev->stat, sizeof(di.stat));
1525 memcpy(&di.features, &hdev->features, sizeof(di.features));
1526
1527 if (copy_to_user(arg, &di, sizeof(di)))
1528 err = -EFAULT;
1529
1530 hci_dev_put(hdev);
1531
1532 return err;
1533}
1534
1535/* ---- Interface to HCI drivers ---- */
1536
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001537static int hci_rfkill_set_block(void *data, bool blocked)
1538{
1539 struct hci_dev *hdev = data;
1540
1541 BT_DBG("%p name %s blocked %d", hdev, hdev->name, blocked);
1542
1543 if (!blocked)
1544 return 0;
1545
1546 hci_dev_do_close(hdev);
1547
1548 return 0;
1549}
1550
1551static const struct rfkill_ops hci_rfkill_ops = {
1552 .set_block = hci_rfkill_set_block,
1553};
1554
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001555static void hci_power_on(struct work_struct *work)
1556{
1557 struct hci_dev *hdev = container_of(work, struct hci_dev, power_on);
1558
1559 BT_DBG("%s", hdev->name);
1560
1561 if (hci_dev_open(hdev->id) < 0)
1562 return;
1563
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001564 if (test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
Johan Hedberg19202572013-01-14 22:33:51 +02001565 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
1566 HCI_AUTO_OFF_TIMEOUT);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001567
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001568 if (test_and_clear_bit(HCI_SETUP, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +02001569 mgmt_index_added(hdev);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001570}
1571
1572static void hci_power_off(struct work_struct *work)
1573{
Johan Hedberg32435532011-11-07 22:16:04 +02001574 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001575 power_off.work);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001576
1577 BT_DBG("%s", hdev->name);
1578
Marcel Holtmann8ee56542012-02-21 12:33:48 +01001579 hci_dev_do_close(hdev);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001580}
1581
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001582static void hci_discov_off(struct work_struct *work)
1583{
1584 struct hci_dev *hdev;
1585 u8 scan = SCAN_PAGE;
1586
1587 hdev = container_of(work, struct hci_dev, discov_off.work);
1588
1589 BT_DBG("%s", hdev->name);
1590
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001591 hci_dev_lock(hdev);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001592
1593 hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
1594
1595 hdev->discov_timeout = 0;
1596
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001597 hci_dev_unlock(hdev);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001598}
1599
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001600int hci_uuids_clear(struct hci_dev *hdev)
1601{
Johan Hedberg48210022013-01-27 00:31:28 +02001602 struct bt_uuid *uuid, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001603
Johan Hedberg48210022013-01-27 00:31:28 +02001604 list_for_each_entry_safe(uuid, tmp, &hdev->uuids, list) {
1605 list_del(&uuid->list);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001606 kfree(uuid);
1607 }
1608
1609 return 0;
1610}
1611
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001612int hci_link_keys_clear(struct hci_dev *hdev)
1613{
1614 struct list_head *p, *n;
1615
1616 list_for_each_safe(p, n, &hdev->link_keys) {
1617 struct link_key *key;
1618
1619 key = list_entry(p, struct link_key, list);
1620
1621 list_del(p);
1622 kfree(key);
1623 }
1624
1625 return 0;
1626}
1627
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03001628int hci_smp_ltks_clear(struct hci_dev *hdev)
1629{
1630 struct smp_ltk *k, *tmp;
1631
1632 list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) {
1633 list_del(&k->list);
1634 kfree(k);
1635 }
1636
1637 return 0;
1638}
1639
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001640struct link_key *hci_find_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
1641{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001642 struct link_key *k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001643
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001644 list_for_each_entry(k, &hdev->link_keys, list)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001645 if (bacmp(bdaddr, &k->bdaddr) == 0)
1646 return k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001647
1648 return NULL;
1649}
1650
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301651static bool hci_persistent_key(struct hci_dev *hdev, struct hci_conn *conn,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001652 u8 key_type, u8 old_key_type)
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001653{
1654 /* Legacy key */
1655 if (key_type < 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301656 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001657
1658 /* Debug keys are insecure so don't store them persistently */
1659 if (key_type == HCI_LK_DEBUG_COMBINATION)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301660 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001661
1662 /* Changed combination key and there's no previous one */
1663 if (key_type == HCI_LK_CHANGED_COMBINATION && old_key_type == 0xff)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301664 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001665
1666 /* Security mode 3 case */
1667 if (!conn)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301668 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001669
1670 /* Neither local nor remote side had no-bonding as requirement */
1671 if (conn->auth_type > 0x01 && conn->remote_auth > 0x01)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301672 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001673
1674 /* Local side had dedicated bonding as requirement */
1675 if (conn->auth_type == 0x02 || conn->auth_type == 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301676 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001677
1678 /* Remote side had dedicated bonding as requirement */
1679 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301680 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001681
1682 /* If none of the above criteria match, then don't store the key
1683 * persistently */
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301684 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001685}
1686
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001687struct smp_ltk *hci_find_ltk(struct hci_dev *hdev, __le16 ediv, u8 rand[8])
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001688{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001689 struct smp_ltk *k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001690
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001691 list_for_each_entry(k, &hdev->long_term_keys, list) {
1692 if (k->ediv != ediv ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001693 memcmp(rand, k->rand, sizeof(k->rand)))
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001694 continue;
1695
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001696 return k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001697 }
1698
1699 return NULL;
1700}
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001701
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001702struct smp_ltk *hci_find_ltk_by_addr(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001703 u8 addr_type)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001704{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001705 struct smp_ltk *k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001706
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001707 list_for_each_entry(k, &hdev->long_term_keys, list)
1708 if (addr_type == k->bdaddr_type &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001709 bacmp(bdaddr, &k->bdaddr) == 0)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001710 return k;
1711
1712 return NULL;
1713}
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001714
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001715int hci_add_link_key(struct hci_dev *hdev, struct hci_conn *conn, int new_key,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001716 bdaddr_t *bdaddr, u8 *val, u8 type, u8 pin_len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001717{
1718 struct link_key *key, *old_key;
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301719 u8 old_key_type;
1720 bool persistent;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001721
1722 old_key = hci_find_link_key(hdev, bdaddr);
1723 if (old_key) {
1724 old_key_type = old_key->type;
1725 key = old_key;
1726 } else {
Johan Hedberg12adcf32011-04-28 11:29:00 -07001727 old_key_type = conn ? conn->key_type : 0xff;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001728 key = kzalloc(sizeof(*key), GFP_ATOMIC);
1729 if (!key)
1730 return -ENOMEM;
1731 list_add(&key->list, &hdev->link_keys);
1732 }
1733
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001734 BT_DBG("%s key for %pMR type %u", hdev->name, bdaddr, type);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001735
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001736 /* Some buggy controller combinations generate a changed
1737 * combination key for legacy pairing even when there's no
1738 * previous key */
1739 if (type == HCI_LK_CHANGED_COMBINATION &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001740 (!conn || conn->remote_auth == 0xff) && old_key_type == 0xff) {
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001741 type = HCI_LK_COMBINATION;
Johan Hedberg655fe6e2011-04-28 11:29:01 -07001742 if (conn)
1743 conn->key_type = type;
1744 }
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001745
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001746 bacpy(&key->bdaddr, bdaddr);
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03001747 memcpy(key->val, val, HCI_LINK_KEY_SIZE);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001748 key->pin_len = pin_len;
1749
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +02001750 if (type == HCI_LK_CHANGED_COMBINATION)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001751 key->type = old_key_type;
Johan Hedberg4748fed2011-04-28 11:29:02 -07001752 else
1753 key->type = type;
1754
Johan Hedberg4df378a2011-04-28 11:29:03 -07001755 if (!new_key)
1756 return 0;
1757
1758 persistent = hci_persistent_key(hdev, conn, type, old_key_type);
1759
Johan Hedberg744cf192011-11-08 20:40:14 +02001760 mgmt_new_link_key(hdev, key, persistent);
Johan Hedberg4df378a2011-04-28 11:29:03 -07001761
Vishal Agarwal6ec5bca2012-04-16 14:44:44 +05301762 if (conn)
1763 conn->flush_key = !persistent;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001764
1765 return 0;
1766}
1767
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001768int hci_add_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 addr_type, u8 type,
Andrei Emeltchenko9a006652012-03-09 12:12:12 +02001769 int new_key, u8 authenticated, u8 tk[16], u8 enc_size, __le16
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001770 ediv, u8 rand[8])
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001771{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001772 struct smp_ltk *key, *old_key;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001773
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001774 if (!(type & HCI_SMP_STK) && !(type & HCI_SMP_LTK))
1775 return 0;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001776
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001777 old_key = hci_find_ltk_by_addr(hdev, bdaddr, addr_type);
1778 if (old_key)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001779 key = old_key;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001780 else {
1781 key = kzalloc(sizeof(*key), GFP_ATOMIC);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001782 if (!key)
1783 return -ENOMEM;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001784 list_add(&key->list, &hdev->long_term_keys);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001785 }
1786
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001787 bacpy(&key->bdaddr, bdaddr);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001788 key->bdaddr_type = addr_type;
1789 memcpy(key->val, tk, sizeof(key->val));
1790 key->authenticated = authenticated;
1791 key->ediv = ediv;
1792 key->enc_size = enc_size;
1793 key->type = type;
1794 memcpy(key->rand, rand, sizeof(key->rand));
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001795
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001796 if (!new_key)
1797 return 0;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001798
Vinicius Costa Gomes261cc5a2012-02-02 21:08:05 -03001799 if (type & HCI_SMP_LTK)
1800 mgmt_new_ltk(hdev, key, 1);
1801
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001802 return 0;
1803}
1804
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001805int hci_remove_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
1806{
1807 struct link_key *key;
1808
1809 key = hci_find_link_key(hdev, bdaddr);
1810 if (!key)
1811 return -ENOENT;
1812
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001813 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001814
1815 list_del(&key->list);
1816 kfree(key);
1817
1818 return 0;
1819}
1820
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03001821int hci_remove_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr)
1822{
1823 struct smp_ltk *k, *tmp;
1824
1825 list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) {
1826 if (bacmp(bdaddr, &k->bdaddr))
1827 continue;
1828
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001829 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03001830
1831 list_del(&k->list);
1832 kfree(k);
1833 }
1834
1835 return 0;
1836}
1837
Ville Tervo6bd32322011-02-16 16:32:41 +02001838/* HCI command timer function */
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03001839static void hci_cmd_timeout(unsigned long arg)
Ville Tervo6bd32322011-02-16 16:32:41 +02001840{
1841 struct hci_dev *hdev = (void *) arg;
1842
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03001843 if (hdev->sent_cmd) {
1844 struct hci_command_hdr *sent = (void *) hdev->sent_cmd->data;
1845 u16 opcode = __le16_to_cpu(sent->opcode);
1846
1847 BT_ERR("%s command 0x%4.4x tx timeout", hdev->name, opcode);
1848 } else {
1849 BT_ERR("%s command tx timeout", hdev->name);
1850 }
1851
Ville Tervo6bd32322011-02-16 16:32:41 +02001852 atomic_set(&hdev->cmd_cnt, 1);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02001853 queue_work(hdev->workqueue, &hdev->cmd_work);
Ville Tervo6bd32322011-02-16 16:32:41 +02001854}
1855
Szymon Janc2763eda2011-03-22 13:12:22 +01001856struct oob_data *hci_find_remote_oob_data(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001857 bdaddr_t *bdaddr)
Szymon Janc2763eda2011-03-22 13:12:22 +01001858{
1859 struct oob_data *data;
1860
1861 list_for_each_entry(data, &hdev->remote_oob_data, list)
1862 if (bacmp(bdaddr, &data->bdaddr) == 0)
1863 return data;
1864
1865 return NULL;
1866}
1867
1868int hci_remove_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr)
1869{
1870 struct oob_data *data;
1871
1872 data = hci_find_remote_oob_data(hdev, bdaddr);
1873 if (!data)
1874 return -ENOENT;
1875
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001876 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01001877
1878 list_del(&data->list);
1879 kfree(data);
1880
1881 return 0;
1882}
1883
1884int hci_remote_oob_data_clear(struct hci_dev *hdev)
1885{
1886 struct oob_data *data, *n;
1887
1888 list_for_each_entry_safe(data, n, &hdev->remote_oob_data, list) {
1889 list_del(&data->list);
1890 kfree(data);
1891 }
1892
1893 return 0;
1894}
1895
1896int hci_add_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001897 u8 *randomizer)
Szymon Janc2763eda2011-03-22 13:12:22 +01001898{
1899 struct oob_data *data;
1900
1901 data = hci_find_remote_oob_data(hdev, bdaddr);
1902
1903 if (!data) {
1904 data = kmalloc(sizeof(*data), GFP_ATOMIC);
1905 if (!data)
1906 return -ENOMEM;
1907
1908 bacpy(&data->bdaddr, bdaddr);
1909 list_add(&data->list, &hdev->remote_oob_data);
1910 }
1911
1912 memcpy(data->hash, hash, sizeof(data->hash));
1913 memcpy(data->randomizer, randomizer, sizeof(data->randomizer));
1914
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001915 BT_DBG("%s for %pMR", hdev->name, bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01001916
1917 return 0;
1918}
1919
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001920struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001921{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001922 struct bdaddr_list *b;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001923
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001924 list_for_each_entry(b, &hdev->blacklist, list)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001925 if (bacmp(bdaddr, &b->bdaddr) == 0)
1926 return b;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001927
1928 return NULL;
1929}
1930
1931int hci_blacklist_clear(struct hci_dev *hdev)
1932{
1933 struct list_head *p, *n;
1934
1935 list_for_each_safe(p, n, &hdev->blacklist) {
1936 struct bdaddr_list *b;
1937
1938 b = list_entry(p, struct bdaddr_list, list);
1939
1940 list_del(p);
1941 kfree(b);
1942 }
1943
1944 return 0;
1945}
1946
Johan Hedberg88c1fe42012-02-09 15:56:11 +02001947int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001948{
1949 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001950
1951 if (bacmp(bdaddr, BDADDR_ANY) == 0)
1952 return -EBADF;
1953
Antti Julku5e762442011-08-25 16:48:02 +03001954 if (hci_blacklist_lookup(hdev, bdaddr))
1955 return -EEXIST;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001956
1957 entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL);
Antti Julku5e762442011-08-25 16:48:02 +03001958 if (!entry)
1959 return -ENOMEM;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001960
1961 bacpy(&entry->bdaddr, bdaddr);
1962
1963 list_add(&entry->list, &hdev->blacklist);
1964
Johan Hedberg88c1fe42012-02-09 15:56:11 +02001965 return mgmt_device_blocked(hdev, bdaddr, type);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001966}
1967
Johan Hedberg88c1fe42012-02-09 15:56:11 +02001968int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001969{
1970 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001971
Szymon Janc1ec918c2011-11-16 09:32:21 +01001972 if (bacmp(bdaddr, BDADDR_ANY) == 0)
Antti Julku5e762442011-08-25 16:48:02 +03001973 return hci_blacklist_clear(hdev);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001974
1975 entry = hci_blacklist_lookup(hdev, bdaddr);
Szymon Janc1ec918c2011-11-16 09:32:21 +01001976 if (!entry)
Antti Julku5e762442011-08-25 16:48:02 +03001977 return -ENOENT;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001978
1979 list_del(&entry->list);
1980 kfree(entry);
1981
Johan Hedberg88c1fe42012-02-09 15:56:11 +02001982 return mgmt_device_unblocked(hdev, bdaddr, type);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001983}
1984
Johan Hedberg42c6b122013-03-05 20:37:49 +02001985static void le_scan_param_req(struct hci_request *req, unsigned long opt)
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001986{
1987 struct le_scan_params *param = (struct le_scan_params *) opt;
1988 struct hci_cp_le_set_scan_param cp;
1989
1990 memset(&cp, 0, sizeof(cp));
1991 cp.type = param->type;
1992 cp.interval = cpu_to_le16(param->interval);
1993 cp.window = cpu_to_le16(param->window);
1994
Johan Hedberg42c6b122013-03-05 20:37:49 +02001995 hci_req_add(req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(cp), &cp);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001996}
1997
Johan Hedberg42c6b122013-03-05 20:37:49 +02001998static void le_scan_enable_req(struct hci_request *req, unsigned long opt)
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001999{
2000 struct hci_cp_le_set_scan_enable cp;
2001
2002 memset(&cp, 0, sizeof(cp));
Andre Guedes76a388b2013-04-04 20:21:02 -03002003 cp.enable = LE_SCAN_ENABLE;
Andre Guedes525e2962013-04-04 20:21:01 -03002004 cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002005
Johan Hedberg42c6b122013-03-05 20:37:49 +02002006 hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002007}
2008
2009static int hci_do_le_scan(struct hci_dev *hdev, u8 type, u16 interval,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002010 u16 window, int timeout)
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002011{
2012 long timeo = msecs_to_jiffies(3000);
2013 struct le_scan_params param;
2014 int err;
2015
2016 BT_DBG("%s", hdev->name);
2017
2018 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags))
2019 return -EINPROGRESS;
2020
2021 param.type = type;
2022 param.interval = interval;
2023 param.window = window;
2024
2025 hci_req_lock(hdev);
2026
Johan Hedberg01178cd2013-03-05 20:37:41 +02002027 err = __hci_req_sync(hdev, le_scan_param_req, (unsigned long) &param,
2028 timeo);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002029 if (!err)
Johan Hedberg01178cd2013-03-05 20:37:41 +02002030 err = __hci_req_sync(hdev, le_scan_enable_req, 0, timeo);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002031
2032 hci_req_unlock(hdev);
2033
2034 if (err < 0)
2035 return err;
2036
Johan Hedberg46818ed2013-01-14 22:33:52 +02002037 queue_delayed_work(hdev->workqueue, &hdev->le_scan_disable,
Andre Guedesb6c75152013-04-04 20:20:59 -03002038 timeout);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002039
2040 return 0;
2041}
2042
Andre Guedes7dbfac12012-03-15 16:52:07 -03002043int hci_cancel_le_scan(struct hci_dev *hdev)
2044{
2045 BT_DBG("%s", hdev->name);
2046
2047 if (!test_bit(HCI_LE_SCAN, &hdev->dev_flags))
2048 return -EALREADY;
2049
2050 if (cancel_delayed_work(&hdev->le_scan_disable)) {
2051 struct hci_cp_le_set_scan_enable cp;
2052
2053 /* Send HCI command to disable LE Scan */
2054 memset(&cp, 0, sizeof(cp));
2055 hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
2056 }
2057
2058 return 0;
2059}
2060
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002061static void le_scan_disable_work(struct work_struct *work)
2062{
2063 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002064 le_scan_disable.work);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002065 struct hci_cp_le_set_scan_enable cp;
2066
2067 BT_DBG("%s", hdev->name);
2068
2069 memset(&cp, 0, sizeof(cp));
2070
2071 hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
2072}
2073
Andre Guedes28b75a82012-02-03 17:48:00 -03002074static void le_scan_work(struct work_struct *work)
2075{
2076 struct hci_dev *hdev = container_of(work, struct hci_dev, le_scan);
2077 struct le_scan_params *param = &hdev->le_scan_params;
2078
2079 BT_DBG("%s", hdev->name);
2080
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002081 hci_do_le_scan(hdev, param->type, param->interval, param->window,
2082 param->timeout);
Andre Guedes28b75a82012-02-03 17:48:00 -03002083}
2084
2085int hci_le_scan(struct hci_dev *hdev, u8 type, u16 interval, u16 window,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002086 int timeout)
Andre Guedes28b75a82012-02-03 17:48:00 -03002087{
2088 struct le_scan_params *param = &hdev->le_scan_params;
2089
2090 BT_DBG("%s", hdev->name);
2091
Johan Hedbergf1550472012-10-24 21:12:03 +03002092 if (test_bit(HCI_LE_PERIPHERAL, &hdev->dev_flags))
2093 return -ENOTSUPP;
2094
Andre Guedes28b75a82012-02-03 17:48:00 -03002095 if (work_busy(&hdev->le_scan))
2096 return -EINPROGRESS;
2097
2098 param->type = type;
2099 param->interval = interval;
2100 param->window = window;
2101 param->timeout = timeout;
2102
2103 queue_work(system_long_wq, &hdev->le_scan);
2104
2105 return 0;
2106}
2107
David Herrmann9be0dab2012-04-22 14:39:57 +02002108/* Alloc HCI device */
2109struct hci_dev *hci_alloc_dev(void)
2110{
2111 struct hci_dev *hdev;
2112
2113 hdev = kzalloc(sizeof(struct hci_dev), GFP_KERNEL);
2114 if (!hdev)
2115 return NULL;
2116
David Herrmannb1b813d2012-04-22 14:39:58 +02002117 hdev->pkt_type = (HCI_DM1 | HCI_DH1 | HCI_HV1);
2118 hdev->esco_type = (ESCO_HV1);
2119 hdev->link_mode = (HCI_LM_ACCEPT);
2120 hdev->io_capability = 0x03; /* No Input No Output */
Johan Hedbergbbaf4442012-11-08 01:22:59 +01002121 hdev->inq_tx_power = HCI_TX_POWER_INVALID;
2122 hdev->adv_tx_power = HCI_TX_POWER_INVALID;
David Herrmannb1b813d2012-04-22 14:39:58 +02002123
David Herrmannb1b813d2012-04-22 14:39:58 +02002124 hdev->sniff_max_interval = 800;
2125 hdev->sniff_min_interval = 80;
2126
2127 mutex_init(&hdev->lock);
2128 mutex_init(&hdev->req_lock);
2129
2130 INIT_LIST_HEAD(&hdev->mgmt_pending);
2131 INIT_LIST_HEAD(&hdev->blacklist);
2132 INIT_LIST_HEAD(&hdev->uuids);
2133 INIT_LIST_HEAD(&hdev->link_keys);
2134 INIT_LIST_HEAD(&hdev->long_term_keys);
2135 INIT_LIST_HEAD(&hdev->remote_oob_data);
Andrei Emeltchenko6b536b52012-08-31 16:39:28 +03002136 INIT_LIST_HEAD(&hdev->conn_hash.list);
David Herrmannb1b813d2012-04-22 14:39:58 +02002137
2138 INIT_WORK(&hdev->rx_work, hci_rx_work);
2139 INIT_WORK(&hdev->cmd_work, hci_cmd_work);
2140 INIT_WORK(&hdev->tx_work, hci_tx_work);
2141 INIT_WORK(&hdev->power_on, hci_power_on);
2142 INIT_WORK(&hdev->le_scan, le_scan_work);
2143
David Herrmannb1b813d2012-04-22 14:39:58 +02002144 INIT_DELAYED_WORK(&hdev->power_off, hci_power_off);
2145 INIT_DELAYED_WORK(&hdev->discov_off, hci_discov_off);
2146 INIT_DELAYED_WORK(&hdev->le_scan_disable, le_scan_disable_work);
2147
David Herrmannb1b813d2012-04-22 14:39:58 +02002148 skb_queue_head_init(&hdev->rx_q);
2149 skb_queue_head_init(&hdev->cmd_q);
2150 skb_queue_head_init(&hdev->raw_q);
2151
2152 init_waitqueue_head(&hdev->req_wait_q);
2153
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03002154 setup_timer(&hdev->cmd_timer, hci_cmd_timeout, (unsigned long) hdev);
David Herrmannb1b813d2012-04-22 14:39:58 +02002155
David Herrmannb1b813d2012-04-22 14:39:58 +02002156 hci_init_sysfs(hdev);
2157 discovery_init(hdev);
David Herrmann9be0dab2012-04-22 14:39:57 +02002158
2159 return hdev;
2160}
2161EXPORT_SYMBOL(hci_alloc_dev);
2162
2163/* Free HCI device */
2164void hci_free_dev(struct hci_dev *hdev)
2165{
David Herrmann9be0dab2012-04-22 14:39:57 +02002166 /* will free via device release */
2167 put_device(&hdev->dev);
2168}
2169EXPORT_SYMBOL(hci_free_dev);
2170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171/* Register HCI device */
2172int hci_register_dev(struct hci_dev *hdev)
2173{
David Herrmannb1b813d2012-04-22 14:39:58 +02002174 int id, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
David Herrmann010666a2012-01-07 15:47:07 +01002176 if (!hdev->open || !hdev->close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 return -EINVAL;
2178
Mat Martineau08add512011-11-02 16:18:36 -07002179 /* Do not allow HCI_AMP devices to register at index 0,
2180 * so the index can be used as the AMP controller ID.
2181 */
Sasha Levin3df92b32012-05-27 22:36:56 +02002182 switch (hdev->dev_type) {
2183 case HCI_BREDR:
2184 id = ida_simple_get(&hci_index_ida, 0, 0, GFP_KERNEL);
2185 break;
2186 case HCI_AMP:
2187 id = ida_simple_get(&hci_index_ida, 1, 0, GFP_KERNEL);
2188 break;
2189 default:
2190 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 }
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002192
Sasha Levin3df92b32012-05-27 22:36:56 +02002193 if (id < 0)
2194 return id;
2195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 sprintf(hdev->name, "hci%d", id);
2197 hdev->id = id;
Andrei Emeltchenko2d8b3a12012-04-16 16:32:04 +03002198
2199 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
2200
Sasha Levin3df92b32012-05-27 22:36:56 +02002201 write_lock(&hci_dev_list_lock);
2202 list_add(&hdev->list, &hci_dev_list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002203 write_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Gustavo F. Padovan32845eb2011-12-17 17:47:30 -02002205 hdev->workqueue = alloc_workqueue(hdev->name, WQ_HIGHPRI | WQ_UNBOUND |
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002206 WQ_MEM_RECLAIM, 1);
David Herrmann33ca9542011-10-08 14:58:49 +02002207 if (!hdev->workqueue) {
2208 error = -ENOMEM;
2209 goto err;
2210 }
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002211
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02002212 hdev->req_workqueue = alloc_workqueue(hdev->name,
2213 WQ_HIGHPRI | WQ_UNBOUND |
2214 WQ_MEM_RECLAIM, 1);
2215 if (!hdev->req_workqueue) {
2216 destroy_workqueue(hdev->workqueue);
2217 error = -ENOMEM;
2218 goto err;
2219 }
2220
David Herrmann33ca9542011-10-08 14:58:49 +02002221 error = hci_add_sysfs(hdev);
2222 if (error < 0)
2223 goto err_wqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Marcel Holtmann611b30f2009-06-08 14:41:38 +02002225 hdev->rfkill = rfkill_alloc(hdev->name, &hdev->dev,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002226 RFKILL_TYPE_BLUETOOTH, &hci_rfkill_ops,
2227 hdev);
Marcel Holtmann611b30f2009-06-08 14:41:38 +02002228 if (hdev->rfkill) {
2229 if (rfkill_register(hdev->rfkill) < 0) {
2230 rfkill_destroy(hdev->rfkill);
2231 hdev->rfkill = NULL;
2232 }
2233 }
2234
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002235 set_bit(HCI_SETUP, &hdev->dev_flags);
Andrei Emeltchenkoce2be9a2012-06-29 15:07:00 +03002236
2237 if (hdev->dev_type != HCI_AMP)
2238 set_bit(HCI_AUTO_OFF, &hdev->dev_flags);
2239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 hci_notify(hdev, HCI_DEV_REG);
David Herrmanndc946bd2012-01-07 15:47:24 +01002241 hci_dev_hold(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Johan Hedberg19202572013-01-14 22:33:51 +02002243 queue_work(hdev->req_workqueue, &hdev->power_on);
Marcel Holtmannfbe96d62012-10-30 01:35:40 -07002244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 return id;
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002246
David Herrmann33ca9542011-10-08 14:58:49 +02002247err_wqueue:
2248 destroy_workqueue(hdev->workqueue);
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02002249 destroy_workqueue(hdev->req_workqueue);
David Herrmann33ca9542011-10-08 14:58:49 +02002250err:
Sasha Levin3df92b32012-05-27 22:36:56 +02002251 ida_simple_remove(&hci_index_ida, hdev->id);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002252 write_lock(&hci_dev_list_lock);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002253 list_del(&hdev->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002254 write_unlock(&hci_dev_list_lock);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002255
David Herrmann33ca9542011-10-08 14:58:49 +02002256 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257}
2258EXPORT_SYMBOL(hci_register_dev);
2259
2260/* Unregister HCI device */
David Herrmann59735632011-10-26 10:43:19 +02002261void hci_unregister_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262{
Sasha Levin3df92b32012-05-27 22:36:56 +02002263 int i, id;
Marcel Holtmannef222012007-07-11 06:42:04 +02002264
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002265 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Johan Hovold94324962012-03-15 14:48:41 +01002267 set_bit(HCI_UNREGISTER, &hdev->dev_flags);
2268
Sasha Levin3df92b32012-05-27 22:36:56 +02002269 id = hdev->id;
2270
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002271 write_lock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 list_del(&hdev->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002273 write_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 hci_dev_do_close(hdev);
2276
Suraj Sumangalacd4c5392010-07-14 13:02:16 +05302277 for (i = 0; i < NUM_REASSEMBLY; i++)
Marcel Holtmannef222012007-07-11 06:42:04 +02002278 kfree_skb(hdev->reassembly[i]);
2279
Gustavo Padovanb9b5ef12012-11-21 00:50:21 -02002280 cancel_work_sync(&hdev->power_on);
2281
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002282 if (!test_bit(HCI_INIT, &hdev->flags) &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002283 !test_bit(HCI_SETUP, &hdev->dev_flags)) {
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002284 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02002285 mgmt_index_removed(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002286 hci_dev_unlock(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02002287 }
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002288
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002289 /* mgmt_index_removed should take care of emptying the
2290 * pending list */
2291 BUG_ON(!list_empty(&hdev->mgmt_pending));
2292
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 hci_notify(hdev, HCI_DEV_UNREG);
2294
Marcel Holtmann611b30f2009-06-08 14:41:38 +02002295 if (hdev->rfkill) {
2296 rfkill_unregister(hdev->rfkill);
2297 rfkill_destroy(hdev->rfkill);
2298 }
2299
David Herrmannce242972011-10-08 14:58:48 +02002300 hci_del_sysfs(hdev);
Dave Young147e2d52008-03-05 18:45:59 -08002301
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002302 destroy_workqueue(hdev->workqueue);
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02002303 destroy_workqueue(hdev->req_workqueue);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01002304
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002305 hci_dev_lock(hdev);
Johan Hedberge2e0cac2011-01-04 12:08:50 +02002306 hci_blacklist_clear(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002307 hci_uuids_clear(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002308 hci_link_keys_clear(hdev);
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03002309 hci_smp_ltks_clear(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01002310 hci_remote_oob_data_clear(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002311 hci_dev_unlock(hdev);
Johan Hedberge2e0cac2011-01-04 12:08:50 +02002312
David Herrmanndc946bd2012-01-07 15:47:24 +01002313 hci_dev_put(hdev);
Sasha Levin3df92b32012-05-27 22:36:56 +02002314
2315 ida_simple_remove(&hci_index_ida, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316}
2317EXPORT_SYMBOL(hci_unregister_dev);
2318
2319/* Suspend HCI device */
2320int hci_suspend_dev(struct hci_dev *hdev)
2321{
2322 hci_notify(hdev, HCI_DEV_SUSPEND);
2323 return 0;
2324}
2325EXPORT_SYMBOL(hci_suspend_dev);
2326
2327/* Resume HCI device */
2328int hci_resume_dev(struct hci_dev *hdev)
2329{
2330 hci_notify(hdev, HCI_DEV_RESUME);
2331 return 0;
2332}
2333EXPORT_SYMBOL(hci_resume_dev);
2334
Marcel Holtmann76bca882009-11-18 00:40:39 +01002335/* Receive frame from HCI drivers */
2336int hci_recv_frame(struct sk_buff *skb)
2337{
2338 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
2339 if (!hdev || (!test_bit(HCI_UP, &hdev->flags)
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002340 && !test_bit(HCI_INIT, &hdev->flags))) {
Marcel Holtmann76bca882009-11-18 00:40:39 +01002341 kfree_skb(skb);
2342 return -ENXIO;
2343 }
2344
Jorrit Schippersd82603c2012-12-27 17:33:02 +01002345 /* Incoming skb */
Marcel Holtmann76bca882009-11-18 00:40:39 +01002346 bt_cb(skb)->incoming = 1;
2347
2348 /* Time stamp */
2349 __net_timestamp(skb);
2350
Marcel Holtmann76bca882009-11-18 00:40:39 +01002351 skb_queue_tail(&hdev->rx_q, skb);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04002352 queue_work(hdev->workqueue, &hdev->rx_work);
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002353
Marcel Holtmann76bca882009-11-18 00:40:39 +01002354 return 0;
2355}
2356EXPORT_SYMBOL(hci_recv_frame);
2357
Suraj Sumangala33e882a2010-07-14 13:02:17 +05302358static int hci_reassembly(struct hci_dev *hdev, int type, void *data,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002359 int count, __u8 index)
Suraj Sumangala33e882a2010-07-14 13:02:17 +05302360{
2361 int len = 0;
2362 int hlen = 0;
2363 int remain = count;
2364 struct sk_buff *skb;
2365 struct bt_skb_cb *scb;
2366
2367 if ((type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT) ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002368 index >= NUM_REASSEMBLY)
Suraj Sumangala33e882a2010-07-14 13:02:17 +05302369 return -EILSEQ;
2370
2371 skb = hdev->reassembly[index];
2372
2373 if (!skb) {
2374 switch (type) {
2375 case HCI_ACLDATA_PKT:
2376 len = HCI_MAX_FRAME_SIZE;
2377 hlen = HCI_ACL_HDR_SIZE;
2378 break;
2379 case HCI_EVENT_PKT:
2380 len = HCI_MAX_EVENT_SIZE;
2381 hlen = HCI_EVENT_HDR_SIZE;
2382 break;
2383 case HCI_SCODATA_PKT:
2384 len = HCI_MAX_SCO_SIZE;
2385 hlen = HCI_SCO_HDR_SIZE;
2386 break;
2387 }
2388
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03002389 skb = bt_skb_alloc(len, GFP_ATOMIC);
Suraj Sumangala33e882a2010-07-14 13:02:17 +05302390 if (!skb)
2391 return -ENOMEM;
2392
2393 scb = (void *) skb->cb;
2394 scb->expect = hlen;
2395 scb->pkt_type = type;
2396
2397 skb->dev = (void *) hdev;
2398 hdev->reassembly[index] = skb;
2399 }
2400
2401 while (count) {
2402 scb = (void *) skb->cb;
Dan Carpenter89bb46d2012-02-28 09:57:59 +03002403 len = min_t(uint, scb->expect, count);
Suraj Sumangala33e882a2010-07-14 13:02:17 +05302404
2405 memcpy(skb_put(skb, len), data, len);
2406
2407 count -= len;
2408 data += len;
2409 scb->expect -= len;
2410 remain = count;
2411
2412 switch (type) {
2413 case HCI_EVENT_PKT:
2414 if (skb->len == HCI_EVENT_HDR_SIZE) {
2415 struct hci_event_hdr *h = hci_event_hdr(skb);
2416 scb->expect = h->plen;
2417
2418 if (skb_tailroom(skb) < scb->expect) {
2419 kfree_skb(skb);
2420 hdev->reassembly[index] = NULL;
2421 return -ENOMEM;
2422 }
2423 }
2424 break;
2425
2426 case HCI_ACLDATA_PKT:
2427 if (skb->len == HCI_ACL_HDR_SIZE) {
2428 struct hci_acl_hdr *h = hci_acl_hdr(skb);
2429 scb->expect = __le16_to_cpu(h->dlen);
2430
2431 if (skb_tailroom(skb) < scb->expect) {
2432 kfree_skb(skb);
2433 hdev->reassembly[index] = NULL;
2434 return -ENOMEM;
2435 }
2436 }
2437 break;
2438
2439 case HCI_SCODATA_PKT:
2440 if (skb->len == HCI_SCO_HDR_SIZE) {
2441 struct hci_sco_hdr *h = hci_sco_hdr(skb);
2442 scb->expect = h->dlen;
2443
2444 if (skb_tailroom(skb) < scb->expect) {
2445 kfree_skb(skb);
2446 hdev->reassembly[index] = NULL;
2447 return -ENOMEM;
2448 }
2449 }
2450 break;
2451 }
2452
2453 if (scb->expect == 0) {
2454 /* Complete frame */
2455
2456 bt_cb(skb)->pkt_type = type;
2457 hci_recv_frame(skb);
2458
2459 hdev->reassembly[index] = NULL;
2460 return remain;
2461 }
2462 }
2463
2464 return remain;
2465}
2466
Marcel Holtmannef222012007-07-11 06:42:04 +02002467int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count)
2468{
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302469 int rem = 0;
2470
Marcel Holtmannef222012007-07-11 06:42:04 +02002471 if (type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT)
2472 return -EILSEQ;
2473
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03002474 while (count) {
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03002475 rem = hci_reassembly(hdev, type, data, count, type - 1);
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302476 if (rem < 0)
2477 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02002478
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302479 data += (count - rem);
2480 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00002481 }
Marcel Holtmannef222012007-07-11 06:42:04 +02002482
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302483 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02002484}
2485EXPORT_SYMBOL(hci_recv_fragment);
2486
Suraj Sumangala99811512010-07-14 13:02:19 +05302487#define STREAM_REASSEMBLY 0
2488
2489int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count)
2490{
2491 int type;
2492 int rem = 0;
2493
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03002494 while (count) {
Suraj Sumangala99811512010-07-14 13:02:19 +05302495 struct sk_buff *skb = hdev->reassembly[STREAM_REASSEMBLY];
2496
2497 if (!skb) {
2498 struct { char type; } *pkt;
2499
2500 /* Start of the frame */
2501 pkt = data;
2502 type = pkt->type;
2503
2504 data++;
2505 count--;
2506 } else
2507 type = bt_cb(skb)->pkt_type;
2508
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03002509 rem = hci_reassembly(hdev, type, data, count,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002510 STREAM_REASSEMBLY);
Suraj Sumangala99811512010-07-14 13:02:19 +05302511 if (rem < 0)
2512 return rem;
2513
2514 data += (count - rem);
2515 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00002516 }
Suraj Sumangala99811512010-07-14 13:02:19 +05302517
2518 return rem;
2519}
2520EXPORT_SYMBOL(hci_recv_stream_fragment);
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522/* ---- Interface to upper protocols ---- */
2523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524int hci_register_cb(struct hci_cb *cb)
2525{
2526 BT_DBG("%p name %s", cb, cb->name);
2527
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002528 write_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 list_add(&cb->list, &hci_cb_list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002530 write_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
2532 return 0;
2533}
2534EXPORT_SYMBOL(hci_register_cb);
2535
2536int hci_unregister_cb(struct hci_cb *cb)
2537{
2538 BT_DBG("%p name %s", cb, cb->name);
2539
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002540 write_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 list_del(&cb->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002542 write_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
2544 return 0;
2545}
2546EXPORT_SYMBOL(hci_unregister_cb);
2547
2548static int hci_send_frame(struct sk_buff *skb)
2549{
2550 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
2551
2552 if (!hdev) {
2553 kfree_skb(skb);
2554 return -ENODEV;
2555 }
2556
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002557 BT_DBG("%s type %d len %d", hdev->name, bt_cb(skb)->pkt_type, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Marcel Holtmanncd82e612012-02-20 20:34:38 +01002559 /* Time stamp */
2560 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
Marcel Holtmanncd82e612012-02-20 20:34:38 +01002562 /* Send copy to monitor */
2563 hci_send_to_monitor(hdev, skb);
2564
2565 if (atomic_read(&hdev->promisc)) {
2566 /* Send copy to the sockets */
Marcel Holtmann470fe1b2012-02-20 14:50:30 +01002567 hci_send_to_sock(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 }
2569
2570 /* Get rid of skb owner, prior to sending to the driver. */
2571 skb_orphan(skb);
2572
2573 return hdev->send(skb);
2574}
2575
Johan Hedberg3119ae92013-03-05 20:37:44 +02002576void hci_req_init(struct hci_request *req, struct hci_dev *hdev)
2577{
2578 skb_queue_head_init(&req->cmd_q);
2579 req->hdev = hdev;
Andre Guedes5d73e032013-03-08 11:20:16 -03002580 req->err = 0;
Johan Hedberg3119ae92013-03-05 20:37:44 +02002581}
2582
2583int hci_req_run(struct hci_request *req, hci_req_complete_t complete)
2584{
2585 struct hci_dev *hdev = req->hdev;
2586 struct sk_buff *skb;
2587 unsigned long flags;
2588
2589 BT_DBG("length %u", skb_queue_len(&req->cmd_q));
2590
Andre Guedes5d73e032013-03-08 11:20:16 -03002591 /* If an error occured during request building, remove all HCI
2592 * commands queued on the HCI request queue.
2593 */
2594 if (req->err) {
2595 skb_queue_purge(&req->cmd_q);
2596 return req->err;
2597 }
2598
Johan Hedberg3119ae92013-03-05 20:37:44 +02002599 /* Do not allow empty requests */
2600 if (skb_queue_empty(&req->cmd_q))
Andre Guedes382b0c32013-03-08 11:20:14 -03002601 return -ENODATA;
Johan Hedberg3119ae92013-03-05 20:37:44 +02002602
2603 skb = skb_peek_tail(&req->cmd_q);
2604 bt_cb(skb)->req.complete = complete;
2605
2606 spin_lock_irqsave(&hdev->cmd_q.lock, flags);
2607 skb_queue_splice_tail(&req->cmd_q, &hdev->cmd_q);
2608 spin_unlock_irqrestore(&hdev->cmd_q.lock, flags);
2609
2610 queue_work(hdev->workqueue, &hdev->cmd_work);
2611
2612 return 0;
2613}
2614
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02002615static struct sk_buff *hci_prepare_cmd(struct hci_dev *hdev, u16 opcode,
Johan Hedberg07dc93d2013-04-19 10:14:51 +03002616 u32 plen, const void *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617{
2618 int len = HCI_COMMAND_HDR_SIZE + plen;
2619 struct hci_command_hdr *hdr;
2620 struct sk_buff *skb;
2621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 skb = bt_skb_alloc(len, GFP_ATOMIC);
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02002623 if (!skb)
2624 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
2626 hdr = (struct hci_command_hdr *) skb_put(skb, HCI_COMMAND_HDR_SIZE);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002627 hdr->opcode = cpu_to_le16(opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 hdr->plen = plen;
2629
2630 if (plen)
2631 memcpy(skb_put(skb, plen), param, plen);
2632
2633 BT_DBG("skb len %d", skb->len);
2634
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002635 bt_cb(skb)->pkt_type = HCI_COMMAND_PKT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 skb->dev = (void *) hdev;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002637
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02002638 return skb;
2639}
2640
2641/* Send HCI command */
Johan Hedberg07dc93d2013-04-19 10:14:51 +03002642int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen,
2643 const void *param)
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02002644{
2645 struct sk_buff *skb;
2646
2647 BT_DBG("%s opcode 0x%4.4x plen %d", hdev->name, opcode, plen);
2648
2649 skb = hci_prepare_cmd(hdev, opcode, plen, param);
2650 if (!skb) {
2651 BT_ERR("%s no memory for command", hdev->name);
2652 return -ENOMEM;
2653 }
2654
Johan Hedberg11714b32013-03-05 20:37:47 +02002655 /* Stand-alone HCI commands must be flaged as
2656 * single-command requests.
2657 */
2658 bt_cb(skb)->req.start = true;
2659
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 skb_queue_tail(&hdev->cmd_q, skb);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002661 queue_work(hdev->workqueue, &hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663 return 0;
2664}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
Johan Hedberg71c76a12013-03-05 20:37:46 +02002666/* Queue a command to an asynchronous HCI request */
Johan Hedberg07dc93d2013-04-19 10:14:51 +03002667void hci_req_add_ev(struct hci_request *req, u16 opcode, u32 plen,
2668 const void *param, u8 event)
Johan Hedberg71c76a12013-03-05 20:37:46 +02002669{
2670 struct hci_dev *hdev = req->hdev;
2671 struct sk_buff *skb;
2672
2673 BT_DBG("%s opcode 0x%4.4x plen %d", hdev->name, opcode, plen);
2674
Andre Guedes34739c12013-03-08 11:20:18 -03002675 /* If an error occured during request building, there is no point in
2676 * queueing the HCI command. We can simply return.
2677 */
2678 if (req->err)
2679 return;
2680
Johan Hedberg71c76a12013-03-05 20:37:46 +02002681 skb = hci_prepare_cmd(hdev, opcode, plen, param);
2682 if (!skb) {
Andre Guedes5d73e032013-03-08 11:20:16 -03002683 BT_ERR("%s no memory for command (opcode 0x%4.4x)",
2684 hdev->name, opcode);
2685 req->err = -ENOMEM;
Andre Guedese348fe62013-03-08 11:20:17 -03002686 return;
Johan Hedberg71c76a12013-03-05 20:37:46 +02002687 }
2688
2689 if (skb_queue_empty(&req->cmd_q))
2690 bt_cb(skb)->req.start = true;
2691
Johan Hedberg02350a72013-04-03 21:50:29 +03002692 bt_cb(skb)->req.event = event;
2693
Johan Hedberg71c76a12013-03-05 20:37:46 +02002694 skb_queue_tail(&req->cmd_q, skb);
Johan Hedberg71c76a12013-03-05 20:37:46 +02002695}
2696
Johan Hedberg07dc93d2013-04-19 10:14:51 +03002697void hci_req_add(struct hci_request *req, u16 opcode, u32 plen,
2698 const void *param)
Johan Hedberg02350a72013-04-03 21:50:29 +03002699{
2700 hci_req_add_ev(req, opcode, plen, param, 0);
2701}
2702
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703/* Get data from the previously sent command */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002704void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705{
2706 struct hci_command_hdr *hdr;
2707
2708 if (!hdev->sent_cmd)
2709 return NULL;
2710
2711 hdr = (void *) hdev->sent_cmd->data;
2712
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002713 if (hdr->opcode != cpu_to_le16(opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 return NULL;
2715
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03002716 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
2718 return hdev->sent_cmd->data + HCI_COMMAND_HDR_SIZE;
2719}
2720
2721/* Send ACL data */
2722static void hci_add_acl_hdr(struct sk_buff *skb, __u16 handle, __u16 flags)
2723{
2724 struct hci_acl_hdr *hdr;
2725 int len = skb->len;
2726
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002727 skb_push(skb, HCI_ACL_HDR_SIZE);
2728 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002729 hdr = (struct hci_acl_hdr *)skb_transport_header(skb);
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07002730 hdr->handle = cpu_to_le16(hci_handle_pack(handle, flags));
2731 hdr->dlen = cpu_to_le16(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732}
2733
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002734static void hci_queue_acl(struct hci_chan *chan, struct sk_buff_head *queue,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002735 struct sk_buff *skb, __u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002737 struct hci_conn *conn = chan->conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 struct hci_dev *hdev = conn->hdev;
2739 struct sk_buff *list;
2740
Gustavo Padovan087bfd92012-05-11 13:16:11 -03002741 skb->len = skb_headlen(skb);
2742 skb->data_len = 0;
2743
2744 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
Andrei Emeltchenko204a6e52012-10-15 11:58:39 +03002745
2746 switch (hdev->dev_type) {
2747 case HCI_BREDR:
2748 hci_add_acl_hdr(skb, conn->handle, flags);
2749 break;
2750 case HCI_AMP:
2751 hci_add_acl_hdr(skb, chan->handle, flags);
2752 break;
2753 default:
2754 BT_ERR("%s unknown dev_type %d", hdev->name, hdev->dev_type);
2755 return;
2756 }
Gustavo Padovan087bfd92012-05-11 13:16:11 -03002757
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002758 list = skb_shinfo(skb)->frag_list;
2759 if (!list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 /* Non fragmented */
2761 BT_DBG("%s nonfrag skb %p len %d", hdev->name, skb, skb->len);
2762
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002763 skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 } else {
2765 /* Fragmented */
2766 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
2767
2768 skb_shinfo(skb)->frag_list = NULL;
2769
2770 /* Queue all fragments atomically */
Gustavo F. Padovanaf3e6352011-12-22 16:35:05 -02002771 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002773 __skb_queue_tail(queue, skb);
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02002774
2775 flags &= ~ACL_START;
2776 flags |= ACL_CONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 do {
2778 skb = list; list = list->next;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 skb->dev = (void *) hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002781 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02002782 hci_add_acl_hdr(skb, conn->handle, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
2785
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002786 __skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 } while (list);
2788
Gustavo F. Padovanaf3e6352011-12-22 16:35:05 -02002789 spin_unlock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002791}
2792
2793void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags)
2794{
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002795 struct hci_dev *hdev = chan->conn->hdev;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002796
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03002797 BT_DBG("%s chan %p flags 0x%4.4x", hdev->name, chan, flags);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002798
2799 skb->dev = (void *) hdev;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002800
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002801 hci_queue_acl(chan, &chan->data_q, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
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/* Send SCO data */
Gustavo F. Padovan0d861d82010-05-01 16:15:35 -03002807void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808{
2809 struct hci_dev *hdev = conn->hdev;
2810 struct hci_sco_hdr hdr;
2811
2812 BT_DBG("%s len %d", hdev->name, skb->len);
2813
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07002814 hdr.handle = cpu_to_le16(conn->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 hdr.dlen = skb->len;
2816
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002817 skb_push(skb, HCI_SCO_HDR_SIZE);
2818 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002819 memcpy(skb_transport_header(skb), &hdr, HCI_SCO_HDR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
2821 skb->dev = (void *) hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002822 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002823
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 skb_queue_tail(&conn->data_q, skb);
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002825 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828/* ---- HCI TX task (outgoing data) ---- */
2829
2830/* HCI Connection scheduler */
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002831static struct hci_conn *hci_low_sent(struct hci_dev *hdev, __u8 type,
2832 int *quote)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833{
2834 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002835 struct hci_conn *conn = NULL, *c;
Mikel Astizabc5de82012-04-11 08:48:47 +02002836 unsigned int num = 0, min = ~0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002838 /* We don't have to lock device here. Connections are always
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 * added and removed with TX task disabled. */
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002840
2841 rcu_read_lock();
2842
2843 list_for_each_entry_rcu(c, &h->list, list) {
Marcel Holtmann769be972008-07-14 20:13:49 +02002844 if (c->type != type || skb_queue_empty(&c->data_q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 continue;
Marcel Holtmann769be972008-07-14 20:13:49 +02002846
2847 if (c->state != BT_CONNECTED && c->state != BT_CONFIG)
2848 continue;
2849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 num++;
2851
2852 if (c->sent < min) {
2853 min = c->sent;
2854 conn = c;
2855 }
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002856
2857 if (hci_conn_num(hdev, type) == num)
2858 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 }
2860
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002861 rcu_read_unlock();
2862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 if (conn) {
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002864 int cnt, q;
2865
2866 switch (conn->type) {
2867 case ACL_LINK:
2868 cnt = hdev->acl_cnt;
2869 break;
2870 case SCO_LINK:
2871 case ESCO_LINK:
2872 cnt = hdev->sco_cnt;
2873 break;
2874 case LE_LINK:
2875 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
2876 break;
2877 default:
2878 cnt = 0;
2879 BT_ERR("Unknown link type");
2880 }
2881
2882 q = cnt / num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 *quote = q ? q : 1;
2884 } else
2885 *quote = 0;
2886
2887 BT_DBG("conn %p quote %d", conn, *quote);
2888 return conn;
2889}
2890
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002891static void hci_link_tx_to(struct hci_dev *hdev, __u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892{
2893 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002894 struct hci_conn *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
Ville Tervobae1f5d92011-02-10 22:38:53 -03002896 BT_ERR("%s link tx timeout", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002898 rcu_read_lock();
2899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 /* Kill stalled connections */
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002901 list_for_each_entry_rcu(c, &h->list, list) {
Ville Tervobae1f5d92011-02-10 22:38:53 -03002902 if (c->type == type && c->sent) {
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03002903 BT_ERR("%s killing stalled connection %pMR",
2904 hdev->name, &c->dst);
Andre Guedesbed71742013-01-30 11:50:56 -03002905 hci_disconnect(c, HCI_ERROR_REMOTE_USER_TERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 }
2907 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002908
2909 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910}
2911
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002912static struct hci_chan *hci_chan_sent(struct hci_dev *hdev, __u8 type,
2913 int *quote)
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002914{
2915 struct hci_conn_hash *h = &hdev->conn_hash;
2916 struct hci_chan *chan = NULL;
Mikel Astizabc5de82012-04-11 08:48:47 +02002917 unsigned int num = 0, min = ~0, cur_prio = 0;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002918 struct hci_conn *conn;
2919 int cnt, q, conn_num = 0;
2920
2921 BT_DBG("%s", hdev->name);
2922
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002923 rcu_read_lock();
2924
2925 list_for_each_entry_rcu(conn, &h->list, list) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002926 struct hci_chan *tmp;
2927
2928 if (conn->type != type)
2929 continue;
2930
2931 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
2932 continue;
2933
2934 conn_num++;
2935
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -02002936 list_for_each_entry_rcu(tmp, &conn->chan_list, list) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002937 struct sk_buff *skb;
2938
2939 if (skb_queue_empty(&tmp->data_q))
2940 continue;
2941
2942 skb = skb_peek(&tmp->data_q);
2943 if (skb->priority < cur_prio)
2944 continue;
2945
2946 if (skb->priority > cur_prio) {
2947 num = 0;
2948 min = ~0;
2949 cur_prio = skb->priority;
2950 }
2951
2952 num++;
2953
2954 if (conn->sent < min) {
2955 min = conn->sent;
2956 chan = tmp;
2957 }
2958 }
2959
2960 if (hci_conn_num(hdev, type) == conn_num)
2961 break;
2962 }
2963
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002964 rcu_read_unlock();
2965
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002966 if (!chan)
2967 return NULL;
2968
2969 switch (chan->conn->type) {
2970 case ACL_LINK:
2971 cnt = hdev->acl_cnt;
2972 break;
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03002973 case AMP_LINK:
2974 cnt = hdev->block_cnt;
2975 break;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002976 case SCO_LINK:
2977 case ESCO_LINK:
2978 cnt = hdev->sco_cnt;
2979 break;
2980 case LE_LINK:
2981 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
2982 break;
2983 default:
2984 cnt = 0;
2985 BT_ERR("Unknown link type");
2986 }
2987
2988 q = cnt / num;
2989 *quote = q ? q : 1;
2990 BT_DBG("chan %p quote %d", chan, *quote);
2991 return chan;
2992}
2993
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002994static void hci_prio_recalculate(struct hci_dev *hdev, __u8 type)
2995{
2996 struct hci_conn_hash *h = &hdev->conn_hash;
2997 struct hci_conn *conn;
2998 int num = 0;
2999
3000 BT_DBG("%s", hdev->name);
3001
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02003002 rcu_read_lock();
3003
3004 list_for_each_entry_rcu(conn, &h->list, list) {
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003005 struct hci_chan *chan;
3006
3007 if (conn->type != type)
3008 continue;
3009
3010 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
3011 continue;
3012
3013 num++;
3014
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -02003015 list_for_each_entry_rcu(chan, &conn->chan_list, list) {
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003016 struct sk_buff *skb;
3017
3018 if (chan->sent) {
3019 chan->sent = 0;
3020 continue;
3021 }
3022
3023 if (skb_queue_empty(&chan->data_q))
3024 continue;
3025
3026 skb = skb_peek(&chan->data_q);
3027 if (skb->priority >= HCI_PRIO_MAX - 1)
3028 continue;
3029
3030 skb->priority = HCI_PRIO_MAX - 1;
3031
3032 BT_DBG("chan %p skb %p promoted to %d", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003033 skb->priority);
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003034 }
3035
3036 if (hci_conn_num(hdev, type) == num)
3037 break;
3038 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02003039
3040 rcu_read_unlock();
3041
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003042}
3043
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003044static inline int __get_blocks(struct hci_dev *hdev, struct sk_buff *skb)
3045{
3046 /* Calculate count of blocks used by this packet */
3047 return DIV_ROUND_UP(skb->len - HCI_ACL_HDR_SIZE, hdev->block_len);
3048}
3049
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003050static void __check_timeout(struct hci_dev *hdev, unsigned int cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 if (!test_bit(HCI_RAW, &hdev->flags)) {
3053 /* ACL tx timeout must be longer than maximum
3054 * link supervision timeout (40.9 seconds) */
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02003055 if (!cnt && time_after(jiffies, hdev->acl_last_tx +
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +03003056 HCI_ACL_TX_TIMEOUT))
Ville Tervobae1f5d92011-02-10 22:38:53 -03003057 hci_link_tx_to(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 }
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02003059}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003061static void hci_sched_acl_pkt(struct hci_dev *hdev)
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02003062{
3063 unsigned int cnt = hdev->acl_cnt;
3064 struct hci_chan *chan;
3065 struct sk_buff *skb;
3066 int quote;
3067
3068 __check_timeout(hdev, cnt);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003069
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003070 while (hdev->acl_cnt &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003071 (chan = hci_chan_sent(hdev, ACL_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02003072 u32 priority = (skb_peek(&chan->data_q))->priority;
3073 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003074 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003075 skb->len, skb->priority);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003076
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02003077 /* Stop if priority has changed */
3078 if (skb->priority < priority)
3079 break;
3080
3081 skb = skb_dequeue(&chan->data_q);
3082
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003083 hci_conn_enter_active_mode(chan->conn,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003084 bt_cb(skb)->force_active);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 hci_send_frame(skb);
3087 hdev->acl_last_tx = jiffies;
3088
3089 hdev->acl_cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003090 chan->sent++;
3091 chan->conn->sent++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 }
3093 }
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003094
3095 if (cnt != hdev->acl_cnt)
3096 hci_prio_recalculate(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097}
3098
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003099static void hci_sched_acl_blk(struct hci_dev *hdev)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003100{
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02003101 unsigned int cnt = hdev->block_cnt;
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003102 struct hci_chan *chan;
3103 struct sk_buff *skb;
3104 int quote;
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03003105 u8 type;
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003106
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02003107 __check_timeout(hdev, cnt);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003108
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03003109 BT_DBG("%s", hdev->name);
3110
3111 if (hdev->dev_type == HCI_AMP)
3112 type = AMP_LINK;
3113 else
3114 type = ACL_LINK;
3115
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003116 while (hdev->block_cnt > 0 &&
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03003117 (chan = hci_chan_sent(hdev, type, &quote))) {
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003118 u32 priority = (skb_peek(&chan->data_q))->priority;
3119 while (quote > 0 && (skb = skb_peek(&chan->data_q))) {
3120 int blocks;
3121
3122 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003123 skb->len, skb->priority);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003124
3125 /* Stop if priority has changed */
3126 if (skb->priority < priority)
3127 break;
3128
3129 skb = skb_dequeue(&chan->data_q);
3130
3131 blocks = __get_blocks(hdev, skb);
3132 if (blocks > hdev->block_cnt)
3133 return;
3134
3135 hci_conn_enter_active_mode(chan->conn,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003136 bt_cb(skb)->force_active);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003137
3138 hci_send_frame(skb);
3139 hdev->acl_last_tx = jiffies;
3140
3141 hdev->block_cnt -= blocks;
3142 quote -= blocks;
3143
3144 chan->sent += blocks;
3145 chan->conn->sent += blocks;
3146 }
3147 }
3148
3149 if (cnt != hdev->block_cnt)
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03003150 hci_prio_recalculate(hdev, type);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003151}
3152
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003153static void hci_sched_acl(struct hci_dev *hdev)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003154{
3155 BT_DBG("%s", hdev->name);
3156
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03003157 /* No ACL link over BR/EDR controller */
3158 if (!hci_conn_num(hdev, ACL_LINK) && hdev->dev_type == HCI_BREDR)
3159 return;
3160
3161 /* No AMP link over AMP controller */
3162 if (!hci_conn_num(hdev, AMP_LINK) && hdev->dev_type == HCI_AMP)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02003163 return;
3164
3165 switch (hdev->flow_ctl_mode) {
3166 case HCI_FLOW_CTL_MODE_PACKET_BASED:
3167 hci_sched_acl_pkt(hdev);
3168 break;
3169
3170 case HCI_FLOW_CTL_MODE_BLOCK_BASED:
3171 hci_sched_acl_blk(hdev);
3172 break;
3173 }
3174}
3175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176/* Schedule SCO */
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003177static void hci_sched_sco(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178{
3179 struct hci_conn *conn;
3180 struct sk_buff *skb;
3181 int quote;
3182
3183 BT_DBG("%s", hdev->name);
3184
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03003185 if (!hci_conn_num(hdev, SCO_LINK))
3186 return;
3187
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, SCO_LINK, &quote))) {
3189 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
3190 BT_DBG("skb %p len %d", skb, skb->len);
3191 hci_send_frame(skb);
3192
3193 conn->sent++;
3194 if (conn->sent == ~0)
3195 conn->sent = 0;
3196 }
3197 }
3198}
3199
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003200static void hci_sched_esco(struct hci_dev *hdev)
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003201{
3202 struct hci_conn *conn;
3203 struct sk_buff *skb;
3204 int quote;
3205
3206 BT_DBG("%s", hdev->name);
3207
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03003208 if (!hci_conn_num(hdev, ESCO_LINK))
3209 return;
3210
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003211 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, ESCO_LINK,
3212 &quote))) {
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003213 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
3214 BT_DBG("skb %p len %d", skb, skb->len);
3215 hci_send_frame(skb);
3216
3217 conn->sent++;
3218 if (conn->sent == ~0)
3219 conn->sent = 0;
3220 }
3221 }
3222}
3223
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003224static void hci_sched_le(struct hci_dev *hdev)
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003225{
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003226 struct hci_chan *chan;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003227 struct sk_buff *skb;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003228 int quote, cnt, tmp;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003229
3230 BT_DBG("%s", hdev->name);
3231
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03003232 if (!hci_conn_num(hdev, LE_LINK))
3233 return;
3234
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003235 if (!test_bit(HCI_RAW, &hdev->flags)) {
3236 /* LE tx timeout must be longer than maximum
3237 * link supervision timeout (40.9 seconds) */
Ville Tervobae1f5d92011-02-10 22:38:53 -03003238 if (!hdev->le_cnt && hdev->le_pkts &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003239 time_after(jiffies, hdev->le_last_tx + HZ * 45))
Ville Tervobae1f5d92011-02-10 22:38:53 -03003240 hci_link_tx_to(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003241 }
3242
3243 cnt = hdev->le_pkts ? hdev->le_cnt : hdev->acl_cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003244 tmp = cnt;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003245 while (cnt && (chan = hci_chan_sent(hdev, LE_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02003246 u32 priority = (skb_peek(&chan->data_q))->priority;
3247 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003248 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003249 skb->len, skb->priority);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003250
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02003251 /* Stop if priority has changed */
3252 if (skb->priority < priority)
3253 break;
3254
3255 skb = skb_dequeue(&chan->data_q);
3256
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003257 hci_send_frame(skb);
3258 hdev->le_last_tx = jiffies;
3259
3260 cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003261 chan->sent++;
3262 chan->conn->sent++;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003263 }
3264 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02003265
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003266 if (hdev->le_pkts)
3267 hdev->le_cnt = cnt;
3268 else
3269 hdev->acl_cnt = cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02003270
3271 if (cnt != tmp)
3272 hci_prio_recalculate(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003273}
3274
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02003275static void hci_tx_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276{
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02003277 struct hci_dev *hdev = container_of(work, struct hci_dev, tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 struct sk_buff *skb;
3279
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003280 BT_DBG("%s acl %d sco %d le %d", hdev->name, hdev->acl_cnt,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003281 hdev->sco_cnt, hdev->le_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
3283 /* Schedule queues and send stuff to HCI driver */
3284
3285 hci_sched_acl(hdev);
3286
3287 hci_sched_sco(hdev);
3288
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02003289 hci_sched_esco(hdev);
3290
Ville Tervo6ed58ec2011-02-10 22:38:48 -03003291 hci_sched_le(hdev);
3292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 /* Send next queued raw (unknown type) packet */
3294 while ((skb = skb_dequeue(&hdev->raw_q)))
3295 hci_send_frame(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296}
3297
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003298/* ----- HCI RX task (incoming data processing) ----- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
3300/* ACL data packet */
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003301static void hci_acldata_packet(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302{
3303 struct hci_acl_hdr *hdr = (void *) skb->data;
3304 struct hci_conn *conn;
3305 __u16 handle, flags;
3306
3307 skb_pull(skb, HCI_ACL_HDR_SIZE);
3308
3309 handle = __le16_to_cpu(hdr->handle);
3310 flags = hci_flags(handle);
3311 handle = hci_handle(handle);
3312
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03003313 BT_DBG("%s len %d handle 0x%4.4x flags 0x%4.4x", hdev->name, skb->len,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003314 handle, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
3316 hdev->stat.acl_rx++;
3317
3318 hci_dev_lock(hdev);
3319 conn = hci_conn_hash_lookup_handle(hdev, handle);
3320 hci_dev_unlock(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09003321
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 if (conn) {
Mat Martineau65983fc2011-12-13 15:06:02 -08003323 hci_conn_enter_active_mode(conn, BT_POWER_FORCE_ACTIVE_OFF);
Marcel Holtmann04837f62006-07-03 10:02:33 +02003324
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 /* Send to upper protocol */
Ulisses Furquim686ebf22011-12-21 10:11:33 -02003326 l2cap_recv_acldata(conn, skb, flags);
3327 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09003329 BT_ERR("%s ACL packet for unknown connection handle %d",
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003330 hdev->name, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 }
3332
3333 kfree_skb(skb);
3334}
3335
3336/* SCO data packet */
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003337static void hci_scodata_packet(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
3339 struct hci_sco_hdr *hdr = (void *) skb->data;
3340 struct hci_conn *conn;
3341 __u16 handle;
3342
3343 skb_pull(skb, HCI_SCO_HDR_SIZE);
3344
3345 handle = __le16_to_cpu(hdr->handle);
3346
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03003347 BT_DBG("%s len %d handle 0x%4.4x", hdev->name, skb->len, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
3349 hdev->stat.sco_rx++;
3350
3351 hci_dev_lock(hdev);
3352 conn = hci_conn_hash_lookup_handle(hdev, handle);
3353 hci_dev_unlock(hdev);
3354
3355 if (conn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 /* Send to upper protocol */
Ulisses Furquim686ebf22011-12-21 10:11:33 -02003357 sco_recv_scodata(conn, skb);
3358 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09003360 BT_ERR("%s SCO packet for unknown connection handle %d",
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003361 hdev->name, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 }
3363
3364 kfree_skb(skb);
3365}
3366
Johan Hedberg9238f362013-03-05 20:37:48 +02003367static bool hci_req_is_complete(struct hci_dev *hdev)
3368{
3369 struct sk_buff *skb;
3370
3371 skb = skb_peek(&hdev->cmd_q);
3372 if (!skb)
3373 return true;
3374
3375 return bt_cb(skb)->req.start;
3376}
3377
Johan Hedberg42c6b122013-03-05 20:37:49 +02003378static void hci_resend_last(struct hci_dev *hdev)
3379{
3380 struct hci_command_hdr *sent;
3381 struct sk_buff *skb;
3382 u16 opcode;
3383
3384 if (!hdev->sent_cmd)
3385 return;
3386
3387 sent = (void *) hdev->sent_cmd->data;
3388 opcode = __le16_to_cpu(sent->opcode);
3389 if (opcode == HCI_OP_RESET)
3390 return;
3391
3392 skb = skb_clone(hdev->sent_cmd, GFP_KERNEL);
3393 if (!skb)
3394 return;
3395
3396 skb_queue_head(&hdev->cmd_q, skb);
3397 queue_work(hdev->workqueue, &hdev->cmd_work);
3398}
3399
Johan Hedberg9238f362013-03-05 20:37:48 +02003400void hci_req_cmd_complete(struct hci_dev *hdev, u16 opcode, u8 status)
3401{
3402 hci_req_complete_t req_complete = NULL;
3403 struct sk_buff *skb;
3404 unsigned long flags;
3405
3406 BT_DBG("opcode 0x%04x status 0x%02x", opcode, status);
3407
Johan Hedberg42c6b122013-03-05 20:37:49 +02003408 /* If the completed command doesn't match the last one that was
3409 * sent we need to do special handling of it.
Johan Hedberg9238f362013-03-05 20:37:48 +02003410 */
Johan Hedberg42c6b122013-03-05 20:37:49 +02003411 if (!hci_sent_cmd_data(hdev, opcode)) {
3412 /* Some CSR based controllers generate a spontaneous
3413 * reset complete event during init and any pending
3414 * command will never be completed. In such a case we
3415 * need to resend whatever was the last sent
3416 * command.
3417 */
3418 if (test_bit(HCI_INIT, &hdev->flags) && opcode == HCI_OP_RESET)
3419 hci_resend_last(hdev);
3420
Johan Hedberg9238f362013-03-05 20:37:48 +02003421 return;
Johan Hedberg42c6b122013-03-05 20:37:49 +02003422 }
Johan Hedberg9238f362013-03-05 20:37:48 +02003423
3424 /* If the command succeeded and there's still more commands in
3425 * this request the request is not yet complete.
3426 */
3427 if (!status && !hci_req_is_complete(hdev))
3428 return;
3429
3430 /* If this was the last command in a request the complete
3431 * callback would be found in hdev->sent_cmd instead of the
3432 * command queue (hdev->cmd_q).
3433 */
3434 if (hdev->sent_cmd) {
3435 req_complete = bt_cb(hdev->sent_cmd)->req.complete;
3436 if (req_complete)
3437 goto call_complete;
3438 }
3439
3440 /* Remove all pending commands belonging to this request */
3441 spin_lock_irqsave(&hdev->cmd_q.lock, flags);
3442 while ((skb = __skb_dequeue(&hdev->cmd_q))) {
3443 if (bt_cb(skb)->req.start) {
3444 __skb_queue_head(&hdev->cmd_q, skb);
3445 break;
3446 }
3447
3448 req_complete = bt_cb(skb)->req.complete;
3449 kfree_skb(skb);
3450 }
3451 spin_unlock_irqrestore(&hdev->cmd_q.lock, flags);
3452
3453call_complete:
3454 if (req_complete)
3455 req_complete(hdev, status);
3456}
3457
Marcel Holtmannb78752c2010-08-08 23:06:53 -04003458static void hci_rx_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459{
Marcel Holtmannb78752c2010-08-08 23:06:53 -04003460 struct hci_dev *hdev = container_of(work, struct hci_dev, rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 struct sk_buff *skb;
3462
3463 BT_DBG("%s", hdev->name);
3464
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 while ((skb = skb_dequeue(&hdev->rx_q))) {
Marcel Holtmanncd82e612012-02-20 20:34:38 +01003466 /* Send copy to monitor */
3467 hci_send_to_monitor(hdev, skb);
3468
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 if (atomic_read(&hdev->promisc)) {
3470 /* Send copy to the sockets */
Marcel Holtmann470fe1b2012-02-20 14:50:30 +01003471 hci_send_to_sock(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 }
3473
3474 if (test_bit(HCI_RAW, &hdev->flags)) {
3475 kfree_skb(skb);
3476 continue;
3477 }
3478
3479 if (test_bit(HCI_INIT, &hdev->flags)) {
3480 /* Don't process data packets in this states. */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07003481 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 case HCI_ACLDATA_PKT:
3483 case HCI_SCODATA_PKT:
3484 kfree_skb(skb);
3485 continue;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 }
3488
3489 /* Process frame */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07003490 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 case HCI_EVENT_PKT:
Marcel Holtmannb78752c2010-08-08 23:06:53 -04003492 BT_DBG("%s Event packet", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 hci_event_packet(hdev, skb);
3494 break;
3495
3496 case HCI_ACLDATA_PKT:
3497 BT_DBG("%s ACL data packet", hdev->name);
3498 hci_acldata_packet(hdev, skb);
3499 break;
3500
3501 case HCI_SCODATA_PKT:
3502 BT_DBG("%s SCO data packet", hdev->name);
3503 hci_scodata_packet(hdev, skb);
3504 break;
3505
3506 default:
3507 kfree_skb(skb);
3508 break;
3509 }
3510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511}
3512
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02003513static void hci_cmd_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514{
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02003515 struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 struct sk_buff *skb;
3517
Andrei Emeltchenko21047862012-07-10 15:27:47 +03003518 BT_DBG("%s cmd_cnt %d cmd queued %d", hdev->name,
3519 atomic_read(&hdev->cmd_cnt), skb_queue_len(&hdev->cmd_q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 /* Send queued commands */
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02003522 if (atomic_read(&hdev->cmd_cnt)) {
3523 skb = skb_dequeue(&hdev->cmd_q);
3524 if (!skb)
3525 return;
3526
Wei Yongjun7585b972009-02-25 18:29:52 +08003527 kfree_skb(hdev->sent_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02003529 hdev->sent_cmd = skb_clone(skb, GFP_ATOMIC);
3530 if (hdev->sent_cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 atomic_dec(&hdev->cmd_cnt);
3532 hci_send_frame(skb);
Szymon Janc7bdb8a52011-07-26 22:46:54 +02003533 if (test_bit(HCI_RESET, &hdev->flags))
3534 del_timer(&hdev->cmd_timer);
3535 else
3536 mod_timer(&hdev->cmd_timer,
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +03003537 jiffies + HCI_CMD_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 } else {
3539 skb_queue_head(&hdev->cmd_q, skb);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02003540 queue_work(hdev->workqueue, &hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 }
3542 }
3543}
Andre Guedes2519a1f2011-11-07 11:45:24 -03003544
3545int hci_do_inquiry(struct hci_dev *hdev, u8 length)
3546{
3547 /* General inquiry access code (GIAC) */
3548 u8 lap[3] = { 0x33, 0x8b, 0x9e };
3549 struct hci_cp_inquiry cp;
3550
3551 BT_DBG("%s", hdev->name);
3552
3553 if (test_bit(HCI_INQUIRY, &hdev->flags))
3554 return -EINPROGRESS;
3555
Johan Hedberg46632622012-01-02 16:06:08 +02003556 inquiry_cache_flush(hdev);
3557
Andre Guedes2519a1f2011-11-07 11:45:24 -03003558 memset(&cp, 0, sizeof(cp));
3559 memcpy(&cp.lap, lap, sizeof(cp.lap));
3560 cp.length = length;
3561
3562 return hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp);
3563}
Andre Guedes023d50492011-11-04 14:16:52 -03003564
3565int hci_cancel_inquiry(struct hci_dev *hdev)
3566{
3567 BT_DBG("%s", hdev->name);
3568
3569 if (!test_bit(HCI_INQUIRY, &hdev->flags))
Andre Guedes7537e5c2012-03-20 00:13:38 -03003570 return -EALREADY;
Andre Guedes023d50492011-11-04 14:16:52 -03003571
3572 return hci_send_cmd(hdev, HCI_OP_INQUIRY_CANCEL, 0, NULL);
3573}
Andre Guedes31f79562012-04-24 21:02:53 -03003574
3575u8 bdaddr_to_le(u8 bdaddr_type)
3576{
3577 switch (bdaddr_type) {
3578 case BDADDR_LE_PUBLIC:
3579 return ADDR_LE_DEV_PUBLIC;
3580
3581 default:
3582 /* Fallback to LE Random address type */
3583 return ADDR_LE_DEV_RANDOM;
3584 }
3585}