summaryrefslogtreecommitdiff
path: root/stack/gatt/eatt_utils.cc
blob: 919d615e9cda28599abe182523d9abdb928769d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
55
56
57
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
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
269
270
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
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
366
367
368
369
370
371
372
373
374
375
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
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
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
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
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
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
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
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
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
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
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
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
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
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
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
/*
 * Copyright (c) 2020, The Linux Foundation. All rights reserved.

 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *     * Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above
 *       copyright notice, this list of conditions and the following
 *       disclaimer in the documentation and/or other materials provided
 *       with the distribution.
 *     * Neither the name of The Linux Foundation nor the names of its
 *       contributors may be used to endorse or promote products derived
 *       from this software without specific prior written permission.

 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

/******************************************************************************
 *
 *  This file contains EATT utility functions
 *
 *  When EATT is found to be supported on both local and remote devices,
 *  these utility functions will be used to process GATT operations on
 *  EATT and ATT channels.
 *
 ******************************************************************************/
#include "bt_target.h"
#include "bt_utils.h"
#include "osi/include/osi.h"

#include <string.h>
#include "bt_common.h"
#include "stdio.h"

#include "btm_int.h"
#include "connection_manager.h"
#include "gatt_api.h"
#include "gatt_int.h"
#include "gattdefs.h"
#include "l2cdefs.h"
#include "sdp_api.h"
#include "stack/gatt/connection_manager.h"
#include "stack/gatt/eatt_int.h"
#include "stack/gatt/gatt_int.h"

#include <vector>
#include <algorithm>

using base::StringPrintf;
using bluetooth::Uuid;

/*******************************************************************************
 *
 * Function         gatt_eatt_bcb_alloc
 *
 * Description      The function allocates a EATT bearer control block
 *
 * Returns          NULL if not found. Otherwise pointer to the EATT bearer control
 *                  block.
 *
 ******************************************************************************/
tGATT_EBCB* gatt_eatt_bcb_alloc(tGATT_TCB* p_tcb, uint16_t lcid, bool create_in_prg,
                                bool is_remote_initiated) {
  uint8_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;
  std::string conf_timer = "gatt.conf_timer";
  std::string ind_ack_timer = "gatt.ind_ack_timer";

  VLOG(1) << __func__ << " lcid:" << +lcid;
  p_eatt_bcb = gatt_find_eatt_bcb_by_cid(p_tcb, lcid);
  if (p_eatt_bcb) {
    VLOG(1) << __func__ << " p_eatt_bcb already available for lcid: " << +lcid;
    return p_eatt_bcb;
  }

  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (!gatt_cb.eatt_bcb[i].in_use) {
      p_eatt_bcb = &gatt_cb.eatt_bcb[i];

      *p_eatt_bcb = tGATT_EBCB();

      p_eatt_bcb->in_use = true;
      p_eatt_bcb->p_tcb = p_tcb;
      p_eatt_bcb->cid = lcid;

      p_eatt_bcb->create_in_prg = create_in_prg;

      if (lcid != L2CAP_ATT_CID) {
        p_eatt_bcb->pending_ind_q = fixed_queue_new(SIZE_MAX);

        conf_timer += std::to_string(lcid);
        ind_ack_timer += std::to_string(lcid);
        p_eatt_bcb->payload_size = p_tcb->payload_size;
        p_eatt_bcb->conf_timer = alarm_new(conf_timer.c_str());
        p_eatt_bcb->ind_ack_timer = alarm_new(ind_ack_timer.c_str());
        p_eatt_bcb->is_remote_initiated = is_remote_initiated;
      }
      else {
        p_eatt_bcb->payload_size = p_tcb->payload_size;
        p_eatt_bcb->ind_ack_timer = p_tcb->ind_ack_timer;
        p_eatt_bcb->conf_timer = p_tcb->conf_timer;
        p_eatt_bcb->cl_cmd_q = p_tcb->cl_cmd_q;
        p_eatt_bcb->pending_ind_q = p_tcb->pending_ind_q;
        p_eatt_bcb->indicate_handle = p_tcb->indicate_handle;
        p_eatt_bcb->sr_cmd = p_tcb->sr_cmd;
        p_eatt_bcb->sr_cmd.multi_rsp_q = p_tcb->sr_cmd.multi_rsp_q;
      }
      break;
    }
  }

  return p_eatt_bcb;
}

/*******************************************************************************
 *
 * Function         gatt_eatt_bcb_dealloc
 *
 * Description      The function deallocates EATT bearer control block
 *
 * Returns          true if EATT bearer control block is deallocated.
 *
 ******************************************************************************/
bool gatt_eatt_bcb_dealloc(tGATT_TCB* p_tcb, uint16_t lcid) {
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;
  bool ret = false;

  VLOG(1) << __func__ << " lcid:" << +lcid;
  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use &&
       (gatt_cb.eatt_bcb[i].cid == lcid) &&
       (p_tcb && (gatt_cb.eatt_bcb[i].p_tcb->peer_bda == p_tcb->peer_bda))) {
      p_eatt_bcb = &gatt_cb.eatt_bcb[i];

      gatt_remove_conns_by_cid(p_tcb, p_eatt_bcb->cid);

      if (lcid != L2CAP_ATT_CID) {
        alarm_cancel(p_eatt_bcb->ind_ack_timer);
        alarm_free(p_eatt_bcb->ind_ack_timer);
        p_eatt_bcb->ind_ack_timer = NULL;

        alarm_cancel(p_eatt_bcb->conf_timer);
        alarm_free(p_eatt_bcb->conf_timer);
        p_eatt_bcb->conf_timer = NULL;
        gatt_free_pending_ind(p_eatt_bcb->p_tcb, lcid);
      }

      p_eatt_bcb->in_use = false;
      p_eatt_bcb->p_tcb = NULL;
      p_eatt_bcb->cid = -1;

      p_eatt_bcb->create_in_prg = false;
      p_eatt_bcb->is_remote_initiated = false;
      p_eatt_bcb->no_credits = false;
      p_eatt_bcb->send_uncongestion = false;
      p_eatt_bcb->apps.clear();
      p_eatt_bcb->opportunistic_apps.clear();

      *p_eatt_bcb = tGATT_EBCB();
      ret = true;
    }
  }
  return ret;
}

/*******************************************************************************
 *
 * Function         gatt_eatt_bcb_in_progress_dealloc
 *
 * Description      The function deallocates EATT bearer control blocks for
 *                  channels whose creation is in progress for a remote
 *                  device.
 *
 * Returns          Number of EATT bearer control blocks deallocated.
 *
 ******************************************************************************/
