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 Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser 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>
35 #include <sys/prctl.h>
36 #include <dbus/dbus.h>
38 #include <systemd/sd-daemon.h>
39 #include <systemd/sd-shutdown.h>
45 #include "utmp-wtmp.h"
48 #include "path-util.h"
50 #include "dbus-common.h"
51 #include "cgroup-show.h"
52 #include "cgroup-util.h"
54 #include "path-lookup.h"
55 #include "conf-parser.h"
56 #include "exit-status.h"
57 #include "bus-errors.h"
59 #include "unit-name.h"
61 #include "spawn-ask-password-agent.h"
62 #include "spawn-polkit-agent.h"
64 #include "logs-show.h"
65 #include "path-util.h"
67 static const char *arg_type = NULL;
68 static const char *arg_load_state = NULL;
69 static char **arg_property = NULL;
70 static bool arg_all = false;
71 static const char *arg_job_mode = "replace";
72 static UnitFileScope arg_scope = UNIT_FILE_SYSTEM;
73 static bool arg_no_block = false;
74 static bool arg_no_legend = false;
75 static bool arg_no_pager = false;
76 static bool arg_no_wtmp = false;
77 static bool arg_no_sync = false;
78 static bool arg_no_wall = false;
79 static bool arg_no_reload = false;
80 static bool arg_dry = false;
81 static bool arg_quiet = false;
82 static bool arg_full = false;
83 static int arg_force = 0;
84 static bool arg_ask_password = true;
85 static bool arg_failed = false;
86 static bool arg_runtime = false;
87 static char **arg_wall = NULL;
88 static const char *arg_kill_who = NULL;
89 static int arg_signal = SIGTERM;
90 static const char *arg_root = NULL;
91 static usec_t arg_when = 0;
112 ACTION_CANCEL_SHUTDOWN,
114 } arg_action = ACTION_SYSTEMCTL;
120 static enum transport {
124 } arg_transport = TRANSPORT_NORMAL;
125 static const char *arg_host = NULL;
126 static bool arg_follow = false;
127 static unsigned arg_lines = 10;
128 static OutputMode arg_output = OUTPUT_SHORT;
130 static bool private_bus = false;
132 static int daemon_reload(DBusConnection *bus, char **args);
133 static void halt_now(enum action a);
135 static bool on_tty(void) {
138 /* Note that this is invoked relatively early, before we start
139 * the pager. That means the value we return reflects whether
140 * we originally were started on a tty, not if we currently
141 * are. But this is intended, since we want colour and so on
142 * when run in our own pager. */
144 if (_unlikely_(t < 0))
145 t = isatty(STDOUT_FILENO) > 0;
150 static void pager_open_if_enabled(void) {
152 /* Cache result before we open the pager */
161 static void ask_password_agent_open_if_enabled(void) {
163 /* Open the password agent as a child process if necessary */
165 if (!arg_ask_password)
168 if (arg_scope != UNIT_FILE_SYSTEM)
171 ask_password_agent_open();
175 static void polkit_agent_open_if_enabled(void) {
177 /* Open the polkit agent as a child process if necessary */
179 if (!arg_ask_password)
182 if (arg_scope != UNIT_FILE_SYSTEM)
189 static const char *ansi_highlight_red(bool b) {
194 return b ? ANSI_HIGHLIGHT_RED_ON : ANSI_HIGHLIGHT_OFF;
197 static const char *ansi_highlight_green(bool b) {
202 return b ? ANSI_HIGHLIGHT_GREEN_ON : ANSI_HIGHLIGHT_OFF;
205 static bool error_is_no_service(const DBusError *error) {
208 if (!dbus_error_is_set(error))
211 if (dbus_error_has_name(error, DBUS_ERROR_NAME_HAS_NO_OWNER))
214 if (dbus_error_has_name(error, DBUS_ERROR_SERVICE_UNKNOWN))
217 return startswith(error->name, "org.freedesktop.DBus.Error.Spawn.");
220 static int translate_bus_error_to_exit_status(int r, const DBusError *error) {
223 if (!dbus_error_is_set(error))
226 if (dbus_error_has_name(error, DBUS_ERROR_ACCESS_DENIED) ||
227 dbus_error_has_name(error, BUS_ERROR_ONLY_BY_DEPENDENCY) ||
228 dbus_error_has_name(error, BUS_ERROR_NO_ISOLATION) ||
229 dbus_error_has_name(error, BUS_ERROR_TRANSACTION_IS_DESTRUCTIVE))
230 return EXIT_NOPERMISSION;
232 if (dbus_error_has_name(error, BUS_ERROR_NO_SUCH_UNIT))
233 return EXIT_NOTINSTALLED;
235 if (dbus_error_has_name(error, BUS_ERROR_JOB_TYPE_NOT_APPLICABLE) ||
236 dbus_error_has_name(error, BUS_ERROR_NOT_SUPPORTED))
237 return EXIT_NOTIMPLEMENTED;
239 if (dbus_error_has_name(error, BUS_ERROR_LOAD_FAILED))
240 return EXIT_NOTCONFIGURED;
248 static void warn_wall(enum action a) {
249 static const char *table[_ACTION_MAX] = {
250 [ACTION_HALT] = "The system is going down for system halt NOW!",
251 [ACTION_REBOOT] = "The system is going down for reboot NOW!",
252 [ACTION_POWEROFF] = "The system is going down for power-off NOW!",
253 [ACTION_KEXEC] = "The system is going down for kexec reboot NOW!",
254 [ACTION_RESCUE] = "The system is going down to rescue mode NOW!",
255 [ACTION_EMERGENCY] = "The system is going down to emergency mode NOW!"
264 p = strv_join(arg_wall, " ");
266 log_error("Failed to join strings.");
282 utmp_wall(table[a], NULL);
285 static bool avoid_bus(void) {
287 if (running_in_chroot() > 0)
290 if (sd_booted() <= 0)
293 if (!isempty(arg_root))
296 if (arg_scope == UNIT_FILE_GLOBAL)
304 const char *description;
305 const char *load_state;
306 const char *active_state;
307 const char *sub_state;
308 const char *following;
309 const char *unit_path;
311 const char *job_type;
312 const char *job_path;
315 static int compare_unit_info(const void *a, const void *b) {
317 const struct unit_info *u = a, *v = b;
319 d1 = strrchr(u->id, '.');
320 d2 = strrchr(v->id, '.');
325 if ((r = strcasecmp(d1, d2)) != 0)
329 return strcasecmp(u->id, v->id);
332 static bool output_show_unit(const struct unit_info *u) {
336 return streq(u->active_state, "failed");
338 return (!arg_type || ((dot = strrchr(u->id, '.')) &&
339 streq(dot+1, arg_type))) &&
340 (!arg_load_state || streq(u->load_state, arg_load_state)) &&
341 (arg_all || !(streq(u->active_state, "inactive")
342 || u->following[0]) || u->job_id > 0);
345 static void output_units_list(const struct unit_info *unit_infos, unsigned c) {
346 unsigned id_len, max_id_len, active_len, sub_len, job_len, desc_len, n_shown = 0;
347 const struct unit_info *u;
349 max_id_len = sizeof("UNIT")-1;
350 active_len = sizeof("ACTIVE")-1;
351 sub_len = sizeof("SUB")-1;
352 job_len = sizeof("JOB")-1;
355 for (u = unit_infos; u < unit_infos + c; u++) {
356 if (!output_show_unit(u))
359 max_id_len = MAX(max_id_len, strlen(u->id));
360 active_len = MAX(active_len, strlen(u->active_state));
361 sub_len = MAX(sub_len, strlen(u->sub_state));
363 job_len = MAX(job_len, strlen(u->job_type));
368 id_len = MIN(max_id_len, 25);
369 basic_len = 5 + id_len + 6 + active_len + sub_len + job_len;
370 if (basic_len < (unsigned) columns()) {
371 unsigned extra_len, incr;
372 extra_len = columns() - basic_len;
373 /* Either UNIT already got 25, or is fully satisfied.
374 * Grant up to 25 to DESC now. */
375 incr = MIN(extra_len, 25);
378 /* split the remaining space between UNIT and DESC,
379 * but do not give UNIT more than it needs. */
381 incr = MIN(extra_len / 2, max_id_len - id_len);
383 desc_len += extra_len - incr;
389 if (!arg_no_legend) {
390 printf("%-*s %-6s %-*s %-*s %-*s ", id_len, "UNIT", "LOAD",
391 active_len, "ACTIVE", sub_len, "SUB", job_len, "JOB");
392 if (!arg_full && arg_no_pager)
393 printf("%.*s\n", desc_len, "DESCRIPTION");
395 printf("%s\n", "DESCRIPTION");
398 for (u = unit_infos; u < unit_infos + c; u++) {
400 const char *on_loaded, *off_loaded;
401 const char *on_active, *off_active;
403 if (!output_show_unit(u))
408 if (streq(u->load_state, "error")) {
409 on_loaded = ansi_highlight_red(true);
410 off_loaded = ansi_highlight_red(false);
412 on_loaded = off_loaded = "";
414 if (streq(u->active_state, "failed")) {
415 on_active = ansi_highlight_red(true);
416 off_active = ansi_highlight_red(false);
418 on_active = off_active = "";
420 e = arg_full ? NULL : ellipsize(u->id, id_len, 33);
422 printf("%-*s %s%-6s%s %s%-*s %-*s%s %-*s ",
423 id_len, e ? e : u->id,
424 on_loaded, u->load_state, off_loaded,
425 on_active, active_len, u->active_state,
426 sub_len, u->sub_state, off_active,
427 job_len, u->job_id ? u->job_type : "");
428 if (!arg_full && arg_no_pager)
429 printf("%.*s\n", desc_len, u->description);
431 printf("%s\n", u->description);
436 if (!arg_no_legend) {
437 printf("\nLOAD = Reflects whether the unit definition was properly loaded.\n"
438 "ACTIVE = The high-level unit activation state, i.e. generalization of SUB.\n"
439 "SUB = The low-level unit activation state, values depend on unit type.\n"
440 "JOB = Pending job for the unit.\n");
443 printf("\n%u units listed.\n", n_shown);
445 printf("\n%u units listed. Pass --all to see inactive units, too.\n", n_shown);
449 static int list_units(DBusConnection *bus, char **args) {
450 DBusMessage *m = NULL, *reply = NULL;
453 DBusMessageIter iter, sub, sub2;
454 unsigned c = 0, n_units = 0;
455 struct unit_info *unit_infos = NULL;
457 dbus_error_init(&error);
461 pager_open_if_enabled();
463 if (!(m = dbus_message_new_method_call(
464 "org.freedesktop.systemd1",
465 "/org/freedesktop/systemd1",
466 "org.freedesktop.systemd1.Manager",
468 log_error("Could not allocate message.");
472 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
473 log_error("Failed to issue method call: %s", bus_error_message(&error));
478 if (!dbus_message_iter_init(reply, &iter) ||
479 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY ||
480 dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_STRUCT) {
481 log_error("Failed to parse reply.");
486 dbus_message_iter_recurse(&iter, &sub);
488 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
491 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRUCT) {
492 log_error("Failed to parse reply.");
500 n_units = MAX(2*c, 16);
501 w = realloc(unit_infos, sizeof(struct unit_info) * n_units);
504 log_error("Failed to allocate unit array.");
514 dbus_message_iter_recurse(&sub, &sub2);
516 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->id, true) < 0 ||
517 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->description, true) < 0 ||
518 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->load_state, true) < 0 ||
519 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->active_state, true) < 0 ||
520 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->sub_state, true) < 0 ||
521 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->following, true) < 0 ||
522 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_OBJECT_PATH, &u->unit_path, true) < 0 ||
523 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT32, &u->job_id, true) < 0 ||
524 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->job_type, true) < 0 ||
525 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_OBJECT_PATH, &u->job_path, false) < 0) {
526 log_error("Failed to parse reply.");
531 dbus_message_iter_next(&sub);
536 qsort(unit_infos, c, sizeof(struct unit_info), compare_unit_info);
537 output_units_list(unit_infos, c);
544 dbus_message_unref(m);
547 dbus_message_unref(reply);
551 dbus_error_free(&error);
556 static int compare_unit_file_list(const void *a, const void *b) {
558 const UnitFileList *u = a, *v = b;
560 d1 = strrchr(u->path, '.');
561 d2 = strrchr(v->path, '.');
566 r = strcasecmp(d1, d2);
571 return strcasecmp(path_get_file_name(u->path), path_get_file_name(v->path));
574 static bool output_show_unit_file(const UnitFileList *u) {
577 return !arg_type || ((dot = strrchr(u->path, '.')) && streq(dot+1, arg_type));
580 static void output_unit_file_list(const UnitFileList *units, unsigned c) {
581 unsigned max_id_len, id_cols, state_cols, n_shown = 0;
582 const UnitFileList *u;
584 max_id_len = sizeof("UNIT FILE")-1;
585 state_cols = sizeof("STATE")-1;
586 for (u = units; u < units + c; u++) {
587 if (!output_show_unit_file(u))
590 max_id_len = MAX(max_id_len, strlen(path_get_file_name(u->path)));
591 state_cols = MAX(state_cols, strlen(unit_file_state_to_string(u->state)));
596 id_cols = MIN(max_id_len, 25);
597 basic_cols = 1 + id_cols + state_cols;
598 if (basic_cols < (unsigned) columns())
599 id_cols += MIN(columns() - basic_cols, max_id_len - id_cols);
601 id_cols = max_id_len;
604 printf("%-*s %-*s\n", id_cols, "UNIT FILE", state_cols, "STATE");
606 for (u = units; u < units + c; u++) {
608 const char *on, *off;
611 if (!output_show_unit_file(u))
616 if (u->state == UNIT_FILE_MASKED ||
617 u->state == UNIT_FILE_MASKED_RUNTIME ||
618 u->state == UNIT_FILE_DISABLED) {
619 on = ansi_highlight_red(true);
620 off = ansi_highlight_red(false);
621 } else if (u->state == UNIT_FILE_ENABLED) {
622 on = ansi_highlight_green(true);
623 off = ansi_highlight_green(false);
627 id = path_get_file_name(u->path);
629 e = arg_full ? NULL : ellipsize(id, id_cols, 33);
631 printf("%-*s %s%-*s%s\n",
633 on, state_cols, unit_file_state_to_string(u->state), off);
639 printf("\n%u unit files listed.\n", n_shown);
642 static int list_unit_files(DBusConnection *bus, char **args) {
643 DBusMessage *m = NULL, *reply = NULL;
646 DBusMessageIter iter, sub, sub2;
647 unsigned c = 0, n_units = 0;
648 UnitFileList *units = NULL;
650 dbus_error_init(&error);
652 pager_open_if_enabled();
659 h = hashmap_new(string_hash_func, string_compare_func);
663 r = unit_file_get_list(arg_scope, arg_root, h);
665 unit_file_list_free(h);
666 log_error("Failed to get unit file list: %s", strerror(-r));
670 n_units = hashmap_size(h);
671 units = new(UnitFileList, n_units);
673 unit_file_list_free(h);
677 HASHMAP_FOREACH(u, h, i) {
678 memcpy(units + c++, u, sizeof(UnitFileList));
686 m = dbus_message_new_method_call(
687 "org.freedesktop.systemd1",
688 "/org/freedesktop/systemd1",
689 "org.freedesktop.systemd1.Manager",
692 log_error("Could not allocate message.");
696 reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error);
698 log_error("Failed to issue method call: %s", bus_error_message(&error));
703 if (!dbus_message_iter_init(reply, &iter) ||
704 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY ||
705 dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_STRUCT) {
706 log_error("Failed to parse reply.");
711 dbus_message_iter_recurse(&iter, &sub);
713 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
717 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRUCT) {
718 log_error("Failed to parse reply.");
726 n_units = MAX(2*c, 16);
727 w = realloc(units, sizeof(struct UnitFileList) * n_units);
730 log_error("Failed to allocate unit array.");
740 dbus_message_iter_recurse(&sub, &sub2);
742 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &u->path, true) < 0 ||
743 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &state, false) < 0) {
744 log_error("Failed to parse reply.");
749 u->state = unit_file_state_from_string(state);
751 dbus_message_iter_next(&sub);
757 qsort(units, c, sizeof(UnitFileList), compare_unit_file_list);
758 output_unit_file_list(units, c);
765 dbus_message_unref(m);
768 dbus_message_unref(reply);
772 dbus_error_free(&error);
777 static int dot_one_property(const char *name, const char *prop, DBusMessageIter *iter) {
778 static const char * const colors[] = {
779 "Requires", "[color=\"black\"]",
780 "RequiresOverridable", "[color=\"black\"]",
781 "Requisite", "[color=\"darkblue\"]",
782 "RequisiteOverridable", "[color=\"darkblue\"]",
783 "Wants", "[color=\"grey66\"]",
784 "Conflicts", "[color=\"red\"]",
785 "ConflictedBy", "[color=\"red\"]",
786 "After", "[color=\"green\"]"
789 const char *c = NULL;
796 for (i = 0; i < ELEMENTSOF(colors); i += 2)
797 if (streq(colors[i], prop)) {
805 if (arg_dot != DOT_ALL)
806 if ((arg_dot == DOT_ORDER) != streq(prop, "After"))
809 switch (dbus_message_iter_get_arg_type(iter)) {
811 case DBUS_TYPE_ARRAY:
813 if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRING) {
816 dbus_message_iter_recurse(iter, &sub);
818 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
821 assert(dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRING);
822 dbus_message_iter_get_basic(&sub, &s);
823 printf("\t\"%s\"->\"%s\" %s;\n", name, s, c);
825 dbus_message_iter_next(&sub);
835 static int dot_one(DBusConnection *bus, const char *name, const char *path) {
836 DBusMessage *m = NULL, *reply = NULL;
837 const char *interface = "org.freedesktop.systemd1.Unit";
840 DBusMessageIter iter, sub, sub2, sub3;
845 dbus_error_init(&error);
847 if (!(m = dbus_message_new_method_call(
848 "org.freedesktop.systemd1",
850 "org.freedesktop.DBus.Properties",
852 log_error("Could not allocate message.");
857 if (!dbus_message_append_args(m,
858 DBUS_TYPE_STRING, &interface,
859 DBUS_TYPE_INVALID)) {
860 log_error("Could not append arguments to message.");
865 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
866 log_error("Failed to issue method call: %s", bus_error_message(&error));
871 if (!dbus_message_iter_init(reply, &iter) ||
872 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY ||
873 dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_DICT_ENTRY) {
874 log_error("Failed to parse reply.");
879 dbus_message_iter_recurse(&iter, &sub);
881 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
884 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_DICT_ENTRY) {
885 log_error("Failed to parse reply.");
890 dbus_message_iter_recurse(&sub, &sub2);
892 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &prop, true) < 0) {
893 log_error("Failed to parse reply.");
898 if (dbus_message_iter_get_arg_type(&sub2) != DBUS_TYPE_VARIANT) {
899 log_error("Failed to parse reply.");
904 dbus_message_iter_recurse(&sub2, &sub3);
906 if (dot_one_property(name, prop, &sub3)) {
907 log_error("Failed to parse reply.");
912 dbus_message_iter_next(&sub);
919 dbus_message_unref(m);
922 dbus_message_unref(reply);
924 dbus_error_free(&error);
929 static int dot(DBusConnection *bus, char **args) {
930 DBusMessage *m = NULL, *reply = NULL;
933 DBusMessageIter iter, sub, sub2;
935 dbus_error_init(&error);
939 if (!(m = dbus_message_new_method_call(
940 "org.freedesktop.systemd1",
941 "/org/freedesktop/systemd1",
942 "org.freedesktop.systemd1.Manager",
944 log_error("Could not allocate message.");
948 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
949 log_error("Failed to issue method call: %s", bus_error_message(&error));
954 if (!dbus_message_iter_init(reply, &iter) ||
955 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY ||
956 dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_STRUCT) {
957 log_error("Failed to parse reply.");
962 printf("digraph systemd {\n");
964 dbus_message_iter_recurse(&iter, &sub);
965 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
966 const char *id, *description, *load_state, *active_state, *sub_state, *following, *unit_path;
968 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRUCT) {
969 log_error("Failed to parse reply.");
974 dbus_message_iter_recurse(&sub, &sub2);
976 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &id, true) < 0 ||
977 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &description, true) < 0 ||
978 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &load_state, true) < 0 ||
979 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &active_state, true) < 0 ||
980 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &sub_state, true) < 0 ||
981 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &following, true) < 0 ||
982 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_OBJECT_PATH, &unit_path, true) < 0) {
983 log_error("Failed to parse reply.");
988 if ((r = dot_one(bus, id, unit_path)) < 0)
991 /* printf("\t\"%s\";\n", id); */
992 dbus_message_iter_next(&sub);
997 log_info(" Color legend: black = Requires\n"
998 " dark blue = Requisite\n"
999 " dark grey = Wants\n"
1000 " red = Conflicts\n"
1001 " green = After\n");
1004 log_notice("-- You probably want to process this output with graphviz' dot tool.\n"
1005 "-- Try a shell pipeline like 'systemctl dot | dot -Tsvg > systemd.svg'!\n");
1011 dbus_message_unref(m);
1014 dbus_message_unref(reply);
1016 dbus_error_free(&error);
1021 static int list_jobs(DBusConnection *bus, char **args) {
1022 DBusMessage *m = NULL, *reply = NULL;
1025 DBusMessageIter iter, sub, sub2;
1028 dbus_error_init(&error);
1032 pager_open_if_enabled();
1034 if (!(m = dbus_message_new_method_call(
1035 "org.freedesktop.systemd1",
1036 "/org/freedesktop/systemd1",
1037 "org.freedesktop.systemd1.Manager",
1039 log_error("Could not allocate message.");
1043 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
1044 log_error("Failed to issue method call: %s", bus_error_message(&error));
1049 if (!dbus_message_iter_init(reply, &iter) ||
1050 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY ||
1051 dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_STRUCT) {
1052 log_error("Failed to parse reply.");
1057 dbus_message_iter_recurse(&iter, &sub);
1060 printf("%4s %-25s %-15s %-7s\n", "JOB", "UNIT", "TYPE", "STATE");
1062 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
1063 const char *name, *type, *state, *job_path, *unit_path;
1067 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRUCT) {
1068 log_error("Failed to parse reply.");
1073 dbus_message_iter_recurse(&sub, &sub2);
1075 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT32, &id, true) < 0 ||
1076 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &name, true) < 0 ||
1077 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &type, true) < 0 ||
1078 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &state, true) < 0 ||
1079 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_OBJECT_PATH, &job_path, true) < 0 ||
1080 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_OBJECT_PATH, &unit_path, false) < 0) {
1081 log_error("Failed to parse reply.");
1086 e = arg_full ? NULL : ellipsize(name, 25, 33);
1087 printf("%4u %-25s %-15s %-7s\n", id, e ? e : name, type, state);
1092 dbus_message_iter_next(&sub);
1096 printf("\n%u jobs listed.\n", k);
1102 dbus_message_unref(m);
1105 dbus_message_unref(reply);
1107 dbus_error_free(&error);
1112 static int load_unit(DBusConnection *bus, char **args) {
1113 DBusMessage *m = NULL;
1118 dbus_error_init(&error);
1123 STRV_FOREACH(name, args+1) {
1128 if (!(m = dbus_message_new_method_call(
1129 "org.freedesktop.systemd1",
1130 "/org/freedesktop/systemd1",
1131 "org.freedesktop.systemd1.Manager",
1133 log_error("Could not allocate message.");
1138 n = unit_name_mangle(*name);
1139 b = dbus_message_append_args(m,
1140 DBUS_TYPE_STRING, n ? &n : name,
1144 log_error("Could not append arguments to message.");
1149 reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error);
1151 log_error("Failed to issue method call: %s", bus_error_message(&error));
1156 dbus_message_unref(m);
1157 dbus_message_unref(reply);
1166 dbus_message_unref(m);
1168 dbus_error_free(&error);
1173 static int cancel_job(DBusConnection *bus, char **args) {
1174 DBusMessage *m = NULL, *reply = NULL;
1179 dbus_error_init(&error);
1184 if (strv_length(args) <= 1)
1185 return daemon_reload(bus, args);
1187 STRV_FOREACH(name, args+1) {
1191 if (!(m = dbus_message_new_method_call(
1192 "org.freedesktop.systemd1",
1193 "/org/freedesktop/systemd1",
1194 "org.freedesktop.systemd1.Manager",
1196 log_error("Could not allocate message.");
1201 if ((r = safe_atou(*name, &id)) < 0) {
1202 log_error("Failed to parse job id: %s", strerror(-r));
1206 assert_cc(sizeof(uint32_t) == sizeof(id));
1207 if (!dbus_message_append_args(m,
1208 DBUS_TYPE_UINT32, &id,
1209 DBUS_TYPE_INVALID)) {
1210 log_error("Could not append arguments to message.");
1215 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
1216 log_error("Failed to issue method call: %s", bus_error_message(&error));
1221 if (!dbus_message_get_args(reply, &error,
1222 DBUS_TYPE_OBJECT_PATH, &path,
1223 DBUS_TYPE_INVALID)) {
1224 log_error("Failed to parse reply: %s", bus_error_message(&error));
1229 dbus_message_unref(m);
1230 if (!(m = dbus_message_new_method_call(
1231 "org.freedesktop.systemd1",
1233 "org.freedesktop.systemd1.Job",
1235 log_error("Could not allocate message.");
1240 dbus_message_unref(reply);
1241 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
1242 log_error("Failed to issue method call: %s", bus_error_message(&error));
1247 dbus_message_unref(m);
1248 dbus_message_unref(reply);
1256 dbus_message_unref(m);
1259 dbus_message_unref(reply);
1261 dbus_error_free(&error);
1266 static bool need_daemon_reload(DBusConnection *bus, const char *unit) {
1267 DBusMessage *m = NULL, *reply = NULL;
1268 dbus_bool_t b = FALSE;
1269 DBusMessageIter iter, sub;
1271 *interface = "org.freedesktop.systemd1.Unit",
1272 *property = "NeedDaemonReload",
1277 /* We ignore all errors here, since this is used to show a warning only */
1279 m = dbus_message_new_method_call(
1280 "org.freedesktop.systemd1",
1281 "/org/freedesktop/systemd1",
1282 "org.freedesktop.systemd1.Manager",
1287 n = unit_name_mangle(unit);
1288 k = dbus_message_append_args(m,
1289 DBUS_TYPE_STRING, n ? (const char**) &n : &unit,
1295 reply = dbus_connection_send_with_reply_and_block(bus, m, -1, NULL);
1299 if (!dbus_message_get_args(reply, NULL,
1300 DBUS_TYPE_OBJECT_PATH, &path,
1304 dbus_message_unref(m);
1305 m = dbus_message_new_method_call(
1306 "org.freedesktop.systemd1",
1308 "org.freedesktop.DBus.Properties",
1313 if (!dbus_message_append_args(m,
1314 DBUS_TYPE_STRING, &interface,
1315 DBUS_TYPE_STRING, &property,
1316 DBUS_TYPE_INVALID)) {
1320 dbus_message_unref(reply);
1321 reply = dbus_connection_send_with_reply_and_block(bus, m, -1, NULL);
1325 if (!dbus_message_iter_init(reply, &iter) ||
1326 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
1329 dbus_message_iter_recurse(&iter, &sub);
1331 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_BOOLEAN)
1334 dbus_message_iter_get_basic(&sub, &b);
1338 dbus_message_unref(m);
1341 dbus_message_unref(reply);
1346 typedef struct WaitData {
1351 static DBusHandlerResult wait_filter(DBusConnection *connection, DBusMessage *message, void *data) {
1359 dbus_error_init(&error);
1361 log_debug("Got D-Bus request: %s.%s() on %s",
1362 dbus_message_get_interface(message),
1363 dbus_message_get_member(message),
1364 dbus_message_get_path(message));
1366 if (dbus_message_is_signal(message, DBUS_INTERFACE_LOCAL, "Disconnected")) {
1367 log_error("Warning! D-Bus connection terminated.");
1368 dbus_connection_close(connection);
1370 } else if (dbus_message_is_signal(message, "org.freedesktop.systemd1.Manager", "JobRemoved")) {
1372 const char *path, *result, *unit;
1373 dbus_bool_t success = true;
1375 if (dbus_message_get_args(message, &error,
1376 DBUS_TYPE_UINT32, &id,
1377 DBUS_TYPE_OBJECT_PATH, &path,
1378 DBUS_TYPE_STRING, &unit,
1379 DBUS_TYPE_STRING, &result,
1380 DBUS_TYPE_INVALID)) {
1383 p = set_remove(d->set, (char*) path);
1387 d->result = strdup(result);
1392 dbus_error_free(&error);
1393 if (dbus_message_get_args(message, &error,
1394 DBUS_TYPE_UINT32, &id,
1395 DBUS_TYPE_OBJECT_PATH, &path,
1396 DBUS_TYPE_STRING, &result,
1397 DBUS_TYPE_INVALID)) {
1400 /* Compatibility with older systemd versions <
1401 * 183 during upgrades. This should be dropped
1403 p = set_remove(d->set, (char*) path);
1407 d->result = strdup(result);
1412 dbus_error_free(&error);
1413 if (dbus_message_get_args(message, &error,
1414 DBUS_TYPE_UINT32, &id,
1415 DBUS_TYPE_OBJECT_PATH, &path,
1416 DBUS_TYPE_BOOLEAN, &success,
1417 DBUS_TYPE_INVALID)) {
1420 /* Compatibility with older systemd versions <
1421 * 19 during upgrades. This should be dropped
1424 p = set_remove(d->set, (char*) path);
1428 d->result = strdup("failed");
1434 log_error("Failed to parse message: %s", bus_error_message(&error));
1438 dbus_error_free(&error);
1439 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1442 static int enable_wait_for_jobs(DBusConnection *bus) {
1450 dbus_error_init(&error);
1451 dbus_bus_add_match(bus,
1453 "sender='org.freedesktop.systemd1',"
1454 "interface='org.freedesktop.systemd1.Manager',"
1455 "member='JobRemoved',"
1456 "path='/org/freedesktop/systemd1'",
1459 if (dbus_error_is_set(&error)) {
1460 log_error("Failed to add match: %s", bus_error_message(&error));
1461 dbus_error_free(&error);
1465 /* This is slightly dirty, since we don't undo the match registrations. */
1469 static int wait_for_jobs(DBusConnection *bus, Set *s) {
1479 if (!dbus_connection_add_filter(bus, wait_filter, &d, NULL)) {
1480 log_error("Failed to add filter.");
1485 while (!set_isempty(s) &&
1486 dbus_connection_read_write_dispatch(bus, -1))
1489 if (!arg_quiet && d.result) {
1490 if (streq(d.result, "timeout"))
1491 log_error("Job timed out.");
1492 else if (streq(d.result, "canceled"))
1493 log_error("Job canceled.");
1494 else if (streq(d.result, "dependency"))
1495 log_error("A dependency job failed. See system journal for details.");
1496 else if (!streq(d.result, "done") && !streq(d.result, "skipped"))
1497 log_error("Job failed. See system journal and 'systemctl status' for details.");
1500 if (streq_ptr(d.result, "timeout"))
1502 else if (streq_ptr(d.result, "canceled"))
1504 else if (!streq_ptr(d.result, "done") && !streq_ptr(d.result, "skipped"))
1512 /* This is slightly dirty, since we don't undo the filter registration. */
1517 static int check_one_unit(DBusConnection *bus, char *name, bool quiet) {
1518 DBusMessage *m = NULL, *reply = NULL;
1520 DBusMessageIter iter, sub;
1522 *interface = "org.freedesktop.systemd1.Unit",
1523 *property = "ActiveState";
1524 const char *path = NULL;
1526 int r = 3; /* According to LSB: "program is not running" */
1533 dbus_error_init(&error);
1535 m = dbus_message_new_method_call(
1536 "org.freedesktop.systemd1",
1537 "/org/freedesktop/systemd1",
1538 "org.freedesktop.systemd1.Manager",
1541 log_error("Could not allocate message.");
1546 n = unit_name_mangle(name);
1547 b = dbus_message_append_args(m,
1548 DBUS_TYPE_STRING, n ? &n : &name,
1552 log_error("Could not append arguments to message.");
1557 reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error);
1559 /* Hmm, cannot figure out anything about this unit... */
1566 if (!dbus_message_get_args(reply, &error,
1567 DBUS_TYPE_OBJECT_PATH, &path,
1568 DBUS_TYPE_INVALID)) {
1569 log_error("Failed to parse reply: %s", bus_error_message(&error));
1574 dbus_message_unref(m);
1575 m = dbus_message_new_method_call(
1576 "org.freedesktop.systemd1",
1578 "org.freedesktop.DBus.Properties",
1581 log_error("Could not allocate message.");
1586 if (!dbus_message_append_args(m,
1587 DBUS_TYPE_STRING, &interface,
1588 DBUS_TYPE_STRING, &property,
1589 DBUS_TYPE_INVALID)) {
1590 log_error("Could not append arguments to message.");
1595 dbus_message_unref(reply);
1596 reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error);
1598 log_error("Failed to issue method call: %s", bus_error_message(&error));
1603 if (!dbus_message_iter_init(reply, &iter) ||
1604 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT) {
1605 log_error("Failed to parse reply.");
1610 dbus_message_iter_recurse(&iter, &sub);
1612 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRING) {
1613 log_error("Failed to parse reply.");
1618 dbus_message_iter_get_basic(&sub, &state);
1623 if (streq(state, "active") || streq(state, "reloading"))
1628 dbus_message_unref(m);
1631 dbus_message_unref(reply);
1633 dbus_error_free(&error);
1638 static void check_triggering_units(
1639 DBusConnection *bus,
1640 const char *unit_name) {
1643 DBusMessage *m = NULL, *reply = NULL;
1644 DBusMessageIter iter, sub;
1645 char *service_trigger = NULL;
1646 const char *interface = "org.freedesktop.systemd1.Unit",
1647 *triggered_by_property = "TriggeredBy";
1649 char *unit_path = NULL, *n = NULL;
1650 bool print_warning_label = true;
1652 dbus_error_init(&error);
1654 n = unit_name_mangle(unit_name);
1655 unit_path = unit_dbus_path_from_name(n ? n : unit_name);
1658 log_error("Could not allocate dbus path.");
1662 m = dbus_message_new_method_call("org.freedesktop.systemd1",
1664 "org.freedesktop.DBus.Properties",
1667 log_error("Could not allocate message.");
1671 if (!dbus_message_append_args(m,
1672 DBUS_TYPE_STRING, &interface,
1673 DBUS_TYPE_STRING, &triggered_by_property,
1674 DBUS_TYPE_INVALID)) {
1675 log_error("Could not append arguments to message.");
1679 reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error);
1681 log_error("Failed to issue method call: %s", bus_error_message(&error));
1685 if (!dbus_message_iter_init(reply, &iter) ||
1686 dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT) {
1687 log_error("Failed to parse reply: %s", bus_error_message(&error));
1692 dbus_message_iter_recurse(&iter, &sub);
1693 dbus_message_iter_recurse(&sub, &iter);
1696 while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) {
1699 if (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_STRING) {
1700 log_error("Failed to parse reply: %s", bus_error_message(&error));
1704 dbus_message_iter_get_basic(&sub, &service_trigger);
1706 r = check_one_unit(bus, service_trigger, true);
1710 if (print_warning_label) {
1711 log_warning("Warning: Stopping %s, but it can still be activated by:", unit_name);
1712 print_warning_label = false;
1714 log_warning(" %s", service_trigger);
1717 dbus_message_iter_next(&sub);
1721 dbus_message_unref(m);
1724 dbus_message_unref(reply);
1726 dbus_error_free(&error);
1731 static int start_unit_one(
1732 DBusConnection *bus,
1739 DBusMessage *m = NULL, *reply = NULL;
1750 assert(arg_no_block || s);
1752 m = dbus_message_new_method_call(
1753 "org.freedesktop.systemd1",
1754 "/org/freedesktop/systemd1",
1755 "org.freedesktop.systemd1.Manager",
1758 log_error("Could not allocate message.");
1763 n = unit_name_mangle(name);
1764 b = dbus_message_append_args(m,
1765 DBUS_TYPE_STRING, n ? (const char **) &n : &name,
1766 DBUS_TYPE_STRING, &mode,
1770 log_error("Could not append arguments to message.");
1775 reply = dbus_connection_send_with_reply_and_block(bus, m, -1, error);
1778 if (arg_action != ACTION_SYSTEMCTL && error_is_no_service(error)) {
1779 /* There's always a fallback possible for
1780 * legacy actions. */
1785 log_error("Failed to issue method call: %s", bus_error_message(error));
1790 if (!dbus_message_get_args(reply, error,
1791 DBUS_TYPE_OBJECT_PATH, &path,
1792 DBUS_TYPE_INVALID)) {
1793 log_error("Failed to parse reply: %s", bus_error_message(error));
1798 if (need_daemon_reload(bus, name))
1799 log_warning("Warning: Unit file of created job changed on disk, 'systemctl %s daemon-reload' recommended.",
1800 arg_scope == UNIT_FILE_SYSTEM ? "--system" : "--user");
1802 if (!arg_no_block) {
1805 if (!(p = strdup(path))) {
1806 log_error("Failed to duplicate path.");
1811 if ((r = set_put(s, p)) < 0) {
1813 log_error("Failed to add path to set.");
1818 /* When stopping a unit warn if it can still be triggered by
1819 * another active unit (socket, path, timer) */
1820 if (!arg_quiet && streq(method, "StopUnit"))
1821 check_triggering_units(bus, name);
1827 dbus_message_unref(m);
1830 dbus_message_unref(reply);
1835 static enum action verb_to_action(const char *verb) {
1836 if (streq(verb, "halt"))
1838 else if (streq(verb, "poweroff"))
1839 return ACTION_POWEROFF;
1840 else if (streq(verb, "reboot"))
1841 return ACTION_REBOOT;
1842 else if (streq(verb, "kexec"))
1843 return ACTION_KEXEC;
1844 else if (streq(verb, "rescue"))
1845 return ACTION_RESCUE;
1846 else if (streq(verb, "emergency"))
1847 return ACTION_EMERGENCY;
1848 else if (streq(verb, "default"))
1849 return ACTION_DEFAULT;
1850 else if (streq(verb, "exit"))
1852 else if (streq(verb, "suspend"))
1853 return ACTION_SUSPEND;
1854 else if (streq(verb, "hibernate"))
1855 return ACTION_HIBERNATE;
1857 return ACTION_INVALID;
1860 static int start_unit(DBusConnection *bus, char **args) {
1862 static const char * const table[_ACTION_MAX] = {
1863 [ACTION_HALT] = SPECIAL_HALT_TARGET,
1864 [ACTION_POWEROFF] = SPECIAL_POWEROFF_TARGET,
1865 [ACTION_REBOOT] = SPECIAL_REBOOT_TARGET,
1866 [ACTION_KEXEC] = SPECIAL_KEXEC_TARGET,
1867 [ACTION_RUNLEVEL2] = SPECIAL_RUNLEVEL2_TARGET,
1868 [ACTION_RUNLEVEL3] = SPECIAL_RUNLEVEL3_TARGET,
1869 [ACTION_RUNLEVEL4] = SPECIAL_RUNLEVEL4_TARGET,
1870 [ACTION_RUNLEVEL5] = SPECIAL_RUNLEVEL5_TARGET,
1871 [ACTION_RESCUE] = SPECIAL_RESCUE_TARGET,
1872 [ACTION_EMERGENCY] = SPECIAL_EMERGENCY_TARGET,
1873 [ACTION_DEFAULT] = SPECIAL_DEFAULT_TARGET,
1874 [ACTION_EXIT] = SPECIAL_EXIT_TARGET,
1875 [ACTION_SUSPEND] = SPECIAL_SUSPEND_TARGET,
1876 [ACTION_HIBERNATE] = SPECIAL_HIBERNATE_TARGET
1880 const char *method, *mode, *one_name;
1885 dbus_error_init(&error);
1889 ask_password_agent_open_if_enabled();
1891 if (arg_action == ACTION_SYSTEMCTL) {
1893 streq(args[0], "stop") ||
1894 streq(args[0], "condstop") ? "StopUnit" :
1895 streq(args[0], "reload") ? "ReloadUnit" :
1896 streq(args[0], "restart") ? "RestartUnit" :
1898 streq(args[0], "try-restart") ||
1899 streq(args[0], "condrestart") ? "TryRestartUnit" :
1901 streq(args[0], "reload-or-restart") ? "ReloadOrRestartUnit" :
1903 streq(args[0], "reload-or-try-restart") ||
1904 streq(args[0], "condreload") ||
1906 streq(args[0], "force-reload") ? "ReloadOrTryRestartUnit" :
1910 (streq(args[0], "isolate") ||
1911 streq(args[0], "rescue") ||
1912 streq(args[0], "emergency")) ? "isolate" : arg_job_mode;
1914 one_name = table[verb_to_action(args[0])];
1917 assert(arg_action < ELEMENTSOF(table));
1918 assert(table[arg_action]);
1920 method = "StartUnit";
1922 mode = (arg_action == ACTION_EMERGENCY ||
1923 arg_action == ACTION_RESCUE ||
1924 arg_action == ACTION_RUNLEVEL2 ||
1925 arg_action == ACTION_RUNLEVEL3 ||
1926 arg_action == ACTION_RUNLEVEL4 ||
1927 arg_action == ACTION_RUNLEVEL5) ? "isolate" : "replace";
1929 one_name = table[arg_action];
1932 if (!arg_no_block) {
1933 if ((ret = enable_wait_for_jobs(bus)) < 0) {
1934 log_error("Could not watch jobs: %s", strerror(-ret));
1938 if (!(s = set_new(string_hash_func, string_compare_func))) {
1939 log_error("Failed to allocate set.");
1946 if ((ret = start_unit_one(bus, method, one_name, mode, &error, s)) <= 0)
1949 STRV_FOREACH(name, args+1)
1950 if ((r = start_unit_one(bus, method, *name, mode, &error, s)) != 0) {
1951 ret = translate_bus_error_to_exit_status(r, &error);
1952 dbus_error_free(&error);
1957 if ((r = wait_for_jobs(bus, s)) < 0) {
1966 dbus_error_free(&error);
1971 /* Ask systemd-logind, which might grant access to unprivileged users
1972 * through PolicyKit */
1973 static int reboot_with_logind(DBusConnection *bus, enum action a) {
1976 DBusMessage *m = NULL, *reply = NULL;
1978 dbus_bool_t interactive = true;
1981 dbus_error_init(&error);
1983 polkit_agent_open_if_enabled();
1991 case ACTION_POWEROFF:
1992 method = "PowerOff";
1995 case ACTION_SUSPEND:
1999 case ACTION_HIBERNATE:
2000 method = "Hibernate";
2007 m = dbus_message_new_method_call(
2008 "org.freedesktop.login1",
2009 "/org/freedesktop/login1",
2010 "org.freedesktop.login1.Manager",
2013 log_error("Could not allocate message.");
2018 if (!dbus_message_append_args(m,
2019 DBUS_TYPE_BOOLEAN, &interactive,
2020 DBUS_TYPE_INVALID)) {
2021 log_error("Could not append arguments to message.");
2026 reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error);
2028 if (error_is_no_service(&error)) {
2029 log_debug("Failed to issue method call: %s", bus_error_message(&error));
2034 if (dbus_error_has_name(&error, DBUS_ERROR_ACCESS_DENIED)) {
2035 log_debug("Failed to issue method call: %s", bus_error_message(&error));
2040 log_info("Failed to issue method call: %s", bus_error_message(&error));
2049 dbus_message_unref(m);
2052 dbus_message_unref(reply);
2054 dbus_error_free(&error);
2062 static int start_special(DBusConnection *bus, char **args) {
2068 a = verb_to_action(args[0]);
2070 if (arg_force >= 2 && geteuid() != 0) {
2071 log_error("Must be root.");
2075 if (arg_force >= 2 &&
2076 (a == ACTION_HALT ||
2077 a == ACTION_POWEROFF ||
2078 a == ACTION_REBOOT))
2081 if (arg_force >= 1 &&
2082 (a == ACTION_HALT ||
2083 a == ACTION_POWEROFF ||
2084 a == ACTION_REBOOT ||
2085 a == ACTION_KEXEC ||
2087 return daemon_reload(bus, args);
2089 /* first try logind, to allow authentication with polkit */
2090 if (geteuid() != 0 &&
2091 (a == ACTION_POWEROFF ||
2092 a == ACTION_REBOOT ||
2093 a == ACTION_SUSPEND ||
2094 a == ACTION_HIBERNATE)) {
2095 r = reboot_with_logind(bus, a);
2100 r = start_unit(bus, args);
2107 static int check_unit(DBusConnection *bus, char **args) {
2109 int r = 3; /* According to LSB: "program is not running" */
2114 STRV_FOREACH(name, args+1) {
2115 int state = check_one_unit(bus, *name, arg_quiet);
2125 static int kill_unit(DBusConnection *bus, char **args) {
2126 DBusMessage *m = NULL;
2134 dbus_error_init(&error);
2137 arg_kill_who = "all";
2139 STRV_FOREACH(name, args+1) {
2144 m = dbus_message_new_method_call(
2145 "org.freedesktop.systemd1",
2146 "/org/freedesktop/systemd1",
2147 "org.freedesktop.systemd1.Manager",
2150 log_error("Could not allocate message.");
2155 n = unit_name_mangle(*name);
2156 b = dbus_message_append_args(m,
2157 DBUS_TYPE_STRING, n ? &n : name,
2158 DBUS_TYPE_STRING, &arg_kill_who,
2159 DBUS_TYPE_INT32, &arg_signal,
2163 log_error("Could not append arguments to message.");
2168 reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error);
2170 log_error("Failed to issue method call: %s", bus_error_message(&error));
2171 dbus_error_free(&error);
2175 dbus_message_unref(m);
2178 dbus_message_unref(reply);
2184 dbus_message_unref(m);
2186 dbus_error_free(&error);
2191 typedef struct ExecStatusInfo {
2199 usec_t start_timestamp;
2200 usec_t exit_timestamp;
2205 LIST_FIELDS(struct ExecStatusInfo, exec);
2208 static void exec_status_info_free(ExecStatusInfo *i) {
2217 static int exec_status_info_deserialize(DBusMessageIter *sub, ExecStatusInfo *i) {
2218 uint64_t start_timestamp, exit_timestamp, start_timestamp_monotonic, exit_timestamp_monotonic;
2219 DBusMessageIter sub2, sub3;
2223 int32_t code, status;
2229 if (dbus_message_iter_get_arg_type(sub) != DBUS_TYPE_STRUCT)
2232 dbus_message_iter_recurse(sub, &sub2);
2234 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &path, true) < 0)
2237 if (!(i->path = strdup(path)))
2240 if (dbus_message_iter_get_arg_type(&sub2) != DBUS_TYPE_ARRAY ||
2241 dbus_message_iter_get_element_type(&sub2) != DBUS_TYPE_STRING)
2245 dbus_message_iter_recurse(&sub2, &sub3);
2246 while (dbus_message_iter_get_arg_type(&sub3) != DBUS_TYPE_INVALID) {
2247 assert(dbus_message_iter_get_arg_type(&sub3) == DBUS_TYPE_STRING);
2248 dbus_message_iter_next(&sub3);
2253 if (!(i->argv = new0(char*, n+1)))
2257 dbus_message_iter_recurse(&sub2, &sub3);
2258 while (dbus_message_iter_get_arg_type(&sub3) != DBUS_TYPE_INVALID) {
2261 assert(dbus_message_iter_get_arg_type(&sub3) == DBUS_TYPE_STRING);
2262 dbus_message_iter_get_basic(&sub3, &s);
2263 dbus_message_iter_next(&sub3);
2265 if (!(i->argv[n++] = strdup(s)))
2269 if (!dbus_message_iter_next(&sub2) ||
2270 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_BOOLEAN, &ignore, true) < 0 ||
2271 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT64, &start_timestamp, true) < 0 ||
2272 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT64, &start_timestamp_monotonic, true) < 0 ||
2273 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT64, &exit_timestamp, true) < 0 ||
2274 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT64, &exit_timestamp_monotonic, true) < 0 ||
2275 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT32, &pid, true) < 0 ||
2276 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_INT32, &code, true) < 0 ||
2277 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_INT32, &status, false) < 0)
2281 i->start_timestamp = (usec_t) start_timestamp;
2282 i->exit_timestamp = (usec_t) exit_timestamp;
2283 i->pid = (pid_t) pid;
2290 typedef struct UnitStatusInfo {
2292 const char *load_state;
2293 const char *active_state;
2294 const char *sub_state;
2295 const char *unit_file_state;
2297 const char *description;
2298 const char *following;
2300 char **documentation;
2302 const char *fragment_path;
2303 const char *source_path;
2304 const char *default_control_group;
2306 const char *load_error;
2309 usec_t inactive_exit_timestamp;
2310 usec_t inactive_exit_timestamp_monotonic;
2311 usec_t active_enter_timestamp;
2312 usec_t active_exit_timestamp;
2313 usec_t inactive_enter_timestamp;
2315 bool need_daemon_reload;
2320 const char *status_text;
2323 usec_t start_timestamp;
2324 usec_t exit_timestamp;
2326 int exit_code, exit_status;
2328 usec_t condition_timestamp;
2329 bool condition_result;
2332 unsigned n_accepted;
2333 unsigned n_connections;
2337 const char *sysfs_path;
2339 /* Mount, Automount */
2345 LIST_HEAD(ExecStatusInfo, exec);
2348 static void print_status_info(UnitStatusInfo *i) {
2350 const char *on, *off, *ss;
2352 char since1[FORMAT_TIMESTAMP_PRETTY_MAX], *s1;
2353 char since2[FORMAT_TIMESTAMP_MAX], *s2;
2358 /* This shows pretty information about a unit. See
2359 * print_property() for a low-level property printer */
2361 printf("%s", strna(i->id));
2363 if (i->description && !streq_ptr(i->id, i->description))
2364 printf(" - %s", i->description);
2369 printf("\t Follow: unit currently follows state of %s\n", i->following);
2371 if (streq_ptr(i->load_state, "error")) {
2372 on = ansi_highlight_red(true);
2373 off = ansi_highlight_red(false);
2377 path = i->source_path ? i->source_path : i->fragment_path;
2380 printf("\t Loaded: %s%s%s (Reason: %s)\n", on, strna(i->load_state), off, i->load_error);
2381 else if (path && i->unit_file_state)
2382 printf("\t Loaded: %s%s%s (%s; %s)\n", on, strna(i->load_state), off, path, i->unit_file_state);
2384 printf("\t Loaded: %s%s%s (%s)\n", on, strna(i->load_state), off, path);
2386 printf("\t Loaded: %s%s%s\n", on, strna(i->load_state), off);
2388 ss = streq_ptr(i->active_state, i->sub_state) ? NULL : i->sub_state;
2390 if (streq_ptr(i->active_state, "failed")) {
2391 on = ansi_highlight_red(true);
2392 off = ansi_highlight_red(false);
2393 } else if (streq_ptr(i->active_state, "active") || streq_ptr(i->active_state, "reloading")) {
2394 on = ansi_highlight_green(true);
2395 off = ansi_highlight_green(false);
2400 printf("\t Active: %s%s (%s)%s",
2402 strna(i->active_state),
2406 printf("\t Active: %s%s%s",
2408 strna(i->active_state),
2411 if (!isempty(i->result) && !streq(i->result, "success"))
2412 printf(" (Result: %s)", i->result);
2414 timestamp = (streq_ptr(i->active_state, "active") ||
2415 streq_ptr(i->active_state, "reloading")) ? i->active_enter_timestamp :
2416 (streq_ptr(i->active_state, "inactive") ||
2417 streq_ptr(i->active_state, "failed")) ? i->inactive_enter_timestamp :
2418 streq_ptr(i->active_state, "activating") ? i->inactive_exit_timestamp :
2419 i->active_exit_timestamp;
2421 s1 = format_timestamp_pretty(since1, sizeof(since1), timestamp);
2422 s2 = format_timestamp(since2, sizeof(since2), timestamp);
2425 printf(" since %s; %s\n", s2, s1);
2427 printf(" since %s\n", s2);
2431 if (!i->condition_result && i->condition_timestamp > 0) {
2432 s1 = format_timestamp_pretty(since1, sizeof(since1), i->condition_timestamp);
2433 s2 = format_timestamp(since2, sizeof(since2), i->condition_timestamp);
2436 printf("\t start condition failed at %s; %s\n", s2, s1);
2438 printf("\t start condition failed at %s\n", s2);
2442 printf("\t Device: %s\n", i->sysfs_path);
2444 printf("\t Where: %s\n", i->where);
2446 printf("\t What: %s\n", i->what);
2448 if (!strv_isempty(i->documentation)) {
2452 STRV_FOREACH(t, i->documentation) {
2454 printf("\t Docs: %s\n", *t);
2457 printf("\t %s\n", *t);
2462 printf("\tAccepted: %u; Connected: %u\n", i->n_accepted, i->n_connections);
2464 LIST_FOREACH(exec, p, i->exec) {
2468 /* Only show exited processes here */
2472 t = strv_join(p->argv, " ");
2473 printf("\t Process: %u %s=%s ", p->pid, p->name, strna(t));
2476 good = is_clean_exit_lsb(p->code, p->status);
2478 on = ansi_highlight_red(true);
2479 off = ansi_highlight_red(false);
2483 printf("%s(code=%s, ", on, sigchld_code_to_string(p->code));
2485 if (p->code == CLD_EXITED) {
2488 printf("status=%i", p->status);
2490 c = exit_status_to_string(p->status, EXIT_STATUS_SYSTEMD);
2495 printf("signal=%s", signal_to_string(p->status));
2497 printf(")%s\n", off);
2499 if (i->main_pid == p->pid &&
2500 i->start_timestamp == p->start_timestamp &&
2501 i->exit_timestamp == p->start_timestamp)
2502 /* Let's not show this twice */
2505 if (p->pid == i->control_pid)
2509 if (i->main_pid > 0 || i->control_pid > 0) {
2512 if (i->main_pid > 0) {
2513 printf("Main PID: %u", (unsigned) i->main_pid);
2517 get_process_comm(i->main_pid, &t);
2522 } else if (i->exit_code > 0) {
2523 printf(" (code=%s, ", sigchld_code_to_string(i->exit_code));
2525 if (i->exit_code == CLD_EXITED) {
2528 printf("status=%i", i->exit_status);
2530 c = exit_status_to_string(i->exit_status, EXIT_STATUS_SYSTEMD);
2535 printf("signal=%s", signal_to_string(i->exit_status));
2540 if (i->main_pid > 0 && i->control_pid > 0)
2543 if (i->control_pid > 0) {
2546 printf(" Control: %u", (unsigned) i->control_pid);
2548 get_process_comm(i->control_pid, &t);
2559 printf("\t Status: \"%s\"\n", i->status_text);
2561 if (i->default_control_group) {
2564 printf("\t CGroup: %s\n", i->default_control_group);
2566 if (arg_transport != TRANSPORT_SSH) {
2576 if (i->main_pid > 0)
2577 extra[k++] = i->main_pid;
2579 if (i->control_pid > 0)
2580 extra[k++] = i->control_pid;
2582 show_cgroup_and_extra_by_spec(i->default_control_group, "\t\t ", c, false, arg_all, extra, k);
2586 if (i->id && arg_transport != TRANSPORT_SSH) {
2588 arg_lines * OUTPUT_SHOW_ALL |
2589 arg_follow * OUTPUT_FOLLOW |
2590 !arg_quiet * OUTPUT_WARN_CUTOFF |
2591 on_tty() * OUTPUT_COLOR;
2594 show_journal_by_unit(i->id, arg_output, 0,
2595 i->inactive_exit_timestamp_monotonic,
2599 if (i->need_daemon_reload)
2600 printf("\n%sWarning:%s Unit file changed on disk, 'systemctl %s daemon-reload' recommended.\n",
2601 ansi_highlight_red(true),
2602 ansi_highlight_red(false),
2603 arg_scope == UNIT_FILE_SYSTEM ? "--system" : "--user");
2606 static void show_unit_help(UnitStatusInfo *i) {
2611 if (!i->documentation) {
2612 log_info("Documentation for %s not known.", i->id);
2616 STRV_FOREACH(p, i->documentation) {
2618 if (startswith(*p, "man:")) {
2621 char *page = NULL, *section = NULL;
2622 const char *args[4] = { "man", NULL, NULL, NULL };
2627 if ((*p)[k-1] == ')')
2628 e = strrchr(*p, '(');
2631 page = strndup((*p) + 4, e - *p - 4);
2637 section = strndup(e + 1, *p + k - e - 2);
2651 log_error("Failed to fork: %m");
2659 execvp(args[0], (char**) args);
2660 log_error("Failed to execute man: %m");
2661 _exit(EXIT_FAILURE);
2667 wait_for_terminate(pid, NULL);
2669 log_info("Can't show: %s", *p);
2673 static int status_property(const char *name, DBusMessageIter *iter, UnitStatusInfo *i) {
2679 switch (dbus_message_iter_get_arg_type(iter)) {
2681 case DBUS_TYPE_STRING: {
2684 dbus_message_iter_get_basic(iter, &s);
2687 if (streq(name, "Id"))
2689 else if (streq(name, "LoadState"))
2691 else if (streq(name, "ActiveState"))
2692 i->active_state = s;
2693 else if (streq(name, "SubState"))
2695 else if (streq(name, "Description"))
2697 else if (streq(name, "FragmentPath"))
2698 i->fragment_path = s;
2699 else if (streq(name, "SourcePath"))
2701 else if (streq(name, "DefaultControlGroup"))
2702 i->default_control_group = s;
2703 else if (streq(name, "StatusText"))
2705 else if (streq(name, "SysFSPath"))
2707 else if (streq(name, "Where"))
2709 else if (streq(name, "What"))
2711 else if (streq(name, "Following"))
2713 else if (streq(name, "UnitFileState"))
2714 i->unit_file_state = s;
2715 else if (streq(name, "Result"))
2722 case DBUS_TYPE_BOOLEAN: {
2725 dbus_message_iter_get_basic(iter, &b);
2727 if (streq(name, "Accept"))
2729 else if (streq(name, "NeedDaemonReload"))
2730 i->need_daemon_reload = b;
2731 else if (streq(name, "ConditionResult"))
2732 i->condition_result = b;
2737 case DBUS_TYPE_UINT32: {
2740 dbus_message_iter_get_basic(iter, &u);
2742 if (streq(name, "MainPID")) {
2744 i->main_pid = (pid_t) u;
2747 } else if (streq(name, "ControlPID"))
2748 i->control_pid = (pid_t) u;
2749 else if (streq(name, "ExecMainPID")) {
2751 i->main_pid = (pid_t) u;
2752 } else if (streq(name, "NAccepted"))
2754 else if (streq(name, "NConnections"))
2755 i->n_connections = u;
2760 case DBUS_TYPE_INT32: {
2763 dbus_message_iter_get_basic(iter, &j);
2765 if (streq(name, "ExecMainCode"))
2766 i->exit_code = (int) j;
2767 else if (streq(name, "ExecMainStatus"))
2768 i->exit_status = (int) j;
2773 case DBUS_TYPE_UINT64: {
2776 dbus_message_iter_get_basic(iter, &u);
2778 if (streq(name, "ExecMainStartTimestamp"))
2779 i->start_timestamp = (usec_t) u;
2780 else if (streq(name, "ExecMainExitTimestamp"))
2781 i->exit_timestamp = (usec_t) u;
2782 else if (streq(name, "ActiveEnterTimestamp"))
2783 i->active_enter_timestamp = (usec_t) u;
2784 else if (streq(name, "InactiveEnterTimestamp"))
2785 i->inactive_enter_timestamp = (usec_t) u;
2786 else if (streq(name, "InactiveExitTimestamp"))
2787 i->inactive_exit_timestamp = (usec_t) u;
2788 else if (streq(name, "InactiveExitTimestampMonotonic"))
2789 i->inactive_exit_timestamp_monotonic = (usec_t) u;
2790 else if (streq(name, "ActiveExitTimestamp"))
2791 i->active_exit_timestamp = (usec_t) u;
2792 else if (streq(name, "ConditionTimestamp"))
2793 i->condition_timestamp = (usec_t) u;
2798 case DBUS_TYPE_ARRAY: {
2800 if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRUCT &&
2801 startswith(name, "Exec")) {
2802 DBusMessageIter sub;
2804 dbus_message_iter_recurse(iter, &sub);
2805 while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRUCT) {
2806 ExecStatusInfo *info;
2809 if (!(info = new0(ExecStatusInfo, 1)))
2812 if (!(info->name = strdup(name))) {
2817 if ((r = exec_status_info_deserialize(&sub, info)) < 0) {
2822 LIST_PREPEND(ExecStatusInfo, exec, i->exec, info);
2824 dbus_message_iter_next(&sub);
2826 } else if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRING &&
2827 streq(name, "Documentation")) {
2829 DBusMessageIter sub;
2831 dbus_message_iter_recurse(iter, &sub);
2832 while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRING) {
2836 dbus_message_iter_get_basic(&sub, &s);
2838 l = strv_append(i->documentation, s);
2842 strv_free(i->documentation);
2843 i->documentation = l;
2845 dbus_message_iter_next(&sub);
2852 case DBUS_TYPE_STRUCT: {
2854 if (streq(name, "LoadError")) {
2855 DBusMessageIter sub;
2856 const char *n, *message;
2859 dbus_message_iter_recurse(iter, &sub);
2861 r = bus_iter_get_basic_and_next(&sub, DBUS_TYPE_STRING, &n, true);
2865 r = bus_iter_get_basic_and_next(&sub, DBUS_TYPE_STRING, &message, false);
2869 if (!isempty(message))
2870 i->load_error = message;
2880 static int print_property(const char *name, DBusMessageIter *iter) {
2884 /* This is a low-level property printer, see
2885 * print_status_info() for the nicer output */
2887 if (arg_property && !strv_find(arg_property, name))
2890 switch (dbus_message_iter_get_arg_type(iter)) {
2892 case DBUS_TYPE_STRUCT: {
2893 DBusMessageIter sub;
2894 dbus_message_iter_recurse(iter, &sub);
2896 if (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_UINT32 && streq(name, "Job")) {
2899 dbus_message_iter_get_basic(&sub, &u);
2902 printf("%s=%u\n", name, (unsigned) u);
2904 printf("%s=\n", name);
2907 } else if (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRING && streq(name, "Unit")) {
2910 dbus_message_iter_get_basic(&sub, &s);
2912 if (arg_all || s[0])
2913 printf("%s=%s\n", name, s);
2916 } else if (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRING && streq(name, "LoadError")) {
2917 const char *a = NULL, *b = NULL;
2919 if (bus_iter_get_basic_and_next(&sub, DBUS_TYPE_STRING, &a, true) >= 0)
2920 bus_iter_get_basic_and_next(&sub, DBUS_TYPE_STRING, &b, false);
2922 if (arg_all || !isempty(a) || !isempty(b))
2923 printf("%s=%s \"%s\"\n", name, strempty(a), strempty(b));
2931 case DBUS_TYPE_ARRAY:
2933 if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRUCT && streq(name, "EnvironmentFiles")) {
2934 DBusMessageIter sub, sub2;
2936 dbus_message_iter_recurse(iter, &sub);
2937 while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRUCT) {
2941 dbus_message_iter_recurse(&sub, &sub2);
2943 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &path, true) >= 0 &&
2944 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_BOOLEAN, &ignore, false) >= 0)
2945 printf("EnvironmentFile=%s (ignore_errors=%s)\n", path, yes_no(ignore));
2947 dbus_message_iter_next(&sub);
2952 } else if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRUCT && streq(name, "Paths")) {
2953 DBusMessageIter sub, sub2;
2955 dbus_message_iter_recurse(iter, &sub);
2956 while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRUCT) {
2957 const char *type, *path;
2959 dbus_message_iter_recurse(&sub, &sub2);
2961 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &type, true) >= 0 &&
2962 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &path, false) >= 0)
2963 printf("%s=%s\n", type, path);
2965 dbus_message_iter_next(&sub);
2970 } else if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRUCT && streq(name, "Timers")) {
2971 DBusMessageIter sub, sub2;
2973 dbus_message_iter_recurse(iter, &sub);
2974 while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRUCT) {
2976 uint64_t value, next_elapse;
2978 dbus_message_iter_recurse(&sub, &sub2);
2980 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &base, true) >= 0 &&
2981 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT64, &value, true) >= 0 &&
2982 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_UINT64, &next_elapse, false) >= 0) {
2983 char timespan1[FORMAT_TIMESPAN_MAX], timespan2[FORMAT_TIMESPAN_MAX];
2985 printf("%s={ value=%s ; next_elapse=%s }\n",
2987 format_timespan(timespan1, sizeof(timespan1), value),
2988 format_timespan(timespan2, sizeof(timespan2), next_elapse));
2991 dbus_message_iter_next(&sub);
2996 } else if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRUCT && streq(name, "ControlGroupAttributes")) {
2997 DBusMessageIter sub, sub2;
2999 dbus_message_iter_recurse(iter, &sub);
3000 while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRUCT) {
3001 const char *controller, *attr, *value;
3003 dbus_message_iter_recurse(&sub, &sub2);
3005 if (bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &controller, true) >= 0 &&
3006 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &attr, true) >= 0 &&
3007 bus_iter_get_basic_and_next(&sub2, DBUS_TYPE_STRING, &value, false) >= 0) {
3009 printf("ControlGroupAttribute={ controller=%s ; attribute=%s ; value=\"%s\" }\n",
3015 dbus_message_iter_next(&sub);
3020 } else if (dbus_message_iter_get_element_type(iter) == DBUS_TYPE_STRUCT && startswith(name, "Exec")) {
3021 DBusMessageIter sub;
3023 dbus_message_iter_recurse(iter, &sub);
3024 while (dbus_message_iter_get_arg_type(&sub) == DBUS_TYPE_STRUCT) {
3025 ExecStatusInfo info;
3028 if (exec_status_info_deserialize(&sub, &info) >= 0) {
3029 char timestamp1[FORMAT_TIMESTAMP_MAX], timestamp2[FORMAT_TIMESTAMP_MAX];
3032 t = strv_join(info.argv, " ");
3034 printf("%s={ path=%s ; argv[]=%s ; ignore_errors=%s ; start_time=[%s] ; stop_time=[%s] ; pid=%u ; code=%s ; status=%i%s%s }\n",
3038 yes_no(info.ignore),
3039 strna(format_timestamp(timestamp1, sizeof(timestamp1), info.start_timestamp)),
3040 strna(format_timestamp(timestamp2, sizeof(timestamp2), info.exit_timestamp)),
3041 (unsigned) info. pid,
3042 sigchld_code_to_string(info.code),
3044 info.code == CLD_EXITED ? "" : "/",
3045 strempty(info.code == CLD_EXITED ? NULL : signal_to_string(info.status)));
3051 strv_free(info.argv);
3053 dbus_message_iter_next(&sub);
3062 if (generic_print_property(name, iter, arg_all) > 0)
3066 printf("%s=[unprintable]\n", name);
3071 static int show_one(const char *verb, DBusConnection *bus, const char *path, bool show_properties, bool *new_line) {
3072 DBusMessage *m = NULL, *reply = NULL;
3073 const char *interface = "";
3076 DBusMessageIter iter, sub, sub2, sub3;
3077 UnitStatusInfo info;
3085 dbus_error_init(&error);
3087 if (!(m = dbus_message_new_method_call(
3088 "org.freedesktop.systemd1",
3090 "org.freedesktop.DBus.Properties",
3092 log_error("Could not allocate message.");