xref: /btstack/src/l2cap.c (revision c42e2ff2264ce7fff920cd8f7609178ae1dd208a)
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 
75*c42e2ff2S[email protected] static linked_list_t l2cap_channels;
76*c42e2ff2S[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 
80*c42e2ff2S[email protected] static btstack_packet_handler_t attribute_protocol_packet_handler;
81*c42e2ff2S[email protected] static btstack_packet_handler_t security_protocol_packet_handler;
825652b5ffS[email protected] 
8339bda6d5Smatthias.ringwald // prototypes
84fa8473a4Smatthias.ringwald static void l2cap_finialize_channel_close(l2cap_channel_t *channel);
85fa8473a4Smatthias.ringwald static l2cap_service_t * l2cap_get_service(uint16_t psm);
86fa8473a4Smatthias.ringwald static void l2cap_emit_channel_opened(l2cap_channel_t *channel, uint8_t status);
87fa8473a4Smatthias.ringwald static void l2cap_emit_channel_closed(l2cap_channel_t *channel);
88fa8473a4Smatthias.ringwald static void l2cap_emit_connection_request(l2cap_channel_t *channel);
89fa8473a4Smatthias.ringwald static int l2cap_channel_ready_for_open(l2cap_channel_t *channel);
9039bda6d5Smatthias.ringwald 
9139bda6d5Smatthias.ringwald 
921e6aba47Smatthias.ringwald void l2cap_init(){
93808a48abSmatthias.ringwald     new_credits_blocked = 0;
942b83fb7dSmatthias.ringwald     signaling_responses_pending = 0;
95808a48abSmatthias.ringwald 
96f5454fc6Smatthias.ringwald     l2cap_channels = NULL;
97f5454fc6Smatthias.ringwald     l2cap_services = NULL;
98f5454fc6Smatthias.ringwald 
99f5454fc6Smatthias.ringwald     packet_handler = null_packet_handler;
100*c42e2ff2S[email protected]     attribute_protocol_packet_handler = NULL;
101*c42e2ff2S[email protected]     security_protocol_packet_handler = NULL;
102f5454fc6Smatthias.ringwald 
103fcadd0caSmatthias.ringwald     //
1042718e2e7Smatthias.ringwald     // register callback with HCI
105fcadd0caSmatthias.ringwald     //
1062718e2e7Smatthias.ringwald     hci_register_packet_handler(&l2cap_packet_handler);
107c0e866bfSmatthias.ringwald     hci_connectable_control(0); // no services yet
108fcadd0caSmatthias.ringwald }
109fcadd0caSmatthias.ringwald 
110fcadd0caSmatthias.ringwald 
111fcadd0caSmatthias.ringwald /** Register L2CAP packet handlers */
11236944dffSmatthias.ringwald static void null_packet_handler(void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
113fcadd0caSmatthias.ringwald }
11436944dffSmatthias.ringwald void l2cap_register_packet_handler(void (*handler)(void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size)){
115b502e1b0Smatthias.ringwald     packet_handler = handler;
1161e6aba47Smatthias.ringwald }
1171e6aba47Smatthias.ringwald 
11858de5610Smatthias.ringwald //  notify client/protocol handler
11958de5610Smatthias.ringwald void l2cap_dispatch(l2cap_channel_t *channel, uint8_t type, uint8_t * data, uint16_t size){
12058de5610Smatthias.ringwald     if (channel->packet_handler) {
12158de5610Smatthias.ringwald         (* (channel->packet_handler))(type, channel->local_cid, data, size);
12258de5610Smatthias.ringwald     } else {
12336944dffSmatthias.ringwald         (*packet_handler)(channel->connection, type, channel->local_cid, data, size);
12458de5610Smatthias.ringwald     }
12558de5610Smatthias.ringwald }
12658de5610Smatthias.ringwald 
12758de5610Smatthias.ringwald void l2cap_emit_channel_opened(l2cap_channel_t *channel, uint8_t status) {
128c9dc710bS[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",
129e0abb8e7S[email protected]              status, bd_addr_to_str(channel->address), channel->handle, channel->psm,
130c9dc710bS[email protected]              channel->local_cid, channel->remote_cid, channel->local_mtu, channel->remote_mtu, channel->flush_timeout);
131c9dc710bS[email protected]     uint8_t event[23];
13258de5610Smatthias.ringwald     event[0] = L2CAP_EVENT_CHANNEL_OPENED;
13358de5610Smatthias.ringwald     event[1] = sizeof(event) - 2;
13458de5610Smatthias.ringwald     event[2] = status;
13558de5610Smatthias.ringwald     bt_flip_addr(&event[3], channel->address);
13658de5610Smatthias.ringwald     bt_store_16(event,  9, channel->handle);
13758de5610Smatthias.ringwald     bt_store_16(event, 11, channel->psm);
13858de5610Smatthias.ringwald     bt_store_16(event, 13, channel->local_cid);
13958de5610Smatthias.ringwald     bt_store_16(event, 15, channel->remote_cid);
1404c98aa43Smatthias.ringwald     bt_store_16(event, 17, channel->local_mtu);
1414c98aa43Smatthias.ringwald     bt_store_16(event, 19, channel->remote_mtu);
142c9dc710bS[email protected]     bt_store_16(event, 19, channel->flush_timeout);
14358de5610Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
14458de5610Smatthias.ringwald     l2cap_dispatch(channel, HCI_EVENT_PACKET, event, sizeof(event));
14558de5610Smatthias.ringwald }
14658de5610Smatthias.ringwald 
14758de5610Smatthias.ringwald void l2cap_emit_channel_closed(l2cap_channel_t *channel) {
148e0abb8e7S[email protected]     log_info("L2CAP_EVENT_CHANNEL_CLOSED local_cid 0x%x", channel->local_cid);
14958de5610Smatthias.ringwald     uint8_t event[4];
15058de5610Smatthias.ringwald     event[0] = L2CAP_EVENT_CHANNEL_CLOSED;
15158de5610Smatthias.ringwald     event[1] = sizeof(event) - 2;
15258de5610Smatthias.ringwald     bt_store_16(event, 2, channel->local_cid);
15358de5610Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
15458de5610Smatthias.ringwald     l2cap_dispatch(channel, HCI_EVENT_PACKET, event, sizeof(event));
15558de5610Smatthias.ringwald }
15658de5610Smatthias.ringwald 
15758de5610Smatthias.ringwald void l2cap_emit_connection_request(l2cap_channel_t *channel) {
158e0abb8e7S[email protected]     log_info("L2CAP_EVENT_INCOMING_CONNECTION addr %s handle 0x%x psm 0x%x local_cid 0x%x remote_cid 0x%x",
159e0abb8e7S[email protected]              bd_addr_to_str(channel->address), channel->handle,  channel->psm, channel->local_cid, channel->remote_cid);
16058de5610Smatthias.ringwald     uint8_t event[16];
16158de5610Smatthias.ringwald     event[0] = L2CAP_EVENT_INCOMING_CONNECTION;
16258de5610Smatthias.ringwald     event[1] = sizeof(event) - 2;
16358de5610Smatthias.ringwald     bt_flip_addr(&event[2], channel->address);
16458de5610Smatthias.ringwald     bt_store_16(event,  8, channel->handle);
16558de5610Smatthias.ringwald     bt_store_16(event, 10, channel->psm);
16658de5610Smatthias.ringwald     bt_store_16(event, 12, channel->local_cid);
16758de5610Smatthias.ringwald     bt_store_16(event, 14, channel->remote_cid);
16858de5610Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
16958de5610Smatthias.ringwald     l2cap_dispatch(channel, HCI_EVENT_PACKET, event, sizeof(event));
1700af41d30Smatthias.ringwald }
171808a48abSmatthias.ringwald 
1725842b6d9Smatthias.ringwald static void l2cap_emit_service_registered(void *connection, uint8_t status, uint16_t psm){
173e0abb8e7S[email protected]     log_info("L2CAP_EVENT_SERVICE_REGISTERED status 0x%x psm 0x%x", status, psm);
1745842b6d9Smatthias.ringwald     uint8_t event[5];
1755842b6d9Smatthias.ringwald     event[0] = L2CAP_EVENT_SERVICE_REGISTERED;
1765842b6d9Smatthias.ringwald     event[1] = sizeof(event) - 2;
1775842b6d9Smatthias.ringwald     event[2] = status;
1785842b6d9Smatthias.ringwald     bt_store_16(event, 3, psm);
1795842b6d9Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
1805842b6d9Smatthias.ringwald     (*packet_handler)(connection, HCI_EVENT_PACKET, 0, event, sizeof(event));
1815842b6d9Smatthias.ringwald }
1825842b6d9Smatthias.ringwald 
1836218e6f1Smatthias.ringwald void l2cap_emit_credits(l2cap_channel_t *channel, uint8_t credits) {
184e0abb8e7S[email protected] 
185e0abb8e7S[email protected]     log_info("L2CAP_EVENT_CREDITS local_cid 0x%x credits %u", channel->local_cid, credits);
1866218e6f1Smatthias.ringwald     // track credits
1876218e6f1Smatthias.ringwald     channel->packets_granted += credits;
1886218e6f1Smatthias.ringwald 
1896218e6f1Smatthias.ringwald     uint8_t event[5];
1906218e6f1Smatthias.ringwald     event[0] = L2CAP_EVENT_CREDITS;
1916218e6f1Smatthias.ringwald     event[1] = sizeof(event) - 2;
1926218e6f1Smatthias.ringwald     bt_store_16(event, 2, channel->local_cid);
1936218e6f1Smatthias.ringwald     event[4] = credits;
1946218e6f1Smatthias.ringwald     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
1956218e6f1Smatthias.ringwald     l2cap_dispatch(channel, HCI_EVENT_PACKET, event, sizeof(event));
1966218e6f1Smatthias.ringwald }
1976218e6f1Smatthias.ringwald 
198808a48abSmatthias.ringwald void l2cap_block_new_credits(uint8_t blocked){
199808a48abSmatthias.ringwald     new_credits_blocked = blocked;
200808a48abSmatthias.ringwald }
201808a48abSmatthias.ringwald 
20240d1c7a4Smatthias.ringwald void l2cap_hand_out_credits(void){
203808a48abSmatthias.ringwald 
204808a48abSmatthias.ringwald     if (new_credits_blocked) return;    // we're told not to. used by daemon
205808a48abSmatthias.ringwald 
2068d371091Smatthias.ringwald     linked_item_t *it;
2078d371091Smatthias.ringwald     for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){
2088d371091Smatthias.ringwald         if (!hci_number_free_acl_slots()) return;
2098d371091Smatthias.ringwald         l2cap_channel_t * channel = (l2cap_channel_t *) it;
2100e7bc007Smatthias.ringwald         if (channel->state != L2CAP_STATE_OPEN) continue;
2114c744e21Smatthias.ringwald         if (hci_number_outgoing_packets(channel->handle) < NR_BUFFERED_ACL_PACKETS && channel->packets_granted == 0) {
2128d371091Smatthias.ringwald             l2cap_emit_credits(channel, 1);
2138d371091Smatthias.ringwald         }
2148d371091Smatthias.ringwald     }
2158d371091Smatthias.ringwald }
2168d371091Smatthias.ringwald 
217b35f641cSmatthias.ringwald l2cap_channel_t * l2cap_get_channel_for_local_cid(uint16_t local_cid){
218f62db1e3Smatthias.ringwald     linked_item_t *it;
219f62db1e3Smatthias.ringwald     for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){
2208d371091Smatthias.ringwald         l2cap_channel_t * channel = (l2cap_channel_t *) it;
221b35f641cSmatthias.ringwald         if ( channel->local_cid == local_cid) {
222f62db1e3Smatthias.ringwald             return channel;
223f62db1e3Smatthias.ringwald         }
224f62db1e3Smatthias.ringwald     }
225f62db1e3Smatthias.ringwald     return NULL;
226f62db1e3Smatthias.ringwald }
227f62db1e3Smatthias.ringwald 
2286b1fde37Smatthias.ringwald int  l2cap_can_send_packet_now(uint16_t local_cid){
2296b1fde37Smatthias.ringwald     l2cap_channel_t *channel = l2cap_get_channel_for_local_cid(local_cid);
2306b1fde37Smatthias.ringwald     if (!channel) return 0;
2316b1fde37Smatthias.ringwald     if (!channel->packets_granted) return 0;
2326b1fde37Smatthias.ringwald     return hci_can_send_packet_now(HCI_ACL_DATA_PACKET);
2336b1fde37Smatthias.ringwald }
2346b1fde37Smatthias.ringwald 
23596cbd662Smatthias.ringwald uint16_t l2cap_get_remote_mtu_for_local_cid(uint16_t local_cid){
23696cbd662Smatthias.ringwald     l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
23796cbd662Smatthias.ringwald     if (channel) {
23896cbd662Smatthias.ringwald         return channel->remote_mtu;
23996cbd662Smatthias.ringwald     }
24096cbd662Smatthias.ringwald     return 0;
24196cbd662Smatthias.ringwald }
24296cbd662Smatthias.ringwald 
2435932bd7cS[email protected] static l2cap_channel_t * l2cap_channel_for_rtx_timer(timer_source_t * ts){
2445932bd7cS[email protected]     linked_item_t *it;
2455932bd7cS[email protected]     for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){
2465932bd7cS[email protected]         l2cap_channel_t * channel = (l2cap_channel_t *) it;
2475932bd7cS[email protected]         if ( &channel->rtx == ts) {
2485932bd7cS[email protected]             return channel;
2495932bd7cS[email protected]         }
2505932bd7cS[email protected]     }
2515932bd7cS[email protected]     return NULL;
2525932bd7cS[email protected] }
2535932bd7cS[email protected] 
2545932bd7cS[email protected] static void l2cap_rtx_timeout(timer_source_t * ts){
2555932bd7cS[email protected]     l2cap_channel_t * channel = l2cap_channel_for_rtx_timer(ts);
2565932bd7cS[email protected]     if (!ts) return;
2575932bd7cS[email protected] 
2585932bd7cS[email protected]     log_info("l2cap_rtx_timeout for local cid 0x%02x", channel->local_cid);
2595932bd7cS[email protected] 
2605932bd7cS[email protected]     // "When terminating the channel, it is not necessary to send a L2CAP_DisconnectReq
2615932bd7cS[email protected]     //  and enter WAIT_DISCONNECT state. Channels can be transitioned directly to the CLOSED state."
2625932bd7cS[email protected]     // notify client
2635932bd7cS[email protected]     l2cap_emit_channel_opened(channel, L2CAP_CONNECTION_RESPONSE_RESULT_RTX_TIMEOUT);
2645932bd7cS[email protected] 
2655932bd7cS[email protected]     // discard channel
2665932bd7cS[email protected]     linked_list_remove(&l2cap_channels, (linked_item_t *) channel);
2675932bd7cS[email protected]     btstack_memory_l2cap_channel_free(channel);
2685932bd7cS[email protected] }
2695932bd7cS[email protected] 
2705932bd7cS[email protected] static void l2cap_stop_rtx(l2cap_channel_t * channel){
2715932bd7cS[email protected]     log_info("l2cap_stop_rtx for local cid 0x%02x", channel->local_cid);
2725932bd7cS[email protected]     run_loop_remove_timer(&channel->rtx);
2735932bd7cS[email protected] }
2745932bd7cS[email protected] 
2755932bd7cS[email protected] static void l2cap_start_rtx(l2cap_channel_t * channel){
2765932bd7cS[email protected]     log_info("l2cap_start_rtx for local cid 0x%02x", channel->local_cid);
2775932bd7cS[email protected]     l2cap_stop_rtx(channel);
2785932bd7cS[email protected]     run_loop_set_timer_handler(&channel->rtx, l2cap_rtx_timeout);
2795932bd7cS[email protected]     run_loop_set_timer(&channel->rtx, L2CAP_RTX_TIMEOUT_MS);
2805932bd7cS[email protected]     run_loop_add_timer(&channel->rtx);
2815932bd7cS[email protected] }
2825932bd7cS[email protected] 
2835932bd7cS[email protected] static void l2cap_start_ertx(l2cap_channel_t * channel){
2845932bd7cS[email protected]     log_info("l2cap_start_ertx for local cid 0x%02x", channel->local_cid);
2855932bd7cS[email protected]     l2cap_stop_rtx(channel);
2865932bd7cS[email protected]     run_loop_set_timer_handler(&channel->rtx, l2cap_rtx_timeout);
2875932bd7cS[email protected]     run_loop_set_timer(&channel->rtx, L2CAP_ERTX_TIMEOUT_MS);
2885932bd7cS[email protected]     run_loop_add_timer(&channel->rtx);
2895932bd7cS[email protected] }
2905932bd7cS[email protected] 
291df3354fcS[email protected] static int l2cap_security_level_0_allowed_for_PSM(uint16_t psm){
292df3354fcS[email protected]     return psm != PSM_SDP;
293df3354fcS[email protected] }
2945932bd7cS[email protected] 
29558de5610Smatthias.ringwald int l2cap_send_signaling_packet(hci_con_handle_t handle, L2CAP_SIGNALING_COMMANDS cmd, uint8_t identifier, ...){
296b1d43497Smatthias.ringwald 
297b1d43497Smatthias.ringwald     if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){
298b1d43497Smatthias.ringwald         log_info("l2cap_send_signaling_packet, cannot send\n");
299b1d43497Smatthias.ringwald         return BTSTACK_ACL_BUFFERS_FULL;
300b1d43497Smatthias.ringwald     }
301b1d43497Smatthias.ringwald 
3027b5fbe1fSmatthias.ringwald     // log_info("l2cap_send_signaling_packet type %u\n", cmd);
303b1d43497Smatthias.ringwald     uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer();
30458de5610Smatthias.ringwald     va_list argptr;
30558de5610Smatthias.ringwald     va_start(argptr, identifier);
306816c0598Smatthias.ringwald     uint16_t len = l2cap_create_signaling_internal(acl_buffer, handle, cmd, identifier, argptr);
30758de5610Smatthias.ringwald     va_end(argptr);
3087b5fbe1fSmatthias.ringwald     // log_info("l2cap_send_signaling_packet con %u!\n", handle);
309816c0598Smatthias.ringwald     return hci_send_acl_packet(acl_buffer, len);
31058de5610Smatthias.ringwald }
31158de5610Smatthias.ringwald 
312b1d43497Smatthias.ringwald uint8_t *l2cap_get_outgoing_buffer(void){
313b1d43497Smatthias.ringwald     return hci_get_outgoing_acl_packet_buffer() + COMPLETE_L2CAP_HEADER; // 8 bytes
314b1d43497Smatthias.ringwald }
3156218e6f1Smatthias.ringwald 
316b1d43497Smatthias.ringwald int l2cap_send_prepared(uint16_t local_cid, uint16_t len){
317b1d43497Smatthias.ringwald 
318b1d43497Smatthias.ringwald     if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){
319e0abb8e7S[email protected]         log_info("l2cap_send_internal cid 0x%02x, cannot send\n", local_cid);
320808a48abSmatthias.ringwald         return BTSTACK_ACL_BUFFERS_FULL;
3218ea03fa5Smatthias.ringwald     }
3226218e6f1Smatthias.ringwald 
32358de5610Smatthias.ringwald     l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
324b1d43497Smatthias.ringwald     if (!channel) {
325e0abb8e7S[email protected]         log_error("l2cap_send_internal no channel for cid 0x%02x\n", local_cid);
326b1d43497Smatthias.ringwald         return -1;   // TODO: define error
3276218e6f1Smatthias.ringwald     }
3286218e6f1Smatthias.ringwald 
329b1d43497Smatthias.ringwald     if (channel->packets_granted == 0){
330e0abb8e7S[email protected]         log_error("l2cap_send_internal cid 0x%02x, no credits!\n", local_cid);
331b1d43497Smatthias.ringwald         return -1;  // TODO: define error
332b1d43497Smatthias.ringwald     }
333b1d43497Smatthias.ringwald 
334b1d43497Smatthias.ringwald     --channel->packets_granted;
335b1d43497Smatthias.ringwald 
336e0abb8e7S[email protected]     log_debug("l2cap_send_internal cid 0x%02x, handle %u, 1 credit used, credits left %u;\n",
337b1d43497Smatthias.ringwald                   local_cid, channel->handle, channel->packets_granted);
338b1d43497Smatthias.ringwald 
339b1d43497Smatthias.ringwald     uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer();
340b1d43497Smatthias.ringwald 
34158de5610Smatthias.ringwald     // 0 - Connection handle : PB=10 : BC=00
34258de5610Smatthias.ringwald     bt_store_16(acl_buffer, 0, channel->handle | (2 << 12) | (0 << 14));
34358de5610Smatthias.ringwald     // 2 - ACL length
34458de5610Smatthias.ringwald     bt_store_16(acl_buffer, 2,  len + 4);
34558de5610Smatthias.ringwald     // 4 - L2CAP packet length
34658de5610Smatthias.ringwald     bt_store_16(acl_buffer, 4,  len + 0);
34758de5610Smatthias.ringwald     // 6 - L2CAP channel DEST
34858de5610Smatthias.ringwald     bt_store_16(acl_buffer, 6, channel->remote_cid);
34958de5610Smatthias.ringwald     // send
350b1d43497Smatthias.ringwald     int err = hci_send_acl_packet(acl_buffer, len+8);
35191b99603Smatthias.ringwald 
35291b99603Smatthias.ringwald     l2cap_hand_out_credits();
35391b99603Smatthias.ringwald 
3546218e6f1Smatthias.ringwald     return err;
35558de5610Smatthias.ringwald }
35658de5610Smatthias.ringwald 
3572149f12eSmatthias.ringwald int l2cap_send_prepared_connectionless(uint16_t handle, uint16_t cid, uint16_t len){
3582149f12eSmatthias.ringwald 
3592149f12eSmatthias.ringwald     if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){
360e0abb8e7S[email protected]         log_info("l2cap_send_prepared_to_handle cid 0x%02x, cannot send\n", cid);
3612149f12eSmatthias.ringwald         return BTSTACK_ACL_BUFFERS_FULL;
3622149f12eSmatthias.ringwald     }
3632149f12eSmatthias.ringwald 
364e0abb8e7S[email protected]     log_debug("l2cap_send_prepared_to_handle cid 0x%02x, handle %u\n", cid, handle);
3652149f12eSmatthias.ringwald 
3662149f12eSmatthias.ringwald     uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer();
3672149f12eSmatthias.ringwald 
3682149f12eSmatthias.ringwald     // 0 - Connection handle : PB=10 : BC=00
3692149f12eSmatthias.ringwald     bt_store_16(acl_buffer, 0, handle | (2 << 12) | (0 << 14));
3702149f12eSmatthias.ringwald     // 2 - ACL length
3712149f12eSmatthias.ringwald     bt_store_16(acl_buffer, 2,  len + 4);
3722149f12eSmatthias.ringwald     // 4 - L2CAP packet length
3732149f12eSmatthias.ringwald     bt_store_16(acl_buffer, 4,  len + 0);
3742149f12eSmatthias.ringwald     // 6 - L2CAP channel DEST
3752149f12eSmatthias.ringwald     bt_store_16(acl_buffer, 6, cid);
3762149f12eSmatthias.ringwald     // send
3772149f12eSmatthias.ringwald     int err = hci_send_acl_packet(acl_buffer, len+8);
3782149f12eSmatthias.ringwald 
3792149f12eSmatthias.ringwald     l2cap_hand_out_credits();
3802149f12eSmatthias.ringwald 
3812149f12eSmatthias.ringwald     return err;
3822149f12eSmatthias.ringwald }
3832149f12eSmatthias.ringwald 
384b1d43497Smatthias.ringwald int l2cap_send_internal(uint16_t local_cid, uint8_t *data, uint16_t len){
385b1d43497Smatthias.ringwald 
386b1d43497Smatthias.ringwald     if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){
387e0abb8e7S[email protected]         log_info("l2cap_send_internal cid 0x%02x, cannot send\n", local_cid);
388b1d43497Smatthias.ringwald         return BTSTACK_ACL_BUFFERS_FULL;
389b1d43497Smatthias.ringwald     }
390b1d43497Smatthias.ringwald 
391b1d43497Smatthias.ringwald     uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer();
392b1d43497Smatthias.ringwald 
393b1d43497Smatthias.ringwald     memcpy(&acl_buffer[8], data, len);
394b1d43497Smatthias.ringwald 
395b1d43497Smatthias.ringwald     return l2cap_send_prepared(local_cid, len);
396b1d43497Smatthias.ringwald }
397b1d43497Smatthias.ringwald 
3982149f12eSmatthias.ringwald int l2cap_send_connectionless(uint16_t handle, uint16_t cid, uint8_t *data, uint16_t len){
3992149f12eSmatthias.ringwald 
4002149f12eSmatthias.ringwald     if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){
401e0abb8e7S[email protected]         log_info("l2cap_send_internal cid 0x%02x, cannot send\n", cid);
4022149f12eSmatthias.ringwald         return BTSTACK_ACL_BUFFERS_FULL;
4032149f12eSmatthias.ringwald     }
4042149f12eSmatthias.ringwald 
4052149f12eSmatthias.ringwald     uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer();
4062149f12eSmatthias.ringwald 
4072149f12eSmatthias.ringwald     memcpy(&acl_buffer[8], data, len);
4082149f12eSmatthias.ringwald 
4092149f12eSmatthias.ringwald     return l2cap_send_prepared_connectionless(handle, cid, len);
4102149f12eSmatthias.ringwald }
4112149f12eSmatthias.ringwald 
41228ca2b46S[email protected] static inline void channelStateVarSetFlag(l2cap_channel_t *channel, L2CAP_CHANNEL_STATE_VAR flag){
41328ca2b46S[email protected]     channel->state_var = (L2CAP_CHANNEL_STATE_VAR) (channel->state_var | flag);
41428ca2b46S[email protected] }
41528ca2b46S[email protected] 
41628ca2b46S[email protected] static inline void channelStateVarClearFlag(l2cap_channel_t *channel, L2CAP_CHANNEL_STATE_VAR flag){
41728ca2b46S[email protected]     channel->state_var = (L2CAP_CHANNEL_STATE_VAR) (channel->state_var & ~flag);
41828ca2b46S[email protected] }
41928ca2b46S[email protected] 
42028ca2b46S[email protected] 
421b1d43497Smatthias.ringwald 
4228158c421Smatthias.ringwald // MARK: L2CAP_RUN
4232cd0be45Smatthias.ringwald // process outstanding signaling tasks
4242cd0be45Smatthias.ringwald void l2cap_run(void){
4252b83fb7dSmatthias.ringwald 
4262b83fb7dSmatthias.ringwald     // check pending signaling responses
4272b83fb7dSmatthias.ringwald     while (signaling_responses_pending){
4282b83fb7dSmatthias.ringwald 
42902b22dc4Smatthias.ringwald         if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)) break;
4302b83fb7dSmatthias.ringwald 
4312b83fb7dSmatthias.ringwald         hci_con_handle_t handle = signaling_responses[0].handle;
4322b83fb7dSmatthias.ringwald         uint8_t sig_id = signaling_responses[0].sig_id;
4332b360848Smatthias.ringwald         uint16_t infoType = signaling_responses[0].data;    // INFORMATION_REQUEST
43463a7246aSmatthias.ringwald         uint16_t result   = signaling_responses[0].data;    // CONNECTION_REQUEST, COMMAND_REJECT
4352b83fb7dSmatthias.ringwald 
4362b83fb7dSmatthias.ringwald         switch (signaling_responses[0].code){
4372b360848Smatthias.ringwald             case CONNECTION_REQUEST:
4382b360848Smatthias.ringwald                 l2cap_send_signaling_packet(handle, CONNECTION_RESPONSE, sig_id, 0, 0, result, 0);
4392bd8b7e7S[email protected]                 // also disconnect if result is 0x0003 - security blocked
4402bd8b7e7S[email protected]                 hci_disconnect_security_block(handle);
4412b360848Smatthias.ringwald                 break;
4422b83fb7dSmatthias.ringwald             case ECHO_REQUEST:
4432b83fb7dSmatthias.ringwald                 l2cap_send_signaling_packet(handle, ECHO_RESPONSE, sig_id, 0, NULL);
4442b83fb7dSmatthias.ringwald                 break;
4452b83fb7dSmatthias.ringwald             case INFORMATION_REQUEST:
4463b0484b3S[email protected]                 switch (infoType){
4473b0484b3S[email protected]                     case 1: { // Connectionless MTU
4483b0484b3S[email protected]                         uint16_t connectionless_mtu = hci_max_acl_data_packet_length();
4493b0484b3S[email protected]                         l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 0, sizeof(connectionless_mtu), &connectionless_mtu);
4503b0484b3S[email protected]                         break;
4513b0484b3S[email protected]                     }
4523b0484b3S[email protected]                     case 2: { // Extended Features Supported
4533b0484b3S[email protected]                         // extended features request supported, only supporing fixed channel map
4543b0484b3S[email protected]                         uint32_t features = 0x80;
4553b0484b3S[email protected]                         l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 0, sizeof(features), &features);
4563b0484b3S[email protected]                         break;
4573b0484b3S[email protected]                     }
4583b0484b3S[email protected]                     case 3: { // Fixed Channels Supported
4593b0484b3S[email protected]                         uint8_t map[8];
4603b0484b3S[email protected]                         memset(map, 0, 8);
4613b0484b3S[email protected]                         map[0] = 0x01;  // L2CAP Signaling Channel
4623b0484b3S[email protected]                         l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 0, sizeof(map), &map);
4633b0484b3S[email protected]                         break;
4643b0484b3S[email protected]                     }
4653b0484b3S[email protected]                     default:
4662b83fb7dSmatthias.ringwald                         // all other types are not supported
4672b83fb7dSmatthias.ringwald                         l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 1, 0, NULL);
4683b0484b3S[email protected]                         break;
4692b83fb7dSmatthias.ringwald                 }
4702b83fb7dSmatthias.ringwald                 break;
47163a7246aSmatthias.ringwald             case COMMAND_REJECT:
47263a7246aSmatthias.ringwald                 l2cap_send_signaling_packet(handle, COMMAND_REJECT, sig_id, result);
47363a7246aSmatthias.ringwald                 break;
4742b83fb7dSmatthias.ringwald             default:
4752b83fb7dSmatthias.ringwald                 // should not happen
4762b83fb7dSmatthias.ringwald                 break;
4772b83fb7dSmatthias.ringwald         }
4782b83fb7dSmatthias.ringwald 
4792b83fb7dSmatthias.ringwald         // remove first item
4802b83fb7dSmatthias.ringwald         signaling_responses_pending--;
4812b83fb7dSmatthias.ringwald         int i;
4822b83fb7dSmatthias.ringwald         for (i=0; i < signaling_responses_pending; i++){
48376115249S[email protected]             memcpy(&signaling_responses[i], &signaling_responses[i+1], sizeof(l2cap_signaling_response_t));
4842b83fb7dSmatthias.ringwald         }
4852b83fb7dSmatthias.ringwald     }
4862b83fb7dSmatthias.ringwald 
487ae280e73Smatthias.ringwald     uint8_t  config_options[4];
4882cd0be45Smatthias.ringwald     linked_item_t *it;
489756102d3Smatthias.ringwald     linked_item_t *next;
490756102d3Smatthias.ringwald     for (it = (linked_item_t *) l2cap_channels; it ; it = next){
491756102d3Smatthias.ringwald         next = it->next;    // cache next item as current item might get freed
4922cd0be45Smatthias.ringwald 
49302b22dc4Smatthias.ringwald         if (!hci_can_send_packet_now(HCI_COMMAND_DATA_PACKET)) break;
49402b22dc4Smatthias.ringwald         if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)) break;
4952cd0be45Smatthias.ringwald 
4962cd0be45Smatthias.ringwald         l2cap_channel_t * channel = (l2cap_channel_t *) it;
4976e6710ebSmatthias.ringwald 
4987b5fbe1fSmatthias.ringwald         // log_info("l2cap_run: state %u, var 0x%02x\n", channel->state, channel->state_var);
4996e6710ebSmatthias.ringwald 
50056081214Smatthias.ringwald 
5012cd0be45Smatthias.ringwald         switch (channel->state){
5022cd0be45Smatthias.ringwald 
503df3354fcS[email protected]             case L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE:
504ad671560S[email protected]             case L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT:
505a00031e2S[email protected]                 if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND) {
506ad671560S[email protected]                     channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND);
507a00031e2S[email protected]                     l2cap_send_signaling_packet(channel->handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, 1, 0);
508ad671560S[email protected]                 }
509ad671560S[email protected]                 break;
510ad671560S[email protected] 
51102b22dc4Smatthias.ringwald             case L2CAP_STATE_WILL_SEND_CREATE_CONNECTION:
51264472d52Smatthias.ringwald                 // send connection request - set state first
51364472d52Smatthias.ringwald                 channel->state = L2CAP_STATE_WAIT_CONNECTION_COMPLETE;
51402b22dc4Smatthias.ringwald                 // BD_ADDR, Packet_Type, Page_Scan_Repetition_Mode, Reserved, Clock_Offset, Allow_Role_Switch
5158f8108aaSmatthias.ringwald                 hci_send_cmd(&hci_create_connection, channel->address, hci_usable_acl_packet_types(), 0, 0, 0, 1);
51602b22dc4Smatthias.ringwald                 break;
51702b22dc4Smatthias.ringwald 
518e7ff783cSmatthias.ringwald             case L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE:
5191eb2563eS[email protected]                 l2cap_send_signaling_packet(channel->handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, channel->reason, 0);
520e7ff783cSmatthias.ringwald                 // discard channel - l2cap_finialize_channel_close without sending l2cap close event
521756102d3Smatthias.ringwald                 linked_list_remove(&l2cap_channels, (linked_item_t *) channel); // -- remove from list
522d3a9df87Smatthias.ringwald                 btstack_memory_l2cap_channel_free(channel);
523e7ff783cSmatthias.ringwald                 break;
524e7ff783cSmatthias.ringwald 
525552d92a1Smatthias.ringwald             case L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_ACCEPT:
526fa8473a4Smatthias.ringwald                 channel->state = L2CAP_STATE_CONFIG;
52728ca2b46S[email protected]                 channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
5282a544672Smatthias.ringwald                 l2cap_send_signaling_packet(channel->handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, 0, 0);
529552d92a1Smatthias.ringwald                 break;
530552d92a1Smatthias.ringwald 
5316fdcc387Smatthias.ringwald             case L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST:
5326fdcc387Smatthias.ringwald                 // success, start l2cap handshake
533b1988dceSmatthias.ringwald                 channel->local_sig_id = l2cap_next_sig_id();
5346fdcc387Smatthias.ringwald                 channel->state = L2CAP_STATE_WAIT_CONNECT_RSP;
5352a544672Smatthias.ringwald                 l2cap_send_signaling_packet( channel->handle, CONNECTION_REQUEST, channel->local_sig_id, channel->psm, channel->local_cid);
5365932bd7cS[email protected]                 l2cap_start_rtx(channel);
5376fdcc387Smatthias.ringwald                 break;
5386fdcc387Smatthias.ringwald 
539fa8473a4Smatthias.ringwald             case L2CAP_STATE_CONFIG:
54073cf2b3dSmatthias.ringwald                 if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP){
54163a7246aSmatthias.ringwald                     uint16_t flags = 0;
54228ca2b46S[email protected]                     channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP);
54363a7246aSmatthias.ringwald                     if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT) {
54463a7246aSmatthias.ringwald                         flags = 1;
54563a7246aSmatthias.ringwald                     } else {
54628ca2b46S[email protected]                         channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SENT_CONF_RSP);
54763a7246aSmatthias.ringwald                     }
54863a7246aSmatthias.ringwald                     if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_INVALID){
54963a7246aSmatthias.ringwald                         l2cap_send_signaling_packet(channel->handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, L2CAP_CONF_RESULT_UNKNOWN_OPTIONS, 0, NULL);
55063a7246aSmatthias.ringwald                     } else if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU){
55163a7246aSmatthias.ringwald                         config_options[0] = 1; // MTU
55263a7246aSmatthias.ringwald                         config_options[1] = 2; // len param
55363a7246aSmatthias.ringwald                         bt_store_16( (uint8_t*)&config_options, 2, channel->remote_mtu);
55463a7246aSmatthias.ringwald                         l2cap_send_signaling_packet(channel->handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, 0, 4, &config_options);
55563a7246aSmatthias.ringwald                         channelStateVarClearFlag(channel,L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU);
55663a7246aSmatthias.ringwald                     } else {
55763a7246aSmatthias.ringwald                         l2cap_send_signaling_packet(channel->handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, 0, 0, NULL);
55863a7246aSmatthias.ringwald                     }
55963a7246aSmatthias.ringwald                     channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT);
560fa8473a4Smatthias.ringwald                 }
56173cf2b3dSmatthias.ringwald                 else if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ){
56228ca2b46S[email protected]                     channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
56328ca2b46S[email protected]                     channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SENT_CONF_REQ);
564b1988dceSmatthias.ringwald                     channel->local_sig_id = l2cap_next_sig_id();
565ae280e73Smatthias.ringwald                     config_options[0] = 1; // MTU
566ae280e73Smatthias.ringwald                     config_options[1] = 2; // len param
567ae280e73Smatthias.ringwald                     bt_store_16( (uint8_t*)&config_options, 2, channel->local_mtu);
568b1988dceSmatthias.ringwald                     l2cap_send_signaling_packet(channel->handle, CONFIGURE_REQUEST, channel->local_sig_id, channel->remote_cid, 0, 4, &config_options);
5695932bd7cS[email protected]                     l2cap_start_rtx(channel);
570fa8473a4Smatthias.ringwald                 }
571fa8473a4Smatthias.ringwald                 if (l2cap_channel_ready_for_open(channel)){
572552d92a1Smatthias.ringwald                     channel->state = L2CAP_STATE_OPEN;
573552d92a1Smatthias.ringwald                     l2cap_emit_channel_opened(channel, 0);  // success
574552d92a1Smatthias.ringwald                     l2cap_emit_credits(channel, 1);
575fa8473a4Smatthias.ringwald                 }
576552d92a1Smatthias.ringwald                 break;
577552d92a1Smatthias.ringwald 
578e7ff783cSmatthias.ringwald             case L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE:
579b1988dceSmatthias.ringwald                 l2cap_send_signaling_packet( channel->handle, DISCONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid);
5805932bd7cS[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 :)
581756102d3Smatthias.ringwald                 l2cap_finialize_channel_close(channel);  // -- remove from list
582e7ff783cSmatthias.ringwald                 break;
583e7ff783cSmatthias.ringwald 
584e7ff783cSmatthias.ringwald             case L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST:
585b1988dceSmatthias.ringwald                 channel->local_sig_id = l2cap_next_sig_id();
5862cd0be45Smatthias.ringwald                 channel->state = L2CAP_STATE_WAIT_DISCONNECT;
5872a544672Smatthias.ringwald                 l2cap_send_signaling_packet( channel->handle, DISCONNECTION_REQUEST, channel->local_sig_id, channel->remote_cid, channel->local_cid);
5882cd0be45Smatthias.ringwald                 break;
5892cd0be45Smatthias.ringwald             default:
5902cd0be45Smatthias.ringwald                 break;
5912cd0be45Smatthias.ringwald         }
5922cd0be45Smatthias.ringwald     }
5932cd0be45Smatthias.ringwald }
5942cd0be45Smatthias.ringwald 
5954aa9e837Smatthias.ringwald uint16_t l2cap_max_mtu(void){
596816c0598Smatthias.ringwald     return hci_max_acl_data_packet_length() - L2CAP_HEADER_SIZE;
597fa8c92f6Smatthias.ringwald }
598fa8c92f6Smatthias.ringwald 
5991e6aba47Smatthias.ringwald // open outgoing L2CAP channel
60015470d27Smatthias.ringwald void l2cap_create_channel_internal(void * connection, btstack_packet_handler_t packet_handler,
60115470d27Smatthias.ringwald                                    bd_addr_t address, uint16_t psm, uint16_t mtu){
6021e6aba47Smatthias.ringwald 
603e0abb8e7S[email protected]     log_info("L2CAP_CREATE_CHANNEL_MTU addr %s psm 0x%x mtu %u", bd_addr_to_str(address), psm, mtu);
604e0abb8e7S[email protected] 
6051e6aba47Smatthias.ringwald     // alloc structure
60628ca2b46S[email protected]     l2cap_channel_t * chan = (l2cap_channel_t*) btstack_memory_l2cap_channel_get();
6072b360848Smatthias.ringwald     if (!chan) {
6082b360848Smatthias.ringwald         // emit error event
6092b360848Smatthias.ringwald         l2cap_channel_t dummy_channel;
6102b360848Smatthias.ringwald         BD_ADDR_COPY(dummy_channel.address, address);
6112b360848Smatthias.ringwald         dummy_channel.psm = psm;
6122b360848Smatthias.ringwald         l2cap_emit_channel_opened(&dummy_channel, BTSTACK_MEMORY_ALLOC_FAILED);
6132b360848Smatthias.ringwald         return;
6142b360848Smatthias.ringwald     }
6151d279b20Smatthias.ringwald     // limit local mtu to max acl packet length
6162985cb84Smatthias.ringwald     if (mtu > l2cap_max_mtu()) {
6172985cb84Smatthias.ringwald         mtu = l2cap_max_mtu();
6189775e25bSmatthias.ringwald     }
6199775e25bSmatthias.ringwald 
6201e6aba47Smatthias.ringwald     // fill in
6211e6aba47Smatthias.ringwald     BD_ADDR_COPY(chan->address, address);
6221e6aba47Smatthias.ringwald     chan->psm = psm;
6231e6aba47Smatthias.ringwald     chan->handle = 0;
6241e6aba47Smatthias.ringwald     chan->connection = connection;
6256b296a27Smatthias.ringwald     chan->packet_handler = packet_handler;
6262784b77dSmatthias.ringwald     chan->remote_mtu = L2CAP_MINIMAL_MTU;
62715470d27Smatthias.ringwald     chan->local_mtu = mtu;
6286218e6f1Smatthias.ringwald     chan->packets_granted = 0;
6296218e6f1Smatthias.ringwald 
6301e6aba47Smatthias.ringwald     // set initial state
63102b22dc4Smatthias.ringwald     chan->state = L2CAP_STATE_WILL_SEND_CREATE_CONNECTION;
63273cf2b3dSmatthias.ringwald     chan->state_var = L2CAP_CHANNEL_STATE_VAR_NONE;
633b1988dceSmatthias.ringwald     chan->remote_sig_id = L2CAP_SIG_ID_INVALID;
634b1988dceSmatthias.ringwald     chan->local_sig_id = L2CAP_SIG_ID_INVALID;
6351e6aba47Smatthias.ringwald 
6361e6aba47Smatthias.ringwald     // add to connections list
6371e6aba47Smatthias.ringwald     linked_list_add(&l2cap_channels, (linked_item_t *) chan);
6381e6aba47Smatthias.ringwald 
63902b22dc4Smatthias.ringwald     l2cap_run();
64043625864Smatthias.ringwald }
64143625864Smatthias.ringwald 
642b35f641cSmatthias.ringwald void l2cap_disconnect_internal(uint16_t local_cid, uint8_t reason){
643e0abb8e7S[email protected]     log_info("L2CAP_DISCONNECT local_cid 0x%x reason 0x%x", local_cid, reason);
644b35f641cSmatthias.ringwald     // find channel for local_cid
645b35f641cSmatthias.ringwald     l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
646f62db1e3Smatthias.ringwald     if (channel) {
647e7ff783cSmatthias.ringwald         channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
648f62db1e3Smatthias.ringwald     }
6492cd0be45Smatthias.ringwald     // process
6502cd0be45Smatthias.ringwald     l2cap_run();
65143625864Smatthias.ringwald }
6521e6aba47Smatthias.ringwald 
653afde0c52Smatthias.ringwald static void l2cap_handle_connection_failed_for_addr(bd_addr_t address, uint8_t status){
65415ec09bbSmatthias.ringwald     linked_item_t *it = (linked_item_t *) &l2cap_channels;
65515ec09bbSmatthias.ringwald     while (it->next){
65615ec09bbSmatthias.ringwald         l2cap_channel_t * channel = (l2cap_channel_t *) it->next;
657b448a0e7Smatthias.ringwald         if ( ! BD_ADDR_CMP( channel->address, address) ){
65802b22dc4Smatthias.ringwald             if (channel->state == L2CAP_STATE_WAIT_CONNECTION_COMPLETE || channel->state == L2CAP_STATE_WILL_SEND_CREATE_CONNECTION) {
659afde0c52Smatthias.ringwald                 // failure, forward error code
660afde0c52Smatthias.ringwald                 l2cap_emit_channel_opened(channel, status);
661afde0c52Smatthias.ringwald                 // discard channel
66215ec09bbSmatthias.ringwald                 it->next = it->next->next;
663d3a9df87Smatthias.ringwald                 btstack_memory_l2cap_channel_free(channel);
664afde0c52Smatthias.ringwald             }
66515ec09bbSmatthias.ringwald         } else {
66615ec09bbSmatthias.ringwald             it = it->next;
667afde0c52Smatthias.ringwald         }
668afde0c52Smatthias.ringwald     }
669afde0c52Smatthias.ringwald }
670afde0c52Smatthias.ringwald 
671afde0c52Smatthias.ringwald static void l2cap_handle_connection_success_for_addr(bd_addr_t address, hci_con_handle_t handle){
672afde0c52Smatthias.ringwald     linked_item_t *it;
673afde0c52Smatthias.ringwald     for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){
674afde0c52Smatthias.ringwald         l2cap_channel_t * channel = (l2cap_channel_t *) it;
675afde0c52Smatthias.ringwald         if ( ! BD_ADDR_CMP( channel->address, address) ){
67602b22dc4Smatthias.ringwald             if (channel->state == L2CAP_STATE_WAIT_CONNECTION_COMPLETE || channel->state == L2CAP_STATE_WILL_SEND_CREATE_CONNECTION) {
677b448a0e7Smatthias.ringwald                 // success, start l2cap handshake
678afde0c52Smatthias.ringwald                 channel->handle = handle;
679b35f641cSmatthias.ringwald                 channel->local_cid = l2cap_next_local_cid();
680df3354fcS[email protected]                 // check remote SSP feature first
681df3354fcS[email protected]                 channel->state = L2CAP_STATE_WAIT_REMOTE_SUPPORTED_FEATURES;
682afde0c52Smatthias.ringwald             }
683afde0c52Smatthias.ringwald         }
684afde0c52Smatthias.ringwald     }
6856fdcc387Smatthias.ringwald     // process
6866fdcc387Smatthias.ringwald     l2cap_run();
687afde0c52Smatthias.ringwald }
688b448a0e7Smatthias.ringwald 
689afde0c52Smatthias.ringwald void l2cap_event_handler( uint8_t *packet, uint16_t size ){
690afde0c52Smatthias.ringwald 
691afde0c52Smatthias.ringwald     bd_addr_t address;
692afde0c52Smatthias.ringwald     hci_con_handle_t handle;
6936e6710ebSmatthias.ringwald     l2cap_channel_t * channel;
69436944dffSmatthias.ringwald     linked_item_t *it;
6952d00edd4Smatthias.ringwald     int hci_con_used;
696afde0c52Smatthias.ringwald 
697afde0c52Smatthias.ringwald     switch(packet[0]){
698afde0c52Smatthias.ringwald 
699afde0c52Smatthias.ringwald         // handle connection complete events
700afde0c52Smatthias.ringwald         case HCI_EVENT_CONNECTION_COMPLETE:
701afde0c52Smatthias.ringwald             bt_flip_addr(address, &packet[5]);
702afde0c52Smatthias.ringwald             if (packet[2] == 0){
703afde0c52Smatthias.ringwald                 handle = READ_BT_16(packet, 3);
704afde0c52Smatthias.ringwald                 l2cap_handle_connection_success_for_addr(address, handle);
705afde0c52Smatthias.ringwald             } else {
706afde0c52Smatthias.ringwald                 l2cap_handle_connection_failed_for_addr(address, packet[2]);
707afde0c52Smatthias.ringwald             }
708afde0c52Smatthias.ringwald             break;
709afde0c52Smatthias.ringwald 
710afde0c52Smatthias.ringwald         // handle successful create connection cancel command
711afde0c52Smatthias.ringwald         case HCI_EVENT_COMMAND_COMPLETE:
712afde0c52Smatthias.ringwald             if ( COMMAND_COMPLETE_EVENT(packet, hci_create_connection_cancel) ) {
713afde0c52Smatthias.ringwald                 if (packet[5] == 0){
714afde0c52Smatthias.ringwald                     bt_flip_addr(address, &packet[6]);
715afde0c52Smatthias.ringwald                     // CONNECTION TERMINATED BY LOCAL HOST (0X16)
716afde0c52Smatthias.ringwald                     l2cap_handle_connection_failed_for_addr(address, 0x16);
71703cfbabcSmatthias.ringwald                 }
7181e6aba47Smatthias.ringwald             }
71939d59809Smatthias.ringwald             l2cap_run();    // try sending signaling packets first
72039d59809Smatthias.ringwald             break;
72139d59809Smatthias.ringwald 
72239d59809Smatthias.ringwald         case HCI_EVENT_COMMAND_STATUS:
72339d59809Smatthias.ringwald             l2cap_run();    // try sending signaling packets first
724afde0c52Smatthias.ringwald             break;
72527a923d0Smatthias.ringwald 
7261e6aba47Smatthias.ringwald         // handle disconnection complete events
727afde0c52Smatthias.ringwald         case HCI_EVENT_DISCONNECTION_COMPLETE:
72827a923d0Smatthias.ringwald             // send l2cap disconnect events for all channels on this handle
729afde0c52Smatthias.ringwald             handle = READ_BT_16(packet, 3);
73015ec09bbSmatthias.ringwald             it = (linked_item_t *) &l2cap_channels;
73115ec09bbSmatthias.ringwald             while (it->next){
73239ce35a7Smatthias.ringwald                 l2cap_channel_t * channel = (l2cap_channel_t *) it->next;
73327a923d0Smatthias.ringwald                 if ( channel->handle == handle ){
73415ec09bbSmatthias.ringwald                     // update prev item before free'ing next element - don't call l2cap_finalize_channel_close
7352060cf14Smatthias.ringwald                     it->next = it->next->next;
73615ec09bbSmatthias.ringwald                     l2cap_emit_channel_closed(channel);
737d3a9df87Smatthias.ringwald                     btstack_memory_l2cap_channel_free(channel);
73815ec09bbSmatthias.ringwald                 } else {
73915ec09bbSmatthias.ringwald                     it = it->next;
74027a923d0Smatthias.ringwald                 }
74127a923d0Smatthias.ringwald             }
742afde0c52Smatthias.ringwald             break;
743fcadd0caSmatthias.ringwald 
7446218e6f1Smatthias.ringwald         case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS:
74502b22dc4Smatthias.ringwald             l2cap_run();    // try sending signaling packets first
7468d371091Smatthias.ringwald             l2cap_hand_out_credits();
7476218e6f1Smatthias.ringwald             break;
7486218e6f1Smatthias.ringwald 
749ee091cf1Smatthias.ringwald         // HCI Connection Timeouts
750afde0c52Smatthias.ringwald         case L2CAP_EVENT_TIMEOUT_CHECK:
75136944dffSmatthias.ringwald             handle = READ_BT_16(packet, 2);
75280ca58a0Smatthias.ringwald             if (hci_authentication_active_for_handle(handle)) break;
7532d00edd4Smatthias.ringwald             hci_con_used = 0;
754ee091cf1Smatthias.ringwald             for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){
755ee091cf1Smatthias.ringwald                 channel = (l2cap_channel_t *) it;
756ee091cf1Smatthias.ringwald                 if (channel->handle == handle) {
7572d00edd4Smatthias.ringwald                     hci_con_used = 1;
758ee091cf1Smatthias.ringwald                 }
759ee091cf1Smatthias.ringwald             }
7602d00edd4Smatthias.ringwald             if (hci_con_used) break;
76132ab9390Smatthias.ringwald             if (!hci_can_send_packet_now(HCI_COMMAND_DATA_PACKET)) break;
7629edc8742Smatthias.ringwald             hci_send_cmd(&hci_disconnect, handle, 0x13); // remote closed connection
763afde0c52Smatthias.ringwald             break;
764ee091cf1Smatthias.ringwald 
7656e6710ebSmatthias.ringwald         case DAEMON_EVENT_HCI_PACKET_SENT:
7666e6710ebSmatthias.ringwald             for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){
7676e6710ebSmatthias.ringwald                 channel = (l2cap_channel_t *) it;
7686e6710ebSmatthias.ringwald                 if (channel->packet_handler) {
7696e6710ebSmatthias.ringwald                     (* (channel->packet_handler))(HCI_EVENT_PACKET, channel->local_cid, packet, size);
7706e6710ebSmatthias.ringwald                 }
7716e6710ebSmatthias.ringwald             }
7725652b5ffS[email protected]             if (attribute_protocol_packet_handler) {
7735652b5ffS[email protected]                 (*attribute_protocol_packet_handler)(HCI_EVENT_PACKET, 0, packet, size);
7745652b5ffS[email protected]             }
7755652b5ffS[email protected]             if (security_protocol_packet_handler) {
776133efcfdSmatthias.ringwald                 (*security_protocol_packet_handler)(HCI_EVENT_PACKET, 0, packet, size);
7775652b5ffS[email protected]             }
7786e6710ebSmatthias.ringwald             break;
7796e6710ebSmatthias.ringwald 
780df3354fcS[email protected]         case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE:
781df3354fcS[email protected]             handle = READ_BT_16(packet, 3);
782df3354fcS[email protected]             for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){
783df3354fcS[email protected]                 channel = (l2cap_channel_t *) it;
784df3354fcS[email protected]                 if (channel->handle != handle) continue;
785df3354fcS[email protected]                 if (channel->state  != L2CAP_STATE_WAIT_REMOTE_SUPPORTED_FEATURES) continue;
786df3354fcS[email protected]                 // we have been waiting for remote supported features, if both support SSP,
787df3354fcS[email protected]                 if (hci_ssp_supported_on_both_sides(channel->handle) && !l2cap_security_level_0_allowed_for_PSM(channel->psm)){
788df3354fcS[email protected]                     // request security level 2
789df3354fcS[email protected]                     gap_request_security_level(channel->handle, LEVEL_2);
790df3354fcS[email protected]                     channel->state = L2CAP_STATE_WAIT_OUTGOING_SECURITY_LEVEL_UPDATE;
791df3354fcS[email protected]                     break;
792df3354fcS[email protected]                 }
793df3354fcS[email protected]                 // fine, go ahead
794df3354fcS[email protected]                 channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST;
795df3354fcS[email protected]                 break;
796df3354fcS[email protected]             }
797df3354fcS[email protected] 
798a00031e2S[email protected]         case GAP_SECURITY_LEVEL:
799a00031e2S[email protected]             handle = READ_BT_16(packet, 2);
800df3354fcS[email protected]             log_info("GAP_SECURITY_LEVEL");
801f85a9399S[email protected]             for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){
802f85a9399S[email protected]                 channel = (l2cap_channel_t *) it;
8031eb2563eS[email protected]                 gap_security_level_t actual_level = packet[4];
804f85a9399S[email protected]                 if (channel->handle != handle) continue;
805df3354fcS[email protected]                 switch (channel->state){
806df3354fcS[email protected]                     case L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE:
807df3354fcS[email protected]                         log_info("gap incoming");
8081eb2563eS[email protected]                         if (actual_level >= channel->required_security_level){
809f85a9399S[email protected]                             channel->state = L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT;
810f85a9399S[email protected]                             l2cap_emit_connection_request(channel);
8111eb2563eS[email protected]                         } else {
8121eb2563eS[email protected]                             channel->reason = 0x03; // security block
8131eb2563eS[email protected]                             channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE;
8141eb2563eS[email protected]                         }
815df3354fcS[email protected]                         break;
816df3354fcS[email protected] 
817df3354fcS[email protected]                     case L2CAP_STATE_WAIT_OUTGOING_SECURITY_LEVEL_UPDATE:
818df3354fcS[email protected]                         log_info("gap outgoing");
819df3354fcS[email protected]                         if (actual_level >= channel->required_security_level){
820df3354fcS[email protected]                             channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST;
821df3354fcS[email protected]                         } else {
822df3354fcS[email protected]                             // disconnnect, authentication not good enough
823df3354fcS[email protected]                             hci_disconnect_security_block(handle);
824df3354fcS[email protected]                         }
825df3354fcS[email protected]                         break;
826df3354fcS[email protected] 
827df3354fcS[email protected]                     default:
828df3354fcS[email protected]                         break;
829df3354fcS[email protected]                 }
830f85a9399S[email protected]             }
831f85a9399S[email protected]             break;
832f85a9399S[email protected] 
833afde0c52Smatthias.ringwald         default:
834afde0c52Smatthias.ringwald             break;
835afde0c52Smatthias.ringwald     }
836afde0c52Smatthias.ringwald 
837afde0c52Smatthias.ringwald     // pass on
838b502e1b0Smatthias.ringwald     (*packet_handler)(NULL, HCI_EVENT_PACKET, 0, packet, size);
8391e6aba47Smatthias.ringwald }
8401e6aba47Smatthias.ringwald 
841afde0c52Smatthias.ringwald static void l2cap_handle_disconnect_request(l2cap_channel_t *channel, uint16_t identifier){
842b1988dceSmatthias.ringwald     channel->remote_sig_id = identifier;
843e7ff783cSmatthias.ringwald     channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE;
844e7ff783cSmatthias.ringwald     l2cap_run();
84584836b65Smatthias.ringwald }
84684836b65Smatthias.ringwald 
8472b360848Smatthias.ringwald static void l2cap_register_signaling_response(hci_con_handle_t handle, uint8_t code, uint8_t sig_id, uint16_t data){
8484cf56b4aSmatthias.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."
8492b360848Smatthias.ringwald     if (signaling_responses_pending < NR_PENDING_SIGNALING_RESPONSES) {
8502b360848Smatthias.ringwald         signaling_responses[signaling_responses_pending].handle = handle;
8512b360848Smatthias.ringwald         signaling_responses[signaling_responses_pending].code = code;
8522b360848Smatthias.ringwald         signaling_responses[signaling_responses_pending].sig_id = sig_id;
8532b360848Smatthias.ringwald         signaling_responses[signaling_responses_pending].data = data;
8542b360848Smatthias.ringwald         signaling_responses_pending++;
8552b360848Smatthias.ringwald         l2cap_run();
8562b360848Smatthias.ringwald     }
8572b360848Smatthias.ringwald }
8582b360848Smatthias.ringwald 
859b35f641cSmatthias.ringwald static void l2cap_handle_connection_request(hci_con_handle_t handle, uint8_t sig_id, uint16_t psm, uint16_t source_cid){
860645658c9Smatthias.ringwald 
861e0abb8e7S[email protected]     // log_info("l2cap_handle_connection_request for handle %u, psm %u cid 0x%02x\n", handle, psm, source_cid);
862645658c9Smatthias.ringwald     l2cap_service_t *service = l2cap_get_service(psm);
863645658c9Smatthias.ringwald     if (!service) {
864645658c9Smatthias.ringwald         // 0x0002 PSM not supported
8652b360848Smatthias.ringwald         l2cap_register_signaling_response(handle, CONNECTION_REQUEST, sig_id, 0x0002);
866645658c9Smatthias.ringwald         return;
867645658c9Smatthias.ringwald     }
868645658c9Smatthias.ringwald 
8695061f3afS[email protected]     hci_connection_t * hci_connection = hci_connection_for_handle( handle );
870645658c9Smatthias.ringwald     if (!hci_connection) {
8712b360848Smatthias.ringwald         //
8727d67539fSmatthias.ringwald         log_error("no hci_connection for handle %u\n", handle);
873645658c9Smatthias.ringwald         return;
874645658c9Smatthias.ringwald     }
8752bd8b7e7S[email protected] 
8762bd8b7e7S[email protected]     // reject connection (0x03 security block) and disconnect if both have SSP, connection is not encrypted and PSM != SDP
877df3354fcS[email protected]     if (   l2cap_security_level_0_allowed_for_PSM(psm)
878df3354fcS[email protected]         && hci_ssp_supported_on_both_sides(handle)
879df3354fcS[email protected]         && gap_security_level(handle) == LEVEL_0){
8802bd8b7e7S[email protected] 
8812bd8b7e7S[email protected]         // 0x0003 Security Block
8822bd8b7e7S[email protected]         l2cap_register_signaling_response(handle, CONNECTION_REQUEST, sig_id, 0x0003);
8832bd8b7e7S[email protected]         return;
8842bd8b7e7S[email protected]     }
8852bd8b7e7S[email protected] 
8862bd8b7e7S[email protected] 
887645658c9Smatthias.ringwald     // alloc structure
8887b5fbe1fSmatthias.ringwald     // log_info("l2cap_handle_connection_request register channel\n");
88928ca2b46S[email protected]     l2cap_channel_t * channel = (l2cap_channel_t*) btstack_memory_l2cap_channel_get();
8902b360848Smatthias.ringwald     if (!channel){
8912b360848Smatthias.ringwald         // 0x0004 No resources available
8922b360848Smatthias.ringwald         l2cap_register_signaling_response(handle, CONNECTION_REQUEST, sig_id, 0x0004);
8932b360848Smatthias.ringwald         return;
8942b360848Smatthias.ringwald     }
895645658c9Smatthias.ringwald 
896645658c9Smatthias.ringwald     // fill in
897169f8b28Smatthias.ringwald     BD_ADDR_COPY(channel->address, hci_connection->address);
898169f8b28Smatthias.ringwald     channel->psm = psm;
899169f8b28Smatthias.ringwald     channel->handle = handle;
900169f8b28Smatthias.ringwald     channel->connection = service->connection;
901f8dd2f72Smatthias.ringwald     channel->packet_handler = service->packet_handler;
902b35f641cSmatthias.ringwald     channel->local_cid  = l2cap_next_local_cid();
903b35f641cSmatthias.ringwald     channel->remote_cid = source_cid;
904fa2b2627Smatthias.ringwald     channel->local_mtu  = service->mtu;
9050a18a8e9Smatthias.ringwald     channel->remote_mtu = L2CAP_DEFAULT_MTU;
906761b0451Smatthias.ringwald     channel->packets_granted = 0;
907b1988dceSmatthias.ringwald     channel->remote_sig_id = sig_id;
908df3354fcS[email protected]     channel->required_security_level = service->required_security_level;
909645658c9Smatthias.ringwald 
9101d279b20Smatthias.ringwald     // limit local mtu to max acl packet length
9112985cb84Smatthias.ringwald     if (channel->local_mtu > l2cap_max_mtu()) {
9122985cb84Smatthias.ringwald         channel->local_mtu = l2cap_max_mtu();
9139775e25bSmatthias.ringwald     }
9149775e25bSmatthias.ringwald 
915645658c9Smatthias.ringwald     // set initial state
916df3354fcS[email protected]     channel->state =     L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE;
917ad671560S[email protected]     channel->state_var = L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND;
918e405ae81Smatthias.ringwald 
919645658c9Smatthias.ringwald     // add to connections list
920169f8b28Smatthias.ringwald     linked_list_add(&l2cap_channels, (linked_item_t *) channel);
921645658c9Smatthias.ringwald 
922f85a9399S[email protected]     // assert security requirements
9231eb2563eS[email protected]     gap_request_security_level(handle, channel->required_security_level);
924e405ae81Smatthias.ringwald }
925645658c9Smatthias.ringwald 
926b35f641cSmatthias.ringwald void l2cap_accept_connection_internal(uint16_t local_cid){
927e0abb8e7S[email protected]     log_info("L2CAP_ACCEPT_CONNECTION local_cid 0x%x", local_cid);
928b35f641cSmatthias.ringwald     l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
929e405ae81Smatthias.ringwald     if (!channel) {
9307d67539fSmatthias.ringwald         log_error("l2cap_accept_connection_internal called but local_cid 0x%x not found", local_cid);
931e405ae81Smatthias.ringwald         return;
932e405ae81Smatthias.ringwald     }
933e405ae81Smatthias.ringwald 
934552d92a1Smatthias.ringwald     channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_ACCEPT;
935e405ae81Smatthias.ringwald 
936552d92a1Smatthias.ringwald     // process
937552d92a1Smatthias.ringwald     l2cap_run();
938e405ae81Smatthias.ringwald }
939645658c9Smatthias.ringwald 
940b35f641cSmatthias.ringwald void l2cap_decline_connection_internal(uint16_t local_cid, uint8_t reason){
941e0abb8e7S[email protected]     log_info("L2CAP_DECLINE_CONNECTION local_cid 0x%x, reason %x", local_cid, reason);
942b35f641cSmatthias.ringwald     l2cap_channel_t * channel = l2cap_get_channel_for_local_cid( local_cid);
943e405ae81Smatthias.ringwald     if (!channel) {
9447d67539fSmatthias.ringwald         log_error( "l2cap_decline_connection_internal called but local_cid 0x%x not found", local_cid);
945e405ae81Smatthias.ringwald         return;
946e405ae81Smatthias.ringwald     }
947e7ff783cSmatthias.ringwald     channel->state  = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE;
948e7ff783cSmatthias.ringwald     channel->reason = reason;
949e7ff783cSmatthias.ringwald     l2cap_run();
950645658c9Smatthias.ringwald }
951645658c9Smatthias.ringwald 
9522784b77dSmatthias.ringwald void l2cap_signaling_handle_configure_request(l2cap_channel_t *channel, uint8_t *command){
953b1988dceSmatthias.ringwald 
954b1988dceSmatthias.ringwald     channel->remote_sig_id = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET];
955b1988dceSmatthias.ringwald 
95663a7246aSmatthias.ringwald     uint16_t flags = READ_BT_16(command, 6);
95763a7246aSmatthias.ringwald     if (flags & 1) {
95863a7246aSmatthias.ringwald         channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT);
95963a7246aSmatthias.ringwald     }
96063a7246aSmatthias.ringwald 
9612784b77dSmatthias.ringwald     // accept the other's configuration options
9623de7c0caSmatthias.ringwald     uint16_t end_pos = 4 + READ_BT_16(command, L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET);
9633de7c0caSmatthias.ringwald     uint16_t pos     = 8;
9643de7c0caSmatthias.ringwald     while (pos < end_pos){
96563a7246aSmatthias.ringwald         uint8_t option_hint = command[pos] >> 7;
96663a7246aSmatthias.ringwald         uint8_t option_type = command[pos] & 0x7f;
96763a7246aSmatthias.ringwald         log_info("l2cap cid %u, hint %u, type %u", channel->local_cid, option_hint, option_type);
96863a7246aSmatthias.ringwald         pos++;
9691dc511deSmatthias.ringwald         uint8_t length = command[pos++];
9701dc511deSmatthias.ringwald         // MTU { type(8): 1, len(8):2, MTU(16) }
97163a7246aSmatthias.ringwald         if (option_type == 1 && length == 2){
9721dc511deSmatthias.ringwald             channel->remote_mtu = READ_BT_16(command, pos);
973e0abb8e7S[email protected]             // log_info("l2cap cid 0x%02x, remote mtu %u\n", channel->local_cid, channel->remote_mtu);
97463a7246aSmatthias.ringwald             channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU);
97563a7246aSmatthias.ringwald         }
9760fe7a9d0S[email protected]         // Flush timeout { type(8):2, len(8): 2, Flush Timeout(16)}
9770fe7a9d0S[email protected]         if (option_type == 2 && length == 2){
9780fe7a9d0S[email protected]             channel->flush_timeout = READ_BT_16(command, pos);
9790fe7a9d0S[email protected]         }
98063a7246aSmatthias.ringwald         // check for unknown options
98163a7246aSmatthias.ringwald         if (option_hint == 0 && (option_type == 0 || option_type >= 0x07)){
982c177a91cS[email protected]             log_info("l2cap cid %u, unknown options", channel->local_cid);
98363a7246aSmatthias.ringwald             channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_INVALID);
9841dc511deSmatthias.ringwald         }
9851dc511deSmatthias.ringwald         pos += length;
9861dc511deSmatthias.ringwald     }
9872784b77dSmatthias.ringwald }
9882784b77dSmatthias.ringwald 
989fa8473a4Smatthias.ringwald static int l2cap_channel_ready_for_open(l2cap_channel_t *channel){
9907b5fbe1fSmatthias.ringwald     // log_info("l2cap_channel_ready_for_open 0x%02x\n", channel->state_var);
99173cf2b3dSmatthias.ringwald     if ((channel->state_var & L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_RSP) == 0) return 0;
99273cf2b3dSmatthias.ringwald     if ((channel->state_var & L2CAP_CHANNEL_STATE_VAR_SENT_CONF_RSP) == 0) return 0;
993fa8473a4Smatthias.ringwald     return 1;
994fa8473a4Smatthias.ringwald }
995fa8473a4Smatthias.ringwald 
996fa8473a4Smatthias.ringwald 
99700d93d79Smatthias.ringwald void l2cap_signaling_handler_channel(l2cap_channel_t *channel, uint8_t *command){
9981e6aba47Smatthias.ringwald 
99900d93d79Smatthias.ringwald     uint8_t  code       = command[L2CAP_SIGNALING_COMMAND_CODE_OFFSET];
100000d93d79Smatthias.ringwald     uint8_t  identifier = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET];
100138e5900eSmatthias.ringwald     uint16_t result = 0;
10021e6aba47Smatthias.ringwald 
10035842b6d9Smatthias.ringwald     log_info("L2CAP signaling handler code %u, state %u\n", code, channel->state);
1004b35f641cSmatthias.ringwald 
10059a011532Smatthias.ringwald     // handle DISCONNECT REQUESTS seperately
10069a011532Smatthias.ringwald     if (code == DISCONNECTION_REQUEST){
10079a011532Smatthias.ringwald         switch (channel->state){
1008fa8473a4Smatthias.ringwald             case L2CAP_STATE_CONFIG:
10099a011532Smatthias.ringwald             case L2CAP_STATE_OPEN:
10102b83fb7dSmatthias.ringwald             case L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST:
10119a011532Smatthias.ringwald             case L2CAP_STATE_WAIT_DISCONNECT:
10129a011532Smatthias.ringwald                 l2cap_handle_disconnect_request(channel, identifier);
10139a011532Smatthias.ringwald                 break;
10149a011532Smatthias.ringwald 
10159a011532Smatthias.ringwald             default:
10169a011532Smatthias.ringwald                 // ignore in other states
10179a011532Smatthias.ringwald                 break;
10189a011532Smatthias.ringwald         }
10199a011532Smatthias.ringwald         return;
10209a011532Smatthias.ringwald     }
10219a011532Smatthias.ringwald 
102256081214Smatthias.ringwald     // @STATEMACHINE(l2cap)
10231e6aba47Smatthias.ringwald     switch (channel->state) {
10241e6aba47Smatthias.ringwald 
10251e6aba47Smatthias.ringwald         case L2CAP_STATE_WAIT_CONNECT_RSP:
10261e6aba47Smatthias.ringwald             switch (code){
10271e6aba47Smatthias.ringwald                 case CONNECTION_RESPONSE:
10285932bd7cS[email protected]                     l2cap_stop_rtx(channel);
102900d93d79Smatthias.ringwald                     result = READ_BT_16 (command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+4);
103038e5900eSmatthias.ringwald                     switch (result) {
103138e5900eSmatthias.ringwald                         case 0:
1032169f8b28Smatthias.ringwald                             // successful connection
103300d93d79Smatthias.ringwald                             channel->remote_cid = READ_BT_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
1034fa8473a4Smatthias.ringwald                             channel->state = L2CAP_STATE_CONFIG;
103528ca2b46S[email protected]                             channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
103638e5900eSmatthias.ringwald                             break;
103738e5900eSmatthias.ringwald                         case 1:
10385932bd7cS[email protected]                             // connection pending. get some coffee, but start the ERTX
10395932bd7cS[email protected]                             l2cap_start_ertx(channel);
104038e5900eSmatthias.ringwald                             break;
104138e5900eSmatthias.ringwald                         default:
1042eb920dbeSmatthias.ringwald                             // channel closed
1043eb920dbeSmatthias.ringwald                             channel->state = L2CAP_STATE_CLOSED;
1044f32b992eSmatthias.ringwald                             // map l2cap connection response result to BTstack status enumeration
104538e5900eSmatthias.ringwald                             l2cap_emit_channel_opened(channel, L2CAP_CONNECTION_RESPONSE_RESULT_SUCCESSFUL + result);
1046eb920dbeSmatthias.ringwald 
1047eb920dbeSmatthias.ringwald                             // drop link key if security block
1048eb920dbeSmatthias.ringwald                             if (L2CAP_CONNECTION_RESPONSE_RESULT_SUCCESSFUL + result == L2CAP_CONNECTION_RESPONSE_RESULT_REFUSED_SECURITY){
1049eb920dbeSmatthias.ringwald                                 hci_drop_link_key_for_bd_addr(&channel->address);
1050eb920dbeSmatthias.ringwald                             }
1051eb920dbeSmatthias.ringwald 
1052eb920dbeSmatthias.ringwald                             // discard channel
1053eb920dbeSmatthias.ringwald                             linked_list_remove(&l2cap_channels, (linked_item_t *) channel);
1054d3a9df87Smatthias.ringwald                             btstack_memory_l2cap_channel_free(channel);
105538e5900eSmatthias.ringwald                             break;
10561e6aba47Smatthias.ringwald                     }
10571e6aba47Smatthias.ringwald                     break;
105838e5900eSmatthias.ringwald 
105938e5900eSmatthias.ringwald                 default:
10601e6aba47Smatthias.ringwald                     //@TODO: implement other signaling packets
106138e5900eSmatthias.ringwald                     break;
10621e6aba47Smatthias.ringwald             }
10631e6aba47Smatthias.ringwald             break;
10641e6aba47Smatthias.ringwald 
1065fa8473a4Smatthias.ringwald         case L2CAP_STATE_CONFIG:
1066fe9d8984S[email protected]             result = READ_BT_16 (command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+4);
1067ae280e73Smatthias.ringwald             switch (code) {
1068ae280e73Smatthias.ringwald                 case CONFIGURE_REQUEST:
106928ca2b46S[email protected]                     channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP);
1070ae280e73Smatthias.ringwald                     l2cap_signaling_handle_configure_request(channel, command);
107163a7246aSmatthias.ringwald                     if (!(channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT)){
107263a7246aSmatthias.ringwald                         // only done if continuation not set
107363a7246aSmatthias.ringwald                         channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_REQ);
107463a7246aSmatthias.ringwald                     }
1075ae280e73Smatthias.ringwald                     break;
10761e6aba47Smatthias.ringwald                 case CONFIGURE_RESPONSE:
10775932bd7cS[email protected]                     l2cap_stop_rtx(channel);
10785932bd7cS[email protected]                     switch (result){
10795932bd7cS[email protected]                         case 0: // success
10805932bd7cS[email protected]                             channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_RSP);
10815932bd7cS[email protected]                             break;
10825932bd7cS[email protected]                         case 4: // pending
10835932bd7cS[email protected]                             l2cap_start_ertx(channel);
10845932bd7cS[email protected]                             break;
10855932bd7cS[email protected]                         default:
1086fe9d8984S[email protected]                             // retry on negative result
1087fe9d8984S[email protected]                             channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
1088fe9d8984S[email protected]                             break;
1089fe9d8984S[email protected]                     }
10905a67bd4aSmatthias.ringwald                     break;
10915a67bd4aSmatthias.ringwald                 default:
10925a67bd4aSmatthias.ringwald                     break;
10931e6aba47Smatthias.ringwald             }
1094fa8473a4Smatthias.ringwald             if (l2cap_channel_ready_for_open(channel)){
1095fa8473a4Smatthias.ringwald                 // for open:
10965a67bd4aSmatthias.ringwald                 channel->state = L2CAP_STATE_OPEN;
1097fa8473a4Smatthias.ringwald                 l2cap_emit_channel_opened(channel, 0);
10986218e6f1Smatthias.ringwald                 l2cap_emit_credits(channel, 1);
1099c8e4258aSmatthias.ringwald             }
1100c8e4258aSmatthias.ringwald             break;
1101f62db1e3Smatthias.ringwald 
1102f62db1e3Smatthias.ringwald         case L2CAP_STATE_WAIT_DISCONNECT:
1103f62db1e3Smatthias.ringwald             switch (code) {
1104f62db1e3Smatthias.ringwald                 case DISCONNECTION_RESPONSE:
110527a923d0Smatthias.ringwald                     l2cap_finialize_channel_close(channel);
110627a923d0Smatthias.ringwald                     break;
11075a67bd4aSmatthias.ringwald                 default:
11085a67bd4aSmatthias.ringwald                     //@TODO: implement other signaling packets
11095a67bd4aSmatthias.ringwald                     break;
111027a923d0Smatthias.ringwald             }
111127a923d0Smatthias.ringwald             break;
111284836b65Smatthias.ringwald 
111384836b65Smatthias.ringwald         case L2CAP_STATE_CLOSED:
111484836b65Smatthias.ringwald             // @TODO handle incoming requests
111584836b65Smatthias.ringwald             break;
111684836b65Smatthias.ringwald 
111784836b65Smatthias.ringwald         case L2CAP_STATE_OPEN:
111884836b65Smatthias.ringwald             //@TODO: implement other signaling packets, e.g. re-configure
111984836b65Smatthias.ringwald             break;
112010642e45Smatthias.ringwald         default:
112110642e45Smatthias.ringwald             break;
112227a923d0Smatthias.ringwald     }
11237b5fbe1fSmatthias.ringwald     // log_info("new state %u\n", channel->state);
112427a923d0Smatthias.ringwald }
112527a923d0Smatthias.ringwald 
112600d93d79Smatthias.ringwald 
112700d93d79Smatthias.ringwald void l2cap_signaling_handler_dispatch( hci_con_handle_t handle, uint8_t * command){
112800d93d79Smatthias.ringwald 
112900d93d79Smatthias.ringwald     // get code, signalind identifier and command len
113000d93d79Smatthias.ringwald     uint8_t code   = command[L2CAP_SIGNALING_COMMAND_CODE_OFFSET];
113100d93d79Smatthias.ringwald     uint8_t sig_id = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET];
113200d93d79Smatthias.ringwald 
113300d93d79Smatthias.ringwald     // not for a particular channel, and not CONNECTION_REQUEST, ECHO_[REQUEST|RESPONSE], INFORMATION_REQUEST
113400d93d79Smatthias.ringwald     if (code < 1 || code == ECHO_RESPONSE || code > INFORMATION_REQUEST){
113563a7246aSmatthias.ringwald         l2cap_register_signaling_response(handle, COMMAND_REJECT, sig_id, L2CAP_REJ_CMD_UNKNOWN);
113600d93d79Smatthias.ringwald         return;
113700d93d79Smatthias.ringwald     }
113800d93d79Smatthias.ringwald 
113900d93d79Smatthias.ringwald     // general commands without an assigned channel
114000d93d79Smatthias.ringwald     switch(code) {
114100d93d79Smatthias.ringwald 
114200d93d79Smatthias.ringwald         case CONNECTION_REQUEST: {
114300d93d79Smatthias.ringwald             uint16_t psm =        READ_BT_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
114400d93d79Smatthias.ringwald             uint16_t source_cid = READ_BT_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+2);
114500d93d79Smatthias.ringwald             l2cap_handle_connection_request(handle, sig_id, psm, source_cid);
11462b83fb7dSmatthias.ringwald             return;
114700d93d79Smatthias.ringwald         }
114800d93d79Smatthias.ringwald 
11492b360848Smatthias.ringwald         case ECHO_REQUEST:
11502b360848Smatthias.ringwald             l2cap_register_signaling_response(handle, code, sig_id, 0);
11512b83fb7dSmatthias.ringwald             return;
115200d93d79Smatthias.ringwald 
115300d93d79Smatthias.ringwald         case INFORMATION_REQUEST: {
115400d93d79Smatthias.ringwald             uint16_t infoType = READ_BT_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
11552b360848Smatthias.ringwald             l2cap_register_signaling_response(handle, code, sig_id, infoType);
11562b83fb7dSmatthias.ringwald             return;
115700d93d79Smatthias.ringwald         }
115800d93d79Smatthias.ringwald 
115900d93d79Smatthias.ringwald         default:
116000d93d79Smatthias.ringwald             break;
116100d93d79Smatthias.ringwald     }
116200d93d79Smatthias.ringwald 
116300d93d79Smatthias.ringwald 
116400d93d79Smatthias.ringwald     // Get potential destination CID
116500d93d79Smatthias.ringwald     uint16_t dest_cid = READ_BT_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
116600d93d79Smatthias.ringwald 
116700d93d79Smatthias.ringwald     // Find channel for this sig_id and connection handle
116800d93d79Smatthias.ringwald     linked_item_t *it;
116900d93d79Smatthias.ringwald     for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){
117000d93d79Smatthias.ringwald         l2cap_channel_t * channel = (l2cap_channel_t *) it;
117100d93d79Smatthias.ringwald         if (channel->handle == handle) {
117200d93d79Smatthias.ringwald             if (code & 1) {
1173b1988dceSmatthias.ringwald                 // match odd commands (responses) by previous signaling identifier
1174b1988dceSmatthias.ringwald                 if (channel->local_sig_id == sig_id) {
117500d93d79Smatthias.ringwald                     l2cap_signaling_handler_channel(channel, command);
11764e32727eSmatthias.ringwald                     break;
117700d93d79Smatthias.ringwald                 }
117800d93d79Smatthias.ringwald             } else {
1179b1988dceSmatthias.ringwald                 // match even commands (requests) by local channel id
118000d93d79Smatthias.ringwald                 if (channel->local_cid == dest_cid) {
118100d93d79Smatthias.ringwald                     l2cap_signaling_handler_channel(channel, command);
11824e32727eSmatthias.ringwald                     break;
118300d93d79Smatthias.ringwald                 }
118400d93d79Smatthias.ringwald             }
118500d93d79Smatthias.ringwald         }
118600d93d79Smatthias.ringwald     }
118700d93d79Smatthias.ringwald }
118800d93d79Smatthias.ringwald 
118900d93d79Smatthias.ringwald void l2cap_acl_handler( uint8_t *packet, uint16_t size ){
119000d93d79Smatthias.ringwald 
119100d93d79Smatthias.ringwald     // Get Channel ID
119200d93d79Smatthias.ringwald     uint16_t channel_id = READ_L2CAP_CHANNEL_ID(packet);
119300d93d79Smatthias.ringwald     hci_con_handle_t handle = READ_ACL_CONNECTION_HANDLE(packet);
119400d93d79Smatthias.ringwald 
11955652b5ffS[email protected]     switch (channel_id) {
11965652b5ffS[email protected] 
11975652b5ffS[email protected]         case L2CAP_CID_SIGNALING: {
11985652b5ffS[email protected] 
119900d93d79Smatthias.ringwald             uint16_t command_offset = 8;
120000d93d79Smatthias.ringwald             while (command_offset < size) {
120100d93d79Smatthias.ringwald 
120200d93d79Smatthias.ringwald                 // handle signaling commands
120300d93d79Smatthias.ringwald                 l2cap_signaling_handler_dispatch(handle, &packet[command_offset]);
120400d93d79Smatthias.ringwald 
120500d93d79Smatthias.ringwald                 // increment command_offset
120600d93d79Smatthias.ringwald                 command_offset += L2CAP_SIGNALING_COMMAND_DATA_OFFSET + READ_BT_16(packet, command_offset + L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET);
120700d93d79Smatthias.ringwald             }
12085652b5ffS[email protected]             break;
120900d93d79Smatthias.ringwald         }
121000d93d79Smatthias.ringwald 
12115652b5ffS[email protected]         case L2CAP_CID_ATTRIBUTE_PROTOCOL:
12125652b5ffS[email protected]             if (attribute_protocol_packet_handler) {
12135652b5ffS[email protected]                 (*attribute_protocol_packet_handler)(ATT_DATA_PACKET, handle, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER);
12145652b5ffS[email protected]             }
12155652b5ffS[email protected]             break;
12165652b5ffS[email protected] 
12175652b5ffS[email protected]         case L2CAP_CID_SECURITY_MANAGER_PROTOCOL:
12185652b5ffS[email protected]             if (security_protocol_packet_handler) {
12195652b5ffS[email protected]                 (*security_protocol_packet_handler)(SM_DATA_PACKET, handle, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER);
12205652b5ffS[email protected]             }
12215652b5ffS[email protected]             break;
12225652b5ffS[email protected] 
12235652b5ffS[email protected]         default: {
122400d93d79Smatthias.ringwald             // Find channel for this channel_id and connection handle
122500d93d79Smatthias.ringwald             l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(channel_id);
122600d93d79Smatthias.ringwald             if (channel) {
122758de5610Smatthias.ringwald                 l2cap_dispatch(channel, L2CAP_DATA_PACKET, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER);
122800d93d79Smatthias.ringwald             }
12295652b5ffS[email protected]             break;
12305652b5ffS[email protected]         }
12315652b5ffS[email protected]     }
123200d93d79Smatthias.ringwald }
123300d93d79Smatthias.ringwald 
12342718e2e7Smatthias.ringwald static void l2cap_packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
12352718e2e7Smatthias.ringwald     switch (packet_type) {
12362718e2e7Smatthias.ringwald         case HCI_EVENT_PACKET:
12372718e2e7Smatthias.ringwald             l2cap_event_handler(packet, size);
12382718e2e7Smatthias.ringwald             break;
12392718e2e7Smatthias.ringwald         case HCI_ACL_DATA_PACKET:
12402718e2e7Smatthias.ringwald             l2cap_acl_handler(packet, size);
12412718e2e7Smatthias.ringwald             break;
12422718e2e7Smatthias.ringwald         default:
12432718e2e7Smatthias.ringwald             break;
12442718e2e7Smatthias.ringwald     }
12451eb2563eS[email protected]     l2cap_run();
12462718e2e7Smatthias.ringwald }
124700d93d79Smatthias.ringwald 
124815ec09bbSmatthias.ringwald // finalize closed channel - l2cap_handle_disconnect_request & DISCONNECTION_RESPONSE
124927a923d0Smatthias.ringwald void l2cap_finialize_channel_close(l2cap_channel_t *channel){
1250f62db1e3Smatthias.ringwald     channel->state = L2CAP_STATE_CLOSED;
1251f62db1e3Smatthias.ringwald     l2cap_emit_channel_closed(channel);
1252f62db1e3Smatthias.ringwald     // discard channel
1253f62db1e3Smatthias.ringwald     linked_list_remove(&l2cap_channels, (linked_item_t *) channel);
1254d3a9df87Smatthias.ringwald     btstack_memory_l2cap_channel_free(channel);
1255c8e4258aSmatthias.ringwald }
12561e6aba47Smatthias.ringwald 
12579d9bbc01Smatthias.ringwald l2cap_service_t * l2cap_get_service(uint16_t psm){
1258c52bf64dSmatthias.ringwald     linked_item_t *it;
12599d9bbc01Smatthias.ringwald 
12609d9bbc01Smatthias.ringwald     // close open channels
12619d9bbc01Smatthias.ringwald     for (it = (linked_item_t *) l2cap_services; it ; it = it->next){
12629d9bbc01Smatthias.ringwald         l2cap_service_t * service = ((l2cap_service_t *) it);
12639d9bbc01Smatthias.ringwald         if ( service->psm == psm){
12649d9bbc01Smatthias.ringwald             return service;
12659d9bbc01Smatthias.ringwald         };
12669d9bbc01Smatthias.ringwald     }
12679d9bbc01Smatthias.ringwald     return NULL;
12689d9bbc01Smatthias.ringwald }
12699d9bbc01Smatthias.ringwald 
127062f901dfS[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){
1271e0abb8e7S[email protected] 
1272e0abb8e7S[email protected]     log_info("L2CAP_REGISTER_SERVICE psm 0x%x mtu %u", psm, mtu);
1273e0abb8e7S[email protected] 
12744bb582b6Smatthias.ringwald     // check for alread registered psm
12754bb582b6Smatthias.ringwald     // TODO: emit error event
12769d9bbc01Smatthias.ringwald     l2cap_service_t *service = l2cap_get_service(psm);
1277277abc2cSmatthias.ringwald     if (service) {
1278277abc2cSmatthias.ringwald         log_error("l2cap_register_service_internal: PSM %u already registered\n", psm);
127981476041Smatthias.ringwald         l2cap_emit_service_registered(connection, L2CAP_SERVICE_ALREADY_REGISTERED, psm);
1280277abc2cSmatthias.ringwald         return;
1281277abc2cSmatthias.ringwald     }
12829d9bbc01Smatthias.ringwald 
12834bb582b6Smatthias.ringwald     // alloc structure
12844bb582b6Smatthias.ringwald     // TODO: emit error event
128528ca2b46S[email protected]     service = (l2cap_service_t *) btstack_memory_l2cap_service_get();
1286277abc2cSmatthias.ringwald     if (!service) {
1287277abc2cSmatthias.ringwald         log_error("l2cap_register_service_internal: no memory for l2cap_service_t\n");
12885842b6d9Smatthias.ringwald         l2cap_emit_service_registered(connection, BTSTACK_MEMORY_ALLOC_FAILED, psm);
1289277abc2cSmatthias.ringwald         return;
1290277abc2cSmatthias.ringwald     }
12919d9bbc01Smatthias.ringwald 
12929d9bbc01Smatthias.ringwald     // fill in
12939d9bbc01Smatthias.ringwald     service->psm = psm;
12949d9bbc01Smatthias.ringwald     service->mtu = mtu;
12959d9bbc01Smatthias.ringwald     service->connection = connection;
1296d8497f19Smatthias.ringwald     service->packet_handler = packet_handler;
1297df3354fcS[email protected]     service->required_security_level = security_level;
12989d9bbc01Smatthias.ringwald 
12999d9bbc01Smatthias.ringwald     // add to services list
13009d9bbc01Smatthias.ringwald     linked_list_add(&l2cap_services, (linked_item_t *) service);
1301c0e866bfSmatthias.ringwald 
1302c0e866bfSmatthias.ringwald     // enable page scan
1303c0e866bfSmatthias.ringwald     hci_connectable_control(1);
13045842b6d9Smatthias.ringwald 
13055842b6d9Smatthias.ringwald     // done
13065842b6d9Smatthias.ringwald     l2cap_emit_service_registered(connection, 0, psm);
13079d9bbc01Smatthias.ringwald }
13089d9bbc01Smatthias.ringwald 
130936944dffSmatthias.ringwald void l2cap_unregister_service_internal(void *connection, uint16_t psm){
1310e0abb8e7S[email protected] 
1311e0abb8e7S[email protected]     log_info("L2CAP_UNREGISTER_SERVICE psm 0x%x", psm);
1312e0abb8e7S[email protected] 
13139d9bbc01Smatthias.ringwald     l2cap_service_t *service = l2cap_get_service(psm);
1314037d6e48Smatthias.ringwald     if (!service) return;
13159d9bbc01Smatthias.ringwald     linked_list_remove(&l2cap_services, (linked_item_t *) service);
1316d3a9df87Smatthias.ringwald     btstack_memory_l2cap_service_free(service);
1317c0e866bfSmatthias.ringwald 
1318c0e866bfSmatthias.ringwald     // disable page scan when no services registered
1319c0e866bfSmatthias.ringwald     if (!linked_list_empty(&l2cap_services)) return;
1320c0e866bfSmatthias.ringwald     hci_connectable_control(0);
13219d9bbc01Smatthias.ringwald }
13229d9bbc01Smatthias.ringwald 
13239d9bbc01Smatthias.ringwald //
132436944dffSmatthias.ringwald void l2cap_close_connection(void *connection){
13259d9bbc01Smatthias.ringwald     linked_item_t *it;
13269d9bbc01Smatthias.ringwald 
13273a9e0a58Smatthias.ringwald     // close open channels - note to myself: no channel is freed, so no new for fancy iterator tricks
1328c52bf64dSmatthias.ringwald     l2cap_channel_t * channel;
1329c52bf64dSmatthias.ringwald     for (it = (linked_item_t *) l2cap_channels; it ; it = it->next){
1330c52bf64dSmatthias.ringwald         channel = (l2cap_channel_t *) it;
1331c52bf64dSmatthias.ringwald         if (channel->connection == connection) {
1332cb8eb7e6Smatthias.ringwald             channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
1333c52bf64dSmatthias.ringwald         }
1334c52bf64dSmatthias.ringwald     }
13359d9bbc01Smatthias.ringwald 
1336645658c9Smatthias.ringwald     // unregister services
133769025de8Smatthias.ringwald     it = (linked_item_t *) &l2cap_services;
133869025de8Smatthias.ringwald     while (it->next) {
133969025de8Smatthias.ringwald         l2cap_service_t * service = (l2cap_service_t *) it->next;
1340645658c9Smatthias.ringwald         if (service->connection == connection){
134169025de8Smatthias.ringwald             it->next = it->next->next;
1342d3a9df87Smatthias.ringwald             btstack_memory_l2cap_service_free(service);
13438149d2c7Smatthias.ringwald         } else {
13448149d2c7Smatthias.ringwald             it = it->next;
1345645658c9Smatthias.ringwald         }
1346645658c9Smatthias.ringwald     }
1347cb8eb7e6Smatthias.ringwald 
1348cb8eb7e6Smatthias.ringwald     // process
1349cb8eb7e6Smatthias.ringwald     l2cap_run();
1350c52bf64dSmatthias.ringwald }
13515652b5ffS[email protected] 
13525652b5ffS[email protected] // Bluetooth 4.0 - allows to register handler for Attribute Protocol and Security Manager Protocol
13535652b5ffS[email protected] void l2cap_register_fixed_channel(btstack_packet_handler_t packet_handler, uint16_t channel_id) {
13545652b5ffS[email protected]     switch(channel_id){
13555652b5ffS[email protected]         case L2CAP_CID_ATTRIBUTE_PROTOCOL:
13565652b5ffS[email protected]             attribute_protocol_packet_handler = packet_handler;
13575652b5ffS[email protected]             break;
13585652b5ffS[email protected]         case L2CAP_CID_SECURITY_MANAGER_PROTOCOL:
13595652b5ffS[email protected]             security_protocol_packet_handler = packet_handler;
13605652b5ffS[email protected]             break;
13615652b5ffS[email protected]     }
13625652b5ffS[email protected] }
13635652b5ffS[email protected] 
1364ab2b01dcS[email protected] #ifdef HAVE_BLE
1365ab2b01dcS[email protected] // Request LE connection parameter update
1366ab2b01dcS[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){
1367ab2b01dcS[email protected]     if (!hci_can_send_packet_now(HCI_ACL_DATA_PACKET)){
1368ab2b01dcS[email protected]         log_info("l2cap_send_signaling_packet, cannot send\n");
1369ab2b01dcS[email protected]         return BTSTACK_ACL_BUFFERS_FULL;
1370ab2b01dcS[email protected]     }
1371ab2b01dcS[email protected]     // log_info("l2cap_send_signaling_packet type %u\n", cmd);
1372ab2b01dcS[email protected]     uint8_t *acl_buffer = hci_get_outgoing_acl_packet_buffer();
1373ab2b01dcS[email protected]     uint16_t len = l2cap_le_create_connection_parameter_update_request(acl_buffer, handle, interval_min, interval_max, slave_latency, timeout_multiplier);
1374ab2b01dcS[email protected]     return hci_send_acl_packet(acl_buffer, len);
1375ab2b01dcS[email protected] }
1376ab2b01dcS[email protected] #endif
1377ab2b01dcS[email protected] 
1378