uint8_t gatt_eatt_bcb_in_progress_dealloc(RawAddress& bda) {
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;
  uint8_t num_dealloc = 0;

  VLOG(1) << __func__;
  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && (gatt_cb.eatt_bcb[i].create_in_prg) &&
       (gatt_cb.eatt_bcb[i].p_tcb->peer_bda == bda)) {
      p_eatt_bcb = &gatt_cb.eatt_bcb[i];

      if (p_eatt_bcb->cid != L2CAP_ATT_CID) {
        alarm_cancel(p_eatt_bcb->ind_ack_timer);
        alarm_free(p_eatt_bcb->ind_ack_timer);
        p_eatt_bcb->ind_ack_timer = NULL;
        alarm_cancel(p_eatt_bcb->conf_timer);
        alarm_free(p_eatt_bcb->conf_timer);
        p_eatt_bcb->conf_timer = NULL;
        gatt_free_pending_ind(p_eatt_bcb->p_tcb, p_eatt_bcb->cid);
      }

      p_eatt_bcb->in_use = false;
      p_eatt_bcb->p_tcb = NULL;
      p_eatt_bcb->cid = -1;

      p_eatt_bcb->create_in_prg = false;
      p_eatt_bcb->apps.clear();
      *p_eatt_bcb = tGATT_EBCB();
      num_dealloc++;
    }
  }

  return num_dealloc;
}

/*******************************************************************************
 *
 * Function         gatt_find_tcb_by_eatt_cid
 *
 * Description      The function searches for the tcb entry
 *                  based on EATT bearer CID
 *
 * Returns          NULL if not found. Otherwise pointer to the tcb.
 *
 ******************************************************************************/
tGATT_TCB* gatt_find_tcb_by_eatt_cid(uint16_t lcid) {
  uint16_t i = 0;
  tGATT_TCB* p_tcb = NULL;

  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && (gatt_cb.eatt_bcb[i].cid == lcid)
        && (!gatt_cb.eatt_bcb[i].create_in_prg)) {
      p_tcb = gatt_cb.eatt_bcb[i].p_tcb;
      break;
    }
  }
  return p_tcb;
}

/*******************************************************************************
 *
 * Function         gatt_find_eatt_bcb_by_cid
 *
 * Description      The function searches for the eatt_bcb entry
 *                  based on channel id and BD address
 *
 * Returns          NULL if not found. Otherwise pointer to the eatt_bcb.
 *
 ******************************************************************************/
tGATT_EBCB* gatt_find_eatt_bcb_by_cid(tGATT_TCB* p_tcb, uint16_t lcid) {
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;

  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && (gatt_cb.eatt_bcb[i].cid == lcid)
        && (p_tcb && ((RawAddress::kAny == p_tcb->peer_bda) ||
        (gatt_cb.eatt_bcb[i].p_tcb->peer_bda == p_tcb->peer_bda)))
        && (!gatt_cb.eatt_bcb[i].create_in_prg)) {
      p_eatt_bcb = &gatt_cb.eatt_bcb[i];
      break;
    }
  }
  return p_eatt_bcb;
}

/*******************************************************************************
 *
 * Function         gatt_find_eatt_bcb_using_all_cids
 *
 * Description      The function searches for the eatt_bcb entry
 *                  based on channel id, even eatt connection on that channel
 *                  is still in connecting state.
 *
 * Returns          NULL if not found. Otherwise pointer to the eatt_bcb.
 *
 ******************************************************************************/
tGATT_EBCB* gatt_find_eatt_bcb_using_all_cids(uint16_t lcid) {
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;

  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && gatt_cb.eatt_bcb[i].cid == lcid) {
      p_eatt_bcb = &gatt_cb.eatt_bcb[i];
      break;
    }
  }
  return p_eatt_bcb;
}
/*******************************************************************************
 *
 * Function         gatt_find_eatt_bcb_by_srv_trans_id
 *
 * Description      The function searches for the eatt_bcb entry based on
 *                  server transaction id.
 *
 *                  When response is received by stack from server app for an
 *                  incoming GATT client transaction request, server transaction
 *                  id is used to retrieve the appropriate l2cap channel to send
 *                  the GATT server response.
 *
 *
 * Returns          NULL if not found. Otherwise pointer to the eatt_bcb.
 *
 ******************************************************************************/
tGATT_EBCB* gatt_find_eatt_bcb_by_srv_trans_id(uint32_t trans_id, const RawAddress& bda) {
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;

  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && (gatt_cb.eatt_bcb[i].sr_cmd.trans_id == trans_id)
       && (gatt_cb.eatt_bcb[i].p_tcb->peer_bda == bda) && (!gatt_cb.eatt_bcb[i].create_in_prg)) {
      p_eatt_bcb = &gatt_cb.eatt_bcb[i];
      break;
    }
  }
  return p_eatt_bcb;
}

/*******************************************************************************
 *
 * Function         gatt_find_eatt_bcb_by_cl_trans_id
 *
 * Description      The function searches for the eatt_bcb entry
 *                  based on client transcation id.
 *
 *                  When confirmation response needs to be sent for a
 *                  received GATT server indication, client transaction id is
 *                  used to retrieve the appropriate l2cap channel to send the
 *                  confirmation PDU.
 *
 *
 * Returns          NULL if not found. Otherwise pointer to the eatt_bcb.
 *
 ******************************************************************************/
tGATT_EBCB* gatt_find_eatt_bcb_by_cl_trans_id(uint32_t trans_id, const RawAddress& bda) {
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;

  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && (gatt_cb.eatt_bcb[i].cl_trans_id == trans_id)
        && (gatt_cb.eatt_bcb[i].p_tcb->peer_bda == bda) && (!gatt_cb.eatt_bcb[i].create_in_prg)) {
      p_eatt_bcb = &gatt_cb.eatt_bcb[i];
      break;
    }
  }
  return p_eatt_bcb;
}

/*******************************************************************************
 *
 * Function         gatt_find_eatt_bcb_by_gatt_if
 *
 * Description      The function searches for the eatt_bcb entry
 *                  based on gatt if
 *
 * Returns          NULL if not found. Otherwise pointer to the eatt_bcb.
 *
 ******************************************************************************/
tGATT_EBCB* gatt_find_eatt_bcb_by_gatt_if(uint8_t gatt_if, const RawAddress& bda) {
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;
  std::vector<tGATT_IF> apps;

  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && (gatt_cb.eatt_bcb[i].p_tcb->peer_bda == bda)
        && (!gatt_cb.eatt_bcb[i].create_in_prg)) {
      apps = gatt_cb.eatt_bcb[i].apps;
      if(std::find(apps.begin(), apps.end(), gatt_if) != apps.end()) {
        p_eatt_bcb = &gatt_cb.eatt_bcb[i];
        break;
      }
    }
  }
  return p_eatt_bcb;
}

/*******************************************************************************
 *
 * Function         gatt_find_eatt_bcb_by_cid_in_progress
 *
 * Description      The function searches for the eatt_bcb entry
 *                  based on channel id which are in progress.
 *
 * Returns          NULL if not found. Otherwise pointer to the eatt_bcb.
 *
 ******************************************************************************/
tGATT_EBCB* gatt_find_eatt_bcb_by_cid_in_progress(RawAddress bda, uint16_t lcid) {
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;

  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use
        && (gatt_cb.eatt_bcb[i].p_tcb->peer_bda == bda)
        && (gatt_cb.eatt_bcb[i].cid == lcid)
        && (gatt_cb.eatt_bcb[i].create_in_prg)) {
      p_eatt_bcb = &gatt_cb.eatt_bcb[i];
      break;
    }
  }
  return p_eatt_bcb;
}

bool compare_num_apps_in_ebcb_list(tGATT_APPS_EBCB a, tGATT_APPS_EBCB b) {
  return(a.num_apps < b.num_apps);
}

