-
Notifications
You must be signed in to change notification settings - Fork 6
/
scanner.c
217 lines (180 loc) · 5.56 KB
/
scanner.c
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
// Copyright (c) 2021 David G. Young
// Copyright (c) 2015 Damian Kołakowski. All rights reserved.
// cc scanner.c -lbluetooth -o scanner
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <signal.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/hci.h>
#include <bluetooth/hci_lib.h>
#include <time.h>
int device;
struct hci_request ble_hci_request(uint16_t ocf, int clen, void * status, void * cparam)
{
struct hci_request rq;
memset(&rq, 0, sizeof(rq));
rq.ogf = OGF_LE_CTL;
rq.ocf = ocf;
rq.cparam = cparam;
rq.clen = clen;
rq.rparam = status;
rq.rlen = 1;
return rq;
}
// cleanup and exit the program with exit code 0
void exit_clean()
{
int ret, status;
// Disable scanning.
le_set_scan_enable_cp scan_cp;
memset(&scan_cp, 0, sizeof(scan_cp));
scan_cp.enable = 0x00; // Disable flag.
struct hci_request disable_adv_rq = ble_hci_request(OCF_LE_SET_SCAN_ENABLE, LE_SET_SCAN_ENABLE_CP_SIZE, &status, &scan_cp);
ret = hci_send_req(device, &disable_adv_rq, 1000);
if ( ret < 0 )
perror("Failed to disable scan.");
hci_close_dev(device);
exit( 0 );
}
// handles timeout
void signal_handler( int s )
{
//printf( "received SIGALRM\n" );
exit_clean();
}
int main()
{
int ret, status;
// Get HCI device.
device = hci_open_dev(1);
if ( device < 0 ) {
device = hci_open_dev(0);
if (device >= 0) {
printf("Using hci0\n");
}
}
else {
printf("Using hci1\n");
}
if ( device < 0 ) {
perror("Failed to open HCI device.");
return 0;
}
// Set BLE scan parameters.
le_set_scan_parameters_cp scan_params_cp;
memset(&scan_params_cp, 0, sizeof(scan_params_cp));
scan_params_cp.type = 0x00;
scan_params_cp.interval = htobs(0x0010);
scan_params_cp.window = htobs(0x0010);
scan_params_cp.own_bdaddr_type = 0x00; // Public Device Address (default).
scan_params_cp.filter = 0x00; // Accept all.
struct hci_request scan_params_rq = ble_hci_request(OCF_LE_SET_SCAN_PARAMETERS, LE_SET_SCAN_PARAMETERS_CP_SIZE, &status, &scan_params_cp);
ret = hci_send_req(device, &scan_params_rq, 1000);
if ( ret < 0 ) {
hci_close_dev(device);
perror("Failed to set scan parameters data.");
return 0;
}
// Set BLE events report mask.
le_set_event_mask_cp event_mask_cp;
memset(&event_mask_cp, 0, sizeof(le_set_event_mask_cp));
int i = 0;
for ( i = 0 ; i < 8 ; i++ ) event_mask_cp.mask[i] = 0xFF;
struct hci_request set_mask_rq = ble_hci_request(OCF_LE_SET_EVENT_MASK, LE_SET_EVENT_MASK_CP_SIZE, &status, &event_mask_cp);
ret = hci_send_req(device, &set_mask_rq, 1000);
if ( ret < 0 ) {
hci_close_dev(device);
perror("Failed to set event mask.");
return 0;
}
// Enable scanning.
le_set_scan_enable_cp scan_cp;
memset(&scan_cp, 0, sizeof(scan_cp));
scan_cp.enable = 0x01; // Enable flag.
scan_cp.filter_dup = 0x00; // Filtering disabled.
struct hci_request enable_adv_rq = ble_hci_request(OCF_LE_SET_SCAN_ENABLE, LE_SET_SCAN_ENABLE_CP_SIZE, &status, &scan_cp);
ret = hci_send_req(device, &enable_adv_rq, 1000);
if ( ret < 0 ) {
hci_close_dev(device);
perror("Failed to enable scan.");
return 0;
}
// Get Results.
struct hci_filter nf;
hci_filter_clear(&nf);
hci_filter_set_ptype(HCI_EVENT_PKT, &nf);
hci_filter_set_event(EVT_LE_META_EVENT, &nf);
if ( setsockopt(device, SOL_HCI, HCI_FILTER, &nf, sizeof(nf)) < 0 ) {
hci_close_dev(device);
perror("Could not set socket options\n");
return 0;
}
uint8_t buf[HCI_MAX_EVENT_SIZE];
evt_le_meta_event * meta_event;
le_advertising_info * info;
int len;
int count = 0;
const int timeout = 10;
const int reset_timeout = 1; // wether to reset the timer on a received scan event (continuous scanning)
const int max_count = 1000;
// Install a signal handler so that we can set the exit code and clean up
if ( signal( SIGALRM, signal_handler ) == SIG_ERR )
{
hci_close_dev(device);
perror( "Could not install signal handler\n" );
return 0;
}
if ( timeout > 0 )
alarm( timeout ); // set the alarm timer, when time is up the program will be terminated
sigset_t sigalrm_set; // apparently the signal must be unblocked in some cases
sigemptyset ( &sigalrm_set );
sigaddset ( &sigalrm_set, SIGALRM );
if ( sigprocmask( SIG_UNBLOCK, &sigalrm_set, NULL ) != 0 )
{
hci_close_dev(device);
perror( "Could not unblock alarm signal" );
return 0;
}
// Keep scanning until the timeout is triggered or we have seen lots of advertisements. Then exit.
// We exit in this case because the scan may have failed or stopped. Higher level code can restart
while ( count < max_count || max_count <= 0 )
{
len = read(device, buf, sizeof(buf));
if ( len >= HCI_EVENT_HDR_SIZE )
{
meta_event = (evt_le_meta_event*)(buf+HCI_EVENT_HDR_SIZE+1);
if ( meta_event->subevent == EVT_LE_ADVERTISING_REPORT )
{
count++;
if ( reset_timeout != 0 && timeout > 0 ) // reset/restart the alarm timer
alarm( timeout );
// print results
uint8_t reports_count = meta_event->data[0];
void * offset = meta_event->data + 1;
while ( reports_count-- )
{
info = (le_advertising_info *)offset;
char addr[18];
ba2str( &(info->bdaddr), addr);
printf("%s %d", addr, (int8_t)info->data[info->length]);
for (int i = 0; i < info->length; i++)
printf(" %02X", (unsigned char)info->data[i]);
printf("\n");
offset = info->data + info->length + 2;
}
}
}
}
// Prevent SIGALARM from firing during the clean up procedure
if ( sigprocmask( SIG_BLOCK, &sigalrm_set, NULL ) != 0 )
{
hci_close_dev(device);
perror( "Could not block alarm signal" );
return 0;
}
exit_clean();
return 0;
}