1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 #include <sys/reboot.h>
28 #include <sys/ioctl.h>
32 #include <sys/socket.h>
36 #include <dbus/dbus.h>
42 #include "utmp-wtmp.h"
46 #include "dbus-common.h"
47 #include "cgroup-show.h"
48 #include "cgroup-util.h"
50 #include "path-lookup.h"
51 #include "conf-parser.h"
52 #include "sd-daemon.h"
53 #include "shutdownd.h"
54 #include "exit-status.h"
55 #include "bus-errors.h"
57 #include "unit-name.h"
59 static const char *arg_type = NULL;
60 static char **arg_property = NULL;
61 static bool arg_all = false;
62 static bool arg_fail = false;
63 static bool arg_session = false;
64 static bool arg_global = false;
65 static bool arg_immediate = false;
66 static bool arg_no_block = false;
67 static bool arg_no_wtmp = false;
68 static bool arg_no_sync = false;
69 static bool arg_no_wall = false;
70 static bool arg_no_reload = false;
71 static bool arg_dry = false;
72 static bool arg_quiet = false;
73 static bool arg_full = false;
74 static bool arg_force = false;
75 static bool arg_defaults = false;
76 static char **arg_wall = NULL;
77 static usec_t arg_when = 0;
94 ACTION_CANCEL_SHUTDOWN,
96 } arg_action = ACTION_SYSTEMCTL;
103 static bool private_bus = false;
105 static int daemon_reload(DBusConnection *bus, char **args, unsigned n);
107 static bool on_tty(void) {
110 if (_unlikely_(t < 0))
111 t = isatty(STDOUT_FILENO) > 0;
116 static const char *ansi_highlight(bool b) {
121 return b ? ANSI_HIGHLIGHT_ON : ANSI_HIGHLIGHT_OFF;
124 static const char *ansi_highlight_green(bool b) {
129 return b ? ANSI_HIGHLIGHT_GREEN_ON : ANSI_HIGHLIGHT_OFF;
132 static bool error_is_no_service(const DBusError *error) {
135 if (!dbus_error_is_set(error))
138 if (dbus_error_has_name(error, DBUS_ERROR_NAME_HAS_NO_OWNER))
141 if (dbus_error_has_name(error, DBUS_ERROR_SERVICE_UNKNOWN))
144 return startswith(error->name, "org.freedesktop.DBus.Error.Spawn.");
147 static int translate_bus_error_to_exit_status(int r, const DBusError *error) {
150 if (!dbus_error_is_set(error))
153 if (dbus_error_has_name(error, DBUS_ERROR_ACCESS_DENIED) ||
154 dbus_error_has_name(error, BUS_ERROR_ONLY_BY_DEPENDENCY) ||
155 dbus_error_has_name(error, BUS_ERROR_NO_ISOLATION) ||
156 dbus_error_has_name(error, BUS_ERROR_TRANSACTION_IS_DESTRUCTIVE))
157 return EXIT_NOPERMISSION;
159 if (dbus_error_has_name(error, BUS_ERROR_NO_SUCH_UNIT))
160 return EXIT_NOTINSTALLED;
162 if (dbus_error_has_name(error, BUS_ERROR_JOB_TYPE_NOT_APPLICABLE) ||
163 dbus_error_has_name(error, BUS_ERROR_NOT_SUPPORTED))
164 return EXIT_NOTIMPLEMENTED;
166 if (dbus_error_has_name(error, BUS_ERROR_LOAD_FAILED))
167 return EXIT_NOTCONFIGURED;
175 static int bus_iter_get_basic_and_next(DBusMessageIter *iter, int type, void *data, bool next) {
180 if (dbus_message_iter_get_arg_type(iter) != type)
183 dbus_message_iter_get_basic(iter, data);
185 if (!dbus_message_iter_next(iter) != !next)
191 static void warn_wall(enum action action) {
192 static const char *table[_ACTION_MAX] = {
193 [ACTION_HALT] = "The system is going down for system halt NOW!",
194 [ACTION_REBOOT] = "The system is going down for reboot NOW!",
195 [ACTION_POWEROFF] = "The system is going down for power-off NOW!",
196 [ACTION_RESCUE] = "The system is going down to rescue mode NOW!",
197 [ACTION_EMERGENCY] = "The system is going down to emergency mode NOW!"
206 if (!(p = strv_join(arg_wall, " "))) {
207 log_error("Failed to join strings.");
223 utmp_wall(table[action]);
228 const char *description;
229 const char *load_state;
230 const char *active_state;
231 const char *sub_state;
232 const char *following;
233 const char *unit_path;
235 const char *job_type;
236 const char *job_path;
239 static int compare_unit_info(const void *a, const void *b) {
241 const struct unit_info *u = a, *v = b;
243 d1 = strrchr(u->id, '.');
244 d2 = strrchr(v->id, '.');
249 if ((r = strcasecmp(d1, d2)) != 0)
253 return strcasecmp(u->id, v->id);
256 static bool output_show_job(const struct unit_info *u) {
259 return (!arg_type || ((dot = strrchr(u->id, '.')) &&
260 streq(dot+1, arg_type))) &&
261 (arg_all || !(streq(u->active_state, "inactive") || u->following[0]) || u->job_id > 0);
264 static void output_units_list(const struct unit_info *unit_infos, unsigned c) {
265 unsigned active_len, sub_len, job_len;
266 const struct unit_info *u;
268 active_len = sizeof("ACTIVE")-1;
269 sub_len = sizeof("SUB")-1;
270 job_len = sizeof("JOB")-1;
272 for (u = unit_infos; u < unit_infos + c; u++) {
273 if (!output_show_job(u))
276 active_len = MAX(active_len, strlen(u->active_state));
277 sub_len = MAX(sub_len, strlen(u->sub_state));
279 job_len = MAX(job_len, strlen(u->job_type));
283 printf("%-25s %-6s %-*s %-*s %-*s", "UNIT", "LOAD",
284 active_len, "ACTIVE", sub_len, "SUB", job_len, "JOB");
285 if (columns() >= 80+12 || arg_full)
286 printf(" %s\n", "DESCRIPTION");
291 for (u = unit_infos; u < unit_infos + c; u++) {
294 const char *on_loaded, *off_loaded;
295 const char *on_active, *off_active;
297 if (!output_show_job(u))
300 if (!streq(u->load_state, "loaded") &&
301 !streq(u->load_state, "banned")) {
302 on_loaded = ansi_highlight(true);
303 off_loaded = ansi_highlight(false);
305 on_loaded = off_loaded = "";
307 if (streq(u->active_state, "failed")) {
308 on_active = ansi_highlight(true);
309 off_active = ansi_highlight(false);
311 on_active = off_active = "";
313 e = arg_full ? NULL : ellipsize(u->id, 25, 33);
315 printf("%-25s %s%-6s%s %s%-*s %-*s%s%n",
317 on_loaded, u->load_state, off_loaded,
318 on_active, active_len, u->active_state,
319 sub_len, u->sub_state, off_active,
324 a -= strlen(on_loaded) + strlen(off_loaded);
325 a -= strlen(on_active) + strlen(off_active);
328 printf(" %-*s", job_len, u->job_type);
332 if (a + b + 1 < columns()) {
334 printf(" %-*s", job_len, "");
337 printf(" %s", u->description);
339 printf(" %.*s", columns() - a - b - 1, u->description);
346 printf("\nLOAD = Reflects whether the unit definition was properly loaded.\n"
347 "ACTIVE = The high-level unit activation state, i.e. generalization of SUB.\n"
348 "SUB = The low-level unit activation state, values depend on unit type.\n"
349 "JOB = Pending job for the unit.\n");
352 printf("\n%u units listed.\n", c);
354 printf("\n%u units listed. Pass --all to see inactive units, too.\n", c);
358 static int list_units(DBusConnection *bus, char **args, unsigned n) {
359 DBusMessage *m = NULL, *reply = NULL;
362 DBusMessageIter iter, sub, sub2;
363 unsigned c = 0, n_units = 0;
364 struct unit_info *unit_infos = NULL;
366 dbus_error_init(&error);
370 if (!(m = dbus_message_new_method_call(
371 "org.freedesktop.systemd1",
372 "/org/freedesktop/systemd1",
373 "org.freedesktop.systemd1.Manager",
375 log_error("Could not allocate message.");
379 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
380 log_error("Failed to issue method call: %s", bus_error_message(&error));
385 if (!dbus_message_iter_init(reply, &iter) ||
386 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY ||
387 dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_STRUCT) {
388 log_error("Failed to parse reply.");
393 dbus_message_iter_recurse(&iter, &sub);
395 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
398 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRUCT) {
399 log_error("Failed to parse reply.");
407 n_units = MAX(2*c, 16);
408 w = realloc(unit_infos, sizeof(struct unit_info) * n_units);
411 log_error("Failed to allocate unit array.");
421 dbus_message_iter_recurse(&sub, &sub2);
423 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->id, true) < 0 ||
424 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->description, true) < 0 ||
425 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->load_state, true) < 0 ||
426 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->active_state, true) < 0 ||
427 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->sub_state, true) < 0 ||
428 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->following, true) < 0 ||
429 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_OBJECT_PATH, &u->unit_path, true) < 0 ||
430 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT32, &u->job_id, true) < 0 ||
431 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->job_type, true) < 0 ||
432 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_OBJECT_PATH, &u->job_path, false) < 0) {
433 log_error("Failed to parse reply.");
438 dbus_message_iter_next(&sub);
442 qsort(unit_infos, c, sizeof(struct unit_info), compare_unit_info);
443 output_units_list(unit_infos, c);
449 dbus_message_unref(m);
452 dbus_message_unref(reply);
456 dbus_error_free(&error);
461 static int dot_one_property(const char *name, const char *prop, DBusMessageIter *iter) {
462 static const char * const colors[] = {
463 "Requires", "[color=\"black\"]",
464 "RequiresOverridable", "[color=\"black\"]",
465 "Requisite", "[color=\"darkblue\"]",
466 "RequisiteOverridable", "[color=\"darkblue\"]",
467 "Wants", "[color=\"darkgrey\"]",
468 "Conflicts", "[color=\"red\"]",
469 "ConflictedBy", "[color=\"red\"]",
470 "After", "[color=\"green\"]"
473 const char *c = NULL;
480 for (i = 0; i < ELEMENTSOF(colors); i += 2)
481 if (streq(colors[i], prop)) {
489 if (arg_dot != DOT_ALL)
490 if ((arg_dot == DOT_ORDER) != streq(prop, "After"))
493 switch (dbus_message_iter_get_arg_type(iter)) {
495 case DBUS_TYPE_ARRAY:
497 if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRING) {
500 dbus_message_iter_recurse(iter, &sub);
502 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
505 assert(dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRING);
506 dbus_message_iter_get_basic(&sub, &s);
507 printf("\t\"%s\"->\"%s\" %s;\n", name, s, c);
509 dbus_message_iter_next(&sub);
519 static int dot_one(DBusConnection *bus, const char *name, const char *path) {
520 DBusMessage *m = NULL, *reply = NULL;
521 const char *interface = "org.freedesktop.systemd1.Unit";
524 DBusMessageIter iter, sub, sub2, sub3;
529 dbus_error_init(&error);
531 if (!(m = dbus_message_new_method_call(
532 "org.freedesktop.systemd1",
534 "org.freedesktop.DBus.Properties",
536 log_error("Could not allocate message.");
541 if (!dbus_message_append_args(m,
542 DBUS_TYPE_STRING, &interface,
543 DBUS_TYPE_INVALID)) {
544 log_error("Could not append arguments to message.");
549 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
550 log_error("Failed to issue method call: %s", bus_error_message(&error));
555 if (!dbus_message_iter_init(reply, &iter) ||
556 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY ||
557 dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_DICT_ENTRY) {
558 log_error("Failed to parse reply.");
563 dbus_message_iter_recurse(&iter, &sub);
565 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
568 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_DICT_ENTRY) {
569 log_error("Failed to parse reply.");
574 dbus_message_iter_recurse(&sub, &sub2);
576 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &prop, true) < 0) {
577 log_error("Failed to parse reply.");
582 if (dbus_message_iter_get_arg_type(&sub2) != DBUS_TYPE_VARIANT) {
583 log_error("Failed to parse reply.");
588 dbus_message_iter_recurse(&sub2, &sub3);
590 if (dot_one_property(name, prop, &sub3)) {
591 log_error("Failed to parse reply.");
596 dbus_message_iter_next(&sub);
603 dbus_message_unref(m);
606 dbus_message_unref(reply);
608 dbus_error_free(&error);
613 static int dot(DBusConnection *bus, char **args, unsigned n) {
614 DBusMessage *m = NULL, *reply = NULL;
617 DBusMessageIter iter, sub, sub2;
619 dbus_error_init(&error);
623 if (!(m = dbus_message_new_method_call(
624 "org.freedesktop.systemd1",
625 "/org/freedesktop/systemd1",
626 "org.freedesktop.systemd1.Manager",
628 log_error("Could not allocate message.");
632 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
633 log_error("Failed to issue method call: %s", bus_error_message(&error));
638 if (!dbus_message_iter_init(reply, &iter) ||
639 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY ||
640 dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_STRUCT) {
641 log_error("Failed to parse reply.");
646 printf("digraph systemd {\n");
648 dbus_message_iter_recurse(&iter, &sub);
649 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
650 const char *id, *description, *load_state, *active_state, *sub_state, *following, *unit_path;
652 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRUCT) {
653 log_error("Failed to parse reply.");
658 dbus_message_iter_recurse(&sub, &sub2);
660 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &id, true) < 0 ||
661 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &description, true) < 0 ||
662 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &load_state, true) < 0 ||
663 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &active_state, true) < 0 ||
664 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &sub_state, true) < 0 ||
665 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &following, true) < 0 ||
666 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_OBJECT_PATH, &unit_path, true) < 0) {
667 log_error("Failed to parse reply.");
672 if ((r = dot_one(bus, id, unit_path)) < 0)
675 /* printf("\t\"%s\";\n", id); */
676 dbus_message_iter_next(&sub);
681 log_info(" Color legend: black = Requires\n"
682 " dark blue = Requisite\n"
683 " dark grey = Wants\n"
687 if (isatty(fileno(stdout)))
688 log_notice("-- You probably want to process this output with graphviz' dot tool.\n"
689 "-- Try a shell pipeline like 'systemctl dot | dot -Tsvg > systemd.svg'!\n");
695 dbus_message_unref(m);
698 dbus_message_unref(reply);
700 dbus_error_free(&error);
705 static int list_jobs(DBusConnection *bus, char **args, unsigned n) {
706 DBusMessage *m = NULL, *reply = NULL;
709 DBusMessageIter iter, sub, sub2;
712 dbus_error_init(&error);
716 if (!(m = dbus_message_new_method_call(
717 "org.freedesktop.systemd1",
718 "/org/freedesktop/systemd1",
719 "org.freedesktop.systemd1.Manager",
721 log_error("Could not allocate message.");
725 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
726 log_error("Failed to issue method call: %s", bus_error_message(&error));
731 if (!dbus_message_iter_init(reply, &iter) ||
732 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY ||
733 dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_STRUCT) {
734 log_error("Failed to parse reply.");
739 dbus_message_iter_recurse(&iter, &sub);
741 if (isatty(STDOUT_FILENO))
742 printf("%4s %-25s %-15s %-7s\n", "JOB", "UNIT", "TYPE", "STATE");
744 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
745 const char *name, *type, *state, *job_path, *unit_path;
749 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRUCT) {
750 log_error("Failed to parse reply.");
755 dbus_message_iter_recurse(&sub, &sub2);
757 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT32, &id, true) < 0 ||
758 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &name, true) < 0 ||
759 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &type, true) < 0 ||
760 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &state, true) < 0 ||
761 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_OBJECT_PATH, &job_path, true) < 0 ||
762 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_OBJECT_PATH, &unit_path, false) < 0) {
763 log_error("Failed to parse reply.");
768 e = arg_full ? NULL : ellipsize(name, 25, 33);
769 printf("%4u %-25s %-15s %-7s\n", id, e ? e : name, type, state);
774 dbus_message_iter_next(&sub);
777 if (isatty(STDOUT_FILENO))
778 printf("\n%u jobs listed.\n", k);
784 dbus_message_unref(m);
787 dbus_message_unref(reply);
789 dbus_error_free(&error);
794 static int load_unit(DBusConnection *bus, char **args, unsigned n) {
795 DBusMessage *m = NULL, *reply = NULL;
800 dbus_error_init(&error);
805 for (i = 1; i < n; i++) {
807 if (!(m = dbus_message_new_method_call(
808 "org.freedesktop.systemd1",
809 "/org/freedesktop/systemd1",
810 "org.freedesktop.systemd1.Manager",
812 log_error("Could not allocate message.");
817 if (!dbus_message_append_args(m,
818 DBUS_TYPE_STRING, &args[i],
819 DBUS_TYPE_INVALID)) {
820 log_error("Could not append arguments to message.");
825 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
826 log_error("Failed to issue method call: %s", bus_error_message(&error));
831 dbus_message_unref(m);
832 dbus_message_unref(reply);
841 dbus_message_unref(m);
844 dbus_message_unref(reply);
846 dbus_error_free(&error);
851 static int cancel_job(DBusConnection *bus, char **args, unsigned n) {
852 DBusMessage *m = NULL, *reply = NULL;
857 dbus_error_init(&error);
863 return daemon_reload(bus, args, n);
865 for (i = 1; i < n; i++) {
869 if (!(m = dbus_message_new_method_call(
870 "org.freedesktop.systemd1",
871 "/org/freedesktop/systemd1",
872 "org.freedesktop.systemd1.Manager",
874 log_error("Could not allocate message.");
879 if ((r = safe_atou(args[i], &id)) < 0) {
880 log_error("Failed to parse job id: %s", strerror(-r));
884 assert_cc(sizeof(uint32_t) == sizeof(id));
885 if (!dbus_message_append_args(m,
886 DBUS_TYPE_UINT32, &id,
887 DBUS_TYPE_INVALID)) {
888 log_error("Could not append arguments to message.");
893 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
894 log_error("Failed to issue method call: %s", bus_error_message(&error));
899 if (!dbus_message_get_args(reply, &error,
900 DBUS_TYPE_OBJECT_PATH, &path,
901 DBUS_TYPE_INVALID)) {
902 log_error("Failed to parse reply: %s", bus_error_message(&error));
907 dbus_message_unref(m);
908 if (!(m = dbus_message_new_method_call(
909 "org.freedesktop.systemd1",
911 "org.freedesktop.systemd1.Job",
913 log_error("Could not allocate message.");
918 dbus_message_unref(reply);
919 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
920 log_error("Failed to issue method call: %s", bus_error_message(&error));
925 dbus_message_unref(m);
926 dbus_message_unref(reply);
934 dbus_message_unref(m);
937 dbus_message_unref(reply);
939 dbus_error_free(&error);
944 static bool need_daemon_reload(DBusConnection *bus, const char *unit) {
945 DBusMessage *m = NULL, *reply = NULL;
946 dbus_bool_t b = FALSE;
947 DBusMessageIter iter, sub;
949 *interface = "org.freedesktop.systemd1.Unit",
950 *property = "NeedDaemonReload",
953 /* We ignore all errors here, since this is used to show a warning only */
955 if (!(m = dbus_message_new_method_call(
956 "org.freedesktop.systemd1",
957 "/org/freedesktop/systemd1",
958 "org.freedesktop.systemd1.Manager",
962 if (!dbus_message_append_args(m,
963 DBUS_TYPE_STRING, &unit,
967 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, NULL)))
970 if (!dbus_message_get_args(reply, NULL,
971 DBUS_TYPE_OBJECT_PATH, &path,
975 dbus_message_unref(m);
976 if (!(m = dbus_message_new_method_call(
977 "org.freedesktop.systemd1",
979 "org.freedesktop.DBus.Properties",
983 if (!dbus_message_append_args(m,
984 DBUS_TYPE_STRING, &interface,
985 DBUS_TYPE_STRING, &property,
986 DBUS_TYPE_INVALID)) {
990 dbus_message_unref(reply);
991 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, NULL)))
994 if (!dbus_message_iter_init(reply, &iter) ||
995 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
998 dbus_message_iter_recurse(&iter, &sub);
1000 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_BOOLEAN)
1003 dbus_message_iter_get_basic(&sub, &b);
1007 dbus_message_unref(m);
1010 dbus_message_unref(reply);
1015 typedef struct WaitData {
1020 static DBusHandlerResult wait_filter(DBusConnection *connection, DBusMessage *message, void *data) {
1028 dbus_error_init(&error);
1030 log_debug("Got D-Bus request: %s.%s() on %s",
1031 dbus_message_get_interface(message),
1032 dbus_message_get_member(message),
1033 dbus_message_get_path(message));
1035 if (dbus_message_is_signal(message, DBUS_INTERFACE_LOCAL, "Disconnected")) {
1036 log_error("Warning! D-Bus connection terminated.");
1037 dbus_connection_close(connection);
1039 } else if (dbus_message_is_signal(message, "org.freedesktop.systemd1.Manager", "JobRemoved")) {
1042 dbus_bool_t success = true;
1044 if (!dbus_message_get_args(message, &error,
1045 DBUS_TYPE_UINT32, &id,
1046 DBUS_TYPE_OBJECT_PATH, &path,
1047 DBUS_TYPE_BOOLEAN, &success,
1049 log_error("Failed to parse message: %s", bus_error_message(&error));
1053 if ((p = set_remove(d->set, (char*) path)))
1061 dbus_error_free(&error);
1062 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1065 static int enable_wait_for_jobs(DBusConnection *bus) {
1073 dbus_error_init(&error);
1074 dbus_bus_add_match(bus,
1076 "sender='org.freedesktop.systemd1',"
1077 "interface='org.freedesktop.systemd1.Manager',"
1078 "member='JobRemoved',"
1079 "path='/org/freedesktop/systemd1'",
1082 if (dbus_error_is_set(&error)) {
1083 log_error("Failed to add match: %s", bus_error_message(&error));
1084 dbus_error_free(&error);
1088 /* This is slightly dirty, since we don't undo the match registrations. */
1092 static int wait_for_jobs(DBusConnection *bus, Set *s) {
1103 if (!dbus_connection_add_filter(bus, wait_filter, &d, NULL)) {
1104 log_error("Failed to add filter.");
1109 while (!set_isempty(s) &&
1110 dbus_connection_read_write_dispatch(bus, -1))
1113 if (!arg_quiet && d.failed)
1114 log_error("Job failed, see system logs for details.");
1116 r = d.failed ? -EIO : 0;
1119 /* This is slightly dirty, since we don't undo the filter registration. */
1124 static int start_unit_one(
1125 DBusConnection *bus,
1132 DBusMessage *m = NULL, *reply = NULL;
1141 assert(arg_no_block || s);
1143 if (!(m = dbus_message_new_method_call(
1144 "org.freedesktop.systemd1",
1145 "/org/freedesktop/systemd1",
1146 "org.freedesktop.systemd1.Manager",
1148 log_error("Could not allocate message.");
1153 if (!dbus_message_append_args(m,
1154 DBUS_TYPE_STRING, &name,
1155 DBUS_TYPE_STRING, &mode,
1156 DBUS_TYPE_INVALID)) {
1157 log_error("Could not append arguments to message.");
1162 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, error))) {
1164 if (arg_action != ACTION_SYSTEMCTL && error_is_no_service(error)) {
1165 /* There's always a fallback possible for
1166 * legacy actions. */
1171 log_error("Failed to issue method call: %s", bus_error_message(error));
1176 if (!dbus_message_get_args(reply, error,
1177 DBUS_TYPE_OBJECT_PATH, &path,
1178 DBUS_TYPE_INVALID)) {
1179 log_error("Failed to parse reply: %s", bus_error_message(error));
1184 if (need_daemon_reload(bus, name))
1185 log_warning("Unit file of created job changed on disk, 'systemctl %s daemon-reload' recommended.",
1186 arg_session ? "--session" : "--system");
1188 if (!arg_no_block) {
1191 if (!(p = strdup(path))) {
1192 log_error("Failed to duplicate path.");
1197 if ((r = set_put(s, p)) < 0) {
1199 log_error("Failed to add path to set.");
1208 dbus_message_unref(m);
1211 dbus_message_unref(reply);
1216 static enum action verb_to_action(const char *verb) {
1217 if (streq(verb, "halt"))
1219 else if (streq(verb, "poweroff"))
1220 return ACTION_POWEROFF;
1221 else if (streq(verb, "reboot"))
1222 return ACTION_REBOOT;
1223 else if (streq(verb, "rescue"))
1224 return ACTION_RESCUE;
1225 else if (streq(verb, "emergency"))
1226 return ACTION_EMERGENCY;
1227 else if (streq(verb, "default"))
1228 return ACTION_DEFAULT;
1230 return ACTION_INVALID;
1233 static int start_unit(DBusConnection *bus, char **args, unsigned n) {
1235 static const char * const table[_ACTION_MAX] = {
1236 [ACTION_HALT] = SPECIAL_HALT_TARGET,
1237 [ACTION_POWEROFF] = SPECIAL_POWEROFF_TARGET,
1238 [ACTION_REBOOT] = SPECIAL_REBOOT_TARGET,
1239 [ACTION_RUNLEVEL2] = SPECIAL_RUNLEVEL2_TARGET,
1240 [ACTION_RUNLEVEL3] = SPECIAL_RUNLEVEL3_TARGET,
1241 [ACTION_RUNLEVEL4] = SPECIAL_RUNLEVEL4_TARGET,
1242 [ACTION_RUNLEVEL5] = SPECIAL_RUNLEVEL5_TARGET,
1243 [ACTION_RESCUE] = SPECIAL_RESCUE_TARGET,
1244 [ACTION_EMERGENCY] = SPECIAL_EMERGENCY_TARGET,
1245 [ACTION_DEFAULT] = SPECIAL_DEFAULT_TARGET
1250 const char *method, *mode, *one_name;
1254 dbus_error_init(&error);
1258 if (arg_action == ACTION_SYSTEMCTL) {
1260 streq(args[0], "stop") ? "StopUnit" :
1261 streq(args[0], "reload") ? "ReloadUnit" :
1262 streq(args[0], "restart") ? "RestartUnit" :
1263 streq(args[0], "try-restart") ||
1264 streq(args[0], "condrestart") ? "TryRestartUnit" :
1265 streq(args[0], "reload-or-restart") ? "ReloadOrRestartUnit" :
1266 streq(args[0], "reload-or-try-restart") ||
1267 streq(args[0], "force-reload") ? "ReloadOrTryRestartUnit" :
1271 (streq(args[0], "isolate") ||
1272 streq(args[0], "rescue") ||
1273 streq(args[0], "emergency")) ? "isolate" :
1277 one_name = table[verb_to_action(args[0])];
1280 assert(arg_action < ELEMENTSOF(table));
1281 assert(table[arg_action]);
1283 method = "StartUnit";
1285 mode = (arg_action == ACTION_EMERGENCY ||
1286 arg_action == ACTION_RESCUE ||
1287 arg_action == ACTION_RUNLEVEL2 ||
1288 arg_action == ACTION_RUNLEVEL3 ||
1289 arg_action == ACTION_RUNLEVEL4 ||
1290 arg_action == ACTION_RUNLEVEL5) ? "isolate" : "replace";
1292 one_name = table[arg_action];
1295 if (!arg_no_block) {
1296 if ((ret = enable_wait_for_jobs(bus)) < 0) {
1297 log_error("Could not watch jobs: %s", strerror(-ret));
1301 if (!(s = set_new(string_hash_func, string_compare_func))) {
1302 log_error("Failed to allocate set.");
1309 if ((ret = start_unit_one(bus, method, one_name, mode, &error, s)) <= 0)
1312 for (i = 1; i < n; i++)
1313 if ((r = start_unit_one(bus, method, args[i], mode, &error, s)) != 0) {
1314 ret = translate_bus_error_to_exit_status(r, &error);
1315 dbus_error_free(&error);
1320 if ((r = wait_for_jobs(bus, s)) < 0) {
1329 dbus_error_free(&error);
1334 static int start_special(DBusConnection *bus, char **args, unsigned n) {
1340 r = start_unit(bus, args, n);
1343 warn_wall(verb_to_action(args[0]));
1348 static int check_unit(DBusConnection *bus, char **args, unsigned n) {
1349 DBusMessage *m = NULL, *reply = NULL;
1351 *interface = "org.freedesktop.systemd1.Unit",
1352 *property = "ActiveState";
1353 int r = 3; /* According to LSB: "program is not running" */
1360 dbus_error_init(&error);
1362 for (i = 1; i < n; i++) {
1363 const char *path = NULL;
1365 DBusMessageIter iter, sub;
1367 if (!(m = dbus_message_new_method_call(
1368 "org.freedesktop.systemd1",
1369 "/org/freedesktop/systemd1",
1370 "org.freedesktop.systemd1.Manager",
1372 log_error("Could not allocate message.");
1377 if (!dbus_message_append_args(m,
1378 DBUS_TYPE_STRING, &args[i],
1379 DBUS_TYPE_INVALID)) {
1380 log_error("Could not append arguments to message.");
1385 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
1387 /* Hmm, cannot figure out anything about this unit... */
1391 dbus_error_free(&error);
1395 if (!dbus_message_get_args(reply, &error,
1396 DBUS_TYPE_OBJECT_PATH, &path,
1397 DBUS_TYPE_INVALID)) {
1398 log_error("Failed to parse reply: %s", bus_error_message(&error));
1403 dbus_message_unref(m);
1404 if (!(m = dbus_message_new_method_call(
1405 "org.freedesktop.systemd1",
1407 "org.freedesktop.DBus.Properties",
1409 log_error("Could not allocate message.");
1414 if (!dbus_message_append_args(m,
1415 DBUS_TYPE_STRING, &interface,
1416 DBUS_TYPE_STRING, &property,
1417 DBUS_TYPE_INVALID)) {
1418 log_error("Could not append arguments to message.");
1423 dbus_message_unref(reply);
1424 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
1425 log_error("Failed to issue method call: %s", bus_error_message(&error));
1430 if (!dbus_message_iter_init(reply, &iter) ||
1431 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT) {
1432 log_error("Failed to parse reply.");
1437 dbus_message_iter_recurse(&iter, &sub);
1439 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRING) {
1440 log_error("Failed to parse reply.");
1445 dbus_message_iter_get_basic(&sub, &state);
1450 if (streq(state, "active") || streq(state, "reloading"))
1453 dbus_message_unref(m);
1454 dbus_message_unref(reply);
1460 dbus_message_unref(m);
1463 dbus_message_unref(reply);
1465 dbus_error_free(&error);
1470 typedef struct ExecStatusInfo {
1476 usec_t start_timestamp;
1477 usec_t exit_timestamp;
1482 LIST_FIELDS(struct ExecStatusInfo, exec);
1485 static void exec_status_info_free(ExecStatusInfo *i) {
1493 static int exec_status_info_deserialize(DBusMessageIter *sub, ExecStatusInfo *i) {
1494 uint64_t start_timestamp, exit_timestamp;
1495 DBusMessageIter sub2, sub3;
1499 int32_t code, status;
1505 if (dbus_message_iter_get_arg_type(sub) != DBUS_TYPE_STRUCT)
1508 dbus_message_iter_recurse(sub, &sub2);
1510 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &path, true) < 0)
1513 if (!(i->path = strdup(path)))
1516 if (dbus_message_iter_get_arg_type(&sub2) != DBUS_TYPE_ARRAY ||
1517 dbus_message_iter_get_element_type(&sub2) != DBUS_TYPE_STRING)
1521 dbus_message_iter_recurse(&sub2, &sub3);
1522 while (dbus_message_iter_get_arg_type(&sub3) != DBUS_TYPE_INVALID) {
1523 assert(dbus_message_iter_get_arg_type(&sub3) == DBUS_TYPE_STRING);
1524 dbus_message_iter_next(&sub3);
1529 if (!(i->argv = new0(char*, n+1)))
1533 dbus_message_iter_recurse(&sub2, &sub3);
1534 while (dbus_message_iter_get_arg_type(&sub3) != DBUS_TYPE_INVALID) {
1537 assert(dbus_message_iter_get_arg_type(&sub3) == DBUS_TYPE_STRING);
1538 dbus_message_iter_get_basic(&sub3, &s);
1539 dbus_message_iter_next(&sub3);
1541 if (!(i->argv[n++] = strdup(s)))
1545 if (!dbus_message_iter_next(&sub2) ||
1546 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_BOOLEAN, &ignore, true) < 0 ||
1547 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT64, &start_timestamp, true) < 0 ||
1548 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT64, &exit_timestamp, true) < 0 ||
1549 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT32, &pid, true) < 0 ||
1550 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_INT32, &code, true) < 0 ||
1551 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_INT32, &status, false) < 0)
1555 i->start_timestamp = (usec_t) start_timestamp;
1556 i->exit_timestamp = (usec_t) exit_timestamp;
1557 i->pid = (pid_t) pid;
1564 typedef struct UnitStatusInfo {
1566 const char *load_state;
1567 const char *active_state;
1568 const char *sub_state;
1570 const char *description;
1571 const char *following;
1574 const char *default_control_group;
1576 usec_t inactive_exit_timestamp;
1577 usec_t active_enter_timestamp;
1578 usec_t active_exit_timestamp;
1579 usec_t inactive_enter_timestamp;
1581 bool need_daemon_reload;
1586 const char *status_text;
1588 #ifdef HAVE_SYSV_COMPAT
1592 usec_t start_timestamp;
1593 usec_t exit_timestamp;
1595 int exit_code, exit_status;
1598 unsigned n_accepted;
1599 unsigned n_connections;
1603 const char *sysfs_path;
1605 /* Mount, Automount */
1611 LIST_HEAD(ExecStatusInfo, exec);
1614 static void print_status_info(UnitStatusInfo *i) {
1616 const char *on, *off, *ss;
1618 char since1[FORMAT_TIMESTAMP_PRETTY_MAX], *s1;
1619 char since2[FORMAT_TIMESTAMP_MAX], *s2;
1623 /* This shows pretty information about a unit. See
1624 * print_property() for a low-level property printer */
1626 printf("%s", strna(i->id));
1628 if (i->description && !streq_ptr(i->id, i->description))
1629 printf(" - %s", i->description);
1634 printf("\t Follow: unit currently follows state of %s\n", i->following);
1636 if (streq_ptr(i->load_state, "failed") ||
1637 streq_ptr(i->load_state, "banned")) {
1638 on = ansi_highlight(true);
1639 off = ansi_highlight(false);
1644 printf("\t Loaded: %s%s%s (%s)\n", on, strna(i->load_state), off, i->path);
1646 printf("\t Loaded: %s%s%s\n", on, strna(i->load_state), off);
1648 ss = streq_ptr(i->active_state, i->sub_state) ? NULL : i->sub_state;
1650 if (streq_ptr(i->active_state, "failed")) {
1651 on = ansi_highlight(true);
1652 off = ansi_highlight(false);
1653 } else if (streq_ptr(i->active_state, "active") || streq_ptr(i->active_state, "reloading")) {
1654 on = ansi_highlight_green(true);
1655 off = ansi_highlight_green(false);
1660 printf("\t Active: %s%s (%s)%s",
1662 strna(i->active_state),
1666 printf("\t Active: %s%s%s",
1668 strna(i->active_state),
1671 timestamp = (streq_ptr(i->active_state, "active") ||
1672 streq_ptr(i->active_state, "reloading")) ? i->active_enter_timestamp :
1673 (streq_ptr(i->active_state, "inactive") ||
1674 streq_ptr(i->active_state, "failed")) ? i->inactive_enter_timestamp :
1675 streq_ptr(i->active_state, "activating") ? i->inactive_exit_timestamp :
1676 i->active_exit_timestamp;
1678 s1 = format_timestamp_pretty(since1, sizeof(since1), timestamp);
1679 s2 = format_timestamp(since2, sizeof(since2), timestamp);
1682 printf(" since %s; %s\n", s2, s1);
1684 printf(" since %s\n", s2);
1689 printf("\t Device: %s\n", i->sysfs_path);
1691 printf("\t Where: %s\n", i->where);
1693 printf("\t What: %s\n", i->what);
1696 printf("\tAccepted: %u; Connected: %u\n", i->n_accepted, i->n_connections);
1698 LIST_FOREACH(exec, p, i->exec) {
1701 /* Only show exited processes here */
1705 t = strv_join(p->argv, " ");
1706 printf("\t Process: %u (%s, code=%s, ", p->pid, strna(t), sigchld_code_to_string(p->code));
1709 if (p->code == CLD_EXITED) {
1712 printf("status=%i", p->status);
1714 #ifdef HAVE_SYSV_COMPAT
1715 if ((c = exit_status_to_string(p->status, i->is_sysv ? EXIT_STATUS_LSB : EXIT_STATUS_SYSTEMD)))
1717 if ((c = exit_status_to_string(p->status, EXIT_STATUS_SYSTEMD)))
1722 printf("signal=%s", signal_to_string(p->status));
1725 if (i->main_pid == p->pid &&
1726 i->start_timestamp == p->start_timestamp &&
1727 i->exit_timestamp == p->start_timestamp)
1728 /* Let's not show this twice */
1731 if (p->pid == i->control_pid)
1735 if (i->main_pid > 0 || i->control_pid > 0) {
1738 if (i->main_pid > 0) {
1739 printf("Main PID: %u", (unsigned) i->main_pid);
1743 get_process_name(i->main_pid, &t);
1748 } else if (i->exit_code > 0) {
1749 printf(" (code=%s, ", sigchld_code_to_string(i->exit_code));
1751 if (i->exit_code == CLD_EXITED) {
1754 printf("status=%i", i->exit_status);
1756 #ifdef HAVE_SYSV_COMPAT
1757 if ((c = exit_status_to_string(i->exit_status, i->is_sysv ? EXIT_STATUS_LSB : EXIT_STATUS_SYSTEMD)))
1759 if ((c = exit_status_to_string(i->exit_status, EXIT_STATUS_SYSTEMD)))
1764 printf("signal=%s", signal_to_string(i->exit_status));
1769 if (i->main_pid > 0 && i->control_pid > 0)
1772 if (i->control_pid > 0) {
1775 printf(" Control: %u", (unsigned) i->control_pid);
1777 get_process_name(i->control_pid, &t);
1788 printf("\t Status: \"%s\"\n", i->status_text);
1790 if (i->default_control_group) {
1793 printf("\t CGroup: %s\n", i->default_control_group);
1795 if ((c = columns()) > 18)
1800 show_cgroup_by_path(i->default_control_group, "\t\t ", c);
1803 if (i->need_daemon_reload)
1804 printf("\n%sWarning:%s Unit file changed on disk, 'systemctl %s daemon-reload' recommended.\n",
1805 ansi_highlight(true),
1806 ansi_highlight(false),
1807 arg_session ? "--session" : "--system");
1810 static int status_property(const char *name, DBusMessageIter *iter, UnitStatusInfo *i) {
1812 switch (dbus_message_iter_get_arg_type(iter)) {
1814 case DBUS_TYPE_STRING: {
1817 dbus_message_iter_get_basic(iter, &s);
1820 if (streq(name, "Id"))
1822 else if (streq(name, "LoadState"))
1824 else if (streq(name, "ActiveState"))
1825 i->active_state = s;
1826 else if (streq(name, "SubState"))
1828 else if (streq(name, "Description"))
1830 else if (streq(name, "FragmentPath"))
1832 #ifdef HAVE_SYSV_COMPAT
1833 else if (streq(name, "SysVPath")) {
1838 else if (streq(name, "DefaultControlGroup"))
1839 i->default_control_group = s;
1840 else if (streq(name, "StatusText"))
1842 else if (streq(name, "SysFSPath"))
1844 else if (streq(name, "Where"))
1846 else if (streq(name, "What"))
1848 else if (streq(name, "Following"))
1855 case DBUS_TYPE_BOOLEAN: {
1858 dbus_message_iter_get_basic(iter, &b);
1860 if (streq(name, "Accept"))
1862 else if (streq(name, "NeedDaemonReload"))
1863 i->need_daemon_reload = b;
1868 case DBUS_TYPE_UINT32: {
1871 dbus_message_iter_get_basic(iter, &u);
1873 if (streq(name, "MainPID")) {
1875 i->main_pid = (pid_t) u;
1878 } else if (streq(name, "ControlPID"))
1879 i->control_pid = (pid_t) u;
1880 else if (streq(name, "ExecMainPID")) {
1882 i->main_pid = (pid_t) u;
1883 } else if (streq(name, "NAccepted"))
1885 else if (streq(name, "NConnections"))
1886 i->n_connections = u;
1891 case DBUS_TYPE_INT32: {
1894 dbus_message_iter_get_basic(iter, &j);
1896 if (streq(name, "ExecMainCode"))
1897 i->exit_code = (int) j;
1898 else if (streq(name, "ExecMainStatus"))
1899 i->exit_status = (int) j;
1904 case DBUS_TYPE_UINT64: {
1907 dbus_message_iter_get_basic(iter, &u);
1909 if (streq(name, "ExecMainStartTimestamp"))
1910 i->start_timestamp = (usec_t) u;
1911 else if (streq(name, "ExecMainExitTimestamp"))
1912 i->exit_timestamp = (usec_t) u;
1913 else if (streq(name, "ActiveEnterTimestamp"))
1914 i->active_enter_timestamp = (usec_t) u;
1915 else if (streq(name, "InactiveEnterTimestamp"))
1916 i->inactive_enter_timestamp = (usec_t) u;
1917 else if (streq(name, "InactiveExitTimestamp"))
1918 i->inactive_exit_timestamp = (usec_t) u;
1919 else if (streq(name, "ActiveExitTimestamp"))
1920 i->active_exit_timestamp = (usec_t) u;
1925 case DBUS_TYPE_ARRAY: {
1927 if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRUCT &&
1928 startswith(name, "Exec")) {
1929 DBusMessageIter sub;
1931 dbus_message_iter_recurse(iter, &sub);
1932 while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRUCT) {
1933 ExecStatusInfo *info;
1936 if (!(info = new0(ExecStatusInfo, 1)))
1939 if ((r = exec_status_info_deserialize(&sub, info)) < 0) {
1944 LIST_PREPEND(ExecStatusInfo, exec, i->exec, info);
1946 dbus_message_iter_next(&sub);
1957 static int print_property(const char *name, DBusMessageIter *iter) {
1961 /* This is a low-level property printer, see
1962 * print_status_info() for the nicer output */
1964 if (arg_property && !strv_find(arg_property, name))
1967 switch (dbus_message_iter_get_arg_type(iter)) {
1969 case DBUS_TYPE_STRING: {
1971 dbus_message_iter_get_basic(iter, &s);
1973 if (arg_all || s[0])
1974 printf("%s=%s\n", name, s);
1979 case DBUS_TYPE_BOOLEAN: {
1981 dbus_message_iter_get_basic(iter, &b);
1982 printf("%s=%s\n", name, yes_no(b));
1987 case DBUS_TYPE_UINT64: {
1989 dbus_message_iter_get_basic(iter, &u);
1991 /* Yes, heuristics! But we can change this check
1992 * should it turn out to not be sufficient */
1994 if (strstr(name, "Timestamp")) {
1995 char timestamp[FORMAT_TIMESTAMP_MAX], *t;
1997 if ((t = format_timestamp(timestamp, sizeof(timestamp), u)) || arg_all)
1998 printf("%s=%s\n", name, strempty(t));
1999 } else if (strstr(name, "USec")) {
2000 char timespan[FORMAT_TIMESPAN_MAX];
2002 printf("%s=%s\n", name, format_timespan(timespan, sizeof(timespan), u));
2004 printf("%s=%llu\n", name, (unsigned long long) u);
2009 case DBUS_TYPE_UINT32: {
2011 dbus_message_iter_get_basic(iter, &u);
2013 if (strstr(name, "UMask") || strstr(name, "Mode"))
2014 printf("%s=%04o\n", name, u);
2016 printf("%s=%u\n", name, (unsigned) u);
2021 case DBUS_TYPE_INT32: {
2023 dbus_message_iter_get_basic(iter, &i);
2025 printf("%s=%i\n", name, (int) i);
2029 case DBUS_TYPE_DOUBLE: {
2031 dbus_message_iter_get_basic(iter, &d);
2033 printf("%s=%g\n", name, d);
2037 case DBUS_TYPE_STRUCT: {
2038 DBusMessageIter sub;
2039 dbus_message_iter_recurse(iter, &sub);
2041 if (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_UINT32 && streq(name, "Job")) {
2044 dbus_message_iter_get_basic(&sub, &u);
2047 printf("%s=%u\n", name, (unsigned) u);
2049 printf("%s=\n", name);
2052 } else if (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRING && streq(name, "Unit")) {
2055 dbus_message_iter_get_basic(&sub, &s);
2057 if (arg_all || s[0])
2058 printf("%s=%s\n", name, s);
2066 case DBUS_TYPE_ARRAY:
2068 if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRING) {
2069 DBusMessageIter sub;
2072 dbus_message_iter_recurse(iter, &sub);
2074 dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
2075 printf("%s=", name);
2077 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
2080 assert(dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRING);
2081 dbus_message_iter_get_basic(&sub, &s);
2082 printf("%s%s", space ? " " : "", s);
2085 dbus_message_iter_next(&sub);
2093 } else if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_BYTE) {
2094 DBusMessageIter sub;
2096 dbus_message_iter_recurse(iter, &sub);
2098 dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
2099 printf("%s=", name);
2101 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
2104 assert(dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_BYTE);
2105 dbus_message_iter_get_basic(&sub, &u);
2108 dbus_message_iter_next(&sub);
2116 } else if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRUCT && streq(name, "Paths")) {
2117 DBusMessageIter sub, sub2;
2119 dbus_message_iter_recurse(iter, &sub);
2120 while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRUCT) {
2121 const char *type, *path;
2123 dbus_message_iter_recurse(&sub, &sub2);
2125 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &type, true) >= 0 &&
2126 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &path, false) >= 0)
2127 printf("%s=%s\n", type, path);
2129 dbus_message_iter_next(&sub);
2134 } else if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRUCT && streq(name, "Timers")) {
2135 DBusMessageIter sub, sub2;
2137 dbus_message_iter_recurse(iter, &sub);
2138 while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRUCT) {
2140 uint64_t value, next_elapse;
2142 dbus_message_iter_recurse(&sub, &sub2);
2144 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &base, true) >= 0 &&
2145 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT64, &value, true) >= 0 &&
2146 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT64, &next_elapse, false) >= 0) {
2147 char timespan1[FORMAT_TIMESPAN_MAX], timespan2[FORMAT_TIMESPAN_MAX];
2149 printf("%s={ value=%s ; next_elapse=%s }\n",
2151 format_timespan(timespan1, sizeof(timespan1), value),
2152 format_timespan(timespan2, sizeof(timespan2), next_elapse));
2155 dbus_message_iter_next(&sub);
2160 } else if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRUCT && startswith(name, "Exec")) {
2161 DBusMessageIter sub;
2163 dbus_message_iter_recurse(iter, &sub);
2164 while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRUCT) {
2165 ExecStatusInfo info;
2168 if (exec_status_info_deserialize(&sub, &info) >= 0) {
2169 char timestamp1[FORMAT_TIMESTAMP_MAX], timestamp2[FORMAT_TIMESTAMP_MAX];
2172 t = strv_join(info.argv, " ");
2174 printf("%s={ path=%s ; argv[]=%s ; ignore=%s ; start_time=[%s] ; stop_time=[%s] ; pid=%u ; code=%s ; status=%i%s%s }\n",
2178 yes_no(info.ignore),
2179 strna(format_timestamp(timestamp1, sizeof(timestamp1), info.start_timestamp)),
2180 strna(format_timestamp(timestamp2, sizeof(timestamp2), info.exit_timestamp)),
2181 (unsigned) info. pid,
2182 sigchld_code_to_string(info.code),
2184 info.code == CLD_EXITED ? "" : "/",
2185 strempty(info.code == CLD_EXITED ? NULL : signal_to_string(info.status)));
2191 strv_free(info.argv);
2193 dbus_message_iter_next(&sub);
2203 printf("%s=[unprintable]\n", name);
2208 static int show_one(DBusConnection *bus, const char *path, bool show_properties, bool *new_line) {
2209 DBusMessage *m = NULL, *reply = NULL;
2210 const char *interface = "";
2213 DBusMessageIter iter, sub, sub2, sub3;
2214 UnitStatusInfo info;
2222 dbus_error_init(&error);
2224 if (!(m = dbus_message_new_method_call(
2225 "org.freedesktop.systemd1",
2227 "org.freedesktop.DBus.Properties",
2229 log_error("Could not allocate message.");
2234 if (!dbus_message_append_args(m,
2235 DBUS_TYPE_STRING, &interface,
2236 DBUS_TYPE_INVALID)) {
2237 log_error("Could not append arguments to message.");
2242 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2243 log_error("Failed to issue method call: %s", bus_error_message(&error));
2248 if (!dbus_message_iter_init(reply, &iter) ||
2249 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY ||
2250 dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_DICT_ENTRY) {
2251 log_error("Failed to parse reply.");
2256 dbus_message_iter_recurse(&iter, &sub);
2263 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
2266 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_DICT_ENTRY) {
2267 log_error("Failed to parse reply.");
2272 dbus_message_iter_recurse(&sub, &sub2);
2274 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &name, true) < 0) {
2275 log_error("Failed to parse reply.");
2280 if (dbus_message_iter_get_arg_type(&sub2) != DBUS_TYPE_VARIANT) {
2281 log_error("Failed to parse reply.");
2286 dbus_message_iter_recurse(&sub2, &sub3);
2288 if (show_properties)
2289 r = print_property(name, &sub3);
2291 r = status_property(name, &sub3, &info);
2294 log_error("Failed to parse reply.");
2299 dbus_message_iter_next(&sub);
2304 if (!show_properties)
2305 print_status_info(&info);
2307 if (!streq_ptr(info.active_state, "active") &&
2308 !streq_ptr(info.active_state, "reloading"))
2309 /* According to LSB: "program not running" */
2312 while ((p = info.exec)) {
2313 LIST_REMOVE(ExecStatusInfo, exec, info.exec, p);
2314 exec_status_info_free(p);
2319 dbus_message_unref(m);
2322 dbus_message_unref(reply);
2324 dbus_error_free(&error);
2329 static int show(DBusConnection *bus, char **args, unsigned n) {
2330 DBusMessage *m = NULL, *reply = NULL;
2334 bool show_properties, new_line = false;
2339 dbus_error_init(&error);
2341 show_properties = !streq(args[0], "status");
2343 if (show_properties && n <= 1) {
2344 /* If not argument is specified inspect the manager
2347 ret = show_one(bus, "/org/freedesktop/systemd1", show_properties, &new_line);
2351 for (i = 1; i < n; i++) {
2352 const char *path = NULL;
2355 if (safe_atou32(args[i], &id) < 0) {
2357 /* Interpret as unit name */
2359 if (!(m = dbus_message_new_method_call(
2360 "org.freedesktop.systemd1",
2361 "/org/freedesktop/systemd1",
2362 "org.freedesktop.systemd1.Manager",
2364 log_error("Could not allocate message.");
2369 if (!dbus_message_append_args(m,
2370 DBUS_TYPE_STRING, &args[i],
2371 DBUS_TYPE_INVALID)) {
2372 log_error("Could not append arguments to message.");
2377 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2379 if (!dbus_error_has_name(&error, DBUS_ERROR_ACCESS_DENIED)) {
2380 log_error("Failed to issue method call: %s", bus_error_message(&error));
2385 dbus_error_free(&error);
2387 dbus_message_unref(m);
2388 if (!(m = dbus_message_new_method_call(
2389 "org.freedesktop.systemd1",
2390 "/org/freedesktop/systemd1",
2391 "org.freedesktop.systemd1.Manager",
2393 log_error("Could not allocate message.");
2398 if (!dbus_message_append_args(m,
2399 DBUS_TYPE_STRING, &args[i],
2400 DBUS_TYPE_INVALID)) {
2401 log_error("Could not append arguments to message.");
2406 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2407 log_error("Failed to issue method call: %s", bus_error_message(&error));
2409 if (dbus_error_has_name(&error, BUS_ERROR_NO_SUCH_UNIT))
2410 ret = 4; /* According to LSB: "program or service status is unknown" */
2417 } else if (show_properties) {
2419 /* Interpret as job id */
2421 if (!(m = dbus_message_new_method_call(
2422 "org.freedesktop.systemd1",
2423 "/org/freedesktop/systemd1",
2424 "org.freedesktop.systemd1.Manager",
2426 log_error("Could not allocate message.");
2431 if (!dbus_message_append_args(m,
2432 DBUS_TYPE_UINT32, &id,
2433 DBUS_TYPE_INVALID)) {
2434 log_error("Could not append arguments to message.");
2439 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2440 log_error("Failed to issue method call: %s", bus_error_message(&error));
2446 /* Interpret as PID */
2448 if (!(m = dbus_message_new_method_call(
2449 "org.freedesktop.systemd1",
2450 "/org/freedesktop/systemd1",
2451 "org.freedesktop.systemd1.Manager",
2453 log_error("Could not allocate message.");
2458 if (!dbus_message_append_args(m,
2459 DBUS_TYPE_UINT32, &id,
2460 DBUS_TYPE_INVALID)) {
2461 log_error("Could not append arguments to message.");
2466 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2467 log_error("Failed to issue method call: %s", bus_error_message(&error));
2473 if (!dbus_message_get_args(reply, &error,
2474 DBUS_TYPE_OBJECT_PATH, &path,
2475 DBUS_TYPE_INVALID)) {
2476 log_error("Failed to parse reply: %s", bus_error_message(&error));
2481 if ((r = show_one(bus, path, show_properties, &new_line)) != 0)
2484 dbus_message_unref(m);
2485 dbus_message_unref(reply);
2491 dbus_message_unref(m);
2494 dbus_message_unref(reply);
2496 dbus_error_free(&error);
2501 static DBusHandlerResult monitor_filter(DBusConnection *connection, DBusMessage *message, void *data) {
2503 DBusMessage *m = NULL, *reply = NULL;
2508 dbus_error_init(&error);
2510 log_debug("Got D-Bus request: %s.%s() on %s",
2511 dbus_message_get_interface(message),
2512 dbus_message_get_member(message),
2513 dbus_message_get_path(message));
2515 if (dbus_message_is_signal(message, DBUS_INTERFACE_LOCAL, "Disconnected")) {
2516 log_error("Warning! D-Bus connection terminated.");
2517 dbus_connection_close(connection);
2519 } else if (dbus_message_is_signal(message, "org.freedesktop.systemd1.Manager", "UnitNew") ||
2520 dbus_message_is_signal(message, "org.freedesktop.systemd1.Manager", "UnitRemoved")) {
2521 const char *id, *path;
2523 if (!dbus_message_get_args(message, &error,
2524 DBUS_TYPE_STRING, &id,
2525 DBUS_TYPE_OBJECT_PATH, &path,
2527 log_error("Failed to parse message: %s", bus_error_message(&error));
2528 else if (streq(dbus_message_get_member(message), "UnitNew"))
2529 printf("Unit %s added.\n", id);
2531 printf("Unit %s removed.\n", id);
2533 } else if (dbus_message_is_signal(message, "org.freedesktop.systemd1.Manager", "JobNew") ||
2534 dbus_message_is_signal(message, "org.freedesktop.systemd1.Manager", "JobRemoved")) {
2538 if (!dbus_message_get_args(message, &error,
2539 DBUS_TYPE_UINT32, &id,
2540 DBUS_TYPE_OBJECT_PATH, &path,
2542 log_error("Failed to parse message: %s", bus_error_message(&error));
2543 else if (streq(dbus_message_get_member(message), "JobNew"))
2544 printf("Job %u added.\n", id);
2546 printf("Job %u removed.\n", id);
2549 } else if (dbus_message_is_signal(message, "org.freedesktop.DBus.Properties", "PropertiesChanged")) {
2551 const char *path, *interface, *property = "Id";
2552 DBusMessageIter iter, sub;
2554 path = dbus_message_get_path(message);
2556 if (!dbus_message_get_args(message, &error,
2557 DBUS_TYPE_STRING, &interface,
2558 DBUS_TYPE_INVALID)) {
2559 log_error("Failed to parse message: %s", bus_error_message(&error));
2563 if (!streq(interface, "org.freedesktop.systemd1.Job") &&
2564 !streq(interface, "org.freedesktop.systemd1.Unit"))
2567 if (!(m = dbus_message_new_method_call(
2568 "org.freedesktop.systemd1",
2570 "org.freedesktop.DBus.Properties",
2572 log_error("Could not allocate message.");
2576 if (!dbus_message_append_args(m,
2577 DBUS_TYPE_STRING, &interface,
2578 DBUS_TYPE_STRING, &property,
2579 DBUS_TYPE_INVALID)) {
2580 log_error("Could not append arguments to message.");
2584 if (!(reply = dbus_connection_send_with_reply_and_block(connection, m, -1, &error))) {
2585 log_error("Failed to issue method call: %s", bus_error_message(&error));
2589 if (!dbus_message_iter_init(reply, &iter) ||
2590 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT) {
2591 log_error("Failed to parse reply.");
2595 dbus_message_iter_recurse(&iter, &sub);
2597 if (streq(interface, "org.freedesktop.systemd1.Unit")) {
2600 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRING) {
2601 log_error("Failed to parse reply.");
2605 dbus_message_iter_get_basic(&sub, &id);
2606 printf("Unit %s changed.\n", id);
2610 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_UINT32) {
2611 log_error("Failed to parse reply.");
2615 dbus_message_iter_get_basic(&sub, &id);
2616 printf("Job %u changed.\n", id);
2622 dbus_message_unref(m);
2625 dbus_message_unref(reply);
2627 dbus_error_free(&error);
2628 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
2632 dbus_message_unref(m);
2635 dbus_message_unref(reply);
2637 dbus_error_free(&error);
2638 return DBUS_HANDLER_RESULT_NEED_MEMORY;
2641 static int monitor(DBusConnection *bus, char **args, unsigned n) {
2642 DBusMessage *m = NULL, *reply = NULL;
2646 dbus_error_init(&error);
2649 dbus_bus_add_match(bus,
2651 "sender='org.freedesktop.systemd1',"
2652 "interface='org.freedesktop.systemd1.Manager',"
2653 "path='/org/freedesktop/systemd1'",
2656 if (dbus_error_is_set(&error)) {
2657 log_error("Failed to add match: %s", bus_error_message(&error));
2662 dbus_bus_add_match(bus,
2664 "sender='org.freedesktop.systemd1',"
2665 "interface='org.freedesktop.DBus.Properties',"
2666 "member='PropertiesChanged'",
2669 if (dbus_error_is_set(&error)) {
2670 log_error("Failed to add match: %s", bus_error_message(&error));
2676 if (!dbus_connection_add_filter(bus, monitor_filter, NULL, NULL)) {
2677 log_error("Failed to add filter.");
2682 if (!(m = dbus_message_new_method_call(
2683 "org.freedesktop.systemd1",
2684 "/org/freedesktop/systemd1",
2685 "org.freedesktop.systemd1.Manager",
2687 log_error("Could not allocate message.");
2692 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2693 log_error("Failed to issue method call: %s", bus_error_message(&error));
2698 while (dbus_connection_read_write_dispatch(bus, -1))
2705 /* This is slightly dirty, since we don't undo the filter or the matches. */
2708 dbus_message_unref(m);
2711 dbus_message_unref(reply);
2713 dbus_error_free(&error);
2718 static int dump(DBusConnection *bus, char **args, unsigned n) {
2719 DBusMessage *m = NULL, *reply = NULL;
2724 dbus_error_init(&error);
2726 if (!(m = dbus_message_new_method_call(
2727 "org.freedesktop.systemd1",
2728 "/org/freedesktop/systemd1",
2729 "org.freedesktop.systemd1.Manager",
2731 log_error("Could not allocate message.");
2735 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2736 log_error("Failed to issue method call: %s", bus_error_message(&error));
2741 if (!dbus_message_get_args(reply, &error,
2742 DBUS_TYPE_STRING, &text,
2743 DBUS_TYPE_INVALID)) {
2744 log_error("Failed to parse reply: %s", bus_error_message(&error));
2749 fputs(text, stdout);
2755 dbus_message_unref(m);
2758 dbus_message_unref(reply);
2760 dbus_error_free(&error);
2765 static int snapshot(DBusConnection *bus, char **args, unsigned n) {
2766 DBusMessage *m = NULL, *reply = NULL;
2769 const char *name = "", *path, *id;
2770 dbus_bool_t cleanup = FALSE;
2771 DBusMessageIter iter, sub;
2773 *interface = "org.freedesktop.systemd1.Unit",
2776 dbus_error_init(&error);
2778 if (!(m = dbus_message_new_method_call(
2779 "org.freedesktop.systemd1",
2780 "/org/freedesktop/systemd1",
2781 "org.freedesktop.systemd1.Manager",
2782 "CreateSnapshot"))) {
2783 log_error("Could not allocate message.");
2790 if (!dbus_message_append_args(m,
2791 DBUS_TYPE_STRING, &name,
2792 DBUS_TYPE_BOOLEAN, &cleanup,
2793 DBUS_TYPE_INVALID)) {
2794 log_error("Could not append arguments to message.");
2799 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2800 log_error("Failed to issue method call: %s", bus_error_message(&error));
2805 if (!dbus_message_get_args(reply, &error,
2806 DBUS_TYPE_OBJECT_PATH, &path,
2807 DBUS_TYPE_INVALID)) {
2808 log_error("Failed to parse reply: %s", bus_error_message(&error));
2813 dbus_message_unref(m);
2814 if (!(m = dbus_message_new_method_call(
2815 "org.freedesktop.systemd1",
2817 "org.freedesktop.DBus.Properties",
2819 log_error("Could not allocate message.");
2823 if (!dbus_message_append_args(m,
2824 DBUS_TYPE_STRING, &interface,
2825 DBUS_TYPE_STRING, &property,
2826 DBUS_TYPE_INVALID)) {
2827 log_error("Could not append arguments to message.");
2832 dbus_message_unref(reply);
2833 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2834 log_error("Failed to issue method call: %s", bus_error_message(&error));
2839 if (!dbus_message_iter_init(reply, &iter) ||
2840 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT) {
2841 log_error("Failed to parse reply.");
2846 dbus_message_iter_recurse(&iter, &sub);
2848 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRING) {
2849 log_error("Failed to parse reply.");
2854 dbus_message_iter_get_basic(&sub, &id);
2862 dbus_message_unref(m);
2865 dbus_message_unref(reply);
2867 dbus_error_free(&error);
2872 static int delete_snapshot(DBusConnection *bus, char **args, unsigned n) {
2873 DBusMessage *m = NULL, *reply = NULL;
2881 dbus_error_init(&error);
2883 for (i = 1; i < n; i++) {
2884 const char *path = NULL;
2886 if (!(m = dbus_message_new_method_call(
2887 "org.freedesktop.systemd1",
2888 "/org/freedesktop/systemd1",
2889 "org.freedesktop.systemd1.Manager",
2891 log_error("Could not allocate message.");
2896 if (!dbus_message_append_args(m,
2897 DBUS_TYPE_STRING, &args[i],
2898 DBUS_TYPE_INVALID)) {
2899 log_error("Could not append arguments to message.");
2904 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2905 log_error("Failed to issue method call: %s", bus_error_message(&error));
2910 if (!dbus_message_get_args(reply, &error,
2911 DBUS_TYPE_OBJECT_PATH, &path,
2912 DBUS_TYPE_INVALID)) {
2913 log_error("Failed to parse reply: %s", bus_error_message(&error));
2918 dbus_message_unref(m);
2919 if (!(m = dbus_message_new_method_call(
2920 "org.freedesktop.systemd1",
2922 "org.freedesktop.systemd1.Snapshot",
2924 log_error("Could not allocate message.");
2929 dbus_message_unref(reply);
2930 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2931 log_error("Failed to issue method call: %s", bus_error_message(&error));
2936 dbus_message_unref(m);
2937 dbus_message_unref(reply);
2945 dbus_message_unref(m);
2948 dbus_message_unref(reply);
2950 dbus_error_free(&error);
2955 static int daemon_reload(DBusConnection *bus, char **args, unsigned n) {
2956 DBusMessage *m = NULL, *reply = NULL;
2961 dbus_error_init(&error);
2963 if (arg_action == ACTION_RELOAD)
2965 else if (arg_action == ACTION_REEXEC)
2966 method = "Reexecute";
2968 assert(arg_action == ACTION_SYSTEMCTL);
2971 streq(args[0], "clear-jobs") ||
2972 streq(args[0], "cancel") ? "ClearJobs" :
2973 streq(args[0], "daemon-reexec") ? "Reexecute" :
2974 streq(args[0], "reset-failed") ? "ResetFailed" :
2975 streq(args[0], "daemon-exit") ? "Exit" :
2979 if (!(m = dbus_message_new_method_call(
2980 "org.freedesktop.systemd1",
2981 "/org/freedesktop/systemd1",
2982 "org.freedesktop.systemd1.Manager",
2984 log_error("Could not allocate message.");
2988 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
2990 if (arg_action != ACTION_SYSTEMCTL && error_is_no_service(&error)) {
2991 /* There's always a fallback possible for
2992 * legacy actions. */
2997 log_error("Failed to issue method call: %s", bus_error_message(&error));
3006 dbus_message_unref(m);
3009 dbus_message_unref(reply);
3011 dbus_error_free(&error);
3016 static int reset_failed(DBusConnection *bus, char **args, unsigned n) {
3017 DBusMessage *m = NULL, *reply = NULL;
3023 dbus_error_init(&error);
3026 return daemon_reload(bus, args, n);
3028 for (i = 1; i < n; i++) {
3030 if (!(m = dbus_message_new_method_call(
3031 "org.freedesktop.systemd1",
3032 "/org/freedesktop/systemd1",
3033 "org.freedesktop.systemd1.Manager",
3034 "ResetFailedUnit"))) {
3035 log_error("Could not allocate message.");
3040 if (!dbus_message_append_args(m,
3041 DBUS_TYPE_STRING, args + i,
3042 DBUS_TYPE_INVALID)) {
3043 log_error("Could not append arguments to message.");
3048 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
3049 log_error("Failed to issue method call: %s", bus_error_message(&error));
3054 dbus_message_unref(m);
3055 dbus_message_unref(reply);
3063 dbus_message_unref(m);
3066 dbus_message_unref(reply);
3068 dbus_error_free(&error);
3073 static int show_enviroment(DBusConnection *bus, char **args, unsigned n) {
3074 DBusMessage *m = NULL, *reply = NULL;
3076 DBusMessageIter iter, sub, sub2;
3079 *interface = "org.freedesktop.systemd1.Manager",
3080 *property = "Environment";
3082 dbus_error_init(&error);
3084 if (!(m = dbus_message_new_method_call(
3085 "org.freedesktop.systemd1",
3086 "/org/freedesktop/systemd1",
3087 "org.freedesktop.DBus.Properties",
3089 log_error("Could not allocate message.");
3093 if (!dbus_message_append_args(m,
3094 DBUS_TYPE_STRING, &interface,
3095 DBUS_TYPE_STRING, &property,
3096 DBUS_TYPE_INVALID)) {
3097 log_error("Could not append arguments to message.");
3102 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
3103 log_error("Failed to issue method call: %s", bus_error_message(&error));
3108 if (!dbus_message_iter_init(reply, &iter) ||
3109 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT) {
3110 log_error("Failed to parse reply.");
3115 dbus_message_iter_recurse(&iter, &sub);
3117 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_ARRAY ||
3118 dbus_message_iter_get_element_type(&sub) != DBUS_TYPE_STRING) {
3119 log_error("Failed to parse reply.");
3124 dbus_message_iter_recurse(&sub, &sub2);
3126 while (dbus_message_iter_get_arg_type(&sub2) != DBUS_TYPE_INVALID) {
3129 if (dbus_message_iter_get_arg_type(&sub2) != DBUS_TYPE_STRING) {
3130 log_error("Failed to parse reply.");
3135 dbus_message_iter_get_basic(&sub2, &text);
3136 printf("%s\n", text);
3138 dbus_message_iter_next(&sub2);
3145 dbus_message_unref(m);
3148 dbus_message_unref(reply);