meta-agl-profile-core: recipes-connectivity: ofono: change dbus policy to enable... 81/17781/3
authorMatt Ranostay <matt.ranostay@konsulko.com>
Wed, 7 Nov 2018 05:21:26 +0000 (07:21 +0200)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Fri, 18 Jan 2019 15:18:33 +0000 (15:18 +0000)
To detect modem addition and removal in the agl-service-telephony binding
the interface needs to be enabled in the dbus policy

Bug-AGL: SPEC-2117
Change-Id: Ib610188d72404e338c59d64c4b84a183632efb1f
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
meta-agl-profile-core/recipes-connectivity/ofono/files/ofono.conf [new file with mode: 0644]
meta-agl-profile-core/recipes-connectivity/ofono/ofono_%.bbappend [new file with mode: 0644]

diff --git a/meta-agl-profile-core/recipes-connectivity/ofono/files/ofono.conf b/meta-agl-profile-core/recipes-connectivity/ofono/files/ofono.conf
new file mode 100644 (file)
index 0000000..e47214c
--- /dev/null
@@ -0,0 +1,30 @@
+<!-- This configuration file specifies the required security policies
+     for oFono core 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.ofono"/>
+    <allow send_destination="org.ofono"/>
+    <allow send_interface="org.ofono.Manager"/>
+    <allow send_interface="org.ofono.SimToolkitAgent"/>
+    <allow send_interface="org.ofono.PushNotificationAgent"/>
+    <allow send_interface="org.ofono.SmartMessagingAgent"/>
+    <allow send_interface="org.ofono.PositioningRequestAgent"/>
+    <allow send_interface="org.ofono.HandsfreeAudioAgent"/>
+    <allow send_interface="org.ofono.Modem"/>
+  </policy>
+
+  <policy at_console="true">
+    <allow send_destination="org.ofono"/>
+  </policy>
+
+  <policy context="default">
+    <deny send_destination="org.ofono"/>
+  </policy>
+
+</busconfig>
diff --git a/meta-agl-profile-core/recipes-connectivity/ofono/ofono_%.bbappend b/meta-agl-profile-core/recipes-connectivity/ofono/ofono_%.bbappend
new file mode 100644 (file)
index 0000000..e78eb44
--- /dev/null
@@ -0,0 +1,6 @@
+FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
+SRC_URI_append = "file://ofono.conf"
+
+do_install_append() {
+    install -m 0644 ${WORKDIR}/ofono.conf ${D}${sysconfdir}/dbus-1/system.d/ofono.conf
+}