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
|
/*
* 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
// PERF2_PRINT_ON for read/write single values
// #define PERF2_PRINT_ON 1
// PERF3_PRINT_ON for disconnect
// #define PERF3_PRINT_ON 1
#include <jau/debug.hpp>
#include <jau/basic_algos.hpp>
#include "L2CAPIoctl.hpp"
#include "SMPHandler.hpp"
#include "BTDevice.hpp"
#include "BTAdapter.hpp"
#include "DBTConst.hpp"
using namespace direct_bt;
SMPEnv::SMPEnv() noexcept
: exploding( jau::environment::getExplodingProperties("direct_bt.smp") ),
SMP_READ_COMMAND_REPLY_TIMEOUT( jau::environment::getInt32Property("direct_bt.smp.cmd.read.timeout", 500, 250 /* min */, INT32_MAX /* max */) ),
SMP_WRITE_COMMAND_REPLY_TIMEOUT( jau::environment::getInt32Property("direct_bt.smp.cmd.write.timeout", 500, 250 /* min */, INT32_MAX /* max */) ),
SMPPDU_RING_CAPACITY( jau::environment::getInt32Property("direct_bt.smp.ringsize", 128, 64 /* min */, 1024 /* max */) ),
DEBUG_DATA( jau::environment::getBooleanProperty("direct_bt.debug.smp.data", false) )
{
}
bool SMPHandler::IS_SUPPORTED_BY_OS = SMP_SUPPORTED_BY_OS ? true : false;
std::shared_ptr<BTDevice> SMPHandler::getDeviceChecked() const {
std::shared_ptr<BTDevice> ref = wbr_device.lock();
if( nullptr == ref ) {
throw jau::IllegalStateException("SMPHandler's device already destructed: "+deviceString, E_FILE_LINE);
}
return ref;
}
bool SMPHandler::validateConnected() noexcept {
bool l2capIsConnected = l2cap.is_open();
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;
}
void SMPHandler::smpReaderWork(jau::service_runner& sr) noexcept {
jau::snsize_t len;
if( !validateConnected() ) {
ERR_PRINT("SMPHandler::reader: Invalid IO state -> Stop");
sr.set_shall_stop();
return;
}
len = l2cap.read(rbuffer.get_wptr(), rbuffer.size());
if( 0 < len ) {
std::unique_ptr<const SMPPDUMsg> smpPDU = SMPPDUMsg::getSpecialized(rbuffer.get_ptr(), static_cast<jau::nsize_t>(len));
const SMPPDUMsg::Opcode opc = smpPDU->getOpcode();
if( SMPPDUMsg::Opcode::SECURITY_REQUEST == opc ) {
COND_PRINT(env.DEBUG_DATA, "SMPHandler-IO RECV (SEC_REQ) %s", smpPDU->toString().c_str());
jau::for_each_fidelity(smpSecurityReqCallbackList, [&](SMPSecurityReqCallback &cb) {
cb(*smpPDU);
});
} else {
COND_PRINT(env.DEBUG_DATA, "SMPHandler-IO RECV (MSG) %s", smpPDU->toString().c_str());
if( smpPDURing.isFull() ) {
const jau::nsize_t dropCount = smpPDURing.capacity()/4;
smpPDURing.drop(dropCount);
WARN_PRINT("SMPHandler-IO RECV Drop (%u oldest elements of %u capacity, ring full)", dropCount, smpPDURing.capacity());
}
smpPDURing.putBlocking( std::move(smpPDU) );
}
} else if( 0 > len && ETIMEDOUT != errno && !l2cap.interrupted() ) { // expected exits
IRQ_PRINT("SMPHandler::reader: l2cap read error -> Stop; l2cap.read %d (%s); %s",
len, L2CAPClient::getRWExitCodeString(len).c_str(),
getStateString().c_str());
sr.set_shall_stop();
has_ioerror = true;
} else if( len != L2CAPClient::number(L2CAPClient::RWExitCode::POLL_TIMEOUT) ) { // expected POLL_TIMEOUT if idle
WORDY_PRINT("SMPHandler::reader: l2cap read: l2cap.read %d (%s); %s",
len, L2CAPClient::getRWExitCodeString(len).c_str(),
getStateString().c_str());
}
}
void SMPHandler::smpReaderEndLocked(jau::service_runner& sr) noexcept {
(void)sr;
WORDY_PRINT("SMPHandler::reader: Ended. Ring has %u entries flushed", smpPDURing.size());
smpPDURing.clear();
#if 0
// Disabled: BT host is sending out disconnect -> simplify tear down
if( has_ioerror ) {
// Don't rely on receiving a disconnect
BTDeviceRef device = getDeviceUnchecked();
if( nullptr != device ) {
std::thread dc(&BTDevice::disconnect, device.get(), HCIStatusCode::REMOTE_DEVICE_TERMINATED_CONNECTION_POWER_OFF);
dc.detach();
}
}
#endif
}
SMPHandler::SMPHandler(const std::shared_ptr<BTDevice> &device) noexcept
: env(SMPEnv::get()),
wbr_device(device), deviceString(device->getAddressAndType().toString()),
rbuffer(number(Defaults::SMP_MTU_BUFFER_SZ), jau::endian::little),
l2cap(device->getAdapter().dev_id, device->getAdapter().getAddressAndType(), L2CAP_PSM::UNDEFINED, L2CAP_CID::SMP),
is_connected(l2cap.open(*device)), has_ioerror(false),
smp_reader_service("SMPHandler::reader", THREAD_SHUTDOWN_TIMEOUT_MS,
jau::bindMemberFunc(this, &SMPHandler::smpReaderWork),
jau::service_runner::Callback() /* init */,
jau::bindMemberFunc(this, &SMPHandler::smpReaderEndLocked)),
smpPDURing(env.SMPPDU_RING_CAPACITY),
mtu(number(Defaults::MIN_SMP_MTU))
{
if( !validateConnected() ) {
ERR_PRINT("SMPHandler.ctor: L2CAP could not connect");
is_connected = false;
return;
}
DBG_PRINT("SMPHandler::ctor: Start Connect: GattHandler[%s], l2cap[%s]: %s",
getStateString().c_str(), l2cap.getStateString().c_str(), deviceString.c_str());
l2cap.set_interrupted_query( jau::bindMemberFunc(&smp_reader_service, &jau::service_runner::shall_stop2) );
smp_reader_service.start();
// FIXME: Determine proper MTU usage: Defaults::MIN_SMP_MTU or Defaults::LE_SECURE_SMP_MTU (if enabled)
uint16_t mtu_ = number(Defaults::MIN_SMP_MTU);
mtu = std::min(number(Defaults::LE_SECURE_SMP_MTU), (int)mtu_);
}
SMPHandler::~SMPHandler() noexcept {
disconnect(false /* disconnectDevice */, false /* ioErrorCause */);
clearAllCallbacks();
}
bool SMPHandler::establishSecurity(const BTSecurityLevel sec_level) {
// FIXME: Start negotiating security!
// FIXME: Return true only if security has been established (encryption and optionally authentication)
(void)sec_level;
return false;
}
bool SMPHandler::disconnect(const bool disconnectDevice, const bool ioErrorCause) noexcept {
PERF3_TS_T0();
// 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
const bool smp_service_stopped = smp_reader_service.join(); // [data] race: wait until disconnecting thread has stopped service
l2cap.close();
DBG_PRINT("SMPHandler::disconnect: Not connected: disconnectDevice %d, ioErrorCause %d: GattHandler[%s], l2cap[%s], stopped %d: %s",
disconnectDevice, ioErrorCause, getStateString().c_str(), l2cap.getStateString().c_str(),
smp_service_stopped, deviceString.c_str());
clearAllCallbacks();
return false;
}
PERF3_TS_TD("SMPHandler::disconnect.1");
const bool smp_service_stop_res = smp_reader_service.stop();
l2cap.close();
PERF3_TS_TD("SMPHandler::disconnect.2");
// 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
DBG_PRINT("SMPHandler::disconnect: Start: disconnectDevice %d, ioErrorCause %d: GattHandler[%s], l2cap[%s]: %s",
disconnectDevice, ioErrorCause, getStateString().c_str(), l2cap.getStateString().c_str(), deviceString.c_str());
clearAllCallbacks();
DBG_PRINT("SMPHandler::disconnect: End: stopped %d, %s", smp_service_stop_res, deviceString.c_str());
if( disconnectDevice ) {
std::shared_ptr<BTDevice> 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);
}
}
return true;
}
void SMPHandler::send(const SMPPDUMsg & msg) {
if( !validateConnected() ) {
throw jau::IllegalStateException("SMPHandler::send: Invalid IO State: req "+msg.toString()+" to "+deviceString, E_FILE_LINE);
}
if( msg.pdu.size() > mtu ) {
throw jau::IllegalArgumentException("clientMaxMTU "+std::to_string(msg.pdu.size())+" > usedMTU "+std::to_string(mtu)+
" to "+deviceString, E_FILE_LINE);
}
// Thread safe l2cap.write(..) operation..
const jau::snsize_t res = l2cap.write(msg.pdu.get_ptr(), msg.pdu.size());
if( 0 > res ) {
IRQ_PRINT("SMPHandler::send: l2cap write error -> disconnect: l2cap.write %d (%s); %s; %s to %s",
res, L2CAPClient::getRWExitCodeString(res).c_str(), getStateString().c_str(),
msg.toString().c_str(), deviceString.c_str());
has_ioerror = true;
disconnect(true /* disconnectDevice */, true /* ioErrorCause */); // state -> Disconnected
throw BTException("SMPHandler::send: l2cap write error: req "+msg.toString()+" to "+deviceString, E_FILE_LINE);
}
if( static_cast<size_t>(res) != msg.pdu.size() ) {
ERR_PRINT("SMPHandler::send: l2cap write count error, %d != %zu: %s -> disconnect: %s",
res, msg.pdu.size(), msg.toString().c_str(), deviceString.c_str());
has_ioerror = true;
disconnect(true /* disconnectDevice */, true /* ioErrorCause */); // state -> Disconnected
throw BTException("SMPHandler::send: l2cap write count error, "+std::to_string(res)+" != "+std::to_string(msg.pdu.size())
+": "+msg.toString()+" -> disconnect: "+deviceString, E_FILE_LINE);
}
}
std::unique_ptr<const SMPPDUMsg> SMPHandler::sendWithReply(const SMPPDUMsg & msg, const int timeout) {
send( msg );
// Ringbuffer read is thread safe
std::unique_ptr<const SMPPDUMsg> res;
if( !smpPDURing.getBlocking(res, timeout) || nullptr == res ) {
errno = ETIMEDOUT;
IRQ_PRINT("SMPHandler::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 BTException("SMPHandler::sendWithReply: nullptr result (timeout "+std::to_string(timeout)+"): req "+msg.toString()+" to "+deviceString, E_FILE_LINE);
}
return res;
}
/**
* SMPSecurityReqCallback handling
*/
static SMPSecurityReqCallbackList::equal_comparator _changedSMPSecurityReqCallbackEqComp =
[](const SMPSecurityReqCallback& a, const SMPSecurityReqCallback& b) -> bool { return a == b; };
void SMPHandler::addSMPSecurityReqCallback(const SMPSecurityReqCallback & l) {
smpSecurityReqCallbackList.push_back(l);
}
int SMPHandler::removeSMPSecurityReqCallback(const SMPSecurityReqCallback & l) {
return smpSecurityReqCallbackList.erase_matching(l, true /* all_matching */, _changedSMPSecurityReqCallbackEqComp);
}
void SMPHandler::clearAllCallbacks() noexcept {
smpSecurityReqCallbackList.clear();
}
|