The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Copyright (C) 1999-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 the main L2CAP entry points |
| 22 | * |
| 23 | ******************************************************************************/ |
| 24 | |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 25 | #include <stdlib.h> |
| 26 | #include <string.h> |
| 27 | #include <stdio.h> |
| 28 | |
Chris Manton | 79ecab5 | 2014-10-31 14:54:51 -0700 | [diff] [blame] | 29 | #include "device/include/controller.h" |
Sharvil Nanavati | 95b74f2 | 2015-03-12 15:55:21 -0700 | [diff] [blame] | 30 | #include "btcore/include/counter.h" |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 31 | #include "bt_target.h" |
| 32 | #include "btm_int.h" |
| 33 | #include "btu.h" |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 34 | #include "gki.h" |
| 35 | #include "hcimsgs.h" |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 36 | #include "l2c_api.h" |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 37 | #include "l2c_int.h" |
| 38 | #include "l2cdefs.h" |
Sharvil Nanavati | 4480276 | 2014-12-23 23:08:58 -0800 | [diff] [blame] | 39 | #include "osi/include/log.h" |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 40 | |
| 41 | /********************************************************************************/ |
| 42 | /* L O C A L F U N C T I O N P R O T O T Y P E S */ |
| 43 | /********************************************************************************/ |
| 44 | static void process_l2cap_cmd (tL2C_LCB *p_lcb, UINT8 *p, UINT16 pkt_len); |
| 45 | |
| 46 | /********************************************************************************/ |
| 47 | /* G L O B A L L 2 C A P D A T A */ |
| 48 | /********************************************************************************/ |
| 49 | #if L2C_DYNAMIC_MEMORY == FALSE |
| 50 | tL2C_CB l2cb; |
| 51 | #endif |
| 52 | |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 53 | /******************************************************************************* |
| 54 | ** |
| 55 | ** Function l2c_bcst_msg |
| 56 | ** |
| 57 | ** Description |
| 58 | ** |
| 59 | ** Returns void |
| 60 | ** |
| 61 | *******************************************************************************/ |
| 62 | void l2c_bcst_msg( BT_HDR *p_buf, UINT16 psm ) |
| 63 | { |
| 64 | UINT8 *p; |
| 65 | |
| 66 | /* Ensure we have enough space in the buffer for the L2CAP and HCI headers */ |
| 67 | if (p_buf->offset < L2CAP_BCST_MIN_OFFSET) |
| 68 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 69 | L2CAP_TRACE_ERROR ("L2CAP - cannot send buffer, offset: %d", p_buf->offset); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 70 | GKI_freebuf (p_buf); |
| 71 | return; |
| 72 | } |
| 73 | |
| 74 | /* Step back some bytes to add the headers */ |
| 75 | p_buf->offset -= (HCI_DATA_PREAMBLE_SIZE + L2CAP_PKT_OVERHEAD + L2CAP_BCST_OVERHEAD); |
| 76 | p_buf->len += L2CAP_PKT_OVERHEAD + L2CAP_BCST_OVERHEAD; |
| 77 | |
| 78 | /* Set the pointer to the beginning of the data */ |
| 79 | p = (UINT8 *)(p_buf + 1) + p_buf->offset; |
| 80 | |
| 81 | /* First, the HCI transport header */ |
| 82 | UINT16_TO_STREAM (p, 0x0050 | (L2CAP_PKT_START << 12) | (2 << 14)); |
| 83 | |
Zach Johnson | 30e5806 | 2014-09-26 21:14:34 -0700 | [diff] [blame] | 84 | uint16_t acl_data_size = controller_get_interface()->get_acl_data_size_classic(); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 85 | /* The HCI transport will segment the buffers. */ |
Zach Johnson | 30e5806 | 2014-09-26 21:14:34 -0700 | [diff] [blame] | 86 | if (p_buf->len > acl_data_size) |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 87 | { |
Zach Johnson | 30e5806 | 2014-09-26 21:14:34 -0700 | [diff] [blame] | 88 | UINT16_TO_STREAM (p, acl_data_size); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 89 | } |
| 90 | else |
| 91 | { |
| 92 | UINT16_TO_STREAM (p, p_buf->len); |
| 93 | } |
| 94 | |
| 95 | /* Now the L2CAP header */ |
| 96 | UINT16_TO_STREAM (p, p_buf->len - L2CAP_PKT_OVERHEAD); |
| 97 | UINT16_TO_STREAM (p, L2CAP_CONNECTIONLESS_CID); |
| 98 | UINT16_TO_STREAM (p, psm); |
| 99 | |
| 100 | p_buf->len += HCI_DATA_PREAMBLE_SIZE; |
| 101 | |
Zach Johnson | 30e5806 | 2014-09-26 21:14:34 -0700 | [diff] [blame] | 102 | if (p_buf->len <= controller_get_interface()->get_acl_packet_size_classic()) |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 103 | { |
Chris Manton | cccf02f | 2014-10-21 13:55:24 -0700 | [diff] [blame] | 104 | counter_add("l2cap.ch2.tx.bytes", p_buf->len); |
| 105 | counter_add("l2cap.ch2.tx.pkts", 1); |
| 106 | |
Chris Manton | f857d64 | 2014-09-26 13:31:41 -0700 | [diff] [blame] | 107 | bte_main_hci_send(p_buf, BT_EVT_TO_LM_HCI_ACL); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 108 | } |
| 109 | } |
Ganesh Ganapathi Batta | ead3cde | 2013-02-05 15:22:31 -0800 | [diff] [blame] | 110 | |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 111 | |
| 112 | /******************************************************************************* |
| 113 | ** |
| 114 | ** Function l2c_rcv_acl_data |
| 115 | ** |
| 116 | ** Description This function is called from the HCI Interface when an ACL |
| 117 | ** data packet is received. |
| 118 | ** |
| 119 | ** Returns void |
| 120 | ** |
| 121 | *******************************************************************************/ |
| 122 | void l2c_rcv_acl_data (BT_HDR *p_msg) |
| 123 | { |
| 124 | UINT8 *p = (UINT8 *)(p_msg + 1) + p_msg->offset; |
| 125 | UINT16 handle, hci_len; |
| 126 | UINT8 pkt_type; |
| 127 | tL2C_LCB *p_lcb; |
| 128 | tL2C_CCB *p_ccb = NULL; |
| 129 | UINT16 l2cap_len, rcv_cid, psm; |
| 130 | |
| 131 | /* Extract the handle */ |
| 132 | STREAM_TO_UINT16 (handle, p); |
| 133 | pkt_type = HCID_GET_EVENT (handle); |
| 134 | handle = HCID_GET_HANDLE (handle); |
| 135 | |
| 136 | /* Since the HCI Transport is putting segmented packets back together, we */ |
| 137 | /* should never get a valid packet with the type set to "continuation" */ |
| 138 | if (pkt_type != L2CAP_PKT_CONTINUE) |
| 139 | { |
| 140 | /* Find the LCB based on the handle */ |
| 141 | if ((p_lcb = l2cu_find_lcb_by_handle (handle)) == NULL) |
| 142 | { |
| 143 | UINT8 cmd_code; |
| 144 | |
| 145 | /* There is a slight possibility (specifically with USB) that we get an */ |
| 146 | /* L2CAP connection request before we get the HCI connection complete. */ |
| 147 | /* So for these types of messages, hold them for up to 2 seconds. */ |
| 148 | STREAM_TO_UINT16 (hci_len, p); |
| 149 | STREAM_TO_UINT16 (l2cap_len, p); |
| 150 | STREAM_TO_UINT16 (rcv_cid, p); |
| 151 | STREAM_TO_UINT8 (cmd_code, p); |
| 152 | |
| 153 | if ((p_msg->layer_specific == 0) && (rcv_cid == L2CAP_SIGNALLING_CID) |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 154 | && (cmd_code == L2CAP_CMD_INFO_REQ || cmd_code == L2CAP_CMD_CONN_REQ)) { |
| 155 | L2CAP_TRACE_WARNING ("L2CAP - holding ACL for unknown handle:%d ls:%d" |
| 156 | " cid:%d opcode:%d cur count:%d", handle, p_msg->layer_specific, |
| 157 | rcv_cid, cmd_code, list_length(l2cb.rcv_pending_q)); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 158 | p_msg->layer_specific = 2; |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 159 | list_append(l2cb.rcv_pending_q, p_msg); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 160 | |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 161 | if (list_length(l2cb.rcv_pending_q) == 1) |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 162 | btu_start_timer (&l2cb.rcv_hold_tle, BTU_TTYPE_L2CAP_HOLD, BT_1SEC_TIMEOUT); |
| 163 | |
| 164 | return; |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 165 | } else { |
| 166 | L2CAP_TRACE_ERROR ("L2CAP - rcvd ACL for unknown handle:%d ls:%d cid:%d" |
| 167 | " opcode:%d cur count:%d", handle, p_msg->layer_specific, rcv_cid, |
| 168 | cmd_code, list_length(l2cb.rcv_pending_q)); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 169 | } |
| 170 | GKI_freebuf (p_msg); |
| 171 | return; |
| 172 | } |
| 173 | } |
| 174 | else |
| 175 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 176 | L2CAP_TRACE_WARNING ("L2CAP - expected pkt start or complete, got: %d", pkt_type); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 177 | GKI_freebuf (p_msg); |
| 178 | return; |
| 179 | } |
| 180 | |
| 181 | /* Extract the length and update the buffer header */ |
| 182 | STREAM_TO_UINT16 (hci_len, p); |
| 183 | p_msg->offset += 4; |
| 184 | |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 185 | /* Extract the length and CID */ |
| 186 | STREAM_TO_UINT16 (l2cap_len, p); |
| 187 | STREAM_TO_UINT16 (rcv_cid, p); |
| 188 | |
Chaojing Sun | e280553 | 2015-04-22 13:40:21 -0700 | [diff] [blame^] | 189 | /* for BLE channel, always notify connection when ACL data received on the link */ |
| 190 | if (p_lcb && p_lcb->transport == BT_TRANSPORT_LE && p_lcb->link_state != LST_DISCONNECTING) |
| 191 | /* only process fixed channel data as channel open indication when link is not in disconnecting mode */ |
| 192 | l2cble_notify_le_connection(p_lcb->remote_bd_addr); |
| 193 | |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 194 | /* Find the CCB for this CID */ |
| 195 | if (rcv_cid >= L2CAP_BASE_APPL_CID) |
| 196 | { |
| 197 | if ((p_ccb = l2cu_find_ccb_by_cid (p_lcb, rcv_cid)) == NULL) |
| 198 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 199 | L2CAP_TRACE_WARNING ("L2CAP - unknown CID: 0x%04x", rcv_cid); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 200 | GKI_freebuf (p_msg); |
| 201 | return; |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | if (hci_len >= L2CAP_PKT_OVERHEAD) /* Must receive at least the L2CAP length and CID.*/ |
| 206 | { |
| 207 | p_msg->len = hci_len - L2CAP_PKT_OVERHEAD; |
| 208 | p_msg->offset += L2CAP_PKT_OVERHEAD; |
| 209 | } |
| 210 | else |
| 211 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 212 | L2CAP_TRACE_WARNING ("L2CAP - got incorrect hci header" ); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 213 | GKI_freebuf (p_msg); |
| 214 | return; |
| 215 | } |
| 216 | |
| 217 | if (l2cap_len != p_msg->len) |
| 218 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 219 | L2CAP_TRACE_WARNING ("L2CAP - bad length in pkt. Exp: %d Act: %d", |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 220 | l2cap_len, p_msg->len); |
| 221 | |
| 222 | GKI_freebuf (p_msg); |
| 223 | return; |
| 224 | } |
| 225 | |
| 226 | /* Send the data through the channel state machine */ |
| 227 | if (rcv_cid == L2CAP_SIGNALLING_CID) |
| 228 | { |
Chris Manton | cccf02f | 2014-10-21 13:55:24 -0700 | [diff] [blame] | 229 | counter_add("l2cap.sig.rx.bytes", l2cap_len); |
| 230 | counter_add("l2cap.sig.rx.pkts", 1); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 231 | process_l2cap_cmd (p_lcb, p, l2cap_len); |
| 232 | GKI_freebuf (p_msg); |
| 233 | } |
| 234 | else if (rcv_cid == L2CAP_CONNECTIONLESS_CID) |
| 235 | { |
Chris Manton | cccf02f | 2014-10-21 13:55:24 -0700 | [diff] [blame] | 236 | counter_add("l2cap.ch2.rx.bytes", l2cap_len); |
| 237 | counter_add("l2cap.ch2.rx.pkts", 1); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 238 | /* process_connectionless_data (p_lcb); */ |
| 239 | STREAM_TO_UINT16 (psm, p); |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 240 | L2CAP_TRACE_DEBUG( "GOT CONNECTIONLESS DATA PSM:%d", psm ) ; |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 241 | |
| 242 | #if (L2CAP_UCD_INCLUDED == TRUE) |
| 243 | /* if it is not broadcast, check UCD registration */ |
| 244 | if ( l2c_ucd_check_rx_pkts( p_lcb, p_msg ) ) |
| 245 | { |
| 246 | /* nothing to do */ |
| 247 | } |
| 248 | else |
| 249 | #endif |
| 250 | GKI_freebuf (p_msg); |
| 251 | } |
| 252 | #if (BLE_INCLUDED == TRUE) |
| 253 | else if (rcv_cid == L2CAP_BLE_SIGNALLING_CID) |
| 254 | { |
Chris Manton | cccf02f | 2014-10-21 13:55:24 -0700 | [diff] [blame] | 255 | counter_add("l2cap.ble.rx.bytes", l2cap_len); |
| 256 | counter_add("l2cap.ble.rx.pkts", 1); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 257 | l2cble_process_sig_cmd (p_lcb, p, l2cap_len); |
| 258 | GKI_freebuf (p_msg); |
| 259 | } |
| 260 | #endif |
| 261 | #if (L2CAP_NUM_FIXED_CHNLS > 0) |
| 262 | else if ((rcv_cid >= L2CAP_FIRST_FIXED_CHNL) && (rcv_cid <= L2CAP_LAST_FIXED_CHNL) && |
| 263 | (l2cb.fixed_reg[rcv_cid - L2CAP_FIRST_FIXED_CHNL].pL2CA_FixedData_Cb != NULL) ) |
| 264 | { |
Chris Manton | cccf02f | 2014-10-21 13:55:24 -0700 | [diff] [blame] | 265 | counter_add("l2cap.fix.rx.bytes", l2cap_len); |
| 266 | counter_add("l2cap.fix.rx.pkts", 1); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 267 | /* If no CCB for this channel, allocate one */ |
Chaojing Sun | c5cda81 | 2014-11-07 16:42:46 -0800 | [diff] [blame] | 268 | if (p_lcb && |
Chaojing Sun | e280553 | 2015-04-22 13:40:21 -0700 | [diff] [blame^] | 269 | /* only process fixed channel data when link is open or wait for data indication */ |
Chaojing Sun | c5cda81 | 2014-11-07 16:42:46 -0800 | [diff] [blame] | 270 | (p_lcb->link_state != LST_DISCONNECTING) && |
Chaojing Sun | e280553 | 2015-04-22 13:40:21 -0700 | [diff] [blame^] | 271 | l2cu_initialize_fixed_ccb (p_lcb, rcv_cid, &l2cb.fixed_reg[rcv_cid - L2CAP_FIRST_FIXED_CHNL].fixed_chnl_opts)) |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 272 | { |
| 273 | p_ccb = p_lcb->p_fixed_ccbs[rcv_cid - L2CAP_FIRST_FIXED_CHNL]; |
| 274 | |
| 275 | if (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_BASIC_MODE) |
| 276 | l2c_fcr_proc_pdu (p_ccb, p_msg); |
| 277 | else |
Kim Schulz | 8372aa5 | 2015-03-25 10:39:40 +0100 | [diff] [blame] | 278 | (*l2cb.fixed_reg[rcv_cid - L2CAP_FIRST_FIXED_CHNL].pL2CA_FixedData_Cb) |
| 279 | (rcv_cid, p_lcb->remote_bd_addr, p_msg); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 280 | } |
| 281 | else |
| 282 | GKI_freebuf (p_msg); |
| 283 | } |
| 284 | #endif |
| 285 | |
| 286 | else |
| 287 | { |
Chris Manton | cccf02f | 2014-10-21 13:55:24 -0700 | [diff] [blame] | 288 | counter_add("l2cap.dyn.rx.bytes", l2cap_len); |
| 289 | counter_add("l2cap.dyn.rx.pkts", 1); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 290 | if (p_ccb == NULL) |
| 291 | GKI_freebuf (p_msg); |
| 292 | else |
| 293 | { |
| 294 | /* Basic mode packets go straight to the state machine */ |
| 295 | if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_BASIC_MODE) |
| 296 | l2c_csm_execute (p_ccb, L2CEVT_L2CAP_DATA, p_msg); |
| 297 | else |
| 298 | { |
| 299 | /* eRTM or streaming mode, so we need to validate states first */ |
| 300 | if ((p_ccb->chnl_state == CST_OPEN) || (p_ccb->chnl_state == CST_CONFIG)) |
| 301 | l2c_fcr_proc_pdu (p_ccb, p_msg); |
| 302 | else |
| 303 | GKI_freebuf (p_msg); |
| 304 | } |
| 305 | } |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | /******************************************************************************* |
| 310 | ** |
| 311 | ** Function process_l2cap_cmd |
| 312 | ** |
| 313 | ** Description This function is called when a packet is received on the |
| 314 | ** L2CAP signalling CID |
| 315 | ** |
| 316 | ** Returns void |
| 317 | ** |
| 318 | *******************************************************************************/ |
| 319 | static void process_l2cap_cmd (tL2C_LCB *p_lcb, UINT8 *p, UINT16 pkt_len) |
| 320 | { |
| 321 | UINT8 *p_pkt_end, *p_next_cmd, *p_cfg_end, *p_cfg_start; |
| 322 | UINT8 cmd_code, cfg_code, cfg_len, id; |
| 323 | tL2C_CONN_INFO con_info; |
| 324 | tL2CAP_CFG_INFO cfg_info; |
| 325 | UINT16 rej_reason, rej_mtu, lcid, rcid, info_type; |
| 326 | tL2C_CCB *p_ccb; |
Bernhard Rosenkränzer | 104e3f2 | 2014-11-12 21:53:08 +0100 | [diff] [blame] | 327 | tL2C_RCB *p_rcb; |
Ganesh Ganapathi Batta | 8fe5887 | 2014-04-16 16:50:09 -0700 | [diff] [blame] | 328 | BOOLEAN cfg_rej, pkt_size_rej = FALSE; |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 329 | UINT16 cfg_rej_len, cmd_len; |
| 330 | UINT16 result; |
| 331 | tL2C_CONN_INFO ci; |
| 332 | |
| 333 | #if (defined BLE_INCLUDED && BLE_INCLUDED == TRUE) |
| 334 | /* if l2cap command received in CID 1 on top of an LE link, ignore this command */ |
Ganesh Ganapathi Batta | 8fe5887 | 2014-04-16 16:50:09 -0700 | [diff] [blame] | 335 | if (p_lcb->transport == BT_TRANSPORT_LE) |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 336 | return; |
| 337 | #endif |
Ganesh Ganapathi Batta | 8fe5887 | 2014-04-16 16:50:09 -0700 | [diff] [blame] | 338 | |
| 339 | /* Reject the packet if it exceeds the default Signalling Channel MTU */ |
| 340 | if (pkt_len > L2CAP_DEFAULT_MTU) |
| 341 | { |
| 342 | /* Core Spec requires a single response to the first command found in a multi-command |
| 343 | ** L2cap packet. If only responses in the packet, then it will be ignored. |
| 344 | ** Here we simply mark the bad packet and decide which cmd ID to reject later |
| 345 | */ |
| 346 | pkt_size_rej = TRUE; |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 347 | L2CAP_TRACE_ERROR ("L2CAP SIG MTU Pkt Len Exceeded (672) -> pkt_len: %d", pkt_len); |
Ganesh Ganapathi Batta | 8fe5887 | 2014-04-16 16:50:09 -0700 | [diff] [blame] | 348 | } |
| 349 | |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 350 | p_next_cmd = p; |
| 351 | p_pkt_end = p + pkt_len; |
| 352 | |
| 353 | memset (&cfg_info, 0, sizeof(cfg_info)); |
| 354 | |
| 355 | /* An L2CAP packet may contain multiple commands */ |
| 356 | while (TRUE) |
| 357 | { |
| 358 | /* Smallest command is 4 bytes */ |
| 359 | if ((p = p_next_cmd) > (p_pkt_end - 4)) |
| 360 | break; |
| 361 | |
| 362 | STREAM_TO_UINT8 (cmd_code, p); |
| 363 | STREAM_TO_UINT8 (id, p); |
| 364 | STREAM_TO_UINT16 (cmd_len, p); |
| 365 | |
| 366 | /* Check command length does not exceed packet length */ |
| 367 | if ((p_next_cmd = p + cmd_len) > p_pkt_end) |
| 368 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 369 | L2CAP_TRACE_WARNING ("Command len bad pkt_len: %d cmd_len: %d code: %d", |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 370 | pkt_len, cmd_len, cmd_code); |
| 371 | break; |
| 372 | } |
| 373 | |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 374 | L2CAP_TRACE_DEBUG ("cmd_code: %d, id:%d, cmd_len:%d", cmd_code, id, cmd_len); |
Ganesh Ganapathi Batta | 8fe5887 | 2014-04-16 16:50:09 -0700 | [diff] [blame] | 375 | |
| 376 | /* Bad L2CAP packet length, look or cmd to reject */ |
| 377 | if (pkt_size_rej) |
| 378 | { |
| 379 | /* If command found rejected it and we're done, otherwise keep looking */ |
| 380 | if (l2c_is_cmd_rejected(cmd_code, id, p_lcb)) |
| 381 | return; |
| 382 | else |
| 383 | continue; /* Look for next cmd/response in current packet */ |
| 384 | } |
| 385 | |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 386 | switch (cmd_code) |
| 387 | { |
| 388 | case L2CAP_CMD_REJECT: |
| 389 | STREAM_TO_UINT16 (rej_reason, p); |
| 390 | if (rej_reason == L2CAP_CMD_REJ_MTU_EXCEEDED) |
| 391 | { |
| 392 | STREAM_TO_UINT16 (rej_mtu, p); |
| 393 | /* What to do with the MTU reject ? We have negotiated an MTU. For now */ |
| 394 | /* we will ignore it and let a higher protocol timeout take care of it */ |
| 395 | |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 396 | L2CAP_TRACE_WARNING ("L2CAP - MTU rej Handle: %d MTU: %d", p_lcb->handle, rej_mtu); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 397 | } |
| 398 | if (rej_reason == L2CAP_CMD_REJ_INVALID_CID) |
| 399 | { |
| 400 | STREAM_TO_UINT16 (rcid, p); |
| 401 | STREAM_TO_UINT16 (lcid, p); |
| 402 | |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 403 | L2CAP_TRACE_WARNING ("L2CAP - rej with CID invalid, LCID: 0x%04x RCID: 0x%04x", lcid, rcid); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 404 | |
| 405 | /* Remote CID invalid. Treat as a disconnect */ |
| 406 | if (((p_ccb = l2cu_find_ccb_by_cid (p_lcb, lcid)) != NULL) |
| 407 | && (p_ccb->remote_cid == rcid)) |
| 408 | { |
| 409 | /* Fake link disconnect - no reply is generated */ |
| 410 | l2c_csm_execute (p_ccb, L2CEVT_LP_DISCONNECT_IND, NULL); |
| 411 | } |
| 412 | } |
| 413 | |
| 414 | /* SonyEricsson Info request Bug workaround (Continue connection) */ |
| 415 | else if (rej_reason == L2CAP_CMD_REJ_NOT_UNDERSTOOD && p_lcb->w4_info_rsp) |
| 416 | { |
| 417 | btu_stop_timer (&p_lcb->info_timer_entry); |
| 418 | |
| 419 | p_lcb->w4_info_rsp = FALSE; |
| 420 | ci.status = HCI_SUCCESS; |
| 421 | memcpy (ci.bd_addr, p_lcb->remote_bd_addr, sizeof(BD_ADDR)); |
| 422 | |
| 423 | /* For all channels, send the event through their FSMs */ |
| 424 | for (p_ccb = p_lcb->ccb_queue.p_first_ccb; p_ccb; p_ccb = p_ccb->p_next_ccb) |
| 425 | { |
| 426 | l2c_csm_execute (p_ccb, L2CEVT_L2CAP_INFO_RSP, &ci); |
| 427 | } |
| 428 | } |
| 429 | break; |
| 430 | |
| 431 | case L2CAP_CMD_CONN_REQ: |
| 432 | STREAM_TO_UINT16 (con_info.psm, p); |
| 433 | STREAM_TO_UINT16 (rcid, p); |
| 434 | if ((p_rcb = l2cu_find_rcb_by_psm (con_info.psm)) == NULL) |
| 435 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 436 | L2CAP_TRACE_WARNING ("L2CAP - rcvd conn req for unknown PSM: %d", con_info.psm); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 437 | l2cu_reject_connection (p_lcb, rcid, id, L2CAP_CONN_NO_PSM); |
| 438 | break; |
| 439 | } |
| 440 | else |
| 441 | { |
| 442 | if (!p_rcb->api.pL2CA_ConnectInd_Cb) |
| 443 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 444 | L2CAP_TRACE_WARNING ("L2CAP - rcvd conn req for outgoing-only connection PSM: %d", con_info.psm); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 445 | l2cu_reject_connection (p_lcb, rcid, id, L2CAP_CONN_NO_PSM); |
| 446 | break; |
| 447 | } |
| 448 | } |
| 449 | if ((p_ccb = l2cu_allocate_ccb (p_lcb, 0)) == NULL) |
| 450 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 451 | L2CAP_TRACE_ERROR ("L2CAP - unable to allocate CCB"); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 452 | l2cu_reject_connection (p_lcb, rcid, id, L2CAP_CONN_NO_RESOURCES); |
| 453 | break; |
| 454 | } |
| 455 | p_ccb->remote_id = id; |
| 456 | p_ccb->p_rcb = p_rcb; |
| 457 | p_ccb->remote_cid = rcid; |
| 458 | |
| 459 | l2c_csm_execute(p_ccb, L2CEVT_L2CAP_CONNECT_REQ, &con_info); |
| 460 | break; |
| 461 | |
| 462 | case L2CAP_CMD_CONN_RSP: |
| 463 | STREAM_TO_UINT16 (con_info.remote_cid, p); |
| 464 | STREAM_TO_UINT16 (lcid, p); |
| 465 | STREAM_TO_UINT16 (con_info.l2cap_result, p); |
| 466 | STREAM_TO_UINT16 (con_info.l2cap_status, p); |
| 467 | |
| 468 | if ((p_ccb = l2cu_find_ccb_by_cid (p_lcb, lcid)) == NULL) |
| 469 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 470 | L2CAP_TRACE_WARNING ("L2CAP - no CCB for conn rsp, LCID: %d RCID: %d", |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 471 | lcid, con_info.remote_cid); |
| 472 | break; |
| 473 | } |
| 474 | if (p_ccb->local_id != id) |
| 475 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 476 | L2CAP_TRACE_WARNING ("L2CAP - con rsp - bad ID. Exp: %d Got: %d", |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 477 | p_ccb->local_id, id); |
| 478 | break; |
| 479 | } |
| 480 | |
| 481 | if (con_info.l2cap_result == L2CAP_CONN_OK) |
| 482 | l2c_csm_execute(p_ccb, L2CEVT_L2CAP_CONNECT_RSP, &con_info); |
| 483 | else if (con_info.l2cap_result == L2CAP_CONN_PENDING) |
| 484 | l2c_csm_execute(p_ccb, L2CEVT_L2CAP_CONNECT_RSP_PND, &con_info); |
| 485 | else |
| 486 | l2c_csm_execute(p_ccb, L2CEVT_L2CAP_CONNECT_RSP_NEG, &con_info); |
| 487 | |
| 488 | break; |
| 489 | |
| 490 | case L2CAP_CMD_CONFIG_REQ: |
| 491 | p_cfg_end = p + cmd_len; |
| 492 | cfg_rej = FALSE; |
| 493 | cfg_rej_len = 0; |
| 494 | |
| 495 | STREAM_TO_UINT16 (lcid, p); |
| 496 | STREAM_TO_UINT16 (cfg_info.flags, p); |
| 497 | |
| 498 | p_cfg_start = p; |
| 499 | |
| 500 | cfg_info.flush_to_present = cfg_info.mtu_present = cfg_info.qos_present = |
| 501 | cfg_info.fcr_present = cfg_info.fcs_present = FALSE; |
| 502 | |
| 503 | while (p < p_cfg_end) |
| 504 | { |
| 505 | STREAM_TO_UINT8 (cfg_code, p); |
| 506 | STREAM_TO_UINT8 (cfg_len, p); |
| 507 | |
| 508 | switch (cfg_code & 0x7F) |
| 509 | { |
| 510 | case L2CAP_CFG_TYPE_MTU: |
| 511 | cfg_info.mtu_present = TRUE; |
| 512 | STREAM_TO_UINT16 (cfg_info.mtu, p); |
| 513 | break; |
| 514 | |
| 515 | case L2CAP_CFG_TYPE_FLUSH_TOUT: |
| 516 | cfg_info.flush_to_present = TRUE; |
| 517 | STREAM_TO_UINT16 (cfg_info.flush_to, p); |
| 518 | break; |
| 519 | |
| 520 | case L2CAP_CFG_TYPE_QOS: |
| 521 | cfg_info.qos_present = TRUE; |
| 522 | STREAM_TO_UINT8 (cfg_info.qos.qos_flags, p); |
| 523 | STREAM_TO_UINT8 (cfg_info.qos.service_type, p); |
| 524 | STREAM_TO_UINT32 (cfg_info.qos.token_rate, p); |
| 525 | STREAM_TO_UINT32 (cfg_info.qos.token_bucket_size, p); |
| 526 | STREAM_TO_UINT32 (cfg_info.qos.peak_bandwidth, p); |
| 527 | STREAM_TO_UINT32 (cfg_info.qos.latency, p); |
| 528 | STREAM_TO_UINT32 (cfg_info.qos.delay_variation, p); |
| 529 | break; |
| 530 | |
| 531 | case L2CAP_CFG_TYPE_FCR: |
| 532 | cfg_info.fcr_present = TRUE; |
| 533 | STREAM_TO_UINT8 (cfg_info.fcr.mode, p); |
| 534 | STREAM_TO_UINT8 (cfg_info.fcr.tx_win_sz, p); |
| 535 | STREAM_TO_UINT8 (cfg_info.fcr.max_transmit, p); |
| 536 | STREAM_TO_UINT16 (cfg_info.fcr.rtrans_tout, p); |
| 537 | STREAM_TO_UINT16 (cfg_info.fcr.mon_tout, p); |
| 538 | STREAM_TO_UINT16 (cfg_info.fcr.mps, p); |
| 539 | break; |
| 540 | |
| 541 | case L2CAP_CFG_TYPE_FCS: |
| 542 | cfg_info.fcs_present = TRUE; |
| 543 | STREAM_TO_UINT8 (cfg_info.fcs, p); |
| 544 | break; |
| 545 | |
| 546 | case L2CAP_CFG_TYPE_EXT_FLOW: |
| 547 | cfg_info.ext_flow_spec_present = TRUE; |
| 548 | STREAM_TO_UINT8 (cfg_info.ext_flow_spec.id, p); |
| 549 | STREAM_TO_UINT8 (cfg_info.ext_flow_spec.stype, p); |
| 550 | STREAM_TO_UINT16 (cfg_info.ext_flow_spec.max_sdu_size, p); |
| 551 | STREAM_TO_UINT32 (cfg_info.ext_flow_spec.sdu_inter_time, p); |
| 552 | STREAM_TO_UINT32 (cfg_info.ext_flow_spec.access_latency, p); |
| 553 | STREAM_TO_UINT32 (cfg_info.ext_flow_spec.flush_timeout, p); |
| 554 | break; |
| 555 | |
| 556 | default: |
| 557 | /* sanity check option length */ |
| 558 | if ((cfg_len + L2CAP_CFG_OPTION_OVERHEAD) <= cmd_len) |
| 559 | { |
| 560 | p += cfg_len; |
| 561 | if ((cfg_code & 0x80) == 0) |
| 562 | { |
| 563 | cfg_rej_len += cfg_len + L2CAP_CFG_OPTION_OVERHEAD; |
| 564 | cfg_rej = TRUE; |
| 565 | } |
| 566 | } |
| 567 | /* bad length; force loop exit */ |
| 568 | else |
| 569 | { |
| 570 | p = p_cfg_end; |
| 571 | cfg_rej = TRUE; |
| 572 | } |
| 573 | break; |
| 574 | } |
| 575 | } |
| 576 | |
| 577 | if ((p_ccb = l2cu_find_ccb_by_cid (p_lcb, lcid)) != NULL) |
| 578 | { |
| 579 | p_ccb->remote_id = id; |
| 580 | if (cfg_rej) |
| 581 | { |
| 582 | l2cu_send_peer_config_rej (p_ccb, p_cfg_start, (UINT16) (cmd_len - L2CAP_CONFIG_REQ_LEN), cfg_rej_len); |
| 583 | } |
| 584 | else |
| 585 | { |
| 586 | l2c_csm_execute (p_ccb, L2CEVT_L2CAP_CONFIG_REQ, &cfg_info); |
| 587 | } |
| 588 | } |
| 589 | else |
| 590 | { |
| 591 | /* updated spec says send command reject on invalid cid */ |
| 592 | l2cu_send_peer_cmd_reject (p_lcb, L2CAP_CMD_REJ_INVALID_CID, id, 0, 0); |
| 593 | } |
| 594 | break; |
| 595 | |
| 596 | case L2CAP_CMD_CONFIG_RSP: |
| 597 | p_cfg_end = p + cmd_len; |
| 598 | STREAM_TO_UINT16 (lcid, p); |
| 599 | STREAM_TO_UINT16 (cfg_info.flags, p); |
| 600 | STREAM_TO_UINT16 (cfg_info.result, p); |
| 601 | |
| 602 | cfg_info.flush_to_present = cfg_info.mtu_present = cfg_info.qos_present = |
| 603 | cfg_info.fcr_present = cfg_info.fcs_present = FALSE; |
| 604 | |
| 605 | while (p < p_cfg_end) |
| 606 | { |
| 607 | STREAM_TO_UINT8 (cfg_code, p); |
| 608 | STREAM_TO_UINT8 (cfg_len, p); |
| 609 | |
| 610 | switch (cfg_code & 0x7F) |
| 611 | { |
| 612 | case L2CAP_CFG_TYPE_MTU: |
| 613 | cfg_info.mtu_present = TRUE; |
| 614 | STREAM_TO_UINT16 (cfg_info.mtu, p); |
| 615 | break; |
| 616 | |
| 617 | case L2CAP_CFG_TYPE_FLUSH_TOUT: |
| 618 | cfg_info.flush_to_present = TRUE; |
| 619 | STREAM_TO_UINT16 (cfg_info.flush_to, p); |
| 620 | break; |
| 621 | |
| 622 | case L2CAP_CFG_TYPE_QOS: |
| 623 | cfg_info.qos_present = TRUE; |
| 624 | STREAM_TO_UINT8 (cfg_info.qos.qos_flags, p); |
| 625 | STREAM_TO_UINT8 (cfg_info.qos.service_type, p); |
| 626 | STREAM_TO_UINT32 (cfg_info.qos.token_rate, p); |
| 627 | STREAM_TO_UINT32 (cfg_info.qos.token_bucket_size, p); |
| 628 | STREAM_TO_UINT32 (cfg_info.qos.peak_bandwidth, p); |
| 629 | STREAM_TO_UINT32 (cfg_info.qos.latency, p); |
| 630 | STREAM_TO_UINT32 (cfg_info.qos.delay_variation, p); |
| 631 | break; |
| 632 | |
| 633 | case L2CAP_CFG_TYPE_FCR: |
| 634 | cfg_info.fcr_present = TRUE; |
| 635 | STREAM_TO_UINT8 (cfg_info.fcr.mode, p); |
| 636 | STREAM_TO_UINT8 (cfg_info.fcr.tx_win_sz, p); |
| 637 | STREAM_TO_UINT8 (cfg_info.fcr.max_transmit, p); |
| 638 | STREAM_TO_UINT16 (cfg_info.fcr.rtrans_tout, p); |
| 639 | STREAM_TO_UINT16 (cfg_info.fcr.mon_tout, p); |
| 640 | STREAM_TO_UINT16 (cfg_info.fcr.mps, p); |
| 641 | break; |
| 642 | |
| 643 | case L2CAP_CFG_TYPE_FCS: |
| 644 | cfg_info.fcs_present = TRUE; |
| 645 | STREAM_TO_UINT8 (cfg_info.fcs, p); |
| 646 | break; |
| 647 | |
| 648 | case L2CAP_CFG_TYPE_EXT_FLOW: |
| 649 | cfg_info.ext_flow_spec_present = TRUE; |
| 650 | STREAM_TO_UINT8 (cfg_info.ext_flow_spec.id, p); |
| 651 | STREAM_TO_UINT8 (cfg_info.ext_flow_spec.stype, p); |
| 652 | STREAM_TO_UINT16 (cfg_info.ext_flow_spec.max_sdu_size, p); |
| 653 | STREAM_TO_UINT32 (cfg_info.ext_flow_spec.sdu_inter_time, p); |
| 654 | STREAM_TO_UINT32 (cfg_info.ext_flow_spec.access_latency, p); |
| 655 | STREAM_TO_UINT32 (cfg_info.ext_flow_spec.flush_timeout, p); |
| 656 | break; |
| 657 | } |
| 658 | } |
| 659 | |
| 660 | if ((p_ccb = l2cu_find_ccb_by_cid (p_lcb, lcid)) != NULL) |
| 661 | { |
| 662 | if (p_ccb->local_id != id) |
| 663 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 664 | L2CAP_TRACE_WARNING ("L2CAP - cfg rsp - bad ID. Exp: %d Got: %d", |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 665 | p_ccb->local_id, id); |
| 666 | break; |
| 667 | } |
| 668 | if ( (cfg_info.result == L2CAP_CFG_OK) || (cfg_info.result == L2CAP_CFG_PENDING) ) |
| 669 | l2c_csm_execute (p_ccb, L2CEVT_L2CAP_CONFIG_RSP, &cfg_info); |
| 670 | else |
| 671 | l2c_csm_execute (p_ccb, L2CEVT_L2CAP_CONFIG_RSP_NEG, &cfg_info); |
| 672 | } |
| 673 | else |
| 674 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 675 | L2CAP_TRACE_WARNING ("L2CAP - rcvd cfg rsp for unknown CID: 0x%04x", lcid); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 676 | } |
| 677 | break; |
| 678 | |
| 679 | |
| 680 | case L2CAP_CMD_DISC_REQ: |
| 681 | STREAM_TO_UINT16 (lcid, p); |
| 682 | STREAM_TO_UINT16 (rcid, p); |
| 683 | |
| 684 | if ((p_ccb = l2cu_find_ccb_by_cid (p_lcb, lcid)) != NULL) |
| 685 | { |
| 686 | if (p_ccb->remote_cid == rcid) |
| 687 | { |
| 688 | p_ccb->remote_id = id; |
| 689 | l2c_csm_execute (p_ccb, L2CEVT_L2CAP_DISCONNECT_REQ, &con_info); |
| 690 | } |
| 691 | } |
| 692 | else |
| 693 | l2cu_send_peer_disc_rsp (p_lcb, id, lcid, rcid); |
| 694 | |
| 695 | break; |
| 696 | |
| 697 | case L2CAP_CMD_DISC_RSP: |
| 698 | STREAM_TO_UINT16 (rcid, p); |
| 699 | STREAM_TO_UINT16 (lcid, p); |
| 700 | |
| 701 | if ((p_ccb = l2cu_find_ccb_by_cid (p_lcb, lcid)) != NULL) |
| 702 | { |
| 703 | if ((p_ccb->remote_cid == rcid) && (p_ccb->local_id == id)) |
| 704 | { |
| 705 | l2c_csm_execute (p_ccb, L2CEVT_L2CAP_DISCONNECT_RSP, &con_info); |
| 706 | } |
| 707 | } |
| 708 | break; |
| 709 | |
| 710 | case L2CAP_CMD_ECHO_REQ: |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 711 | l2cu_send_peer_echo_rsp (p_lcb, id, NULL, 0); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 712 | break; |
| 713 | |
| 714 | case L2CAP_CMD_ECHO_RSP: |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 715 | if (p_lcb->p_echo_rsp_cb) |
| 716 | { |
| 717 | tL2CA_ECHO_RSP_CB *p_cb = p_lcb->p_echo_rsp_cb; |
| 718 | |
| 719 | /* Zero out the callback in case app immediately calls us again */ |
| 720 | p_lcb->p_echo_rsp_cb = NULL; |
| 721 | |
| 722 | (*p_cb) (L2CAP_PING_RESULT_OK); |
| 723 | } |
| 724 | break; |
| 725 | |
| 726 | case L2CAP_CMD_INFO_REQ: |
| 727 | STREAM_TO_UINT16 (info_type, p); |
| 728 | l2cu_send_peer_info_rsp (p_lcb, id, info_type); |
| 729 | break; |
| 730 | |
| 731 | case L2CAP_CMD_INFO_RSP: |
| 732 | /* Stop the link connect timer if sent before L2CAP connection is up */ |
| 733 | if (p_lcb->w4_info_rsp) |
| 734 | { |
| 735 | btu_stop_timer (&p_lcb->info_timer_entry); |
| 736 | p_lcb->w4_info_rsp = FALSE; |
| 737 | } |
| 738 | |
| 739 | STREAM_TO_UINT16 (info_type, p); |
| 740 | STREAM_TO_UINT16 (result, p); |
| 741 | |
| 742 | p_lcb->info_rx_bits |= (1 << info_type); |
| 743 | |
| 744 | if ( (info_type == L2CAP_EXTENDED_FEATURES_INFO_TYPE) |
| 745 | && (result == L2CAP_INFO_RESP_RESULT_SUCCESS) ) |
| 746 | { |
| 747 | STREAM_TO_UINT32( p_lcb->peer_ext_fea, p ); |
| 748 | |
| 749 | #if (L2CAP_NUM_FIXED_CHNLS > 0) |
| 750 | if (p_lcb->peer_ext_fea & L2CAP_EXTFEA_FIXED_CHNLS) |
| 751 | { |
| 752 | l2cu_send_peer_info_req (p_lcb, L2CAP_FIXED_CHANNELS_INFO_TYPE); |
| 753 | break; |
| 754 | } |
| 755 | else |
| 756 | { |
| 757 | l2cu_process_fixed_chnl_resp (p_lcb); |
| 758 | } |
| 759 | #endif |
| 760 | } |
| 761 | |
| 762 | |
| 763 | #if (L2CAP_NUM_FIXED_CHNLS > 0) |
| 764 | if (info_type == L2CAP_FIXED_CHANNELS_INFO_TYPE) |
| 765 | { |
| 766 | if (result == L2CAP_INFO_RESP_RESULT_SUCCESS) |
| 767 | { |
| 768 | memcpy (p_lcb->peer_chnl_mask, p, L2CAP_FIXED_CHNL_ARRAY_SIZE); |
| 769 | } |
| 770 | |
| 771 | l2cu_process_fixed_chnl_resp (p_lcb); |
| 772 | } |
| 773 | #endif |
| 774 | #if (L2CAP_UCD_INCLUDED == TRUE) |
| 775 | else if (info_type == L2CAP_CONNLESS_MTU_INFO_TYPE) |
| 776 | { |
| 777 | if (result == L2CAP_INFO_RESP_RESULT_SUCCESS) |
| 778 | { |
| 779 | STREAM_TO_UINT16 (p_lcb->ucd_mtu, p); |
| 780 | } |
| 781 | } |
| 782 | #endif |
| 783 | |
| 784 | ci.status = HCI_SUCCESS; |
| 785 | memcpy (ci.bd_addr, p_lcb->remote_bd_addr, sizeof(BD_ADDR)); |
| 786 | for (p_ccb = p_lcb->ccb_queue.p_first_ccb; p_ccb; p_ccb = p_ccb->p_next_ccb) |
| 787 | { |
| 788 | l2c_csm_execute (p_ccb, L2CEVT_L2CAP_INFO_RSP, &ci); |
| 789 | } |
| 790 | break; |
| 791 | |
| 792 | default: |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 793 | L2CAP_TRACE_WARNING ("L2CAP - bad cmd code: %d", cmd_code); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 794 | l2cu_send_peer_cmd_reject (p_lcb, L2CAP_CMD_REJ_NOT_UNDERSTOOD, id, 0, 0); |
| 795 | return; |
| 796 | } |
| 797 | } |
| 798 | } |
| 799 | |
| 800 | /******************************************************************************* |
| 801 | ** |
| 802 | ** Function l2c_process_held_packets |
| 803 | ** |
| 804 | ** Description This function processes any L2CAP packets that arrived before |
| 805 | ** the HCI connection complete arrived. It is a work around for |
| 806 | ** badly behaved controllers. |
| 807 | ** |
| 808 | ** Returns void |
| 809 | ** |
| 810 | *******************************************************************************/ |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 811 | void l2c_process_held_packets(BOOLEAN timed_out) { |
| 812 | if (list_is_empty(l2cb.rcv_pending_q)) |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 813 | return; |
| 814 | |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 815 | if (!timed_out) { |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 816 | btu_stop_timer(&l2cb.rcv_hold_tle); |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 817 | L2CAP_TRACE_WARNING("L2CAP HOLD CONTINUE"); |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 818 | } else { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 819 | L2CAP_TRACE_WARNING("L2CAP HOLD TIMEOUT"); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 820 | } |
| 821 | |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 822 | for (const list_node_t *node = list_begin(l2cb.rcv_pending_q); |
| 823 | node != list_end(l2cb.rcv_pending_q);) { |
| 824 | BT_HDR *p_buf = list_node(node); |
| 825 | node = list_next(node); |
| 826 | if (!timed_out || (!p_buf->layer_specific) || (--p_buf->layer_specific == 0)) { |
| 827 | list_remove(l2cb.rcv_pending_q, p_buf); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 828 | p_buf->layer_specific = 0xFFFF; |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 829 | l2c_rcv_acl_data(p_buf); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 830 | } |
| 831 | } |
| 832 | |
| 833 | /* If anyone still in the queue, restart the timeout */ |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 834 | if (!list_is_empty(l2cb.rcv_pending_q)) |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 835 | btu_start_timer (&l2cb.rcv_hold_tle, BTU_TTYPE_L2CAP_HOLD, BT_1SEC_TIMEOUT); |
| 836 | } |
| 837 | |
| 838 | |
| 839 | /******************************************************************************* |
| 840 | ** |
| 841 | ** Function l2c_init |
| 842 | ** |
| 843 | ** Description This function is called once at startup to initialize |
| 844 | ** all the L2CAP structures |
| 845 | ** |
| 846 | ** Returns void |
| 847 | ** |
| 848 | *******************************************************************************/ |
| 849 | void l2c_init (void) |
| 850 | { |
| 851 | INT16 xx; |
| 852 | |
| 853 | memset (&l2cb, 0, sizeof (tL2C_CB)); |
| 854 | /* the psm is increased by 2 before being used */ |
| 855 | l2cb.dyn_psm = 0xFFF; |
| 856 | |
| 857 | /* Put all the channel control blocks on the free queue */ |
| 858 | for (xx = 0; xx < MAX_L2CAP_CHANNELS - 1; xx++) |
| 859 | { |
| 860 | l2cb.ccb_pool[xx].p_next_ccb = &l2cb.ccb_pool[xx + 1]; |
| 861 | } |
| 862 | |
| 863 | #if (L2CAP_NON_FLUSHABLE_PB_INCLUDED == TRUE) |
| 864 | /* it will be set to L2CAP_PKT_START_NON_FLUSHABLE if controller supports */ |
| 865 | l2cb.non_flushable_pbf = L2CAP_PKT_START << L2CAP_PKT_TYPE_SHIFT; |
| 866 | #endif |
| 867 | |
| 868 | |
| 869 | l2cb.p_free_ccb_first = &l2cb.ccb_pool[0]; |
| 870 | l2cb.p_free_ccb_last = &l2cb.ccb_pool[MAX_L2CAP_CHANNELS - 1]; |
| 871 | |
| 872 | #ifdef L2CAP_DESIRED_LINK_ROLE |
| 873 | l2cb.desire_role = L2CAP_DESIRED_LINK_ROLE; |
| 874 | #else |
| 875 | l2cb.desire_role = HCI_ROLE_SLAVE; |
| 876 | #endif |
| 877 | |
| 878 | /* Set the default idle timeout */ |
| 879 | l2cb.idle_timeout = L2CAP_LINK_INACTIVITY_TOUT; |
| 880 | |
| 881 | #if defined(L2CAP_INITIAL_TRACE_LEVEL) |
| 882 | l2cb.l2cap_trace_level = L2CAP_INITIAL_TRACE_LEVEL; |
| 883 | #else |
| 884 | l2cb.l2cap_trace_level = BT_TRACE_LEVEL_NONE; /* No traces */ |
| 885 | #endif |
| 886 | |
| 887 | #if L2CAP_CONFORMANCE_TESTING == TRUE |
| 888 | /* Conformance testing needs a dynamic response */ |
| 889 | l2cb.test_info_resp = L2CAP_EXTFEA_SUPPORTED_MASK; |
| 890 | #endif |
| 891 | |
| 892 | /* Number of ACL buffers to use for high priority channel */ |
| 893 | #if (defined(L2CAP_HIGH_PRI_CHAN_QUOTA_IS_CONFIGURABLE) && (L2CAP_HIGH_PRI_CHAN_QUOTA_IS_CONFIGURABLE == TRUE)) |
| 894 | l2cb.high_pri_min_xmit_quota = L2CAP_HIGH_PRI_MIN_XMIT_QUOTA; |
| 895 | #endif |
| 896 | |
Satya Calloji | 0b47e0a | 2015-03-17 13:12:01 -0700 | [diff] [blame] | 897 | l2cb.l2c_ble_fixed_chnls_mask = |
| 898 | L2CAP_FIXED_CHNL_ATT_BIT | L2CAP_FIXED_CHNL_BLE_SIG_BIT | L2CAP_FIXED_CHNL_SMP_BIT; |
| 899 | |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 900 | l2cb.rcv_pending_q = list_new(NULL); |
| 901 | if (l2cb.rcv_pending_q == NULL) |
Sharvil Nanavati | 4480276 | 2014-12-23 23:08:58 -0800 | [diff] [blame] | 902 | LOG_ERROR("%s unable to allocate memory for link layer control block", __func__); |
Chris Manton | 305c159 | 2014-09-19 10:49:50 -0700 | [diff] [blame] | 903 | } |
| 904 | |
| 905 | void l2c_free(void) { |
| 906 | list_free(l2cb.rcv_pending_q); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 907 | } |
| 908 | |
| 909 | /******************************************************************************* |
| 910 | ** |
| 911 | ** Function l2c_process_timeout |
| 912 | ** |
| 913 | ** Description This function is called when an L2CAP-related timeout occurs |
| 914 | ** |
| 915 | ** Returns void |
| 916 | ** |
| 917 | *******************************************************************************/ |
| 918 | void l2c_process_timeout (TIMER_LIST_ENT *p_tle) |
| 919 | { |
| 920 | /* What type of timeout ? */ |
| 921 | switch (p_tle->event) |
| 922 | { |
| 923 | case BTU_TTYPE_L2CAP_LINK: |
| 924 | l2c_link_timeout ((tL2C_LCB *)p_tle->param); |
| 925 | break; |
| 926 | |
| 927 | case BTU_TTYPE_L2CAP_CHNL: |
| 928 | l2c_csm_execute (((tL2C_CCB *)p_tle->param), L2CEVT_TIMEOUT, NULL); |
| 929 | break; |
| 930 | |
| 931 | case BTU_TTYPE_L2CAP_FCR_ACK: |
| 932 | l2c_csm_execute (((tL2C_CCB *)p_tle->param), L2CEVT_ACK_TIMEOUT, NULL); |
| 933 | break; |
| 934 | |
| 935 | case BTU_TTYPE_L2CAP_HOLD: |
| 936 | /* Update the timeouts in the hold queue */ |
| 937 | l2c_process_held_packets(TRUE); |
| 938 | break; |
| 939 | |
| 940 | case BTU_TTYPE_L2CAP_INFO: |
| 941 | l2c_info_timeout((tL2C_LCB *)p_tle->param); |
| 942 | break; |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 943 | } |
| 944 | } |
| 945 | |
| 946 | /******************************************************************************* |
| 947 | ** |
| 948 | ** Function l2c_data_write |
| 949 | ** |
| 950 | ** Description API functions call this function to write data. |
| 951 | ** |
| 952 | ** Returns L2CAP_DW_SUCCESS, if data accepted, else FALSE |
| 953 | ** L2CAP_DW_CONGESTED, if data accepted and the channel is congested |
| 954 | ** L2CAP_DW_FAILED, if error |
| 955 | ** |
| 956 | *******************************************************************************/ |
| 957 | UINT8 l2c_data_write (UINT16 cid, BT_HDR *p_data, UINT16 flags) |
| 958 | { |
| 959 | tL2C_CCB *p_ccb; |
| 960 | |
| 961 | /* Find the channel control block. We don't know the link it is on. */ |
| 962 | if ((p_ccb = l2cu_find_ccb_by_cid (NULL, cid)) == NULL) |
| 963 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 964 | L2CAP_TRACE_WARNING ("L2CAP - no CCB for L2CA_DataWrite, CID: %d", cid); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 965 | GKI_freebuf (p_data); |
| 966 | return (L2CAP_DW_FAILED); |
| 967 | } |
| 968 | |
| 969 | #ifndef TESTER /* Tester may send any amount of data. otherwise sending message |
| 970 | bigger than mtu size of peer is a violation of protocol */ |
| 971 | if (p_data->len > p_ccb->peer_cfg.mtu) |
| 972 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 973 | L2CAP_TRACE_WARNING ("L2CAP - CID: 0x%04x cannot send message bigger than peer's mtu size", cid); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 974 | GKI_freebuf (p_data); |
| 975 | return (L2CAP_DW_FAILED); |
| 976 | } |
| 977 | #endif |
| 978 | |
| 979 | /* channel based, packet based flushable or non-flushable */ |
| 980 | p_data->layer_specific = flags; |
| 981 | |
| 982 | /* If already congested, do not accept any more packets */ |
| 983 | if (p_ccb->cong_sent) |
| 984 | { |
Sharvil Nanavati | a51c9d9 | 2014-05-04 01:08:21 -0700 | [diff] [blame] | 985 | L2CAP_TRACE_ERROR ("L2CAP - CID: 0x%04x cannot send, already congested xmit_hold_q.count: %u buff_quota: %u", |
Chris Manton | fe7216c | 2014-05-06 10:35:42 -0700 | [diff] [blame] | 986 | p_ccb->local_cid, GKI_queue_length(&p_ccb->xmit_hold_q), p_ccb->buff_quota); |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 987 | |
| 988 | GKI_freebuf (p_data); |
| 989 | return (L2CAP_DW_FAILED); |
| 990 | } |
| 991 | |
Chris Manton | cccf02f | 2014-10-21 13:55:24 -0700 | [diff] [blame] | 992 | counter_add("l2cap.dyn.tx.bytes", p_data->len); |
| 993 | counter_add("l2cap.dyn.tx.pkts", 1); |
| 994 | |
The Android Open Source Project | 5738f83 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 995 | l2c_csm_execute (p_ccb, L2CEVT_L2CA_DATA_WRITE, p_data); |
| 996 | |
| 997 | if (p_ccb->cong_sent) |
| 998 | return (L2CAP_DW_CONGESTED); |
| 999 | |
| 1000 | return (L2CAP_DW_SUCCESS); |
| 1001 | } |
| 1002 | |