163fb88836174d8ec364f2975825a1f49af7420f
[platform/kernel/linux-starfive.git] / net / bluetooth / hci_sync.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * BlueZ - Bluetooth protocol stack for Linux
4  *
5  * Copyright (C) 2021 Intel Corporation
6  * Copyright 2023 NXP
7  */
8
9 #include <linux/property.h>
10
11 #include <net/bluetooth/bluetooth.h>
12 #include <net/bluetooth/hci_core.h>
13 #include <net/bluetooth/mgmt.h>
14
15 #include "hci_request.h"
16 #include "hci_codec.h"
17 #include "hci_debugfs.h"
18 #include "smp.h"
19 #include "eir.h"
20 #include "msft.h"
21 #include "aosp.h"
22 #include "leds.h"
23
24 static void hci_cmd_sync_complete(struct hci_dev *hdev, u8 result, u16 opcode,
25                                   struct sk_buff *skb)
26 {
27         bt_dev_dbg(hdev, "result 0x%2.2x", result);
28
29         if (hdev->req_status != HCI_REQ_PEND)
30                 return;
31
32         hdev->req_result = result;
33         hdev->req_status = HCI_REQ_DONE;
34
35         if (skb) {
36                 struct sock *sk = hci_skb_sk(skb);
37
38                 /* Drop sk reference if set */
39                 if (sk)
40                         sock_put(sk);
41
42                 hdev->req_skb = skb_get(skb);
43         }
44
45         wake_up_interruptible(&hdev->req_wait_q);
46 }
47
48 static struct sk_buff *hci_cmd_sync_alloc(struct hci_dev *hdev, u16 opcode,
49                                           u32 plen, const void *param,
50                                           struct sock *sk)
51 {
52         int len = HCI_COMMAND_HDR_SIZE + plen;
53         struct hci_command_hdr *hdr;
54         struct sk_buff *skb;
55
56         skb = bt_skb_alloc(len, GFP_ATOMIC);
57         if (!skb)
58                 return NULL;
59
60         hdr = skb_put(skb, HCI_COMMAND_HDR_SIZE);
61         hdr->opcode = cpu_to_le16(opcode);
62         hdr->plen   = plen;
63
64         if (plen)
65                 skb_put_data(skb, param, plen);
66
67         bt_dev_dbg(hdev, "skb len %d", skb->len);
68
69         hci_skb_pkt_type(skb) = HCI_COMMAND_PKT;
70         hci_skb_opcode(skb) = opcode;
71
72         /* Grab a reference if command needs to be associated with a sock (e.g.
73          * likely mgmt socket that initiated the command).
74          */
75         if (sk) {
76                 hci_skb_sk(skb) = sk;
77                 sock_hold(sk);
78         }
79
80         return skb;
81 }
82
83 static void hci_cmd_sync_add(struct hci_request *req, u16 opcode, u32 plen,
84                              const void *param, u8 event, struct sock *sk)
85 {
86         struct hci_dev *hdev = req->hdev;
87         struct sk_buff *skb;
88
89         bt_dev_dbg(hdev, "opcode 0x%4.4x plen %d", opcode, plen);
90
91         /* If an error occurred during request building, there is no point in
92          * queueing the HCI command. We can simply return.
93          */
94         if (req->err)
95                 return;
96
97         skb = hci_cmd_sync_alloc(hdev, opcode, plen, param, sk);
98         if (!skb) {
99                 bt_dev_err(hdev, "no memory for command (opcode 0x%4.4x)",
100                            opcode);
101                 req->err = -ENOMEM;
102                 return;
103         }
104
105         if (skb_queue_empty(&req->cmd_q))
106                 bt_cb(skb)->hci.req_flags |= HCI_REQ_START;
107
108         hci_skb_event(skb) = event;
109
110         skb_queue_tail(&req->cmd_q, skb);
111 }
112
113 static int hci_cmd_sync_run(struct hci_request *req)
114 {
115         struct hci_dev *hdev = req->hdev;
116         struct sk_buff *skb;
117         unsigned long flags;
118
119         bt_dev_dbg(hdev, "length %u", skb_queue_len(&req->cmd_q));
120
121         /* If an error occurred during request building, remove all HCI
122          * commands queued on the HCI request queue.
123          */
124         if (req->err) {
125                 skb_queue_purge(&req->cmd_q);
126                 return req->err;
127         }
128
129         /* Do not allow empty requests */
130         if (skb_queue_empty(&req->cmd_q))
131                 return -ENODATA;
132
133         skb = skb_peek_tail(&req->cmd_q);
134         bt_cb(skb)->hci.req_complete_skb = hci_cmd_sync_complete;
135         bt_cb(skb)->hci.req_flags |= HCI_REQ_SKB;
136
137         spin_lock_irqsave(&hdev->cmd_q.lock, flags);
138         skb_queue_splice_tail(&req->cmd_q, &hdev->cmd_q);
139         spin_unlock_irqrestore(&hdev->cmd_q.lock, flags);
140
141         queue_work(hdev->workqueue, &hdev->cmd_work);
142
143         return 0;
144 }
145
146 /* This function requires the caller holds hdev->req_lock. */
147 struct sk_buff *__hci_cmd_sync_sk(struct hci_dev *hdev, u16 opcode, u32 plen,
148                                   const void *param, u8 event, u32 timeout,
149                                   struct sock *sk)
150 {
151         struct hci_request req;
152         struct sk_buff *skb;
153         int err = 0;
154
155         bt_dev_dbg(hdev, "Opcode 0x%4.4x", opcode);
156
157         hci_req_init(&req, hdev);
158
159         hci_cmd_sync_add(&req, opcode, plen, param, event, sk);
160
161         hdev->req_status = HCI_REQ_PEND;
162
163         err = hci_cmd_sync_run(&req);
164         if (err < 0)
165                 return ERR_PTR(err);
166
167         err = wait_event_interruptible_timeout(hdev->req_wait_q,
168                                                hdev->req_status != HCI_REQ_PEND,
169                                                timeout);
170
171         if (err == -ERESTARTSYS)
172                 return ERR_PTR(-EINTR);
173
174         switch (hdev->req_status) {
175         case HCI_REQ_DONE:
176                 err = -bt_to_errno(hdev->req_result);
177                 break;
178
179         case HCI_REQ_CANCELED:
180                 err = -hdev->req_result;
181                 break;
182
183         default:
184                 err = -ETIMEDOUT;
185                 break;
186         }
187
188         hdev->req_status = 0;
189         hdev->req_result = 0;
190         skb = hdev->req_skb;
191         hdev->req_skb = NULL;
192
193         bt_dev_dbg(hdev, "end: err %d", err);
194
195         if (err < 0) {
196                 kfree_skb(skb);
197                 return ERR_PTR(err);
198         }
199
200         return skb;
201 }
202 EXPORT_SYMBOL(__hci_cmd_sync_sk);
203
204 /* This function requires the caller holds hdev->req_lock. */
205 struct sk_buff *__hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen,
206                                const void *param, u32 timeout)
207 {
208         return __hci_cmd_sync_sk(hdev, opcode, plen, param, 0, timeout, NULL);
209 }
210 EXPORT_SYMBOL(__hci_cmd_sync);
211
212 /* Send HCI command and wait for command complete event */
213 struct sk_buff *hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen,
214                              const void *param, u32 timeout)
215 {
216         struct sk_buff *skb;
217
218         if (!test_bit(HCI_UP, &hdev->flags))
219                 return ERR_PTR(-ENETDOWN);
220
221         bt_dev_dbg(hdev, "opcode 0x%4.4x plen %d", opcode, plen);
222
223         hci_req_sync_lock(hdev);
224         skb = __hci_cmd_sync(hdev, opcode, plen, param, timeout);
225         hci_req_sync_unlock(hdev);
226
227         return skb;
228 }
229 EXPORT_SYMBOL(hci_cmd_sync);
230
231 /* This function requires the caller holds hdev->req_lock. */
232 struct sk_buff *__hci_cmd_sync_ev(struct hci_dev *hdev, u16 opcode, u32 plen,
233                                   const void *param, u8 event, u32 timeout)
234 {
235         return __hci_cmd_sync_sk(hdev, opcode, plen, param, event, timeout,
236                                  NULL);
237 }
238 EXPORT_SYMBOL(__hci_cmd_sync_ev);
239
240 /* This function requires the caller holds hdev->req_lock. */
241 int __hci_cmd_sync_status_sk(struct hci_dev *hdev, u16 opcode, u32 plen,
242                              const void *param, u8 event, u32 timeout,
243                              struct sock *sk)
244 {
245         struct sk_buff *skb;
246         u8 status;
247
248         skb = __hci_cmd_sync_sk(hdev, opcode, plen, param, event, timeout, sk);
249         if (IS_ERR(skb)) {
250                 if (!event)
251                         bt_dev_err(hdev, "Opcode 0x%4.4x failed: %ld", opcode,
252                                    PTR_ERR(skb));
253                 return PTR_ERR(skb);
254         }
255
256         /* If command return a status event skb will be set to NULL as there are
257          * no parameters, in case of failure IS_ERR(skb) would have be set to
258          * the actual error would be found with PTR_ERR(skb).
259          */
260         if (!skb)
261                 return 0;
262
263         status = skb->data[0];
264
265         kfree_skb(skb);
266
267         return status;
268 }
269 EXPORT_SYMBOL(__hci_cmd_sync_status_sk);
270
271 int __hci_cmd_sync_status(struct hci_dev *hdev, u16 opcode, u32 plen,
272                           const void *param, u32 timeout)
273 {
274         return __hci_cmd_sync_status_sk(hdev, opcode, plen, param, 0, timeout,
275                                         NULL);
276 }
277 EXPORT_SYMBOL(__hci_cmd_sync_status);
278
279 static void hci_cmd_sync_work(struct work_struct *work)
280 {
281         struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_sync_work);
282
283         bt_dev_dbg(hdev, "");
284
285         /* Dequeue all entries and run them */
286         while (1) {
287                 struct hci_cmd_sync_work_entry *entry;
288
289                 mutex_lock(&hdev->cmd_sync_work_lock);
290                 entry = list_first_entry_or_null(&hdev->cmd_sync_work_list,
291                                                  struct hci_cmd_sync_work_entry,
292                                                  list);
293                 if (entry)
294                         list_del(&entry->list);
295                 mutex_unlock(&hdev->cmd_sync_work_lock);
296
297                 if (!entry)
298                         break;
299
300                 bt_dev_dbg(hdev, "entry %p", entry);
301
302                 if (entry->func) {
303                         int err;
304
305                         hci_req_sync_lock(hdev);
306                         err = entry->func(hdev, entry->data);
307                         if (entry->destroy)
308                                 entry->destroy(hdev, entry->data, err);
309                         hci_req_sync_unlock(hdev);
310                 }
311
312                 kfree(entry);
313         }
314 }
315
316 static void hci_cmd_sync_cancel_work(struct work_struct *work)
317 {
318         struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_sync_cancel_work);
319
320         cancel_delayed_work_sync(&hdev->cmd_timer);
321         cancel_delayed_work_sync(&hdev->ncmd_timer);
322         atomic_set(&hdev->cmd_cnt, 1);
323
324         wake_up_interruptible(&hdev->req_wait_q);
325 }
326
327 static int hci_scan_disable_sync(struct hci_dev *hdev);
328 static int scan_disable_sync(struct hci_dev *hdev, void *data)
329 {
330         return hci_scan_disable_sync(hdev);
331 }
332
333 static int hci_inquiry_sync(struct hci_dev *hdev, u8 length);
334 static int interleaved_inquiry_sync(struct hci_dev *hdev, void *data)
335 {
336         return hci_inquiry_sync(hdev, DISCOV_INTERLEAVED_INQUIRY_LEN);
337 }
338
339 static void le_scan_disable(struct work_struct *work)
340 {
341         struct hci_dev *hdev = container_of(work, struct hci_dev,
342                                             le_scan_disable.work);
343         int status;
344
345         bt_dev_dbg(hdev, "");
346         hci_dev_lock(hdev);
347
348         if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
349                 goto _return;
350
351         cancel_delayed_work(&hdev->le_scan_restart);
352
353         status = hci_cmd_sync_queue(hdev, scan_disable_sync, NULL, NULL);
354         if (status) {
355                 bt_dev_err(hdev, "failed to disable LE scan: %d", status);
356                 goto _return;
357         }
358
359         hdev->discovery.scan_start = 0;
360
361         /* If we were running LE only scan, change discovery state. If
362          * we were running both LE and BR/EDR inquiry simultaneously,
363          * and BR/EDR inquiry is already finished, stop discovery,
364          * otherwise BR/EDR inquiry will stop discovery when finished.
365          * If we will resolve remote device name, do not change
366          * discovery state.
367          */
368
369         if (hdev->discovery.type == DISCOV_TYPE_LE)
370                 goto discov_stopped;
371
372         if (hdev->discovery.type != DISCOV_TYPE_INTERLEAVED)
373                 goto _return;
374
375         if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks)) {
376                 if (!test_bit(HCI_INQUIRY, &hdev->flags) &&
377                     hdev->discovery.state != DISCOVERY_RESOLVING)
378                         goto discov_stopped;
379
380                 goto _return;
381         }
382
383         status = hci_cmd_sync_queue(hdev, interleaved_inquiry_sync, NULL, NULL);
384         if (status) {
385                 bt_dev_err(hdev, "inquiry failed: status %d", status);
386                 goto discov_stopped;
387         }
388
389         goto _return;
390
391 discov_stopped:
392         hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
393
394 _return:
395         hci_dev_unlock(hdev);
396 }
397
398 static int hci_le_set_scan_enable_sync(struct hci_dev *hdev, u8 val,
399                                        u8 filter_dup);
400 static int hci_le_scan_restart_sync(struct hci_dev *hdev)
401 {
402         /* If controller is not scanning we are done. */
403         if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
404                 return 0;
405
406         if (hdev->scanning_paused) {
407                 bt_dev_dbg(hdev, "Scanning is paused for suspend");
408                 return 0;
409         }
410
411         hci_le_set_scan_enable_sync(hdev, LE_SCAN_DISABLE, 0x00);
412         return hci_le_set_scan_enable_sync(hdev, LE_SCAN_ENABLE,
413                                            LE_SCAN_FILTER_DUP_ENABLE);
414 }
415
416 static void le_scan_restart(struct work_struct *work)
417 {
418         struct hci_dev *hdev = container_of(work, struct hci_dev,
419                                             le_scan_restart.work);
420         unsigned long timeout, duration, scan_start, now;
421         int status;
422
423         bt_dev_dbg(hdev, "");
424
425         status = hci_le_scan_restart_sync(hdev);
426         if (status) {
427                 bt_dev_err(hdev, "failed to restart LE scan: status %d",
428                            status);
429                 return;
430         }
431
432         hci_dev_lock(hdev);
433
434         if (!test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks) ||
435             !hdev->discovery.scan_start)
436                 goto unlock;
437
438         /* When the scan was started, hdev->le_scan_disable has been queued
439          * after duration from scan_start. During scan restart this job
440          * has been canceled, and we need to queue it again after proper
441          * timeout, to make sure that scan does not run indefinitely.
442          */
443         duration = hdev->discovery.scan_duration;
444         scan_start = hdev->discovery.scan_start;
445         now = jiffies;
446         if (now - scan_start <= duration) {
447                 int elapsed;
448
449                 if (now >= scan_start)
450                         elapsed = now - scan_start;
451                 else
452                         elapsed = ULONG_MAX - scan_start + now;
453
454                 timeout = duration - elapsed;
455         } else {
456                 timeout = 0;
457         }
458
459         queue_delayed_work(hdev->req_workqueue,
460                            &hdev->le_scan_disable, timeout);
461
462 unlock:
463         hci_dev_unlock(hdev);
464 }
465
466 static int reenable_adv_sync(struct hci_dev *hdev, void *data)
467 {
468         bt_dev_dbg(hdev, "");
469
470         if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
471             list_empty(&hdev->adv_instances))
472                 return 0;
473
474         if (hdev->cur_adv_instance) {
475                 return hci_schedule_adv_instance_sync(hdev,
476                                                       hdev->cur_adv_instance,
477                                                       true);
478         } else {
479                 if (ext_adv_capable(hdev)) {
480                         hci_start_ext_adv_sync(hdev, 0x00);
481                 } else {
482                         hci_update_adv_data_sync(hdev, 0x00);
483                         hci_update_scan_rsp_data_sync(hdev, 0x00);
484                         hci_enable_advertising_sync(hdev);
485                 }
486         }
487
488         return 0;
489 }
490
491 static void reenable_adv(struct work_struct *work)
492 {
493         struct hci_dev *hdev = container_of(work, struct hci_dev,
494                                             reenable_adv_work);
495         int status;
496
497         bt_dev_dbg(hdev, "");
498
499         hci_dev_lock(hdev);
500
501         status = hci_cmd_sync_queue(hdev, reenable_adv_sync, NULL, NULL);
502         if (status)
503                 bt_dev_err(hdev, "failed to reenable ADV: %d", status);
504
505         hci_dev_unlock(hdev);
506 }
507
508 static void cancel_adv_timeout(struct hci_dev *hdev)
509 {
510         if (hdev->adv_instance_timeout) {
511                 hdev->adv_instance_timeout = 0;
512                 cancel_delayed_work(&hdev->adv_instance_expire);
513         }
514 }
515
516 /* For a single instance:
517  * - force == true: The instance will be removed even when its remaining
518  *   lifetime is not zero.
519  * - force == false: the instance will be deactivated but kept stored unless
520  *   the remaining lifetime is zero.
521  *
522  * For instance == 0x00:
523  * - force == true: All instances will be removed regardless of their timeout
524  *   setting.
525  * - force == false: Only instances that have a timeout will be removed.
526  */
527 int hci_clear_adv_instance_sync(struct hci_dev *hdev, struct sock *sk,
528                                 u8 instance, bool force)
529 {
530         struct adv_info *adv_instance, *n, *next_instance = NULL;
531         int err;
532         u8 rem_inst;
533
534         /* Cancel any timeout concerning the removed instance(s). */
535         if (!instance || hdev->cur_adv_instance == instance)
536                 cancel_adv_timeout(hdev);
537
538         /* Get the next instance to advertise BEFORE we remove
539          * the current one. This can be the same instance again
540          * if there is only one instance.
541          */
542         if (instance && hdev->cur_adv_instance == instance)
543                 next_instance = hci_get_next_instance(hdev, instance);
544
545         if (instance == 0x00) {
546                 list_for_each_entry_safe(adv_instance, n, &hdev->adv_instances,
547                                          list) {
548                         if (!(force || adv_instance->timeout))
549                                 continue;
550
551                         rem_inst = adv_instance->instance;
552                         err = hci_remove_adv_instance(hdev, rem_inst);
553                         if (!err)
554                                 mgmt_advertising_removed(sk, hdev, rem_inst);
555                 }
556         } else {
557                 adv_instance = hci_find_adv_instance(hdev, instance);
558
559                 if (force || (adv_instance && adv_instance->timeout &&
560                               !adv_instance->remaining_time)) {
561                         /* Don't advertise a removed instance. */
562                         if (next_instance &&
563                             next_instance->instance == instance)
564                                 next_instance = NULL;
565
566                         err = hci_remove_adv_instance(hdev, instance);
567                         if (!err)
568                                 mgmt_advertising_removed(sk, hdev, instance);
569                 }
570         }
571
572         if (!hdev_is_powered(hdev) || hci_dev_test_flag(hdev, HCI_ADVERTISING))
573                 return 0;
574
575         if (next_instance && !ext_adv_capable(hdev))
576                 return hci_schedule_adv_instance_sync(hdev,
577                                                       next_instance->instance,
578                                                       false);
579
580         return 0;
581 }
582
583 static int adv_timeout_expire_sync(struct hci_dev *hdev, void *data)
584 {
585         u8 instance = *(u8 *)data;
586
587         kfree(data);
588
589         hci_clear_adv_instance_sync(hdev, NULL, instance, false);
590
591         if (list_empty(&hdev->adv_instances))
592                 return hci_disable_advertising_sync(hdev);
593
594         return 0;
595 }
596
597 static void adv_timeout_expire(struct work_struct *work)
598 {
599         u8 *inst_ptr;
600         struct hci_dev *hdev = container_of(work, struct hci_dev,
601                                             adv_instance_expire.work);
602
603         bt_dev_dbg(hdev, "");
604
605         hci_dev_lock(hdev);
606
607         hdev->adv_instance_timeout = 0;
608
609         if (hdev->cur_adv_instance == 0x00)
610                 goto unlock;
611
612         inst_ptr = kmalloc(1, GFP_KERNEL);
613         if (!inst_ptr)
614                 goto unlock;
615
616         *inst_ptr = hdev->cur_adv_instance;
617         hci_cmd_sync_queue(hdev, adv_timeout_expire_sync, inst_ptr, NULL);
618
619 unlock:
620         hci_dev_unlock(hdev);
621 }
622
623 void hci_cmd_sync_init(struct hci_dev *hdev)
624 {
625         INIT_WORK(&hdev->cmd_sync_work, hci_cmd_sync_work);
626         INIT_LIST_HEAD(&hdev->cmd_sync_work_list);
627         mutex_init(&hdev->cmd_sync_work_lock);
628         mutex_init(&hdev->unregister_lock);
629
630         INIT_WORK(&hdev->cmd_sync_cancel_work, hci_cmd_sync_cancel_work);
631         INIT_WORK(&hdev->reenable_adv_work, reenable_adv);
632         INIT_DELAYED_WORK(&hdev->le_scan_disable, le_scan_disable);
633         INIT_DELAYED_WORK(&hdev->le_scan_restart, le_scan_restart);
634         INIT_DELAYED_WORK(&hdev->adv_instance_expire, adv_timeout_expire);
635 }
636
637 void hci_cmd_sync_clear(struct hci_dev *hdev)
638 {
639         struct hci_cmd_sync_work_entry *entry, *tmp;
640
641         cancel_work_sync(&hdev->cmd_sync_work);
642         cancel_work_sync(&hdev->reenable_adv_work);
643
644         mutex_lock(&hdev->cmd_sync_work_lock);
645         list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list) {
646                 if (entry->destroy)
647                         entry->destroy(hdev, entry->data, -ECANCELED);
648
649                 list_del(&entry->list);
650                 kfree(entry);
651         }
652         mutex_unlock(&hdev->cmd_sync_work_lock);
653 }
654
655 void __hci_cmd_sync_cancel(struct hci_dev *hdev, int err)
656 {
657         bt_dev_dbg(hdev, "err 0x%2.2x", err);
658
659         if (hdev->req_status == HCI_REQ_PEND) {
660                 hdev->req_result = err;
661                 hdev->req_status = HCI_REQ_CANCELED;
662
663                 cancel_delayed_work_sync(&hdev->cmd_timer);
664                 cancel_delayed_work_sync(&hdev->ncmd_timer);
665                 atomic_set(&hdev->cmd_cnt, 1);
666
667                 wake_up_interruptible(&hdev->req_wait_q);
668         }
669 }
670
671 void hci_cmd_sync_cancel(struct hci_dev *hdev, int err)
672 {
673         bt_dev_dbg(hdev, "err 0x%2.2x", err);
674
675         if (hdev->req_status == HCI_REQ_PEND) {
676                 hdev->req_result = err;
677                 hdev->req_status = HCI_REQ_CANCELED;
678
679                 queue_work(hdev->workqueue, &hdev->cmd_sync_cancel_work);
680         }
681 }
682 EXPORT_SYMBOL(hci_cmd_sync_cancel);
683
684 /* Submit HCI command to be run in as cmd_sync_work:
685  *
686  * - hdev must _not_ be unregistered
687  */
688 int hci_cmd_sync_submit(struct hci_dev *hdev, hci_cmd_sync_work_func_t func,
689                         void *data, hci_cmd_sync_work_destroy_t destroy)
690 {
691         struct hci_cmd_sync_work_entry *entry;
692         int err = 0;
693
694         mutex_lock(&hdev->unregister_lock);
695         if (hci_dev_test_flag(hdev, HCI_UNREGISTER)) {
696                 err = -ENODEV;
697                 goto unlock;
698         }
699
700         entry = kmalloc(sizeof(*entry), GFP_KERNEL);
701         if (!entry) {
702                 err = -ENOMEM;
703                 goto unlock;
704         }
705         entry->func = func;
706         entry->data = data;
707         entry->destroy = destroy;
708
709         mutex_lock(&hdev->cmd_sync_work_lock);
710         list_add_tail(&entry->list, &hdev->cmd_sync_work_list);
711         mutex_unlock(&hdev->cmd_sync_work_lock);
712
713         queue_work(hdev->req_workqueue, &hdev->cmd_sync_work);
714
715 unlock:
716         mutex_unlock(&hdev->unregister_lock);
717         return err;
718 }
719 EXPORT_SYMBOL(hci_cmd_sync_submit);
720
721 /* Queue HCI command:
722  *
723  * - hdev must be running
724  */
725 int hci_cmd_sync_queue(struct hci_dev *hdev, hci_cmd_sync_work_func_t func,
726                        void *data, hci_cmd_sync_work_destroy_t destroy)
727 {
728         /* Only queue command if hdev is running which means it had been opened
729          * and is either on init phase or is already up.
730          */
731         if (!test_bit(HCI_RUNNING, &hdev->flags))
732                 return -ENETDOWN;
733
734         return hci_cmd_sync_submit(hdev, func, data, destroy);
735 }
736 EXPORT_SYMBOL(hci_cmd_sync_queue);
737
738 int hci_update_eir_sync(struct hci_dev *hdev)
739 {
740         struct hci_cp_write_eir cp;
741
742         bt_dev_dbg(hdev, "");
743
744         if (!hdev_is_powered(hdev))
745                 return 0;
746
747         if (!lmp_ext_inq_capable(hdev))
748                 return 0;
749
750         if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
751                 return 0;
752
753         if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
754                 return 0;
755
756         memset(&cp, 0, sizeof(cp));
757
758         eir_create(hdev, cp.data);
759
760         if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
761                 return 0;
762
763         memcpy(hdev->eir, cp.data, sizeof(cp.data));
764
765         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp,
766                                      HCI_CMD_TIMEOUT);
767 }
768
769 static u8 get_service_classes(struct hci_dev *hdev)
770 {
771         struct bt_uuid *uuid;
772         u8 val = 0;
773
774         list_for_each_entry(uuid, &hdev->uuids, list)
775                 val |= uuid->svc_hint;
776
777         return val;
778 }
779
780 int hci_update_class_sync(struct hci_dev *hdev)
781 {
782         u8 cod[3];
783
784         bt_dev_dbg(hdev, "");
785
786         if (!hdev_is_powered(hdev))
787                 return 0;
788
789         if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
790                 return 0;
791
792         if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
793                 return 0;
794
795         cod[0] = hdev->minor_class;
796         cod[1] = hdev->major_class;
797         cod[2] = get_service_classes(hdev);
798
799         if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
800                 cod[1] |= 0x20;
801
802         if (memcmp(cod, hdev->dev_class, 3) == 0)
803                 return 0;
804
805         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_CLASS_OF_DEV,
806                                      sizeof(cod), cod, HCI_CMD_TIMEOUT);
807 }
808
809 static bool is_advertising_allowed(struct hci_dev *hdev, bool connectable)
810 {
811         /* If there is no connection we are OK to advertise. */
812         if (hci_conn_num(hdev, LE_LINK) == 0)
813                 return true;
814
815         /* Check le_states if there is any connection in peripheral role. */
816         if (hdev->conn_hash.le_num_peripheral > 0) {
817                 /* Peripheral connection state and non connectable mode
818                  * bit 20.
819                  */
820                 if (!connectable && !(hdev->le_states[2] & 0x10))
821                         return false;
822
823                 /* Peripheral connection state and connectable mode bit 38
824                  * and scannable bit 21.
825                  */
826                 if (connectable && (!(hdev->le_states[4] & 0x40) ||
827                                     !(hdev->le_states[2] & 0x20)))
828                         return false;
829         }
830
831         /* Check le_states if there is any connection in central role. */
832         if (hci_conn_num(hdev, LE_LINK) != hdev->conn_hash.le_num_peripheral) {
833                 /* Central connection state and non connectable mode bit 18. */
834                 if (!connectable && !(hdev->le_states[2] & 0x02))
835                         return false;
836
837                 /* Central connection state and connectable mode bit 35 and
838                  * scannable 19.
839                  */
840                 if (connectable && (!(hdev->le_states[4] & 0x08) ||
841                                     !(hdev->le_states[2] & 0x08)))
842                         return false;
843         }
844
845         return true;
846 }
847
848 static bool adv_use_rpa(struct hci_dev *hdev, uint32_t flags)
849 {
850         /* If privacy is not enabled don't use RPA */
851         if (!hci_dev_test_flag(hdev, HCI_PRIVACY))
852                 return false;
853
854         /* If basic privacy mode is enabled use RPA */
855         if (!hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY))
856                 return true;
857
858         /* If limited privacy mode is enabled don't use RPA if we're
859          * both discoverable and bondable.
860          */
861         if ((flags & MGMT_ADV_FLAG_DISCOV) &&
862             hci_dev_test_flag(hdev, HCI_BONDABLE))
863                 return false;
864
865         /* We're neither bondable nor discoverable in the limited
866          * privacy mode, therefore use RPA.
867          */
868         return true;
869 }
870
871 static int hci_set_random_addr_sync(struct hci_dev *hdev, bdaddr_t *rpa)
872 {
873         /* If we're advertising or initiating an LE connection we can't
874          * go ahead and change the random address at this time. This is
875          * because the eventual initiator address used for the
876          * subsequently created connection will be undefined (some
877          * controllers use the new address and others the one we had
878          * when the operation started).
879          *
880          * In this kind of scenario skip the update and let the random
881          * address be updated at the next cycle.
882          */
883         if (hci_dev_test_flag(hdev, HCI_LE_ADV) ||
884             hci_lookup_le_connect(hdev)) {
885                 bt_dev_dbg(hdev, "Deferring random address update");
886                 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
887                 return 0;
888         }
889
890         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_RANDOM_ADDR,
891                                      6, rpa, HCI_CMD_TIMEOUT);
892 }
893
894 int hci_update_random_address_sync(struct hci_dev *hdev, bool require_privacy,
895                                    bool rpa, u8 *own_addr_type)
896 {
897         int err;
898
899         /* If privacy is enabled use a resolvable private address. If
900          * current RPA has expired or there is something else than
901          * the current RPA in use, then generate a new one.
902          */
903         if (rpa) {
904                 /* If Controller supports LL Privacy use own address type is
905                  * 0x03
906                  */
907                 if (use_ll_privacy(hdev))
908                         *own_addr_type = ADDR_LE_DEV_RANDOM_RESOLVED;
909                 else
910                         *own_addr_type = ADDR_LE_DEV_RANDOM;
911
912                 /* Check if RPA is valid */
913                 if (rpa_valid(hdev))
914                         return 0;
915
916                 err = smp_generate_rpa(hdev, hdev->irk, &hdev->rpa);
917                 if (err < 0) {
918                         bt_dev_err(hdev, "failed to generate new RPA");
919                         return err;
920                 }
921
922                 err = hci_set_random_addr_sync(hdev, &hdev->rpa);
923                 if (err)
924                         return err;
925
926                 return 0;
927         }
928
929         /* In case of required privacy without resolvable private address,
930          * use an non-resolvable private address. This is useful for active
931          * scanning and non-connectable advertising.
932          */
933         if (require_privacy) {
934                 bdaddr_t nrpa;
935
936                 while (true) {
937                         /* The non-resolvable private address is generated
938                          * from random six bytes with the two most significant
939                          * bits cleared.
940                          */
941                         get_random_bytes(&nrpa, 6);
942                         nrpa.b[5] &= 0x3f;
943
944                         /* The non-resolvable private address shall not be
945                          * equal to the public address.
946                          */
947                         if (bacmp(&hdev->bdaddr, &nrpa))
948                                 break;
949                 }
950
951                 *own_addr_type = ADDR_LE_DEV_RANDOM;
952
953                 return hci_set_random_addr_sync(hdev, &nrpa);
954         }
955
956         /* If forcing static address is in use or there is no public
957          * address use the static address as random address (but skip
958          * the HCI command if the current random address is already the
959          * static one.
960          *
961          * In case BR/EDR has been disabled on a dual-mode controller
962          * and a static address has been configured, then use that
963          * address instead of the public BR/EDR address.
964          */
965         if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
966             !bacmp(&hdev->bdaddr, BDADDR_ANY) ||
967             (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
968              bacmp(&hdev->static_addr, BDADDR_ANY))) {
969                 *own_addr_type = ADDR_LE_DEV_RANDOM;
970                 if (bacmp(&hdev->static_addr, &hdev->random_addr))
971                         return hci_set_random_addr_sync(hdev,
972                                                         &hdev->static_addr);
973                 return 0;
974         }
975
976         /* Neither privacy nor static address is being used so use a
977          * public address.
978          */
979         *own_addr_type = ADDR_LE_DEV_PUBLIC;
980
981         return 0;
982 }
983
984 static int hci_disable_ext_adv_instance_sync(struct hci_dev *hdev, u8 instance)
985 {
986         struct hci_cp_le_set_ext_adv_enable *cp;
987         struct hci_cp_ext_adv_set *set;
988         u8 data[sizeof(*cp) + sizeof(*set) * 1];
989         u8 size;
990
991         /* If request specifies an instance that doesn't exist, fail */
992         if (instance > 0) {
993                 struct adv_info *adv;
994
995                 adv = hci_find_adv_instance(hdev, instance);
996                 if (!adv)
997                         return -EINVAL;
998
999                 /* If not enabled there is nothing to do */
1000                 if (!adv->enabled)
1001                         return 0;
1002         }
1003
1004         memset(data, 0, sizeof(data));
1005
1006         cp = (void *)data;
1007         set = (void *)cp->data;
1008
1009         /* Instance 0x00 indicates all advertising instances will be disabled */
1010         cp->num_of_sets = !!instance;
1011         cp->enable = 0x00;
1012
1013         set->handle = instance;
1014
1015         size = sizeof(*cp) + sizeof(*set) * cp->num_of_sets;
1016
1017         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_ENABLE,
1018                                      size, data, HCI_CMD_TIMEOUT);
1019 }
1020
1021 static int hci_set_adv_set_random_addr_sync(struct hci_dev *hdev, u8 instance,
1022                                             bdaddr_t *random_addr)
1023 {
1024         struct hci_cp_le_set_adv_set_rand_addr cp;
1025         int err;
1026
1027         if (!instance) {
1028                 /* Instance 0x00 doesn't have an adv_info, instead it uses
1029                  * hdev->random_addr to track its address so whenever it needs
1030                  * to be updated this also set the random address since
1031                  * hdev->random_addr is shared with scan state machine.
1032                  */
1033                 err = hci_set_random_addr_sync(hdev, random_addr);
1034                 if (err)
1035                         return err;
1036         }
1037
1038         memset(&cp, 0, sizeof(cp));
1039
1040         cp.handle = instance;
1041         bacpy(&cp.bdaddr, random_addr);
1042
1043         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_SET_RAND_ADDR,
1044                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1045 }
1046
1047 int hci_setup_ext_adv_instance_sync(struct hci_dev *hdev, u8 instance)
1048 {
1049         struct hci_cp_le_set_ext_adv_params cp;
1050         bool connectable;
1051         u32 flags;
1052         bdaddr_t random_addr;
1053         u8 own_addr_type;
1054         int err;
1055         struct adv_info *adv;
1056         bool secondary_adv;
1057
1058         if (instance > 0) {
1059                 adv = hci_find_adv_instance(hdev, instance);
1060                 if (!adv)
1061                         return -EINVAL;
1062         } else {
1063                 adv = NULL;
1064         }
1065
1066         /* Updating parameters of an active instance will return a
1067          * Command Disallowed error, so we must first disable the
1068          * instance if it is active.
1069          */
1070         if (adv && !adv->pending) {
1071                 err = hci_disable_ext_adv_instance_sync(hdev, instance);
1072                 if (err)
1073                         return err;
1074         }
1075
1076         flags = hci_adv_instance_flags(hdev, instance);
1077
1078         /* If the "connectable" instance flag was not set, then choose between
1079          * ADV_IND and ADV_NONCONN_IND based on the global connectable setting.
1080          */
1081         connectable = (flags & MGMT_ADV_FLAG_CONNECTABLE) ||
1082                       mgmt_get_connectable(hdev);
1083
1084         if (!is_advertising_allowed(hdev, connectable))
1085                 return -EPERM;
1086
1087         /* Set require_privacy to true only when non-connectable
1088          * advertising is used. In that case it is fine to use a
1089          * non-resolvable private address.
1090          */
1091         err = hci_get_random_address(hdev, !connectable,
1092                                      adv_use_rpa(hdev, flags), adv,
1093                                      &own_addr_type, &random_addr);
1094         if (err < 0)
1095                 return err;
1096
1097         memset(&cp, 0, sizeof(cp));
1098
1099         if (adv) {
1100                 hci_cpu_to_le24(adv->min_interval, cp.min_interval);
1101                 hci_cpu_to_le24(adv->max_interval, cp.max_interval);
1102                 cp.tx_power = adv->tx_power;
1103         } else {
1104                 hci_cpu_to_le24(hdev->le_adv_min_interval, cp.min_interval);
1105                 hci_cpu_to_le24(hdev->le_adv_max_interval, cp.max_interval);
1106                 cp.tx_power = HCI_ADV_TX_POWER_NO_PREFERENCE;
1107         }
1108
1109         secondary_adv = (flags & MGMT_ADV_FLAG_SEC_MASK);
1110
1111         if (connectable) {
1112                 if (secondary_adv)
1113                         cp.evt_properties = cpu_to_le16(LE_EXT_ADV_CONN_IND);
1114                 else
1115                         cp.evt_properties = cpu_to_le16(LE_LEGACY_ADV_IND);
1116         } else if (hci_adv_instance_is_scannable(hdev, instance) ||
1117                    (flags & MGMT_ADV_PARAM_SCAN_RSP)) {
1118                 if (secondary_adv)
1119                         cp.evt_properties = cpu_to_le16(LE_EXT_ADV_SCAN_IND);
1120                 else
1121                         cp.evt_properties = cpu_to_le16(LE_LEGACY_ADV_SCAN_IND);
1122         } else {
1123                 if (secondary_adv)
1124                         cp.evt_properties = cpu_to_le16(LE_EXT_ADV_NON_CONN_IND);
1125                 else
1126                         cp.evt_properties = cpu_to_le16(LE_LEGACY_NONCONN_IND);
1127         }
1128
1129         /* If Own_Address_Type equals 0x02 or 0x03, the Peer_Address parameter
1130          * contains the peer’s Identity Address and the Peer_Address_Type
1131          * parameter contains the peer’s Identity Type (i.e., 0x00 or 0x01).
1132          * These parameters are used to locate the corresponding local IRK in
1133          * the resolving list; this IRK is used to generate their own address
1134          * used in the advertisement.
1135          */
1136         if (own_addr_type == ADDR_LE_DEV_RANDOM_RESOLVED)
1137                 hci_copy_identity_address(hdev, &cp.peer_addr,
1138                                           &cp.peer_addr_type);
1139
1140         cp.own_addr_type = own_addr_type;
1141         cp.channel_map = hdev->le_adv_channel_map;
1142         cp.handle = instance;
1143
1144         if (flags & MGMT_ADV_FLAG_SEC_2M) {
1145                 cp.primary_phy = HCI_ADV_PHY_1M;
1146                 cp.secondary_phy = HCI_ADV_PHY_2M;
1147         } else if (flags & MGMT_ADV_FLAG_SEC_CODED) {
1148                 cp.primary_phy = HCI_ADV_PHY_CODED;
1149                 cp.secondary_phy = HCI_ADV_PHY_CODED;
1150         } else {
1151                 /* In all other cases use 1M */
1152                 cp.primary_phy = HCI_ADV_PHY_1M;
1153                 cp.secondary_phy = HCI_ADV_PHY_1M;
1154         }
1155
1156         err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_PARAMS,
1157                                     sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1158         if (err)
1159                 return err;
1160
1161         if ((own_addr_type == ADDR_LE_DEV_RANDOM ||
1162              own_addr_type == ADDR_LE_DEV_RANDOM_RESOLVED) &&
1163             bacmp(&random_addr, BDADDR_ANY)) {
1164                 /* Check if random address need to be updated */
1165                 if (adv) {
1166                         if (!bacmp(&random_addr, &adv->random_addr))
1167                                 return 0;
1168                 } else {
1169                         if (!bacmp(&random_addr, &hdev->random_addr))
1170                                 return 0;
1171                 }
1172
1173                 return hci_set_adv_set_random_addr_sync(hdev, instance,
1174                                                         &random_addr);
1175         }
1176
1177         return 0;
1178 }
1179
1180 static int hci_set_ext_scan_rsp_data_sync(struct hci_dev *hdev, u8 instance)
1181 {
1182         struct {
1183                 struct hci_cp_le_set_ext_scan_rsp_data cp;
1184                 u8 data[HCI_MAX_EXT_AD_LENGTH];
1185         } pdu;
1186         u8 len;
1187         struct adv_info *adv = NULL;
1188         int err;
1189
1190         memset(&pdu, 0, sizeof(pdu));
1191
1192         if (instance) {
1193                 adv = hci_find_adv_instance(hdev, instance);
1194                 if (!adv || !adv->scan_rsp_changed)
1195                         return 0;
1196         }
1197
1198         len = eir_create_scan_rsp(hdev, instance, pdu.data);
1199
1200         pdu.cp.handle = instance;
1201         pdu.cp.length = len;
1202         pdu.cp.operation = LE_SET_ADV_DATA_OP_COMPLETE;
1203         pdu.cp.frag_pref = LE_SET_ADV_DATA_NO_FRAG;
1204
1205         err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_SCAN_RSP_DATA,
1206                                     sizeof(pdu.cp) + len, &pdu.cp,
1207                                     HCI_CMD_TIMEOUT);
1208         if (err)
1209                 return err;
1210
1211         if (adv) {
1212                 adv->scan_rsp_changed = false;
1213         } else {
1214                 memcpy(hdev->scan_rsp_data, pdu.data, len);
1215                 hdev->scan_rsp_data_len = len;
1216         }
1217
1218         return 0;
1219 }
1220
1221 static int __hci_set_scan_rsp_data_sync(struct hci_dev *hdev, u8 instance)
1222 {
1223         struct hci_cp_le_set_scan_rsp_data cp;
1224         u8 len;
1225
1226         memset(&cp, 0, sizeof(cp));
1227
1228         len = eir_create_scan_rsp(hdev, instance, cp.data);
1229
1230 #ifdef TIZEN_BT
1231         /* Advertising scan response data is handled in bluez.
1232          * This value will be updated only when application request the update
1233          * using adapter_set_scan_rsp_data()
1234          */
1235         return 0;
1236 #endif
1237
1238         if (hdev->scan_rsp_data_len == len &&
1239             !memcmp(cp.data, hdev->scan_rsp_data, len))
1240                 return 0;
1241
1242         memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
1243         hdev->scan_rsp_data_len = len;
1244
1245         cp.length = len;
1246
1247         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_SCAN_RSP_DATA,
1248                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1249 }
1250
1251 int hci_update_scan_rsp_data_sync(struct hci_dev *hdev, u8 instance)
1252 {
1253         if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1254                 return 0;
1255
1256         if (ext_adv_capable(hdev))
1257                 return hci_set_ext_scan_rsp_data_sync(hdev, instance);
1258
1259         return __hci_set_scan_rsp_data_sync(hdev, instance);
1260 }
1261
1262 int hci_enable_ext_advertising_sync(struct hci_dev *hdev, u8 instance)
1263 {
1264         struct hci_cp_le_set_ext_adv_enable *cp;
1265         struct hci_cp_ext_adv_set *set;
1266         u8 data[sizeof(*cp) + sizeof(*set) * 1];
1267         struct adv_info *adv;
1268
1269         if (instance > 0) {
1270                 adv = hci_find_adv_instance(hdev, instance);
1271                 if (!adv)
1272                         return -EINVAL;
1273                 /* If already enabled there is nothing to do */
1274                 if (adv->enabled)
1275                         return 0;
1276         } else {
1277                 adv = NULL;
1278         }
1279
1280         cp = (void *)data;
1281         set = (void *)cp->data;
1282
1283         memset(cp, 0, sizeof(*cp));
1284
1285         cp->enable = 0x01;
1286         cp->num_of_sets = 0x01;
1287
1288         memset(set, 0, sizeof(*set));
1289
1290         set->handle = instance;
1291
1292         /* Set duration per instance since controller is responsible for
1293          * scheduling it.
1294          */
1295         if (adv && adv->timeout) {
1296                 u16 duration = adv->timeout * MSEC_PER_SEC;
1297
1298                 /* Time = N * 10 ms */
1299                 set->duration = cpu_to_le16(duration / 10);
1300         }
1301
1302         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_ENABLE,
1303                                      sizeof(*cp) +
1304                                      sizeof(*set) * cp->num_of_sets,
1305                                      data, HCI_CMD_TIMEOUT);
1306 }
1307
1308 int hci_start_ext_adv_sync(struct hci_dev *hdev, u8 instance)
1309 {
1310         int err;
1311
1312         err = hci_setup_ext_adv_instance_sync(hdev, instance);
1313         if (err)
1314                 return err;
1315
1316         err = hci_set_ext_scan_rsp_data_sync(hdev, instance);
1317         if (err)
1318                 return err;
1319
1320         return hci_enable_ext_advertising_sync(hdev, instance);
1321 }
1322
1323 static int hci_disable_per_advertising_sync(struct hci_dev *hdev, u8 instance)
1324 {
1325         struct hci_cp_le_set_per_adv_enable cp;
1326         struct adv_info *adv = NULL;
1327
1328         /* If periodic advertising already disabled there is nothing to do. */
1329         adv = hci_find_adv_instance(hdev, instance);
1330         if (!adv || !adv->periodic || !adv->enabled)
1331                 return 0;
1332
1333         memset(&cp, 0, sizeof(cp));
1334
1335         cp.enable = 0x00;
1336         cp.handle = instance;
1337
1338         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_ENABLE,
1339                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1340 }
1341
1342 static int hci_set_per_adv_params_sync(struct hci_dev *hdev, u8 instance,
1343                                        u16 min_interval, u16 max_interval)
1344 {
1345         struct hci_cp_le_set_per_adv_params cp;
1346
1347         memset(&cp, 0, sizeof(cp));
1348
1349         if (!min_interval)
1350                 min_interval = DISCOV_LE_PER_ADV_INT_MIN;
1351
1352         if (!max_interval)
1353                 max_interval = DISCOV_LE_PER_ADV_INT_MAX;
1354
1355         cp.handle = instance;
1356         cp.min_interval = cpu_to_le16(min_interval);
1357         cp.max_interval = cpu_to_le16(max_interval);
1358         cp.periodic_properties = 0x0000;
1359
1360         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_PARAMS,
1361                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1362 }
1363
1364 static int hci_set_per_adv_data_sync(struct hci_dev *hdev, u8 instance)
1365 {
1366         struct {
1367                 struct hci_cp_le_set_per_adv_data cp;
1368                 u8 data[HCI_MAX_PER_AD_LENGTH];
1369         } pdu;
1370         u8 len;
1371
1372         memset(&pdu, 0, sizeof(pdu));
1373
1374         if (instance) {
1375                 struct adv_info *adv = hci_find_adv_instance(hdev, instance);
1376
1377                 if (!adv || !adv->periodic)
1378                         return 0;
1379         }
1380
1381         len = eir_create_per_adv_data(hdev, instance, pdu.data);
1382
1383         pdu.cp.length = len;
1384         pdu.cp.handle = instance;
1385         pdu.cp.operation = LE_SET_ADV_DATA_OP_COMPLETE;
1386
1387         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_DATA,
1388                                      sizeof(pdu.cp) + len, &pdu,
1389                                      HCI_CMD_TIMEOUT);
1390 }
1391
1392 static int hci_enable_per_advertising_sync(struct hci_dev *hdev, u8 instance)
1393 {
1394         struct hci_cp_le_set_per_adv_enable cp;
1395         struct adv_info *adv = NULL;
1396
1397         /* If periodic advertising already enabled there is nothing to do. */
1398         adv = hci_find_adv_instance(hdev, instance);
1399         if (adv && adv->periodic && adv->enabled)
1400                 return 0;
1401
1402         memset(&cp, 0, sizeof(cp));
1403
1404         cp.enable = 0x01;
1405         cp.handle = instance;
1406
1407         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_ENABLE,
1408                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1409 }
1410
1411 /* Checks if periodic advertising data contains a Basic Announcement and if it
1412  * does generates a Broadcast ID and add Broadcast Announcement.
1413  */
1414 static int hci_adv_bcast_annoucement(struct hci_dev *hdev, struct adv_info *adv)
1415 {
1416         u8 bid[3];
1417         u8 ad[4 + 3];
1418
1419         /* Skip if NULL adv as instance 0x00 is used for general purpose
1420          * advertising so it cannot used for the likes of Broadcast Announcement
1421          * as it can be overwritten at any point.
1422          */
1423         if (!adv)
1424                 return 0;
1425
1426         /* Check if PA data doesn't contains a Basic Audio Announcement then
1427          * there is nothing to do.
1428          */
1429         if (!eir_get_service_data(adv->per_adv_data, adv->per_adv_data_len,
1430                                   0x1851, NULL))
1431                 return 0;
1432
1433         /* Check if advertising data already has a Broadcast Announcement since
1434          * the process may want to control the Broadcast ID directly and in that
1435          * case the kernel shall no interfere.
1436          */
1437         if (eir_get_service_data(adv->adv_data, adv->adv_data_len, 0x1852,
1438                                  NULL))
1439                 return 0;
1440
1441         /* Generate Broadcast ID */
1442         get_random_bytes(bid, sizeof(bid));
1443         eir_append_service_data(ad, 0, 0x1852, bid, sizeof(bid));
1444         hci_set_adv_instance_data(hdev, adv->instance, sizeof(ad), ad, 0, NULL);
1445
1446         return hci_update_adv_data_sync(hdev, adv->instance);
1447 }
1448
1449 int hci_start_per_adv_sync(struct hci_dev *hdev, u8 instance, u8 data_len,
1450                            u8 *data, u32 flags, u16 min_interval,
1451                            u16 max_interval, u16 sync_interval)
1452 {
1453         struct adv_info *adv = NULL;
1454         int err;
1455         bool added = false;
1456
1457         hci_disable_per_advertising_sync(hdev, instance);
1458
1459         if (instance) {
1460                 adv = hci_find_adv_instance(hdev, instance);
1461                 /* Create an instance if that could not be found */
1462                 if (!adv) {
1463                         adv = hci_add_per_instance(hdev, instance, flags,
1464                                                    data_len, data,
1465                                                    sync_interval,
1466                                                    sync_interval);
1467                         if (IS_ERR(adv))
1468                                 return PTR_ERR(adv);
1469                         adv->pending = false;
1470                         added = true;
1471                 }
1472         }
1473
1474         /* Start advertising */
1475         err = hci_start_ext_adv_sync(hdev, instance);
1476         if (err < 0)
1477                 goto fail;
1478
1479         err = hci_adv_bcast_annoucement(hdev, adv);
1480         if (err < 0)
1481                 goto fail;
1482
1483         err = hci_set_per_adv_params_sync(hdev, instance, min_interval,
1484                                           max_interval);
1485         if (err < 0)
1486                 goto fail;
1487
1488         err = hci_set_per_adv_data_sync(hdev, instance);
1489         if (err < 0)
1490                 goto fail;
1491
1492         err = hci_enable_per_advertising_sync(hdev, instance);
1493         if (err < 0)
1494                 goto fail;
1495
1496         return 0;
1497
1498 fail:
1499         if (added)
1500                 hci_remove_adv_instance(hdev, instance);
1501
1502         return err;
1503 }
1504
1505 static int hci_start_adv_sync(struct hci_dev *hdev, u8 instance)
1506 {
1507         int err;
1508
1509         if (ext_adv_capable(hdev))
1510                 return hci_start_ext_adv_sync(hdev, instance);
1511
1512         err = hci_update_adv_data_sync(hdev, instance);
1513         if (err)
1514                 return err;
1515
1516         err = hci_update_scan_rsp_data_sync(hdev, instance);
1517         if (err)
1518                 return err;
1519
1520         return hci_enable_advertising_sync(hdev);
1521 }
1522
1523 int hci_enable_advertising_sync(struct hci_dev *hdev)
1524 {
1525         struct adv_info *adv_instance;
1526         struct hci_cp_le_set_adv_param cp;
1527         u8 own_addr_type, enable = 0x01;
1528         bool connectable;
1529         u16 adv_min_interval, adv_max_interval;
1530         u32 flags;
1531         u8 status;
1532
1533         if (ext_adv_capable(hdev))
1534                 return hci_enable_ext_advertising_sync(hdev,
1535                                                        hdev->cur_adv_instance);
1536
1537         flags = hci_adv_instance_flags(hdev, hdev->cur_adv_instance);
1538         adv_instance = hci_find_adv_instance(hdev, hdev->cur_adv_instance);
1539
1540         /* If the "connectable" instance flag was not set, then choose between
1541          * ADV_IND and ADV_NONCONN_IND based on the global connectable setting.
1542          */
1543         connectable = (flags & MGMT_ADV_FLAG_CONNECTABLE) ||
1544                       mgmt_get_connectable(hdev);
1545
1546         if (!is_advertising_allowed(hdev, connectable))
1547                 return -EINVAL;
1548
1549         status = hci_disable_advertising_sync(hdev);
1550         if (status)
1551                 return status;
1552
1553         /* Clear the HCI_LE_ADV bit temporarily so that the
1554          * hci_update_random_address knows that it's safe to go ahead
1555          * and write a new random address. The flag will be set back on
1556          * as soon as the SET_ADV_ENABLE HCI command completes.
1557          */
1558         hci_dev_clear_flag(hdev, HCI_LE_ADV);
1559
1560         /* Set require_privacy to true only when non-connectable
1561          * advertising is used. In that case it is fine to use a
1562          * non-resolvable private address.
1563          */
1564         status = hci_update_random_address_sync(hdev, !connectable,
1565                                                 adv_use_rpa(hdev, flags),
1566                                                 &own_addr_type);
1567         if (status)
1568                 return status;
1569
1570         memset(&cp, 0, sizeof(cp));
1571
1572         if (adv_instance) {
1573                 adv_min_interval = adv_instance->min_interval;
1574                 adv_max_interval = adv_instance->max_interval;
1575         } else {
1576                 adv_min_interval = hdev->le_adv_min_interval;
1577                 adv_max_interval = hdev->le_adv_max_interval;
1578         }
1579
1580 #ifdef TIZEN_BT
1581         cp.filter_policy = hdev->adv_filter_policy;
1582         cp.type = hdev->adv_type;
1583 #endif
1584
1585         if (connectable) {
1586                 cp.type = LE_ADV_IND;
1587         } else {
1588                 if (hci_adv_instance_is_scannable(hdev, hdev->cur_adv_instance))
1589                         cp.type = LE_ADV_SCAN_IND;
1590                 else
1591                         cp.type = LE_ADV_NONCONN_IND;
1592
1593                 if (!hci_dev_test_flag(hdev, HCI_DISCOVERABLE) ||
1594                     hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE)) {
1595                         adv_min_interval = DISCOV_LE_FAST_ADV_INT_MIN;
1596                         adv_max_interval = DISCOV_LE_FAST_ADV_INT_MAX;
1597                 }
1598         }
1599
1600         cp.min_interval = cpu_to_le16(adv_min_interval);
1601         cp.max_interval = cpu_to_le16(adv_max_interval);
1602         cp.own_address_type = own_addr_type;
1603         cp.channel_map = hdev->le_adv_channel_map;
1604
1605         status = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_PARAM,
1606                                        sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1607         if (status)
1608                 return status;
1609
1610         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_ENABLE,
1611                                      sizeof(enable), &enable, HCI_CMD_TIMEOUT);
1612 }
1613
1614 static int enable_advertising_sync(struct hci_dev *hdev, void *data)
1615 {
1616         return hci_enable_advertising_sync(hdev);
1617 }
1618
1619 int hci_enable_advertising(struct hci_dev *hdev)
1620 {
1621         if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
1622             list_empty(&hdev->adv_instances))
1623                 return 0;
1624
1625         return hci_cmd_sync_queue(hdev, enable_advertising_sync, NULL, NULL);
1626 }
1627
1628 int hci_remove_ext_adv_instance_sync(struct hci_dev *hdev, u8 instance,
1629                                      struct sock *sk)
1630 {
1631         int err;
1632
1633         if (!ext_adv_capable(hdev))
1634                 return 0;
1635
1636         err = hci_disable_ext_adv_instance_sync(hdev, instance);
1637         if (err)
1638                 return err;
1639
1640         /* If request specifies an instance that doesn't exist, fail */
1641         if (instance > 0 && !hci_find_adv_instance(hdev, instance))
1642                 return -EINVAL;
1643
1644         return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_REMOVE_ADV_SET,
1645                                         sizeof(instance), &instance, 0,
1646                                         HCI_CMD_TIMEOUT, sk);
1647 }
1648
1649 static int remove_ext_adv_sync(struct hci_dev *hdev, void *data)
1650 {
1651         struct adv_info *adv = data;
1652         u8 instance = 0;
1653
1654         if (adv)
1655                 instance = adv->instance;
1656
1657         return hci_remove_ext_adv_instance_sync(hdev, instance, NULL);
1658 }
1659
1660 int hci_remove_ext_adv_instance(struct hci_dev *hdev, u8 instance)
1661 {
1662         struct adv_info *adv = NULL;
1663
1664         if (instance) {
1665                 adv = hci_find_adv_instance(hdev, instance);
1666                 if (!adv)
1667                         return -EINVAL;
1668         }
1669
1670         return hci_cmd_sync_queue(hdev, remove_ext_adv_sync, adv, NULL);
1671 }
1672
1673 int hci_le_terminate_big_sync(struct hci_dev *hdev, u8 handle, u8 reason)
1674 {
1675         struct hci_cp_le_term_big cp;
1676
1677         memset(&cp, 0, sizeof(cp));
1678         cp.handle = handle;
1679         cp.reason = reason;
1680
1681         return __hci_cmd_sync_status(hdev, HCI_OP_LE_TERM_BIG,
1682                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1683 }
1684
1685 static int hci_set_ext_adv_data_sync(struct hci_dev *hdev, u8 instance)
1686 {
1687         struct {
1688                 struct hci_cp_le_set_ext_adv_data cp;
1689                 u8 data[HCI_MAX_EXT_AD_LENGTH];
1690         } pdu;
1691         u8 len;
1692         struct adv_info *adv = NULL;
1693         int err;
1694
1695         memset(&pdu, 0, sizeof(pdu));
1696
1697         if (instance) {
1698                 adv = hci_find_adv_instance(hdev, instance);
1699                 if (!adv || !adv->adv_data_changed)
1700                         return 0;
1701         }
1702
1703         len = eir_create_adv_data(hdev, instance, pdu.data);
1704
1705         pdu.cp.length = len;
1706         pdu.cp.handle = instance;
1707         pdu.cp.operation = LE_SET_ADV_DATA_OP_COMPLETE;
1708         pdu.cp.frag_pref = LE_SET_ADV_DATA_NO_FRAG;
1709
1710         err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_DATA,
1711                                     sizeof(pdu.cp) + len, &pdu.cp,
1712                                     HCI_CMD_TIMEOUT);
1713         if (err)
1714                 return err;
1715
1716         /* Update data if the command succeed */
1717         if (adv) {
1718                 adv->adv_data_changed = false;
1719         } else {
1720                 memcpy(hdev->adv_data, pdu.data, len);
1721                 hdev->adv_data_len = len;
1722         }
1723
1724         return 0;
1725 }
1726
1727 static int hci_set_adv_data_sync(struct hci_dev *hdev, u8 instance)
1728 {
1729         struct hci_cp_le_set_adv_data cp;
1730         u8 len;
1731
1732         memset(&cp, 0, sizeof(cp));
1733
1734         len = eir_create_adv_data(hdev, instance, cp.data);
1735
1736         /* There's nothing to do if the data hasn't changed */
1737         if (hdev->adv_data_len == len &&
1738             memcmp(cp.data, hdev->adv_data, len) == 0)
1739                 return 0;
1740
1741         memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
1742         hdev->adv_data_len = len;
1743
1744         cp.length = len;
1745
1746         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_DATA,
1747                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1748 }
1749
1750 int hci_update_adv_data_sync(struct hci_dev *hdev, u8 instance)
1751 {
1752         if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1753                 return 0;
1754
1755 #ifdef TIZEN_BT
1756         /* Bluez will handle the advertising data including the flag and tx
1757          * power. This value will be updated only when application request the
1758          * update using adapter_set_advertising_data().
1759          */
1760         return 0;
1761 #endif
1762
1763         if (ext_adv_capable(hdev))
1764                 return hci_set_ext_adv_data_sync(hdev, instance);
1765
1766         return hci_set_adv_data_sync(hdev, instance);
1767 }
1768
1769 int hci_schedule_adv_instance_sync(struct hci_dev *hdev, u8 instance,
1770                                    bool force)
1771 {
1772         struct adv_info *adv = NULL;
1773         u16 timeout;
1774
1775         if (hci_dev_test_flag(hdev, HCI_ADVERTISING) && !ext_adv_capable(hdev))
1776                 return -EPERM;
1777
1778         if (hdev->adv_instance_timeout)
1779                 return -EBUSY;
1780
1781         adv = hci_find_adv_instance(hdev, instance);
1782         if (!adv)
1783                 return -ENOENT;
1784
1785         /* A zero timeout means unlimited advertising. As long as there is
1786          * only one instance, duration should be ignored. We still set a timeout
1787          * in case further instances are being added later on.
1788          *
1789          * If the remaining lifetime of the instance is more than the duration
1790          * then the timeout corresponds to the duration, otherwise it will be
1791          * reduced to the remaining instance lifetime.
1792          */
1793         if (adv->timeout == 0 || adv->duration <= adv->remaining_time)
1794                 timeout = adv->duration;
1795         else
1796                 timeout = adv->remaining_time;
1797
1798         /* The remaining time is being reduced unless the instance is being
1799          * advertised without time limit.
1800          */
1801         if (adv->timeout)
1802                 adv->remaining_time = adv->remaining_time - timeout;
1803
1804         /* Only use work for scheduling instances with legacy advertising */
1805         if (!ext_adv_capable(hdev)) {
1806                 hdev->adv_instance_timeout = timeout;
1807                 queue_delayed_work(hdev->req_workqueue,
1808                                    &hdev->adv_instance_expire,
1809                                    msecs_to_jiffies(timeout * 1000));
1810         }
1811
1812         /* If we're just re-scheduling the same instance again then do not
1813          * execute any HCI commands. This happens when a single instance is
1814          * being advertised.
1815          */
1816         if (!force && hdev->cur_adv_instance == instance &&
1817             hci_dev_test_flag(hdev, HCI_LE_ADV))
1818                 return 0;
1819
1820         hdev->cur_adv_instance = instance;
1821
1822         return hci_start_adv_sync(hdev, instance);
1823 }
1824
1825 static int hci_clear_adv_sets_sync(struct hci_dev *hdev, struct sock *sk)
1826 {
1827         int err;
1828
1829         if (!ext_adv_capable(hdev))
1830                 return 0;
1831
1832         /* Disable instance 0x00 to disable all instances */
1833         err = hci_disable_ext_adv_instance_sync(hdev, 0x00);
1834         if (err)
1835                 return err;
1836
1837         return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_CLEAR_ADV_SETS,
1838                                         0, NULL, 0, HCI_CMD_TIMEOUT, sk);
1839 }
1840
1841 static int hci_clear_adv_sync(struct hci_dev *hdev, struct sock *sk, bool force)
1842 {
1843         struct adv_info *adv, *n;
1844         int err = 0;
1845
1846         if (ext_adv_capable(hdev))
1847                 /* Remove all existing sets */
1848                 err = hci_clear_adv_sets_sync(hdev, sk);
1849         if (ext_adv_capable(hdev))
1850                 return err;
1851
1852         /* This is safe as long as there is no command send while the lock is
1853          * held.
1854          */
1855         hci_dev_lock(hdev);
1856
1857         /* Cleanup non-ext instances */
1858         list_for_each_entry_safe(adv, n, &hdev->adv_instances, list) {
1859                 u8 instance = adv->instance;
1860                 int err;
1861
1862                 if (!(force || adv->timeout))
1863                         continue;
1864
1865                 err = hci_remove_adv_instance(hdev, instance);
1866                 if (!err)
1867                         mgmt_advertising_removed(sk, hdev, instance);
1868         }
1869
1870         hci_dev_unlock(hdev);
1871
1872         return 0;
1873 }
1874
1875 static int hci_remove_adv_sync(struct hci_dev *hdev, u8 instance,
1876                                struct sock *sk)
1877 {
1878         int err = 0;
1879
1880         /* If we use extended advertising, instance has to be removed first. */
1881         if (ext_adv_capable(hdev))
1882                 err = hci_remove_ext_adv_instance_sync(hdev, instance, sk);
1883         if (ext_adv_capable(hdev))
1884                 return err;
1885
1886         /* This is safe as long as there is no command send while the lock is
1887          * held.
1888          */
1889         hci_dev_lock(hdev);
1890
1891         err = hci_remove_adv_instance(hdev, instance);
1892         if (!err)
1893                 mgmt_advertising_removed(sk, hdev, instance);
1894
1895         hci_dev_unlock(hdev);
1896
1897         return err;
1898 }
1899
1900 /* For a single instance:
1901  * - force == true: The instance will be removed even when its remaining
1902  *   lifetime is not zero.
1903  * - force == false: the instance will be deactivated but kept stored unless
1904  *   the remaining lifetime is zero.
1905  *
1906  * For instance == 0x00:
1907  * - force == true: All instances will be removed regardless of their timeout
1908  *   setting.
1909  * - force == false: Only instances that have a timeout will be removed.
1910  */
1911 int hci_remove_advertising_sync(struct hci_dev *hdev, struct sock *sk,
1912                                 u8 instance, bool force)
1913 {
1914         struct adv_info *next = NULL;
1915         int err;
1916
1917         /* Cancel any timeout concerning the removed instance(s). */
1918         if (!instance || hdev->cur_adv_instance == instance)
1919                 cancel_adv_timeout(hdev);
1920
1921         /* Get the next instance to advertise BEFORE we remove
1922          * the current one. This can be the same instance again
1923          * if there is only one instance.
1924          */
1925         if (hdev->cur_adv_instance == instance)
1926                 next = hci_get_next_instance(hdev, instance);
1927
1928         if (!instance) {
1929                 err = hci_clear_adv_sync(hdev, sk, force);
1930                 if (err)
1931                         return err;
1932         } else {
1933                 struct adv_info *adv = hci_find_adv_instance(hdev, instance);
1934
1935                 if (force || (adv && adv->timeout && !adv->remaining_time)) {
1936                         /* Don't advertise a removed instance. */
1937                         if (next && next->instance == instance)
1938                                 next = NULL;
1939
1940                         err = hci_remove_adv_sync(hdev, instance, sk);
1941                         if (err)
1942                                 return err;
1943                 }
1944         }
1945
1946         if (!hdev_is_powered(hdev) || hci_dev_test_flag(hdev, HCI_ADVERTISING))
1947                 return 0;
1948
1949         if (next && !ext_adv_capable(hdev))
1950                 hci_schedule_adv_instance_sync(hdev, next->instance, false);
1951
1952         return 0;
1953 }
1954
1955 int hci_read_rssi_sync(struct hci_dev *hdev, __le16 handle)
1956 {
1957         struct hci_cp_read_rssi cp;
1958
1959         cp.handle = handle;
1960         return __hci_cmd_sync_status(hdev, HCI_OP_READ_RSSI,
1961                                         sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1962 }
1963
1964 int hci_read_clock_sync(struct hci_dev *hdev, struct hci_cp_read_clock *cp)
1965 {
1966         return __hci_cmd_sync_status(hdev, HCI_OP_READ_CLOCK,
1967                                         sizeof(*cp), cp, HCI_CMD_TIMEOUT);
1968 }
1969
1970 int hci_read_tx_power_sync(struct hci_dev *hdev, __le16 handle, u8 type)
1971 {
1972         struct hci_cp_read_tx_power cp;
1973
1974         cp.handle = handle;
1975         cp.type = type;
1976         return __hci_cmd_sync_status(hdev, HCI_OP_READ_TX_POWER,
1977                                         sizeof(cp), &cp, HCI_CMD_TIMEOUT);
1978 }
1979
1980 int hci_disable_advertising_sync(struct hci_dev *hdev)
1981 {
1982         u8 enable = 0x00;
1983         int err = 0;
1984
1985         /* If controller is not advertising we are done. */
1986         if (!hci_dev_test_flag(hdev, HCI_LE_ADV))
1987                 return 0;
1988
1989         if (ext_adv_capable(hdev))
1990                 err = hci_disable_ext_adv_instance_sync(hdev, 0x00);
1991         if (ext_adv_capable(hdev))
1992                 return err;
1993
1994         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_ENABLE,
1995                                      sizeof(enable), &enable, HCI_CMD_TIMEOUT);
1996 }
1997
1998 static int hci_le_set_ext_scan_enable_sync(struct hci_dev *hdev, u8 val,
1999                                            u8 filter_dup)
2000 {
2001         struct hci_cp_le_set_ext_scan_enable cp;
2002
2003         memset(&cp, 0, sizeof(cp));
2004         cp.enable = val;
2005
2006         if (hci_dev_test_flag(hdev, HCI_MESH))
2007                 cp.filter_dup = LE_SCAN_FILTER_DUP_DISABLE;
2008         else
2009                 cp.filter_dup = filter_dup;
2010
2011         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_SCAN_ENABLE,
2012                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2013 }
2014
2015 static int hci_le_set_scan_enable_sync(struct hci_dev *hdev, u8 val,
2016                                        u8 filter_dup)
2017 {
2018         struct hci_cp_le_set_scan_enable cp;
2019
2020         if (use_ext_scan(hdev))
2021                 return hci_le_set_ext_scan_enable_sync(hdev, val, filter_dup);
2022
2023         memset(&cp, 0, sizeof(cp));
2024         cp.enable = val;
2025
2026         if (val && hci_dev_test_flag(hdev, HCI_MESH))
2027                 cp.filter_dup = LE_SCAN_FILTER_DUP_DISABLE;
2028         else
2029                 cp.filter_dup = filter_dup;
2030
2031         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_SCAN_ENABLE,
2032                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2033 }
2034
2035 static int hci_le_set_addr_resolution_enable_sync(struct hci_dev *hdev, u8 val)
2036 {
2037         if (!use_ll_privacy(hdev))
2038                 return 0;
2039
2040         /* If controller is not/already resolving we are done. */
2041         if (val == hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION))
2042                 return 0;
2043
2044         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADDR_RESOLV_ENABLE,
2045                                      sizeof(val), &val, HCI_CMD_TIMEOUT);
2046 }
2047
2048 static int hci_scan_disable_sync(struct hci_dev *hdev)
2049 {
2050         int err;
2051
2052         /* If controller is not scanning we are done. */
2053         if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
2054                 return 0;
2055
2056         if (hdev->scanning_paused) {
2057                 bt_dev_dbg(hdev, "Scanning is paused for suspend");
2058                 return 0;
2059         }
2060
2061         err = hci_le_set_scan_enable_sync(hdev, LE_SCAN_DISABLE, 0x00);
2062         if (err) {
2063                 bt_dev_err(hdev, "Unable to disable scanning: %d", err);
2064                 return err;
2065         }
2066
2067         return err;
2068 }
2069
2070 static bool scan_use_rpa(struct hci_dev *hdev)
2071 {
2072         return hci_dev_test_flag(hdev, HCI_PRIVACY);
2073 }
2074
2075 static void hci_start_interleave_scan(struct hci_dev *hdev)
2076 {
2077         hdev->interleave_scan_state = INTERLEAVE_SCAN_NO_FILTER;
2078         queue_delayed_work(hdev->req_workqueue,
2079                            &hdev->interleave_scan, 0);
2080 }
2081
2082 static bool is_interleave_scanning(struct hci_dev *hdev)
2083 {
2084         return hdev->interleave_scan_state != INTERLEAVE_SCAN_NONE;
2085 }
2086
2087 static void cancel_interleave_scan(struct hci_dev *hdev)
2088 {
2089         bt_dev_dbg(hdev, "cancelling interleave scan");
2090
2091         cancel_delayed_work_sync(&hdev->interleave_scan);
2092
2093         hdev->interleave_scan_state = INTERLEAVE_SCAN_NONE;
2094 }
2095
2096 /* Return true if interleave_scan wasn't started until exiting this function,
2097  * otherwise, return false
2098  */
2099 static bool hci_update_interleaved_scan_sync(struct hci_dev *hdev)
2100 {
2101         /* Do interleaved scan only if all of the following are true:
2102          * - There is at least one ADV monitor
2103          * - At least one pending LE connection or one device to be scanned for
2104          * - Monitor offloading is not supported
2105          * If so, we should alternate between allowlist scan and one without
2106          * any filters to save power.
2107          */
2108         bool use_interleaving = hci_is_adv_monitoring(hdev) &&
2109                                 !(list_empty(&hdev->pend_le_conns) &&
2110                                   list_empty(&hdev->pend_le_reports)) &&
2111                                 hci_get_adv_monitor_offload_ext(hdev) ==
2112                                     HCI_ADV_MONITOR_EXT_NONE;
2113         bool is_interleaving = is_interleave_scanning(hdev);
2114
2115         if (use_interleaving && !is_interleaving) {
2116                 hci_start_interleave_scan(hdev);
2117                 bt_dev_dbg(hdev, "starting interleave scan");
2118                 return true;
2119         }
2120
2121         if (!use_interleaving && is_interleaving)
2122                 cancel_interleave_scan(hdev);
2123
2124         return false;
2125 }
2126
2127 /* Removes connection to resolve list if needed.*/
2128 static int hci_le_del_resolve_list_sync(struct hci_dev *hdev,
2129                                         bdaddr_t *bdaddr, u8 bdaddr_type)
2130 {
2131         struct hci_cp_le_del_from_resolv_list cp;
2132         struct bdaddr_list_with_irk *entry;
2133
2134         if (!use_ll_privacy(hdev))
2135                 return 0;
2136
2137         /* Check if the IRK has been programmed */
2138         entry = hci_bdaddr_list_lookup_with_irk(&hdev->le_resolv_list, bdaddr,
2139                                                 bdaddr_type);
2140         if (!entry)
2141                 return 0;
2142
2143         cp.bdaddr_type = bdaddr_type;
2144         bacpy(&cp.bdaddr, bdaddr);
2145
2146         return __hci_cmd_sync_status(hdev, HCI_OP_LE_DEL_FROM_RESOLV_LIST,
2147                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2148 }
2149
2150 static int hci_le_del_accept_list_sync(struct hci_dev *hdev,
2151                                        bdaddr_t *bdaddr, u8 bdaddr_type)
2152 {
2153         struct hci_cp_le_del_from_accept_list cp;
2154         int err;
2155
2156         /* Check if device is on accept list before removing it */
2157         if (!hci_bdaddr_list_lookup(&hdev->le_accept_list, bdaddr, bdaddr_type))
2158                 return 0;
2159
2160         cp.bdaddr_type = bdaddr_type;
2161         bacpy(&cp.bdaddr, bdaddr);
2162
2163         /* Ignore errors when removing from resolving list as that is likely
2164          * that the device was never added.
2165          */
2166         hci_le_del_resolve_list_sync(hdev, &cp.bdaddr, cp.bdaddr_type);
2167
2168         err = __hci_cmd_sync_status(hdev, HCI_OP_LE_DEL_FROM_ACCEPT_LIST,
2169                                     sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2170         if (err) {
2171                 bt_dev_err(hdev, "Unable to remove from allow list: %d", err);
2172                 return err;
2173         }
2174
2175         bt_dev_dbg(hdev, "Remove %pMR (0x%x) from allow list", &cp.bdaddr,
2176                    cp.bdaddr_type);
2177
2178         return 0;
2179 }
2180
2181 struct conn_params {
2182         bdaddr_t addr;
2183         u8 addr_type;
2184         hci_conn_flags_t flags;
2185         u8 privacy_mode;
2186 };
2187
2188 /* Adds connection to resolve list if needed.
2189  * Setting params to NULL programs local hdev->irk
2190  */
2191 static int hci_le_add_resolve_list_sync(struct hci_dev *hdev,
2192                                         struct conn_params *params)
2193 {
2194         struct hci_cp_le_add_to_resolv_list cp;
2195         struct smp_irk *irk;
2196         struct bdaddr_list_with_irk *entry;
2197         struct hci_conn_params *p;
2198
2199         if (!use_ll_privacy(hdev))
2200                 return 0;
2201
2202         /* Attempt to program local identity address, type and irk if params is
2203          * NULL.
2204          */
2205         if (!params) {
2206                 if (!hci_dev_test_flag(hdev, HCI_PRIVACY))
2207                         return 0;
2208
2209                 hci_copy_identity_address(hdev, &cp.bdaddr, &cp.bdaddr_type);
2210                 memcpy(cp.peer_irk, hdev->irk, 16);
2211                 goto done;
2212         }
2213
2214         irk = hci_find_irk_by_addr(hdev, &params->addr, params->addr_type);
2215         if (!irk)
2216                 return 0;
2217
2218         /* Check if the IK has _not_ been programmed yet. */
2219         entry = hci_bdaddr_list_lookup_with_irk(&hdev->le_resolv_list,
2220                                                 &params->addr,
2221                                                 params->addr_type);
2222         if (entry)
2223                 return 0;
2224
2225         cp.bdaddr_type = params->addr_type;
2226         bacpy(&cp.bdaddr, &params->addr);
2227         memcpy(cp.peer_irk, irk->val, 16);
2228
2229         /* Default privacy mode is always Network */
2230         params->privacy_mode = HCI_NETWORK_PRIVACY;
2231
2232         rcu_read_lock();
2233         p = hci_pend_le_action_lookup(&hdev->pend_le_conns,
2234                                       &params->addr, params->addr_type);
2235         if (!p)
2236                 p = hci_pend_le_action_lookup(&hdev->pend_le_reports,
2237                                               &params->addr, params->addr_type);
2238         if (p)
2239                 WRITE_ONCE(p->privacy_mode, HCI_NETWORK_PRIVACY);
2240         rcu_read_unlock();
2241
2242 done:
2243         if (hci_dev_test_flag(hdev, HCI_PRIVACY))
2244                 memcpy(cp.local_irk, hdev->irk, 16);
2245         else
2246                 memset(cp.local_irk, 0, 16);
2247
2248         return __hci_cmd_sync_status(hdev, HCI_OP_LE_ADD_TO_RESOLV_LIST,
2249                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2250 }
2251
2252 /* Set Device Privacy Mode. */
2253 static int hci_le_set_privacy_mode_sync(struct hci_dev *hdev,
2254                                         struct conn_params *params)
2255 {
2256         struct hci_cp_le_set_privacy_mode cp;
2257         struct smp_irk *irk;
2258
2259         /* If device privacy mode has already been set there is nothing to do */
2260         if (params->privacy_mode == HCI_DEVICE_PRIVACY)
2261                 return 0;
2262
2263         /* Check if HCI_CONN_FLAG_DEVICE_PRIVACY has been set as it also
2264          * indicates that LL Privacy has been enabled and
2265          * HCI_OP_LE_SET_PRIVACY_MODE is supported.
2266          */
2267         if (!(params->flags & HCI_CONN_FLAG_DEVICE_PRIVACY))
2268                 return 0;
2269
2270         irk = hci_find_irk_by_addr(hdev, &params->addr, params->addr_type);
2271         if (!irk)
2272                 return 0;
2273
2274         memset(&cp, 0, sizeof(cp));
2275         cp.bdaddr_type = irk->addr_type;
2276         bacpy(&cp.bdaddr, &irk->bdaddr);
2277         cp.mode = HCI_DEVICE_PRIVACY;
2278
2279         /* Note: params->privacy_mode is not updated since it is a copy */
2280
2281         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PRIVACY_MODE,
2282                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2283 }
2284
2285 /* Adds connection to allow list if needed, if the device uses RPA (has IRK)
2286  * this attempts to program the device in the resolving list as well and
2287  * properly set the privacy mode.
2288  */
2289 static int hci_le_add_accept_list_sync(struct hci_dev *hdev,
2290                                        struct conn_params *params,
2291                                        u8 *num_entries)
2292 {
2293         struct hci_cp_le_add_to_accept_list cp;
2294         int err;
2295
2296         /* During suspend, only wakeable devices can be in acceptlist */
2297         if (hdev->suspended &&
2298             !(params->flags & HCI_CONN_FLAG_REMOTE_WAKEUP))
2299                 return 0;
2300
2301         /* Select filter policy to accept all advertising */
2302         if (*num_entries >= hdev->le_accept_list_size)
2303                 return -ENOSPC;
2304
2305         /* Accept list can not be used with RPAs */
2306         if (!use_ll_privacy(hdev) &&
2307             hci_find_irk_by_addr(hdev, &params->addr, params->addr_type))
2308                 return -EINVAL;
2309
2310         /* Attempt to program the device in the resolving list first to avoid
2311          * having to rollback in case it fails since the resolving list is
2312          * dynamic it can probably be smaller than the accept list.
2313          */
2314         err = hci_le_add_resolve_list_sync(hdev, params);
2315         if (err) {
2316                 bt_dev_err(hdev, "Unable to add to resolve list: %d", err);
2317                 return err;
2318         }
2319
2320         /* Set Privacy Mode */
2321         err = hci_le_set_privacy_mode_sync(hdev, params);
2322         if (err) {
2323                 bt_dev_err(hdev, "Unable to set privacy mode: %d", err);
2324                 return err;
2325         }
2326
2327         /* Check if already in accept list */
2328         if (hci_bdaddr_list_lookup(&hdev->le_accept_list, &params->addr,
2329                                    params->addr_type))
2330                 return 0;
2331
2332         *num_entries += 1;
2333         cp.bdaddr_type = params->addr_type;
2334         bacpy(&cp.bdaddr, &params->addr);
2335
2336         err = __hci_cmd_sync_status(hdev, HCI_OP_LE_ADD_TO_ACCEPT_LIST,
2337                                     sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2338         if (err) {
2339                 bt_dev_err(hdev, "Unable to add to allow list: %d", err);
2340                 /* Rollback the device from the resolving list */
2341                 hci_le_del_resolve_list_sync(hdev, &cp.bdaddr, cp.bdaddr_type);
2342                 return err;
2343         }
2344
2345         bt_dev_dbg(hdev, "Add %pMR (0x%x) to allow list", &cp.bdaddr,
2346                    cp.bdaddr_type);
2347
2348         return 0;
2349 }
2350
2351 /* This function disables/pause all advertising instances */
2352 static int hci_pause_advertising_sync(struct hci_dev *hdev)
2353 {
2354         int err;
2355         int old_state;
2356
2357         /* If already been paused there is nothing to do. */
2358         if (hdev->advertising_paused)
2359                 return 0;
2360
2361         bt_dev_dbg(hdev, "Pausing directed advertising");
2362
2363         /* Stop directed advertising */
2364         old_state = hci_dev_test_flag(hdev, HCI_ADVERTISING);
2365         if (old_state) {
2366                 /* When discoverable timeout triggers, then just make sure
2367                  * the limited discoverable flag is cleared. Even in the case
2368                  * of a timeout triggered from general discoverable, it is
2369                  * safe to unconditionally clear the flag.
2370                  */
2371                 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
2372                 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
2373                 hdev->discov_timeout = 0;
2374         }
2375
2376         bt_dev_dbg(hdev, "Pausing advertising instances");
2377
2378         /* Call to disable any advertisements active on the controller.
2379          * This will succeed even if no advertisements are configured.
2380          */
2381         err = hci_disable_advertising_sync(hdev);
2382         if (err)
2383                 return err;
2384
2385         /* If we are using software rotation, pause the loop */
2386         if (!ext_adv_capable(hdev))
2387                 cancel_adv_timeout(hdev);
2388
2389         hdev->advertising_paused = true;
2390         hdev->advertising_old_state = old_state;
2391
2392         return 0;
2393 }
2394
2395 /* This function enables all user advertising instances */
2396 static int hci_resume_advertising_sync(struct hci_dev *hdev)
2397 {
2398         struct adv_info *adv, *tmp;
2399         int err;
2400
2401         /* If advertising has not been paused there is nothing  to do. */
2402         if (!hdev->advertising_paused)
2403                 return 0;
2404
2405         /* Resume directed advertising */
2406         hdev->advertising_paused = false;
2407         if (hdev->advertising_old_state) {
2408                 hci_dev_set_flag(hdev, HCI_ADVERTISING);
2409                 hdev->advertising_old_state = 0;
2410         }
2411
2412         bt_dev_dbg(hdev, "Resuming advertising instances");
2413
2414         if (ext_adv_capable(hdev)) {
2415                 /* Call for each tracked instance to be re-enabled */
2416                 list_for_each_entry_safe(adv, tmp, &hdev->adv_instances, list) {
2417                         err = hci_enable_ext_advertising_sync(hdev,
2418                                                               adv->instance);
2419                         if (!err)
2420                                 continue;
2421
2422                         /* If the instance cannot be resumed remove it */
2423                         hci_remove_ext_adv_instance_sync(hdev, adv->instance,
2424                                                          NULL);
2425                 }
2426         } else {
2427                 /* Schedule for most recent instance to be restarted and begin
2428                  * the software rotation loop
2429                  */
2430                 err = hci_schedule_adv_instance_sync(hdev,
2431                                                      hdev->cur_adv_instance,
2432                                                      true);
2433         }
2434
2435         hdev->advertising_paused = false;
2436
2437         return err;
2438 }
2439
2440 static int hci_pause_addr_resolution(struct hci_dev *hdev)
2441 {
2442         int err;
2443
2444         if (!use_ll_privacy(hdev))
2445                 return 0;
2446
2447         if (!hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION))
2448                 return 0;
2449
2450         /* Cannot disable addr resolution if scanning is enabled or
2451          * when initiating an LE connection.
2452          */
2453         if (hci_dev_test_flag(hdev, HCI_LE_SCAN) ||
2454             hci_lookup_le_connect(hdev)) {
2455                 bt_dev_err(hdev, "Command not allowed when scan/LE connect");
2456                 return -EPERM;
2457         }
2458
2459         /* Cannot disable addr resolution if advertising is enabled. */
2460         err = hci_pause_advertising_sync(hdev);
2461         if (err) {
2462                 bt_dev_err(hdev, "Pause advertising failed: %d", err);
2463                 return err;
2464         }
2465
2466         err = hci_le_set_addr_resolution_enable_sync(hdev, 0x00);
2467         if (err)
2468                 bt_dev_err(hdev, "Unable to disable Address Resolution: %d",
2469                            err);
2470
2471         /* Return if address resolution is disabled and RPA is not used. */
2472         if (!err && scan_use_rpa(hdev))
2473                 return 0;
2474
2475         hci_resume_advertising_sync(hdev);
2476         return err;
2477 }
2478
2479 struct sk_buff *hci_read_local_oob_data_sync(struct hci_dev *hdev,
2480                                              bool extended, struct sock *sk)
2481 {
2482         u16 opcode = extended ? HCI_OP_READ_LOCAL_OOB_EXT_DATA :
2483                                         HCI_OP_READ_LOCAL_OOB_DATA;
2484
2485         return __hci_cmd_sync_sk(hdev, opcode, 0, NULL, 0, HCI_CMD_TIMEOUT, sk);
2486 }
2487
2488 static struct conn_params *conn_params_copy(struct list_head *list, size_t *n)
2489 {
2490         struct hci_conn_params *params;
2491         struct conn_params *p;
2492         size_t i;
2493
2494         rcu_read_lock();
2495
2496         i = 0;
2497         list_for_each_entry_rcu(params, list, action)
2498                 ++i;
2499         *n = i;
2500
2501         rcu_read_unlock();
2502
2503         p = kvcalloc(*n, sizeof(struct conn_params), GFP_KERNEL);
2504         if (!p)
2505                 return NULL;
2506
2507         rcu_read_lock();
2508
2509         i = 0;
2510         list_for_each_entry_rcu(params, list, action) {
2511                 /* Racing adds are handled in next scan update */
2512                 if (i >= *n)
2513                         break;
2514
2515                 /* No hdev->lock, but: addr, addr_type are immutable.
2516                  * privacy_mode is only written by us or in
2517                  * hci_cc_le_set_privacy_mode that we wait for.
2518                  * We should be idempotent so MGMT updating flags
2519                  * while we are processing is OK.
2520                  */
2521                 bacpy(&p[i].addr, &params->addr);
2522                 p[i].addr_type = params->addr_type;
2523                 p[i].flags = READ_ONCE(params->flags);
2524                 p[i].privacy_mode = READ_ONCE(params->privacy_mode);
2525                 ++i;
2526         }
2527
2528         rcu_read_unlock();
2529
2530         *n = i;
2531         return p;
2532 }
2533
2534 /* Device must not be scanning when updating the accept list.
2535  *
2536  * Update is done using the following sequence:
2537  *
2538  * use_ll_privacy((Disable Advertising) -> Disable Resolving List) ->
2539  * Remove Devices From Accept List ->
2540  * (has IRK && use_ll_privacy(Remove Devices From Resolving List))->
2541  * Add Devices to Accept List ->
2542  * (has IRK && use_ll_privacy(Remove Devices From Resolving List)) ->
2543  * use_ll_privacy(Enable Resolving List -> (Enable Advertising)) ->
2544  * Enable Scanning
2545  *
2546  * In case of failure advertising shall be restored to its original state and
2547  * return would disable accept list since either accept or resolving list could
2548  * not be programmed.
2549  *
2550  */
2551 static u8 hci_update_accept_list_sync(struct hci_dev *hdev)
2552 {
2553         struct conn_params *params;
2554         struct bdaddr_list *b, *t;
2555         u8 num_entries = 0;
2556         bool pend_conn, pend_report;
2557         u8 filter_policy;
2558         size_t i, n;
2559         int err;
2560
2561         /* Pause advertising if resolving list can be used as controllers
2562          * cannot accept resolving list modifications while advertising.
2563          */
2564         if (use_ll_privacy(hdev)) {
2565                 err = hci_pause_advertising_sync(hdev);
2566                 if (err) {
2567                         bt_dev_err(hdev, "pause advertising failed: %d", err);
2568                         return 0x00;
2569                 }
2570         }
2571
2572         /* Disable address resolution while reprogramming accept list since
2573          * devices that do have an IRK will be programmed in the resolving list
2574          * when LL Privacy is enabled.
2575          */
2576         err = hci_le_set_addr_resolution_enable_sync(hdev, 0x00);
2577         if (err) {
2578                 bt_dev_err(hdev, "Unable to disable LL privacy: %d", err);
2579                 goto done;
2580         }
2581
2582         /* Go through the current accept list programmed into the
2583          * controller one by one and check if that address is connected or is
2584          * still in the list of pending connections or list of devices to
2585          * report. If not present in either list, then remove it from
2586          * the controller.
2587          */
2588         list_for_each_entry_safe(b, t, &hdev->le_accept_list, list) {
2589                 if (hci_conn_hash_lookup_le(hdev, &b->bdaddr, b->bdaddr_type))
2590                         continue;
2591
2592                 /* Pointers not dereferenced, no locks needed */
2593                 pend_conn = hci_pend_le_action_lookup(&hdev->pend_le_conns,
2594                                                       &b->bdaddr,
2595                                                       b->bdaddr_type);
2596                 pend_report = hci_pend_le_action_lookup(&hdev->pend_le_reports,
2597                                                         &b->bdaddr,
2598                                                         b->bdaddr_type);
2599
2600                 /* If the device is not likely to connect or report,
2601                  * remove it from the acceptlist.
2602                  */
2603                 if (!pend_conn && !pend_report) {
2604                         hci_le_del_accept_list_sync(hdev, &b->bdaddr,
2605                                                     b->bdaddr_type);
2606                         continue;
2607                 }
2608
2609                 num_entries++;
2610         }
2611
2612         /* Since all no longer valid accept list entries have been
2613          * removed, walk through the list of pending connections
2614          * and ensure that any new device gets programmed into
2615          * the controller.
2616          *
2617          * If the list of the devices is larger than the list of
2618          * available accept list entries in the controller, then
2619          * just abort and return filer policy value to not use the
2620          * accept list.
2621          *
2622          * The list and params may be mutated while we wait for events,
2623          * so make a copy and iterate it.
2624          */
2625
2626         params = conn_params_copy(&hdev->pend_le_conns, &n);
2627         if (!params) {
2628                 err = -ENOMEM;
2629                 goto done;
2630         }
2631
2632         for (i = 0; i < n; ++i) {
2633                 err = hci_le_add_accept_list_sync(hdev, &params[i],
2634                                                   &num_entries);
2635                 if (err) {
2636                         kvfree(params);
2637                         goto done;
2638                 }
2639         }
2640
2641         kvfree(params);
2642
2643         /* After adding all new pending connections, walk through
2644          * the list of pending reports and also add these to the
2645          * accept list if there is still space. Abort if space runs out.
2646          */
2647
2648         params = conn_params_copy(&hdev->pend_le_reports, &n);
2649         if (!params) {
2650                 err = -ENOMEM;
2651                 goto done;
2652         }
2653
2654         for (i = 0; i < n; ++i) {
2655                 err = hci_le_add_accept_list_sync(hdev, &params[i],
2656                                                   &num_entries);
2657                 if (err) {
2658                         kvfree(params);
2659                         goto done;
2660                 }
2661         }
2662
2663         kvfree(params);
2664
2665         /* Use the allowlist unless the following conditions are all true:
2666          * - We are not currently suspending
2667          * - There are 1 or more ADV monitors registered and it's not offloaded
2668          * - Interleaved scanning is not currently using the allowlist
2669          */
2670         if (!idr_is_empty(&hdev->adv_monitors_idr) && !hdev->suspended &&
2671             hci_get_adv_monitor_offload_ext(hdev) == HCI_ADV_MONITOR_EXT_NONE &&
2672             hdev->interleave_scan_state != INTERLEAVE_SCAN_ALLOWLIST)
2673                 err = -EINVAL;
2674
2675 done:
2676         filter_policy = err ? 0x00 : 0x01;
2677
2678         /* Enable address resolution when LL Privacy is enabled. */
2679         err = hci_le_set_addr_resolution_enable_sync(hdev, 0x01);
2680         if (err)
2681                 bt_dev_err(hdev, "Unable to enable LL privacy: %d", err);
2682
2683         /* Resume advertising if it was paused */
2684         if (use_ll_privacy(hdev))
2685                 hci_resume_advertising_sync(hdev);
2686
2687         /* Select filter policy to use accept list */
2688         return filter_policy;
2689 }
2690
2691 static int hci_le_set_ext_scan_param_sync(struct hci_dev *hdev, u8 type,
2692                                           u16 interval, u16 window,
2693                                           u8 own_addr_type, u8 filter_policy)
2694 {
2695         struct hci_cp_le_set_ext_scan_params *cp;
2696         struct hci_cp_le_scan_phy_params *phy;
2697         u8 data[sizeof(*cp) + sizeof(*phy) * 2];
2698         u8 num_phy = 0;
2699
2700         cp = (void *)data;
2701         phy = (void *)cp->data;
2702
2703         memset(data, 0, sizeof(data));
2704
2705         cp->own_addr_type = own_addr_type;
2706         cp->filter_policy = filter_policy;
2707
2708         if (scan_1m(hdev) || scan_2m(hdev)) {
2709                 cp->scanning_phys |= LE_SCAN_PHY_1M;
2710
2711                 phy->type = type;
2712                 phy->interval = cpu_to_le16(interval);
2713                 phy->window = cpu_to_le16(window);
2714
2715                 num_phy++;
2716                 phy++;
2717         }
2718
2719         if (scan_coded(hdev)) {
2720                 cp->scanning_phys |= LE_SCAN_PHY_CODED;
2721
2722                 phy->type = type;
2723                 phy->interval = cpu_to_le16(interval);
2724                 phy->window = cpu_to_le16(window);
2725
2726                 num_phy++;
2727                 phy++;
2728         }
2729
2730         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_SCAN_PARAMS,
2731                                      sizeof(*cp) + sizeof(*phy) * num_phy,
2732                                      data, HCI_CMD_TIMEOUT);
2733 }
2734
2735 static int hci_le_set_scan_param_sync(struct hci_dev *hdev, u8 type,
2736                                       u16 interval, u16 window,
2737                                       u8 own_addr_type, u8 filter_policy)
2738 {
2739         struct hci_cp_le_set_scan_param cp;
2740
2741         if (use_ext_scan(hdev))
2742                 return hci_le_set_ext_scan_param_sync(hdev, type, interval,
2743                                                       window, own_addr_type,
2744                                                       filter_policy);
2745
2746         memset(&cp, 0, sizeof(cp));
2747         cp.type = type;
2748         cp.interval = cpu_to_le16(interval);
2749         cp.window = cpu_to_le16(window);
2750         cp.own_address_type = own_addr_type;
2751         cp.filter_policy = filter_policy;
2752
2753         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_SCAN_PARAM,
2754                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
2755 }
2756
2757 static int hci_start_scan_sync(struct hci_dev *hdev, u8 type, u16 interval,
2758                                u16 window, u8 own_addr_type, u8 filter_policy,
2759                                u8 filter_dup)
2760 {
2761         int err;
2762
2763         if (hdev->scanning_paused) {
2764                 bt_dev_dbg(hdev, "Scanning is paused for suspend");
2765                 return 0;
2766         }
2767
2768         err = hci_le_set_scan_param_sync(hdev, type, interval, window,
2769                                          own_addr_type, filter_policy);
2770         if (err)
2771                 return err;
2772
2773         return hci_le_set_scan_enable_sync(hdev, LE_SCAN_ENABLE, filter_dup);
2774 }
2775
2776 static int hci_passive_scan_sync(struct hci_dev *hdev)
2777 {
2778         u8 own_addr_type;
2779         u8 filter_policy;
2780         u16 window, interval;
2781         u8 filter_dups = LE_SCAN_FILTER_DUP_ENABLE;
2782         int err;
2783
2784         if (hdev->scanning_paused) {
2785                 bt_dev_dbg(hdev, "Scanning is paused for suspend");
2786                 return 0;
2787         }
2788
2789         err = hci_scan_disable_sync(hdev);
2790         if (err) {
2791                 bt_dev_err(hdev, "disable scanning failed: %d", err);
2792                 return err;
2793         }
2794
2795         /* Set require_privacy to false since no SCAN_REQ are send
2796          * during passive scanning. Not using an non-resolvable address
2797          * here is important so that peer devices using direct
2798          * advertising with our address will be correctly reported
2799          * by the controller.
2800          */
2801         if (hci_update_random_address_sync(hdev, false, scan_use_rpa(hdev),
2802                                            &own_addr_type))
2803                 return 0;
2804
2805         if (hdev->enable_advmon_interleave_scan &&
2806             hci_update_interleaved_scan_sync(hdev))
2807                 return 0;
2808
2809         bt_dev_dbg(hdev, "interleave state %d", hdev->interleave_scan_state);
2810
2811         /* Adding or removing entries from the accept list must
2812          * happen before enabling scanning. The controller does
2813          * not allow accept list modification while scanning.
2814          */
2815         filter_policy = hci_update_accept_list_sync(hdev);
2816
2817         /* When the controller is using random resolvable addresses and
2818          * with that having LE privacy enabled, then controllers with
2819          * Extended Scanner Filter Policies support can now enable support
2820          * for handling directed advertising.
2821          *
2822          * So instead of using filter polices 0x00 (no acceptlist)
2823          * and 0x01 (acceptlist enabled) use the new filter policies
2824          * 0x02 (no acceptlist) and 0x03 (acceptlist enabled).
2825          */
2826         if (hci_dev_test_flag(hdev, HCI_PRIVACY) &&
2827             (hdev->le_features[0] & HCI_LE_EXT_SCAN_POLICY))
2828                 filter_policy |= 0x02;
2829
2830         if (hdev->suspended) {
2831                 window = hdev->le_scan_window_suspend;
2832                 interval = hdev->le_scan_int_suspend;
2833         } else if (hci_is_le_conn_scanning(hdev)) {
2834                 window = hdev->le_scan_window_connect;
2835                 interval = hdev->le_scan_int_connect;
2836         } else if (hci_is_adv_monitoring(hdev)) {
2837                 window = hdev->le_scan_window_adv_monitor;
2838                 interval = hdev->le_scan_int_adv_monitor;
2839         } else {
2840                 window = hdev->le_scan_window;
2841                 interval = hdev->le_scan_interval;
2842         }
2843
2844         /* Disable all filtering for Mesh */
2845         if (hci_dev_test_flag(hdev, HCI_MESH)) {
2846                 filter_policy = 0;
2847                 filter_dups = LE_SCAN_FILTER_DUP_DISABLE;
2848         }
2849
2850         bt_dev_dbg(hdev, "LE passive scan with acceptlist = %d", filter_policy);
2851
2852         return hci_start_scan_sync(hdev, LE_SCAN_PASSIVE, interval, window,
2853                                    own_addr_type, filter_policy, filter_dups);
2854 }
2855
2856 /* This function controls the passive scanning based on hdev->pend_le_conns
2857  * list. If there are pending LE connection we start the background scanning,
2858  * otherwise we stop it in the following sequence:
2859  *
2860  * If there are devices to scan:
2861  *
2862  * Disable Scanning -> Update Accept List ->
2863  * use_ll_privacy((Disable Advertising) -> Disable Resolving List ->
2864  * Update Resolving List -> Enable Resolving List -> (Enable Advertising)) ->
2865  * Enable Scanning
2866  *
2867  * Otherwise:
2868  *
2869  * Disable Scanning
2870  */
2871 int hci_update_passive_scan_sync(struct hci_dev *hdev)
2872 {
2873         int err;
2874
2875         if (!test_bit(HCI_UP, &hdev->flags) ||
2876             test_bit(HCI_INIT, &hdev->flags) ||
2877             hci_dev_test_flag(hdev, HCI_SETUP) ||
2878             hci_dev_test_flag(hdev, HCI_CONFIG) ||
2879             hci_dev_test_flag(hdev, HCI_AUTO_OFF) ||
2880             hci_dev_test_flag(hdev, HCI_UNREGISTER))
2881                 return 0;
2882
2883         /* No point in doing scanning if LE support hasn't been enabled */
2884         if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
2885                 return 0;
2886
2887         /* If discovery is active don't interfere with it */
2888         if (hdev->discovery.state != DISCOVERY_STOPPED)
2889                 return 0;
2890
2891         /* Reset RSSI and UUID filters when starting background scanning
2892          * since these filters are meant for service discovery only.
2893          *
2894          * The Start Discovery and Start Service Discovery operations
2895          * ensure to set proper values for RSSI threshold and UUID
2896          * filter list. So it is safe to just reset them here.
2897          */
2898         hci_discovery_filter_clear(hdev);
2899
2900         bt_dev_dbg(hdev, "ADV monitoring is %s",
2901                    hci_is_adv_monitoring(hdev) ? "on" : "off");
2902
2903         if (!hci_dev_test_flag(hdev, HCI_MESH) &&
2904             list_empty(&hdev->pend_le_conns) &&
2905             list_empty(&hdev->pend_le_reports) &&
2906             !hci_is_adv_monitoring(hdev) &&
2907             !hci_dev_test_flag(hdev, HCI_PA_SYNC)) {
2908                 /* If there is no pending LE connections or devices
2909                  * to be scanned for or no ADV monitors, we should stop the
2910                  * background scanning.
2911                  */
2912
2913                 bt_dev_dbg(hdev, "stopping background scanning");
2914
2915                 err = hci_scan_disable_sync(hdev);
2916                 if (err)
2917                         bt_dev_err(hdev, "stop background scanning failed: %d",
2918                                    err);
2919         } else {
2920                 /* If there is at least one pending LE connection, we should
2921                  * keep the background scan running.
2922                  */
2923
2924                 /* If controller is connecting, we should not start scanning
2925                  * since some controllers are not able to scan and connect at
2926                  * the same time.
2927                  */
2928                 if (hci_lookup_le_connect(hdev))
2929                         return 0;
2930
2931                 bt_dev_dbg(hdev, "start background scanning");
2932
2933                 err = hci_passive_scan_sync(hdev);
2934                 if (err)
2935                         bt_dev_err(hdev, "start background scanning failed: %d",
2936                                    err);
2937         }
2938
2939         return err;
2940 }
2941
2942 static int update_scan_sync(struct hci_dev *hdev, void *data)
2943 {
2944         return hci_update_scan_sync(hdev);
2945 }
2946
2947 int hci_update_scan(struct hci_dev *hdev)
2948 {
2949         return hci_cmd_sync_queue(hdev, update_scan_sync, NULL, NULL);
2950 }
2951
2952 static int update_passive_scan_sync(struct hci_dev *hdev, void *data)
2953 {
2954         return hci_update_passive_scan_sync(hdev);
2955 }
2956
2957 int hci_update_passive_scan(struct hci_dev *hdev)
2958 {
2959         /* Only queue if it would have any effect */
2960         if (!test_bit(HCI_UP, &hdev->flags) ||
2961             test_bit(HCI_INIT, &hdev->flags) ||
2962             hci_dev_test_flag(hdev, HCI_SETUP) ||
2963             hci_dev_test_flag(hdev, HCI_CONFIG) ||
2964             hci_dev_test_flag(hdev, HCI_AUTO_OFF) ||
2965             hci_dev_test_flag(hdev, HCI_UNREGISTER))
2966                 return 0;
2967
2968         return hci_cmd_sync_queue(hdev, update_passive_scan_sync, NULL, NULL);
2969 }
2970
2971 int hci_write_sc_support_sync(struct hci_dev *hdev, u8 val)
2972 {
2973         int err;
2974
2975         if (!bredr_sc_enabled(hdev) || lmp_host_sc_capable(hdev))
2976                 return 0;
2977
2978         err = __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SC_SUPPORT,
2979                                     sizeof(val), &val, HCI_CMD_TIMEOUT);
2980
2981         if (!err) {
2982                 if (val) {
2983                         hdev->features[1][0] |= LMP_HOST_SC;
2984                         hci_dev_set_flag(hdev, HCI_SC_ENABLED);
2985                 } else {
2986                         hdev->features[1][0] &= ~LMP_HOST_SC;
2987                         hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
2988                 }
2989         }
2990
2991         return err;
2992 }
2993
2994 int hci_write_ssp_mode_sync(struct hci_dev *hdev, u8 mode)
2995 {
2996         int err;
2997
2998         if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED) ||
2999             lmp_host_ssp_capable(hdev))
3000                 return 0;
3001
3002         if (!mode && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS)) {
3003                 __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
3004                                       sizeof(mode), &mode, HCI_CMD_TIMEOUT);
3005         }
3006
3007         err = __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SSP_MODE,
3008                                     sizeof(mode), &mode, HCI_CMD_TIMEOUT);
3009         if (err)
3010                 return err;
3011
3012         return hci_write_sc_support_sync(hdev, 0x01);
3013 }
3014
3015 int hci_write_le_host_supported_sync(struct hci_dev *hdev, u8 le, u8 simul)
3016 {
3017         struct hci_cp_write_le_host_supported cp;
3018
3019         if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) ||
3020             !lmp_bredr_capable(hdev))
3021                 return 0;
3022
3023         /* Check first if we already have the right host state
3024          * (host features set)
3025          */
3026         if (le == lmp_host_le_capable(hdev) &&
3027             simul == lmp_host_le_br_capable(hdev))
3028                 return 0;
3029
3030         memset(&cp, 0, sizeof(cp));
3031
3032         cp.le = le;
3033         cp.simul = simul;
3034
3035         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED,
3036                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
3037 }
3038
3039 static int hci_powered_update_adv_sync(struct hci_dev *hdev)
3040 {
3041         struct adv_info *adv, *tmp;
3042         int err;
3043
3044         if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
3045                 return 0;
3046
3047         /* If RPA Resolution has not been enable yet it means the
3048          * resolving list is empty and we should attempt to program the
3049          * local IRK in order to support using own_addr_type
3050          * ADDR_LE_DEV_RANDOM_RESOLVED (0x03).
3051          */
3052         if (!hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION)) {
3053                 hci_le_add_resolve_list_sync(hdev, NULL);
3054                 hci_le_set_addr_resolution_enable_sync(hdev, 0x01);
3055         }
3056
3057         /* Make sure the controller has a good default for
3058          * advertising data. This also applies to the case
3059          * where BR/EDR was toggled during the AUTO_OFF phase.
3060          */
3061         if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
3062             list_empty(&hdev->adv_instances)) {
3063                 if (ext_adv_capable(hdev)) {
3064                         err = hci_setup_ext_adv_instance_sync(hdev, 0x00);
3065                         if (!err)
3066                                 hci_update_scan_rsp_data_sync(hdev, 0x00);
3067                 } else {
3068                         err = hci_update_adv_data_sync(hdev, 0x00);
3069                         if (!err)
3070                                 hci_update_scan_rsp_data_sync(hdev, 0x00);
3071                 }
3072
3073                 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
3074                         hci_enable_advertising_sync(hdev);
3075         }
3076
3077         /* Call for each tracked instance to be scheduled */
3078         list_for_each_entry_safe(adv, tmp, &hdev->adv_instances, list)
3079                 hci_schedule_adv_instance_sync(hdev, adv->instance, true);
3080
3081         return 0;
3082 }
3083
3084 static int hci_write_auth_enable_sync(struct hci_dev *hdev)
3085 {
3086         u8 link_sec;
3087
3088         link_sec = hci_dev_test_flag(hdev, HCI_LINK_SECURITY);
3089         if (link_sec == test_bit(HCI_AUTH, &hdev->flags))
3090                 return 0;
3091
3092         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_AUTH_ENABLE,
3093                                      sizeof(link_sec), &link_sec,
3094                                      HCI_CMD_TIMEOUT);
3095 }
3096
3097 int hci_write_fast_connectable_sync(struct hci_dev *hdev, bool enable)
3098 {
3099         struct hci_cp_write_page_scan_activity cp;
3100         u8 type;
3101         int err = 0;
3102
3103         if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
3104                 return 0;
3105
3106         if (hdev->hci_ver < BLUETOOTH_VER_1_2)
3107                 return 0;
3108
3109         memset(&cp, 0, sizeof(cp));
3110
3111         if (enable) {
3112                 type = PAGE_SCAN_TYPE_INTERLACED;
3113
3114                 /* 160 msec page scan interval */
3115                 cp.interval = cpu_to_le16(0x0100);
3116         } else {
3117                 type = hdev->def_page_scan_type;
3118                 cp.interval = cpu_to_le16(hdev->def_page_scan_int);
3119         }
3120
3121         cp.window = cpu_to_le16(hdev->def_page_scan_window);
3122
3123         if (__cpu_to_le16(hdev->page_scan_interval) != cp.interval ||
3124             __cpu_to_le16(hdev->page_scan_window) != cp.window) {
3125                 err = __hci_cmd_sync_status(hdev,
3126                                             HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
3127                                             sizeof(cp), &cp, HCI_CMD_TIMEOUT);
3128                 if (err)
3129                         return err;
3130         }
3131
3132         if (hdev->page_scan_type != type)
3133                 err = __hci_cmd_sync_status(hdev,
3134                                             HCI_OP_WRITE_PAGE_SCAN_TYPE,
3135                                             sizeof(type), &type,
3136                                             HCI_CMD_TIMEOUT);
3137
3138         return err;
3139 }
3140
3141 static bool disconnected_accept_list_entries(struct hci_dev *hdev)
3142 {
3143         struct bdaddr_list *b;
3144
3145         list_for_each_entry(b, &hdev->accept_list, list) {
3146                 struct hci_conn *conn;
3147
3148                 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &b->bdaddr);
3149                 if (!conn)
3150                         return true;
3151
3152                 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
3153                         return true;
3154         }
3155
3156         return false;
3157 }
3158
3159 static int hci_write_scan_enable_sync(struct hci_dev *hdev, u8 val)
3160 {
3161         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SCAN_ENABLE,
3162                                             sizeof(val), &val,
3163                                             HCI_CMD_TIMEOUT);
3164 }
3165
3166 int hci_update_scan_sync(struct hci_dev *hdev)
3167 {
3168         u8 scan;
3169
3170         if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
3171                 return 0;
3172
3173         if (!hdev_is_powered(hdev))
3174                 return 0;
3175
3176         if (mgmt_powering_down(hdev))
3177                 return 0;
3178
3179         if (hdev->scanning_paused)
3180                 return 0;
3181
3182         if (hci_dev_test_flag(hdev, HCI_CONNECTABLE) ||
3183             disconnected_accept_list_entries(hdev))
3184                 scan = SCAN_PAGE;
3185         else
3186                 scan = SCAN_DISABLED;
3187
3188         if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
3189                 scan |= SCAN_INQUIRY;
3190
3191         if (test_bit(HCI_PSCAN, &hdev->flags) == !!(scan & SCAN_PAGE) &&
3192             test_bit(HCI_ISCAN, &hdev->flags) == !!(scan & SCAN_INQUIRY))
3193                 return 0;
3194
3195         return hci_write_scan_enable_sync(hdev, scan);
3196 }
3197
3198 int hci_update_name_sync(struct hci_dev *hdev)
3199 {
3200         struct hci_cp_write_local_name cp;
3201
3202         memset(&cp, 0, sizeof(cp));
3203
3204         memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
3205
3206         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_LOCAL_NAME,
3207                                             sizeof(cp), &cp,
3208                                             HCI_CMD_TIMEOUT);
3209 }
3210
3211 /* This function perform powered update HCI command sequence after the HCI init
3212  * sequence which end up resetting all states, the sequence is as follows:
3213  *
3214  * HCI_SSP_ENABLED(Enable SSP)
3215  * HCI_LE_ENABLED(Enable LE)
3216  * HCI_LE_ENABLED(use_ll_privacy(Add local IRK to Resolving List) ->
3217  * Update adv data)
3218  * Enable Authentication
3219  * lmp_bredr_capable(Set Fast Connectable -> Set Scan Type -> Set Class ->
3220  * Set Name -> Set EIR)
3221  * HCI_FORCE_STATIC_ADDR | BDADDR_ANY && !HCI_BREDR_ENABLED (Set Static Address)
3222  */
3223 int hci_powered_update_sync(struct hci_dev *hdev)
3224 {
3225         int err;
3226
3227         /* Register the available SMP channels (BR/EDR and LE) only when
3228          * successfully powering on the controller. This late
3229          * registration is required so that LE SMP can clearly decide if
3230          * the public address or static address is used.
3231          */
3232         smp_register(hdev);
3233
3234         err = hci_write_ssp_mode_sync(hdev, 0x01);
3235         if (err)
3236                 return err;
3237
3238         err = hci_write_le_host_supported_sync(hdev, 0x01, 0x00);
3239         if (err)
3240                 return err;
3241
3242         err = hci_powered_update_adv_sync(hdev);
3243         if (err)
3244                 return err;
3245
3246         err = hci_write_auth_enable_sync(hdev);
3247         if (err)
3248                 return err;
3249
3250         if (lmp_bredr_capable(hdev)) {
3251                 if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
3252                         hci_write_fast_connectable_sync(hdev, true);
3253                 else
3254                         hci_write_fast_connectable_sync(hdev, false);
3255                 hci_update_scan_sync(hdev);
3256                 hci_update_class_sync(hdev);
3257                 hci_update_name_sync(hdev);
3258                 hci_update_eir_sync(hdev);
3259         }
3260
3261         /* If forcing static address is in use or there is no public
3262          * address use the static address as random address (but skip
3263          * the HCI command if the current random address is already the
3264          * static one.
3265          *
3266          * In case BR/EDR has been disabled on a dual-mode controller
3267          * and a static address has been configured, then use that
3268          * address instead of the public BR/EDR address.
3269          */
3270         if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
3271             (!bacmp(&hdev->bdaddr, BDADDR_ANY) &&
3272             !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))) {
3273                 if (bacmp(&hdev->static_addr, BDADDR_ANY))
3274                         return hci_set_random_addr_sync(hdev,
3275                                                         &hdev->static_addr);
3276         }
3277
3278         return 0;
3279 }
3280
3281 /**
3282  * hci_dev_get_bd_addr_from_property - Get the Bluetooth Device Address
3283  *                                     (BD_ADDR) for a HCI device from
3284  *                                     a firmware node property.
3285  * @hdev:       The HCI device
3286  *
3287  * Search the firmware node for 'local-bd-address'.
3288  *
3289  * All-zero BD addresses are rejected, because those could be properties
3290  * that exist in the firmware tables, but were not updated by the firmware. For
3291  * example, the DTS could define 'local-bd-address', with zero BD addresses.
3292  */
3293 static void hci_dev_get_bd_addr_from_property(struct hci_dev *hdev)
3294 {
3295         struct fwnode_handle *fwnode = dev_fwnode(hdev->dev.parent);
3296         bdaddr_t ba;
3297         int ret;
3298
3299         ret = fwnode_property_read_u8_array(fwnode, "local-bd-address",
3300                                             (u8 *)&ba, sizeof(ba));
3301         if (ret < 0 || !bacmp(&ba, BDADDR_ANY))
3302                 return;
3303
3304         bacpy(&hdev->public_addr, &ba);
3305 }
3306
3307 struct hci_init_stage {
3308         int (*func)(struct hci_dev *hdev);
3309 };
3310
3311 /* Run init stage NULL terminated function table */
3312 static int hci_init_stage_sync(struct hci_dev *hdev,
3313                                const struct hci_init_stage *stage)
3314 {
3315         size_t i;
3316
3317         for (i = 0; stage[i].func; i++) {
3318                 int err;
3319
3320                 err = stage[i].func(hdev);
3321                 if (err)
3322                         return err;
3323         }
3324
3325         return 0;
3326 }
3327
3328 /* Read Local Version */
3329 static int hci_read_local_version_sync(struct hci_dev *hdev)
3330 {
3331         return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_VERSION,
3332                                      0, NULL, HCI_CMD_TIMEOUT);
3333 }
3334
3335 /* Read BD Address */
3336 static int hci_read_bd_addr_sync(struct hci_dev *hdev)
3337 {
3338         return __hci_cmd_sync_status(hdev, HCI_OP_READ_BD_ADDR,
3339                                      0, NULL, HCI_CMD_TIMEOUT);
3340 }
3341
3342 #define HCI_INIT(_func) \
3343 { \
3344         .func = _func, \
3345 }
3346
3347 static const struct hci_init_stage hci_init0[] = {
3348         /* HCI_OP_READ_LOCAL_VERSION */
3349         HCI_INIT(hci_read_local_version_sync),
3350         /* HCI_OP_READ_BD_ADDR */
3351         HCI_INIT(hci_read_bd_addr_sync),
3352         {}
3353 };
3354
3355 int hci_reset_sync(struct hci_dev *hdev)
3356 {
3357         int err;
3358
3359         set_bit(HCI_RESET, &hdev->flags);
3360
3361         err = __hci_cmd_sync_status(hdev, HCI_OP_RESET, 0, NULL,
3362                                     HCI_CMD_TIMEOUT);
3363         if (err)
3364                 return err;
3365
3366         return 0;
3367 }
3368
3369 static int hci_init0_sync(struct hci_dev *hdev)
3370 {
3371         int err;
3372
3373         bt_dev_dbg(hdev, "");
3374
3375         /* Reset */
3376         if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks)) {
3377                 err = hci_reset_sync(hdev);
3378                 if (err)
3379                         return err;
3380         }
3381
3382         return hci_init_stage_sync(hdev, hci_init0);
3383 }
3384
3385 static int hci_unconf_init_sync(struct hci_dev *hdev)
3386 {
3387         int err;
3388
3389         if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
3390                 return 0;
3391
3392         err = hci_init0_sync(hdev);
3393         if (err < 0)
3394                 return err;
3395
3396         if (hci_dev_test_flag(hdev, HCI_SETUP))
3397                 hci_debugfs_create_basic(hdev);
3398
3399         return 0;
3400 }
3401
3402 /* Read Local Supported Features. */
3403 static int hci_read_local_features_sync(struct hci_dev *hdev)
3404 {
3405          /* Not all AMP controllers support this command */
3406         if (hdev->dev_type == HCI_AMP && !(hdev->commands[14] & 0x20))
3407                 return 0;
3408
3409         return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_FEATURES,
3410                                      0, NULL, HCI_CMD_TIMEOUT);
3411 }
3412
3413 /* BR Controller init stage 1 command sequence */
3414 static const struct hci_init_stage br_init1[] = {
3415         /* HCI_OP_READ_LOCAL_FEATURES */
3416         HCI_INIT(hci_read_local_features_sync),
3417         /* HCI_OP_READ_LOCAL_VERSION */
3418         HCI_INIT(hci_read_local_version_sync),
3419         /* HCI_OP_READ_BD_ADDR */
3420         HCI_INIT(hci_read_bd_addr_sync),
3421         {}
3422 };
3423
3424 /* Read Local Commands */
3425 static int hci_read_local_cmds_sync(struct hci_dev *hdev)
3426 {
3427         /* All Bluetooth 1.2 and later controllers should support the
3428          * HCI command for reading the local supported commands.
3429          *
3430          * Unfortunately some controllers indicate Bluetooth 1.2 support,
3431          * but do not have support for this command. If that is the case,
3432          * the driver can quirk the behavior and skip reading the local
3433          * supported commands.
3434          */
3435         if (hdev->hci_ver > BLUETOOTH_VER_1_1 &&
3436             !test_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks))
3437                 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_COMMANDS,
3438                                              0, NULL, HCI_CMD_TIMEOUT);
3439
3440         return 0;
3441 }
3442
3443 /* Read Local AMP Info */
3444 static int hci_read_local_amp_info_sync(struct hci_dev *hdev)
3445 {
3446         return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_AMP_INFO,
3447                                      0, NULL, HCI_CMD_TIMEOUT);
3448 }
3449
3450 /* Read Data Blk size */
3451 static int hci_read_data_block_size_sync(struct hci_dev *hdev)
3452 {
3453         return __hci_cmd_sync_status(hdev, HCI_OP_READ_DATA_BLOCK_SIZE,
3454                                      0, NULL, HCI_CMD_TIMEOUT);
3455 }
3456
3457 /* Read Flow Control Mode */
3458 static int hci_read_flow_control_mode_sync(struct hci_dev *hdev)
3459 {
3460         return __hci_cmd_sync_status(hdev, HCI_OP_READ_FLOW_CONTROL_MODE,
3461                                      0, NULL, HCI_CMD_TIMEOUT);
3462 }
3463
3464 /* Read Location Data */
3465 static int hci_read_location_data_sync(struct hci_dev *hdev)
3466 {
3467         return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCATION_DATA,
3468                                      0, NULL, HCI_CMD_TIMEOUT);
3469 }
3470
3471 /* AMP Controller init stage 1 command sequence */
3472 static const struct hci_init_stage amp_init1[] = {
3473         /* HCI_OP_READ_LOCAL_VERSION */
3474         HCI_INIT(hci_read_local_version_sync),
3475         /* HCI_OP_READ_LOCAL_COMMANDS */
3476         HCI_INIT(hci_read_local_cmds_sync),
3477         /* HCI_OP_READ_LOCAL_AMP_INFO */
3478         HCI_INIT(hci_read_local_amp_info_sync),
3479         /* HCI_OP_READ_DATA_BLOCK_SIZE */
3480         HCI_INIT(hci_read_data_block_size_sync),
3481         /* HCI_OP_READ_FLOW_CONTROL_MODE */
3482         HCI_INIT(hci_read_flow_control_mode_sync),
3483         /* HCI_OP_READ_LOCATION_DATA */
3484         HCI_INIT(hci_read_location_data_sync),
3485         {}
3486 };
3487
3488 static int hci_init1_sync(struct hci_dev *hdev)
3489 {
3490         int err;
3491
3492         bt_dev_dbg(hdev, "");
3493
3494         /* Reset */
3495         if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks)) {
3496                 err = hci_reset_sync(hdev);
3497                 if (err)
3498                         return err;
3499         }
3500
3501         switch (hdev->dev_type) {
3502         case HCI_PRIMARY:
3503                 hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_PACKET_BASED;
3504                 return hci_init_stage_sync(hdev, br_init1);
3505         case HCI_AMP:
3506                 hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_BLOCK_BASED;
3507                 return hci_init_stage_sync(hdev, amp_init1);
3508         default:
3509                 bt_dev_err(hdev, "Unknown device type %d", hdev->dev_type);
3510                 break;
3511         }
3512
3513         return 0;
3514 }
3515
3516 /* AMP Controller init stage 2 command sequence */
3517 static const struct hci_init_stage amp_init2[] = {
3518         /* HCI_OP_READ_LOCAL_FEATURES */
3519         HCI_INIT(hci_read_local_features_sync),
3520         {}
3521 };
3522
3523 /* Read Buffer Size (ACL mtu, max pkt, etc.) */
3524 static int hci_read_buffer_size_sync(struct hci_dev *hdev)
3525 {
3526         return __hci_cmd_sync_status(hdev, HCI_OP_READ_BUFFER_SIZE,
3527                                      0, NULL, HCI_CMD_TIMEOUT);
3528 }
3529
3530 /* Read Class of Device */
3531 static int hci_read_dev_class_sync(struct hci_dev *hdev)
3532 {
3533         return __hci_cmd_sync_status(hdev, HCI_OP_READ_CLASS_OF_DEV,
3534                                      0, NULL, HCI_CMD_TIMEOUT);
3535 }
3536
3537 /* Read Local Name */
3538 static int hci_read_local_name_sync(struct hci_dev *hdev)
3539 {
3540         return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_NAME,
3541                                      0, NULL, HCI_CMD_TIMEOUT);
3542 }
3543
3544 /* Read Voice Setting */
3545 static int hci_read_voice_setting_sync(struct hci_dev *hdev)
3546 {
3547         return __hci_cmd_sync_status(hdev, HCI_OP_READ_VOICE_SETTING,
3548                                      0, NULL, HCI_CMD_TIMEOUT);
3549 }
3550
3551 /* Read Number of Supported IAC */
3552 static int hci_read_num_supported_iac_sync(struct hci_dev *hdev)
3553 {
3554         return __hci_cmd_sync_status(hdev, HCI_OP_READ_NUM_SUPPORTED_IAC,
3555                                      0, NULL, HCI_CMD_TIMEOUT);
3556 }
3557
3558 /* Read Current IAC LAP */
3559 static int hci_read_current_iac_lap_sync(struct hci_dev *hdev)
3560 {
3561         return __hci_cmd_sync_status(hdev, HCI_OP_READ_CURRENT_IAC_LAP,
3562                                      0, NULL, HCI_CMD_TIMEOUT);
3563 }
3564
3565 static int hci_set_event_filter_sync(struct hci_dev *hdev, u8 flt_type,
3566                                      u8 cond_type, bdaddr_t *bdaddr,
3567                                      u8 auto_accept)
3568 {
3569         struct hci_cp_set_event_filter cp;
3570
3571         if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
3572                 return 0;
3573
3574         if (test_bit(HCI_QUIRK_BROKEN_FILTER_CLEAR_ALL, &hdev->quirks))
3575                 return 0;
3576
3577         memset(&cp, 0, sizeof(cp));
3578         cp.flt_type = flt_type;
3579
3580         if (flt_type != HCI_FLT_CLEAR_ALL) {
3581                 cp.cond_type = cond_type;
3582                 bacpy(&cp.addr_conn_flt.bdaddr, bdaddr);
3583                 cp.addr_conn_flt.auto_accept = auto_accept;
3584         }
3585
3586         return __hci_cmd_sync_status(hdev, HCI_OP_SET_EVENT_FLT,
3587                                      flt_type == HCI_FLT_CLEAR_ALL ?
3588                                      sizeof(cp.flt_type) : sizeof(cp), &cp,
3589                                      HCI_CMD_TIMEOUT);
3590 }
3591
3592 static int hci_clear_event_filter_sync(struct hci_dev *hdev)
3593 {
3594         if (!hci_dev_test_flag(hdev, HCI_EVENT_FILTER_CONFIGURED))
3595                 return 0;
3596
3597         /* In theory the state machine should not reach here unless
3598          * a hci_set_event_filter_sync() call succeeds, but we do
3599          * the check both for parity and as a future reminder.
3600          */
3601         if (test_bit(HCI_QUIRK_BROKEN_FILTER_CLEAR_ALL, &hdev->quirks))
3602                 return 0;
3603
3604         return hci_set_event_filter_sync(hdev, HCI_FLT_CLEAR_ALL, 0x00,
3605                                          BDADDR_ANY, 0x00);
3606 }
3607
3608 /* Connection accept timeout ~20 secs */
3609 static int hci_write_ca_timeout_sync(struct hci_dev *hdev)
3610 {
3611         __le16 param = cpu_to_le16(0x7d00);
3612
3613         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_CA_TIMEOUT,
3614                                      sizeof(param), &param, HCI_CMD_TIMEOUT);
3615 }
3616
3617 /* BR Controller init stage 2 command sequence */
3618 static const struct hci_init_stage br_init2[] = {
3619         /* HCI_OP_READ_BUFFER_SIZE */
3620         HCI_INIT(hci_read_buffer_size_sync),
3621         /* HCI_OP_READ_CLASS_OF_DEV */
3622         HCI_INIT(hci_read_dev_class_sync),
3623         /* HCI_OP_READ_LOCAL_NAME */
3624         HCI_INIT(hci_read_local_name_sync),
3625         /* HCI_OP_READ_VOICE_SETTING */
3626         HCI_INIT(hci_read_voice_setting_sync),
3627         /* HCI_OP_READ_NUM_SUPPORTED_IAC */
3628         HCI_INIT(hci_read_num_supported_iac_sync),
3629         /* HCI_OP_READ_CURRENT_IAC_LAP */
3630         HCI_INIT(hci_read_current_iac_lap_sync),
3631         /* HCI_OP_SET_EVENT_FLT */
3632         HCI_INIT(hci_clear_event_filter_sync),
3633         /* HCI_OP_WRITE_CA_TIMEOUT */
3634         HCI_INIT(hci_write_ca_timeout_sync),
3635         {}
3636 };
3637
3638 static int hci_write_ssp_mode_1_sync(struct hci_dev *hdev)
3639 {
3640         u8 mode = 0x01;
3641
3642         if (!lmp_ssp_capable(hdev) || !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
3643                 return 0;
3644
3645         /* When SSP is available, then the host features page
3646          * should also be available as well. However some
3647          * controllers list the max_page as 0 as long as SSP
3648          * has not been enabled. To achieve proper debugging
3649          * output, force the minimum max_page to 1 at least.
3650          */
3651         hdev->max_page = 0x01;
3652
3653         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SSP_MODE,
3654                                      sizeof(mode), &mode, HCI_CMD_TIMEOUT);
3655 }
3656
3657 static int hci_write_eir_sync(struct hci_dev *hdev)
3658 {
3659         struct hci_cp_write_eir cp;
3660
3661         if (!lmp_ssp_capable(hdev) || hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
3662                 return 0;
3663
3664         memset(hdev->eir, 0, sizeof(hdev->eir));
3665         memset(&cp, 0, sizeof(cp));
3666
3667         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp,
3668                                      HCI_CMD_TIMEOUT);
3669 }
3670
3671 static int hci_write_inquiry_mode_sync(struct hci_dev *hdev)
3672 {
3673         u8 mode;
3674
3675         if (!lmp_inq_rssi_capable(hdev) &&
3676             !test_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks))
3677                 return 0;
3678
3679         /* If Extended Inquiry Result events are supported, then
3680          * they are clearly preferred over Inquiry Result with RSSI
3681          * events.
3682          */
3683         mode = lmp_ext_inq_capable(hdev) ? 0x02 : 0x01;
3684
3685         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_INQUIRY_MODE,
3686                                      sizeof(mode), &mode, HCI_CMD_TIMEOUT);
3687 }
3688
3689 static int hci_read_inq_rsp_tx_power_sync(struct hci_dev *hdev)
3690 {
3691         if (!lmp_inq_tx_pwr_capable(hdev))
3692                 return 0;
3693
3694         return __hci_cmd_sync_status(hdev, HCI_OP_READ_INQ_RSP_TX_POWER,
3695                                      0, NULL, HCI_CMD_TIMEOUT);
3696 }
3697
3698 static int hci_read_local_ext_features_sync(struct hci_dev *hdev, u8 page)
3699 {
3700         struct hci_cp_read_local_ext_features cp;
3701
3702         if (!lmp_ext_feat_capable(hdev))
3703                 return 0;
3704
3705         memset(&cp, 0, sizeof(cp));
3706         cp.page = page;
3707
3708         return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES,
3709                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
3710 }
3711
3712 static int hci_read_local_ext_features_1_sync(struct hci_dev *hdev)
3713 {
3714         return hci_read_local_ext_features_sync(hdev, 0x01);
3715 }
3716
3717 /* HCI Controller init stage 2 command sequence */
3718 static const struct hci_init_stage hci_init2[] = {
3719         /* HCI_OP_READ_LOCAL_COMMANDS */
3720         HCI_INIT(hci_read_local_cmds_sync),
3721         /* HCI_OP_WRITE_SSP_MODE */
3722         HCI_INIT(hci_write_ssp_mode_1_sync),
3723         /* HCI_OP_WRITE_EIR */
3724         HCI_INIT(hci_write_eir_sync),
3725         /* HCI_OP_WRITE_INQUIRY_MODE */
3726         HCI_INIT(hci_write_inquiry_mode_sync),
3727         /* HCI_OP_READ_INQ_RSP_TX_POWER */
3728         HCI_INIT(hci_read_inq_rsp_tx_power_sync),
3729         /* HCI_OP_READ_LOCAL_EXT_FEATURES */
3730         HCI_INIT(hci_read_local_ext_features_1_sync),
3731         /* HCI_OP_WRITE_AUTH_ENABLE */
3732         HCI_INIT(hci_write_auth_enable_sync),
3733         {}
3734 };
3735
3736 /* Read LE Buffer Size */
3737 static int hci_le_read_buffer_size_sync(struct hci_dev *hdev)
3738 {
3739         /* Use Read LE Buffer Size V2 if supported */
3740         if (iso_capable(hdev) && hdev->commands[41] & 0x20)
3741                 return __hci_cmd_sync_status(hdev,
3742                                              HCI_OP_LE_READ_BUFFER_SIZE_V2,
3743                                              0, NULL, HCI_CMD_TIMEOUT);
3744
3745         return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_BUFFER_SIZE,
3746                                      0, NULL, HCI_CMD_TIMEOUT);
3747 }
3748
3749 /* Read LE Local Supported Features */
3750 static int hci_le_read_local_features_sync(struct hci_dev *hdev)
3751 {
3752         return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_LOCAL_FEATURES,
3753                                      0, NULL, HCI_CMD_TIMEOUT);
3754 }
3755
3756 /* Read LE Supported States */
3757 static int hci_le_read_supported_states_sync(struct hci_dev *hdev)
3758 {
3759         return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_SUPPORTED_STATES,
3760                                      0, NULL, HCI_CMD_TIMEOUT);
3761 }
3762
3763 /* LE Controller init stage 2 command sequence */
3764 static const struct hci_init_stage le_init2[] = {
3765         /* HCI_OP_LE_READ_LOCAL_FEATURES */
3766         HCI_INIT(hci_le_read_local_features_sync),
3767         /* HCI_OP_LE_READ_BUFFER_SIZE */
3768         HCI_INIT(hci_le_read_buffer_size_sync),
3769         /* HCI_OP_LE_READ_SUPPORTED_STATES */
3770         HCI_INIT(hci_le_read_supported_states_sync),
3771         {}
3772 };
3773
3774 static int hci_init2_sync(struct hci_dev *hdev)
3775 {
3776         int err;
3777
3778         bt_dev_dbg(hdev, "");
3779
3780         if (hdev->dev_type == HCI_AMP)
3781                 return hci_init_stage_sync(hdev, amp_init2);
3782
3783         err = hci_init_stage_sync(hdev, hci_init2);
3784         if (err)
3785                 return err;
3786
3787         if (lmp_bredr_capable(hdev)) {
3788                 err = hci_init_stage_sync(hdev, br_init2);
3789                 if (err)
3790                         return err;
3791         } else {
3792                 hci_dev_clear_flag(hdev, HCI_BREDR_ENABLED);
3793         }
3794
3795         if (lmp_le_capable(hdev)) {
3796                 err = hci_init_stage_sync(hdev, le_init2);
3797                 if (err)
3798                         return err;
3799                 /* LE-only controllers have LE implicitly enabled */
3800                 if (!lmp_bredr_capable(hdev))
3801                         hci_dev_set_flag(hdev, HCI_LE_ENABLED);
3802         }
3803
3804         return 0;
3805 }
3806
3807 static int hci_set_event_mask_sync(struct hci_dev *hdev)
3808 {
3809         /* The second byte is 0xff instead of 0x9f (two reserved bits
3810          * disabled) since a Broadcom 1.2 dongle doesn't respond to the
3811          * command otherwise.
3812          */
3813         u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
3814
3815         /* CSR 1.1 dongles does not accept any bitfield so don't try to set
3816          * any event mask for pre 1.2 devices.
3817          */
3818         if (hdev->hci_ver < BLUETOOTH_VER_1_2)
3819                 return 0;
3820
3821         if (lmp_bredr_capable(hdev)) {
3822                 events[4] |= 0x01; /* Flow Specification Complete */
3823
3824                 /* Don't set Disconnect Complete and mode change when
3825                  * suspended as that would wakeup the host when disconnecting
3826                  * due to suspend.
3827                  */
3828                 if (hdev->suspended) {
3829                         events[0] &= 0xef;
3830                         events[2] &= 0xf7;
3831                 }
3832         } else {
3833                 /* Use a different default for LE-only devices */
3834                 memset(events, 0, sizeof(events));
3835                 events[1] |= 0x20; /* Command Complete */
3836                 events[1] |= 0x40; /* Command Status */
3837                 events[1] |= 0x80; /* Hardware Error */
3838
3839                 /* If the controller supports the Disconnect command, enable
3840                  * the corresponding event. In addition enable packet flow
3841                  * control related events.
3842                  */
3843                 if (hdev->commands[0] & 0x20) {
3844                         /* Don't set Disconnect Complete when suspended as that
3845                          * would wakeup the host when disconnecting due to
3846                          * suspend.
3847                          */
3848                         if (!hdev->suspended)
3849                                 events[0] |= 0x10; /* Disconnection Complete */
3850                         events[2] |= 0x04; /* Number of Completed Packets */
3851                         events[3] |= 0x02; /* Data Buffer Overflow */
3852                 }
3853
3854                 /* If the controller supports the Read Remote Version
3855                  * Information command, enable the corresponding event.
3856                  */
3857                 if (hdev->commands[2] & 0x80)
3858                         events[1] |= 0x08; /* Read Remote Version Information
3859                                             * Complete
3860                                             */
3861
3862                 if (hdev->le_features[0] & HCI_LE_ENCRYPTION) {
3863                         events[0] |= 0x80; /* Encryption Change */
3864                         events[5] |= 0x80; /* Encryption Key Refresh Complete */
3865                 }
3866         }
3867
3868         if (lmp_inq_rssi_capable(hdev) ||
3869             test_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks))
3870                 events[4] |= 0x02; /* Inquiry Result with RSSI */
3871
3872         if (lmp_ext_feat_capable(hdev))
3873                 events[4] |= 0x04; /* Read Remote Extended Features Complete */
3874
3875         if (lmp_esco_capable(hdev)) {
3876                 events[5] |= 0x08; /* Synchronous Connection Complete */
3877                 events[5] |= 0x10; /* Synchronous Connection Changed */
3878         }
3879
3880         if (lmp_sniffsubr_capable(hdev))
3881                 events[5] |= 0x20; /* Sniff Subrating */
3882
3883         if (lmp_pause_enc_capable(hdev))
3884                 events[5] |= 0x80; /* Encryption Key Refresh Complete */
3885
3886         if (lmp_ext_inq_capable(hdev))
3887                 events[5] |= 0x40; /* Extended Inquiry Result */
3888
3889         if (lmp_no_flush_capable(hdev))
3890                 events[7] |= 0x01; /* Enhanced Flush Complete */
3891
3892         if (lmp_lsto_capable(hdev))
3893                 events[6] |= 0x80; /* Link Supervision Timeout Changed */
3894
3895         if (lmp_ssp_capable(hdev)) {
3896                 events[6] |= 0x01;      /* IO Capability Request */
3897                 events[6] |= 0x02;      /* IO Capability Response */
3898                 events[6] |= 0x04;      /* User Confirmation Request */
3899                 events[6] |= 0x08;      /* User Passkey Request */
3900                 events[6] |= 0x10;      /* Remote OOB Data Request */
3901                 events[6] |= 0x20;      /* Simple Pairing Complete */
3902                 events[7] |= 0x04;      /* User Passkey Notification */
3903                 events[7] |= 0x08;      /* Keypress Notification */
3904                 events[7] |= 0x10;      /* Remote Host Supported
3905                                          * Features Notification
3906                                          */
3907         }
3908
3909         if (lmp_le_capable(hdev))
3910                 events[7] |= 0x20;      /* LE Meta-Event */
3911
3912         return __hci_cmd_sync_status(hdev, HCI_OP_SET_EVENT_MASK,
3913                                      sizeof(events), events, HCI_CMD_TIMEOUT);
3914 }
3915
3916 static int hci_read_stored_link_key_sync(struct hci_dev *hdev)
3917 {
3918         struct hci_cp_read_stored_link_key cp;
3919
3920         if (!(hdev->commands[6] & 0x20) ||
3921             test_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks))
3922                 return 0;
3923
3924         memset(&cp, 0, sizeof(cp));
3925         bacpy(&cp.bdaddr, BDADDR_ANY);
3926         cp.read_all = 0x01;
3927
3928         return __hci_cmd_sync_status(hdev, HCI_OP_READ_STORED_LINK_KEY,
3929                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
3930 }
3931
3932 static int hci_setup_link_policy_sync(struct hci_dev *hdev)
3933 {
3934         struct hci_cp_write_def_link_policy cp;
3935         u16 link_policy = 0;
3936
3937         if (!(hdev->commands[5] & 0x10))
3938                 return 0;
3939
3940         memset(&cp, 0, sizeof(cp));
3941
3942         if (lmp_rswitch_capable(hdev))
3943                 link_policy |= HCI_LP_RSWITCH;
3944         if (lmp_hold_capable(hdev))
3945                 link_policy |= HCI_LP_HOLD;
3946         if (lmp_sniff_capable(hdev))
3947                 link_policy |= HCI_LP_SNIFF;
3948         if (lmp_park_capable(hdev))
3949                 link_policy |= HCI_LP_PARK;
3950
3951         cp.policy = cpu_to_le16(link_policy);
3952
3953         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_DEF_LINK_POLICY,
3954                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
3955 }
3956
3957 static int hci_read_page_scan_activity_sync(struct hci_dev *hdev)
3958 {
3959         if (!(hdev->commands[8] & 0x01))
3960                 return 0;
3961
3962         return __hci_cmd_sync_status(hdev, HCI_OP_READ_PAGE_SCAN_ACTIVITY,
3963                                      0, NULL, HCI_CMD_TIMEOUT);
3964 }
3965
3966 static int hci_read_def_err_data_reporting_sync(struct hci_dev *hdev)
3967 {
3968         if (!(hdev->commands[18] & 0x04) ||
3969             !(hdev->features[0][6] & LMP_ERR_DATA_REPORTING) ||
3970             test_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING, &hdev->quirks))
3971                 return 0;
3972
3973         return __hci_cmd_sync_status(hdev, HCI_OP_READ_DEF_ERR_DATA_REPORTING,
3974                                      0, NULL, HCI_CMD_TIMEOUT);
3975 }
3976
3977 static int hci_read_page_scan_type_sync(struct hci_dev *hdev)
3978 {
3979         /* Some older Broadcom based Bluetooth 1.2 controllers do not
3980          * support the Read Page Scan Type command. Check support for
3981          * this command in the bit mask of supported commands.
3982          */
3983         if (!(hdev->commands[13] & 0x01))
3984                 return 0;
3985
3986         return __hci_cmd_sync_status(hdev, HCI_OP_READ_PAGE_SCAN_TYPE,
3987                                      0, NULL, HCI_CMD_TIMEOUT);
3988 }
3989
3990 /* Read features beyond page 1 if available */
3991 static int hci_read_local_ext_features_all_sync(struct hci_dev *hdev)
3992 {
3993         u8 page;
3994         int err;
3995
3996         if (!lmp_ext_feat_capable(hdev))
3997                 return 0;
3998
3999         for (page = 2; page < HCI_MAX_PAGES && page <= hdev->max_page;
4000              page++) {
4001                 err = hci_read_local_ext_features_sync(hdev, page);
4002                 if (err)
4003                         return err;
4004         }
4005
4006         return 0;
4007 }
4008
4009 /* HCI Controller init stage 3 command sequence */
4010 static const struct hci_init_stage hci_init3[] = {
4011         /* HCI_OP_SET_EVENT_MASK */
4012         HCI_INIT(hci_set_event_mask_sync),
4013         /* HCI_OP_READ_STORED_LINK_KEY */
4014         HCI_INIT(hci_read_stored_link_key_sync),
4015         /* HCI_OP_WRITE_DEF_LINK_POLICY */
4016         HCI_INIT(hci_setup_link_policy_sync),
4017         /* HCI_OP_READ_PAGE_SCAN_ACTIVITY */
4018         HCI_INIT(hci_read_page_scan_activity_sync),
4019         /* HCI_OP_READ_DEF_ERR_DATA_REPORTING */
4020         HCI_INIT(hci_read_def_err_data_reporting_sync),
4021         /* HCI_OP_READ_PAGE_SCAN_TYPE */
4022         HCI_INIT(hci_read_page_scan_type_sync),
4023         /* HCI_OP_READ_LOCAL_EXT_FEATURES */
4024         HCI_INIT(hci_read_local_ext_features_all_sync),
4025         {}
4026 };
4027
4028 static int hci_le_set_event_mask_sync(struct hci_dev *hdev)
4029 {
4030         u8 events[8];
4031
4032         if (!lmp_le_capable(hdev))
4033                 return 0;
4034
4035         memset(events, 0, sizeof(events));
4036
4037         if (hdev->le_features[0] & HCI_LE_ENCRYPTION)
4038                 events[0] |= 0x10;      /* LE Long Term Key Request */
4039
4040         /* If controller supports the Connection Parameters Request
4041          * Link Layer Procedure, enable the corresponding event.
4042          */
4043         if (hdev->le_features[0] & HCI_LE_CONN_PARAM_REQ_PROC)
4044                 /* LE Remote Connection Parameter Request */
4045                 events[0] |= 0x20;
4046
4047         /* If the controller supports the Data Length Extension
4048          * feature, enable the corresponding event.
4049          */
4050         if (hdev->le_features[0] & HCI_LE_DATA_LEN_EXT)
4051                 events[0] |= 0x40;      /* LE Data Length Change */
4052
4053         /* If the controller supports LL Privacy feature or LE Extended Adv,
4054          * enable the corresponding event.
4055          */
4056         if (use_enhanced_conn_complete(hdev))
4057                 events[1] |= 0x02;      /* LE Enhanced Connection Complete */
4058
4059         /* If the controller supports Extended Scanner Filter
4060          * Policies, enable the corresponding event.
4061          */
4062         if (hdev->le_features[0] & HCI_LE_EXT_SCAN_POLICY)
4063                 events[1] |= 0x04;      /* LE Direct Advertising Report */
4064
4065         /* If the controller supports Channel Selection Algorithm #2
4066          * feature, enable the corresponding event.
4067          */
4068         if (hdev->le_features[1] & HCI_LE_CHAN_SEL_ALG2)
4069                 events[2] |= 0x08;      /* LE Channel Selection Algorithm */
4070
4071         /* If the controller supports the LE Set Scan Enable command,
4072          * enable the corresponding advertising report event.
4073          */
4074         if (hdev->commands[26] & 0x08)
4075                 events[0] |= 0x02;      /* LE Advertising Report */
4076
4077         /* If the controller supports the LE Create Connection
4078          * command, enable the corresponding event.
4079          */
4080         if (hdev->commands[26] & 0x10)
4081                 events[0] |= 0x01;      /* LE Connection Complete */
4082
4083         /* If the controller supports the LE Connection Update
4084          * command, enable the corresponding event.
4085          */
4086         if (hdev->commands[27] & 0x04)
4087                 events[0] |= 0x04;      /* LE Connection Update Complete */
4088
4089         /* If the controller supports the LE Read Remote Used Features
4090          * command, enable the corresponding event.
4091          */
4092         if (hdev->commands[27] & 0x20)
4093                 /* LE Read Remote Used Features Complete */
4094                 events[0] |= 0x08;
4095
4096         /* If the controller supports the LE Read Local P-256
4097          * Public Key command, enable the corresponding event.
4098          */
4099         if (hdev->commands[34] & 0x02)
4100                 /* LE Read Local P-256 Public Key Complete */
4101                 events[0] |= 0x80;
4102
4103         /* If the controller supports the LE Generate DHKey
4104          * command, enable the corresponding event.
4105          */
4106         if (hdev->commands[34] & 0x04)
4107                 events[1] |= 0x01;      /* LE Generate DHKey Complete */
4108
4109         /* If the controller supports the LE Set Default PHY or
4110          * LE Set PHY commands, enable the corresponding event.
4111          */
4112         if (hdev->commands[35] & (0x20 | 0x40))
4113                 events[1] |= 0x08;        /* LE PHY Update Complete */
4114
4115         /* If the controller supports LE Set Extended Scan Parameters
4116          * and LE Set Extended Scan Enable commands, enable the
4117          * corresponding event.
4118          */
4119         if (use_ext_scan(hdev))
4120                 events[1] |= 0x10;      /* LE Extended Advertising Report */
4121
4122         /* If the controller supports the LE Extended Advertising
4123          * command, enable the corresponding event.
4124          */
4125         if (ext_adv_capable(hdev))
4126                 events[2] |= 0x02;      /* LE Advertising Set Terminated */
4127
4128         if (cis_capable(hdev)) {
4129                 events[3] |= 0x01;      /* LE CIS Established */
4130                 if (cis_peripheral_capable(hdev))
4131                         events[3] |= 0x02; /* LE CIS Request */
4132         }
4133
4134         if (bis_capable(hdev)) {
4135                 events[1] |= 0x20;      /* LE PA Report */
4136                 events[1] |= 0x40;      /* LE PA Sync Established */
4137                 events[3] |= 0x04;      /* LE Create BIG Complete */
4138                 events[3] |= 0x08;      /* LE Terminate BIG Complete */
4139                 events[3] |= 0x10;      /* LE BIG Sync Established */
4140                 events[3] |= 0x20;      /* LE BIG Sync Loss */
4141                 events[4] |= 0x02;      /* LE BIG Info Advertising Report */
4142         }
4143
4144         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EVENT_MASK,
4145                                      sizeof(events), events, HCI_CMD_TIMEOUT);
4146 }
4147
4148 /* Read LE Advertising Channel TX Power */
4149 static int hci_le_read_adv_tx_power_sync(struct hci_dev *hdev)
4150 {
4151         if ((hdev->commands[25] & 0x40) && !ext_adv_capable(hdev)) {
4152                 /* HCI TS spec forbids mixing of legacy and extended
4153                  * advertising commands wherein READ_ADV_TX_POWER is
4154                  * also included. So do not call it if extended adv
4155                  * is supported otherwise controller will return
4156                  * COMMAND_DISALLOWED for extended commands.
4157                  */
4158                 return __hci_cmd_sync_status(hdev,
4159                                                HCI_OP_LE_READ_ADV_TX_POWER,
4160                                                0, NULL, HCI_CMD_TIMEOUT);
4161         }
4162
4163         return 0;
4164 }
4165
4166 /* Read LE Min/Max Tx Power*/
4167 static int hci_le_read_tx_power_sync(struct hci_dev *hdev)
4168 {
4169         if (!(hdev->commands[38] & 0x80) ||
4170             test_bit(HCI_QUIRK_BROKEN_READ_TRANSMIT_POWER, &hdev->quirks))
4171                 return 0;
4172
4173         return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_TRANSMIT_POWER,
4174                                      0, NULL, HCI_CMD_TIMEOUT);
4175 }
4176
4177 /* Read LE Accept List Size */
4178 static int hci_le_read_accept_list_size_sync(struct hci_dev *hdev)
4179 {
4180         if (!(hdev->commands[26] & 0x40))
4181                 return 0;
4182
4183         return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_ACCEPT_LIST_SIZE,
4184                                      0, NULL, HCI_CMD_TIMEOUT);
4185 }
4186
4187 /* Clear LE Accept List */
4188 static int hci_le_clear_accept_list_sync(struct hci_dev *hdev)
4189 {
4190         if (!(hdev->commands[26] & 0x80))
4191                 return 0;
4192
4193         return __hci_cmd_sync_status(hdev, HCI_OP_LE_CLEAR_ACCEPT_LIST, 0, NULL,
4194                                      HCI_CMD_TIMEOUT);
4195 }
4196
4197 /* Read LE Resolving List Size */
4198 static int hci_le_read_resolv_list_size_sync(struct hci_dev *hdev)
4199 {
4200         if (!(hdev->commands[34] & 0x40))
4201                 return 0;
4202
4203         return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_RESOLV_LIST_SIZE,
4204                                      0, NULL, HCI_CMD_TIMEOUT);
4205 }
4206
4207 /* Clear LE Resolving List */
4208 static int hci_le_clear_resolv_list_sync(struct hci_dev *hdev)
4209 {
4210         if (!(hdev->commands[34] & 0x20))
4211                 return 0;
4212
4213         return __hci_cmd_sync_status(hdev, HCI_OP_LE_CLEAR_RESOLV_LIST, 0, NULL,
4214                                      HCI_CMD_TIMEOUT);
4215 }
4216
4217 /* Set RPA timeout */
4218 static int hci_le_set_rpa_timeout_sync(struct hci_dev *hdev)
4219 {
4220         __le16 timeout = cpu_to_le16(hdev->rpa_timeout);
4221
4222         if (!(hdev->commands[35] & 0x04) ||
4223             test_bit(HCI_QUIRK_BROKEN_SET_RPA_TIMEOUT, &hdev->quirks))
4224                 return 0;
4225
4226         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_RPA_TIMEOUT,
4227                                      sizeof(timeout), &timeout,
4228                                      HCI_CMD_TIMEOUT);
4229 }
4230
4231 /* Read LE Maximum Data Length */
4232 static int hci_le_read_max_data_len_sync(struct hci_dev *hdev)
4233 {
4234         if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT))
4235                 return 0;
4236
4237         return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_MAX_DATA_LEN, 0, NULL,
4238                                      HCI_CMD_TIMEOUT);
4239 }
4240
4241 /* Read LE Suggested Default Data Length */
4242 static int hci_le_read_def_data_len_sync(struct hci_dev *hdev)
4243 {
4244         if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT))
4245                 return 0;
4246
4247         return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_DEF_DATA_LEN, 0, NULL,
4248                                      HCI_CMD_TIMEOUT);
4249 }
4250
4251 /* Read LE Number of Supported Advertising Sets */
4252 static int hci_le_read_num_support_adv_sets_sync(struct hci_dev *hdev)
4253 {
4254         if (!ext_adv_capable(hdev))
4255                 return 0;
4256
4257         return __hci_cmd_sync_status(hdev,
4258                                      HCI_OP_LE_READ_NUM_SUPPORTED_ADV_SETS,
4259                                      0, NULL, HCI_CMD_TIMEOUT);
4260 }
4261
4262 /* Write LE Host Supported */
4263 static int hci_set_le_support_sync(struct hci_dev *hdev)
4264 {
4265         struct hci_cp_write_le_host_supported cp;
4266
4267         /* LE-only devices do not support explicit enablement */
4268         if (!lmp_bredr_capable(hdev))
4269                 return 0;
4270
4271         memset(&cp, 0, sizeof(cp));
4272
4273         if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
4274                 cp.le = 0x01;
4275                 cp.simul = 0x00;
4276         }
4277
4278         if (cp.le == lmp_host_le_capable(hdev))
4279                 return 0;
4280
4281         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED,
4282                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4283 }
4284
4285 /* LE Set Host Feature */
4286 static int hci_le_set_host_feature_sync(struct hci_dev *hdev)
4287 {
4288         struct hci_cp_le_set_host_feature cp;
4289
4290         if (!iso_capable(hdev))
4291                 return 0;
4292
4293         memset(&cp, 0, sizeof(cp));
4294
4295         /* Isochronous Channels (Host Support) */
4296         cp.bit_number = 32;
4297         cp.bit_value = 1;
4298
4299         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_HOST_FEATURE,
4300                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4301 }
4302
4303 /* LE Controller init stage 3 command sequence */
4304 static const struct hci_init_stage le_init3[] = {
4305         /* HCI_OP_LE_SET_EVENT_MASK */
4306         HCI_INIT(hci_le_set_event_mask_sync),
4307         /* HCI_OP_LE_READ_ADV_TX_POWER */
4308         HCI_INIT(hci_le_read_adv_tx_power_sync),
4309         /* HCI_OP_LE_READ_TRANSMIT_POWER */
4310         HCI_INIT(hci_le_read_tx_power_sync),
4311         /* HCI_OP_LE_READ_ACCEPT_LIST_SIZE */
4312         HCI_INIT(hci_le_read_accept_list_size_sync),
4313         /* HCI_OP_LE_CLEAR_ACCEPT_LIST */
4314         HCI_INIT(hci_le_clear_accept_list_sync),
4315         /* HCI_OP_LE_READ_RESOLV_LIST_SIZE */
4316         HCI_INIT(hci_le_read_resolv_list_size_sync),
4317         /* HCI_OP_LE_CLEAR_RESOLV_LIST */
4318         HCI_INIT(hci_le_clear_resolv_list_sync),
4319         /* HCI_OP_LE_SET_RPA_TIMEOUT */
4320         HCI_INIT(hci_le_set_rpa_timeout_sync),
4321         /* HCI_OP_LE_READ_MAX_DATA_LEN */
4322         HCI_INIT(hci_le_read_max_data_len_sync),
4323         /* HCI_OP_LE_READ_DEF_DATA_LEN */
4324         HCI_INIT(hci_le_read_def_data_len_sync),
4325         /* HCI_OP_LE_READ_NUM_SUPPORTED_ADV_SETS */
4326         HCI_INIT(hci_le_read_num_support_adv_sets_sync),
4327         /* HCI_OP_WRITE_LE_HOST_SUPPORTED */
4328         HCI_INIT(hci_set_le_support_sync),
4329         /* HCI_OP_LE_SET_HOST_FEATURE */
4330         HCI_INIT(hci_le_set_host_feature_sync),
4331         {}
4332 };
4333
4334 static int hci_init3_sync(struct hci_dev *hdev)
4335 {
4336         int err;
4337
4338         bt_dev_dbg(hdev, "");
4339
4340         err = hci_init_stage_sync(hdev, hci_init3);
4341         if (err)
4342                 return err;
4343
4344         if (lmp_le_capable(hdev))
4345                 return hci_init_stage_sync(hdev, le_init3);
4346
4347         return 0;
4348 }
4349
4350 static int hci_delete_stored_link_key_sync(struct hci_dev *hdev)
4351 {
4352         struct hci_cp_delete_stored_link_key cp;
4353
4354         /* Some Broadcom based Bluetooth controllers do not support the
4355          * Delete Stored Link Key command. They are clearly indicating its
4356          * absence in the bit mask of supported commands.
4357          *
4358          * Check the supported commands and only if the command is marked
4359          * as supported send it. If not supported assume that the controller
4360          * does not have actual support for stored link keys which makes this
4361          * command redundant anyway.
4362          *
4363          * Some controllers indicate that they support handling deleting
4364          * stored link keys, but they don't. The quirk lets a driver
4365          * just disable this command.
4366          */
4367         if (!(hdev->commands[6] & 0x80) ||
4368             test_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks))
4369                 return 0;
4370
4371         memset(&cp, 0, sizeof(cp));
4372         bacpy(&cp.bdaddr, BDADDR_ANY);
4373         cp.delete_all = 0x01;
4374
4375         return __hci_cmd_sync_status(hdev, HCI_OP_DELETE_STORED_LINK_KEY,
4376                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4377 }
4378
4379 static int hci_set_event_mask_page_2_sync(struct hci_dev *hdev)
4380 {
4381         u8 events[8] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
4382         bool changed = false;
4383
4384         /* Set event mask page 2 if the HCI command for it is supported */
4385         if (!(hdev->commands[22] & 0x04))
4386                 return 0;
4387
4388         /* If Connectionless Peripheral Broadcast central role is supported
4389          * enable all necessary events for it.
4390          */
4391         if (lmp_cpb_central_capable(hdev)) {
4392                 events[1] |= 0x40;      /* Triggered Clock Capture */
4393                 events[1] |= 0x80;      /* Synchronization Train Complete */
4394                 events[2] |= 0x08;      /* Truncated Page Complete */
4395                 events[2] |= 0x20;      /* CPB Channel Map Change */
4396                 changed = true;
4397         }
4398
4399         /* If Connectionless Peripheral Broadcast peripheral role is supported
4400          * enable all necessary events for it.
4401          */
4402         if (lmp_cpb_peripheral_capable(hdev)) {
4403                 events[2] |= 0x01;      /* Synchronization Train Received */
4404                 events[2] |= 0x02;      /* CPB Receive */
4405                 events[2] |= 0x04;      /* CPB Timeout */
4406                 events[2] |= 0x10;      /* Peripheral Page Response Timeout */
4407                 changed = true;
4408         }
4409
4410         /* Enable Authenticated Payload Timeout Expired event if supported */
4411         if (lmp_ping_capable(hdev) || hdev->le_features[0] & HCI_LE_PING) {
4412                 events[2] |= 0x80;
4413                 changed = true;
4414         }
4415
4416         /* Some Broadcom based controllers indicate support for Set Event
4417          * Mask Page 2 command, but then actually do not support it. Since
4418          * the default value is all bits set to zero, the command is only
4419          * required if the event mask has to be changed. In case no change
4420          * to the event mask is needed, skip this command.
4421          */
4422         if (!changed)
4423                 return 0;
4424
4425         return __hci_cmd_sync_status(hdev, HCI_OP_SET_EVENT_MASK_PAGE_2,
4426                                      sizeof(events), events, HCI_CMD_TIMEOUT);
4427 }
4428
4429 /* Read local codec list if the HCI command is supported */
4430 static int hci_read_local_codecs_sync(struct hci_dev *hdev)
4431 {
4432         if (hdev->commands[45] & 0x04)
4433                 hci_read_supported_codecs_v2(hdev);
4434         else if (hdev->commands[29] & 0x20)
4435                 hci_read_supported_codecs(hdev);
4436
4437         return 0;
4438 }
4439
4440 /* Read local pairing options if the HCI command is supported */
4441 static int hci_read_local_pairing_opts_sync(struct hci_dev *hdev)
4442 {
4443         if (!(hdev->commands[41] & 0x08))
4444                 return 0;
4445
4446         return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_PAIRING_OPTS,
4447                                      0, NULL, HCI_CMD_TIMEOUT);
4448 }
4449
4450 /* Get MWS transport configuration if the HCI command is supported */
4451 static int hci_get_mws_transport_config_sync(struct hci_dev *hdev)
4452 {
4453         if (!mws_transport_config_capable(hdev))
4454                 return 0;
4455
4456         return __hci_cmd_sync_status(hdev, HCI_OP_GET_MWS_TRANSPORT_CONFIG,
4457                                      0, NULL, HCI_CMD_TIMEOUT);
4458 }
4459
4460 /* Check for Synchronization Train support */
4461 static int hci_read_sync_train_params_sync(struct hci_dev *hdev)
4462 {
4463         if (!lmp_sync_train_capable(hdev))
4464                 return 0;
4465
4466         return __hci_cmd_sync_status(hdev, HCI_OP_READ_SYNC_TRAIN_PARAMS,
4467                                      0, NULL, HCI_CMD_TIMEOUT);
4468 }
4469
4470 /* Enable Secure Connections if supported and configured */
4471 static int hci_write_sc_support_1_sync(struct hci_dev *hdev)
4472 {
4473         u8 support = 0x01;
4474
4475         if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED) ||
4476             !bredr_sc_enabled(hdev))
4477                 return 0;
4478
4479         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SC_SUPPORT,
4480                                      sizeof(support), &support,
4481                                      HCI_CMD_TIMEOUT);
4482 }
4483
4484 /* Set erroneous data reporting if supported to the wideband speech
4485  * setting value
4486  */
4487 static int hci_set_err_data_report_sync(struct hci_dev *hdev)
4488 {
4489         struct hci_cp_write_def_err_data_reporting cp;
4490         bool enabled = hci_dev_test_flag(hdev, HCI_WIDEBAND_SPEECH_ENABLED);
4491
4492         if (!(hdev->commands[18] & 0x08) ||
4493             !(hdev->features[0][6] & LMP_ERR_DATA_REPORTING) ||
4494             test_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING, &hdev->quirks))
4495                 return 0;
4496
4497         if (enabled == hdev->err_data_reporting)
4498                 return 0;
4499
4500         memset(&cp, 0, sizeof(cp));
4501         cp.err_data_reporting = enabled ? ERR_DATA_REPORTING_ENABLED :
4502                                 ERR_DATA_REPORTING_DISABLED;
4503
4504         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_DEF_ERR_DATA_REPORTING,
4505                                     sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4506 }
4507
4508 static const struct hci_init_stage hci_init4[] = {
4509          /* HCI_OP_DELETE_STORED_LINK_KEY */
4510         HCI_INIT(hci_delete_stored_link_key_sync),
4511         /* HCI_OP_SET_EVENT_MASK_PAGE_2 */
4512         HCI_INIT(hci_set_event_mask_page_2_sync),
4513         /* HCI_OP_READ_LOCAL_CODECS */
4514         HCI_INIT(hci_read_local_codecs_sync),
4515          /* HCI_OP_READ_LOCAL_PAIRING_OPTS */
4516         HCI_INIT(hci_read_local_pairing_opts_sync),
4517          /* HCI_OP_GET_MWS_TRANSPORT_CONFIG */
4518         HCI_INIT(hci_get_mws_transport_config_sync),
4519          /* HCI_OP_READ_SYNC_TRAIN_PARAMS */
4520         HCI_INIT(hci_read_sync_train_params_sync),
4521         /* HCI_OP_WRITE_SC_SUPPORT */
4522         HCI_INIT(hci_write_sc_support_1_sync),
4523         /* HCI_OP_WRITE_DEF_ERR_DATA_REPORTING */
4524         HCI_INIT(hci_set_err_data_report_sync),
4525         {}
4526 };
4527
4528 /* Set Suggested Default Data Length to maximum if supported */
4529 static int hci_le_set_write_def_data_len_sync(struct hci_dev *hdev)
4530 {
4531         struct hci_cp_le_write_def_data_len cp;
4532
4533         if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT))
4534                 return 0;
4535
4536         memset(&cp, 0, sizeof(cp));
4537         cp.tx_len = cpu_to_le16(hdev->le_max_tx_len);
4538         cp.tx_time = cpu_to_le16(hdev->le_max_tx_time);
4539
4540         return __hci_cmd_sync_status(hdev, HCI_OP_LE_WRITE_DEF_DATA_LEN,
4541                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4542 }
4543
4544 /* Set Default PHY parameters if command is supported, enables all supported
4545  * PHYs according to the LE Features bits.
4546  */
4547 static int hci_le_set_default_phy_sync(struct hci_dev *hdev)
4548 {
4549         struct hci_cp_le_set_default_phy cp;
4550
4551         if (!(hdev->commands[35] & 0x20)) {
4552                 /* If the command is not supported it means only 1M PHY is
4553                  * supported.
4554                  */
4555                 hdev->le_tx_def_phys = HCI_LE_SET_PHY_1M;
4556                 hdev->le_rx_def_phys = HCI_LE_SET_PHY_1M;
4557                 return 0;
4558         }
4559
4560         memset(&cp, 0, sizeof(cp));
4561         cp.all_phys = 0x00;
4562         cp.tx_phys = HCI_LE_SET_PHY_1M;
4563         cp.rx_phys = HCI_LE_SET_PHY_1M;
4564
4565         /* Enables 2M PHY if supported */
4566         if (le_2m_capable(hdev)) {
4567                 cp.tx_phys |= HCI_LE_SET_PHY_2M;
4568                 cp.rx_phys |= HCI_LE_SET_PHY_2M;
4569         }
4570
4571         /* Enables Coded PHY if supported */
4572         if (le_coded_capable(hdev)) {
4573                 cp.tx_phys |= HCI_LE_SET_PHY_CODED;
4574                 cp.rx_phys |= HCI_LE_SET_PHY_CODED;
4575         }
4576
4577         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_DEFAULT_PHY,
4578                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
4579 }
4580
4581 static const struct hci_init_stage le_init4[] = {
4582         /* HCI_OP_LE_WRITE_DEF_DATA_LEN */
4583         HCI_INIT(hci_le_set_write_def_data_len_sync),
4584         /* HCI_OP_LE_SET_DEFAULT_PHY */
4585         HCI_INIT(hci_le_set_default_phy_sync),
4586         {}
4587 };
4588
4589 static int hci_init4_sync(struct hci_dev *hdev)
4590 {
4591         int err;
4592
4593         bt_dev_dbg(hdev, "");
4594
4595         err = hci_init_stage_sync(hdev, hci_init4);
4596         if (err)
4597                 return err;
4598
4599         if (lmp_le_capable(hdev))
4600                 return hci_init_stage_sync(hdev, le_init4);
4601
4602         return 0;
4603 }
4604
4605 static int hci_init_sync(struct hci_dev *hdev)
4606 {
4607         int err;
4608
4609         err = hci_init1_sync(hdev);
4610         if (err < 0)
4611                 return err;
4612
4613         if (hci_dev_test_flag(hdev, HCI_SETUP))
4614                 hci_debugfs_create_basic(hdev);
4615
4616         err = hci_init2_sync(hdev);
4617         if (err < 0)
4618                 return err;
4619
4620         /* HCI_PRIMARY covers both single-mode LE, BR/EDR and dual-mode
4621          * BR/EDR/LE type controllers. AMP controllers only need the
4622          * first two stages of init.
4623          */
4624         if (hdev->dev_type != HCI_PRIMARY)
4625                 return 0;
4626
4627         err = hci_init3_sync(hdev);
4628         if (err < 0)
4629                 return err;
4630
4631         err = hci_init4_sync(hdev);
4632         if (err < 0)
4633                 return err;
4634
4635         /* This function is only called when the controller is actually in
4636          * configured state. When the controller is marked as unconfigured,
4637          * this initialization procedure is not run.
4638          *
4639          * It means that it is possible that a controller runs through its
4640          * setup phase and then discovers missing settings. If that is the
4641          * case, then this function will not be called. It then will only
4642          * be called during the config phase.
4643          *
4644          * So only when in setup phase or config phase, create the debugfs
4645          * entries and register the SMP channels.
4646          */
4647         if (!hci_dev_test_flag(hdev, HCI_SETUP) &&
4648             !hci_dev_test_flag(hdev, HCI_CONFIG))
4649                 return 0;
4650
4651         if (hci_dev_test_and_set_flag(hdev, HCI_DEBUGFS_CREATED))
4652                 return 0;
4653
4654         hci_debugfs_create_common(hdev);
4655
4656         if (lmp_bredr_capable(hdev))
4657                 hci_debugfs_create_bredr(hdev);
4658
4659         if (lmp_le_capable(hdev))
4660                 hci_debugfs_create_le(hdev);
4661
4662         return 0;
4663 }
4664
4665 #define HCI_QUIRK_BROKEN(_quirk, _desc) { HCI_QUIRK_BROKEN_##_quirk, _desc }
4666
4667 static const struct {
4668         unsigned long quirk;
4669         const char *desc;
4670 } hci_broken_table[] = {
4671         HCI_QUIRK_BROKEN(LOCAL_COMMANDS,
4672                          "HCI Read Local Supported Commands not supported"),
4673         HCI_QUIRK_BROKEN(STORED_LINK_KEY,
4674                          "HCI Delete Stored Link Key command is advertised, "
4675                          "but not supported."),
4676         HCI_QUIRK_BROKEN(ERR_DATA_REPORTING,
4677                          "HCI Read Default Erroneous Data Reporting command is "
4678                          "advertised, but not supported."),
4679         HCI_QUIRK_BROKEN(READ_TRANSMIT_POWER,
4680                          "HCI Read Transmit Power Level command is advertised, "
4681                          "but not supported."),
4682         HCI_QUIRK_BROKEN(FILTER_CLEAR_ALL,
4683                          "HCI Set Event Filter command not supported."),
4684         HCI_QUIRK_BROKEN(ENHANCED_SETUP_SYNC_CONN,
4685                          "HCI Enhanced Setup Synchronous Connection command is "
4686                          "advertised, but not supported."),
4687         HCI_QUIRK_BROKEN(SET_RPA_TIMEOUT,
4688                          "HCI LE Set Random Private Address Timeout command is "
4689                          "advertised, but not supported."),
4690         HCI_QUIRK_BROKEN(LE_CODED,
4691                          "HCI LE Coded PHY feature bit is set, "
4692                          "but its usage is not supported.")
4693 };
4694
4695 /* This function handles hdev setup stage:
4696  *
4697  * Calls hdev->setup
4698  * Setup address if HCI_QUIRK_USE_BDADDR_PROPERTY is set.
4699  */
4700 static int hci_dev_setup_sync(struct hci_dev *hdev)
4701 {
4702         int ret = 0;
4703         bool invalid_bdaddr;
4704         size_t i;
4705
4706         if (!hci_dev_test_flag(hdev, HCI_SETUP) &&
4707             !test_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks))
4708                 return 0;
4709
4710         bt_dev_dbg(hdev, "");
4711
4712         hci_sock_dev_event(hdev, HCI_DEV_SETUP);
4713
4714         if (hdev->setup)
4715                 ret = hdev->setup(hdev);
4716
4717         for (i = 0; i < ARRAY_SIZE(hci_broken_table); i++) {
4718                 if (test_bit(hci_broken_table[i].quirk, &hdev->quirks))
4719                         bt_dev_warn(hdev, "%s", hci_broken_table[i].desc);
4720         }
4721
4722         /* The transport driver can set the quirk to mark the
4723          * BD_ADDR invalid before creating the HCI device or in
4724          * its setup callback.
4725          */
4726         invalid_bdaddr = test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) ||
4727                          test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks);
4728         if (!ret) {
4729                 if (test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks) &&
4730                     !bacmp(&hdev->public_addr, BDADDR_ANY))
4731                         hci_dev_get_bd_addr_from_property(hdev);
4732
4733                 if (invalid_bdaddr && bacmp(&hdev->public_addr, BDADDR_ANY) &&
4734                     hdev->set_bdaddr) {
4735                         ret = hdev->set_bdaddr(hdev, &hdev->public_addr);
4736                         if (!ret)
4737                                 invalid_bdaddr = false;
4738                 }
4739         }
4740
4741         /* The transport driver can set these quirks before
4742          * creating the HCI device or in its setup callback.
4743          *
4744          * For the invalid BD_ADDR quirk it is possible that
4745          * it becomes a valid address if the bootloader does
4746          * provide it (see above).
4747          *
4748          * In case any of them is set, the controller has to
4749          * start up as unconfigured.
4750          */
4751         if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
4752             invalid_bdaddr)
4753                 hci_dev_set_flag(hdev, HCI_UNCONFIGURED);
4754
4755         /* For an unconfigured controller it is required to
4756          * read at least the version information provided by
4757          * the Read Local Version Information command.
4758          *
4759          * If the set_bdaddr driver callback is provided, then
4760          * also the original Bluetooth public device address
4761          * will be read using the Read BD Address command.
4762          */
4763         if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
4764                 return hci_unconf_init_sync(hdev);
4765
4766         return ret;
4767 }
4768
4769 /* This function handles hdev init stage:
4770  *
4771  * Calls hci_dev_setup_sync to perform setup stage
4772  * Calls hci_init_sync to perform HCI command init sequence
4773  */
4774 static int hci_dev_init_sync(struct hci_dev *hdev)
4775 {
4776         int ret;
4777
4778         bt_dev_dbg(hdev, "");
4779
4780         atomic_set(&hdev->cmd_cnt, 1);
4781         set_bit(HCI_INIT, &hdev->flags);
4782
4783         ret = hci_dev_setup_sync(hdev);
4784
4785         if (hci_dev_test_flag(hdev, HCI_CONFIG)) {
4786                 /* If public address change is configured, ensure that
4787                  * the address gets programmed. If the driver does not
4788                  * support changing the public address, fail the power
4789                  * on procedure.
4790                  */
4791                 if (bacmp(&hdev->public_addr, BDADDR_ANY) &&
4792                     hdev->set_bdaddr)
4793                         ret = hdev->set_bdaddr(hdev, &hdev->public_addr);
4794                 else
4795                         ret = -EADDRNOTAVAIL;
4796         }
4797
4798         if (!ret) {
4799                 if (!hci_dev_test_flag(hdev, HCI_UNCONFIGURED) &&
4800                     !hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) {
4801                         ret = hci_init_sync(hdev);
4802                         if (!ret && hdev->post_init)
4803                                 ret = hdev->post_init(hdev);
4804                 }
4805         }
4806
4807         /* If the HCI Reset command is clearing all diagnostic settings,
4808          * then they need to be reprogrammed after the init procedure
4809          * completed.
4810          */
4811         if (test_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks) &&
4812             !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) &&
4813             hci_dev_test_flag(hdev, HCI_VENDOR_DIAG) && hdev->set_diag)
4814                 ret = hdev->set_diag(hdev, true);
4815
4816         if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) {
4817                 msft_do_open(hdev);
4818                 aosp_do_open(hdev);
4819         }
4820
4821         clear_bit(HCI_INIT, &hdev->flags);
4822
4823         return ret;
4824 }
4825
4826 int hci_dev_open_sync(struct hci_dev *hdev)
4827 {
4828         int ret;
4829
4830         bt_dev_dbg(hdev, "");
4831
4832         if (hci_dev_test_flag(hdev, HCI_UNREGISTER)) {
4833                 ret = -ENODEV;
4834                 goto done;
4835         }
4836
4837         if (!hci_dev_test_flag(hdev, HCI_SETUP) &&
4838             !hci_dev_test_flag(hdev, HCI_CONFIG)) {
4839                 /* Check for rfkill but allow the HCI setup stage to
4840                  * proceed (which in itself doesn't cause any RF activity).
4841                  */
4842                 if (hci_dev_test_flag(hdev, HCI_RFKILLED)) {
4843                         ret = -ERFKILL;
4844                         goto done;
4845                 }
4846
4847                 /* Check for valid public address or a configured static
4848                  * random address, but let the HCI setup proceed to
4849                  * be able to determine if there is a public address
4850                  * or not.
4851                  *
4852                  * In case of user channel usage, it is not important
4853                  * if a public address or static random address is
4854                  * available.
4855                  *
4856                  * This check is only valid for BR/EDR controllers
4857                  * since AMP controllers do not have an address.
4858                  */
4859                 if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL) &&
4860                     hdev->dev_type == HCI_PRIMARY &&
4861                     !bacmp(&hdev->bdaddr, BDADDR_ANY) &&
4862                     !bacmp(&hdev->static_addr, BDADDR_ANY)) {
4863                         ret = -EADDRNOTAVAIL;
4864                         goto done;
4865                 }
4866         }
4867
4868         if (test_bit(HCI_UP, &hdev->flags)) {
4869                 ret = -EALREADY;
4870                 goto done;
4871         }
4872
4873         if (hdev->open(hdev)) {
4874                 ret = -EIO;
4875                 goto done;
4876         }
4877
4878         hci_devcd_reset(hdev);
4879
4880         set_bit(HCI_RUNNING, &hdev->flags);
4881         hci_sock_dev_event(hdev, HCI_DEV_OPEN);
4882
4883         ret = hci_dev_init_sync(hdev);
4884         if (!ret) {
4885                 hci_dev_hold(hdev);
4886                 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
4887                 hci_adv_instances_set_rpa_expired(hdev, true);
4888                 set_bit(HCI_UP, &hdev->flags);
4889                 hci_sock_dev_event(hdev, HCI_DEV_UP);
4890                 hci_leds_update_powered(hdev, true);
4891                 if (!hci_dev_test_flag(hdev, HCI_SETUP) &&
4892                     !hci_dev_test_flag(hdev, HCI_CONFIG) &&
4893                     !hci_dev_test_flag(hdev, HCI_UNCONFIGURED) &&
4894                     !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) &&
4895                     hci_dev_test_flag(hdev, HCI_MGMT) &&
4896                     hdev->dev_type == HCI_PRIMARY) {
4897                         ret = hci_powered_update_sync(hdev);
4898                         mgmt_power_on(hdev, ret);
4899                 }
4900         } else {
4901                 /* Init failed, cleanup */
4902                 flush_work(&hdev->tx_work);
4903
4904                 /* Since hci_rx_work() is possible to awake new cmd_work
4905                  * it should be flushed first to avoid unexpected call of
4906                  * hci_cmd_work()
4907                  */
4908                 flush_work(&hdev->rx_work);
4909                 flush_work(&hdev->cmd_work);
4910
4911                 skb_queue_purge(&hdev->cmd_q);
4912                 skb_queue_purge(&hdev->rx_q);
4913
4914                 if (hdev->flush)
4915                         hdev->flush(hdev);
4916
4917                 if (hdev->sent_cmd) {
4918                         cancel_delayed_work_sync(&hdev->cmd_timer);
4919                         kfree_skb(hdev->sent_cmd);
4920                         hdev->sent_cmd = NULL;
4921                 }
4922
4923                 clear_bit(HCI_RUNNING, &hdev->flags);
4924                 hci_sock_dev_event(hdev, HCI_DEV_CLOSE);
4925
4926                 hdev->close(hdev);
4927                 hdev->flags &= BIT(HCI_RAW);
4928         }
4929
4930 done:
4931         return ret;
4932 }
4933
4934 /* This function requires the caller holds hdev->lock */
4935 static void hci_pend_le_actions_clear(struct hci_dev *hdev)
4936 {
4937         struct hci_conn_params *p;
4938
4939         list_for_each_entry(p, &hdev->le_conn_params, list) {
4940                 hci_pend_le_list_del_init(p);
4941                 if (p->conn) {
4942                         hci_conn_drop(p->conn);
4943                         hci_conn_put(p->conn);
4944                         p->conn = NULL;
4945                 }
4946         }
4947
4948         BT_DBG("All LE pending actions cleared");
4949 }
4950
4951 static int hci_dev_shutdown(struct hci_dev *hdev)
4952 {
4953         int err = 0;
4954         /* Similar to how we first do setup and then set the exclusive access
4955          * bit for userspace, we must first unset userchannel and then clean up.
4956          * Otherwise, the kernel can't properly use the hci channel to clean up
4957          * the controller (some shutdown routines require sending additional
4958          * commands to the controller for example).
4959          */
4960         bool was_userchannel =
4961                 hci_dev_test_and_clear_flag(hdev, HCI_USER_CHANNEL);
4962
4963         if (!hci_dev_test_flag(hdev, HCI_UNREGISTER) &&
4964             test_bit(HCI_UP, &hdev->flags)) {
4965                 /* Execute vendor specific shutdown routine */
4966                 if (hdev->shutdown)
4967                         err = hdev->shutdown(hdev);
4968         }
4969
4970         if (was_userchannel)
4971                 hci_dev_set_flag(hdev, HCI_USER_CHANNEL);
4972
4973         return err;
4974 }
4975
4976 int hci_dev_close_sync(struct hci_dev *hdev)
4977 {
4978         bool auto_off;
4979         int err = 0;
4980
4981         bt_dev_dbg(hdev, "");
4982
4983         cancel_delayed_work(&hdev->power_off);
4984         cancel_delayed_work(&hdev->ncmd_timer);
4985         cancel_delayed_work(&hdev->le_scan_disable);
4986         cancel_delayed_work(&hdev->le_scan_restart);
4987
4988         hci_request_cancel_all(hdev);
4989
4990         if (hdev->adv_instance_timeout) {
4991                 cancel_delayed_work_sync(&hdev->adv_instance_expire);
4992                 hdev->adv_instance_timeout = 0;
4993         }
4994
4995         err = hci_dev_shutdown(hdev);
4996
4997         if (!test_and_clear_bit(HCI_UP, &hdev->flags)) {
4998                 cancel_delayed_work_sync(&hdev->cmd_timer);
4999                 return err;
5000         }
5001
5002         hci_leds_update_powered(hdev, false);
5003
5004         /* Flush RX and TX works */
5005         flush_work(&hdev->tx_work);
5006         flush_work(&hdev->rx_work);
5007
5008         if (hdev->discov_timeout > 0) {
5009                 hdev->discov_timeout = 0;
5010                 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
5011                 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
5012         }
5013
5014         if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE))
5015                 cancel_delayed_work(&hdev->service_cache);
5016
5017         if (hci_dev_test_flag(hdev, HCI_MGMT)) {
5018                 struct adv_info *adv_instance;
5019
5020                 cancel_delayed_work_sync(&hdev->rpa_expired);
5021
5022                 list_for_each_entry(adv_instance, &hdev->adv_instances, list)
5023                         cancel_delayed_work_sync(&adv_instance->rpa_expired_cb);
5024         }
5025
5026         /* Avoid potential lockdep warnings from the *_flush() calls by
5027          * ensuring the workqueue is empty up front.
5028          */
5029         drain_workqueue(hdev->workqueue);
5030
5031         hci_dev_lock(hdev);
5032
5033         hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
5034
5035         auto_off = hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF);
5036
5037         if (!auto_off && hdev->dev_type == HCI_PRIMARY &&
5038             !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) &&
5039             hci_dev_test_flag(hdev, HCI_MGMT))
5040                 __mgmt_power_off(hdev);
5041
5042         hci_inquiry_cache_flush(hdev);
5043         hci_pend_le_actions_clear(hdev);
5044         hci_conn_hash_flush(hdev);
5045         /* Prevent data races on hdev->smp_data or hdev->smp_bredr_data */
5046         smp_unregister(hdev);
5047         hci_dev_unlock(hdev);
5048
5049         hci_sock_dev_event(hdev, HCI_DEV_DOWN);
5050
5051         if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) {
5052                 aosp_do_close(hdev);
5053                 msft_do_close(hdev);
5054         }
5055
5056         if (hdev->flush)
5057                 hdev->flush(hdev);
5058
5059         /* Reset device */
5060         skb_queue_purge(&hdev->cmd_q);
5061         atomic_set(&hdev->cmd_cnt, 1);
5062         if (test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks) &&
5063             !auto_off && !hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
5064                 set_bit(HCI_INIT, &hdev->flags);
5065                 hci_reset_sync(hdev);
5066                 clear_bit(HCI_INIT, &hdev->flags);
5067         }
5068
5069         /* flush cmd  work */
5070         flush_work(&hdev->cmd_work);
5071
5072         /* Drop queues */
5073         skb_queue_purge(&hdev->rx_q);
5074         skb_queue_purge(&hdev->cmd_q);
5075         skb_queue_purge(&hdev->raw_q);
5076
5077         /* Drop last sent command */
5078         if (hdev->sent_cmd) {
5079                 cancel_delayed_work_sync(&hdev->cmd_timer);
5080                 kfree_skb(hdev->sent_cmd);
5081                 hdev->sent_cmd = NULL;
5082         }
5083
5084         clear_bit(HCI_RUNNING, &hdev->flags);
5085         hci_sock_dev_event(hdev, HCI_DEV_CLOSE);
5086
5087         /* After this point our queues are empty and no tasks are scheduled. */
5088         hdev->close(hdev);
5089
5090         /* Clear flags */
5091         hdev->flags &= BIT(HCI_RAW);
5092         hci_dev_clear_volatile_flags(hdev);
5093
5094         /* Controller radio is available but is currently powered down */
5095         hdev->amp_status = AMP_STATUS_POWERED_DOWN;
5096
5097         memset(hdev->eir, 0, sizeof(hdev->eir));
5098         memset(hdev->dev_class, 0, sizeof(hdev->dev_class));
5099         bacpy(&hdev->random_addr, BDADDR_ANY);
5100         hci_codec_list_clear(&hdev->local_codecs);
5101
5102         hci_dev_put(hdev);
5103         return err;
5104 }
5105
5106 /* This function perform power on HCI command sequence as follows:
5107  *
5108  * If controller is already up (HCI_UP) performs hci_powered_update_sync
5109  * sequence otherwise run hci_dev_open_sync which will follow with
5110  * hci_powered_update_sync after the init sequence is completed.
5111  */
5112 static int hci_power_on_sync(struct hci_dev *hdev)
5113 {
5114         int err;
5115
5116         if (test_bit(HCI_UP, &hdev->flags) &&
5117             hci_dev_test_flag(hdev, HCI_MGMT) &&
5118             hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) {
5119                 cancel_delayed_work(&hdev->power_off);
5120                 return hci_powered_update_sync(hdev);
5121         }
5122
5123         err = hci_dev_open_sync(hdev);
5124         if (err < 0)
5125                 return err;
5126
5127         /* During the HCI setup phase, a few error conditions are
5128          * ignored and they need to be checked now. If they are still
5129          * valid, it is important to return the device back off.
5130          */
5131         if (hci_dev_test_flag(hdev, HCI_RFKILLED) ||
5132             hci_dev_test_flag(hdev, HCI_UNCONFIGURED) ||
5133             (hdev->dev_type == HCI_PRIMARY &&
5134              !bacmp(&hdev->bdaddr, BDADDR_ANY) &&
5135              !bacmp(&hdev->static_addr, BDADDR_ANY))) {
5136                 hci_dev_clear_flag(hdev, HCI_AUTO_OFF);
5137                 hci_dev_close_sync(hdev);
5138         } else if (hci_dev_test_flag(hdev, HCI_AUTO_OFF)) {
5139                 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
5140                                    HCI_AUTO_OFF_TIMEOUT);
5141         }
5142
5143         if (hci_dev_test_and_clear_flag(hdev, HCI_SETUP)) {
5144                 /* For unconfigured devices, set the HCI_RAW flag
5145                  * so that userspace can easily identify them.
5146                  */
5147                 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
5148                         set_bit(HCI_RAW, &hdev->flags);
5149
5150                 /* For fully configured devices, this will send
5151                  * the Index Added event. For unconfigured devices,
5152                  * it will send Unconfigued Index Added event.
5153                  *
5154                  * Devices with HCI_QUIRK_RAW_DEVICE are ignored
5155                  * and no event will be send.
5156                  */
5157                 mgmt_index_added(hdev);
5158         } else if (hci_dev_test_and_clear_flag(hdev, HCI_CONFIG)) {
5159                 /* When the controller is now configured, then it
5160                  * is important to clear the HCI_RAW flag.
5161                  */
5162                 if (!hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
5163                         clear_bit(HCI_RAW, &hdev->flags);
5164
5165                 /* Powering on the controller with HCI_CONFIG set only
5166                  * happens with the transition from unconfigured to
5167                  * configured. This will send the Index Added event.
5168                  */
5169                 mgmt_index_added(hdev);
5170         }
5171
5172         return 0;
5173 }
5174
5175 static int hci_remote_name_cancel_sync(struct hci_dev *hdev, bdaddr_t *addr)
5176 {
5177         struct hci_cp_remote_name_req_cancel cp;
5178
5179         memset(&cp, 0, sizeof(cp));
5180         bacpy(&cp.bdaddr, addr);
5181
5182         return __hci_cmd_sync_status(hdev, HCI_OP_REMOTE_NAME_REQ_CANCEL,
5183                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5184 }
5185
5186 int hci_stop_discovery_sync(struct hci_dev *hdev)
5187 {
5188         struct discovery_state *d = &hdev->discovery;
5189         struct inquiry_entry *e;
5190         int err;
5191
5192         bt_dev_dbg(hdev, "state %u", hdev->discovery.state);
5193
5194         if (d->state == DISCOVERY_FINDING || d->state == DISCOVERY_STOPPING) {
5195                 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
5196                         err = __hci_cmd_sync_status(hdev, HCI_OP_INQUIRY_CANCEL,
5197                                                     0, NULL, HCI_CMD_TIMEOUT);
5198                         if (err)
5199                                 return err;
5200                 }
5201
5202                 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
5203                         cancel_delayed_work(&hdev->le_scan_disable);
5204                         cancel_delayed_work(&hdev->le_scan_restart);
5205
5206                         err = hci_scan_disable_sync(hdev);
5207                         if (err)
5208                                 return err;
5209                 }
5210
5211         } else {
5212                 err = hci_scan_disable_sync(hdev);
5213                 if (err)
5214                         return err;
5215         }
5216
5217         /* Resume advertising if it was paused */
5218         if (use_ll_privacy(hdev))
5219                 hci_resume_advertising_sync(hdev);
5220
5221         /* No further actions needed for LE-only discovery */
5222         if (d->type == DISCOV_TYPE_LE)
5223                 return 0;
5224
5225         if (d->state == DISCOVERY_RESOLVING || d->state == DISCOVERY_STOPPING) {
5226                 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
5227                                                      NAME_PENDING);
5228                 if (!e)
5229                         return 0;
5230
5231                 return hci_remote_name_cancel_sync(hdev, &e->data.bdaddr);
5232         }
5233
5234         return 0;
5235 }
5236
5237 static int hci_disconnect_phy_link_sync(struct hci_dev *hdev, u16 handle,
5238                                         u8 reason)
5239 {
5240         struct hci_cp_disconn_phy_link cp;
5241
5242         memset(&cp, 0, sizeof(cp));
5243         cp.phy_handle = HCI_PHY_HANDLE(handle);
5244         cp.reason = reason;
5245
5246         return __hci_cmd_sync_status(hdev, HCI_OP_DISCONN_PHY_LINK,
5247                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5248 }
5249
5250 static int hci_disconnect_sync(struct hci_dev *hdev, struct hci_conn *conn,
5251                                u8 reason)
5252 {
5253         struct hci_cp_disconnect cp;
5254
5255         if (conn->type == AMP_LINK)
5256                 return hci_disconnect_phy_link_sync(hdev, conn->handle, reason);
5257
5258         memset(&cp, 0, sizeof(cp));
5259         cp.handle = cpu_to_le16(conn->handle);
5260         cp.reason = reason;
5261
5262         /* Wait for HCI_EV_DISCONN_COMPLETE, not HCI_EV_CMD_STATUS, when the
5263          * reason is anything but HCI_ERROR_REMOTE_POWER_OFF. This reason is
5264          * used when suspending or powering off, where we don't want to wait
5265          * for the peer's response.
5266          */
5267         if (reason != HCI_ERROR_REMOTE_POWER_OFF)
5268                 return __hci_cmd_sync_status_sk(hdev, HCI_OP_DISCONNECT,
5269                                                 sizeof(cp), &cp,
5270                                                 HCI_EV_DISCONN_COMPLETE,
5271                                                 HCI_CMD_TIMEOUT, NULL);
5272
5273         return __hci_cmd_sync_status(hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp,
5274                                      HCI_CMD_TIMEOUT);
5275 }
5276
5277 static int hci_le_connect_cancel_sync(struct hci_dev *hdev,
5278                                       struct hci_conn *conn, u8 reason)
5279 {
5280         /* Return reason if scanning since the connection shall probably be
5281          * cleanup directly.
5282          */
5283         if (test_bit(HCI_CONN_SCANNING, &conn->flags))
5284                 return reason;
5285
5286         if (conn->role == HCI_ROLE_SLAVE ||
5287             test_and_set_bit(HCI_CONN_CANCEL, &conn->flags))
5288                 return 0;
5289
5290         return __hci_cmd_sync_status(hdev, HCI_OP_LE_CREATE_CONN_CANCEL,
5291                                      0, NULL, HCI_CMD_TIMEOUT);
5292 }
5293
5294 static int hci_connect_cancel_sync(struct hci_dev *hdev, struct hci_conn *conn,
5295                                    u8 reason)
5296 {
5297         if (conn->type == LE_LINK)
5298                 return hci_le_connect_cancel_sync(hdev, conn, reason);
5299
5300         if (conn->type == ISO_LINK) {
5301                 /* BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E
5302                  * page 1857:
5303                  *
5304                  * If this command is issued for a CIS on the Central and the
5305                  * CIS is successfully terminated before being established,
5306                  * then an HCI_LE_CIS_Established event shall also be sent for
5307                  * this CIS with the Status Operation Cancelled by Host (0x44).
5308                  */
5309                 if (test_bit(HCI_CONN_CREATE_CIS, &conn->flags))
5310                         return hci_disconnect_sync(hdev, conn, reason);
5311
5312                 /* CIS with no Create CIS sent have nothing to cancel */
5313                 if (bacmp(&conn->dst, BDADDR_ANY))
5314                         return HCI_ERROR_LOCAL_HOST_TERM;
5315
5316                 /* There is no way to cancel a BIS without terminating the BIG
5317                  * which is done later on connection cleanup.
5318                  */
5319                 return 0;
5320         }
5321
5322         if (hdev->hci_ver < BLUETOOTH_VER_1_2)
5323                 return 0;
5324
5325         /* Wait for HCI_EV_CONN_COMPLETE, not HCI_EV_CMD_STATUS, when the
5326          * reason is anything but HCI_ERROR_REMOTE_POWER_OFF. This reason is
5327          * used when suspending or powering off, where we don't want to wait
5328          * for the peer's response.
5329          */
5330         if (reason != HCI_ERROR_REMOTE_POWER_OFF)
5331                 return __hci_cmd_sync_status_sk(hdev, HCI_OP_CREATE_CONN_CANCEL,
5332                                                 6, &conn->dst,
5333                                                 HCI_EV_CONN_COMPLETE,
5334                                                 HCI_CMD_TIMEOUT, NULL);
5335
5336         return __hci_cmd_sync_status(hdev, HCI_OP_CREATE_CONN_CANCEL,
5337                                      6, &conn->dst, HCI_CMD_TIMEOUT);
5338 }
5339
5340 static int hci_reject_sco_sync(struct hci_dev *hdev, struct hci_conn *conn,
5341                                u8 reason)
5342 {
5343         struct hci_cp_reject_sync_conn_req cp;
5344
5345         memset(&cp, 0, sizeof(cp));
5346         bacpy(&cp.bdaddr, &conn->dst);
5347         cp.reason = reason;
5348
5349         /* SCO rejection has its own limited set of
5350          * allowed error values (0x0D-0x0F).
5351          */
5352         if (reason < 0x0d || reason > 0x0f)
5353                 cp.reason = HCI_ERROR_REJ_LIMITED_RESOURCES;
5354
5355         return __hci_cmd_sync_status(hdev, HCI_OP_REJECT_SYNC_CONN_REQ,
5356                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5357 }
5358
5359 static int hci_le_reject_cis_sync(struct hci_dev *hdev, struct hci_conn *conn,
5360                                   u8 reason)
5361 {
5362         struct hci_cp_le_reject_cis cp;
5363
5364         memset(&cp, 0, sizeof(cp));
5365         cp.handle = cpu_to_le16(conn->handle);
5366         cp.reason = reason;
5367
5368         return __hci_cmd_sync_status(hdev, HCI_OP_LE_REJECT_CIS,
5369                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5370 }
5371
5372 static int hci_reject_conn_sync(struct hci_dev *hdev, struct hci_conn *conn,
5373                                 u8 reason)
5374 {
5375         struct hci_cp_reject_conn_req cp;
5376
5377         if (conn->type == ISO_LINK)
5378                 return hci_le_reject_cis_sync(hdev, conn, reason);
5379
5380         if (conn->type == SCO_LINK || conn->type == ESCO_LINK)
5381                 return hci_reject_sco_sync(hdev, conn, reason);
5382
5383         memset(&cp, 0, sizeof(cp));
5384         bacpy(&cp.bdaddr, &conn->dst);
5385         cp.reason = reason;
5386
5387         return __hci_cmd_sync_status(hdev, HCI_OP_REJECT_CONN_REQ,
5388                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5389 }
5390
5391 int hci_abort_conn_sync(struct hci_dev *hdev, struct hci_conn *conn, u8 reason)
5392 {
5393         int err = 0;
5394         u16 handle = conn->handle;
5395         bool disconnect = false;
5396         struct hci_conn *c;
5397
5398         switch (conn->state) {
5399         case BT_CONNECTED:
5400         case BT_CONFIG:
5401                 err = hci_disconnect_sync(hdev, conn, reason);
5402                 break;
5403         case BT_CONNECT:
5404                 err = hci_connect_cancel_sync(hdev, conn, reason);
5405                 break;
5406         case BT_CONNECT2:
5407                 err = hci_reject_conn_sync(hdev, conn, reason);
5408                 break;
5409         case BT_OPEN:
5410                 hci_dev_lock(hdev);
5411
5412                 /* Cleanup bis or pa sync connections */
5413                 if (test_and_clear_bit(HCI_CONN_BIG_SYNC_FAILED, &conn->flags) ||
5414                     test_and_clear_bit(HCI_CONN_PA_SYNC_FAILED, &conn->flags)) {
5415                         hci_conn_failed(conn, reason);
5416                 } else if (test_bit(HCI_CONN_PA_SYNC, &conn->flags) ||
5417                            test_bit(HCI_CONN_BIG_SYNC, &conn->flags)) {
5418                         conn->state = BT_CLOSED;
5419                         hci_disconn_cfm(conn, reason);
5420                         hci_conn_del(conn);
5421                 }
5422
5423                 hci_dev_unlock(hdev);
5424                 return 0;
5425         case BT_BOUND:
5426                 break;
5427         default:
5428                 disconnect = true;
5429                 break;
5430         }
5431
5432         hci_dev_lock(hdev);
5433
5434         /* Check if the connection has been cleaned up concurrently */
5435         c = hci_conn_hash_lookup_handle(hdev, handle);
5436         if (!c || c != conn) {
5437                 err = 0;
5438                 goto unlock;
5439         }
5440
5441         /* Cleanup hci_conn object if it cannot be cancelled as it
5442          * likelly means the controller and host stack are out of sync
5443          * or in case of LE it was still scanning so it can be cleanup
5444          * safely.
5445          */
5446         if (disconnect) {
5447                 conn->state = BT_CLOSED;
5448                 hci_disconn_cfm(conn, reason);
5449                 hci_conn_del(conn);
5450         } else {
5451                 hci_conn_failed(conn, reason);
5452         }
5453
5454 unlock:
5455         hci_dev_unlock(hdev);
5456         return err;
5457 }
5458
5459 static int hci_disconnect_all_sync(struct hci_dev *hdev, u8 reason)
5460 {
5461         struct list_head *head = &hdev->conn_hash.list;
5462         struct hci_conn *conn;
5463
5464         rcu_read_lock();
5465         while ((conn = list_first_or_null_rcu(head, struct hci_conn, list))) {
5466                 /* Make sure the connection is not freed while unlocking */
5467                 conn = hci_conn_get(conn);
5468                 rcu_read_unlock();
5469                 /* Disregard possible errors since hci_conn_del shall have been
5470                  * called even in case of errors had occurred since it would
5471                  * then cause hci_conn_failed to be called which calls
5472                  * hci_conn_del internally.
5473                  */
5474                 hci_abort_conn_sync(hdev, conn, reason);
5475                 hci_conn_put(conn);
5476                 rcu_read_lock();
5477         }
5478         rcu_read_unlock();
5479
5480         return 0;
5481 }
5482
5483 /* This function perform power off HCI command sequence as follows:
5484  *
5485  * Clear Advertising
5486  * Stop Discovery
5487  * Disconnect all connections
5488  * hci_dev_close_sync
5489  */
5490 static int hci_power_off_sync(struct hci_dev *hdev)
5491 {
5492         int err;
5493
5494         /* If controller is already down there is nothing to do */
5495         if (!test_bit(HCI_UP, &hdev->flags))
5496                 return 0;
5497
5498         if (test_bit(HCI_ISCAN, &hdev->flags) ||
5499             test_bit(HCI_PSCAN, &hdev->flags)) {
5500                 err = hci_write_scan_enable_sync(hdev, 0x00);
5501                 if (err)
5502                         return err;
5503         }
5504
5505         err = hci_clear_adv_sync(hdev, NULL, false);
5506         if (err)
5507                 return err;
5508
5509         err = hci_stop_discovery_sync(hdev);
5510         if (err)
5511                 return err;
5512
5513         /* Terminated due to Power Off */
5514         err = hci_disconnect_all_sync(hdev, HCI_ERROR_REMOTE_POWER_OFF);
5515         if (err)
5516                 return err;
5517
5518         return hci_dev_close_sync(hdev);
5519 }
5520
5521 int hci_set_powered_sync(struct hci_dev *hdev, u8 val)
5522 {
5523         if (val)
5524                 return hci_power_on_sync(hdev);
5525
5526         return hci_power_off_sync(hdev);
5527 }
5528
5529 static int hci_write_iac_sync(struct hci_dev *hdev)
5530 {
5531         struct hci_cp_write_current_iac_lap cp;
5532
5533         if (!hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
5534                 return 0;
5535
5536         memset(&cp, 0, sizeof(cp));
5537
5538         if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE)) {
5539                 /* Limited discoverable mode */
5540                 cp.num_iac = min_t(u8, hdev->num_iac, 2);
5541                 cp.iac_lap[0] = 0x00;   /* LIAC */
5542                 cp.iac_lap[1] = 0x8b;
5543                 cp.iac_lap[2] = 0x9e;
5544                 cp.iac_lap[3] = 0x33;   /* GIAC */
5545                 cp.iac_lap[4] = 0x8b;
5546                 cp.iac_lap[5] = 0x9e;
5547         } else {
5548                 /* General discoverable mode */
5549                 cp.num_iac = 1;
5550                 cp.iac_lap[0] = 0x33;   /* GIAC */
5551                 cp.iac_lap[1] = 0x8b;
5552                 cp.iac_lap[2] = 0x9e;
5553         }
5554
5555         return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_CURRENT_IAC_LAP,
5556                                      (cp.num_iac * 3) + 1, &cp,
5557                                      HCI_CMD_TIMEOUT);
5558 }
5559
5560 int hci_update_discoverable_sync(struct hci_dev *hdev)
5561 {
5562         int err = 0;
5563
5564         if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
5565                 err = hci_write_iac_sync(hdev);
5566                 if (err)
5567                         return err;
5568
5569                 err = hci_update_scan_sync(hdev);
5570                 if (err)
5571                         return err;
5572
5573                 err = hci_update_class_sync(hdev);
5574                 if (err)
5575                         return err;
5576         }
5577
5578         /* Advertising instances don't use the global discoverable setting, so
5579          * only update AD if advertising was enabled using Set Advertising.
5580          */
5581         if (hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
5582                 err = hci_update_adv_data_sync(hdev, 0x00);
5583                 if (err)
5584                         return err;
5585
5586                 /* Discoverable mode affects the local advertising
5587                  * address in limited privacy mode.
5588                  */
5589                 if (hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY)) {
5590                         if (ext_adv_capable(hdev))
5591                                 err = hci_start_ext_adv_sync(hdev, 0x00);
5592                         else
5593                                 err = hci_enable_advertising_sync(hdev);
5594                 }
5595         }
5596
5597         return err;
5598 }
5599
5600 static int update_discoverable_sync(struct hci_dev *hdev, void *data)
5601 {
5602         return hci_update_discoverable_sync(hdev);
5603 }
5604
5605 int hci_update_discoverable(struct hci_dev *hdev)
5606 {
5607         /* Only queue if it would have any effect */
5608         if (hdev_is_powered(hdev) &&
5609             hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
5610             hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
5611             hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY))
5612                 return hci_cmd_sync_queue(hdev, update_discoverable_sync, NULL,
5613                                           NULL);
5614
5615         return 0;
5616 }
5617
5618 int hci_update_connectable_sync(struct hci_dev *hdev)
5619 {
5620         int err;
5621
5622         err = hci_update_scan_sync(hdev);
5623         if (err)
5624                 return err;
5625
5626         /* If BR/EDR is not enabled and we disable advertising as a
5627          * by-product of disabling connectable, we need to update the
5628          * advertising flags.
5629          */
5630         if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
5631                 err = hci_update_adv_data_sync(hdev, hdev->cur_adv_instance);
5632
5633         /* Update the advertising parameters if necessary */
5634         if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
5635             !list_empty(&hdev->adv_instances)) {
5636                 if (ext_adv_capable(hdev))
5637                         err = hci_start_ext_adv_sync(hdev,
5638                                                      hdev->cur_adv_instance);
5639                 else
5640                         err = hci_enable_advertising_sync(hdev);
5641
5642                 if (err)
5643                         return err;
5644         }
5645
5646         return hci_update_passive_scan_sync(hdev);
5647 }
5648
5649 static int hci_inquiry_sync(struct hci_dev *hdev, u8 length)
5650 {
5651         const u8 giac[3] = { 0x33, 0x8b, 0x9e };
5652         const u8 liac[3] = { 0x00, 0x8b, 0x9e };
5653         struct hci_cp_inquiry cp;
5654
5655         bt_dev_dbg(hdev, "");
5656
5657         if (hci_dev_test_flag(hdev, HCI_INQUIRY))
5658                 return 0;
5659
5660         hci_dev_lock(hdev);
5661         hci_inquiry_cache_flush(hdev);
5662         hci_dev_unlock(hdev);
5663
5664         memset(&cp, 0, sizeof(cp));
5665
5666         if (hdev->discovery.limited)
5667                 memcpy(&cp.lap, liac, sizeof(cp.lap));
5668         else
5669                 memcpy(&cp.lap, giac, sizeof(cp.lap));
5670
5671         cp.length = length;
5672
5673         return __hci_cmd_sync_status(hdev, HCI_OP_INQUIRY,
5674                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
5675 }
5676
5677 static int hci_active_scan_sync(struct hci_dev *hdev, uint16_t interval)
5678 {
5679         u8 own_addr_type;
5680         /* Accept list is not used for discovery */
5681         u8 filter_policy = 0x00;
5682         /* Default is to enable duplicates filter */
5683         u8 filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
5684         int err;
5685
5686         bt_dev_dbg(hdev, "");
5687
5688         /* If controller is scanning, it means the passive scanning is
5689          * running. Thus, we should temporarily stop it in order to set the
5690          * discovery scanning parameters.
5691          */
5692         err = hci_scan_disable_sync(hdev);
5693         if (err) {
5694                 bt_dev_err(hdev, "Unable to disable scanning: %d", err);
5695                 return err;
5696         }
5697
5698         cancel_interleave_scan(hdev);
5699
5700         /* Pause address resolution for active scan and stop advertising if
5701          * privacy is enabled.
5702          */
5703         err = hci_pause_addr_resolution(hdev);
5704         if (err)
5705                 goto failed;
5706
5707         /* All active scans will be done with either a resolvable private
5708          * address (when privacy feature has been enabled) or non-resolvable
5709          * private address.
5710          */
5711         err = hci_update_random_address_sync(hdev, true, scan_use_rpa(hdev),
5712                                              &own_addr_type);
5713         if (err < 0)
5714                 own_addr_type = ADDR_LE_DEV_PUBLIC;
5715
5716         if (hci_is_adv_monitoring(hdev)) {
5717                 /* Duplicate filter should be disabled when some advertisement
5718                  * monitor is activated, otherwise AdvMon can only receive one
5719                  * advertisement for one peer(*) during active scanning, and
5720                  * might report loss to these peers.
5721                  *
5722                  * Note that different controllers have different meanings of
5723                  * |duplicate|. Some of them consider packets with the same
5724                  * address as duplicate, and others consider packets with the
5725                  * same address and the same RSSI as duplicate. Although in the
5726                  * latter case we don't need to disable duplicate filter, but
5727                  * it is common to have active scanning for a short period of
5728                  * time, the power impact should be neglectable.
5729                  */
5730                 filter_dup = LE_SCAN_FILTER_DUP_DISABLE;
5731         }
5732
5733         err = hci_start_scan_sync(hdev, LE_SCAN_ACTIVE, interval,
5734                                   hdev->le_scan_window_discovery,
5735                                   own_addr_type, filter_policy, filter_dup);
5736         if (!err)
5737                 return err;
5738
5739 failed:
5740         /* Resume advertising if it was paused */
5741         if (use_ll_privacy(hdev))
5742                 hci_resume_advertising_sync(hdev);
5743
5744         /* Resume passive scanning */
5745         hci_update_passive_scan_sync(hdev);
5746         return err;
5747 }
5748
5749 static int hci_start_interleaved_discovery_sync(struct hci_dev *hdev)
5750 {
5751         int err;
5752
5753         bt_dev_dbg(hdev, "");
5754
5755         err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery * 2);
5756         if (err)
5757                 return err;
5758
5759         return hci_inquiry_sync(hdev, DISCOV_BREDR_INQUIRY_LEN);
5760 }
5761
5762 int hci_start_discovery_sync(struct hci_dev *hdev)
5763 {
5764         unsigned long timeout;
5765         int err;
5766
5767         bt_dev_dbg(hdev, "type %u", hdev->discovery.type);
5768
5769         switch (hdev->discovery.type) {
5770         case DISCOV_TYPE_BREDR:
5771                 return hci_inquiry_sync(hdev, DISCOV_BREDR_INQUIRY_LEN);
5772         case DISCOV_TYPE_INTERLEAVED:
5773                 /* When running simultaneous discovery, the LE scanning time
5774                  * should occupy the whole discovery time sine BR/EDR inquiry
5775                  * and LE scanning are scheduled by the controller.
5776                  *
5777                  * For interleaving discovery in comparison, BR/EDR inquiry
5778                  * and LE scanning are done sequentially with separate
5779                  * timeouts.
5780                  */
5781                 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY,
5782                              &hdev->quirks)) {
5783                         timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
5784                         /* During simultaneous discovery, we double LE scan
5785                          * interval. We must leave some time for the controller
5786                          * to do BR/EDR inquiry.
5787                          */
5788                         err = hci_start_interleaved_discovery_sync(hdev);
5789                         break;
5790                 }
5791
5792                 timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
5793                 err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery);
5794                 break;
5795         case DISCOV_TYPE_LE:
5796                 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
5797                 err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery);
5798                 break;
5799         default:
5800                 return -EINVAL;
5801         }
5802
5803         if (err)
5804                 return err;
5805
5806         bt_dev_dbg(hdev, "timeout %u ms", jiffies_to_msecs(timeout));
5807
5808         /* When service discovery is used and the controller has a
5809          * strict duplicate filter, it is important to remember the
5810          * start and duration of the scan. This is required for
5811          * restarting scanning during the discovery phase.
5812          */
5813         if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks) &&
5814             hdev->discovery.result_filtering) {
5815                 hdev->discovery.scan_start = jiffies;
5816                 hdev->discovery.scan_duration = timeout;
5817         }
5818
5819         queue_delayed_work(hdev->req_workqueue, &hdev->le_scan_disable,
5820                            timeout);
5821         return 0;
5822 }
5823
5824 static void hci_suspend_monitor_sync(struct hci_dev *hdev)
5825 {
5826         switch (hci_get_adv_monitor_offload_ext(hdev)) {
5827         case HCI_ADV_MONITOR_EXT_MSFT:
5828                 msft_suspend_sync(hdev);
5829                 break;
5830         default:
5831                 return;
5832         }
5833 }
5834
5835 /* This function disables discovery and mark it as paused */
5836 static int hci_pause_discovery_sync(struct hci_dev *hdev)
5837 {
5838         int old_state = hdev->discovery.state;
5839         int err;
5840
5841         /* If discovery already stopped/stopping/paused there nothing to do */
5842         if (old_state == DISCOVERY_STOPPED || old_state == DISCOVERY_STOPPING ||
5843             hdev->discovery_paused)
5844                 return 0;
5845
5846         hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
5847         err = hci_stop_discovery_sync(hdev);
5848         if (err)
5849                 return err;
5850
5851         hdev->discovery_paused = true;
5852         hdev->discovery_old_state = old_state;
5853         hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
5854
5855         return 0;
5856 }
5857
5858 static int hci_update_event_filter_sync(struct hci_dev *hdev)
5859 {
5860         struct bdaddr_list_with_flags *b;
5861         u8 scan = SCAN_DISABLED;
5862         bool scanning = test_bit(HCI_PSCAN, &hdev->flags);
5863         int err;
5864
5865         if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
5866                 return 0;
5867
5868         /* Some fake CSR controllers lock up after setting this type of
5869          * filter, so avoid sending the request altogether.
5870          */
5871         if (test_bit(HCI_QUIRK_BROKEN_FILTER_CLEAR_ALL, &hdev->quirks))
5872                 return 0;
5873
5874         /* Always clear event filter when starting */
5875         hci_clear_event_filter_sync(hdev);
5876
5877         list_for_each_entry(b, &hdev->accept_list, list) {
5878                 if (!(b->flags & HCI_CONN_FLAG_REMOTE_WAKEUP))
5879                         continue;
5880
5881                 bt_dev_dbg(hdev, "Adding event filters for %pMR", &b->bdaddr);
5882
5883                 err =  hci_set_event_filter_sync(hdev, HCI_FLT_CONN_SETUP,
5884                                                  HCI_CONN_SETUP_ALLOW_BDADDR,
5885                                                  &b->bdaddr,
5886                                                  HCI_CONN_SETUP_AUTO_ON);
5887                 if (err)
5888                         bt_dev_dbg(hdev, "Failed to set event filter for %pMR",
5889                                    &b->bdaddr);
5890                 else
5891                         scan = SCAN_PAGE;
5892         }
5893
5894         if (scan && !scanning)
5895                 hci_write_scan_enable_sync(hdev, scan);
5896         else if (!scan && scanning)
5897                 hci_write_scan_enable_sync(hdev, scan);
5898
5899         return 0;
5900 }
5901
5902 /* This function disables scan (BR and LE) and mark it as paused */
5903 static int hci_pause_scan_sync(struct hci_dev *hdev)
5904 {
5905         if (hdev->scanning_paused)
5906                 return 0;
5907
5908         /* Disable page scan if enabled */
5909         if (test_bit(HCI_PSCAN, &hdev->flags))
5910                 hci_write_scan_enable_sync(hdev, SCAN_DISABLED);
5911
5912         hci_scan_disable_sync(hdev);
5913
5914         hdev->scanning_paused = true;
5915
5916         return 0;
5917 }
5918
5919 /* This function performs the HCI suspend procedures in the follow order:
5920  *
5921  * Pause discovery (active scanning/inquiry)
5922  * Pause Directed Advertising/Advertising
5923  * Pause Scanning (passive scanning in case discovery was not active)
5924  * Disconnect all connections
5925  * Set suspend_status to BT_SUSPEND_DISCONNECT if hdev cannot wakeup
5926  * otherwise:
5927  * Update event mask (only set events that are allowed to wake up the host)
5928  * Update event filter (with devices marked with HCI_CONN_FLAG_REMOTE_WAKEUP)
5929  * Update passive scanning (lower duty cycle)
5930  * Set suspend_status to BT_SUSPEND_CONFIGURE_WAKE
5931  */
5932 int hci_suspend_sync(struct hci_dev *hdev)
5933 {
5934         int err;
5935
5936         /* If marked as suspended there nothing to do */
5937         if (hdev->suspended)
5938                 return 0;
5939
5940         /* Mark device as suspended */
5941         hdev->suspended = true;
5942
5943         /* Pause discovery if not already stopped */
5944         hci_pause_discovery_sync(hdev);
5945
5946         /* Pause other advertisements */
5947         hci_pause_advertising_sync(hdev);
5948
5949         /* Suspend monitor filters */
5950         hci_suspend_monitor_sync(hdev);
5951
5952         /* Prevent disconnects from causing scanning to be re-enabled */
5953         hci_pause_scan_sync(hdev);
5954
5955         if (hci_conn_count(hdev)) {
5956                 /* Soft disconnect everything (power off) */
5957                 err = hci_disconnect_all_sync(hdev, HCI_ERROR_REMOTE_POWER_OFF);
5958                 if (err) {
5959                         /* Set state to BT_RUNNING so resume doesn't notify */
5960                         hdev->suspend_state = BT_RUNNING;
5961                         hci_resume_sync(hdev);
5962                         return err;
5963                 }
5964
5965                 /* Update event mask so only the allowed event can wakeup the
5966                  * host.
5967                  */
5968                 hci_set_event_mask_sync(hdev);
5969         }
5970
5971         /* Only configure accept list if disconnect succeeded and wake
5972          * isn't being prevented.
5973          */
5974         if (!hdev->wakeup || !hdev->wakeup(hdev)) {
5975                 hdev->suspend_state = BT_SUSPEND_DISCONNECT;
5976                 return 0;
5977         }
5978
5979         /* Unpause to take care of updating scanning params */
5980         hdev->scanning_paused = false;
5981
5982         /* Enable event filter for paired devices */
5983         hci_update_event_filter_sync(hdev);
5984
5985         /* Update LE passive scan if enabled */
5986         hci_update_passive_scan_sync(hdev);
5987
5988         /* Pause scan changes again. */
5989         hdev->scanning_paused = true;
5990
5991         hdev->suspend_state = BT_SUSPEND_CONFIGURE_WAKE;
5992
5993         return 0;
5994 }
5995
5996 /* This function resumes discovery */
5997 static int hci_resume_discovery_sync(struct hci_dev *hdev)
5998 {
5999         int err;
6000
6001         /* If discovery not paused there nothing to do */
6002         if (!hdev->discovery_paused)
6003                 return 0;
6004
6005         hdev->discovery_paused = false;
6006
6007         hci_discovery_set_state(hdev, DISCOVERY_STARTING);
6008
6009         err = hci_start_discovery_sync(hdev);
6010
6011         hci_discovery_set_state(hdev, err ? DISCOVERY_STOPPED :
6012                                 DISCOVERY_FINDING);
6013
6014         return err;
6015 }
6016
6017 static void hci_resume_monitor_sync(struct hci_dev *hdev)
6018 {
6019         switch (hci_get_adv_monitor_offload_ext(hdev)) {
6020         case HCI_ADV_MONITOR_EXT_MSFT:
6021                 msft_resume_sync(hdev);
6022                 break;
6023         default:
6024                 return;
6025         }
6026 }
6027
6028 /* This function resume scan and reset paused flag */
6029 static int hci_resume_scan_sync(struct hci_dev *hdev)
6030 {
6031         if (!hdev->scanning_paused)
6032                 return 0;
6033
6034         hdev->scanning_paused = false;
6035
6036         hci_update_scan_sync(hdev);
6037
6038         /* Reset passive scanning to normal */
6039         hci_update_passive_scan_sync(hdev);
6040
6041         return 0;
6042 }
6043
6044 /* This function performs the HCI suspend procedures in the follow order:
6045  *
6046  * Restore event mask
6047  * Clear event filter
6048  * Update passive scanning (normal duty cycle)
6049  * Resume Directed Advertising/Advertising
6050  * Resume discovery (active scanning/inquiry)
6051  */
6052 int hci_resume_sync(struct hci_dev *hdev)
6053 {
6054         /* If not marked as suspended there nothing to do */
6055         if (!hdev->suspended)
6056                 return 0;
6057
6058         hdev->suspended = false;
6059
6060         /* Restore event mask */
6061         hci_set_event_mask_sync(hdev);
6062
6063         /* Clear any event filters and restore scan state */
6064         hci_clear_event_filter_sync(hdev);
6065
6066         /* Resume scanning */
6067         hci_resume_scan_sync(hdev);
6068
6069         /* Resume monitor filters */
6070         hci_resume_monitor_sync(hdev);
6071
6072         /* Resume other advertisements */
6073         hci_resume_advertising_sync(hdev);
6074
6075         /* Resume discovery */
6076         hci_resume_discovery_sync(hdev);
6077
6078         return 0;
6079 }
6080
6081 static bool conn_use_rpa(struct hci_conn *conn)
6082 {
6083         struct hci_dev *hdev = conn->hdev;
6084
6085         return hci_dev_test_flag(hdev, HCI_PRIVACY);
6086 }
6087
6088 static int hci_le_ext_directed_advertising_sync(struct hci_dev *hdev,
6089                                                 struct hci_conn *conn)
6090 {
6091         struct hci_cp_le_set_ext_adv_params cp;
6092         int err;
6093         bdaddr_t random_addr;
6094         u8 own_addr_type;
6095
6096         err = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn),
6097                                              &own_addr_type);
6098         if (err)
6099                 return err;
6100
6101         /* Set require_privacy to false so that the remote device has a
6102          * chance of identifying us.
6103          */
6104         err = hci_get_random_address(hdev, false, conn_use_rpa(conn), NULL,
6105                                      &own_addr_type, &random_addr);
6106         if (err)
6107                 return err;
6108
6109         memset(&cp, 0, sizeof(cp));
6110
6111         cp.evt_properties = cpu_to_le16(LE_LEGACY_ADV_DIRECT_IND);
6112         cp.channel_map = hdev->le_adv_channel_map;
6113         cp.tx_power = HCI_TX_POWER_INVALID;
6114         cp.primary_phy = HCI_ADV_PHY_1M;
6115         cp.secondary_phy = HCI_ADV_PHY_1M;
6116         cp.handle = 0x00; /* Use instance 0 for directed adv */
6117         cp.own_addr_type = own_addr_type;
6118         cp.peer_addr_type = conn->dst_type;
6119         bacpy(&cp.peer_addr, &conn->dst);
6120
6121         /* As per Core Spec 5.2 Vol 2, PART E, Sec 7.8.53, for
6122          * advertising_event_property LE_LEGACY_ADV_DIRECT_IND
6123          * does not supports advertising data when the advertising set already
6124          * contains some, the controller shall return erroc code 'Invalid
6125          * HCI Command Parameters(0x12).
6126          * So it is required to remove adv set for handle 0x00. since we use
6127          * instance 0 for directed adv.
6128          */
6129         err = hci_remove_ext_adv_instance_sync(hdev, cp.handle, NULL);
6130         if (err)
6131                 return err;
6132
6133         err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_PARAMS,
6134                                     sizeof(cp), &cp, HCI_CMD_TIMEOUT);
6135         if (err)
6136                 return err;
6137
6138         /* Check if random address need to be updated */
6139         if (own_addr_type == ADDR_LE_DEV_RANDOM &&
6140             bacmp(&random_addr, BDADDR_ANY) &&
6141             bacmp(&random_addr, &hdev->random_addr)) {
6142                 err = hci_set_adv_set_random_addr_sync(hdev, 0x00,
6143                                                        &random_addr);
6144                 if (err)
6145                         return err;
6146         }
6147
6148         return hci_enable_ext_advertising_sync(hdev, 0x00);
6149 }
6150
6151 static int hci_le_directed_advertising_sync(struct hci_dev *hdev,
6152                                             struct hci_conn *conn)
6153 {
6154         struct hci_cp_le_set_adv_param cp;
6155         u8 status;
6156         u8 own_addr_type;
6157         u8 enable;
6158
6159         if (ext_adv_capable(hdev))
6160                 return hci_le_ext_directed_advertising_sync(hdev, conn);
6161
6162         /* Clear the HCI_LE_ADV bit temporarily so that the
6163          * hci_update_random_address knows that it's safe to go ahead
6164          * and write a new random address. The flag will be set back on
6165          * as soon as the SET_ADV_ENABLE HCI command completes.
6166          */
6167         hci_dev_clear_flag(hdev, HCI_LE_ADV);
6168
6169         /* Set require_privacy to false so that the remote device has a
6170          * chance of identifying us.
6171          */
6172         status = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn),
6173                                                 &own_addr_type);
6174         if (status)
6175                 return status;
6176
6177         memset(&cp, 0, sizeof(cp));
6178
6179         /* Some controllers might reject command if intervals are not
6180          * within range for undirected advertising.
6181          * BCM20702A0 is known to be affected by this.
6182          */
6183         cp.min_interval = cpu_to_le16(0x0020);
6184         cp.max_interval = cpu_to_le16(0x0020);
6185
6186         cp.type = LE_ADV_DIRECT_IND;
6187         cp.own_address_type = own_addr_type;
6188         cp.direct_addr_type = conn->dst_type;
6189         bacpy(&cp.direct_addr, &conn->dst);
6190         cp.channel_map = hdev->le_adv_channel_map;
6191
6192         status = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_PARAM,
6193                                        sizeof(cp), &cp, HCI_CMD_TIMEOUT);
6194         if (status)
6195                 return status;
6196
6197         enable = 0x01;
6198
6199         return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_ENABLE,
6200                                      sizeof(enable), &enable, HCI_CMD_TIMEOUT);
6201 }
6202
6203 static void set_ext_conn_params(struct hci_conn *conn,
6204                                 struct hci_cp_le_ext_conn_param *p)
6205 {
6206         struct hci_dev *hdev = conn->hdev;
6207
6208         memset(p, 0, sizeof(*p));
6209
6210         p->scan_interval = cpu_to_le16(hdev->le_scan_int_connect);
6211         p->scan_window = cpu_to_le16(hdev->le_scan_window_connect);
6212         p->conn_interval_min = cpu_to_le16(conn->le_conn_min_interval);
6213         p->conn_interval_max = cpu_to_le16(conn->le_conn_max_interval);
6214         p->conn_latency = cpu_to_le16(conn->le_conn_latency);
6215         p->supervision_timeout = cpu_to_le16(conn->le_supv_timeout);
6216         p->min_ce_len = cpu_to_le16(0x0000);
6217         p->max_ce_len = cpu_to_le16(0x0000);
6218 }
6219
6220 static int hci_le_ext_create_conn_sync(struct hci_dev *hdev,
6221                                        struct hci_conn *conn, u8 own_addr_type)
6222 {
6223         struct hci_cp_le_ext_create_conn *cp;
6224         struct hci_cp_le_ext_conn_param *p;
6225         u8 data[sizeof(*cp) + sizeof(*p) * 3];
6226         u32 plen;
6227
6228         cp = (void *)data;
6229         p = (void *)cp->data;
6230
6231         memset(cp, 0, sizeof(*cp));
6232
6233         bacpy(&cp->peer_addr, &conn->dst);
6234         cp->peer_addr_type = conn->dst_type;
6235         cp->own_addr_type = own_addr_type;
6236
6237         plen = sizeof(*cp);
6238
6239         if (scan_1m(hdev)) {
6240                 cp->phys |= LE_SCAN_PHY_1M;
6241                 set_ext_conn_params(conn, p);
6242
6243                 p++;
6244                 plen += sizeof(*p);
6245         }
6246
6247         if (scan_2m(hdev)) {
6248                 cp->phys |= LE_SCAN_PHY_2M;
6249                 set_ext_conn_params(conn, p);
6250
6251                 p++;
6252                 plen += sizeof(*p);
6253         }
6254
6255         if (scan_coded(hdev)) {
6256                 cp->phys |= LE_SCAN_PHY_CODED;
6257                 set_ext_conn_params(conn, p);
6258
6259                 plen += sizeof(*p);
6260         }
6261
6262         return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_EXT_CREATE_CONN,
6263                                         plen, data,
6264                                         HCI_EV_LE_ENHANCED_CONN_COMPLETE,
6265                                         conn->conn_timeout, NULL);
6266 }
6267
6268 int hci_le_create_conn_sync(struct hci_dev *hdev, struct hci_conn *conn)
6269 {
6270         struct hci_cp_le_create_conn cp;
6271         struct hci_conn_params *params;
6272         u8 own_addr_type;
6273         int err;
6274
6275         /* If requested to connect as peripheral use directed advertising */
6276         if (conn->role == HCI_ROLE_SLAVE) {
6277                 /* If we're active scanning and simultaneous roles is not
6278                  * enabled simply reject the attempt.
6279                  */
6280                 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
6281                     hdev->le_scan_type == LE_SCAN_ACTIVE &&
6282                     !hci_dev_test_flag(hdev, HCI_LE_SIMULTANEOUS_ROLES)) {
6283                         hci_conn_del(conn);
6284                         return -EBUSY;
6285                 }
6286
6287                 /* Pause advertising while doing directed advertising. */
6288                 hci_pause_advertising_sync(hdev);
6289
6290                 err = hci_le_directed_advertising_sync(hdev, conn);
6291                 goto done;
6292         }
6293
6294         /* Disable advertising if simultaneous roles is not in use. */
6295         if (!hci_dev_test_flag(hdev, HCI_LE_SIMULTANEOUS_ROLES))
6296                 hci_pause_advertising_sync(hdev);
6297
6298         params = hci_conn_params_lookup(hdev, &conn->dst, conn->dst_type);
6299         if (params) {
6300                 conn->le_conn_min_interval = params->conn_min_interval;
6301                 conn->le_conn_max_interval = params->conn_max_interval;
6302                 conn->le_conn_latency = params->conn_latency;
6303                 conn->le_supv_timeout = params->supervision_timeout;
6304         } else {
6305                 conn->le_conn_min_interval = hdev->le_conn_min_interval;
6306                 conn->le_conn_max_interval = hdev->le_conn_max_interval;
6307                 conn->le_conn_latency = hdev->le_conn_latency;
6308                 conn->le_supv_timeout = hdev->le_supv_timeout;
6309         }
6310
6311         /* If controller is scanning, we stop it since some controllers are
6312          * not able to scan and connect at the same time. Also set the
6313          * HCI_LE_SCAN_INTERRUPTED flag so that the command complete
6314          * handler for scan disabling knows to set the correct discovery
6315          * state.
6316          */
6317         if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
6318                 hci_scan_disable_sync(hdev);
6319                 hci_dev_set_flag(hdev, HCI_LE_SCAN_INTERRUPTED);
6320         }
6321
6322         /* Update random address, but set require_privacy to false so
6323          * that we never connect with an non-resolvable address.
6324          */
6325         err = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn),
6326                                              &own_addr_type);
6327         if (err)
6328                 goto done;
6329
6330         if (use_ext_conn(hdev)) {
6331                 err = hci_le_ext_create_conn_sync(hdev, conn, own_addr_type);
6332                 goto done;
6333         }
6334
6335         memset(&cp, 0, sizeof(cp));
6336
6337         cp.scan_interval = cpu_to_le16(hdev->le_scan_int_connect);
6338         cp.scan_window = cpu_to_le16(hdev->le_scan_window_connect);
6339
6340         bacpy(&cp.peer_addr, &conn->dst);
6341         cp.peer_addr_type = conn->dst_type;
6342         cp.own_address_type = own_addr_type;
6343         cp.conn_interval_min = cpu_to_le16(conn->le_conn_min_interval);
6344         cp.conn_interval_max = cpu_to_le16(conn->le_conn_max_interval);
6345         cp.conn_latency = cpu_to_le16(conn->le_conn_latency);
6346         cp.supervision_timeout = cpu_to_le16(conn->le_supv_timeout);
6347         cp.min_ce_len = cpu_to_le16(0x0000);
6348         cp.max_ce_len = cpu_to_le16(0x0000);
6349
6350         /* BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E page 2261:
6351          *
6352          * If this event is unmasked and the HCI_LE_Connection_Complete event
6353          * is unmasked, only the HCI_LE_Enhanced_Connection_Complete event is
6354          * sent when a new connection has been created.
6355          */
6356         err = __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_CREATE_CONN,
6357                                        sizeof(cp), &cp,
6358                                        use_enhanced_conn_complete(hdev) ?
6359                                        HCI_EV_LE_ENHANCED_CONN_COMPLETE :
6360                                        HCI_EV_LE_CONN_COMPLETE,
6361                                        conn->conn_timeout, NULL);
6362
6363 done:
6364         if (err == -ETIMEDOUT)
6365                 hci_le_connect_cancel_sync(hdev, conn, 0x00);
6366
6367         /* Re-enable advertising after the connection attempt is finished. */
6368         hci_resume_advertising_sync(hdev);
6369         return err;
6370 }
6371
6372 int hci_le_create_cis_sync(struct hci_dev *hdev)
6373 {
6374         struct {
6375                 struct hci_cp_le_create_cis cp;
6376                 struct hci_cis cis[0x1f];
6377         } cmd;
6378         struct hci_conn *conn;
6379         u8 cig = BT_ISO_QOS_CIG_UNSET;
6380
6381         /* The spec allows only one pending LE Create CIS command at a time. If
6382          * the command is pending now, don't do anything. We check for pending
6383          * connections after each CIS Established event.
6384          *
6385          * BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E
6386          * page 2566:
6387          *
6388          * If the Host issues this command before all the
6389          * HCI_LE_CIS_Established events from the previous use of the
6390          * command have been generated, the Controller shall return the
6391          * error code Command Disallowed (0x0C).
6392          *
6393          * BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E
6394          * page 2567:
6395          *
6396          * When the Controller receives the HCI_LE_Create_CIS command, the
6397          * Controller sends the HCI_Command_Status event to the Host. An
6398          * HCI_LE_CIS_Established event will be generated for each CIS when it
6399          * is established or if it is disconnected or considered lost before
6400          * being established; until all the events are generated, the command
6401          * remains pending.
6402          */
6403
6404         memset(&cmd, 0, sizeof(cmd));
6405
6406         hci_dev_lock(hdev);
6407
6408         rcu_read_lock();
6409
6410         /* Wait until previous Create CIS has completed */
6411         list_for_each_entry_rcu(conn, &hdev->conn_hash.list, list) {
6412                 if (test_bit(HCI_CONN_CREATE_CIS, &conn->flags))
6413                         goto done;
6414         }
6415
6416         /* Find CIG with all CIS ready */
6417         list_for_each_entry_rcu(conn, &hdev->conn_hash.list, list) {
6418                 struct hci_conn *link;
6419
6420                 if (hci_conn_check_create_cis(conn))
6421                         continue;
6422
6423                 cig = conn->iso_qos.ucast.cig;
6424
6425                 list_for_each_entry_rcu(link, &hdev->conn_hash.list, list) {
6426                         if (hci_conn_check_create_cis(link) > 0 &&
6427                             link->iso_qos.ucast.cig == cig &&
6428                             link->state != BT_CONNECTED) {
6429                                 cig = BT_ISO_QOS_CIG_UNSET;
6430                                 break;
6431                         }
6432                 }
6433
6434                 if (cig != BT_ISO_QOS_CIG_UNSET)
6435                         break;
6436         }
6437
6438         if (cig == BT_ISO_QOS_CIG_UNSET)
6439                 goto done;
6440
6441         list_for_each_entry_rcu(conn, &hdev->conn_hash.list, list) {
6442                 struct hci_cis *cis = &cmd.cis[cmd.cp.num_cis];
6443
6444                 if (hci_conn_check_create_cis(conn) ||
6445                     conn->iso_qos.ucast.cig != cig)
6446                         continue;
6447
6448                 set_bit(HCI_CONN_CREATE_CIS, &conn->flags);
6449                 cis->acl_handle = cpu_to_le16(conn->parent->handle);
6450                 cis->cis_handle = cpu_to_le16(conn->handle);
6451                 cmd.cp.num_cis++;
6452
6453                 if (cmd.cp.num_cis >= ARRAY_SIZE(cmd.cis))
6454                         break;
6455         }
6456
6457 done:
6458         rcu_read_unlock();
6459
6460         hci_dev_unlock(hdev);
6461
6462         if (!cmd.cp.num_cis)
6463                 return 0;
6464
6465         /* Wait for HCI_LE_CIS_Established */
6466         return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_CREATE_CIS,
6467                                         sizeof(cmd.cp) + sizeof(cmd.cis[0]) *
6468                                         cmd.cp.num_cis, &cmd,
6469                                         HCI_EVT_LE_CIS_ESTABLISHED,
6470                                         conn->conn_timeout, NULL);
6471 }
6472
6473 int hci_le_remove_cig_sync(struct hci_dev *hdev, u8 handle)
6474 {
6475         struct hci_cp_le_remove_cig cp;
6476
6477         memset(&cp, 0, sizeof(cp));
6478         cp.cig_id = handle;
6479
6480         return __hci_cmd_sync_status(hdev, HCI_OP_LE_REMOVE_CIG, sizeof(cp),
6481                                      &cp, HCI_CMD_TIMEOUT);
6482 }
6483
6484 int hci_le_big_terminate_sync(struct hci_dev *hdev, u8 handle)
6485 {
6486         struct hci_cp_le_big_term_sync cp;
6487
6488         memset(&cp, 0, sizeof(cp));
6489         cp.handle = handle;
6490
6491         return __hci_cmd_sync_status(hdev, HCI_OP_LE_BIG_TERM_SYNC,
6492                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
6493 }
6494
6495 int hci_le_pa_terminate_sync(struct hci_dev *hdev, u16 handle)
6496 {
6497         struct hci_cp_le_pa_term_sync cp;
6498
6499         memset(&cp, 0, sizeof(cp));
6500         cp.handle = cpu_to_le16(handle);
6501
6502         return __hci_cmd_sync_status(hdev, HCI_OP_LE_PA_TERM_SYNC,
6503                                      sizeof(cp), &cp, HCI_CMD_TIMEOUT);
6504 }
6505
6506 int hci_get_random_address(struct hci_dev *hdev, bool require_privacy,
6507                            bool use_rpa, struct adv_info *adv_instance,
6508                            u8 *own_addr_type, bdaddr_t *rand_addr)
6509 {
6510         int err;
6511
6512         bacpy(rand_addr, BDADDR_ANY);
6513
6514         /* If privacy is enabled use a resolvable private address. If
6515          * current RPA has expired then generate a new one.
6516          */
6517         if (use_rpa) {
6518                 /* If Controller supports LL Privacy use own address type is
6519                  * 0x03
6520                  */
6521                 if (use_ll_privacy(hdev))
6522                         *own_addr_type = ADDR_LE_DEV_RANDOM_RESOLVED;
6523                 else
6524                         *own_addr_type = ADDR_LE_DEV_RANDOM;
6525
6526                 if (adv_instance) {
6527                         if (adv_rpa_valid(adv_instance))
6528                                 return 0;
6529                 } else {
6530                         if (rpa_valid(hdev))
6531                                 return 0;
6532                 }
6533
6534                 err = smp_generate_rpa(hdev, hdev->irk, &hdev->rpa);
6535                 if (err < 0) {
6536                         bt_dev_err(hdev, "failed to generate new RPA");
6537                         return err;
6538                 }
6539
6540                 bacpy(rand_addr, &hdev->rpa);
6541
6542                 return 0;
6543         }
6544
6545         /* In case of required privacy without resolvable private address,
6546          * use an non-resolvable private address. This is useful for
6547          * non-connectable advertising.
6548          */
6549         if (require_privacy) {
6550                 bdaddr_t nrpa;
6551
6552                 while (true) {
6553                         /* The non-resolvable private address is generated
6554                          * from random six bytes with the two most significant
6555                          * bits cleared.
6556                          */
6557                         get_random_bytes(&nrpa, 6);
6558                         nrpa.b[5] &= 0x3f;
6559
6560                         /* The non-resolvable private address shall not be
6561                          * equal to the public address.
6562                          */
6563                         if (bacmp(&hdev->bdaddr, &nrpa))
6564                                 break;
6565                 }
6566
6567                 *own_addr_type = ADDR_LE_DEV_RANDOM;
6568                 bacpy(rand_addr, &nrpa);
6569
6570                 return 0;
6571         }
6572
6573         /* No privacy so use a public address. */
6574         *own_addr_type = ADDR_LE_DEV_PUBLIC;
6575
6576         return 0;
6577 }
6578
6579 static int _update_adv_data_sync(struct hci_dev *hdev, void *data)
6580 {
6581         u8 instance = PTR_UINT(data);
6582
6583         return hci_update_adv_data_sync(hdev, instance);
6584 }
6585
6586 int hci_update_adv_data(struct hci_dev *hdev, u8 instance)
6587 {
6588         return hci_cmd_sync_queue(hdev, _update_adv_data_sync,
6589                                   UINT_PTR(instance), NULL);
6590 }