aboutsummaryrefslogtreecommitdiff
path: root/src/HciAdapter.cpp
blob: eb1990f2783b42956cc1702e5b92f4f8f5e41c83 (plain)
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
// Copyright 2017 Paul Nettle. 
// 
// This file is part of Gobbledegook. 
// 
// Gobbledegook is free software: you can redistribute it and/or modify 
// it under the terms of the GNU General Public License as published by 
// the Free Software Foundation, either version 3 of the License, or 
// (at your option) any later version. 
// 
// Gobbledegook is distributed in the hope that it will be useful, 
// but WITHOUT ANY WARRANTY; without even the implied warranty of 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
// GNU General Public License for more details. 
// 
// You should have received a copy of the GNU General Public License 
// along with Gobbledegook.  If not, see <http://www.gnu.org/licenses/>. 
 
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
// 
// >> 
// >>>  INSIDE THIS FILE 
// >> 
// 
// Protocol-level code for the Bluetooth Management API, which is used to configure the Bluetooth adapter 
// 
// >> 
// >>>  DISCUSSION 
// >> 
// 
// This class is intended for use by `Mgmt` (see Mgmt.cpp). 
// 
// The Bluetooth Management API, is used to configure the Bluetooth adapter (such as enabling LE, setting the device name, etc.) 
// This class uses HciSocket (HciSocket.h) for the raw communications. 
// 
// The information for this implementation (as well as HciSocket.h) came from: 
// 
//     https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/mgmt-api.txt 
// 
// KNOWN LIMITATIONS: 
// 
// This is far from a complete implementation. I'm not even sure how reliable of an implementation this is. However, I can say with 
// _complete_confidence_ that it works on my machine after numerous minutes of testing. 
// 
// One notable limitation is that this code doesn't work with the Bluetooth Management API in the way it was intended. The Bluetooth 
// Management API treats the sending and receiving of data differently. It receives commands on the HCI socket and acts upon them. 
// It also sends events on the same socket. It is important to note that there is not necessarily a 1:1 correlation from commands 
// received to events generated. For example, an event can be generated when a bluetooth client disconnects, even though no command 
// was sent for which that event is associated. 
// 
// However, for initialization, it seems to be generally safe to treat them as "nearly 1:1". The solution below is to consume all 
// events and look for the event that we're waiting on. This seems to work in my environment (Raspberry Pi) fairly well, but please 
// do use this with caution. 
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
 
#include <string.h>
#include <chrono>
#include <future>
 
#include "HciAdapter.h"
#include "HciSocket.h"
#include "Utils.h"
#include "Mgmt.h"
#include "Logger.h"
 
