Skip to content

Dbus

All dbus rules are labelled under the name of the given profiles that provide dbus data. If the profiles were going to change (a renaming, an architectural change), the dbus rules need to be updated accordingly.

Abstractions

Base

Default system, session and accessibility bus access are provided with the abstraction:

  • abstractions/bus-system
  • abstractions/bus-session
  • abstractions/bus-accessibility

Interfaces

Access to common dbus interface is done using the abstractions under abstractions/bus/. They are kept minimal on purpose. The goal is not to give full talk access an interface but to provide a read-only like view of it. It may be required to have a look at the dbus interface documentation to check what method can be safely allowed.

For more access, simply use the aa:dbus talk directive.

Dbus Directive

We use a special directive to generate more advanced dbus access. The directive format is on purpose very similar to the apparmor dbus rule.

Format

#aa:dbus <access> bus=<bus> name=<name> [label=AARE] [interface=AARE] [path=AARE]
<access>

Access type. Can be own or talk:

  • own means the profile own the dbus interface. It is allowed to send and receive from anyone on this interface.
  • talk means the profile can talk on a given interface to the profile owning it (that must be given under the label option).
<bus>

Dbus bus, can be system, session or accessibility.

<name>

Dbus interface name.

[label=AARE]

Name of the profile. Mandatory for talk access.

[interface=AARE]

Can optionally be given when it is different to the dbus path.

[path=AARE]

Can optionally be given when it is different to the dbus name.

Note: <access>, <bus> and <name> are mandatory and will break the build if ignored.

Example

Allow owning a dbus interface:

apparmor.d/groups/network/NetworkManager

#aa:dbus own bus=system name=org.freedesktop.NetworkManager

Allow talking to a dbus interface on a given profile

apparmor.d/groups/gnome/gdm

#aa:dbus talk bus=system name=org.freedesktop.login1 label=systemd-logind

Generate

#aa:dbus own bus=system name=org.freedesktop.NetworkManager
dbus bind bus=system name=org.freedesktop.NetworkManager{,.*},
dbus receive bus=system path=/org/freedesktop/NetworkManager{,/**}
     interface=org.freedesktop.NetworkManager{,.*}
     peer=(name=":1.@{int}"),
dbus receive bus=system path=/org/freedesktop/NetworkManager{,/**}
     interface=org.freedesktop.DBus.Properties
     peer=(name=":1.@{int}"),
dbus receive bus=system path=/org/freedesktop/NetworkManager{,/**}
     interface=org.freedesktop.DBus.ObjectManager
     peer=(name=":1.@{int}"),
dbus send bus=system path=/org/freedesktop/NetworkManager{,/**}
     interface=org.freedesktop.NetworkManager{,.*}
     peer=(name="{:1.@{int},org.freedesktop.DBus}"),
dbus send bus=system path=/org/freedesktop/NetworkManager{,/**}
     interface=org.freedesktop.DBus.Properties
     peer=(name="{:1.@{int},org.freedesktop.DBus}"),
dbus send bus=system path=/org/freedesktop/NetworkManager{,/**}
     interface=org.freedesktop.DBus.ObjectManager
     peer=(name="{:1.@{int},org.freedesktop.DBus}"),
dbus receive bus=system path=/org/freedesktop/NetworkManager{,/**}
     interface=org.freedesktop.DBus.Introspectable
     member=Introspect
     peer=(name=":1.@{int}"),
#aa:dbus talk bus=system name=org.freedesktop.login1 label=systemd-logind
dbus send bus=system path=/org/freedesktop/login1{,/**}
     interface=org.freedesktop.login1{,.*}
     peer=(name="{:1.@{int},org.freedesktop.login1{,.*}}", label=systemd-logind),
dbus send bus=system path=/org/freedesktop/login1{,/**}
     interface=org.freedesktop.DBus.Properties
     peer=(name="{:1.@{int},org.freedesktop.login1{,.*}}", label=systemd-logind),
dbus send bus=system path=/org/freedesktop/login1{,/**}
     interface=org.freedesktop.DBus.ObjectManager
     peer=(name="{:1.@{int},org.freedesktop.login1{,.*}}", label=systemd-logind),
dbus receive bus=system path=/org/freedesktop/login1{,/**}
     interface=org.freedesktop.login1{,.*}
     peer=(name="{:1.@{int},org.freedesktop.login1{,.*}}", label=systemd-logind),
dbus receive bus=system path=/org/freedesktop/login1{,/**}
     interface=org.freedesktop.DBus.Properties
     peer=(name="{:1.@{int},org.freedesktop.login1{,.*}}", label=systemd-logind),
dbus receive bus=system path=/org/freedesktop/login1{,/**}
     interface=org.freedesktop.DBus.ObjectManager
     peer=(name="{:1.@{int},org.freedesktop.login1{,.*}}", label=systemd-logind),
dbus send bus=system path=/org/freedesktop/Accounts{,/**}
     interface=org.freedesktop.Accounts{,.*}