Add D-Bus access configuration file

This commit is contained in:
Marcel Holtmann 2009-05-05 18:59:24 -07:00
parent 9944226e92
commit 2eca0bc88f
2 changed files with 31 additions and 0 deletions

View File

@ -1,4 +1,10 @@
if DATAFILES
dbusdir = @DBUS_DATADIR@
dbus_DATA = ofono.conf
endif
sbin_PROGRAMS = ofonod
ofonod_SOURCES = main.c ofono.h log.c plugin.c
@ -22,6 +28,8 @@ AM_CFLAGS = @GTHREAD_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@ \
INCLUDES = -I$(top_builddir)/include
EXTRA_DIST = ofono.conf
MAINTAINERCLEANFILES = Makefile.in
ofono.exp: $(ofonod_OBJECTS)

23
src/ofono.conf Normal file
View File

@ -0,0 +1,23 @@
<!-- 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"/>
</policy>
<policy at_console="true">
<allow send_destination="org.ofono"/>
</policy>
<policy context="default">
<deny send_destination="org.ofono"/>
</policy>
</busconfig>