/*******************************************************************************
 *
 * Function         gatt_find_best_eatt_bcb
 *
 * Description      The function searches for the least burdened EATT bearer.
 *                  If no suitable EATT bearers are available, ATT channel will
 *                  be selected.
 *
 * Returns          pointer to the selected eatt_bcb.
 *
 ******************************************************************************/
tGATT_EBCB* gatt_find_best_eatt_bcb(tGATT_TCB* p_tcb, tGATT_IF gatt_if, uint16_t old_cid, bool opportunistic) {
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;
  std::vector<tGATT_APPS_EBCB> apps_in_ebcb_list;
  tGATT_APPS_EBCB apps_in_ebcb;
  uint16_t conn_id = 0;
  tGATT_EBCB* p_eatt_bcb_old = gatt_find_eatt_bcb_by_cid(p_tcb, old_cid);
  tGATT_REG* p_reg = gatt_get_regcb(gatt_if);

  //Find all EATT channels with suitable MTU size
  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && (gatt_cb.eatt_bcb[i].p_tcb->peer_bda == p_tcb->peer_bda)
        && (!gatt_cb.eatt_bcb[i].create_in_prg) && (!gatt_cb.eatt_bcb[i].disconn_in_prg)
        && (gatt_cb.eatt_bcb[i].cid != L2CAP_ATT_CID) && (p_reg && p_reg->eatt_support)) {
      if (old_cid > 0) {
        if ((p_eatt_bcb_old) && (gatt_cb.eatt_bcb[i].payload_size < p_eatt_bcb_old->payload_size)) {
          continue;
        }
      }
      p_eatt_bcb = &gatt_cb.eatt_bcb[i];

      if (p_eatt_bcb) {
        apps_in_ebcb.lcid = p_eatt_bcb->cid;
        apps_in_ebcb.num_apps = p_eatt_bcb->apps.size();
        apps_in_ebcb_list.push_back(apps_in_ebcb);
      }
    }
  }

  //EATT channels available to select
  if(apps_in_ebcb_list.size() > 0) {
    //Select the least burdened EATT channel
    std::sort(apps_in_ebcb_list.begin(), apps_in_ebcb_list.end(), compare_num_apps_in_ebcb_list);
    p_eatt_bcb = gatt_find_eatt_bcb_by_cid(p_tcb, apps_in_ebcb_list[0].lcid);
  }
  // Unable to find any suitable EATT channel, use ATT
  else {
    p_eatt_bcb = gatt_find_eatt_bcb_by_cid(p_tcb, L2CAP_ATT_CID);
    if ((old_cid > 0) && p_eatt_bcb && p_eatt_bcb_old &&
        (p_eatt_bcb->payload_size < p_eatt_bcb_old->payload_size)) {
      VLOG(1) << __func__ << " cid:" << +p_eatt_bcb->cid << " does not have required MTU";
      p_eatt_bcb = NULL;
    }
  }

  if (p_eatt_bcb) {
    if (opportunistic)
      p_eatt_bcb->opportunistic_apps.push_back(gatt_if);
    else
      p_eatt_bcb->apps.push_back(gatt_if);

    VLOG(1) << __func__ << " Least burdened channel selected:" << +p_eatt_bcb->cid;
    //Add mapping of conn_id and lcid
    conn_id = GATT_CREATE_CONN_ID(p_tcb->tcb_idx, gatt_if);
    gatt_add_conn(conn_id, p_eatt_bcb->cid);
  }
  else {
    VLOG(1) << __func__ << " Disconnect LE link as no suitable ATT/EATT channels availble:";
    uint16_t conn_handle = BTM_GetHCIConnHandle(p_tcb->peer_bda, BT_TRANSPORT_LE);
    btm_sec_disconnect(conn_handle, GATT_CONN_TERMINATE_LOCAL_HOST);
  }

  return p_eatt_bcb;
}

/*******************************************************************************
 *
 * Function         gatt_num_eatt_bcbs_in_progress
 *
 * Description      The function finds number of eatt_bcb entries(EATT l2cap conn reqs)
 *                  in progress
 *
 * Returns          NULL if not found. Otherwise pointer to the eatt_bcb.
 *
 ******************************************************************************/
uint8_t gatt_num_eatt_bcbs_in_progress(tGATT_TCB* p_tcb) {
  uint16_t i = 0;
  uint8_t num_eatt_bcbs = 0;

  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && (gatt_cb.eatt_bcb[i].p_tcb->peer_bda == p_tcb->peer_bda)
        && (gatt_cb.eatt_bcb[i].create_in_prg)) {
      num_eatt_bcbs++;
    }
  }
  return num_eatt_bcbs;
}

/*******************************************************************************
 *
 * Function         gatt_num_eatt_bcbs
 *
 * Description      The function finds number of EATT channels for a bda
 *
 *
 * Returns          number of EATT channels for a bd address.
 *
 ******************************************************************************/
uint8_t gatt_num_eatt_bcbs(tGATT_TCB* p_tcb) {
  uint16_t i = 0;
  uint8_t num_eatt_bcbs = 0;

  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && (gatt_cb.eatt_bcb[i].p_tcb->peer_bda == p_tcb->peer_bda)
        && (!gatt_cb.eatt_bcb[i].create_in_prg)
        && (gatt_cb.eatt_bcb[i].cid != L2CAP_ATT_CID)) {
      num_eatt_bcbs++;
    }
  }
  VLOG(1) << __func__ << " num_eatt_bcbs:" << +num_eatt_bcbs;
  return num_eatt_bcbs;
}

/*******************************************************************************
 *
 * Function         gatt_get_payload_size
 *
 * Description      The function gets the payload size for the channel
 *
 * Returns          payload_size of cid.
 *
 ******************************************************************************/
uint16_t gatt_get_payload_size(tGATT_TCB* p_tcb, uint16_t lcid) {
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;
  uint16_t payload_size = 0;

  if (!p_tcb->is_eatt_supported || (lcid == p_tcb->att_lcid)) {
    payload_size = p_tcb->payload_size;
  }
  else if (p_tcb->is_eatt_supported) {
    for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
      if (gatt_cb.eatt_bcb[i].in_use && gatt_cb.eatt_bcb[i].cid == lcid
          && (!gatt_cb.eatt_bcb[i].create_in_prg)) {
        p_eatt_bcb = &gatt_cb.eatt_bcb[i];
        if (p_eatt_bcb) {
          payload_size = p_eatt_bcb->payload_size;
        }
        return payload_size;
      }
    }
  }
  return payload_size;
}

struct find_gatt_conn
{
  uint16_t conn_id;
  uint16_t lcid;
  find_gatt_conn(uint16_t conn_id, uint16_t lcid) : conn_id(conn_id), lcid(lcid) {}
  bool operator () (const tGATT_CONN& gatt_conn) const {
    return ((gatt_conn.conn_id == conn_id) && (gatt_conn.lcid == lcid));
  }
};

struct find_gatt_cid
{
  uint16_t conn_id;
  find_gatt_cid(uint16_t conn_id) : conn_id(conn_id) {}
  bool operator () (const tGATT_CONN& gatt_conn) const {
    return (gatt_conn.conn_id == conn_id);
  }
};

