mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-16 00:34:39 +08:00
faa7894b7b
This adds a new interface permission to bluetooth-mesh.conf: <allow send_interface="org.bluez.mesh.Provisioner1"/>
24 lines
802 B
Plaintext
24 lines
802 B
Plaintext
<!-- This configuration file specifies the required security policies
|
|
for Bluetooth mesh daemon to work. -->
|
|
|
|
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
|
|
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
|
|
<busconfig>
|
|
|
|
<!-- ../system.conf have denied everything, so we just punch some holes -->
|
|
|
|
<policy user="root">
|
|
<allow own="org.bluez.mesh"/>
|
|
<allow send_destination="org.bluez.mesh"/>
|
|
<allow send_interface="org.bluez.mesh.Application1"/>
|
|
<allow send_interface="org.bluez.mesh.Element1"/>
|
|
<allow send_interface="org.bluez.mesh.ProvisionAgent1"/>
|
|
<allow send_interface="org.bluez.mesh.Provisioner1"/>
|
|
</policy>
|
|
|
|
<policy context="default">
|
|
<allow send_destination="org.bluez.mesh"/>
|
|
</policy>
|
|
|
|
</busconfig>
|