xref: /btstack/src/l2cap.c (revision de804f9e40fa10b2ead91db28fa5571afa6ec08a)
1 /*
2  * Copyright (C) 2014 BlueKitchen GmbH
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the copyright holders nor the names of
14  *    contributors may be used to endorse or promote products derived
15  *    from this software without specific prior written permission.
16  * 4. Any redistribution, use, or modification is done solely for
17  *    personal benefit and not for any commercial purpose or for
18  *    monetary gain.
19  *
20  * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
24  * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
27  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
30  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * Please inquire about commercial licensing options at
34  * [email protected]
35  *
36  */
37 
38 #define __BTSTACK_FILE__ "l2cap.c"
39 
40 /*
41  *  l2cap.c
42  *
43  *  Logical Link Control and Adaption Protocl (L2CAP)
44  *
45  *  Created by Matthias Ringwald on 5/16/09.
46  */
47 
48 #include "l2cap.h"
49 #include "hci.h"
50 #include "hci_dump.h"
51 #include "bluetooth_sdp.h"
52 #include "btstack_debug.h"
53 #include "btstack_event.h"
54 #include "btstack_memory.h"
55 
56 #ifdef ENABLE_LE_DATA_CHANNELS
57 #include "ble/sm.h"
58 #endif
59 
60 #include <stdarg.h>
61 #include <string.h>
62 
63 #include <stdio.h>
64 
65 // nr of buffered acl packets in outgoing queue to get max performance
66 #define NR_BUFFERED_ACL_PACKETS 3
67 
68 // used to cache l2cap rejects, echo, and informational requests
69 #define NR_PENDING_SIGNALING_RESPONSES 3
70 
71 // nr of credits provided to remote if credits fall below watermark
72 #define L2CAP_LE_DATA_CHANNELS_AUTOMATIC_CREDITS_WATERMARK 5
73 #define L2CAP_LE_DATA_CHANNELS_AUTOMATIC_CREDITS_INCREMENT 5
74 
75 // offsets for L2CAP SIGNALING COMMANDS
76 #define L2CAP_SIGNALING_COMMAND_CODE_OFFSET   0
77 #define L2CAP_SIGNALING_COMMAND_SIGID_OFFSET  1
78 #define L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET 2
79 #define L2CAP_SIGNALING_COMMAND_DATA_OFFSET   4
80 
81 // internal table
82 #define L2CAP_FIXED_CHANNEL_TABLE_INDEX_ATTRIBUTE_PROTOCOL 0
83 #define L2CAP_FIXED_CHANNEL_TABLE_INDEX_SECURITY_MANAGER_PROTOCOL  1
84 #define L2CAP_FIXED_CHANNEL_TABLE_INDEX_CONNECTIONLESS_CHANNEL 2
85 #define L2CAP_FIXED_CHANNEL_TABLE_SIZE (L2CAP_FIXED_CHANNEL_TABLE_INDEX_CONNECTIONLESS_CHANNEL+1)
86 
87 #if defined(ENABLE_LE_DATA_CHANNELS) || defined(ENABLE_CLASSIC)
88 #define L2CAP_USES_CHANNELS
89 #endif
90 
91 // prototypes
92 static void l2cap_hci_event_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size);
93 static void l2cap_acl_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size );
94 static void l2cap_notify_channel_can_send(void);
95 static void l2cap_emit_can_send_now(btstack_packet_handler_t packet_handler, uint16_t channel);
96 #ifdef ENABLE_CLASSIC
97 static void l2cap_finialize_channel_close(l2cap_channel_t *channel);
98 static inline l2cap_service_t * l2cap_get_service(uint16_t psm);
99 static void l2cap_emit_channel_opened(l2cap_channel_t *channel, uint8_t status);
100 static void l2cap_emit_channel_closed(l2cap_channel_t *channel);
101 static void l2cap_emit_incoming_connection(l2cap_channel_t *channel);
102 static int  l2cap_channel_ready_for_open(l2cap_channel_t *channel);
103 #endif
104 #ifdef ENABLE_LE_DATA_CHANNELS
105 static void l2cap_emit_le_channel_opened(l2cap_channel_t *channel, uint8_t status);
106 static void l2cap_emit_le_incoming_connection(l2cap_channel_t *channel);
107 static l2cap_channel_t * l2cap_le_get_channel_for_local_cid(uint16_t local_cid);
108 static void l2cap_le_notify_channel_can_send(l2cap_channel_t *channel);
109 static void l2cap_le_finialize_channel_close(l2cap_channel_t *channel);
110 static inline l2cap_service_t * l2cap_le_get_service(uint16_t psm);
111 #endif
112 
113 typedef struct l2cap_fixed_channel {
114     btstack_packet_handler_t callback;
115     uint8_t waiting_for_can_send_now;
116 } l2cap_fixed_channel_t;
117 
118 #ifdef ENABLE_CLASSIC
119 static btstack_linked_list_t l2cap_channels;
120 static btstack_linked_list_t l2cap_services;
121 static uint8_t require_security_level2_for_outgoing_sdp;
122 #endif
123 
124 #ifdef ENABLE_LE_DATA_CHANNELS
125 static btstack_linked_list_t l2cap_le_channels;
126 static btstack_linked_list_t l2cap_le_services;
127 #endif
128 
129 // used to cache l2cap rejects, echo, and informational requests
130 static l2cap_signaling_response_t signaling_responses[NR_PENDING_SIGNALING_RESPONSES];
131 static int signaling_responses_pending;
132 
133 static btstack_packet_callback_registration_t hci_event_callback_registration;
134 static l2cap_fixed_channel_t fixed_channels[L2CAP_FIXED_CHANNEL_TABLE_SIZE];
135 
136 #ifdef ENABLE_BLE
137 // only used for connection parameter update events
138 static btstack_packet_handler_t l2cap_event_packet_handler;
139 #endif
140 
141 static uint16_t l2cap_fixed_channel_table_channel_id_for_index(int index){
142     switch (index){
143         case L2CAP_FIXED_CHANNEL_TABLE_INDEX_ATTRIBUTE_PROTOCOL:
144             return L2CAP_CID_ATTRIBUTE_PROTOCOL;
145         case L2CAP_FIXED_CHANNEL_TABLE_INDEX_SECURITY_MANAGER_PROTOCOL:
146             return L2CAP_CID_SECURITY_MANAGER_PROTOCOL;
147         case L2CAP_FIXED_CHANNEL_TABLE_INDEX_CONNECTIONLESS_CHANNEL:
148             return L2CAP_CID_CONNECTIONLESS_CHANNEL;
149         default:
150             return 0;
151     }
152 }
153 static int l2cap_fixed_channel_table_index_for_channel_id(uint16_t channel_id){
154     switch (channel_id){
155         case L2CAP_CID_ATTRIBUTE_PROTOCOL:
156             return L2CAP_FIXED_CHANNEL_TABLE_INDEX_ATTRIBUTE_PROTOCOL;
157         case L2CAP_CID_SECURITY_MANAGER_PROTOCOL:
158             return  L2CAP_FIXED_CHANNEL_TABLE_INDEX_SECURITY_MANAGER_PROTOCOL;
159         case L2CAP_CID_CONNECTIONLESS_CHANNEL:
160             return  L2CAP_FIXED_CHANNEL_TABLE_INDEX_CONNECTIONLESS_CHANNEL;
161         default:
162             return -1;
163         }
164 }
165 
166 static int l2cap_fixed_channel_table_index_is_le(int index){
167     if (index == L2CAP_CID_CONNECTIONLESS_CHANNEL) return 0;
168     return 1;
169 }
170 
171 void l2cap_init(void){
172     signaling_responses_pending = 0;
173 
174 #ifdef ENABLE_CLASSIC
175     l2cap_channels = NULL;
176     l2cap_services = NULL;
177     require_security_level2_for_outgoing_sdp = 0;
178 #endif
179 
180 #ifdef ENABLE_LE_DATA_CHANNELS
181     l2cap_le_services = NULL;
182     l2cap_le_channels = NULL;
183 #endif
184 
185 #ifdef ENABLE_BLE
186     l2cap_event_packet_handler = NULL;
187 #endif
188     memset(fixed_channels, 0, sizeof(fixed_channels));
189 
190     //
191     // register callback with HCI
192     //
193     hci_event_callback_registration.callback = &l2cap_hci_event_handler;
194     hci_add_event_handler(&hci_event_callback_registration);
195 
196     hci_register_acl_packet_handler(&l2cap_acl_handler);
197 
198 #ifdef ENABLE_CLASSIC
199     gap_connectable_control(0); // no services yet
200 #endif
201 }
202 
203 void l2cap_register_packet_handler(void (*handler)(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size)){
204 #ifdef ENABLE_BLE
205     l2cap_event_packet_handler = handler;
206 #else
207     UNUSED(handler);
208 #endif
209 }
210 
211 void l2cap_request_can_send_fix_channel_now_event(hci_con_handle_t con_handle, uint16_t channel_id){
212     UNUSED(con_handle);
213 
214     int index = l2cap_fixed_channel_table_index_for_channel_id(channel_id);
215     if (index < 0) return;
216     fixed_channels[index].waiting_for_can_send_now = 1;
217     l2cap_notify_channel_can_send();
218 }
219 
220 int  l2cap_can_send_fixed_channel_packet_now(hci_con_handle_t con_handle, uint16_t channel_id){
221     UNUSED(channel_id);
222 
223     return hci_can_send_acl_packet_now(con_handle);
224 }
225 
226 uint8_t *l2cap_get_outgoing_buffer(void){
227     return hci_get_outgoing_packet_buffer() + COMPLETE_L2CAP_HEADER; // 8 bytes
228 }
229 
230 int l2cap_reserve_packet_buffer(void){
231     return hci_reserve_packet_buffer();
232 }
233 
234 void l2cap_release_packet_buffer(void){
235     hci_release_packet_buffer();
236 }
237 
238 static void l2cap_setup_header(uint8_t * acl_buffer, hci_con_handle_t con_handle, uint8_t packet_boundary, uint16_t remote_cid, uint16_t len){
239     // 0 - Connection handle : PB=pb : BC=00
240     little_endian_store_16(acl_buffer, 0, con_handle | (packet_boundary << 12) | (0 << 14));
241     // 2 - ACL length
242     little_endian_store_16(acl_buffer, 2,  len + 4);
243     // 4 - L2CAP packet length
244     little_endian_store_16(acl_buffer, 4,  len + 0);
245     // 6 - L2CAP channel DEST
246     little_endian_store_16(acl_buffer, 6,  remote_cid);
247 }
248 
249 // assumption - only on LE connections
250 int l2cap_send_prepared_connectionless(hci_con_handle_t con_handle, uint16_t cid, uint16_t len){
251 
252     if (!hci_is_packet_buffer_reserved()){
253         log_error("l2cap_send_prepared_connectionless called without reserving packet first");
254         return BTSTACK_ACL_BUFFERS_FULL;
255     }
256 
257     if (!hci_can_send_prepared_acl_packet_now(con_handle)){
258         log_info("l2cap_send_prepared_connectionless handle 0x%02x, cid 0x%02x, cannot send", con_handle, cid);
259         return BTSTACK_ACL_BUFFERS_FULL;
260     }
261 
262     log_debug("l2cap_send_prepared_connectionless handle %u, cid 0x%02x", con_handle, cid);
263 
264     uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
265     l2cap_setup_header(acl_buffer, con_handle, 0, cid, len);
266     // send
267     return hci_send_acl_packet_buffer(len+8);
268 }
269 
270 // assumption - only on LE connections
271 int l2cap_send_connectionless(hci_con_handle_t con_handle, uint16_t cid, uint8_t *data, uint16_t len){
272 
273     if (!hci_can_send_acl_packet_now(con_handle)){
274         log_info("l2cap_send cid 0x%02x, cannot send", cid);
275         return BTSTACK_ACL_BUFFERS_FULL;
276     }
277 
278     hci_reserve_packet_buffer();
279     uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
280 
281     memcpy(&acl_buffer[8], data, len);
282 
283     return l2cap_send_prepared_connectionless(con_handle, cid, len);
284 }
285 
286 static void l2cap_emit_can_send_now(btstack_packet_handler_t packet_handler, uint16_t channel) {
287     log_debug("L2CAP_EVENT_CHANNEL_CAN_SEND_NOW local_cid 0x%x", channel);
288     uint8_t event[4];
289     event[0] = L2CAP_EVENT_CAN_SEND_NOW;
290     event[1] = sizeof(event) - 2;
291     little_endian_store_16(event, 2, channel);
292     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
293     packet_handler(HCI_EVENT_PACKET, channel, event, sizeof(event));
294 }
295 
296 #ifdef L2CAP_USES_CHANNELS
297 static void l2cap_dispatch_to_channel(l2cap_channel_t *channel, uint8_t type, uint8_t * data, uint16_t size){
298     (* (channel->packet_handler))(type, channel->local_cid, data, size);
299 }
300 
301 static void l2cap_emit_simple_event_with_cid(l2cap_channel_t * channel, uint8_t event_code){
302     uint8_t event[4];
303     event[0] = event_code;
304     event[1] = sizeof(event) - 2;
305     little_endian_store_16(event, 2, channel->local_cid);
306     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
307     l2cap_dispatch_to_channel(channel, HCI_EVENT_PACKET, event, sizeof(event));
308 }
309 #endif
310 
311 #ifdef ENABLE_CLASSIC
312 void l2cap_emit_channel_opened(l2cap_channel_t *channel, uint8_t status) {
313     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",
314              status, bd_addr_to_str(channel->address), channel->con_handle, channel->psm,
315              channel->local_cid, channel->remote_cid, channel->local_mtu, channel->remote_mtu, channel->flush_timeout);
316     uint8_t event[24];
317     event[0] = L2CAP_EVENT_CHANNEL_OPENED;
318     event[1] = sizeof(event) - 2;
319     event[2] = status;
320     reverse_bd_addr(channel->address, &event[3]);
321     little_endian_store_16(event,  9, channel->con_handle);
322     little_endian_store_16(event, 11, channel->psm);
323     little_endian_store_16(event, 13, channel->local_cid);
324     little_endian_store_16(event, 15, channel->remote_cid);
325     little_endian_store_16(event, 17, channel->local_mtu);
326     little_endian_store_16(event, 19, channel->remote_mtu);
327     little_endian_store_16(event, 21, channel->flush_timeout);
328     event[23] = channel->state_var & L2CAP_CHANNEL_STATE_VAR_INCOMING ? 1 : 0;
329     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
330     l2cap_dispatch_to_channel(channel, HCI_EVENT_PACKET, event, sizeof(event));
331 }
332 
333 static void l2cap_emit_channel_closed(l2cap_channel_t *channel) {
334     log_info("L2CAP_EVENT_CHANNEL_CLOSED local_cid 0x%x", channel->local_cid);
335     l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_CHANNEL_CLOSED);
336 }
337 
338 static void l2cap_emit_incoming_connection(l2cap_channel_t *channel) {
339     log_info("L2CAP_EVENT_INCOMING_CONNECTION addr %s handle 0x%x psm 0x%x local_cid 0x%x remote_cid 0x%x",
340              bd_addr_to_str(channel->address), channel->con_handle,  channel->psm, channel->local_cid, channel->remote_cid);
341     uint8_t event[16];
342     event[0] = L2CAP_EVENT_INCOMING_CONNECTION;
343     event[1] = sizeof(event) - 2;
344     reverse_bd_addr(channel->address, &event[2]);
345     little_endian_store_16(event,  8, channel->con_handle);
346     little_endian_store_16(event, 10, channel->psm);
347     little_endian_store_16(event, 12, channel->local_cid);
348     little_endian_store_16(event, 14, channel->remote_cid);
349     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
350     l2cap_dispatch_to_channel(channel, HCI_EVENT_PACKET, event, sizeof(event));
351 }
352 
353 static l2cap_channel_t * l2cap_get_channel_for_local_cid(uint16_t local_cid){
354     btstack_linked_list_iterator_t it;
355     btstack_linked_list_iterator_init(&it, &l2cap_channels);
356     while (btstack_linked_list_iterator_has_next(&it)){
357         l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
358         if ( channel->local_cid == local_cid) {
359             return channel;
360         }
361     }
362     return NULL;
363 }
364 
365 ///
366 
367 void l2cap_request_can_send_now_event(uint16_t local_cid){
368     l2cap_channel_t *channel = l2cap_get_channel_for_local_cid(local_cid);
369     if (!channel) return;
370     channel->waiting_for_can_send_now = 1;
371     l2cap_notify_channel_can_send();
372 }
373 
374 int  l2cap_can_send_packet_now(uint16_t local_cid){
375     l2cap_channel_t *channel = l2cap_get_channel_for_local_cid(local_cid);
376     if (!channel) return 0;
377     return hci_can_send_acl_packet_now(channel->con_handle);
378 }
379 
380 int  l2cap_can_send_prepared_packet_now(uint16_t local_cid){
381     l2cap_channel_t *channel = l2cap_get_channel_for_local_cid(local_cid);
382     if (!channel) return 0;
383     return hci_can_send_prepared_acl_packet_now(channel->con_handle);
384 }
385 uint16_t l2cap_get_remote_mtu_for_local_cid(uint16_t local_cid){
386     l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
387     if (channel) {
388         return channel->remote_mtu;
389     }
390     return 0;
391 }
392 
393 static l2cap_channel_t * l2cap_channel_for_rtx_timer(btstack_timer_source_t * ts){
394     btstack_linked_list_iterator_t it;
395     btstack_linked_list_iterator_init(&it, &l2cap_channels);
396     while (btstack_linked_list_iterator_has_next(&it)){
397         l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
398         if ( &channel->rtx == ts) {
399             return channel;
400         }
401     }
402     return NULL;
403 }
404 
405 static void l2cap_rtx_timeout(btstack_timer_source_t * ts){
406     l2cap_channel_t * channel = l2cap_channel_for_rtx_timer(ts);
407     if (!channel) return;
408 
409     log_info("l2cap_rtx_timeout for local cid 0x%02x", channel->local_cid);
410 
411     // "When terminating the channel, it is not necessary to send a L2CAP_DisconnectReq
412     //  and enter WAIT_DISCONNECT state. Channels can be transitioned directly to the CLOSED state."
413     // notify client
414     l2cap_emit_channel_opened(channel, L2CAP_CONNECTION_RESPONSE_RESULT_RTX_TIMEOUT);
415 
416     // discard channel
417     // no need to stop timer here, it is removed from list during timer callback
418     btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
419     btstack_memory_l2cap_channel_free(channel);
420 }
421 
422 static void l2cap_stop_rtx(l2cap_channel_t * channel){
423     log_info("l2cap_stop_rtx for local cid 0x%02x", channel->local_cid);
424     btstack_run_loop_remove_timer(&channel->rtx);
425 }
426 
427 static void l2cap_start_rtx(l2cap_channel_t * channel){
428     l2cap_stop_rtx(channel);
429     log_info("l2cap_start_rtx for local cid 0x%02x", channel->local_cid);
430     btstack_run_loop_set_timer_handler(&channel->rtx, l2cap_rtx_timeout);
431     btstack_run_loop_set_timer(&channel->rtx, L2CAP_RTX_TIMEOUT_MS);
432     btstack_run_loop_add_timer(&channel->rtx);
433 }
434 
435 static void l2cap_start_ertx(l2cap_channel_t * channel){
436     log_info("l2cap_start_ertx for local cid 0x%02x", channel->local_cid);
437     l2cap_stop_rtx(channel);
438     btstack_run_loop_set_timer_handler(&channel->rtx, l2cap_rtx_timeout);
439     btstack_run_loop_set_timer(&channel->rtx, L2CAP_ERTX_TIMEOUT_MS);
440     btstack_run_loop_add_timer(&channel->rtx);
441 }
442 
443 void l2cap_require_security_level_2_for_outgoing_sdp(void){
444     require_security_level2_for_outgoing_sdp = 1;
445 }
446 
447 static int l2cap_security_level_0_allowed_for_PSM(uint16_t psm){
448     return (psm == BLUETOOTH_PROTOCOL_SDP) && (!require_security_level2_for_outgoing_sdp);
449 }
450 
451 static int l2cap_send_signaling_packet(hci_con_handle_t handle, L2CAP_SIGNALING_COMMANDS cmd, uint8_t identifier, ...){
452     if (!hci_can_send_acl_packet_now(handle)){
453         log_info("l2cap_send_signaling_packet, cannot send");
454         return BTSTACK_ACL_BUFFERS_FULL;
455     }
456 
457     // log_info("l2cap_send_signaling_packet type %u", cmd);
458     hci_reserve_packet_buffer();
459     uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
460     va_list argptr;
461     va_start(argptr, identifier);
462     uint16_t len = l2cap_create_signaling_classic(acl_buffer, handle, cmd, identifier, argptr);
463     va_end(argptr);
464     // log_info("l2cap_send_signaling_packet con %u!", handle);
465     return hci_send_acl_packet_buffer(len);
466 }
467 
468 // assumption - only on Classic connections
469 int l2cap_send_prepared(uint16_t local_cid, uint16_t len){
470 
471     if (!hci_is_packet_buffer_reserved()){
472         log_error("l2cap_send_prepared called without reserving packet first");
473         return BTSTACK_ACL_BUFFERS_FULL;
474     }
475 
476     l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
477     if (!channel) {
478         log_error("l2cap_send_prepared no channel for cid 0x%02x", local_cid);
479         return -1;   // TODO: define error
480     }
481 
482     if (!hci_can_send_prepared_acl_packet_now(channel->con_handle)){
483         log_info("l2cap_send_prepared cid 0x%02x, cannot send", local_cid);
484         return BTSTACK_ACL_BUFFERS_FULL;
485     }
486 
487     log_debug("l2cap_send_prepared cid 0x%02x, handle %u, 1 credit used", local_cid, channel->con_handle);
488 
489     // set non-flushable packet boundary flag if supported on Controller
490     uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
491     uint8_t packet_boundary_flag = hci_non_flushable_packet_boundary_flag_supported() ? 0x00 : 0x02;
492     l2cap_setup_header(acl_buffer, channel->con_handle, packet_boundary_flag, channel->remote_cid, len);
493     // send
494     return hci_send_acl_packet_buffer(len+8);
495 }
496 
497 // assumption - only on Classic connections
498 int l2cap_send(uint16_t local_cid, uint8_t *data, uint16_t len){
499 
500     l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
501     if (!channel) {
502         log_error("l2cap_send no channel for cid 0x%02x", local_cid);
503         return -1;   // TODO: define error
504     }
505 
506     if (len > channel->remote_mtu){
507         log_error("l2cap_send cid 0x%02x, data length exceeds remote MTU.", local_cid);
508         return L2CAP_DATA_LEN_EXCEEDS_REMOTE_MTU;
509     }
510 
511     if (!hci_can_send_acl_packet_now(channel->con_handle)){
512         log_info("l2cap_send cid 0x%02x, cannot send", local_cid);
513         return BTSTACK_ACL_BUFFERS_FULL;
514     }
515 
516     hci_reserve_packet_buffer();
517     uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
518 
519     memcpy(&acl_buffer[8], data, len);
520 
521     return l2cap_send_prepared(local_cid, len);
522 }
523 
524 int l2cap_send_echo_request(hci_con_handle_t con_handle, uint8_t *data, uint16_t len){
525     return l2cap_send_signaling_packet(con_handle, ECHO_REQUEST, 0x77, len, data);
526 }
527 
528 static inline void channelStateVarSetFlag(l2cap_channel_t *channel, L2CAP_CHANNEL_STATE_VAR flag){
529     channel->state_var = (L2CAP_CHANNEL_STATE_VAR) (channel->state_var | flag);
530 }
531 
532 static inline void channelStateVarClearFlag(l2cap_channel_t *channel, L2CAP_CHANNEL_STATE_VAR flag){
533     channel->state_var = (L2CAP_CHANNEL_STATE_VAR) (channel->state_var & ~flag);
534 }
535 #endif
536 
537 
538 #ifdef ENABLE_BLE
539 static int l2cap_send_le_signaling_packet(hci_con_handle_t handle, L2CAP_SIGNALING_COMMANDS cmd, uint8_t identifier, ...){
540 
541     if (!hci_can_send_acl_packet_now(handle)){
542         log_info("l2cap_send_le_signaling_packet, cannot send");
543         return BTSTACK_ACL_BUFFERS_FULL;
544     }
545 
546     // log_info("l2cap_send_le_signaling_packet type %u", cmd);
547     hci_reserve_packet_buffer();
548     uint8_t *acl_buffer = hci_get_outgoing_packet_buffer();
549     va_list argptr;
550     va_start(argptr, identifier);
551     uint16_t len = l2cap_create_signaling_le(acl_buffer, handle, cmd, identifier, argptr);
552     va_end(argptr);
553     // log_info("l2cap_send_le_signaling_packet con %u!", handle);
554     return hci_send_acl_packet_buffer(len);
555 }
556 #endif
557 
558 uint16_t l2cap_max_mtu(void){
559     return HCI_ACL_PAYLOAD_SIZE - L2CAP_HEADER_SIZE;
560 }
561 
562 uint16_t l2cap_max_le_mtu(void){
563     return l2cap_max_mtu();
564 }
565 
566 // MARK: L2CAP_RUN
567 // process outstanding signaling tasks
568 static void l2cap_run(void){
569 
570     // log_info("l2cap_run: entered");
571 
572     // check pending signaling responses
573     while (signaling_responses_pending){
574 
575         hci_con_handle_t handle = signaling_responses[0].handle;
576 
577         if (!hci_can_send_acl_packet_now(handle)) break;
578 
579         uint8_t  sig_id        = signaling_responses[0].sig_id;
580         uint8_t  response_code = signaling_responses[0].code;
581         uint16_t infoType      = signaling_responses[0].data;  // INFORMATION_REQUEST
582         uint16_t result        = signaling_responses[0].data;  // CONNECTION_REQUEST, COMMAND_REJECT
583 #ifdef ENABLE_CLASSIC
584         uint16_t source_cid    = signaling_responses[0].cid;   // CONNECTION_REQUEST
585 #endif
586         UNUSED(infoType);
587 
588         // remove first item before sending (to avoid sending response mutliple times)
589         signaling_responses_pending--;
590         int i;
591         for (i=0; i < signaling_responses_pending; i++){
592             memcpy(&signaling_responses[i], &signaling_responses[i+1], sizeof(l2cap_signaling_response_t));
593         }
594 
595         switch (response_code){
596 #ifdef ENABLE_CLASSIC
597             case CONNECTION_REQUEST:
598                 l2cap_send_signaling_packet(handle, CONNECTION_RESPONSE, sig_id, source_cid, 0, result, 0);
599                 // also disconnect if result is 0x0003 - security blocked
600                 if (result == 0x0003){
601                     hci_disconnect_security_block(handle);
602                 }
603                 break;
604             case ECHO_REQUEST:
605                 l2cap_send_signaling_packet(handle, ECHO_RESPONSE, sig_id, 0, NULL);
606                 break;
607             case INFORMATION_REQUEST:
608                 switch (infoType){
609                     case 1: { // Connectionless MTU
610                             uint16_t connectionless_mtu = hci_max_acl_data_packet_length();
611                             l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 0, sizeof(connectionless_mtu), &connectionless_mtu);
612                         }
613                         break;
614                     case 2: { // Extended Features Supported
615                             // extended features request supported, features: fixed channels, unicast connectionless data reception
616                             uint32_t features = 0x280;
617                             l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 0, sizeof(features), &features);
618                         }
619                         break;
620                     case 3: { // Fixed Channels Supported
621                             uint8_t map[8];
622                             memset(map, 0, 8);
623                             map[0] = 0x06;  // L2CAP Signaling Channel (0x02) + Connectionless reception (0x04)
624                             l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 0, sizeof(map), &map);
625                         }
626                         break;
627                     default:
628                         // all other types are not supported
629                         l2cap_send_signaling_packet(handle, INFORMATION_RESPONSE, sig_id, infoType, 1, 0, NULL);
630                         break;
631                 }
632                 break;
633             case COMMAND_REJECT:
634                 l2cap_send_signaling_packet(handle, COMMAND_REJECT, sig_id, result, 0, NULL);
635                 break;
636 #endif
637 #ifdef ENABLE_BLE
638             case LE_CREDIT_BASED_CONNECTION_REQUEST:
639                 l2cap_send_le_signaling_packet(handle, LE_CREDIT_BASED_CONNECTION_RESPONSE, sig_id, 0, 0, 0, 0, result);
640                 break;
641             case COMMAND_REJECT_LE:
642                 l2cap_send_le_signaling_packet(handle, COMMAND_REJECT, sig_id, result, 0, NULL);
643                 break;
644 #endif
645             default:
646                 // should not happen
647                 break;
648         }
649     }
650 
651     btstack_linked_list_iterator_t it;
652     UNUSED(it);
653 
654 #ifdef ENABLE_CLASSIC
655     uint8_t  config_options[4];
656     btstack_linked_list_iterator_init(&it, &l2cap_channels);
657     while (btstack_linked_list_iterator_has_next(&it)){
658 
659         l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
660         // log_info("l2cap_run: channel %p, state %u, var 0x%02x", channel, channel->state, channel->state_var);
661         switch (channel->state){
662 
663             case L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE:
664             case L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT:
665                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
666                 if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND) {
667                     channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND);
668                     l2cap_send_signaling_packet(channel->con_handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, 1, 0);
669                 }
670                 break;
671 
672             case L2CAP_STATE_WILL_SEND_CREATE_CONNECTION:
673                 if (!hci_can_send_command_packet_now()) break;
674                 // send connection request - set state first
675                 channel->state = L2CAP_STATE_WAIT_CONNECTION_COMPLETE;
676                 // BD_ADDR, Packet_Type, Page_Scan_Repetition_Mode, Reserved, Clock_Offset, Allow_Role_Switch
677                 hci_send_cmd(&hci_create_connection, channel->address, hci_usable_acl_packet_types(), 0, 0, 0, 1);
678                 break;
679 
680             case L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE:
681                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
682                 channel->state = L2CAP_STATE_INVALID;
683                 l2cap_send_signaling_packet(channel->con_handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, channel->reason, 0);
684                 // discard channel - l2cap_finialize_channel_close without sending l2cap close event
685                 l2cap_stop_rtx(channel);
686                 btstack_linked_list_iterator_remove(&it);
687                 btstack_memory_l2cap_channel_free(channel);
688                 break;
689 
690             case L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_ACCEPT:
691                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
692                 channel->state = L2CAP_STATE_CONFIG;
693                 channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
694                 l2cap_send_signaling_packet(channel->con_handle, CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid, 0, 0);
695                 break;
696 
697             case L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST:
698                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
699                 // success, start l2cap handshake
700                 channel->local_sig_id = l2cap_next_sig_id();
701                 channel->state = L2CAP_STATE_WAIT_CONNECT_RSP;
702                 l2cap_send_signaling_packet( channel->con_handle, CONNECTION_REQUEST, channel->local_sig_id, channel->psm, channel->local_cid);
703                 l2cap_start_rtx(channel);
704                 break;
705 
706             case L2CAP_STATE_CONFIG:
707                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
708                 if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP){
709                     uint16_t flags = 0;
710                     channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP);
711                     if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT) {
712                         flags = 1;
713                     } else {
714                         channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SENT_CONF_RSP);
715                     }
716                     if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_INVALID){
717                         l2cap_send_signaling_packet(channel->con_handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, L2CAP_CONF_RESULT_UNKNOWN_OPTIONS, 0, NULL);
718                     } else if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU){
719                         config_options[0] = 1; // MTU
720                         config_options[1] = 2; // len param
721                         little_endian_store_16( (uint8_t*)&config_options, 2, channel->remote_mtu);
722                         l2cap_send_signaling_packet(channel->con_handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, 0, 4, &config_options);
723                         channelStateVarClearFlag(channel,L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU);
724                     } else {
725                         l2cap_send_signaling_packet(channel->con_handle, CONFIGURE_RESPONSE, channel->remote_sig_id, channel->remote_cid, flags, 0, 0, NULL);
726                     }
727                     channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT);
728                 }
729                 else if (channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ){
730                     channelStateVarClearFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
731                     channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SENT_CONF_REQ);
732                     channel->local_sig_id = l2cap_next_sig_id();
733                     config_options[0] = 1; // MTU
734                     config_options[1] = 2; // len param
735                     little_endian_store_16( (uint8_t*)&config_options, 2, channel->local_mtu);
736                     l2cap_send_signaling_packet(channel->con_handle, CONFIGURE_REQUEST, channel->local_sig_id, channel->remote_cid, 0, 4, &config_options);
737                     l2cap_start_rtx(channel);
738                 }
739                 if (l2cap_channel_ready_for_open(channel)){
740                     channel->state = L2CAP_STATE_OPEN;
741                     l2cap_emit_channel_opened(channel, 0);  // success
742                 }
743                 break;
744 
745             case L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE:
746                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
747                 channel->state = L2CAP_STATE_INVALID;
748                 l2cap_send_signaling_packet( channel->con_handle, DISCONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid);
749                 // 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 :)
750                 l2cap_finialize_channel_close(channel);  // -- remove from list
751                 break;
752 
753             case L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST:
754                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
755                 channel->local_sig_id = l2cap_next_sig_id();
756                 channel->state = L2CAP_STATE_WAIT_DISCONNECT;
757                 l2cap_send_signaling_packet( channel->con_handle, DISCONNECTION_REQUEST, channel->local_sig_id, channel->remote_cid, channel->local_cid);
758                 break;
759             default:
760                 break;
761         }
762     }
763 #endif
764 
765 #ifdef ENABLE_LE_DATA_CHANNELS
766     btstack_linked_list_iterator_init(&it, &l2cap_le_channels);
767     while (btstack_linked_list_iterator_has_next(&it)){
768         uint8_t  * acl_buffer;
769         uint8_t  * l2cap_payload;
770         uint16_t pos;
771         uint16_t payload_size;
772         l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
773         // log_info("l2cap_run: channel %p, state %u, var 0x%02x", channel, channel->state, channel->state_var);
774         switch (channel->state){
775             case L2CAP_STATE_WILL_SEND_LE_CONNECTION_REQUEST:
776                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
777                 channel->state = L2CAP_STATE_WAIT_LE_CONNECTION_RESPONSE;
778                 // le psm, source cid, mtu, mps, initial credits
779                 channel->local_sig_id = l2cap_next_sig_id();
780                 channel->credits_incoming =  channel->new_credits_incoming;
781                 channel->new_credits_incoming = 0;
782                 l2cap_send_le_signaling_packet( channel->con_handle, LE_CREDIT_BASED_CONNECTION_REQUEST, channel->local_sig_id, channel->psm, channel->local_cid, channel->local_mtu, 23, channel->credits_incoming);
783                 break;
784             case L2CAP_STATE_WILL_SEND_LE_CONNECTION_RESPONSE_ACCEPT:
785                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
786                 // TODO: support larger MPS
787                 channel->state = L2CAP_STATE_OPEN;
788                 channel->credits_incoming =  channel->new_credits_incoming;
789                 channel->new_credits_incoming = 0;
790                 l2cap_send_le_signaling_packet(channel->con_handle, LE_CREDIT_BASED_CONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->local_mtu, 23, channel->credits_incoming, 0);
791                 // notify client
792                 l2cap_emit_le_channel_opened(channel, 0);
793                 break;
794             case L2CAP_STATE_WILL_SEND_LE_CONNECTION_RESPONSE_DECLINE:
795                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
796                 channel->state = L2CAP_STATE_INVALID;
797                 l2cap_send_le_signaling_packet(channel->con_handle, LE_CREDIT_BASED_CONNECTION_RESPONSE, channel->remote_sig_id, 0, 0, 0, 0, channel->reason);
798                 // discard channel - l2cap_finialize_channel_close without sending l2cap close event
799                 l2cap_stop_rtx(channel);
800                 btstack_linked_list_iterator_remove(&it);
801                 btstack_memory_l2cap_channel_free(channel);
802                 break;
803             case L2CAP_STATE_OPEN:
804                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
805 
806                 // send credits
807                 if (channel->new_credits_incoming){
808                     log_info("l2cap: sending %u credits", channel->new_credits_incoming);
809                     channel->local_sig_id = l2cap_next_sig_id();
810                     uint16_t new_credits = channel->new_credits_incoming;
811                     channel->new_credits_incoming = 0;
812                     channel->credits_incoming += new_credits;
813                     l2cap_send_le_signaling_packet(channel->con_handle, LE_FLOW_CONTROL_CREDIT, channel->local_sig_id, channel->remote_cid, new_credits);
814                     break;
815                 }
816 
817                 // send data
818                 if (!channel->send_sdu_buffer) break;
819                 if (!channel->credits_outgoing) break;
820 
821                 // send part of SDU
822                 hci_reserve_packet_buffer();
823                 acl_buffer = hci_get_outgoing_packet_buffer();
824                 l2cap_payload = acl_buffer + 8;
825                 pos = 0;
826                 if (!channel->send_sdu_pos){
827                     // store SDU len
828                     channel->send_sdu_pos += 2;
829                     little_endian_store_16(l2cap_payload, pos, channel->send_sdu_len);
830                     pos += 2;
831                 }
832                 payload_size = btstack_min(channel->send_sdu_len + 2 - channel->send_sdu_pos, channel->remote_mps - pos);
833                 log_info("len %u, pos %u => payload %u, credits %u", channel->send_sdu_len, channel->send_sdu_pos, payload_size, channel->credits_outgoing);
834                 memcpy(&l2cap_payload[pos], &channel->send_sdu_buffer[channel->send_sdu_pos-2], payload_size); // -2 for virtual SDU len
835                 pos += payload_size;
836                 channel->send_sdu_pos += payload_size;
837                 l2cap_setup_header(acl_buffer, channel->con_handle, 0, channel->remote_cid, pos);
838                 // done
839 
840                 channel->credits_outgoing--;
841 
842                 if (channel->send_sdu_pos >= channel->send_sdu_len + 2){
843                     channel->send_sdu_buffer = NULL;
844                     // send done event
845                     l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_LE_PACKET_SENT);
846                     // inform about can send now
847                     l2cap_le_notify_channel_can_send(channel);
848                 }
849                 hci_send_acl_packet_buffer(8 + pos);
850                 break;
851             case L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST:
852                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
853                 channel->local_sig_id = l2cap_next_sig_id();
854                 channel->state = L2CAP_STATE_WAIT_DISCONNECT;
855                 l2cap_send_le_signaling_packet( channel->con_handle, DISCONNECTION_REQUEST, channel->local_sig_id, channel->remote_cid, channel->local_cid);
856                 break;
857             case L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE:
858                 if (!hci_can_send_acl_packet_now(channel->con_handle)) break;
859                 channel->state = L2CAP_STATE_INVALID;
860                 l2cap_send_le_signaling_packet( channel->con_handle, DISCONNECTION_RESPONSE, channel->remote_sig_id, channel->local_cid, channel->remote_cid);
861                 l2cap_le_finialize_channel_close(channel);  // -- remove from list
862                 break;
863             default:
864                 break;
865         }
866     }
867 #endif
868 
869 #ifdef ENABLE_BLE
870     // send l2cap con paramter update if necessary
871     hci_connections_get_iterator(&it);
872     while(btstack_linked_list_iterator_has_next(&it)){
873         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
874         if (connection->address_type != BD_ADDR_TYPE_LE_PUBLIC && connection->address_type != BD_ADDR_TYPE_LE_RANDOM) continue;
875         if (!hci_can_send_acl_packet_now(connection->con_handle)) continue;
876         switch (connection->le_con_parameter_update_state){
877             case CON_PARAMETER_UPDATE_SEND_REQUEST:
878                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
879                 l2cap_send_le_signaling_packet(connection->con_handle, CONNECTION_PARAMETER_UPDATE_REQUEST, connection->le_con_param_update_identifier,
880                                                connection->le_conn_interval_min, connection->le_conn_interval_max, connection->le_conn_latency, connection->le_supervision_timeout);
881                 break;
882             case CON_PARAMETER_UPDATE_SEND_RESPONSE:
883                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_CHANGE_HCI_CON_PARAMETERS;
884                 l2cap_send_le_signaling_packet(connection->con_handle, CONNECTION_PARAMETER_UPDATE_RESPONSE, connection->le_con_param_update_identifier, 0);
885                 break;
886             case CON_PARAMETER_UPDATE_DENY:
887                 connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_NONE;
888                 l2cap_send_le_signaling_packet(connection->con_handle, CONNECTION_PARAMETER_UPDATE_RESPONSE, connection->le_con_param_update_identifier, 1);
889                 break;
890             default:
891                 break;
892         }
893     }
894 #endif
895 
896     // log_info("l2cap_run: exit");
897 }
898 
899 #ifdef ENABLE_CLASSIC
900 static void l2cap_handle_connection_complete(hci_con_handle_t con_handle, l2cap_channel_t * channel){
901     if (channel->state == L2CAP_STATE_WAIT_CONNECTION_COMPLETE || channel->state == L2CAP_STATE_WILL_SEND_CREATE_CONNECTION) {
902         log_info("l2cap_handle_connection_complete expected state");
903         // success, start l2cap handshake
904         channel->con_handle = con_handle;
905         // check remote SSP feature first
906         channel->state = L2CAP_STATE_WAIT_REMOTE_SUPPORTED_FEATURES;
907     }
908 }
909 
910 static void l2cap_handle_remote_supported_features_received(l2cap_channel_t * channel){
911     if (channel->state != L2CAP_STATE_WAIT_REMOTE_SUPPORTED_FEATURES) return;
912 
913     // we have been waiting for remote supported features, if both support SSP,
914     log_info("l2cap received remote supported features, sec_level_0_allowed for psm %u = %u", channel->psm, l2cap_security_level_0_allowed_for_PSM(channel->psm));
915     if (gap_ssp_supported_on_both_sides(channel->con_handle) && !l2cap_security_level_0_allowed_for_PSM(channel->psm)){
916         // request security level 2
917         channel->state = L2CAP_STATE_WAIT_OUTGOING_SECURITY_LEVEL_UPDATE;
918         gap_request_security_level(channel->con_handle, LEVEL_2);
919         return;
920     }
921     // fine, go ahead
922     channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST;
923 }
924 #endif
925 
926 #ifdef L2CAP_USES_CHANNELS
927 static l2cap_channel_t * l2cap_create_channel_entry(btstack_packet_handler_t packet_handler, bd_addr_t address, bd_addr_type_t address_type,
928     uint16_t psm, uint16_t local_mtu, gap_security_level_t security_level){
929 
930     l2cap_channel_t * channel = btstack_memory_l2cap_channel_get();
931     if (!channel) {
932         return NULL;
933     }
934 
935      // Init memory (make valgrind happy)
936     memset(channel, 0, sizeof(l2cap_channel_t));
937 
938     // fill in
939     channel->packet_handler = packet_handler;
940     bd_addr_copy(channel->address, address);
941     channel->address_type = address_type;
942     channel->psm = psm;
943     channel->local_mtu  = local_mtu;
944     channel->remote_mtu = L2CAP_MINIMAL_MTU;
945     channel->required_security_level = security_level;
946 
947     //
948     channel->local_cid = l2cap_next_local_cid();
949     channel->con_handle = 0;
950 
951     // set initial state
952     channel->state = L2CAP_STATE_WILL_SEND_CREATE_CONNECTION;
953     channel->state_var = L2CAP_CHANNEL_STATE_VAR_NONE;
954     channel->remote_sig_id = L2CAP_SIG_ID_INVALID;
955     channel->local_sig_id = L2CAP_SIG_ID_INVALID;
956     return channel;
957 }
958 #endif
959 
960 #ifdef ENABLE_CLASSIC
961 
962 /**
963  * @brief Creates L2CAP channel to the PSM of a remote device with baseband address. A new baseband connection will be initiated if necessary.
964  * @param packet_handler
965  * @param address
966  * @param psm
967  * @param mtu
968  * @param local_cid
969  */
970 
971 uint8_t l2cap_create_channel(btstack_packet_handler_t channel_packet_handler, bd_addr_t address, uint16_t psm, uint16_t mtu, uint16_t * out_local_cid){
972     // limit MTU to the size of our outtgoing HCI buffer
973     uint16_t local_mtu = btstack_min(mtu, l2cap_max_mtu());
974 
975     log_info("L2CAP_CREATE_CHANNEL addr %s psm 0x%x mtu %u -> local mtu %u", bd_addr_to_str(address), psm, mtu, local_mtu);
976 
977     l2cap_channel_t * channel = l2cap_create_channel_entry(channel_packet_handler, address, BD_ADDR_TYPE_CLASSIC, psm, local_mtu, LEVEL_0);
978     if (!channel) {
979         return BTSTACK_MEMORY_ALLOC_FAILED;
980     }
981 
982     // add to connections list
983     btstack_linked_list_add(&l2cap_channels, (btstack_linked_item_t *) channel);
984 
985     // store local_cid
986     if (out_local_cid){
987        *out_local_cid = channel->local_cid;
988     }
989 
990     // check if hci connection is already usable
991     hci_connection_t * conn = hci_connection_for_bd_addr_and_type(address, BD_ADDR_TYPE_CLASSIC);
992     if (conn){
993         log_info("l2cap_create_channel, hci connection already exists");
994         l2cap_handle_connection_complete(conn->con_handle, channel);
995         // check if remote supported fearures are already received
996         if (conn->bonding_flags & BONDING_RECEIVED_REMOTE_FEATURES) {
997             l2cap_handle_remote_supported_features_received(channel);
998         }
999     }
1000 
1001     l2cap_run();
1002 
1003     return 0;
1004 }
1005 
1006 void
1007 l2cap_disconnect(uint16_t local_cid, uint8_t reason){
1008     log_info("L2CAP_DISCONNECT local_cid 0x%x reason 0x%x", local_cid, reason);
1009     // find channel for local_cid
1010     l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
1011     if (channel) {
1012         channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
1013     }
1014     // process
1015     l2cap_run();
1016 }
1017 
1018 static void l2cap_handle_connection_failed_for_addr(bd_addr_t address, uint8_t status){
1019     btstack_linked_list_iterator_t it;
1020     btstack_linked_list_iterator_init(&it, &l2cap_channels);
1021     while (btstack_linked_list_iterator_has_next(&it)){
1022         l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1023         if ( bd_addr_cmp( channel->address, address) != 0) continue;
1024         // channel for this address found
1025         switch (channel->state){
1026             case L2CAP_STATE_WAIT_CONNECTION_COMPLETE:
1027             case L2CAP_STATE_WILL_SEND_CREATE_CONNECTION:
1028                 // failure, forward error code
1029                 l2cap_emit_channel_opened(channel, status);
1030                 // discard channel
1031                 l2cap_stop_rtx(channel);
1032                 btstack_linked_list_iterator_remove(&it);
1033                 btstack_memory_l2cap_channel_free(channel);
1034                 break;
1035             default:
1036                 break;
1037         }
1038     }
1039 }
1040 
1041 static void l2cap_handle_connection_success_for_addr(bd_addr_t address, hci_con_handle_t handle){
1042     btstack_linked_list_iterator_t it;
1043     btstack_linked_list_iterator_init(&it, &l2cap_channels);
1044     while (btstack_linked_list_iterator_has_next(&it)){
1045         l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1046         if ( ! bd_addr_cmp( channel->address, address) ){
1047             l2cap_handle_connection_complete(handle, channel);
1048         }
1049     }
1050     // process
1051     l2cap_run();
1052 }
1053 #endif
1054 
1055 static void l2cap_notify_channel_can_send(void){
1056 
1057 #ifdef ENABLE_CLASSIC
1058     btstack_linked_list_iterator_t it;
1059     btstack_linked_list_iterator_init(&it, &l2cap_channels);
1060     while (btstack_linked_list_iterator_has_next(&it)){
1061         l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1062         if (!channel->waiting_for_can_send_now) continue;
1063         if (!hci_can_send_acl_packet_now(channel->con_handle)) continue;
1064         channel->waiting_for_can_send_now = 0;
1065         l2cap_emit_can_send_now(channel->packet_handler, channel->local_cid);
1066     }
1067 #endif
1068 
1069     int i;
1070     for (i=0;i<L2CAP_FIXED_CHANNEL_TABLE_SIZE;i++){
1071         if (!fixed_channels[i].callback) continue;
1072         if (!fixed_channels[i].waiting_for_can_send_now) continue;
1073         int can_send = 0;
1074         if (l2cap_fixed_channel_table_index_is_le(i)){
1075 #ifdef ENABLE_BLE
1076             can_send = hci_can_send_acl_le_packet_now();
1077 #endif
1078         } else {
1079 #ifdef ENABLE_CLASSIC
1080             can_send = hci_can_send_acl_classic_packet_now();
1081 #endif
1082         }
1083         if (!can_send) continue;
1084         fixed_channels[i].waiting_for_can_send_now = 0;
1085         l2cap_emit_can_send_now(fixed_channels[i].callback, l2cap_fixed_channel_table_channel_id_for_index(i));
1086     }
1087 }
1088 
1089 static void l2cap_hci_event_handler(uint8_t packet_type, uint16_t cid, uint8_t *packet, uint16_t size){
1090 
1091     UNUSED(packet_type);
1092     UNUSED(cid);
1093     UNUSED(size);
1094 
1095     bd_addr_t address;
1096     hci_con_handle_t handle;
1097     int hci_con_used;
1098     btstack_linked_list_iterator_t it;
1099 
1100     // avoid unused warnings
1101     UNUSED(address);
1102     UNUSED(hci_con_used);
1103     UNUSED(it);
1104     UNUSED(handle);
1105 
1106     switch(hci_event_packet_get_type(packet)){
1107 
1108         // Notify channel packet handler if they can send now
1109         case HCI_EVENT_TRANSPORT_PACKET_SENT:
1110         case HCI_EVENT_NUMBER_OF_COMPLETED_PACKETS:
1111             l2cap_run();    // try sending signaling packets first
1112             l2cap_notify_channel_can_send();
1113             break;
1114 
1115         case HCI_EVENT_COMMAND_STATUS:
1116             l2cap_run();    // try sending signaling packets first
1117             break;
1118 
1119 #ifdef ENABLE_CLASSIC
1120         // handle connection complete events
1121         case HCI_EVENT_CONNECTION_COMPLETE:
1122             reverse_bd_addr(&packet[5], address);
1123             if (packet[2] == 0){
1124                 handle = little_endian_read_16(packet, 3);
1125                 l2cap_handle_connection_success_for_addr(address, handle);
1126             } else {
1127                 l2cap_handle_connection_failed_for_addr(address, packet[2]);
1128             }
1129             break;
1130 
1131         // handle successful create connection cancel command
1132         case HCI_EVENT_COMMAND_COMPLETE:
1133             if (HCI_EVENT_IS_COMMAND_COMPLETE(packet, hci_create_connection_cancel)) {
1134                 if (packet[5] == 0){
1135                     reverse_bd_addr(&packet[6], address);
1136                     // CONNECTION TERMINATED BY LOCAL HOST (0X16)
1137                     l2cap_handle_connection_failed_for_addr(address, 0x16);
1138                 }
1139             }
1140             l2cap_run();    // try sending signaling packets first
1141             break;
1142 #endif
1143 
1144         // handle disconnection complete events
1145         case HCI_EVENT_DISCONNECTION_COMPLETE:
1146             // send l2cap disconnect events for all channels on this handle and free them
1147 #ifdef ENABLE_CLASSIC
1148             handle = little_endian_read_16(packet, 3);
1149             btstack_linked_list_iterator_init(&it, &l2cap_channels);
1150             while (btstack_linked_list_iterator_has_next(&it)){
1151                 l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1152                 if (channel->con_handle != handle) continue;
1153                 l2cap_emit_channel_closed(channel);
1154                 l2cap_stop_rtx(channel);
1155                 btstack_linked_list_iterator_remove(&it);
1156                 btstack_memory_l2cap_channel_free(channel);
1157             }
1158 #endif
1159 #ifdef ENABLE_LE_DATA_CHANNELS
1160             handle = little_endian_read_16(packet, 3);
1161             btstack_linked_list_iterator_init(&it, &l2cap_le_channels);
1162             while (btstack_linked_list_iterator_has_next(&it)){
1163                 l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1164                 if (channel->con_handle != handle) continue;
1165                 l2cap_emit_channel_closed(channel);
1166                 btstack_linked_list_iterator_remove(&it);
1167                 btstack_memory_l2cap_channel_free(channel);
1168             }
1169 #endif
1170             break;
1171 
1172         // HCI Connection Timeouts
1173 #ifdef ENABLE_CLASSIC
1174         case L2CAP_EVENT_TIMEOUT_CHECK:
1175             handle = little_endian_read_16(packet, 2);
1176             if (gap_get_connection_type(handle) != GAP_CONNECTION_ACL) break;
1177             if (hci_authentication_active_for_handle(handle)) break;
1178             hci_con_used = 0;
1179             btstack_linked_list_iterator_init(&it, &l2cap_channels);
1180             while (btstack_linked_list_iterator_has_next(&it)){
1181                 l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1182                 if (channel->con_handle != handle) continue;
1183                 hci_con_used = 1;
1184                 break;
1185             }
1186             if (hci_con_used) break;
1187             if (!hci_can_send_command_packet_now()) break;
1188             hci_send_cmd(&hci_disconnect, handle, 0x13); // remote closed connection
1189             break;
1190 
1191         case HCI_EVENT_READ_REMOTE_SUPPORTED_FEATURES_COMPLETE:
1192             handle = little_endian_read_16(packet, 3);
1193             btstack_linked_list_iterator_init(&it, &l2cap_channels);
1194             while (btstack_linked_list_iterator_has_next(&it)){
1195                 l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1196                 if (channel->con_handle != handle) continue;
1197                 l2cap_handle_remote_supported_features_received(channel);
1198                 break;
1199             }
1200             break;
1201 
1202         case GAP_EVENT_SECURITY_LEVEL:
1203             handle = little_endian_read_16(packet, 2);
1204             log_info("l2cap - security level update");
1205             btstack_linked_list_iterator_init(&it, &l2cap_channels);
1206             while (btstack_linked_list_iterator_has_next(&it)){
1207                 l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1208                 if (channel->con_handle != handle) continue;
1209 
1210                 log_info("l2cap - state %u", channel->state);
1211 
1212                 gap_security_level_t actual_level = (gap_security_level_t) packet[4];
1213                 gap_security_level_t required_level = channel->required_security_level;
1214 
1215                 switch (channel->state){
1216                     case L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE:
1217                         if (actual_level >= required_level){
1218                             channel->state = L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT;
1219                             l2cap_emit_incoming_connection(channel);
1220                         } else {
1221                             channel->reason = 0x0003; // security block
1222                             channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE;
1223                         }
1224                         break;
1225 
1226                     case L2CAP_STATE_WAIT_OUTGOING_SECURITY_LEVEL_UPDATE:
1227                         if (actual_level >= required_level){
1228                             channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_REQUEST;
1229                         } else {
1230                             // disconnnect, authentication not good enough
1231                             hci_disconnect_security_block(handle);
1232                         }
1233                         break;
1234 
1235                     default:
1236                         break;
1237                 }
1238             }
1239             break;
1240 #endif
1241 
1242         default:
1243             break;
1244     }
1245 
1246     l2cap_run();
1247 }
1248 
1249 static void l2cap_register_signaling_response(hci_con_handle_t handle, uint8_t code, uint8_t sig_id, uint16_t cid, uint16_t data){
1250     // Vol 3, Part A, 4.3: "The DCID and SCID fields shall be ignored when the result field indi- cates the connection was refused."
1251     if (signaling_responses_pending < NR_PENDING_SIGNALING_RESPONSES) {
1252         signaling_responses[signaling_responses_pending].handle = handle;
1253         signaling_responses[signaling_responses_pending].code = code;
1254         signaling_responses[signaling_responses_pending].sig_id = sig_id;
1255         signaling_responses[signaling_responses_pending].cid = cid;
1256         signaling_responses[signaling_responses_pending].data = data;
1257         signaling_responses_pending++;
1258         l2cap_run();
1259     }
1260 }
1261 
1262 #ifdef ENABLE_CLASSIC
1263 static void l2cap_handle_disconnect_request(l2cap_channel_t *channel, uint16_t identifier){
1264     channel->remote_sig_id = identifier;
1265     channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE;
1266     l2cap_run();
1267 }
1268 
1269 static void l2cap_handle_connection_request(hci_con_handle_t handle, uint8_t sig_id, uint16_t psm, uint16_t source_cid){
1270 
1271     // log_info("l2cap_handle_connection_request for handle %u, psm %u cid 0x%02x", handle, psm, source_cid);
1272     l2cap_service_t *service = l2cap_get_service(psm);
1273     if (!service) {
1274         // 0x0002 PSM not supported
1275         l2cap_register_signaling_response(handle, CONNECTION_REQUEST, sig_id, source_cid, 0x0002);
1276         return;
1277     }
1278 
1279     hci_connection_t * hci_connection = hci_connection_for_handle( handle );
1280     if (!hci_connection) {
1281         //
1282         log_error("no hci_connection for handle %u", handle);
1283         return;
1284     }
1285 
1286     // alloc structure
1287     // log_info("l2cap_handle_connection_request register channel");
1288     l2cap_channel_t * channel = l2cap_create_channel_entry(service->packet_handler, hci_connection->address, BD_ADDR_TYPE_CLASSIC,
1289     psm, service->mtu, service->required_security_level);
1290     if (!channel){
1291         // 0x0004 No resources available
1292         l2cap_register_signaling_response(handle, CONNECTION_REQUEST, sig_id, source_cid, 0x0004);
1293         return;
1294     }
1295 
1296     channel->con_handle = handle;
1297     channel->remote_cid = source_cid;
1298     channel->remote_sig_id = sig_id;
1299 
1300     // limit local mtu to max acl packet length - l2cap header
1301     if (channel->local_mtu > l2cap_max_mtu()) {
1302         channel->local_mtu = l2cap_max_mtu();
1303     }
1304 
1305     // set initial state
1306     channel->state =      L2CAP_STATE_WAIT_INCOMING_SECURITY_LEVEL_UPDATE;
1307     channel->state_var  = (L2CAP_CHANNEL_STATE_VAR) (L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND | L2CAP_CHANNEL_STATE_VAR_INCOMING);
1308 
1309     // add to connections list
1310     btstack_linked_list_add(&l2cap_channels, (btstack_linked_item_t *) channel);
1311 
1312     // assert security requirements
1313     gap_request_security_level(handle, channel->required_security_level);
1314 }
1315 
1316 void l2cap_accept_connection(uint16_t local_cid){
1317     log_info("L2CAP_ACCEPT_CONNECTION local_cid 0x%x", local_cid);
1318     l2cap_channel_t * channel = l2cap_get_channel_for_local_cid(local_cid);
1319     if (!channel) {
1320         log_error("l2cap_accept_connection called but local_cid 0x%x not found", local_cid);
1321         return;
1322     }
1323 
1324     channel->state = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_ACCEPT;
1325 
1326     // process
1327     l2cap_run();
1328 }
1329 
1330 void l2cap_decline_connection(uint16_t local_cid){
1331     log_info("L2CAP_DECLINE_CONNECTION local_cid 0x%x", local_cid);
1332     l2cap_channel_t * channel = l2cap_get_channel_for_local_cid( local_cid);
1333     if (!channel) {
1334         log_error( "l2cap_decline_connection called but local_cid 0x%x not found", local_cid);
1335         return;
1336     }
1337     channel->state  = L2CAP_STATE_WILL_SEND_CONNECTION_RESPONSE_DECLINE;
1338     channel->reason = 0x04; // no resources available
1339     l2cap_run();
1340 }
1341 
1342 static void l2cap_signaling_handle_configure_request(l2cap_channel_t *channel, uint8_t *command){
1343 
1344     channel->remote_sig_id = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET];
1345 
1346     uint16_t flags = little_endian_read_16(command, 6);
1347     if (flags & 1) {
1348         channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT);
1349     }
1350 
1351     // accept the other's configuration options
1352     uint16_t end_pos = 4 + little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET);
1353     uint16_t pos     = 8;
1354     while (pos < end_pos){
1355         uint8_t option_hint = command[pos] >> 7;
1356         uint8_t option_type = command[pos] & 0x7f;
1357         log_info("l2cap cid %u, hint %u, type %u", channel->local_cid, option_hint, option_type);
1358         pos++;
1359         uint8_t length = command[pos++];
1360         // MTU { type(8): 1, len(8):2, MTU(16) }
1361         if (option_type == 1 && length == 2){
1362             channel->remote_mtu = little_endian_read_16(command, pos);
1363             if (channel->remote_mtu > l2cap_max_mtu()){
1364                 log_info("Remote MTU %u larger than outgoing buffer, only using MTU = %u", channel->remote_mtu, l2cap_max_mtu());
1365                 channel->remote_mtu = l2cap_max_mtu();
1366             }
1367             channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_MTU);
1368         }
1369         // Flush timeout { type(8):2, len(8): 2, Flush Timeout(16)}
1370         if (option_type == 2 && length == 2){
1371             channel->flush_timeout = little_endian_read_16(command, pos);
1372         }
1373         // check for unknown options
1374         if (option_hint == 0 && (option_type == 0 || option_type >= 0x07)){
1375             log_info("l2cap cid %u, unknown options", channel->local_cid);
1376             channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_INVALID);
1377         }
1378         pos += length;
1379     }
1380 }
1381 
1382 static int l2cap_channel_ready_for_open(l2cap_channel_t *channel){
1383     // log_info("l2cap_channel_ready_for_open 0x%02x", channel->state_var);
1384     if ((channel->state_var & L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_RSP) == 0) return 0;
1385     if ((channel->state_var & L2CAP_CHANNEL_STATE_VAR_SENT_CONF_RSP) == 0) return 0;
1386     // addition check that fixes re-entrance issue causing l2cap event channel opened twice
1387     if (channel->state == L2CAP_STATE_OPEN) return 0;
1388     return 1;
1389 }
1390 
1391 
1392 static void l2cap_signaling_handler_channel(l2cap_channel_t *channel, uint8_t *command){
1393 
1394     uint8_t  code       = command[L2CAP_SIGNALING_COMMAND_CODE_OFFSET];
1395     uint8_t  identifier = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET];
1396     uint16_t result = 0;
1397 
1398     log_info("L2CAP signaling handler code %u, state %u", code, channel->state);
1399 
1400     // handle DISCONNECT REQUESTS seperately
1401     if (code == DISCONNECTION_REQUEST){
1402         switch (channel->state){
1403             case L2CAP_STATE_CONFIG:
1404             case L2CAP_STATE_OPEN:
1405             case L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST:
1406             case L2CAP_STATE_WAIT_DISCONNECT:
1407                 l2cap_handle_disconnect_request(channel, identifier);
1408                 break;
1409 
1410             default:
1411                 // ignore in other states
1412                 break;
1413         }
1414         return;
1415     }
1416 
1417     // @STATEMACHINE(l2cap)
1418     switch (channel->state) {
1419 
1420         case L2CAP_STATE_WAIT_CONNECT_RSP:
1421             switch (code){
1422                 case CONNECTION_RESPONSE:
1423                     l2cap_stop_rtx(channel);
1424                     result = little_endian_read_16 (command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+4);
1425                     switch (result) {
1426                         case 0:
1427                             // successful connection
1428                             channel->remote_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
1429                             channel->state = L2CAP_STATE_CONFIG;
1430                             channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
1431                             break;
1432                         case 1:
1433                             // connection pending. get some coffee, but start the ERTX
1434                             l2cap_start_ertx(channel);
1435                             break;
1436                         default:
1437                             // channel closed
1438                             channel->state = L2CAP_STATE_CLOSED;
1439                             // map l2cap connection response result to BTstack status enumeration
1440                             l2cap_emit_channel_opened(channel, L2CAP_CONNECTION_RESPONSE_RESULT_SUCCESSFUL + result);
1441 
1442                             // drop link key if security block
1443                             if (L2CAP_CONNECTION_RESPONSE_RESULT_SUCCESSFUL + result == L2CAP_CONNECTION_RESPONSE_RESULT_REFUSED_SECURITY){
1444                                 gap_drop_link_key_for_bd_addr(channel->address);
1445                             }
1446 
1447                             // discard channel
1448                             btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
1449                             btstack_memory_l2cap_channel_free(channel);
1450                             break;
1451                     }
1452                     break;
1453 
1454                 default:
1455                     //@TODO: implement other signaling packets
1456                     break;
1457             }
1458             break;
1459 
1460         case L2CAP_STATE_CONFIG:
1461             result = little_endian_read_16 (command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+4);
1462             switch (code) {
1463                 case CONFIGURE_REQUEST:
1464                     channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP);
1465                     l2cap_signaling_handle_configure_request(channel, command);
1466                     if (!(channel->state_var & L2CAP_CHANNEL_STATE_VAR_SEND_CONF_RSP_CONT)){
1467                         // only done if continuation not set
1468                         channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_REQ);
1469                     }
1470                     break;
1471                 case CONFIGURE_RESPONSE:
1472                     l2cap_stop_rtx(channel);
1473                     switch (result){
1474                         case 0: // success
1475                             channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_RCVD_CONF_RSP);
1476                             break;
1477                         case 4: // pending
1478                             l2cap_start_ertx(channel);
1479                             break;
1480                         default:
1481                             // retry on negative result
1482                             channelStateVarSetFlag(channel, L2CAP_CHANNEL_STATE_VAR_SEND_CONF_REQ);
1483                             break;
1484                     }
1485                     break;
1486                 default:
1487                     break;
1488             }
1489             if (l2cap_channel_ready_for_open(channel)){
1490                 // for open:
1491                 channel->state = L2CAP_STATE_OPEN;
1492                 l2cap_emit_channel_opened(channel, 0);
1493             }
1494             break;
1495 
1496         case L2CAP_STATE_WAIT_DISCONNECT:
1497             switch (code) {
1498                 case DISCONNECTION_RESPONSE:
1499                     l2cap_finialize_channel_close(channel);
1500                     break;
1501                 default:
1502                     //@TODO: implement other signaling packets
1503                     break;
1504             }
1505             break;
1506 
1507         case L2CAP_STATE_CLOSED:
1508             // @TODO handle incoming requests
1509             break;
1510 
1511         case L2CAP_STATE_OPEN:
1512             //@TODO: implement other signaling packets, e.g. re-configure
1513             break;
1514         default:
1515             break;
1516     }
1517     // log_info("new state %u", channel->state);
1518 }
1519 
1520 
1521 static void l2cap_signaling_handler_dispatch( hci_con_handle_t handle, uint8_t * command){
1522 
1523     // get code, signalind identifier and command len
1524     uint8_t code   = command[L2CAP_SIGNALING_COMMAND_CODE_OFFSET];
1525     uint8_t sig_id = command[L2CAP_SIGNALING_COMMAND_SIGID_OFFSET];
1526 
1527     // not for a particular channel, and not CONNECTION_REQUEST, ECHO_[REQUEST|RESPONSE], INFORMATION_REQUEST
1528     if (code < 1 || code == ECHO_RESPONSE || code > INFORMATION_REQUEST){
1529         l2cap_register_signaling_response(handle, COMMAND_REJECT, sig_id, 0, L2CAP_REJ_CMD_UNKNOWN);
1530         return;
1531     }
1532 
1533     // general commands without an assigned channel
1534     switch(code) {
1535 
1536         case CONNECTION_REQUEST: {
1537             uint16_t psm =        little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
1538             uint16_t source_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+2);
1539             l2cap_handle_connection_request(handle, sig_id, psm, source_cid);
1540             return;
1541         }
1542 
1543         case ECHO_REQUEST:
1544             l2cap_register_signaling_response(handle, code, sig_id, 0, 0);
1545             return;
1546 
1547         case INFORMATION_REQUEST: {
1548             uint16_t infoType = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
1549             l2cap_register_signaling_response(handle, code, sig_id, 0, infoType);
1550             return;
1551         }
1552 
1553         default:
1554             break;
1555     }
1556 
1557 
1558     // Get potential destination CID
1559     uint16_t dest_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET);
1560 
1561     // Find channel for this sig_id and connection handle
1562     btstack_linked_list_iterator_t it;
1563     btstack_linked_list_iterator_init(&it, &l2cap_channels);
1564     while (btstack_linked_list_iterator_has_next(&it)){
1565         l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1566         if (channel->con_handle != handle) continue;
1567         if (code & 1) {
1568             // match odd commands (responses) by previous signaling identifier
1569             if (channel->local_sig_id == sig_id) {
1570                 l2cap_signaling_handler_channel(channel, command);
1571                 break;
1572             }
1573         } else {
1574             // match even commands (requests) by local channel id
1575             if (channel->local_cid == dest_cid) {
1576                 l2cap_signaling_handler_channel(channel, command);
1577                 break;
1578             }
1579         }
1580     }
1581 }
1582 #endif
1583 
1584 #ifdef ENABLE_BLE
1585 
1586 static void l2cap_emit_connection_parameter_update_response(hci_con_handle_t con_handle, uint16_t result){
1587     uint8_t event[6];
1588     event[0] = L2CAP_EVENT_CONNECTION_PARAMETER_UPDATE_RESPONSE;
1589     event[1] = 4;
1590     little_endian_store_16(event, 2, con_handle);
1591     little_endian_store_16(event, 4, result);
1592     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
1593     if (!l2cap_event_packet_handler) return;
1594     (*l2cap_event_packet_handler)(HCI_EVENT_PACKET, 0, event, sizeof(event));
1595 }
1596 
1597 // @returns valid
1598 static int l2cap_le_signaling_handler_dispatch(hci_con_handle_t handle, uint8_t * command, uint8_t sig_id){
1599     hci_connection_t * connection;
1600     uint16_t result;
1601     uint8_t  event[10];
1602 
1603 #ifdef ENABLE_LE_DATA_CHANNELS
1604     btstack_linked_list_iterator_t it;
1605     l2cap_channel_t * channel;
1606     uint16_t local_cid;
1607     uint16_t le_psm;
1608     uint16_t new_credits;
1609     uint16_t credits_before;
1610     l2cap_service_t * service;
1611     uint16_t source_cid;
1612 #endif
1613 
1614     uint8_t code   = command[L2CAP_SIGNALING_COMMAND_CODE_OFFSET];
1615     log_info("l2cap_le_signaling_handler_dispatch: command 0x%02x, sig id %u", code, sig_id);
1616 
1617     switch (code){
1618 
1619         case CONNECTION_PARAMETER_UPDATE_RESPONSE:
1620             result = little_endian_read_16(command, 4);
1621             l2cap_emit_connection_parameter_update_response(handle, result);
1622             break;
1623 
1624         case CONNECTION_PARAMETER_UPDATE_REQUEST:
1625             connection = hci_connection_for_handle(handle);
1626             if (connection){
1627                 if (connection->role != HCI_ROLE_MASTER){
1628                     // reject command without notifying upper layer when not in master role
1629                     return 0;
1630                 }
1631                 int update_parameter = 1;
1632                 le_connection_parameter_range_t existing_range;
1633                 gap_get_connection_parameter_range(&existing_range);
1634                 uint16_t le_conn_interval_min = little_endian_read_16(command,8);
1635                 uint16_t le_conn_interval_max = little_endian_read_16(command,10);
1636                 uint16_t le_conn_latency = little_endian_read_16(command,12);
1637                 uint16_t le_supervision_timeout = little_endian_read_16(command,14);
1638 
1639                 if (le_conn_interval_min < existing_range.le_conn_interval_min) update_parameter = 0;
1640                 if (le_conn_interval_max > existing_range.le_conn_interval_max) update_parameter = 0;
1641 
1642                 if (le_conn_latency < existing_range.le_conn_latency_min) update_parameter = 0;
1643                 if (le_conn_latency > existing_range.le_conn_latency_max) update_parameter = 0;
1644 
1645                 if (le_supervision_timeout < existing_range.le_supervision_timeout_min) update_parameter = 0;
1646                 if (le_supervision_timeout > existing_range.le_supervision_timeout_max) update_parameter = 0;
1647 
1648                 if (update_parameter){
1649                     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_SEND_RESPONSE;
1650                     connection->le_conn_interval_min = le_conn_interval_min;
1651                     connection->le_conn_interval_max = le_conn_interval_max;
1652                     connection->le_conn_latency = le_conn_latency;
1653                     connection->le_supervision_timeout = le_supervision_timeout;
1654                 } else {
1655                     connection->le_con_parameter_update_state = CON_PARAMETER_UPDATE_DENY;
1656                 }
1657                 connection->le_con_param_update_identifier = sig_id;
1658             }
1659 
1660             if (!l2cap_event_packet_handler) break;
1661 
1662             event[0] = L2CAP_EVENT_CONNECTION_PARAMETER_UPDATE_REQUEST;
1663             event[1] = 8;
1664             memcpy(&event[2], &command[4], 8);
1665             hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
1666             (*l2cap_event_packet_handler)( HCI_EVENT_PACKET, 0, event, sizeof(event));
1667             break;
1668 
1669 #ifdef ENABLE_LE_DATA_CHANNELS
1670 
1671         case COMMAND_REJECT:
1672             // Find channel for this sig_id and connection handle
1673             channel = NULL;
1674             btstack_linked_list_iterator_init(&it, &l2cap_le_channels);
1675             while (btstack_linked_list_iterator_has_next(&it)){
1676                 l2cap_channel_t * a_channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1677                 if (a_channel->con_handle   != handle) continue;
1678                 if (a_channel->local_sig_id != sig_id) continue;
1679                 channel = a_channel;
1680                 break;
1681             }
1682             if (!channel) break;
1683 
1684             // if received while waiting for le connection response, assume legacy device
1685             if (channel->state == L2CAP_STATE_WAIT_LE_CONNECTION_RESPONSE){
1686                 channel->state = L2CAP_STATE_CLOSED;
1687                 // no official value for this, use: Connection refused – LE_PSM not supported - 0x0002
1688                 l2cap_emit_le_channel_opened(channel, 0x0002);
1689 
1690                 // discard channel
1691                 btstack_linked_list_remove(&l2cap_le_channels, (btstack_linked_item_t *) channel);
1692                 btstack_memory_l2cap_channel_free(channel);
1693                 break;
1694             }
1695             break;
1696 
1697         case LE_CREDIT_BASED_CONNECTION_REQUEST:
1698 
1699             // get hci connection, bail if not found (must not happen)
1700             connection = hci_connection_for_handle(handle);
1701             if (!connection) return 0;
1702 
1703             // check if service registered
1704             le_psm  = little_endian_read_16(command, 4);
1705             service = l2cap_le_get_service(le_psm);
1706             source_cid = little_endian_read_16(command, 6);
1707 
1708             if (service){
1709                 if (source_cid < 0x40){
1710                     // 0x0009 Connection refused - Invalid Source CID
1711                     l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0009);
1712                     return 1;
1713                 }
1714 
1715                 // go through list of channels for this ACL connection and check if we get a match
1716                 btstack_linked_list_iterator_init(&it, &l2cap_le_channels);
1717                 while (btstack_linked_list_iterator_has_next(&it)){
1718                     l2cap_channel_t * a_channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1719                     if (a_channel->con_handle != handle) continue;
1720                     if (a_channel->remote_cid != source_cid) continue;
1721                     // 0x000a Connection refused - Source CID already allocated
1722                     l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x000a);
1723                     return 1;
1724                 }
1725 
1726                 // security: check encryption
1727                 if (service->required_security_level >= LEVEL_2){
1728                     if (sm_encryption_key_size(handle) == 0){
1729                         // 0x0008 Connection refused - insufficient encryption
1730                         l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0008);
1731                         return 1;
1732                     }
1733                     // anything less than 16 byte key size is insufficient
1734                     if (sm_encryption_key_size(handle) < 16){
1735                         // 0x0007 Connection refused – insufficient encryption key size
1736                         l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0007);
1737                         return 1;
1738                     }
1739                 }
1740 
1741                 // security: check authencation
1742                 if (service->required_security_level >= LEVEL_3){
1743                     if (!sm_authenticated(handle)){
1744                         // 0x0005 Connection refused – insufficient authentication
1745                         l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0005);
1746                         return 1;
1747                     }
1748                 }
1749 
1750                 // security: check authorization
1751                 if (service->required_security_level >= LEVEL_4){
1752                     if (sm_authorization_state(handle) != AUTHORIZATION_GRANTED){
1753                         // 0x0006 Connection refused – insufficient authorization
1754                         l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0006);
1755                         return 1;
1756                     }
1757                 }
1758 
1759                 // allocate channel
1760                 channel = l2cap_create_channel_entry(service->packet_handler, connection->address,
1761                     BD_ADDR_TYPE_LE_RANDOM, le_psm, service->mtu, service->required_security_level);
1762                 if (!channel){
1763                     // 0x0004 Connection refused – no resources available
1764                     l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0004);
1765                     return 1;
1766                 }
1767 
1768                 channel->con_handle = handle;
1769                 channel->remote_cid = source_cid;
1770                 channel->remote_sig_id = sig_id;
1771                 channel->remote_mtu = little_endian_read_16(command, 8);
1772                 channel->remote_mps = little_endian_read_16(command, 10);
1773                 channel->credits_outgoing = little_endian_read_16(command, 12);
1774 
1775                 // set initial state
1776                 channel->state      = L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT;
1777                 channel->state_var |= L2CAP_CHANNEL_STATE_VAR_INCOMING;
1778 
1779                 // add to connections list
1780                 btstack_linked_list_add(&l2cap_le_channels, (btstack_linked_item_t *) channel);
1781 
1782                 // post connection request event
1783                 l2cap_emit_le_incoming_connection(channel);
1784 
1785             } else {
1786                 // Connection refused – LE_PSM not supported
1787                 l2cap_register_signaling_response(handle, LE_CREDIT_BASED_CONNECTION_REQUEST, sig_id, source_cid, 0x0002);
1788             }
1789             break;
1790 
1791         case LE_CREDIT_BASED_CONNECTION_RESPONSE:
1792             // Find channel for this sig_id and connection handle
1793             channel = NULL;
1794             btstack_linked_list_iterator_init(&it, &l2cap_le_channels);
1795             while (btstack_linked_list_iterator_has_next(&it)){
1796                 l2cap_channel_t * a_channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
1797                 if (a_channel->con_handle   != handle) continue;
1798                 if (a_channel->local_sig_id != sig_id) continue;
1799                 channel = a_channel;
1800                 break;
1801             }
1802             if (!channel) break;
1803 
1804             // cid + 0
1805             result = little_endian_read_16 (command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET+8);
1806             if (result){
1807                 channel->state = L2CAP_STATE_CLOSED;
1808                 // map l2cap connection response result to BTstack status enumeration
1809                 l2cap_emit_le_channel_opened(channel, result);
1810 
1811                 // discard channel
1812                 btstack_linked_list_remove(&l2cap_le_channels, (btstack_linked_item_t *) channel);
1813                 btstack_memory_l2cap_channel_free(channel);
1814                 break;
1815             }
1816 
1817             // success
1818             channel->remote_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 0);
1819             channel->remote_mtu = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 2);
1820             channel->remote_mps = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 4);
1821             channel->credits_outgoing = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 6);
1822             channel->state = L2CAP_STATE_OPEN;
1823             l2cap_emit_le_channel_opened(channel, result);
1824             break;
1825 
1826         case LE_FLOW_CONTROL_CREDIT:
1827             // find channel
1828             local_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 0);
1829             channel = l2cap_le_get_channel_for_local_cid(local_cid);
1830             if (!channel) {
1831                 log_error("l2cap: no channel for cid 0x%02x", local_cid);
1832                 break;
1833             }
1834             new_credits = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 2);
1835             credits_before = channel->credits_outgoing;
1836             channel->credits_outgoing += new_credits;
1837             // check for credit overrun
1838             if (credits_before > channel->credits_outgoing){
1839                 log_error("l2cap: new credits caused overrrun for cid 0x%02x, disconnecting", local_cid);
1840                 channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
1841                 break;
1842             }
1843             log_info("l2cap: %u credits for 0x%02x, now %u", new_credits, local_cid, channel->credits_outgoing);
1844             break;
1845 
1846         case DISCONNECTION_REQUEST:
1847             // find channel
1848             local_cid = little_endian_read_16(command, L2CAP_SIGNALING_COMMAND_DATA_OFFSET + 0);
1849             channel = l2cap_le_get_channel_for_local_cid(local_cid);
1850             if (!channel) {
1851                 log_error("l2cap: no channel for cid 0x%02x", local_cid);
1852                 break;
1853             }
1854             channel->remote_sig_id = sig_id;
1855             channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_RESPONSE;
1856             break;
1857 
1858 #endif
1859 
1860         case DISCONNECTION_RESPONSE:
1861             break;
1862 
1863         default:
1864             // command unknown -> reject command
1865             return 0;
1866     }
1867     return 1;
1868 }
1869 #endif
1870 
1871 static void l2cap_acl_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size ){
1872     UNUSED(packet_type);
1873     UNUSED(channel);
1874 
1875     l2cap_channel_t * l2cap_channel;
1876     UNUSED(l2cap_channel);
1877 
1878     // Get Channel ID
1879     uint16_t channel_id = READ_L2CAP_CHANNEL_ID(packet);
1880     hci_con_handle_t handle = READ_ACL_CONNECTION_HANDLE(packet);
1881 
1882     switch (channel_id) {
1883 
1884 #ifdef ENABLE_CLASSIC
1885         case L2CAP_CID_SIGNALING: {
1886             uint16_t command_offset = 8;
1887             while (command_offset < size) {
1888                 // handle signaling commands
1889                 l2cap_signaling_handler_dispatch(handle, &packet[command_offset]);
1890 
1891                 // increment command_offset
1892                 command_offset += L2CAP_SIGNALING_COMMAND_DATA_OFFSET + little_endian_read_16(packet, command_offset + L2CAP_SIGNALING_COMMAND_LENGTH_OFFSET);
1893             }
1894             break;
1895         }
1896 #endif
1897 
1898 #ifdef ENABLE_BLE
1899         case L2CAP_CID_SIGNALING_LE: {
1900             uint16_t sig_id = packet[COMPLETE_L2CAP_HEADER + 1];
1901             int      valid  = l2cap_le_signaling_handler_dispatch(handle, &packet[COMPLETE_L2CAP_HEADER], sig_id);
1902             if (!valid){
1903                 l2cap_register_signaling_response(handle, COMMAND_REJECT_LE, sig_id, 0, L2CAP_REJ_CMD_UNKNOWN);
1904             }
1905             break;
1906         }
1907 #endif
1908 
1909         case L2CAP_CID_ATTRIBUTE_PROTOCOL:
1910             if (fixed_channels[L2CAP_FIXED_CHANNEL_TABLE_INDEX_ATTRIBUTE_PROTOCOL].callback) {
1911                 (*fixed_channels[L2CAP_FIXED_CHANNEL_TABLE_INDEX_ATTRIBUTE_PROTOCOL].callback)(ATT_DATA_PACKET, handle, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER);
1912             }
1913             break;
1914 
1915         case L2CAP_CID_SECURITY_MANAGER_PROTOCOL:
1916             if (fixed_channels[L2CAP_FIXED_CHANNEL_TABLE_INDEX_SECURITY_MANAGER_PROTOCOL].callback) {
1917                 (*fixed_channels[L2CAP_FIXED_CHANNEL_TABLE_INDEX_SECURITY_MANAGER_PROTOCOL].callback)(SM_DATA_PACKET, handle, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER);
1918             }
1919             break;
1920 
1921         case L2CAP_CID_CONNECTIONLESS_CHANNEL:
1922             if (fixed_channels[L2CAP_FIXED_CHANNEL_TABLE_INDEX_CONNECTIONLESS_CHANNEL].callback) {
1923                 (*fixed_channels[L2CAP_FIXED_CHANNEL_TABLE_INDEX_CONNECTIONLESS_CHANNEL].callback)(UCD_DATA_PACKET, handle, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER);
1924             }
1925             break;
1926 
1927         default:
1928 #ifdef ENABLE_CLASSIC
1929             // Find channel for this channel_id and connection handle
1930             l2cap_channel = l2cap_get_channel_for_local_cid(channel_id);
1931             if (l2cap_channel) {
1932                 l2cap_dispatch_to_channel(l2cap_channel, L2CAP_DATA_PACKET, &packet[COMPLETE_L2CAP_HEADER], size-COMPLETE_L2CAP_HEADER);
1933             }
1934 #endif
1935 #ifdef ENABLE_LE_DATA_CHANNELS
1936             l2cap_channel = l2cap_le_get_channel_for_local_cid(channel_id);
1937             if (l2cap_channel) {
1938                 // credit counting
1939                 if (l2cap_channel->credits_incoming == 0){
1940                     log_error("LE Data Channel packet received but no incoming credits");
1941                     l2cap_channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
1942                     break;
1943                 }
1944                 l2cap_channel->credits_incoming--;
1945 
1946                 // automatic credits
1947                 if (l2cap_channel->credits_incoming < L2CAP_LE_DATA_CHANNELS_AUTOMATIC_CREDITS_WATERMARK && l2cap_channel->automatic_credits){
1948                     l2cap_channel->new_credits_incoming = L2CAP_LE_DATA_CHANNELS_AUTOMATIC_CREDITS_INCREMENT;
1949                 }
1950 
1951                 // first fragment
1952                 uint16_t pos = 0;
1953                 if (!l2cap_channel->receive_sdu_len){
1954                     l2cap_channel->receive_sdu_len = little_endian_read_16(packet, COMPLETE_L2CAP_HEADER);
1955                     l2cap_channel->receive_sdu_pos = 0;
1956                     pos  += 2;
1957                     size -= 2;
1958                 }
1959                 memcpy(&l2cap_channel->receive_sdu_buffer[l2cap_channel->receive_sdu_pos], &packet[COMPLETE_L2CAP_HEADER+pos], size-COMPLETE_L2CAP_HEADER);
1960                 l2cap_channel->receive_sdu_pos += size - COMPLETE_L2CAP_HEADER;
1961                 // done?
1962                 log_info("le packet pos %u, len %u", l2cap_channel->receive_sdu_pos, l2cap_channel->receive_sdu_len);
1963                 if (l2cap_channel->receive_sdu_pos >= l2cap_channel->receive_sdu_len){
1964                     l2cap_dispatch_to_channel(l2cap_channel, L2CAP_DATA_PACKET, l2cap_channel->receive_sdu_buffer, l2cap_channel->receive_sdu_len);
1965                     l2cap_channel->receive_sdu_len = 0;
1966                 }
1967             } else {
1968                 log_error("LE Data Channel packet received but no channel found for cid 0x%02x", channel_id);
1969             }
1970 #endif
1971             break;
1972     }
1973 
1974     l2cap_run();
1975 }
1976 
1977 // Bluetooth 4.0 - allows to register handler for Attribute Protocol and Security Manager Protocol
1978 void l2cap_register_fixed_channel(btstack_packet_handler_t the_packet_handler, uint16_t channel_id) {
1979     int index = l2cap_fixed_channel_table_index_for_channel_id(channel_id);
1980     if (index < 0) return;
1981     fixed_channels[index].callback = the_packet_handler;
1982 }
1983 
1984 #ifdef ENABLE_CLASSIC
1985 // finalize closed channel - l2cap_handle_disconnect_request & DISCONNECTION_RESPONSE
1986 void l2cap_finialize_channel_close(l2cap_channel_t * channel){
1987     channel->state = L2CAP_STATE_CLOSED;
1988     l2cap_emit_channel_closed(channel);
1989     // discard channel
1990     l2cap_stop_rtx(channel);
1991     btstack_linked_list_remove(&l2cap_channels, (btstack_linked_item_t *) channel);
1992     btstack_memory_l2cap_channel_free(channel);
1993 }
1994 
1995 static l2cap_service_t * l2cap_get_service_internal(btstack_linked_list_t * services, uint16_t psm){
1996     btstack_linked_list_iterator_t it;
1997     btstack_linked_list_iterator_init(&it, services);
1998     while (btstack_linked_list_iterator_has_next(&it)){
1999         l2cap_service_t * service = (l2cap_service_t *) btstack_linked_list_iterator_next(&it);
2000         if ( service->psm == psm){
2001             return service;
2002         };
2003     }
2004     return NULL;
2005 }
2006 
2007 static inline l2cap_service_t * l2cap_get_service(uint16_t psm){
2008     return l2cap_get_service_internal(&l2cap_services, psm);
2009 }
2010 
2011 
2012 uint8_t l2cap_register_service(btstack_packet_handler_t service_packet_handler, uint16_t psm, uint16_t mtu, gap_security_level_t security_level){
2013 
2014     log_info("L2CAP_REGISTER_SERVICE psm 0x%x mtu %u", psm, mtu);
2015 
2016     // check for alread registered psm
2017     l2cap_service_t *service = l2cap_get_service(psm);
2018     if (service) {
2019         log_error("l2cap_register_service: PSM %u already registered", psm);
2020         return L2CAP_SERVICE_ALREADY_REGISTERED;
2021     }
2022 
2023     // alloc structure
2024     service = btstack_memory_l2cap_service_get();
2025     if (!service) {
2026         log_error("l2cap_register_service: no memory for l2cap_service_t");
2027         return BTSTACK_MEMORY_ALLOC_FAILED;
2028     }
2029 
2030     // fill in
2031     service->psm = psm;
2032     service->mtu = mtu;
2033     service->packet_handler = service_packet_handler;
2034     service->required_security_level = security_level;
2035 
2036     // add to services list
2037     btstack_linked_list_add(&l2cap_services, (btstack_linked_item_t *) service);
2038 
2039     // enable page scan
2040     gap_connectable_control(1);
2041 
2042     return 0;
2043 }
2044 
2045 uint8_t l2cap_unregister_service(uint16_t psm){
2046 
2047     log_info("L2CAP_UNREGISTER_SERVICE psm 0x%x", psm);
2048 
2049     l2cap_service_t *service = l2cap_get_service(psm);
2050     if (!service) return L2CAP_SERVICE_DOES_NOT_EXIST;
2051     btstack_linked_list_remove(&l2cap_services, (btstack_linked_item_t *) service);
2052     btstack_memory_l2cap_service_free(service);
2053 
2054     // disable page scan when no services registered
2055     if (btstack_linked_list_empty(&l2cap_services)) {
2056         gap_connectable_control(0);
2057     }
2058     return 0;
2059 }
2060 #endif
2061 
2062 
2063 #ifdef ENABLE_LE_DATA_CHANNELS
2064 
2065 static void l2cap_le_notify_channel_can_send(l2cap_channel_t *channel){
2066     if (!channel->waiting_for_can_send_now) return;
2067     if (channel->send_sdu_buffer) return;
2068     channel->waiting_for_can_send_now = 0;
2069     log_info("L2CAP_EVENT_CHANNEL_LE_CAN_SEND_NOW local_cid 0x%x", channel->local_cid);
2070     l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_LE_CAN_SEND_NOW);
2071 }
2072 
2073 // 1BH2222
2074 static void l2cap_emit_le_incoming_connection(l2cap_channel_t *channel) {
2075     log_info("L2CAP_EVENT_LE_INCOMING_CONNECTION addr_type %u, addr %s handle 0x%x psm 0x%x local_cid 0x%x remote_cid 0x%x, remote_mtu %u",
2076              channel->address_type, bd_addr_to_str(channel->address), channel->con_handle,  channel->psm, channel->local_cid, channel->remote_cid, channel->remote_mtu);
2077     uint8_t event[19];
2078     event[0] = L2CAP_EVENT_LE_INCOMING_CONNECTION;
2079     event[1] = sizeof(event) - 2;
2080     event[2] = channel->address_type;
2081     reverse_bd_addr(channel->address, &event[3]);
2082     little_endian_store_16(event,  9, channel->con_handle);
2083     little_endian_store_16(event, 11, channel->psm);
2084     little_endian_store_16(event, 13, channel->local_cid);
2085     little_endian_store_16(event, 15, channel->remote_cid);
2086     little_endian_store_16(event, 17, channel->remote_mtu);
2087     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
2088     l2cap_dispatch_to_channel(channel, HCI_EVENT_PACKET, event, sizeof(event));
2089 }
2090 // 11BH22222
2091 static void l2cap_emit_le_channel_opened(l2cap_channel_t *channel, uint8_t status) {
2092     log_info("L2CAP_EVENT_LE_CHANNEL_OPENED status 0x%x addr_type %u addr %s handle 0x%x psm 0x%x local_cid 0x%x remote_cid 0x%x local_mtu %u, remote_mtu %u",
2093              status, channel->address_type, bd_addr_to_str(channel->address), channel->con_handle, channel->psm,
2094              channel->local_cid, channel->remote_cid, channel->local_mtu, channel->remote_mtu);
2095     uint8_t event[23];
2096     event[0] = L2CAP_EVENT_LE_CHANNEL_OPENED;
2097     event[1] = sizeof(event) - 2;
2098     event[2] = status;
2099     event[3] = channel->address_type;
2100     reverse_bd_addr(channel->address, &event[4]);
2101     little_endian_store_16(event, 10, channel->con_handle);
2102     event[12] = channel->state_var & L2CAP_CHANNEL_STATE_VAR_INCOMING ? 1 : 0;
2103     little_endian_store_16(event, 13, channel->psm);
2104     little_endian_store_16(event, 15, channel->local_cid);
2105     little_endian_store_16(event, 17, channel->remote_cid);
2106     little_endian_store_16(event, 19, channel->local_mtu);
2107     little_endian_store_16(event, 21, channel->remote_mtu);
2108     hci_dump_packet( HCI_EVENT_PACKET, 0, event, sizeof(event));
2109     l2cap_dispatch_to_channel(channel, HCI_EVENT_PACKET, event, sizeof(event));
2110 }
2111 
2112 static l2cap_channel_t * l2cap_le_get_channel_for_local_cid(uint16_t local_cid){
2113     btstack_linked_list_iterator_t it;
2114     btstack_linked_list_iterator_init(&it, &l2cap_le_channels);
2115     while (btstack_linked_list_iterator_has_next(&it)){
2116         l2cap_channel_t * channel = (l2cap_channel_t *) btstack_linked_list_iterator_next(&it);
2117         if ( channel->local_cid == local_cid) {
2118             return channel;
2119         }
2120     }
2121     return NULL;
2122 }
2123 
2124 // finalize closed channel - l2cap_handle_disconnect_request & DISCONNECTION_RESPONSE
2125 void l2cap_le_finialize_channel_close(l2cap_channel_t * channel){
2126     channel->state = L2CAP_STATE_CLOSED;
2127     l2cap_emit_simple_event_with_cid(channel, L2CAP_EVENT_CHANNEL_CLOSED);
2128     // discard channel
2129     btstack_linked_list_remove(&l2cap_le_channels, (btstack_linked_item_t *) channel);
2130     btstack_memory_l2cap_channel_free(channel);
2131 }
2132 
2133 static inline l2cap_service_t * l2cap_le_get_service(uint16_t le_psm){
2134     return l2cap_get_service_internal(&l2cap_le_services, le_psm);
2135 }
2136 
2137 uint8_t l2cap_le_register_service(btstack_packet_handler_t packet_handler, uint16_t psm, gap_security_level_t security_level){
2138 
2139     log_info("L2CAP_LE_REGISTER_SERVICE psm 0x%x", psm);
2140 
2141     // check for alread registered psm
2142     l2cap_service_t *service = l2cap_le_get_service(psm);
2143     if (service) {
2144         return L2CAP_SERVICE_ALREADY_REGISTERED;
2145     }
2146 
2147     // alloc structure
2148     service = btstack_memory_l2cap_service_get();
2149     if (!service) {
2150         log_error("l2cap_register_service_internal: no memory for l2cap_service_t");
2151         return BTSTACK_MEMORY_ALLOC_FAILED;
2152     }
2153 
2154     // fill in
2155     service->psm = psm;
2156     service->mtu = 0;
2157     service->packet_handler = packet_handler;
2158     service->required_security_level = security_level;
2159 
2160     // add to services list
2161     btstack_linked_list_add(&l2cap_le_services, (btstack_linked_item_t *) service);
2162 
2163     // done
2164     return 0;
2165 }
2166 
2167 uint8_t l2cap_le_unregister_service(uint16_t psm) {
2168     log_info("L2CAP_LE_UNREGISTER_SERVICE psm 0x%x", psm);
2169     l2cap_service_t *service = l2cap_le_get_service(psm);
2170     if (!service) return L2CAP_SERVICE_DOES_NOT_EXIST;
2171 
2172     btstack_linked_list_remove(&l2cap_le_services, (btstack_linked_item_t *) service);
2173     btstack_memory_l2cap_service_free(service);
2174     return 0;
2175 }
2176 
2177 uint8_t l2cap_le_accept_connection(uint16_t local_cid, uint8_t * receive_sdu_buffer, uint16_t mtu, uint16_t initial_credits){
2178     // get channel
2179     l2cap_channel_t * channel = l2cap_le_get_channel_for_local_cid(local_cid);
2180     if (!channel) return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
2181 
2182     // validate state
2183     if (channel->state != L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT){
2184         return ERROR_CODE_COMMAND_DISALLOWED;
2185     }
2186 
2187     // set state accept connection
2188     channel->state = L2CAP_STATE_WILL_SEND_LE_CONNECTION_RESPONSE_ACCEPT;
2189     channel->receive_sdu_buffer = receive_sdu_buffer;
2190     channel->local_mtu = mtu;
2191     channel->new_credits_incoming = initial_credits;
2192     channel->automatic_credits  = initial_credits == L2CAP_LE_AUTOMATIC_CREDITS;
2193 
2194     // test
2195     // channel->new_credits_incoming = 1;
2196 
2197     // go
2198     l2cap_run();
2199     return 0;
2200 }
2201 
2202 /**
2203  * @brief Deny incoming LE Data Channel connection due to resource constraints
2204  * @param local_cid             L2CAP LE Data Channel Identifier
2205  */
2206 
2207 uint8_t l2cap_le_decline_connection(uint16_t local_cid){
2208     // get channel
2209     l2cap_channel_t * channel = l2cap_le_get_channel_for_local_cid(local_cid);
2210     if (!channel) return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
2211 
2212     // validate state
2213     if (channel->state != L2CAP_STATE_WAIT_CLIENT_ACCEPT_OR_REJECT){
2214         return ERROR_CODE_COMMAND_DISALLOWED;
2215     }
2216 
2217     // set state decline connection
2218     channel->state  = L2CAP_STATE_WILL_SEND_LE_CONNECTION_RESPONSE_DECLINE;
2219     channel->reason = 0x04; // no resources available
2220     l2cap_run();
2221     return 0;
2222 }
2223 
2224 uint8_t l2cap_le_create_channel(btstack_packet_handler_t packet_handler, hci_con_handle_t con_handle,
2225     uint16_t psm, uint8_t * receive_sdu_buffer, uint16_t mtu, uint16_t initial_credits, gap_security_level_t security_level,
2226     uint16_t * out_local_cid) {
2227 
2228     log_info("L2CAP_LE_CREATE_CHANNEL handle 0x%04x psm 0x%x mtu %u", con_handle, psm, mtu);
2229 
2230 
2231     hci_connection_t * connection = hci_connection_for_handle(con_handle);
2232     if (!connection) {
2233         log_error("no hci_connection for handle 0x%04x", con_handle);
2234         return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
2235     }
2236 
2237     l2cap_channel_t * channel = l2cap_create_channel_entry(packet_handler, connection->address, connection->address_type, psm, mtu, security_level);
2238     if (!channel) {
2239         return BTSTACK_MEMORY_ALLOC_FAILED;
2240     }
2241     log_info("l2cap_le_create_channel %p", channel);
2242 
2243     // store local_cid
2244     if (out_local_cid){
2245        *out_local_cid = channel->local_cid;
2246     }
2247 
2248     // provide buffer
2249     channel->con_handle = con_handle;
2250     channel->receive_sdu_buffer = receive_sdu_buffer;
2251     channel->state = L2CAP_STATE_WILL_SEND_LE_CONNECTION_REQUEST;
2252     channel->new_credits_incoming = initial_credits;
2253     channel->automatic_credits    = initial_credits == L2CAP_LE_AUTOMATIC_CREDITS;
2254 
2255     // add to connections list
2256     btstack_linked_list_add(&l2cap_le_channels, (btstack_linked_item_t *) channel);
2257 
2258     // go
2259     l2cap_run();
2260     return 0;
2261 }
2262 
2263 /**
2264  * @brief Provide credtis for LE Data Channel
2265  * @param local_cid             L2CAP LE Data Channel Identifier
2266  * @param credits               Number additional credits for peer
2267  */
2268 uint8_t l2cap_le_provide_credits(uint16_t local_cid, uint16_t credits){
2269 
2270     l2cap_channel_t * channel = l2cap_le_get_channel_for_local_cid(local_cid);
2271     if (!channel) {
2272         log_error("l2cap_le_provide_credits no channel for cid 0x%02x", local_cid);
2273         return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
2274     }
2275 
2276     // check state
2277     if (channel->state != L2CAP_STATE_OPEN){
2278         log_error("l2cap_le_provide_credits but channel 0x%02x not open yet", local_cid);
2279     }
2280 
2281     // assert incoming credits + credits <= 0xffff
2282     uint32_t total_credits = channel->credits_incoming;
2283     total_credits += channel->new_credits_incoming;
2284     total_credits += credits;
2285     if (total_credits > 0xffff){
2286         log_error("l2cap_le_provide_credits overrun: current %u, scheduled %u, additional %u", channel->credits_incoming,
2287             channel->new_credits_incoming, credits);
2288     }
2289 
2290     // set credits_granted
2291     channel->new_credits_incoming += credits;
2292 
2293     // go
2294     l2cap_run();
2295     return 0;
2296 }
2297 
2298 /**
2299  * @brief Check if outgoing buffer is available and that there's space on the Bluetooth module
2300  * @param local_cid             L2CAP LE Data Channel Identifier
2301  */
2302 int l2cap_le_can_send_now(uint16_t local_cid){
2303     l2cap_channel_t * channel = l2cap_le_get_channel_for_local_cid(local_cid);
2304     if (!channel) {
2305         log_error("l2cap_le_provide_credits no channel for cid 0x%02x", local_cid);
2306         return 0;
2307     }
2308 
2309     // check state
2310     if (channel->state != L2CAP_STATE_OPEN) return 0;
2311 
2312     // check queue
2313     if (channel->send_sdu_buffer) return 0;
2314 
2315     // fine, go ahead
2316     return 1;
2317 }
2318 
2319 /**
2320  * @brief Request emission of L2CAP_EVENT_CAN_SEND_NOW as soon as possible
2321  * @note L2CAP_EVENT_CAN_SEND_NOW might be emitted during call to this function
2322  *       so packet handler should be ready to handle it
2323  * @param local_cid             L2CAP LE Data Channel Identifier
2324  */
2325 uint8_t l2cap_le_request_can_send_now_event(uint16_t local_cid){
2326     l2cap_channel_t * channel = l2cap_le_get_channel_for_local_cid(local_cid);
2327     if (!channel) {
2328         log_error("l2cap_le_request_can_send_now_event no channel for cid 0x%02x", local_cid);
2329         return 0;
2330     }
2331     channel->waiting_for_can_send_now = 1;
2332     l2cap_le_notify_channel_can_send(channel);
2333     return 0;
2334 }
2335 
2336 /**
2337  * @brief Send data via LE Data Channel
2338  * @note Since data larger then the maximum PDU needs to be segmented into multiple PDUs, data needs to stay valid until ... event
2339  * @param local_cid             L2CAP LE Data Channel Identifier
2340  * @param data                  data to send
2341  * @param size                  data size
2342  */
2343 uint8_t l2cap_le_send_data(uint16_t local_cid, uint8_t * data, uint16_t len){
2344 
2345     l2cap_channel_t * channel = l2cap_le_get_channel_for_local_cid(local_cid);
2346     if (!channel) {
2347         log_error("l2cap_send no channel for cid 0x%02x", local_cid);
2348         return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
2349     }
2350 
2351     if (len > channel->remote_mtu){
2352         log_error("l2cap_send cid 0x%02x, data length exceeds remote MTU.", local_cid);
2353         return L2CAP_DATA_LEN_EXCEEDS_REMOTE_MTU;
2354     }
2355 
2356     if (channel->send_sdu_buffer){
2357         log_info("l2cap_send cid 0x%02x, cannot send", local_cid);
2358         return BTSTACK_ACL_BUFFERS_FULL;
2359     }
2360 
2361     channel->send_sdu_buffer = data;
2362     channel->send_sdu_len    = len;
2363     channel->send_sdu_pos    = 0;
2364 
2365     l2cap_run();
2366     return 0;
2367 }
2368 
2369 /**
2370  * @brief Disconnect from LE Data Channel
2371  * @param local_cid             L2CAP LE Data Channel Identifier
2372  */
2373 uint8_t l2cap_le_disconnect(uint16_t local_cid)
2374 {
2375     l2cap_channel_t * channel = l2cap_le_get_channel_for_local_cid(local_cid);
2376     if (!channel) {
2377         log_error("l2cap_send no channel for cid 0x%02x", local_cid);
2378         return L2CAP_LOCAL_CID_DOES_NOT_EXIST;
2379     }
2380 
2381     channel->state = L2CAP_STATE_WILL_SEND_DISCONNECT_REQUEST;
2382     l2cap_run();
2383     return 0;
2384 }
2385 
2386 #endif
2387