struct is_gatt_cid_found
{
  RawAddress bda;
  uint16_t cid;
  is_gatt_cid_found(RawAddress bda, uint16_t cid) : bda(bda), cid(cid) {}
  bool operator () (const tGATT_CONN& gatt_conn) const {
    uint8_t tcb_idx = GATT_GET_TCB_IDX(gatt_conn.conn_id);
    tGATT_TCB* p_tcb = gatt_get_tcb_by_idx(tcb_idx);
    return ((p_tcb && (p_tcb->peer_bda == bda)) && (gatt_conn.lcid == cid));
  }
};

/*******************************************************************************
 *
 * Function         gatt_remove_conn
 *
 * Description      The function deletes gatt_conn entry
 *
 * Returns          void.
 *
 ******************************************************************************/
void gatt_remove_conn(uint16_t conn_id, uint16_t lcid) {
  std::vector<tGATT_CONN>::iterator it
      = std::find_if(gatt_cb.gatt_conn_list.begin(), gatt_cb.gatt_conn_list.end(), find_gatt_conn(conn_id, lcid));
  VLOG(1) << __func__;
  if (it != gatt_cb.gatt_conn_list.end()) {
    gatt_cb.gatt_conn_list.erase(it);
  }
}

/*******************************************************************************
 *
 * Function         gatt_remove_conns_by_cid
 *
 * Description      The function deletes all gatt_conn entries for a lcid
 *
 * Returns          void.
 *
 ******************************************************************************/
void gatt_remove_conns_by_cid(tGATT_TCB* p_tcb, uint16_t lcid) {
  if (gatt_cb.gatt_conn_list.empty()) {
    VLOG(1) << __func__ << " empty list:";
    return;
  }

  std::vector<tGATT_CONN>::iterator it
        = std::remove_if(gatt_cb.gatt_conn_list.begin(), gatt_cb.gatt_conn_list.end(),
                         is_gatt_cid_found(p_tcb->peer_bda, lcid));
  if (it != gatt_cb.gatt_conn_list.end()) {
    gatt_cb.gatt_conn_list.erase(it, gatt_cb.gatt_conn_list.end());
  }
}

/*******************************************************************************
 *
 * Function         is_gatt_conn_id_found
 *
 * Description      The function checks whether conn id is found
 *
 * Returns          true if entry found.
 *
 ******************************************************************************/
bool is_gatt_conn_id_found(uint16_t conn_id) {
  bool ret = false;
  std::vector<tGATT_CONN>::iterator it
      = std::find_if(gatt_cb.gatt_conn_list.begin(), gatt_cb.gatt_conn_list.end(), find_gatt_cid(conn_id));

  if (it != gatt_cb.gatt_conn_list.end()) {
    ret = true;
  }
  return ret;
}

/*******************************************************************************
 *
 * Function         is_gatt_conn_found
 *
 * Description      The function checks whether gatt_conn entry is found
 *
 * Returns          true if entry found.
 *
 ******************************************************************************/
bool is_gatt_conn_found(uint16_t conn_id, uint16_t lcid) {
  bool ret = false;
  std::vector<tGATT_CONN>::iterator it
      = std::find_if(gatt_cb.gatt_conn_list.begin(), gatt_cb.gatt_conn_list.end(), find_gatt_conn(conn_id, lcid));

  if (it != gatt_cb.gatt_conn_list.end()) {
    ret = true;
  }
  return ret;
}

/*******************************************************************************
 *
 * Function         gatt_add_conn
 *
 * Description      The function adds a gatt_conn entry
 *
 * Returns          true if entry found.
 *
 ******************************************************************************/
void gatt_add_conn(uint16_t conn_id, uint16_t lcid) {
  //check whether an entry already exists, dont add if it exists
  if (is_gatt_conn_found(conn_id, lcid)) {
    VLOG(1) << __func__ << " conn entry already available";
    return;
  }

  tGATT_CONN gatt_conn = {
    .conn_id = conn_id,
    .lcid = lcid
  };
  gatt_cb.gatt_conn_list.push_back(gatt_conn);
}

/*******************************************************************************
 *
 * Function         gatt_get_cid_by_conn_id
 *
 * Description      The function gets cid for a given conn_id
 *
 * Returns          lcid associated with conn_id.
 *
 ******************************************************************************/
uint16_t gatt_get_cid_by_conn_id(uint16_t conn_id) {
  uint16_t lcid = L2CAP_ATT_CID;
  tGATT_CONN gatt_conn;

  std::vector<tGATT_CONN>::iterator it
      = std::find_if(gatt_cb.gatt_conn_list.begin(), gatt_cb.gatt_conn_list.end(), find_gatt_cid(conn_id));

  if (it != gatt_cb.gatt_conn_list.end()) {
    gatt_conn = *it;
    lcid = gatt_conn.lcid;
  }
  return lcid;
}

/*
** Return true if any Apps needs EATT channel
*/
bool gatt_apps_need_eatt(tGATT_TCB* p_tcb) {
  uint8_t num_apps_hold_link = 0;
  tGATT_REG* p_reg;
  auto& holders = p_tcb->app_hold_link;
  num_apps_hold_link = holders.size();
  VLOG(1) << __func__ << " num_apps_hold_link: " << +num_apps_hold_link;
  for (auto it = holders.begin(); it != holders.end(); ++it) {
    p_reg = gatt_get_regcb(*it);
    if (p_reg && p_reg->eatt_support) {
      return true;
    }
  }
  return false;
}

/*******************************************************************************
 *
 * Function         gatt_upgrade_conn
 *
 * Description      The function upgrades apps from ATT to EATT channel
 *
 * Returns          void.
 *
 ******************************************************************************/
void gatt_upgrade_conn(tGATT_TCB* p_tcb) {
  uint8_t num_apps_hold_link = 0;
  tGATT_REG* p_reg;

  if (p_tcb->is_eatt_upgrade_done) {
    VLOG(1) << __func__ << " EATT upgrade already done";
    return;
  }

  auto& holders = p_tcb->app_hold_link;
  num_apps_hold_link = holders.size();
  VLOG(1) << __func__ << " num_apps_hold_link: " << +num_apps_hold_link;
  for (auto it = holders.begin(); it != holders.end(); ++it) {
    p_reg = gatt_get_regcb(*it);
    if (p_reg && p_reg->eatt_support) {
      std::deque<tGATT_IF>::iterator iter =
          std::find(p_tcb->apps_needing_eatt.begin(), p_tcb->apps_needing_eatt.end(), *it);
      if (iter == p_tcb->apps_needing_eatt.end()) {
        p_tcb->apps_needing_eatt.push_back(*it);
      }
    }
  }

  if (!p_tcb->apps_needing_eatt.empty()) {
    gatt_establish_eatt_connect(p_tcb, 1);
  }
  p_tcb->is_eatt_upgrade_done = true;
}

/*******************************************************************************
 *
 * Function         gatt_send_pending_ind
 *
 * Description      This function check any pending indication needs to be sent
 *                  if there is a pending indication then sent the indication
 *
 * Returns          void
 *
 ******************************************************************************/
