143625864Smatthias.ringwald /* 21713bceaSmatthias.ringwald * Copyright (C) 2009 by Matthias Ringwald 31713bceaSmatthias.ringwald * 41713bceaSmatthias.ringwald * Redistribution and use in source and binary forms, with or without 51713bceaSmatthias.ringwald * modification, are permitted provided that the following conditions 61713bceaSmatthias.ringwald * are met: 71713bceaSmatthias.ringwald * 81713bceaSmatthias.ringwald * 1. Redistributions of source code must retain the above copyright 91713bceaSmatthias.ringwald * notice, this list of conditions and the following disclaimer. 101713bceaSmatthias.ringwald * 2. Redistributions in binary form must reproduce the above copyright 111713bceaSmatthias.ringwald * notice, this list of conditions and the following disclaimer in the 121713bceaSmatthias.ringwald * documentation and/or other materials provided with the distribution. 131713bceaSmatthias.ringwald * 3. Neither the name of the copyright holders nor the names of 141713bceaSmatthias.ringwald * contributors may be used to endorse or promote products derived 151713bceaSmatthias.ringwald * from this software without specific prior written permission. 161713bceaSmatthias.ringwald * 171713bceaSmatthias.ringwald * THIS SOFTWARE IS PROVIDED BY MATTHIAS RINGWALD AND CONTRIBUTORS 181713bceaSmatthias.ringwald * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 191713bceaSmatthias.ringwald * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 201713bceaSmatthias.ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS 211713bceaSmatthias.ringwald * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 221713bceaSmatthias.ringwald * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 231713bceaSmatthias.ringwald * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 241713bceaSmatthias.ringwald * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 251713bceaSmatthias.ringwald * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 261713bceaSmatthias.ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 271713bceaSmatthias.ringwald * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 281713bceaSmatthias.ringwald * SUCH DAMAGE. 291713bceaSmatthias.ringwald * 301713bceaSmatthias.ringwald */ 311713bceaSmatthias.ringwald 321713bceaSmatthias.ringwald /* 3343625864Smatthias.ringwald * l2cap.h 3443625864Smatthias.ringwald * 3543625864Smatthias.ringwald * Logical Link Control and Adaption Protocl (L2CAP) 3643625864Smatthias.ringwald * 3743625864Smatthias.ringwald * Created by Matthias Ringwald on 5/16/09. 3843625864Smatthias.ringwald */ 3943625864Smatthias.ringwald 40fd7ed8d4Smatthias.ringwald #pragma once 41fd7ed8d4Smatthias.ringwald 4243625864Smatthias.ringwald #include "hci.h" 4395cbd947Smatthias.ringwald #include "l2cap_signaling.h" 4423053b9eSmatthias.ringwald #include <btstack/utils.h> 451e6aba47Smatthias.ringwald #include "socket_connection.h" 46da269baaSmatthias.ringwald 47da269baaSmatthias.ringwald #define L2CAP_SIG_ID_INVALID 0 48da269baaSmatthias.ringwald 49da269baaSmatthias.ringwald typedef enum { 50da269baaSmatthias.ringwald L2CAP_STATE_CLOSED, // no baseband 5187ea0ea4Smatthias.ringwald L2CAP_STATE_WAIT_CONNECT_RSP, // from peer 525a67bd4aSmatthias.ringwald L2CAP_STATE_WAIT_CONFIG_REQ_RSP_OR_CONFIG_REQ, 5387ea0ea4Smatthias.ringwald L2CAP_STATE_WAIT_CONFIG_REQ_RSP, 5487ea0ea4Smatthias.ringwald L2CAP_STATE_WAIT_CONFIG_REQ, 55da269baaSmatthias.ringwald L2CAP_STATE_OPEN, 5687ea0ea4Smatthias.ringwald L2CAP_STATE_WAIT_DISCONNECT, // from application 57da269baaSmatthias.ringwald } L2CAP_STATE; 5843625864Smatthias.ringwald 59*9d9bbc01Smatthias.ringwald // info regarding an actual coneection 6016833f0aSmatthias.ringwald typedef struct { 6187ea0ea4Smatthias.ringwald // linked list - assert: first field 6287ea0ea4Smatthias.ringwald linked_item_t item; 6387ea0ea4Smatthias.ringwald 64da269baaSmatthias.ringwald L2CAP_STATE state; 65da269baaSmatthias.ringwald uint8_t sig_id; 66bb53b291Smatthias.ringwald uint16_t source_cid; 6787ea0ea4Smatthias.ringwald uint16_t dest_cid; 68da269baaSmatthias.ringwald bd_addr_t address; 69da269baaSmatthias.ringwald uint16_t psm; 70da269baaSmatthias.ringwald hci_con_handle_t handle; 711e6aba47Smatthias.ringwald connection_t *connection; 72da269baaSmatthias.ringwald // uint16_t mtu_incoming; 73da269baaSmatthias.ringwald // uint16_t mtu_outgoing; 74da269baaSmatthias.ringwald // uint16_t flush_timeout_incoming; 75da269baaSmatthias.ringwald // uint16_t flush_timeout_outgoing; 7616833f0aSmatthias.ringwald } l2cap_channel_t; 7716833f0aSmatthias.ringwald 78*9d9bbc01Smatthias.ringwald // info regarding potential connections 7916833f0aSmatthias.ringwald typedef struct { 80*9d9bbc01Smatthias.ringwald // linked list - assert: first field 81*9d9bbc01Smatthias.ringwald linked_item_t item; 8216833f0aSmatthias.ringwald 83*9d9bbc01Smatthias.ringwald // service id 84*9d9bbc01Smatthias.ringwald uint16_t psm; 85*9d9bbc01Smatthias.ringwald 86*9d9bbc01Smatthias.ringwald // incoming MTU 87*9d9bbc01Smatthias.ringwald uint16_t mtu; 88*9d9bbc01Smatthias.ringwald 89*9d9bbc01Smatthias.ringwald // provider for this server 90*9d9bbc01Smatthias.ringwald connection_t *connection; 9116833f0aSmatthias.ringwald } l2cap_service_t; 9216833f0aSmatthias.ringwald 9343625864Smatthias.ringwald void l2cap_init(); 9443bfb1bdSmatthias.ringwald void l2cap_register_event_packet_handler(void (*handler)(uint8_t *packet, uint16_t size)); 951e6aba47Smatthias.ringwald void l2cap_create_channel_internal(connection_t * connection, bd_addr_t address, uint16_t psm); 961e6aba47Smatthias.ringwald void l2cap_disconnect_internal(uint16_t source_cid, uint8_t reason); 971e6aba47Smatthias.ringwald void l2cap_send_internal(uint16_t source_cid, uint8_t *data, uint16_t len); 981e6aba47Smatthias.ringwald void l2cap_acl_handler( uint8_t *packet, uint16_t size ); 991e6aba47Smatthias.ringwald void l2cap_event_handler( uint8_t *packet, uint16_t size ); 1001e6aba47Smatthias.ringwald 1019edc8742Smatthias.ringwald void l2cap_set_capture_connection(connection_t * connection); 1029edc8742Smatthias.ringwald 10327a923d0Smatthias.ringwald void l2cap_finialize_channel_close(l2cap_channel_t *channel); 104*9d9bbc01Smatthias.ringwald void l2cap_close_connection(connection_t *connection); 105*9d9bbc01Smatthias.ringwald 106*9d9bbc01Smatthias.ringwald l2cap_service_t * l2cap_get_service(uint16_t psm); 107*9d9bbc01Smatthias.ringwald void l2cap_register_service(connection_t *connection, uint16_t psm, uint16_t); 108*9d9bbc01Smatthias.ringwald void l2cap_unregister_service(connection_t *connection, uint16_t psm); 109*9d9bbc01Smatthias.ringwald 110*9d9bbc01Smatthias.ringwald void l2cap_accept_connection(bd_addr_t address, uint16_t dest_cid); 111*9d9bbc01Smatthias.ringwald void l2cap_decline_connection(bd_addr_t address, uint16_t dest_cid, uint8_t reason); 1121e6aba47Smatthias.ringwald 11303cfbabcSmatthias.ringwald void l2cap_emit_channel_opened(l2cap_channel_t *channel, uint8_t status); 114f62db1e3Smatthias.ringwald void l2cap_emit_channel_closed(l2cap_channel_t *channel); 115