1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
141
142
143
154
155
156
161
162
163
166
167
168
169
170
171
177
183
184
185
186
191
192
193
194
195
200
201
202
213
214
215
219
220
225
226
227
228
229
230
231
232
235
236
237
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
307
308
309
310
313
314
315
316
317
318
321
322
323
324
325
329
330
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
406
407
408
409
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
443
444
448
449
453
454
455
456
459
460
461
462
463
464
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
507
508
511
512
513
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
541
542
543
544
545
546
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
581
582
583
584
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
621
622
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
803
804
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
832
833
834
838
839
840
841
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
875
876
877
878
884
885
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
923
924
925
926
927
928
933
934
935
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
962
963
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
990
991
992
993
994
995
999
1000
1001
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1029
1030
1031
1032
1033
1034
1035
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1159
1160
1161
1162
1165
1166
1167
1168
1169
1170
1171
1176
1177
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1208
1209
1210
1211
/* ... */
#include "common/bt_target.h"
#include "common/bt_defs.h"
#include "stack/btu.h"
#include "gap_int.h"
#include "stack/l2cdefs.h"
#include "l2c_int.h"
#include <string.h>
#include "osi/mutex.h"
#include "osi/allocator.h"9 includes
#if GAP_CONN_INCLUDED == TRUE
#include "btm_int.h"
static void gap_connect_ind (BD_ADDR bd_addr, UINT16 l2cap_cid, UINT16 psm, UINT8 l2cap_id);
static void gap_connect_cfm (UINT16 l2cap_cid, UINT16 result);
static void gap_config_ind (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg);
static void gap_config_cfm (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg);
static void gap_disconnect_ind (UINT16 l2cap_cid, BOOLEAN ack_needed);
static void gap_data_ind (UINT16 l2cap_cid, BT_HDR *p_msg);
static void gap_congestion_ind (UINT16 lcid, BOOLEAN is_congested);
static tGAP_CCB *gap_find_ccb_by_cid (UINT16 cid);
static tGAP_CCB *gap_find_ccb_by_handle (UINT16 handle);
static tGAP_CCB *gap_allocate_ccb (void);
static void gap_release_ccb (tGAP_CCB *p_ccb);
/* ... */
void gap_conn_init (void)
{
#if ((defined AMP_INCLUDED) && (AMP_INCLUDED == TRUE))
gap_cb.conn.reg_info.pAMP_ConnectInd_Cb = gap_connect_ind;
gap_cb.conn.reg_info.pAMP_ConnectCfm_Cb = gap_connect_cfm;
gap_cb.conn.reg_info.pAMP_ConnectPnd_Cb = NULL;
gap_cb.conn.reg_info.pAMP_ConfigInd_Cb = gap_config_ind;
gap_cb.conn.reg_info.pAMP_ConfigCfm_Cb = gap_config_cfm;
gap_cb.conn.reg_info.pAMP_DisconnectInd_Cb = gap_disconnect_ind;
gap_cb.conn.reg_info.pAMP_DisconnectCfm_Cb = NULL;
gap_cb.conn.reg_info.pAMP_QoSViolationInd_Cb = NULL;
gap_cb.conn.reg_info.pAMP_DataInd_Cb = gap_data_ind;
gap_cb.conn.reg_info.pAMP_CongestionStatus_Cb = gap_congestion_ind;
gap_cb.conn.reg_info.pAMP_TxComplete_Cb = NULL;
gap_cb.conn.reg_info.pAMP_MoveInd_Cb = NULL;
gap_cb.conn.reg_info.pAMP_MoveRsp_Cb = NULL;
gap_cb.conn.reg_info.pAMP_MoveCfm_Cb = NULL;
gap_cb.conn.reg_info.pAMP_MoveCfmRsp_Cb = NULL;
/* ... */
#else
gap_cb.conn.reg_info.pL2CA_ConnectInd_Cb = gap_connect_ind;
gap_cb.conn.reg_info.pL2CA_ConnectCfm_Cb = gap_connect_cfm;
gap_cb.conn.reg_info.pL2CA_ConnectPnd_Cb = NULL;
gap_cb.conn.reg_info.pL2CA_ConfigInd_Cb = gap_config_ind;
gap_cb.conn.reg_info.pL2CA_ConfigCfm_Cb = gap_config_cfm;
gap_cb.conn.reg_info.pL2CA_DisconnectInd_Cb = gap_disconnect_ind;
gap_cb.conn.reg_info.pL2CA_DisconnectCfm_Cb = NULL;
gap_cb.conn.reg_info.pL2CA_QoSViolationInd_Cb = NULL;
gap_cb.conn.reg_info.pL2CA_DataInd_Cb = gap_data_ind;
gap_cb.conn.reg_info.pL2CA_CongestionStatus_Cb = gap_congestion_ind;
gap_cb.conn.reg_info.pL2CA_TxComplete_Cb = NULL;/* ... */
#endif
}{...}
/* ... */
UINT16 GAP_ConnOpen (const char *p_serv_name, UINT8 service_id, BOOLEAN is_server,
BD_ADDR p_rem_bda, UINT16 psm, tL2CAP_CFG_INFO *p_cfg,
tL2CAP_ERTM_INFO *ertm_info, UINT16 security, UINT8 chan_mode_mask,
tGAP_CONN_CALLBACK *p_cb)
{
tGAP_CCB *p_ccb;
UINT16 cid;
GAP_TRACE_EVENT ("GAP_CONN - Open Request");
if ((p_ccb = gap_allocate_ccb()) == NULL) {
return (GAP_INVALID_HANDLE);
}{...}
if (p_rem_bda) {
if (memcmp (p_rem_bda, BT_BD_ANY, BD_ADDR_LEN)) {
p_ccb->rem_addr_specified = TRUE;
}{...}
memcpy (&p_ccb->rem_dev_address[0], p_rem_bda, BD_ADDR_LEN);
}{...} else if (!is_server) {
return (GAP_INVALID_HANDLE);
}{...}
if (!p_ccb->rem_addr_specified && !is_server) {
gap_release_ccb (p_ccb);
GAP_TRACE_ERROR ("GAP ERROR: Client must specify a remote BD ADDR to connect to!");
return (GAP_INVALID_HANDLE);
}{...}
if (p_cfg) {
p_ccb->cfg = *p_cfg;
}{...}
p_ccb->p_callback = p_cb;
#if ((defined AMP_INCLUDED) && (AMP_INCLUDED == TRUE))
if (!is_server) {
gap_cb.conn.reg_info.pAMP_ConnectInd_Cb = NULL;
}{...} else {
gap_cb.conn.reg_info.pAMP_ConnectInd_Cb = gap_connect_ind;
}{...}
/* ... */#else
if (!is_server) {
gap_cb.conn.reg_info.pL2CA_ConnectInd_Cb = NULL;
}{...} else {
gap_cb.conn.reg_info.pL2CA_ConnectInd_Cb = gap_connect_ind;
}{...}
/* ... */#endif
if ((p_ccb->psm = L2CA_REGISTER (psm, &gap_cb.conn.reg_info,
AMP_AUTOSWITCH_ALLOWED | AMP_USE_AMP_IF_POSSIBLE)) == 0) {
GAP_TRACE_ERROR ("GAP_ConnOpen: Failure registering PSM 0x%04x", psm);
gap_release_ccb (p_ccb);
return (GAP_INVALID_HANDLE);
}{...}
p_ccb->service_id = service_id;
if (!BTM_SetSecurityLevel ((UINT8)!is_server, p_serv_name,
p_ccb->service_id, security, p_ccb->psm, 0, 0)) {
GAP_TRACE_ERROR ("GAP_CONN - Security Error");
gap_release_ccb (p_ccb);
return (GAP_INVALID_HANDLE);
}{...}
if ( p_ccb->cfg.fcr_present ) {
if (ertm_info == NULL) {
p_ccb->ertm_info.preferred_mode = p_ccb->cfg.fcr.mode;
p_ccb->ertm_info.user_rx_buf_size = GAP_DATA_BUF_SIZE;
p_ccb->ertm_info.user_tx_buf_size = GAP_DATA_BUF_SIZE;
p_ccb->ertm_info.fcr_rx_buf_size = L2CAP_INVALID_ERM_BUF_SIZE;
p_ccb->ertm_info.fcr_tx_buf_size = L2CAP_INVALID_ERM_BUF_SIZE;
}{...} else {
p_ccb->ertm_info = *ertm_info;
}{...}
}{...}
if (ertm_info != NULL) {
p_ccb->ertm_info.allowed_modes =
(chan_mode_mask) ? chan_mode_mask : (UINT8)L2CAP_FCR_CHAN_OPT_BASIC;
}{...}
if (is_server) {
p_ccb->con_flags |= GAP_CCB_FLAGS_SEC_DONE;
p_ccb->con_state = GAP_CCB_STATE_LISTENING;
return (p_ccb->gap_handle);
}{...} else {
p_ccb->con_flags = GAP_CCB_FLAGS_IS_ORIG;
p_ccb->con_state = GAP_CCB_STATE_CONN_SETUP;
if ((security & (BTM_SEC_OUT_AUTHORIZE | BTM_SEC_OUT_AUTHENTICATE | BTM_SEC_OUT_ENCRYPT) ) == 0) {
p_ccb->con_flags |= GAP_CCB_FLAGS_SEC_DONE;
}{...}
if (p_rem_bda && ((cid = L2CA_CONNECT_REQ (p_ccb->psm, p_rem_bda, &p_ccb->ertm_info, &bt_uuid)) != 0)) {
p_ccb->connection_id = cid;
return (p_ccb->gap_handle);
}{...} else {
gap_release_ccb (p_ccb);
return (GAP_INVALID_HANDLE);
}{...}
}{...}
}{...}
/* ... */
UINT16 GAP_ConnClose (UINT16 gap_handle)
{
tGAP_CCB *p_ccb = gap_find_ccb_by_handle (gap_handle);
GAP_TRACE_EVENT ("GAP_CONN - close handle: 0x%x", gap_handle);
if (p_ccb) {
if (p_ccb->con_state != GAP_CCB_STATE_LISTENING) {
L2CA_DISCONNECT_REQ (p_ccb->connection_id);
}{...}
gap_release_ccb (p_ccb);
return (BT_PASS);
}{...}
return (GAP_ERR_BAD_HANDLE);
}{...}
/* ... */
UINT16 GAP_ConnReadData (UINT16 gap_handle, UINT8 *p_data, UINT16 max_len, UINT16 *p_len)
{
tGAP_CCB *p_ccb = gap_find_ccb_by_handle (gap_handle);
UINT16 copy_len;
if (!p_ccb) {
return (GAP_ERR_BAD_HANDLE);
}{...}
*p_len = 0;
if (fixed_queue_is_empty(p_ccb->rx_queue)) {
return (GAP_NO_DATA_AVAIL);
}{...}
osi_mutex_global_lock();
while (max_len) {
BT_HDR *p_buf = fixed_queue_try_peek_first(p_ccb->rx_queue);
if (p_buf == NULL) {
break;
}{...}
copy_len = (p_buf->len > max_len)?max_len:p_buf->len;
max_len -= copy_len;
*p_len += copy_len;
if (p_data) {
memcpy (p_data, (UINT8 *)(p_buf + 1) + p_buf->offset, copy_len);
p_data += copy_len;
}{...}
if (p_buf->len > copy_len) {
p_buf->offset += copy_len;
p_buf->len -= copy_len;
break;
}{...}
osi_free(fixed_queue_dequeue(p_ccb->rx_queue, 0));
}{...}
p_ccb->rx_queue_size -= *p_len;
osi_mutex_global_unlock();
GAP_TRACE_EVENT ("GAP_ConnReadData - rx_queue_size left=%d, *p_len=%d",
p_ccb->rx_queue_size, *p_len);
return (BT_PASS);
}{...}
/* ... */
int GAP_GetRxQueueCnt (UINT16 handle, UINT32 *p_rx_queue_count)
{
tGAP_CCB *p_ccb;
int rc = BT_PASS;
if (handle < GAP_MAX_CONNECTIONS) {
p_ccb = &gap_cb.conn.ccb_pool[handle];
if (p_ccb->con_state == GAP_CCB_STATE_CONNECTED) {
*p_rx_queue_count = p_ccb->rx_queue_size;
}{...} else {
rc = GAP_INVALID_HANDLE;
}{...}
}{...} else {
rc = GAP_INVALID_HANDLE;
}{...}
GAP_TRACE_EVENT ("GAP_GetRxQueueCnt - rc = 0x%04x, rx_queue_count=%d",
rc , *p_rx_queue_count);
return (rc);
}{...}
/* ... */
UINT16 GAP_ConnBTRead (UINT16 gap_handle, BT_HDR **pp_buf)
{
tGAP_CCB *p_ccb = gap_find_ccb_by_handle (gap_handle);
BT_HDR *p_buf;
if (!p_ccb) {
return (GAP_ERR_BAD_HANDLE);
}{...}
p_buf = (BT_HDR *)fixed_queue_dequeue(p_ccb->rx_queue, 0);
if (p_buf) {
*pp_buf = p_buf;
p_ccb->rx_queue_size -= p_buf->len;
return (BT_PASS);
}{...} else {
*pp_buf = NULL;
return (GAP_NO_DATA_AVAIL);
}{...}
}{...}
/* ... */
UINT16 GAP_ConnBTWrite (UINT16 gap_handle, BT_HDR *p_buf)
{
tGAP_CCB *p_ccb = gap_find_ccb_by_handle (gap_handle);
if (!p_ccb) {
osi_free (p_buf);
return (GAP_ERR_BAD_HANDLE);
}{...}
if (p_ccb->con_state != GAP_CCB_STATE_CONNECTED) {
osi_free (p_buf);
return (GAP_ERR_BAD_STATE);
}{...}
if (p_buf->offset < L2CAP_MIN_OFFSET) {
osi_free (p_buf);
return (GAP_ERR_BUF_OFFSET);
}{...}
fixed_queue_enqueue(p_ccb->tx_queue, p_buf, FIXED_QUEUE_MAX_TIMEOUT);
if (p_ccb->is_congested) {
return (BT_PASS);
}{...}
#if (GAP_CONN_POST_EVT_INCLUDED == TRUE)
gap_send_event (gap_handle);
#else
while ((p_buf = (BT_HDR *)fixed_queue_dequeue(p_ccb->tx_queue, 0)) != NULL) {
UINT8 status = L2CA_DATA_WRITE (p_ccb->connection_id, p_buf);
if (status == L2CAP_DW_CONGESTED) {
p_ccb->is_congested = TRUE;
break;
}{...} else if (status != L2CAP_DW_SUCCESS) {
return (GAP_ERR_BAD_STATE);
}{...}
}{...}
/* ... */#endif
return (BT_PASS);
}{...}
/* ... */
UINT16 GAP_ConnWriteData (UINT16 gap_handle, UINT8 *p_data, UINT16 max_len, UINT16 *p_len)
{
tGAP_CCB *p_ccb = gap_find_ccb_by_handle (gap_handle);
BT_HDR *p_buf;
*p_len = 0;
if (!p_ccb) {
return (GAP_ERR_BAD_HANDLE);
}{...}
if (p_ccb->con_state != GAP_CCB_STATE_CONNECTED) {
return (GAP_ERR_BAD_STATE);
}{...}
while (max_len) {
if (p_ccb->cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) {
if ((p_buf = (BT_HDR *)osi_malloc(L2CAP_FCR_ERTM_BUF_SIZE)) == NULL) {
return (GAP_ERR_CONGESTED);
}{...}
}{...} else {
if ((p_buf = (BT_HDR *)osi_malloc(GAP_DATA_BUF_SIZE)) == NULL) {
return (GAP_ERR_CONGESTED);
}{...}
}{...}
p_buf->offset = L2CAP_MIN_OFFSET;
p_buf->len = (p_ccb->rem_mtu_size < max_len) ? p_ccb->rem_mtu_size : max_len;
p_buf->event = BT_EVT_TO_BTU_SP_DATA;
memcpy ((UINT8 *)(p_buf + 1) + p_buf->offset, p_data, p_buf->len);
*p_len += p_buf->len;
max_len -= p_buf->len;
p_data += p_buf->len;
GAP_TRACE_EVENT ("GAP_WriteData %d bytes", p_buf->len);
fixed_queue_enqueue(p_ccb->tx_queue, p_buf, FIXED_QUEUE_MAX_TIMEOUT);
}{...}
if (p_ccb->is_congested) {
return (BT_PASS);
}{...}
#if (GAP_CONN_POST_EVT_INCLUDED == TRUE)
gap_send_event (gap_handle);
#else
while ((p_buf = (BT_HDR *)fixed_queue_dequeue(p_ccb->tx_queue, 0)) != NULL)
{
UINT8 status = L2CA_DATA_WRITE (p_ccb->connection_id, p_buf);
if (status == L2CAP_DW_CONGESTED) {
p_ccb->is_congested = TRUE;
break;
}{...} else if (status != L2CAP_DW_SUCCESS) {
return (GAP_ERR_BAD_STATE);
}{...}
}{...}
/* ... */#endif
return (BT_PASS);
}{...}
/* ... */
UINT16 GAP_ConnReconfig (UINT16 gap_handle, tL2CAP_CFG_INFO *p_cfg)
{
tGAP_CCB *p_ccb = gap_find_ccb_by_handle (gap_handle);
if (!p_ccb) {
return (GAP_ERR_BAD_HANDLE);
}{...}
p_ccb->cfg = *p_cfg;
if (p_ccb->con_state == GAP_CCB_STATE_CONNECTED) {
L2CA_CONFIG_REQ (p_ccb->connection_id, p_cfg);
}{...}
return (BT_PASS);
}{...}
/* ... */
UINT16 GAP_ConnSetIdleTimeout (UINT16 gap_handle, UINT16 timeout)
{
tGAP_CCB *p_ccb;
if ((p_ccb = gap_find_ccb_by_handle (gap_handle)) == NULL) {
return (GAP_ERR_BAD_HANDLE);
}{...}
if (L2CA_SetIdleTimeout (p_ccb->connection_id, timeout, FALSE)) {
return (BT_PASS);
}{...} else {
return (GAP_ERR_BAD_HANDLE);
}{...}
}{...}
/* ... */
UINT8 *GAP_ConnGetRemoteAddr (UINT16 gap_handle)
{
tGAP_CCB *p_ccb = gap_find_ccb_by_handle (gap_handle);
GAP_TRACE_EVENT ("GAP_ConnGetRemoteAddr gap_handle = %d", gap_handle);
if ((p_ccb) && (p_ccb->con_state > GAP_CCB_STATE_LISTENING)) {
GAP_TRACE_EVENT("GAP_ConnGetRemoteAddr bda :0x%02x:0x%02x:0x%02x:0x%02x:0x%02x:0x%02x\n", \
p_ccb->rem_dev_address[0], p_ccb->rem_dev_address[1], p_ccb->rem_dev_address[2],
p_ccb->rem_dev_address[3], p_ccb->rem_dev_address[4], p_ccb->rem_dev_address[5]);
return (p_ccb->rem_dev_address);
}{...} else {
GAP_TRACE_EVENT ("GAP_ConnGetRemoteAddr return Error ");
return (NULL);
}{...}
}{...}
/* ... */
UINT16 GAP_ConnGetRemMtuSize (UINT16 gap_handle)
{
tGAP_CCB *p_ccb;
if ((p_ccb = gap_find_ccb_by_handle (gap_handle)) == NULL) {
return (0);
}{...}
return (p_ccb->rem_mtu_size);
}{...}
/* ... */
UINT16 GAP_ConnGetL2CAPCid (UINT16 gap_handle)
{
tGAP_CCB *p_ccb;
if ((p_ccb = gap_find_ccb_by_handle (gap_handle)) == NULL) {
return (0);
}{...}
return (p_ccb->connection_id);
}{...}
/* ... */
static void gap_connect_ind (BD_ADDR bd_addr, UINT16 l2cap_cid, UINT16 psm, UINT8 l2cap_id)
{
UINT16 xx;
tGAP_CCB *p_ccb;
for (xx = 0, p_ccb = gap_cb.conn.ccb_pool; xx < GAP_MAX_CONNECTIONS; xx++, p_ccb++) {
if ((p_ccb->con_state == GAP_CCB_STATE_LISTENING)
&& (p_ccb->psm == psm)
&& ((p_ccb->rem_addr_specified == FALSE)
|| (!memcmp (bd_addr, p_ccb->rem_dev_address, BD_ADDR_LEN)))) {
break;
}{...}
}{...}
if (xx == GAP_MAX_CONNECTIONS) {
GAP_TRACE_WARNING("*******");
GAP_TRACE_WARNING("WARNING: GAP Conn Indication for Unexpected Bd Addr...Disconnecting");
GAP_TRACE_WARNING("*******");
L2CA_DISCONNECT_REQ (l2cap_cid);
return;
}{...}
p_ccb->con_state = GAP_CCB_STATE_CFG_SETUP;
memcpy (&p_ccb->rem_dev_address[0], bd_addr, BD_ADDR_LEN);
p_ccb->connection_id = l2cap_cid;
L2CA_CONNECT_RSP (bd_addr, l2cap_id, l2cap_cid, L2CAP_CONN_OK, L2CAP_CONN_OK, &p_ccb->ertm_info, &bt_uuid);
GAP_TRACE_EVENT("GAP_CONN - Rcvd L2CAP conn ind, CID: 0x%x", p_ccb->connection_id);
L2CA_CONFIG_REQ (l2cap_cid, &p_ccb->cfg);
}{...}
/* ... */
static void gap_checks_con_flags (tGAP_CCB *p_ccb)
{
GAP_TRACE_EVENT ("gap_checks_con_flags conn_flags:0x%x, ", p_ccb->con_flags);
if ((p_ccb->con_flags & GAP_CCB_FLAGS_CONN_DONE) == GAP_CCB_FLAGS_CONN_DONE) {
p_ccb->con_state = GAP_CCB_STATE_CONNECTED;
p_ccb->p_callback (p_ccb->gap_handle, GAP_EVT_CONN_OPENED);
}{...}
}{...}
/* ... */
static void gap_sec_check_complete (BD_ADDR bd_addr, tBT_TRANSPORT transport, void *p_ref_data, UINT8 res)
{
tGAP_CCB *p_ccb = (tGAP_CCB *)p_ref_data;
UNUSED(bd_addr);
UNUSED (transport);
GAP_TRACE_EVENT ("gap_sec_check_complete conn_state:%d, conn_flags:0x%x, status:%d",
p_ccb->con_state, p_ccb->con_flags, res);
if (p_ccb->con_state == GAP_CCB_STATE_IDLE) {
return;
}{...}
if (res == BTM_SUCCESS) {
p_ccb->con_flags |= GAP_CCB_FLAGS_SEC_DONE;
gap_checks_con_flags (p_ccb);
}{...} else {
L2CA_DISCONNECT_REQ (p_ccb->connection_id);
}{...}
}{...}
/* ... */
static void gap_connect_cfm (UINT16 l2cap_cid, UINT16 result)
{
tGAP_CCB *p_ccb;
if ((p_ccb = gap_find_ccb_by_cid (l2cap_cid)) == NULL) {
return;
}{...}
if ( (p_ccb->con_flags & GAP_CCB_FLAGS_SEC_DONE) == 0) {
btm_sec_mx_access_request (p_ccb->rem_dev_address, p_ccb->psm, TRUE,
0, 0, &gap_sec_check_complete, p_ccb);
}{...}
if ((result == L2CAP_CONN_OK) && (p_ccb->con_state == GAP_CCB_STATE_CONN_SETUP)) {
p_ccb->con_state = GAP_CCB_STATE_CFG_SETUP;
L2CA_CONFIG_REQ (l2cap_cid, &p_ccb->cfg);
}{...} else {
if (p_ccb->p_callback) {
(*p_ccb->p_callback) (p_ccb->gap_handle, GAP_EVT_CONN_CLOSED);
}{...}
gap_release_ccb (p_ccb);
}{...}
}{...}
/* ... */
static void gap_config_ind (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg)
{
tGAP_CCB *p_ccb;
UINT16 local_mtu_size;
if ((p_ccb = gap_find_ccb_by_cid (l2cap_cid)) == NULL) {
return;
}{...}
if (p_ccb->cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) {
local_mtu_size = p_ccb->ertm_info.user_tx_buf_size
- sizeof(BT_HDR) - L2CAP_MIN_OFFSET;
}{...} else {
local_mtu_size = L2CAP_MTU_SIZE;
}{...}
if ((!p_cfg->mtu_present) || (p_cfg->mtu > local_mtu_size)) {
p_ccb->rem_mtu_size = local_mtu_size;
}{...} else {
p_ccb->rem_mtu_size = p_cfg->mtu;
}{...}
p_cfg->flush_to_present = FALSE;
p_cfg->mtu_present = FALSE;
p_cfg->result = L2CAP_CFG_OK;
p_cfg->fcs_present = FALSE;
L2CA_CONFIG_RSP (l2cap_cid, p_cfg);
p_ccb->con_flags |= GAP_CCB_FLAGS_HIS_CFG_DONE;
gap_checks_con_flags (p_ccb);
}{...}
/* ... */
static void gap_config_cfm (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg)
{
tGAP_CCB *p_ccb;
if ((p_ccb = gap_find_ccb_by_cid (l2cap_cid)) == NULL) {
return;
}{...}
if (p_cfg->result == L2CAP_CFG_OK) {
p_ccb->con_flags |= GAP_CCB_FLAGS_MY_CFG_DONE;
if (p_ccb->cfg.fcr_present) {
p_ccb->cfg.fcr.mode = p_cfg->fcr.mode;
}{...} else {
p_ccb->cfg.fcr.mode = L2CAP_FCR_BASIC_MODE;
}{...}
gap_checks_con_flags (p_ccb);
}{...} else {
p_ccb->p_callback (p_ccb->gap_handle, GAP_EVT_CONN_CLOSED);
gap_release_ccb (p_ccb);
}{...}
}{...}
/* ... */
static void gap_disconnect_ind (UINT16 l2cap_cid, BOOLEAN ack_needed)
{
tGAP_CCB *p_ccb;
GAP_TRACE_EVENT ("GAP_CONN - Rcvd L2CAP disc, CID: 0x%x", l2cap_cid);
if ((p_ccb = gap_find_ccb_by_cid (l2cap_cid)) == NULL) {
return;
}{...}
if (ack_needed) {
L2CA_DISCONNECT_RSP (l2cap_cid);
}{...}
p_ccb->p_callback (p_ccb->gap_handle, GAP_EVT_CONN_CLOSED);
gap_release_ccb (p_ccb);
}{...}
/* ... */
static void gap_data_ind (UINT16 l2cap_cid, BT_HDR *p_msg)
{
tGAP_CCB *p_ccb;
if ((p_ccb = gap_find_ccb_by_cid (l2cap_cid)) == NULL) {
osi_free (p_msg);
return;
}{...}
if (p_ccb->con_state == GAP_CCB_STATE_CONNECTED) {
fixed_queue_enqueue(p_ccb->rx_queue, p_msg, FIXED_QUEUE_MAX_TIMEOUT);
p_ccb->rx_queue_size += p_msg->len;
/* ... */
p_ccb->p_callback (p_ccb->gap_handle, GAP_EVT_CONN_DATA_AVAIL);
}{...} else {
osi_free (p_msg);
}{...}
}{...}
/* ... */
static void gap_congestion_ind (UINT16 lcid, BOOLEAN is_congested)
{
tGAP_CCB *p_ccb;
UINT16 event;
BT_HDR *p_buf;
UINT8 status;
GAP_TRACE_EVENT ("GAP_CONN - Rcvd L2CAP Is Congested (%d), CID: 0x%x",
is_congested, lcid);
if ((p_ccb = gap_find_ccb_by_cid (lcid)) == NULL) {
return;
}{...}
p_ccb->is_congested = is_congested;
event = (is_congested) ? GAP_EVT_CONN_CONGESTED : GAP_EVT_CONN_UNCONGESTED;
p_ccb->p_callback (p_ccb->gap_handle, event);
if (!is_congested) {
while ((p_buf = (BT_HDR *)fixed_queue_dequeue(p_ccb->tx_queue, 0)) != NULL) {
status = L2CA_DATA_WRITE (p_ccb->connection_id, p_buf);
if (status == L2CAP_DW_CONGESTED) {
p_ccb->is_congested = TRUE;
break;
}{...} else if (status != L2CAP_DW_SUCCESS) {
break;
}{...}
}{...}
}{...}
}{...}
/* ... */
static tGAP_CCB *gap_find_ccb_by_cid (UINT16 cid)
{
UINT16 xx;
tGAP_CCB *p_ccb;
for (xx = 0, p_ccb = gap_cb.conn.ccb_pool; xx < GAP_MAX_CONNECTIONS; xx++, p_ccb++) {
if ((p_ccb->con_state != GAP_CCB_STATE_IDLE) && (p_ccb->connection_id == cid)) {
return (p_ccb);
}{...}
}{...}
return (NULL);
}{...}
/* ... */
static tGAP_CCB *gap_find_ccb_by_handle (UINT16 handle)
{
tGAP_CCB *p_ccb;
if (handle < GAP_MAX_CONNECTIONS) {
p_ccb = &gap_cb.conn.ccb_pool[handle];
if (p_ccb->con_state != GAP_CCB_STATE_IDLE) {
return (p_ccb);
}{...}
}{...}
return (NULL);
}{...}
/* ... */
static tGAP_CCB *gap_allocate_ccb (void)
{
UINT16 xx;
tGAP_CCB *p_ccb;
for (xx = 0, p_ccb = gap_cb.conn.ccb_pool; xx < GAP_MAX_CONNECTIONS; xx++, p_ccb++) {
if (p_ccb->con_state == GAP_CCB_STATE_IDLE) {
memset (p_ccb, 0, sizeof (tGAP_CCB));
p_ccb->tx_queue = fixed_queue_new(QUEUE_SIZE_MAX);
p_ccb->rx_queue = fixed_queue_new(QUEUE_SIZE_MAX);
p_ccb->gap_handle = xx;
p_ccb->rem_mtu_size = L2CAP_MTU_SIZE;
return (p_ccb);
}{...}
}{...}
return (NULL);
}{...}
/* ... */
static void gap_release_ccb (tGAP_CCB *p_ccb)
{
UINT16 xx;
UINT16 psm = p_ccb->psm;
UINT8 service_id = p_ccb->service_id;
p_ccb->rx_queue_size = 0;
while (!fixed_queue_is_empty(p_ccb->rx_queue)) {
osi_free(fixed_queue_dequeue(p_ccb->rx_queue, 0));
}{...}
fixed_queue_free(p_ccb->rx_queue, NULL);
p_ccb->rx_queue = NULL;
while (!fixed_queue_is_empty(p_ccb->tx_queue)) {
osi_free(fixed_queue_dequeue(p_ccb->tx_queue, 0));
}{...}
fixed_queue_free(p_ccb->tx_queue, NULL);
p_ccb->tx_queue = NULL;
p_ccb->con_state = GAP_CCB_STATE_IDLE;
for (xx = 0, p_ccb = gap_cb.conn.ccb_pool; xx < GAP_MAX_CONNECTIONS; xx++, p_ccb++) {
if ((p_ccb->con_state != GAP_CCB_STATE_IDLE) && (p_ccb->psm == psm)) {
return;
}{...}
}{...}
#if (SDP_INCLUDED == TRUE)
BTM_SecClrService(service_id);/* ... */
#endif
L2CA_DEREGISTER (psm);
}{...}
#if (GAP_CONN_POST_EVT_INCLUDED == TRUE)
/* ... */
void gap_send_event (UINT16 gap_handle)
{
BT_HDR *p_msg;
if ((p_msg = (BT_HDR *)osi_malloc(BT_HDR_SIZE)) != NULL) {
p_msg->event = BT_EVT_TO_GAP_MSG;
p_msg->len = 0;
p_msg->offset = 0;
p_msg->layer_specific = gap_handle;
GKI_send_msg(BTU_TASK, BTU_HCI_RCV_MBOX, p_msg);
}{...} else {
GAP_TRACE_ERROR("Unable to allocate message buffer for event.");
}{...}
}{...}
/* ... */
#endif ...
/* ... */#endif