Bluetooth_mesh_networking

Bluetooth mesh networking

Bluetooth mesh networking

Computer mesh networking standard


Bluetooth Mesh is a computer mesh networking standard based on Bluetooth Low Energy that allows for many-to-many communication over Bluetooth radio. The Bluetooth Mesh specifications were defined in the Mesh Profile[1] and Mesh Model[2] specifications by the Bluetooth Special Interest Group (Bluetooth SIG). Bluetooth Mesh was conceived in 2014[3] and adopted on July 13, 2017 (2017-07-13).[4]

Quick Facts Developed by, Introduced ...

Overview

Bluetooth Mesh is a mesh networking standard that operates on a flood network principle. It's based on the nodes relaying the messages: every relay node that receives a network packet that authenticates against a known network key that is not in message cache, that has a TTL ≥ 2 can be retransmitted with TTL = TTL - 1. Message caching is used to prevent relaying messages recently seen.

Communication is carried in the messages that may be up to 384 bytes long, when using Segmentation and Reassembly (SAR) mechanism, but most of the messages fit in one segment, that is 11 bytes. Each message starts with an opcode, which may be a single byte (for special messages), 2 bytes (for standard messages), or 3 bytes (for vendor-specific messages).

Every message has a source and a destination address, determining which devices process messages. Devices publish messages to destinations which can be single things / groups of things / everything.

Each message has a sequence number that protects the network against replay attacks.

Each message is encrypted and authenticated. Two keys are used to secure messages: (1) network keys – allocated to a single mesh network, (2) application keys – specific for a given application functionality, e.g. turning the light on vs reconfiguring the light.

Messages have a time to live (TTL). Each time message is received and retransmitted, TTL is decremented which limits the number of "hops", eliminating endless loops.

Architecture

Bluetooth Mesh has a layered architecture, with multiple layers as below.

More information Layer, Functionality ...

Topology

Nodes that support the various features can be formed into a mesh network.

More information Feature, Functionality ...

Theoretical limits

The practical limits of Bluetooth Mesh technology are unknown. Some limits that are built into the specification include:

More information Limit for a network, Value ...

Mesh models

As of version 1.0 of Bluetooth Mesh specification,[2] the following standard models and model groups have been defined:

Foundation models

Foundation models have been defined in the core specification. Two of them are mandatory for all mesh nodes.

  • Configuration Server (mandatory)
  • Configuration Client
  • Health Server (mandatory)
  • Health Client

Generic models

  • Generic OnOff Server, used to represent devices that do not fit any of the model descriptions defined but support the generic properties of On/Off
  • Generic Level Server, keeping the state of an element in a 16-bit signed integer
  • Generic Default Transition Time Server, used to represent a default transition time for a variety of devices
  • Generic Power OnOff Server & Generic Power OnOff Setup Server, used to represent devices that do not fit any of the model descriptions but support the generic properties of On/Off
  • Generic Power Level Server & Generic Power Level Setup Server, including a Generic Power Actual state, a Generic Power Last state, a Generic Power Default state and a Generic Power Range state
  • Generic Battery Server, representing a set of four values representing the state of a battery
  • Generic Location Server & Generic Location Setup Server, representing location information of an element, either global (Lat/Lon) or local
  • Generic User/Admin/Manufacturer/Client Property Server, representing any value to be stored by an element
  • Generic OnOff Client & Generic Level Client
  • Generic Default Transition Time Client
  • Generic Power OnOff Client & Generic Power Level Client
  • Generic Battery Client
  • Generic Location Client
  • Generic Property Client

Sensors

  • Sensor Server & Sensor Setup Server, representing a sensor device. Sensor device may be configured to return a measured value periodically or on request; measurement period (cadence) may be configured to be fixed or to change, so that more important value range is being reported faster.
  • Sensor Client

Time and scenes

  • Time Server & Time Setup Server, allowing for time synchronization in mesh network
  • Scene Server & Scene Setup Server, allowing for up to 65535 scenes to be configured and recalled when needed.
  • Scheduler Server & Scheduler Setup Server
  • Time Client, Scene Client & Scheduler Client

Lighting

  • Light Lightness Server & Light Lightness Setup Server, representing a dimmable light source
  • Light CTL Server, Light CTL Temperature Server & Light CTL Setup Server, representing a CCT or "tunable white" light source
  • Light HSL Server, Light HSL Hue Server, Light HSL Saturation Server & Light HSL Setup Server, representing a light source based on Hue, Saturation, Lightness color representation
  • Light xyL Server & Light xyL Setup Server, representing a light source based on modified CIE xyY color space.
  • Light LC (Lightness Control) Server & Light LC Setup Server, representing a light control device, able to control Light Lightness model using an occupancy sensor and ambient light sensor. It may be used for light control scenarios like Auto-On, Auto-Off and/or Daylight Harvesting.
  • Light Lightness Client, Light CTL Client, Light HSL Client, Light xyL Client & Light LC Client

Provisioning

Provisioning is a process of installing the device into a network. It is a mandatory step to build a Bluetooth Mesh network.

In the provisioning process, a provisioner securely distributes a network key and a unique address space for a device. The provisioning protocol uses P256 Elliptic Curve Diffie-Hellman Key Exchange to create a temporary key to encrypt network key and other information. This provides security from a passive eavesdropper. It also provides various authentication mechanisms to protect network information, from an active eavesdropper who uses man-in-the-middle attack, during provisioning process.

A key unique to a device known as "Device Key" is derived from elliptic curve shared secret on provisioner and device during the provisioning process. This device key is used by the provisioner to encrypt messages for that specific device.