void gatt_send_pending_ind(tGATT_TCB& tcb, uint16_t lcid) {
  tGATT_EBCB* p_eatt_bcb = NULL;
  fixed_queue_t** pending_ind_q = &(tcb.pending_ind_q);
  tGATT_VALUE* p_buf = NULL;
  uint8_t att_ret;
  std::vector<uint16_t>::iterator it;
  VLOG(1) << __func__;

  if (tcb.is_eatt_supported) {
    p_eatt_bcb = gatt_find_eatt_bcb_by_cid(&tcb, lcid);
    if (p_eatt_bcb) {
      VLOG(1) << __func__ << " Known EATT bearer";
      pending_ind_q = &(p_eatt_bcb->pending_ind_q);
    }
  }

  p_buf = (tGATT_VALUE*)fixed_queue_try_peek_first(*pending_ind_q);
  if (p_buf != NULL) {
    att_ret = GATTS_HandleValueIndication(p_buf->conn_id, p_buf->handle, p_buf->len,
                                p_buf->value);
    if (((att_ret == GATT_CONGESTED) || (att_ret == GATT_NO_CREDITS))
        && p_eatt_bcb && p_eatt_bcb->no_credits) {
      VLOG(1) << __func__ << " EATT channel has no credits, dont dequeue";
      return;
    }
    else {
      osi_free(fixed_queue_try_remove_from_queue(*pending_ind_q, p_buf));

      if (!p_eatt_bcb->ind_no_credits_apps.empty()) {
        it = std::find(p_eatt_bcb->ind_no_credits_apps.begin(),
                       p_eatt_bcb->ind_no_credits_apps.end(), p_buf->conn_id);
        if (it != p_eatt_bcb->ind_no_credits_apps.end()) {
          p_eatt_bcb->ind_no_credits_apps.erase(it);
        }
      }

      //No credits, check if uncongestion needs to be sent
      if (p_eatt_bcb && p_eatt_bcb->send_uncongestion) {
        if (fixed_queue_is_empty(p_eatt_bcb->pending_ind_q)) {
          VLOG(1) << __func__ << " check if uncongestion needs to be sent"
                                 " to apps after sending queued indication";
          eatt_congest_notify_apps(&tcb, lcid, false);
        }
      }
    }
  }
}

/** Enqueue GATT notification for no credits reason, only for EATT */
void gatt_notif_enq(tGATT_TCB* p_tcb, uint16_t cid, tGATT_VALUE* p_notif) {
  tGATT_EBCB* p_eatt_bcb;
  VLOG(1) << __func__;

  if (p_tcb->is_eatt_supported && (cid != L2CAP_ATT_CID)) {
    p_eatt_bcb = gatt_find_eatt_bcb_by_cid(p_tcb, cid);
    if (p_eatt_bcb) {
      p_eatt_bcb->notif_q.push_back(*p_notif);
    }
  }
}

/*******************************************************************************
 *
 * Function         gatt_send_pending_notif
 *
 * Description      This function checks any pending notification needs to be sent
 *                  if there is a pending notification then it is sent
 *
 * Returns          void
 *
 ******************************************************************************/
void gatt_send_pending_notif(tGATT_TCB& tcb, uint16_t cid) {
  tGATT_EBCB* p_eatt_bcb = NULL;
  std::deque<tGATT_VALUE>* notif_q;
  tGATT_VALUE* p_buf;
  uint8_t att_ret;
  std::vector<uint16_t>::iterator it;
  VLOG(1) << __func__;

  if (tcb.is_eatt_supported) {
    p_eatt_bcb = gatt_find_eatt_bcb_by_cid(&tcb, cid);
    if (p_eatt_bcb) {
      VLOG(1) << __func__ << " Known EATT bearer";
      notif_q = &(p_eatt_bcb->notif_q);
      if (notif_q->empty()) {
        VLOG(1) << __func__ << " notif q is empty";
        return;
      }

      while (!notif_q->empty()) {
        p_buf = (tGATT_VALUE*)&(notif_q->front());
        if (!p_buf) {
          VLOG(1) << __func__ << " notification op value is NULL";
          return;
        }

        att_ret = GATTS_HandleValueNotification(p_buf->conn_id, p_buf->handle, p_buf->len,
                                                p_buf->value);
        if (((att_ret == GATT_CONGESTED) || (att_ret == GATT_NO_CREDITS))
            && p_eatt_bcb->no_credits) {
          VLOG(1) << __func__ << " EATT channel has no credits, dont dequeue";
          return;
        }
        else {
          notif_q->pop_front();
          if (!p_eatt_bcb->notif_no_credits_apps.empty()) {
            it = std::find(p_eatt_bcb->notif_no_credits_apps.begin(),
                           p_eatt_bcb->notif_no_credits_apps.end(), p_buf->conn_id);
            if (it != p_eatt_bcb->notif_no_credits_apps.end()) {
              p_eatt_bcb->notif_no_credits_apps.erase(it);
            }
          }

          if (p_eatt_bcb && p_eatt_bcb->send_uncongestion) {
            if (p_eatt_bcb->notif_q.empty()) {
              VLOG(1) << __func__ << " check if uncongestion needs to be sent to apps"
                                     " after sending queued notification";
              eatt_congest_notify_apps(&tcb, cid, false);
            }
          }
        }
      }
    }
  }
}

/** Enqueue GATT response for no credits reason, only for EATT */
void gatt_rsp_enq(tGATT_TCB* p_tcb, uint16_t cid, tGATT_PEND_RSP* p_rsp) {
  VLOG(1) << __func__;
  tGATT_EBCB* p_eatt_bcb;

  if (p_tcb->is_eatt_supported && (cid != L2CAP_ATT_CID)) {
    p_eatt_bcb = gatt_find_eatt_bcb_by_cid(p_tcb, cid);
    if (p_eatt_bcb) {
      p_eatt_bcb->gatt_rsp_q.push_back(*p_rsp);
    }
  }
}

/** Enqueue GATT discovery response for no credits reason, only for EATT */
void eatt_disc_rsp_enq(tGATT_TCB* p_tcb, uint16_t cid, BT_HDR *p_msg) {
  tGATT_PEND_SRVC_DISC_RSP gatt_rsp;
  gatt_rsp.p_msg = p_msg;
  gatt_rsp.lcid = cid;
  tGATT_EBCB* p_eatt_bcb;

  VLOG(1) << __func__;
  if (cid != L2CAP_ATT_CID) {
    p_eatt_bcb = gatt_find_eatt_bcb_by_cid(p_tcb, cid);
    if (p_eatt_bcb) {
      p_eatt_bcb->gatt_disc_rsp_q.push_back(gatt_rsp);
    }
  }
}

/*******************************************************************************
 *
 * Function         gatt_send_pending_rsp
 *
 * Description      This function checks any pending GATT rsp needs to be sent
 *                  if there is a pending rsp, then it is sent
 *
 * Returns          void
 *
 ******************************************************************************/