namespace ggk {
 
// Our event thread listens for events coming from the adapter and deals with them appropriately 
std::thread HciAdapter::eventThread;
 
const char * const HciAdapter::kCommandCodeNames[kMaxCommandCode + 1] =
{
"Invalid Command",                                   // 0x0000 
"Read Version Information Command",                  // 0x0001 
"Read Supported Commands Command",                   // 0x0002 
"Read Controller Index List Command",                // 0x0003 
"Read Controller Information Command",               // 0x0004 
"Set Powered Command",                               // 0x0005 
"Set Discoverable Command",                          // 0x0006 
"Set Connectable Command",                           // 0x0007 
"Set Fast Connectable Command",                      // 0x0008 
"Set Bondable Command",                              // 0x0009 
"Set Link Security Command",                         // 0x000A 
"Set Secure Simple Pairing Command",                 // 0x000B 
"Set High Speed Command",                            // 0x000C 
"Set Low Energy Command",                            // 0x000D 
"Set Device Class",                                  // 0x000E 
"Set Local Name Command",                            // 0x000F 
"Add UUID Command",                                  // 0x0010 
"Remove UUID Command",                               // 0x0011 
"Load Link Keys Command",                            // 0x0012 
"Load Long Term Keys Command",                       // 0x0013 
"Disconnect Command",                                // 0x0014 
"Get Connections Command",                           // 0x0015 
"PIN Code Reply Command",                            // 0x0016 
"PIN Code Negative Reply Command",                   // 0x0017 
"Set IO Capability Command",                         // 0x0018 
"Pair Device Command",                               // 0x0019 
"Cancel Pair Device Command",                        // 0x001A 
"Unpair Device Command",                             // 0x001B 
"User Confirmation Reply Command",                   // 0x001C 
"User Confirmation Negative Reply Command",          // 0x001D 
"User Passkey Reply Command",                        // 0x001E 
"User Passkey Negative Reply Command",               // 0x001F 
"Read Local Out Of Band Data Command",               // 0x0020 
"Add Remote Out Of Band Data Command",               // 0x0021 
"Remove Remote Out Of Band Data Command",            // 0x0022 
"Start Discovery Command",                           // 0x0023 
"Stop Discovery Command",                            // 0x0024 
"Confirm Name Command",                              // 0x0025 
"Block Device Command",                              // 0x0026 
"Unblock Device Command",                            // 0x0027 
"Set Device ID Command",                             // 0x0028 
"Set Advertising Command",                           // 0x0029 
"Set BR/EDR Command",                                // 0x002A 
"Set Static Address Command",                        // 0x002B 
"Set Scan Parameters Command",                       // 0x002C 
"Set Secure Connections Command",                    // 0x002D 
"Set Debug Keys Command",                            // 0x002E 
"Set Privacy Command",                               // 0x002F 
"Load Identity Resolving Keys Command",              // 0x0030 
"Get Connection Information Command",                // 0x0031 
"Get Clock Information Command",                     // 0x0032 
"Add Device Command",                                // 0x0033 
"Remove Device Command",                             // 0x0034 
"Load Connection Parameters Command",                // 0x0035 
"Read Unconfigured Controller Index List Command",   // 0x0036 
"Read Controller Configuration Information Command"// 0x0037 
"Set External Configuration Command",                // 0x0038 
"Set Public Address Command",                        // 0x0039 
"Start Service Discovery Command",                   // 0x003a 
"Read Local Out Of Band Extended Data Command",      // 0x003b 
"Read Extended Controller Index List Command",       // 0x003c 
"Read Advertising Features Command",                 // 0x003d 
"Add Advertising Command",                           // 0x003e 
"Remove Advertising Command",                        // 0x003f 
"Get Advertising Size Information Command",          // 0x0040 
"Start Limited Discovery Command",                   // 0x0041 
"Read Extended Controller Information Command",      // 0x0042 
// NOTE: The documentation at https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/mgmt-api.txt) states that the command 
// code for "Set Appearance Command" is 0x0042. It also says this about the previous command in the list ("Read Extended 
// Controller Information Command".) This is likely an error, so I'm following the order of the commands as they appear in the 
// documentation. This makes "Set Appearance Code" have a command code of 0x0043. 
"Set Appearance Command"                             // 0x0043 
};
 
const char * const HciAdapter::kEventTypeNames[kMaxEventType + 1] =
{
"Invalid Event",                                     // 0x0000 
"Command Complete Event",                            // 0x0001 
"Command Status Event",                              // 0x0002 
"Controller Error Event",                            // 0x0003 
"Index Added Event",                                 // 0x0004 
"Index Removed Event",                               // 0x0005 
"New Settings Event",                                // 0x0006 
"Class Of Device Changed Event",                     // 0x0007 
"Local Name Changed Event",                          // 0x0008 
"New Link Key Event",                                // 0x0009 
"New Long Term Key Event",                           // 0x000A 
"Device Connected Event",                            // 0x000B 
"Device Disconnected Event",                         // 0x000C 
"Connect Failed Event",                              // 0x000D 
"PIN Code Request Event",                            // 0x000E 
"User Confirmation Request Event",                   // 0x000F 
"User Passkey Request Event",                        // 0x0010 
"Authentication Failed Event",                       // 0x0011 
"Device Found Event",                                // 0x0012 
"Discovering Event",                                 // 0x0013 
"Device Blocked Event",                              // 0x0014 
"Device Unblocked Event",                            // 0x0015 
"Device Unpaired Event",                             // 0x0016 
"Passkey Notify Event",                              // 0x0017 
"New Identity Resolving Key Event",                  // 0x0018 
"New Signature Resolving Key Event",                 // 0x0019 
"Device Added Event",                                // 0x001a 
"Device Removed Event",                              // 0x001b 
"New Connection Parameter Event",                    // 0x001c 
"Unconfigured Index Added Event",                    // 0x001d 
"Unconfigured Index Removed Event",                  // 0x001e 
"New Configuration Options Event",                   // 0x001f 
"Extended Index Added Event",                        // 0x0020 
"Extended Index Removed Event",                      // 0x0021 
"Local Out Of Band Extended Data Updated Event",     // 0x0022 
"Advertising Added Event",                           // 0x0023 
"Advertising Removed Event",                         // 0x0024 
"Extended Controller Information Changed Event"      // 0x0025 
};
 
const char * const HciAdapter::kStatusCodes[kMaxStatusCode + 1] =
{
"Success",                                           // 0x00 
"Unknown Command",                                   // 0x01 
"Not Connected",                                     // 0x02 
"Failed",                                            // 0x03 
"Connect Failed",                                    // 0x04 
"Authentication Failed",                             // 0x05 
"Not Paired",                                        // 0x06 
"No Resources",                                      // 0x07 
"Timeout",                                           // 0x08 
"Already Connected",                                 // 0x09 
"Busy",                                              // 0x0A 
"Rejected",                                          // 0x0B 
"Not Supported",                                     // 0x0C 
"Invalid Parameters",                                // 0x0D 
"Disconnected",                                      // 0x0E 
"Not Powered",                                       // 0x0F 
"Cancelled",                                         // 0x10 
"Invalid Index",                                     // 0x11 
"RFKilled",                                          // 0x12 
"Already Paired",                                    // 0x13 
"Permission Denied",                                 // 0x14 
};
 
// Our thread interface, which simply launches our the thread processor on our HciAdapter instance 
void runEventThread()
{
HciAdapter::getInstance().runEventThread();
}
 
// Event processor, responsible for receiving events from the HCI socket 
// 
// This mehtod should not be called directly. Rather, it runs continuously on a thread until the server shuts down 
// 
// It isn't necessary to disconnect manually; the HCI socket will get disocnnected automatically at before this method returns 
void HciAdapter::runEventThread()
{
Logger::trace("Entering the HciAdapter event thread");
 
while (ggkGetServerRunState() <= ERunning && hciSocket.isConnected())
{
// Read the next event, waiting until one arrives 
std::vector<uint8_t> responsePacket = std::vector<uint8_t>();
if (!hciSocket.read(responsePacket))
{
break;
}
 
// Do we have enough to check the event code? 
if (responsePacket.size() < 2)
{
Logger::error(SSTR << "Invalid command response: too short");
continue;
}
 
// Our response, as a usable object type 
uint16_t eventCode = Utils::endianToHost(*reinterpret_cast<uint16_t *>(responsePacket.data()));
 
// Ensure our event code is valid 
if (eventCode < HciAdapter::kMinEventType || eventCode > HciAdapter::kMaxEventType)
{
Logger::error(SSTR << "Invalid command response: event code (" << eventCode << ") out of range");
continue;
}
 
switch(eventCode)
{
// Command complete event 
case Mgmt::ECommandCompleteEvent:
{
// Extract our event 
CommandCompleteEvent event(responsePacket);
 
// Point to the data following the event 
uint8_t *data = responsePacket.data() + sizeof(CommandCompleteEvent);
size_t dataLen = responsePacket.size() - sizeof(CommandCompleteEvent);
 
switch(event.commandCode)
{
// We just log the version/revision info 
case Mgmt::EReadVersionInformationCommand:
{
// Verify the size is what we expect 
if (dataLen != sizeof(VersionInformation))
{
Logger::error("Invalid data length");
return;
}
 
versionInformation = *reinterpret_cast<VersionInformation *>(data);
versionInformation.toHost();
Logger::debug(versionInformation.debugText());
break;
}
case Mgmt::EReadControllerInformationCommand:
{
if (dataLen != sizeof(ControllerInformation))
{
Logger::error("Invalid data length");
return;
}
 
controllerInformation = *reinterpret_cast<ControllerInformation *>(data);
controllerInformation.toHost();
Logger::debug(controllerInformation.debugText());
break;
}
case Mgmt::ESetLocalNameCommand:
{
if (dataLen != sizeof(LocalName))
{
Logger::error("Invalid data length");
return;
}
 
localName = *reinterpret_cast<LocalName *>(data);
Logger::info(localName.debugText());
break;
}
case Mgmt::ESetPoweredCommand:
case Mgmt::ESetBREDRCommand:
case Mgmt::ESetSecureConnectionsCommand:
case Mgmt::ESetBondableCommand:
case Mgmt::ESetConnectableCommand:
case Mgmt::ESetLowEnergyCommand:
case Mgmt::ESetAdvertisingCommand:
{
if (dataLen != sizeof(AdapterSettings))
{
Logger::error("Invalid data length");
return;
}
 
adapterSettings = *reinterpret_cast<AdapterSettings *>(data);
adapterSettings.toHost();
 
Logger::debug(adapterSettings.debugText());
break;
}
}
 
// Notify anybody waiting that we received a response to their command code 
setCommandResponse(event.commandCode);
 
break;
}
// Command status event 
case Mgmt::ECommandStatusEvent:
{
CommandStatusEvent event(responsePacket);
 
// Notify anybody waiting that we received a response to their command code 
setCommandResponse(event.commandCode);
break;
}
// Command status event 
case Mgmt::EDeviceConnectedEvent:
{
DeviceConnectedEvent event(responsePacket);
activeConnections += 1;
Logger::debug(SSTR << "  > Connection count incremented to " << activeConnections);
break;
}
// Command status event 
case Mgmt::EDeviceDisconnectedEvent:
{
DeviceDisconnectedEvent event(responsePacket);
if (activeConnections > 0)
{
activeConnections -= 1;
Logger::debug(SSTR << "  > Connection count decremented to " << activeConnections);
}
else
{
Logger::debug(SSTR << "  > Connection count already at zero, ignoring non-connected disconnect event");
}
break;
}
// Unsupported 
default:
{
if (eventCode >= kMinEventType && eventCode <= kMaxEventType)
{
Logger::error("Unsupported response event type: " + Utils::hex(eventCode) + " (" + kEventTypeNames[eventCode] + ")");
}
else
{
Logger::error("Invalid event type response: " + Utils::hex(eventCode));
}
}
}
}
 
// Make sure we're disconnected before we leave 
hciSocket.disconnect();
 
Logger::trace("Leaving the HciAdapter event thread");
}
 
// Reads current values from the controller 
// 
// This effectively requests data from the controller but that data may not be available instantly, but within a few 
// milliseconds. Therefore, it is not recommended attempt to retrieve the results from their accessors immediately. 
void HciAdapter::sync(uint16_t controllerIndex)
{
Logger::debug("Synchronizing version information");
 
HciAdapter::HciHeader request;
request.code = Mgmt::EReadVersionInformationCommand;
request.controllerId = HciAdapter::kNonController;
request.dataSize = 0;
 
if (!HciAdapter::getInstance().sendCommand(request))
{
Logger::error("Failed to get version information");
}
 
Logger::debug("Synchronizing controller information");
 
request.code = Mgmt::EReadControllerInformationCommand;
request.controllerId = controllerIndex;
request.dataSize = 0;
 
if (!HciAdapter::getInstance().sendCommand(request))
{
Logger::error("Failed to get current settings");
}
}
 
// Connects the HCI socket if a connection does not already exist and starts the run thread 
// 
// If the thread is already running, this method will fail 
// 
// Note that it shouldn't be necessary to connect manually; any action requiring a connection will automatically connect 
// 
// Returns true if the HCI socket is connected (either via a new connection or an existing one), otherwise false 
bool HciAdapter::start()
{
// If the thread is already running, return failure 
if (eventThread.joinable())
{
return false;
}
 
// Already connected? 
if (!hciSocket.isConnected())
{
// Connect 
if (!hciSocket.connect())
{
return false;
}
}
 
// Create a thread to read the data from the socket 
try
{
eventThread = std::thread(ggk::runEventThread);
}
catch(std::system_error &ex)
{
Logger::error(SSTR << "HciAdapter thread was unable to start (code " << ex.code() << "): " << ex.what());
return false;
}
 
return true;
}
 
// Waits for the HciAdapter run thread to join 
// 
// This method will block until the thread joins 
void HciAdapter::stop()
{
Logger::trace("HciAdapter waiting for thread termination");
 
try
{
if (eventThread.joinable())
{
eventThread.join();
 
Logger::trace("Event thread has stopped");
}
else
{
Logger::trace(" > Event thread is not joinable");
}
}
catch(std::system_error &ex)
{
if (ex.code() == std::errc::invalid_argument)
{
Logger::warn(SSTR << "HciAdapter event thread was not joinable during HciAdapter::wait(): " << ex.what());
}
else if (ex.code() == std::errc::no_such_process)
{
Logger::warn(SSTR << "HciAdapter event was not valid during HciAdapter::wait(): " << ex.what());
}
else if (ex.code() == std::errc::resource_deadlock_would_occur)
{
Logger::warn(SSTR << "Deadlock avoided in call to HciAdapter::wait() (did the event thread try to stop itself?): " << ex.what());
}
else
{
Logger::warn(SSTR << "Unknown system_error code (" << ex.code() << ") during HciAdapter::wait(): " << ex.what());
}
}
}
 
// Sends a command over the HCI socket 
// 
// If the HCI socket is not connected, it will auto-connect prior to sending the command. In the case of a failed auto-connect, 
// a failure is returned. 
// 
// Returns true on success, otherwise false 
bool HciAdapter::sendCommand(HciHeader &request)
{
// Auto-connect 
if (!eventThread.joinable() && !start())
{
Logger::error("HciAdapter failed to start");
return false;
}
 
conditionalValue = -1;
std::future<bool> fut = std::async(std::launch::async,
[&]() mutable
{
return waitForCommandResponse(request.codekMaxEventWaitTimeMS);
});
 
// Prepare the request to be sent (endianness correction) 
request.toNetwork();
uint8_t *pRequest = reinterpret_cast<uint8_t *>(&request);
 
std::vector<uint8_t> requestPacket = std::vector<uint8_t>(pRequest, pRequest + sizeof(request) + request.dataSize);
if (!hciSocket.write(requestPacket))
{
return false;
}
 
return fut.get();
}
 
// Uses a std::condition_variable to wait for a response event for the given `commandCode` or `timeoutMS` milliseconds. 
// 
// Returns true if the response event was received for `commandCode` or false if the timeout expired. 
// 
// Command responses are set via `setCommandResponse()` 
bool HciAdapter::waitForCommandResponse(uint16_t commandCode, int timeoutMS)
{
Logger::debug(SSTR << "  + Waiting on command code " << commandCode << " for up to " << timeoutMS << "ms");
 
bool success = cvCommandResponse.wait_for(commandResponseLock, std::chrono::milliseconds(timeoutMS),
[&]
{
return conditionalValue == commandCode;
}
);
 
if (!success)
{
Logger::warn(SSTR << "  + Timed out waiting on command code " << Utils::hex(commandCode) << " (" << kCommandCodeNames[commandCode] << ")");
}
else
{
Logger::debug(SSTR << "  + Recieved the command code we were waiting for: " << Utils::hex(commandCode) << " (" << kCommandCodeNames[commandCode] << ")");
}
 
return success;
}
 
// Sets the command response and notifies the waiting std::condition_variable (see `waitForCommandResponse`) 
void HciAdapter::setCommandResponse(uint16_t commandCode)
{
std::lock_guard<std::mutex> lk(commandResponseMutex);
conditionalValue = commandCode;
cvCommandResponse.notify_one();
}
 
}// namespace ggk