blob: efd69f7ed94b2fb6052c77f72fb4b2b4fc717372 [file] [log] [blame]
/*
* Copyright 2019 The Android Open Source Project
*
* 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.
*/
#pragma once
#include <unordered_map>
#include <utility>
#include "hci/classic_device.h"
#include "l2cap/le/l2cap_le_module.h"
#include "os/handler.h"
#include "security/channel/security_manager_channel.h"
#include "security/initial_informations.h"
#include "security/pairing/classic_pairing_handler.h"
#include "security/pairing_handler_le.h"
#include "security/record/security_record.h"
#include "security/security_record_database.h"
namespace bluetooth {
namespace security {
class ISecurityManagerListener;
namespace internal {
class SecurityManagerImpl : public channel::ISecurityManagerChannelListener, public UICallbacks {
public:
explicit SecurityManagerImpl(os::Handler* security_handler, l2cap::le::L2capLeModule* l2cap_le_module,
channel::SecurityManagerChannel* security_manager_channel, hci::HciLayer* hci_layer);
~SecurityManagerImpl() = default;
// All APIs must be invoked in SM layer handler
/**
* Initialize the security record map from an internal device database.
*/
void Init();
/**
* Initiates bond over Classic transport with device, if not bonded yet.
*
* @param address device address we want to bond with
*/
void CreateBond(hci::AddressWithType address);
/**
* Initiates bond over Low Energy transport with device, if not bonded yet.
*
* @param address device address we want to bond with
*/
void CreateBondLe(hci::AddressWithType address);
/* void CreateBond(std::shared_ptr<hci::LeDevice> device); */
/**
* Cancels the pairing process for this device.
*
* @param device pointer to device with which we want to cancel our bond
*/
void CancelBond(hci::AddressWithType device);
/* void CancelBond(std::shared_ptr<hci::LeDevice> device); */
/**
* Disassociates the device and removes the persistent LTK
*
* @param device pointer to device we want to forget
* @return true if removed
*/
void RemoveBond(hci::AddressWithType device);
/* void RemoveBond(std::shared_ptr<hci::LeDevice> device); */
/**
* Register Security UI handler, for handling prompts around the Pairing process.
*/
void SetUserInterfaceHandler(UI* user_interface, os::Handler* handler);
/**
* Register to listen for callback events from SecurityManager
*
* @param listener ISecurityManagerListener instance to handle callbacks
*/
void RegisterCallbackListener(ISecurityManagerListener* listener, os::Handler* handler);
/**
* Unregister listener for callback events from SecurityManager
*
* @param listener ISecurityManagerListener instance to unregister
*/
void UnregisterCallbackListener(ISecurityManagerListener* listener);
/**
* Handle the events sent back from HCI that we care about
*
* @param packet data received from HCI
*/
void OnHciEventReceived(hci::EventPacketView packet) override;
/**
* When a conncetion closes we should clean up the pairing handler
*
* @param address Remote address
* @param error_code HCI error
*/
void OnConnectionClosed(hci::Address address, bluetooth::hci::ErrorCode error_code) override;
/**
* This can occur when a remote device isn't in range or doesn't agree with local device
*
* @param address Remote address
* @param result holds hci error and connection error code
*/
void OnConnectionFailed(hci::Address address,
bluetooth::l2cap::classic::FixedChannelManager::ConnectionResult result) override;
/**
* Pairing handler has finished or cancelled
*
* @param address address for pairing handler
* @param status status from SimplePairingComplete or other error code
*/
void OnPairingHandlerComplete(hci::Address address, PairingResultOrFailure status);
// UICallbacks implementation
void OnPairingPromptAccepted(const bluetooth::hci::AddressWithType& address, bool confirmed) override;
void OnConfirmYesNo(const bluetooth::hci::AddressWithType& address, bool confirmed) override;
void OnPasskeyEntry(const bluetooth::hci::AddressWithType& address, uint32_t passkey) override;
protected:
std::vector<std::pair<ISecurityManagerListener*, os::Handler*>> listeners_;
UI* user_interface_ = nullptr;
os::Handler* user_interface_handler_ = nullptr;
void NotifyDeviceBonded(hci::AddressWithType device);
void NotifyDeviceBondFailed(hci::AddressWithType device, PairingResultOrFailure status);
void NotifyDeviceUnbonded(hci::AddressWithType device);
private:
template <class T>
void HandleEvent(T packet);
void DispatchPairingHandler(record::SecurityRecord& record, bool locally_initiated,
hci::AuthenticationRequirements authentication_requirements);
void OnL2capRegistrationCompleteLe(l2cap::le::FixedChannelManager::RegistrationResult result,
std::unique_ptr<l2cap::le::FixedChannelService> le_smp_service);
void OnSmpCommandLe();
void OnConnectionOpenLe(std::unique_ptr<l2cap::le::FixedChannel> channel);
void OnConnectionClosedLe(hci::AddressWithType address, hci::ErrorCode error_code);
void OnConnectionFailureLe(bluetooth::l2cap::le::FixedChannelManager::ConnectionResult result);
void OnPairingFinished(bluetooth::security::PairingResultOrFailure pairing_result);
void OnHciLeEvent(hci::LeMetaEventView event);
os::Handler* security_handler_ __attribute__((unused));
l2cap::le::L2capLeModule* l2cap_le_module_ __attribute__((unused));
std::unique_ptr<l2cap::le::FixedChannelManager> l2cap_manager_le_;
hci::LeSecurityInterface* hci_security_interface_le_ __attribute__((unused));
channel::SecurityManagerChannel* security_manager_channel_;
SecurityRecordDatabase security_database_;
std::unordered_map<hci::Address, std::shared_ptr<pairing::PairingHandler>> pairing_handler_map_;
struct {
hci::AddressWithType address_;
std::unique_ptr<l2cap::le::FixedChannel> channel_;
uint8_t connection_handle_;
std::unique_ptr<PairingHandlerLe> handler_;
std::unique_ptr<os::EnqueueBuffer<packet::BasePacketBuilder>> enqueue_buffer_;
} pending_le_pairing_;
};
} // namespace internal
} // namespace security
} // namespace bluetooth