Article 5NZHZ how to allow non-root user to send message to systemd?

how to allow non-root user to send message to systemd?

by
DeanAnderson
from LinuxQuestions.org on (#5NZHZ)
Hi
My app run as non root user. And it fails on:
Code:sd_bus_call_method(
bus,
"org.freedesktop.login1",
"/org/freedesktop/login1",
"org.freedesktop.login1.Manager",because of lack of permissions. I prepared file:
Code:<!DOCTYPE busconfig PUBLIC
"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<busconfig>
<policy user="terko">
<allow send_destination="org.freedesktop.login1"
send_interface="org.freedesktop.login1.Manager" />
<allow send_destination="org.freedesktop.systemd1"
send_interface="org.freedesktop.systemd1.Manager" />
<allow send_destination="org.freedesktop.systemd1"
send_interface="org.freedesktop.DBus.Properties" />
<allow send_destination="org.freedesktop.login1"
send_interface="*" />
<allow send_destination="org.freedesktop.systemd1"
send_interface="*" />
</policy>
</busconfig>and I placed it in terko-dbus.conf file /etc/dbus-1/system.d/ (I tried also /usr/share/dbus-1/system.d) in linux image with the aid of yocto bitbake but still issue occurs. What is lack in my config file? I placed also:
Code: <policy context="default">
<allow own="*"/>
<allow send_type="method_call"/>
</policy>as in system.conf by default it is deny:
Code:<policy context="default">
<!-- All users can connect to system bus -->
<allow user="*"/>

<!-- Holes must be punched in service configuration files for
name ownership and sending method calls -->
<deny own="*"/>
<deny send_type="method_call"/>
...however it didn't help. Any ideas?latest?d=yIl2AUoC8zA latest?i=3c20XRQ8ep0:ZOsEq3lWyps:F7zBnMy latest?i=3c20XRQ8ep0:ZOsEq3lWyps:V_sGLiP latest?d=qj6IDK7rITs latest?i=3c20XRQ8ep0:ZOsEq3lWyps:gIN9vFw3c20XRQ8ep0
External Content
Source RSS or Atom Feed
Feed Location https://feeds.feedburner.com/linuxquestions/latest
Feed Title LinuxQuestions.org
Feed Link https://www.linuxquestions.org/questions/
Reply 0 comments