xref: /btstack/src/ble/att_server.c (revision 9a1f55ea3387905dc7d3052d0c9426a7576aa05d)
13deb3ec6SMatthias Ringwald /*
23deb3ec6SMatthias Ringwald  * Copyright (C) 2014 BlueKitchen GmbH
33deb3ec6SMatthias Ringwald  *
43deb3ec6SMatthias Ringwald  * Redistribution and use in source and binary forms, with or without
53deb3ec6SMatthias Ringwald  * modification, are permitted provided that the following conditions
63deb3ec6SMatthias Ringwald  * are met:
73deb3ec6SMatthias Ringwald  *
83deb3ec6SMatthias Ringwald  * 1. Redistributions of source code must retain the above copyright
93deb3ec6SMatthias Ringwald  *    notice, this list of conditions and the following disclaimer.
103deb3ec6SMatthias Ringwald  * 2. Redistributions in binary form must reproduce the above copyright
113deb3ec6SMatthias Ringwald  *    notice, this list of conditions and the following disclaimer in the
123deb3ec6SMatthias Ringwald  *    documentation and/or other materials provided with the distribution.
133deb3ec6SMatthias Ringwald  * 3. Neither the name of the copyright holders nor the names of
143deb3ec6SMatthias Ringwald  *    contributors may be used to endorse or promote products derived
153deb3ec6SMatthias Ringwald  *    from this software without specific prior written permission.
163deb3ec6SMatthias Ringwald  * 4. Any redistribution, use, or modification is done solely for
173deb3ec6SMatthias Ringwald  *    personal benefit and not for any commercial purpose or for
183deb3ec6SMatthias Ringwald  *    monetary gain.
193deb3ec6SMatthias Ringwald  *
203deb3ec6SMatthias Ringwald  * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
213deb3ec6SMatthias Ringwald  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
223deb3ec6SMatthias Ringwald  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
232fca4dadSMilanka Ringwald  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN
242fca4dadSMilanka Ringwald  * GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
253deb3ec6SMatthias Ringwald  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
263deb3ec6SMatthias Ringwald  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
273deb3ec6SMatthias Ringwald  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
283deb3ec6SMatthias Ringwald  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
293deb3ec6SMatthias Ringwald  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
303deb3ec6SMatthias Ringwald  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
313deb3ec6SMatthias Ringwald  * SUCH DAMAGE.
323deb3ec6SMatthias Ringwald  *
333deb3ec6SMatthias Ringwald  * Please inquire about commercial licensing options at
343deb3ec6SMatthias Ringwald  * [email protected]
353deb3ec6SMatthias Ringwald  *
363deb3ec6SMatthias Ringwald  */
373deb3ec6SMatthias Ringwald 
38e501bae0SMatthias Ringwald #define BTSTACK_FILE__ "att_server.c"
39ab2c6ae4SMatthias Ringwald 
403deb3ec6SMatthias Ringwald 
413deb3ec6SMatthias Ringwald //
423deb3ec6SMatthias Ringwald // ATT Server Globals
433deb3ec6SMatthias Ringwald //
443deb3ec6SMatthias Ringwald 
453deb3ec6SMatthias Ringwald #include <stdint.h>
463deb3ec6SMatthias Ringwald #include <string.h>
473deb3ec6SMatthias Ringwald #include <inttypes.h>
483deb3ec6SMatthias Ringwald 
497907f069SMatthias Ringwald #include "btstack_config.h"
503deb3ec6SMatthias Ringwald 
51296289e3SMatthias Ringwald #include "ble/att_dispatch.h"
5259c6af15SMatthias Ringwald #include "ble/att_db.h"
5359c6af15SMatthias Ringwald #include "ble/att_server.h"
5459c6af15SMatthias Ringwald #include "ble/core.h"
5559c6af15SMatthias Ringwald #include "ble/le_device_db.h"
5659c6af15SMatthias Ringwald #include "ble/sm.h"
5716ece135SMatthias Ringwald #include "btstack_debug.h"
580e2df43fSMatthias Ringwald #include "btstack_event.h"
593deb3ec6SMatthias Ringwald #include "btstack_memory.h"
600e2df43fSMatthias Ringwald #include "btstack_run_loop.h"
6159c6af15SMatthias Ringwald #include "gap.h"
623deb3ec6SMatthias Ringwald #include "hci.h"
633deb3ec6SMatthias Ringwald #include "hci_dump.h"
643deb3ec6SMatthias Ringwald #include "l2cap.h"
65bf78aac6SMatthias Ringwald #include "btstack_tlv.h"
66d1a1f6a4SMatthias Ringwald #ifdef ENABLE_LE_SIGNED_WRITE
67d1a1f6a4SMatthias Ringwald #include "ble/sm.h"
68d1a1f6a4SMatthias Ringwald #endif
69bf78aac6SMatthias Ringwald 
7003f53d81SMatthias Ringwald #ifdef ENABLE_TESTING_SUPPORT
7103f53d81SMatthias Ringwald #include <stdio.h>
7203f53d81SMatthias Ringwald #endif
7303f53d81SMatthias Ringwald 
746afb9acaSMatthias Ringwald #ifndef NVN_NUM_GATT_SERVER_CCC
756afb9acaSMatthias Ringwald #define NVN_NUM_GATT_SERVER_CCC 20
76bf78aac6SMatthias Ringwald #endif
773deb3ec6SMatthias Ringwald 
78cd45e970SMatthias Ringwald static void att_run_for_context(att_server_t * att_server, att_connection_t * att_connection);
7901ac2008SMatthias Ringwald static att_write_callback_t att_server_write_callback_for_handle(uint16_t handle);
805d07396bSMatthias Ringwald static btstack_packet_handler_t att_server_packet_handler_for_handle(uint16_t handle);
8148364364SMatthias Ringwald static void att_server_handle_can_send_now(void);
82*9a1f55eaSMatthias Ringwald static void att_server_persistent_ccc_restore(att_server_t * att_server, att_connection_t * att_connection);
8368591e36SMatthias Ringwald static void att_server_persistent_ccc_clear(hci_connection_t * hci_connection);
8468591e36SMatthias Ringwald static void att_server_handle_att_pdu(hci_connection_t * hci_connection, uint8_t * packet, uint16_t size);
853deb3ec6SMatthias Ringwald 
863551936eSMatthias Ringwald typedef enum {
8738b893aaSMilanka Ringwald     ATT_SERVER_RUN_PHASE_1_REQUESTS = 0,
883551936eSMatthias Ringwald     ATT_SERVER_RUN_PHASE_2_INDICATIONS,
893551936eSMatthias Ringwald     ATT_SERVER_RUN_PHASE_3_NOTIFICATIONS,
903551936eSMatthias Ringwald } att_server_run_phase_t;
913551936eSMatthias Ringwald 
926a540790SMatthias Ringwald //
936a540790SMatthias Ringwald typedef struct {
946a540790SMatthias Ringwald     uint32_t seq_nr;
956a540790SMatthias Ringwald     uint16_t att_handle;
966a540790SMatthias Ringwald     uint8_t  value;
976a540790SMatthias Ringwald     uint8_t  device_index;
986a540790SMatthias Ringwald } persistent_ccc_entry_t;
996a540790SMatthias Ringwald 
10018707219SMatthias Ringwald // global
1011a389cdcSMatthias Ringwald static btstack_packet_callback_registration_t hci_event_callback_registration;
102406722e4SMatthias Ringwald static btstack_packet_callback_registration_t sm_event_callback_registration;
10335d7f2dfSMilanka Ringwald static btstack_packet_handler_t               att_client_packet_handler;
1043d71c7a4SMatthias Ringwald static btstack_linked_list_t                  service_handlers;
1055f141511SMatthias Ringwald static btstack_context_callback_registration_t att_client_waiting_for_can_send_registration;
10618707219SMatthias Ringwald 
1073d71c7a4SMatthias Ringwald static att_read_callback_t                    att_server_client_read_callback;
1083d71c7a4SMatthias Ringwald static att_write_callback_t                   att_server_client_write_callback;
1093d71c7a4SMatthias Ringwald 
1106438547aSMatthias Ringwald // round robin
1116438547aSMatthias Ringwald static hci_con_handle_t att_server_last_can_send_now = HCI_CON_HANDLE_INVALID;
112bf78aac6SMatthias Ringwald 
11302b78fc8SMatthias Ringwald #ifdef ENABLE_LE_SIGNED_WRITE
11468591e36SMatthias Ringwald static hci_connection_t * hci_connection_for_state(att_server_state_t state){
11518707219SMatthias Ringwald     btstack_linked_list_iterator_t it;
11618707219SMatthias Ringwald     hci_connections_get_iterator(&it);
11718707219SMatthias Ringwald     while(btstack_linked_list_iterator_has_next(&it)){
11818707219SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
11918707219SMatthias Ringwald         att_server_t * att_server = &connection->att_server;
12068591e36SMatthias Ringwald         if (att_server->state == state) return connection;
12118707219SMatthias Ringwald     }
12218707219SMatthias Ringwald     return NULL;
12318707219SMatthias Ringwald }
12402b78fc8SMatthias Ringwald #endif
125bb38f057SMatthias Ringwald 
1263f9b77dbSMatthias Ringwald static void att_server_request_can_send_now(att_server_t * att_server, att_connection_t * att_connection ){
12723079b39SMatthias Ringwald     switch (att_server->bearer_type){
12823079b39SMatthias Ringwald         case ATT_BEARER_UNENHANCED_LE:
129b6df12b6SMatthias Ringwald             att_dispatch_server_request_can_send_now_event(att_connection->con_handle);
13023079b39SMatthias Ringwald             break;
13123079b39SMatthias Ringwald #ifdef ENABLE_GATT_OVER_CLASSIC
13223079b39SMatthias Ringwald         case ATT_BEARER_UNENHANCED_CLASSIC:
13323079b39SMatthias Ringwald             l2cap_request_can_send_now_event(att_server->l2cap_cid);
13423079b39SMatthias Ringwald             break;
13523079b39SMatthias Ringwald #endif
13623079b39SMatthias Ringwald         default:
13723079b39SMatthias Ringwald             btstack_unreachable();
13823079b39SMatthias Ringwald             break;
13923079b39SMatthias Ringwald     }
140c8c6e9b4SMatthias Ringwald }
141c8c6e9b4SMatthias Ringwald 
14237a8059dSMatthias Ringwald static bool att_server_can_send_packet(att_server_t * att_server, att_connection_t * att_connection){
14323079b39SMatthias Ringwald     switch (att_server->bearer_type) {
14423079b39SMatthias Ringwald         case ATT_BEARER_UNENHANCED_LE:
1451979f09cSMatthias Ringwald             return att_dispatch_server_can_send_now(att_connection->con_handle) != 0;
14623079b39SMatthias Ringwald #ifdef ENABLE_GATT_OVER_CLASSIC
14723079b39SMatthias Ringwald         case ATT_BEARER_UNENHANCED_CLASSIC:
14823079b39SMatthias Ringwald             return l2cap_can_send_packet_now(att_server->l2cap_cid) != 0;
14923079b39SMatthias Ringwald #endif
15023079b39SMatthias Ringwald         default:
15123079b39SMatthias Ringwald             btstack_unreachable();
15223079b39SMatthias Ringwald             break;
15323079b39SMatthias Ringwald     }
15423079b39SMatthias Ringwald     return false;
155c0f26e1cSMatthias Ringwald }
156c0f26e1cSMatthias Ringwald 
1573deb3ec6SMatthias Ringwald static void att_handle_value_indication_notify_client(uint8_t status, uint16_t client_handle, uint16_t attribute_handle){
1585d07396bSMatthias Ringwald     btstack_packet_handler_t packet_handler = att_server_packet_handler_for_handle(attribute_handle);
1595d07396bSMatthias Ringwald     if (!packet_handler) return;
1603deb3ec6SMatthias Ringwald 
1613deb3ec6SMatthias Ringwald     uint8_t event[7];
1623deb3ec6SMatthias Ringwald     int pos = 0;
1635611a760SMatthias Ringwald     event[pos++] = ATT_EVENT_HANDLE_VALUE_INDICATION_COMPLETE;
1644ea43905SMatthias Ringwald     event[pos++] = sizeof(event) - 2u;
1653deb3ec6SMatthias Ringwald     event[pos++] = status;
166f8fbdce0SMatthias Ringwald     little_endian_store_16(event, pos, client_handle);
1673deb3ec6SMatthias Ringwald     pos += 2;
168f8fbdce0SMatthias Ringwald     little_endian_store_16(event, pos, attribute_handle);
169a444112bSMatthias Ringwald     (*packet_handler)(HCI_EVENT_PACKET, 0, &event[0], sizeof(event));
1703deb3ec6SMatthias Ringwald }
1713deb3ec6SMatthias Ringwald 
1725d07396bSMatthias Ringwald static void att_emit_event_to_all(const uint8_t * event, uint16_t size){
1735d07396bSMatthias Ringwald     // dispatch to app level handler
1749305033eSMatthias Ringwald     if (att_client_packet_handler != NULL){
1755d07396bSMatthias Ringwald         (*att_client_packet_handler)(HCI_EVENT_PACKET, 0, (uint8_t*) event, size);
1765d07396bSMatthias Ringwald     }
1773deb3ec6SMatthias Ringwald 
1785d07396bSMatthias Ringwald     // dispatch to service handlers
1795d07396bSMatthias Ringwald     btstack_linked_list_iterator_t it;
1805d07396bSMatthias Ringwald     btstack_linked_list_iterator_init(&it, &service_handlers);
1815d07396bSMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
1825d07396bSMatthias Ringwald         att_service_handler_t * handler = (att_service_handler_t*) btstack_linked_list_iterator_next(&it);
1835d07396bSMatthias Ringwald         if (!handler->packet_handler) continue;
1845d07396bSMatthias Ringwald         (*handler->packet_handler)(HCI_EVENT_PACKET, 0, (uint8_t*) event, size);
1855d07396bSMatthias Ringwald     }
1865d07396bSMatthias Ringwald }
1875d07396bSMatthias Ringwald 
1885d07396bSMatthias Ringwald static void att_emit_mtu_event(hci_con_handle_t con_handle, uint16_t mtu){
1893deb3ec6SMatthias Ringwald     uint8_t event[6];
1903deb3ec6SMatthias Ringwald     int pos = 0;
1915611a760SMatthias Ringwald     event[pos++] = ATT_EVENT_MTU_EXCHANGE_COMPLETE;
1924ea43905SMatthias Ringwald     event[pos++] = sizeof(event) - 2u;
193fc64f94aSMatthias Ringwald     little_endian_store_16(event, pos, con_handle);
1943deb3ec6SMatthias Ringwald     pos += 2;
195f8fbdce0SMatthias Ringwald     little_endian_store_16(event, pos, mtu);
1965d07396bSMatthias Ringwald 
1975d07396bSMatthias Ringwald     // also dispatch to GATT Clients
198b12646c5SJakob Krantz     att_dispatch_server_mtu_exchanged(con_handle, mtu);
1995d07396bSMatthias Ringwald 
2005d07396bSMatthias Ringwald     // dispatch to app level handler and service handlers
2015d07396bSMatthias Ringwald     att_emit_event_to_all(&event[0], sizeof(event));
2023deb3ec6SMatthias Ringwald }
2033deb3ec6SMatthias Ringwald 
2045f141511SMatthias Ringwald static void att_emit_can_send_now_event(void * context){
2055f141511SMatthias Ringwald     UNUSED(context);
2063c97b242SMatthias Ringwald     if (!att_client_packet_handler) return;
2073c97b242SMatthias Ringwald 
2081b96b007SMatthias Ringwald     uint8_t event[] = { ATT_EVENT_CAN_SEND_NOW, 0};
2091b96b007SMatthias Ringwald     (*att_client_packet_handler)(HCI_EVENT_PACKET, 0, &event[0], sizeof(event));
2101b96b007SMatthias Ringwald }
2111b96b007SMatthias Ringwald 
2126d2214cbSMatthias Ringwald static void att_emit_connected_event(att_server_t * att_server,  att_connection_t * att_connection){
213ff1bec95SMatthias Ringwald     uint8_t event[11];
214ff1bec95SMatthias Ringwald     int pos = 0;
215ff1bec95SMatthias Ringwald     event[pos++] = ATT_EVENT_CONNECTED;
2164ea43905SMatthias Ringwald     event[pos++] = sizeof(event) - 2u;
217ff1bec95SMatthias Ringwald     event[pos++] = att_server->peer_addr_type;
218ff1bec95SMatthias Ringwald     reverse_bd_addr(att_server->peer_address, &event[pos]);
219ff1bec95SMatthias Ringwald     pos += 6;
220b6df12b6SMatthias Ringwald     little_endian_store_16(event, pos, att_connection->con_handle);
221ff1bec95SMatthias Ringwald     pos += 2;
222ff1bec95SMatthias Ringwald 
223ff1bec95SMatthias Ringwald     // dispatch to app level handler and service handlers
224ff1bec95SMatthias Ringwald     att_emit_event_to_all(&event[0], sizeof(event));
225ff1bec95SMatthias Ringwald }
226ff1bec95SMatthias Ringwald 
227ff1bec95SMatthias Ringwald 
2286187ad4cSMatthias Ringwald static void att_emit_disconnected_event(uint16_t con_handle){
229ff1bec95SMatthias Ringwald     uint8_t event[4];
230ff1bec95SMatthias Ringwald     int pos = 0;
231ff1bec95SMatthias Ringwald     event[pos++] = ATT_EVENT_DISCONNECTED;
2324ea43905SMatthias Ringwald     event[pos++] = sizeof(event) - 2u;
2336187ad4cSMatthias Ringwald     little_endian_store_16(event, pos, con_handle);
234ff1bec95SMatthias Ringwald     pos += 2;
235ff1bec95SMatthias Ringwald 
236ff1bec95SMatthias Ringwald     // dispatch to app level handler and service handlers
237ff1bec95SMatthias Ringwald     att_emit_event_to_all(&event[0], sizeof(event));
238ff1bec95SMatthias Ringwald }
239ff1bec95SMatthias Ringwald 
240ec820d77SMatthias Ringwald static void att_handle_value_indication_timeout(btstack_timer_source_t *ts){
24154178543SMatthias Ringwald     void * context = btstack_run_loop_get_timer_context(ts);
24254178543SMatthias Ringwald     hci_con_handle_t con_handle = (hci_con_handle_t) (uintptr_t) context;
24368591e36SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
24468591e36SMatthias Ringwald     if (!hci_connection) return;
24568591e36SMatthias Ringwald     // @note: after a transaction timeout, no more requests shall be sent over this ATT Bearer
246bce48a26SMatthias Ringwald     // (that's why we don't reset the value_indication_handle)
247b6df12b6SMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
24818707219SMatthias Ringwald     uint16_t att_handle = att_server->value_indication_handle;
249388fa7c4SMatthias Ringwald     att_connection_t * att_connection = &hci_connection->att_connection;
25038b893aaSMilanka Ringwald     att_handle_value_indication_notify_client((uint8_t)ATT_HANDLE_VALUE_INDICATION_TIMEOUT, att_connection->con_handle, att_handle);
2513deb3ec6SMatthias Ringwald }
2523deb3ec6SMatthias Ringwald 
2533deb3ec6SMatthias Ringwald static void att_event_packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
2549ec2630cSMatthias Ringwald 
2557dad9ff8SMatthias Ringwald     UNUSED(channel); // ok: there is no channel
2567dad9ff8SMatthias Ringwald     UNUSED(size);    // ok: handling own l2cap events
2573deb3ec6SMatthias Ringwald 
25818707219SMatthias Ringwald     att_server_t * att_server;
259b6df12b6SMatthias Ringwald     att_connection_t * att_connection;
26018707219SMatthias Ringwald     hci_con_handle_t con_handle;
26168591e36SMatthias Ringwald     hci_connection_t * hci_connection;
26270dca4d4SMatthias Ringwald #ifdef ENABLE_GATT_OVER_CLASSIC
26370dca4d4SMatthias Ringwald     bd_addr_t address;
26468591e36SMatthias Ringwald     btstack_linked_list_iterator_t it;
26570dca4d4SMatthias Ringwald #endif
26618707219SMatthias Ringwald 
2673deb3ec6SMatthias Ringwald     switch (packet_type) {
2683deb3ec6SMatthias Ringwald 
2693deb3ec6SMatthias Ringwald         case HCI_EVENT_PACKET:
2700e2df43fSMatthias Ringwald             switch (hci_event_packet_get_type(packet)) {
2713deb3ec6SMatthias Ringwald 
27270dca4d4SMatthias Ringwald #ifdef ENABLE_GATT_OVER_CLASSIC
27370dca4d4SMatthias Ringwald                 case L2CAP_EVENT_INCOMING_CONNECTION:
27470dca4d4SMatthias Ringwald                     l2cap_event_incoming_connection_get_address(packet, address);
27570dca4d4SMatthias Ringwald                     l2cap_accept_connection(channel);
27636de8547SMatthias Ringwald                     log_info("Accept incoming connection from %s", bd_addr_to_str(address));
27770dca4d4SMatthias Ringwald                     break;
27870dca4d4SMatthias Ringwald                 case L2CAP_EVENT_CHANNEL_OPENED:
279122b723eSMatthias Ringwald                     con_handle = l2cap_event_channel_opened_get_handle(packet);
28068591e36SMatthias Ringwald                     hci_connection = hci_connection_for_handle(con_handle);
28168591e36SMatthias Ringwald                     if (!hci_connection) break;
28268591e36SMatthias Ringwald                     att_server = &hci_connection->att_server;
283122b723eSMatthias Ringwald                     // store connection info
28423079b39SMatthias Ringwald                     att_server->bearer_type = ATT_BEARER_UNENHANCED_CLASSIC;
285f16129ceSMatthias Ringwald                     att_server->peer_addr_type = BD_ADDR_TYPE_ACL;
286122b723eSMatthias Ringwald                     l2cap_event_channel_opened_get_address(packet, att_server->peer_address);
287388fa7c4SMatthias Ringwald                     att_connection = &hci_connection->att_connection;
288b6df12b6SMatthias Ringwald                     att_connection->con_handle = con_handle;
28970dca4d4SMatthias Ringwald                     att_server->l2cap_cid = l2cap_event_channel_opened_get_local_cid(packet);
290122b723eSMatthias Ringwald                     // reset connection properties
291122b723eSMatthias Ringwald                     att_server->state = ATT_SERVER_IDLE;
292b6df12b6SMatthias Ringwald                     att_connection->mtu = l2cap_event_channel_opened_get_remote_mtu(packet);
293b6df12b6SMatthias Ringwald                     att_connection->max_mtu = l2cap_max_mtu();
294b6df12b6SMatthias Ringwald                     if (att_connection->max_mtu > ATT_REQUEST_BUFFER_SIZE){
295b6df12b6SMatthias Ringwald                         att_connection->max_mtu = ATT_REQUEST_BUFFER_SIZE;
296122b723eSMatthias Ringwald                     }
297df33ee14SMatthias Ringwald 
298b6df12b6SMatthias Ringwald                     log_info("Connection opened %s, l2cap cid %04x, mtu %u", bd_addr_to_str(address), att_server->l2cap_cid, att_connection->mtu);
299df33ee14SMatthias Ringwald 
300914988a1SMatthias Ringwald                     // update security params
301b6df12b6SMatthias Ringwald                     att_connection->encryption_key_size = gap_encryption_key_size(con_handle);
302b6df12b6SMatthias Ringwald                     att_connection->authenticated = gap_authenticated(con_handle);
303b6df12b6SMatthias Ringwald                     att_connection->secure_connection = gap_secure_connection(con_handle);
304914988a1SMatthias Ringwald                     log_info("encrypted key size %u, authenticated %u, secure connection %u",
305b6df12b6SMatthias Ringwald                         att_connection->encryption_key_size, att_connection->authenticated, att_connection->secure_connection);
306df33ee14SMatthias Ringwald 
307df33ee14SMatthias Ringwald                     // notify connection opened
3086d2214cbSMatthias Ringwald                     att_emit_connected_event(att_server, att_connection);
309df33ee14SMatthias Ringwald 
310914988a1SMatthias Ringwald                     // restore persisten ccc if encrypted
311914988a1SMatthias Ringwald                     if ( gap_security_level(con_handle) >= LEVEL_2){
312*9a1f55eaSMatthias Ringwald                         att_server_persistent_ccc_restore(att_server, att_connection);
313914988a1SMatthias Ringwald                     }
314122b723eSMatthias Ringwald                     // TODO: what to do about le device db?
315122b723eSMatthias Ringwald                     att_server->pairing_active = 0;
31670dca4d4SMatthias Ringwald                     break;
31748364364SMatthias Ringwald                 case L2CAP_EVENT_CAN_SEND_NOW:
31848364364SMatthias Ringwald                     att_server_handle_can_send_now();
31948364364SMatthias Ringwald                     break;
32048364364SMatthias Ringwald 
32170dca4d4SMatthias Ringwald #endif
3223deb3ec6SMatthias Ringwald                 case HCI_EVENT_LE_META:
3233deb3ec6SMatthias Ringwald                     switch (packet[2]) {
3243deb3ec6SMatthias Ringwald                         case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
32518707219SMatthias Ringwald                             con_handle = little_endian_read_16(packet, 4);
32668591e36SMatthias Ringwald                             hci_connection = hci_connection_for_handle(con_handle);
32768591e36SMatthias Ringwald                             if (!hci_connection) break;
32868591e36SMatthias Ringwald                             att_server = &hci_connection->att_server;
3293deb3ec6SMatthias Ringwald                         	// store connection info
33018707219SMatthias Ringwald                         	att_server->peer_addr_type = packet[7];
33118707219SMatthias Ringwald                             reverse_bd_addr(&packet[8], att_server->peer_address);
332388fa7c4SMatthias Ringwald                             att_connection = &hci_connection->att_connection;
333b6df12b6SMatthias Ringwald                             att_connection->con_handle = con_handle;
3343deb3ec6SMatthias Ringwald                             // reset connection properties
33518707219SMatthias Ringwald                             att_server->state = ATT_SERVER_IDLE;
33623079b39SMatthias Ringwald                             att_server->bearer_type = ATT_BEARER_UNENHANCED_LE;
337b6df12b6SMatthias Ringwald                             att_connection->mtu = ATT_DEFAULT_MTU;
338b6df12b6SMatthias Ringwald                             att_connection->max_mtu = l2cap_max_le_mtu();
339b6df12b6SMatthias Ringwald                             if (att_connection->max_mtu > ATT_REQUEST_BUFFER_SIZE){
340b6df12b6SMatthias Ringwald                                 att_connection->max_mtu = ATT_REQUEST_BUFFER_SIZE;
34199c58ad0SMatthias Ringwald                             }
34238b893aaSMilanka Ringwald                             att_connection->encryption_key_size = 0u;
34338b893aaSMilanka Ringwald                             att_connection->authenticated = 0u;
34438b893aaSMilanka Ringwald 		                	att_connection->authorized = 0u;
345b2c1e52cSMatthias Ringwald                             // workaround: identity resolving can already be complete, at least store result
346b2c1e52cSMatthias Ringwald                             att_server->ir_le_device_db_index = sm_le_device_index(con_handle);
34738b893aaSMilanka Ringwald                             att_server->ir_lookup_active = 0u;
34838b893aaSMilanka Ringwald                             att_server->pairing_active = 0u;
349ff1bec95SMatthias Ringwald                             // notify all - old
3505d07396bSMatthias Ringwald                             att_emit_event_to_all(packet, size);
351ff1bec95SMatthias Ringwald                             // notify all - new
3526d2214cbSMatthias Ringwald                             att_emit_connected_event(att_server, att_connection);
3533deb3ec6SMatthias Ringwald                             break;
3543deb3ec6SMatthias Ringwald 
3553deb3ec6SMatthias Ringwald                         default:
3563deb3ec6SMatthias Ringwald                             break;
3573deb3ec6SMatthias Ringwald                     }
3583deb3ec6SMatthias Ringwald                     break;
3593deb3ec6SMatthias Ringwald 
3603deb3ec6SMatthias Ringwald                 case HCI_EVENT_ENCRYPTION_CHANGE:
3618601e696SMatthias Ringwald                 case HCI_EVENT_ENCRYPTION_CHANGE_V2:
3623deb3ec6SMatthias Ringwald                 case HCI_EVENT_ENCRYPTION_KEY_REFRESH_COMPLETE:
3633deb3ec6SMatthias Ringwald                 	// check handle
36418707219SMatthias Ringwald                     con_handle = little_endian_read_16(packet, 3);
36568591e36SMatthias Ringwald                     hci_connection = hci_connection_for_handle(con_handle);
36668591e36SMatthias Ringwald                     if (!hci_connection) break;
367914988a1SMatthias Ringwald                     if (gap_get_connection_type(con_handle) != GAP_CONNECTION_LE) break;
368914988a1SMatthias Ringwald                     // update security params
36968591e36SMatthias Ringwald                     att_server = &hci_connection->att_server;
370388fa7c4SMatthias Ringwald                     att_connection = &hci_connection->att_connection;
371b6df12b6SMatthias Ringwald                     att_connection->encryption_key_size = gap_encryption_key_size(con_handle);
372ff3f1026SMatthias Ringwald                     att_connection->authenticated = gap_authenticated(con_handle) ? 1 : 0;
373f461b3dfSMatthias Ringwald                     att_connection->secure_connection = gap_secure_connection(con_handle) ? 1 : 0;
374914988a1SMatthias Ringwald                     log_info("encrypted key size %u, authenticated %u, secure connection %u",
375b6df12b6SMatthias Ringwald                         att_connection->encryption_key_size, att_connection->authenticated, att_connection->secure_connection);
376914988a1SMatthias Ringwald                     if (hci_event_packet_get_type(packet) == HCI_EVENT_ENCRYPTION_CHANGE){
3774097998aSMatthias Ringwald                         // restore CCC values when encrypted for LE Connections
37822bfc225SMilanka Ringwald                         if (hci_event_encryption_change_get_encryption_enabled(packet) != 0){
379*9a1f55eaSMatthias Ringwald                             att_server_persistent_ccc_restore(att_server, att_connection);
38001ac2008SMatthias Ringwald                         }
38101ac2008SMatthias Ringwald                     }
382cd45e970SMatthias Ringwald                     att_run_for_context(att_server, att_connection);
3833deb3ec6SMatthias Ringwald                     break;
3843deb3ec6SMatthias Ringwald 
3853deb3ec6SMatthias Ringwald                 case HCI_EVENT_DISCONNECTION_COMPLETE:
38670a390c7SMatthias Ringwald                     // check handle
38718707219SMatthias Ringwald                     con_handle = hci_event_disconnection_complete_get_connection_handle(packet);
38868591e36SMatthias Ringwald                     hci_connection = hci_connection_for_handle(con_handle);
38968591e36SMatthias Ringwald                     if (!hci_connection) break;
39068591e36SMatthias Ringwald                     att_server = &hci_connection->att_server;
391388fa7c4SMatthias Ringwald                     att_connection = &hci_connection->att_connection;
392b6df12b6SMatthias Ringwald                     att_clear_transaction_queue(att_connection);
393b6df12b6SMatthias Ringwald                     att_connection->con_handle = 0;
394760ad805SMatthias Ringwald                     att_server->pairing_active = 0;
39518707219SMatthias Ringwald                     att_server->state = ATT_SERVER_IDLE;
39638b893aaSMilanka Ringwald                     if (att_server->value_indication_handle != 0u){
39727328ecbSMatthias Ringwald                         btstack_run_loop_remove_timer(&att_server->value_indication_timer);
398bce48a26SMatthias Ringwald                         uint16_t att_handle = att_server->value_indication_handle;
39938b893aaSMilanka Ringwald                         att_server->value_indication_handle = 0u; // reset error state
40038b893aaSMilanka Ringwald                         att_handle_value_indication_notify_client((uint8_t)ATT_HANDLE_VALUE_INDICATION_DISCONNECT, att_connection->con_handle, att_handle);
401bce48a26SMatthias Ringwald                     }
402ff1bec95SMatthias Ringwald                     // notify all - new
4036187ad4cSMatthias Ringwald                     att_emit_disconnected_event(con_handle);
404ff1bec95SMatthias Ringwald                     // notify all - old
4055d07396bSMatthias Ringwald                     att_emit_event_to_all(packet, size);
4063deb3ec6SMatthias Ringwald                     break;
4073deb3ec6SMatthias Ringwald 
408760ad805SMatthias Ringwald                 // Identity Resolving
4095611a760SMatthias Ringwald                 case SM_EVENT_IDENTITY_RESOLVING_STARTED:
41018707219SMatthias Ringwald                     con_handle = sm_event_identity_resolving_started_get_handle(packet);
41168591e36SMatthias Ringwald                     hci_connection = hci_connection_for_handle(con_handle);
41268591e36SMatthias Ringwald                     if (!hci_connection) break;
41368591e36SMatthias Ringwald                     att_server = &hci_connection->att_server;
4145611a760SMatthias Ringwald                     log_info("SM_EVENT_IDENTITY_RESOLVING_STARTED");
41530c8e114SMatthias Ringwald                     att_server->ir_lookup_active = 1;
4163deb3ec6SMatthias Ringwald                     break;
4175611a760SMatthias Ringwald                 case SM_EVENT_IDENTITY_RESOLVING_SUCCEEDED:
418760ad805SMatthias Ringwald                     con_handle = sm_event_identity_created_get_handle(packet);
41968591e36SMatthias Ringwald                     hci_connection = hci_connection_for_handle(con_handle);
42068591e36SMatthias Ringwald                     if (!hci_connection) return;
42168591e36SMatthias Ringwald                     att_server = &hci_connection->att_server;
42230c8e114SMatthias Ringwald                     att_server->ir_lookup_active = 0;
4231b7acd0dSMatthias Ringwald                     att_server->ir_le_device_db_index = sm_event_identity_resolving_succeeded_get_index(packet);
4241b7acd0dSMatthias Ringwald                     log_info("SM_EVENT_IDENTITY_RESOLVING_SUCCEEDED");
425cd45e970SMatthias Ringwald                     att_run_for_context(att_server, att_connection);
4263deb3ec6SMatthias Ringwald                     break;
4275611a760SMatthias Ringwald                 case SM_EVENT_IDENTITY_RESOLVING_FAILED:
42818707219SMatthias Ringwald                     con_handle = sm_event_identity_resolving_failed_get_handle(packet);
42968591e36SMatthias Ringwald                     hci_connection = hci_connection_for_handle(con_handle);
43068591e36SMatthias Ringwald                     if (!hci_connection) break;
43168591e36SMatthias Ringwald                     att_server = &hci_connection->att_server;
4325611a760SMatthias Ringwald                     log_info("SM_EVENT_IDENTITY_RESOLVING_FAILED");
43330c8e114SMatthias Ringwald                     att_server->ir_lookup_active = 0;
43418707219SMatthias Ringwald                     att_server->ir_le_device_db_index = -1;
435cd45e970SMatthias Ringwald                     att_run_for_context(att_server, att_connection);
4363deb3ec6SMatthias Ringwald                     break;
437760ad805SMatthias Ringwald 
438760ad805SMatthias Ringwald                 // Pairing started - delete stored CCC values
439760ad805SMatthias Ringwald                 // - assumes pairing indicates either new device or re-pairing, in both cases there should be no stored CCC values
440760ad805SMatthias Ringwald                 // - assumes that all events have the con handle as the first field
441760ad805SMatthias Ringwald                 case SM_EVENT_JUST_WORKS_REQUEST:
442760ad805SMatthias Ringwald                 case SM_EVENT_PASSKEY_DISPLAY_NUMBER:
443760ad805SMatthias Ringwald                 case SM_EVENT_PASSKEY_INPUT_NUMBER:
444760ad805SMatthias Ringwald                 case SM_EVENT_NUMERIC_COMPARISON_REQUEST:
445760ad805SMatthias Ringwald                     con_handle = sm_event_just_works_request_get_handle(packet);
44668591e36SMatthias Ringwald                     hci_connection = hci_connection_for_handle(con_handle);
44768591e36SMatthias Ringwald                     if (!hci_connection) break;
44868591e36SMatthias Ringwald                     att_server = &hci_connection->att_server;
449760ad805SMatthias Ringwald                     att_server->pairing_active = 1;
450760ad805SMatthias Ringwald                     log_info("SM Pairing started");
451760ad805SMatthias Ringwald                     if (att_server->ir_le_device_db_index < 0) break;
452cd45e970SMatthias Ringwald                     att_run_for_context(att_server, att_connection);
453760ad805SMatthias Ringwald                     // index not valid anymore
454760ad805SMatthias Ringwald                     att_server->ir_le_device_db_index = -1;
455760ad805SMatthias Ringwald                     break;
456760ad805SMatthias Ringwald 
4571b7acd0dSMatthias Ringwald                 // Bonding completed
458760ad805SMatthias Ringwald                 case SM_EVENT_IDENTITY_CREATED:
459760ad805SMatthias Ringwald                     con_handle = sm_event_identity_created_get_handle(packet);
46068591e36SMatthias Ringwald                     hci_connection = hci_connection_for_handle(con_handle);
46168591e36SMatthias Ringwald                     if (!hci_connection) return;
46268591e36SMatthias Ringwald                     att_server = &hci_connection->att_server;
463760ad805SMatthias Ringwald                     att_server->pairing_active = 0;
4641b7acd0dSMatthias Ringwald                     att_server->ir_le_device_db_index = sm_event_identity_created_get_index(packet);
465cd45e970SMatthias Ringwald                     att_run_for_context(att_server, att_connection);
4661b7acd0dSMatthias Ringwald                     break;
4671b7acd0dSMatthias Ringwald 
4681b7acd0dSMatthias Ringwald                 // Pairing complete (with/without bonding=storing of pairing information)
4691b7acd0dSMatthias Ringwald                 case SM_EVENT_PAIRING_COMPLETE:
4701b7acd0dSMatthias Ringwald                     con_handle = sm_event_pairing_complete_get_handle(packet);
47168591e36SMatthias Ringwald                     hci_connection = hci_connection_for_handle(con_handle);
47268591e36SMatthias Ringwald                     if (!hci_connection) return;
47368591e36SMatthias Ringwald                     att_server = &hci_connection->att_server;
4741b7acd0dSMatthias Ringwald                     att_server->pairing_active = 0;
475cd45e970SMatthias Ringwald                     att_run_for_context(att_server, att_connection);
476760ad805SMatthias Ringwald                     break;
477760ad805SMatthias Ringwald 
478760ad805SMatthias Ringwald                 // Authorization
4795611a760SMatthias Ringwald                 case SM_EVENT_AUTHORIZATION_RESULT: {
48018707219SMatthias Ringwald                     con_handle = sm_event_authorization_result_get_handle(packet);
48168591e36SMatthias Ringwald                     hci_connection = hci_connection_for_handle(con_handle);
48268591e36SMatthias Ringwald                     if (!hci_connection) break;
48368591e36SMatthias Ringwald                     att_server = &hci_connection->att_server;
484388fa7c4SMatthias Ringwald                     att_connection = &hci_connection->att_connection;
485b6df12b6SMatthias Ringwald                     att_connection->authorized = sm_event_authorization_result_get_authorization_result(packet);
4863f9b77dbSMatthias Ringwald                     att_server_request_can_send_now(att_server, att_connection);
4873deb3ec6SMatthias Ringwald                 	break;
4883deb3ec6SMatthias Ringwald                 }
4893deb3ec6SMatthias Ringwald                 default:
4903deb3ec6SMatthias Ringwald                     break;
4913deb3ec6SMatthias Ringwald             }
49265b44ffdSMatthias Ringwald             break;
49370dca4d4SMatthias Ringwald #ifdef ENABLE_GATT_OVER_CLASSIC
49470dca4d4SMatthias Ringwald         case L2CAP_DATA_PACKET:
49568591e36SMatthias Ringwald             hci_connections_get_iterator(&it);
49668591e36SMatthias Ringwald             while(btstack_linked_list_iterator_has_next(&it)){
497388fa7c4SMatthias Ringwald                 hci_connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
498388fa7c4SMatthias Ringwald                 att_server = &hci_connection->att_server;
49968591e36SMatthias Ringwald                 if (att_server->l2cap_cid == channel) {
500388fa7c4SMatthias Ringwald                     att_server_handle_att_pdu(hci_connection, packet, size);
50168591e36SMatthias Ringwald                     break;
50268591e36SMatthias Ringwald                 }
50368591e36SMatthias Ringwald             }
50470dca4d4SMatthias Ringwald             break;
50570dca4d4SMatthias Ringwald #endif
50641772f37SMatthias Ringwald 
50765b44ffdSMatthias Ringwald         default:
50865b44ffdSMatthias Ringwald             break;
5093deb3ec6SMatthias Ringwald     }
5103deb3ec6SMatthias Ringwald }
5113deb3ec6SMatthias Ringwald 
512d415948cSMatthias Ringwald static uint8_t att_server_send_prepared(const att_server_t *att_server, const att_connection_t *att_connection, uint16_t size) {
513d415948cSMatthias Ringwald     uint8_t status = ERROR_CODE_SUCCESS;
514d415948cSMatthias Ringwald     switch (att_server->bearer_type) {
515d415948cSMatthias Ringwald         case ATT_BEARER_UNENHANCED_LE:
516d415948cSMatthias Ringwald             status = l2cap_send_prepared_connectionless(att_connection->con_handle, L2CAP_CID_ATTRIBUTE_PROTOCOL, size);
517d415948cSMatthias Ringwald #ifdef ENABLE_GATT_OVER_CLASSIC
518d415948cSMatthias Ringwald         case ATT_BEARER_UNENHANCED_CLASSIC:
519d415948cSMatthias Ringwald             status = l2cap_send_prepared(att_server->l2cap_cid, size);
520d415948cSMatthias Ringwald             break;
521d415948cSMatthias Ringwald #endif
522d415948cSMatthias Ringwald         default:
523d415948cSMatthias Ringwald             btstack_unreachable();
524d415948cSMatthias Ringwald             break;
525d415948cSMatthias Ringwald     }
526d415948cSMatthias Ringwald     return status;
527d415948cSMatthias Ringwald }
528d415948cSMatthias Ringwald 
5297a766ebfSMatthias Ringwald #ifdef ENABLE_LE_SIGNED_WRITE
5303deb3ec6SMatthias Ringwald static void att_signed_write_handle_cmac_result(uint8_t hash[8]){
5313deb3ec6SMatthias Ringwald 
53268591e36SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_state(ATT_SERVER_W4_SIGNED_WRITE_VALIDATION);
53368591e36SMatthias Ringwald     if (!hci_connection) return;
53468591e36SMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
5353f9b77dbSMatthias Ringwald     att_connection_t * att_connection = &hci_connection->att_connection;
5363deb3ec6SMatthias Ringwald 
5373deb3ec6SMatthias Ringwald     uint8_t hash_flipped[8];
5389c80e4ccSMatthias Ringwald     reverse_64(hash, hash_flipped);
53918707219SMatthias Ringwald     if (memcmp(hash_flipped, &att_server->request_buffer[att_server->request_size-8], 8)){
5403deb3ec6SMatthias Ringwald         log_info("ATT Signed Write, invalid signature");
54103f53d81SMatthias Ringwald #ifdef ENABLE_TESTING_SUPPORT
54203f53d81SMatthias Ringwald         printf("ATT Signed Write, invalid signature\n");
54303f53d81SMatthias Ringwald #endif
54418707219SMatthias Ringwald         att_server->state = ATT_SERVER_IDLE;
5453deb3ec6SMatthias Ringwald         return;
5463deb3ec6SMatthias Ringwald     }
5473deb3ec6SMatthias Ringwald     log_info("ATT Signed Write, valid signature");
54803f53d81SMatthias Ringwald #ifdef ENABLE_TESTING_SUPPORT
54903f53d81SMatthias Ringwald     printf("ATT Signed Write, valid signature\n");
55003f53d81SMatthias Ringwald #endif
5513deb3ec6SMatthias Ringwald 
5523deb3ec6SMatthias Ringwald     // update sequence number
55318707219SMatthias Ringwald     uint32_t counter_packet = little_endian_read_32(att_server->request_buffer, att_server->request_size-12);
55418707219SMatthias Ringwald     le_device_db_remote_counter_set(att_server->ir_le_device_db_index, counter_packet+1);
55518707219SMatthias Ringwald     att_server->state = ATT_SERVER_REQUEST_RECEIVED_AND_VALIDATED;
5563f9b77dbSMatthias Ringwald     att_server_request_can_send_now(att_server, att_connection);
5573deb3ec6SMatthias Ringwald }
5587a766ebfSMatthias Ringwald #endif
55988a48dd8SMatthias Ringwald 
56018707219SMatthias Ringwald // pre: att_server->state == ATT_SERVER_REQUEST_RECEIVED_AND_VALIDATED
561b06f2579SMatthias Ringwald // pre: can send now
562b06f2579SMatthias Ringwald // returns: 1 if packet was sent
56368591e36SMatthias Ringwald static int att_server_process_validated_request(hci_connection_t * hci_connection){
56468591e36SMatthias Ringwald     att_server_t * att_server = & hci_connection->att_server;
565388fa7c4SMatthias Ringwald     att_connection_t * att_connection = &hci_connection->att_connection;
566b06f2579SMatthias Ringwald 
567b06f2579SMatthias Ringwald     l2cap_reserve_packet_buffer();
568b06f2579SMatthias Ringwald     uint8_t * att_response_buffer = l2cap_get_outgoing_buffer();
569b6df12b6SMatthias Ringwald     uint16_t  att_response_size   = att_handle_request(att_connection, att_server->request_buffer, att_server->request_size, att_response_buffer);
570b06f2579SMatthias Ringwald 
571beb20288SMatthias Ringwald #ifdef ENABLE_ATT_DELAYED_RESPONSE
572c1ab6cc1SMatthias Ringwald     if ((att_response_size == ATT_READ_RESPONSE_PENDING) || (att_response_size == ATT_INTERNAL_WRITE_RESPONSE_PENDING)){
573e404a688SMatthias Ringwald         // update state
574beb20288SMatthias Ringwald         att_server->state = ATT_SERVER_RESPONSE_PENDING;
575e404a688SMatthias Ringwald 
57656c3a347SMatthias Ringwald         // callback with handle ATT_READ_RESPONSE_PENDING for reads
57756c3a347SMatthias Ringwald         if (att_response_size == ATT_READ_RESPONSE_PENDING){
578b6df12b6SMatthias Ringwald             att_server_client_read_callback(att_connection->con_handle, ATT_READ_RESPONSE_PENDING, 0, NULL, 0);
57956c3a347SMatthias Ringwald         }
580e8e7403eSMatthias Ringwald 
581e8e7403eSMatthias Ringwald         // free reserved buffer
582e8e7403eSMatthias Ringwald         l2cap_release_packet_buffer();
583e8e7403eSMatthias Ringwald         return 0;
584e404a688SMatthias Ringwald     }
585e404a688SMatthias Ringwald #endif
586e404a688SMatthias Ringwald 
587b06f2579SMatthias Ringwald     // intercept "insufficient authorization" for authenticated connections to allow for user authorization
5884ea43905SMatthias Ringwald     if ((att_response_size     >= 4u)
589b06f2579SMatthias Ringwald     && (att_response_buffer[0] == ATT_ERROR_RESPONSE)
590b06f2579SMatthias Ringwald     && (att_response_buffer[4] == ATT_ERROR_INSUFFICIENT_AUTHORIZATION)
59138b893aaSMilanka Ringwald     && (att_connection->authenticated != 0u)){
592b06f2579SMatthias Ringwald 
593b6df12b6SMatthias Ringwald         switch (gap_authorization_state(att_connection->con_handle)){
594b06f2579SMatthias Ringwald             case AUTHORIZATION_UNKNOWN:
595b06f2579SMatthias Ringwald                 l2cap_release_packet_buffer();
596b6df12b6SMatthias Ringwald                 sm_request_pairing(att_connection->con_handle);
597b06f2579SMatthias Ringwald                 return 0;
598b06f2579SMatthias Ringwald             case AUTHORIZATION_PENDING:
599b06f2579SMatthias Ringwald                 l2cap_release_packet_buffer();
600b06f2579SMatthias Ringwald                 return 0;
601b06f2579SMatthias Ringwald             default:
602b06f2579SMatthias Ringwald                 break;
603b06f2579SMatthias Ringwald         }
604b06f2579SMatthias Ringwald     }
605b06f2579SMatthias Ringwald 
60618707219SMatthias Ringwald     att_server->state = ATT_SERVER_IDLE;
6074ea43905SMatthias Ringwald     if (att_response_size == 0u) {
608b06f2579SMatthias Ringwald         l2cap_release_packet_buffer();
609b06f2579SMatthias Ringwald         return 0;
610b06f2579SMatthias Ringwald     }
611b06f2579SMatthias Ringwald 
612d415948cSMatthias Ringwald     (void) att_server_send_prepared(att_server, att_connection, att_response_size);
613b06f2579SMatthias Ringwald 
614b06f2579SMatthias Ringwald     // notify client about MTU exchange result
615b06f2579SMatthias Ringwald     if (att_response_buffer[0] == ATT_EXCHANGE_MTU_RESPONSE){
616b6df12b6SMatthias Ringwald         att_emit_mtu_event(att_connection->con_handle, att_connection->mtu);
617b06f2579SMatthias Ringwald     }
618b06f2579SMatthias Ringwald     return 1;
619b06f2579SMatthias Ringwald }
620b06f2579SMatthias Ringwald 
621beb20288SMatthias Ringwald #ifdef ENABLE_ATT_DELAYED_RESPONSE
6229816429dSMatthias Ringwald uint8_t att_server_response_ready(hci_con_handle_t con_handle){
62368591e36SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
62468591e36SMatthias Ringwald     if (!hci_connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
62568591e36SMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
6263f9b77dbSMatthias Ringwald     att_connection_t * att_connection = &hci_connection->att_connection;
627beb20288SMatthias Ringwald     if (att_server->state != ATT_SERVER_RESPONSE_PENDING)   return ERROR_CODE_COMMAND_DISALLOWED;
628e404a688SMatthias Ringwald 
629e404a688SMatthias Ringwald     att_server->state = ATT_SERVER_REQUEST_RECEIVED_AND_VALIDATED;
6303f9b77dbSMatthias Ringwald     att_server_request_can_send_now(att_server, att_connection);
631e404a688SMatthias Ringwald     return ERROR_CODE_SUCCESS;
632e404a688SMatthias Ringwald }
633e404a688SMatthias Ringwald #endif
634e404a688SMatthias Ringwald 
635cd45e970SMatthias Ringwald static void att_run_for_context(att_server_t * att_server, att_connection_t * att_connection){
63618707219SMatthias Ringwald     switch (att_server->state){
6373deb3ec6SMatthias Ringwald         case ATT_SERVER_REQUEST_RECEIVED:
63823079b39SMatthias Ringwald             switch (att_server->bearer_type){
63923079b39SMatthias Ringwald                 case ATT_BEARER_UNENHANCED_LE:
6400234fbbcSMatthias Ringwald                     // wait until re-encryption as central is complete
64123079b39SMatthias Ringwald                     if (gap_reconnect_security_setup_active(att_connection->con_handle)) {
64223079b39SMatthias Ringwald                         return;
64323079b39SMatthias Ringwald                     };
64423079b39SMatthias Ringwald                     break;
64523079b39SMatthias Ringwald #ifdef ENABLE_GATT_OVER_CLASSIC
64623079b39SMatthias Ringwald                 case ATT_BEARER_UNENHANCED_CLASSIC:
64723079b39SMatthias Ringwald                     // ok
64823079b39SMatthias Ringwald                     break;
64923079b39SMatthias Ringwald #endif
65023079b39SMatthias Ringwald                 default:
65123079b39SMatthias Ringwald                     btstack_unreachable();
65223079b39SMatthias Ringwald                     break;
65348364364SMatthias Ringwald             }
6540234fbbcSMatthias Ringwald 
655760ad805SMatthias Ringwald             // wait until pairing is complete
656760ad805SMatthias Ringwald             if (att_server->pairing_active) break;
657760ad805SMatthias Ringwald 
6587a766ebfSMatthias Ringwald #ifdef ENABLE_LE_SIGNED_WRITE
65918707219SMatthias Ringwald             if (att_server->request_buffer[0] == ATT_SIGNED_WRITE_COMMAND){
6603deb3ec6SMatthias Ringwald                 log_info("ATT Signed Write!");
6613deb3ec6SMatthias Ringwald                 if (!sm_cmac_ready()) {
6623deb3ec6SMatthias Ringwald                     log_info("ATT Signed Write, sm_cmac engine not ready. Abort");
66318707219SMatthias Ringwald                     att_server->state = ATT_SERVER_IDLE;
6643deb3ec6SMatthias Ringwald                     return;
6653deb3ec6SMatthias Ringwald                 }
66618707219SMatthias Ringwald                 if (att_server->request_size < (3 + 12)) {
6673deb3ec6SMatthias Ringwald                     log_info("ATT Signed Write, request to short. Abort.");
66818707219SMatthias Ringwald                     att_server->state = ATT_SERVER_IDLE;
6693deb3ec6SMatthias Ringwald                     return;
6703deb3ec6SMatthias Ringwald                 }
67118707219SMatthias Ringwald                 if (att_server->ir_lookup_active){
6723deb3ec6SMatthias Ringwald                     return;
6733deb3ec6SMatthias Ringwald                 }
67418707219SMatthias Ringwald                 if (att_server->ir_le_device_db_index < 0){
6753deb3ec6SMatthias Ringwald                     log_info("ATT Signed Write, CSRK not available");
67618707219SMatthias Ringwald                     att_server->state = ATT_SERVER_IDLE;
6773deb3ec6SMatthias Ringwald                     return;
6783deb3ec6SMatthias Ringwald                 }
6793deb3ec6SMatthias Ringwald 
6803deb3ec6SMatthias Ringwald                 // check counter
68118707219SMatthias Ringwald                 uint32_t counter_packet = little_endian_read_32(att_server->request_buffer, att_server->request_size-12);
68218707219SMatthias Ringwald                 uint32_t counter_db     = le_device_db_remote_counter_get(att_server->ir_le_device_db_index);
6833deb3ec6SMatthias Ringwald                 log_info("ATT Signed Write, DB counter %"PRIu32", packet counter %"PRIu32, counter_db, counter_packet);
6843deb3ec6SMatthias Ringwald                 if (counter_packet < counter_db){
6853deb3ec6SMatthias Ringwald                     log_info("ATT Signed Write, db reports higher counter, abort");
68618707219SMatthias Ringwald                     att_server->state = ATT_SERVER_IDLE;
6873deb3ec6SMatthias Ringwald                     return;
6883deb3ec6SMatthias Ringwald                 }
6893deb3ec6SMatthias Ringwald 
6903deb3ec6SMatthias Ringwald                 // signature is { sequence counter, secure hash }
6913deb3ec6SMatthias Ringwald                 sm_key_t csrk;
69218707219SMatthias Ringwald                 le_device_db_remote_csrk_get(att_server->ir_le_device_db_index, csrk);
69318707219SMatthias Ringwald                 att_server->state = ATT_SERVER_W4_SIGNED_WRITE_VALIDATION;
6943deb3ec6SMatthias Ringwald                 log_info("Orig Signature: ");
69518707219SMatthias Ringwald                 log_info_hexdump( &att_server->request_buffer[att_server->request_size-8], 8);
69618707219SMatthias Ringwald                 uint16_t attribute_handle = little_endian_read_16(att_server->request_buffer, 1);
69718707219SMatthias Ringwald                 sm_cmac_signed_write_start(csrk, att_server->request_buffer[0], attribute_handle, att_server->request_size - 15, &att_server->request_buffer[3], counter_packet, att_signed_write_handle_cmac_result);
6983deb3ec6SMatthias Ringwald                 return;
6993deb3ec6SMatthias Ringwald             }
7007a766ebfSMatthias Ringwald #endif
701b06f2579SMatthias Ringwald             // move on
70218707219SMatthias Ringwald             att_server->state = ATT_SERVER_REQUEST_RECEIVED_AND_VALIDATED;
7033f9b77dbSMatthias Ringwald             att_server_request_can_send_now(att_server, att_connection);
704b06f2579SMatthias Ringwald             break;
70588a48dd8SMatthias Ringwald 
7063deb3ec6SMatthias Ringwald         default:
7073deb3ec6SMatthias Ringwald             break;
7083deb3ec6SMatthias Ringwald     }
7093deb3ec6SMatthias Ringwald }
7103deb3ec6SMatthias Ringwald 
7111979f09cSMatthias Ringwald static bool att_server_data_ready_for_phase(att_server_t * att_server,  att_server_run_phase_t phase){
71290f03c80SMatthias Ringwald     switch (phase){
71390f03c80SMatthias Ringwald         case ATT_SERVER_RUN_PHASE_1_REQUESTS:
71490f03c80SMatthias Ringwald             return att_server->state == ATT_SERVER_REQUEST_RECEIVED_AND_VALIDATED;
71590f03c80SMatthias Ringwald         case ATT_SERVER_RUN_PHASE_2_INDICATIONS:
71638b893aaSMilanka Ringwald              return (!btstack_linked_list_empty(&att_server->indication_requests) && (att_server->value_indication_handle == 0u));
71790f03c80SMatthias Ringwald         case ATT_SERVER_RUN_PHASE_3_NOTIFICATIONS:
71890f03c80SMatthias Ringwald             return (!btstack_linked_list_empty(&att_server->notification_requests));
7197bbeb3adSMilanka Ringwald         default:
7207bbeb3adSMilanka Ringwald             btstack_assert(false);
7211979f09cSMatthias Ringwald             return false;
72290f03c80SMatthias Ringwald     }
7237bbeb3adSMilanka Ringwald }
72490f03c80SMatthias Ringwald 
72568591e36SMatthias Ringwald static void att_server_trigger_send_for_phase(hci_connection_t * hci_connection,  att_server_run_phase_t phase){
72690f03c80SMatthias Ringwald     btstack_context_callback_registration_t * client;
72768591e36SMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
72890f03c80SMatthias Ringwald     switch (phase){
72990f03c80SMatthias Ringwald         case ATT_SERVER_RUN_PHASE_1_REQUESTS:
73068591e36SMatthias Ringwald             att_server_process_validated_request(hci_connection);
73190f03c80SMatthias Ringwald             break;
73290f03c80SMatthias Ringwald         case ATT_SERVER_RUN_PHASE_2_INDICATIONS:
73390f03c80SMatthias Ringwald             client = (btstack_context_callback_registration_t*) att_server->indication_requests;
73490f03c80SMatthias Ringwald             btstack_linked_list_remove(&att_server->indication_requests, (btstack_linked_item_t *) client);
73590f03c80SMatthias Ringwald             client->callback(client->context);
73690f03c80SMatthias Ringwald             break;
73790f03c80SMatthias Ringwald        case ATT_SERVER_RUN_PHASE_3_NOTIFICATIONS:
73890f03c80SMatthias Ringwald             client = (btstack_context_callback_registration_t*) att_server->notification_requests;
73990f03c80SMatthias Ringwald             btstack_linked_list_remove(&att_server->notification_requests, (btstack_linked_item_t *) client);
74090f03c80SMatthias Ringwald             client->callback(client->context);
74190f03c80SMatthias Ringwald             break;
7427bbeb3adSMilanka Ringwald         default:
7437bbeb3adSMilanka Ringwald             btstack_assert(false);
7447bbeb3adSMilanka Ringwald             break;
74590f03c80SMatthias Ringwald     }
74690f03c80SMatthias Ringwald }
74790f03c80SMatthias Ringwald 
7487eb16ee8SMatthias Ringwald static void att_server_handle_can_send_now(void){
749b06f2579SMatthias Ringwald 
7506438547aSMatthias Ringwald     hci_con_handle_t last_send_con_handle = HCI_CON_HANDLE_INVALID;
75168591e36SMatthias Ringwald     hci_connection_t * request_hci_connection   = NULL;
7521979f09cSMatthias Ringwald     bool can_send_now = true;
75338b893aaSMilanka Ringwald     uint8_t phase_index;
7546438547aSMatthias Ringwald 
7554395a000SMatthias Ringwald     for (phase_index = ATT_SERVER_RUN_PHASE_1_REQUESTS; phase_index <= ATT_SERVER_RUN_PHASE_3_NOTIFICATIONS; phase_index++){
7564395a000SMatthias Ringwald         att_server_run_phase_t phase = (att_server_run_phase_t) phase_index;
7576438547aSMatthias Ringwald         hci_con_handle_t skip_connections_until = att_server_last_can_send_now;
758ff3cc4a5SMatthias Ringwald         while (true){
7596438547aSMatthias Ringwald             btstack_linked_list_iterator_t it;
76018707219SMatthias Ringwald             hci_connections_get_iterator(&it);
76118707219SMatthias Ringwald             while(btstack_linked_list_iterator_has_next(&it)){
76218707219SMatthias Ringwald                 hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
76318707219SMatthias Ringwald                 att_server_t * att_server = &connection->att_server;
764388fa7c4SMatthias Ringwald                 att_connection_t * att_connection = &connection->att_connection;
7656438547aSMatthias Ringwald 
7661979f09cSMatthias Ringwald                 bool data_ready = att_server_data_ready_for_phase(att_server, phase);
7676438547aSMatthias Ringwald 
768b6df12b6SMatthias Ringwald                 // log_debug("phase %u, handle 0x%04x, skip until 0x%04x, data ready %u", phase, att_connection->con_handle, skip_connections_until, data_ready);
7696438547aSMatthias Ringwald 
7706438547aSMatthias Ringwald                 // skip until last sender found (which is also skipped)
7716438547aSMatthias Ringwald                 if (skip_connections_until != HCI_CON_HANDLE_INVALID){
77268591e36SMatthias Ringwald                     if (data_ready && (request_hci_connection == NULL)){
77368591e36SMatthias Ringwald                         request_hci_connection = connection;
7746438547aSMatthias Ringwald                     }
775b6df12b6SMatthias Ringwald                     if (skip_connections_until == att_connection->con_handle){
7766438547aSMatthias Ringwald                         skip_connections_until = HCI_CON_HANDLE_INVALID;
7776438547aSMatthias Ringwald                     }
7786438547aSMatthias Ringwald                     continue;
7796438547aSMatthias Ringwald                 };
7806438547aSMatthias Ringwald 
78190f03c80SMatthias Ringwald                 if (data_ready){
782969a5bbaSMatthias Ringwald                     if (can_send_now){
78368591e36SMatthias Ringwald                         att_server_trigger_send_for_phase(connection, phase);
784b6df12b6SMatthias Ringwald                         last_send_con_handle = att_connection->con_handle;
78537a8059dSMatthias Ringwald                         can_send_now = att_server_can_send_packet(att_server, att_connection);
78690f03c80SMatthias Ringwald                         data_ready = att_server_data_ready_for_phase(att_server, phase);
78768591e36SMatthias Ringwald                         if (data_ready && (request_hci_connection == NULL)){
78868591e36SMatthias Ringwald                             request_hci_connection = connection;
789cbbb12d9SMatthias Ringwald                         }
790cbbb12d9SMatthias Ringwald                     } else {
79168591e36SMatthias Ringwald                         request_hci_connection = connection;
792f29a88d8SMatthias Ringwald                         break;
793cbbb12d9SMatthias Ringwald                     }
794cbbb12d9SMatthias Ringwald                 }
7953deb3ec6SMatthias Ringwald             }
7963deb3ec6SMatthias Ringwald 
7976438547aSMatthias Ringwald             // stop skipping (handles disconnect by last send connection)
7986438547aSMatthias Ringwald             skip_connections_until = HCI_CON_HANDLE_INVALID;
7996438547aSMatthias Ringwald 
8003551936eSMatthias Ringwald             // Exit loop, if we cannot send
801969a5bbaSMatthias Ringwald             if (!can_send_now) break;
802969a5bbaSMatthias Ringwald 
803969a5bbaSMatthias Ringwald             // Exit loop, if we can send but there are also no further request
80468591e36SMatthias Ringwald             if (request_hci_connection == NULL) break;
805969a5bbaSMatthias Ringwald 
806969a5bbaSMatthias Ringwald             // Finally, if we still can send and there are requests, just try again
80768591e36SMatthias Ringwald             request_hci_connection = NULL;
808969a5bbaSMatthias Ringwald         }
8096438547aSMatthias Ringwald         // update last send con handle for round robin
8106438547aSMatthias Ringwald         if (last_send_con_handle != HCI_CON_HANDLE_INVALID){
8116438547aSMatthias Ringwald             att_server_last_can_send_now = last_send_con_handle;
8126438547aSMatthias Ringwald         }
8133551936eSMatthias Ringwald     }
814969a5bbaSMatthias Ringwald 
81568591e36SMatthias Ringwald     if (request_hci_connection == NULL) return;
8163f9b77dbSMatthias Ringwald 
8173f9b77dbSMatthias Ringwald     att_server_t * att_server = &request_hci_connection->att_server;
8183f9b77dbSMatthias Ringwald     att_connection_t * att_connection = &request_hci_connection->att_connection;
8193f9b77dbSMatthias Ringwald     att_server_request_can_send_now(att_server, att_connection);
820969a5bbaSMatthias Ringwald }
821969a5bbaSMatthias Ringwald 
82268591e36SMatthias Ringwald static void att_server_handle_att_pdu(hci_connection_t * hci_connection, uint8_t * packet, uint16_t size){
82368591e36SMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
824388fa7c4SMatthias Ringwald     att_connection_t * att_connection = &hci_connection->att_connection;
82518707219SMatthias Ringwald 
826838bd521SMatthias Ringwald     uint8_t opcode  = packet[0u];
82738b893aaSMilanka Ringwald     uint8_t method  = opcode & 0x03fu;
828ed68ae9dSMilanka Ringwald     bool invalid = method > ATT_MULTIPLE_HANDLE_VALUE_NTF;
82938b893aaSMilanka Ringwald     bool command = (opcode & 0x40u) != 0u;
830838bd521SMatthias Ringwald 
831838bd521SMatthias Ringwald     // ignore invalid commands
832838bd521SMatthias Ringwald     if (invalid && command){
833838bd521SMatthias Ringwald         return;
834838bd521SMatthias Ringwald     }
835838bd521SMatthias Ringwald 
8363deb3ec6SMatthias Ringwald     // handle value indication confirms
83738b893aaSMilanka Ringwald     if ((opcode == ATT_HANDLE_VALUE_CONFIRMATION) && (att_server->value_indication_handle != 0u)){
83818707219SMatthias Ringwald         btstack_run_loop_remove_timer(&att_server->value_indication_timer);
83918707219SMatthias Ringwald         uint16_t att_handle = att_server->value_indication_handle;
84038b893aaSMilanka Ringwald         att_server->value_indication_handle = 0u;
84138b893aaSMilanka Ringwald         att_handle_value_indication_notify_client(0u, att_connection->con_handle, att_handle);
8423f9b77dbSMatthias Ringwald         att_server_request_can_send_now(att_server, att_connection);
8433deb3ec6SMatthias Ringwald         return;
8443deb3ec6SMatthias Ringwald     }
8453deb3ec6SMatthias Ringwald 
8466428eb5aSMatthias Ringwald     // directly process command
8476428eb5aSMatthias Ringwald     // note: signed write cannot be handled directly as authentication needs to be verified
848838bd521SMatthias Ringwald     if (opcode == ATT_WRITE_COMMAND){
849b6df12b6SMatthias Ringwald         att_handle_request(att_connection, packet, size, NULL);
8506428eb5aSMatthias Ringwald         return;
8516428eb5aSMatthias Ringwald     }
8526428eb5aSMatthias Ringwald 
8533deb3ec6SMatthias Ringwald     // check size
85418707219SMatthias Ringwald     if (size > sizeof(att_server->request_buffer)) {
855e0463bdcSMatthias Ringwald         log_info("drop att pdu 0x%02x as size %u > att_server->request_buffer %u", packet[0], size, (int) sizeof(att_server->request_buffer));
8566428eb5aSMatthias Ringwald         return;
8576428eb5aSMatthias Ringwald     }
8583deb3ec6SMatthias Ringwald 
859e0463bdcSMatthias Ringwald #ifdef ENABLE_LE_SIGNED_WRITE
860e0463bdcSMatthias Ringwald     // abort signed write validation if a new request comes in (but finish previous signed write if possible)
861e0463bdcSMatthias Ringwald     if (att_server->state == ATT_SERVER_W4_SIGNED_WRITE_VALIDATION){
862e0463bdcSMatthias Ringwald         if (packet[0] == ATT_SIGNED_WRITE_COMMAND){
863e0463bdcSMatthias Ringwald             log_info("skip new signed write request as previous is in validation");
864e0463bdcSMatthias Ringwald             return;
865e0463bdcSMatthias Ringwald         } else {
866e0463bdcSMatthias Ringwald             log_info("abort signed write validation to process new request");
867e0463bdcSMatthias Ringwald             att_server->state = ATT_SERVER_IDLE;
868e0463bdcSMatthias Ringwald         }
869e0463bdcSMatthias Ringwald     }
870e0463bdcSMatthias Ringwald #endif
8713deb3ec6SMatthias Ringwald     // last request still in processing?
87218707219SMatthias Ringwald     if (att_server->state != ATT_SERVER_IDLE){
873e0463bdcSMatthias Ringwald         log_info("skip att pdu 0x%02x as server not idle (state %u)", packet[0], att_server->state);
8746428eb5aSMatthias Ringwald         return;
8756428eb5aSMatthias Ringwald     }
8763deb3ec6SMatthias Ringwald 
8773deb3ec6SMatthias Ringwald     // store request
87818707219SMatthias Ringwald     att_server->state = ATT_SERVER_REQUEST_RECEIVED;
87918707219SMatthias Ringwald     att_server->request_size = size;
8806535961aSMatthias Ringwald     (void)memcpy(att_server->request_buffer, packet, size);
8813deb3ec6SMatthias Ringwald 
882cd45e970SMatthias Ringwald     att_run_for_context(att_server, att_connection);
88341772f37SMatthias Ringwald }
88441772f37SMatthias Ringwald 
88541772f37SMatthias Ringwald static void att_packet_handler(uint8_t packet_type, uint16_t handle, uint8_t *packet, uint16_t size){
88668591e36SMatthias Ringwald     hci_connection_t * hci_connection;
887b6df12b6SMatthias Ringwald     att_connection_t * att_connection;
88841772f37SMatthias Ringwald 
88941772f37SMatthias Ringwald     switch (packet_type){
89041772f37SMatthias Ringwald         case HCI_EVENT_PACKET:
89141772f37SMatthias Ringwald             switch (packet[0]){
89241772f37SMatthias Ringwald                 case L2CAP_EVENT_CAN_SEND_NOW:
89341772f37SMatthias Ringwald                     att_server_handle_can_send_now();
89441772f37SMatthias Ringwald                     break;
89541772f37SMatthias Ringwald                 case ATT_EVENT_MTU_EXCHANGE_COMPLETE:
89641772f37SMatthias Ringwald                     // GATT client has negotiated the mtu for this connection
89768591e36SMatthias Ringwald                     hci_connection = hci_connection_for_handle(handle);
89868591e36SMatthias Ringwald                     if (!hci_connection) break;
899388fa7c4SMatthias Ringwald                     att_connection = &hci_connection->att_connection;
900b6df12b6SMatthias Ringwald                     att_connection->mtu = little_endian_read_16(packet, 4);
90141772f37SMatthias Ringwald                     break;
90241772f37SMatthias Ringwald                 default:
90341772f37SMatthias Ringwald                     break;
90441772f37SMatthias Ringwald             }
90541772f37SMatthias Ringwald             break;
90641772f37SMatthias Ringwald 
90741772f37SMatthias Ringwald         case ATT_DATA_PACKET:
90841772f37SMatthias Ringwald             log_debug("ATT Packet, handle 0x%04x", handle);
90968591e36SMatthias Ringwald             hci_connection = hci_connection_for_handle(handle);
91068591e36SMatthias Ringwald             if (!hci_connection) break;
91141772f37SMatthias Ringwald 
91268591e36SMatthias Ringwald             att_server_handle_att_pdu(hci_connection, packet, size);
913372d62c4SMatthias Ringwald             break;
9147bbeb3adSMilanka Ringwald 
9157bbeb3adSMilanka Ringwald         default:
9167bbeb3adSMilanka Ringwald             break;
917372d62c4SMatthias Ringwald     }
9183deb3ec6SMatthias Ringwald }
9193deb3ec6SMatthias Ringwald 
920bf78aac6SMatthias Ringwald // ---------------------
921bf78aac6SMatthias Ringwald // persistent CCC writes
922bf78aac6SMatthias Ringwald static uint32_t att_server_persistent_ccc_tag_for_index(uint8_t index){
9234ea43905SMatthias Ringwald     return ('B' << 24u) | ('T' << 16u) | ('C' << 8u) | index;
924bf78aac6SMatthias Ringwald }
925bf78aac6SMatthias Ringwald 
926bf78aac6SMatthias Ringwald static void att_server_persistent_ccc_write(hci_con_handle_t con_handle, uint16_t att_handle, uint16_t value){
927bf78aac6SMatthias Ringwald     // lookup att_server instance
92868591e36SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
92968591e36SMatthias Ringwald     if (!hci_connection) return;
93068591e36SMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
931bf78aac6SMatthias Ringwald     int le_device_index = att_server->ir_le_device_db_index;
932bf78aac6SMatthias Ringwald     log_info("Store CCC value 0x%04x for handle 0x%04x of remote %s, le device id %d", value, att_handle, bd_addr_to_str(att_server->peer_address), le_device_index);
9336a540790SMatthias Ringwald 
934bf78aac6SMatthias Ringwald     // check if bonded
935bf78aac6SMatthias Ringwald     if (le_device_index < 0) return;
9366a540790SMatthias Ringwald 
937bf78aac6SMatthias Ringwald     // get btstack_tlv
938bf78aac6SMatthias Ringwald     const btstack_tlv_t * tlv_impl = NULL;
939bf78aac6SMatthias Ringwald     void * tlv_context;
940bf78aac6SMatthias Ringwald     btstack_tlv_get_instance(&tlv_impl, &tlv_context);
941bf78aac6SMatthias Ringwald     if (!tlv_impl) return;
9426a540790SMatthias Ringwald 
943bf78aac6SMatthias Ringwald     // update ccc tag
944bf78aac6SMatthias Ringwald     int index;
9456a540790SMatthias Ringwald     uint32_t highest_seq_nr = 0;
9466a540790SMatthias Ringwald     uint32_t lowest_seq_nr = 0;
9476a540790SMatthias Ringwald     uint32_t tag_for_lowest_seq_nr = 0;
9486a540790SMatthias Ringwald     uint32_t tag_for_empty = 0;
9496a540790SMatthias Ringwald     persistent_ccc_entry_t entry;
9506afb9acaSMatthias Ringwald     for (index=0; index<NVN_NUM_GATT_SERVER_CCC; index++){
951bf78aac6SMatthias Ringwald         uint32_t tag = att_server_persistent_ccc_tag_for_index(index);
9526a540790SMatthias Ringwald         int len = tlv_impl->get_tag(tlv_context, tag, (uint8_t *) &entry, sizeof(persistent_ccc_entry_t));
9536a540790SMatthias Ringwald 
9546a540790SMatthias Ringwald         // empty/invalid tag
9556a540790SMatthias Ringwald         if (len != sizeof(persistent_ccc_entry_t)){
9566a540790SMatthias Ringwald             tag_for_empty = tag;
957bf78aac6SMatthias Ringwald             continue;
958bf78aac6SMatthias Ringwald         }
9596a540790SMatthias Ringwald         // update highest seq nr
9606a540790SMatthias Ringwald         if (entry.seq_nr > highest_seq_nr){
9616a540790SMatthias Ringwald             highest_seq_nr = entry.seq_nr;
9626a540790SMatthias Ringwald         }
9636a540790SMatthias Ringwald         // find entry with lowest seq nr
9644ea43905SMatthias Ringwald         if ((tag_for_lowest_seq_nr == 0u) || (entry.seq_nr < lowest_seq_nr)){
9656a540790SMatthias Ringwald             tag_for_lowest_seq_nr = tag;
9666a540790SMatthias Ringwald             lowest_seq_nr = entry.seq_nr;
9676a540790SMatthias Ringwald         }
9686a540790SMatthias Ringwald 
9696a540790SMatthias Ringwald         if (entry.device_index != le_device_index) continue;
9706a540790SMatthias Ringwald         if (entry.att_handle   != att_handle)      continue;
9716a540790SMatthias Ringwald 
9726a540790SMatthias Ringwald         // found matching entry
9739305033eSMatthias Ringwald         if (value != 0){
974bf78aac6SMatthias Ringwald             // update
9756a540790SMatthias Ringwald             if (entry.value == value) {
976760ad805SMatthias Ringwald                 log_info("CCC Index %u: Up-to-date", index);
977760ad805SMatthias Ringwald                 return;
978760ad805SMatthias Ringwald             }
979348fc806SMatthias Ringwald             entry.value = (uint8_t) value;
9804ea43905SMatthias Ringwald             entry.seq_nr = highest_seq_nr + 1u;
981760ad805SMatthias Ringwald             log_info("CCC Index %u: Store", index);
9820fe46bc1SMatthias Ringwald             int result = tlv_impl->store_tag(tlv_context, tag, (const uint8_t *) &entry, sizeof(persistent_ccc_entry_t));
9830fe46bc1SMatthias Ringwald             if (result != 0){
9840fe46bc1SMatthias Ringwald                 log_error("Store tag index %u failed", index);
9850fe46bc1SMatthias Ringwald             }
98601ac2008SMatthias Ringwald         } else {
98701ac2008SMatthias Ringwald             // delete
988760ad805SMatthias Ringwald             log_info("CCC Index %u: Delete", index);
98901ac2008SMatthias Ringwald             tlv_impl->delete_tag(tlv_context, tag);
99001ac2008SMatthias Ringwald         }
991bf78aac6SMatthias Ringwald         return;
992bf78aac6SMatthias Ringwald     }
9936a540790SMatthias Ringwald 
9940fe46bc1SMatthias Ringwald     log_info("tag_for_empty %"PRIx32", tag_for_lowest_seq_nr %"PRIx32, tag_for_empty, tag_for_lowest_seq_nr);
9956a540790SMatthias Ringwald 
9964ea43905SMatthias Ringwald     if (value == 0u){
9976a540790SMatthias Ringwald         // done
9986a540790SMatthias Ringwald         return;
9996a540790SMatthias Ringwald     }
10006a540790SMatthias Ringwald 
100138b893aaSMilanka Ringwald     uint32_t tag_to_use = 0u;
100238b893aaSMilanka Ringwald     if (tag_for_empty != 0u){
10036a540790SMatthias Ringwald         tag_to_use = tag_for_empty;
10046a540790SMatthias Ringwald     } else if (tag_for_lowest_seq_nr){
10056a540790SMatthias Ringwald         tag_to_use = tag_for_lowest_seq_nr;
10066a540790SMatthias Ringwald     } else {
10076a540790SMatthias Ringwald         // should not happen
10086a540790SMatthias Ringwald         return;
10096a540790SMatthias Ringwald     }
1010bf78aac6SMatthias Ringwald     // store ccc tag
10114ea43905SMatthias Ringwald     entry.seq_nr       = highest_seq_nr + 1u;
10126a540790SMatthias Ringwald     entry.device_index = le_device_index;
10136a540790SMatthias Ringwald     entry.att_handle   = att_handle;
1014348fc806SMatthias Ringwald     entry.value        = (uint8_t) value;
10150fe46bc1SMatthias Ringwald     int result = tlv_impl->store_tag(tlv_context, tag_to_use, (uint8_t *) &entry, sizeof(persistent_ccc_entry_t));
10160fe46bc1SMatthias Ringwald     if (result != 0){
10170fe46bc1SMatthias Ringwald         log_error("Store tag index %u failed", index);
10180fe46bc1SMatthias Ringwald     }
1019bf78aac6SMatthias Ringwald }
1020bf78aac6SMatthias Ringwald 
102168591e36SMatthias Ringwald static void att_server_persistent_ccc_clear(hci_connection_t * hci_connection){
102268591e36SMatthias Ringwald     if (!hci_connection) return;
102368591e36SMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
102468591e36SMatthias Ringwald 
1025760ad805SMatthias Ringwald     int le_device_index = att_server->ir_le_device_db_index;
1026760ad805SMatthias Ringwald     log_info("Clear CCC values of remote %s, le device id %d", bd_addr_to_str(att_server->peer_address), le_device_index);
1027760ad805SMatthias Ringwald     // check if bonded
1028760ad805SMatthias Ringwald     if (le_device_index < 0) return;
1029760ad805SMatthias Ringwald     // get btstack_tlv
1030760ad805SMatthias Ringwald     const btstack_tlv_t * tlv_impl = NULL;
1031760ad805SMatthias Ringwald     void * tlv_context;
1032760ad805SMatthias Ringwald     btstack_tlv_get_instance(&tlv_impl, &tlv_context);
1033760ad805SMatthias Ringwald     if (!tlv_impl) return;
1034760ad805SMatthias Ringwald     // get all ccc tag
1035760ad805SMatthias Ringwald     int index;
10366a540790SMatthias Ringwald     persistent_ccc_entry_t entry;
10376afb9acaSMatthias Ringwald     for (index=0;index<NVN_NUM_GATT_SERVER_CCC;index++){
1038760ad805SMatthias Ringwald         uint32_t tag = att_server_persistent_ccc_tag_for_index(index);
10396a540790SMatthias Ringwald         int len = tlv_impl->get_tag(tlv_context, tag, (uint8_t *) &entry, sizeof(persistent_ccc_entry_t));
10406a540790SMatthias Ringwald         if (len != sizeof(persistent_ccc_entry_t)) continue;
10416a540790SMatthias Ringwald         if (entry.device_index != le_device_index) continue;
1042760ad805SMatthias Ringwald         // delete entry
1043760ad805SMatthias Ringwald         log_info("CCC Index %u: Delete", index);
1044760ad805SMatthias Ringwald         tlv_impl->delete_tag(tlv_context, tag);
1045760ad805SMatthias Ringwald     }
1046760ad805SMatthias Ringwald }
1047760ad805SMatthias Ringwald 
1048*9a1f55eaSMatthias Ringwald static void att_server_persistent_ccc_restore(att_server_t * att_server, att_connection_t * att_connection){
104901ac2008SMatthias Ringwald     int le_device_index = att_server->ir_le_device_db_index;
105001ac2008SMatthias Ringwald     log_info("Restore CCC values of remote %s, le device id %d", bd_addr_to_str(att_server->peer_address), le_device_index);
10511b7acd0dSMatthias Ringwald     // check if bonded
10521b7acd0dSMatthias Ringwald     if (le_device_index < 0) return;
105301ac2008SMatthias Ringwald     // get btstack_tlv
105401ac2008SMatthias Ringwald     const btstack_tlv_t * tlv_impl = NULL;
105501ac2008SMatthias Ringwald     void * tlv_context;
105601ac2008SMatthias Ringwald     btstack_tlv_get_instance(&tlv_impl, &tlv_context);
105701ac2008SMatthias Ringwald     if (!tlv_impl) return;
105801ac2008SMatthias Ringwald     // get all ccc tag
105901ac2008SMatthias Ringwald     int index;
10606a540790SMatthias Ringwald     persistent_ccc_entry_t entry;
10616afb9acaSMatthias Ringwald     for (index=0;index<NVN_NUM_GATT_SERVER_CCC;index++){
106201ac2008SMatthias Ringwald         uint32_t tag = att_server_persistent_ccc_tag_for_index(index);
10636a540790SMatthias Ringwald         int len = tlv_impl->get_tag(tlv_context, tag, (uint8_t *) &entry, sizeof(persistent_ccc_entry_t));
10646a540790SMatthias Ringwald         if (len != sizeof(persistent_ccc_entry_t)) continue;
10656a540790SMatthias Ringwald         if (entry.device_index != le_device_index) continue;
106601ac2008SMatthias Ringwald         // simulate write callback
10676a540790SMatthias Ringwald         uint16_t attribute_handle = entry.att_handle;
106801ac2008SMatthias Ringwald         uint8_t  value[2];
10696a540790SMatthias Ringwald         little_endian_store_16(value, 0, entry.value);
107001ac2008SMatthias Ringwald         att_write_callback_t callback = att_server_write_callback_for_handle(attribute_handle);
107101ac2008SMatthias Ringwald         if (!callback) continue;
10726a540790SMatthias Ringwald         log_info("CCC Index %u: Set Attribute handle 0x%04x to value 0x%04x", index, attribute_handle, entry.value );
1073b6df12b6SMatthias Ringwald         (*callback)(att_connection->con_handle, attribute_handle, ATT_TRANSACTION_MODE_NONE, 0, value, sizeof(value));
107401ac2008SMatthias Ringwald     }
107501ac2008SMatthias Ringwald }
107601ac2008SMatthias Ringwald 
1077bf78aac6SMatthias Ringwald // persistent CCC writes
1078bf78aac6SMatthias Ringwald // ---------------------
10793d71c7a4SMatthias Ringwald 
10803d71c7a4SMatthias Ringwald // gatt service management
10813d71c7a4SMatthias Ringwald static att_service_handler_t * att_service_handler_for_handle(uint16_t handle){
10823d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_t it;
10833d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &service_handlers);
10843d71c7a4SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
10853d71c7a4SMatthias Ringwald         att_service_handler_t * handler = (att_service_handler_t*) btstack_linked_list_iterator_next(&it);
10863d71c7a4SMatthias Ringwald         if (handler->start_handle > handle) continue;
10873d71c7a4SMatthias Ringwald         if (handler->end_handle   < handle) continue;
10883d71c7a4SMatthias Ringwald         return handler;
10893d71c7a4SMatthias Ringwald     }
10903d71c7a4SMatthias Ringwald     return NULL;
10913d71c7a4SMatthias Ringwald }
10923d71c7a4SMatthias Ringwald static att_read_callback_t att_server_read_callback_for_handle(uint16_t handle){
10933d71c7a4SMatthias Ringwald     att_service_handler_t * handler = att_service_handler_for_handle(handle);
10949305033eSMatthias Ringwald     if (handler != NULL) return handler->read_callback;
10953d71c7a4SMatthias Ringwald     return att_server_client_read_callback;
10963d71c7a4SMatthias Ringwald }
10973d71c7a4SMatthias Ringwald 
10983d71c7a4SMatthias Ringwald static att_write_callback_t att_server_write_callback_for_handle(uint16_t handle){
10993d71c7a4SMatthias Ringwald     att_service_handler_t * handler = att_service_handler_for_handle(handle);
11009305033eSMatthias Ringwald     if (handler != NULL) return handler->write_callback;
11013d71c7a4SMatthias Ringwald     return att_server_client_write_callback;
11023d71c7a4SMatthias Ringwald }
11033d71c7a4SMatthias Ringwald 
11045d07396bSMatthias Ringwald static btstack_packet_handler_t att_server_packet_handler_for_handle(uint16_t handle){
11055d07396bSMatthias Ringwald     att_service_handler_t * handler = att_service_handler_for_handle(handle);
11069305033eSMatthias Ringwald     if (handler != NULL) return handler->packet_handler;
11075d07396bSMatthias Ringwald     return att_client_packet_handler;
11085d07396bSMatthias Ringwald }
11095d07396bSMatthias Ringwald 
11103d71c7a4SMatthias Ringwald static void att_notify_write_callbacks(hci_con_handle_t con_handle, uint16_t transaction_mode){
11113d71c7a4SMatthias Ringwald     // notify all callbacks
11123d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_t it;
11133d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &service_handlers);
11143d71c7a4SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
11153d71c7a4SMatthias Ringwald         att_service_handler_t * handler = (att_service_handler_t*) btstack_linked_list_iterator_next(&it);
11163d71c7a4SMatthias Ringwald         if (!handler->write_callback) continue;
11173d71c7a4SMatthias Ringwald         (*handler->write_callback)(con_handle, 0, transaction_mode, 0, NULL, 0);
11183d71c7a4SMatthias Ringwald     }
11193d71c7a4SMatthias Ringwald     if (!att_server_client_write_callback) return;
11203d71c7a4SMatthias Ringwald     (*att_server_client_write_callback)(con_handle, 0, transaction_mode, 0, NULL, 0);
11213d71c7a4SMatthias Ringwald }
11223d71c7a4SMatthias Ringwald 
11233d71c7a4SMatthias Ringwald // returns first reported error or 0
11243d71c7a4SMatthias Ringwald static uint8_t att_validate_prepared_write(hci_con_handle_t con_handle){
11253d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_t it;
11263d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &service_handlers);
11273d71c7a4SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
11283d71c7a4SMatthias Ringwald         att_service_handler_t * handler = (att_service_handler_t*) btstack_linked_list_iterator_next(&it);
11293d71c7a4SMatthias Ringwald         if (!handler->write_callback) continue;
11303d71c7a4SMatthias Ringwald         uint8_t error_code = (*handler->write_callback)(con_handle, 0, ATT_TRANSACTION_MODE_VALIDATE, 0, NULL, 0);
113138b893aaSMilanka Ringwald         if (error_code != 0u) return error_code;
11323d71c7a4SMatthias Ringwald     }
11333d71c7a4SMatthias Ringwald     if (!att_server_client_write_callback) return 0;
11343d71c7a4SMatthias Ringwald     return (*att_server_client_write_callback)(con_handle, 0, ATT_TRANSACTION_MODE_VALIDATE, 0, NULL, 0);
11353d71c7a4SMatthias Ringwald }
11363d71c7a4SMatthias Ringwald 
11373d71c7a4SMatthias Ringwald static uint16_t att_server_read_callback(hci_con_handle_t con_handle, uint16_t attribute_handle, uint16_t offset, uint8_t * buffer, uint16_t buffer_size){
11383d71c7a4SMatthias Ringwald     att_read_callback_t callback = att_server_read_callback_for_handle(attribute_handle);
113901ac2008SMatthias Ringwald     if (!callback) return 0;
11403d71c7a4SMatthias Ringwald     return (*callback)(con_handle, attribute_handle, offset, buffer, buffer_size);
11413d71c7a4SMatthias Ringwald }
11423d71c7a4SMatthias Ringwald 
11433d71c7a4SMatthias Ringwald static int att_server_write_callback(hci_con_handle_t con_handle, uint16_t attribute_handle, uint16_t transaction_mode, uint16_t offset, uint8_t *buffer, uint16_t buffer_size){
11443d71c7a4SMatthias Ringwald     switch (transaction_mode){
11453d71c7a4SMatthias Ringwald         case ATT_TRANSACTION_MODE_VALIDATE:
11463d71c7a4SMatthias Ringwald             return att_validate_prepared_write(con_handle);
11473d71c7a4SMatthias Ringwald         case ATT_TRANSACTION_MODE_EXECUTE:
11483d71c7a4SMatthias Ringwald         case ATT_TRANSACTION_MODE_CANCEL:
11493d71c7a4SMatthias Ringwald             att_notify_write_callbacks(con_handle, transaction_mode);
11503d71c7a4SMatthias Ringwald             return 0;
11513d71c7a4SMatthias Ringwald         default:
11523d71c7a4SMatthias Ringwald             break;
11533d71c7a4SMatthias Ringwald     }
11543d71c7a4SMatthias Ringwald 
1155bf78aac6SMatthias Ringwald     // track CCC writes
11564ea43905SMatthias Ringwald     if (att_is_persistent_ccc(attribute_handle) && (offset == 0u) && (buffer_size == 2u)){
1157bf78aac6SMatthias Ringwald         att_server_persistent_ccc_write(con_handle, attribute_handle, little_endian_read_16(buffer, 0));
1158bf78aac6SMatthias Ringwald     }
1159bf78aac6SMatthias Ringwald 
116001ac2008SMatthias Ringwald     att_write_callback_t callback = att_server_write_callback_for_handle(attribute_handle);
116101ac2008SMatthias Ringwald     if (!callback) return 0;
11623d71c7a4SMatthias Ringwald     return (*callback)(con_handle, attribute_handle, transaction_mode, offset, buffer, buffer_size);
11633d71c7a4SMatthias Ringwald }
11643d71c7a4SMatthias Ringwald 
11653d71c7a4SMatthias Ringwald /**
11663d71c7a4SMatthias Ringwald  * @brief register read/write callbacks for specific handle range
11673d71c7a4SMatthias Ringwald  * @param att_service_handler_t
11683d71c7a4SMatthias Ringwald  */
11693d71c7a4SMatthias Ringwald void att_server_register_service_handler(att_service_handler_t * handler){
1170ec8f5414SMilanka Ringwald     bool att_server_registered = false;
1171ec8f5414SMilanka Ringwald     if (att_service_handler_for_handle(handler->start_handle)){
1172ec8f5414SMilanka Ringwald         att_server_registered = true;
1173ec8f5414SMilanka Ringwald     }
1174ec8f5414SMilanka Ringwald 
1175ec8f5414SMilanka Ringwald     if (att_service_handler_for_handle(handler->end_handle)){
1176ec8f5414SMilanka Ringwald         att_server_registered = true;
1177ec8f5414SMilanka Ringwald     }
1178ec8f5414SMilanka Ringwald 
1179ec8f5414SMilanka Ringwald     if (att_server_registered){
11803d71c7a4SMatthias Ringwald         log_error("handler for range 0x%04x-0x%04x already registered", handler->start_handle, handler->end_handle);
11813d71c7a4SMatthias Ringwald         return;
11823d71c7a4SMatthias Ringwald     }
11833d71c7a4SMatthias Ringwald     btstack_linked_list_add(&service_handlers, (btstack_linked_item_t*) handler);
11843d71c7a4SMatthias Ringwald }
11853d71c7a4SMatthias Ringwald 
11863deb3ec6SMatthias Ringwald void att_server_init(uint8_t const * db, att_read_callback_t read_callback, att_write_callback_t write_callback){
11873deb3ec6SMatthias Ringwald 
11883d71c7a4SMatthias Ringwald     // store callbacks
11893d71c7a4SMatthias Ringwald     att_server_client_read_callback  = read_callback;
11903d71c7a4SMatthias Ringwald     att_server_client_write_callback = write_callback;
11913d71c7a4SMatthias Ringwald 
11921a389cdcSMatthias Ringwald     // register for HCI Events
1193d9a7306aSMatthias Ringwald     hci_event_callback_registration.callback = &att_event_packet_handler;
11941a389cdcSMatthias Ringwald     hci_add_event_handler(&hci_event_callback_registration);
11951a389cdcSMatthias Ringwald 
1196406722e4SMatthias Ringwald     // register for SM events
1197d9a7306aSMatthias Ringwald     sm_event_callback_registration.callback = &att_event_packet_handler;
1198406722e4SMatthias Ringwald     sm_add_event_handler(&sm_event_callback_registration);
11993deb3ec6SMatthias Ringwald 
12001a389cdcSMatthias Ringwald     // and L2CAP ATT Server PDUs
12013deb3ec6SMatthias Ringwald     att_dispatch_register_server(att_packet_handler);
12023deb3ec6SMatthias Ringwald 
120370dca4d4SMatthias Ringwald #ifdef ENABLE_GATT_OVER_CLASSIC
120470dca4d4SMatthias Ringwald     // setup l2cap service
1205f2372b44SMatthias Ringwald     l2cap_register_service(&att_event_packet_handler, PSM_ATT, 0xffff, gap_get_security_level());
120670dca4d4SMatthias Ringwald #endif
120770dca4d4SMatthias Ringwald 
12083deb3ec6SMatthias Ringwald     att_set_db(db);
12093d71c7a4SMatthias Ringwald     att_set_read_callback(att_server_read_callback);
12103d71c7a4SMatthias Ringwald     att_set_write_callback(att_server_write_callback);
12113deb3ec6SMatthias Ringwald }
12123deb3ec6SMatthias Ringwald 
12133deb3ec6SMatthias Ringwald void att_server_register_packet_handler(btstack_packet_handler_t handler){
12143deb3ec6SMatthias Ringwald     att_client_packet_handler = handler;
12153deb3ec6SMatthias Ringwald }
12163deb3ec6SMatthias Ringwald 
1217cbbb12d9SMatthias Ringwald 
1218cbbb12d9SMatthias Ringwald // to be deprecated
1219c141988cSMatthias Ringwald int  att_server_can_send_packet_now(hci_con_handle_t con_handle){
122068591e36SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
122168591e36SMatthias Ringwald     if (!hci_connection) return 0;
122237a8059dSMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
122337a8059dSMatthias Ringwald     att_connection_t * att_connection = &hci_connection->att_connection;
122437a8059dSMatthias Ringwald     return att_server_can_send_packet(att_server, att_connection);
12251b96b007SMatthias Ringwald }
12261b96b007SMatthias Ringwald 
12279816429dSMatthias Ringwald uint8_t att_server_register_can_send_now_callback(btstack_context_callback_registration_t * callback_registration, hci_con_handle_t con_handle){
1228cbbb12d9SMatthias Ringwald     return att_server_request_to_send_notification(callback_registration, con_handle);
12293deb3ec6SMatthias Ringwald }
12303deb3ec6SMatthias Ringwald 
1231cbbb12d9SMatthias Ringwald void att_server_request_can_send_now_event(hci_con_handle_t con_handle){
1232cbbb12d9SMatthias Ringwald     att_client_waiting_for_can_send_registration.callback = &att_emit_can_send_now_event;
1233cbbb12d9SMatthias Ringwald     att_server_request_to_send_notification(&att_client_waiting_for_can_send_registration, con_handle);
1234cbbb12d9SMatthias Ringwald }
1235cbbb12d9SMatthias Ringwald // end of deprecated
1236cbbb12d9SMatthias Ringwald 
12379816429dSMatthias Ringwald uint8_t att_server_request_to_send_notification(btstack_context_callback_registration_t * callback_registration, hci_con_handle_t con_handle){
123868591e36SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
123968591e36SMatthias Ringwald     if (!hci_connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
124068591e36SMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
12413f9b77dbSMatthias Ringwald     att_connection_t * att_connection = &hci_connection->att_connection;
1242c37df6f6SMatthias Ringwald     bool added = btstack_linked_list_add_tail(&att_server->notification_requests, (btstack_linked_item_t*) callback_registration);
12433f9b77dbSMatthias Ringwald     att_server_request_can_send_now(att_server, att_connection);
1244c37df6f6SMatthias Ringwald     if (added){
1245cbbb12d9SMatthias Ringwald         return ERROR_CODE_SUCCESS;
1246c37df6f6SMatthias Ringwald     } else {
1247c37df6f6SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
1248c37df6f6SMatthias Ringwald     }
1249cbbb12d9SMatthias Ringwald }
1250cbbb12d9SMatthias Ringwald 
12519816429dSMatthias Ringwald uint8_t att_server_request_to_send_indication(btstack_context_callback_registration_t * callback_registration, hci_con_handle_t con_handle){
125268591e36SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
125368591e36SMatthias Ringwald     if (!hci_connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
125468591e36SMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
12553f9b77dbSMatthias Ringwald     att_connection_t * att_connection = &hci_connection->att_connection;
1256c37df6f6SMatthias Ringwald     bool added = btstack_linked_list_add_tail(&att_server->indication_requests, (btstack_linked_item_t*) callback_registration);
12573f9b77dbSMatthias Ringwald     att_server_request_can_send_now(att_server, att_connection);
1258c37df6f6SMatthias Ringwald     if (added){
1259969a5bbaSMatthias Ringwald         return ERROR_CODE_SUCCESS;
1260c37df6f6SMatthias Ringwald     } else {
1261c37df6f6SMatthias Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
1262c37df6f6SMatthias Ringwald     }
1263bb38f057SMatthias Ringwald }
1264bb38f057SMatthias Ringwald 
12659816429dSMatthias Ringwald uint8_t att_server_notify(hci_con_handle_t con_handle, uint16_t attribute_handle, const uint8_t *value, uint16_t value_len){
126668591e36SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
126768591e36SMatthias Ringwald     if (!hci_connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
126837a8059dSMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
1269388fa7c4SMatthias Ringwald     att_connection_t * att_connection = &hci_connection->att_connection;
127068591e36SMatthias Ringwald 
127137a8059dSMatthias Ringwald     if (!att_server_can_send_packet(att_server, att_connection)) return BTSTACK_ACL_BUFFERS_FULL;
12723deb3ec6SMatthias Ringwald 
12733deb3ec6SMatthias Ringwald     l2cap_reserve_packet_buffer();
12743deb3ec6SMatthias Ringwald     uint8_t * packet_buffer = l2cap_get_outgoing_buffer();
1275b6df12b6SMatthias Ringwald     uint16_t size = att_prepare_handle_value_notification(att_connection, attribute_handle, value, value_len, packet_buffer);
1276d415948cSMatthias Ringwald 
1277d415948cSMatthias Ringwald     return att_server_send_prepared(att_server, att_connection, size);
12783deb3ec6SMatthias Ringwald }
12793deb3ec6SMatthias Ringwald 
12809816429dSMatthias Ringwald uint8_t att_server_indicate(hci_con_handle_t con_handle, uint16_t attribute_handle, const uint8_t *value, uint16_t value_len){
128168591e36SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
128268591e36SMatthias Ringwald     if (!hci_connection) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
128368591e36SMatthias Ringwald     att_server_t * att_server = &hci_connection->att_server;
1284388fa7c4SMatthias Ringwald     att_connection_t * att_connection = &hci_connection->att_connection;
128518707219SMatthias Ringwald 
128638b893aaSMilanka Ringwald     if (att_server->value_indication_handle != 0u) return ATT_HANDLE_VALUE_INDICATION_IN_PROGRESS;
128737a8059dSMatthias Ringwald     if (!att_server_can_send_packet(att_server, att_connection)) return BTSTACK_ACL_BUFFERS_FULL;
12883deb3ec6SMatthias Ringwald 
12893deb3ec6SMatthias Ringwald     // track indication
129018707219SMatthias Ringwald     att_server->value_indication_handle = attribute_handle;
129118707219SMatthias Ringwald     btstack_run_loop_set_timer_handler(&att_server->value_indication_timer, att_handle_value_indication_timeout);
129218707219SMatthias Ringwald     btstack_run_loop_set_timer(&att_server->value_indication_timer, ATT_TRANSACTION_TIMEOUT_MS);
129318707219SMatthias Ringwald     btstack_run_loop_add_timer(&att_server->value_indication_timer);
12943deb3ec6SMatthias Ringwald 
12953deb3ec6SMatthias Ringwald     l2cap_reserve_packet_buffer();
12963deb3ec6SMatthias Ringwald     uint8_t * packet_buffer = l2cap_get_outgoing_buffer();
1297b6df12b6SMatthias Ringwald     uint16_t size = att_prepare_handle_value_indication(att_connection, attribute_handle, value, value_len, packet_buffer);
129823079b39SMatthias Ringwald 
1299d415948cSMatthias Ringwald     return att_server_send_prepared(att_server, att_connection, size);
13003deb3ec6SMatthias Ringwald }
13018f9132b5SMilanka Ringwald 
13028f9132b5SMilanka Ringwald uint16_t att_server_get_mtu(hci_con_handle_t con_handle){
130368591e36SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
130468591e36SMatthias Ringwald     if (!hci_connection) return 0;
1305388fa7c4SMatthias Ringwald     att_connection_t * att_connection = &hci_connection->att_connection;
1306b6df12b6SMatthias Ringwald     return att_connection->mtu;
13078f9132b5SMilanka Ringwald }
130835d7f2dfSMilanka Ringwald 
130935d7f2dfSMilanka Ringwald void att_server_deinit(void){
131035d7f2dfSMilanka Ringwald     att_server_client_read_callback  = NULL;
131135d7f2dfSMilanka Ringwald     att_server_client_write_callback = NULL;
131235d7f2dfSMilanka Ringwald     att_client_packet_handler = NULL;
131335d7f2dfSMilanka Ringwald     service_handlers = NULL;
131435d7f2dfSMilanka Ringwald }
1315