The security of the provisioning process has been analyzed in a paper presented during the IEEE CNS 2018 conference.[5]

The provisioning can be performed using a Bluetooth GATT connection or advertising using the specific bearer.[1]

Terminology used in the Bluetooth Mesh Model and Mesh Profile specifications

  • Destination: The address to which a message is sent.
  • Element: An addressable entity within a device.
  • Model: Standardized operation of typical user scenarios.
  • Node: A provisioned device.
  • Provisioner: A node that can add a device to a mesh network.
  • Relay: A node able to retransmit messages.
  • Source: The address from which a message is sent.

Implementations

Approved ("qualified") by Bluetooth SIG

More information Name, Submitter ...

Free and open-source software implementations

Free software and open source software implementations include the following:

  • The official (included in Linux kernel by Linus Torvalds in 2001[42]) Linux Bluetooth protocol stack BlueZ, dual free-licensed under the GPL[43] and the LGPL,[44] supports Mesh Profile, from release version 5.47,[45] by providing meshctl tool (deprecated) to configure mesh devices. Release version 5.53 introduced mesh-cfgclient tool for configuring mesh networks. BlueZ was approved as a "qualified" software package by Bluetooth SIG in 2005.[46] BlueZ is not considered to be a qualified Bluetooth Mesh stack as Bluetooth Mesh is not listed in aforementioned qualification record as a supported profile.
  • Apache Mynewt NimBLE, free-licensed under the Apache License 2.0,[47] supports Bluetooth Mesh from release version 1.2.0.[48] It was qualified on July 15, 2019 (2019-07-15) with QDID 131934.[36]
  • Zephyr OS Mesh, free-licensed under the Apache License 2.0,[49] supports Bluetooth Mesh from release version 1.9.0.[50] Zephyr OS Mesh 1.14.x was qualified on September 20, 2019 (2019-09-20) with QDID 139259.[36]

See also


References

  1. "Mesh Profile Bluetooth® Specification" (PDF download). Bluetooth Technology Website. 2017-07-13. Retrieved 2017-07-18.
  2. "Mesh Model Bluetooth® Specification" (PDF download). Bluetooth Technology Website. 2017-07-13. Retrieved 2017-07-18.
  3. "Low Energy: Mesh | Bluetooth Technology Website". www.bluetooth.com. Archived from the original on 2017-09-01. Retrieved 2017-07-18.
  4. Adomnicai, A.; Fournier, J. J. A.; Masson, L. (2018-05-30). "Hardware Security Threats Against Bluetooth Mesh Networks". 2018 IEEE Conference on Communications and Network Security (CNS). pp. 1–9. doi:10.1109/CNS.2018.8433184. ISBN 978-1-5386-4586-4. S2CID 52004479.
  5. "QD ID 98880 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2017-11-15.
  6. "QD ID 98856 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2017-11-15.
  7. "QD ID 99282 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2017-11-15.
  8. "QD ID 101318 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2017-11-15.
  9. "QD ID 101726 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2017-11-15.
  10. "QD ID 102243 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2017-11-15.
  11. "QD ID 106544 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-03-05.
  12. "QD ID 106546 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-03-05.
  13. "QD ID 104143 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-03-05.
  14. "QD ID 109370 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-04-05.
  15. "QD ID 110168 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-04-05.
  16. "QD ID 110202 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-04-05.
  17. "QD ID 110569 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-05-03.
  18. "QD ID 115668 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-09-15.
  19. "QD ID 116029 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-09-15.
  20. "QD ID 115860 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-09-15.
  21. "QD ID 119229 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-11-07.
  22. "QD ID 119268 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-11-07.
  23. "QD ID 116593 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-12-21.
  24. "QD ID 122442 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-12-21.
  25. "QD ID 123056 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2018-12-21.
  26. "QD ID 124137 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-01-24.
  27. "QD ID 127926 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-04-14.
  28. "QD ID 127646 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-04-14.
  29. "QD ID 129750 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-05-06.
  30. "QD ID 130160 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-05-06.
  31. "QD ID 133403 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-06-19.
  32. "QD ID 128410 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-06-19.
  33. "QD ID 129291 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-08-27.
  34. "QD ID 131934 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-08-27.
  35. "QD ID 128246 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-08-27.
  36. "QD ID 134454 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-08-27.
  37. "QD ID 137436 | Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2019-08-27.
  38. "QD ID 139259| Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2020-03-12.
  39. "QD ID 144808| Launch Studio - Listing Details". launchstudio.bluetooth.com. Retrieved 2020-06-01.
  40. "BlueZ History". BlueZ. 2019-09-07.
  41. "BlueZ » Blog Archive » Release of BlueZ 5.47". www.bluez.org. Retrieved 2017-10-27.
  42. "Qualified Product Detail". Bluetooth SIG. Archived from the original on 2019-09-05. Retrieved 2019-09-05.
  43. "apache/mynewt-core/LICENSE". GitHub. 2018-06-04. Archived from the original on 2019-09-05. Retrieved 2019-09-05.
  44. "RN-1.2.0 - Apache Mynewt - Apache Software Foundation". cwiki.apache.org. Retrieved 2018-07-02.
  45. "zephyrproject-rtos/zephyr/blob/master/LICENSE". GitHub. 2020-03-21. Archived from the original on 2019-09-05. Retrieved 2020-03-21.
  46. "Release Notes Zephyr Kernel 1.9.0". docs.zephyrproject.org. Retrieved 2020-03-21.

Share this article:

This article uses material from the Wikipedia article Bluetooth_mesh_networking, and is written by contributors. Text is available under a CC BY-SA 4.0 International License; additional terms may apply. Images, videos and audio are available under their respective licenses.