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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
|
/*
* 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>
extern "C" {
#include <unistd.h>
#include <sys/socket.h>
#include <poll.h>
#include <signal.h>
}
// #define PERF_PRINT_ON 1
// #define PERF2_PRINT_ON 1
// #define VERBOSE_ON 1
#include <dbt_debug.hpp>
// PERF2_PRINT_ON for read/write single values
#ifdef PERF2_PRINT_ON
#define PERF2_TS_T0() PERF_TS_T0()
#define PERF2_TS_TD(m) PERF_TS_TD(m)
#else
#define PERF2_TS_T0()
#define PERF2_TS_TD(m)
#endif
#include "BasicAlgos.hpp"
#include "L2CAPIoctl.hpp"
#include "GATTNumbers.hpp"
#include "GATTHandler.hpp"
#include "HCIComm.hpp"
#include "DBTTypes.hpp"
#include "DBTDevice.hpp"
using namespace direct_bt;
#define CASE_TO_STRING(V) case V: return #V;
bool GATTHandler::validateConnected() {
bool l2capIsConnected = l2cap.getIsConnected();
bool l2capHasIOError = l2cap.getHasIOError();
if( hasIOError || l2capHasIOError ) {
ERR_PRINT("IOError state: GattHandler %s, l2cap %s: %s",
getStateString().c_str(), l2cap.getStateString().c_str(), deviceString.c_str());
return false;
}
if( !isConnected || !l2capIsConnected ) {
ERR_PRINT("Disconnected state: GattHandler %s, l2cap %s: %s",
getStateString().c_str(), l2cap.getStateString().c_str(), deviceString.c_str());
return false;
}
return true;
}
bool GATTHandler::addCharacteristicListener(std::shared_ptr<GATTCharacteristicListener> l) {
if( nullptr == l ) {
throw IllegalArgumentException("GATTEventListener ref is null", E_FILE_LINE);
}
const std::lock_guard<std::recursive_mutex> lock(mtx_eventListenerList); // RAII-style acquire and relinquish via destructor
for(auto it = eventListenerList.begin(); it != eventListenerList.end(); ) {
if ( **it == *l ) {
return false; // already included
} else {
++it;
}
}
eventListenerList.push_back(l);
return true;
}
bool GATTHandler::removeCharacteristicListener(std::shared_ptr<GATTCharacteristicListener> l) {
if( nullptr == l ) {
throw IllegalArgumentException("GATTEventListener ref is null", E_FILE_LINE);
}
const std::lock_guard<std::recursive_mutex> lock(mtx_eventListenerList); // RAII-style acquire and relinquish via destructor
for(auto it = eventListenerList.begin(); it != eventListenerList.end(); ) {
if ( **it == *l ) {
it = eventListenerList.erase(it);
return true;
} else {
++it;
}
}
return false;
}
bool GATTHandler::removeCharacteristicListener(const GATTCharacteristicListener * l) {
if( nullptr == l ) {
throw IllegalArgumentException("GATTEventListener ref is null", E_FILE_LINE);
}
const std::lock_guard<std::recursive_mutex> lock(mtx_eventListenerList); // RAII-style acquire and relinquish via destructor
for(auto it = eventListenerList.begin(); it != eventListenerList.end(); ) {
if ( **it == *l ) {
it = eventListenerList.erase(it);
return true;
} else {
++it;
}
}
return false;
}
int GATTHandler::removeAllCharacteristicListener() {
const std::lock_guard<std::recursive_mutex> lock(mtx_eventListenerList); // RAII-style acquire and relinquish via destructor
int count = eventListenerList.size();
eventListenerList.clear();
return count;
}
void GATTHandler::setSendIndicationConfirmation(const bool v) {
const std::lock_guard<std::recursive_mutex> lock(mtx_eventListenerList); // RAII-style acquire and relinquish via destructor
sendIndicationConfirmation = v;
}
bool GATTHandler::getSendIndicationConfirmation() {
const std::lock_guard<std::recursive_mutex> lock(mtx_eventListenerList); // RAII-style acquire and relinquish via destructor
return sendIndicationConfirmation;
}
void GATTHandler::l2capReaderThreadImpl() {
bool ioErrorCause = false;
{
const std::lock_guard<std::mutex> lock(mtx_l2capReaderInit); // RAII-style acquire and relinquish via destructor
l2capReaderShallStop = false;
l2capReaderRunning = true;
INFO_PRINT("l2capReaderThreadImpl Started");
cv_l2capReaderInit.notify_all();
}
while( !l2capReaderShallStop ) {
int len;
if( !validateConnected() ) {
ERR_PRINT("GATTHandler::l2capReaderThread: Invalid IO state -> Stop");
l2capReaderShallStop = true;
break;
}
len = l2cap.read(rbuffer.get_wptr(), rbuffer.getSize(), number(Defaults::L2CAP_READER_THREAD_POLL_TIMEOUT));
if( 0 < len ) {
const AttPDUMsg * attPDU = AttPDUMsg::getSpecialized(rbuffer.get_ptr(), len);
const AttPDUMsg::Opcode opc = attPDU->getOpcode();
if( AttPDUMsg::Opcode::ATT_HANDLE_VALUE_NTF == opc ) {
const AttHandleValueRcv * a = static_cast<const AttHandleValueRcv*>(attPDU);
DBG_PRINT("GATTHandler: NTF: %s", a->toString().c_str());
GATTCharacteristicRef decl = findCharacterisicsByValueHandle(a->getHandle());
const std::shared_ptr<TROOctets> data(new POctets(a->getValue()));
const uint64_t timestamp = a->ts_creation;
int i=0;
for_each_idx_mtx(mtx_eventListenerList, eventListenerList, [&](std::shared_ptr<GATTCharacteristicListener> &l) {
try {
if( l->match(*decl) ) {
l->notificationReceived(decl, data, timestamp);
}
} catch (std::exception &e) {
ERR_PRINT("GATTHandler::notificationReceived-CBs %d/%zd: GATTCharacteristicListener %s: Caught exception %s",
i+1, eventListenerList.size(),
aptrHexString((void*)l.get()).c_str(), e.what());
}
i++;
});
attPDU = nullptr;
} else if( AttPDUMsg::Opcode::ATT_HANDLE_VALUE_IND == opc ) {
const AttHandleValueRcv * a = static_cast<const AttHandleValueRcv*>(attPDU);
DBG_PRINT("GATTHandler: IND: %s, sendIndicationConfirmation %d", a->toString().c_str(), sendIndicationConfirmation);
bool cfmSent = false;
if( sendIndicationConfirmation ) {
AttHandleValueCfm cfm;
send(cfm);
cfmSent = true;
DBG_PRINT("GATTHandler: CFM send: %s, confirmationSent %d", cfm.toString().c_str(), cfmSent);
}
GATTCharacteristicRef decl = findCharacterisicsByValueHandle(a->getHandle());
const std::shared_ptr<TROOctets> data(new POctets(a->getValue()));
const uint64_t timestamp = a->ts_creation;
int i=0;
for_each_idx_mtx(mtx_eventListenerList, eventListenerList, [&](std::shared_ptr<GATTCharacteristicListener> &l) {
try {
if( l->match(*decl) ) {
l->indicationReceived(decl, data, timestamp, cfmSent);
}
} catch (std::exception &e) {
ERR_PRINT("GATTHandler::indicationReceived-CBs %d/%zd: GATTCharacteristicListener %s, cfmSent %d: Caught exception %s",
i+1, eventListenerList.size(),
aptrHexString((void*)l.get()).c_str(), cfmSent, e.what());
}
i++;
});
attPDU = nullptr;
} else if( AttPDUMsg::Opcode::ATT_MULTIPLE_HANDLE_VALUE_NTF == opc ) {
// FIXME TODO ..
INFO_PRINT("GATTHandler: MULTI-NTF: %s", attPDU->toString().c_str());
} else {
attPDURing.putBlocking( std::shared_ptr<const AttPDUMsg>( attPDU ) );
attPDU = nullptr;
}
if( nullptr != attPDU ) {
delete attPDU; // free unhandled PDU
}
} else if( ETIMEDOUT != errno && !l2capReaderShallStop ) { // expected exits
ERR_PRINT("GATTHandler::l2capReaderThread: l2cap read error -> Stop");
l2capReaderShallStop = true;
ioErrorCause = true;
}
}
INFO_PRINT("l2capReaderThreadImpl Ended. Ring has %d entries flushed", attPDURing.getSize());
l2capReaderRunning = false;
attPDURing.clear();
disconnect(true /* disconnectDevice */, ioErrorCause);
}
GATTHandler::GATTHandler(const std::shared_ptr<DBTDevice> &device, const int replyTimeoutMS)
: device(device), deviceString(device->getAddressString()), rbuffer(number(Defaults::MAX_ATT_MTU)),
l2cap(device, L2CAP_PSM_UNDEF, L2CAP_CID_ATT), replyTimeoutMS(replyTimeoutMS),
isConnected(false), hasIOError(false),
attPDURing(number(Defaults::ATTPDU_RING_CAPACITY)),
l2capReaderThreadId(0), l2capReaderRunning(false), l2capReaderShallStop(false),
serverMTU(number(Defaults::MIN_ATT_MTU)), usedMTU(number(Defaults::MIN_ATT_MTU))
{ }
GATTHandler::~GATTHandler() {
eventListenerList.clear();
disconnect(false /* disconnectDevice */, false /* ioErrorCause */);
}
bool GATTHandler::connect() {
bool expConn = false; // C++11, exp as value since C++20
if( !isConnected.compare_exchange_strong(expConn, true) ) {
// already connected
DBG_PRINT("GATTHandler::connect: Already connected: GattHandler[%s], l2cap[%s]: %s",
getStateString().c_str(), l2cap.getStateString().c_str(), device->toString().c_str());
return true;
}
hasIOError = false;
DBG_PRINT("GATTHandler::connect: Start: GattHandler[%s], l2cap[%s]: %s",
getStateString().c_str(), l2cap.getStateString().c_str(), device->toString().c_str());
if( !l2cap.connect() || !validateConnected() ) {
DBG_PRINT("GATTHandler.connect: Could not connect");
return false;
}
/**
* We utilize DBTManager's mgmthandler_sigaction SIGALRM handler,
* as we only can install one handler.
*/
{
std::unique_lock<std::mutex> lock(mtx_l2capReaderInit); // RAII-style acquire and relinquish via destructor
std::thread l2capReaderThread = std::thread(&GATTHandler::l2capReaderThreadImpl, this);
l2capReaderThreadId = l2capReaderThread.native_handle();
// Avoid 'terminate called without an active exception'
// as l2capReaderThread may end due to I/O errors.
l2capReaderThread.detach();
while( false == l2capReaderRunning ) {
cv_l2capReaderInit.wait(lock);
}
DBG_PRINT("GATTHandler::connect: Reader Started");
}
serverMTU = exchangeMTU(number(Defaults::MAX_ATT_MTU)); // First point of failure if device exposes no GATT functionality
usedMTU = std::min(number(Defaults::MAX_ATT_MTU), (int)serverMTU);
if( 0 == serverMTU ) {
ERR_PRINT("GATTHandler::connect: Zero serverMTU -> disconnect: %s", deviceString.c_str());
disconnect(true /* disconnectDevice */, false /* ioErrorCause */);
return false;
}
return true;
}
bool GATTHandler::disconnect(const bool disconnectDevice, const bool ioErrorCause) {
bool expConn = true; // C++11, exp as value since C++20
if( !isConnected.compare_exchange_strong(expConn, false) ) {
// not connected
DBG_PRINT("GATTHandler::disconnect: Not connected: disconnectDevice %d, ioErrorCause %d: GattHandler[%s], l2cap[%s]: %s",
disconnectDevice, ioErrorCause, getStateString().c_str(), l2cap.getStateString().c_str(), device->toString().c_str());
l2cap.disconnect(); // interrupt GATT's L2CAP ::connect(..), avoiding prolonged hang
return false;
}
hasIOError = false;
DBG_PRINT("GATTHandler::disconnect: Start: disconnectDevice %d, ioErrorCause %d: GattHandler[%s], l2cap[%s]: %s",
disconnectDevice, ioErrorCause, getStateString().c_str(), l2cap.getStateString().c_str(), device->toString().c_str());
l2cap.disconnect(); // interrupt GATT's L2CAP ::connect(..), avoiding prolonged hang
const pthread_t tid_self = pthread_self();
const pthread_t tid_l2capReader = l2capReaderThreadId;
l2capReaderThreadId = 0;
const bool is_l2capReader = tid_l2capReader == tid_self;
DBG_PRINT("GATTHandler.disconnect: l2capReader[running %d, shallStop %d, isReader %d, tid %p)",
l2capReaderRunning.load(), l2capReaderShallStop.load(), is_l2capReader, (void*)tid_l2capReader);
if( l2capReaderRunning ) {
l2capReaderShallStop = true;
if( !is_l2capReader && 0 != tid_l2capReader ) {
int kerr;
if( 0 != ( kerr = pthread_kill(tid_l2capReader, SIGALRM) ) ) {
ERR_PRINT("GATTHandler::disconnect: pthread_kill %p FAILED: %d", (void*)tid_l2capReader, kerr);
}
}
}
if( disconnectDevice && nullptr != device ) {
// Cleanup device resources, proper connection state
// Intentionally giving the POWER_OFF reason for the device in case of ioErrorCause!
const HCIStatusCode reason = ioErrorCause ?
HCIStatusCode::REMOTE_DEVICE_TERMINATED_CONNECTION_POWER_OFF :
HCIStatusCode::REMOTE_USER_TERMINATED_CONNECTION;
device->disconnect(false /* sentFromManager */, ioErrorCause, reason);
}
WARN_PRINT("GATTHandler::disconnect End");
return true;
}
void GATTHandler::send(const AttPDUMsg & msg) {
if( !validateConnected() ) {
throw IllegalStateException("GATTHandler::send: Invalid IO State: req "+msg.toString()+" to "+deviceString, E_FILE_LINE);
}
if( msg.pdu.getSize() > usedMTU ) {
throw IllegalArgumentException("clientMaxMTU "+std::to_string(msg.pdu.getSize())+" > usedMTU "+std::to_string(usedMTU)+
" to "+deviceString, E_FILE_LINE);
}
// Thread safe write operation only for concurrent access
const std::lock_guard<std::recursive_mutex> lock(mtx_write); // RAII-style acquire and relinquish via destructor
const int res = l2cap.write(msg.pdu.get_ptr(), msg.pdu.getSize());
if( 0 > res ) {
ERR_PRINT("GATTHandler::send: l2cap write error -> disconnect: %s to %s", msg.toString().c_str(), deviceString.c_str());
hasIOError = true;
disconnect(true /* disconnectDevice */, true /* ioErrorCause */); // state -> Disconnected
throw BluetoothException("GATTHandler::send: l2cap write error: req "+msg.toString()+" to "+deviceString, E_FILE_LINE);
}
if( res != msg.pdu.getSize() ) {
ERR_PRINT("GATTHandler::send: l2cap write count error, %d != %d: %s -> disconnect: %s",
res, msg.pdu.getSize(), msg.toString().c_str(), deviceString.c_str());
hasIOError = true;
disconnect(true /* disconnectDevice */, true /* ioErrorCause */); // state -> Disconnected
throw BluetoothException("GATTHandler::send: l2cap write count error, "+std::to_string(res)+" != "+std::to_string(res)
+": "+msg.toString()+" -> disconnect: "+deviceString, E_FILE_LINE);
}
}
std::shared_ptr<const AttPDUMsg> GATTHandler::sendWithReply(const AttPDUMsg & msg) {
send( msg );
// Ringbuffer read is thread safe
std::shared_ptr<const AttPDUMsg> res = attPDURing.getBlocking(replyTimeoutMS);
if( nullptr == res ) {
errno = ETIMEDOUT;
ERR_PRINT("GATTHandler::send: nullptr result (timeout): req %s to %s", msg.toString().c_str(), deviceString.c_str());
disconnect(true /* disconnectDevice */, true /* ioErrorCause */);
throw BluetoothException("GATTHandler::send: nullptr result (timeout): req "+msg.toString()+" to "+deviceString, E_FILE_LINE);
}
return res;
}
uint16_t GATTHandler::exchangeMTU(const uint16_t clientMaxMTU) {
/***
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.3.1 Exchange MTU (Server configuration)
*/
if( clientMaxMTU > number(Defaults::MAX_ATT_MTU) ) {
throw IllegalArgumentException("clientMaxMTU "+std::to_string(clientMaxMTU)+" > ClientMaxMTU "+std::to_string(number(Defaults::MAX_ATT_MTU)), E_FILE_LINE);
}
const AttExchangeMTU req(clientMaxMTU);
PERF_TS_T0();
uint16_t mtu = 0;
DBG_PRINT("GATT send: %s", req.toString().c_str());
std::shared_ptr<const AttPDUMsg> pdu = sendWithReply(req);
if( nullptr != pdu ) {
DBG_PRINT("GATT recv: %s", pdu->toString().c_str());
if( pdu->getOpcode() == AttPDUMsg::ATT_EXCHANGE_MTU_RSP ) {
const AttExchangeMTU * p = static_cast<const AttExchangeMTU*>(pdu.get());
mtu = p->getMTUSize();
}
} else {
ERR_PRINT("GATT exchangeMTU send failed: %s - %s", req.toString().c_str(), deviceString.c_str());
}
PERF_TS_TD("GATT exchangeMTU");
return mtu;
}
GATTCharacteristicRef GATTHandler::findCharacterisicsByValueHandle(const uint16_t charValueHandle) {
return findCharacterisicsByValueHandle(charValueHandle, services);
}
GATTCharacteristicRef GATTHandler::findCharacterisicsByValueHandle(const uint16_t charValueHandle, std::vector<GATTServiceRef> &services) {
for(auto it = services.begin(); it != services.end(); it++) {
GATTCharacteristicRef decl = findCharacterisicsByValueHandle(charValueHandle, *it);
if( nullptr != decl ) {
return decl;
}
}
return nullptr;
}
GATTCharacteristicRef GATTHandler::findCharacterisicsByValueHandle(const uint16_t charValueHandle, GATTServiceRef service) {
for(auto it = service->characteristicList.begin(); it != service->characteristicList.end(); it++) {
GATTCharacteristicRef decl = *it;
if( charValueHandle == decl->value_handle ) {
return decl;
}
}
return nullptr;
}
std::vector<GATTServiceRef> & GATTHandler::discoverCompletePrimaryServices() {
if( !discoverPrimaryServices(services) ) {
return services;
}
for(auto it = services.begin(); it != services.end(); it++) {
GATTServiceRef primSrv = *it;
if( discoverCharacteristics(primSrv) ) {
discoverDescriptors(primSrv);
}
}
return services;
}
bool GATTHandler::discoverPrimaryServices(std::vector<GATTServiceRef> & result) {
/***
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.4.1 Discover All Primary Services
*
* This sub-procedure is complete when the ATT_ERROR_RSP PDU is received
* and the error code is set to Attribute Not Found or when the End Group Handle
* in the Read by Type Group Response is 0xFFFF.
*/
const uuid16_t groupType = uuid16_t(GattAttributeType::PRIMARY_SERVICE);
PERF_TS_T0();
bool done=false;
uint16_t startHandle=0x0001;
result.clear();
while(!done) {
const AttReadByNTypeReq req(true /* group */, startHandle, 0xffff, groupType);
DBG_PRINT("GATT PRIM SRV discover send: %s", req.toString().c_str());
std::shared_ptr<const AttPDUMsg> pdu = sendWithReply(req);
if( nullptr != pdu ) {
DBG_PRINT("GATT PRIM SRV discover recv: %s", pdu->toString().c_str());
if( pdu->getOpcode() == AttPDUMsg::ATT_READ_BY_GROUP_TYPE_RSP ) {
const AttReadByGroupTypeRsp * p = static_cast<const AttReadByGroupTypeRsp*>(pdu.get());
const int count = p->getElementCount();
for(int i=0; i<count; i++) {
const int ePDUOffset = p->getElementPDUOffset(i);
const int esz = p->getElementTotalSize();
result.push_back( GATTServiceRef( new GATTService( device, true,
p->pdu.get_uint16(ePDUOffset), // start-handle
p->pdu.get_uint16(ePDUOffset + 2), // end-handle
p->pdu.get_uuid( ePDUOffset + 2 + 2, uuid_t::toTypeSize(esz-2-2) ) // uuid
) ) );
DBG_PRINT("GATT PRIM SRV discovered[%d/%d]: %s", i, count, result.at(result.size()-1)->toString().c_str());
}
startHandle = p->getElementEndHandle(count-1);
if( startHandle < 0xffff ) {
startHandle++;
} else {
done = true; // OK by spec: End of communication
}
} else if( pdu->getOpcode() == AttPDUMsg::ATT_ERROR_RSP ) {
done = true; // OK by spec: End of communication
} else {
WARN_PRINT("GATT discoverPrimary unexpected reply %s", pdu->toString().c_str());
done = true;
}
} else {
ERR_PRINT("GATT discoverPrimary send failed: %s - %s", req.toString().c_str(), deviceString.c_str());
done = true; // send failed
}
}
PERF_TS_TD("GATT discoverPrimaryServices");
return result.size() > 0;
}
bool GATTHandler::discoverCharacteristics(GATTServiceRef & service) {
/***
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.6.1 Discover All Characteristics of a Service
* <p>
* BT Core Spec v5.2: Vol 3, Part G GATT: 3.3.1 Characteristic Declaration Attribute Value
* </p>
* <p>
* BT Core Spec v5.2: Vol 3, Part G GATT: 3.3.3.3 Client Characteristic Configuration
* </p>
*/
const uuid16_t characteristicTypeReq = uuid16_t(GattAttributeType::CHARACTERISTIC);
DBG_PRINT("GATT discoverCharacteristics Service: %s", service->toString().c_str());
PERF_TS_T0();
bool done=false;
uint16_t handle=service->startHandle;
service->characteristicList.clear();
while(!done) {
const AttReadByNTypeReq req(false /* group */, handle, service->endHandle, characteristicTypeReq);
DBG_PRINT("GATT C discover send: %s", req.toString().c_str());
std::shared_ptr<const AttPDUMsg> pdu = sendWithReply(req);
if( nullptr != pdu ) {
DBG_PRINT("GATT C discover recv: %s", pdu->toString().c_str());
if( pdu->getOpcode() == AttPDUMsg::ATT_READ_BY_TYPE_RSP ) {
const AttReadByTypeRsp * p = static_cast<const AttReadByTypeRsp*>(pdu.get());
const int e_count = p->getElementCount();
for(int e_iter=0; e_iter<e_count; e_iter++) {
// handle: handle for the Characteristics declaration
// value: Characteristics Property, Characteristics Value Handle _and_ Characteristics UUID
const int ePDUOffset = p->getElementPDUOffset(e_iter);
const int esz = p->getElementTotalSize();
service->characteristicList.push_back( GATTCharacteristicRef( new GATTCharacteristic(
service,
p->pdu.get_uint16(ePDUOffset), // Characteristics's Service Handle
p->getElementHandle(e_iter), // Characteristic Handle
static_cast<GATTCharacteristic::PropertyBitVal>(p->pdu.get_uint8(ePDUOffset + 2)), // Characteristics Property
p->pdu.get_uint16(ePDUOffset + 2 + 1), // Characteristics Value Handle
p->pdu.get_uuid(ePDUOffset + 2 + 1 + 2, uuid_t::toTypeSize(esz-2-1-2) ) ) ) ); // Characteristics Value Type UUID
DBG_PRINT("GATT C discovered[%d/%d]: %s", e_iter, e_count, service->characteristicList.at(service->characteristicList.size()-1)->toString().c_str());
}
handle = p->getElementHandle(e_count-1); // Last Characteristic Handle
if( handle < service->endHandle ) {
handle++;
} else {
done = true; // OK by spec: End of communication
}
} else if( pdu->getOpcode() == AttPDUMsg::ATT_ERROR_RSP ) {
done = true; // OK by spec: End of communication
} else {
WARN_PRINT("GATT discoverCharacteristics unexpected reply %s", pdu->toString().c_str());
done = true;
}
} else {
ERR_PRINT("GATT discoverCharacteristics send failed: %s - %s", req.toString().c_str(), deviceString.c_str());
service->characteristicList.clear();
done = true;
}
}
PERF_TS_TD("GATT discoverCharacteristics");
return service->characteristicList.size() > 0;
}
bool GATTHandler::discoverDescriptors(GATTServiceRef & service) {
/***
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.7.1 Discover All Characteristic Descriptors
* <p>
* BT Core Spec v5.2: Vol 3, Part G GATT: 3.3.1 Characteristic Declaration Attribute Value
* </p>
*/
DBG_PRINT("GATT discoverDescriptors Service: %s", service->toString().c_str());
PERF_TS_T0();
bool done=false;
const int charCount = service->characteristicList.size();
for(int charIter=0; !done && charIter < charCount; charIter++ ) {
GATTCharacteristicRef charDecl = service->characteristicList[charIter];
charDecl->clearDescriptors();
DBG_PRINT("GATT discoverDescriptors Characteristic[%d/%d]: %s", charIter, charCount, charDecl->toString().c_str());
uint16_t cd_handle_iter = charDecl->value_handle + 1; // Start @ Characteristic Value Handle + 1
uint16_t cd_handle_end;
if( charIter+1 < charCount ) {
cd_handle_end = service->characteristicList.at(charIter+1)->value_handle;
} else {
cd_handle_end = service->endHandle;
}
while( !done && cd_handle_iter <= cd_handle_end ) {
const AttFindInfoReq req(cd_handle_iter, cd_handle_end);
DBG_PRINT("GATT CD discover send: %s", req.toString().c_str());
std::shared_ptr<const AttPDUMsg> pdu = sendWithReply(req);
if( nullptr == pdu ) {
ERR_PRINT("GATT discoverDescriptors send failed: %s - %s", req.toString().c_str(), deviceString.c_str());
done = true;
break;
}
DBG_PRINT("GATT CD discover recv: %s", pdu->toString().c_str());
if( pdu->getOpcode() == AttPDUMsg::ATT_FIND_INFORMATION_RSP ) {
const AttFindInfoRsp * p = static_cast<const AttFindInfoRsp*>(pdu.get());
const int e_count = p->getElementCount();
for(int e_iter=0; e_iter<e_count; e_iter++) {
// handle: handle of Characteristic Descriptor.
// value: Characteristic Descriptor UUID.
const uint16_t cd_handle = p->getElementHandle(e_iter);
const std::shared_ptr<const uuid_t> cd_uuid = p->getElementValue(e_iter);
std::shared_ptr<GATTDescriptor> cd( new GATTDescriptor(charDecl, cd_uuid, cd_handle) );
if( cd_handle <= charDecl->value_handle || cd_handle > cd_handle_end ) { // should never happen!
ERR_PRINT("GATT discoverDescriptors CD handle %s not in range ]%s..%s]: %s - %s",
uint16HexString(cd_handle).c_str(),
uint16HexString(charDecl->value_handle).c_str(), uint16HexString(cd_handle_end).c_str(),
cd->toString().c_str(), deviceString.c_str());
done = true;
break;
}
if( !readDescriptorValue(*cd, 0) ) {
ERR_PRINT("GATT discoverDescriptors readDescriptorValue failed: %s . %s - %s",
req.toString().c_str(), cd->toString().c_str(), deviceString.c_str());
done = true;
break;
}
if( cd->isClientCharacteristicConfiguration() ) {
charDecl->clientCharacteristicsConfigIndex = charDecl->descriptorList.size();
}
charDecl->descriptorList.push_back(cd);
DBG_PRINT("GATT CD discovered[%d/%d]: %s", e_iter, e_count, cd->toString().c_str());
}
cd_handle_iter = p->getElementHandle(e_count-1); // Last Descriptor Handle
if( cd_handle_iter < cd_handle_end ) {
cd_handle_iter++;
} else {
done = true; // OK by spec: End of communication
}
} else if( pdu->getOpcode() == AttPDUMsg::ATT_ERROR_RSP ) {
done = true; // OK by spec: End of communication
} else {
WARN_PRINT("GATT discoverDescriptors unexpected opcode reply %s", pdu->toString().c_str());
done = true;
}
}
}
PERF_TS_TD("GATT discoverDescriptors");
return service->characteristicList.size() > 0;
}
bool GATTHandler::readDescriptorValue(GATTDescriptor & desc, int expectedLength) {
DBG_PRINT("GATTHandler::readDescriptorValue expLen %d, desc %s", expectedLength, desc.toString().c_str());
return readValue(desc.handle, desc.value, expectedLength);
}
bool GATTHandler::readCharacteristicValue(const GATTCharacteristic & decl, POctets & res, int expectedLength) {
DBG_PRINT("GATTHandler::readCharacteristicValue expLen %d, decl %s", expectedLength, decl.toString().c_str());
return readValue(decl.value_handle, res, expectedLength);
}
bool GATTHandler::readValue(const uint16_t handle, POctets & res, int expectedLength) {
/* BT Core Spec v5.2: Vol 3, Part G GATT: 4.8.1 Read Characteristic Value */
/* BT Core Spec v5.2: Vol 3, Part G GATT: 4.8.3 Read Long Characteristic Value */
PERF2_TS_T0();
bool done=false;
int offset=0;
DBG_PRINT("GATTHandler::readValue expLen %d, handle %s", expectedLength, uint16HexString(handle).c_str());
while(!done) {
if( 0 < expectedLength && expectedLength <= offset ) {
break; // done
} else if( 0 == expectedLength && 0 < offset ) {
break; // done w/ only one request
} // else 0 > expectedLength: implicit
std::shared_ptr<const AttPDUMsg> pdu = nullptr;
if( 0 == offset ) {
const AttReadReq req (handle);
DBG_PRINT("GATT RV send: %s", req.toString().c_str());
pdu = sendWithReply(req);
} else {
const AttReadBlobReq req (handle, offset);
DBG_PRINT("GATT RV send: %s", req.toString().c_str());
pdu = sendWithReply(req);
}
if( nullptr != pdu ) {
DBG_PRINT("GATT RV recv: %s", pdu->toString().c_str());
if( pdu->getOpcode() == AttPDUMsg::ATT_READ_RSP ) {
const AttReadRsp * p = static_cast<const AttReadRsp*>(pdu.get());
const TOctetSlice & v = p->getValue();
res += v;
offset += v.getSize();
if( p->getPDUValueSize() < p->getMaxPDUValueSize(usedMTU) ) {
done = true; // No full ATT_MTU PDU used - end of communication
}
} else if( pdu->getOpcode() == AttPDUMsg::ATT_READ_BLOB_RSP ) {
const AttReadBlobRsp * p = static_cast<const AttReadBlobRsp*>(pdu.get());
const TOctetSlice & v = p->getValue();
if( 0 == v.getSize() ) {
done = true; // OK by spec: No more data - end of communication
} else {
res += v;
offset += v.getSize();
if( p->getPDUValueSize() < p->getMaxPDUValueSize(usedMTU) ) {
done = true; // No full ATT_MTU PDU used - end of communication
}
}
} else if( pdu->getOpcode() == AttPDUMsg::ATT_ERROR_RSP ) {
/**
* BT Core Spec v5.2: Vol 3, Part G GATT: 4.8.3 Read Long Characteristic Value
*
* If the Characteristic Value is not longer than (ATT_MTU – 1)
* an ATT_ERROR_RSP PDU with the error
* code set to Attribute Not Long shall be received on the first
* ATT_READ_BLOB_REQ PDU.
*/
const AttErrorRsp * p = static_cast<const AttErrorRsp *>(pdu.get());
if( AttErrorRsp::ATTRIBUTE_NOT_LONG == p->getErrorCode() ) {
done = true; // OK by spec: No more data - end of communication
} else {
WARN_PRINT("GATT readValue unexpected error %s", pdu->toString().c_str());
done = true;
}
} else {
WARN_PRINT("GATT readValue unexpected reply %s", pdu->toString().c_str());
done = true;
}
} else {
ERR_PRINT("GATT readValue send failed: handle %u, offset %d: %s", handle, offset, deviceString.c_str());
done = true;
}
}
PERF2_TS_TD("GATT readValue");
return offset > 0;
}
bool GATTHandler::writeDescriptorValue(const GATTDescriptor & cd) {
/* BT Core Spec v5.2: Vol 3, Part G GATT: 3.3.3.3 Client Characteristic Configuration */
/* BT Core Spec v5.2: Vol 3, Part G GATT: 4.9.3 Write Characteristic Value */
/* BT Core Spec v5.2: Vol 3, Part G GATT: 4.11 Characteristic Value Indication */
/* BT Core Spec v5.2: Vol 3, Part G GATT: 4.12.3 Write Characteristic Descriptor */
DBG_PRINT("GATTHandler::writeDesccriptorValue desc %s", cd.toString().c_str());
return writeValue(cd.handle, cd.value, true);
}
bool GATTHandler::writeCharacteristicValue(const GATTCharacteristic & c, const TROOctets & value) {
/* BT Core Spec v5.2: Vol 3, Part G GATT: 4.9.3 Write Characteristic Value */
DBG_PRINT("GATTHandler::writeCharacteristicValue desc %s, value %s", c.toString().c_str(), value.toString().c_str());
return writeValue(c.value_handle, value, true);
}
bool GATTHandler::writeCharacteristicValueNoResp(const GATTCharacteristic & c, const TROOctets & value) {
DBG_PRINT("GATT writeCharacteristicValueNoResp decl %s, value %s", c.toString().c_str(), value.toString().c_str());
return writeValue(c.value_handle, value, false);
}
bool GATTHandler::writeValue(const uint16_t handle, const TROOctets & value, const bool expResponse) {
/* BT Core Spec v5.2: Vol 3, Part G GATT: 3.3.3.3 Client Characteristic Configuration */
/* BT Core Spec v5.2: Vol 3, Part G GATT: 4.9.3 Write Characteristic Value */
/* BT Core Spec v5.2: Vol 3, Part G GATT: 4.11 Characteristic Value Indication */
/* BT Core Spec v5.2: Vol 3, Part G GATT: 4.12.3 Write Characteristic Descriptor */
if( value.getSize() <= 0 ) {
WARN_PRINT("GATT writeValue size <= 0, no-op: %s", value.toString().c_str());
return false;
}
// TODO: Long Value!
PERF2_TS_T0();
AttWriteReq req(handle, value);
DBG_PRINT("GATT WV send(resp %d): %s", expResponse, req.toString().c_str());
if( !expResponse ) {
send( req );
return true;
}
bool res = false;
std::shared_ptr<const AttPDUMsg> pdu = sendWithReply(req);
if( nullptr != pdu ) {
DBG_PRINT("GATT WV recv: %s", pdu->toString().c_str());
if( pdu->getOpcode() == AttPDUMsg::ATT_WRITE_RSP ) {
// OK
res = true;
} else if( pdu->getOpcode() == AttPDUMsg::ATT_ERROR_RSP ) {
const AttErrorRsp * p = static_cast<const AttErrorRsp *>(pdu.get());
WARN_PRINT("GATT writeValue unexpected error %s", p->toString().c_str());
} else {
WARN_PRINT("GATT writeValue unexpected reply %s", pdu->toString().c_str());
}
} else {
ERR_PRINT("GATT writeValue send failed: handle %u: %s", handle, deviceString.c_str());
}
PERF2_TS_TD("GATT writeValue");
return res;
}
bool GATTHandler::configIndicationNotification(GATTDescriptor & cccd, const bool enableNotification, const bool enableIndication) {
if( !cccd.isClientCharacteristicConfiguration() ) {
throw IllegalArgumentException("Not a ClientCharacteristicConfiguration: "+cccd.toString(), E_FILE_LINE);
}
/* BT Core Spec v5.2: Vol 3, Part G GATT: 3.3.3.3 Client Characteristic Configuration */
const uint16_t ccc_value = enableNotification | ( enableIndication << 1 );
DBG_PRINT("GATTHandler::configIndicationNotification decl %s, enableNotification %d, enableIndication %d",
cccd.toString().c_str(), enableNotification, enableIndication);
cccd.value.resize(2, 2);
cccd.value.put_uint16(0, ccc_value);
return writeDescriptorValue(cccd);
}
/*********************************************************************************************************************/
/*********************************************************************************************************************/
/*********************************************************************************************************************/
static const uuid16_t _GENERIC_ACCESS(GattServiceType::GENERIC_ACCESS);
static const uuid16_t _DEVICE_NAME(GattCharacteristicType::DEVICE_NAME);
static const uuid16_t _APPEARANCE(GattCharacteristicType::APPEARANCE);
static const uuid16_t _PERIPHERAL_PREFERRED_CONNECTION_PARAMETERS(GattCharacteristicType::PERIPHERAL_PREFERRED_CONNECTION_PARAMETERS);
static const uuid16_t _DEVICE_INFORMATION(GattServiceType::DEVICE_INFORMATION);
static const uuid16_t _SYSTEM_ID(GattCharacteristicType::SYSTEM_ID);
static const uuid16_t _MODEL_NUMBER_STRING(GattCharacteristicType::MODEL_NUMBER_STRING);
static const uuid16_t _SERIAL_NUMBER_STRING(GattCharacteristicType::SERIAL_NUMBER_STRING);
static const uuid16_t _FIRMWARE_REVISION_STRING(GattCharacteristicType::FIRMWARE_REVISION_STRING);
static const uuid16_t _HARDWARE_REVISION_STRING(GattCharacteristicType::HARDWARE_REVISION_STRING);
static const uuid16_t _SOFTWARE_REVISION_STRING(GattCharacteristicType::SOFTWARE_REVISION_STRING);
static const uuid16_t _MANUFACTURER_NAME_STRING(GattCharacteristicType::MANUFACTURER_NAME_STRING);
static const uuid16_t _REGULATORY_CERT_DATA_LIST(GattCharacteristicType::REGULATORY_CERT_DATA_LIST);
static const uuid16_t _PNP_ID(GattCharacteristicType::PNP_ID);
std::shared_ptr<GenericAccess> GATTHandler::getGenericAccess(std::vector<GATTCharacteristicRef> & genericAccessCharDeclList) {
std::shared_ptr<GenericAccess> res = nullptr;
POctets value(number(Defaults::MAX_ATT_MTU), 0);
std::string deviceName = "";
AppearanceCat appearance = AppearanceCat::UNKNOWN;
PeriphalPreferredConnectionParameters * prefConnParam = nullptr;
for(size_t i=0; i<genericAccessCharDeclList.size(); i++) {
const GATTCharacteristic & charDecl = *genericAccessCharDeclList.at(i);
if( _GENERIC_ACCESS != *charDecl.service->type ) {
continue;
}
if( _DEVICE_NAME == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
deviceName = GattNameToString(value);
}
} else if( _APPEARANCE == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
appearance = static_cast<AppearanceCat>(value.get_uint16(0));
}
} else if( _PERIPHERAL_PREFERRED_CONNECTION_PARAMETERS == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
prefConnParam = new PeriphalPreferredConnectionParameters(value);
}
}
}
if( deviceName.size() > 0 && nullptr != prefConnParam ) {
res = std::shared_ptr<GenericAccess>(new GenericAccess(deviceName, appearance, *prefConnParam));
}
if( nullptr != prefConnParam ) {
delete prefConnParam;
}
return res;
}
std::shared_ptr<GenericAccess> GATTHandler::getGenericAccess(std::vector<GATTServiceRef> & primServices) {
std::shared_ptr<GenericAccess> res = nullptr;
for(size_t i=0; i<primServices.size() && nullptr == res; i++) {
res = getGenericAccess(primServices.at(i)->characteristicList);
}
return res;
}
std::shared_ptr<DeviceInformation> GATTHandler::getDeviceInformation(std::vector<GATTCharacteristicRef> & characteristicDeclList) {
std::shared_ptr<DeviceInformation> res = nullptr;
POctets value(number(Defaults::MAX_ATT_MTU), 0);
POctets systemID(8, 0);
std::string modelNumber;
std::string serialNumber;
std::string firmwareRevision;
std::string hardwareRevision;
std::string softwareRevision;
std::string manufacturer;
POctets regulatoryCertDataList(128, 0);
PnP_ID * pnpID = nullptr;
bool found = false;
for(size_t i=0; i<characteristicDeclList.size(); i++) {
const GATTCharacteristic & charDecl = *characteristicDeclList.at(i);
if( _DEVICE_INFORMATION != *charDecl.service->type ) {
continue;
}
found = true;
if( _SYSTEM_ID == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, systemID.resize(0)) ) {
// nop
}
} else if( _REGULATORY_CERT_DATA_LIST == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, regulatoryCertDataList.resize(0)) ) {
// nop
}
} else if( _PNP_ID == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
pnpID = new PnP_ID(value);
}
} else if( _MODEL_NUMBER_STRING == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
modelNumber = GattNameToString(value);
}
} else if( _SERIAL_NUMBER_STRING == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
serialNumber = GattNameToString(value);
}
} else if( _FIRMWARE_REVISION_STRING == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
firmwareRevision = GattNameToString(value);
}
} else if( _HARDWARE_REVISION_STRING == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
hardwareRevision = GattNameToString(value);
}
} else if( _SOFTWARE_REVISION_STRING == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
softwareRevision = GattNameToString(value);
}
} else if( _MANUFACTURER_NAME_STRING == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
manufacturer = GattNameToString(value);
}
}
}
if( nullptr == pnpID ) {
pnpID = new PnP_ID();
}
if( found ) {
res = std::shared_ptr<DeviceInformation>(new DeviceInformation(systemID, modelNumber, serialNumber,
firmwareRevision, hardwareRevision, softwareRevision,
manufacturer, regulatoryCertDataList, *pnpID) );
}
delete pnpID;
return res;
}
std::shared_ptr<DeviceInformation> GATTHandler::getDeviceInformation(std::vector<GATTServiceRef> & primServices) {
std::shared_ptr<DeviceInformation> res = nullptr;
for(size_t i=0; i<primServices.size() && nullptr == res; i++) {
res = getDeviceInformation(primServices.at(i)->characteristicList);
}
return res;
}
|