blob: e061b354d2c4a597839d9b6d0250dff6ec36409a [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 Hedberg23bb5762010-12-21 23:01:27 +020060void hci_req_complete(struct hci_dev *hdev, __u16 cmd, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +030062 BT_DBG("%s command 0x%4.4x result 0x%2.2x", hdev->name, cmd, result);
Johan Hedberg23bb5762010-12-21 23:01:27 +020063
Johan Hedberga5040ef2011-01-10 13:28:59 +020064 /* If this is the init phase check if the completed command matches
65 * the last init command, and if not just return.
66 */
Johan Hedberg75fb0e32012-03-01 21:35:55 +020067 if (test_bit(HCI_INIT, &hdev->flags) && hdev->init_last_cmd != cmd) {
68 struct hci_command_hdr *sent = (void *) hdev->sent_cmd->data;
Andrei Emeltchenko1036b892012-03-12 15:59:33 +020069 u16 opcode = __le16_to_cpu(sent->opcode);
Johan Hedberg75fb0e32012-03-01 21:35:55 +020070 struct sk_buff *skb;
71
72 /* Some CSR based controllers generate a spontaneous
73 * reset complete event during init and any pending
74 * command will never be completed. In such a case we
75 * need to resend whatever was the last sent
76 * command.
77 */
78
Andrei Emeltchenko1036b892012-03-12 15:59:33 +020079 if (cmd != HCI_OP_RESET || opcode == HCI_OP_RESET)
Johan Hedberg75fb0e32012-03-01 21:35:55 +020080 return;
81
82 skb = skb_clone(hdev->sent_cmd, GFP_ATOMIC);
83 if (skb) {
84 skb_queue_head(&hdev->cmd_q, skb);
85 queue_work(hdev->workqueue, &hdev->cmd_work);
86 }
87
Johan Hedberg23bb5762010-12-21 23:01:27 +020088 return;
Johan Hedberg75fb0e32012-03-01 21:35:55 +020089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 if (hdev->req_status == HCI_REQ_PEND) {
92 hdev->req_result = result;
93 hdev->req_status = HCI_REQ_DONE;
94 wake_up_interruptible(&hdev->req_wait_q);
95 }
96}
97
98static void hci_req_cancel(struct hci_dev *hdev, int err)
99{
100 BT_DBG("%s err 0x%2.2x", hdev->name, err);
101
102 if (hdev->req_status == HCI_REQ_PEND) {
103 hdev->req_result = err;
104 hdev->req_status = HCI_REQ_CANCELED;
105 wake_up_interruptible(&hdev->req_wait_q);
106 }
107}
108
109/* Execute request and wait for completion. */
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300110static int __hci_request(struct hci_dev *hdev,
111 void (*req)(struct hci_dev *hdev, unsigned long opt),
112 unsigned long opt, __u32 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 DECLARE_WAITQUEUE(wait, current);
115 int err = 0;
116
117 BT_DBG("%s start", hdev->name);
118
119 hdev->req_status = HCI_REQ_PEND;
120
121 add_wait_queue(&hdev->req_wait_q, &wait);
122 set_current_state(TASK_INTERRUPTIBLE);
123
124 req(hdev, opt);
125 schedule_timeout(timeout);
126
127 remove_wait_queue(&hdev->req_wait_q, &wait);
128
129 if (signal_pending(current))
130 return -EINTR;
131
132 switch (hdev->req_status) {
133 case HCI_REQ_DONE:
Joe Perchese1750722011-06-29 18:18:29 -0700134 err = -bt_to_errno(hdev->req_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 break;
136
137 case HCI_REQ_CANCELED:
138 err = -hdev->req_result;
139 break;
140
141 default:
142 err = -ETIMEDOUT;
143 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Johan Hedberga5040ef2011-01-10 13:28:59 +0200146 hdev->req_status = hdev->req_result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 BT_DBG("%s end: err %d", hdev->name, err);
149
150 return err;
151}
152
Gustavo Padovan6039aa732012-05-23 04:04:18 -0300153static int hci_request(struct hci_dev *hdev,
154 void (*req)(struct hci_dev *hdev, unsigned long opt),
155 unsigned long opt, __u32 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 int ret;
158
Marcel Holtmann7c6a3292008-09-12 03:11:54 +0200159 if (!test_bit(HCI_UP, &hdev->flags))
160 return -ENETDOWN;
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 /* Serialize all requests */
163 hci_req_lock(hdev);
164 ret = __hci_request(hdev, req, opt, timeout);
165 hci_req_unlock(hdev);
166
167 return ret;
168}
169
170static void hci_reset_req(struct hci_dev *hdev, unsigned long opt)
171{
172 BT_DBG("%s %ld", hdev->name, opt);
173
174 /* Reset device */
Gustavo F. Padovanf630cf02011-03-16 15:36:29 -0300175 set_bit(HCI_RESET, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200176 hci_send_cmd(hdev, HCI_OP_RESET, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200179static void bredr_init(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Andrei Emeltchenko2455a3e2011-12-19 16:31:28 +0200181 hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_PACKET_BASED;
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 /* Read Local Supported Features */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200184 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_FEATURES, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200186 /* Read Local Version */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200187 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200190static void amp_init(struct hci_dev *hdev)
191{
Andrei Emeltchenko2455a3e2011-12-19 16:31:28 +0200192 hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_BLOCK_BASED;
193
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200194 /* Read Local Version */
195 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL);
Andrei Emeltchenko6bcbc482012-03-28 16:31:24 +0300196
197 /* Read Local AMP Info */
198 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_AMP_INFO, 0, NULL);
Andrei Emeltchenkoe71dfab2012-09-06 15:05:46 +0300199
200 /* Read Data Blk size */
201 hci_send_cmd(hdev, HCI_OP_READ_DATA_BLOCK_SIZE, 0, NULL);
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200202}
203
204static void hci_init_req(struct hci_dev *hdev, unsigned long opt)
205{
206 struct sk_buff *skb;
207
208 BT_DBG("%s %ld", hdev->name, opt);
209
210 /* Driver initialization */
211
212 /* Special commands */
213 while ((skb = skb_dequeue(&hdev->driver_init))) {
214 bt_cb(skb)->pkt_type = HCI_COMMAND_PKT;
215 skb->dev = (void *) hdev;
216
217 skb_queue_tail(&hdev->cmd_q, skb);
218 queue_work(hdev->workqueue, &hdev->cmd_work);
219 }
220 skb_queue_purge(&hdev->driver_init);
221
Andrei Emeltchenko11778712012-06-11 11:13:10 +0300222 /* Reset */
223 if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks))
224 hci_reset_req(hdev, 0);
225
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200226 switch (hdev->dev_type) {
227 case HCI_BREDR:
228 bredr_init(hdev);
229 break;
230
231 case HCI_AMP:
232 amp_init(hdev);
233 break;
234
235 default:
236 BT_ERR("Unknown device type %d", hdev->dev_type);
237 break;
238 }
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200239}
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241static void hci_scan_req(struct hci_dev *hdev, unsigned long opt)
242{
243 __u8 scan = opt;
244
245 BT_DBG("%s %x", hdev->name, scan);
246
247 /* Inquiry and Page scans */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200248 hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251static void hci_auth_req(struct hci_dev *hdev, unsigned long opt)
252{
253 __u8 auth = opt;
254
255 BT_DBG("%s %x", hdev->name, auth);
256
257 /* Authentication */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200258 hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, 1, &auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261static void hci_encrypt_req(struct hci_dev *hdev, unsigned long opt)
262{
263 __u8 encrypt = opt;
264
265 BT_DBG("%s %x", hdev->name, encrypt);
266
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200267 /* Encryption */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200268 hci_send_cmd(hdev, HCI_OP_WRITE_ENCRYPT_MODE, 1, &encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200271static void hci_linkpol_req(struct hci_dev *hdev, unsigned long opt)
272{
273 __le16 policy = cpu_to_le16(opt);
274
Marcel Holtmanna418b892008-11-30 12:17:28 +0100275 BT_DBG("%s %x", hdev->name, policy);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200276
277 /* Default link policy */
278 hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, 2, &policy);
279}
280
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900281/* Get HCI device by index.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * Device is held on return. */
283struct hci_dev *hci_dev_get(int index)
284{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200285 struct hci_dev *hdev = NULL, *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 BT_DBG("%d", index);
288
289 if (index < 0)
290 return NULL;
291
292 read_lock(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200293 list_for_each_entry(d, &hci_dev_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (d->id == index) {
295 hdev = hci_dev_hold(d);
296 break;
297 }
298 }
299 read_unlock(&hci_dev_list_lock);
300 return hdev;
301}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303/* ---- Inquiry support ---- */
Johan Hedbergff9ef572012-01-04 14:23:45 +0200304
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200305bool hci_discovery_active(struct hci_dev *hdev)
306{
307 struct discovery_state *discov = &hdev->discovery;
308
Andre Guedes6fbe1952012-02-03 17:47:58 -0300309 switch (discov->state) {
Andre Guedes343f9352012-02-17 20:39:37 -0300310 case DISCOVERY_FINDING:
Andre Guedes6fbe1952012-02-03 17:47:58 -0300311 case DISCOVERY_RESOLVING:
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200312 return true;
313
Andre Guedes6fbe1952012-02-03 17:47:58 -0300314 default:
315 return false;
316 }
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200317}
318
Johan Hedbergff9ef572012-01-04 14:23:45 +0200319void hci_discovery_set_state(struct hci_dev *hdev, int state)
320{
321 BT_DBG("%s state %u -> %u", hdev->name, hdev->discovery.state, state);
322
323 if (hdev->discovery.state == state)
324 return;
325
326 switch (state) {
327 case DISCOVERY_STOPPED:
Andre Guedes7b99b652012-02-13 15:41:02 -0300328 if (hdev->discovery.state != DISCOVERY_STARTING)
329 mgmt_discovering(hdev, 0);
Johan Hedbergff9ef572012-01-04 14:23:45 +0200330 break;
331 case DISCOVERY_STARTING:
332 break;
Andre Guedes343f9352012-02-17 20:39:37 -0300333 case DISCOVERY_FINDING:
Johan Hedbergff9ef572012-01-04 14:23:45 +0200334 mgmt_discovering(hdev, 1);
335 break;
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200336 case DISCOVERY_RESOLVING:
337 break;
Johan Hedbergff9ef572012-01-04 14:23:45 +0200338 case DISCOVERY_STOPPING:
339 break;
340 }
341
342 hdev->discovery.state = state;
343}
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345static void inquiry_cache_flush(struct hci_dev *hdev)
346{
Johan Hedberg30883512012-01-04 14:16:21 +0200347 struct discovery_state *cache = &hdev->discovery;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200348 struct inquiry_entry *p, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Johan Hedberg561aafb2012-01-04 13:31:59 +0200350 list_for_each_entry_safe(p, n, &cache->all, all) {
351 list_del(&p->all);
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200352 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
Johan Hedberg561aafb2012-01-04 13:31:59 +0200354
355 INIT_LIST_HEAD(&cache->unknown);
356 INIT_LIST_HEAD(&cache->resolve);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300359struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev,
360 bdaddr_t *bdaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Johan Hedberg30883512012-01-04 14:16:21 +0200362 struct discovery_state *cache = &hdev->discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 struct inquiry_entry *e;
364
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300365 BT_DBG("cache %p, %pMR", cache, bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Johan Hedberg561aafb2012-01-04 13:31:59 +0200367 list_for_each_entry(e, &cache->all, all) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (!bacmp(&e->data.bdaddr, bdaddr))
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200369 return e;
370 }
371
372 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Johan Hedberg561aafb2012-01-04 13:31:59 +0200375struct inquiry_entry *hci_inquiry_cache_lookup_unknown(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300376 bdaddr_t *bdaddr)
Johan Hedberg561aafb2012-01-04 13:31:59 +0200377{
Johan Hedberg30883512012-01-04 14:16:21 +0200378 struct discovery_state *cache = &hdev->discovery;
Johan Hedberg561aafb2012-01-04 13:31:59 +0200379 struct inquiry_entry *e;
380
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300381 BT_DBG("cache %p, %pMR", cache, bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +0200382
383 list_for_each_entry(e, &cache->unknown, list) {
384 if (!bacmp(&e->data.bdaddr, bdaddr))
385 return e;
386 }
387
388 return NULL;
389}
390
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200391struct inquiry_entry *hci_inquiry_cache_lookup_resolve(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300392 bdaddr_t *bdaddr,
393 int state)
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200394{
395 struct discovery_state *cache = &hdev->discovery;
396 struct inquiry_entry *e;
397
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300398 BT_DBG("cache %p bdaddr %pMR state %d", cache, bdaddr, state);
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200399
400 list_for_each_entry(e, &cache->resolve, list) {
401 if (!bacmp(bdaddr, BDADDR_ANY) && e->name_state == state)
402 return e;
403 if (!bacmp(&e->data.bdaddr, bdaddr))
404 return e;
405 }
406
407 return NULL;
408}
409
Johan Hedberga3d4e202012-01-09 00:53:02 +0200410void hci_inquiry_cache_update_resolve(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300411 struct inquiry_entry *ie)
Johan Hedberga3d4e202012-01-09 00:53:02 +0200412{
413 struct discovery_state *cache = &hdev->discovery;
414 struct list_head *pos = &cache->resolve;
415 struct inquiry_entry *p;
416
417 list_del(&ie->list);
418
419 list_for_each_entry(p, &cache->resolve, list) {
420 if (p->name_state != NAME_PENDING &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300421 abs(p->data.rssi) >= abs(ie->data.rssi))
Johan Hedberga3d4e202012-01-09 00:53:02 +0200422 break;
423 pos = &p->list;
424 }
425
426 list_add(&ie->list, pos);
427}
428
Johan Hedberg31754052012-01-04 13:39:52 +0200429bool hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300430 bool name_known, bool *ssp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Johan Hedberg30883512012-01-04 14:16:21 +0200432 struct discovery_state *cache = &hdev->discovery;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200433 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +0300435 BT_DBG("cache %p, %pMR", cache, &data->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Szymon Janc2b2fec42012-11-20 11:38:54 +0100437 hci_remove_remote_oob_data(hdev, &data->bdaddr);
438
Johan Hedberg388fc8f2012-02-23 00:38:59 +0200439 if (ssp)
440 *ssp = data->ssp_mode;
441
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200442 ie = hci_inquiry_cache_lookup(hdev, &data->bdaddr);
Johan Hedberga3d4e202012-01-09 00:53:02 +0200443 if (ie) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +0200444 if (ie->data.ssp_mode && ssp)
445 *ssp = true;
446
Johan Hedberga3d4e202012-01-09 00:53:02 +0200447 if (ie->name_state == NAME_NEEDED &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300448 data->rssi != ie->data.rssi) {
Johan Hedberga3d4e202012-01-09 00:53:02 +0200449 ie->data.rssi = data->rssi;
450 hci_inquiry_cache_update_resolve(hdev, ie);
451 }
452
Johan Hedberg561aafb2012-01-04 13:31:59 +0200453 goto update;
Johan Hedberga3d4e202012-01-09 00:53:02 +0200454 }
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200455
Johan Hedberg561aafb2012-01-04 13:31:59 +0200456 /* Entry not in the cache. Add new one. */
457 ie = kzalloc(sizeof(struct inquiry_entry), GFP_ATOMIC);
458 if (!ie)
Johan Hedberg31754052012-01-04 13:39:52 +0200459 return false;
Johan Hedberg561aafb2012-01-04 13:31:59 +0200460
461 list_add(&ie->all, &cache->all);
462
463 if (name_known) {
464 ie->name_state = NAME_KNOWN;
465 } else {
466 ie->name_state = NAME_NOT_KNOWN;
467 list_add(&ie->list, &cache->unknown);
468 }
469
470update:
471 if (name_known && ie->name_state != NAME_KNOWN &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300472 ie->name_state != NAME_PENDING) {
Johan Hedberg561aafb2012-01-04 13:31:59 +0200473 ie->name_state = NAME_KNOWN;
474 list_del(&ie->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200477 memcpy(&ie->data, data, sizeof(*data));
478 ie->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 cache->timestamp = jiffies;
Johan Hedberg31754052012-01-04 13:39:52 +0200480
481 if (ie->name_state == NAME_NOT_KNOWN)
482 return false;
483
484 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
487static int inquiry_cache_dump(struct hci_dev *hdev, int num, __u8 *buf)
488{
Johan Hedberg30883512012-01-04 14:16:21 +0200489 struct discovery_state *cache = &hdev->discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 struct inquiry_info *info = (struct inquiry_info *) buf;
491 struct inquiry_entry *e;
492 int copied = 0;
493
Johan Hedberg561aafb2012-01-04 13:31:59 +0200494 list_for_each_entry(e, &cache->all, all) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 struct inquiry_data *data = &e->data;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200496
497 if (copied >= num)
498 break;
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 bacpy(&info->bdaddr, &data->bdaddr);
501 info->pscan_rep_mode = data->pscan_rep_mode;
502 info->pscan_period_mode = data->pscan_period_mode;
503 info->pscan_mode = data->pscan_mode;
504 memcpy(info->dev_class, data->dev_class, 3);
505 info->clock_offset = data->clock_offset;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 info++;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200508 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510
511 BT_DBG("cache %p, copied %d", cache, copied);
512 return copied;
513}
514
515static void hci_inq_req(struct hci_dev *hdev, unsigned long opt)
516{
517 struct hci_inquiry_req *ir = (struct hci_inquiry_req *) opt;
518 struct hci_cp_inquiry cp;
519
520 BT_DBG("%s", hdev->name);
521
522 if (test_bit(HCI_INQUIRY, &hdev->flags))
523 return;
524
525 /* Start Inquiry */
526 memcpy(&cp.lap, &ir->lap, 3);
527 cp.length = ir->length;
528 cp.num_rsp = ir->num_rsp;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200529 hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
532int hci_inquiry(void __user *arg)
533{
534 __u8 __user *ptr = arg;
535 struct hci_inquiry_req ir;
536 struct hci_dev *hdev;
537 int err = 0, do_inquiry = 0, max_rsp;
538 long timeo;
539 __u8 *buf;
540
541 if (copy_from_user(&ir, ptr, sizeof(ir)))
542 return -EFAULT;
543
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200544 hdev = hci_dev_get(ir.dev_id);
545 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return -ENODEV;
547
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300548 hci_dev_lock(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900549 if (inquiry_cache_age(hdev) > INQUIRY_CACHE_AGE_MAX ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300550 inquiry_cache_empty(hdev) || ir.flags & IREQ_CACHE_FLUSH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 inquiry_cache_flush(hdev);
552 do_inquiry = 1;
553 }
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300554 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Marcel Holtmann04837f62006-07-03 10:02:33 +0200556 timeo = ir.length * msecs_to_jiffies(2000);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200557
558 if (do_inquiry) {
559 err = hci_request(hdev, hci_inq_req, (unsigned long)&ir, timeo);
560 if (err < 0)
561 goto done;
562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -0300564 /* for unlimited number of responses we will use buffer with
565 * 255 entries
566 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 max_rsp = (ir.num_rsp == 0) ? 255 : ir.num_rsp;
568
569 /* cache_dump can't sleep. Therefore we allocate temp buffer and then
570 * copy it to the user space.
571 */
Szymon Janc01df8c32011-02-17 16:46:47 +0100572 buf = kmalloc(sizeof(struct inquiry_info) * max_rsp, GFP_KERNEL);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200573 if (!buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 err = -ENOMEM;
575 goto done;
576 }
577
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300578 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 ir.num_rsp = inquiry_cache_dump(hdev, max_rsp, buf);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300580 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 BT_DBG("num_rsp %d", ir.num_rsp);
583
584 if (!copy_to_user(ptr, &ir, sizeof(ir))) {
585 ptr += sizeof(ir);
586 if (copy_to_user(ptr, buf, sizeof(struct inquiry_info) *
Gustavo Padovana8c5fb12012-05-17 00:36:26 -0300587 ir.num_rsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 err = -EFAULT;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900589 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 err = -EFAULT;
591
592 kfree(buf);
593
594done:
595 hci_dev_put(hdev);
596 return err;
597}
598
Johan Hedberg3f0f5242012-11-08 01:23:00 +0100599static u8 create_ad(struct hci_dev *hdev, u8 *ptr)
600{
601 u8 ad_len = 0, flags = 0;
602 size_t name_len;
603
604 if (test_bit(HCI_LE_PERIPHERAL, &hdev->dev_flags))
605 flags |= LE_AD_GENERAL;
606
607 if (!lmp_bredr_capable(hdev))
608 flags |= LE_AD_NO_BREDR;
609
610 if (lmp_le_br_capable(hdev))
611 flags |= LE_AD_SIM_LE_BREDR_CTRL;
612
613 if (lmp_host_le_br_capable(hdev))
614 flags |= LE_AD_SIM_LE_BREDR_HOST;
615
616 if (flags) {
617 BT_DBG("adv flags 0x%02x", flags);
618
619 ptr[0] = 2;
620 ptr[1] = EIR_FLAGS;
621 ptr[2] = flags;
622
623 ad_len += 3;
624 ptr += 3;
625 }
626
627 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID) {
628 ptr[0] = 2;
629 ptr[1] = EIR_TX_POWER;
630 ptr[2] = (u8) hdev->adv_tx_power;
631
632 ad_len += 3;
633 ptr += 3;
634 }
635
636 name_len = strlen(hdev->dev_name);
637 if (name_len > 0) {
638 size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2;
639
640 if (name_len > max_len) {
641 name_len = max_len;
642 ptr[1] = EIR_NAME_SHORT;
643 } else
644 ptr[1] = EIR_NAME_COMPLETE;
645
646 ptr[0] = name_len + 1;
647
648 memcpy(ptr + 2, hdev->dev_name, name_len);
649
650 ad_len += (name_len + 2);
651 ptr += (name_len + 2);
652 }
653
654 return ad_len;
655}
656
657int hci_update_ad(struct hci_dev *hdev)
658{
659 struct hci_cp_le_set_adv_data cp;
660 u8 len;
661 int err;
662
663 hci_dev_lock(hdev);
664
665 if (!lmp_le_capable(hdev)) {
666 err = -EINVAL;
667 goto unlock;
668 }
669
670 memset(&cp, 0, sizeof(cp));
671
672 len = create_ad(hdev, cp.data);
673
674 if (hdev->adv_data_len == len &&
675 memcmp(cp.data, hdev->adv_data, len) == 0) {
676 err = 0;
677 goto unlock;
678 }
679
680 memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
681 hdev->adv_data_len = len;
682
683 cp.length = len;
684 err = hci_send_cmd(hdev, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp);
685
686unlock:
687 hci_dev_unlock(hdev);
688
689 return err;
690}
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692/* ---- HCI ioctl helpers ---- */
693
694int hci_dev_open(__u16 dev)
695{
696 struct hci_dev *hdev;
697 int ret = 0;
698
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200699 hdev = hci_dev_get(dev);
700 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return -ENODEV;
702
703 BT_DBG("%s %p", hdev->name, hdev);
704
705 hci_req_lock(hdev);
706
Johan Hovold94324962012-03-15 14:48:41 +0100707 if (test_bit(HCI_UNREGISTER, &hdev->dev_flags)) {
708 ret = -ENODEV;
709 goto done;
710 }
711
Marcel Holtmann611b30f2009-06-08 14:41:38 +0200712 if (hdev->rfkill && rfkill_blocked(hdev->rfkill)) {
713 ret = -ERFKILL;
714 goto done;
715 }
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (test_bit(HCI_UP, &hdev->flags)) {
718 ret = -EALREADY;
719 goto done;
720 }
721
722 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
723 set_bit(HCI_RAW, &hdev->flags);
724
Andrei Emeltchenko07e3b942011-11-11 17:02:15 +0200725 /* Treat all non BR/EDR controllers as raw devices if
726 enable_hs is not set */
727 if (hdev->dev_type != HCI_BREDR && !enable_hs)
Marcel Holtmann943da252010-02-13 02:28:41 +0100728 set_bit(HCI_RAW, &hdev->flags);
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (hdev->open(hdev)) {
731 ret = -EIO;
732 goto done;
733 }
734
735 if (!test_bit(HCI_RAW, &hdev->flags)) {
736 atomic_set(&hdev->cmd_cnt, 1);
737 set_bit(HCI_INIT, &hdev->flags);
Johan Hedberga5040ef2011-01-10 13:28:59 +0200738 hdev->init_last_cmd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +0300740 ret = __hci_request(hdev, hci_init_req, 0, HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 clear_bit(HCI_INIT, &hdev->flags);
743 }
744
745 if (!ret) {
746 hci_dev_hold(hdev);
747 set_bit(HCI_UP, &hdev->flags);
748 hci_notify(hdev, HCI_DEV_UP);
Johan Hedberg3f0f5242012-11-08 01:23:00 +0100749 hci_update_ad(hdev);
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300750 if (!test_bit(HCI_SETUP, &hdev->dev_flags) &&
751 mgmt_valid_hdev(hdev)) {
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300752 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +0200753 mgmt_powered(hdev, 1);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300754 hci_dev_unlock(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200755 }
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900756 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 /* Init failed, cleanup */
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -0200758 flush_work(&hdev->tx_work);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -0200759 flush_work(&hdev->cmd_work);
Marcel Holtmannb78752c2010-08-08 23:06:53 -0400760 flush_work(&hdev->rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 skb_queue_purge(&hdev->cmd_q);
763 skb_queue_purge(&hdev->rx_q);
764
765 if (hdev->flush)
766 hdev->flush(hdev);
767
768 if (hdev->sent_cmd) {
769 kfree_skb(hdev->sent_cmd);
770 hdev->sent_cmd = NULL;
771 }
772
773 hdev->close(hdev);
774 hdev->flags = 0;
775 }
776
777done:
778 hci_req_unlock(hdev);
779 hci_dev_put(hdev);
780 return ret;
781}
782
783static int hci_dev_do_close(struct hci_dev *hdev)
784{
785 BT_DBG("%s %p", hdev->name, hdev);
786
Andre Guedes28b75a82012-02-03 17:48:00 -0300787 cancel_work_sync(&hdev->le_scan);
788
Vinicius Costa Gomes78c04c02012-09-14 16:34:46 -0300789 cancel_delayed_work(&hdev->power_off);
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 hci_req_cancel(hdev, ENODEV);
792 hci_req_lock(hdev);
793
794 if (!test_and_clear_bit(HCI_UP, &hdev->flags)) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -0300795 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 hci_req_unlock(hdev);
797 return 0;
798 }
799
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -0200800 /* Flush RX and TX works */
801 flush_work(&hdev->tx_work);
Marcel Holtmannb78752c2010-08-08 23:06:53 -0400802 flush_work(&hdev->rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200804 if (hdev->discov_timeout > 0) {
Johan Hedberge0f93092011-11-09 01:44:22 +0200805 cancel_delayed_work(&hdev->discov_off);
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200806 hdev->discov_timeout = 0;
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200807 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200808 }
809
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200810 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg7d785252011-12-15 00:47:39 +0200811 cancel_delayed_work(&hdev->service_cache);
812
Andre Guedes7ba8b4b2012-02-03 17:47:59 -0300813 cancel_delayed_work_sync(&hdev->le_scan_disable);
814
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300815 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 inquiry_cache_flush(hdev);
817 hci_conn_hash_flush(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300818 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 hci_notify(hdev, HCI_DEV_DOWN);
821
822 if (hdev->flush)
823 hdev->flush(hdev);
824
825 /* Reset device */
826 skb_queue_purge(&hdev->cmd_q);
827 atomic_set(&hdev->cmd_cnt, 1);
Johan Hedberg8af59462012-02-03 21:29:40 +0200828 if (!test_bit(HCI_RAW, &hdev->flags) &&
Szymon Janca6c511c2012-05-23 12:35:46 +0200829 test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 set_bit(HCI_INIT, &hdev->flags);
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +0300831 __hci_request(hdev, hci_reset_req, 0, HCI_CMD_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 clear_bit(HCI_INIT, &hdev->flags);
833 }
834
Gustavo F. Padovanc347b762011-12-14 23:53:47 -0200835 /* flush cmd work */
836 flush_work(&hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 /* Drop queues */
839 skb_queue_purge(&hdev->rx_q);
840 skb_queue_purge(&hdev->cmd_q);
841 skb_queue_purge(&hdev->raw_q);
842
843 /* Drop last sent command */
844 if (hdev->sent_cmd) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -0300845 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 kfree_skb(hdev->sent_cmd);
847 hdev->sent_cmd = NULL;
848 }
849
850 /* After this point our queues are empty
851 * and no tasks are scheduled. */
852 hdev->close(hdev);
853
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300854 if (!test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags) &&
855 mgmt_valid_hdev(hdev)) {
Marcel Holtmann8ee56542012-02-21 12:33:48 +0100856 hci_dev_lock(hdev);
857 mgmt_powered(hdev, 0);
858 hci_dev_unlock(hdev);
859 }
Johan Hedberg5add6af2010-12-16 10:00:37 +0200860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 /* Clear flags */
862 hdev->flags = 0;
863
Andrei Emeltchenkoced5c332012-11-28 17:59:42 +0200864 /* Controller radio is available but is currently powered down */
865 hdev->amp_status = 0;
866
Johan Hedberge59fda82012-02-22 18:11:53 +0200867 memset(hdev->eir, 0, sizeof(hdev->eir));
Johan Hedberg09b3c3f2012-02-22 22:01:41 +0200868 memset(hdev->dev_class, 0, sizeof(hdev->dev_class));
Johan Hedberge59fda82012-02-22 18:11:53 +0200869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 hci_req_unlock(hdev);
871
872 hci_dev_put(hdev);
873 return 0;
874}
875
876int hci_dev_close(__u16 dev)
877{
878 struct hci_dev *hdev;
879 int err;
880
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200881 hdev = hci_dev_get(dev);
882 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return -ENODEV;
Marcel Holtmann8ee56542012-02-21 12:33:48 +0100884
885 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
886 cancel_delayed_work(&hdev->power_off);
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 err = hci_dev_do_close(hdev);
Marcel Holtmann8ee56542012-02-21 12:33:48 +0100889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 hci_dev_put(hdev);
891 return err;
892}
893
894int hci_dev_reset(__u16 dev)
895{
896 struct hci_dev *hdev;
897 int ret = 0;
898
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200899 hdev = hci_dev_get(dev);
900 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return -ENODEV;
902
903 hci_req_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 if (!test_bit(HCI_UP, &hdev->flags))
906 goto done;
907
908 /* Drop queues */
909 skb_queue_purge(&hdev->rx_q);
910 skb_queue_purge(&hdev->cmd_q);
911
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300912 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 inquiry_cache_flush(hdev);
914 hci_conn_hash_flush(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300915 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 if (hdev->flush)
918 hdev->flush(hdev);
919
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900920 atomic_set(&hdev->cmd_cnt, 1);
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300921 hdev->acl_cnt = 0; hdev->sco_cnt = 0; hdev->le_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 if (!test_bit(HCI_RAW, &hdev->flags))
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +0300924 ret = __hci_request(hdev, hci_reset_req, 0, HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 hci_req_unlock(hdev);
928 hci_dev_put(hdev);
929 return ret;
930}
931
932int hci_dev_reset_stat(__u16 dev)
933{
934 struct hci_dev *hdev;
935 int ret = 0;
936
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200937 hdev = hci_dev_get(dev);
938 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return -ENODEV;
940
941 memset(&hdev->stat, 0, sizeof(struct hci_dev_stats));
942
943 hci_dev_put(hdev);
944
945 return ret;
946}
947
948int hci_dev_cmd(unsigned int cmd, void __user *arg)
949{
950 struct hci_dev *hdev;
951 struct hci_dev_req dr;
952 int err = 0;
953
954 if (copy_from_user(&dr, arg, sizeof(dr)))
955 return -EFAULT;
956
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200957 hdev = hci_dev_get(dr.dev_id);
958 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return -ENODEV;
960
961 switch (cmd) {
962 case HCISETAUTH:
Marcel Holtmann04837f62006-07-03 10:02:33 +0200963 err = hci_request(hdev, hci_auth_req, dr.dev_opt,
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +0300964 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 break;
966
967 case HCISETENCRYPT:
968 if (!lmp_encrypt_capable(hdev)) {
969 err = -EOPNOTSUPP;
970 break;
971 }
972
973 if (!test_bit(HCI_AUTH, &hdev->flags)) {
974 /* Auth must be enabled first */
Marcel Holtmann04837f62006-07-03 10:02:33 +0200975 err = hci_request(hdev, hci_auth_req, dr.dev_opt,
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +0300976 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (err)
978 break;
979 }
980
Marcel Holtmann04837f62006-07-03 10:02:33 +0200981 err = hci_request(hdev, hci_encrypt_req, dr.dev_opt,
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +0300982 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 break;
984
985 case HCISETSCAN:
Marcel Holtmann04837f62006-07-03 10:02:33 +0200986 err = hci_request(hdev, hci_scan_req, dr.dev_opt,
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +0300987 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 break;
989
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200990 case HCISETLINKPOL:
991 err = hci_request(hdev, hci_linkpol_req, dr.dev_opt,
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +0300992 HCI_INIT_TIMEOUT);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200993 break;
994
995 case HCISETLINKMODE:
996 hdev->link_mode = ((__u16) dr.dev_opt) &
997 (HCI_LM_MASTER | HCI_LM_ACCEPT);
998 break;
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 case HCISETPTYPE:
1001 hdev->pkt_type = (__u16) dr.dev_opt;
1002 break;
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 case HCISETACLMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001005 hdev->acl_mtu = *((__u16 *) &dr.dev_opt + 1);
1006 hdev->acl_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 break;
1008
1009 case HCISETSCOMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001010 hdev->sco_mtu = *((__u16 *) &dr.dev_opt + 1);
1011 hdev->sco_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 break;
1013
1014 default:
1015 err = -EINVAL;
1016 break;
1017 }
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 hci_dev_put(hdev);
1020 return err;
1021}
1022
1023int hci_get_dev_list(void __user *arg)
1024{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001025 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 struct hci_dev_list_req *dl;
1027 struct hci_dev_req *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 int n = 0, size, err;
1029 __u16 dev_num;
1030
1031 if (get_user(dev_num, (__u16 __user *) arg))
1032 return -EFAULT;
1033
1034 if (!dev_num || dev_num > (PAGE_SIZE * 2) / sizeof(*dr))
1035 return -EINVAL;
1036
1037 size = sizeof(*dl) + dev_num * sizeof(*dr);
1038
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001039 dl = kzalloc(size, GFP_KERNEL);
1040 if (!dl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return -ENOMEM;
1042
1043 dr = dl->dev_req;
1044
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001045 read_lock(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001046 list_for_each_entry(hdev, &hci_dev_list, list) {
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001047 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
Johan Hedberge0f93092011-11-09 01:44:22 +02001048 cancel_delayed_work(&hdev->power_off);
Johan Hedbergc542a062011-01-26 13:11:03 +02001049
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001050 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
1051 set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergc542a062011-01-26 13:11:03 +02001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 (dr + n)->dev_id = hdev->id;
1054 (dr + n)->dev_opt = hdev->flags;
Johan Hedbergc542a062011-01-26 13:11:03 +02001055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (++n >= dev_num)
1057 break;
1058 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001059 read_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 dl->dev_num = n;
1062 size = sizeof(*dl) + n * sizeof(*dr);
1063
1064 err = copy_to_user(arg, dl, size);
1065 kfree(dl);
1066
1067 return err ? -EFAULT : 0;
1068}
1069
1070int hci_get_dev_info(void __user *arg)
1071{
1072 struct hci_dev *hdev;
1073 struct hci_dev_info di;
1074 int err = 0;
1075
1076 if (copy_from_user(&di, arg, sizeof(di)))
1077 return -EFAULT;
1078
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001079 hdev = hci_dev_get(di.dev_id);
1080 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return -ENODEV;
1082
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001083 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
Johan Hedberg32435532011-11-07 22:16:04 +02001084 cancel_delayed_work_sync(&hdev->power_off);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001085
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001086 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
1087 set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergc542a062011-01-26 13:11:03 +02001088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 strcpy(di.name, hdev->name);
1090 di.bdaddr = hdev->bdaddr;
Marcel Holtmann943da252010-02-13 02:28:41 +01001091 di.type = (hdev->bus & 0x0f) | (hdev->dev_type << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 di.flags = hdev->flags;
1093 di.pkt_type = hdev->pkt_type;
Johan Hedberg572c7f82012-10-19 20:57:46 +03001094 if (lmp_bredr_capable(hdev)) {
1095 di.acl_mtu = hdev->acl_mtu;
1096 di.acl_pkts = hdev->acl_pkts;
1097 di.sco_mtu = hdev->sco_mtu;
1098 di.sco_pkts = hdev->sco_pkts;
1099 } else {
1100 di.acl_mtu = hdev->le_mtu;
1101 di.acl_pkts = hdev->le_pkts;
1102 di.sco_mtu = 0;
1103 di.sco_pkts = 0;
1104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 di.link_policy = hdev->link_policy;
1106 di.link_mode = hdev->link_mode;
1107
1108 memcpy(&di.stat, &hdev->stat, sizeof(di.stat));
1109 memcpy(&di.features, &hdev->features, sizeof(di.features));
1110
1111 if (copy_to_user(arg, &di, sizeof(di)))
1112 err = -EFAULT;
1113
1114 hci_dev_put(hdev);
1115
1116 return err;
1117}
1118
1119/* ---- Interface to HCI drivers ---- */
1120
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001121static int hci_rfkill_set_block(void *data, bool blocked)
1122{
1123 struct hci_dev *hdev = data;
1124
1125 BT_DBG("%p name %s blocked %d", hdev, hdev->name, blocked);
1126
1127 if (!blocked)
1128 return 0;
1129
1130 hci_dev_do_close(hdev);
1131
1132 return 0;
1133}
1134
1135static const struct rfkill_ops hci_rfkill_ops = {
1136 .set_block = hci_rfkill_set_block,
1137};
1138
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001139static void hci_power_on(struct work_struct *work)
1140{
1141 struct hci_dev *hdev = container_of(work, struct hci_dev, power_on);
1142
1143 BT_DBG("%s", hdev->name);
1144
1145 if (hci_dev_open(hdev->id) < 0)
1146 return;
1147
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001148 if (test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
Johan Hedberg19202572013-01-14 22:33:51 +02001149 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
1150 HCI_AUTO_OFF_TIMEOUT);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001151
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001152 if (test_and_clear_bit(HCI_SETUP, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +02001153 mgmt_index_added(hdev);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001154}
1155
1156static void hci_power_off(struct work_struct *work)
1157{
Johan Hedberg32435532011-11-07 22:16:04 +02001158 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001159 power_off.work);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001160
1161 BT_DBG("%s", hdev->name);
1162
Marcel Holtmann8ee56542012-02-21 12:33:48 +01001163 hci_dev_do_close(hdev);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001164}
1165
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001166static void hci_discov_off(struct work_struct *work)
1167{
1168 struct hci_dev *hdev;
1169 u8 scan = SCAN_PAGE;
1170
1171 hdev = container_of(work, struct hci_dev, discov_off.work);
1172
1173 BT_DBG("%s", hdev->name);
1174
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001175 hci_dev_lock(hdev);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001176
1177 hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
1178
1179 hdev->discov_timeout = 0;
1180
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001181 hci_dev_unlock(hdev);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001182}
1183
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001184int hci_uuids_clear(struct hci_dev *hdev)
1185{
1186 struct list_head *p, *n;
1187
1188 list_for_each_safe(p, n, &hdev->uuids) {
1189 struct bt_uuid *uuid;
1190
1191 uuid = list_entry(p, struct bt_uuid, list);
1192
1193 list_del(p);
1194 kfree(uuid);
1195 }
1196
1197 return 0;
1198}
1199
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001200int hci_link_keys_clear(struct hci_dev *hdev)
1201{
1202 struct list_head *p, *n;
1203
1204 list_for_each_safe(p, n, &hdev->link_keys) {
1205 struct link_key *key;
1206
1207 key = list_entry(p, struct link_key, list);
1208
1209 list_del(p);
1210 kfree(key);
1211 }
1212
1213 return 0;
1214}
1215
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03001216int hci_smp_ltks_clear(struct hci_dev *hdev)
1217{
1218 struct smp_ltk *k, *tmp;
1219
1220 list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) {
1221 list_del(&k->list);
1222 kfree(k);
1223 }
1224
1225 return 0;
1226}
1227
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001228struct link_key *hci_find_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
1229{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001230 struct link_key *k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001231
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001232 list_for_each_entry(k, &hdev->link_keys, list)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001233 if (bacmp(bdaddr, &k->bdaddr) == 0)
1234 return k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001235
1236 return NULL;
1237}
1238
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301239static bool hci_persistent_key(struct hci_dev *hdev, struct hci_conn *conn,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001240 u8 key_type, u8 old_key_type)
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001241{
1242 /* Legacy key */
1243 if (key_type < 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301244 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001245
1246 /* Debug keys are insecure so don't store them persistently */
1247 if (key_type == HCI_LK_DEBUG_COMBINATION)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301248 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001249
1250 /* Changed combination key and there's no previous one */
1251 if (key_type == HCI_LK_CHANGED_COMBINATION && old_key_type == 0xff)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301252 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001253
1254 /* Security mode 3 case */
1255 if (!conn)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301256 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001257
1258 /* Neither local nor remote side had no-bonding as requirement */
1259 if (conn->auth_type > 0x01 && conn->remote_auth > 0x01)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301260 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001261
1262 /* Local side had dedicated bonding as requirement */
1263 if (conn->auth_type == 0x02 || conn->auth_type == 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301264 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001265
1266 /* Remote side had dedicated bonding as requirement */
1267 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301268 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001269
1270 /* If none of the above criteria match, then don't store the key
1271 * persistently */
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301272 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001273}
1274
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001275struct smp_ltk *hci_find_ltk(struct hci_dev *hdev, __le16 ediv, u8 rand[8])
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001276{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001277 struct smp_ltk *k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001278
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001279 list_for_each_entry(k, &hdev->long_term_keys, list) {
1280 if (k->ediv != ediv ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001281 memcmp(rand, k->rand, sizeof(k->rand)))
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001282 continue;
1283
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001284 return k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001285 }
1286
1287 return NULL;
1288}
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001289
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001290struct smp_ltk *hci_find_ltk_by_addr(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001291 u8 addr_type)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001292{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001293 struct smp_ltk *k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001294
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001295 list_for_each_entry(k, &hdev->long_term_keys, list)
1296 if (addr_type == k->bdaddr_type &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001297 bacmp(bdaddr, &k->bdaddr) == 0)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001298 return k;
1299
1300 return NULL;
1301}
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001302
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001303int hci_add_link_key(struct hci_dev *hdev, struct hci_conn *conn, int new_key,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001304 bdaddr_t *bdaddr, u8 *val, u8 type, u8 pin_len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001305{
1306 struct link_key *key, *old_key;
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05301307 u8 old_key_type;
1308 bool persistent;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001309
1310 old_key = hci_find_link_key(hdev, bdaddr);
1311 if (old_key) {
1312 old_key_type = old_key->type;
1313 key = old_key;
1314 } else {
Johan Hedberg12adcf32011-04-28 11:29:00 -07001315 old_key_type = conn ? conn->key_type : 0xff;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001316 key = kzalloc(sizeof(*key), GFP_ATOMIC);
1317 if (!key)
1318 return -ENOMEM;
1319 list_add(&key->list, &hdev->link_keys);
1320 }
1321
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001322 BT_DBG("%s key for %pMR type %u", hdev->name, bdaddr, type);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001323
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001324 /* Some buggy controller combinations generate a changed
1325 * combination key for legacy pairing even when there's no
1326 * previous key */
1327 if (type == HCI_LK_CHANGED_COMBINATION &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001328 (!conn || conn->remote_auth == 0xff) && old_key_type == 0xff) {
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001329 type = HCI_LK_COMBINATION;
Johan Hedberg655fe6e2011-04-28 11:29:01 -07001330 if (conn)
1331 conn->key_type = type;
1332 }
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001333
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001334 bacpy(&key->bdaddr, bdaddr);
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03001335 memcpy(key->val, val, HCI_LINK_KEY_SIZE);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001336 key->pin_len = pin_len;
1337
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +02001338 if (type == HCI_LK_CHANGED_COMBINATION)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001339 key->type = old_key_type;
Johan Hedberg4748fed2011-04-28 11:29:02 -07001340 else
1341 key->type = type;
1342
Johan Hedberg4df378a2011-04-28 11:29:03 -07001343 if (!new_key)
1344 return 0;
1345
1346 persistent = hci_persistent_key(hdev, conn, type, old_key_type);
1347
Johan Hedberg744cf192011-11-08 20:40:14 +02001348 mgmt_new_link_key(hdev, key, persistent);
Johan Hedberg4df378a2011-04-28 11:29:03 -07001349
Vishal Agarwal6ec5bca2012-04-16 14:44:44 +05301350 if (conn)
1351 conn->flush_key = !persistent;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001352
1353 return 0;
1354}
1355
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001356int hci_add_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 addr_type, u8 type,
Andrei Emeltchenko9a006652012-03-09 12:12:12 +02001357 int new_key, u8 authenticated, u8 tk[16], u8 enc_size, __le16
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001358 ediv, u8 rand[8])
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001359{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001360 struct smp_ltk *key, *old_key;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001361
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001362 if (!(type & HCI_SMP_STK) && !(type & HCI_SMP_LTK))
1363 return 0;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001364
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001365 old_key = hci_find_ltk_by_addr(hdev, bdaddr, addr_type);
1366 if (old_key)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001367 key = old_key;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001368 else {
1369 key = kzalloc(sizeof(*key), GFP_ATOMIC);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001370 if (!key)
1371 return -ENOMEM;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001372 list_add(&key->list, &hdev->long_term_keys);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001373 }
1374
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001375 bacpy(&key->bdaddr, bdaddr);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001376 key->bdaddr_type = addr_type;
1377 memcpy(key->val, tk, sizeof(key->val));
1378 key->authenticated = authenticated;
1379 key->ediv = ediv;
1380 key->enc_size = enc_size;
1381 key->type = type;
1382 memcpy(key->rand, rand, sizeof(key->rand));
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001383
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03001384 if (!new_key)
1385 return 0;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001386
Vinicius Costa Gomes261cc5a2012-02-02 21:08:05 -03001387 if (type & HCI_SMP_LTK)
1388 mgmt_new_ltk(hdev, key, 1);
1389
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001390 return 0;
1391}
1392
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001393int hci_remove_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
1394{
1395 struct link_key *key;
1396
1397 key = hci_find_link_key(hdev, bdaddr);
1398 if (!key)
1399 return -ENOENT;
1400
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001401 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001402
1403 list_del(&key->list);
1404 kfree(key);
1405
1406 return 0;
1407}
1408
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03001409int hci_remove_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr)
1410{
1411 struct smp_ltk *k, *tmp;
1412
1413 list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) {
1414 if (bacmp(bdaddr, &k->bdaddr))
1415 continue;
1416
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001417 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03001418
1419 list_del(&k->list);
1420 kfree(k);
1421 }
1422
1423 return 0;
1424}
1425
Ville Tervo6bd32322011-02-16 16:32:41 +02001426/* HCI command timer function */
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03001427static void hci_cmd_timeout(unsigned long arg)
Ville Tervo6bd32322011-02-16 16:32:41 +02001428{
1429 struct hci_dev *hdev = (void *) arg;
1430
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03001431 if (hdev->sent_cmd) {
1432 struct hci_command_hdr *sent = (void *) hdev->sent_cmd->data;
1433 u16 opcode = __le16_to_cpu(sent->opcode);
1434
1435 BT_ERR("%s command 0x%4.4x tx timeout", hdev->name, opcode);
1436 } else {
1437 BT_ERR("%s command tx timeout", hdev->name);
1438 }
1439
Ville Tervo6bd32322011-02-16 16:32:41 +02001440 atomic_set(&hdev->cmd_cnt, 1);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02001441 queue_work(hdev->workqueue, &hdev->cmd_work);
Ville Tervo6bd32322011-02-16 16:32:41 +02001442}
1443
Szymon Janc2763eda2011-03-22 13:12:22 +01001444struct oob_data *hci_find_remote_oob_data(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001445 bdaddr_t *bdaddr)
Szymon Janc2763eda2011-03-22 13:12:22 +01001446{
1447 struct oob_data *data;
1448
1449 list_for_each_entry(data, &hdev->remote_oob_data, list)
1450 if (bacmp(bdaddr, &data->bdaddr) == 0)
1451 return data;
1452
1453 return NULL;
1454}
1455
1456int hci_remove_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr)
1457{
1458 struct oob_data *data;
1459
1460 data = hci_find_remote_oob_data(hdev, bdaddr);
1461 if (!data)
1462 return -ENOENT;
1463
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001464 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01001465
1466 list_del(&data->list);
1467 kfree(data);
1468
1469 return 0;
1470}
1471
1472int hci_remote_oob_data_clear(struct hci_dev *hdev)
1473{
1474 struct oob_data *data, *n;
1475
1476 list_for_each_entry_safe(data, n, &hdev->remote_oob_data, list) {
1477 list_del(&data->list);
1478 kfree(data);
1479 }
1480
1481 return 0;
1482}
1483
1484int hci_add_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *hash,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001485 u8 *randomizer)
Szymon Janc2763eda2011-03-22 13:12:22 +01001486{
1487 struct oob_data *data;
1488
1489 data = hci_find_remote_oob_data(hdev, bdaddr);
1490
1491 if (!data) {
1492 data = kmalloc(sizeof(*data), GFP_ATOMIC);
1493 if (!data)
1494 return -ENOMEM;
1495
1496 bacpy(&data->bdaddr, bdaddr);
1497 list_add(&data->list, &hdev->remote_oob_data);
1498 }
1499
1500 memcpy(data->hash, hash, sizeof(data->hash));
1501 memcpy(data->randomizer, randomizer, sizeof(data->randomizer));
1502
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001503 BT_DBG("%s for %pMR", hdev->name, bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01001504
1505 return 0;
1506}
1507
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001508struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001509{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001510 struct bdaddr_list *b;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001511
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001512 list_for_each_entry(b, &hdev->blacklist, list)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001513 if (bacmp(bdaddr, &b->bdaddr) == 0)
1514 return b;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001515
1516 return NULL;
1517}
1518
1519int hci_blacklist_clear(struct hci_dev *hdev)
1520{
1521 struct list_head *p, *n;
1522
1523 list_for_each_safe(p, n, &hdev->blacklist) {
1524 struct bdaddr_list *b;
1525
1526 b = list_entry(p, struct bdaddr_list, list);
1527
1528 list_del(p);
1529 kfree(b);
1530 }
1531
1532 return 0;
1533}
1534
Johan Hedberg88c1fe42012-02-09 15:56:11 +02001535int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001536{
1537 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001538
1539 if (bacmp(bdaddr, BDADDR_ANY) == 0)
1540 return -EBADF;
1541
Antti Julku5e762442011-08-25 16:48:02 +03001542 if (hci_blacklist_lookup(hdev, bdaddr))
1543 return -EEXIST;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001544
1545 entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL);
Antti Julku5e762442011-08-25 16:48:02 +03001546 if (!entry)
1547 return -ENOMEM;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001548
1549 bacpy(&entry->bdaddr, bdaddr);
1550
1551 list_add(&entry->list, &hdev->blacklist);
1552
Johan Hedberg88c1fe42012-02-09 15:56:11 +02001553 return mgmt_device_blocked(hdev, bdaddr, type);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001554}
1555
Johan Hedberg88c1fe42012-02-09 15:56:11 +02001556int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001557{
1558 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001559
Szymon Janc1ec918c2011-11-16 09:32:21 +01001560 if (bacmp(bdaddr, BDADDR_ANY) == 0)
Antti Julku5e762442011-08-25 16:48:02 +03001561 return hci_blacklist_clear(hdev);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001562
1563 entry = hci_blacklist_lookup(hdev, bdaddr);
Szymon Janc1ec918c2011-11-16 09:32:21 +01001564 if (!entry)
Antti Julku5e762442011-08-25 16:48:02 +03001565 return -ENOENT;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001566
1567 list_del(&entry->list);
1568 kfree(entry);
1569
Johan Hedberg88c1fe42012-02-09 15:56:11 +02001570 return mgmt_device_unblocked(hdev, bdaddr, type);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001571}
1572
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001573static void le_scan_param_req(struct hci_dev *hdev, unsigned long opt)
1574{
1575 struct le_scan_params *param = (struct le_scan_params *) opt;
1576 struct hci_cp_le_set_scan_param cp;
1577
1578 memset(&cp, 0, sizeof(cp));
1579 cp.type = param->type;
1580 cp.interval = cpu_to_le16(param->interval);
1581 cp.window = cpu_to_le16(param->window);
1582
1583 hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_PARAM, sizeof(cp), &cp);
1584}
1585
1586static void le_scan_enable_req(struct hci_dev *hdev, unsigned long opt)
1587{
1588 struct hci_cp_le_set_scan_enable cp;
1589
1590 memset(&cp, 0, sizeof(cp));
1591 cp.enable = 1;
Andre Guedes0431a432012-05-31 20:01:41 -03001592 cp.filter_dup = 1;
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001593
1594 hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
1595}
1596
1597static int hci_do_le_scan(struct hci_dev *hdev, u8 type, u16 interval,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001598 u16 window, int timeout)
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001599{
1600 long timeo = msecs_to_jiffies(3000);
1601 struct le_scan_params param;
1602 int err;
1603
1604 BT_DBG("%s", hdev->name);
1605
1606 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags))
1607 return -EINPROGRESS;
1608
1609 param.type = type;
1610 param.interval = interval;
1611 param.window = window;
1612
1613 hci_req_lock(hdev);
1614
1615 err = __hci_request(hdev, le_scan_param_req, (unsigned long) &param,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001616 timeo);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001617 if (!err)
1618 err = __hci_request(hdev, le_scan_enable_req, 0, timeo);
1619
1620 hci_req_unlock(hdev);
1621
1622 if (err < 0)
1623 return err;
1624
Johan Hedberg46818ed2013-01-14 22:33:52 +02001625 queue_delayed_work(hdev->workqueue, &hdev->le_scan_disable,
1626 msecs_to_jiffies(timeout));
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001627
1628 return 0;
1629}
1630
Andre Guedes7dbfac12012-03-15 16:52:07 -03001631int hci_cancel_le_scan(struct hci_dev *hdev)
1632{
1633 BT_DBG("%s", hdev->name);
1634
1635 if (!test_bit(HCI_LE_SCAN, &hdev->dev_flags))
1636 return -EALREADY;
1637
1638 if (cancel_delayed_work(&hdev->le_scan_disable)) {
1639 struct hci_cp_le_set_scan_enable cp;
1640
1641 /* Send HCI command to disable LE Scan */
1642 memset(&cp, 0, sizeof(cp));
1643 hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
1644 }
1645
1646 return 0;
1647}
1648
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001649static void le_scan_disable_work(struct work_struct *work)
1650{
1651 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001652 le_scan_disable.work);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03001653 struct hci_cp_le_set_scan_enable cp;
1654
1655 BT_DBG("%s", hdev->name);
1656
1657 memset(&cp, 0, sizeof(cp));
1658
1659 hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
1660}
1661
Andre Guedes28b75a82012-02-03 17:48:00 -03001662static void le_scan_work(struct work_struct *work)
1663{
1664 struct hci_dev *hdev = container_of(work, struct hci_dev, le_scan);
1665 struct le_scan_params *param = &hdev->le_scan_params;
1666
1667 BT_DBG("%s", hdev->name);
1668
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001669 hci_do_le_scan(hdev, param->type, param->interval, param->window,
1670 param->timeout);
Andre Guedes28b75a82012-02-03 17:48:00 -03001671}
1672
1673int hci_le_scan(struct hci_dev *hdev, u8 type, u16 interval, u16 window,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001674 int timeout)
Andre Guedes28b75a82012-02-03 17:48:00 -03001675{
1676 struct le_scan_params *param = &hdev->le_scan_params;
1677
1678 BT_DBG("%s", hdev->name);
1679
Johan Hedbergf1550472012-10-24 21:12:03 +03001680 if (test_bit(HCI_LE_PERIPHERAL, &hdev->dev_flags))
1681 return -ENOTSUPP;
1682
Andre Guedes28b75a82012-02-03 17:48:00 -03001683 if (work_busy(&hdev->le_scan))
1684 return -EINPROGRESS;
1685
1686 param->type = type;
1687 param->interval = interval;
1688 param->window = window;
1689 param->timeout = timeout;
1690
1691 queue_work(system_long_wq, &hdev->le_scan);
1692
1693 return 0;
1694}
1695
David Herrmann9be0dab2012-04-22 14:39:57 +02001696/* Alloc HCI device */
1697struct hci_dev *hci_alloc_dev(void)
1698{
1699 struct hci_dev *hdev;
1700
1701 hdev = kzalloc(sizeof(struct hci_dev), GFP_KERNEL);
1702 if (!hdev)
1703 return NULL;
1704
David Herrmannb1b813d2012-04-22 14:39:58 +02001705 hdev->pkt_type = (HCI_DM1 | HCI_DH1 | HCI_HV1);
1706 hdev->esco_type = (ESCO_HV1);
1707 hdev->link_mode = (HCI_LM_ACCEPT);
1708 hdev->io_capability = 0x03; /* No Input No Output */
Johan Hedbergbbaf4442012-11-08 01:22:59 +01001709 hdev->inq_tx_power = HCI_TX_POWER_INVALID;
1710 hdev->adv_tx_power = HCI_TX_POWER_INVALID;
David Herrmannb1b813d2012-04-22 14:39:58 +02001711
David Herrmannb1b813d2012-04-22 14:39:58 +02001712 hdev->sniff_max_interval = 800;
1713 hdev->sniff_min_interval = 80;
1714
1715 mutex_init(&hdev->lock);
1716 mutex_init(&hdev->req_lock);
1717
1718 INIT_LIST_HEAD(&hdev->mgmt_pending);
1719 INIT_LIST_HEAD(&hdev->blacklist);
1720 INIT_LIST_HEAD(&hdev->uuids);
1721 INIT_LIST_HEAD(&hdev->link_keys);
1722 INIT_LIST_HEAD(&hdev->long_term_keys);
1723 INIT_LIST_HEAD(&hdev->remote_oob_data);
Andrei Emeltchenko6b536b52012-08-31 16:39:28 +03001724 INIT_LIST_HEAD(&hdev->conn_hash.list);
David Herrmannb1b813d2012-04-22 14:39:58 +02001725
1726 INIT_WORK(&hdev->rx_work, hci_rx_work);
1727 INIT_WORK(&hdev->cmd_work, hci_cmd_work);
1728 INIT_WORK(&hdev->tx_work, hci_tx_work);
1729 INIT_WORK(&hdev->power_on, hci_power_on);
1730 INIT_WORK(&hdev->le_scan, le_scan_work);
1731
David Herrmannb1b813d2012-04-22 14:39:58 +02001732 INIT_DELAYED_WORK(&hdev->power_off, hci_power_off);
1733 INIT_DELAYED_WORK(&hdev->discov_off, hci_discov_off);
1734 INIT_DELAYED_WORK(&hdev->le_scan_disable, le_scan_disable_work);
1735
David Herrmann9be0dab2012-04-22 14:39:57 +02001736 skb_queue_head_init(&hdev->driver_init);
David Herrmannb1b813d2012-04-22 14:39:58 +02001737 skb_queue_head_init(&hdev->rx_q);
1738 skb_queue_head_init(&hdev->cmd_q);
1739 skb_queue_head_init(&hdev->raw_q);
1740
1741 init_waitqueue_head(&hdev->req_wait_q);
1742
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03001743 setup_timer(&hdev->cmd_timer, hci_cmd_timeout, (unsigned long) hdev);
David Herrmannb1b813d2012-04-22 14:39:58 +02001744
David Herrmannb1b813d2012-04-22 14:39:58 +02001745 hci_init_sysfs(hdev);
1746 discovery_init(hdev);
David Herrmann9be0dab2012-04-22 14:39:57 +02001747
1748 return hdev;
1749}
1750EXPORT_SYMBOL(hci_alloc_dev);
1751
1752/* Free HCI device */
1753void hci_free_dev(struct hci_dev *hdev)
1754{
1755 skb_queue_purge(&hdev->driver_init);
1756
1757 /* will free via device release */
1758 put_device(&hdev->dev);
1759}
1760EXPORT_SYMBOL(hci_free_dev);
1761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762/* Register HCI device */
1763int hci_register_dev(struct hci_dev *hdev)
1764{
David Herrmannb1b813d2012-04-22 14:39:58 +02001765 int id, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
David Herrmann010666a2012-01-07 15:47:07 +01001767 if (!hdev->open || !hdev->close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 return -EINVAL;
1769
Mat Martineau08add512011-11-02 16:18:36 -07001770 /* Do not allow HCI_AMP devices to register at index 0,
1771 * so the index can be used as the AMP controller ID.
1772 */
Sasha Levin3df92b32012-05-27 22:36:56 +02001773 switch (hdev->dev_type) {
1774 case HCI_BREDR:
1775 id = ida_simple_get(&hci_index_ida, 0, 0, GFP_KERNEL);
1776 break;
1777 case HCI_AMP:
1778 id = ida_simple_get(&hci_index_ida, 1, 0, GFP_KERNEL);
1779 break;
1780 default:
1781 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001783
Sasha Levin3df92b32012-05-27 22:36:56 +02001784 if (id < 0)
1785 return id;
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 sprintf(hdev->name, "hci%d", id);
1788 hdev->id = id;
Andrei Emeltchenko2d8b3a12012-04-16 16:32:04 +03001789
1790 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
1791
Sasha Levin3df92b32012-05-27 22:36:56 +02001792 write_lock(&hci_dev_list_lock);
1793 list_add(&hdev->list, &hci_dev_list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001794 write_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Gustavo F. Padovan32845eb2011-12-17 17:47:30 -02001796 hdev->workqueue = alloc_workqueue(hdev->name, WQ_HIGHPRI | WQ_UNBOUND |
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001797 WQ_MEM_RECLAIM, 1);
David Herrmann33ca9542011-10-08 14:58:49 +02001798 if (!hdev->workqueue) {
1799 error = -ENOMEM;
1800 goto err;
1801 }
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001802
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02001803 hdev->req_workqueue = alloc_workqueue(hdev->name,
1804 WQ_HIGHPRI | WQ_UNBOUND |
1805 WQ_MEM_RECLAIM, 1);
1806 if (!hdev->req_workqueue) {
1807 destroy_workqueue(hdev->workqueue);
1808 error = -ENOMEM;
1809 goto err;
1810 }
1811
David Herrmann33ca9542011-10-08 14:58:49 +02001812 error = hci_add_sysfs(hdev);
1813 if (error < 0)
1814 goto err_wqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001816 hdev->rfkill = rfkill_alloc(hdev->name, &hdev->dev,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001817 RFKILL_TYPE_BLUETOOTH, &hci_rfkill_ops,
1818 hdev);
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001819 if (hdev->rfkill) {
1820 if (rfkill_register(hdev->rfkill) < 0) {
1821 rfkill_destroy(hdev->rfkill);
1822 hdev->rfkill = NULL;
1823 }
1824 }
1825
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001826 set_bit(HCI_SETUP, &hdev->dev_flags);
Andrei Emeltchenkoce2be9a2012-06-29 15:07:00 +03001827
1828 if (hdev->dev_type != HCI_AMP)
1829 set_bit(HCI_AUTO_OFF, &hdev->dev_flags);
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 hci_notify(hdev, HCI_DEV_REG);
David Herrmanndc946bd2012-01-07 15:47:24 +01001832 hci_dev_hold(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Johan Hedberg19202572013-01-14 22:33:51 +02001834 queue_work(hdev->req_workqueue, &hdev->power_on);
Marcel Holtmannfbe96d62012-10-30 01:35:40 -07001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return id;
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001837
David Herrmann33ca9542011-10-08 14:58:49 +02001838err_wqueue:
1839 destroy_workqueue(hdev->workqueue);
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02001840 destroy_workqueue(hdev->req_workqueue);
David Herrmann33ca9542011-10-08 14:58:49 +02001841err:
Sasha Levin3df92b32012-05-27 22:36:56 +02001842 ida_simple_remove(&hci_index_ida, hdev->id);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001843 write_lock(&hci_dev_list_lock);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001844 list_del(&hdev->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001845 write_unlock(&hci_dev_list_lock);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001846
David Herrmann33ca9542011-10-08 14:58:49 +02001847 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848}
1849EXPORT_SYMBOL(hci_register_dev);
1850
1851/* Unregister HCI device */
David Herrmann59735632011-10-26 10:43:19 +02001852void hci_unregister_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
Sasha Levin3df92b32012-05-27 22:36:56 +02001854 int i, id;
Marcel Holtmannef222012007-07-11 06:42:04 +02001855
Marcel Holtmannc13854c2010-02-08 15:27:07 +01001856 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Johan Hovold94324962012-03-15 14:48:41 +01001858 set_bit(HCI_UNREGISTER, &hdev->dev_flags);
1859
Sasha Levin3df92b32012-05-27 22:36:56 +02001860 id = hdev->id;
1861
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001862 write_lock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 list_del(&hdev->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001864 write_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 hci_dev_do_close(hdev);
1867
Suraj Sumangalacd4c5392010-07-14 13:02:16 +05301868 for (i = 0; i < NUM_REASSEMBLY; i++)
Marcel Holtmannef222012007-07-11 06:42:04 +02001869 kfree_skb(hdev->reassembly[i]);
1870
Gustavo Padovanb9b5ef12012-11-21 00:50:21 -02001871 cancel_work_sync(&hdev->power_on);
1872
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001873 if (!test_bit(HCI_INIT, &hdev->flags) &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001874 !test_bit(HCI_SETUP, &hdev->dev_flags)) {
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001875 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02001876 mgmt_index_removed(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001877 hci_dev_unlock(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001878 }
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001879
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001880 /* mgmt_index_removed should take care of emptying the
1881 * pending list */
1882 BUG_ON(!list_empty(&hdev->mgmt_pending));
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 hci_notify(hdev, HCI_DEV_UNREG);
1885
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001886 if (hdev->rfkill) {
1887 rfkill_unregister(hdev->rfkill);
1888 rfkill_destroy(hdev->rfkill);
1889 }
1890
David Herrmannce242972011-10-08 14:58:48 +02001891 hci_del_sysfs(hdev);
Dave Young147e2d52008-03-05 18:45:59 -08001892
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001893 destroy_workqueue(hdev->workqueue);
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02001894 destroy_workqueue(hdev->req_workqueue);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001895
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001896 hci_dev_lock(hdev);
Johan Hedberge2e0cac2011-01-04 12:08:50 +02001897 hci_blacklist_clear(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001898 hci_uuids_clear(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001899 hci_link_keys_clear(hdev);
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03001900 hci_smp_ltks_clear(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01001901 hci_remote_oob_data_clear(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001902 hci_dev_unlock(hdev);
Johan Hedberge2e0cac2011-01-04 12:08:50 +02001903
David Herrmanndc946bd2012-01-07 15:47:24 +01001904 hci_dev_put(hdev);
Sasha Levin3df92b32012-05-27 22:36:56 +02001905
1906 ida_simple_remove(&hci_index_ida, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907}
1908EXPORT_SYMBOL(hci_unregister_dev);
1909
1910/* Suspend HCI device */
1911int hci_suspend_dev(struct hci_dev *hdev)
1912{
1913 hci_notify(hdev, HCI_DEV_SUSPEND);
1914 return 0;
1915}
1916EXPORT_SYMBOL(hci_suspend_dev);
1917
1918/* Resume HCI device */
1919int hci_resume_dev(struct hci_dev *hdev)
1920{
1921 hci_notify(hdev, HCI_DEV_RESUME);
1922 return 0;
1923}
1924EXPORT_SYMBOL(hci_resume_dev);
1925
Marcel Holtmann76bca882009-11-18 00:40:39 +01001926/* Receive frame from HCI drivers */
1927int hci_recv_frame(struct sk_buff *skb)
1928{
1929 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
1930 if (!hdev || (!test_bit(HCI_UP, &hdev->flags)
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001931 && !test_bit(HCI_INIT, &hdev->flags))) {
Marcel Holtmann76bca882009-11-18 00:40:39 +01001932 kfree_skb(skb);
1933 return -ENXIO;
1934 }
1935
1936 /* Incomming skb */
1937 bt_cb(skb)->incoming = 1;
1938
1939 /* Time stamp */
1940 __net_timestamp(skb);
1941
Marcel Holtmann76bca882009-11-18 00:40:39 +01001942 skb_queue_tail(&hdev->rx_q, skb);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04001943 queue_work(hdev->workqueue, &hdev->rx_work);
Marcel Holtmannc78ae282009-11-18 01:02:54 +01001944
Marcel Holtmann76bca882009-11-18 00:40:39 +01001945 return 0;
1946}
1947EXPORT_SYMBOL(hci_recv_frame);
1948
Suraj Sumangala33e882a2010-07-14 13:02:17 +05301949static int hci_reassembly(struct hci_dev *hdev, int type, void *data,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001950 int count, __u8 index)
Suraj Sumangala33e882a2010-07-14 13:02:17 +05301951{
1952 int len = 0;
1953 int hlen = 0;
1954 int remain = count;
1955 struct sk_buff *skb;
1956 struct bt_skb_cb *scb;
1957
1958 if ((type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT) ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001959 index >= NUM_REASSEMBLY)
Suraj Sumangala33e882a2010-07-14 13:02:17 +05301960 return -EILSEQ;
1961
1962 skb = hdev->reassembly[index];
1963
1964 if (!skb) {
1965 switch (type) {
1966 case HCI_ACLDATA_PKT:
1967 len = HCI_MAX_FRAME_SIZE;
1968 hlen = HCI_ACL_HDR_SIZE;
1969 break;
1970 case HCI_EVENT_PKT:
1971 len = HCI_MAX_EVENT_SIZE;
1972 hlen = HCI_EVENT_HDR_SIZE;
1973 break;
1974 case HCI_SCODATA_PKT:
1975 len = HCI_MAX_SCO_SIZE;
1976 hlen = HCI_SCO_HDR_SIZE;
1977 break;
1978 }
1979
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03001980 skb = bt_skb_alloc(len, GFP_ATOMIC);
Suraj Sumangala33e882a2010-07-14 13:02:17 +05301981 if (!skb)
1982 return -ENOMEM;
1983
1984 scb = (void *) skb->cb;
1985 scb->expect = hlen;
1986 scb->pkt_type = type;
1987
1988 skb->dev = (void *) hdev;
1989 hdev->reassembly[index] = skb;
1990 }
1991
1992 while (count) {
1993 scb = (void *) skb->cb;
Dan Carpenter89bb46d2012-02-28 09:57:59 +03001994 len = min_t(uint, scb->expect, count);
Suraj Sumangala33e882a2010-07-14 13:02:17 +05301995
1996 memcpy(skb_put(skb, len), data, len);
1997
1998 count -= len;
1999 data += len;
2000 scb->expect -= len;
2001 remain = count;
2002
2003 switch (type) {
2004 case HCI_EVENT_PKT:
2005 if (skb->len == HCI_EVENT_HDR_SIZE) {
2006 struct hci_event_hdr *h = hci_event_hdr(skb);
2007 scb->expect = h->plen;
2008
2009 if (skb_tailroom(skb) < scb->expect) {
2010 kfree_skb(skb);
2011 hdev->reassembly[index] = NULL;
2012 return -ENOMEM;
2013 }
2014 }
2015 break;
2016
2017 case HCI_ACLDATA_PKT:
2018 if (skb->len == HCI_ACL_HDR_SIZE) {
2019 struct hci_acl_hdr *h = hci_acl_hdr(skb);
2020 scb->expect = __le16_to_cpu(h->dlen);
2021
2022 if (skb_tailroom(skb) < scb->expect) {
2023 kfree_skb(skb);
2024 hdev->reassembly[index] = NULL;
2025 return -ENOMEM;
2026 }
2027 }
2028 break;
2029
2030 case HCI_SCODATA_PKT:
2031 if (skb->len == HCI_SCO_HDR_SIZE) {
2032 struct hci_sco_hdr *h = hci_sco_hdr(skb);
2033 scb->expect = h->dlen;
2034
2035 if (skb_tailroom(skb) < scb->expect) {
2036 kfree_skb(skb);
2037 hdev->reassembly[index] = NULL;
2038 return -ENOMEM;
2039 }
2040 }
2041 break;
2042 }
2043
2044 if (scb->expect == 0) {
2045 /* Complete frame */
2046
2047 bt_cb(skb)->pkt_type = type;
2048 hci_recv_frame(skb);
2049
2050 hdev->reassembly[index] = NULL;
2051 return remain;
2052 }
2053 }
2054
2055 return remain;
2056}
2057
Marcel Holtmannef222012007-07-11 06:42:04 +02002058int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count)
2059{
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302060 int rem = 0;
2061
Marcel Holtmannef222012007-07-11 06:42:04 +02002062 if (type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT)
2063 return -EILSEQ;
2064
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03002065 while (count) {
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03002066 rem = hci_reassembly(hdev, type, data, count, type - 1);
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302067 if (rem < 0)
2068 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02002069
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302070 data += (count - rem);
2071 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00002072 }
Marcel Holtmannef222012007-07-11 06:42:04 +02002073
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05302074 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02002075}
2076EXPORT_SYMBOL(hci_recv_fragment);
2077
Suraj Sumangala99811512010-07-14 13:02:19 +05302078#define STREAM_REASSEMBLY 0
2079
2080int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count)
2081{
2082 int type;
2083 int rem = 0;
2084
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03002085 while (count) {
Suraj Sumangala99811512010-07-14 13:02:19 +05302086 struct sk_buff *skb = hdev->reassembly[STREAM_REASSEMBLY];
2087
2088 if (!skb) {
2089 struct { char type; } *pkt;
2090
2091 /* Start of the frame */
2092 pkt = data;
2093 type = pkt->type;
2094
2095 data++;
2096 count--;
2097 } else
2098 type = bt_cb(skb)->pkt_type;
2099
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03002100 rem = hci_reassembly(hdev, type, data, count,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002101 STREAM_REASSEMBLY);
Suraj Sumangala99811512010-07-14 13:02:19 +05302102 if (rem < 0)
2103 return rem;
2104
2105 data += (count - rem);
2106 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00002107 }
Suraj Sumangala99811512010-07-14 13:02:19 +05302108
2109 return rem;
2110}
2111EXPORT_SYMBOL(hci_recv_stream_fragment);
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113/* ---- Interface to upper protocols ---- */
2114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115int hci_register_cb(struct hci_cb *cb)
2116{
2117 BT_DBG("%p name %s", cb, cb->name);
2118
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002119 write_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 list_add(&cb->list, &hci_cb_list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002121 write_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123 return 0;
2124}
2125EXPORT_SYMBOL(hci_register_cb);
2126
2127int hci_unregister_cb(struct hci_cb *cb)
2128{
2129 BT_DBG("%p name %s", cb, cb->name);
2130
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002131 write_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 list_del(&cb->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002133 write_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
2135 return 0;
2136}
2137EXPORT_SYMBOL(hci_unregister_cb);
2138
2139static int hci_send_frame(struct sk_buff *skb)
2140{
2141 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
2142
2143 if (!hdev) {
2144 kfree_skb(skb);
2145 return -ENODEV;
2146 }
2147
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002148 BT_DBG("%s type %d len %d", hdev->name, bt_cb(skb)->pkt_type, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Marcel Holtmanncd82e612012-02-20 20:34:38 +01002150 /* Time stamp */
2151 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Marcel Holtmanncd82e612012-02-20 20:34:38 +01002153 /* Send copy to monitor */
2154 hci_send_to_monitor(hdev, skb);
2155
2156 if (atomic_read(&hdev->promisc)) {
2157 /* Send copy to the sockets */
Marcel Holtmann470fe1b2012-02-20 14:50:30 +01002158 hci_send_to_sock(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 }
2160
2161 /* Get rid of skb owner, prior to sending to the driver. */
2162 skb_orphan(skb);
2163
2164 return hdev->send(skb);
2165}
2166
2167/* Send HCI command */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002168int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, void *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169{
2170 int len = HCI_COMMAND_HDR_SIZE + plen;
2171 struct hci_command_hdr *hdr;
2172 struct sk_buff *skb;
2173
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03002174 BT_DBG("%s opcode 0x%4.4x plen %d", hdev->name, opcode, plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176 skb = bt_skb_alloc(len, GFP_ATOMIC);
2177 if (!skb) {
Marcel Holtmannef222012007-07-11 06:42:04 +02002178 BT_ERR("%s no memory for command", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 return -ENOMEM;
2180 }
2181
2182 hdr = (struct hci_command_hdr *) skb_put(skb, HCI_COMMAND_HDR_SIZE);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002183 hdr->opcode = cpu_to_le16(opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 hdr->plen = plen;
2185
2186 if (plen)
2187 memcpy(skb_put(skb, plen), param, plen);
2188
2189 BT_DBG("skb len %d", skb->len);
2190
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002191 bt_cb(skb)->pkt_type = HCI_COMMAND_PKT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 skb->dev = (void *) hdev;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002193
Johan Hedberga5040ef2011-01-10 13:28:59 +02002194 if (test_bit(HCI_INIT, &hdev->flags))
2195 hdev->init_last_cmd = opcode;
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 skb_queue_tail(&hdev->cmd_q, skb);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002198 queue_work(hdev->workqueue, &hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200 return 0;
2201}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
2203/* Get data from the previously sent command */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002204void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205{
2206 struct hci_command_hdr *hdr;
2207
2208 if (!hdev->sent_cmd)
2209 return NULL;
2210
2211 hdr = (void *) hdev->sent_cmd->data;
2212
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002213 if (hdr->opcode != cpu_to_le16(opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 return NULL;
2215
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03002216 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
2218 return hdev->sent_cmd->data + HCI_COMMAND_HDR_SIZE;
2219}
2220
2221/* Send ACL data */
2222static void hci_add_acl_hdr(struct sk_buff *skb, __u16 handle, __u16 flags)
2223{
2224 struct hci_acl_hdr *hdr;
2225 int len = skb->len;
2226
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002227 skb_push(skb, HCI_ACL_HDR_SIZE);
2228 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002229 hdr = (struct hci_acl_hdr *)skb_transport_header(skb);
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07002230 hdr->handle = cpu_to_le16(hci_handle_pack(handle, flags));
2231 hdr->dlen = cpu_to_le16(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232}
2233
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002234static void hci_queue_acl(struct hci_chan *chan, struct sk_buff_head *queue,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002235 struct sk_buff *skb, __u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002237 struct hci_conn *conn = chan->conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 struct hci_dev *hdev = conn->hdev;
2239 struct sk_buff *list;
2240
Gustavo Padovan087bfd92012-05-11 13:16:11 -03002241 skb->len = skb_headlen(skb);
2242 skb->data_len = 0;
2243
2244 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
Andrei Emeltchenko204a6e52012-10-15 11:58:39 +03002245
2246 switch (hdev->dev_type) {
2247 case HCI_BREDR:
2248 hci_add_acl_hdr(skb, conn->handle, flags);
2249 break;
2250 case HCI_AMP:
2251 hci_add_acl_hdr(skb, chan->handle, flags);
2252 break;
2253 default:
2254 BT_ERR("%s unknown dev_type %d", hdev->name, hdev->dev_type);
2255 return;
2256 }
Gustavo Padovan087bfd92012-05-11 13:16:11 -03002257
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002258 list = skb_shinfo(skb)->frag_list;
2259 if (!list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 /* Non fragmented */
2261 BT_DBG("%s nonfrag skb %p len %d", hdev->name, skb, skb->len);
2262
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002263 skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 } else {
2265 /* Fragmented */
2266 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
2267
2268 skb_shinfo(skb)->frag_list = NULL;
2269
2270 /* Queue all fragments atomically */
Gustavo F. Padovanaf3e6352011-12-22 16:35:05 -02002271 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002273 __skb_queue_tail(queue, skb);
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02002274
2275 flags &= ~ACL_START;
2276 flags |= ACL_CONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 do {
2278 skb = list; list = list->next;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 skb->dev = (void *) hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002281 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02002282 hci_add_acl_hdr(skb, conn->handle, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
2284 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
2285
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002286 __skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 } while (list);
2288
Gustavo F. Padovanaf3e6352011-12-22 16:35:05 -02002289 spin_unlock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002291}
2292
2293void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags)
2294{
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002295 struct hci_dev *hdev = chan->conn->hdev;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002296
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03002297 BT_DBG("%s chan %p flags 0x%4.4x", hdev->name, chan, flags);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002298
2299 skb->dev = (void *) hdev;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002300
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03002301 hci_queue_acl(chan, &chan->data_q, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002303 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
2306/* Send SCO data */
Gustavo F. Padovan0d861d82010-05-01 16:15:35 -03002307void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
2309 struct hci_dev *hdev = conn->hdev;
2310 struct hci_sco_hdr hdr;
2311
2312 BT_DBG("%s len %d", hdev->name, skb->len);
2313
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07002314 hdr.handle = cpu_to_le16(conn->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 hdr.dlen = skb->len;
2316
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002317 skb_push(skb, HCI_SCO_HDR_SIZE);
2318 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002319 memcpy(skb_transport_header(skb), &hdr, HCI_SCO_HDR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
2321 skb->dev = (void *) hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002322 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 skb_queue_tail(&conn->data_q, skb);
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002325 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328/* ---- HCI TX task (outgoing data) ---- */
2329
2330/* HCI Connection scheduler */
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002331static struct hci_conn *hci_low_sent(struct hci_dev *hdev, __u8 type,
2332 int *quote)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333{
2334 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002335 struct hci_conn *conn = NULL, *c;
Mikel Astizabc5de82012-04-11 08:48:47 +02002336 unsigned int num = 0, min = ~0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002338 /* We don't have to lock device here. Connections are always
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 * added and removed with TX task disabled. */
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002340
2341 rcu_read_lock();
2342
2343 list_for_each_entry_rcu(c, &h->list, list) {
Marcel Holtmann769be972008-07-14 20:13:49 +02002344 if (c->type != type || skb_queue_empty(&c->data_q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 continue;
Marcel Holtmann769be972008-07-14 20:13:49 +02002346
2347 if (c->state != BT_CONNECTED && c->state != BT_CONFIG)
2348 continue;
2349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 num++;
2351
2352 if (c->sent < min) {
2353 min = c->sent;
2354 conn = c;
2355 }
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002356
2357 if (hci_conn_num(hdev, type) == num)
2358 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 }
2360
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002361 rcu_read_unlock();
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 if (conn) {
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002364 int cnt, q;
2365
2366 switch (conn->type) {
2367 case ACL_LINK:
2368 cnt = hdev->acl_cnt;
2369 break;
2370 case SCO_LINK:
2371 case ESCO_LINK:
2372 cnt = hdev->sco_cnt;
2373 break;
2374 case LE_LINK:
2375 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
2376 break;
2377 default:
2378 cnt = 0;
2379 BT_ERR("Unknown link type");
2380 }
2381
2382 q = cnt / num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 *quote = q ? q : 1;
2384 } else
2385 *quote = 0;
2386
2387 BT_DBG("conn %p quote %d", conn, *quote);
2388 return conn;
2389}
2390
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002391static void hci_link_tx_to(struct hci_dev *hdev, __u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392{
2393 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002394 struct hci_conn *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Ville Tervobae1f5d92011-02-10 22:38:53 -03002396 BT_ERR("%s link tx timeout", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002398 rcu_read_lock();
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 /* Kill stalled connections */
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002401 list_for_each_entry_rcu(c, &h->list, list) {
Ville Tervobae1f5d92011-02-10 22:38:53 -03002402 if (c->type == type && c->sent) {
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03002403 BT_ERR("%s killing stalled connection %pMR",
2404 hdev->name, &c->dst);
Andrei Emeltchenko7490c6c2012-06-01 16:18:25 +03002405 hci_acl_disconn(c, HCI_ERROR_REMOTE_USER_TERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 }
2407 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002408
2409 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410}
2411
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002412static struct hci_chan *hci_chan_sent(struct hci_dev *hdev, __u8 type,
2413 int *quote)
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002414{
2415 struct hci_conn_hash *h = &hdev->conn_hash;
2416 struct hci_chan *chan = NULL;
Mikel Astizabc5de82012-04-11 08:48:47 +02002417 unsigned int num = 0, min = ~0, cur_prio = 0;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002418 struct hci_conn *conn;
2419 int cnt, q, conn_num = 0;
2420
2421 BT_DBG("%s", hdev->name);
2422
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002423 rcu_read_lock();
2424
2425 list_for_each_entry_rcu(conn, &h->list, list) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002426 struct hci_chan *tmp;
2427
2428 if (conn->type != type)
2429 continue;
2430
2431 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
2432 continue;
2433
2434 conn_num++;
2435
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -02002436 list_for_each_entry_rcu(tmp, &conn->chan_list, list) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002437 struct sk_buff *skb;
2438
2439 if (skb_queue_empty(&tmp->data_q))
2440 continue;
2441
2442 skb = skb_peek(&tmp->data_q);
2443 if (skb->priority < cur_prio)
2444 continue;
2445
2446 if (skb->priority > cur_prio) {
2447 num = 0;
2448 min = ~0;
2449 cur_prio = skb->priority;
2450 }
2451
2452 num++;
2453
2454 if (conn->sent < min) {
2455 min = conn->sent;
2456 chan = tmp;
2457 }
2458 }
2459
2460 if (hci_conn_num(hdev, type) == conn_num)
2461 break;
2462 }
2463
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002464 rcu_read_unlock();
2465
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002466 if (!chan)
2467 return NULL;
2468
2469 switch (chan->conn->type) {
2470 case ACL_LINK:
2471 cnt = hdev->acl_cnt;
2472 break;
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03002473 case AMP_LINK:
2474 cnt = hdev->block_cnt;
2475 break;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002476 case SCO_LINK:
2477 case ESCO_LINK:
2478 cnt = hdev->sco_cnt;
2479 break;
2480 case LE_LINK:
2481 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
2482 break;
2483 default:
2484 cnt = 0;
2485 BT_ERR("Unknown link type");
2486 }
2487
2488 q = cnt / num;
2489 *quote = q ? q : 1;
2490 BT_DBG("chan %p quote %d", chan, *quote);
2491 return chan;
2492}
2493
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002494static void hci_prio_recalculate(struct hci_dev *hdev, __u8 type)
2495{
2496 struct hci_conn_hash *h = &hdev->conn_hash;
2497 struct hci_conn *conn;
2498 int num = 0;
2499
2500 BT_DBG("%s", hdev->name);
2501
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002502 rcu_read_lock();
2503
2504 list_for_each_entry_rcu(conn, &h->list, list) {
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002505 struct hci_chan *chan;
2506
2507 if (conn->type != type)
2508 continue;
2509
2510 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
2511 continue;
2512
2513 num++;
2514
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -02002515 list_for_each_entry_rcu(chan, &conn->chan_list, list) {
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002516 struct sk_buff *skb;
2517
2518 if (chan->sent) {
2519 chan->sent = 0;
2520 continue;
2521 }
2522
2523 if (skb_queue_empty(&chan->data_q))
2524 continue;
2525
2526 skb = skb_peek(&chan->data_q);
2527 if (skb->priority >= HCI_PRIO_MAX - 1)
2528 continue;
2529
2530 skb->priority = HCI_PRIO_MAX - 1;
2531
2532 BT_DBG("chan %p skb %p promoted to %d", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002533 skb->priority);
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002534 }
2535
2536 if (hci_conn_num(hdev, type) == num)
2537 break;
2538 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002539
2540 rcu_read_unlock();
2541
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002542}
2543
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002544static inline int __get_blocks(struct hci_dev *hdev, struct sk_buff *skb)
2545{
2546 /* Calculate count of blocks used by this packet */
2547 return DIV_ROUND_UP(skb->len - HCI_ACL_HDR_SIZE, hdev->block_len);
2548}
2549
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002550static void __check_timeout(struct hci_dev *hdev, unsigned int cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 if (!test_bit(HCI_RAW, &hdev->flags)) {
2553 /* ACL tx timeout must be longer than maximum
2554 * link supervision timeout (40.9 seconds) */
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02002555 if (!cnt && time_after(jiffies, hdev->acl_last_tx +
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +03002556 HCI_ACL_TX_TIMEOUT))
Ville Tervobae1f5d92011-02-10 22:38:53 -03002557 hci_link_tx_to(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 }
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02002559}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002561static void hci_sched_acl_pkt(struct hci_dev *hdev)
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02002562{
2563 unsigned int cnt = hdev->acl_cnt;
2564 struct hci_chan *chan;
2565 struct sk_buff *skb;
2566 int quote;
2567
2568 __check_timeout(hdev, cnt);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002569
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002570 while (hdev->acl_cnt &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002571 (chan = hci_chan_sent(hdev, ACL_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002572 u32 priority = (skb_peek(&chan->data_q))->priority;
2573 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002574 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002575 skb->len, skb->priority);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002576
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002577 /* Stop if priority has changed */
2578 if (skb->priority < priority)
2579 break;
2580
2581 skb = skb_dequeue(&chan->data_q);
2582
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002583 hci_conn_enter_active_mode(chan->conn,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002584 bt_cb(skb)->force_active);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 hci_send_frame(skb);
2587 hdev->acl_last_tx = jiffies;
2588
2589 hdev->acl_cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002590 chan->sent++;
2591 chan->conn->sent++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 }
2593 }
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002594
2595 if (cnt != hdev->acl_cnt)
2596 hci_prio_recalculate(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597}
2598
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002599static void hci_sched_acl_blk(struct hci_dev *hdev)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002600{
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02002601 unsigned int cnt = hdev->block_cnt;
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002602 struct hci_chan *chan;
2603 struct sk_buff *skb;
2604 int quote;
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03002605 u8 type;
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002606
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02002607 __check_timeout(hdev, cnt);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002608
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03002609 BT_DBG("%s", hdev->name);
2610
2611 if (hdev->dev_type == HCI_AMP)
2612 type = AMP_LINK;
2613 else
2614 type = ACL_LINK;
2615
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002616 while (hdev->block_cnt > 0 &&
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03002617 (chan = hci_chan_sent(hdev, type, &quote))) {
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002618 u32 priority = (skb_peek(&chan->data_q))->priority;
2619 while (quote > 0 && (skb = skb_peek(&chan->data_q))) {
2620 int blocks;
2621
2622 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002623 skb->len, skb->priority);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002624
2625 /* Stop if priority has changed */
2626 if (skb->priority < priority)
2627 break;
2628
2629 skb = skb_dequeue(&chan->data_q);
2630
2631 blocks = __get_blocks(hdev, skb);
2632 if (blocks > hdev->block_cnt)
2633 return;
2634
2635 hci_conn_enter_active_mode(chan->conn,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002636 bt_cb(skb)->force_active);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002637
2638 hci_send_frame(skb);
2639 hdev->acl_last_tx = jiffies;
2640
2641 hdev->block_cnt -= blocks;
2642 quote -= blocks;
2643
2644 chan->sent += blocks;
2645 chan->conn->sent += blocks;
2646 }
2647 }
2648
2649 if (cnt != hdev->block_cnt)
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03002650 hci_prio_recalculate(hdev, type);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002651}
2652
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002653static void hci_sched_acl(struct hci_dev *hdev)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002654{
2655 BT_DBG("%s", hdev->name);
2656
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03002657 /* No ACL link over BR/EDR controller */
2658 if (!hci_conn_num(hdev, ACL_LINK) && hdev->dev_type == HCI_BREDR)
2659 return;
2660
2661 /* No AMP link over AMP controller */
2662 if (!hci_conn_num(hdev, AMP_LINK) && hdev->dev_type == HCI_AMP)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02002663 return;
2664
2665 switch (hdev->flow_ctl_mode) {
2666 case HCI_FLOW_CTL_MODE_PACKET_BASED:
2667 hci_sched_acl_pkt(hdev);
2668 break;
2669
2670 case HCI_FLOW_CTL_MODE_BLOCK_BASED:
2671 hci_sched_acl_blk(hdev);
2672 break;
2673 }
2674}
2675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676/* Schedule SCO */
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002677static void hci_sched_sco(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678{
2679 struct hci_conn *conn;
2680 struct sk_buff *skb;
2681 int quote;
2682
2683 BT_DBG("%s", hdev->name);
2684
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002685 if (!hci_conn_num(hdev, SCO_LINK))
2686 return;
2687
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, SCO_LINK, &quote))) {
2689 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
2690 BT_DBG("skb %p len %d", skb, skb->len);
2691 hci_send_frame(skb);
2692
2693 conn->sent++;
2694 if (conn->sent == ~0)
2695 conn->sent = 0;
2696 }
2697 }
2698}
2699
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002700static void hci_sched_esco(struct hci_dev *hdev)
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002701{
2702 struct hci_conn *conn;
2703 struct sk_buff *skb;
2704 int quote;
2705
2706 BT_DBG("%s", hdev->name);
2707
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002708 if (!hci_conn_num(hdev, ESCO_LINK))
2709 return;
2710
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002711 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, ESCO_LINK,
2712 &quote))) {
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002713 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
2714 BT_DBG("skb %p len %d", skb, skb->len);
2715 hci_send_frame(skb);
2716
2717 conn->sent++;
2718 if (conn->sent == ~0)
2719 conn->sent = 0;
2720 }
2721 }
2722}
2723
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002724static void hci_sched_le(struct hci_dev *hdev)
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002725{
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002726 struct hci_chan *chan;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002727 struct sk_buff *skb;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002728 int quote, cnt, tmp;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002729
2730 BT_DBG("%s", hdev->name);
2731
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002732 if (!hci_conn_num(hdev, LE_LINK))
2733 return;
2734
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002735 if (!test_bit(HCI_RAW, &hdev->flags)) {
2736 /* LE tx timeout must be longer than maximum
2737 * link supervision timeout (40.9 seconds) */
Ville Tervobae1f5d92011-02-10 22:38:53 -03002738 if (!hdev->le_cnt && hdev->le_pkts &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002739 time_after(jiffies, hdev->le_last_tx + HZ * 45))
Ville Tervobae1f5d92011-02-10 22:38:53 -03002740 hci_link_tx_to(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002741 }
2742
2743 cnt = hdev->le_pkts ? hdev->le_cnt : hdev->acl_cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002744 tmp = cnt;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002745 while (cnt && (chan = hci_chan_sent(hdev, LE_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002746 u32 priority = (skb_peek(&chan->data_q))->priority;
2747 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002748 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002749 skb->len, skb->priority);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002750
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002751 /* Stop if priority has changed */
2752 if (skb->priority < priority)
2753 break;
2754
2755 skb = skb_dequeue(&chan->data_q);
2756
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002757 hci_send_frame(skb);
2758 hdev->le_last_tx = jiffies;
2759
2760 cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002761 chan->sent++;
2762 chan->conn->sent++;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002763 }
2764 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002765
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002766 if (hdev->le_pkts)
2767 hdev->le_cnt = cnt;
2768 else
2769 hdev->acl_cnt = cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002770
2771 if (cnt != tmp)
2772 hci_prio_recalculate(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002773}
2774
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002775static void hci_tx_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776{
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002777 struct hci_dev *hdev = container_of(work, struct hci_dev, tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 struct sk_buff *skb;
2779
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002780 BT_DBG("%s acl %d sco %d le %d", hdev->name, hdev->acl_cnt,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002781 hdev->sco_cnt, hdev->le_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
2783 /* Schedule queues and send stuff to HCI driver */
2784
2785 hci_sched_acl(hdev);
2786
2787 hci_sched_sco(hdev);
2788
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002789 hci_sched_esco(hdev);
2790
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002791 hci_sched_le(hdev);
2792
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 /* Send next queued raw (unknown type) packet */
2794 while ((skb = skb_dequeue(&hdev->raw_q)))
2795 hci_send_frame(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796}
2797
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002798/* ----- HCI RX task (incoming data processing) ----- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
2800/* ACL data packet */
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002801static void hci_acldata_packet(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802{
2803 struct hci_acl_hdr *hdr = (void *) skb->data;
2804 struct hci_conn *conn;
2805 __u16 handle, flags;
2806
2807 skb_pull(skb, HCI_ACL_HDR_SIZE);
2808
2809 handle = __le16_to_cpu(hdr->handle);
2810 flags = hci_flags(handle);
2811 handle = hci_handle(handle);
2812
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03002813 BT_DBG("%s len %d handle 0x%4.4x flags 0x%4.4x", hdev->name, skb->len,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002814 handle, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
2816 hdev->stat.acl_rx++;
2817
2818 hci_dev_lock(hdev);
2819 conn = hci_conn_hash_lookup_handle(hdev, handle);
2820 hci_dev_unlock(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002821
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 if (conn) {
Mat Martineau65983fc2011-12-13 15:06:02 -08002823 hci_conn_enter_active_mode(conn, BT_POWER_FORCE_ACTIVE_OFF);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002824
Johan Hedberg671267b2012-05-12 16:11:50 -03002825 hci_dev_lock(hdev);
2826 if (test_bit(HCI_MGMT, &hdev->dev_flags) &&
2827 !test_and_set_bit(HCI_CONN_MGMT_CONNECTED, &conn->flags))
2828 mgmt_device_connected(hdev, &conn->dst, conn->type,
2829 conn->dst_type, 0, NULL, 0,
2830 conn->dev_class);
2831 hci_dev_unlock(hdev);
2832
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 /* Send to upper protocol */
Ulisses Furquim686ebf22011-12-21 10:11:33 -02002834 l2cap_recv_acldata(conn, skb, flags);
2835 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002837 BT_ERR("%s ACL packet for unknown connection handle %d",
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002838 hdev->name, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 }
2840
2841 kfree_skb(skb);
2842}
2843
2844/* SCO data packet */
Gustavo Padovan6039aa732012-05-23 04:04:18 -03002845static void hci_scodata_packet(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
2847 struct hci_sco_hdr *hdr = (void *) skb->data;
2848 struct hci_conn *conn;
2849 __u16 handle;
2850
2851 skb_pull(skb, HCI_SCO_HDR_SIZE);
2852
2853 handle = __le16_to_cpu(hdr->handle);
2854
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03002855 BT_DBG("%s len %d handle 0x%4.4x", hdev->name, skb->len, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
2857 hdev->stat.sco_rx++;
2858
2859 hci_dev_lock(hdev);
2860 conn = hci_conn_hash_lookup_handle(hdev, handle);
2861 hci_dev_unlock(hdev);
2862
2863 if (conn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 /* Send to upper protocol */
Ulisses Furquim686ebf22011-12-21 10:11:33 -02002865 sco_recv_scodata(conn, skb);
2866 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002868 BT_ERR("%s SCO packet for unknown connection handle %d",
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002869 hdev->name, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 }
2871
2872 kfree_skb(skb);
2873}
2874
Marcel Holtmannb78752c2010-08-08 23:06:53 -04002875static void hci_rx_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876{
Marcel Holtmannb78752c2010-08-08 23:06:53 -04002877 struct hci_dev *hdev = container_of(work, struct hci_dev, rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 struct sk_buff *skb;
2879
2880 BT_DBG("%s", hdev->name);
2881
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 while ((skb = skb_dequeue(&hdev->rx_q))) {
Marcel Holtmanncd82e612012-02-20 20:34:38 +01002883 /* Send copy to monitor */
2884 hci_send_to_monitor(hdev, skb);
2885
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 if (atomic_read(&hdev->promisc)) {
2887 /* Send copy to the sockets */
Marcel Holtmann470fe1b2012-02-20 14:50:30 +01002888 hci_send_to_sock(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 }
2890
2891 if (test_bit(HCI_RAW, &hdev->flags)) {
2892 kfree_skb(skb);
2893 continue;
2894 }
2895
2896 if (test_bit(HCI_INIT, &hdev->flags)) {
2897 /* Don't process data packets in this states. */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002898 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 case HCI_ACLDATA_PKT:
2900 case HCI_SCODATA_PKT:
2901 kfree_skb(skb);
2902 continue;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 }
2905
2906 /* Process frame */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002907 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 case HCI_EVENT_PKT:
Marcel Holtmannb78752c2010-08-08 23:06:53 -04002909 BT_DBG("%s Event packet", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 hci_event_packet(hdev, skb);
2911 break;
2912
2913 case HCI_ACLDATA_PKT:
2914 BT_DBG("%s ACL data packet", hdev->name);
2915 hci_acldata_packet(hdev, skb);
2916 break;
2917
2918 case HCI_SCODATA_PKT:
2919 BT_DBG("%s SCO data packet", hdev->name);
2920 hci_scodata_packet(hdev, skb);
2921 break;
2922
2923 default:
2924 kfree_skb(skb);
2925 break;
2926 }
2927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928}
2929
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002930static void hci_cmd_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931{
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002932 struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 struct sk_buff *skb;
2934
Andrei Emeltchenko21047862012-07-10 15:27:47 +03002935 BT_DBG("%s cmd_cnt %d cmd queued %d", hdev->name,
2936 atomic_read(&hdev->cmd_cnt), skb_queue_len(&hdev->cmd_q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 /* Send queued commands */
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02002939 if (atomic_read(&hdev->cmd_cnt)) {
2940 skb = skb_dequeue(&hdev->cmd_q);
2941 if (!skb)
2942 return;
2943
Wei Yongjun7585b972009-02-25 18:29:52 +08002944 kfree_skb(hdev->sent_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002946 hdev->sent_cmd = skb_clone(skb, GFP_ATOMIC);
2947 if (hdev->sent_cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 atomic_dec(&hdev->cmd_cnt);
2949 hci_send_frame(skb);
Szymon Janc7bdb8a52011-07-26 22:46:54 +02002950 if (test_bit(HCI_RESET, &hdev->flags))
2951 del_timer(&hdev->cmd_timer);
2952 else
2953 mod_timer(&hdev->cmd_timer,
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +03002954 jiffies + HCI_CMD_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 } else {
2956 skb_queue_head(&hdev->cmd_q, skb);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002957 queue_work(hdev->workqueue, &hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 }
2959 }
2960}
Andre Guedes2519a1f2011-11-07 11:45:24 -03002961
2962int hci_do_inquiry(struct hci_dev *hdev, u8 length)
2963{
2964 /* General inquiry access code (GIAC) */
2965 u8 lap[3] = { 0x33, 0x8b, 0x9e };
2966 struct hci_cp_inquiry cp;
2967
2968 BT_DBG("%s", hdev->name);
2969
2970 if (test_bit(HCI_INQUIRY, &hdev->flags))
2971 return -EINPROGRESS;
2972
Johan Hedberg46632622012-01-02 16:06:08 +02002973 inquiry_cache_flush(hdev);
2974
Andre Guedes2519a1f2011-11-07 11:45:24 -03002975 memset(&cp, 0, sizeof(cp));
2976 memcpy(&cp.lap, lap, sizeof(cp.lap));
2977 cp.length = length;
2978
2979 return hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp);
2980}
Andre Guedes023d50492011-11-04 14:16:52 -03002981
2982int hci_cancel_inquiry(struct hci_dev *hdev)
2983{
2984 BT_DBG("%s", hdev->name);
2985
2986 if (!test_bit(HCI_INQUIRY, &hdev->flags))
Andre Guedes7537e5c2012-03-20 00:13:38 -03002987 return -EALREADY;
Andre Guedes023d50492011-11-04 14:16:52 -03002988
2989 return hci_send_cmd(hdev, HCI_OP_INQUIRY_CANCEL, 0, NULL);
2990}
Andre Guedes31f79562012-04-24 21:02:53 -03002991
2992u8 bdaddr_to_le(u8 bdaddr_type)
2993{
2994 switch (bdaddr_type) {
2995 case BDADDR_LE_PUBLIC:
2996 return ADDR_LE_DEV_PUBLIC;
2997
2998 default:
2999 /* Fallback to LE Random address type */
3000 return ADDR_LE_DEV_RANDOM;
3001 }
3002}