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
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
|
/*
* 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
#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;
GATTEnv::GATTEnv() noexcept
: exploding( DBTEnv::getExplodingProperties("direct_bt.gatt") ),
GATT_READ_COMMAND_REPLY_TIMEOUT( DBTEnv::getInt32Property("direct_bt.gatt.cmd.read.timeout", 500, 250 /* min */, INT32_MAX /* max */) ),
GATT_WRITE_COMMAND_REPLY_TIMEOUT( DBTEnv::getInt32Property("direct_bt.gatt.cmd.write.timeout", 500, 250 /* min */, INT32_MAX /* max */) ),
GATT_INITIAL_COMMAND_REPLY_TIMEOUT( DBTEnv::getInt32Property("direct_bt.gatt.cmd.init.timeout", 2500, 2000 /* min */, INT32_MAX /* max */) ),
ATTPDU_RING_CAPACITY( DBTEnv::getInt32Property("direct_bt.gatt.ringsize", 128, 64 /* min */, 1024 /* max */) ),
DEBUG_DATA( DBTEnv::getBooleanProperty("direct_bt.debug.gatt.data", false) )
{
}
#define CASE_TO_STRING(V) case V: return #V;
std::shared_ptr<DBTDevice> GATTHandler::getDeviceChecked() const {
std::shared_ptr<DBTDevice> ref = wbr_device.lock();
if( nullptr == ref ) {
throw IllegalStateException("GATTHandler's device already destructed: "+deviceString, E_FILE_LINE);
}
return ref;
}
bool GATTHandler::validateConnected() noexcept {
bool l2capIsConnected = l2cap.isConnected();
bool l2capHasIOError = l2cap.hasIOError();
if( has_ioerror || l2capHasIOError ) {
has_ioerror = true; // propagate l2capHasIOError -> has_ioerror
ERR_PRINT("IOError state: GattHandler %s, l2cap %s: %s",
getStateString().c_str(), l2cap.getStateString().c_str(), deviceString.c_str());
return false;
}
if( !is_connected || !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 = characteristicListenerList.begin(); it != characteristicListenerList.end(); ) {
if ( **it == *l ) {
return false; // already included
} else {
++it;
}
}
characteristicListenerList.push_back(l);
return true;
}
bool GATTHandler::removeCharacteristicListener(std::shared_ptr<GATTCharacteristicListener> l) noexcept {
if( nullptr == l ) {
ERR_PRINT("Given GATTCharacteristicListener ref is null");
return false;
}
return removeCharacteristicListener( l.get() );
}
bool GATTHandler::removeCharacteristicListener(const GATTCharacteristicListener * l) noexcept {
if( nullptr == l ) {
ERR_PRINT("Given GATTCharacteristicListener ref is null");
return false;
}
const std::lock_guard<std::recursive_mutex> lock(mtx_eventListenerList); // RAII-style acquire and relinquish via destructor
for(auto it = characteristicListenerList.begin(); it != characteristicListenerList.end(); ) {
if ( **it == *l ) {
it = characteristicListenerList.erase(it);
return true;
} else {
++it;
}
}
return false;
}
int GATTHandler::removeAllAssociatedCharacteristicListener(std::shared_ptr<GATTCharacteristic> associatedCharacteristic) noexcept {
if( nullptr == associatedCharacteristic ) {
ERR_PRINT("Given GATTCharacteristic ref is null");
return false;
}
return removeAllAssociatedCharacteristicListener( associatedCharacteristic.get() );
}
int GATTHandler::removeAllAssociatedCharacteristicListener(const GATTCharacteristic * associatedCharacteristic) noexcept {
if( nullptr == associatedCharacteristic ) {
ERR_PRINT("Given GATTCharacteristic ref is null");
return false;
}
const std::lock_guard<std::recursive_mutex> lock(mtx_eventListenerList); // RAII-style acquire and relinquish via destructor
for(auto it = characteristicListenerList.begin(); it != characteristicListenerList.end(); ) {
if ( (*it)->match(*associatedCharacteristic) ) {
it = characteristicListenerList.erase(it);
return true;
} else {
++it;
}
}
return false;
}
int GATTHandler::removeAllCharacteristicListener() noexcept {
const std::lock_guard<std::recursive_mutex> lock(mtx_eventListenerList); // RAII-style acquire and relinquish via destructor
int count = characteristicListenerList.size();
characteristicListenerList.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() noexcept {
const std::lock_guard<std::recursive_mutex> lock(mtx_eventListenerList); // RAII-style acquire and relinquish via destructor
return sendIndicationConfirmation;
}
void GATTHandler::l2capReaderThreadImpl() {
{
const std::lock_guard<std::mutex> lock(mtx_l2capReaderInit); // RAII-style acquire and relinquish via destructor
l2capReaderShallStop = false;
l2capReaderRunning = true;
DBG_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());
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);
COND_PRINT(env.DEBUG_DATA, "GATTHandler: NTF: %s, listener %zd", a->toString().c_str(), characteristicListenerList.size());
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, characteristicListenerList, [&](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, characteristicListenerList.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);
COND_PRINT(env.DEBUG_DATA, "GATTHandler: IND: %s, sendIndicationConfirmation %d, listener %zd", a->toString().c_str(), sendIndicationConfirmation, characteristicListenerList.size());
bool cfmSent = false;
if( sendIndicationConfirmation ) {
AttHandleValueCfm cfm;
send(cfm);
cfmSent = true;
}
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, characteristicListenerList, [&](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, characteristicListenerList.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 ..
ERR_PRINT("GATTHandler: MULTI-NTF not implemented: %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
IRQ_PRINT("GATTHandler::l2capReaderThread: l2cap read error -> Stop; l2cap.read %d", len);
l2capReaderShallStop = true;
has_ioerror = true;
}
}
WORDY_PRINT("l2capReaderThreadImpl Ended. Ring has %d entries flushed", attPDURing.getSize());
l2capReaderRunning = false;
attPDURing.clear();
disconnect(true /* disconnectDevice */, has_ioerror);
}
GATTHandler::GATTHandler(const std::shared_ptr<DBTDevice> &device) noexcept
: env(GATTEnv::get()),
wbr_device(device), deviceString(device->getAddressString()), rbuffer(number(Defaults::MAX_ATT_MTU)),
l2cap(device, L2CAP_PSM_UNDEF, L2CAP_CID_ATT),
is_connected(true), has_ioerror(false),
attPDURing(env.ATTPDU_RING_CAPACITY),
l2capReaderThreadId(0), l2capReaderRunning(false), l2capReaderShallStop(false),
serverMTU(number(Defaults::MIN_ATT_MTU)), usedMTU(number(Defaults::MIN_ATT_MTU))
{
if( !validateConnected() ) {
ERR_PRINT("GATTHandler.ctor: L2CAP could not connect");
is_connected = false;
return;
}
DBG_PRINT("GATTHandler::ctor: Start Connect: GattHandler[%s], l2cap[%s]: %s",
getStateString().c_str(), l2cap.getStateString().c_str(), deviceString.c_str());
/**
* 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);
}
}
// First point of failure if device exposes no GATT functionality. Allow a longer timeout!
uint16_t mtu = 0;
try {
mtu = exchangeMTU(number(Defaults::MAX_ATT_MTU));
} catch (std::exception &e) {
ERR_PRINT("GattHandler.ctor: exchangeMTU failed: %s", e.what());
} catch (std::string &msg) {
ERR_PRINT("GattHandler.ctor: exchangeMTU failed: %s", msg.c_str());
} catch (const char *msg) {
ERR_PRINT("GattHandler.ctor: exchangeMTU failed: %s", msg);
}
if( 0 == mtu ) {
ERR_PRINT("GATTHandler::ctor: Zero serverMTU -> disconnect: %s", deviceString.c_str());
disconnect(true /* disconnectDevice */, false /* ioErrorCause */);
} else {
serverMTU = mtu;
usedMTU = std::min(number(Defaults::MAX_ATT_MTU), (int)serverMTU);
}
}
GATTHandler::~GATTHandler() noexcept {
disconnect(false /* disconnectDevice */, false /* ioErrorCause */);
services.clear();
}
bool GATTHandler::disconnect(const bool disconnectDevice, const bool ioErrorCause) noexcept {
// Interrupt GATT's L2CAP ::connect(..), avoiding prolonged hang
// and pull all underlying l2cap read operations!
l2cap.disconnect();
// Avoid disconnect re-entry -> potential deadlock
bool expConn = true; // C++11, exp as value since C++20
if( !is_connected.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(), deviceString.c_str());
characteristicListenerList.clear();
return false;
}
{
// Lock to avoid other threads using instance while disconnecting
const std::lock_guard<std::recursive_mutex> lock(mtx_command); // RAII-style acquire and relinquish via destructor
has_ioerror = false;
DBG_PRINT("GATTHandler::disconnect: Start: disconnectDevice %d, ioErrorCause %d: GattHandler[%s], l2cap[%s]: %s",
disconnectDevice, ioErrorCause, getStateString().c_str(), l2cap.getStateString().c_str(), deviceString.c_str());
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);
}
}
}
removeAllCharacteristicListener();
}
if( disconnectDevice ) {
std::shared_ptr<DBTDevice> device = getDeviceUnchecked();
if( 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(reason);
}
}
DBG_PRINT("GATTHandler::disconnect: End: %s", deviceString.c_str());
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 l2cap.write(..) operation..
const int res = l2cap.write(msg.pdu.get_ptr(), msg.pdu.getSize());
if( 0 > res ) {
IRQ_PRINT("GATTHandler::send: l2cap write error -> disconnect: %s to %s", msg.toString().c_str(), deviceString.c_str());
has_ioerror = 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());
has_ioerror = 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, const int timeout) {
send( msg );
// Ringbuffer read is thread safe
std::shared_ptr<const AttPDUMsg> res = attPDURing.getBlocking(timeout);
if( nullptr == res ) {
errno = ETIMEDOUT;
IRQ_PRINT("GATTHandler::sendWithReply: nullptr result (timeout %d): req %s to %s", timeout, msg.toString().c_str(), deviceString.c_str());
has_ioerror = true;
disconnect(true /* disconnectDevice */, true /* ioErrorCause */);
throw BluetoothException("GATTHandler::sendWithReply: nullptr result (timeout "+std::to_string(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);
const std::lock_guard<std::recursive_mutex> lock(mtx_command); // RAII-style acquire and relinquish via destructor
PERF_TS_T0();
uint16_t mtu = 0;
DBG_PRINT("GATT send: %s", req.toString().c_str());
std::shared_ptr<const AttPDUMsg> pdu = sendWithReply(req, env.GATT_INITIAL_COMMAND_REPLY_TIMEOUT); // valid reply or exception
if( pdu->getOpcode() == AttPDUMsg::ATT_EXCHANGE_MTU_RSP ) {
const AttExchangeMTU * p = static_cast<const AttExchangeMTU*>(pdu.get());
mtu = p->getMTUSize();
}
PERF_TS_TD("GATT exchangeMTU");
return mtu;
}
GATTCharacteristicRef GATTHandler::findCharacterisicsByValueHandle(const uint16_t charValueHandle) noexcept {
return findCharacterisicsByValueHandle(charValueHandle, services);
}
GATTCharacteristicRef GATTHandler::findCharacterisicsByValueHandle(const uint16_t charValueHandle, std::vector<GATTServiceRef> &services) noexcept {
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) noexcept {
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(std::shared_ptr<GATTHandler> shared_this) {
const std::lock_guard<std::recursive_mutex> lock(mtx_command); // RAII-style acquire and relinquish via destructor
if( !discoverPrimaryServices(shared_this, 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::shared_ptr<GATTHandler> shared_this, std::vector<GATTServiceRef> & result) {
{
// validate shared_this first!
GATTHandler *given_this = shared_this.get();
if( given_this != this ) {
throw IllegalArgumentException("Given shared GATTHandler reference "+aptrHexString(given_this)+" not matching this "+aptrHexString(this), E_FILE_LINE);
}
}
/***
* 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);
const std::lock_guard<std::recursive_mutex> lock(mtx_command); // RAII-style acquire and relinquish via destructor
PERF_TS_T0();
bool done=false;
uint16_t startHandle=0x0001;
result.clear();
while(!done) {
const AttReadByNTypeReq req(true /* group */, startHandle, 0xffff, groupType);
COND_PRINT(env.DEBUG_DATA, "GATT PRIM SRV discover send: %s to %s", req.toString().c_str(), deviceString.c_str());
std::shared_ptr<const AttPDUMsg> pdu = sendWithReply(req, env.GATT_READ_COMMAND_REPLY_TIMEOUT); // valid reply or exception
COND_PRINT(env.DEBUG_DATA, "GATT PRIM SRV discover recv: %s on %s", pdu->toString().c_str(), deviceString.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( shared_this, 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
) ) );
COND_PRINT(env.DEBUG_DATA, "GATT PRIM SRV discovered[%d/%d]: %s on %s", i,
count, result.at(result.size()-1)->toString().c_str(), deviceString.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 {
ERR_PRINT("GATT discoverPrimary unexpected reply %s, req %s from %s",
pdu->toString().c_str(), req.toString().c_str(), deviceString.c_str());
done = true;
}
}
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);
const std::lock_guard<std::recursive_mutex> lock(mtx_command); // RAII-style acquire and relinquish via destructor
COND_PRINT(env.DEBUG_DATA, "GATT discoverCharacteristics Service: %s on %s", service->toString().c_str(), deviceString.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);
COND_PRINT(env.DEBUG_DATA, "GATT C discover send: %s to %s", req.toString().c_str(), deviceString.c_str());
std::shared_ptr<const AttPDUMsg> pdu = sendWithReply(req, env.GATT_READ_COMMAND_REPLY_TIMEOUT); // valid reply or exception
COND_PRINT(env.DEBUG_DATA, "GATT C discover recv: %s from %s", pdu->toString().c_str(), deviceString.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
COND_PRINT(env.DEBUG_DATA, "GATT C discovered[%d/%d]: char%s on %s", e_iter, e_count,
service->characteristicList.at(service->characteristicList.size()-1)->toString().c_str(), deviceString.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 {
ERR_PRINT("GATT discoverCharacteristics unexpected reply %s, req %s within service%s from %s",
pdu->toString().c_str(), req.toString().c_str(), service->toString().c_str(), deviceString.c_str());
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>
*/
COND_PRINT(env.DEBUG_DATA, "GATT discoverDescriptors Service: %s on %s", service->toString().c_str(), deviceString.c_str());
const std::lock_guard<std::recursive_mutex> lock(mtx_command); // RAII-style acquire and relinquish via destructor
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();
COND_PRINT(env.DEBUG_DATA, "GATT discoverDescriptors Characteristic[%d/%d]: %s on %s", charIter, charCount, charDecl->toString().c_str(), deviceString.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);
COND_PRINT(env.DEBUG_DATA, "GATT CD discover send: %s", req.toString().c_str());
std::shared_ptr<const AttPDUMsg> pdu = sendWithReply(req, env.GATT_READ_COMMAND_REPLY_TIMEOUT); // valid reply or exception
COND_PRINT(env.DEBUG_DATA, "GATT CD discover recv: %s from ", pdu->toString().c_str(), deviceString.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]: descr%s within char%s on %s",
uint16HexString(cd_handle).c_str(),
uint16HexString(charDecl->value_handle).c_str(), uint16HexString(cd_handle_end).c_str(),
cd->toString().c_str(), charDecl->toString().c_str(), deviceString.c_str());
done = true;
break;
}
if( !readDescriptorValue(*cd, 0) ) {
ERR_PRINT("GATT discoverDescriptors readDescriptorValue failed: req %s, descr%s within char%s on %s",
req.toString().c_str(), cd->toString().c_str(), charDecl->toString().c_str(), deviceString.c_str());
done = true;
break;
}
if( cd->isClientCharacteristicConfiguration() ) {
charDecl->clientCharacteristicsConfigIndex = charDecl->descriptorList.size();
}
charDecl->descriptorList.push_back(cd);
COND_PRINT(env.DEBUG_DATA, "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 {
ERR_PRINT("GATT discoverDescriptors unexpected reply %s; req %s within char%s from %s",
pdu->toString().c_str(), req.toString().c_str(), charDecl->toString().c_str(), deviceString.c_str());
done = true;
}
}
}
PERF_TS_TD("GATT discoverDescriptors");
return service->characteristicList.size() > 0;
}
bool GATTHandler::readDescriptorValue(GATTDescriptor & desc, int expectedLength) {
COND_PRINT(env.DEBUG_DATA, "GATTHandler::readDescriptorValue expLen %d, desc %s", expectedLength, desc.toString().c_str());
const bool res = readValue(desc.handle, desc.value, expectedLength);
if( !res ) {
ERR_PRINT("GATT readDescriptorValue error on desc%s within char%s from %s",
desc.toString().c_str(), desc.getCharacteristicChecked()->toString().c_str(), deviceString.c_str());
}
return res;
}
bool GATTHandler::readCharacteristicValue(const GATTCharacteristic & decl, POctets & resValue, int expectedLength) {
COND_PRINT(env.DEBUG_DATA, "GATTHandler::readCharacteristicValue expLen %d, decl %s", expectedLength, decl.toString().c_str());
const bool res = readValue(decl.value_handle, resValue, expectedLength);
if( !res ) {
ERR_PRINT("GATT readCharacteristicValue error on char%s from %s", decl.toString().c_str(), deviceString.c_str());
}
return res;
}
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 */
const std::lock_guard<std::recursive_mutex> lock(mtx_command); // RAII-style acquire and relinquish via destructor
PERF2_TS_T0();
bool done=false;
int offset=0;
COND_PRINT(env.DEBUG_DATA, "GATTHandler::readValue expLen %d, handle %s from %s", expectedLength, uint16HexString(handle).c_str(), deviceString.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;
const AttReadReq req0(handle);
const AttReadBlobReq req1(handle, offset);
const AttPDUMsg & req = ( 0 == offset ) ? static_cast<const AttPDUMsg &>(req0) : static_cast<const AttPDUMsg &>(req1);
COND_PRINT(env.DEBUG_DATA, "GATT RV send: %s", req.toString().c_str());
pdu = sendWithReply(req, env.GATT_READ_COMMAND_REPLY_TIMEOUT); // valid reply or exception
COND_PRINT(env.DEBUG_DATA, "GATT RV recv: %s from %s", pdu->toString().c_str(), deviceString.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 {
ERR_PRINT("GATT readValue unexpected error %s; req %s from %s", pdu->toString().c_str(), req.toString().c_str(), deviceString.c_str());
done = true;
}
} else {
ERR_PRINT("GATT readValue unexpected reply %s; req %s from %s", pdu->toString().c_str(), req.toString().c_str(), 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 */
COND_PRINT(env.DEBUG_DATA, "GATTHandler::writeDesccriptorValue desc %s", cd.toString().c_str());
const bool res = writeValue(cd.handle, cd.value, true);
if( !res ) {
ERR_PRINT("GATT writeDescriptorValue error on desc%s within char%s from %s",
cd.toString().c_str(), cd.getCharacteristicChecked()->toString().c_str(), deviceString.c_str());
}
return res;
}
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 */
COND_PRINT(env.DEBUG_DATA, "GATTHandler::writeCharacteristicValue desc %s, value %s", c.toString().c_str(), value.toString().c_str());
const bool res = writeValue(c.value_handle, value, true);
if( !res ) {
ERR_PRINT("GATT writeCharacteristicValue error on char%s from %s", c.toString().c_str(), deviceString.c_str());
}
return res;
}
bool GATTHandler::writeCharacteristicValueNoResp(const GATTCharacteristic & c, const TROOctets & value) {
/* BT Core Spec v5.2: Vol 3, Part G GATT: 4.9.1 Write Characteristic Value Without Response */
COND_PRINT(env.DEBUG_DATA, "GATT writeCharacteristicValueNoResp decl %s, value %s", c.toString().c_str(), value.toString().c_str());
return writeValue(c.value_handle, value, false); // complete or exception
}
bool GATTHandler::writeValue(const uint16_t handle, const TROOctets & value, const bool withResponse) {
/* 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;
}
const std::lock_guard<std::recursive_mutex> lock(mtx_command); // RAII-style acquire and relinquish via destructor
// FIXME TODO: Long Value if value.getSize() > ( ATT_MTU - 3 )
PERF2_TS_T0();
if( !withResponse ) {
AttWriteCmd req(handle, value);
COND_PRINT(env.DEBUG_DATA, "GATT WV send(resp %d): %s to %s", withResponse, req.toString().c_str(), deviceString.c_str());
send( req ); // complete or exception
PERF2_TS_TD("GATT writeValue (no-resp)");
return true;
}
AttWriteReq req(handle, value);
COND_PRINT(env.DEBUG_DATA, "GATT WV send(resp %d): %s to %s", withResponse, req.toString().c_str(), deviceString.c_str());
bool res = false;
std::shared_ptr<const AttPDUMsg> pdu = sendWithReply(req, env.GATT_WRITE_COMMAND_REPLY_TIMEOUT); // valid reply or exception
COND_PRINT(env.DEBUG_DATA, "GATT WV recv: %s from %s", pdu->toString().c_str(), deviceString.c_str());
if( pdu->getOpcode() == AttPDUMsg::ATT_WRITE_RSP ) {
// OK
res = true;
} else if( pdu->getOpcode() == AttPDUMsg::ATT_ERROR_RSP ) {
ERR_PRINT("GATT writeValue unexpected error %s; req %s from %s", pdu->toString().c_str(), req.toString().c_str(), deviceString.c_str());
} else {
ERR_PRINT("GATT writeValue unexpected reply %s; req %s from %s", pdu->toString().c_str(), req.toString().c_str(), deviceString.c_str());
}
PERF2_TS_TD("GATT writeValue (with-resp)");
return res;
}
bool GATTHandler::configNotificationIndication(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 );
COND_PRINT(env.DEBUG_DATA, "GATTHandler::configNotificationIndication decl %s, enableNotification %d, enableIndication %d",
cccd.toString().c_str(), enableNotification, enableIndication);
cccd.value.resize(2, 2);
cccd.value.put_uint16_nc(0, ccc_value);
try {
return writeDescriptorValue(cccd);
} catch (BluetoothException & bte) {
if( !enableNotification && !enableIndication ) {
// OK to have lost connection @ disable
WORDY_PRINT("GATTHandler::configNotificationIndication(disable) on %s caught exception: %s", deviceString.c_str(), bte.what());
return false;
} else {
throw; // re-throw current exception
}
}
}
/*********************************************************************************************************************/
/*********************************************************************************************************************/
/*********************************************************************************************************************/
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<GattGenericAccessSvc> GATTHandler::getGenericAccess(std::vector<GATTCharacteristicRef> & genericAccessCharDeclList) {
std::shared_ptr<GattGenericAccessSvc> res = nullptr;
POctets value(number(Defaults::MAX_ATT_MTU), 0);
std::string deviceName = "";
AppearanceCat appearance = AppearanceCat::UNKNOWN;
std::shared_ptr<GattPeriphalPreferredConnectionParameters> prefConnParam = nullptr;
const std::lock_guard<std::recursive_mutex> lock(mtx_command); // RAII-style acquire and relinquish via destructor
for(size_t i=0; i<genericAccessCharDeclList.size(); i++) {
const GATTCharacteristic & charDecl = *genericAccessCharDeclList.at(i);
std::shared_ptr<GATTService> service = charDecl.getServiceUnchecked();
if( nullptr == service || _GENERIC_ACCESS != *(service->type) ) {
continue;
}
if( _DEVICE_NAME == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
deviceName = GattNameToString(value); // mandatory
}
} else if( _APPEARANCE == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) && value.getSize() >= 2 ) {
appearance = static_cast<AppearanceCat>(value.get_uint16(0)); // manatory
}
} else if( _PERIPHERAL_PREFERRED_CONNECTION_PARAMETERS == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
prefConnParam = GattPeriphalPreferredConnectionParameters::get(value); // optional
}
}
}
if( deviceName.size() > 0 ) {
res = std::shared_ptr<GattGenericAccessSvc>(new GattGenericAccessSvc(deviceName, appearance, prefConnParam));
}
return res;
}
std::shared_ptr<GattGenericAccessSvc> GATTHandler::getGenericAccess(std::vector<GATTServiceRef> & primServices) {
std::shared_ptr<GattGenericAccessSvc> res = nullptr;
for(size_t i=0; i<primServices.size() && nullptr == res; i++) {
res = getGenericAccess(primServices.at(i)->characteristicList);
}
return res;
}
bool GATTHandler::ping() {
const std::lock_guard<std::recursive_mutex> lock(mtx_command); // RAII-style acquire and relinquish via destructor
bool isOK = true;
for(size_t i=0; isOK && i<services.size(); i++) {
std::vector<GATTCharacteristicRef> & genericAccessCharDeclList = services.at(i)->characteristicList;
POctets value(32, 0);
for(size_t i=0; isOK && i<genericAccessCharDeclList.size(); i++) {
const GATTCharacteristic & charDecl = *genericAccessCharDeclList.at(i);
std::shared_ptr<GATTService> service = charDecl.getServiceUnchecked();
if( nullptr == service || _GENERIC_ACCESS != *(service->type) ) {
continue;
}
if( _APPEARANCE == *charDecl.value_type ) {
if( readCharacteristicValue(charDecl, value.resize(0)) ) {
return true; // unique success case
}
// read failure, but not disconnected as no exception thrown from sendWithReply
isOK = false;
}
}
}
if( isOK ) {
INFO_PRINT("GATTHandler::pingGATT: No GENERIC_ACCESS Service with APPEARANCE Characteristic available -> disconnect");
} else {
INFO_PRINT("GATTHandler::pingGATT: Read error -> disconnect");
}
disconnect(true /* disconnectDevice */, true /* ioErrorCause */); // state -> Disconnected
return false;
}
std::shared_ptr<GattDeviceInformationSvc> GATTHandler::getDeviceInformation(std::vector<GATTCharacteristicRef> & characteristicDeclList) {
std::shared_ptr<GattDeviceInformationSvc> 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);
std::shared_ptr<GattPnP_ID> pnpID = nullptr;
bool found = false;
const std::lock_guard<std::recursive_mutex> lock(mtx_command); // RAII-style acquire and relinquish via destructor
for(size_t i=0; i<characteristicDeclList.size(); i++) {
const GATTCharacteristic & charDecl = *characteristicDeclList.at(i);
std::shared_ptr<GATTService> service = charDecl.getServiceUnchecked();
if( nullptr == service || _DEVICE_INFORMATION != *(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 = GattPnP_ID::get(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( found ) {
res = std::shared_ptr<GattDeviceInformationSvc>(new GattDeviceInformationSvc(systemID, modelNumber, serialNumber,
firmwareRevision, hardwareRevision, softwareRevision,
manufacturer, regulatoryCertDataList, pnpID) );
}
return res;
}
std::shared_ptr<GattDeviceInformationSvc> GATTHandler::getDeviceInformation(std::vector<GATTServiceRef> & primServices) {
std::shared_ptr<GattDeviceInformationSvc> res = nullptr;
for(size_t i=0; i<primServices.size() && nullptr == res; i++) {
res = getDeviceInformation(primServices.at(i)->characteristicList);
}
return res;
}
|