BLEZ - Asynchronous Bluetooth Low Energy on Linux for Rust

This library provides an asynchronous, fully featured interface to the Bluetooth Low Energy (BLE) APIs of the official Linux Bluetooth protocol stack (BlueZ) for Rust. Both publishing local and consuming remote GATT services using idiomatic Rust code is supported. Asynchronous support is dependent by Tokio.

This project started as a fork of blurz but has since then become a full rewrite. Documentation has been mostly copied from the BlueZ API specification, but also adapted where it makes sense. L2CAP sockets are presented using an API similar to Tokio networking.

The following functionality is provided:

Classic Bluetooth is unsupported except for device discovery.

Crate features

All crate features are enabled by default.

Requirements

This library has been tested with BlueZ version 5.58 with additional patches applied. Older versions might work, but be aware that many bugs related to GATT handling exist. Refer to the official changelog for details.

If any bluetoothd feature is used the Bluetooth daemon must be running and configured for access over D-Bus. On most distributions this should work out of the box.

For building, D-Bus library headers must be installed if the bluetoothd feature is enabled. On Debian-based distributions install the package libdbus-1-dev.

Configuration

The following options in /etc/bluetooth/main.conf are helpful.

[GATT]
Cache = no
Channels = 1

This disables the GATT cache to avoid stale data during device discovery.

By only allowing one channel the extended attribute protocol (EATT) is disabled. If EATT is enabled, all GATT commands and notifications are sent over multiple L2CAP channels and can be reordered arbitrarily by lower layers of the protocol stack. This makes sequential data transmission over GATT characteristics more difficult.

Troubleshooting

The library returns detailed errors received from BlueZ.

Set the Rust log level to trace to see all D-Bus communications with BlueZ.

In some cases checking the Bluetooth system log might provide further insights. On Debian-based systems it can be displayed by executing journalctl -u bluetooth. Check the bluetoothd man page for increasing the log level.

Sometimes deleting the system Bluetooth cache at /var/lib/bluetooth and restarting bluetoothd is helpful.

Examples

Refer to the API documentation and examples folder for examples.

The following example applications are provided.

Use cargo run --example <name> to run a particular example application.

Tools

The following tools are included and also serve as examples.

Use cargo install blez --example <name> to install a tool on your system.