blob: f304e60ff5511b58ecd8afcc89e687f129a999f6 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "fake_peer.h"
#include <endian.h>
#include <zircon/assert.h>
#include <zircon/syscalls.h>
#include "fake_controller.h"
#include "src/connectivity/bluetooth/core/bt-host/common/log.h"
#include "src/connectivity/bluetooth/core/bt-host/common/packet_view.h"
#include "src/connectivity/bluetooth/core/bt-host/l2cap/l2cap_defs.h"
namespace bt::testing {
namespace {
void WriteRandomRSSI(int8_t* out_mem) {
constexpr int8_t kRSSIMin = -127;
constexpr int8_t kRSSIMax = 20;
int8_t rssi;
zx_cprng_draw(reinterpret_cast<unsigned char*>(&rssi), sizeof(rssi));
rssi = (rssi % (kRSSIMax - kRSSIMin)) + kRSSIMin;
*out_mem = rssi;
}
} // namespace
FakePeer::FakePeer(const DeviceAddress& address, bool connectable, bool scannable)
: ctrl_(nullptr),
address_(address),
name_("FakePeer"),
connected_(false),
connectable_(connectable),
scannable_(scannable),
advertising_enabled_(true),
directed_(false),
address_resolved_(false),
connect_status_(hci::StatusCode::kSuccess),
connect_response_(hci::StatusCode::kSuccess),
force_pending_connect_(false),
supports_ll_conn_update_procedure_(true),
le_features_(hci::LESupportedFeatures{0}),
should_batch_reports_(false),
l2cap_(fit::bind_member(this, &FakePeer::SendPacket)),
gatt_server_(this) {
signaling_server_.RegisterWithL2cap(&l2cap_);
gatt_server_.RegisterWithL2cap(&l2cap_);
sdp_server_.RegisterWithL2cap(&l2cap_);
};
void FakePeer::SetAdvertisingData(const ByteBuffer& data) {
ZX_DEBUG_ASSERT(data.size() <= hci::kMaxLEAdvertisingDataLength);
adv_data_ = DynamicByteBuffer(data);
}
void FakePeer::SetScanResponse(bool should_batch_reports, const ByteBuffer& data) {
ZX_DEBUG_ASSERT(scannable_);
ZX_DEBUG_ASSERT(data.size() <= hci::kMaxLEAdvertisingDataLength);
scan_rsp_ = DynamicByteBuffer(data);
should_batch_reports_ = should_batch_reports;
}
DynamicByteBuffer FakePeer::CreateInquiryResponseEvent(hci::InquiryMode mode) const {
ZX_DEBUG_ASSERT(address_.type() == DeviceAddress::Type::kBREDR);
size_t param_size;
if (mode == hci::InquiryMode::kStandard) {
param_size = sizeof(hci::InquiryResultEventParams) + sizeof(hci::InquiryResult);
} else {
param_size = sizeof(hci::InquiryResultWithRSSIEventParams) + sizeof(hci::InquiryResultRSSI);
}
DynamicByteBuffer buffer(sizeof(hci::EventHeader) + param_size);
MutablePacketView<hci::EventHeader> event(&buffer, param_size);
event.mutable_header()->parameter_total_size = param_size;
// TODO(jamuraa): simultate clock offset and RSSI
if (mode == hci::InquiryMode::kStandard) {
event.mutable_header()->event_code = hci::kInquiryResultEventCode;
auto payload = event.mutable_payload<hci::InquiryResultEventParams>();
payload->num_responses = 1u;
auto inq_result = reinterpret_cast<hci::InquiryResult*>(payload->responses);
inq_result->bd_addr = address_.value();
inq_result->page_scan_repetition_mode = hci::PageScanRepetitionMode::kR0;
inq_result->class_of_device = class_of_device_;
inq_result->clock_offset = 0;
} else {
event.mutable_header()->event_code = hci::kInquiryResultWithRSSIEventCode;
auto payload = event.mutable_payload<hci::InquiryResultWithRSSIEventParams>();
payload->num_responses = 1u;
auto inq_result = reinterpret_cast<hci::InquiryResultRSSI*>(payload->responses);
inq_result->bd_addr = address_.value();
inq_result->page_scan_repetition_mode = hci::PageScanRepetitionMode::kR0;
inq_result->class_of_device = class_of_device_;
inq_result->clock_offset = 0;
inq_result->rssi = -30;
}
return buffer;
}
DynamicByteBuffer FakePeer::CreateAdvertisingReportEvent(bool include_scan_rsp) const {
size_t param_size = sizeof(hci::LEMetaEventParams) +
sizeof(hci::LEAdvertisingReportSubeventParams) +
sizeof(hci::LEAdvertisingReportData) + adv_data_.size() + sizeof(int8_t);
if (include_scan_rsp) {
ZX_DEBUG_ASSERT(scannable_);
param_size += sizeof(hci::LEAdvertisingReportData) + scan_rsp_.size() + sizeof(int8_t);
}
DynamicByteBuffer buffer(sizeof(hci::EventHeader) + param_size);
MutablePacketView<hci::EventHeader> event(&buffer, param_size);
event.mutable_header()->event_code = hci::kLEMetaEventCode;
event.mutable_header()->parameter_total_size = param_size;
auto payload = event.mutable_payload<hci::LEMetaEventParams>();
payload->subevent_code = hci::kLEAdvertisingReportSubeventCode;
auto subevent_payload =
reinterpret_cast<hci::LEAdvertisingReportSubeventParams*>(payload->subevent_parameters);
subevent_payload->num_reports = include_scan_rsp ? 2 : 1;
auto report = reinterpret_cast<hci::LEAdvertisingReportData*>(subevent_payload->reports);
if (directed_) {
report->event_type = hci::LEAdvertisingEventType::kAdvDirectInd;
} else if (connectable_) {
report->event_type = hci::LEAdvertisingEventType::kAdvInd;
} else if (scannable_) {
report->event_type = hci::LEAdvertisingEventType::kAdvScanInd;
} else {
report->event_type = hci::LEAdvertisingEventType::kAdvNonConnInd;
}
if (address_.type() == DeviceAddress::Type::kLERandom) {
report->address_type =
address_resolved_ ? hci::LEAddressType::kRandomIdentity : hci::LEAddressType::kRandom;
} else {
report->address_type =
address_resolved_ ? hci::LEAddressType::kPublicIdentity : hci::LEAddressType::kPublic;
}
report->address = address_.value();
report->length_data = adv_data_.size();
std::memcpy(report->data, adv_data_.data(), adv_data_.size());
WriteRandomRSSI(reinterpret_cast<int8_t*>(report->data + report->length_data));
if (include_scan_rsp) {
WriteScanResponseReport(reinterpret_cast<hci::LEAdvertisingReportData*>(
report->data + report->length_data + sizeof(int8_t)));
}
return buffer;
}
DynamicByteBuffer FakePeer::CreateScanResponseReportEvent() const {
ZX_DEBUG_ASSERT(scannable_);
size_t param_size = sizeof(hci::LEMetaEventParams) +
sizeof(hci::LEAdvertisingReportSubeventParams) +
sizeof(hci::LEAdvertisingReportData) + scan_rsp_.size() + sizeof(int8_t);
DynamicByteBuffer buffer(sizeof(hci::EventHeader) + param_size);
MutablePacketView<hci::EventHeader> event(&buffer, param_size);
event.mutable_header()->event_code = hci::kLEMetaEventCode;
event.mutable_header()->parameter_total_size = param_size;
auto payload = event.mutable_payload<hci::LEMetaEventParams>();
payload->subevent_code = hci::kLEAdvertisingReportSubeventCode;
auto subevent_payload =
reinterpret_cast<hci::LEAdvertisingReportSubeventParams*>(payload->subevent_parameters);
subevent_payload->num_reports = 1;
auto report = reinterpret_cast<hci::LEAdvertisingReportData*>(subevent_payload->reports);
WriteScanResponseReport(report);
return buffer;
}
void FakePeer::AddLink(hci::ConnectionHandle handle) {
ZX_DEBUG_ASSERT(!HasLink(handle));
logical_links_.insert(handle);
if (logical_links_.size() == 1u) {
set_connected(true);
}
}
void FakePeer::RemoveLink(hci::ConnectionHandle handle) {
ZX_DEBUG_ASSERT(HasLink(handle));
logical_links_.erase(handle);
if (logical_links_.empty())
set_connected(false);
}
bool FakePeer::HasLink(hci::ConnectionHandle handle) const {
return logical_links_.count(handle) != 0u;
}
FakePeer::HandleSet FakePeer::Disconnect() {
set_connected(false);
return std::move(logical_links_);
}
void FakePeer::WriteScanResponseReport(hci::LEAdvertisingReportData* report) const {
ZX_DEBUG_ASSERT(scannable_);
report->event_type = hci::LEAdvertisingEventType::kScanRsp;
report->address_type = (address_.type() == DeviceAddress::Type::kLERandom)
? hci::LEAddressType::kRandom
: hci::LEAddressType::kPublic;
report->address = address_.value();
report->length_data = scan_rsp_.size();
std::memcpy(report->data, scan_rsp_.data(), scan_rsp_.size());
WriteRandomRSSI(reinterpret_cast<int8_t*>(report->data + report->length_data));
}
void FakePeer::OnRxL2CAP(hci::ConnectionHandle conn, const ByteBuffer& pdu) {
if (pdu.size() < sizeof(l2cap::BasicHeader)) {
bt_log(WARN, "fake-hci", "malformed L2CAP packet!");
return;
}
l2cap_.HandlePdu(conn, pdu);
}
void FakePeer::SendPacket(hci::ConnectionHandle conn, l2cap::ChannelId cid,
const ByteBuffer& packet) {
ctrl()->SendL2CAPBFrame(conn, cid, packet);
}
} // namespace bt::testing