/***
This file is part of systemd.
Copyright 2012 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include "bus-util.h"
#include "dbus-kill.h"
#include "kill.h"
#include "signal-util.h"
SD_BUS_PROPERTY("KillMode", "s", property_get_kill_mode, offsetof(KillContext, kill_mode), SD_BUS_VTABLE_PROPERTY_CONST),
SD_BUS_PROPERTY("KillSignal", "i", bus_property_get_int, offsetof(KillContext, kill_signal), SD_BUS_VTABLE_PROPERTY_CONST),
SD_BUS_PROPERTY("SendSIGKILL", "b", bus_property_get_bool, offsetof(KillContext, send_sigkill), SD_BUS_VTABLE_PROPERTY_CONST),
SD_BUS_PROPERTY("SendSIGHUP", "b", bus_property_get_bool, offsetof(KillContext, send_sighup), SD_BUS_VTABLE_PROPERTY_CONST),
};
Unit *u,
KillContext *c,
const char *name,
sd_bus_error *error) {
int r;
assert(u);
assert(c);
const char *m;
KillMode k;
if (r < 0)
return r;
k = kill_mode_from_string(m);
if (k < 0)
return -EINVAL;
if (mode != UNIT_CHECK) {
c->kill_mode = k;
}
return 1;
int sig;
if (r < 0)
return r;
if (mode != UNIT_CHECK) {
c->kill_signal = sig;
}
return 1;
int b;
if (r < 0)
return r;
if (mode != UNIT_CHECK) {
c->send_sighup = b;
}
return 1;
int b;
if (r < 0)
return r;
if (mode != UNIT_CHECK) {
c->send_sigkill = b;
}
return 1;
}
return 0;
}