diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-06-05 12:24:03 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-05 13:09:46 +0200 |
commit | a4152e3fe28b53b8919cc404dd7eca7ead1bf9bd (patch) | |
tree | 6d19cc912c50c123de8d4d599f802f83aea73b4a /src/core/dbus-busname.c | |
parent | 5331194c120520579eede9dba4bd9c3329629601 (diff) |
kdbus: when uploading bus name policy, resolve users/groups out-of-process
It's not safe invoking NSS from PID 1, hence fork off worker processes
that upload the policy into the kernel for busnames.
Diffstat (limited to 'src/core/dbus-busname.c')
-rw-r--r-- | src/core/dbus-busname.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/dbus-busname.c b/src/core/dbus-busname.c index 5dd3a5e1ec..28f192403b 100644 --- a/src/core/dbus-busname.c +++ b/src/core/dbus-busname.c @@ -30,6 +30,8 @@ static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_result, busname_result, BusName const sd_bus_vtable bus_busname_vtable[] = { SD_BUS_VTABLE_START(0), SD_BUS_PROPERTY("Name", "s", NULL, offsetof(BusName, name), SD_BUS_VTABLE_PROPERTY_CONST), + SD_BUS_PROPERTY("TimeoutUSec", "t", bus_property_get_usec, offsetof(BusName, timeout_usec), SD_BUS_VTABLE_PROPERTY_CONST), + SD_BUS_PROPERTY("ControlPID", "u", bus_property_get_pid, offsetof(BusName, control_pid), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE), SD_BUS_PROPERTY("Result", "s", property_get_result, offsetof(BusName, result), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE), SD_BUS_PROPERTY("Activating", "b", bus_property_get_bool, offsetof(BusName, activating), SD_BUS_VTABLE_PROPERTY_CONST), SD_BUS_PROPERTY("AcceptFileDescriptors", "b", bus_property_get_bool, offsetof(BusName, accept_fd), SD_BUS_VTABLE_PROPERTY_CONST), |