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
|
/**************************************************************************/
/*!
@file bonding.cpp
@author hathach (tinyusb.org)
@section LICENSE
Software License Agreement (BSD License)
Copyright (c) 2018, Adafruit Industries (adafruit.com)
All rights reserved.
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 its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''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 THE COPYRIGHT HOLDER 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.
*/
/**************************************************************************/
#include <Arduino.h>
#include "Bluefruit_FileIO.h"
#include "bonding.h"
#include "bluefruit.h"
#define BOND_DEBUG 0
#if (CFG_DEBUG == 1 && BOND_DEBUG == 1) || (CFG_DEBUG >= 2)
#define BOND_LOG(...) LOG_LV1("BOND", __VA_ARGS__)
#else
#define BOND_LOG(...)
#endif
/*------------------------------------------------------------------*/
/* Bond Key is saved in following layout
* - Bond Data : 80 bytes
* - Name : variable (including null char)
* - CCCD : variable
*
* Each field has an 1-byte preceding length
*------------------------------------------------------------------*/
#define SVC_CONTEXT_FLAG (BLE_GATTS_SYS_ATTR_FLAG_SYS_SRVCS | BLE_GATTS_SYS_ATTR_FLAG_USR_SRVCS)
#define BOND_FNAME_LEN max(sizeof(BOND_FNAME_PRPH), sizeof(BOND_FNAME_CNTR))
static void get_fname (char* fname, uint8_t role, uint16_t ediv)
{
sprintf(fname, (role == BLE_GAP_ROLE_PERIPH) ? BOND_FNAME_PRPH : BOND_FNAME_CNTR, ediv);
}
static bool bdata_skip_field(File* file)
{
int len = file->read();
VERIFY(len > 0);
file->seek(len + file->position());
return true;
}
static void bdata_write(File* file, void const* buffer, uint16_t bufsize)
{
file->write( (uint8_t) bufsize );
file->write( (uint8_t const*) buffer, bufsize);
}
void bond_init(void)
{
InternalFS.begin();
// Create prph and central bond folder if not existed
if ( !InternalFS.exists(BOND_DIR_PRPH) ) InternalFS.mkdir(BOND_DIR_PRPH);
if ( !InternalFS.exists(BOND_DIR_CNTR) ) InternalFS.mkdir(BOND_DIR_CNTR);
}
/*------------------------------------------------------------------*/
/* Keys
*------------------------------------------------------------------*/
static void bond_save_keys_dfr (uint8_t role, uint16_t conn_hdl, bond_keys_t* bkeys)
{
uint16_t const ediv = (role == BLE_GAP_ROLE_PERIPH) ? bkeys->own_enc.master_id.ediv : bkeys->peer_enc.master_id.ediv;
char filename[BOND_FNAME_LEN];
get_fname(filename, role, ediv);
// delete if file already exists
if ( InternalFS.exists(filename) ) InternalFS.remove(filename);
File file(filename, FILE_WRITE, InternalFS);
VERIFY(file,);
//------------- save keys -------------//
bdata_write(&file, bkeys, sizeof(bond_keys_t));
//------------- save device name -------------//
char devname[CFG_MAX_DEVNAME_LEN] = { 0 };
Bluefruit.Gap.getPeerName(conn_hdl, devname, CFG_MAX_DEVNAME_LEN);
// If couldn't get devname then use peer mac address
if ( !devname[0] )
{
uint8_t* mac = bkeys->peer_id.id_addr_info.addr;
sprintf(devname, "%02X:%02X:%02X:%02X:%02X:%02X", mac[5], mac[4], mac[3], mac[2], mac[1], mac[0]);
}
bdata_write(&file, devname, strlen(devname)+1); // save also null char
BOND_LOG("Saved keys for \"%s\" to file %s ( %d bytes )", devname, filename, file.size());
file.close();
}
bool bond_save_keys (uint8_t role, uint16_t conn_hdl, bond_keys_t* bkeys)
{
uint8_t* buf = (uint8_t*) rtos_malloc( sizeof(bond_keys_t) );
VERIFY(buf);
memcpy(buf, bkeys, sizeof(bond_keys_t));
// queue to execute in Ada Callback thread
ada_callback(buf, bond_save_keys_dfr, role, conn_hdl, buf);
return true;
}
bool bond_load_keys(uint8_t role, uint16_t ediv, bond_keys_t* bkeys)
{
char filename[BOND_FNAME_LEN];
get_fname(filename, role, ediv);
File file(filename, FILE_READ, InternalFS);
VERIFY(file);
int keylen = file.read();
VERIFY(keylen == sizeof(bond_keys_t));
file.read(bkeys, keylen);
file.close();
BOND_LOG("Loaded keys from file %s", filename);
return true;
}
/*------------------------------------------------------------------*/
/* CCCD
*------------------------------------------------------------------*/
static void bond_save_cccd_dfr (uint8_t role, uint16_t conn_hdl, uint16_t ediv)
{
uint16_t len=0;
sd_ble_gatts_sys_attr_get(conn_hdl, NULL, &len, SVC_CONTEXT_FLAG);
VERIFY(len, );
uint8_t sys_attr[len];
VERIFY_STATUS(sd_ble_gatts_sys_attr_get(conn_hdl, sys_attr, &len, SVC_CONTEXT_FLAG),);
char filename[BOND_FNAME_LEN];
get_fname(filename, role, ediv);
File file(filename, FILE_WRITE, InternalFS);
VERIFY(file,);
file.seek(0); // write mode start at the end, seek to beginning
bdata_skip_field(&file); // skip key
bdata_skip_field(&file); // skip name
bdata_write(&file, sys_attr, len);
BOND_LOG("Saved CCCD setting to file %s ( offset = %d, len = %d bytes )", filename, file.size() - (len + 1), len);
file.close();
}
bool bond_save_cccd (uint8_t role, uint16_t conn_hdl, uint16_t ediv)
{
VERIFY(ediv != 0xFFFF);
// queue to execute in Ada Callback thread
ada_callback(NULL, bond_save_cccd_dfr, role, conn_hdl, ediv);
return true;
}
bool bond_load_cccd(uint8_t role, uint16_t conn_hdl, uint16_t ediv)
{
bool loaded = false;
if ( ediv != 0xFFFF )
{
char filename[BOND_FNAME_LEN];
get_fname(filename, role, ediv);
File file(filename, FILE_READ, InternalFS);
if ( file )
{
bdata_skip_field(&file); // skip key
bdata_skip_field(&file); // skip name
int len = file.read();
if ( len > 0 )
{
uint8_t sys_attr[len];
file.read(sys_attr, len);
if ( ERROR_NONE == sd_ble_gatts_sys_attr_set(conn_hdl, sys_attr, len, SVC_CONTEXT_FLAG) )
{
loaded = true;
BOND_LOG("Loaded CCCD from file %s ( offset = %d, len = %d bytes )", filename, file.size() - (len + 1), len);
}
}
}
file.close();
}
if ( !loaded )
{
LOG_LV1("BOND", "CCCD setting not found");
}
return loaded;
}
void bond_print_list(uint8_t role)
{
char const * dpath = (role == BLE_GAP_ROLE_PERIPH ? BOND_DIR_PRPH : BOND_DIR_CNTR);
File dir(dpath, FILE_READ, InternalFS);
File file(InternalFS);
while ( (file = dir.openNextFile(FILE_READ)) )
{
if ( !file.isDirectory() && bdata_skip_field(&file) ) // skip key
{
int len = file.read();
if ( len > 0 )
{
char devname[len];
file.read(devname, len);
printf(" %s : %s (%d bytes)\n", file.name(), devname, file.size());
}
}
file.close();
}
printf("\n");
file.close();
dir.close();
}
bool bond_find_cntr(ble_gap_addr_t* addr, bond_keys_t* bkeys)
{
bool found = false;
File dir(BOND_DIR_CNTR, FILE_READ, InternalFS);
File file(InternalFS);
while ( (file = dir.openNextFile(FILE_READ)) )
{
// Read bond data of each stored file
int keylen = file.read();
if ( keylen == sizeof(bond_keys_t) )
{
file.read((uint8_t*) bkeys, keylen);
// Compare static address
if ( !memcmp(addr->addr, bkeys->peer_id.id_addr_info.addr, 6) )
{
found = true;
}
else if ( addr->addr_type == BLE_GAP_ADDR_TYPE_RANDOM_PRIVATE_RESOLVABLE )
{
// Resolving private address
}
}
file.close();
if ( found ) break;
}
file.close();
dir.close();
return found;
}
/*------------------------------------------------------------------*/
/* DELETE
*------------------------------------------------------------------*/
void bond_clear_prph(void)
{
// delete bonds dir
InternalFS.rmdir_r(BOND_DIR_PRPH);
// Create an empty one
InternalFS.mkdir(BOND_DIR_PRPH);
}
void bond_clear_cntr(void)
{
// delete bonds dir
InternalFS.rmdir_r(BOND_DIR_CNTR);
// Create an empty one
InternalFS.mkdir(BOND_DIR_CNTR);
}
void bond_clear_all(void)
{
// delete bonds dir
InternalFS.rmdir_r(BOND_DIR_PRPH);
InternalFS.rmdir_r(BOND_DIR_CNTR);
// Create an empty one
InternalFS.mkdir(BOND_DIR_PRPH);
InternalFS.mkdir(BOND_DIR_CNTR);
}
void bond_remove_key(uint8_t role, uint16_t ediv)
{
char filename[BOND_FNAME_LEN];
get_fname(filename, role, ediv);
InternalFS.remove(filename);
}
|