X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fdbus-scope.c;h=651c163be0f16be7e7a17cb8e85960a430e9f8c3;hb=c43b2132f37264600cc26e07c8d85dfdd6c969f0;hp=73b7bbf18cb418bef57920f36f554807add29b11;hpb=bc432dc7eb62c5671f2b741a86a66393adb350dc;p=elogind.git diff --git a/src/core/dbus-scope.c b/src/core/dbus-scope.c index 73b7bbf18..651c163be 100644 --- a/src/core/dbus-scope.c +++ b/src/core/dbus-scope.c @@ -19,15 +19,17 @@ along with systemd; If not, see . ***/ +#include "selinux-access.h" #include "unit.h" #include "scope.h" +#include "dbus.h" +#include "bus-util.h" +#include "bus-internal.h" +#include "bus-common-errors.h" #include "dbus-unit.h" #include "dbus-cgroup.h" #include "dbus-kill.h" #include "dbus-scope.h" -#include "bus-util.h" -#include "bus-internal.h" -#include "bus-errors.h" static int bus_scope_abandon(sd_bus *bus, sd_bus_message *message, void *userdata, sd_bus_error *error) { Scope *s = userdata; @@ -37,12 +39,21 @@ static int bus_scope_abandon(sd_bus *bus, sd_bus_message *message, void *userdat assert(message); assert(s); - r = scope_abandon(s); - if (sd_bus_error_is_set(error)) + r = mac_selinux_unit_access_check(UNIT(s), message, "stop", error); + if (r < 0) return r; + r = bus_verify_manage_units_async(UNIT(s)->manager, message, error); + if (r < 0) + return r; + if (r == 0) + return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */ + + r = scope_abandon(s); if (r == -ESTALE) return sd_bus_error_setf(error, BUS_ERROR_SCOPE_NOT_RUNNING, "Scope %s is not running, cannot abandon.", UNIT(s)->id); + if (r < 0) + return r; return sd_bus_reply_method_return(message, NULL); } @@ -55,7 +66,7 @@ const sd_bus_vtable bus_scope_vtable[] = { SD_BUS_PROPERTY("TimeoutStopUSec", "t", bus_property_get_usec, offsetof(Scope, timeout_stop_usec), SD_BUS_VTABLE_PROPERTY_CONST), SD_BUS_PROPERTY("Result", "s", property_get_result, offsetof(Scope, result), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE), SD_BUS_SIGNAL("RequestStop", NULL, 0), - SD_BUS_METHOD("Abandon", NULL, NULL, bus_scope_abandon, 0), + SD_BUS_METHOD("Abandon", NULL, NULL, bus_scope_abandon, SD_BUS_VTABLE_UNPRIVILEGED), SD_BUS_VTABLE_END }; @@ -138,7 +149,7 @@ static int bus_scope_set_transient_property( if (r < 0) return r; - unit_write_drop_in_format(UNIT(s), mode, name, "[Scope]\nTimeoutStopSec=%lluus\n", (unsigned long long) s->timeout_stop_usec); + unit_write_drop_in_format(UNIT(s), mode, name, "[Scope]\nTimeoutStopSec="USEC_FMT"us\n", s->timeout_stop_usec); } else { r = sd_bus_message_skip(message, "t"); if (r < 0) @@ -209,10 +220,10 @@ int bus_scope_send_request_stop(Scope *s) { r = sd_bus_message_new_signal( UNIT(s)->manager->api_bus, + &m, p, "org.freedesktop.systemd1.Scope", - "RequestStop", - &m); + "RequestStop"); if (r < 0) return r;