tree: 0b5a96eb344d3394b47294f941197b35fc4e56cc [path history] [tgz]
  1. BUILD.gn
  2. delegate.h
  3. ecdh_key.cc
  4. ecdh_key.h
  5. ecdh_key_unittest.cc
  6. fake_phase_listener.h
  7. packet.cc
  8. packet.h
  9. packet_unittest.cc
  10. pairing_channel.cc
  11. pairing_channel.h
  12. pairing_channel_unittest.cc
  13. pairing_phase.cc
  14. pairing_phase.h
  15. pairing_phase_unittest.cc
  16. phase_1.cc
  17. phase_1.h
  18. phase_1_unittest.cc
  19. phase_2_legacy.cc
  20. phase_2_legacy.h
  21. phase_2_legacy_unittest.cc
  22. phase_2_secure_connections.cc
  23. phase_2_secure_connections.h
  24. phase_2_secure_connections_unittest.cc
  25. phase_3.cc
  26. phase_3.h
  27. phase_3_unittest.cc
  28. README.md
  29. sc_stage_1.h
  30. sc_stage_1_just_works_numeric_comparison.cc
  31. sc_stage_1_just_works_numeric_comparison.h
  32. sc_stage_1_just_works_numeric_comparison_unittest.cc
  33. sc_stage_1_passkey.cc
  34. sc_stage_1_passkey.h
  35. sc_stage_1_passkey_unittest.cc
  36. security_manager.cc
  37. security_manager.h
  38. security_manager_unittest.cc
  39. security_request_phase.cc
  40. security_request_phase.h
  41. security_request_phase_unittest.cc
  42. smp.h
  43. status.cc
  44. status.h
  45. test_security_manager.cc
  46. test_security_manager.h
  47. types.cc
  48. types.h
  49. types_unittest.cc
  50. util.cc
  51. util.h
  52. util_unittest.cc
  53. valid_packet_reader_parse_sdu_fuzztest.cc
src/connectivity/bluetooth/core/bt-host/sm/README.md

Security Manager (SM)

This directory contains Fuchsia's implementation of the Security Manager Protocol (SMP) from the Bluetooth Core Specification v5.2 Volume 3 Part H. At a high level, SM works to ensure the integrity and privacy of sensitive communication over Bluetooth. Internally, this is done through the generation, distribution, and usage of Bluetooth security keys. SMP is the standard protocol for security management of Bluetooth LE transports. For dual-mode devices, SMP also provides means for managing BR/EDR transport security.

Feature support

DescriptionLevel of Support
SMP over BR/EDRNot Supported
GAP LE Security Mode 1 (encrypted security levels)Supported
GAP LE Security Mode 2 (unencrypted, data-signed security)Not Supported
GAP LE Security Mode 3 (Broadcast_Code encrypted security)Not Supported
GAP LE Secure Connections Only ModeSupported
Legacy PairingSupported
Secure Connections PairingSupported
Out of Band PairingNot Supported
Identity Resolving Key (IRK) ExchangeSupported
Connection Signature Resolving Key (CSRK) ExchangeNot Supported
Cross-Transport Key GenerationNot Supported
SMP Security RequestSupported

See Core Specification v5.2 Volume 3 Part C Section 10.2 for more information about the GAP LE Security Modes.

Library interface

The Fuchsia SMP library exposes its functionality through the SecurityManager abstract class. Each Bluetooth connection is expected to instantiate its own SecurityManager, i.e. there is no singleton which manages security for all of Fuchsia Bluetooth. For production, this is done through the SecurityManagerImpl::Create factory function, as SecurityManagerImpl provides the production implementation of the SecurityManager interface. The SM library expects that clients will only directly instantiate SecurityManagers, not any other internal classes. All callbacks related to SMP, including HCI link and L2CAP channel callbacks, must be run on the same thread as the instantiated SecurityManager. The public interface of SecurityManager is the intended public interface for the SM library as a whole. Documentation can be found in the SecurityManager header.

Interface concepts

Security upgrade - While most of the code in this library relates to pairing, SM does not allow clients to directly start pairing. Instead, clients request a security upgrade to a certain level. SM tracks the current security properties of the link (i.e. encrypted / authenticated / encryption key size), and may (or may not) determine that pairing and/or link encryption are required to bring the link to the client's desired security level. In response to a security upgrade request, clients are only told whether their request was fulfilled along with the current security properties of the link, not any specifics e.g. about whether their request was directly responsible for pairing.

