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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
|
/*
* Author: Sven Gothel <sgothel@jausoft.com>
* Copyright (c) 2020 Gothel Software e.K.
* Copyright (c) 2020 ZAFENA AB
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <cstring>
#include <string>
#include <memory>
#include <cstdint>
#include <vector>
#include <cstdio>
#include <algorithm>
// #define SHOW_LE_ADVERTISING 1
// #define PERF_PRINT_ON 1
// #define VERBOSE_ON 1
#include <dbt_debug.hpp>
#include "BTIoctl.hpp"
#include "HCIIoctl.hpp"
#include "HCIComm.hpp"
#include "HCIHandler.hpp"
#include "DBTTypes.hpp"
#include "BasicAlgos.hpp"
extern "C" {
#include <inttypes.h>
#include <unistd.h>
#include <poll.h>
#include <signal.h>
}
using namespace direct_bt;
const pid_t HCIHandler::pidSelf = getpid();
void HCIHandler::hciReaderThreadImpl() {
hciReaderShallStop = false;
hciReaderRunning = true;
INFO_PRINT("HCIHandler::reader: Started");
while( !hciReaderShallStop ) {
int len;
if( !comm.isOpen() ) {
// not open
ERR_PRINT("HCIHandler::reader: Not connected");
hciReaderShallStop = true;
break;
}
len = comm.read(rbuffer.get_wptr(), rbuffer.getSize());
if( 0 < len ) {
const uint16_t paramSize = len >= 3 ? rbuffer.get_uint8(2) : 0;
if( len < number(HCIConstU8::EVENT_HDR_SIZE) + paramSize ) {
WARN_PRINT("HCIHandler::reader: length mismatch %d < %d + %d",
len, number(HCIConstU8::EVENT_HDR_SIZE), paramSize);
continue; // discard data
}
std::shared_ptr<HCIEvent> event( HCIEvent::getSpecialized(rbuffer.get_ptr(), len) );
if( nullptr == event ) {
// not an event ...
ERR_PRINT("HCIHandler::reader: drop non-event %s", bytesHexString(rbuffer.get_ptr(), 0, len, true /* lsbFirst*/).c_str());
continue;
}
const HCIMetaEventType mec = event->getMetaEventType();
if( HCIMetaEventType::INVALID != mec && !filter_test_metaev(mec) ) {
// DROP
DBG_PRINT("HCIHandler::reader: drop %s", event->toString().c_str());
continue; // next packet
}
#ifdef SHOW_LE_ADVERTISING
if( event->isMetaEvent(HCIMetaEventType::LE_ADVERTISING_REPORT) ) {
std::vector<std::shared_ptr<EInfoReport>> eirlist = EInfoReport::read_ad_reports(event->getParam(), event->getParamSize());
int i=0;
for_each_idx(eirlist, [&](std::shared_ptr<EInfoReport> &eir) {
INFO_PRINT("LE_ADV[%d]: %s", i, eir->toString().c_str());
i++;
});
continue; // next packet
}
#endif /* SHOW_LE_ADVERTISING */
if( hciEventRing.isFull() ) {
std::shared_ptr<HCIEvent> ev = hciEventRing.get();
INFO_PRINT("HCIHandler::reader: full ring, dropping oldest %s",
( nullptr != ev ) ? ev->toString().c_str() : "nil");
}
DBG_PRINT("HCIHandler::reader: got %s", event->toString().c_str());
hciEventRing.putBlocking( event );
} else if( ETIMEDOUT != errno && !hciReaderShallStop ) { // expected exits
ERR_PRINT("HCIHandler::reader: HCIComm error");
}
}
INFO_PRINT("HCIHandler::reader: Ended. Ring has %d entries flushed", hciEventRing.getSize());
hciReaderRunning = false;
hciEventRing.clear();
}
bool HCIHandler::sendCommand(HCICommand &req) {
const std::lock_guard<std::recursive_mutex> lock(comm.mutex()); // RAII-style acquire and relinquish via destructor
TROOctets & pdu = req.getPDU();
if ( comm.write( pdu.get_ptr(), pdu.getSize() ) < 0 ) {
ERR_PRINT("HCIHandler::sendWithReply: HCIComm write error, req %s", req.toString().c_str());
return false;
}
return true;
}
std::shared_ptr<HCIEvent> HCIHandler::getNextReply(HCICommand &req, int & retryCount) {
// Ringbuffer read is thread safe
while( retryCount < HCI_READ_PACKET_MAX_RETRY ) {
std::shared_ptr<HCIEvent> ev = hciEventRing.getBlocking(replyTimeoutMS);
if( nullptr == ev ) {
errno = ETIMEDOUT;
DBG_PRINT("HCIHandler::getNextReply: nullptr result (timeout -> abort): req %s", req.toString().c_str());
return nullptr;
} else if( !ev->validate(req) ) {
// This could occur due to an earlier timeout w/ a nullptr == res (see above),
// i.e. the pending reply processed here and naturally not-matching.
retryCount++;
DBG_PRINT("HCIHandler::getNextReply: res mismatch (drop, retry %d): res %s; req %s",
retryCount, ev->toString().c_str(), req.toString().c_str());
} else {
DBG_PRINT("HCIHandler::getNextReply: res: %s, req %s", ev->toString().c_str(), req.toString().c_str());
return ev;
}
}
return nullptr;
}
std::shared_ptr<HCIEvent> HCIHandler::sendWithReply(HCICommand &req) {
if( !sendCommand(req) ) {
return nullptr;
}
int retryCount = 0;
return getNextReply(req, retryCount);
}
std::shared_ptr<HCIEvent> HCIHandler::sendWithCmdCompleteReply(HCICommand &req, HCICommandCompleteEvent **res) {
*res = nullptr;
if( !sendCommand(req) ) {
return nullptr;
}
int retryCount = 0;
while( retryCount < HCI_READ_PACKET_MAX_RETRY ) {
std::shared_ptr<HCIEvent> ev = getNextReply(req, retryCount);
if( nullptr == ev ) {
return nullptr; // timeout
} else if( !ev->isEvent(HCIEventType::CMD_COMPLETE) ) {
DBG_PRINT("HCIHandler::sendWithCmdCompleteReply: !CMD_COMPLETE (drop, retry %d): res %s; req %s",
retryCount, ev->toString().c_str(), req.toString().c_str());
continue; // next packet
} else {
*res = static_cast<HCICommandCompleteEvent*>(ev.get());
return ev;
}
}
return nullptr; // max retry
}
std::shared_ptr<HCIEvent> HCIHandler::sendWithCmdStatusReply(HCICommand &req, HCICommandStatusEvent **res) {
*res = nullptr;
if( !sendCommand(req) ) {
return nullptr;
}
int retryCount = 0;
while( retryCount < HCI_READ_PACKET_MAX_RETRY ) {
std::shared_ptr<HCIEvent> ev = getNextReply(req, retryCount);
if( nullptr == ev ) {
return nullptr; // timeout
} else if( !ev->isEvent(HCIEventType::CMD_STATUS) ) {
DBG_PRINT("HCIHandler::sendWithCmdStatusReply: !CMD_STATUS (drop, retry %d): res %s; req %s",
retryCount, ev->toString().c_str(), req.toString().c_str());
continue; // next packet
} else {
*res = static_cast<HCICommandStatusEvent*>(ev.get());
return ev;
}
}
return nullptr; // max retry
}
HCIHandler::HCIHandler(const BTMode btMode, const uint16_t dev_id, const int replyTimeoutMS)
:btMode(btMode), dev_id(dev_id), rbuffer(HCI_MAX_MTU),
comm(dev_id, HCI_CHANNEL_RAW, Defaults::HCI_READER_THREAD_POLL_TIMEOUT), replyTimeoutMS(replyTimeoutMS),
hciEventRing(HCI_EVT_RING_CAPACITY), hciReaderRunning(false), hciReaderShallStop(false)
{
INFO_PRINT("HCIHandler.ctor: pid %d", HCIHandler::pidSelf);
if( !comm.isOpen() ) {
ERR_PRINT("HCIHandler::open: Could not open hci control channel");
return;
}
std::thread hciReaderThread = std::thread(&HCIHandler::hciReaderThreadImpl, this);
hciReaderThreadId = hciReaderThread.native_handle();
// Avoid 'terminate called without an active exception'
// as l2capReaderThread may end due to I/O errors.
hciReaderThread.detach();
PERF_TS_T0();
// Mandatory socket filter (not adapter filter!)
{
hci_ufilter nf, of;
socklen_t olen;
olen = sizeof(of);
if (getsockopt(comm.dd(), SOL_HCI, HCI_FILTER, &of, &olen) < 0) {
ERR_PRINT("HCIHandler::ctor: getsockopt");
goto fail;
}
// uint16_t opcode_le16 = 0;
HCIComm::filter_clear(&nf);
HCIComm::filter_set_ptype(number(HCIPacketType::EVENT), &nf); // only EVENTs
#if 0
HCIComm::filter_all_events(&nf); // all events
#else
HCIComm::filter_set_event(number(HCIEventType::CONN_COMPLETE), &nf);
HCIComm::filter_set_event(number(HCIEventType::DISCONN_COMPLETE), &nf);
HCIComm::filter_set_event(number(HCIEventType::CMD_COMPLETE), &nf);
HCIComm::filter_set_event(number(HCIEventType::CMD_STATUS), &nf);
HCIComm::filter_set_event(number(HCIEventType::HARDWARE_ERROR), &nf);
HCIComm::filter_set_event(number(HCIEventType::LE_META), &nf);
HCIComm::filter_set_event(number(HCIEventType::DISCONN_PHY_LINK_COMPLETE), &nf);
HCIComm::filter_set_event(number(HCIEventType::DISCONN_LOGICAL_LINK_COMPLETE), &nf);
#endif
HCIComm::filter_set_opcode(0, &nf); // all opcode
if (setsockopt(comm.dd(), SOL_HCI, HCI_FILTER, &nf, sizeof(nf)) < 0) {
ERR_PRINT("HCIHandler::ctor: setsockopt");
goto fail;
}
}
// Mandatory own LE_META filter
{
filter_clear_metaevs();
// filter_all_metaevs();
filter_set_metaev(HCIMetaEventType::LE_CONN_COMPLETE);
#ifdef SHOW_LE_ADVERTISING
filter_set_metaev(HCIMetaEventType::LE_ADVERTISING_REPORT);
#endif
}
{
HCICommand req0(HCIOpcode::READ_LOCAL_VERSION, 0);
const hci_rp_read_local_version * ev_lv;
HCIErrorCode status;
std::shared_ptr<HCIEvent> ev = processCmdCompleteCommand<hci_rp_read_local_version>(
HCIOpcode::READ_LOCAL_VERSION, &ev_lv, &status);
if( nullptr == ev || nullptr == ev_lv ) {
ERR_PRINT("HCIHandler::ctor: failed READ_LOCAL_VERSION: 0x%x (%s)", number(status), getHCIErrorCodeString(status).c_str());
goto fail;
}
INFO_PRINT("HCIHandler::ctor: LOCAL_VERSION: %d.%d, manuf 0x%x, lmp %d.%d",
ev_lv->hci_ver, le_to_cpu(ev_lv->hci_rev), le_to_cpu(ev_lv->manufacturer),
ev_lv->lmp_ver, le_to_cpu(ev_lv->lmp_subver));
}
PERF_TS_TD("HCIHandler::open.ok");
return;
fail:
close();
PERF_TS_TD("HCIHandler::open.fail");
return;
}
void HCIHandler::close() {
const std::lock_guard<std::recursive_mutex> lock(mtx); // RAII-style acquire and relinquish via destructor
DBG_PRINT("HCIHandler::close: Start");
const pthread_t tid_self = pthread_self();
const pthread_t tid_reader = hciReaderThreadId;
hciReaderThreadId = 0;
const bool is_reader = tid_reader == tid_self;
DBG_PRINT("HCIHandler.disconnect: Start hciReader[running %d, shallStop %d, isReader %d, tid %p)",
hciReaderRunning.load(), hciReaderShallStop.load(), is_reader, (void*)tid_reader);
if( hciReaderRunning ) {
hciReaderShallStop = true;
if( !is_reader && 0 != tid_reader ) {
int kerr;
if( 0 != ( kerr = pthread_kill(tid_reader, SIGALRM) ) ) {
ERR_PRINT("HCIHandler::disconnect: pthread_kill %p FAILED: %d", (void*)tid_reader, kerr);
}
}
}
comm.close();
DBG_PRINT("HCIHandler::close: End");
}
HCIErrorCode HCIHandler::reset() {
const std::lock_guard<std::recursive_mutex> lock(mtx); // RAII-style acquire and relinquish via destructor
if( !comm.isOpen() ) {
ERR_PRINT("HCIHandler::reset: device not open");
return HCIErrorCode::INTERNAL_FAILURE;
}
HCICommand req0(HCIOpcode::RESET, 0);
HCICommandCompleteEvent * ev_cc;
std::shared_ptr<HCIEvent> ev = sendWithCmdCompleteReply(req0, &ev_cc);
if( nullptr == ev || nullptr == ev_cc ) {
return HCIErrorCode::INTERNAL_FAILURE;
}
return ev_cc->getReturnStatus(0);
}
HCIErrorCode HCIHandler::le_create_conn(uint16_t * handle_return, const EUI48 &peer_bdaddr,
const HCIAddressType peer_mac_type,
const HCIAddressType own_mac_type,
const uint16_t le_scan_interval, const uint16_t le_scan_window,
const uint16_t conn_interval_min, const uint16_t conn_interval_max,
const uint16_t conn_latency, const uint16_t supervision_timeout) {
const std::lock_guard<std::recursive_mutex> lock(mtx); // RAII-style acquire and relinquish via destructor
if( nullptr != handle_return ) {
*handle_return = 0;
}
if( !comm.isOpen() ) {
ERR_PRINT("HCIHandler::le_create_conn: device not open");
return HCIErrorCode::INTERNAL_FAILURE;
}
hci_cp_le_create_conn cp;
const uint16_t min_ce_length = 0x0000;
const uint16_t max_ce_length = 0x0000;
const uint8_t initiator_filter = 0x00; // whitelist not used but peer_bdaddr*
bzero((void*)&cp, sizeof(cp));
cp.scan_interval = cpu_to_le(le_scan_interval);
cp.scan_window = cpu_to_le(le_scan_window);
cp.filter_policy = initiator_filter;
cp.peer_addr_type = peer_mac_type;
cp.peer_addr = peer_bdaddr;
cp.own_address_type = own_mac_type;
cp.conn_interval_min = cpu_to_le(conn_interval_min);
cp.conn_interval_max = cpu_to_le(conn_interval_max);
cp.conn_latency = cpu_to_le(conn_latency);
cp.supervision_timeout = cpu_to_le(supervision_timeout);
cp.min_ce_len = cpu_to_le(min_ce_length);
cp.max_ce_len = cpu_to_le(max_ce_length);
const hci_ev_le_conn_complete * ev_cc;
HCIErrorCode status;
std::shared_ptr<HCIEvent> ev = processStructCommand<hci_cp_le_create_conn, hci_ev_le_conn_complete>(
HCIOpcode::LE_CREATE_CONN, cp, HCIMetaEventType::LE_CONN_COMPLETE, &ev_cc, &status);
if( HCIErrorCode::SUCCESS != status ) {
return status;
}
if( nullptr != handle_return ) {
*handle_return = ev_cc->handle;
}
return HCIErrorCode::SUCCESS;
}
HCIErrorCode HCIHandler::create_conn(uint16_t * handle_return, const EUI48 &bdaddr,
const uint16_t pkt_type,
const uint16_t clock_offset, const uint8_t role_switch) {
const std::lock_guard<std::recursive_mutex> lock(mtx); // RAII-style acquire and relinquish via destructor
if( nullptr != handle_return ) {
*handle_return = 0;
}
if( !comm.isOpen() ) {
ERR_PRINT("HCIHandler::create_conn: device not open");
return HCIErrorCode::INTERNAL_FAILURE;
}
hci_cp_create_conn cp;
bzero((void*)&cp, sizeof(cp));
cp.bdaddr = bdaddr;
cp.pkt_type = cpu_to_le((uint16_t)(pkt_type & (uint16_t)ACL_PTYPE_MASK)); /* TODO OK excluding SCO_PTYPE_MASK (HCI_HV1 | HCI_HV2 | HCI_HV3) ? */
cp.pscan_rep_mode = 0x02; /* TODO magic? */
cp.pscan_mode = 0x00; /* TODO magic? */
cp.clock_offset = cpu_to_le(clock_offset);
cp.role_switch = role_switch;
const hci_ev_conn_complete * ev_cc;
HCIErrorCode status;
std::shared_ptr<HCIEvent> ev = processStructCommand<hci_cp_create_conn, hci_ev_conn_complete>(
HCIOpcode::CREATE_CONN, cp, HCIEventType::CONN_COMPLETE, &ev_cc, &status);
if( HCIErrorCode::SUCCESS != status ) {
return status;
}
if( nullptr != handle_return ) {
*handle_return = ev_cc->handle;
}
return HCIErrorCode::SUCCESS;
}
HCIErrorCode HCIHandler::disconnect(const uint16_t conn_handle, const HCIErrorCode reason) {
const std::lock_guard<std::recursive_mutex> lock(mtx); // RAII-style acquire and relinquish via destructor
if( !comm.isOpen() ) {
ERR_PRINT("HCIHandler::create_conn: device not open");
return HCIErrorCode::INTERNAL_FAILURE;
}
if( 0 == conn_handle ) {
return HCIErrorCode::SUCCESS;
}
hci_cp_disconnect cp;
bzero(&cp, sizeof(cp));
cp.handle = conn_handle;
cp.reason = number(reason);
const hci_ev_disconn_complete * ev_cc;
HCIErrorCode status;
std::shared_ptr<HCIEvent> ev = processStructCommand<hci_cp_disconnect, hci_ev_disconn_complete>(
HCIOpcode::DISCONNECT, cp, HCIEventType::DISCONN_COMPLETE, &ev_cc, &status);
return status;
}
template<typename hci_cmd_event_struct>
std::shared_ptr<HCIEvent> HCIHandler::processCmdCompleteCommand(HCIOpcode opc, const hci_cmd_event_struct **res, HCIErrorCode *status)
{
*res = nullptr;
*status = HCIErrorCode::INTERNAL_FAILURE;
const HCIEventType evc = HCIEventType::CMD_COMPLETE;
HCICommand req0(opc, 0);
HCICommandCompleteEvent * ev_cc;
std::shared_ptr<HCIEvent> ev = sendWithCmdCompleteReply(req0, &ev_cc);
if( nullptr == ev ) {
WARN_PRINT("HCIHandler::processStructCommand %s -> %s: Status 0x%2.2X (%s), errno %d %s: res nullptr, req %s",
getHCIOpcodeString(opc).c_str(), getHCIEventTypeString(evc).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(), errno, strerror(errno),
req0.toString().c_str());
return nullptr; // timeout
} else if( nullptr == ev_cc ) {
WARN_PRINT("HCIHandler::processStructCommand %s -> %s: Status 0x%2.2X (%s), errno %d %s: res %s, req %s",
getHCIOpcodeString(opc).c_str(), getHCIEventTypeString(evc).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(), errno, strerror(errno),
ev->toString().c_str(), req0.toString().c_str());
return ev;
}
const uint8_t returnParamSize = ev_cc->getReturnParamSize();
if( returnParamSize < sizeof(hci_cmd_event_struct) ) {
WARN_PRINT("HCIHandler::processStructCommand %s -> %s: Status 0x%2.2X (%s), errno %d %s: res %s, req %s",
getHCIOpcodeString(opc).c_str(), getHCIEventTypeString(evc).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(), errno, strerror(errno),
ev_cc->toString().c_str(), req0.toString().c_str());
return ev;
}
*res = (const hci_cmd_event_struct*)(ev_cc->getReturnParam());
*status = static_cast<HCIErrorCode>((*res)->status);
DBG_PRINT("HCIHandler::processStructCommand %s -> %s: Status 0x%2.2X (%s): res %s, req %s",
getHCIOpcodeString(opc).c_str(), getHCIEventTypeString(evc).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(),
ev_cc->toString().c_str(), req0.toString().c_str());
return ev;
}
template<typename hci_command_struct, typename hci_cmd_event_struct>
std::shared_ptr<HCIEvent> HCIHandler::processStructCommand(HCIOpcode opc, hci_command_struct &cp,
HCIEventType evc, const hci_cmd_event_struct **res, HCIErrorCode *status)
{
*res = nullptr;
*status = HCIErrorCode::INTERNAL_FAILURE;
HCIStructCommand<hci_command_struct> req0(opc, cp);
if( !sendCommand(req0) ) {
return nullptr;
}
int retryCount = 0;
std::shared_ptr<HCIEvent> ev = nullptr;
while( retryCount < HCI_READ_PACKET_MAX_RETRY ) {
ev = getNextReply(req0, retryCount);
if( nullptr == ev ) {
break; // timeout, leave loop
} else if( ev->isEvent(evc) ) {
break; // gotcha, leave loop
} else if( ev->isEvent(HCIEventType::CMD_STATUS) ) {
// pending command .. wait for result
HCICommandStatusEvent * ev_cs = static_cast<HCICommandStatusEvent*>(ev.get());
if( HCIErrorCode::SUCCESS != ev_cs->getStatus() ) {
*status = ev_cs->getStatus();
WARN_PRINT("HCIHandler::processStructCommand %s -> %s: Status 0x%2.2X (%s), errno %d %s: res %s, req %s",
getHCIOpcodeString(opc).c_str(), getHCIEventTypeString(evc).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(), errno, strerror(errno),
ev_cs->toString().c_str(), req0.toString().c_str());
return ev;
}
continue; // next packet
} else {
continue; // next packet
}
}
if( nullptr == ev ) {
// timeout exit
WARN_PRINT("HCIHandler::processStructCommand %s -> %s: Status 0x%2.2X (%s), errno %d %s: res nullptr, req %s",
getHCIOpcodeString(opc).c_str(), getHCIEventTypeString(evc).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(), errno, strerror(errno),
req0.toString().c_str());
return nullptr;
}
typedef HCIStructCmdCompleteEvt<hci_cmd_event_struct> HCIConnCompleteEvt;
HCIConnCompleteEvt * ev_cc = static_cast<HCIConnCompleteEvt*>(ev.get());
if( ev_cc->isTypeAndSizeValid(evc) ) {
*status = ev_cc->getStatus();
*res = ev_cc->getStruct();
DBG_PRINT("HCIHandler::processStructCommand %s -> %s: Status 0x%2.2X (%s): res %s, req %s",
getHCIOpcodeString(opc).c_str(), getHCIEventTypeString(evc).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(),
ev_cc->toString().c_str(), req0.toString().c_str());
} else {
WARN_PRINT("HCIHandler::processStructCommand %s -> %s: Status 0x%2.2X (%s), errno %d %s: res %s, req %s",
getHCIOpcodeString(opc).c_str(), getHCIEventTypeString(evc).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(), errno, strerror(errno),
ev_cc->toString().c_str(), req0.toString().c_str());
}
return ev;
}
template<typename hci_command_struct, typename hci_cmd_event_struct>
std::shared_ptr<HCIEvent> HCIHandler::processStructCommand(HCIOpcode opc, hci_command_struct &cp,
HCIMetaEventType mec, const hci_cmd_event_struct **res, HCIErrorCode *status)
{
*res = nullptr;
*status = HCIErrorCode::INTERNAL_FAILURE;
HCIStructCommand<hci_command_struct> req0(opc, cp);
if( !sendCommand(req0) ) {
return nullptr;
}
int retryCount = 0;
std::shared_ptr<HCIEvent> ev = nullptr;
while( retryCount < HCI_READ_PACKET_MAX_RETRY ) {
ev = getNextReply(req0, retryCount);
if( nullptr == ev ) {
break; // timeout, leave loop
} else if( ev->isMetaEvent(mec) ) {
break; // gotcha, leave loop
} else if( ev->isEvent(HCIEventType::CMD_STATUS) ) {
// pending command .. wait for result
HCICommandStatusEvent * ev_cs = static_cast<HCICommandStatusEvent*>(ev.get());
if( HCIErrorCode::SUCCESS != ev_cs->getStatus() ) {
*status = ev_cs->getStatus();
WARN_PRINT("HCIHandler::processStructCommand %s -> %s: Status 0x%2.2X (%s), errno %d %s: res %s, req %s",
getHCIOpcodeString(opc).c_str(), getHCIMetaEventTypeString(mec).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(), errno, strerror(errno),
ev_cs->toString().c_str(), req0.toString().c_str());
return ev;
}
continue; // next packet
} else {
continue; // next packet
}
}
if( nullptr == ev ) {
// timeout exit
WARN_PRINT("HCIHandler::processStructCommand %s -> %s: Status 0x%2.2X (%s), errno %d %s: res nullptr, req %s",
getHCIOpcodeString(opc).c_str(), getHCIMetaEventTypeString(mec).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(), errno, strerror(errno),
req0.toString().c_str());
return nullptr;
}
typedef HCIStructCmdCompleteMetaEvt<hci_cmd_event_struct> HCIConnCompleteMetaEvt;
HCIConnCompleteMetaEvt * ev_cc = static_cast<HCIConnCompleteMetaEvt*>(ev.get());
if( ev_cc->isTypeAndSizeValid(mec) ) {
*status = ev_cc->getStatus();
*res = ev_cc->getStruct();
WARN_PRINT("HCIHandler::processStructCommand %s -> %s: Status 0x%2.2X (%s): res %s, req %s",
getHCIOpcodeString(opc).c_str(), getHCIMetaEventTypeString(mec).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(),
ev_cc->toString().c_str(), req0.toString().c_str());
} else {
WARN_PRINT("HCIHandler::processStructCommand %s -> %s: Type or size mismatch: Status 0x%2.2X (%s), errno %d %s: res %s, req %s",
getHCIOpcodeString(opc).c_str(), getHCIMetaEventTypeString(mec).c_str(),
number(*status), getHCIErrorCodeString(*status).c_str(), errno, strerror(errno),
ev_cc->toString().c_str(), req0.toString().c_str());
}
return ev;
}
|