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
|
/******************************************************************************
*
* Copyright 1999-2012 Broadcom Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
******************************************************************************/
/******************************************************************************
*
* This file contains functions for the SMP L2Cap interface
*
******************************************************************************/
#define LOG_TAG "smp"
#include <bluetooth/log.h>
#include <com_android_bluetooth_flags.h>
#include "internal_include/bt_target.h"
#include "osi/include/allocator.h"
#include "smp_int.h"
#include "stack/btm/btm_dev.h"
#include "stack/include/bt_hdr.h"
#include "stack/include/bt_types.h"
#include "stack/include/l2cap_interface.h"
#include "stack/include/l2cdefs.h"
#include "types/raw_address.h"
using namespace bluetooth;
static void smp_tx_complete_callback(uint16_t cid, uint16_t num_pkt);
static void smp_connect_callback(uint16_t channel, const RawAddress& bd_addr, bool connected,
uint16_t reason, tBT_TRANSPORT transport);
static void smp_data_received(uint16_t channel, const RawAddress& bd_addr, BT_HDR* p_buf);
static void smp_br_connect_callback(uint16_t channel, const RawAddress& bd_addr, bool connected,
uint16_t reason, tBT_TRANSPORT transport);
static void smp_br_data_received(uint16_t channel, const RawAddress& bd_addr, BT_HDR* p_buf);
/*******************************************************************************
*
* Function smp_l2cap_if_init
*
* Description This function is called during the SMP task startup
* to register interface functions with L2CAP.
*
******************************************************************************/
void smp_l2cap_if_init(void) {
tL2CAP_FIXED_CHNL_REG fixed_reg;
log::verbose("SMDBG l2c");
fixed_reg.pL2CA_FixedConn_Cb = smp_connect_callback;
fixed_reg.pL2CA_FixedData_Cb = smp_data_received;
fixed_reg.pL2CA_FixedTxComplete_Cb = smp_tx_complete_callback;
fixed_reg.pL2CA_FixedCong_Cb = NULL; /* do not handle congestion on this channel */
fixed_reg.default_idle_tout = 60; /* set 60 seconds timeout, 0xffff default idle timeout */
if (!stack::l2cap::get_interface().L2CA_RegisterFixedChannel(L2CAP_SMP_CID, &fixed_reg)) {
log::error("Unable to register with L2CAP fixed channel profile SMP psm:{}", L2CAP_SMP_CID);
}
fixed_reg.pL2CA_FixedConn_Cb = smp_br_connect_callback;
fixed_reg.pL2CA_FixedData_Cb = smp_br_data_received;
if (!stack::l2cap::get_interface().L2CA_RegisterFixedChannel(L2CAP_SMP_BR_CID, &fixed_reg)) {
log::error("Unable to register with L2CAP fixed channel profile SMP_BR psm:{}",
L2CAP_SMP_BR_CID);
}
}
/*******************************************************************************
*
* Function smp_connect_callback
*
* Description This callback function is called by L2CAP to indicate that
* SMP channel is
* connected (conn = true)/disconnected (conn = false).
*
******************************************************************************/
static void smp_connect_callback(uint16_t /* channel */, const RawAddress& bd_addr, bool connected,
uint16_t /* reason */, tBT_TRANSPORT transport) {
tSMP_CB* p_cb = &smp_cb;
tSMP_INT_DATA int_data;
log::debug("bd_addr:{} transport:{}, connected:{}", bd_addr, bt_transport_text(transport),
connected);
if (bd_addr.IsEmpty()) {
log::warn("empty address");
return;
}
if (transport == BT_TRANSPORT_BR_EDR) {
log::warn("unexpected transport");
return;
}
if (bd_addr == p_cb->pairing_bda) {
log::debug("in pairing process");
if (connected) {
if (!p_cb->connect_initialized) {
p_cb->connect_initialized = true;
/* initiating connection established */
p_cb->role = stack::l2cap::get_interface().L2CA_GetBleConnRole(bd_addr);
/* initialize local i/r key to be default keys */
p_cb->local_r_key = p_cb->local_i_key = SMP_SEC_DEFAULT_KEY;
p_cb->loc_auth_req = p_cb->peer_auth_req = SMP_DEFAULT_AUTH_REQ;
p_cb->cb_evt = SMP_IO_CAP_REQ_EVT;
smp_sm_event(p_cb, SMP_L2CAP_CONN_EVT, NULL);
}
} else {
/* Disconnected while doing security */
smp_sm_event(p_cb, SMP_L2CAP_DISCONN_EVT, &int_data);
}
}
}
/*******************************************************************************
*
* Function smp_data_received
*
* Description This function is called when data is received from L2CAP on
* SMP channel.
*
*
* Returns void
*
******************************************************************************/
static void smp_data_received(uint16_t channel, const RawAddress& bd_addr, BT_HDR* p_buf) {
tSMP_CB* p_cb = &smp_cb;
uint8_t* p = (uint8_t*)(p_buf + 1) + p_buf->offset;
uint8_t cmd;
if (p_buf->len < 1) {
log::warn("packet too short");
osi_free(p_buf);
return;
}
STREAM_TO_UINT8(cmd, p);
log::verbose("cmd={}[0x{:02x}]", smp_opcode_text(static_cast<tSMP_OPCODE>(cmd)), cmd);
/* sanity check */
if ((SMP_OPCODE_MAX < cmd) || (SMP_OPCODE_MIN > cmd)) {
log::warn("invalid command");
osi_free(p_buf);
return;
}
/* reject the pairing request if there is an on-going SMP pairing */
if (SMP_OPCODE_PAIRING_REQ == cmd || SMP_OPCODE_SEC_REQ == cmd) {
if ((p_cb->state == SMP_STATE_IDLE) && (p_cb->br_state == SMP_BR_STATE_IDLE) &&
!(p_cb->flags & SMP_PAIR_FLAGS_WE_STARTED_DD)) {
p_cb->role = bluetooth::stack::l2cap::get_interface().L2CA_GetBleConnRole(bd_addr);
p_cb->pairing_bda = bd_addr;
} else if (bd_addr != p_cb->pairing_bda) {
osi_free(p_buf);
smp_reject_unexpected_pairing_command(bd_addr);
return;
}
/* else, out of state pairing request/security request received, passed into
* SM */
}
if (bd_addr == p_cb->pairing_bda) {
alarm_set_on_mloop(p_cb->smp_rsp_timer_ent, SMP_WAIT_FOR_RSP_TIMEOUT_MS, smp_rsp_timeout, NULL);
smp_log_metrics(p_cb->pairing_bda, false /* incoming */, p_buf->data + p_buf->offset,
p_buf->len, false /* is_over_br */);
if (cmd == SMP_OPCODE_CONFIRM) {
log::verbose("peer_auth_req=0x{:02x}, loc_auth_req=0x{:02x}", p_cb->peer_auth_req,
p_cb->loc_auth_req);
if ((p_cb->peer_auth_req & SMP_SC_SUPPORT_BIT) && (p_cb->loc_auth_req & SMP_SC_SUPPORT_BIT)) {
cmd = SMP_OPCODE_PAIR_COMMITM;
}
}
p_cb->rcvd_cmd_code = cmd;
p_cb->rcvd_cmd_len = (uint8_t)p_buf->len;
tSMP_INT_DATA smp_int_data;
smp_int_data.p_data = p;
smp_sm_event(p_cb, static_cast<tSMP_EVENT>(cmd), &smp_int_data);
} else {
if (!stack::l2cap::get_interface().L2CA_RemoveFixedChnl(channel, bd_addr)) {
log::error("Unable to remove fixed channel peer:{} cid:{}", bd_addr, channel);
}
}
osi_free(p_buf);
}
/*******************************************************************************
*
* Function smp_tx_complete_callback
*
* Description SMP channel tx complete callback
*
******************************************************************************/
static void smp_tx_complete_callback(uint16_t cid, uint16_t num_pkt) {
tSMP_CB* p_cb = &smp_cb;
if (!com::android::bluetooth::flags::l2cap_tx_complete_cb_info()) {
log::verbose("Exit since l2cap_tx_complete_cb_info is disabled");
return;
}
log::verbose("l2cap_tx_complete_cb_info is enabled, continue");
if (p_cb->total_tx_unacked >= num_pkt) {
p_cb->total_tx_unacked -= num_pkt;
} else {
log::error("Unexpected complete callback: num_pkt = {}", num_pkt);
}
if (p_cb->total_tx_unacked == 0 && p_cb->wait_for_authorization_complete) {
tSMP_INT_DATA smp_int_data;
smp_int_data.status = SMP_SUCCESS;
if (cid == L2CAP_SMP_CID) {
smp_sm_event(p_cb, SMP_AUTH_CMPL_EVT, &smp_int_data);
} else {
smp_br_state_machine_event(p_cb, SMP_BR_AUTH_CMPL_EVT, &smp_int_data);
}
}
}
/*******************************************************************************
*
* Function smp_br_connect_callback
*
* Description This callback function is called by L2CAP to indicate that
* SMP BR channel is
* connected (conn = true)/disconnected (conn = false).
*
******************************************************************************/
static void smp_br_connect_callback(uint16_t /* channel */, const RawAddress& bd_addr,
bool connected, uint16_t /* reason */,
tBT_TRANSPORT transport) {
tSMP_CB* p_cb = &smp_cb;
tSMP_INT_DATA int_data;
if (transport != BT_TRANSPORT_BR_EDR) {
log::warn("unexpected transport {}", bt_transport_text(transport));
return;
}
log::info("BDA:{} pairing_bda:{}, connected:{}", bd_addr, p_cb->pairing_bda, connected);
if (bd_addr != p_cb->pairing_bda) {
tBTM_SEC_DEV_REC* p_dev_rec = btm_find_dev(bd_addr);
/* When pairing was initiated to RPA, and connection was on LE transport first using RPA, then
* we must check record pseudo address, it might be same device */
if (p_dev_rec == nullptr || p_dev_rec->RemoteAddress() != p_cb->pairing_bda) {
return;
}
}
/* Check if we already finished SMP pairing over LE, and are waiting to
* check if other side returns some errors. Connection/disconnection on
* Classic transport shouldn't impact that.
*/
tBTM_SEC_DEV_REC* p_dev_rec = btm_find_dev(p_cb->pairing_bda);
if ((smp_get_state() == SMP_STATE_BOND_PENDING || smp_get_state() == SMP_STATE_IDLE) &&
(p_dev_rec && p_dev_rec->sec_rec.is_link_key_known()) &&
alarm_is_scheduled(p_cb->delayed_auth_timer_ent)) {
/* If we were to not return here, we would reset SMP control block, and
* delayed_auth_timer_ent would never be executed. Even though we stored all
* keys, stack would consider device as not bonded. It would reappear after
* stack restart, when we re-read record from storage. Service discovery
* would stay broken.
*/
log::info("Classic event after CTKD on LE transport");
return;
}
if (connected) {
if (!p_cb->connect_initialized) {
p_cb->connect_initialized = true;
/* initialize local i/r key to be default keys */
p_cb->local_r_key = p_cb->local_i_key = SMP_BR_SEC_DEFAULT_KEY;
p_cb->loc_auth_req = p_cb->peer_auth_req = 0;
p_cb->cb_evt = SMP_BR_KEYS_REQ_EVT;
smp_br_state_machine_event(p_cb, SMP_BR_L2CAP_CONN_EVT, NULL);
}
} else {
/* Disconnected while doing security */
if (p_cb->smp_over_br) {
log::debug("SMP over BR/EDR not supported, terminate the ongoing pairing");
smp_br_state_machine_event(p_cb, SMP_BR_L2CAP_DISCONN_EVT, &int_data);
} else {
log::debug("SMP over BR/EDR not supported, continue the LE pairing");
}
}
}
/*******************************************************************************
*
* Function smp_br_data_received
*
* Description This function is called when data is received from L2CAP on
* SMP BR channel.
*
* Returns void
*
******************************************************************************/
static void smp_br_data_received(uint16_t /* channel */, const RawAddress& bd_addr, BT_HDR* p_buf) {
tSMP_CB* p_cb = &smp_cb;
uint8_t* p = (uint8_t*)(p_buf + 1) + p_buf->offset;
uint8_t cmd;
log::verbose("SMDBG l2c");
if (p_buf->len < 1) {
log::warn("packet too short");
osi_free(p_buf);
return;
}
STREAM_TO_UINT8(cmd, p);
log::verbose("cmd={}[0x{:02x}]", smp_opcode_text(static_cast<tSMP_OPCODE>(cmd)), cmd);
/* sanity check */
if ((SMP_OPCODE_MAX < cmd) || (SMP_OPCODE_MIN > cmd)) {
log::warn("invalid command 0x{:02x}", cmd);
osi_free(p_buf);
return;
}
/* reject the pairing request if there is an on-going SMP pairing */
if (SMP_OPCODE_PAIRING_REQ == cmd) {
if ((p_cb->state == SMP_STATE_IDLE) && (p_cb->br_state == SMP_BR_STATE_IDLE)) {
p_cb->role = HCI_ROLE_PERIPHERAL;
p_cb->smp_over_br = true;
p_cb->pairing_bda = bd_addr;
} else if (bd_addr != p_cb->pairing_bda) {
osi_free(p_buf);
smp_reject_unexpected_pairing_command(bd_addr);
return;
}
/* else, out of state pairing request received, passed into State Machine */
}
if (bd_addr == p_cb->pairing_bda) {
alarm_set_on_mloop(p_cb->smp_rsp_timer_ent, SMP_WAIT_FOR_RSP_TIMEOUT_MS, smp_rsp_timeout, NULL);
smp_log_metrics(p_cb->pairing_bda, false /* incoming */, p_buf->data + p_buf->offset,
p_buf->len, true /* is_over_br */);
p_cb->rcvd_cmd_code = cmd;
p_cb->rcvd_cmd_len = (uint8_t)p_buf->len;
tSMP_INT_DATA smp_int_data;
smp_int_data.p_data = p;
smp_br_state_machine_event(p_cb, static_cast<tSMP_EVENT>(cmd), &smp_int_data);
}
osi_free(p_buf);
}
|