xref: /btstack/src/ble/att_server.c (revision 01ac20081add7aa056f323348d4e981cc90d473f)
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
233deb3ec6SMatthias Ringwald  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
243deb3ec6SMatthias Ringwald  * RINGWALD 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 
38ab2c6ae4SMatthias 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 <stdio.h>
473deb3ec6SMatthias Ringwald #include <stdlib.h>
483deb3ec6SMatthias Ringwald #include <string.h>
493deb3ec6SMatthias Ringwald #include <inttypes.h>
503deb3ec6SMatthias Ringwald 
517907f069SMatthias Ringwald #include "btstack_config.h"
523deb3ec6SMatthias Ringwald 
5359c6af15SMatthias Ringwald #include "att_dispatch.h"
5459c6af15SMatthias Ringwald #include "ble/att_db.h"
5559c6af15SMatthias Ringwald #include "ble/att_server.h"
5659c6af15SMatthias Ringwald #include "ble/core.h"
5759c6af15SMatthias Ringwald #include "ble/le_device_db.h"
5859c6af15SMatthias Ringwald #include "ble/sm.h"
5916ece135SMatthias Ringwald #include "btstack_debug.h"
600e2df43fSMatthias Ringwald #include "btstack_event.h"
613deb3ec6SMatthias Ringwald #include "btstack_memory.h"
620e2df43fSMatthias Ringwald #include "btstack_run_loop.h"
6359c6af15SMatthias Ringwald #include "gap.h"
643deb3ec6SMatthias Ringwald #include "hci.h"
653deb3ec6SMatthias Ringwald #include "hci_dump.h"
663deb3ec6SMatthias Ringwald #include "l2cap.h"
67bf78aac6SMatthias Ringwald #include "btstack_tlv.h"
68bf78aac6SMatthias Ringwald 
69bf78aac6SMatthias Ringwald #ifndef GATT_SERVER_NUM_PERSISTENT_CCC
70bf78aac6SMatthias Ringwald #define GATT_SERVER_NUM_PERSISTENT_CCC 20
71bf78aac6SMatthias Ringwald #endif
723deb3ec6SMatthias Ringwald 
7318707219SMatthias Ringwald static void att_run_for_context(att_server_t * att_server);
74*01ac2008SMatthias Ringwald static att_write_callback_t att_server_write_callback_for_handle(uint16_t handle);
75*01ac2008SMatthias Ringwald static void att_server_persistent_ccc_restore(att_server_t * att_server);
763deb3ec6SMatthias Ringwald 
7718707219SMatthias Ringwald // global
781a389cdcSMatthias Ringwald static btstack_packet_callback_registration_t hci_event_callback_registration;
79406722e4SMatthias Ringwald static btstack_packet_callback_registration_t sm_event_callback_registration;
803deb3ec6SMatthias Ringwald static btstack_packet_handler_t               att_client_packet_handler = NULL;
81bb38f057SMatthias Ringwald static btstack_linked_list_t                  can_send_now_clients;
823d71c7a4SMatthias Ringwald static btstack_linked_list_t                  service_handlers;
8318707219SMatthias Ringwald static uint8_t                                att_client_waiting_for_can_send;
8418707219SMatthias Ringwald 
853d71c7a4SMatthias Ringwald static att_read_callback_t                    att_server_client_read_callback;
863d71c7a4SMatthias Ringwald static att_write_callback_t                   att_server_client_write_callback;
873d71c7a4SMatthias Ringwald 
88bf78aac6SMatthias Ringwald // track CCC 1-entry cache
89bf78aac6SMatthias Ringwald // static att_server_t *    att_persistent_ccc_server;
90bf78aac6SMatthias Ringwald // static hci_con_handle_t  att_persistent_ccc_con_handle;
91bf78aac6SMatthias Ringwald 
9218707219SMatthias Ringwald static att_server_t * att_server_for_handle(hci_con_handle_t con_handle){
9318707219SMatthias Ringwald     hci_connection_t * hci_connection = hci_connection_for_handle(con_handle);
9418707219SMatthias Ringwald     if (!hci_connection) return NULL;
9518707219SMatthias Ringwald     return &hci_connection->att_server;
9618707219SMatthias Ringwald }
9718707219SMatthias Ringwald 
9802b78fc8SMatthias Ringwald #ifdef ENABLE_LE_SIGNED_WRITE
9918707219SMatthias Ringwald static att_server_t * att_server_for_state(att_server_state_t state){
10018707219SMatthias Ringwald     btstack_linked_list_iterator_t it;
10118707219SMatthias Ringwald     hci_connections_get_iterator(&it);
10218707219SMatthias Ringwald     while(btstack_linked_list_iterator_has_next(&it)){
10318707219SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
10418707219SMatthias Ringwald         att_server_t * att_server = &connection->att_server;
10518707219SMatthias Ringwald         if (att_server->state == state) return att_server;
10618707219SMatthias Ringwald     }
10718707219SMatthias Ringwald     return NULL;
10818707219SMatthias Ringwald }
10902b78fc8SMatthias Ringwald #endif
110bb38f057SMatthias Ringwald 
1113deb3ec6SMatthias Ringwald static void att_handle_value_indication_notify_client(uint8_t status, uint16_t client_handle, uint16_t attribute_handle){
1123deb3ec6SMatthias Ringwald     if (!att_client_packet_handler) return;
1133deb3ec6SMatthias Ringwald 
1143deb3ec6SMatthias Ringwald     uint8_t event[7];
1153deb3ec6SMatthias Ringwald     int pos = 0;
1165611a760SMatthias Ringwald     event[pos++] = ATT_EVENT_HANDLE_VALUE_INDICATION_COMPLETE;
1173deb3ec6SMatthias Ringwald     event[pos++] = sizeof(event) - 2;
1183deb3ec6SMatthias Ringwald     event[pos++] = status;
119f8fbdce0SMatthias Ringwald     little_endian_store_16(event, pos, client_handle);
1203deb3ec6SMatthias Ringwald     pos += 2;
121f8fbdce0SMatthias Ringwald     little_endian_store_16(event, pos, attribute_handle);
1223deb3ec6SMatthias Ringwald     (*att_client_packet_handler)(HCI_EVENT_PACKET, 0, &event[0], sizeof(event));
1233deb3ec6SMatthias Ringwald }
1243deb3ec6SMatthias Ringwald 
125fc64f94aSMatthias Ringwald static void att_emit_mtu_event(hci_con_handle_t con_handle, uint16_t mtu){
1263deb3ec6SMatthias Ringwald     if (!att_client_packet_handler) return;
1273deb3ec6SMatthias Ringwald 
1283deb3ec6SMatthias Ringwald     uint8_t event[6];
1293deb3ec6SMatthias Ringwald     int pos = 0;
1305611a760SMatthias Ringwald     event[pos++] = ATT_EVENT_MTU_EXCHANGE_COMPLETE;
1313deb3ec6SMatthias Ringwald     event[pos++] = sizeof(event) - 2;
132fc64f94aSMatthias Ringwald     little_endian_store_16(event, pos, con_handle);
1333deb3ec6SMatthias Ringwald     pos += 2;
134f8fbdce0SMatthias Ringwald     little_endian_store_16(event, pos, mtu);
1353deb3ec6SMatthias Ringwald     (*att_client_packet_handler)(HCI_EVENT_PACKET, 0, &event[0], sizeof(event));
1363deb3ec6SMatthias Ringwald }
1373deb3ec6SMatthias Ringwald 
1381b96b007SMatthias Ringwald static void att_emit_can_send_now_event(void){
1393c97b242SMatthias Ringwald     if (!att_client_packet_handler) return;
1403c97b242SMatthias Ringwald 
1411b96b007SMatthias Ringwald     uint8_t event[] = { ATT_EVENT_CAN_SEND_NOW, 0};
1421b96b007SMatthias Ringwald     (*att_client_packet_handler)(HCI_EVENT_PACKET, 0, &event[0], sizeof(event));
1431b96b007SMatthias Ringwald }
1441b96b007SMatthias Ringwald 
145ec820d77SMatthias Ringwald static void att_handle_value_indication_timeout(btstack_timer_source_t *ts){
14654178543SMatthias Ringwald     void * context = btstack_run_loop_get_timer_context(ts);
14754178543SMatthias Ringwald     hci_con_handle_t con_handle = (hci_con_handle_t) (uintptr_t) context;
14818707219SMatthias Ringwald     att_server_t * att_server = att_server_for_handle(con_handle);
14918707219SMatthias Ringwald     if (!att_server) return;
15018707219SMatthias Ringwald     uint16_t att_handle = att_server->value_indication_handle;
15118707219SMatthias Ringwald     att_handle_value_indication_notify_client(ATT_HANDLE_VALUE_INDICATION_TIMEOUT, att_server->connection.con_handle, att_handle);
1523deb3ec6SMatthias Ringwald }
1533deb3ec6SMatthias Ringwald 
1543deb3ec6SMatthias Ringwald static void att_event_packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
1559ec2630cSMatthias Ringwald 
1567dad9ff8SMatthias Ringwald     UNUSED(channel); // ok: there is no channel
1577dad9ff8SMatthias Ringwald     UNUSED(size);    // ok: handling own l2cap events
1583deb3ec6SMatthias Ringwald 
15918707219SMatthias Ringwald     att_server_t * att_server;
16018707219SMatthias Ringwald     hci_con_handle_t con_handle;
16118707219SMatthias Ringwald 
1623deb3ec6SMatthias Ringwald     switch (packet_type) {
1633deb3ec6SMatthias Ringwald 
1643deb3ec6SMatthias Ringwald         case HCI_EVENT_PACKET:
1650e2df43fSMatthias Ringwald             switch (hci_event_packet_get_type(packet)) {
1663deb3ec6SMatthias Ringwald 
1673deb3ec6SMatthias Ringwald                 case HCI_EVENT_LE_META:
1683deb3ec6SMatthias Ringwald                     switch (packet[2]) {
1693deb3ec6SMatthias Ringwald                         case HCI_SUBEVENT_LE_CONNECTION_COMPLETE:
17018707219SMatthias Ringwald                             con_handle = little_endian_read_16(packet, 4);
17118707219SMatthias Ringwald                             att_server = att_server_for_handle(con_handle);
17218707219SMatthias Ringwald                             if (!att_server) break;
1733deb3ec6SMatthias Ringwald                         	// store connection info
17418707219SMatthias Ringwald                         	att_server->peer_addr_type = packet[7];
17518707219SMatthias Ringwald                             reverse_bd_addr(&packet[8], att_server->peer_address);
17618707219SMatthias Ringwald                             att_server->connection.con_handle = con_handle;
1773deb3ec6SMatthias Ringwald                             // reset connection properties
17818707219SMatthias Ringwald                             att_server->state = ATT_SERVER_IDLE;
17918707219SMatthias Ringwald                             att_server->connection.mtu = ATT_DEFAULT_MTU;
18018707219SMatthias Ringwald                             att_server->connection.max_mtu = l2cap_max_le_mtu();
18118707219SMatthias Ringwald                             if (att_server->connection.max_mtu > ATT_REQUEST_BUFFER_SIZE){
18218707219SMatthias Ringwald                                 att_server->connection.max_mtu = ATT_REQUEST_BUFFER_SIZE;
18399c58ad0SMatthias Ringwald                             }
18418707219SMatthias Ringwald                             att_server->connection.encryption_key_size = 0;
18518707219SMatthias Ringwald                             att_server->connection.authenticated = 0;
18618707219SMatthias Ringwald 		                	att_server->connection.authorized = 0;
18718707219SMatthias Ringwald                             att_server->ir_le_device_db_index = -1;
1883deb3ec6SMatthias Ringwald                             break;
1893deb3ec6SMatthias Ringwald 
1903deb3ec6SMatthias Ringwald                         default:
1913deb3ec6SMatthias Ringwald                             break;
1923deb3ec6SMatthias Ringwald                     }
1933deb3ec6SMatthias Ringwald                     break;
1943deb3ec6SMatthias Ringwald 
1953deb3ec6SMatthias Ringwald                 case HCI_EVENT_ENCRYPTION_CHANGE:
1963deb3ec6SMatthias Ringwald                 case HCI_EVENT_ENCRYPTION_KEY_REFRESH_COMPLETE:
1973deb3ec6SMatthias Ringwald                 	// check handle
19818707219SMatthias Ringwald                     con_handle = little_endian_read_16(packet, 3);
19918707219SMatthias Ringwald                     att_server = att_server_for_handle(con_handle);
20018707219SMatthias Ringwald                     if (!att_server) break;
20118707219SMatthias Ringwald                 	att_server->connection.encryption_key_size = sm_encryption_key_size(con_handle);
20218707219SMatthias Ringwald                 	att_server->connection.authenticated = sm_authenticated(con_handle);
203*01ac2008SMatthias Ringwald                     if (hci_event_packet_get_type(packet) == HCI_EVENT_ENCRYPTION_CHANGE){
204*01ac2008SMatthias Ringwald                         // restore CCC values when encrypted
205*01ac2008SMatthias Ringwald                         if (hci_event_encryption_change_get_encryption_enabled(packet)){
206*01ac2008SMatthias Ringwald                             att_server_persistent_ccc_restore(att_server);
207*01ac2008SMatthias Ringwald                         }
208*01ac2008SMatthias Ringwald                     }
2093deb3ec6SMatthias Ringwald                 	break;
2103deb3ec6SMatthias Ringwald 
2113deb3ec6SMatthias Ringwald                 case HCI_EVENT_DISCONNECTION_COMPLETE:
21270a390c7SMatthias Ringwald                     // check handle
21318707219SMatthias Ringwald                     con_handle = hci_event_disconnection_complete_get_connection_handle(packet);
21418707219SMatthias Ringwald                     att_server = att_server_for_handle(con_handle);
21518707219SMatthias Ringwald                     if (!att_server) break;
21618707219SMatthias Ringwald                     att_clear_transaction_queue(&att_server->connection);
21718707219SMatthias Ringwald                     att_server->connection.con_handle = 0;
21818707219SMatthias Ringwald                     att_server->value_indication_handle = 0; // reset error state
21918707219SMatthias Ringwald                     att_server->state = ATT_SERVER_IDLE;
2203deb3ec6SMatthias Ringwald                     break;
2213deb3ec6SMatthias Ringwald 
2225611a760SMatthias Ringwald                 case SM_EVENT_IDENTITY_RESOLVING_STARTED:
22318707219SMatthias Ringwald                     con_handle = sm_event_identity_resolving_started_get_handle(packet);
22418707219SMatthias Ringwald                     att_server = att_server_for_handle(con_handle);
22518707219SMatthias Ringwald                     if (!att_server) break;
2265611a760SMatthias Ringwald                     log_info("SM_EVENT_IDENTITY_RESOLVING_STARTED");
22718707219SMatthias Ringwald                     att_server->ir_lookup_active = 1;
2283deb3ec6SMatthias Ringwald                     break;
2295611a760SMatthias Ringwald                 case SM_EVENT_IDENTITY_RESOLVING_SUCCEEDED:
23018707219SMatthias Ringwald                     con_handle = sm_event_identity_resolving_succeeded_get_handle(packet);
23118707219SMatthias Ringwald                     att_server = att_server_for_handle(con_handle);
23218707219SMatthias Ringwald                     if (!att_server) break;
23318707219SMatthias Ringwald                     att_server->ir_lookup_active = 0;
2346cf9be56SMatthias Ringwald                     att_server->ir_le_device_db_index = sm_event_identity_resolving_succeeded_get_index(packet);
23518707219SMatthias Ringwald                     log_info("SM_EVENT_IDENTITY_RESOLVING_SUCCEEDED id %u", att_server->ir_le_device_db_index);
23618707219SMatthias Ringwald                     att_run_for_context(att_server);
2373deb3ec6SMatthias Ringwald                     break;
2385611a760SMatthias Ringwald                 case SM_EVENT_IDENTITY_RESOLVING_FAILED:
23918707219SMatthias Ringwald                     con_handle = sm_event_identity_resolving_failed_get_handle(packet);
24018707219SMatthias Ringwald                     att_server = att_server_for_handle(con_handle);
24118707219SMatthias Ringwald                     if (!att_server) break;
2425611a760SMatthias Ringwald                     log_info("SM_EVENT_IDENTITY_RESOLVING_FAILED");
24318707219SMatthias Ringwald                     att_server->ir_lookup_active = 0;
24418707219SMatthias Ringwald                     att_server->ir_le_device_db_index = -1;
24518707219SMatthias Ringwald                     att_run_for_context(att_server);
2463deb3ec6SMatthias Ringwald                     break;
2475611a760SMatthias Ringwald                 case SM_EVENT_AUTHORIZATION_RESULT: {
24818707219SMatthias Ringwald                     con_handle = sm_event_authorization_result_get_handle(packet);
24918707219SMatthias Ringwald                     att_server = att_server_for_handle(con_handle);
25018707219SMatthias Ringwald                     if (!att_server) break;
25118707219SMatthias Ringwald                     att_server->connection.authorized = sm_event_authorization_result_get_authorization_result(packet);
25218707219SMatthias Ringwald                     att_dispatch_server_request_can_send_now_event(con_handle);
2533deb3ec6SMatthias Ringwald                 	break;
2543deb3ec6SMatthias Ringwald                 }
2553deb3ec6SMatthias Ringwald                 default:
2563deb3ec6SMatthias Ringwald                     break;
2573deb3ec6SMatthias Ringwald             }
25865b44ffdSMatthias Ringwald             break;
25965b44ffdSMatthias Ringwald         default:
26065b44ffdSMatthias Ringwald             break;
2613deb3ec6SMatthias Ringwald     }
2623deb3ec6SMatthias Ringwald }
2633deb3ec6SMatthias Ringwald 
2647a766ebfSMatthias Ringwald #ifdef ENABLE_LE_SIGNED_WRITE
2653deb3ec6SMatthias Ringwald static void att_signed_write_handle_cmac_result(uint8_t hash[8]){
2663deb3ec6SMatthias Ringwald 
26718707219SMatthias Ringwald     att_server_t * att_server = att_server_for_state(ATT_SERVER_W4_SIGNED_WRITE_VALIDATION);
26818707219SMatthias Ringwald     if (!att_server) return;
2693deb3ec6SMatthias Ringwald 
2703deb3ec6SMatthias Ringwald     uint8_t hash_flipped[8];
2719c80e4ccSMatthias Ringwald     reverse_64(hash, hash_flipped);
27218707219SMatthias Ringwald     if (memcmp(hash_flipped, &att_server->request_buffer[att_server->request_size-8], 8)){
2733deb3ec6SMatthias Ringwald         log_info("ATT Signed Write, invalid signature");
27418707219SMatthias Ringwald         att_server->state = ATT_SERVER_IDLE;
2753deb3ec6SMatthias Ringwald         return;
2763deb3ec6SMatthias Ringwald     }
2773deb3ec6SMatthias Ringwald     log_info("ATT Signed Write, valid signature");
2783deb3ec6SMatthias Ringwald 
2793deb3ec6SMatthias Ringwald     // update sequence number
28018707219SMatthias Ringwald     uint32_t counter_packet = little_endian_read_32(att_server->request_buffer, att_server->request_size-12);
28118707219SMatthias Ringwald     le_device_db_remote_counter_set(att_server->ir_le_device_db_index, counter_packet+1);
28218707219SMatthias Ringwald     att_server->state = ATT_SERVER_REQUEST_RECEIVED_AND_VALIDATED;
28318707219SMatthias Ringwald     att_dispatch_server_request_can_send_now_event(att_server->connection.con_handle);
2843deb3ec6SMatthias Ringwald }
2857a766ebfSMatthias Ringwald #endif
28688a48dd8SMatthias Ringwald 
28718707219SMatthias Ringwald // pre: att_server->state == ATT_SERVER_REQUEST_RECEIVED_AND_VALIDATED
288b06f2579SMatthias Ringwald // pre: can send now
289b06f2579SMatthias Ringwald // returns: 1 if packet was sent
29018707219SMatthias Ringwald static int att_server_process_validated_request(att_server_t * att_server){
291b06f2579SMatthias Ringwald 
292b06f2579SMatthias Ringwald     l2cap_reserve_packet_buffer();
293b06f2579SMatthias Ringwald     uint8_t * att_response_buffer = l2cap_get_outgoing_buffer();
29418707219SMatthias Ringwald     uint16_t  att_response_size   = att_handle_request(&att_server->connection, att_server->request_buffer, att_server->request_size, att_response_buffer);
295b06f2579SMatthias Ringwald 
296b06f2579SMatthias Ringwald     // intercept "insufficient authorization" for authenticated connections to allow for user authorization
297b06f2579SMatthias Ringwald     if ((att_response_size     >= 4)
298b06f2579SMatthias Ringwald     && (att_response_buffer[0] == ATT_ERROR_RESPONSE)
299b06f2579SMatthias Ringwald     && (att_response_buffer[4] == ATT_ERROR_INSUFFICIENT_AUTHORIZATION)
30018707219SMatthias Ringwald     && (att_server->connection.authenticated)){
301b06f2579SMatthias Ringwald 
30218707219SMatthias Ringwald         switch (sm_authorization_state(att_server->connection.con_handle)){
303b06f2579SMatthias Ringwald             case AUTHORIZATION_UNKNOWN:
304b06f2579SMatthias Ringwald                 l2cap_release_packet_buffer();
30518707219SMatthias Ringwald                 sm_request_pairing(att_server->connection.con_handle);
306b06f2579SMatthias Ringwald                 return 0;
307b06f2579SMatthias Ringwald             case AUTHORIZATION_PENDING:
308b06f2579SMatthias Ringwald                 l2cap_release_packet_buffer();
309b06f2579SMatthias Ringwald                 return 0;
310b06f2579SMatthias Ringwald             default:
311b06f2579SMatthias Ringwald                 break;
312b06f2579SMatthias Ringwald         }
313b06f2579SMatthias Ringwald     }
314b06f2579SMatthias Ringwald 
31518707219SMatthias Ringwald     att_server->state = ATT_SERVER_IDLE;
316b06f2579SMatthias Ringwald     if (att_response_size == 0) {
317b06f2579SMatthias Ringwald         l2cap_release_packet_buffer();
318b06f2579SMatthias Ringwald         return 0;
319b06f2579SMatthias Ringwald     }
320b06f2579SMatthias Ringwald 
32118707219SMatthias Ringwald     l2cap_send_prepared_connectionless(att_server->connection.con_handle, L2CAP_CID_ATTRIBUTE_PROTOCOL, att_response_size);
322b06f2579SMatthias Ringwald 
323b06f2579SMatthias Ringwald     // notify client about MTU exchange result
324b06f2579SMatthias Ringwald     if (att_response_buffer[0] == ATT_EXCHANGE_MTU_RESPONSE){
32518707219SMatthias Ringwald         att_emit_mtu_event(att_server->connection.con_handle, att_server->connection.mtu);
326b06f2579SMatthias Ringwald     }
327b06f2579SMatthias Ringwald     return 1;
328b06f2579SMatthias Ringwald }
329b06f2579SMatthias Ringwald 
33018707219SMatthias Ringwald static void att_run_for_context(att_server_t * att_server){
33118707219SMatthias Ringwald     switch (att_server->state){
3323deb3ec6SMatthias Ringwald         case ATT_SERVER_REQUEST_RECEIVED:
3337a766ebfSMatthias Ringwald #ifdef ENABLE_LE_SIGNED_WRITE
33418707219SMatthias Ringwald             if (att_server->request_buffer[0] == ATT_SIGNED_WRITE_COMMAND){
3353deb3ec6SMatthias Ringwald                 log_info("ATT Signed Write!");
3363deb3ec6SMatthias Ringwald                 if (!sm_cmac_ready()) {
3373deb3ec6SMatthias Ringwald                     log_info("ATT Signed Write, sm_cmac engine not ready. Abort");
33818707219SMatthias Ringwald                     att_server->state = ATT_SERVER_IDLE;
3393deb3ec6SMatthias Ringwald                     return;
3403deb3ec6SMatthias Ringwald                 }
34118707219SMatthias Ringwald                 if (att_server->request_size < (3 + 12)) {
3423deb3ec6SMatthias Ringwald                     log_info("ATT Signed Write, request to short. Abort.");
34318707219SMatthias Ringwald                     att_server->state = ATT_SERVER_IDLE;
3443deb3ec6SMatthias Ringwald                     return;
3453deb3ec6SMatthias Ringwald                 }
34618707219SMatthias Ringwald                 if (att_server->ir_lookup_active){
3473deb3ec6SMatthias Ringwald                     return;
3483deb3ec6SMatthias Ringwald                 }
34918707219SMatthias Ringwald                 if (att_server->ir_le_device_db_index < 0){
3503deb3ec6SMatthias Ringwald                     log_info("ATT Signed Write, CSRK not available");
35118707219SMatthias Ringwald                     att_server->state = ATT_SERVER_IDLE;
3523deb3ec6SMatthias Ringwald                     return;
3533deb3ec6SMatthias Ringwald                 }
3543deb3ec6SMatthias Ringwald 
3553deb3ec6SMatthias Ringwald                 // check counter
35618707219SMatthias Ringwald                 uint32_t counter_packet = little_endian_read_32(att_server->request_buffer, att_server->request_size-12);
35718707219SMatthias Ringwald                 uint32_t counter_db     = le_device_db_remote_counter_get(att_server->ir_le_device_db_index);
3583deb3ec6SMatthias Ringwald                 log_info("ATT Signed Write, DB counter %"PRIu32", packet counter %"PRIu32, counter_db, counter_packet);
3593deb3ec6SMatthias Ringwald                 if (counter_packet < counter_db){
3603deb3ec6SMatthias Ringwald                     log_info("ATT Signed Write, db reports higher counter, abort");
36118707219SMatthias Ringwald                     att_server->state = ATT_SERVER_IDLE;
3623deb3ec6SMatthias Ringwald                     return;
3633deb3ec6SMatthias Ringwald                 }
3643deb3ec6SMatthias Ringwald 
3653deb3ec6SMatthias Ringwald                 // signature is { sequence counter, secure hash }
3663deb3ec6SMatthias Ringwald                 sm_key_t csrk;
36718707219SMatthias Ringwald                 le_device_db_remote_csrk_get(att_server->ir_le_device_db_index, csrk);
36818707219SMatthias Ringwald                 att_server->state = ATT_SERVER_W4_SIGNED_WRITE_VALIDATION;
3693deb3ec6SMatthias Ringwald                 log_info("Orig Signature: ");
37018707219SMatthias Ringwald                 log_info_hexdump( &att_server->request_buffer[att_server->request_size-8], 8);
37118707219SMatthias Ringwald                 uint16_t attribute_handle = little_endian_read_16(att_server->request_buffer, 1);
37218707219SMatthias 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);
3733deb3ec6SMatthias Ringwald                 return;
3743deb3ec6SMatthias Ringwald             }
3757a766ebfSMatthias Ringwald #endif
376b06f2579SMatthias Ringwald             // move on
37718707219SMatthias Ringwald             att_server->state = ATT_SERVER_REQUEST_RECEIVED_AND_VALIDATED;
37818707219SMatthias Ringwald             att_dispatch_server_request_can_send_now_event(att_server->connection.con_handle);
379b06f2579SMatthias Ringwald             break;
38088a48dd8SMatthias Ringwald 
3813deb3ec6SMatthias Ringwald         default:
3823deb3ec6SMatthias Ringwald             break;
3833deb3ec6SMatthias Ringwald     }
3843deb3ec6SMatthias Ringwald }
3853deb3ec6SMatthias Ringwald 
3867eb16ee8SMatthias Ringwald static void att_server_handle_can_send_now(void){
387b06f2579SMatthias Ringwald 
388b06f2579SMatthias Ringwald     // NOTE: we get l2cap fixed channel instead of con_handle
389b06f2579SMatthias Ringwald 
39018707219SMatthias Ringwald     btstack_linked_list_iterator_t it;
39118707219SMatthias Ringwald     hci_connections_get_iterator(&it);
39218707219SMatthias Ringwald     while(btstack_linked_list_iterator_has_next(&it)){
39318707219SMatthias Ringwald         hci_connection_t * connection = (hci_connection_t *) btstack_linked_list_iterator_next(&it);
39418707219SMatthias Ringwald         att_server_t * att_server = &connection->att_server;
39518707219SMatthias Ringwald         if (att_server->state == ATT_SERVER_REQUEST_RECEIVED_AND_VALIDATED){
39618707219SMatthias Ringwald             int sent = att_server_process_validated_request(att_server);
397bb38f057SMatthias Ringwald             if (sent && (att_client_waiting_for_can_send || !btstack_linked_list_empty(&can_send_now_clients))){
39818707219SMatthias Ringwald                 att_dispatch_server_request_can_send_now_event(att_server->connection.con_handle);
3993deb3ec6SMatthias Ringwald                 return;
4003deb3ec6SMatthias Ringwald             }
4013deb3ec6SMatthias Ringwald         }
40218707219SMatthias Ringwald     }
4033deb3ec6SMatthias Ringwald 
404bb38f057SMatthias Ringwald     while (!btstack_linked_list_empty(&can_send_now_clients)){
405bb38f057SMatthias Ringwald         // handle first client
406bb38f057SMatthias Ringwald         btstack_context_callback_registration_t * client = (btstack_context_callback_registration_t*) can_send_now_clients;
40718707219SMatthias Ringwald         hci_con_handle_t con_handle = (uintptr_t) client->context;
408bb38f057SMatthias Ringwald         btstack_linked_list_remove(&can_send_now_clients, (btstack_linked_item_t *) client);
409bb38f057SMatthias Ringwald         client->callback(client->context);
410bb38f057SMatthias Ringwald 
411bb38f057SMatthias Ringwald         // request again if needed
41218707219SMatthias Ringwald         if (!att_dispatch_server_can_send_now(con_handle)){
413bb38f057SMatthias Ringwald             if (!btstack_linked_list_empty(&can_send_now_clients) || att_client_waiting_for_can_send){
41418707219SMatthias Ringwald                 att_dispatch_server_request_can_send_now_event(con_handle);
415bb38f057SMatthias Ringwald             }
416bb38f057SMatthias Ringwald             return;
417bb38f057SMatthias Ringwald         }
418bb38f057SMatthias Ringwald     }
419bb38f057SMatthias Ringwald 
420b06f2579SMatthias Ringwald     if (att_client_waiting_for_can_send){
421b06f2579SMatthias Ringwald         att_client_waiting_for_can_send = 0;
422b06f2579SMatthias Ringwald         att_emit_can_send_now_event();
4233deb3ec6SMatthias Ringwald     }
4243deb3ec6SMatthias Ringwald }
4253deb3ec6SMatthias Ringwald 
42688a48dd8SMatthias Ringwald static void att_packet_handler(uint8_t packet_type, uint16_t handle, uint8_t *packet, uint16_t size){
42718707219SMatthias Ringwald 
42818707219SMatthias Ringwald     att_server_t * att_server;
42918707219SMatthias Ringwald 
43088a48dd8SMatthias Ringwald     switch (packet_type){
43188a48dd8SMatthias Ringwald 
43288a48dd8SMatthias Ringwald         case HCI_EVENT_PACKET:
43388a48dd8SMatthias Ringwald             if (packet[0] != L2CAP_EVENT_CAN_SEND_NOW) break;
4344d2be802SMatthias Ringwald             att_server_handle_can_send_now();
435372d62c4SMatthias Ringwald             break;
4363deb3ec6SMatthias Ringwald 
437372d62c4SMatthias Ringwald         case ATT_DATA_PACKET:
43818707219SMatthias Ringwald             log_info("ATT Packet, handle 0x%04x", handle);
43918707219SMatthias Ringwald             att_server = att_server_for_handle(handle);
44018707219SMatthias Ringwald             if (!att_server) break;
44118707219SMatthias Ringwald 
4423deb3ec6SMatthias Ringwald             // handle value indication confirms
44318707219SMatthias Ringwald             if (packet[0] == ATT_HANDLE_VALUE_CONFIRMATION && att_server->value_indication_handle){
44418707219SMatthias Ringwald                 btstack_run_loop_remove_timer(&att_server->value_indication_timer);
44518707219SMatthias Ringwald                 uint16_t att_handle = att_server->value_indication_handle;
44618707219SMatthias Ringwald                 att_server->value_indication_handle = 0;
44718707219SMatthias Ringwald                 att_handle_value_indication_notify_client(0, att_server->connection.con_handle, att_handle);
4483deb3ec6SMatthias Ringwald                 return;
4493deb3ec6SMatthias Ringwald             }
4503deb3ec6SMatthias Ringwald 
4516428eb5aSMatthias Ringwald             // directly process command
4526428eb5aSMatthias Ringwald             // note: signed write cannot be handled directly as authentication needs to be verified
4536428eb5aSMatthias Ringwald             if (packet[0] == ATT_WRITE_COMMAND){
45418707219SMatthias Ringwald                 att_handle_request(&att_server->connection, packet, size, 0);
4556428eb5aSMatthias Ringwald                 return;
4566428eb5aSMatthias Ringwald             }
4576428eb5aSMatthias Ringwald 
4583deb3ec6SMatthias Ringwald             // check size
45918707219SMatthias Ringwald             if (size > sizeof(att_server->request_buffer)) {
46018707219SMatthias Ringwald                 log_info("att_packet_handler: dropping att pdu 0x%02x as size %u > att_server->request_buffer %u", packet[0], size, (int) sizeof(att_server->request_buffer));
4616428eb5aSMatthias Ringwald                 return;
4626428eb5aSMatthias Ringwald             }
4633deb3ec6SMatthias Ringwald 
4643deb3ec6SMatthias Ringwald             // last request still in processing?
46518707219SMatthias Ringwald             if (att_server->state != ATT_SERVER_IDLE){
46618707219SMatthias Ringwald                 log_info("att_packet_handler: skipping att pdu 0x%02x as server not idle (state %u)", packet[0], att_server->state);
4676428eb5aSMatthias Ringwald                 return;
4686428eb5aSMatthias Ringwald             }
4693deb3ec6SMatthias Ringwald 
4703deb3ec6SMatthias Ringwald             // store request
47118707219SMatthias Ringwald             att_server->state = ATT_SERVER_REQUEST_RECEIVED;
47218707219SMatthias Ringwald             att_server->request_size = size;
47318707219SMatthias Ringwald             memcpy(att_server->request_buffer, packet, size);
4743deb3ec6SMatthias Ringwald 
47518707219SMatthias Ringwald             att_run_for_context(att_server);
476372d62c4SMatthias Ringwald             break;
477372d62c4SMatthias Ringwald     }
4783deb3ec6SMatthias Ringwald }
4793deb3ec6SMatthias Ringwald 
480bf78aac6SMatthias Ringwald // ---------------------
481bf78aac6SMatthias Ringwald // persistent CCC writes
482bf78aac6SMatthias Ringwald // TLV value format: le_device_index(8), attribute_handle(16), value (8)
483bf78aac6SMatthias Ringwald static uint32_t att_server_persistent_ccc_tag_for_index(uint8_t index){
484bf78aac6SMatthias Ringwald     return 'B' << 24 | 'T' << 16 | 'C' << 8 | index;
485bf78aac6SMatthias Ringwald }
486bf78aac6SMatthias Ringwald 
487bf78aac6SMatthias Ringwald static void att_server_persistent_ccc_write(hci_con_handle_t con_handle, uint16_t att_handle, uint16_t value){
488bf78aac6SMatthias Ringwald     // lookup att_server instance
489bf78aac6SMatthias Ringwald     att_server_t * att_server = att_server_for_handle(con_handle);
490bf78aac6SMatthias Ringwald     if (!att_server) return;
491bf78aac6SMatthias Ringwald     int le_device_index = att_server->ir_le_device_db_index;
492bf78aac6SMatthias 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);
493bf78aac6SMatthias Ringwald     // check if bonded
494bf78aac6SMatthias Ringwald     if (le_device_index < 0) return;
495bf78aac6SMatthias Ringwald     // get btstack_tlv
496bf78aac6SMatthias Ringwald     const btstack_tlv_t * tlv_impl = NULL;
497bf78aac6SMatthias Ringwald     void * tlv_context;
498bf78aac6SMatthias Ringwald     btstack_tlv_get_instance(&tlv_impl, &tlv_context);
499bf78aac6SMatthias Ringwald     if (!tlv_impl) return;
500bf78aac6SMatthias Ringwald     // update ccc tag
501bf78aac6SMatthias Ringwald     int index;
502bf78aac6SMatthias Ringwald     uint8_t buffer[4];
503bf78aac6SMatthias Ringwald     int free_index = -1;
504bf78aac6SMatthias Ringwald     for (index=0;index<GATT_SERVER_NUM_PERSISTENT_CCC;index++){
505bf78aac6SMatthias Ringwald         uint32_t tag = att_server_persistent_ccc_tag_for_index(index);
506bf78aac6SMatthias Ringwald         int len = tlv_impl->get_tag(tlv_context, tag, buffer, sizeof(buffer));
507bf78aac6SMatthias Ringwald         if (len == 0){
508bf78aac6SMatthias Ringwald             free_index = index;
509bf78aac6SMatthias Ringwald             continue;
510bf78aac6SMatthias Ringwald         }
511bf78aac6SMatthias Ringwald         if (len != sizeof(buffer)) continue;
512bf78aac6SMatthias Ringwald         if (buffer[0] != le_device_index) continue;
513bf78aac6SMatthias Ringwald         if (little_endian_read_16(buffer, 1) != att_handle) continue;
514*01ac2008SMatthias Ringwald         if (value){
515bf78aac6SMatthias Ringwald             // update
516*01ac2008SMatthias Ringwald             if (buffer[3] == value) return;
517bf78aac6SMatthias Ringwald             buffer[3] = value;
518bf78aac6SMatthias Ringwald             tlv_impl->store_tag(tlv_context, tag, buffer, sizeof(buffer));
519*01ac2008SMatthias Ringwald         } else {
520*01ac2008SMatthias Ringwald             // delete
521*01ac2008SMatthias Ringwald             tlv_impl->delete_tag(tlv_context, tag);
522*01ac2008SMatthias Ringwald         }
523bf78aac6SMatthias Ringwald         return;
524bf78aac6SMatthias Ringwald     }
525bf78aac6SMatthias Ringwald     if (free_index < 0) return;
526bf78aac6SMatthias Ringwald     // store ccc tag
527bf78aac6SMatthias Ringwald     buffer[0] = le_device_index;
528bf78aac6SMatthias Ringwald     little_endian_store_16(buffer, 1, att_handle);
529bf78aac6SMatthias Ringwald     buffer[3] = value;
530bf78aac6SMatthias Ringwald     uint32_t tag = att_server_persistent_ccc_tag_for_index(free_index);
531bf78aac6SMatthias Ringwald     tlv_impl->store_tag(tlv_context, tag, buffer, sizeof(buffer));
532bf78aac6SMatthias Ringwald }
533bf78aac6SMatthias Ringwald 
534*01ac2008SMatthias Ringwald static void att_server_persistent_ccc_restore(att_server_t * att_server){
535*01ac2008SMatthias Ringwald     if (!att_server) return;
536*01ac2008SMatthias Ringwald     int le_device_index = att_server->ir_le_device_db_index;
537*01ac2008SMatthias Ringwald     log_info("Restore CCC values of remote %s, le device id %d", bd_addr_to_str(att_server->peer_address), le_device_index);
538*01ac2008SMatthias Ringwald     // get btstack_tlv
539*01ac2008SMatthias Ringwald     const btstack_tlv_t * tlv_impl = NULL;
540*01ac2008SMatthias Ringwald     void * tlv_context;
541*01ac2008SMatthias Ringwald     btstack_tlv_get_instance(&tlv_impl, &tlv_context);
542*01ac2008SMatthias Ringwald     if (!tlv_impl) return;
543*01ac2008SMatthias Ringwald     // get all ccc tag
544*01ac2008SMatthias Ringwald     int index;
545*01ac2008SMatthias Ringwald     uint8_t buffer[4];
546*01ac2008SMatthias Ringwald     for (index=0;index<GATT_SERVER_NUM_PERSISTENT_CCC;index++){
547*01ac2008SMatthias Ringwald         uint32_t tag = att_server_persistent_ccc_tag_for_index(index);
548*01ac2008SMatthias Ringwald         int len = tlv_impl->get_tag(tlv_context, tag, buffer, sizeof(buffer));
549*01ac2008SMatthias Ringwald         if (len != sizeof(buffer)) continue;
550*01ac2008SMatthias Ringwald         if (buffer[0] != le_device_index) continue;
551*01ac2008SMatthias Ringwald         // simulate write callback
552*01ac2008SMatthias Ringwald         uint16_t attribute_handle = little_endian_read_16(buffer, 1);
553*01ac2008SMatthias Ringwald         uint8_t  value[2];
554*01ac2008SMatthias Ringwald         little_endian_store_16(value, 0, buffer[3]);
555*01ac2008SMatthias Ringwald         att_write_callback_t callback = att_server_write_callback_for_handle(attribute_handle);
556*01ac2008SMatthias Ringwald         if (!callback) continue;
557*01ac2008SMatthias Ringwald         log_info("Attribute handle 0x%04x, value 0x%04x", attribute_handle, buffer[3]);
558*01ac2008SMatthias Ringwald         (*callback)(att_server->connection.con_handle, attribute_handle, ATT_TRANSACTION_MODE_NONE, 0, value, sizeof(value));
559*01ac2008SMatthias Ringwald     }
560*01ac2008SMatthias Ringwald }
561*01ac2008SMatthias Ringwald 
562bf78aac6SMatthias Ringwald // persistent CCC writes
563bf78aac6SMatthias Ringwald // ---------------------
5643d71c7a4SMatthias Ringwald 
5653d71c7a4SMatthias Ringwald // gatt service management
5663d71c7a4SMatthias Ringwald static att_service_handler_t * att_service_handler_for_handle(uint16_t handle){
5673d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_t it;
5683d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &service_handlers);
5693d71c7a4SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
5703d71c7a4SMatthias Ringwald         att_service_handler_t * handler = (att_service_handler_t*) btstack_linked_list_iterator_next(&it);
5713d71c7a4SMatthias Ringwald         if (handler->start_handle > handle) continue;
5723d71c7a4SMatthias Ringwald         if (handler->end_handle   < handle) continue;
5733d71c7a4SMatthias Ringwald         return handler;
5743d71c7a4SMatthias Ringwald     }
5753d71c7a4SMatthias Ringwald     return NULL;
5763d71c7a4SMatthias Ringwald }
5773d71c7a4SMatthias Ringwald static att_read_callback_t att_server_read_callback_for_handle(uint16_t handle){
5783d71c7a4SMatthias Ringwald     att_service_handler_t * handler = att_service_handler_for_handle(handle);
5793d71c7a4SMatthias Ringwald     if (handler) return handler->read_callback;
5803d71c7a4SMatthias Ringwald     return att_server_client_read_callback;
5813d71c7a4SMatthias Ringwald }
5823d71c7a4SMatthias Ringwald 
5833d71c7a4SMatthias Ringwald static att_write_callback_t att_server_write_callback_for_handle(uint16_t handle){
5843d71c7a4SMatthias Ringwald     att_service_handler_t * handler = att_service_handler_for_handle(handle);
5853d71c7a4SMatthias Ringwald     if (handler) return handler->write_callback;
5863d71c7a4SMatthias Ringwald     return att_server_client_write_callback;
5873d71c7a4SMatthias Ringwald }
5883d71c7a4SMatthias Ringwald 
5893d71c7a4SMatthias Ringwald static void att_notify_write_callbacks(hci_con_handle_t con_handle, uint16_t transaction_mode){
5903d71c7a4SMatthias Ringwald     // notify all callbacks
5913d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_t it;
5923d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &service_handlers);
5933d71c7a4SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
5943d71c7a4SMatthias Ringwald         att_service_handler_t * handler = (att_service_handler_t*) btstack_linked_list_iterator_next(&it);
5953d71c7a4SMatthias Ringwald         if (!handler->write_callback) continue;
5963d71c7a4SMatthias Ringwald         (*handler->write_callback)(con_handle, 0, transaction_mode, 0, NULL, 0);
5973d71c7a4SMatthias Ringwald     }
5983d71c7a4SMatthias Ringwald     if (!att_server_client_write_callback) return;
5993d71c7a4SMatthias Ringwald     (*att_server_client_write_callback)(con_handle, 0, transaction_mode, 0, NULL, 0);
6003d71c7a4SMatthias Ringwald }
6013d71c7a4SMatthias Ringwald 
6023d71c7a4SMatthias Ringwald // returns first reported error or 0
6033d71c7a4SMatthias Ringwald static uint8_t att_validate_prepared_write(hci_con_handle_t con_handle){
6043d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_t it;
6053d71c7a4SMatthias Ringwald     btstack_linked_list_iterator_init(&it, &service_handlers);
6063d71c7a4SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
6073d71c7a4SMatthias Ringwald         att_service_handler_t * handler = (att_service_handler_t*) btstack_linked_list_iterator_next(&it);
6083d71c7a4SMatthias Ringwald         if (!handler->write_callback) continue;
6093d71c7a4SMatthias Ringwald         uint8_t error_code = (*handler->write_callback)(con_handle, 0, ATT_TRANSACTION_MODE_VALIDATE, 0, NULL, 0);
6103d71c7a4SMatthias Ringwald         if (error_code) return error_code;
6113d71c7a4SMatthias Ringwald     }
6123d71c7a4SMatthias Ringwald     if (!att_server_client_write_callback) return 0;
6133d71c7a4SMatthias Ringwald     return (*att_server_client_write_callback)(con_handle, 0, ATT_TRANSACTION_MODE_VALIDATE, 0, NULL, 0);
6143d71c7a4SMatthias Ringwald }
6153d71c7a4SMatthias Ringwald 
6163d71c7a4SMatthias 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){
6173d71c7a4SMatthias Ringwald     att_read_callback_t callback = att_server_read_callback_for_handle(attribute_handle);
618*01ac2008SMatthias Ringwald     if (!callback) return 0;
6193d71c7a4SMatthias Ringwald     return (*callback)(con_handle, attribute_handle, offset, buffer, buffer_size);
6203d71c7a4SMatthias Ringwald }
6213d71c7a4SMatthias Ringwald 
6223d71c7a4SMatthias 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){
6233d71c7a4SMatthias Ringwald     switch (transaction_mode){
6243d71c7a4SMatthias Ringwald         case ATT_TRANSACTION_MODE_VALIDATE:
6253d71c7a4SMatthias Ringwald             return att_validate_prepared_write(con_handle);
6263d71c7a4SMatthias Ringwald         case ATT_TRANSACTION_MODE_EXECUTE:
6273d71c7a4SMatthias Ringwald         case ATT_TRANSACTION_MODE_CANCEL:
6283d71c7a4SMatthias Ringwald             att_notify_write_callbacks(con_handle, transaction_mode);
6293d71c7a4SMatthias Ringwald             return 0;
6303d71c7a4SMatthias Ringwald         default:
6313d71c7a4SMatthias Ringwald             break;
6323d71c7a4SMatthias Ringwald     }
6333d71c7a4SMatthias Ringwald 
634bf78aac6SMatthias Ringwald     // track CCC writes
635bf78aac6SMatthias Ringwald     if (att_is_persistent_ccc(attribute_handle) && offset == 0 && buffer_size == 2){
636bf78aac6SMatthias Ringwald         att_server_persistent_ccc_write(con_handle, attribute_handle, little_endian_read_16(buffer, 0));
637bf78aac6SMatthias Ringwald     }
638bf78aac6SMatthias Ringwald 
639*01ac2008SMatthias Ringwald     att_write_callback_t callback = att_server_write_callback_for_handle(attribute_handle);
640*01ac2008SMatthias Ringwald     if (!callback) return 0;
6413d71c7a4SMatthias Ringwald     return (*callback)(con_handle, attribute_handle, transaction_mode, offset, buffer, buffer_size);
6423d71c7a4SMatthias Ringwald }
6433d71c7a4SMatthias Ringwald 
6443d71c7a4SMatthias Ringwald /**
6453d71c7a4SMatthias Ringwald  * @brief register read/write callbacks for specific handle range
6463d71c7a4SMatthias Ringwald  * @param att_service_handler_t
6473d71c7a4SMatthias Ringwald  */
6483d71c7a4SMatthias Ringwald void att_server_register_service_handler(att_service_handler_t * handler){
6493d71c7a4SMatthias Ringwald     if (att_service_handler_for_handle(handler->start_handle) ||
6503d71c7a4SMatthias Ringwald         att_service_handler_for_handle(handler->end_handle)){
6513d71c7a4SMatthias Ringwald         log_error("handler for range 0x%04x-0x%04x already registered", handler->start_handle, handler->end_handle);
6523d71c7a4SMatthias Ringwald         return;
6533d71c7a4SMatthias Ringwald     }
6543d71c7a4SMatthias Ringwald     btstack_linked_list_add(&service_handlers, (btstack_linked_item_t*) handler);
6553d71c7a4SMatthias Ringwald }
6563d71c7a4SMatthias Ringwald 
6573deb3ec6SMatthias Ringwald void att_server_init(uint8_t const * db, att_read_callback_t read_callback, att_write_callback_t write_callback){
6583deb3ec6SMatthias Ringwald 
6593d71c7a4SMatthias Ringwald     // store callbacks
6603d71c7a4SMatthias Ringwald     att_server_client_read_callback  = read_callback;
6613d71c7a4SMatthias Ringwald     att_server_client_write_callback = write_callback;
6623d71c7a4SMatthias Ringwald 
6631a389cdcSMatthias Ringwald     // register for HCI Events
664d9a7306aSMatthias Ringwald     hci_event_callback_registration.callback = &att_event_packet_handler;
6651a389cdcSMatthias Ringwald     hci_add_event_handler(&hci_event_callback_registration);
6661a389cdcSMatthias Ringwald 
667406722e4SMatthias Ringwald     // register for SM events
668d9a7306aSMatthias Ringwald     sm_event_callback_registration.callback = &att_event_packet_handler;
669406722e4SMatthias Ringwald     sm_add_event_handler(&sm_event_callback_registration);
6703deb3ec6SMatthias Ringwald 
6711a389cdcSMatthias Ringwald     // and L2CAP ATT Server PDUs
6723deb3ec6SMatthias Ringwald     att_dispatch_register_server(att_packet_handler);
6733deb3ec6SMatthias Ringwald 
6743deb3ec6SMatthias Ringwald     att_set_db(db);
6753d71c7a4SMatthias Ringwald     att_set_read_callback(att_server_read_callback);
6763d71c7a4SMatthias Ringwald     att_set_write_callback(att_server_write_callback);
6773deb3ec6SMatthias Ringwald 
6783deb3ec6SMatthias Ringwald }
6793deb3ec6SMatthias Ringwald 
6803deb3ec6SMatthias Ringwald void att_server_register_packet_handler(btstack_packet_handler_t handler){
6813deb3ec6SMatthias Ringwald     att_client_packet_handler = handler;
6823deb3ec6SMatthias Ringwald }
6833deb3ec6SMatthias Ringwald 
684c141988cSMatthias Ringwald int  att_server_can_send_packet_now(hci_con_handle_t con_handle){
68518707219SMatthias Ringwald 	return att_dispatch_server_can_send_now(con_handle);
6861b96b007SMatthias Ringwald }
6871b96b007SMatthias Ringwald 
688c141988cSMatthias Ringwald void att_server_request_can_send_now_event(hci_con_handle_t con_handle){
689d9d23054SMatthias Ringwald     log_debug("att_server_request_can_send_now_event 0x%04x", con_handle);
6901b96b007SMatthias Ringwald     att_client_waiting_for_can_send = 1;
69118707219SMatthias Ringwald     att_dispatch_server_request_can_send_now_event(con_handle);
6923deb3ec6SMatthias Ringwald }
6933deb3ec6SMatthias Ringwald 
694bb38f057SMatthias Ringwald void att_server_register_can_send_now_callback(btstack_context_callback_registration_t * callback_registration, hci_con_handle_t con_handle){
695bb38f057SMatthias Ringwald     // check if can send already
696bb38f057SMatthias Ringwald     if (att_dispatch_server_can_send_now(con_handle)){
697bb38f057SMatthias Ringwald         callback_registration->callback(callback_registration->context);
698bb38f057SMatthias Ringwald         return;
699bb38f057SMatthias Ringwald     }
70018707219SMatthias Ringwald     callback_registration->context = (void*)(uintptr_t) con_handle;
701bb38f057SMatthias Ringwald     btstack_linked_list_add_tail(&can_send_now_clients, (btstack_linked_item_t*) callback_registration);
702bb38f057SMatthias Ringwald     att_dispatch_server_request_can_send_now_event(con_handle);
703bb38f057SMatthias Ringwald }
704bb38f057SMatthias Ringwald 
70518707219SMatthias Ringwald 
706c141988cSMatthias Ringwald int att_server_notify(hci_con_handle_t con_handle, uint16_t attribute_handle, uint8_t *value, uint16_t value_len){
70718707219SMatthias Ringwald     att_server_t * att_server = att_server_for_handle(con_handle);
70818707219SMatthias Ringwald     if (!att_server) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
70918707219SMatthias Ringwald 
71018707219SMatthias Ringwald     if (!att_dispatch_server_can_send_now(con_handle)) return BTSTACK_ACL_BUFFERS_FULL;
7113deb3ec6SMatthias Ringwald 
7123deb3ec6SMatthias Ringwald     l2cap_reserve_packet_buffer();
7133deb3ec6SMatthias Ringwald     uint8_t * packet_buffer = l2cap_get_outgoing_buffer();
71418707219SMatthias Ringwald     uint16_t size = att_prepare_handle_value_notification(&att_server->connection, attribute_handle, value, value_len, packet_buffer);
71518707219SMatthias Ringwald 	return l2cap_send_prepared_connectionless(att_server->connection.con_handle, L2CAP_CID_ATTRIBUTE_PROTOCOL, size);
7163deb3ec6SMatthias Ringwald }
7173deb3ec6SMatthias Ringwald 
718c141988cSMatthias Ringwald int att_server_indicate(hci_con_handle_t con_handle, uint16_t attribute_handle, uint8_t *value, uint16_t value_len){
71918707219SMatthias Ringwald     att_server_t * att_server = att_server_for_handle(con_handle);
72018707219SMatthias Ringwald     if (!att_server) return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER;
72118707219SMatthias Ringwald 
722eaac31e8SMatthias Ringwald     if (att_server->value_indication_handle) return ATT_HANDLE_VALUE_INDICATION_IN_PROGRESS;
72318707219SMatthias Ringwald     if (!att_dispatch_server_can_send_now(con_handle)) return BTSTACK_ACL_BUFFERS_FULL;
7243deb3ec6SMatthias Ringwald 
7253deb3ec6SMatthias Ringwald     // track indication
72618707219SMatthias Ringwald     att_server->value_indication_handle = attribute_handle;
72718707219SMatthias Ringwald     btstack_run_loop_set_timer_handler(&att_server->value_indication_timer, att_handle_value_indication_timeout);
72818707219SMatthias Ringwald     btstack_run_loop_set_timer(&att_server->value_indication_timer, ATT_TRANSACTION_TIMEOUT_MS);
72918707219SMatthias Ringwald     btstack_run_loop_add_timer(&att_server->value_indication_timer);
7303deb3ec6SMatthias Ringwald 
7313deb3ec6SMatthias Ringwald     l2cap_reserve_packet_buffer();
7323deb3ec6SMatthias Ringwald     uint8_t * packet_buffer = l2cap_get_outgoing_buffer();
73318707219SMatthias Ringwald     uint16_t size = att_prepare_handle_value_indication(&att_server->connection, attribute_handle, value, value_len, packet_buffer);
73418707219SMatthias Ringwald 	l2cap_send_prepared_connectionless(att_server->connection.con_handle, L2CAP_CID_ATTRIBUTE_PROTOCOL, size);
7353deb3ec6SMatthias Ringwald     return 0;
7363deb3ec6SMatthias Ringwald }
737