1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
57
58
62
63
71
72
85
86
93
94
100
101
102
103
104
105
106
110
111
112
113
121
122
128
129
130
131
132
133
134
135
136
137
138
139
140
150
151
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
208
209
212
213
214
215
216
217
218
219
225
226
227
228
229
230
231
239
240
241
247
248
249
250
251
252
260
268
269
270
271
272
273
274
275
276
277
278
279
280
281
288
289
290
291
292
293
294
295
296
300
301
302
322
323
324
325
332
333
352
353
357
358
359
360
361
362
363
364
365
366
373
374
375
376
377
378
379
380
381
384
385
386
393
394
395
396
397
398
399
400
401
402
407
408
411
412
413
420
425
426
433
434
435
436
437
440
441
445
446
447
448
455
456
457
458
459
460
463
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
512
513
514
515
516
517
518
519
520
521
522
523
524
531
534
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
573
574
575
576
577
578
579
580
581
582
583
584
585
586
589
598
599
603
604
605
606
609
610
611
612
613
617
618
619
620
621
622
623
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
672
673
674
675
676
677
678
679
680
681
682
683
684
697
698
699
700
701
702
703
704
705
706
714
715
716
717
718
719
720
721
722
723
724
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
759
760
761
762
763
764
765
766
767
768
769
770
771
775
776
777
778
779
780
781
782
783
784
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
832
833
834
835
836
/* ... */
/* ... */
#include <string.h>
#include "common/bt_trace.h"
#include "device/controller.h"
#include "osi/allocator.h"
#include "osi/hash_map.h"
#include "stack/bt_types.h"
#include "stack/btu.h"
#include "btm_int.h"
#include "l2c_int.h"
#include "stack/hcimsgs.h"10 includes
#ifndef BTM_BLE_SCAN_PARAM_TOUT
#define BTM_BLE_SCAN_PARAM_TOUT 50
#endif
#if (BLE_INCLUDED == TRUE)
static void btm_suspend_wl_activity(tBTM_BLE_WL_STATE wl_state);
static void btm_wl_update_to_controller(void);
static const size_t background_connection_buckets = 42;
static hash_map_t *background_connections = NULL;
typedef struct background_connection_t {
bt_bdaddr_t address;
}{ ... } background_connection_t;
static bool bdaddr_equality_fn(const void *x, const void *y)
{
return bdaddr_equals((bt_bdaddr_t *)x, (bt_bdaddr_t *)y);
}{ ... }
static void background_connections_lazy_init(void)
{
if (!background_connections) {
background_connections = hash_map_new(background_connection_buckets,
hash_function_bdaddr, NULL, osi_free_func, bdaddr_equality_fn);
assert(background_connections);
}{...}
}{ ... }
static BOOLEAN background_connection_add(bt_bdaddr_t *address)
{
assert(address);
background_connections_lazy_init();
background_connection_t *connection = hash_map_get(background_connections, address);
if (!connection) {
connection = osi_calloc(sizeof(background_connection_t));
connection->address = *address;
hash_map_set(background_connections, &(connection->address), connection);
return TRUE;
}{...}
return FALSE;
}{ ... }
static BOOLEAN background_connection_remove(bt_bdaddr_t *address)
{
if (address && background_connections) {
return hash_map_erase(background_connections, address);
}{...}
return FALSE;
}{ ... }
static void background_connections_clear(void)
{
if (background_connections) {
hash_map_clear(background_connections);
}{...}
}{ ... }
static bool background_connections_pending_cb(hash_map_entry_t *hash_entry, void *context)
{
bool *pending_connections = context;
background_connection_t *connection = hash_entry->data;
const bool connected = BTM_IsAclConnectionUp(connection->address.address, BT_TRANSPORT_LE);
if (!connected) {
*pending_connections = true;
return false;
}{...}
return true;
}{ ... }
static bool background_connections_pending(void)
{
bool pending_connections = false;
if (background_connections) {
hash_map_foreach(background_connections, background_connections_pending_cb, &pending_connections);
}{...}
return pending_connections;
}{ ... }
/* ... */
void btm_update_scanner_filter_policy(tBTM_BLE_SFP scan_policy)
{
tBTM_BLE_INQ_CB *p_inq = &btm_cb.ble_ctr_cb.inq_var;
UINT32 scan_interval = !p_inq->scan_interval ? BTM_BLE_GAP_DISC_SCAN_INT : p_inq->scan_interval;
UINT32 scan_window = !p_inq->scan_window ? BTM_BLE_GAP_DISC_SCAN_WIN : p_inq->scan_window;
BTM_TRACE_EVENT ("%s\n", __func__);
p_inq->sfp = scan_policy;
p_inq->scan_type = p_inq->scan_type == BTM_BLE_SCAN_MODE_NONE ? BTM_BLE_SCAN_MODE_ACTI : p_inq->scan_type;
if (btm_cb.cmn_ble_vsc_cb.extended_scan_support == 0) {
btsnd_hcic_ble_set_scan_params(p_inq->scan_type, (UINT16)scan_interval,
(UINT16)scan_window,
btm_cb.ble_ctr_cb.addr_mgnt_cb.own_addr_type,
scan_policy);
}{...} else {
btm_ble_send_extended_scan_params(p_inq->scan_type, scan_interval, scan_window,
btm_cb.ble_ctr_cb.addr_mgnt_cb.own_addr_type,
scan_policy);
}{...}
}{ ... }
/* ... */
BOOLEAN btm_add_dev_to_controller (BOOLEAN to_add, BD_ADDR bd_addr, tBLE_ADDR_TYPE wl_addr_type)
{
/* ... */
BOOLEAN started = FALSE;
if(wl_addr_type > BLE_ADDR_RANDOM) {
BTM_TRACE_ERROR("wl_addr_type is error\n");
return started;
}{...}
if (to_add) {
started = btsnd_hcic_ble_add_white_list (wl_addr_type, bd_addr);
}{...}else{
started = btsnd_hcic_ble_remove_from_white_list (wl_addr_type, bd_addr);
}
return started;
}{ ... }
/* ... */
BOOLEAN btm_execute_wl_dev_operation(void)
{
tBTM_BLE_WL_OP *p_dev_op = btm_cb.ble_ctr_cb.wl_op_q;
UINT8 i = 0;
BOOLEAN rt = TRUE;
for (i = 0; i < BTM_BLE_MAX_BG_CONN_DEV_NUM && rt; i ++, p_dev_op ++) {
if (p_dev_op->in_use) {
rt = btm_add_dev_to_controller(p_dev_op->to_add, p_dev_op->bd_addr, p_dev_op->addr_type);
memset(p_dev_op, 0, sizeof(tBTM_BLE_WL_OP));
}{...} else {
break;
}{...}
}{...}
return rt;
}{ ... }
/* ... */
void btm_enq_wl_dev_operation(BOOLEAN to_add, BD_ADDR bd_addr, tBLE_ADDR_TYPE addr_type)
{
tBTM_BLE_WL_OP *p_dev_op = btm_cb.ble_ctr_cb.wl_op_q;
UINT8 i = 0;
for (i = 0; i < BTM_BLE_MAX_BG_CONN_DEV_NUM; i ++, p_dev_op ++) {
if (p_dev_op->in_use && p_dev_op->addr_type == addr_type && !memcmp(p_dev_op->bd_addr, bd_addr, BD_ADDR_LEN)) {
p_dev_op->to_add = to_add;
return;
}{...} else if (!p_dev_op->in_use) {
break;
}{...}
}{...}
if (i != BTM_BLE_MAX_BG_CONN_DEV_NUM) {
p_dev_op->in_use = TRUE;
p_dev_op->to_add = to_add;
p_dev_op->addr_type = addr_type;
memcpy(p_dev_op->bd_addr, bd_addr, BD_ADDR_LEN);
}{...} else {
BTM_TRACE_ERROR("max pending WL operation reached, discard");
}{...}
return;
}{ ... }
/* ... */
BOOLEAN btm_update_dev_to_white_list(BOOLEAN to_add, BD_ADDR bd_addr, tBLE_ADDR_TYPE addr_type, tBTM_UPDATE_WHITELIST_CBACK *update_wl_cb)
{
if(addr_type > BLE_ADDR_RANDOM) {
BTM_TRACE_ERROR("%s address type is error, unable to add device", __func__);
if (update_wl_cb){
update_wl_cb(HCI_ERR_ILLEGAL_PARAMETER_FMT,to_add);
}{...}
return FALSE;
}{...}
BD_ADDR invalid_rand_addr_a, invalid_rand_addr_b;
memset(invalid_rand_addr_a, 0xff, sizeof(BD_ADDR));
memset(invalid_rand_addr_b, 0x00, sizeof(BD_ADDR));
tBTM_SEC_DEV_REC *p_dev_rec = btm_find_dev(bd_addr);
if(p_dev_rec && memcmp(invalid_rand_addr_b, p_dev_rec->ble.static_addr, BD_ADDR_LEN) != 0) {
memcpy(bd_addr, p_dev_rec->ble.static_addr, BD_ADDR_LEN);
addr_type = p_dev_rec->ble.static_addr_type;
}{...}
if(addr_type == BLE_ADDR_RANDOM) {
/* ... */
invalid_rand_addr_b[0] = invalid_rand_addr_b[0] | BT_STATIC_RAND_ADDR_MASK;
if(memcmp(invalid_rand_addr_a, bd_addr, BD_ADDR_LEN) != 0
&& memcmp(invalid_rand_addr_b, bd_addr, BD_ADDR_LEN) != 0){
}{...} else {
BTC_TRACE_ERROR(" controller not support resolvable address");
if (update_wl_cb){
update_wl_cb(HCI_ERR_ILLEGAL_PARAMETER_FMT,to_add);
}{...}
return FALSE;
}{...}
}{...}
tBTM_BLE_CB *p_cb = &btm_cb.ble_ctr_cb;
if (to_add && p_cb->white_list_avail_size == 0) {
BTM_TRACE_ERROR("%s Whitelist full, unable to add device", __func__);
if (update_wl_cb){
update_wl_cb(HCI_ERR_MEMORY_FULL,to_add);
}{...}
return FALSE;
}{...}
if (to_add) {
if(!background_connection_add((bt_bdaddr_t *)bd_addr)) {
if (update_wl_cb){
update_wl_cb(HCI_SUCCESS,to_add);
}{...}
return TRUE;
}{...}
}{...} else {
if(!background_connection_remove((bt_bdaddr_t *)bd_addr)){
if (update_wl_cb){
update_wl_cb(HCI_SUCCESS,to_add);
}{...}
return TRUE;
}{...}
}{...}
if (update_wl_cb){
p_cb->update_wl_cb = update_wl_cb;
}{...}
btm_suspend_wl_activity(p_cb->wl_state);
btm_enq_wl_dev_operation(to_add, bd_addr, addr_type);
btm_wl_update_to_controller();
return TRUE;
}{ ... }
/* ... */
void btm_ble_clear_white_list (tBTM_UPDATE_WHITELIST_CBACK *update_wl_cb)
{
tBTM_BLE_CB *p_cb = &btm_cb.ble_ctr_cb;
BTM_TRACE_EVENT ("btm_ble_clear_white_list");
btsnd_hcic_ble_clear_white_list();
background_connections_clear();
if (update_wl_cb) {
p_cb->update_wl_cb = update_wl_cb;
}{...}
}{ ... }
/* ... */
void btm_ble_clear_white_list_complete(UINT8 *p_data, UINT16 evt_len)
{
tBTM_BLE_CB *p_cb = &btm_cb.ble_ctr_cb;
UINT8 status;
UNUSED(evt_len);
BTM_TRACE_EVENT ("btm_ble_clear_white_list_complete");
STREAM_TO_UINT8 (status, p_data);
if (status == HCI_SUCCESS) {
p_cb->white_list_avail_size = controller_get_interface()->get_ble_white_list_size();
}{...} else {
BTM_TRACE_ERROR ("%s failed, status 0x%x\n", __func__, status);
}{...}
if (p_cb->update_wl_cb) {
(*p_cb->update_wl_cb)(status, BTM_WHITELIST_CLEAR);
}{...}
}{ ... }
/* ... */
void btm_ble_white_list_init(UINT8 white_list_size)
{
BTM_TRACE_DEBUG("%s white_list_size = %d", __func__, white_list_size);
btm_cb.ble_ctr_cb.white_list_avail_size = white_list_size;
}{ ... }
/* ... */
void btm_ble_add_2_white_list_complete(UINT8 status)
{
BTM_TRACE_EVENT("%s status=%d", __func__, status);
tBTM_BLE_CB *p_cb = &btm_cb.ble_ctr_cb;
if (status == HCI_SUCCESS) {
--btm_cb.ble_ctr_cb.white_list_avail_size;
}{...}
if (p_cb->update_wl_cb)
{
(*p_cb->update_wl_cb)(status, BTM_WHITELIST_ADD);
}{...}
}{ ... }
/* ... */
void btm_ble_remove_from_white_list_complete(UINT8 *p, UINT16 evt_len)
{
tBTM_BLE_CB *p_cb = &btm_cb.ble_ctr_cb;
UNUSED(evt_len);
BTM_TRACE_EVENT ("%s status=%d", __func__, *p);
if (*p == HCI_SUCCESS) {
++btm_cb.ble_ctr_cb.white_list_avail_size;
}{...}
if (p_cb->update_wl_cb)
{
(*p_cb->update_wl_cb)(*p, BTM_WHITELIST_REMOVE);
}{...}
}{ ... }
/* ... */
BOOLEAN btm_ble_start_auto_conn(BOOLEAN start)
{
tBTM_BLE_CB *p_cb = &btm_cb.ble_ctr_cb;
BD_ADDR dummy_bda = {0};
BOOLEAN exec = TRUE;
UINT16 scan_int;
UINT16 scan_win;
UINT8 own_addr_type = p_cb->addr_mgnt_cb.own_addr_type;
UINT8 peer_addr_type = BLE_ADDR_PUBLIC;
if (start) {
if (p_cb->conn_state == BLE_CONN_IDLE && background_connections_pending()
&& btm_ble_topology_check(BTM_BLE_STATE_INIT)) {
p_cb->wl_state |= BTM_BLE_WL_INIT;
btm_execute_wl_dev_operation();
#if BLE_PRIVACY_SPT == TRUE
btm_ble_enable_resolving_list_for_platform(BTM_BLE_RL_INIT);
#endif
scan_int = (p_cb->scan_int == BTM_BLE_SCAN_PARAM_UNDEF) ?
BTM_BLE_SCAN_SLOW_INT_1 : p_cb->scan_int;
scan_win = (p_cb->scan_win == BTM_BLE_SCAN_PARAM_UNDEF) ?
BTM_BLE_SCAN_SLOW_WIN_1 : p_cb->scan_win;
#if BLE_PRIVACY_SPT == TRUE
if (btm_cb.ble_ctr_cb.rl_state != BTM_BLE_RL_IDLE
&& controller_get_interface()->supports_ble_privacy()) {
own_addr_type |= BLE_ADDR_TYPE_ID_BIT;
peer_addr_type |= BLE_ADDR_TYPE_ID_BIT;
}{...}
#endif/* ... */
if (!btsnd_hcic_ble_create_ll_conn (scan_int,
scan_win,
0x01,
peer_addr_type,
dummy_bda,
own_addr_type,
BTM_BLE_CONN_INT_MIN_DEF,
BTM_BLE_CONN_INT_MAX_DEF,
BTM_BLE_CONN_SLAVE_LATENCY_DEF,
BTM_BLE_CONN_TIMEOUT_DEF,
0,
0)) {
exec = FALSE;
p_cb->wl_state &= ~BTM_BLE_WL_INIT;
}{...} else {
btm_ble_set_conn_st (BLE_BG_CONN);
}{...}
}{...} else {
exec = FALSE;
}{...}
}{...} else {
if (p_cb->conn_state == BLE_BG_CONN) {
btsnd_hcic_ble_create_conn_cancel();
btm_ble_set_conn_st (BLE_CONN_CANCEL);
p_cb->wl_state &= ~BTM_BLE_WL_INIT;
}{...} else {
BTM_TRACE_DEBUG("conn_st = %d, not in auto conn state, cannot stop", p_cb->conn_state);
exec = FALSE;
}{...}
}{...}
return exec;
}{ ... }
/* ... */
BOOLEAN btm_ble_start_select_conn(BOOLEAN start, tBTM_BLE_SEL_CBACK *p_select_cback)
{
tBTM_BLE_CB *p_cb = &btm_cb.ble_ctr_cb;
UINT32 scan_int = p_cb->scan_int == BTM_BLE_SCAN_PARAM_UNDEF ? BTM_BLE_SCAN_FAST_INT : p_cb->scan_int;
UINT32 scan_win = p_cb->scan_win == BTM_BLE_SCAN_PARAM_UNDEF ? BTM_BLE_SCAN_FAST_WIN : p_cb->scan_win;
BTM_TRACE_EVENT ("%s", __func__);
if (start) {
if (!BTM_BLE_IS_SCAN_ACTIVE(p_cb->scan_activity)) {
if (p_select_cback != NULL) {
btm_cb.ble_ctr_cb.p_select_cback = p_select_cback;
}{...}
btm_execute_wl_dev_operation();
btm_update_scanner_filter_policy(SP_ADV_WL);
btm_cb.ble_ctr_cb.inq_var.scan_type = BTM_BLE_SCAN_MODE_PASS;
if (btm_cb.cmn_ble_vsc_cb.extended_scan_support == 0) {
if (!btsnd_hcic_ble_set_scan_params(BTM_BLE_SCAN_MODE_PASS,
scan_int,
scan_win,
p_cb->addr_mgnt_cb.own_addr_type,
SP_ADV_WL)) {
return FALSE;
}{...}
}{...} else {
if (!btm_ble_send_extended_scan_params(BTM_BLE_SCAN_MODE_PASS,
scan_int,
scan_win,
p_cb->addr_mgnt_cb.own_addr_type,
SP_ADV_WL)) {
return FALSE;
}{...}
}{...}
if (!btm_ble_topology_check(BTM_BLE_STATE_PASSIVE_SCAN)) {
BTM_TRACE_ERROR("peripheral device cannot initiate passive scan for a selective connection");
return FALSE;
}{...} else if (background_connections_pending()) {
#if BLE_PRIVACY_SPT == TRUE
btm_ble_enable_resolving_list_for_platform(BTM_BLE_RL_SCAN);
#endif
if (!btsnd_hcic_ble_set_scan_enable(TRUE, TRUE)) {
return FALSE;
}{...}
p_cb->scan_activity |= BTM_LE_SELECT_CONN_ACTIVE;
p_cb->wl_state |= BTM_BLE_WL_SCAN;
}{...}
}{...} else {
BTM_TRACE_ERROR("scan active, can not start selective connection procedure");
return FALSE;
}{...}
}{...} else {
p_cb->scan_activity &= ~BTM_LE_SELECT_CONN_ACTIVE;
p_cb->p_select_cback = NULL;
p_cb->wl_state &= ~BTM_BLE_WL_SCAN;
if (!BTM_BLE_IS_SCAN_ACTIVE(p_cb->scan_activity)) {
btm_ble_stop_scan();
}{...}
}{...}
return TRUE;
}{ ... }
/* ... */
void btm_ble_initiate_select_conn(BD_ADDR bda)
{
BTM_TRACE_EVENT ("btm_ble_initiate_select_conn");
if (!L2CA_ConnectFixedChnl(L2CAP_ATT_CID, bda, BLE_ADDR_UNKNOWN_TYPE, FALSE)) {
BTM_TRACE_ERROR("btm_ble_initiate_select_conn failed");
}{...}
}{ ... }
/* ... */
BOOLEAN btm_ble_suspend_bg_conn(void)
{
BTM_TRACE_EVENT ("%s\n", __func__);
if (btm_cb.ble_ctr_cb.bg_conn_type == BTM_BLE_CONN_AUTO) {
return btm_ble_start_auto_conn(FALSE);
}{...} else if (btm_cb.ble_ctr_cb.bg_conn_type == BTM_BLE_CONN_SELECTIVE) {
return btm_ble_start_select_conn(FALSE, NULL);
}{...}
return FALSE;
}{ ... }
/* ... */
static void btm_suspend_wl_activity(tBTM_BLE_WL_STATE wl_state)
{
if (wl_state & BTM_BLE_WL_INIT) {
btm_ble_start_auto_conn(FALSE);
}{...}
if (wl_state & BTM_BLE_WL_SCAN) {
btm_ble_start_select_conn(FALSE, NULL);
}{...}
if (wl_state & BTM_BLE_WL_ADV) {
btm_ble_stop_adv();
}{...}
}{ ... }
/* ... */
void btm_resume_wl_activity(tBTM_BLE_WL_STATE wl_state)
{
btm_ble_resume_bg_conn();
if (wl_state & BTM_BLE_WL_ADV) {
btm_ble_start_adv();
}{...}
}{ ... }
/* ... */
static void btm_wl_update_to_controller(void)
{
/* ... */
btm_execute_wl_dev_operation();
}{ ... }
/* ... */
BOOLEAN btm_ble_resume_bg_conn(void)
{
tBTM_BLE_CB *p_cb = &btm_cb.ble_ctr_cb;
BOOLEAN ret = FALSE;
if (p_cb->bg_conn_type != BTM_BLE_CONN_NONE) {
if (p_cb->bg_conn_type == BTM_BLE_CONN_AUTO) {
ret = btm_ble_start_auto_conn(TRUE);
}{...}
if (p_cb->bg_conn_type == BTM_BLE_CONN_SELECTIVE) {
ret = btm_ble_start_select_conn(TRUE, btm_cb.ble_ctr_cb.p_select_cback);
}{...}
}{...}
return ret;
}{ ... }
/* ... */
tBTM_BLE_CONN_ST btm_ble_get_conn_st(void)
{
return btm_cb.ble_ctr_cb.conn_state;
}{ ... }
/* ... */
void btm_ble_set_conn_st(tBTM_BLE_CONN_ST new_st)
{
btm_cb.ble_ctr_cb.conn_state = new_st;
if (new_st == BLE_BG_CONN || new_st == BLE_DIR_CONN) {
btm_ble_set_topology_mask(BTM_BLE_STATE_INIT_BIT);
}{...} else {
btm_ble_clear_topology_mask(BTM_BLE_STATE_INIT_BIT);
}{...}
}{ ... }
/* ... */
void btm_ble_enqueue_direct_conn_req(void *p_param)
{
tBTM_BLE_CONN_REQ *p = (tBTM_BLE_CONN_REQ *)osi_malloc(sizeof(tBTM_BLE_CONN_REQ));
p->p_param = p_param;
fixed_queue_enqueue(btm_cb.ble_ctr_cb.conn_pending_q, p, FIXED_QUEUE_MAX_TIMEOUT);
}{ ... }
/* ... */
BOOLEAN btm_send_pending_direct_conn(void)
{
tBTM_BLE_CONN_REQ *p_req;
BOOLEAN rt = FALSE;
p_req = (tBTM_BLE_CONN_REQ*)fixed_queue_dequeue(btm_cb.ble_ctr_cb.conn_pending_q, 0);
if (p_req != NULL) {
rt = l2cble_init_direct_conn((tL2C_LCB *)(p_req->p_param));
osi_free((void *)p_req);
}{...}
return rt;
}{ ... }
/* ... */#endif