143625864Smatthias.ringwald /* 26b64433eSmatthias.ringwald * Copyright (C) 2009-2012 by Matthias Ringwald 31713bceaSmatthias.ringwald * 41713bceaSmatthias.ringwald * Redistribution and use in source and binary forms, with or without 51713bceaSmatthias.ringwald * modification, are permitted provided that the following conditions 61713bceaSmatthias.ringwald * are met: 71713bceaSmatthias.ringwald * 81713bceaSmatthias.ringwald * 1. Redistributions of source code must retain the above copyright 91713bceaSmatthias.ringwald * notice, this list of conditions and the following disclaimer. 101713bceaSmatthias.ringwald * 2. Redistributions in binary form must reproduce the above copyright 111713bceaSmatthias.ringwald * notice, this list of conditions and the following disclaimer in the 121713bceaSmatthias.ringwald * documentation and/or other materials provided with the distribution. 131713bceaSmatthias.ringwald * 3. Neither the name of the copyright holders nor the names of 141713bceaSmatthias.ringwald * contributors may be used to endorse or promote products derived 151713bceaSmatthias.ringwald * from this software without specific prior written permission. 166b64433eSmatthias.ringwald * 4. Any redistribution, use, or modification is done solely for 176b64433eSmatthias.ringwald * personal benefit and not for any commercial purpose or for 186b64433eSmatthias.ringwald * monetary gain. 191713bceaSmatthias.ringwald * 201713bceaSmatthias.ringwald * THIS SOFTWARE IS PROVIDED BY MATTHIAS RINGWALD AND CONTRIBUTORS 211713bceaSmatthias.ringwald * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 221713bceaSmatthias.ringwald * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 231713bceaSmatthias.ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS 241713bceaSmatthias.ringwald * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 251713bceaSmatthias.ringwald * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 261713bceaSmatthias.ringwald * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 271713bceaSmatthias.ringwald * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 281713bceaSmatthias.ringwald * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 291713bceaSmatthias.ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 301713bceaSmatthias.ringwald * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 311713bceaSmatthias.ringwald * SUCH DAMAGE. 321713bceaSmatthias.ringwald * 336b64433eSmatthias.ringwald * Please inquire about commercial licensing options at [email protected] 346b64433eSmatthias.ringwald * 351713bceaSmatthias.ringwald */ 361713bceaSmatthias.ringwald 371713bceaSmatthias.ringwald /* 3843625864Smatthias.ringwald * l2cap.c 3943625864Smatthias.ringwald * 4043625864Smatthias.ringwald * Logical Link Control and Adaption Protocl (L2CAP) 4143625864Smatthias.ringwald * 4243625864Smatthias.ringwald * Created by Matthias Ringwald on 5/16/09. 4343625864Smatthias.ringwald */ 4443625864Smatthias.ringwald 4543625864Smatthias.ringwald #include "l2cap.h" 46645658c9Smatthias.ringwald #include "hci.h" 472b3c6c9bSmatthias.ringwald #include "hci_dump.h" 486218e6f1Smatthias.ringwald #include "debug.h" 49d3a9df87Smatthias.ringwald #include "btstack_memory.h" 5043625864Smatthias.ringwald 5143625864Smatthias.ringwald #include <stdarg.h> 5243625864Smatthias.ringwald #include <string.h> 5343625864Smatthias.ringwald 5443625864Smatthias.ringwald #include <stdio.h> 5543625864Smatthias.ringwald 564c744e21Smatthias.ringwald // nr of buffered acl packets in outgoing queue to get max performance 574c744e21Smatthias.ringwald #define NR_BUFFERED_ACL_PACKETS 3 584c744e21Smatthias.ringwald 5939bda6d5Smatthias.ringwald // used to cache l2cap rejects, echo, and informational requests 60e16a9cacSmatthias.ringwald #define NR_PENDING_SIGNALING_RESPONSES 3 6139bda6d5Smatthias.ringwald 6200d93d79Smatthias.ringwald // offsets for L2CAP SIGNALING COMMANDS 6300d93d79Smatthias.ringwald #define L2CAP_SIGNALING_COMMAND_CODE_OFFSET 0 6400d93d79Smatthias.ringwald #define L2CAP_SIGNALING_COMMAND_SIGID_OFFSET 1 6500d93d79Smatthias.ringwald #define L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET 2 6600d93d79Smatthias.ringwald #define L2CAP_SIGNALING_COMMAND_DATA_OFFSET 4 6700d93d79Smatthias.ringwald 6839bda6d5Smatthias.ringwald static void null_packet_handler(void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size); 6939bda6d5Smatthias.ringwald static void l2cap_packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size); 7039bda6d5Smatthias.ringwald 7139bda6d5Smatthias.ringwald // used to cache l2cap rejects, echo, and informational requests 722b83fb7dSmatthias.ringwald static l2cap_signaling_response_t signaling_responses[NR_PENDING_SIGNALING_RESPONSES]; 732b83fb7dSmatthias.ringwald static int signaling_responses_pending; 742b83fb7dSmatthias.ringwald 75c42e2ff2S[email protected] static linked_list_t l2cap_channels; 76c42e2ff2S[email protected] static linked_list_t l2cap_services; 7736944dffSmatthias.ringwald static void (*packet_handler) (void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size) = null_packet_handler; 78808a48abSmatthias.ringwald static int new_credits_blocked = 0; 791e6aba47Smatthias.ringwald 80c42e2ff2S[email protected] static btstack_packet_handler_t attribute_protocol_packet_handler; 81c42e2ff2S[email protected] static btstack_packet_handler_t security_protocol_packet_handler; 82ac301f95S[email protected] static uint8_t require_security_level2_for_outgoing_sdp; 835652b5ffS[email protected] 8439bda6d5Smatthias.ringwald // prototypes 85fa8473a4Smatthias.ringwald static void l2cap_finialize_channel_close(l2cap_channel_t *channel); 86fa8473a4Smatthias.ringwald static l2cap_service_t * l2cap_get_service(uint16_t psm); 87fa8473a4Smatthias.ringwald static void l2cap_emit_channel_opened(l2cap_channel_t *channel, uint8_t status); 88fa8473a4Smatthias.ringwald static void l2cap_emit_channel_closed(l2cap_channel_t *channel); 89fa8473a4Smatthias.ringwald static void l2cap_emit_connection_request(l2cap_channel_t *channel); 90fa8473a4Smatthias.ringwald static int l2cap_channel_ready_for_open(l2cap_channel_t *channel); 9139bda6d5Smatthias.ringwald 9239bda6d5Smatthias.ringwald 931e6aba47Smatthias.ringwald void l2cap_init(){ 94808a48abSmatthias.ringwald new_credits_blocked = 0; 952b83fb7dSmatthias.ringwald signaling_responses_pending = 0; 96808a48abSmatthias.ringwald 97f5454fc6Smatthias.ringwald l2cap_channels = NULL; 98f5454fc6Smatthias.ringwald l2cap_services = NULL; 99f5454fc6Smatthias.ringwald 100f5454fc6Smatthias.ringwald packet_handler = null_packet_handler; 101c42e2ff2S[email protected] attribute_protocol_packet_handler = NULL; 102c42e2ff2S[email protected] security_protocol_packet_handler = NULL; 103f5454fc6Smatthias.ringwald 104ac301f95S[email protected] require_security_level2_for_outgoing_sdp = 0; 105ac301f95S[email protected] 106fcadd0caSmatthias.ringwald // 1072718e2e7Smatthias.ringwald // register callback with HCI 108fcadd0caSmatthias.ringwald // 1092718e2e7Smatthias.ringwald hci_register_packet_handler(&l2cap_packet_handler); 110c0e866bfSmatthias.ringwald hci_connectable_control(0); // no services yet 111fcadd0caSmatthias.ringwald } 112fcadd0caSmatthias.ringwald 113fcadd0caSmatthias.ringwald 114fcadd0caSmatthias.ringwald /** Register L2CAP packet handlers */ 11536944dffSmatthias.ringwald static void null_packet_handler(void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ 116fcadd0caSmatthias.ringwald } 11736944dffSmatthias.ringwald void l2cap_register_packet_handler(void (*handler)(void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size)){ 118b502e1b0Smatthias.ringwald packet_handler = handler; 1191e6aba47Smatthias.ringwald } 1201e6aba47Smatthias.ringwald 12158de5610Smatthias.ringwald // notify client/protocol handler 12258de5610Smatthias.ringwald void l2cap_dispatch(l2cap_channel_t *channel, uint8_t type, uint8_t * data, uint16_t size){ 12358de5610Smatthias.ringwald if (channel->packet_handler) { 12458de5610Smatthias.ringwald (* (channel->packet_handler))(type, channel->local_cid, data, size); 12558de5610Smatthias.ringwald } else { 12636944dffSmatthias.ringwald (*packet_handler)(channel->connection, type, channel->local_cid, data, size); 12758de5610Smatthias.ringwald } 12858de5610Smatthias.ringwald } 12958de5610Smatthias.ringwald 13058de5610Smatthias.ringwald void l2cap_emit_channel_opened(l2cap_channel_t *channel, uint8_t status) { 131c9dc710bS[email protected] log_info("L2CAP_EVENT_CHANNEL_OPENED status 0x%x addr %s handle 0x%x psm 0x%x local_cid 0x%x remote_cid 0x%x local_mtu %u, remote_mtu %u, flush_timeout %u", 132e0abb8e7S[email protected] status, bd_addr_to_str(channel->address), channel->handle, channel->psm, 133c9dc710bS[email protected] channel->local_cid, channel->remote_cid, channel->local_mtu, channel->remote_mtu, channel->flush_timeout); 134c9dc710bS[email protected] uint8_t event[23]; 13558de5610Smatthias.ringwald event[0] = L2CAP_EVENT_CHANNEL_OPENED; 13658de5610Smatthias.ringwald event[1] = sizeof(event) - 2; 13758de5610Smatthias.ringwald event[2] = status; 13858de5610Smatthias.ringwald bt_flip_addr(&event[3], channel->address); 13958de5610Smatthias.ringwald bt_store_16(event, 9, channel->handle); 14058de5610Smatthias.ringwald bt_store_16(event, 11, channel->psm); 14158de5610Smatthias.ringwald bt_store_16(event, 13, channel->local_cid); 14258de5610Smatthias.ringwald bt_store_16(event, 15, channel->remote_cid); 1434c98aa43Smatthias.ringwald bt_store_16(event, 17, channel->local_mtu); 1444c98aa43Smatthias.ringwald bt_store_16(event, 19, channel->remote_mtu); 145c9dc710bS[email protected] bt_store_16(event, 19, channel->flush_timeout); 14658de5610Smatthias.ringwald hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event)); 14758de5610Smatthias.ringwald l2cap_dispatch(channel, HCI_EVENT_PACKET, event, sizeof(event)); 14858de5610Smatthias.ringwald } 14958de5610Smatthias.ringwald 15058de5610Smatthias.ringwald void l2cap_emit_channel_closed(l2cap_channel_t *channel) { 151e0abb8e7S[email protected] log_info("L2CAP_EVENT_CHANNEL_CLOSED local_cid 0x%x", channel->local_cid); 15258de5610Smatthias.ringwald uint8_t event[4]; 15358de5610Smatthias.ringwald event[0] = L2CAP_EVENT_CHANNEL_CLOSED; 15458de5610Smatthias.ringwald event[1] = sizeof(event) - 2; 15558de5610Smatthias.ringwald bt_store_16(event, 2, channel->local_cid); 15658de5610Smatthias.ringwald hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event)); 15758de5610Smatthias.ringwald l2cap_dispatch(channel, HCI_EVENT_PACKET, event, sizeof(event)); 15858de5610Smatthias.ringwald } 15958de5610Smatthias.ringwald 16058de5610Smatthias.ringwald void l2cap_emit_connection_request(l2cap_channel_t *channel) { 161e0abb8e7S[email protected] log_info("L2CAP_EVENT_INCOMING_CONNECTION addr %s handle 0x%x psm 0x%x local_cid 0x%x remote_cid 0x%x", 162e0abb8e7S[email protected] bd_addr_to_str(channel->address), channel->handle, channel->psm, channel->local_cid, channel->remote_cid); 16358de5610Smatthias.ringwald uint8_t event[16]; 16458de5610Smatthias.ringwald event[0] = L2CAP_EVENT_INCOMING_CONNECTION; 16558de5610Smatthias.ringwald event[1] = sizeof(event) - 2; 16658de5610Smatthias.ringwald bt_flip_addr(&event[2], channel->address); 16758de5610Smatthias.ringwald bt_store_16(event, 8, channel->handle); 16858de5610Smatthias.ringwald bt_store_16(event, 10, channel->psm); 16958de5610Smatthias.ringwald bt_store_16(event, 12, channel->local_cid); 17058de5610Smatthias.ringwald bt_store_16(event, 14, channel->remote_cid); 17158de5610Smatthias.ringwald hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event)); 17258de5610Smatthias.ringwald l2cap_dispatch(channel, HCI_EVENT_PACKET, event, sizeof(event)); 1730af41d30Smatthias.ringwald } 174808a48abSmatthias.ringwald 1755842b6d9Smatthias.ringwald static void l2cap_emit_service_registered(void *connection, uint8_t status, uint16_t psm){ 176e0abb8e7S[email protected] log_info("L2CAP_EVENT_SERVICE_REGISTERED status 0x%x psm 0x%x", status, psm); 1775842b6d9Smatthias.ringwald uint8_t event[5]; 1785842b6d9Smatthias.ringwald event[0] = L2CAP_EVENT_SERVICE_REGISTERED; 1795842b6d9Smatthias.ringwald event[1] = sizeof(event) - 2; 1805842b6d9Smatthias.ringwald event[2] = status; 1815842b6d9Smatthias.ringwald bt_store_16(event, 3, psm); 1825842b6d9Smatthias.ringwald hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event)); 1835842b6d9Smatthias.ringwald (*packet_handler)(connection, HCI_EVENT_PACKET, 0, event, sizeof(event)); 1845842b6d9Smatthias.ringwald } 1855842b6d9Smatthias.ringwald 1866218e6f1Smatthias.ringwald void l2cap_emit_credits(l2cap_channel_t *channel, uint8_t credits) { 187e0abb8e7S[email protected] 188e0abb8e7S[email protected] log_info("L2CAP_EVENT_CREDITS local_cid 0x%x credits %u", channel->local_cid, credits); 1896218e6f1Smatthias.ringwald // track credits 1906218e6f1Smatthias.ringwald channel->packets_granted += credits; 1916218e6f1Smatthias.ringwald 1926218e6f1Smatthias.ringwald uint8_t event[5]; 1936218e6f1Smatthias.ringwald event[0] = L2CAP_EVENT_CREDITS; 1946218e6f1Smatthias.ringwald event[1] = sizeof(event) - 2; 1956218e6f1Smatthias.ringwald bt_store_16(event, 2, channel->local_cid); 1966218e6f1Smatthias.ringwald event[4] = credits; 1976218e6f1Smatthias.ringwald hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event)); 1986218e6f1Smatthias.ringwald l2cap_dispatch(channel, HCI_EVENT_PACKET, event, sizeof(event)); 1996218e6f1Smatthias.ringwald } 2006218e6f1Smatthias.ringwald 201808a48abSmatthias.ringwald void l2cap_block_new_credits(uint8_t blocked){ 202808a48abSmatthias.ringwald new_credits_blocked = blocked; 203808a48abSmatthias.ringwald } 204808a48abSmatthias.ringwald 20540d1c7a4Smatthias.ringwald void l2cap_hand_out_credits(void){ 206808a48abSmatthias.ringwald 207808a48abSmatthias.ringwald if (new_credits_blocked) return; // we're told not to. used by daemon 208808a48abSmatthias.ringwald 2098d371091Smatthias.ringwald linked_item_t *it; 2108d371091Smatthias.ringwald for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){ 2118d371091Smatthias.ringwald if (!hci_number_free_acl_slots()) return; 2128d371091Smatthias.ringwald l2cap_channel_t * channel = (l2cap_channel_t *) it; 2130e7bc007Smatthias.ringwald if (channel->state != L2CAP_STATE_OPEN) continue; 2144c744e21Smatthias.ringwald if (hci_number_outgoing_packets(channel->handle) < NR_BUFFERED_ACL_PACKETS && channel->packets_granted == 0) { 2158d371091Smatthias.ringwald l2cap_emit_credits(channel, 1); 2168d371091Smatthias.ringwald } 2178d371091Smatthias.ringwald } 2188d371091Smatthias.ringwald } 2198d371091Smatthias.ringwald 220b35f641cSmatthias.ringwald l2cap_channel_t * l2cap_get_channel_for_local_cid(uint16_t local_cid){ 221f62db1e3Smatthias.ringwald linked_item_t *it; 222f62db1e3Smatthias.ringwald for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){ 2238d371091Smatthias.ringwald l2cap_channel_t * channel = (l2cap_channel_t *) it; 224b35f641cSmatthias.ringwald if ( channel->local_cid == local_cid) { 225f62db1e3Smatthias.ringwald return channel; 226f62db1e3Smatthias.ringwald } 227f62db1e3Smatthias.ringwald } 228f62db1e3Smatthias.ringwald return NULL; 229f62db1e3Smatthias.ringwald } 230f62db1e3Smatthias.ringwald 2316b1fde37Smatthias.ringwald int l2cap_can_send_packet_now(uint16_t local_cid){ 2326b1fde37Smatthias.ringwald l2cap_channel_t *channel = l2cap_get_channel_for_local_cid(local_cid); 2336b1fde37Smatthias.ringwald if (!channel) return 0; 2346b1fde37Smatthias.ringwald if (!channel->packets_granted) return 0; 2356b1fde37Smatthias.ringwald return hci_can_send_packet_now(HCI_ACL_DATA_PACKET); 2366b1fde37Smatthias.ringwald } 2376b1fde37Smatthias.ringwald 23896cbd662Smatthias.ringwald uint16_t l2cap_get_remote_mtu_for_local_cid(uint16_t local_cid){ 23996cbd662Smatthias.ringwald l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid); 24096cbd662Smatthias.ringwald if (channel) { 24196cbd662Smatthias.ringwald return channel->remote_mtu; 24296cbd662Smatthias.ringwald } 24396cbd662Smatthias.ringwald return 0; 24496cbd662Smatthias.ringwald } 24596cbd662Smatthias.ringwald 2465932bd7cS[email protected] static l2cap_channel_t * l2cap_channel_for_rtx_timer(timer_source_t * ts){ 2475932bd7cS[email protected] linked_item_t *it; 2485932bd7cS[email protected] for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){ 2495932bd7cS[email protected] l2cap_channel_t * channel = (l2cap_channel_t *) it; 2505932bd7cS[email protected] if ( &channel->rtx == ts) { 2515932bd7cS[email protected] return channel; 2525932bd7cS[email protected] } 2535932bd7cS[email protected] } 2545932bd7cS[email protected] return NULL; 2555932bd7cS[email protected] } 2565932bd7cS[email protected] 2575932bd7cS[email protected] static void l2cap_rtx_timeout(timer_source_t * ts){ 2585932bd7cS[email protected] l2cap_channel_t * channel = l2cap_channel_for_rtx_timer(ts); 2595932bd7cS[email protected] if (!ts) return; 2605932bd7cS[email protected] 2615932bd7cS[email protected] log_info("l2cap_rtx_timeout for local cid 0x%02x", channel->local_cid); 2625932bd7cS[email protected] 2635932bd7cS[email protected] // "When terminating the channel, it is not necessary to send a L2CAP_DisconnectReq 2645932bd7cS[email protected] // and enter WAIT_DISCONNECT state. Channels can be transitioned directly to the CLOSED state." 2655932bd7cS[email protected] // notify client 2665932bd7cS[email protected] l2cap_emit_channel_opened(channel, L2CAP_CONNECTION_RESPONSE_RESULT_RTX_TIMEOUT); 2675932bd7cS[email protected] 2685932bd7cS[email protected] // discard channel 2695932bd7cS[email protected] linked_list_remove(&l2cap_channels, (linked_item_t *) channel); 2705932bd7cS[email protected] btstack_memory_l2cap_channel_free(channel); 2715932bd7cS[email protected] } 2725932bd7cS[email protected] 2735932bd7cS[email protected] static void l2cap_stop_rtx(l2cap_channel_t * channel){ 2745932bd7cS[email protected] log_info("l2cap_stop_rtx for local cid 0x%02x", channel->local_cid); 2755932bd7cS[email protected] run_loop_remove_timer(&channel->rtx); 2765932bd7cS[email protected] } 2775932bd7cS[email protected] 2785932bd7cS[email protected] static void l2cap_start_rtx(l2cap_channel_t * channel){ 2795932bd7cS[email protected] log_info("l2cap_start_rtx for local cid 0x%02x", channel->local_cid); 2805932bd7cS[email protected] l2cap_stop_rtx(channel); 2815932bd7cS[email protected] run_loop_set_timer_handler(&channel->rtx, l2cap_rtx_timeout); 2825932bd7cS[email protected] run_loop_set_timer(&channel->rtx, L2CAP_RTX_TIMEOUT_MS); 2835932bd7cS[email protected] run_loop_add_timer(&channel->rtx); 2845932bd7cS[email protected] } 2855932bd7cS[email protected] 2865932bd7cS[email protected] static void l2cap_start_ertx(l2cap_channel_t * channel){ 2875932bd7cS[email protected] log_info("l2cap_start_ertx for local cid 0x%02x", channel->local_cid); 2885932bd7cS[email protected] l2cap_stop_rtx(channel); 2895932bd7cS[email protected] run_loop_set_timer_handler(&channel->rtx, l2cap_rtx_timeout); 2905932bd7cS[email protected] run_loop_set_timer(&channel->rtx, L2CAP_ERTX_TIMEOUT_MS); 2915932bd7cS[email protected] run_loop_add_timer(&channel->rtx); 2925932bd7cS[email protected] } 2935932bd7cS[email protected] 294ac301f95S[email protected] void l2cap_require_security_level_2_for_outgoing_sdp(){ 295ac301f95S[email protected] require_security_level2_for_outgoing_sdp = 1; 296ac301f95S[email protected] } 297ac301f95S[email protected] 298df3354fcS[email protected] static int l2cap_security_level_0_allowed_for_PSM(uint16_t psm){ 299ac301f95S[email protected] return (psm == PSM_SDP) && (!require_security_level2_for_outgoing_sdp); 300df3354fcS[email protected] } 3015932bd7cS[email protected] 30258de5610Smatthias.ringwald int l2cap_send_signaling_packet(hci_con_handle_t handle, L2CAP_SIGNALING_COMMANDS cmd, uint8_t identifier, ...){ 303b1d43497Smatthias.ringwald 304b1d43497Smatthias.ringwald if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){ 305b1d43497Smatthias.ringwald log_info("l2cap_send_signaling_packet, cannot send\n"); 306b1d43497Smatthias.ringwald return BTSTACK_ACL_BUFFERS_FULL; 307b1d43497Smatthias.ringwald } 308b1d43497Smatthias.ringwald 3097b5fbe1fSmatthias.ringwald // log_info("l2cap_send_signaling_packet type %u\n", cmd); 310b1d43497Smatthias.ringwald uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer(); 31158de5610Smatthias.ringwald va_list argptr; 31258de5610Smatthias.ringwald va_start(argptr, identifier); 313816c0598Smatthias.ringwald uint16_t len = l2cap_create_signaling_internal(acl_buffer, handle, cmd, identifier, argptr); 31458de5610Smatthias.ringwald va_end(argptr); 3157b5fbe1fSmatthias.ringwald // log_info("l2cap_send_signaling_packet con %u!\n", handle); 316816c0598Smatthias.ringwald return hci_send_acl_packet(acl_buffer, len); 31758de5610Smatthias.ringwald } 31858de5610Smatthias.ringwald 319b1d43497Smatthias.ringwald uint8_t *l2cap_get_outgoing_buffer(void){ 320b1d43497Smatthias.ringwald return hci_get_outgoing_acl_packet_buffer() + COMPLETE_L2CAP_HEADER; // 8 bytes 321b1d43497Smatthias.ringwald } 3226218e6f1Smatthias.ringwald 323b1d43497Smatthias.ringwald int l2cap_send_prepared(uint16_t local_cid, uint16_t len){ 324b1d43497Smatthias.ringwald 325b1d43497Smatthias.ringwald if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){ 326e0abb8e7S[email protected] log_info("l2cap_send_internal cid 0x%02x, cannot send\n", local_cid); 327808a48abSmatthias.ringwald return BTSTACK_ACL_BUFFERS_FULL; 3288ea03fa5Smatthias.ringwald } 3296218e6f1Smatthias.ringwald 33058de5610Smatthias.ringwald l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid); 331b1d43497Smatthias.ringwald if (!channel) { 332e0abb8e7S[email protected] log_error("l2cap_send_internal no channel for cid 0x%02x\n", local_cid); 333b1d43497Smatthias.ringwald return -1; // TODO: define error 3346218e6f1Smatthias.ringwald } 3356218e6f1Smatthias.ringwald 336b1d43497Smatthias.ringwald if (channel->packets_granted == 0){ 337e0abb8e7S[email protected] log_error("l2cap_send_internal cid 0x%02x, no credits!\n", local_cid); 338b1d43497Smatthias.ringwald return -1; // TODO: define error 339b1d43497Smatthias.ringwald } 340b1d43497Smatthias.ringwald 341b1d43497Smatthias.ringwald --channel->packets_granted; 342b1d43497Smatthias.ringwald 343e0abb8e7S[email protected] log_debug("l2cap_send_internal cid 0x%02x, handle %u, 1 credit used, credits left %u;\n", 344b1d43497Smatthias.ringwald local_cid, channel->handle, channel->packets_granted); 345b1d43497Smatthias.ringwald 346b1d43497Smatthias.ringwald uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer(); 347b1d43497Smatthias.ringwald 34858de5610Smatthias.ringwald // 0 - Connection handle : PB=10 : BC=00 34958de5610Smatthias.ringwald bt_store_16(acl_buffer, 0, channel->handle | (2 << 12) | (0 << 14)); 35058de5610Smatthias.ringwald // 2 - ACL length 35158de5610Smatthias.ringwald bt_store_16(acl_buffer, 2, len + 4); 35258de5610Smatthias.ringwald // 4 - L2CAP packet length 35358de5610Smatthias.ringwald bt_store_16(acl_buffer, 4, len + 0); 35458de5610Smatthias.ringwald // 6 - L2CAP channel DEST 35558de5610Smatthias.ringwald bt_store_16(acl_buffer, 6, channel->remote_cid); 35658de5610Smatthias.ringwald // send 357b1d43497Smatthias.ringwald int err = hci_send_acl_packet(acl_buffer, len+8); 35891b99603Smatthias.ringwald 35991b99603Smatthias.ringwald l2cap_hand_out_credits(); 36091b99603Smatthias.ringwald 3616218e6f1Smatthias.ringwald return err; 36258de5610Smatthias.ringwald } 36358de5610Smatthias.ringwald 3642149f12eSmatthias.ringwald int l2cap_send_prepared_connectionless(uint16_t handle, uint16_t cid, uint16_t len){ 3652149f12eSmatthias.ringwald 3662149f12eSmatthias.ringwald if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){ 367e0abb8e7S[email protected] log_info("l2cap_send_prepared_to_handle cid 0x%02x, cannot send\n", cid); 3682149f12eSmatthias.ringwald return BTSTACK_ACL_BUFFERS_FULL; 3692149f12eSmatthias.ringwald } 3702149f12eSmatthias.ringwald 371e0abb8e7S[email protected] log_debug("l2cap_send_prepared_to_handle cid 0x%02x, handle %u\n", cid, handle); 3722149f12eSmatthias.ringwald 3732149f12eSmatthias.ringwald uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer(); 3742149f12eSmatthias.ringwald 3752149f12eSmatthias.ringwald // 0 - Connection handle : PB=10 : BC=00 3762149f12eSmatthias.ringwald bt_store_16(acl_buffer, 0, handle | (2 << 12) | (0 << 14)); 3772149f12eSmatthias.ringwald // 2 - ACL length 3782149f12eSmatthias.ringwald bt_store_16(acl_buffer, 2, len + 4); 3792149f12eSmatthias.ringwald // 4 - L2CAP packet length 3802149f12eSmatthias.ringwald bt_store_16(acl_buffer, 4, len + 0); 3812149f12eSmatthias.ringwald // 6 - L2CAP channel DEST 3822149f12eSmatthias.ringwald bt_store_16(acl_buffer, 6, cid); 3832149f12eSmatthias.ringwald // send 3842149f12eSmatthias.ringwald int err = hci_send_acl_packet(acl_buffer, len+8); 3852149f12eSmatthias.ringwald 3862149f12eSmatthias.ringwald l2cap_hand_out_credits(); 3872149f12eSmatthias.ringwald 3882149f12eSmatthias.ringwald return err; 3892149f12eSmatthias.ringwald } 3902149f12eSmatthias.ringwald 391b1d43497Smatthias.ringwald int l2cap_send_internal(uint16_t local_cid, uint8_t *data, uint16_t len){ 392b1d43497Smatthias.ringwald 393b1d43497Smatthias.ringwald if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){ 394e0abb8e7S[email protected] log_info("l2cap_send_internal cid 0x%02x, cannot send\n", local_cid); 395b1d43497Smatthias.ringwald return BTSTACK_ACL_BUFFERS_FULL; 396b1d43497Smatthias.ringwald } 397b1d43497Smatthias.ringwald 398b1d43497Smatthias.ringwald uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer(); 399b1d43497Smatthias.ringwald 400b1d43497Smatthias.ringwald memcpy(&acl_buffer[8], data, len); 401b1d43497Smatthias.ringwald 402b1d43497Smatthias.ringwald return l2cap_send_prepared(local_cid, len); 403b1d43497Smatthias.ringwald } 404b1d43497Smatthias.ringwald 4052149f12eSmatthias.ringwald int l2cap_send_connectionless(uint16_t handle, uint16_t cid, uint8_t *data, uint16_t len){ 4062149f12eSmatthias.ringwald 4072149f12eSmatthias.ringwald if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){ 408e0abb8e7S[email protected] log_info("l2cap_send_internal cid 0x%02x, cannot send\n", cid); 4092149f12eSmatthias.ringwald return BTSTACK_ACL_BUFFERS_FULL; 4102149f12eSmatthias.ringwald } 4112149f12eSmatthias.ringwald 4122149f12eSmatthias.ringwald uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer(); 4132149f12eSmatthias.ringwald 4142149f12eSmatthias.ringwald memcpy(&acl_buffer[8], data, len); 4152149f12eSmatthias.ringwald 4162149f12eSmatthias.ringwald return l2cap_send_prepared_connectionless(handle, cid, len); 4172149f12eSmatthias.ringwald } 4182149f12eSmatthias.ringwald 4190e37e417S[email protected] int l2cap_send_echo_request(uint16_t handle, uint8_t *data, uint16_t len){ 4200e37e417S[email protected] return l2cap_send_signaling_packet(handle, ECHO_REQUEST, 0x77, len, data); 4210e37e417S[email protected] } 4220e37e417S[email protected] 42328ca2b46S[email protected] static inline void channelStateVarSetFlag(l2cap_channel_t *channel, L2CAP_CHANNEL_STATE_VAR flag){ 42428ca2b46S[email protected] channel->state_var = (L2CAP_CHANNEL_STATE_VAR) (channel->state_var | flag); 42528ca2b46S[email protected] } 42628ca2b46S[email protected] 42728ca2b46S[email protected] static inline void channelStateVarClearFlag(l2cap_channel_t *channel, L2CAP_CHANNEL_STATE_VAR flag){ 42828ca2b46S[email protected] channel->state_var = (L2CAP_CHANNEL_STATE_VAR) (channel->state_var & ~flag); 42928ca2b46S[email protected] } 43028ca2b46S[email protected] 43128ca2b46S[email protected] 432b1d43497Smatthias.ringwald 4338158c421Smatthias.ringwald // MARK: L2CAP_RUN 4342cd0be45Smatthias.ringwald // process outstanding signaling tasks 4352cd0be45Smatthias.ringwald void l2cap_run(void){ 4362b83fb7dSmatthias.ringwald 4372b83fb7dSmatthias.ringwald // check pending signaling responses 4382b83fb7dSmatthias.ringwald while (signaling_responses_pending){ 4392b83fb7dSmatthias.ringwald 44002b22dc4Smatthias.ringwald if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)) break; 4412b83fb7dSmatthias.ringwald 4422b83fb7dSmatthias.ringwald hci_con_handle_t handle = signaling_responses[0].handle; 4432b83fb7dSmatthias.ringwald uint8_t sig_id = signaling_responses[0].sig_id; 4442b360848Smatthias.ringwald uint16_t infoType = signaling_responses[0].data; // INFORMATION_REQUEST 44563a7246aSmatthias.ringwald uint16_t result = signaling_responses[0].data; // CONNECTION_REQUEST, COMMAND_REJECT 4462b83fb7dSmatthias.ringwald 4472b83fb7dSmatthias.ringwald switch (signaling_responses[0].code){ 4482b360848Smatthias.ringwald case CONNECTION_REQUEST: 4492b360848Smatthias.ringwald l2cap_send_signaling_packet(handle, CONNECTION_RESPONSE, sig_id, 0, 0, result, 0); 4502bd8b7e7S[email protected] // also disconnect if result is 0x0003 - security blocked 4512bd8b7e7S[email protected] hci_disconnect_security_block(handle); 4522b360848Smatthias.ringwald break; 4532b83fb7dSmatthias.ringwald case ECHO_REQUEST: 4542b83fb7dSmatthias.ringwald l2cap_send_signaling_packet(handle, ECHO_RESPONSE, sig_id, 0, NULL); 4552b83fb7dSmatthias.ringwald break; 4562b83fb7dSmatthias.ringwald case INFORMATION_REQUEST: 4573b0484b3S[email protected] switch (infoType){ 4583b0484b3S[email protected] case 1: { // Connectionless MTU 4593b0484b3S[email protected] uint16_t connectionless_mtu = hci_max_acl_data_packet_length(); 4603b0484b3S[email protected] l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 0, sizeof(connectionless_mtu), &connectionless_mtu); 4613b0484b3S[email protected] break; 4623b0484b3S[email protected] } 4633b0484b3S[email protected] case 2: { // Extended Features Supported 4643b0484b3S[email protected] // extended features request supported, only supporing fixed channel map 4653b0484b3S[email protected] uint32_t features = 0x80; 4663b0484b3S[email protected] l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 0, sizeof(features), &features); 4673b0484b3S[email protected] break; 4683b0484b3S[email protected] } 4693b0484b3S[email protected] case 3: { // Fixed Channels Supported 4703b0484b3S[email protected] uint8_t map[8]; 4713b0484b3S[email protected] memset(map, 0, 8); 4723b0484b3S[email protected] map[0] = 0x01; // L2CAP Signaling Channel 4733b0484b3S[email protected] l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 0, sizeof(map), &map); 4743b0484b3S[email protected] break; 4753b0484b3S[email protected] } 4763b0484b3S[email protected] default: 4772b83fb7dSmatthias.ringwald // all other types are not supported 4782b83fb7dSmatthias.ringwald l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 1, 0, NULL); 4793b0484b3S[email protected] break; 4802b83fb7dSmatthias.ringwald } 4812b83fb7dSmatthias.ringwald break; 48263a7246aSmatthias.ringwald case COMMAND_REJECT: 4835ca8d57bS[email protected] l2cap_send_signaling_packet(handle, COMMAND_REJECT, sig_id, result, 0, NULL); 48463a7246aSmatthias.ringwald break; 4852b83fb7dSmatthias.ringwald default: 4862b83fb7dSmatthias.ringwald // should not happen 4872b83fb7dSmatthias.ringwald break; 4882b83fb7dSmatthias.ringwald } 4892b83fb7dSmatthias.ringwald 4902b83fb7dSmatthias.ringwald // remove first item 4912b83fb7dSmatthias.ringwald signaling_responses_pending--; 4922b83fb7dSmatthias.ringwald int i; 4932b83fb7dSmatthias.ringwald for (i=0; i < signaling_responses_pending; i++){ 49476115249S[email protected] memcpy(&signaling_responses[i], &signaling_responses[i+1], sizeof(l2cap_signaling_response_t)); 4952b83fb7dSmatthias.ringwald } 4962b83fb7dSmatthias.ringwald } 4972b83fb7dSmatthias.ringwald 498ae280e73Smatthias.ringwald uint8_t config_options[4]; 4992cd0be45Smatthias.ringwald linked_item_t *it; 500756102d3Smatthias.ringwald linked_item_t *next; 501756102d3Smatthias.ringwald for (it = (linked_item_t *) l2cap_channels; it ; it = next){ 502756102d3Smatthias.ringwald next = it->next; // cache next item as current item might get freed 5032cd0be45Smatthias.ringwald 50402b22dc4Smatthias.ringwald if (!hci_can_send_packet_now(HCI_COMMAND_DATA_PACKET)) break; 50502b22dc4Smatthias.ringwald if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)) break; 5062cd0be45Smatthias.ringwald 5072cd0be45Smatthias.ringwald l2cap_channel_t * channel = (l2cap_channel_t *) it; 5086e6710ebSmatthias.ringwald 5097b5fbe1fSmatthias.ringwald // log_info("l2cap_run: state %u, var 0x%02x\n", channel->state, channel->state_var); 5106e6710ebSmatthias.ringwald 51156081214Smatthias.ringwald 5122cd0be45Smatthias.ringwald switch (channel->state){ 5132cd0be45Smatthias.ringwald 514df3354fcS[email protected] case L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE: 515ad671560S[email protected] case L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT: 516a00031e2S[email protected] if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND) { 517ad671560S[email protected] channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND); 518a00031e2S[email protected] l2cap_send_signaling_packet(channel->handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, 1, 0); 519ad671560S[email protected] } 520ad671560S[email protected] break; 521ad671560S[email protected] 52202b22dc4Smatthias.ringwald case L2CAP_STATE_WILL_SEND_CREATE_CONNECTION: 52364472d52Smatthias.ringwald // send connection request - set state first 52464472d52Smatthias.ringwald channel->state = L2CAP_STATE_WAIT_CONNECTION_COMPLETE; 52502b22dc4Smatthias.ringwald // BD_ADDR, Packet_Type, Page_Scan_Repetition_Mode, Reserved, Clock_Offset, Allow_Role_Switch 5268f8108aaSmatthias.ringwald hci_send_cmd(&hci_create_connection, channel->address, hci_usable_acl_packet_types(), 0, 0, 0, 1); 52702b22dc4Smatthias.ringwald break; 52802b22dc4Smatthias.ringwald 529e7ff783cSmatthias.ringwald case L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE: 5301eb2563eS[email protected] l2cap_send_signaling_packet(channel->handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, channel->reason, 0); 531e7ff783cSmatthias.ringwald // discard channel - l2cap_finialize_channel_close without sending l2cap close event 532756102d3Smatthias.ringwald linked_list_remove(&l2cap_channels, (linked_item_t *) channel); // -- remove from list 533d3a9df87Smatthias.ringwald btstack_memory_l2cap_channel_free(channel); 534e7ff783cSmatthias.ringwald break; 535e7ff783cSmatthias.ringwald 536552d92a1Smatthias.ringwald case L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_ACCEPT: 537fa8473a4Smatthias.ringwald channel->state = L2CAP_STATE_CONFIG; 53828ca2b46S[email protected] channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ); 5392a544672Smatthias.ringwald l2cap_send_signaling_packet(channel->handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, 0, 0); 540552d92a1Smatthias.ringwald break; 541552d92a1Smatthias.ringwald 5426fdcc387Smatthias.ringwald case L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST: 5436fdcc387Smatthias.ringwald // success, start l2cap handshake 544b1988dceSmatthias.ringwald channel->local_sig_id = l2cap_next_sig_id(); 5456fdcc387Smatthias.ringwald channel->state = L2CAP_STATE_WAIT_CONNECT_RSP; 5462a544672Smatthias.ringwald l2cap_send_signaling_packet( channel->handle, CONNECTION_REQUEST, channel->local_sig_id, channel->psm, channel->local_cid); 5475932bd7cS[email protected] l2cap_start_rtx(channel); 5486fdcc387Smatthias.ringwald break; 5496fdcc387Smatthias.ringwald 550fa8473a4Smatthias.ringwald case L2CAP_STATE_CONFIG: 55173cf2b3dSmatthias.ringwald if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP){ 55263a7246aSmatthias.ringwald uint16_t flags = 0; 55328ca2b46S[email protected] channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP); 55463a7246aSmatthias.ringwald if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT) { 55563a7246aSmatthias.ringwald flags = 1; 55663a7246aSmatthias.ringwald } else { 55728ca2b46S[email protected] channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SENT_CONF_RSP); 55863a7246aSmatthias.ringwald } 55963a7246aSmatthias.ringwald if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_INVALID){ 56063a7246aSmatthias.ringwald l2cap_send_signaling_packet(channel->handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, L2CAP_CONF_RESULT_UNKNOWN_OPTIONS, 0, NULL); 56163a7246aSmatthias.ringwald } else if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU){ 56263a7246aSmatthias.ringwald config_options[0] = 1; // MTU 56363a7246aSmatthias.ringwald config_options[1] = 2; // len param 56463a7246aSmatthias.ringwald bt_store_16( (uint8_t*)&config_options, 2, channel->remote_mtu); 56563a7246aSmatthias.ringwald l2cap_send_signaling_packet(channel->handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, 0, 4, &config_options); 56663a7246aSmatthias.ringwald channelStateVarClearFlag(channel,L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU); 56763a7246aSmatthias.ringwald } else { 56863a7246aSmatthias.ringwald l2cap_send_signaling_packet(channel->handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, 0, 0, NULL); 56963a7246aSmatthias.ringwald } 57063a7246aSmatthias.ringwald channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT); 571fa8473a4Smatthias.ringwald } 57273cf2b3dSmatthias.ringwald else if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ){ 57328ca2b46S[email protected] channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ); 57428ca2b46S[email protected] channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SENT_CONF_REQ); 575b1988dceSmatthias.ringwald channel->local_sig_id = l2cap_next_sig_id(); 576ae280e73Smatthias.ringwald config_options[0] = 1; // MTU 577ae280e73Smatthias.ringwald config_options[1] = 2; // len param 578ae280e73Smatthias.ringwald bt_store_16( (uint8_t*)&config_options, 2, channel->local_mtu); 579b1988dceSmatthias.ringwald l2cap_send_signaling_packet(channel->handle, CONFIGURE_REQUEST, channel->local_sig_id, channel->remote_cid, 0, 4, &config_options); 5805932bd7cS[email protected] l2cap_start_rtx(channel); 581fa8473a4Smatthias.ringwald } 582fa8473a4Smatthias.ringwald if (l2cap_channel_ready_for_open(channel)){ 583552d92a1Smatthias.ringwald channel->state = L2CAP_STATE_OPEN; 584552d92a1Smatthias.ringwald l2cap_emit_channel_opened(channel, 0); // success 585552d92a1Smatthias.ringwald l2cap_emit_credits(channel, 1); 586fa8473a4Smatthias.ringwald } 587552d92a1Smatthias.ringwald break; 588552d92a1Smatthias.ringwald 589e7ff783cSmatthias.ringwald case L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE: 590b1988dceSmatthias.ringwald l2cap_send_signaling_packet( channel->handle, DISCONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid); 5915932bd7cS[email protected] // we don't start an RTX timer for a disconnect - there's no point in closing the channel if the other side doesn't respond :) 592756102d3Smatthias.ringwald l2cap_finialize_channel_close(channel); // -- remove from list 593e7ff783cSmatthias.ringwald break; 594e7ff783cSmatthias.ringwald 595e7ff783cSmatthias.ringwald case L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST: 596b1988dceSmatthias.ringwald channel->local_sig_id = l2cap_next_sig_id(); 5972cd0be45Smatthias.ringwald channel->state = L2CAP_STATE_WAIT_DISCONNECT; 5982a544672Smatthias.ringwald l2cap_send_signaling_packet( channel->handle, DISCONNECTION_REQUEST, channel->local_sig_id, channel->remote_cid, channel->local_cid); 5992cd0be45Smatthias.ringwald break; 6002cd0be45Smatthias.ringwald default: 6012cd0be45Smatthias.ringwald break; 6022cd0be45Smatthias.ringwald } 6032cd0be45Smatthias.ringwald } 6042cd0be45Smatthias.ringwald } 6052cd0be45Smatthias.ringwald 6064aa9e837Smatthias.ringwald uint16_t l2cap_max_mtu(void){ 607816c0598Smatthias.ringwald return hci_max_acl_data_packet_length() - L2CAP_HEADER_SIZE; 608fa8c92f6Smatthias.ringwald } 609fa8c92f6Smatthias.ringwald 6102df5dadcS[email protected] static void l2cap_handle_connection_complete(uint16_t handle, l2cap_channel_t * channel){ 6112df5dadcS[email protected] if (channel->state == L2CAP_STATE_WAIT_CONNECTION_COMPLETE || channel->state == L2CAP_STATE_WILL_SEND_CREATE_CONNECTION) { 6125533f01eS[email protected] log_info("l2cap_handle_connection_complete expected state"); 6132df5dadcS[email protected] // success, start l2cap handshake 6142df5dadcS[email protected] channel->handle = handle; 6152df5dadcS[email protected] channel->local_cid = l2cap_next_local_cid(); 6162df5dadcS[email protected] // check remote SSP feature first 6172df5dadcS[email protected] channel->state = L2CAP_STATE_WAIT_REMOTE_SUPPORTED_FEATURES; 6182df5dadcS[email protected] } 6192df5dadcS[email protected] } 6202df5dadcS[email protected] 6212df5dadcS[email protected] static void l2cap_handle_remote_supported_features_received(l2cap_channel_t * channel){ 6222df5dadcS[email protected] if (channel->state != L2CAP_STATE_WAIT_REMOTE_SUPPORTED_FEATURES) return; 6232df5dadcS[email protected] 6242df5dadcS[email protected] // we have been waiting for remote supported features, if both support SSP, 625ac301f95S[email protected] log_info("l2cap received remote supported features, sec_level_0_allowed for psm %u = %u", channel->psm, l2cap_security_level_0_allowed_for_PSM(channel->psm)); 6262df5dadcS[email protected] if (hci_ssp_supported_on_both_sides(channel->handle) && !l2cap_security_level_0_allowed_for_PSM(channel->psm)){ 6272df5dadcS[email protected] // request security level 2 6282df5dadcS[email protected] channel->state = L2CAP_STATE_WAIT_OUTGOING_SECURITY_LEVEL_UPDATE; 6291429b2d6S[email protected] gap_request_security_level(channel->handle, LEVEL_2); 6302df5dadcS[email protected] return; 6312df5dadcS[email protected] } 6322df5dadcS[email protected] // fine, go ahead 6332df5dadcS[email protected] channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST; 6342df5dadcS[email protected] } 6352df5dadcS[email protected] 6361e6aba47Smatthias.ringwald // open outgoing L2CAP channel 63715470d27Smatthias.ringwald void l2cap_create_channel_internal(void * connection, btstack_packet_handler_t packet_handler, 63815470d27Smatthias.ringwald bd_addr_t address, uint16_t psm, uint16_t mtu){ 6391e6aba47Smatthias.ringwald 640e0abb8e7S[email protected] log_info("L2CAP_CREATE_CHANNEL_MTU addr %s psm 0x%x mtu %u", bd_addr_to_str(address), psm, mtu); 641e0abb8e7S[email protected] 6421e6aba47Smatthias.ringwald // alloc structure 64328ca2b46S[email protected] l2cap_channel_t * chan = (l2cap_channel_t*) btstack_memory_l2cap_channel_get(); 6442b360848Smatthias.ringwald if (!chan) { 6452b360848Smatthias.ringwald // emit error event 6462b360848Smatthias.ringwald l2cap_channel_t dummy_channel; 6472b360848Smatthias.ringwald BD_ADDR_COPY(dummy_channel.address, address); 6482b360848Smatthias.ringwald dummy_channel.psm = psm; 6492b360848Smatthias.ringwald l2cap_emit_channel_opened(&dummy_channel, BTSTACK_MEMORY_ALLOC_FAILED); 6502b360848Smatthias.ringwald return; 6512b360848Smatthias.ringwald } 6521d279b20Smatthias.ringwald // limit local mtu to max acl packet length 6532985cb84Smatthias.ringwald if (mtu > l2cap_max_mtu()) { 6542985cb84Smatthias.ringwald mtu = l2cap_max_mtu(); 6559775e25bSmatthias.ringwald } 6569775e25bSmatthias.ringwald 6571e6aba47Smatthias.ringwald // fill in 6581e6aba47Smatthias.ringwald BD_ADDR_COPY(chan->address, address); 6591e6aba47Smatthias.ringwald chan->psm = psm; 6601e6aba47Smatthias.ringwald chan->handle = 0; 6611e6aba47Smatthias.ringwald chan->connection = connection; 6626b296a27Smatthias.ringwald chan->packet_handler = packet_handler; 6632784b77dSmatthias.ringwald chan->remote_mtu = L2CAP_MINIMAL_MTU; 66415470d27Smatthias.ringwald chan->local_mtu = mtu; 6656218e6f1Smatthias.ringwald chan->packets_granted = 0; 6666218e6f1Smatthias.ringwald 6671e6aba47Smatthias.ringwald // set initial state 66802b22dc4Smatthias.ringwald chan->state = L2CAP_STATE_WILL_SEND_CREATE_CONNECTION; 66973cf2b3dSmatthias.ringwald chan->state_var = L2CAP_CHANNEL_STATE_VAR_NONE; 670b1988dceSmatthias.ringwald chan->remote_sig_id = L2CAP_SIG_ID_INVALID; 671b1988dceSmatthias.ringwald chan->local_sig_id = L2CAP_SIG_ID_INVALID; 6725533f01eS[email protected] chan->required_security_level = LEVEL_0; 6731e6aba47Smatthias.ringwald 6741e6aba47Smatthias.ringwald // add to connections list 6751e6aba47Smatthias.ringwald linked_list_add(&l2cap_channels, (linked_item_t *) chan); 6761e6aba47Smatthias.ringwald 6772df5dadcS[email protected] // check if hci connection is already usable 6782df5dadcS[email protected] hci_connection_t * conn = hci_connection_for_bd_addr((bd_addr_t*)address); 6792df5dadcS[email protected] if (conn){ 6805533f01eS[email protected] log_info("l2cap_create_channel_internal, hci connection already exists"); 6812df5dadcS[email protected] l2cap_handle_connection_complete(conn->con_handle, chan); 6822df5dadcS[email protected] // check ir remote supported fearures are already received 6832df5dadcS[email protected] if (conn->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) { 6842df5dadcS[email protected] l2cap_handle_remote_supported_features_received(chan); 6852df5dadcS[email protected] } 6862df5dadcS[email protected] } 6872df5dadcS[email protected] 68802b22dc4Smatthias.ringwald l2cap_run(); 68943625864Smatthias.ringwald } 69043625864Smatthias.ringwald 691b35f641cSmatthias.ringwald void l2cap_disconnect_internal(uint16_t local_cid, uint8_t reason){ 692e0abb8e7S[email protected] log_info("L2CAP_DISCONNECT local_cid 0x%x reason 0x%x", local_cid, reason); 693b35f641cSmatthias.ringwald // find channel for local_cid 694b35f641cSmatthias.ringwald l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid); 695f62db1e3Smatthias.ringwald if (channel) { 696e7ff783cSmatthias.ringwald channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST; 697f62db1e3Smatthias.ringwald } 6982cd0be45Smatthias.ringwald // process 6992cd0be45Smatthias.ringwald l2cap_run(); 70043625864Smatthias.ringwald } 7011e6aba47Smatthias.ringwald 702afde0c52Smatthias.ringwald static void l2cap_handle_connection_failed_for_addr(bd_addr_t address, uint8_t status){ 70315ec09bbSmatthias.ringwald linked_item_t *it = (linked_item_t *) &l2cap_channels; 70415ec09bbSmatthias.ringwald while (it->next){ 70515ec09bbSmatthias.ringwald l2cap_channel_t * channel = (l2cap_channel_t *) it->next; 706b448a0e7Smatthias.ringwald if ( ! BD_ADDR_CMP( channel->address, address) ){ 70702b22dc4Smatthias.ringwald if (channel->state == L2CAP_STATE_WAIT_CONNECTION_COMPLETE || channel->state == L2CAP_STATE_WILL_SEND_CREATE_CONNECTION) { 708afde0c52Smatthias.ringwald // failure, forward error code 709afde0c52Smatthias.ringwald l2cap_emit_channel_opened(channel, status); 710afde0c52Smatthias.ringwald // discard channel 71115ec09bbSmatthias.ringwald it->next = it->next->next; 712d3a9df87Smatthias.ringwald btstack_memory_l2cap_channel_free(channel); 713afde0c52Smatthias.ringwald } 71415ec09bbSmatthias.ringwald } else { 71515ec09bbSmatthias.ringwald it = it->next; 716afde0c52Smatthias.ringwald } 717afde0c52Smatthias.ringwald } 718afde0c52Smatthias.ringwald } 719afde0c52Smatthias.ringwald 720afde0c52Smatthias.ringwald static void l2cap_handle_connection_success_for_addr(bd_addr_t address, hci_con_handle_t handle){ 721afde0c52Smatthias.ringwald linked_item_t *it; 722afde0c52Smatthias.ringwald for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){ 723afde0c52Smatthias.ringwald l2cap_channel_t * channel = (l2cap_channel_t *) it; 724afde0c52Smatthias.ringwald if ( ! BD_ADDR_CMP( channel->address, address) ){ 7252df5dadcS[email protected] l2cap_handle_connection_complete(handle, channel); 726afde0c52Smatthias.ringwald } 727afde0c52Smatthias.ringwald } 7286fdcc387Smatthias.ringwald // process 7296fdcc387Smatthias.ringwald l2cap_run(); 730afde0c52Smatthias.ringwald } 731b448a0e7Smatthias.ringwald 732afde0c52Smatthias.ringwald void l2cap_event_handler( uint8_t *packet, uint16_t size ){ 733afde0c52Smatthias.ringwald 734afde0c52Smatthias.ringwald bd_addr_t address; 735afde0c52Smatthias.ringwald hci_con_handle_t handle; 7366e6710ebSmatthias.ringwald l2cap_channel_t * channel; 73736944dffSmatthias.ringwald linked_item_t *it; 7382d00edd4Smatthias.ringwald int hci_con_used; 739afde0c52Smatthias.ringwald 740afde0c52Smatthias.ringwald switch(packet[0]){ 741afde0c52Smatthias.ringwald 742afde0c52Smatthias.ringwald // handle connection complete events 743afde0c52Smatthias.ringwald case HCI_EVENT_CONNECTION_COMPLETE: 744afde0c52Smatthias.ringwald bt_flip_addr(address, &packet[5]); 745afde0c52Smatthias.ringwald if (packet[2] == 0){ 746afde0c52Smatthias.ringwald handle = READ_BT_16(packet, 3); 747afde0c52Smatthias.ringwald l2cap_handle_connection_success_for_addr(address, handle); 748afde0c52Smatthias.ringwald } else { 749afde0c52Smatthias.ringwald l2cap_handle_connection_failed_for_addr(address, packet[2]); 750afde0c52Smatthias.ringwald } 751afde0c52Smatthias.ringwald break; 752afde0c52Smatthias.ringwald 753afde0c52Smatthias.ringwald // handle successful create connection cancel command 754afde0c52Smatthias.ringwald case HCI_EVENT_COMMAND_COMPLETE: 755afde0c52Smatthias.ringwald if ( COMMAND_COMPLETE_EVENT(packet, hci_create_connection_cancel) ) { 756afde0c52Smatthias.ringwald if (packet[5] == 0){ 757afde0c52Smatthias.ringwald bt_flip_addr(address, &packet[6]); 758afde0c52Smatthias.ringwald // CONNECTION TERMINATED BY LOCAL HOST (0X16) 759afde0c52Smatthias.ringwald l2cap_handle_connection_failed_for_addr(address, 0x16); 76003cfbabcSmatthias.ringwald } 7611e6aba47Smatthias.ringwald } 76239d59809Smatthias.ringwald l2cap_run(); // try sending signaling packets first 76339d59809Smatthias.ringwald break; 76439d59809Smatthias.ringwald 76539d59809Smatthias.ringwald case HCI_EVENT_COMMAND_STATUS: 76639d59809Smatthias.ringwald l2cap_run(); // try sending signaling packets first 767afde0c52Smatthias.ringwald break; 76827a923d0Smatthias.ringwald 7691e6aba47Smatthias.ringwald // handle disconnection complete events 770afde0c52Smatthias.ringwald case HCI_EVENT_DISCONNECTION_COMPLETE: 77127a923d0Smatthias.ringwald // send l2cap disconnect events for all channels on this handle 772afde0c52Smatthias.ringwald handle = READ_BT_16(packet, 3); 77315ec09bbSmatthias.ringwald it = (linked_item_t *) &l2cap_channels; 77415ec09bbSmatthias.ringwald while (it->next){ 77539ce35a7Smatthias.ringwald l2cap_channel_t * channel = (l2cap_channel_t *) it->next; 77627a923d0Smatthias.ringwald if ( channel->handle == handle ){ 77715ec09bbSmatthias.ringwald // update prev item before free'ing next element - don't call l2cap_finalize_channel_close 7782060cf14Smatthias.ringwald it->next = it->next->next; 77915ec09bbSmatthias.ringwald l2cap_emit_channel_closed(channel); 780d3a9df87Smatthias.ringwald btstack_memory_l2cap_channel_free(channel); 78115ec09bbSmatthias.ringwald } else { 78215ec09bbSmatthias.ringwald it = it->next; 78327a923d0Smatthias.ringwald } 78427a923d0Smatthias.ringwald } 785afde0c52Smatthias.ringwald break; 786fcadd0caSmatthias.ringwald 7876218e6f1Smatthias.ringwald case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS: 78802b22dc4Smatthias.ringwald l2cap_run(); // try sending signaling packets first 7898d371091Smatthias.ringwald l2cap_hand_out_credits(); 7906218e6f1Smatthias.ringwald break; 7916218e6f1Smatthias.ringwald 792ee091cf1Smatthias.ringwald // HCI Connection Timeouts 793afde0c52Smatthias.ringwald case L2CAP_EVENT_TIMEOUT_CHECK: 79436944dffSmatthias.ringwald handle = READ_BT_16(packet, 2); 79580ca58a0Smatthias.ringwald if (hci_authentication_active_for_handle(handle)) break; 7962d00edd4Smatthias.ringwald hci_con_used = 0; 797ee091cf1Smatthias.ringwald for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){ 798ee091cf1Smatthias.ringwald channel = (l2cap_channel_t *) it; 799ee091cf1Smatthias.ringwald if (channel->handle == handle) { 8002d00edd4Smatthias.ringwald hci_con_used = 1; 801ee091cf1Smatthias.ringwald } 802ee091cf1Smatthias.ringwald } 8032d00edd4Smatthias.ringwald if (hci_con_used) break; 80432ab9390Smatthias.ringwald if (!hci_can_send_packet_now(HCI_COMMAND_DATA_PACKET)) break; 8059edc8742Smatthias.ringwald hci_send_cmd(&hci_disconnect, handle, 0x13); // remote closed connection 806afde0c52Smatthias.ringwald break; 807ee091cf1Smatthias.ringwald 8086e6710ebSmatthias.ringwald case DAEMON_EVENT_HCI_PACKET_SENT: 8096e6710ebSmatthias.ringwald for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){ 8106e6710ebSmatthias.ringwald channel = (l2cap_channel_t *) it; 8116e6710ebSmatthias.ringwald if (channel->packet_handler) { 8126e6710ebSmatthias.ringwald (* (channel->packet_handler))(HCI_EVENT_PACKET, channel->local_cid, packet, size); 8136e6710ebSmatthias.ringwald } 8146e6710ebSmatthias.ringwald } 8155652b5ffS[email protected] if (attribute_protocol_packet_handler) { 8165652b5ffS[email protected] (*attribute_protocol_packet_handler)(HCI_EVENT_PACKET, 0, packet, size); 8175652b5ffS[email protected] } 8185652b5ffS[email protected] if (security_protocol_packet_handler) { 819133efcfdSmatthias.ringwald (*security_protocol_packet_handler)(HCI_EVENT_PACKET, 0, packet, size); 8205652b5ffS[email protected] } 8216e6710ebSmatthias.ringwald break; 8226e6710ebSmatthias.ringwald 823df3354fcS[email protected] case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE: 824df3354fcS[email protected] handle = READ_BT_16(packet, 3); 825df3354fcS[email protected] for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){ 826df3354fcS[email protected] channel = (l2cap_channel_t *) it; 827df3354fcS[email protected] if (channel->handle != handle) continue; 8282df5dadcS[email protected] l2cap_handle_remote_supported_features_received(channel); 829df3354fcS[email protected] break; 830df3354fcS[email protected] } 831df3354fcS[email protected] 832a00031e2S[email protected] case GAP_SECURITY_LEVEL: 833a00031e2S[email protected] handle = READ_BT_16(packet, 2); 834df3354fcS[email protected] log_info("GAP_SECURITY_LEVEL"); 835f85a9399S[email protected] for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){ 836f85a9399S[email protected] channel = (l2cap_channel_t *) it; 837f85a9399S[email protected] if (channel->handle != handle) continue; 8385533f01eS[email protected] 8395533f01eS[email protected] gap_security_level_t actual_level = packet[4]; 8405533f01eS[email protected] gap_security_level_t required_level = channel->required_security_level; 8415533f01eS[email protected] log_info("gap outgoing - security level update %u, required %u", actual_level, required_level); 8425533f01eS[email protected] 843df3354fcS[email protected] switch (channel->state){ 844df3354fcS[email protected] case L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE: 845df3354fcS[email protected] log_info("gap incoming"); 8465533f01eS[email protected] if (actual_level >= required_level){ 847f85a9399S[email protected] channel->state = L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT; 848f85a9399S[email protected] l2cap_emit_connection_request(channel); 8491eb2563eS[email protected] } else { 8501eb2563eS[email protected] channel->reason = 0x03; // security block 8511eb2563eS[email protected] channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE; 8521eb2563eS[email protected] } 853df3354fcS[email protected] break; 854df3354fcS[email protected] 855df3354fcS[email protected] case L2CAP_STATE_WAIT_OUTGOING_SECURITY_LEVEL_UPDATE: 8565533f01eS[email protected] if (actual_level >= required_level){ 857df3354fcS[email protected] channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST; 858df3354fcS[email protected] } else { 859df3354fcS[email protected] // disconnnect, authentication not good enough 860df3354fcS[email protected] hci_disconnect_security_block(handle); 861df3354fcS[email protected] } 862df3354fcS[email protected] break; 863df3354fcS[email protected] 864df3354fcS[email protected] default: 865df3354fcS[email protected] break; 866df3354fcS[email protected] } 867f85a9399S[email protected] } 868f85a9399S[email protected] break; 869f85a9399S[email protected] 870afde0c52Smatthias.ringwald default: 871afde0c52Smatthias.ringwald break; 872afde0c52Smatthias.ringwald } 873afde0c52Smatthias.ringwald 874afde0c52Smatthias.ringwald // pass on 875b502e1b0Smatthias.ringwald (*packet_handler)(NULL, HCI_EVENT_PACKET, 0, packet, size); 8761e6aba47Smatthias.ringwald } 8771e6aba47Smatthias.ringwald 878afde0c52Smatthias.ringwald static void l2cap_handle_disconnect_request(l2cap_channel_t *channel, uint16_t identifier){ 879b1988dceSmatthias.ringwald channel->remote_sig_id = identifier; 880e7ff783cSmatthias.ringwald channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE; 881e7ff783cSmatthias.ringwald l2cap_run(); 88284836b65Smatthias.ringwald } 88384836b65Smatthias.ringwald 8842b360848Smatthias.ringwald static void l2cap_register_signaling_response(hci_con_handle_t handle, uint8_t code, uint8_t sig_id, uint16_t data){ 8854cf56b4aSmatthias.ringwald // Vol 3, Part A, 4.3: "The DCID and SCID fields shall be ignored when the result field indi- cates the connection was refused." 8862b360848Smatthias.ringwald if (signaling_responses_pending < NR_PENDING_SIGNALING_RESPONSES) { 8872b360848Smatthias.ringwald signaling_responses[signaling_responses_pending].handle = handle; 8882b360848Smatthias.ringwald signaling_responses[signaling_responses_pending].code = code; 8892b360848Smatthias.ringwald signaling_responses[signaling_responses_pending].sig_id = sig_id; 8902b360848Smatthias.ringwald signaling_responses[signaling_responses_pending].data = data; 8912b360848Smatthias.ringwald signaling_responses_pending++; 8922b360848Smatthias.ringwald l2cap_run(); 8932b360848Smatthias.ringwald } 8942b360848Smatthias.ringwald } 8952b360848Smatthias.ringwald 896b35f641cSmatthias.ringwald static void l2cap_handle_connection_request(hci_con_handle_t handle, uint8_t sig_id, uint16_t psm, uint16_t source_cid){ 897645658c9Smatthias.ringwald 898e0abb8e7S[email protected] // log_info("l2cap_handle_connection_request for handle %u, psm %u cid 0x%02x\n", handle, psm, source_cid); 899645658c9Smatthias.ringwald l2cap_service_t *service = l2cap_get_service(psm); 900645658c9Smatthias.ringwald if (!service) { 901645658c9Smatthias.ringwald // 0x0002 PSM not supported 9022b360848Smatthias.ringwald l2cap_register_signaling_response(handle, CONNECTION_REQUEST, sig_id, 0x0002); 903645658c9Smatthias.ringwald return; 904645658c9Smatthias.ringwald } 905645658c9Smatthias.ringwald 9065061f3afS[email protected] hci_connection_t * hci_connection = hci_connection_for_handle( handle ); 907645658c9Smatthias.ringwald if (!hci_connection) { 9082b360848Smatthias.ringwald // 9097d67539fSmatthias.ringwald log_error("no hci_connection for handle %u\n", handle); 910645658c9Smatthias.ringwald return; 911645658c9Smatthias.ringwald } 9122bd8b7e7S[email protected] 9132bd8b7e7S[email protected] // reject connection (0x03 security block) and disconnect if both have SSP, connection is not encrypted and PSM != SDP 914*b087afb5S[email protected] if ( hci_ssp_supported_on_both_sides(handle) 915*b087afb5S[email protected] && gap_security_level(handle) == LEVEL_0 916*b087afb5S[email protected] && !l2cap_security_level_0_allowed_for_PSM(psm)){ 9172bd8b7e7S[email protected] 9182bd8b7e7S[email protected] // 0x0003 Security Block 9192bd8b7e7S[email protected] l2cap_register_signaling_response(handle, CONNECTION_REQUEST, sig_id, 0x0003); 9202bd8b7e7S[email protected] return; 9212bd8b7e7S[email protected] } 9222bd8b7e7S[email protected] 9232bd8b7e7S[email protected] 924645658c9Smatthias.ringwald // alloc structure 9257b5fbe1fSmatthias.ringwald // log_info("l2cap_handle_connection_request register channel\n"); 92628ca2b46S[email protected] l2cap_channel_t * channel = (l2cap_channel_t*) btstack_memory_l2cap_channel_get(); 9272b360848Smatthias.ringwald if (!channel){ 9282b360848Smatthias.ringwald // 0x0004 No resources available 9292b360848Smatthias.ringwald l2cap_register_signaling_response(handle, CONNECTION_REQUEST, sig_id, 0x0004); 9302b360848Smatthias.ringwald return; 9312b360848Smatthias.ringwald } 932645658c9Smatthias.ringwald 933645658c9Smatthias.ringwald // fill in 934169f8b28Smatthias.ringwald BD_ADDR_COPY(channel->address, hci_connection->address); 935169f8b28Smatthias.ringwald channel->psm = psm; 936169f8b28Smatthias.ringwald channel->handle = handle; 937169f8b28Smatthias.ringwald channel->connection = service->connection; 938f8dd2f72Smatthias.ringwald channel->packet_handler = service->packet_handler; 939b35f641cSmatthias.ringwald channel->local_cid = l2cap_next_local_cid(); 940b35f641cSmatthias.ringwald channel->remote_cid = source_cid; 941fa2b2627Smatthias.ringwald channel->local_mtu = service->mtu; 9420a18a8e9Smatthias.ringwald channel->remote_mtu = L2CAP_DEFAULT_MTU; 943761b0451Smatthias.ringwald channel->packets_granted = 0; 944b1988dceSmatthias.ringwald channel->remote_sig_id = sig_id; 945df3354fcS[email protected] channel->required_security_level = service->required_security_level; 946645658c9Smatthias.ringwald 9471d279b20Smatthias.ringwald // limit local mtu to max acl packet length 9482985cb84Smatthias.ringwald if (channel->local_mtu > l2cap_max_mtu()) { 9492985cb84Smatthias.ringwald channel->local_mtu = l2cap_max_mtu(); 9509775e25bSmatthias.ringwald } 9519775e25bSmatthias.ringwald 952645658c9Smatthias.ringwald // set initial state 953df3354fcS[email protected] channel->state = L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE; 954ad671560S[email protected] channel->state_var = L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND; 955e405ae81Smatthias.ringwald 956645658c9Smatthias.ringwald // add to connections list 957169f8b28Smatthias.ringwald linked_list_add(&l2cap_channels, (linked_item_t *) channel); 958645658c9Smatthias.ringwald 959f85a9399S[email protected] // assert security requirements 9601eb2563eS[email protected] gap_request_security_level(handle, channel->required_security_level); 961e405ae81Smatthias.ringwald } 962645658c9Smatthias.ringwald 963b35f641cSmatthias.ringwald void l2cap_accept_connection_internal(uint16_t local_cid){ 964e0abb8e7S[email protected] log_info("L2CAP_ACCEPT_CONNECTION local_cid 0x%x", local_cid); 965b35f641cSmatthias.ringwald l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid); 966e405ae81Smatthias.ringwald if (!channel) { 9677d67539fSmatthias.ringwald log_error("l2cap_accept_connection_internal called but local_cid 0x%x not found", local_cid); 968e405ae81Smatthias.ringwald return; 969e405ae81Smatthias.ringwald } 970e405ae81Smatthias.ringwald 971552d92a1Smatthias.ringwald channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_ACCEPT; 972e405ae81Smatthias.ringwald 973552d92a1Smatthias.ringwald // process 974552d92a1Smatthias.ringwald l2cap_run(); 975e405ae81Smatthias.ringwald } 976645658c9Smatthias.ringwald 977b35f641cSmatthias.ringwald void l2cap_decline_connection_internal(uint16_t local_cid, uint8_t reason){ 978e0abb8e7S[email protected] log_info("L2CAP_DECLINE_CONNECTION local_cid 0x%x, reason %x", local_cid, reason); 979b35f641cSmatthias.ringwald l2cap_channel_t * channel = l2cap_get_channel_for_local_cid( local_cid); 980e405ae81Smatthias.ringwald if (!channel) { 9817d67539fSmatthias.ringwald log_error( "l2cap_decline_connection_internal called but local_cid 0x%x not found", local_cid); 982e405ae81Smatthias.ringwald return; 983e405ae81Smatthias.ringwald } 984e7ff783cSmatthias.ringwald channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE; 985e7ff783cSmatthias.ringwald channel->reason = reason; 986e7ff783cSmatthias.ringwald l2cap_run(); 987645658c9Smatthias.ringwald } 988645658c9Smatthias.ringwald 9892784b77dSmatthias.ringwald void l2cap_signaling_handle_configure_request(l2cap_channel_t *channel, uint8_t *command){ 990b1988dceSmatthias.ringwald 991b1988dceSmatthias.ringwald channel->remote_sig_id = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET]; 992b1988dceSmatthias.ringwald 99363a7246aSmatthias.ringwald uint16_t flags = READ_BT_16(command, 6); 99463a7246aSmatthias.ringwald if (flags & 1) { 99563a7246aSmatthias.ringwald channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT); 99663a7246aSmatthias.ringwald } 99763a7246aSmatthias.ringwald 9982784b77dSmatthias.ringwald // accept the other's configuration options 9993de7c0caSmatthias.ringwald uint16_t end_pos = 4 + READ_BT_16(command, L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET); 10003de7c0caSmatthias.ringwald uint16_t pos = 8; 10013de7c0caSmatthias.ringwald while (pos < end_pos){ 100263a7246aSmatthias.ringwald uint8_t option_hint = command[pos] >> 7; 100363a7246aSmatthias.ringwald uint8_t option_type = command[pos] & 0x7f; 100463a7246aSmatthias.ringwald log_info("l2cap cid %u, hint %u, type %u", channel->local_cid, option_hint, option_type); 100563a7246aSmatthias.ringwald pos++; 10061dc511deSmatthias.ringwald uint8_t length = command[pos++]; 10071dc511deSmatthias.ringwald // MTU { type(8): 1, len(8):2, MTU(16) } 100863a7246aSmatthias.ringwald if (option_type == 1 && length == 2){ 10091dc511deSmatthias.ringwald channel->remote_mtu = READ_BT_16(command, pos); 1010e0abb8e7S[email protected] // log_info("l2cap cid 0x%02x, remote mtu %u\n", channel->local_cid, channel->remote_mtu); 101163a7246aSmatthias.ringwald channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU); 101263a7246aSmatthias.ringwald } 10130fe7a9d0S[email protected] // Flush timeout { type(8):2, len(8): 2, Flush Timeout(16)} 10140fe7a9d0S[email protected] if (option_type == 2 && length == 2){ 10150fe7a9d0S[email protected] channel->flush_timeout = READ_BT_16(command, pos); 10160fe7a9d0S[email protected] } 101763a7246aSmatthias.ringwald // check for unknown options 101863a7246aSmatthias.ringwald if (option_hint == 0 && (option_type == 0 || option_type >= 0x07)){ 1019c177a91cS[email protected] log_info("l2cap cid %u, unknown options", channel->local_cid); 102063a7246aSmatthias.ringwald channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_INVALID); 10211dc511deSmatthias.ringwald } 10221dc511deSmatthias.ringwald pos += length; 10231dc511deSmatthias.ringwald } 10242784b77dSmatthias.ringwald } 10252784b77dSmatthias.ringwald 1026fa8473a4Smatthias.ringwald static int l2cap_channel_ready_for_open(l2cap_channel_t *channel){ 10277b5fbe1fSmatthias.ringwald // log_info("l2cap_channel_ready_for_open 0x%02x\n", channel->state_var); 102873cf2b3dSmatthias.ringwald if ((channel->state_var & L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_RSP) == 0) return 0; 102973cf2b3dSmatthias.ringwald if ((channel->state_var & L2CAP_CHANNEL_STATE_VAR_SENT_CONF_RSP) == 0) return 0; 1030fa8473a4Smatthias.ringwald return 1; 1031fa8473a4Smatthias.ringwald } 1032fa8473a4Smatthias.ringwald 1033fa8473a4Smatthias.ringwald 103400d93d79Smatthias.ringwald void l2cap_signaling_handler_channel(l2cap_channel_t *channel, uint8_t *command){ 10351e6aba47Smatthias.ringwald 103600d93d79Smatthias.ringwald uint8_t code = command[L2CAP_SIGNALING_COMMAND_CODE_OFFSET]; 103700d93d79Smatthias.ringwald uint8_t identifier = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET]; 103838e5900eSmatthias.ringwald uint16_t result = 0; 10391e6aba47Smatthias.ringwald 10405842b6d9Smatthias.ringwald log_info("L2CAP signaling handler code %u, state %u\n", code, channel->state); 1041b35f641cSmatthias.ringwald 10429a011532Smatthias.ringwald // handle DISCONNECT REQUESTS seperately 10439a011532Smatthias.ringwald if (code == DISCONNECTION_REQUEST){ 10449a011532Smatthias.ringwald switch (channel->state){ 1045fa8473a4Smatthias.ringwald case L2CAP_STATE_CONFIG: 10469a011532Smatthias.ringwald case L2CAP_STATE_OPEN: 10472b83fb7dSmatthias.ringwald case L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST: 10489a011532Smatthias.ringwald case L2CAP_STATE_WAIT_DISCONNECT: 10499a011532Smatthias.ringwald l2cap_handle_disconnect_request(channel, identifier); 10509a011532Smatthias.ringwald break; 10519a011532Smatthias.ringwald 10529a011532Smatthias.ringwald default: 10539a011532Smatthias.ringwald // ignore in other states 10549a011532Smatthias.ringwald break; 10559a011532Smatthias.ringwald } 10569a011532Smatthias.ringwald return; 10579a011532Smatthias.ringwald } 10589a011532Smatthias.ringwald 105956081214Smatthias.ringwald // @STATEMACHINE(l2cap) 10601e6aba47Smatthias.ringwald switch (channel->state) { 10611e6aba47Smatthias.ringwald 10621e6aba47Smatthias.ringwald case L2CAP_STATE_WAIT_CONNECT_RSP: 10631e6aba47Smatthias.ringwald switch (code){ 10641e6aba47Smatthias.ringwald case CONNECTION_RESPONSE: 10655932bd7cS[email protected] l2cap_stop_rtx(channel); 106600d93d79Smatthias.ringwald result = READ_BT_16 (command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+4); 106738e5900eSmatthias.ringwald switch (result) { 106838e5900eSmatthias.ringwald case 0: 1069169f8b28Smatthias.ringwald // successful connection 107000d93d79Smatthias.ringwald channel->remote_cid = READ_BT_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET); 1071fa8473a4Smatthias.ringwald channel->state = L2CAP_STATE_CONFIG; 107228ca2b46S[email protected] channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ); 107338e5900eSmatthias.ringwald break; 107438e5900eSmatthias.ringwald case 1: 10755932bd7cS[email protected] // connection pending. get some coffee, but start the ERTX 10765932bd7cS[email protected] l2cap_start_ertx(channel); 107738e5900eSmatthias.ringwald break; 107838e5900eSmatthias.ringwald default: 1079eb920dbeSmatthias.ringwald // channel closed 1080eb920dbeSmatthias.ringwald channel->state = L2CAP_STATE_CLOSED; 1081f32b992eSmatthias.ringwald // map l2cap connection response result to BTstack status enumeration 108238e5900eSmatthias.ringwald l2cap_emit_channel_opened(channel, L2CAP_CONNECTION_RESPONSE_RESULT_SUCCESSFUL + result); 1083eb920dbeSmatthias.ringwald 1084eb920dbeSmatthias.ringwald // drop link key if security block 1085eb920dbeSmatthias.ringwald if (L2CAP_CONNECTION_RESPONSE_RESULT_SUCCESSFUL + result == L2CAP_CONNECTION_RESPONSE_RESULT_REFUSED_SECURITY){ 1086eb920dbeSmatthias.ringwald hci_drop_link_key_for_bd_addr(&channel->address); 1087eb920dbeSmatthias.ringwald } 1088eb920dbeSmatthias.ringwald 1089eb920dbeSmatthias.ringwald // discard channel 1090eb920dbeSmatthias.ringwald linked_list_remove(&l2cap_channels, (linked_item_t *) channel); 1091d3a9df87Smatthias.ringwald btstack_memory_l2cap_channel_free(channel); 109238e5900eSmatthias.ringwald break; 10931e6aba47Smatthias.ringwald } 10941e6aba47Smatthias.ringwald break; 109538e5900eSmatthias.ringwald 109638e5900eSmatthias.ringwald default: 10971e6aba47Smatthias.ringwald //@TODO: implement other signaling packets 109838e5900eSmatthias.ringwald break; 10991e6aba47Smatthias.ringwald } 11001e6aba47Smatthias.ringwald break; 11011e6aba47Smatthias.ringwald 1102fa8473a4Smatthias.ringwald case L2CAP_STATE_CONFIG: 1103fe9d8984S[email protected] result = READ_BT_16 (command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+4); 1104ae280e73Smatthias.ringwald switch (code) { 1105ae280e73Smatthias.ringwald case CONFIGURE_REQUEST: 110628ca2b46S[email protected] channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP); 1107ae280e73Smatthias.ringwald l2cap_signaling_handle_configure_request(channel, command); 110863a7246aSmatthias.ringwald if (!(channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT)){ 110963a7246aSmatthias.ringwald // only done if continuation not set 111063a7246aSmatthias.ringwald channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_REQ); 111163a7246aSmatthias.ringwald } 1112ae280e73Smatthias.ringwald break; 11131e6aba47Smatthias.ringwald case CONFIGURE_RESPONSE: 11145932bd7cS[email protected] l2cap_stop_rtx(channel); 11155932bd7cS[email protected] switch (result){ 11165932bd7cS[email protected] case 0: // success 11175932bd7cS[email protected] channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_RSP); 11185932bd7cS[email protected] break; 11195932bd7cS[email protected] case 4: // pending 11205932bd7cS[email protected] l2cap_start_ertx(channel); 11215932bd7cS[email protected] break; 11225932bd7cS[email protected] default: 1123fe9d8984S[email protected] // retry on negative result 1124fe9d8984S[email protected] channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ); 1125fe9d8984S[email protected] break; 1126fe9d8984S[email protected] } 11275a67bd4aSmatthias.ringwald break; 11285a67bd4aSmatthias.ringwald default: 11295a67bd4aSmatthias.ringwald break; 11301e6aba47Smatthias.ringwald } 1131fa8473a4Smatthias.ringwald if (l2cap_channel_ready_for_open(channel)){ 1132fa8473a4Smatthias.ringwald // for open: 11335a67bd4aSmatthias.ringwald channel->state = L2CAP_STATE_OPEN; 1134fa8473a4Smatthias.ringwald l2cap_emit_channel_opened(channel, 0); 11356218e6f1Smatthias.ringwald l2cap_emit_credits(channel, 1); 1136c8e4258aSmatthias.ringwald } 1137c8e4258aSmatthias.ringwald break; 1138f62db1e3Smatthias.ringwald 1139f62db1e3Smatthias.ringwald case L2CAP_STATE_WAIT_DISCONNECT: 1140f62db1e3Smatthias.ringwald switch (code) { 1141f62db1e3Smatthias.ringwald case DISCONNECTION_RESPONSE: 114227a923d0Smatthias.ringwald l2cap_finialize_channel_close(channel); 114327a923d0Smatthias.ringwald break; 11445a67bd4aSmatthias.ringwald default: 11455a67bd4aSmatthias.ringwald //@TODO: implement other signaling packets 11465a67bd4aSmatthias.ringwald break; 114727a923d0Smatthias.ringwald } 114827a923d0Smatthias.ringwald break; 114984836b65Smatthias.ringwald 115084836b65Smatthias.ringwald case L2CAP_STATE_CLOSED: 115184836b65Smatthias.ringwald // @TODO handle incoming requests 115284836b65Smatthias.ringwald break; 115384836b65Smatthias.ringwald 115484836b65Smatthias.ringwald case L2CAP_STATE_OPEN: 115584836b65Smatthias.ringwald //@TODO: implement other signaling packets, e.g. re-configure 115684836b65Smatthias.ringwald break; 115710642e45Smatthias.ringwald default: 115810642e45Smatthias.ringwald break; 115927a923d0Smatthias.ringwald } 11607b5fbe1fSmatthias.ringwald // log_info("new state %u\n", channel->state); 116127a923d0Smatthias.ringwald } 116227a923d0Smatthias.ringwald 116300d93d79Smatthias.ringwald 116400d93d79Smatthias.ringwald void l2cap_signaling_handler_dispatch( hci_con_handle_t handle, uint8_t * command){ 116500d93d79Smatthias.ringwald 116600d93d79Smatthias.ringwald // get code, signalind identifier and command len 116700d93d79Smatthias.ringwald uint8_t code = command[L2CAP_SIGNALING_COMMAND_CODE_OFFSET]; 116800d93d79Smatthias.ringwald uint8_t sig_id = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET]; 116900d93d79Smatthias.ringwald 117000d93d79Smatthias.ringwald // not for a particular channel, and not CONNECTION_REQUEST, ECHO_[REQUEST|RESPONSE], INFORMATION_REQUEST 117100d93d79Smatthias.ringwald if (code < 1 || code == ECHO_RESPONSE || code > INFORMATION_REQUEST){ 117263a7246aSmatthias.ringwald l2cap_register_signaling_response(handle, COMMAND_REJECT, sig_id, L2CAP_REJ_CMD_UNKNOWN); 117300d93d79Smatthias.ringwald return; 117400d93d79Smatthias.ringwald } 117500d93d79Smatthias.ringwald 117600d93d79Smatthias.ringwald // general commands without an assigned channel 117700d93d79Smatthias.ringwald switch(code) { 117800d93d79Smatthias.ringwald 117900d93d79Smatthias.ringwald case CONNECTION_REQUEST: { 118000d93d79Smatthias.ringwald uint16_t psm = READ_BT_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET); 118100d93d79Smatthias.ringwald uint16_t source_cid = READ_BT_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+2); 118200d93d79Smatthias.ringwald l2cap_handle_connection_request(handle, sig_id, psm, source_cid); 11832b83fb7dSmatthias.ringwald return; 118400d93d79Smatthias.ringwald } 118500d93d79Smatthias.ringwald 11862b360848Smatthias.ringwald case ECHO_REQUEST: 11872b360848Smatthias.ringwald l2cap_register_signaling_response(handle, code, sig_id, 0); 11882b83fb7dSmatthias.ringwald return; 118900d93d79Smatthias.ringwald 119000d93d79Smatthias.ringwald case INFORMATION_REQUEST: { 119100d93d79Smatthias.ringwald uint16_t infoType = READ_BT_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET); 11922b360848Smatthias.ringwald l2cap_register_signaling_response(handle, code, sig_id, infoType); 11932b83fb7dSmatthias.ringwald return; 119400d93d79Smatthias.ringwald } 119500d93d79Smatthias.ringwald 119600d93d79Smatthias.ringwald default: 119700d93d79Smatthias.ringwald break; 119800d93d79Smatthias.ringwald } 119900d93d79Smatthias.ringwald 120000d93d79Smatthias.ringwald 120100d93d79Smatthias.ringwald // Get potential destination CID 120200d93d79Smatthias.ringwald uint16_t dest_cid = READ_BT_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET); 120300d93d79Smatthias.ringwald 120400d93d79Smatthias.ringwald // Find channel for this sig_id and connection handle 120500d93d79Smatthias.ringwald linked_item_t *it; 120600d93d79Smatthias.ringwald for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){ 120700d93d79Smatthias.ringwald l2cap_channel_t * channel = (l2cap_channel_t *) it; 120800d93d79Smatthias.ringwald if (channel->handle == handle) { 120900d93d79Smatthias.ringwald if (code & 1) { 1210b1988dceSmatthias.ringwald // match odd commands (responses) by previous signaling identifier 1211b1988dceSmatthias.ringwald if (channel->local_sig_id == sig_id) { 121200d93d79Smatthias.ringwald l2cap_signaling_handler_channel(channel, command); 12134e32727eSmatthias.ringwald break; 121400d93d79Smatthias.ringwald } 121500d93d79Smatthias.ringwald } else { 1216b1988dceSmatthias.ringwald // match even commands (requests) by local channel id 121700d93d79Smatthias.ringwald if (channel->local_cid == dest_cid) { 121800d93d79Smatthias.ringwald l2cap_signaling_handler_channel(channel, command); 12194e32727eSmatthias.ringwald break; 122000d93d79Smatthias.ringwald } 122100d93d79Smatthias.ringwald } 122200d93d79Smatthias.ringwald } 122300d93d79Smatthias.ringwald } 122400d93d79Smatthias.ringwald } 122500d93d79Smatthias.ringwald 122600d93d79Smatthias.ringwald void l2cap_acl_handler( uint8_t *packet, uint16_t size ){ 122700d93d79Smatthias.ringwald 122800d93d79Smatthias.ringwald // Get Channel ID 122900d93d79Smatthias.ringwald uint16_t channel_id = READ_L2CAP_CHANNEL_ID(packet); 123000d93d79Smatthias.ringwald hci_con_handle_t handle = READ_ACL_CONNECTION_HANDLE(packet); 123100d93d79Smatthias.ringwald 12325652b5ffS[email protected] switch (channel_id) { 12335652b5ffS[email protected] 12345652b5ffS[email protected] case L2CAP_CID_SIGNALING: { 12355652b5ffS[email protected] 123600d93d79Smatthias.ringwald uint16_t command_offset = 8; 123700d93d79Smatthias.ringwald while (command_offset < size) { 123800d93d79Smatthias.ringwald 123900d93d79Smatthias.ringwald // handle signaling commands 124000d93d79Smatthias.ringwald l2cap_signaling_handler_dispatch(handle, &packet[command_offset]); 124100d93d79Smatthias.ringwald 124200d93d79Smatthias.ringwald // increment command_offset 124300d93d79Smatthias.ringwald command_offset += L2CAP_SIGNALING_COMMAND_DATA_OFFSET + READ_BT_16(packet, command_offset + L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET); 124400d93d79Smatthias.ringwald } 12455652b5ffS[email protected] break; 124600d93d79Smatthias.ringwald } 124700d93d79Smatthias.ringwald 12485652b5ffS[email protected] case L2CAP_CID_ATTRIBUTE_PROTOCOL: 12495652b5ffS[email protected] if (attribute_protocol_packet_handler) { 12505652b5ffS[email protected] (*attribute_protocol_packet_handler)(ATT_DATA_PACKET, handle, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER); 12515652b5ffS[email protected] } 12525652b5ffS[email protected] break; 12535652b5ffS[email protected] 12545652b5ffS[email protected] case L2CAP_CID_SECURITY_MANAGER_PROTOCOL: 12555652b5ffS[email protected] if (security_protocol_packet_handler) { 12565652b5ffS[email protected] (*security_protocol_packet_handler)(SM_DATA_PACKET, handle, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER); 12575652b5ffS[email protected] } 12585652b5ffS[email protected] break; 12595652b5ffS[email protected] 12605652b5ffS[email protected] default: { 126100d93d79Smatthias.ringwald // Find channel for this channel_id and connection handle 126200d93d79Smatthias.ringwald l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(channel_id); 126300d93d79Smatthias.ringwald if (channel) { 126458de5610Smatthias.ringwald l2cap_dispatch(channel, L2CAP_DATA_PACKET, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER); 126500d93d79Smatthias.ringwald } 12665652b5ffS[email protected] break; 12675652b5ffS[email protected] } 12685652b5ffS[email protected] } 126900d93d79Smatthias.ringwald } 127000d93d79Smatthias.ringwald 12712718e2e7Smatthias.ringwald static void l2cap_packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){ 12722718e2e7Smatthias.ringwald switch (packet_type) { 12732718e2e7Smatthias.ringwald case HCI_EVENT_PACKET: 12742718e2e7Smatthias.ringwald l2cap_event_handler(packet, size); 12752718e2e7Smatthias.ringwald break; 12762718e2e7Smatthias.ringwald case HCI_ACL_DATA_PACKET: 12772718e2e7Smatthias.ringwald l2cap_acl_handler(packet, size); 12782718e2e7Smatthias.ringwald break; 12792718e2e7Smatthias.ringwald default: 12802718e2e7Smatthias.ringwald break; 12812718e2e7Smatthias.ringwald } 12821eb2563eS[email protected] l2cap_run(); 12832718e2e7Smatthias.ringwald } 128400d93d79Smatthias.ringwald 128515ec09bbSmatthias.ringwald // finalize closed channel - l2cap_handle_disconnect_request & DISCONNECTION_RESPONSE 128627a923d0Smatthias.ringwald void l2cap_finialize_channel_close(l2cap_channel_t *channel){ 1287f62db1e3Smatthias.ringwald channel->state = L2CAP_STATE_CLOSED; 1288f62db1e3Smatthias.ringwald l2cap_emit_channel_closed(channel); 1289f62db1e3Smatthias.ringwald // discard channel 1290f62db1e3Smatthias.ringwald linked_list_remove(&l2cap_channels, (linked_item_t *) channel); 1291d3a9df87Smatthias.ringwald btstack_memory_l2cap_channel_free(channel); 1292c8e4258aSmatthias.ringwald } 12931e6aba47Smatthias.ringwald 12949d9bbc01Smatthias.ringwald l2cap_service_t * l2cap_get_service(uint16_t psm){ 1295c52bf64dSmatthias.ringwald linked_item_t *it; 12969d9bbc01Smatthias.ringwald 12979d9bbc01Smatthias.ringwald // close open channels 12989d9bbc01Smatthias.ringwald for (it = (linked_item_t *) l2cap_services; it ; it = it->next){ 12999d9bbc01Smatthias.ringwald l2cap_service_t * service = ((l2cap_service_t *) it); 13009d9bbc01Smatthias.ringwald if ( service->psm == psm){ 13019d9bbc01Smatthias.ringwald return service; 13029d9bbc01Smatthias.ringwald }; 13039d9bbc01Smatthias.ringwald } 13049d9bbc01Smatthias.ringwald return NULL; 13059d9bbc01Smatthias.ringwald } 13069d9bbc01Smatthias.ringwald 130762f901dfS[email protected] void l2cap_register_service_internal(void *connection, btstack_packet_handler_t packet_handler, uint16_t psm, uint16_t mtu, gap_security_level_t security_level){ 1308e0abb8e7S[email protected] 1309e0abb8e7S[email protected] log_info("L2CAP_REGISTER_SERVICE psm 0x%x mtu %u", psm, mtu); 1310e0abb8e7S[email protected] 13114bb582b6Smatthias.ringwald // check for alread registered psm 13124bb582b6Smatthias.ringwald // TODO: emit error event 13139d9bbc01Smatthias.ringwald l2cap_service_t *service = l2cap_get_service(psm); 1314277abc2cSmatthias.ringwald if (service) { 1315277abc2cSmatthias.ringwald log_error("l2cap_register_service_internal: PSM %u already registered\n", psm); 131681476041Smatthias.ringwald l2cap_emit_service_registered(connection, L2CAP_SERVICE_ALREADY_REGISTERED, psm); 1317277abc2cSmatthias.ringwald return; 1318277abc2cSmatthias.ringwald } 13199d9bbc01Smatthias.ringwald 13204bb582b6Smatthias.ringwald // alloc structure 13214bb582b6Smatthias.ringwald // TODO: emit error event 132228ca2b46S[email protected] service = (l2cap_service_t *) btstack_memory_l2cap_service_get(); 1323277abc2cSmatthias.ringwald if (!service) { 1324277abc2cSmatthias.ringwald log_error("l2cap_register_service_internal: no memory for l2cap_service_t\n"); 13255842b6d9Smatthias.ringwald l2cap_emit_service_registered(connection, BTSTACK_MEMORY_ALLOC_FAILED, psm); 1326277abc2cSmatthias.ringwald return; 1327277abc2cSmatthias.ringwald } 13289d9bbc01Smatthias.ringwald 13299d9bbc01Smatthias.ringwald // fill in 13309d9bbc01Smatthias.ringwald service->psm = psm; 13319d9bbc01Smatthias.ringwald service->mtu = mtu; 13329d9bbc01Smatthias.ringwald service->connection = connection; 1333d8497f19Smatthias.ringwald service->packet_handler = packet_handler; 1334df3354fcS[email protected] service->required_security_level = security_level; 13359d9bbc01Smatthias.ringwald 13369d9bbc01Smatthias.ringwald // add to services list 13379d9bbc01Smatthias.ringwald linked_list_add(&l2cap_services, (linked_item_t *) service); 1338c0e866bfSmatthias.ringwald 1339c0e866bfSmatthias.ringwald // enable page scan 1340c0e866bfSmatthias.ringwald hci_connectable_control(1); 13415842b6d9Smatthias.ringwald 13425842b6d9Smatthias.ringwald // done 13435842b6d9Smatthias.ringwald l2cap_emit_service_registered(connection, 0, psm); 13449d9bbc01Smatthias.ringwald } 13459d9bbc01Smatthias.ringwald 134636944dffSmatthias.ringwald void l2cap_unregister_service_internal(void *connection, uint16_t psm){ 1347e0abb8e7S[email protected] 1348e0abb8e7S[email protected] log_info("L2CAP_UNREGISTER_SERVICE psm 0x%x", psm); 1349e0abb8e7S[email protected] 13509d9bbc01Smatthias.ringwald l2cap_service_t *service = l2cap_get_service(psm); 1351037d6e48Smatthias.ringwald if (!service) return; 13529d9bbc01Smatthias.ringwald linked_list_remove(&l2cap_services, (linked_item_t *) service); 1353d3a9df87Smatthias.ringwald btstack_memory_l2cap_service_free(service); 1354c0e866bfSmatthias.ringwald 1355c0e866bfSmatthias.ringwald // disable page scan when no services registered 1356c0e866bfSmatthias.ringwald if (!linked_list_empty(&l2cap_services)) return; 1357c0e866bfSmatthias.ringwald hci_connectable_control(0); 13589d9bbc01Smatthias.ringwald } 13599d9bbc01Smatthias.ringwald 13609d9bbc01Smatthias.ringwald // 136136944dffSmatthias.ringwald void l2cap_close_connection(void *connection){ 13629d9bbc01Smatthias.ringwald linked_item_t *it; 13639d9bbc01Smatthias.ringwald 13643a9e0a58Smatthias.ringwald // close open channels - note to myself: no channel is freed, so no new for fancy iterator tricks 1365c52bf64dSmatthias.ringwald l2cap_channel_t * channel; 1366c52bf64dSmatthias.ringwald for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){ 1367c52bf64dSmatthias.ringwald channel = (l2cap_channel_t *) it; 1368c52bf64dSmatthias.ringwald if (channel->connection == connection) { 1369cb8eb7e6Smatthias.ringwald channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST; 1370c52bf64dSmatthias.ringwald } 1371c52bf64dSmatthias.ringwald } 13729d9bbc01Smatthias.ringwald 1373645658c9Smatthias.ringwald // unregister services 137469025de8Smatthias.ringwald it = (linked_item_t *) &l2cap_services; 137569025de8Smatthias.ringwald while (it->next) { 137669025de8Smatthias.ringwald l2cap_service_t * service = (l2cap_service_t *) it->next; 1377645658c9Smatthias.ringwald if (service->connection == connection){ 137869025de8Smatthias.ringwald it->next = it->next->next; 1379d3a9df87Smatthias.ringwald btstack_memory_l2cap_service_free(service); 13808149d2c7Smatthias.ringwald } else { 13818149d2c7Smatthias.ringwald it = it->next; 1382645658c9Smatthias.ringwald } 1383645658c9Smatthias.ringwald } 1384cb8eb7e6Smatthias.ringwald 1385cb8eb7e6Smatthias.ringwald // process 1386cb8eb7e6Smatthias.ringwald l2cap_run(); 1387c52bf64dSmatthias.ringwald } 13885652b5ffS[email protected] 13895652b5ffS[email protected] // Bluetooth 4.0 - allows to register handler for Attribute Protocol and Security Manager Protocol 13905652b5ffS[email protected] void l2cap_register_fixed_channel(btstack_packet_handler_t packet_handler, uint16_t channel_id) { 13915652b5ffS[email protected] switch(channel_id){ 13925652b5ffS[email protected] case L2CAP_CID_ATTRIBUTE_PROTOCOL: 13935652b5ffS[email protected] attribute_protocol_packet_handler = packet_handler; 13945652b5ffS[email protected] break; 13955652b5ffS[email protected] case L2CAP_CID_SECURITY_MANAGER_PROTOCOL: 13965652b5ffS[email protected] security_protocol_packet_handler = packet_handler; 13975652b5ffS[email protected] break; 13985652b5ffS[email protected] } 13995652b5ffS[email protected] } 14005652b5ffS[email protected] 1401ab2b01dcS[email protected] #ifdef HAVE_BLE 1402ab2b01dcS[email protected] // Request LE connection parameter update 1403ab2b01dcS[email protected] int l2cap_le_request_connection_parameter_update(uint16_t handle, uint16_t interval_min, uint16_t interval_max, uint16_t slave_latency, uint16_t timeout_multiplier){ 1404ab2b01dcS[email protected] if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){ 1405ab2b01dcS[email protected] log_info("l2cap_send_signaling_packet, cannot send\n"); 1406ab2b01dcS[email protected] return BTSTACK_ACL_BUFFERS_FULL; 1407ab2b01dcS[email protected] } 1408ab2b01dcS[email protected] // log_info("l2cap_send_signaling_packet type %u\n", cmd); 1409ab2b01dcS[email protected] uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer(); 1410ab2b01dcS[email protected] uint16_t len = l2cap_le_create_connection_parameter_update_request(acl_buffer, handle, interval_min, interval_max, slave_latency, timeout_multiplier); 1411ab2b01dcS[email protected] return hci_send_acl_packet(acl_buffer, len); 1412ab2b01dcS[email protected] } 1413ab2b01dcS[email protected] #endif 1414ab2b01dcS[email protected] 1415