OSDN Git Service

9b944a7ec78c3cb59d8dcad2cb6e71a264423cd6
[android-x86/system-bt.git] / stack / l2cap / l2c_ble.c
1 /******************************************************************************
2  *
3  *  Copyright (C) 2009-2012 Broadcom Corporation
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at:
8  *
9  *  http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  ******************************************************************************/
18
19 /******************************************************************************
20  *
21  *  this file contains functions relating to BLE management.
22  *
23  ******************************************************************************/
24
25 #include <string.h>
26 #include "bt_target.h"
27 #include "bt_utils.h"
28 #include "l2cdefs.h"
29 #include "l2c_int.h"
30 #include "btu.h"
31 #include "btm_int.h"
32 #include "hcimsgs.h"
33 #include "device/include/controller.h"
34 #include "stack_config.h"
35 #include "btif_debug_l2c.h"
36 #include "log/log.h"
37
38 #if (BLE_INCLUDED == TRUE)
39
40 extern fixed_queue_t *btu_general_alarm_queue;
41
42 static void l2cble_start_conn_update (tL2C_LCB *p_lcb);
43
44 /*******************************************************************************
45 **
46 **  Function        L2CA_CancelBleConnectReq
47 **
48 **  Description     Cancel a pending connection attempt to a BLE device.
49 **
50 **  Parameters:     BD Address of remote
51 **
52 **  Return value:   TRUE if connection was cancelled
53 **
54 *******************************************************************************/
55 BOOLEAN L2CA_CancelBleConnectReq (BD_ADDR rem_bda)
56 {
57     tL2C_LCB *p_lcb;
58
59     /* There can be only one BLE connection request outstanding at a time */
60     if (btm_ble_get_conn_st() == BLE_CONN_IDLE)
61     {
62         L2CAP_TRACE_WARNING ("L2CA_CancelBleConnectReq - no connection pending");
63         return(FALSE);
64     }
65
66     if (memcmp (rem_bda, l2cb.ble_connecting_bda, BD_ADDR_LEN))
67     {
68         L2CAP_TRACE_WARNING ("L2CA_CancelBleConnectReq - different  BDA Connecting: %08x%04x  Cancel: %08x%04x",
69                               (l2cb.ble_connecting_bda[0]<<24)+(l2cb.ble_connecting_bda[1]<<16)+(l2cb.ble_connecting_bda[2]<<8)+l2cb.ble_connecting_bda[3],
70                               (l2cb.ble_connecting_bda[4]<<8)+l2cb.ble_connecting_bda[5],
71                               (rem_bda[0]<<24)+(rem_bda[1]<<16)+(rem_bda[2]<<8)+rem_bda[3], (rem_bda[4]<<8)+rem_bda[5]);
72
73         return(FALSE);
74     }
75
76     if (btsnd_hcic_ble_create_conn_cancel())
77     {
78         p_lcb = l2cu_find_lcb_by_bd_addr(rem_bda, BT_TRANSPORT_LE);
79         /* Do not remove lcb if an LE link is already up as a peripheral */
80         if (p_lcb != NULL &&
81             !(p_lcb->link_role == HCI_ROLE_SLAVE && btm_bda_to_acl(rem_bda, BT_TRANSPORT_LE) != NULL))
82         {
83             p_lcb->disc_reason = L2CAP_CONN_CANCEL;
84             l2cu_release_lcb (p_lcb);
85         }
86         /* update state to be cancel, wait for connection cancel complete */
87         btm_ble_set_conn_st (BLE_CONN_CANCEL);
88
89         return(TRUE);
90     }
91     else
92         return(FALSE);
93 }
94
95 /*******************************************************************************
96 **
97 **  Function        L2CA_UpdateBleConnParams
98 **
99 **  Description     Update BLE connection parameters.
100 **
101 **  Parameters:     BD Address of remote
102 **
103 **  Return value:   TRUE if update started
104 **
105 *******************************************************************************/
106 BOOLEAN L2CA_UpdateBleConnParams (BD_ADDR rem_bda, UINT16 min_int, UINT16 max_int,
107                                             UINT16 latency, UINT16 timeout)
108 {
109     tL2C_LCB            *p_lcb;
110     tACL_CONN           *p_acl_cb = btm_bda_to_acl(rem_bda, BT_TRANSPORT_LE);
111
112     /* See if we have a link control block for the remote device */
113     p_lcb = l2cu_find_lcb_by_bd_addr (rem_bda, BT_TRANSPORT_LE);
114
115     /* If we don't have one, create one and accept the connection. */
116     if (!p_lcb || !p_acl_cb)
117     {
118         L2CAP_TRACE_WARNING ("L2CA_UpdateBleConnParams - unknown BD_ADDR %08x%04x",
119                               (rem_bda[0]<<24)+(rem_bda[1]<<16)+(rem_bda[2]<<8)+rem_bda[3],
120                               (rem_bda[4]<<8)+rem_bda[5]);
121         return(FALSE);
122     }
123
124     if (p_lcb->transport != BT_TRANSPORT_LE)
125     {
126         L2CAP_TRACE_WARNING ("L2CA_UpdateBleConnParams - BD_ADDR %08x%04x not LE",
127                               (rem_bda[0]<<24)+(rem_bda[1]<<16)+(rem_bda[2]<<8)+rem_bda[3],
128                               (rem_bda[4]<<8)+rem_bda[5]);
129         return(FALSE);
130     }
131
132     p_lcb->min_interval = min_int;
133     p_lcb->max_interval = max_int;
134     p_lcb->latency = latency;
135     p_lcb->timeout = timeout;
136     p_lcb->conn_update_mask |= L2C_BLE_NEW_CONN_PARAM;
137
138     l2cble_start_conn_update(p_lcb);
139
140     return(TRUE);
141 }
142
143
144 /*******************************************************************************
145 **
146 **  Function        L2CA_EnableUpdateBleConnParams
147 **
148 **  Description     Enable or disable update based on the request from the peer
149 **
150 **  Parameters:     BD Address of remote
151 **
152 **  Return value:   TRUE if update started
153 **
154 *******************************************************************************/
155 BOOLEAN L2CA_EnableUpdateBleConnParams (BD_ADDR rem_bda, BOOLEAN enable)
156 {
157     if (stack_config_get_interface()->get_pts_conn_updates_disabled())
158         return false;
159
160     tL2C_LCB            *p_lcb;
161
162     /* See if we have a link control block for the remote device */
163     p_lcb = l2cu_find_lcb_by_bd_addr (rem_bda, BT_TRANSPORT_LE);
164
165     if (!p_lcb)
166     {
167         L2CAP_TRACE_WARNING ("L2CA_EnableUpdateBleConnParams - unknown BD_ADDR %08x%04x",
168             (rem_bda[0]<<24)+(rem_bda[1]<<16)+(rem_bda[2]<<8)+rem_bda[3],
169             (rem_bda[4]<<8)+rem_bda[5]);
170         return (FALSE);
171     }
172
173     L2CAP_TRACE_API ("%s - BD_ADDR %08x%04x enable %d current upd state 0x%02x",__FUNCTION__,
174         (rem_bda[0]<<24)+(rem_bda[1]<<16)+(rem_bda[2]<<8)+rem_bda[3],
175         (rem_bda[4]<<8)+rem_bda[5], enable, p_lcb->conn_update_mask);
176
177     if (p_lcb->transport != BT_TRANSPORT_LE)
178     {
179         L2CAP_TRACE_WARNING ("%s - BD_ADDR %08x%04x not LE (link role %d)", __FUNCTION__,
180                               (rem_bda[0]<<24)+(rem_bda[1]<<16)+(rem_bda[2]<<8)+rem_bda[3],
181                               (rem_bda[4]<<8)+rem_bda[5], p_lcb->link_role);
182         return (FALSE);
183     }
184
185     if (enable)
186         p_lcb->conn_update_mask &= ~L2C_BLE_CONN_UPDATE_DISABLE;
187     else
188         p_lcb->conn_update_mask |= L2C_BLE_CONN_UPDATE_DISABLE;
189
190     l2cble_start_conn_update(p_lcb);
191
192     return (TRUE);
193 }
194
195
196 /*******************************************************************************
197 **
198 ** Function         L2CA_GetBleConnRole
199 **
200 ** Description      This function returns the connection role.
201 **
202 ** Returns          link role.
203 **
204 *******************************************************************************/
205 UINT8 L2CA_GetBleConnRole (BD_ADDR bd_addr)
206 {
207     UINT8       role = HCI_ROLE_UNKNOWN;
208
209     tL2C_LCB *p_lcb;
210
211     if ((p_lcb = l2cu_find_lcb_by_bd_addr (bd_addr, BT_TRANSPORT_LE)) != NULL)
212         role = p_lcb->link_role;
213
214     return role;
215 }
216 /*******************************************************************************
217 **
218 ** Function         L2CA_GetDisconnectReason
219 **
220 ** Description      This function returns the disconnect reason code.
221 **
222 ** Returns          disconnect reason
223 **
224 *******************************************************************************/
225 UINT16 L2CA_GetDisconnectReason (BD_ADDR remote_bda, tBT_TRANSPORT transport)
226 {
227     tL2C_LCB            *p_lcb;
228     UINT16              reason = 0;
229
230     if ((p_lcb = l2cu_find_lcb_by_bd_addr (remote_bda, transport)) != NULL)
231         reason = p_lcb->disc_reason;
232
233     L2CAP_TRACE_DEBUG ("L2CA_GetDisconnectReason=%d ",reason);
234
235     return reason;
236 }
237
238 /*******************************************************************************
239 **
240 ** Function l2cble_notify_le_connection
241 **
242 ** Description This function notifiy the l2cap connection to the app layer
243 **
244 ** Returns none
245 **
246 *******************************************************************************/
247 void l2cble_notify_le_connection (BD_ADDR bda)
248 {
249     tL2C_LCB *p_lcb = l2cu_find_lcb_by_bd_addr (bda, BT_TRANSPORT_LE);
250     tACL_CONN *p_acl = btm_bda_to_acl(bda, BT_TRANSPORT_LE) ;
251     tL2C_CCB *p_ccb;
252
253     if (p_lcb != NULL && p_acl != NULL && p_lcb->link_state != LST_CONNECTED)
254     {
255         /* update link status */
256         btm_establish_continue(p_acl);
257         /* update l2cap link status and send callback */
258         p_lcb->link_state = LST_CONNECTED;
259         l2cu_process_fixed_chnl_resp (p_lcb);
260     }
261
262     if (p_lcb != NULL) {
263         /* For all channels, send the event through their FSMs */
264         for (p_ccb = p_lcb->ccb_queue.p_first_ccb; p_ccb; p_ccb = p_ccb->p_next_ccb)
265         {
266             if (p_ccb->chnl_state == CST_CLOSED)
267                 l2c_csm_execute (p_ccb, L2CEVT_LP_CONNECT_CFM, NULL);
268         }
269     }
270 }
271
272 /*******************************************************************************
273 **
274 ** Function         l2cble_scanner_conn_comp
275 **
276 ** Description      This function is called when an HCI Connection Complete
277 **                  event is received while we are a scanner (so we are master).
278 **
279 ** Returns          void
280 **
281 *******************************************************************************/
282 void l2cble_scanner_conn_comp (UINT16 handle, BD_ADDR bda, tBLE_ADDR_TYPE type,
283                                UINT16 conn_interval, UINT16 conn_latency, UINT16 conn_timeout)
284 {
285     tL2C_LCB            *p_lcb;
286     tBTM_SEC_DEV_REC    *p_dev_rec = btm_find_or_alloc_dev (bda);
287
288     L2CAP_TRACE_DEBUG ("l2cble_scanner_conn_comp: HANDLE=%d addr_type=%d conn_interval=%d slave_latency=%d supervision_tout=%d",
289                         handle,  type, conn_interval, conn_latency, conn_timeout);
290
291     l2cb.is_ble_connecting = FALSE;
292
293     /* See if we have a link control block for the remote device */
294     p_lcb = l2cu_find_lcb_by_bd_addr (bda, BT_TRANSPORT_LE);
295
296     /* If we don't have one, create one. this is auto connection complete. */
297     if (!p_lcb)
298     {
299         p_lcb = l2cu_allocate_lcb (bda, FALSE, BT_TRANSPORT_LE);
300         if (!p_lcb)
301         {
302             btm_sec_disconnect (handle, HCI_ERR_NO_CONNECTION);
303             L2CAP_TRACE_ERROR ("l2cble_scanner_conn_comp - failed to allocate LCB");
304             return;
305         }
306         else
307         {
308             if (!l2cu_initialize_fixed_ccb (p_lcb, L2CAP_ATT_CID, &l2cb.fixed_reg[L2CAP_ATT_CID - L2CAP_FIRST_FIXED_CHNL].fixed_chnl_opts))
309             {
310                 btm_sec_disconnect (handle, HCI_ERR_NO_CONNECTION);
311                 L2CAP_TRACE_WARNING ("l2cble_scanner_conn_comp - LCB but no CCB");
312                 return ;
313             }
314         }
315     }
316     else if (p_lcb->link_state != LST_CONNECTING)
317     {
318         L2CAP_TRACE_ERROR ("L2CAP got BLE scanner conn_comp in bad state: %d", p_lcb->link_state);
319         return;
320     }
321     alarm_cancel(p_lcb->l2c_lcb_timer);
322
323     /* Save the handle */
324     p_lcb->handle = handle;
325
326     /* Connected OK. Change state to connected, we were scanning so we are master */
327     p_lcb->link_role  = HCI_ROLE_MASTER;
328     p_lcb->transport  = BT_TRANSPORT_LE;
329
330     /* update link parameter, set slave link as non-spec default upon link up */
331     p_lcb->min_interval =  p_lcb->max_interval = conn_interval;
332     p_lcb->timeout      =  conn_timeout;
333     p_lcb->latency      =  conn_latency;
334     p_lcb->conn_update_mask = L2C_BLE_NOT_DEFAULT_PARAM;
335
336     /* Tell BTM Acl management about the link */
337     btm_acl_created (bda, NULL, p_dev_rec->sec_bd_name, handle, p_lcb->link_role, BT_TRANSPORT_LE);
338
339     p_lcb->peer_chnl_mask[0] = L2CAP_FIXED_CHNL_ATT_BIT | L2CAP_FIXED_CHNL_BLE_SIG_BIT | L2CAP_FIXED_CHNL_SMP_BIT;
340
341     btm_ble_set_conn_st(BLE_CONN_IDLE);
342
343 #if BLE_PRIVACY_SPT == TRUE
344     btm_ble_disable_resolving_list(BTM_BLE_RL_INIT, TRUE);
345 #endif
346 }
347
348
349 /*******************************************************************************
350 **
351 ** Function         l2cble_advertiser_conn_comp
352 **
353 ** Description      This function is called when an HCI Connection Complete
354 **                  event is received while we are an advertiser (so we are slave).
355 **
356 ** Returns          void
357 **
358 *******************************************************************************/
359 void l2cble_advertiser_conn_comp (UINT16 handle, BD_ADDR bda, tBLE_ADDR_TYPE type,
360                                   UINT16 conn_interval, UINT16 conn_latency, UINT16 conn_timeout)
361 {
362     tL2C_LCB            *p_lcb;
363     tBTM_SEC_DEV_REC    *p_dev_rec;
364     UNUSED(type);
365     UNUSED(conn_interval);
366     UNUSED(conn_latency);
367     UNUSED(conn_timeout);
368
369     /* See if we have a link control block for the remote device */
370     p_lcb = l2cu_find_lcb_by_bd_addr (bda, BT_TRANSPORT_LE);
371
372     /* If we don't have one, create one and accept the connection. */
373     if (!p_lcb)
374     {
375         p_lcb = l2cu_allocate_lcb (bda, FALSE, BT_TRANSPORT_LE);
376         if (!p_lcb)
377         {
378             btm_sec_disconnect (handle, HCI_ERR_NO_CONNECTION);
379             L2CAP_TRACE_ERROR ("l2cble_advertiser_conn_comp - failed to allocate LCB");
380             return;
381         }
382         else
383         {
384             if (!l2cu_initialize_fixed_ccb (p_lcb, L2CAP_ATT_CID, &l2cb.fixed_reg[L2CAP_ATT_CID - L2CAP_FIRST_FIXED_CHNL].fixed_chnl_opts))
385             {
386                 btm_sec_disconnect (handle, HCI_ERR_NO_CONNECTION);
387                 L2CAP_TRACE_WARNING ("l2cble_scanner_conn_comp - LCB but no CCB");
388                 return ;
389             }
390         }
391     }
392
393     /* Save the handle */
394     p_lcb->handle = handle;
395
396     /* Connected OK. Change state to connected, we were advertising, so we are slave */
397     p_lcb->link_role  = HCI_ROLE_SLAVE;
398     p_lcb->transport  = BT_TRANSPORT_LE;
399
400     /* update link parameter, set slave link as non-spec default upon link up */
401     p_lcb->min_interval = p_lcb->max_interval = conn_interval;
402     p_lcb->timeout      =  conn_timeout;
403     p_lcb->latency      =  conn_latency;
404     p_lcb->conn_update_mask = L2C_BLE_NOT_DEFAULT_PARAM;
405
406     /* Tell BTM Acl management about the link */
407     p_dev_rec = btm_find_or_alloc_dev (bda);
408
409     btm_acl_created (bda, NULL, p_dev_rec->sec_bd_name, handle, p_lcb->link_role, BT_TRANSPORT_LE);
410
411 #if BLE_PRIVACY_SPT == TRUE
412     btm_ble_disable_resolving_list(BTM_BLE_RL_ADV, TRUE);
413 #endif
414
415     p_lcb->peer_chnl_mask[0] = L2CAP_FIXED_CHNL_ATT_BIT | L2CAP_FIXED_CHNL_BLE_SIG_BIT | L2CAP_FIXED_CHNL_SMP_BIT;
416
417     if (!HCI_LE_SLAVE_INIT_FEAT_EXC_SUPPORTED(controller_get_interface()->get_features_ble()->as_array))
418     {
419         p_lcb->link_state = LST_CONNECTED;
420         l2cu_process_fixed_chnl_resp (p_lcb);
421     }
422
423     /* when adv and initiating are both active, cancel the direct connection */
424     if (l2cb.is_ble_connecting && memcmp(bda, l2cb.ble_connecting_bda, BD_ADDR_LEN) == 0)
425     {
426         L2CA_CancelBleConnectReq(bda);
427     }
428 }
429
430 /*******************************************************************************
431 **
432 ** Function         l2cble_conn_comp
433 **
434 ** Description      This function is called when an HCI Connection Complete
435 **                  event is received.
436 **
437 ** Returns          void
438 **
439 *******************************************************************************/
440 void l2cble_conn_comp(UINT16 handle, UINT8 role, BD_ADDR bda, tBLE_ADDR_TYPE type,
441                       UINT16 conn_interval, UINT16 conn_latency, UINT16 conn_timeout)
442 {
443     btm_ble_update_link_topology_mask(role, TRUE);
444
445     if (role == HCI_ROLE_MASTER)
446     {
447         l2cble_scanner_conn_comp(handle, bda, type, conn_interval, conn_latency, conn_timeout);
448     }
449     else
450     {
451         l2cble_advertiser_conn_comp(handle, bda, type, conn_interval, conn_latency, conn_timeout);
452     }
453 }
454
455 /*******************************************************************************
456 **
457 **  Function        l2cble_start_conn_update
458 **
459 **  Description     start BLE connection parameter update process based on status
460 **
461 **  Parameters:     lcb : l2cap link control block
462 **
463 **  Return value:   none
464 **
465 *******************************************************************************/
466 static void l2cble_start_conn_update (tL2C_LCB *p_lcb)
467 {
468     UINT16 min_conn_int, max_conn_int, slave_latency, supervision_tout;
469     tACL_CONN *p_acl_cb = btm_bda_to_acl(p_lcb->remote_bd_addr, BT_TRANSPORT_LE);
470
471     // TODO(armansito): The return value of this call wasn't being used but the
472     // logic of this function might be depending on its side effects. We should
473     // verify if this call is needed at all and remove it otherwise.
474     btm_find_or_alloc_dev(p_lcb->remote_bd_addr);
475
476     if (p_lcb->conn_update_mask & L2C_BLE_UPDATE_PENDING) return;
477
478     if (p_lcb->conn_update_mask & L2C_BLE_CONN_UPDATE_DISABLE)
479     {
480         /* application requests to disable parameters update.
481            If parameters are already updated, lets set them
482            up to what has been requested during connection establishement */
483         if (p_lcb->conn_update_mask & L2C_BLE_NOT_DEFAULT_PARAM &&
484             /* current connection interval is greater than default min */
485             p_lcb->min_interval > BTM_BLE_CONN_INT_MIN)
486         {
487             /* use 7.5 ms as fast connection parameter, 0 slave latency */
488             min_conn_int = max_conn_int = BTM_BLE_CONN_INT_MIN;
489             slave_latency = BTM_BLE_CONN_SLAVE_LATENCY_DEF;
490             supervision_tout = BTM_BLE_CONN_TIMEOUT_DEF;
491
492             /* if both side 4.1, or we are master device, send HCI command */
493             if (p_lcb->link_role == HCI_ROLE_MASTER
494 #if (defined BLE_LLT_INCLUDED) && (BLE_LLT_INCLUDED == TRUE)
495                 || (HCI_LE_CONN_PARAM_REQ_SUPPORTED(controller_get_interface()->get_features_ble()->as_array) &&
496                     HCI_LE_CONN_PARAM_REQ_SUPPORTED(p_acl_cb->peer_le_features))
497 #endif
498                  )
499             {
500                 btsnd_hcic_ble_upd_ll_conn_params(p_lcb->handle, min_conn_int, max_conn_int,
501                                                   slave_latency, supervision_tout, 0, 0);
502                 p_lcb->conn_update_mask |= L2C_BLE_UPDATE_PENDING;
503             }
504             else
505             {
506                 l2cu_send_peer_ble_par_req (p_lcb, min_conn_int, max_conn_int, slave_latency, supervision_tout);
507             }
508             p_lcb->conn_update_mask &= ~L2C_BLE_NOT_DEFAULT_PARAM;
509             p_lcb->conn_update_mask |=  L2C_BLE_NEW_CONN_PARAM;
510          }
511     }
512     else
513     {
514         /* application allows to do update, if we were delaying one do it now */
515         if (p_lcb->conn_update_mask & L2C_BLE_NEW_CONN_PARAM)
516         {
517              /* if both side 4.1, or we are master device, send HCI command */
518             if (p_lcb->link_role == HCI_ROLE_MASTER
519 #if (defined BLE_LLT_INCLUDED) && (BLE_LLT_INCLUDED == TRUE)
520                 || (HCI_LE_CONN_PARAM_REQ_SUPPORTED(controller_get_interface()->get_features_ble()->as_array) &&
521                     HCI_LE_CONN_PARAM_REQ_SUPPORTED(p_acl_cb->peer_le_features))
522 #endif
523                  )
524             {
525                 btsnd_hcic_ble_upd_ll_conn_params(p_lcb->handle, p_lcb->min_interval,
526                     p_lcb->max_interval, p_lcb->latency, p_lcb->timeout, 0, 0);
527                 p_lcb->conn_update_mask |= L2C_BLE_UPDATE_PENDING;
528             }
529             else
530             {
531                 l2cu_send_peer_ble_par_req (p_lcb, p_lcb->min_interval, p_lcb->max_interval,
532                                             p_lcb->latency, p_lcb->timeout);
533             }
534             p_lcb->conn_update_mask &= ~L2C_BLE_NEW_CONN_PARAM;
535             p_lcb->conn_update_mask |= L2C_BLE_NOT_DEFAULT_PARAM;
536         }
537     }
538
539     /* Record the BLE connection update request. */
540     if (p_lcb->conn_update_mask & L2C_BLE_UPDATE_PENDING) {
541       bt_bdaddr_t bd_addr;
542       bdcpy(bd_addr.address, p_lcb->remote_bd_addr);
543       btif_debug_ble_connection_update_request(bd_addr, min_conn_int, max_conn_int, slave_latency,
544           supervision_tout);
545     }
546 }
547
548 /*******************************************************************************
549 **
550 ** Function         l2cble_process_conn_update_evt
551 **
552 ** Description      This function enables the connection update request from remote
553 **                  after a successful connection update response is received.
554 **
555 ** Returns          void
556 **
557 *******************************************************************************/
558 void l2cble_process_conn_update_evt (UINT16 handle, UINT8 status,
559                   UINT16 interval, UINT16 latency, UINT16 timeout)
560 {
561     L2CAP_TRACE_DEBUG("%s", __func__);
562
563     /* See if we have a link control block for the remote device */
564     tL2C_LCB *p_lcb = l2cu_find_lcb_by_handle(handle);
565     if (!p_lcb)
566     {
567         L2CAP_TRACE_WARNING("%s: Invalid handle: %d", __func__, handle);
568         return;
569     }
570
571     p_lcb->conn_update_mask &= ~L2C_BLE_UPDATE_PENDING;
572
573     if (status != HCI_SUCCESS)
574     {
575         L2CAP_TRACE_WARNING("%s: Error status: %d", __func__, status);
576     }
577
578     l2cble_start_conn_update(p_lcb);
579
580     /* Record the BLE connection update response. */
581     bt_bdaddr_t bd_addr;
582     bdcpy(bd_addr.address, p_lcb->remote_bd_addr);
583     btif_debug_ble_connection_update_response(bd_addr, status, interval,
584         latency, timeout);
585
586     L2CAP_TRACE_DEBUG("%s: conn_update_mask=%d", __func__, p_lcb->conn_update_mask);
587 }
588
589 /*******************************************************************************
590 **
591 ** Function         l2cble_process_sig_cmd
592 **
593 ** Description      This function is called when a signalling packet is received
594 **                  on the BLE signalling CID
595 **
596 ** Returns          void
597 **
598 *******************************************************************************/
599 void l2cble_process_sig_cmd (tL2C_LCB *p_lcb, UINT8 *p, UINT16 pkt_len)
600 {
601     UINT8           *p_pkt_end;
602     UINT8           cmd_code, id;
603     UINT16          cmd_len;
604     UINT16          min_interval, max_interval, latency, timeout;
605     tL2C_CONN_INFO  con_info;
606     UINT16          lcid = 0, rcid = 0, mtu = 0, mps = 0, initial_credit = 0;
607     tL2C_CCB        *p_ccb = NULL, *temp_p_ccb = NULL;
608     tL2C_RCB        *p_rcb;
609     UINT16          credit;
610     p_pkt_end = p + pkt_len;
611
612     STREAM_TO_UINT8  (cmd_code, p);
613     STREAM_TO_UINT8  (id, p);
614     STREAM_TO_UINT16 (cmd_len, p);
615
616     /* Check command length does not exceed packet length */
617     if ((p + cmd_len) > p_pkt_end)
618     {
619         L2CAP_TRACE_WARNING ("L2CAP - LE - format error, pkt_len: %d  cmd_len: %d  code: %d", pkt_len, cmd_len, cmd_code);
620         return;
621     }
622
623     switch (cmd_code)
624     {
625         case L2CAP_CMD_REJECT:
626             p += 2;
627             break;
628
629         case L2CAP_CMD_ECHO_REQ:
630         case L2CAP_CMD_ECHO_RSP:
631         case L2CAP_CMD_INFO_RSP:
632         case L2CAP_CMD_INFO_REQ:
633             l2cu_send_peer_cmd_reject (p_lcb, L2CAP_CMD_REJ_NOT_UNDERSTOOD, id, 0, 0);
634             break;
635
636         case L2CAP_CMD_BLE_UPDATE_REQ:
637             STREAM_TO_UINT16 (min_interval, p); /* 0x0006 - 0x0C80 */
638             STREAM_TO_UINT16 (max_interval, p); /* 0x0006 - 0x0C80 */
639             STREAM_TO_UINT16 (latency, p);  /* 0x0000 - 0x03E8 */
640             STREAM_TO_UINT16 (timeout, p);  /* 0x000A - 0x0C80 */
641             /* If we are a master, the slave wants to update the parameters */
642             if (p_lcb->link_role == HCI_ROLE_MASTER)
643             {
644                 if (min_interval < BTM_BLE_CONN_INT_MIN_LIMIT)
645                     min_interval = BTM_BLE_CONN_INT_MIN_LIMIT;
646
647                 if (min_interval < BTM_BLE_CONN_INT_MIN || min_interval > BTM_BLE_CONN_INT_MAX ||
648                     max_interval < BTM_BLE_CONN_INT_MIN || max_interval > BTM_BLE_CONN_INT_MAX ||
649                     latency  > BTM_BLE_CONN_LATENCY_MAX ||
650                     /*(timeout >= max_interval && latency > (timeout * 10/(max_interval * 1.25) - 1)) ||*/
651                     timeout < BTM_BLE_CONN_SUP_TOUT_MIN || timeout > BTM_BLE_CONN_SUP_TOUT_MAX ||
652                     max_interval < min_interval)
653                 {
654                     l2cu_send_peer_ble_par_rsp (p_lcb, L2CAP_CFG_UNACCEPTABLE_PARAMS, id);
655                 }
656                 else
657                 {
658
659                     l2cu_send_peer_ble_par_rsp (p_lcb, L2CAP_CFG_OK, id);
660
661                      p_lcb->min_interval = min_interval;
662                      p_lcb->max_interval = max_interval;
663                      p_lcb->latency = latency;
664                      p_lcb->timeout = timeout;
665                      p_lcb->conn_update_mask |= L2C_BLE_NEW_CONN_PARAM;
666
667                      l2cble_start_conn_update(p_lcb);
668                 }
669             }
670             else
671                 l2cu_send_peer_cmd_reject (p_lcb, L2CAP_CMD_REJ_NOT_UNDERSTOOD, id, 0, 0);
672             break;
673
674         case L2CAP_CMD_BLE_UPDATE_RSP:
675             p += 2;
676             break;
677
678         case L2CAP_CMD_BLE_CREDIT_BASED_CONN_REQ:
679             STREAM_TO_UINT16 (con_info.psm, p);
680             STREAM_TO_UINT16 (rcid, p);
681             STREAM_TO_UINT16 (mtu, p);
682             STREAM_TO_UINT16 (mps, p);
683             STREAM_TO_UINT16 (initial_credit, p);
684
685             L2CAP_TRACE_DEBUG ("Recv L2CAP_CMD_BLE_CREDIT_BASED_CONN_REQ with "
686                     "mtu = %d, "
687                     "mps = %d, "
688                     "initial credit = %d", mtu, mps, initial_credit);
689
690             if ((p_rcb = l2cu_find_ble_rcb_by_psm (con_info.psm)) == NULL)
691             {
692                 L2CAP_TRACE_WARNING ("L2CAP - rcvd conn req for unknown PSM: 0x%04x", con_info.psm);
693                 l2cu_reject_ble_connection (p_lcb, id, L2CAP_LE_NO_PSM);
694                 break;
695             }
696             else
697             {
698                 if (!p_rcb->api.pL2CA_ConnectInd_Cb)
699                 {
700                     L2CAP_TRACE_WARNING ("L2CAP - rcvd conn req for outgoing-only connection PSM: %d", con_info.psm);
701                     l2cu_reject_ble_connection (p_lcb, id, L2CAP_CONN_NO_PSM);
702                     break;
703                 }
704             }
705
706             /* Allocate a ccb for this.*/
707             if ((p_ccb = l2cu_allocate_ccb (p_lcb, 0)) == NULL)
708             {
709                 L2CAP_TRACE_ERROR ("L2CAP - unable to allocate CCB");
710                 l2cu_reject_ble_connection (p_lcb, id, L2CAP_CONN_NO_RESOURCES);
711                 break;
712             }
713
714             /* validate the parameters */
715             if (mtu < L2CAP_LE_MIN_MTU || mps < L2CAP_LE_MIN_MPS || mps > L2CAP_LE_MAX_MPS)
716             {
717                 L2CAP_TRACE_ERROR ("L2CAP don't like the params");
718                 l2cu_reject_ble_connection (p_lcb, id, L2CAP_CONN_NO_RESOURCES);
719                 break;
720             }
721
722             p_ccb->remote_id = id;
723             p_ccb->p_rcb = p_rcb;
724             p_ccb->remote_cid = rcid;
725
726             p_ccb->peer_conn_cfg.mtu = mtu;
727             p_ccb->peer_conn_cfg.mps = mps;
728             p_ccb->peer_conn_cfg.credits = initial_credit;
729
730             p_ccb->tx_mps = mps;
731             p_ccb->ble_sdu = NULL;
732             p_ccb->ble_sdu_length = 0;
733             p_ccb->is_first_seg = TRUE;
734             p_ccb->peer_cfg.fcr.mode = L2CAP_FCR_LE_COC_MODE;
735
736             l2c_csm_execute(p_ccb, L2CEVT_L2CAP_CONNECT_REQ, &con_info);
737             break;
738
739         case L2CAP_CMD_BLE_CREDIT_BASED_CONN_RES:
740             L2CAP_TRACE_DEBUG ("Recv L2CAP_CMD_BLE_CREDIT_BASED_CONN_RES");
741             /* For all channels, see whose identifier matches this id */
742             for (temp_p_ccb = p_lcb->ccb_queue.p_first_ccb; temp_p_ccb; temp_p_ccb = temp_p_ccb->p_next_ccb)
743             {
744                 if (temp_p_ccb->local_id == id)
745                 {
746                     p_ccb = temp_p_ccb;
747                     break;
748                 }
749             }
750             if (p_ccb)
751             {
752                 L2CAP_TRACE_DEBUG ("I remember the connection req");
753                 STREAM_TO_UINT16 (p_ccb->remote_cid, p);
754                 STREAM_TO_UINT16 (p_ccb->peer_conn_cfg.mtu, p);
755                 STREAM_TO_UINT16 (p_ccb->peer_conn_cfg.mps, p);
756                 STREAM_TO_UINT16 (p_ccb->peer_conn_cfg.credits, p);
757                 STREAM_TO_UINT16 (con_info.l2cap_result, p);
758                 con_info.remote_cid = p_ccb->remote_cid;
759
760                 L2CAP_TRACE_DEBUG ("remote_cid = %d, "
761                         "mtu = %d, "
762                         "mps = %d, "
763                         "initial_credit = %d, "
764                         "con_info.l2cap_result = %d",
765                         p_ccb->remote_cid, p_ccb->peer_conn_cfg.mtu, p_ccb->peer_conn_cfg.mps,
766                         p_ccb->peer_conn_cfg.credits, con_info.l2cap_result);
767
768                 /* validate the parameters */
769                 if (p_ccb->peer_conn_cfg.mtu < L2CAP_LE_MIN_MTU ||
770                         p_ccb->peer_conn_cfg.mps < L2CAP_LE_MIN_MPS ||
771                         p_ccb->peer_conn_cfg.mps > L2CAP_LE_MAX_MPS)
772                 {
773                     L2CAP_TRACE_ERROR ("L2CAP don't like the params");
774                     con_info.l2cap_result = L2CAP_LE_NO_RESOURCES;
775                     l2c_csm_execute(p_ccb, L2CEVT_L2CAP_CONNECT_RSP_NEG, &con_info);
776                     break;
777                 }
778
779                 p_ccb->tx_mps = p_ccb->peer_conn_cfg.mps;
780                 p_ccb->ble_sdu = NULL;
781                 p_ccb->ble_sdu_length = 0;
782                 p_ccb->is_first_seg = TRUE;
783                 p_ccb->peer_cfg.fcr.mode = L2CAP_FCR_LE_COC_MODE;
784
785                 if (con_info.l2cap_result == L2CAP_LE_CONN_OK)
786                     l2c_csm_execute(p_ccb, L2CEVT_L2CAP_CONNECT_RSP, &con_info);
787                 else
788                     l2c_csm_execute(p_ccb, L2CEVT_L2CAP_CONNECT_RSP_NEG, &con_info);
789             }
790             else
791             {
792                 L2CAP_TRACE_DEBUG ("I DO NOT remember the connection req");
793                 con_info.l2cap_result = L2CAP_LE_INVALID_SOURCE_CID;
794                 l2c_csm_execute(p_ccb, L2CEVT_L2CAP_CONNECT_RSP_NEG, &con_info);
795             }
796             break;
797
798         case L2CAP_CMD_BLE_FLOW_CTRL_CREDIT:
799             STREAM_TO_UINT16(lcid, p);
800             if((p_ccb = l2cu_find_ccb_by_remote_cid(p_lcb, lcid)) == NULL)
801             {
802                 L2CAP_TRACE_DEBUG ("%s Credit received for unknown channel id %d", __func__, lcid);
803                 break;
804             }
805
806             STREAM_TO_UINT16(credit ,p);
807             l2c_csm_execute(p_ccb, L2CEVT_L2CAP_RECV_FLOW_CONTROL_CREDIT, &credit);
808             L2CAP_TRACE_DEBUG ("%s Credit received", __func__);
809             break;
810
811         case L2CAP_CMD_DISC_REQ:
812             if (p + 4 >= p_pkt_end) {
813               android_errorWriteLog(0x534e4554, "63146237");
814               return;
815             }
816             STREAM_TO_UINT16 (lcid, p);
817             STREAM_TO_UINT16 (rcid, p);
818
819             if ((p_ccb = l2cu_find_ccb_by_cid (p_lcb, lcid)) != NULL)
820             {
821                 if (p_ccb->remote_cid == rcid)
822                 {
823                     p_ccb->remote_id = id;
824                     l2c_csm_execute (p_ccb, L2CEVT_L2CAP_DISCONNECT_REQ, NULL);
825                 }
826             }
827             else
828                 l2cu_send_peer_disc_rsp (p_lcb, id, lcid, rcid);
829
830             break;
831
832          case L2CAP_CMD_DISC_RSP:
833             STREAM_TO_UINT16 (rcid, p);
834             STREAM_TO_UINT16 (lcid, p);
835
836             if ((p_ccb = l2cu_find_ccb_by_cid (p_lcb, lcid)) != NULL)
837             {
838                 if ((p_ccb->remote_cid == rcid) && (p_ccb->local_id == id))
839                     l2c_csm_execute (p_ccb, L2CEVT_L2CAP_DISCONNECT_RSP, NULL);
840             }
841             break;
842
843         default:
844             L2CAP_TRACE_WARNING ("L2CAP - LE - unknown cmd code: %d", cmd_code);
845             l2cu_send_peer_cmd_reject (p_lcb, L2CAP_CMD_REJ_NOT_UNDERSTOOD, id, 0, 0);
846             break;
847     }
848 }
849
850 /*******************************************************************************
851 **
852 ** Function         l2cble_init_direct_conn
853 **
854 ** Description      This function is to initate a direct connection
855 **
856 ** Returns          TRUE connection initiated, FALSE otherwise.
857 **
858 *******************************************************************************/
859 BOOLEAN l2cble_init_direct_conn (tL2C_LCB *p_lcb)
860 {
861     tBTM_SEC_DEV_REC *p_dev_rec = btm_find_or_alloc_dev (p_lcb->remote_bd_addr);
862     tBTM_BLE_CB *p_cb = &btm_cb.ble_ctr_cb;
863     UINT16 scan_int;
864     UINT16 scan_win;
865     BD_ADDR peer_addr;
866     UINT8 peer_addr_type = BLE_ADDR_PUBLIC;
867     UINT8 own_addr_type = BLE_ADDR_PUBLIC;
868
869     /* There can be only one BLE connection request outstanding at a time */
870     if (p_dev_rec == NULL)
871     {
872         L2CAP_TRACE_WARNING ("unknown device, can not initate connection");
873         return(FALSE);
874     }
875
876     scan_int = (p_cb->scan_int == BTM_BLE_SCAN_PARAM_UNDEF) ? BTM_BLE_SCAN_FAST_INT : p_cb->scan_int;
877     scan_win = (p_cb->scan_win == BTM_BLE_SCAN_PARAM_UNDEF) ? BTM_BLE_SCAN_FAST_WIN : p_cb->scan_win;
878
879     peer_addr_type = p_lcb->ble_addr_type;
880     memcpy(peer_addr, p_lcb->remote_bd_addr, BD_ADDR_LEN);
881
882 #if ( (defined BLE_PRIVACY_SPT) && (BLE_PRIVACY_SPT == TRUE))
883     own_addr_type = btm_cb.ble_ctr_cb.privacy_mode ? BLE_ADDR_RANDOM : BLE_ADDR_PUBLIC;
884     if (p_dev_rec->ble.in_controller_list & BTM_RESOLVING_LIST_BIT)
885     {
886         if (btm_cb.ble_ctr_cb.privacy_mode >=  BTM_PRIVACY_1_2)
887             own_addr_type |= BLE_ADDR_TYPE_ID_BIT;
888
889         btm_ble_enable_resolving_list(BTM_BLE_RL_INIT);
890         btm_random_pseudo_to_identity_addr(peer_addr, &peer_addr_type);
891     } else {
892         btm_ble_disable_resolving_list(BTM_BLE_RL_INIT, TRUE);
893
894         // If we have a current RPA, use that instead.
895         if (!bdaddr_is_empty((const bt_bdaddr_t *)p_dev_rec->ble.cur_rand_addr)) {
896             memcpy(peer_addr, p_dev_rec->ble.cur_rand_addr, BD_ADDR_LEN);
897         }
898     }
899 #endif
900
901     if (!btm_ble_topology_check(BTM_BLE_STATE_INIT))
902     {
903         l2cu_release_lcb (p_lcb);
904         L2CAP_TRACE_ERROR("initate direct connection fail, topology limitation");
905         return FALSE;
906     }
907
908     if (!btsnd_hcic_ble_create_ll_conn (scan_int,/* UINT16 scan_int      */
909                                         scan_win, /* UINT16 scan_win      */
910                                         FALSE,                   /* UINT8 white_list     */
911                                         peer_addr_type,          /* UINT8 addr_type_peer */
912                                         peer_addr,               /* BD_ADDR bda_peer     */
913                                         own_addr_type,         /* UINT8 addr_type_own  */
914         (UINT16) ((p_dev_rec->conn_params.min_conn_int != BTM_BLE_CONN_PARAM_UNDEF) ?
915         p_dev_rec->conn_params.min_conn_int : BTM_BLE_CONN_INT_MIN_DEF),  /* UINT16 conn_int_min  */
916         (UINT16) ((p_dev_rec->conn_params.max_conn_int != BTM_BLE_CONN_PARAM_UNDEF) ?
917         p_dev_rec->conn_params.max_conn_int : BTM_BLE_CONN_INT_MAX_DEF),  /* UINT16 conn_int_max  */
918         (UINT16) ((p_dev_rec->conn_params.slave_latency != BTM_BLE_CONN_PARAM_UNDEF) ?
919         p_dev_rec->conn_params.slave_latency : BTM_BLE_CONN_SLAVE_LATENCY_DEF), /* UINT16 conn_latency  */
920         (UINT16) ((p_dev_rec->conn_params.supervision_tout != BTM_BLE_CONN_PARAM_UNDEF) ?
921         p_dev_rec->conn_params.supervision_tout : BTM_BLE_CONN_TIMEOUT_DEF), /* conn_timeout */
922                                         0,                       /* UINT16 min_len       */
923                                         0))                      /* UINT16 max_len       */
924     {
925         l2cu_release_lcb (p_lcb);
926         L2CAP_TRACE_ERROR("initate direct connection fail, no resources");
927         return (FALSE);
928     }
929     else
930     {
931         p_lcb->link_state = LST_CONNECTING;
932         l2cb.is_ble_connecting = TRUE;
933         memcpy (l2cb.ble_connecting_bda, p_lcb->remote_bd_addr, BD_ADDR_LEN);
934         alarm_set_on_queue(p_lcb->l2c_lcb_timer,
935                            L2CAP_BLE_LINK_CONNECT_TIMEOUT_MS,
936                            l2c_lcb_timer_timeout, p_lcb,
937                            btu_general_alarm_queue);
938         btm_ble_set_conn_st (BLE_DIR_CONN);
939
940         return (TRUE);
941     }
942 }
943
944 /*******************************************************************************
945 **
946 ** Function         l2cble_create_conn
947 **
948 ** Description      This function initiates an acl connection via HCI
949 **
950 ** Returns          TRUE if successful, FALSE if connection not started.
951 **
952 *******************************************************************************/
953 BOOLEAN l2cble_create_conn (tL2C_LCB *p_lcb)
954 {
955     tBTM_BLE_CONN_ST     conn_st = btm_ble_get_conn_st();
956     BOOLEAN         rt = FALSE;
957
958     /* There can be only one BLE connection request outstanding at a time */
959     if (conn_st == BLE_CONN_IDLE)
960     {
961         rt = l2cble_init_direct_conn(p_lcb);
962     }
963     else
964     {
965         L2CAP_TRACE_WARNING ("L2CAP - LE - cannot start new connection at conn st: %d", conn_st);
966
967         btm_ble_enqueue_direct_conn_req(p_lcb);
968
969         if (conn_st == BLE_BG_CONN)
970             btm_ble_suspend_bg_conn();
971
972         rt = TRUE;
973     }
974     return rt;
975 }
976
977 /*******************************************************************************
978 **
979 ** Function         l2c_link_processs_ble_num_bufs
980 **
981 ** Description      This function is called when a "controller buffer size"
982 **                  event is first received from the controller. It updates
983 **                  the L2CAP values.
984 **
985 ** Returns          void
986 **
987 *******************************************************************************/
988 void l2c_link_processs_ble_num_bufs (UINT16 num_lm_ble_bufs)
989 {
990     if (num_lm_ble_bufs == 0)
991     {
992         num_lm_ble_bufs = L2C_DEF_NUM_BLE_BUF_SHARED;
993         l2cb.num_lm_acl_bufs -= L2C_DEF_NUM_BLE_BUF_SHARED;
994     }
995
996     l2cb.num_lm_ble_bufs = l2cb.controller_le_xmit_window = num_lm_ble_bufs;
997 }
998
999 /*******************************************************************************
1000 **
1001 ** Function         l2c_ble_link_adjust_allocation
1002 **
1003 ** Description      This function is called when a link is created or removed
1004 **                  to calculate the amount of packets each link may send to
1005 **                  the HCI without an ack coming back.
1006 **
1007 **                  Currently, this is a simple allocation, dividing the
1008 **                  number of Controller Packets by the number of links. In
1009 **                  the future, QOS configuration should be examined.
1010 **
1011 ** Returns          void
1012 **
1013 *******************************************************************************/
1014 void l2c_ble_link_adjust_allocation (void)
1015 {
1016     UINT16      qq, yy, qq_remainder;
1017     tL2C_LCB    *p_lcb;
1018     UINT16      hi_quota, low_quota;
1019     UINT16      num_lowpri_links = 0;
1020     UINT16      num_hipri_links  = 0;
1021     UINT16      controller_xmit_quota = l2cb.num_lm_ble_bufs;
1022     UINT16      high_pri_link_quota = L2CAP_HIGH_PRI_MIN_XMIT_QUOTA_A;
1023
1024     /* If no links active, reset buffer quotas and controller buffers */
1025     if (l2cb.num_ble_links_active == 0)
1026     {
1027         l2cb.controller_le_xmit_window = l2cb.num_lm_ble_bufs;
1028         l2cb.ble_round_robin_quota = l2cb.ble_round_robin_unacked = 0;
1029         return;
1030     }
1031
1032     /* First, count the links */
1033     for (yy = 0, p_lcb = &l2cb.lcb_pool[0]; yy < MAX_L2CAP_LINKS; yy++, p_lcb++)
1034     {
1035         if (p_lcb->in_use && p_lcb->transport == BT_TRANSPORT_LE)
1036         {
1037             if (p_lcb->acl_priority == L2CAP_PRIORITY_HIGH)
1038                 num_hipri_links++;
1039             else
1040                 num_lowpri_links++;
1041         }
1042     }
1043
1044     /* now adjust high priority link quota */
1045     low_quota = num_lowpri_links ? 1 : 0;
1046     while ( (num_hipri_links * high_pri_link_quota + low_quota) > controller_xmit_quota )
1047         high_pri_link_quota--;
1048
1049
1050     /* Work out the xmit quota and buffer quota high and low priorities */
1051     hi_quota  = num_hipri_links * high_pri_link_quota;
1052     low_quota = (hi_quota < controller_xmit_quota) ? controller_xmit_quota - hi_quota : 1;
1053
1054     /* Work out and save the HCI xmit quota for each low priority link */
1055
1056     /* If each low priority link cannot have at least one buffer */
1057     if (num_lowpri_links > low_quota)
1058     {
1059         l2cb.ble_round_robin_quota = low_quota;
1060         qq = qq_remainder = 0;
1061     }
1062     /* If each low priority link can have at least one buffer */
1063     else if (num_lowpri_links > 0)
1064     {
1065         l2cb.ble_round_robin_quota = 0;
1066         l2cb.ble_round_robin_unacked = 0;
1067         qq = low_quota / num_lowpri_links;
1068         qq_remainder = low_quota % num_lowpri_links;
1069     }
1070     /* If no low priority link */
1071     else
1072     {
1073         l2cb.ble_round_robin_quota = 0;
1074         l2cb.ble_round_robin_unacked = 0;
1075         qq = qq_remainder = 0;
1076     }
1077     L2CAP_TRACE_EVENT ("l2c_ble_link_adjust_allocation  num_hipri: %u  num_lowpri: %u  low_quota: %u  round_robin_quota: %u  qq: %u",
1078                         num_hipri_links, num_lowpri_links, low_quota,
1079                         l2cb.ble_round_robin_quota, qq);
1080
1081     /* Now, assign the quotas to each link */
1082     for (yy = 0, p_lcb = &l2cb.lcb_pool[0]; yy < MAX_L2CAP_LINKS; yy++, p_lcb++)
1083     {
1084         if (p_lcb->in_use && p_lcb->transport == BT_TRANSPORT_LE)
1085         {
1086             if (p_lcb->acl_priority == L2CAP_PRIORITY_HIGH)
1087             {
1088                 p_lcb->link_xmit_quota   = high_pri_link_quota;
1089             }
1090             else
1091             {
1092                 /* Safety check in case we switched to round-robin with something outstanding */
1093                 /* if sent_not_acked is added into round_robin_unacked then don't add it again */
1094                 /* l2cap keeps updating sent_not_acked for exiting from round robin */
1095                 if (( p_lcb->link_xmit_quota > 0 )&&( qq == 0 ))
1096                     l2cb.ble_round_robin_unacked += p_lcb->sent_not_acked;
1097
1098                 p_lcb->link_xmit_quota   = qq;
1099                 if (qq_remainder > 0)
1100                 {
1101                     p_lcb->link_xmit_quota++;
1102                     qq_remainder--;
1103                 }
1104             }
1105
1106             L2CAP_TRACE_EVENT("l2c_ble_link_adjust_allocation LCB %d   Priority: %d  XmitQuota: %d",
1107                                 yy, p_lcb->acl_priority, p_lcb->link_xmit_quota);
1108
1109             L2CAP_TRACE_EVENT("        SentNotAcked: %d  RRUnacked: %d",
1110                                 p_lcb->sent_not_acked, l2cb.round_robin_unacked);
1111
1112             /* There is a special case where we have readjusted the link quotas and  */
1113             /* this link may have sent anything but some other link sent packets so  */
1114             /* so we may need a timer to kick off this link's transmissions.         */
1115             if ( (p_lcb->link_state == LST_CONNECTED)
1116               && (!list_is_empty(p_lcb->link_xmit_data_q))
1117                  && (p_lcb->sent_not_acked < p_lcb->link_xmit_quota) ) {
1118                 alarm_set_on_queue(p_lcb->l2c_lcb_timer,
1119                                    L2CAP_LINK_FLOW_CONTROL_TIMEOUT_MS,
1120                                    l2c_lcb_timer_timeout, p_lcb,
1121                                    btu_general_alarm_queue);
1122             }
1123         }
1124     }
1125 }
1126
1127 #if (defined BLE_LLT_INCLUDED) && (BLE_LLT_INCLUDED == TRUE)
1128 /*******************************************************************************
1129 **
1130 ** Function         l2cble_process_rc_param_request_evt
1131 **
1132 ** Description      process LE Remote Connection Parameter Request Event.
1133 **
1134 ** Returns          void
1135 **
1136 *******************************************************************************/
1137 void l2cble_process_rc_param_request_evt(UINT16 handle, UINT16 int_min, UINT16 int_max,
1138                                      UINT16 latency, UINT16 timeout)
1139 {
1140     tL2C_LCB    *p_lcb = l2cu_find_lcb_by_handle (handle);
1141
1142     if (p_lcb != NULL)
1143     {
1144         p_lcb->min_interval = int_min;
1145         p_lcb->max_interval = int_max;
1146         p_lcb->latency = latency;
1147         p_lcb->timeout = timeout;
1148
1149         /* if update is enabled, always accept connection parameter update */
1150         if ((p_lcb->conn_update_mask & L2C_BLE_CONN_UPDATE_DISABLE) == 0)
1151         {
1152             btsnd_hcic_ble_rc_param_req_reply(handle, int_min, int_max, latency, timeout, 0, 0);
1153         }
1154         else
1155         {
1156             L2CAP_TRACE_EVENT ("L2CAP - LE - update currently disabled");
1157             p_lcb->conn_update_mask |= L2C_BLE_NEW_CONN_PARAM;
1158             btsnd_hcic_ble_rc_param_req_neg_reply (handle,HCI_ERR_UNACCEPT_CONN_INTERVAL);
1159         }
1160
1161     }
1162     else
1163     {
1164         L2CAP_TRACE_WARNING("No link to update connection parameter")
1165     }
1166 }
1167 #endif
1168
1169 /*******************************************************************************
1170 **
1171 ** Function         l2cble_update_data_length
1172 **
1173 ** Description      This function update link tx data length if applicable
1174 **
1175 ** Returns          void
1176 **
1177 *******************************************************************************/
1178 void l2cble_update_data_length(tL2C_LCB *p_lcb)
1179 {
1180     UINT16 tx_mtu = 0;
1181     UINT16 i = 0;
1182
1183     L2CAP_TRACE_DEBUG("%s", __FUNCTION__);
1184
1185     /* See if we have a link control block for the connection */
1186     if (p_lcb == NULL)
1187         return;
1188
1189     for (i = 0; i < L2CAP_NUM_FIXED_CHNLS; i++)
1190     {
1191         if (i + L2CAP_FIRST_FIXED_CHNL != L2CAP_BLE_SIGNALLING_CID)
1192         {
1193             if ((p_lcb->p_fixed_ccbs[i] != NULL) &&
1194                     (tx_mtu < (p_lcb->p_fixed_ccbs[i]->tx_data_len + L2CAP_PKT_OVERHEAD)))
1195                 tx_mtu = p_lcb->p_fixed_ccbs[i]->tx_data_len + L2CAP_PKT_OVERHEAD;
1196         }
1197     }
1198
1199     if (tx_mtu > BTM_BLE_DATA_SIZE_MAX)
1200         tx_mtu = BTM_BLE_DATA_SIZE_MAX;
1201
1202     /* update TX data length if changed */
1203     if (p_lcb->tx_data_len != tx_mtu)
1204         BTM_SetBleDataLength(p_lcb->remote_bd_addr, tx_mtu);
1205
1206 }
1207
1208 /*******************************************************************************
1209 **
1210 ** Function         l2cble_process_data_length_change_evt
1211 **
1212 ** Description      This function process the data length change event
1213 **
1214 ** Returns          void
1215 **
1216 *******************************************************************************/
1217 void l2cble_process_data_length_change_event(UINT16 handle, UINT16 tx_data_len, UINT16 rx_data_len)
1218 {
1219     tL2C_LCB *p_lcb = l2cu_find_lcb_by_handle(handle);
1220
1221     L2CAP_TRACE_DEBUG("%s TX data len = %d", __FUNCTION__, tx_data_len);
1222     if (p_lcb == NULL)
1223         return;
1224
1225     if (tx_data_len > 0)
1226         p_lcb->tx_data_len = tx_data_len;
1227
1228     /* ignore rx_data len for now */
1229 }
1230
1231 /*******************************************************************************
1232 **
1233 ** Function         l2cble_set_fixed_channel_tx_data_length
1234 **
1235 ** Description      This function update max fixed channel tx data length if applicable
1236 **
1237 ** Returns          void
1238 **
1239 *******************************************************************************/
1240 void l2cble_set_fixed_channel_tx_data_length(BD_ADDR remote_bda, UINT16 fix_cid, UINT16 tx_mtu)
1241 {
1242     tL2C_LCB *p_lcb = l2cu_find_lcb_by_bd_addr(remote_bda, BT_TRANSPORT_LE);
1243     UINT16 cid = fix_cid - L2CAP_FIRST_FIXED_CHNL;
1244
1245     L2CAP_TRACE_DEBUG("%s TX MTU = %d", __FUNCTION__, tx_mtu);
1246
1247     if (!controller_get_interface()->supports_ble_packet_extension())
1248     {
1249         L2CAP_TRACE_WARNING("%s, request not supported", __FUNCTION__);
1250         return;
1251     }
1252
1253     /* See if we have a link control block for the connection */
1254     if (p_lcb == NULL)
1255         return;
1256
1257     if (p_lcb->p_fixed_ccbs[cid] != NULL)
1258     {
1259         if (tx_mtu > BTM_BLE_DATA_SIZE_MAX)
1260             tx_mtu = BTM_BLE_DATA_SIZE_MAX;
1261
1262         p_lcb->p_fixed_ccbs[cid]->tx_data_len = tx_mtu;
1263     }
1264
1265     l2cble_update_data_length(p_lcb);
1266 }
1267
1268 /*******************************************************************************
1269 **
1270 ** Function         l2cble_credit_based_conn_req
1271 **
1272 ** Description      This function sends LE Credit Based Connection Request for
1273 **                  LE connection oriented channels.
1274 **
1275 ** Returns          void
1276 **
1277 *******************************************************************************/
1278 void l2cble_credit_based_conn_req (tL2C_CCB *p_ccb)
1279 {
1280     if (!p_ccb)
1281         return;
1282
1283     if (p_ccb->p_lcb && p_ccb->p_lcb->transport != BT_TRANSPORT_LE)
1284     {
1285         L2CAP_TRACE_WARNING ("LE link doesn't exist");
1286         return;
1287     }
1288
1289     l2cu_send_peer_ble_credit_based_conn_req (p_ccb);
1290     return;
1291 }
1292
1293 /*******************************************************************************
1294 **
1295 ** Function         l2cble_credit_based_conn_res
1296 **
1297 ** Description      This function sends LE Credit Based Connection Response for
1298 **                  LE connection oriented channels.
1299 **
1300 ** Returns          void
1301 **
1302 *******************************************************************************/
1303 void l2cble_credit_based_conn_res (tL2C_CCB *p_ccb, UINT16 result)
1304 {
1305     if (!p_ccb)
1306         return;
1307
1308     if (p_ccb->p_lcb && p_ccb->p_lcb->transport != BT_TRANSPORT_LE)
1309     {
1310         L2CAP_TRACE_WARNING ("LE link doesn't exist");
1311         return;
1312     }
1313
1314     l2cu_send_peer_ble_credit_based_conn_res (p_ccb, result);
1315     return;
1316 }
1317
1318 /*******************************************************************************
1319 **
1320 ** Function         l2cble_send_flow_control_credit
1321 **
1322 ** Description      This function sends flow control credits for
1323 **                  LE connection oriented channels.
1324 **
1325 ** Returns          void
1326 **
1327 *******************************************************************************/
1328 void l2cble_send_flow_control_credit(tL2C_CCB *p_ccb, UINT16 credit_value)
1329 {
1330     if (!p_ccb)
1331         return;
1332
1333     if (p_ccb->p_lcb && p_ccb->p_lcb->transport != BT_TRANSPORT_LE)
1334     {
1335         L2CAP_TRACE_WARNING ("LE link doesn't exist");
1336         return;
1337     }
1338
1339     l2cu_send_peer_ble_flow_control_credit(p_ccb, credit_value);
1340     return;
1341
1342 }
1343
1344 /*******************************************************************************
1345 **
1346 ** Function         l2cble_send_peer_disc_req
1347 **
1348 ** Description      This function sends disconnect request
1349 **                  to the peer LE device
1350 **
1351 ** Returns          void
1352 **
1353 *******************************************************************************/
1354 void l2cble_send_peer_disc_req(tL2C_CCB *p_ccb)
1355 {
1356     L2CAP_TRACE_DEBUG ("%s",__func__);
1357     if (!p_ccb)
1358         return;
1359
1360     if (p_ccb->p_lcb && p_ccb->p_lcb->transport != BT_TRANSPORT_LE)
1361     {
1362         L2CAP_TRACE_WARNING ("LE link doesn't exist");
1363         return;
1364     }
1365
1366     l2cu_send_peer_ble_credit_based_disconn_req(p_ccb);
1367     return;
1368 }
1369
1370 /*******************************************************************************
1371 **
1372 ** Function         l2cble_sec_comp
1373 **
1374 ** Description      This function is called when security procedure for an LE COC
1375 **                  link is done
1376 **
1377 ** Returns          void
1378 **
1379 *******************************************************************************/
1380 void  l2cble_sec_comp(BD_ADDR p_bda, tBT_TRANSPORT transport, void *p_ref_data, UINT8 status)
1381 {
1382     tL2C_LCB *p_lcb = l2cu_find_lcb_by_bd_addr(p_bda, BT_TRANSPORT_LE);
1383     tL2CAP_SEC_DATA *p_buf = NULL;
1384     UINT8 sec_flag;
1385     UINT8 sec_act;
1386
1387     if (!p_lcb)
1388     {
1389         L2CAP_TRACE_WARNING ("%s security complete for unknown device", __func__);
1390         return;
1391     }
1392
1393     sec_act = p_lcb->sec_act;
1394     p_lcb->sec_act = 0;
1395
1396     if (!fixed_queue_is_empty(p_lcb->le_sec_pending_q))
1397     {
1398         p_buf = (tL2CAP_SEC_DATA*) fixed_queue_dequeue(p_lcb->le_sec_pending_q);
1399         if (!p_buf)
1400         {
1401             L2CAP_TRACE_WARNING ("%s Security complete for request not initiated from L2CAP",
1402                     __func__);
1403             return;
1404         }
1405
1406         if (status != BTM_SUCCESS)
1407         {
1408             (*(p_buf->p_callback))(p_bda, BT_TRANSPORT_LE, p_buf->p_ref_data, status);
1409         }
1410         else
1411         {
1412             if (sec_act == BTM_SEC_ENCRYPT_MITM)
1413             {
1414                 BTM_GetSecurityFlagsByTransport(p_bda, &sec_flag, transport);
1415                 if (sec_flag & BTM_SEC_FLAG_LKEY_AUTHED)
1416                     (*(p_buf->p_callback))(p_bda, BT_TRANSPORT_LE, p_buf->p_ref_data, status);
1417                 else
1418                 {
1419                     L2CAP_TRACE_DEBUG ("%s MITM Protection Not present", __func__);
1420                     (*(p_buf->p_callback))(p_bda, BT_TRANSPORT_LE, p_buf->p_ref_data,
1421                             BTM_FAILED_ON_SECURITY);
1422                 }
1423             }
1424             else
1425             {
1426                 L2CAP_TRACE_DEBUG ("%s MITM Protection not required sec_act = %d",
1427                         __func__, p_lcb->sec_act);
1428
1429                 (*(p_buf->p_callback))(p_bda, BT_TRANSPORT_LE, p_buf->p_ref_data, status);
1430             }
1431         }
1432     }
1433     else
1434     {
1435         L2CAP_TRACE_WARNING ("%s Security complete for request not initiated from L2CAP", __func__);
1436         return;
1437     }
1438     osi_free(p_buf);
1439
1440     while (!fixed_queue_is_empty(p_lcb->le_sec_pending_q))
1441     {
1442         p_buf = (tL2CAP_SEC_DATA*) fixed_queue_dequeue(p_lcb->le_sec_pending_q);
1443
1444         if (status != BTM_SUCCESS)
1445             (*(p_buf->p_callback))(p_bda, BT_TRANSPORT_LE, p_buf->p_ref_data, status);
1446         else
1447             l2ble_sec_access_req(p_bda, p_buf->psm, p_buf->is_originator,
1448                     p_buf->p_callback, p_buf->p_ref_data);
1449
1450        osi_free(p_buf);
1451     }
1452 }
1453
1454 /*******************************************************************************
1455 **
1456 ** Function         l2ble_sec_access_req
1457 **
1458 ** Description      This function is called by LE COC link to meet the
1459 **                  security requirement for the link
1460 **
1461 ** Returns          TRUE - security procedures are started
1462 **                  FALSE - failure
1463 **
1464 *******************************************************************************/
1465 BOOLEAN l2ble_sec_access_req(BD_ADDR bd_addr, UINT16 psm, BOOLEAN is_originator, tL2CAP_SEC_CBACK *p_callback, void *p_ref_data)
1466 {
1467     L2CAP_TRACE_DEBUG ("%s", __func__);
1468     BOOLEAN status;
1469     tL2C_LCB *p_lcb = NULL;
1470
1471     if (!p_callback)
1472     {
1473         L2CAP_TRACE_ERROR("%s No callback function", __func__);
1474         return FALSE;
1475     }
1476
1477     p_lcb = l2cu_find_lcb_by_bd_addr(bd_addr, BT_TRANSPORT_LE);
1478
1479     if (!p_lcb)
1480     {
1481         L2CAP_TRACE_ERROR ("%s Security check for unknown device", __func__);
1482         p_callback(bd_addr, BT_TRANSPORT_LE, p_ref_data, BTM_UNKNOWN_ADDR);
1483         return FALSE;
1484     }
1485
1486     tL2CAP_SEC_DATA *p_buf = (tL2CAP_SEC_DATA*) osi_malloc((UINT16)sizeof(tL2CAP_SEC_DATA));
1487     if (!p_buf)
1488     {
1489         p_callback(bd_addr, BT_TRANSPORT_LE, p_ref_data, BTM_NO_RESOURCES);
1490         return FALSE;
1491     }
1492
1493     p_buf->psm = psm;
1494     p_buf->is_originator = is_originator;
1495     p_buf->p_callback = p_callback;
1496     p_buf->p_ref_data = p_ref_data;
1497     fixed_queue_enqueue(p_lcb->le_sec_pending_q, p_buf);
1498     status = btm_ble_start_sec_check(bd_addr, psm, is_originator, &l2cble_sec_comp, p_ref_data);
1499
1500     return status;
1501 }
1502 #endif /* (BLE_INCLUDED == TRUE) */