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
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/quick_pair/scanning/fast_pair/fast_pair_discoverable_scanner_impl.h"
#include <cstdint>
#include <memory>
#include <optional>
#include <vector>
#include "ash/constants/ash_features.h"
#include "ash/quick_pair/common/constants.h"
#include "ash/quick_pair/common/device.h"
#include "ash/quick_pair/common/fast_pair/fast_pair_decoder.h"
#include "ash/quick_pair/common/pair_failure.h"
#include "ash/quick_pair/common/protocol.h"
#include "ash/quick_pair/repository/fast_pair_repository.h"
#include "base/check.h"
#include "base/containers/flat_set.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/scoped_refptr.h"
#include "base/strings/string_util.h"
#include "chromeos/ash/components/network/network_handler.h"
#include "chromeos/ash/components/network/network_state_handler.h"
#include "chromeos/ash/services/quick_pair/quick_pair_process.h"
#include "chromeos/ash/services/quick_pair/quick_pair_process_manager.h"
#include "components/cross_device/logging/logging.h"
#include "device/bluetooth//bluetooth_adapter.h"
#include "device/bluetooth/bluetooth_device.h"
#include "device/bluetooth/floss/floss_features.h"
namespace {
constexpr char kNearbyShareModelId[] = "fc128e";
constexpr int kMaxParseModelIdRetryCount = 5;
bool IsMetadataPublished(const nearby::fastpair::Device& device) {
if (ash::features::IsFastPairDebugMetadataEnabled() &&
device.status().status_type() !=
nearby::fastpair::StatusType::TYPE_UNSPECIFIED) {
CD_LOG(INFO, Feature::FP) << __func__ << ": Showing unpublished metadata.";
return true;
}
// Only show notifications for published devices.
return device.status().status_type() ==
nearby::fastpair::StatusType::PUBLISHED;
}
bool IsValidDeviceType(const nearby::fastpair::Device& device) {
// Fast Pair HID only works on Floss.
if (floss::features::IsFlossEnabled()) {
if (device.device_type() == nearby::fastpair::DeviceType::MOUSE) {
return true;
}
if (ash::features::IsFastPairKeyboardsEnabled() &&
device.device_type() == nearby::fastpair::DeviceType::INPUT_DEVICE) {
return true;
}
}
// TODO: Filter out based on solidified Fast Pair configuration list once
// available.
return device.device_type() == nearby::fastpair::DeviceType::HEADPHONES ||
device.device_type() == nearby::fastpair::DeviceType::SPEAKER ||
device.device_type() ==
nearby::fastpair::DeviceType::TRUE_WIRELESS_HEADPHONES ||
device.device_type() ==
nearby::fastpair::DeviceType::DEVICE_TYPE_UNSPECIFIED;
}
bool IsSupportedNotificationType(const nearby::fastpair::Device& device) {
// We only allow-list notification types that should trigger a pairing
// notification, since we currently only support pairing. We include
// NOTIFICATION_TYPE_UNSPECIFIED to handle the case where a Provider is
// advertising incorrectly and conservatively allow it to show a notification,
// matching Android behavior.
return device.notification_type() == nearby::fastpair::NotificationType::
NOTIFICATION_TYPE_UNSPECIFIED ||
device.notification_type() ==
nearby::fastpair::NotificationType::FAST_PAIR ||
device.notification_type() ==
nearby::fastpair::NotificationType::FAST_PAIR_ONE;
}
bool IsSupportedInteractionType(const nearby::fastpair::Device& device) {
// We only allow-list interaction types that should trigger a pairing
// notification, since we currently only support pairing. Currently, we
// need to exclude AUTO_LAUNCH since that is used for Smart Setup (Quick
// Start).
return device.interaction_type() ==
nearby::fastpair::InteractionType::INTERACTION_TYPE_UNKNOWN ||
device.interaction_type() ==
nearby::fastpair::InteractionType::NOTIFICATION;
}
} // namespace
namespace ash {
namespace quick_pair {
// static
FastPairDiscoverableScannerImpl::Factory*
FastPairDiscoverableScannerImpl::Factory::g_test_factory_ = nullptr;
// static
std::unique_ptr<FastPairDiscoverableScanner>
FastPairDiscoverableScannerImpl::Factory::Create(
scoped_refptr<FastPairScanner> scanner,
scoped_refptr<device::BluetoothAdapter> adapter,
DeviceCallback found_callback,
DeviceCallback lost_callback) {
if (g_test_factory_) {
return g_test_factory_->CreateInstance(
std::move(scanner), std::move(adapter), std::move(found_callback),
std::move(lost_callback));
}
return base::WrapUnique(new FastPairDiscoverableScannerImpl(
std::move(scanner), std::move(adapter), std::move(found_callback),
std::move(lost_callback)));
}
// static
void FastPairDiscoverableScannerImpl::Factory::SetFactoryForTesting(
Factory* g_test_factory) {
g_test_factory_ = g_test_factory;
}
FastPairDiscoverableScannerImpl::Factory::~Factory() = default;
FastPairDiscoverableScannerImpl::FastPairDiscoverableScannerImpl(
scoped_refptr<FastPairScanner> scanner,
scoped_refptr<device::BluetoothAdapter> adapter,
DeviceCallback found_callback,
DeviceCallback lost_callback)
: scanner_(std::move(scanner)),
adapter_(std::move(adapter)),
found_callback_(std::move(found_callback)),
lost_callback_(std::move(lost_callback)) {
observation_.Observe(scanner_.get());
// NetworkHandler may not be initialized in tests.
if (NetworkHandler::IsInitialized()) {
NetworkHandler::Get()->network_state_handler()->AddObserver(this,
FROM_HERE);
}
}
FastPairDiscoverableScannerImpl::~FastPairDiscoverableScannerImpl() {
// NetworkHandler may not be initialized in tests.
if (NetworkHandler::IsInitialized()) {
NetworkHandler::Get()->network_state_handler()->RemoveObserver(this,
FROM_HERE);
}
}
void FastPairDiscoverableScannerImpl::OnDeviceFound(
device::BluetoothDevice* device) {
CD_LOG(VERBOSE, Feature::FP)
<< __func__ << ": " << device->GetNameForDisplay();
const std::vector<uint8_t>* fast_pair_service_data =
device->GetServiceDataForUUID(kFastPairBluetoothUuid);
if (!fast_pair_service_data) {
CD_LOG(WARNING, Feature::FP)
<< __func__ << ": Device doesn't have any Fast Pair Service Data.";
return;
}
model_id_parse_attempts_[device->GetAddress()] = 1;
CD_LOG(INFO, Feature::FP) << __func__ << ": Attempting to get model ID";
quick_pair_process::GetHexModelIdFromServiceData(
*fast_pair_service_data,
base::BindOnce(&FastPairDiscoverableScannerImpl::OnModelIdRetrieved,
weak_pointer_factory_.GetWeakPtr(), device->GetAddress()),
base::BindOnce(&FastPairDiscoverableScannerImpl::OnUtilityProcessStopped,
weak_pointer_factory_.GetWeakPtr(), device->GetAddress()));
}
void FastPairDiscoverableScannerImpl::OnModelIdRetrieved(
const std::string& address,
const std::optional<std::string>& model_id) {
auto it = model_id_parse_attempts_.find(address);
// If there's no entry in the map, the device was lost while parsing.
if (it == model_id_parse_attempts_.end()) {
CD_LOG(WARNING, Feature::FP)
<< __func__
<< ": Returning early because device as lost while parsing.";
return;
}
model_id_parse_attempts_.erase(it);
if (!model_id) {
CD_LOG(INFO, Feature::FP)
<< __func__ << ": Returning early because no model id was parsed.";
return;
}
// The Nearby Share feature advertises under the Fast Pair Service Data UUID
// and uses a reserved model ID to enable their 'fast initiation' scenario.
// We must detect this instance and ignore these advertisements since they
// do not correspond to Fast Pair devices that are open to pairing.
if (base::EqualsCaseInsensitiveASCII(model_id.value(), kNearbyShareModelId)) {
return;
}
FastPairRepository::Get()->GetDeviceMetadata(
*model_id,
base::BindOnce(
&FastPairDiscoverableScannerImpl::OnDeviceMetadataRetrieved,
weak_pointer_factory_.GetWeakPtr(), address, model_id.value()));
}
void FastPairDiscoverableScannerImpl::OnDeviceMetadataRetrieved(
const std::string& address,
const std::string model_id,
DeviceMetadata* device_metadata,
bool has_retryable_error) {
if (has_retryable_error) {
pending_devices_address_to_model_id_[address] = model_id;
CD_LOG(WARNING, Feature::FP)
<< __func__ << ": Could not retrieve metadata for id: " << model_id
<< ". Waiting for network change before retry.";
return;
}
if (!device_metadata) {
CD_LOG(WARNING, Feature::FP)
<< __func__ << ": No metadata available for id: " << model_id
<< ". Ignoring this advertisement";
return;
}
// Ignore advertisements for unpublished devices.
if (!IsMetadataPublished(device_metadata->GetDetails())) {
CD_LOG(WARNING, Feature::FP)
<< __func__ << ": Metadata unpublished. Ignoring this advertisement";
return;
}
// Ignore advertisements that aren't for Fast Pair but leverage the service
// UUID.
if (!IsValidDeviceType(device_metadata->GetDetails())) {
CD_LOG(WARNING, Feature::FP)
<< __func__
<< ": Invalid device type for Fast Pair. Ignoring this advertisement";
return;
}
// Ignore advertisements for unsupported notification types, such as
// APP_LAUNCH which should launch a companion app instead of beginning Fast
// Pair.
if (!IsSupportedNotificationType(device_metadata->GetDetails())) {
CD_LOG(WARNING, Feature::FP)
<< __func__
<< ": Unsupported notification type for Fast Pair. "
"Ignoring this advertisement";
return;
}
// Ignore advertisements for unsupported interaction types, such as
// AUTO_LAUNCH which should trigger Smart Setup (Quick Start) instead of
// beginning Fast Pair.
if (!IsSupportedInteractionType(device_metadata->GetDetails())) {
CD_LOG(WARNING, Feature::FP)
<< __func__
<< ": Unsupported interaction type for Fast Pair. "
"Ignoring this advertisement";
return;
}
auto device = base::MakeRefCounted<Device>(model_id, address,
Protocol::kFastPairInitial);
CD_LOG(INFO, Feature::FP) << __func__ << ": Id: " << model_id;
NotifyDeviceFound(std::move(device));
}
void FastPairDiscoverableScannerImpl::NotifyDeviceFound(
scoped_refptr<Device> device) {
device::BluetoothDevice* classic_device =
device->classic_address().has_value()
? adapter_->GetDevice(device->classic_address().value())
: nullptr;
if (classic_device && classic_device->IsPaired()) {
CD_LOG(ERROR, Feature::FP) << __func__
<< ": A discoverable advertisement "
"was notified for a paired classic device.";
return;
}
device::BluetoothDevice* ble_device =
adapter_->GetDevice(device->ble_address());
// V1 Devices are expected to hit this case while Fast pairing, as
// pairing is handled by the BT Pairing Dialog, which starts a
// discovery session that briefly disables and enables Fast Pair
// scanning, causing the device to be found again. The second time
// the device is found, this statement is true and no second
// notification is shown.
if (ble_device && ble_device->IsPaired()) {
CD_LOG(INFO, Feature::FP)
<< __func__
<< ": A discoverable advertisement "
"was found and ignored for a paired BLE device.";
return;
}
// TODO(b/242100708): We currently have no way to tell if a device in pairing
// mode is already paired to the Chromebook; the BLE device has no information
// on the pairing state of the Classic device (except for V1 devices).
CD_LOG(INFO, Feature::FP) << __func__ << ": Running found callback";
notified_devices_[device->ble_address()] = device;
found_callback_.Run(device);
}
void FastPairDiscoverableScannerImpl::OnDeviceLost(
device::BluetoothDevice* device) {
CD_LOG(VERBOSE, Feature::FP)
<< __func__ << ": " << device->GetNameForDisplay();
// No need to retry fetching metadata for devices that are no longer in range.
pending_devices_address_to_model_id_.erase(device->GetAddress());
// If we have an in-progress attempt to parse for this device, removing it
// from this map will ensure the result is ignored.
model_id_parse_attempts_.erase(device->GetAddress());
auto it = notified_devices_.find(device->GetAddress());
// Don't invoke callback if we didn't notify this device.
if (it == notified_devices_.end()) {
return;
}
CD_LOG(INFO, Feature::FP) << __func__ << ": Running lost callback";
scoped_refptr<Device> notified_device = it->second;
notified_devices_.erase(it);
lost_callback_.Run(std::move(notified_device));
}
void FastPairDiscoverableScannerImpl::OnUtilityProcessStopped(
const std::string& address,
QuickPairProcessManager::ShutdownReason shutdown_reason) {
int current_retry_count = model_id_parse_attempts_[address];
if (current_retry_count > kMaxParseModelIdRetryCount) {
CD_LOG(WARNING, Feature::FP)
<< "Failed to parse model id from device more than "
<< kMaxParseModelIdRetryCount << " times.";
// Clean up the state here which enables trying again in the future if this
// device is re-discovered.
model_id_parse_attempts_.erase(address);
return;
}
// Don't try to parse the model ID again if the device was lost.
device::BluetoothDevice* device = adapter_->GetDevice(address);
if (!device) {
CD_LOG(WARNING, Feature::FP)
<< __func__ << ": Lost device in between parse attempts.";
model_id_parse_attempts_.erase(address);
return;
}
model_id_parse_attempts_[address] = current_retry_count + 1;
const std::vector<uint8_t>* fast_pair_service_data =
device->GetServiceDataForUUID(kFastPairBluetoothUuid);
CD_LOG(INFO, Feature::FP) << __func__ << ": Retrying call to get model ID";
quick_pair_process::GetHexModelIdFromServiceData(
*fast_pair_service_data,
base::BindOnce(&FastPairDiscoverableScannerImpl::OnModelIdRetrieved,
weak_pointer_factory_.GetWeakPtr(), address),
base::BindOnce(&FastPairDiscoverableScannerImpl::OnUtilityProcessStopped,
weak_pointer_factory_.GetWeakPtr(), address));
}
void FastPairDiscoverableScannerImpl::DefaultNetworkChanged(
const NetworkState* network) {
// Only retry when we have an active connected network.
if (!network || !network->IsConnectedState()) {
return;
}
auto it = pending_devices_address_to_model_id_.begin();
while (it != pending_devices_address_to_model_id_.end()) {
FastPairRepository::Get()->GetDeviceMetadata(
/*model_id=*/it->second,
base::BindOnce(
&FastPairDiscoverableScannerImpl::OnDeviceMetadataRetrieved,
weak_pointer_factory_.GetWeakPtr(),
/*address=*/it->first,
/*model_id=*/it->second));
it = pending_devices_address_to_model_id_.erase(it);
}
}
} // namespace quick_pair
} // namespace ash
|