-
Notifications
You must be signed in to change notification settings - Fork 681
Expand file tree
/
Copy pathgatt_device_information_query.c
More file actions
436 lines (368 loc) · 18.7 KB
/
gatt_device_information_query.c
File metadata and controls
436 lines (368 loc) · 18.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
/*
* Copyright (C) 2014 BlueKitchen GmbH
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holders nor the names of
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
* 4. Any redistribution, use, or modification is done solely for
* personal benefit and not for any commercial purpose or for
* monetary gain.
*
* THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN
* GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* Please inquire about commercial licensing options at
* contact@bluekitchen-gmbh.com
*
*/
#define BTSTACK_FILE__ "gatt_device_information_query.c"
// *****************************************************************************
/* EXAMPLE_START(gatt_device_information_query): GATT Device Information Service Client
*
* @text This example demonstrates how to use the GATT Device Information Service client to
* receive device information such as various IDs and revisions. The example scans
* for remote devices and connects to the first found device. If the remote device provides a Device
* Information Service, the information is collected and printed in console output, otherwise,
* the device will be blacklisted and the scan restarted.
*/
// *****************************************************************************
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include "btstack.h"
// gatt_device_information_query.gatt contains the declaration of the provided GATT Services + Characteristics
// gatt_device_information_query.h contains the binary representation of gatt_device_information_query.gatt
// it is generated by the build system by calling: $BTSTACK_ROOT/tool/compile_gatt.py gatt_device_information_query.gatt gatt_device_information_query.h
// it needs to be regenerated when the GATT Database declared in gatt_device_information_query.gatt file is modified
#include "gatt_device_information_query.h"
typedef struct advertising_report {
uint8_t type;
uint8_t event_type;
uint8_t address_type;
bd_addr_t address;
uint8_t rssi;
uint8_t length;
const uint8_t * data;
} advertising_report_t;
static enum {
APP_STATE_IDLE,
APP_STATE_W4_SCAN_RESULT,
APP_STATE_W4_CONNECT,
APP_STATE_CONNECTED
} app_state;
static int blacklist_index = 0;
static bd_addr_t blacklist[20];
static advertising_report_t report;
static hci_con_handle_t connection_handle;
static bd_addr_t cmdline_addr;
static int cmdline_addr_found = 0;
static btstack_packet_callback_registration_t hci_event_callback_registration;
/* @section Main Application Setup
*
* @text The Listing MainConfiguration shows how to setup Device Information Service client.
* Besides calling init() method for each service, you'll also need to register HCI packet handler
* to handle advertisements, as well as connect and disconect events.
*
* @text Handling of GATT Device Information Service events will be later delegated to a sepparate packet
* handler, i.e. gatt_client_event_handler.
*
* @note There are two additional files associated with this client to allow a remote device to query out GATT database:
* - gatt_device_information_query.gatt - contains the declaration of the provided GATT Services and Characteristics.
* - gatt_device_information_query.h - contains the binary representation of gatt_device_information_query.gatt.
*
* gatt_device_information_query.h is generated by the build system by calling:
* $BTSTACK_ROOT/tool/compile_gatt.py gatt_device_information_query.gatt gatt_device_information_query.h
* This file needs to be regenerated when the GATT Database declared in gatt_device_information_query.gatt file is modified.
*/
/* LISTING_START(MainConfiguration): Setup Device Information Service Client service */
static void hci_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size);
static void gatt_client_event_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size);
static void device_information_service_client_setup(void){
// Init L2CAP
l2cap_init();
// Setup ATT server - only needed if LE Peripheral does ATT queries on its own, e.g. Android phones
att_server_init(profile_data, NULL, NULL);
// GATT Client setup
gatt_client_init();
// Device Information Service Client setup
device_information_service_client_init();
sm_init();
sm_set_io_capabilities(IO_CAPABILITY_NO_INPUT_NO_OUTPUT);
hci_event_callback_registration.callback = &hci_packet_handler;
hci_add_event_handler(&hci_event_callback_registration);
}
/* LISTING_END */
static int blacklist_size(void){
return sizeof(blacklist) / sizeof(bd_addr_t);
}
static int blacklist_contains(bd_addr_t addr){
int i;
for (i=0; i<blacklist_size(); i++){
if (bd_addr_cmp(addr, blacklist[i]) == 0) return 1;
}
return 0;
}
static void add_to_blacklist(bd_addr_t addr){
printf("%s added to blacklist (no device information service found).\n", bd_addr_to_str(addr));
bd_addr_copy(blacklist[blacklist_index], addr);
blacklist_index = (blacklist_index + 1) % blacklist_size();
}
static void dump_advertising_report(uint8_t *packet){
bd_addr_t address;
gap_event_advertising_report_get_address(packet, address);
printf(" * adv. event: evt-type %u, addr-type %u, addr %s, rssi %u, length adv %u, data: ",
gap_event_advertising_report_get_advertising_event_type(packet),
gap_event_advertising_report_get_address_type(packet),
bd_addr_to_str(address),
gap_event_advertising_report_get_rssi(packet),
gap_event_advertising_report_get_data_length(packet));
printf_hexdump(gap_event_advertising_report_get_data(packet), gap_event_advertising_report_get_data_length(packet));
}
/* LISTING_START(packetHandler): Packet Handler */
static void hci_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
/* LISTING_PAUSE */
UNUSED(channel);
UNUSED(size);
uint8_t status;
if (packet_type != HCI_EVENT_PACKET){
return;
}
switch (hci_event_packet_get_type(packet)) {
case BTSTACK_EVENT_STATE:
// BTstack activated, get started
if (btstack_event_state_get_state(packet) != HCI_STATE_WORKING) break;
if (cmdline_addr_found){
printf("Connect to %s\n", bd_addr_to_str(cmdline_addr));
app_state = APP_STATE_W4_CONNECT;
gap_connect(cmdline_addr, 0);
break;
}
printf("Start scanning!\n");
app_state = APP_STATE_W4_SCAN_RESULT;
gap_set_scan_parameters(0,0x0030, 0x0030);
gap_start_scan();
break;
case GAP_EVENT_ADVERTISING_REPORT:
if (app_state != APP_STATE_W4_SCAN_RESULT) return;
gap_event_advertising_report_get_address(packet, report.address);
report.address_type = gap_event_advertising_report_get_address_type(packet);
if (blacklist_contains(report.address)) {
break;
}
dump_advertising_report(packet);
// stop scanning, and connect to the device
app_state = APP_STATE_W4_CONNECT;
gap_stop_scan();
printf("Stop scan. Connect to device with addr %s.\n", bd_addr_to_str(report.address));
gap_connect(report.address,report.address_type);
break;
/* LISTING_RESUME */
case HCI_EVENT_META_GAP:
// wait for connection complete
if (hci_event_gap_meta_get_subevent_code(packet) != GAP_SUBEVENT_LE_CONNECTION_COMPLETE) break;
/* LISTING_PAUSE */
if (app_state != APP_STATE_W4_CONNECT) return;
/* LISTING_RESUME */
// get connection handle from event
connection_handle = gap_subevent_le_connection_complete_get_connection_handle(packet);
// Connect to remote Device Information Service. The client will query the remote service and emit events,
// that will be passed on to gatt_client_event_handler.
status = device_information_service_client_query(connection_handle, gatt_client_event_handler);
btstack_assert(status == ERROR_CODE_SUCCESS);
printf("Device Information connected.\n");
app_state = APP_STATE_CONNECTED;
break;
/* LISTING_PAUSE */
case HCI_EVENT_DISCONNECTION_COMPLETE:
connection_handle = HCI_CON_HANDLE_INVALID;
if (cmdline_addr_found){
printf("Disconnected %s\n", bd_addr_to_str(cmdline_addr));
return;
}
printf("Disconnected %s\n", bd_addr_to_str(report.address));
printf("Restart scan.\n");
app_state = APP_STATE_W4_SCAN_RESULT;
gap_start_scan();
break;
default:
break;
}
}
/* LISTING_END */
/* LISTING_START(gatt_client_event_handler): GATT Client Event Handler */
// The gatt_client_event_handler receives following events from remote device:
// - GATTSERVICE_SUBEVENT_BATTERY_SERVICE_CONNECTED
// - GATTSERVICE_SUBEVENT_BATTERY_SERVICE_LEVEL
//
// Event GATTSERVICE_SUBEVENT_DEVICE_INFORMATION_DONE is received when all queries are done,
// of if service was not found. The status field of this event indicated ATT errors (see bluetooth.h).
static void gatt_client_event_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
/* LISTING_PAUSE */
UNUSED(packet_type);
UNUSED(channel);
UNUSED(size);
/* LISTING_RESUME */
uint8_t att_status = 0;
if (hci_event_packet_get_type(packet) != HCI_EVENT_GATTSERVICE_META){
return;
}
switch (hci_event_gattservice_meta_get_subevent_code(packet)){
case GATTSERVICE_SUBEVENT_DEVICE_INFORMATION_MANUFACTURER_NAME:
att_status = gattservice_subevent_device_information_manufacturer_name_get_att_status(packet);
if (att_status != ATT_ERROR_SUCCESS){
printf("Manufacturer Name read failed, ATT Error 0x%02x\n", att_status);
} else {
printf("Manufacturer Name: %s\n", gattservice_subevent_device_information_manufacturer_name_get_value(packet));
}
break;
// ...
/* LISTING_PAUSE */
case GATTSERVICE_SUBEVENT_DEVICE_INFORMATION_MODEL_NUMBER:
att_status = gattservice_subevent_device_information_model_number_get_att_status(packet);
if (att_status != ATT_ERROR_SUCCESS){
printf("Model Number read failed, ATT Error 0x%02x\n", att_status);
} else {
printf("Model Number: %s\n", gattservice_subevent_device_information_model_number_get_value(packet));
}
break;
case GATTSERVICE_SUBEVENT_DEVICE_INFORMATION_SERIAL_NUMBER:
att_status = gattservice_subevent_device_information_serial_number_get_att_status(packet);
if (att_status != ATT_ERROR_SUCCESS){
printf("Serial Number read failed, ATT Error 0x%02x\n", att_status);
} else {
printf("Serial Number: %s\n", gattservice_subevent_device_information_serial_number_get_value(packet));
}
break;
case GATTSERVICE_SUBEVENT_DEVICE_INFORMATION_HARDWARE_REVISION:
att_status = gattservice_subevent_device_information_hardware_revision_get_att_status(packet);
if (att_status != ATT_ERROR_SUCCESS){
printf("Hardware Revision read failed, ATT Error 0x%02x\n", att_status);
} else {
printf("Hardware Revision: %s\n", gattservice_subevent_device_information_hardware_revision_get_value(packet));
}
break;
case GATTSERVICE_SUBEVENT_DEVICE_INFORMATION_FIRMWARE_REVISION:
att_status = gattservice_subevent_device_information_firmware_revision_get_att_status(packet);
if (att_status != ATT_ERROR_SUCCESS){
printf("Firmware Revision read failed, ATT Error 0x%02x\n", att_status);
} else {
printf("Firmware Revision: %s\n", gattservice_subevent_device_information_firmware_revision_get_value(packet));
}
break;
case GATTSERVICE_SUBEVENT_DEVICE_INFORMATION_SOFTWARE_REVISION:
att_status = gattservice_subevent_device_information_software_revision_get_att_status(packet);
if (att_status != ATT_ERROR_SUCCESS){
printf("Software Revision read failed, ATT Error 0x%02x\n", att_status);
} else {
printf("Software Revision: %s\n", gattservice_subevent_device_information_software_revision_get_value(packet));
}
break;
case GATTSERVICE_SUBEVENT_DEVICE_INFORMATION_SYSTEM_ID:
att_status = gattservice_subevent_device_information_system_id_get_att_status(packet);
if (att_status != ATT_ERROR_SUCCESS){
printf("System ID read failed, ATT Error 0x%02x\n", att_status);
} else {
uint32_t manufacturer_identifier_low = gattservice_subevent_device_information_system_id_get_manufacturer_id_low(packet);
uint8_t manufacturer_identifier_high = gattservice_subevent_device_information_system_id_get_manufacturer_id_high(packet);
printf("Manufacturer ID: 0x%02x%08" PRIx32 "\n", manufacturer_identifier_high, manufacturer_identifier_low);
printf("Organizationally Unique ID: 0x%06" PRIx32 "\n", gattservice_subevent_device_information_system_id_get_organizationally_unique_id(packet));
}
break;
case GATTSERVICE_SUBEVENT_DEVICE_INFORMATION_IEEE_REGULATORY_CERTIFICATION:
att_status = gattservice_subevent_device_information_ieee_regulatory_certification_get_att_status(packet);
if (att_status != ATT_ERROR_SUCCESS){
printf("IEEE Regulatory Certification read failed, ATT Error 0x%02x\n", att_status);
} else {
printf("value_a: 0x%04x\n", gattservice_subevent_device_information_ieee_regulatory_certification_get_value_a(packet));
printf("value_b: 0x%04x\n", gattservice_subevent_device_information_ieee_regulatory_certification_get_value_b(packet));
}
break;
case GATTSERVICE_SUBEVENT_DEVICE_INFORMATION_PNP_ID:
att_status = gattservice_subevent_device_information_pnp_id_get_att_status(packet);
if (att_status != ATT_ERROR_SUCCESS){
printf("PNP ID read failed, ATT Error 0x%02x\n", att_status);
} else {
printf("Vendor Source ID: 0x%02x\n", gattservice_subevent_device_information_pnp_id_get_vendor_source_id(packet));
printf("Vendor ID: 0x%04x\n", gattservice_subevent_device_information_pnp_id_get_vendor_id(packet));
printf("Product ID: 0x%04x\n", gattservice_subevent_device_information_pnp_id_get_product_id(packet));
printf("Product Version: 0x%04x\n", gattservice_subevent_device_information_pnp_id_get_product_version(packet));
}
break;
/* LISTING_RESUME */
case GATTSERVICE_SUBEVENT_DEVICE_INFORMATION_DONE:
att_status = gattservice_subevent_device_information_serial_number_get_att_status(packet);
switch (att_status){
case ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE:
printf("Device Information service client not found.\n");
add_to_blacklist(report.address);
gap_disconnect(connection_handle);
break;
case ATT_ERROR_SUCCESS:
printf("Query done\n");
break;
default:
printf("Query failed, ATT Error 0x%02x\n", att_status);
break;
}
if (att_status != ATT_ERROR_SUCCESS){
if (att_status == ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE)
printf("Query failed, ATT Error 0x%02x\n", att_status);
} else {
printf("Query done\n");
}
break;
default:
break;
}
}
/* LISTING_END */
int btstack_main(int argc, const char * argv[]);
int btstack_main(int argc, const char * argv[]){
// parse address if command line arguments are provided
int arg;
cmdline_addr_found = 0;
for (arg = 1; arg < argc; arg++) {
if(!strcmp(argv[arg], "-a") || !strcmp(argv[arg], "--address")){
if (arg + 1 < argc) {
arg++;
cmdline_addr_found = sscanf_bd_addr(argv[arg], cmdline_addr);
}
if (!cmdline_addr_found) {
fprintf(stderr, "\nUsage: %s [-a|--address aa:bb:cc:dd:ee:ff]\n", argv[0]);
fprintf(stderr, "If no argument is provided, %s will start scanning and connect to the first found device.\n"
"To connect to a specific device use argument [-a].\n\n", argv[0]);
return 1;
}
}
}
if (!cmdline_addr_found) {
fprintf(stderr, "No specific address specified or found; start scanning for any advertiser.\n");
}
device_information_service_client_setup();
app_state = APP_STATE_IDLE;
// turn on!
hci_power_control(HCI_POWER_ON);
return 0;
}
/* EXAMPLE_END */