当您信任蓝牙设备时,存储信任的配置文件在哪里?

When you trust a bluetooth device, where is the config file that stores the trust?

假设我运行这个命令

pi@raspberrypi:~ $ bluetoothctl
Agent registered
[bluetooth]# paired-devices
[raspberrypi]# paired-devices
Device XX:XX:XX:XX:XX:XX MyDevice
[raspberrypi]# trust XX:XX:XX:XX:XX:XX
[CHG] Device XX:XX:XX:XX:XX:XX Trusted: yes
Changing XX:XX:XX:XX:XX:XX trust succeeded

存储可信设备列表的实际文件在哪里?

如果您执行类似 $ sudo grep -Ri trust /var/lib/bluetooth 的操作,您将看到一些信息。

这确实带有一个很大的警告,表明这不是获取信息的预期方式。目的是使用 BlueZ API 记录在:

https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc

官方示例在:

https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/test

通常这意味着使用 D-Bus 绑定。从命令行中,您可以获得 BlueZ 所知道的所有信息的列表:

busctl call org.bluez / org.freedesktop.DBus.ObjectManager GetManagedObjects

在像 python 这样的语言中,它将是:

import pydbus

bus = pydbus.SystemBus()
mngr = bus.get('org.bluez', '/')

mngd_objs = mngr.GetManagedObjects()

for path in mngd_objs:
    device_info = mngd_objs[path].get('org.bluez.Device1')
    if device_info:
        print(f'Device: {device_info.get("Address")} is Trusted={device_info.get("Trusted")}')

要扩展此内容以回答以下有关如何删除任何受信任设备的问题...

这是由适配器接口和 RemoveDevice 方法控制的。我们需要知道适配器对象的 D-Bus 路径。您可以通过多种方式找到此信息,在命令行中使用 busctl tree org.bluez 可能是最快的。该路径通常是 /org/bluez/hci0 并且会在您的所有设备之前。有了这个假设,您可以扩展上面的示例以删除受信任的设备,如下所示:

import pydbus

bus = pydbus.SystemBus()
mngr = bus.get('org.bluez', '/')

mngd_objs = mngr.GetManagedObjects()
dongle = bus.get('org.bluez', '/org/bluez/hci0')

for path in mngd_objs:
    device_info = mngd_objs[path].get('org.bluez.Device1')
    if device_info:
        trusted = device_info.get('Trusted')
        if trusted:
            print(f'Removing Device: {device_info.get("Address")}') 
            dongle.RemoveDevice(path)