xref: /btstack/test/gatt_client/mock.c (revision ffe2840f67fcaaf52b723ecb818f33ac05d05dfa)
1f45e14b1S[email protected] #include <stdint.h>
2f45e14b1S[email protected] #include <stdio.h>
3f45e14b1S[email protected] #include <stdlib.h>
4f45e14b1S[email protected] #include <string.h>
5f45e14b1S[email protected] 
6f45e14b1S[email protected] #include <btstack/btstack.h>
74d890b2dS[email protected] #include "att.h"
8f45e14b1S[email protected] #include "hci.h"
9f45e14b1S[email protected] #include "hci_dump.h"
10f45e14b1S[email protected] #include "l2cap.h"
11567c20c9S[email protected] #include "gatt_client.h"
12567c20c9S[email protected] #include "sm.h"
134f5e8608S[email protected] 
144f5e8608S[email protected] static btstack_packet_handler_t att_packet_handler;
15*ffe2840fSMilanka Ringwald static void (*hci_packet_handler) (void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size) = NULL;
164f5e8608S[email protected] 
17*ffe2840fSMilanka Ringwald static linked_list_t     connections;
18c442c7c2S[email protected] static const uint16_t max_mtu = 23;
19c442c7c2S[email protected] static uint8_t  l2cap_stack_buffer[max_mtu];
20ee988ca9S[email protected] uint16_t gatt_client_handle = 0x40;
214f5e8608S[email protected] 
2271de195eSMatthias Ringwald uint16_t get_gatt_client_handle(void){
23567c20c9S[email protected] 	return gatt_client_handle;
24567c20c9S[email protected] }
25567c20c9S[email protected] 
269638642bS[email protected] void mock_simulate_command_complete(const hci_cmd_t *cmd){
274f5e8608S[email protected] 	uint8_t packet[] = {HCI_EVENT_COMMAND_COMPLETE, 4, 1, cmd->opcode & 0xff, cmd->opcode >> 8, 0};
28*ffe2840fSMilanka Ringwald 	hci_packet_handler(NULL, HCI_EVENT_PACKET, NULL, (uint8_t *)&packet, sizeof(packet));
294f5e8608S[email protected] }
304f5e8608S[email protected] 
3171de195eSMatthias Ringwald void mock_simulate_hci_state_working(void){
329638642bS[email protected] 	uint8_t packet[3] = {BTSTACK_EVENT_STATE, 0, HCI_STATE_WORKING};
33*ffe2840fSMilanka Ringwald 	hci_packet_handler(NULL, HCI_EVENT_PACKET, NULL, (uint8_t *)&packet, 3);
349638642bS[email protected] }
359638642bS[email protected] 
3671de195eSMatthias Ringwald void mock_simulate_connected(void){
37c442c7c2S[email protected] 	uint8_t packet[] = {0x3E, 0x13, 0x01, 0x00, 0x40, 0x00, 0x00, 0x00, 0x9B, 0x77, 0xD1, 0xF7, 0xB1, 0x34, 0x50, 0x00, 0x00, 0x00, 0xD0, 0x07, 0x05};
38*ffe2840fSMilanka Ringwald 	hci_packet_handler(NULL, HCI_EVENT_PACKET, NULL, (uint8_t *)&packet, sizeof(packet));
394f5e8608S[email protected] }
40f45e14b1S[email protected] 
4171de195eSMatthias Ringwald void mock_simulate_scan_response(void){
42*ffe2840fSMilanka Ringwald 	uint8_t packet[] = {0xE2, 0x00, 0xE2, 0x01, 0x34, 0xB1, 0xF7, 0xD1, 0x77, 0x9B, 0xCC, 0x09, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08};
43*ffe2840fSMilanka Ringwald 	hci_packet_handler(NULL, HCI_EVENT_PACKET, NULL, (uint8_t *)&packet, sizeof(packet));
44*ffe2840fSMilanka Ringwald }
45*ffe2840fSMilanka Ringwald 
46*ffe2840fSMilanka Ringwald le_command_status_t le_central_start_scan(void){
47*ffe2840fSMilanka Ringwald 	return BLE_PERIPHERAL_OK;
48*ffe2840fSMilanka Ringwald }
49*ffe2840fSMilanka Ringwald le_command_status_t le_central_stop_scan(void){
50*ffe2840fSMilanka Ringwald 	return BLE_PERIPHERAL_OK;
51*ffe2840fSMilanka Ringwald }
52*ffe2840fSMilanka Ringwald le_command_status_t le_central_connect(bd_addr_t addr, bd_addr_type_t addr_type){
53*ffe2840fSMilanka Ringwald 	return BLE_PERIPHERAL_OK;
54*ffe2840fSMilanka Ringwald }
55*ffe2840fSMilanka Ringwald void le_central_set_scan_parameters(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window){
56c442c7c2S[email protected] }
57c442c7c2S[email protected] 
584d890b2dS[email protected] static void att_init_connection(att_connection_t * att_connection){
594d890b2dS[email protected]     att_connection->mtu = 23;
604d890b2dS[email protected]     att_connection->encryption_key_size = 0;
614d890b2dS[email protected]     att_connection->authenticated = 0;
624d890b2dS[email protected] 	att_connection->authorized = 0;
63c442c7c2S[email protected] }
64c442c7c2S[email protected] 
6571de195eSMatthias Ringwald int  l2cap_can_send_connectionless_packet_now(void){
664f5e8608S[email protected] 	return 1;
67f45e14b1S[email protected] }
68f45e14b1S[email protected] 
69f45e14b1S[email protected] 
70f45e14b1S[email protected] uint8_t *l2cap_get_outgoing_buffer(void){
71f5bdf8a1S[email protected] 	// printf("l2cap_get_outgoing_buffer\n");
72f45e14b1S[email protected] 	return (uint8_t *)&l2cap_stack_buffer; // 8 bytes
73f45e14b1S[email protected] }
74f45e14b1S[email protected] 
75f45e14b1S[email protected] uint16_t l2cap_max_mtu(void){
76f5bdf8a1S[email protected] 	// printf("l2cap_max_mtu\n");
77c442c7c2S[email protected]     return max_mtu;
78f45e14b1S[email protected] }
79f45e14b1S[email protected] 
80567c20c9S[email protected] uint16_t l2cap_max_le_mtu(void){
81567c20c9S[email protected] 	// printf("l2cap_max_mtu\n");
82567c20c9S[email protected]     return max_mtu;
83567c20c9S[email protected] }
84f45e14b1S[email protected] 
85*ffe2840fSMilanka Ringwald void l2cap_init(){}
86*ffe2840fSMilanka Ringwald 
87f45e14b1S[email protected] void l2cap_register_fixed_channel(btstack_packet_handler_t packet_handler, uint16_t channel_id) {
884f5e8608S[email protected]     att_packet_handler = packet_handler;
89f45e14b1S[email protected] }
90f45e14b1S[email protected] 
91f45e14b1S[email protected] void l2cap_register_packet_handler(void (*handler)(void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size)){
92*ffe2840fSMilanka Ringwald 	hci_packet_handler = handler;
93f45e14b1S[email protected] }
94f45e14b1S[email protected] 
95*ffe2840fSMilanka Ringwald 
96f45e14b1S[email protected] int l2cap_reserve_packet_buffer(void){
97567c20c9S[email protected] 	return 1;
98567c20c9S[email protected] }
99567c20c9S[email protected] 
100567c20c9S[email protected] int l2cap_can_send_fixed_channel_packet_now(uint16_t handle){
101c442c7c2S[email protected] 	return 1;
102f45e14b1S[email protected] }
103f45e14b1S[email protected] 
104f45e14b1S[email protected] int l2cap_send_prepared_connectionless(uint16_t handle, uint16_t cid, uint16_t len){
1054d890b2dS[email protected] 	att_connection_t att_connection;
1064d890b2dS[email protected] 	att_init_connection(&att_connection);
1074d890b2dS[email protected] 	uint8_t response[max_mtu];
1084d890b2dS[email protected] 	uint16_t response_len = att_handle_request(&att_connection, l2cap_get_outgoing_buffer(), len, &response[0]);
109ecedf63aS[email protected] 	if (response_len){
110ee988ca9S[email protected] 		att_packet_handler(ATT_DATA_PACKET, gatt_client_handle, &response[0], response_len);
111ecedf63aS[email protected] 	}
112f45e14b1S[email protected] 	return 0;
113f45e14b1S[email protected] }
114f45e14b1S[email protected] 
11571de195eSMatthias Ringwald int  sm_cmac_ready(void){
116567c20c9S[email protected] 	return 1;
117567c20c9S[email protected] }
11857fe2af8SMatthias Ringwald void sm_cmac_start(sm_key_t k, uint16_t message_len, uint8_t * message, uint32_t sign_counter, void (*done_handler)(uint8_t hash[8])){
119567c20c9S[email protected] 	//sm_notify_client(SM_IDENTITY_RESOLVING_SUCCEEDED, sm_central_device_addr_type, sm_central_device_address, 0, sm_central_device_matched);
120567c20c9S[email protected] }
12157fe2af8SMatthias Ringwald int sm_le_device_index(uint16_t handle ){
12257fe2af8SMatthias Ringwald 	return -1;
12357fe2af8SMatthias Ringwald }
124567c20c9S[email protected] 
1251bf0402bS[email protected] void run_loop_set_timer(timer_source_t *a, uint32_t timeout_in_ms){
1261bf0402bS[email protected] }
1271bf0402bS[email protected] 
1281bf0402bS[email protected] // Set callback that will be executed when timer expires.
1291bf0402bS[email protected] void run_loop_set_timer_handler(timer_source_t *ts, void (*process)(timer_source_t *_ts)){
1301bf0402bS[email protected] }
1311bf0402bS[email protected] 
1321bf0402bS[email protected] // Add/Remove timer source.
1331bf0402bS[email protected] void run_loop_add_timer(timer_source_t *timer){
1341bf0402bS[email protected] }
1351bf0402bS[email protected] 
1361bf0402bS[email protected] int  run_loop_remove_timer(timer_source_t *timer){
1371bf0402bS[email protected] 	return 1;
1381bf0402bS[email protected] }
1391bf0402bS[email protected] 
140*ffe2840fSMilanka Ringwald // todo:
141*ffe2840fSMilanka Ringwald hci_connection_t * hci_connection_for_bd_addr_and_type(bd_addr_t addr, bd_addr_type_t addr_type){
142*ffe2840fSMilanka Ringwald 	printf("hci_connection_for_bd_addr_and_type not implemented in mock backend\n");
143*ffe2840fSMilanka Ringwald 	return NULL;
144*ffe2840fSMilanka Ringwald }
145*ffe2840fSMilanka Ringwald hci_connection_t * hci_connection_for_handle(hci_con_handle_t con_handle){
146*ffe2840fSMilanka Ringwald 	printf("hci_connection_for_handle not implemented in mock backend\n");
147*ffe2840fSMilanka Ringwald 	return NULL;
148*ffe2840fSMilanka Ringwald }
149*ffe2840fSMilanka Ringwald void hci_connections_get_iterator(linked_list_iterator_t *it){
150*ffe2840fSMilanka Ringwald 	// printf("hci_connections_get_iterator not implemented in mock backend\n");
151*ffe2840fSMilanka Ringwald     linked_list_iterator_init(it, &connections);
152*ffe2840fSMilanka Ringwald }
153567c20c9S[email protected] 
154f6424062S[email protected] // int hci_send_cmd(const hci_cmd_t *cmd, ...){
155f6424062S[email protected] // //	printf("hci_send_cmd opcode 0x%02x\n", cmd->opcode);
156f6424062S[email protected] // 	return 0;
157f6424062S[email protected] // }
158f45e14b1S[email protected] 
159f6424062S[email protected] // int hci_can_send_packet_now_using_packet_buffer(uint8_t packet_type){
160f6424062S[email protected] // 	return 1;
161f6424062S[email protected] // }
1624f5e8608S[email protected] 
163f6424062S[email protected] // void hci_disconnect_security_block(hci_con_handle_t con_handle){
164f6424062S[email protected] // 	printf("hci_disconnect_security_block \n");
165f6424062S[email protected] // }
166f6424062S[email protected] 
167f6424062S[email protected] // void hci_dump_log(const char * format, ...){
168f6424062S[email protected] // 	printf("hci_disconnect_security_block \n");
169f6424062S[email protected] // }
1704f5e8608S[email protected] 
171f45e14b1S[email protected] void l2cap_run(void){
172f45e14b1S[email protected] }
173