void gatt_send_pending_rsp(tGATT_TCB& tcb, uint16_t cid) {
  tGATT_EBCB* p_eatt_bcb = NULL;
  std::deque<tGATT_PEND_RSP>* gatt_rsp_q;
  tGATT_PEND_RSP* p_buf;
  uint8_t att_ret;
  VLOG(1) << __func__;

  if (tcb.is_eatt_supported && (cid != L2CAP_ATT_CID)) {
    p_eatt_bcb = gatt_find_eatt_bcb_by_cid(&tcb, cid);
    if (p_eatt_bcb) {
      VLOG(1) << __func__ << " Known EATT bearer";
      gatt_rsp_q = &(p_eatt_bcb->gatt_rsp_q);
      if (gatt_rsp_q->empty()) {
        VLOG(1) << __func__ << " pending gatt rsp q empty";
        return;
      }

      while (!gatt_rsp_q->empty()) {
        p_buf = (tGATT_PEND_RSP*)&(gatt_rsp_q->front());
        if (!p_buf) {
          VLOG(1) << __func__ << " GATT Rsp value is NULL";
          return;
        }

        att_ret = GATTS_SendRsp(p_buf->conn_id, p_buf->trans_id, p_buf->status, p_buf->p_msg);
        if (((att_ret == GATT_CONGESTED) || (att_ret == GATT_NO_CREDITS))
            && p_eatt_bcb->no_credits) {
          VLOG(1) << __func__ << " EATT channel has no credits, dont dequeue";
          return;
        }
        else {
          gatt_rsp_q->pop_front();
          if (p_eatt_bcb && p_eatt_bcb->send_uncongestion) {
            if (p_eatt_bcb->gatt_rsp_q.empty()) {
              VLOG(1) << __func__ << " check if uncongestion needs to be sent to apps"
                                     " after sending queued GATT Rsp";
              eatt_congest_notify_apps(&tcb, cid, false);
            }
          }
        }
      }
    }
  }
}

/*******************************************************************************
 *
 * Function         gatt_send_pending_disc_rsp
 *
 * Description      This function checks any pending GATT discovery rsp needs
 *                  to be sent. If there is a pending rsp, then it is sent
 *
 * Returns          void
 *
 ******************************************************************************/
void gatt_send_pending_disc_rsp(tGATT_TCB& tcb, uint16_t cid) {
  tGATT_EBCB* p_eatt_bcb = NULL;
  std::deque<tGATT_PEND_SRVC_DISC_RSP>* gatt_rsp_q;
  tGATT_PEND_SRVC_DISC_RSP* p_buf;
  uint8_t att_ret;
  VLOG(1) << __func__;

  if (tcb.is_eatt_supported && (cid != L2CAP_ATT_CID)) {
    p_eatt_bcb = gatt_find_eatt_bcb_by_cid(&tcb, cid);

    if (p_eatt_bcb) {
      VLOG(1) << __func__ << " Known EATT bearer";
      gatt_rsp_q = &(p_eatt_bcb->gatt_disc_rsp_q);

      if (gatt_rsp_q->empty()) {
        VLOG(1) << __func__ << " pending gatt rsp q empty";
        return;
      }

      while (!gatt_rsp_q->empty()) {
        p_buf = (tGATT_PEND_SRVC_DISC_RSP*)&(gatt_rsp_q->front());
        if (!p_buf) {
          VLOG(1) << __func__ << " GATT srvc disc rsp value is NULL";
          return;
        }

        att_ret = attp_send_sr_msg(tcb, cid, p_buf->p_msg);

        if (((att_ret == GATT_CONGESTED) || (att_ret == GATT_NO_CREDITS))
            && p_eatt_bcb->no_credits){
          VLOG(1) << __func__ << " EATT channel has no credits, dont dequeue";
          return;
        } else {
          gatt_rsp_q->pop_front();
          if (p_eatt_bcb->send_uncongestion && p_eatt_bcb->gatt_disc_rsp_q.empty()) {
            VLOG(1) << __func__ << " check if uncongestion needs to be sent to apps"
                                   " after sending queued GATT srvc disc rsp";
            eatt_congest_notify_apps(&tcb, cid, false);
          }
        }
      }
    }
  }
}
/*******************************************************************************
 *
 * Function         gatt_move_apps
 *
 * Description      The function moves apps(and their client/server operations)
 *                  from the disconnected channel to another suitable channel.
 *
 * Returns          void
 *
 ******************************************************************************/