PairingDelegate - Pairing with a peer may give that device access to sensitive information and/or capabilities, so it is good practice (and in some cases, required) to condition pairing on explicit user input. Thus SM must be able to display input prompts and handle user input during pairing. The bt-host driver is device-agnostic, so SM cannot directly display output or query for user input from an unknown device. Instead, SM uses the bt-host-internal sm::Delegate class to display information and request user input, which eventually bubbles up to the system PairingDelegate FIDL protocol.

Link-layer encryption and SM - A reasonable, but incorrect, assumption is that SM is directly responsible for encrypting BLE data. SM, the Bluetooth controller, and hci::Connection all play roles in encrypting data with the encryption key. SM is responsible for generating (and optionally storing/bonding) the key for the link through pairing. The Bluetooth controller is responsible for validating that both devices agree on the key and then using the key to actually (en|de)crypt data over the link. SecurityManager takes a pointer to hci::Connection in its constructor, which serves as the bridge between the two. SM assigns the encryption key to hci::Connection, which stores it internally. It then responds to HCI encryption key request events from the controller with this key. The hci::Connection LE encryption key should only ever be modified by SM.

Testing

The SM library exposes the TestSecurityManager test double through its sm:testing GN target. For SM-dependent code, this test double can be used for more deterministic/simpler unit tests. Clients can obtain instances through the TestSecurityManager::Create factory function (analogous to production usage of SecurityManagerImpl::Create).

Implementation details

The remainder of this document is aimed at developers who plan to change SM, and explains how the protocol is implemented in Fuchsia.

Ownership and source hierarchy

This section aims to give a high-level understanding of how the various files and classes in the sm/ directory are related.

Stateful pairing classes

Each of these files represents a single stateful class which implements a portion of the SMP pairing state machine. Indentation is used to indicate ownership, with the SecurityManager class at the top level - this is consistent with the expectation that only the SecurityManager class should be directly instantiated by non-SM code. While the *Phase* classes are always owned by SecurityManager, the SecurityManager uses a std::variant to store the current class, meaning that only 1 *Phase* class is ever present at once. Documentation for each class can be found in the linked header file.

Abstract pairing classes

These are abstract classes subclassed by many of the “stateful pairing classes”.

  • PairingPhase - SecurityRequestPhase, Phase1, Phase2Legacy, Phase2SecureConnections, and Phase3 subclass this class. PairingPhase provides interfaces and functionality relevant to all phases of pairing.
  • ScStage1 - ScStage1JustWorksNumericComparison and ScStage1Passkey subclass this pure interface. ScStage1 provides methods for Phase2SecureConnections to polymorphically interact with both of the Stage 1 classes.

Utility files:

These files provide commonly-used functionality in SM. They easily could be (and sometimes are) used outside of SM. These files contain definitions, pure functions of their input, or small structs/classes with little internal state:

  • delegate.h - details the interface required by the SecurityManager constructor for SMP to interact with the rest of the BT stack.
  • ecdh_key.h - utility C++ wrapper class for BoringSSL ECDH key functionality used in Secure Connections pairing.
  • packet.h - SM-specific packet parsing and writing classes.
  • status.h - SM-specific version of the bt-host Status class.
  • smp.h - definitions of Security Manager Protocol constants from the specification section (see Section 3 of the SM spec section).
  • types.h - definitions of structs and enums used in SM code that are not part of the SMP specification.
  • util.h - cryptographic primitives and other pure-function utilities used in the SMP stack.

Test files:

Besides the bt-host standard <source_file_stem>_unittest.cc files, SM provides the following test helpers:

  • TestSecurityManager(Factory) - a test implementation of SM's public interface, SecurityManager. Provides a TestSecurityManagerFactory with a CreateSm method which stores a reference to the created TestSecurityManager. A TestSecurityManagerFactory can be used to inject TestSecurityManagers into production code while keeping them accessible by unit tests. The current implementation is a very minimal test spy. It provides basic argument snooping and stub responses for a few methods and noop implementations for others. More functionality may be added as necessary to expand test coverage of SM-dependent code.
  • FakeListener - fakes an implementation of the PairingPhase::Listener interface, which the PairingPhase subclasses require for unit testing.