void gatt_move_apps(tGATT_TCB* p_tcb, uint16_t cid) {
  tGATT_EBCB* p_eatt_bcb_old = gatt_find_eatt_bcb_by_cid(p_tcb, cid);
  tGATT_EBCB* p_eatt_bcb = NULL;
  tGATT_IF gatt_if;
  uint16_t cl_conn_id = 0;
  tGATT_CLCB* p_clcb_current = NULL;
  uint16_t sr_conn_id = 0;
  uint16_t sr_handle = 0;

  VLOG(1) << __func__ << " cid:" << +cid;

  if (p_eatt_bcb_old) {
    if (!p_tcb || !p_tcb->is_eatt_supported || (cid == L2CAP_ATT_CID)) {
      VLOG(1) << __func__ << " Invalid scenario for moving apps";
      return;
    }

    if (p_eatt_bcb_old->cl_cmd_q.size() > 0) {
      tGATT_CMD_Q& cmd = p_eatt_bcb_old->cl_cmd_q.front();
      if (!cmd.to_send) {
        cl_conn_id = cmd.p_clcb->conn_id;
        p_clcb_current = cmd.p_clcb;
      }
    }

    sr_handle = p_eatt_bcb_old->indicate_handle;
    if (GATT_HANDLE_IS_VALID(sr_handle)) {
      for (auto& el : *gatt_cb.srv_list_info) {
        if (el.s_hdl <= sr_handle && el.e_hdl >= sr_handle) {
          sr_conn_id = GATT_CREATE_CONN_ID(p_tcb->tcb_idx, el.gatt_if);
          break;
        }
      }
    }
  }

  if ((cid != L2CAP_ATT_CID) && p_tcb && p_tcb->is_eatt_supported &&
      (p_tcb->transport == BT_TRANSPORT_LE) && p_eatt_bcb_old) {
    std::vector<tGATT_APP_INFO> apps;
    std::vector<tGATT_APPS_Q> apps_q;
    uint8_t i = 0;
    uint8_t xx = 0;
    uint16_t conn_id;

    for (xx=0; xx < p_eatt_bcb_old->apps.size(); xx++) {
      tGATT_APP_INFO app_info = {.gatt_if = p_eatt_bcb_old->apps[xx],
                                 .opportunistic = false};
      apps.push_back(app_info);
    }
    for (xx=0; xx < p_eatt_bcb_old->opportunistic_apps.size(); xx++) {
      tGATT_APP_INFO app_info = {.gatt_if = p_eatt_bcb_old->opportunistic_apps[xx],
                                 .opportunistic = true};
      apps.push_back(app_info);
    }

    //Iterate for all the apps which are on this disconnected cid
    for (i=0; i<apps.size(); i++) {
      tGATT_APP_INFO app_info = apps[i];
      gatt_if = app_info.gatt_if;
      conn_id = GATT_CREATE_CONN_ID(p_tcb->tcb_idx, gatt_if);

      //Remove the conn_id from previous lcid
      gatt_remove_conn(conn_id, cid);
      p_eatt_bcb_old->disconn_in_prg = true;

      //Find least burdened channel for the gatt_if
      p_eatt_bcb = gatt_find_best_eatt_bcb(p_tcb, gatt_if, cid, app_info.opportunistic);

      if (p_eatt_bcb) {
        VLOG(1) << __func__ << " selected lcid:" << +p_eatt_bcb->cid;
        tGATT_APPS_Q app = {.conn_id = conn_id,
                            .lcid = p_eatt_bcb->cid,
                            .cl_to_send = false,
                            .sr_to_send = false,
                            .notif_to_send = false};

        if (p_eatt_bcb->cl_cmd_q.empty()) {
          app.cl_to_send = true;
        }
        if (!GATT_HANDLE_IS_VALID(p_eatt_bcb->indicate_handle)) {
          app.sr_to_send = true;
        }
        if (p_eatt_bcb->notif_q.empty()) {
          app.notif_to_send = true;
        }
        apps_q.push_back(app);
      }
    }

    //Move client operations to selected cid
    while (!p_eatt_bcb_old->cl_cmd_q.empty()) {
      tGATT_CMD_Q& cmd = p_eatt_bcb_old->cl_cmd_q.front();

      for (uint8_t i=0; i<apps_q.size(); i++) {
        tGATT_APPS_Q app = apps_q[i];
        if ((app.conn_id == cmd.p_clcb->conn_id) && (app.conn_id != cl_conn_id) &&
            (cmd.p_cmd != NULL)) {
          p_eatt_bcb = gatt_find_eatt_bcb_by_cid(p_tcb, app.lcid);
          if (p_eatt_bcb)
            p_eatt_bcb->cl_cmd_q.push(cmd);
        }
      }
      p_eatt_bcb_old->cl_cmd_q.pop();
    }

    //Move server indications to selected cid
    while (!fixed_queue_is_empty(p_eatt_bcb_old->pending_ind_q)) {
      tGATT_VALUE* p_buf = (tGATT_VALUE*)fixed_queue_try_peek_first(p_eatt_bcb_old->pending_ind_q);

      if (p_buf != NULL) {
        for (uint8_t i=0; i<apps_q.size(); i++) {
          tGATT_APPS_Q app = apps_q[i];
          if ((app.conn_id == p_buf->conn_id) && (app.conn_id != sr_conn_id)) {
            p_eatt_bcb = gatt_find_eatt_bcb_by_cid(p_tcb, app.lcid);
            if (p_eatt_bcb)
              gatt_add_pending_ind(p_tcb, p_eatt_bcb->cid, p_buf);
          }
        }
        osi_free(fixed_queue_try_remove_from_queue(p_eatt_bcb_old->pending_ind_q, p_buf));
      }
    }

    //Move server notifications(queued for no credits) to selected cid
    while (!p_eatt_bcb_old->notif_q.empty()) {
      tGATT_VALUE* p_buf = &(p_eatt_bcb_old->notif_q.front());

      if (p_buf != NULL) {
        for (uint8_t i=0; i<apps_q.size(); i++) {
          tGATT_APPS_Q app = apps_q[i];
          if (app.conn_id == p_buf->conn_id) {
            p_eatt_bcb = gatt_find_eatt_bcb_by_cid(p_tcb, app.lcid);
            if (p_eatt_bcb)
              p_eatt_bcb->notif_q.push_back(*p_buf);
          }
        }
        p_eatt_bcb_old->notif_q.pop_front();
        osi_free(p_buf);
      }
    }

    for (i=0; i<apps_q.size(); i++) {
      if (apps_q[i].cl_to_send) {
        gatt_cl_send_next_cmd_inq(*(p_tcb), apps_q[i].lcid);
      }

      if (apps_q[i].sr_to_send) {
        gatt_send_pending_ind(*(p_tcb), apps_q[i].lcid);
      }

      if (apps_q[i].notif_to_send) {
        gatt_send_pending_notif(*(p_tcb), apps_q[i].lcid);
      }
    }

    if (p_clcb_current) {
      alarm_cancel(p_clcb_current->gatt_rsp_timer_ent);
      gatt_end_operation(p_clcb_current, GATT_ERROR, NULL);
    }
  }
}

/*******************************************************************************
 *
 * Function         gatt_add_eatt_device
 *
 * Description      The function adds eatt device to db.
 *
 * Returns          void
 *
 ******************************************************************************/
void gatt_add_eatt_device(RawAddress bda) {
  gatt_cb.eatt_devices_list.push_back(bda);
}

/*******************************************************************************
 *
 * Function         is_eatt_device
 *
 * Description      The function checks whether bda is an eatt supported device.
 *
 * Returns          true if bda supports EATT, false otherwise
 *
 ******************************************************************************/
bool is_eatt_device(RawAddress bda) {
  std::vector<RawAddress>::iterator it;
  bool ret = false;

  it = std::find(gatt_cb.eatt_devices_list.begin(), gatt_cb.eatt_devices_list.end(), bda);
  if (it != gatt_cb.eatt_devices_list.end()) {
    ret = true;
    VLOG(1) << __func__ << " bda:" << +bda.ToString().c_str() << " is EATT supported device";
  }
  return ret;
}

/*******************************************************************************
 *
 * Function         gatt_remove_app_on_lcid
 *
 * Description      The function removes app on lcid.
 *
 * Returns          number of apps still on lcid
 *
 ******************************************************************************/
uint8_t gatt_remove_app_on_lcid(uint16_t lcid, tGATT_IF gatt_if) {
  uint8_t num_apps = 0;
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;
  uint16_t conn_id = 0;

  VLOG(1) << __func__ << " lcid:" << +lcid;
  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && (gatt_cb.eatt_bcb[i].cid == lcid)
        && (!gatt_cb.eatt_bcb[i].create_in_prg) && (!gatt_cb.eatt_bcb[i].disconn_in_prg)
        && (gatt_cb.eatt_bcb[i].cid != L2CAP_ATT_CID)) {
      p_eatt_bcb = &gatt_cb.eatt_bcb[i];
      break;
    }
  }

  if (p_eatt_bcb) {
    conn_id = GATT_CREATE_CONN_ID(p_eatt_bcb->p_tcb->tcb_idx, gatt_if);
    std::vector<tGATT_IF>::iterator pos =
        std::find(p_eatt_bcb->opportunistic_apps.begin(), p_eatt_bcb->opportunistic_apps.end(), gatt_if);
    if (pos != p_eatt_bcb->opportunistic_apps.end()) {
      p_eatt_bcb->opportunistic_apps.erase(pos);
      gatt_remove_conn(conn_id, lcid);
    }
    else {
      pos = std::find(p_eatt_bcb->apps.begin(), p_eatt_bcb->apps.end(), gatt_if);
      if (pos != p_eatt_bcb->apps.end()) {
        p_eatt_bcb->apps.erase(pos);
        gatt_remove_conn(conn_id, lcid);
      }
    }

    num_apps = p_eatt_bcb->apps.size();
  }

  return num_apps;
}

/*******************************************************************************
 *
 * Function         eatt_cleanup_upon_disc
 *
 * Description      The function cleans up EATT channels when LE link
 *                  is disconnected.
 *
 * Returns          void
 *
 ******************************************************************************/
void eatt_cleanup_upon_disc(const RawAddress& bda) {
  uint16_t i = 0;
  tGATT_EBCB* p_eatt_bcb = NULL;

  VLOG(1) << __func__;
  for (i = 0; i < GATT_MAX_EATT_CHANNELS; i++) {
    if (gatt_cb.eatt_bcb[i].in_use && (gatt_cb.eatt_bcb[i].p_tcb->peer_bda == bda)
        && (!gatt_cb.eatt_bcb[i].create_in_prg)) {
      p_eatt_bcb = &gatt_cb.eatt_bcb[i];
      gatt_eatt_bcb_dealloc(p_eatt_bcb->p_tcb, p_eatt_bcb->cid);
    }
  }
}

/*******************************************************************************
 *
 * Function         eatt_congest_notify_apps
 *
 * Description      The function sends congestion/uncogestion cb to apps on cid.
 *
 * Returns          bool
 *
 ******************************************************************************/
bool eatt_congest_notify_apps(tGATT_TCB* p_tcb, uint16_t cid, bool congested) {
  tGATT_EBCB* p_eatt_bcb = gatt_find_eatt_bcb_by_cid(p_tcb, cid);
  bool ret = false;
  tGATT_REG* p_reg = NULL;
  uint16_t conn_id;
  std::vector<tGATT_IF> apps;
  std::vector<tGATT_IF> opp_apps;
  uint8_t i = 0;

  VLOG(1) << __func__ << " cid:" << +cid << " congested:" << +congested;
  if (!p_eatt_bcb) {
    VLOG(1) << __func__ << " error, p_eatt_bcb is null";
    return ret;
  }

  p_tcb = p_eatt_bcb->p_tcb;
  apps = p_eatt_bcb->apps;
  opp_apps = p_eatt_bcb->opportunistic_apps;
  apps.insert(apps.end(), opp_apps.begin(), opp_apps.end());

  if (congested) {
    VLOG(1) << __func__ << " sending congestion cb to apps on EATT channel:" << +cid;
    /* notifying all applications on the EATT channel with congestion cb */
    for (i = 0; i < apps.size(); i++) {
      p_reg = gatt_get_regcb(apps[i]);
      if (p_reg && p_reg->in_use) {
        if (p_reg->app_cb.p_congestion_cb && p_tcb) {
          conn_id = GATT_CREATE_CONN_ID(p_tcb->tcb_idx, p_reg->gatt_if);
          (*p_reg->app_cb.p_congestion_cb)(conn_id, true);
        }
      }
    }
    ret = true;
  }
  else {
    if (p_eatt_bcb->send_uncongestion && p_eatt_bcb->cl_cmd_q.empty()
        && fixed_queue_is_empty(p_eatt_bcb->pending_ind_q)
        && p_eatt_bcb->notif_q.empty() && p_eatt_bcb->gatt_rsp_q.empty()
        && p_eatt_bcb->gatt_disc_rsp_q.empty()) {
      VLOG(1) << __func__ << " All queues for this EATT chnl are empty,"
                             " send uncongestion cb to apps";

      /* notifying all applications on the EATT channel with uncongestion cb */
      for (i = 0; i < apps.size(); i++) {
        p_reg = gatt_get_regcb(apps[i]);
        if (p_reg && p_reg->in_use) {
          if (p_reg->app_cb.p_congestion_cb && p_tcb) {
            conn_id = GATT_CREATE_CONN_ID(p_tcb->tcb_idx, p_reg->gatt_if);
            (*p_reg->app_cb.p_congestion_cb)(conn_id, false);
          }
        }
      }
      p_eatt_bcb->send_uncongestion = false;
      p_eatt_bcb->no_credits = false;
      ret = true;
    }
  }

  return ret;
}

/*******************************************************************************
 *
 * Function         gatt_send_conn_cb_after_enc_failure
 *
 * Description      The function sends connection complete cb to apps which have
 *                  requested for EATT after encryption failure.
 *                  Encryption failure generally happens with Pin or Key Missing
 *                  status.
 *
 * Returns          void
 *
 ******************************************************************************/
void gatt_send_conn_cb_after_enc_failure(tGATT_TCB* p_tcb) {
  uint8_t i;
  tGATT_REG* p_reg;
  uint16_t conn_id;

  if (!p_tcb) {
    VLOG(1) << __func__ << "p_tcb is NULL ";
    return;
  }

  VLOG(1) << __func__ << " : address " << p_tcb->peer_bda;
  std::set<tGATT_IF> apps =
      connection_manager::get_apps_connecting_to(p_tcb->peer_bda);
  std::unordered_set<uint8_t> dir_conn_apps = p_tcb->app_hold_link;
  bool is_eatt_dev = is_eatt_device(p_tcb->peer_bda);

  /* notifying all applications for the connection up event */
  for (i = 0, p_reg = gatt_cb.cl_rcb; i < GATT_MAX_APPS; i++, p_reg++) {
    bool is_app_req_eatt_conn = false;
    if (!p_reg->in_use) continue;

    if (apps.find(p_reg->gatt_if) != apps.end()) {
      if (p_reg->eatt_support)
        is_app_req_eatt_conn = true;
    }

    if (dir_conn_apps.find(p_reg->gatt_if) != dir_conn_apps.end()) {
      if (p_reg->eatt_support)
        is_app_req_eatt_conn = true;
    }

    if (is_eatt_dev && is_app_req_eatt_conn) {
      if (p_reg->app_cb.p_conn_cb) {
        conn_id = GATT_CREATE_CONN_ID(p_tcb->tcb_idx, p_reg->gatt_if);
        VLOG(1) << __func__ << " Sending conn cb after encrypt failure:"
                               " conn_id: " << conn_id;
        (*p_reg->app_cb.p_conn_cb)(p_reg->gatt_if, p_tcb->peer_bda, conn_id, true,
                                   0, p_tcb->transport);
      }
    }
  }
}

/*******************************************************************************
 *
 * Function         gatt_move_att_ops_from_eatt_bcb
 *
 * Description      The function moves ATT channel ops from EATT bcb to p_tcb
 *
 * Returns          void
 *
 ******************************************************************************/
void gatt_move_att_ops_from_eatt_bcb(tGATT_TCB* p_tcb) {
  tGATT_EBCB* p_eatt_bcb = NULL;

  VLOG(1) << __func__;
  p_eatt_bcb = gatt_find_eatt_bcb_by_cid(p_tcb, L2CAP_ATT_CID);
  if (!p_eatt_bcb) {
    VLOG(1) << __func__ << " p_eatt_bcb not available for ATT CID: ";
    return;
  }

  p_tcb->payload_size = p_eatt_bcb->payload_size;
  p_tcb->ind_ack_timer = p_eatt_bcb->ind_ack_timer;
  p_tcb->conf_timer = p_eatt_bcb->conf_timer;
  p_tcb->cl_cmd_q = p_eatt_bcb->cl_cmd_q;
  p_tcb->pending_ind_q = p_eatt_bcb->pending_ind_q;
  p_tcb->indicate_handle = p_eatt_bcb->indicate_handle;
  p_tcb->sr_cmd = p_eatt_bcb->sr_cmd;
  p_tcb->sr_cmd.multi_rsp_q = p_eatt_bcb->sr_cmd.multi_rsp_q;
}