1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
7 Copyright 2013 Marc-Antoine Perennou
9 systemd is free software; you can redistribute it and/or modify it
10 under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 2.1 of the License, or
12 (at your option) any later version.
14 systemd is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
19 You should have received a copy of the GNU Lesser General Public License
20 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 #include <sys/reboot.h>
24 #include <linux/reboot.h>
25 #include <sys/syscall.h>
32 #include <sys/ioctl.h>
36 #include <sys/socket.h>
39 #include <sys/prctl.h>
42 #include "sd-daemon.h"
43 #include "sd-shutdown.h"
50 #include "utmp-wtmp.h"
53 #include "path-util.h"
55 #include "cgroup-show.h"
56 #include "cgroup-util.h"
58 #include "path-lookup.h"
59 #include "conf-parser.h"
60 #include "exit-status.h"
62 #include "unit-name.h"
64 #include "spawn-ask-password-agent.h"
65 #include "spawn-polkit-agent.h"
67 #include "logs-show.h"
68 #include "socket-util.h"
72 #include "bus-message.h"
73 #include "bus-error.h"
74 #include "bus-errors.h"
76 static char **arg_types = NULL;
77 static char **arg_states = NULL;
78 static char **arg_properties = NULL;
79 static bool arg_all = false;
80 static enum dependency {
86 } arg_dependency = DEPENDENCY_FORWARD;
87 static const char *arg_job_mode = "replace";
88 static UnitFileScope arg_scope = UNIT_FILE_SYSTEM;
89 static bool arg_no_block = false;
90 static bool arg_no_legend = false;
91 static bool arg_no_pager = false;
92 static bool arg_no_wtmp = false;
93 static bool arg_no_wall = false;
94 static bool arg_no_reload = false;
95 static bool arg_show_types = false;
96 static bool arg_ignore_inhibitors = false;
97 static bool arg_dry = false;
98 static bool arg_quiet = false;
99 static bool arg_full = false;
100 static bool arg_recursive = false;
101 static int arg_force = 0;
102 static bool arg_ask_password = true;
103 static bool arg_runtime = false;
104 static UnitFilePresetMode arg_preset_mode = UNIT_FILE_PRESET_FULL;
105 static char **arg_wall = NULL;
106 static const char *arg_kill_who = NULL;
107 static int arg_signal = SIGTERM;
108 static const char *arg_root = NULL;
109 static usec_t arg_when = 0;
131 ACTION_CANCEL_SHUTDOWN,
133 } arg_action = ACTION_SYSTEMCTL;
134 static BusTransport arg_transport = BUS_TRANSPORT_LOCAL;
135 static char *arg_host = NULL;
136 static unsigned arg_lines = 10;
137 static OutputMode arg_output = OUTPUT_SHORT;
138 static bool arg_plain = false;
140 static const struct {
144 { "start", "StartUnit" },
145 { "stop", "StopUnit" },
146 { "condstop", "StopUnit" },
147 { "reload", "ReloadUnit" },
148 { "restart", "RestartUnit" },
149 { "try-restart", "TryRestartUnit" },
150 { "condrestart", "TryRestartUnit" },
151 { "reload-or-restart", "ReloadOrRestartUnit" },
152 { "reload-or-try-restart", "ReloadOrTryRestartUnit" },
153 { "condreload", "ReloadOrTryRestartUnit" },
154 { "force-reload", "ReloadOrTryRestartUnit" }
157 static bool original_stdout_is_tty;
159 static int daemon_reload(sd_bus *bus, char **args);
160 static int halt_now(enum action a);
161 static int check_one_unit(sd_bus *bus, const char *name, const char *good_states, bool quiet);
163 static char** strv_skip_first(char **strv) {
164 if (strv_length(strv) > 0)
169 static void pager_open_if_enabled(void) {
177 static void ask_password_agent_open_if_enabled(void) {
179 /* Open the password agent as a child process if necessary */
181 if (!arg_ask_password)
184 if (arg_scope != UNIT_FILE_SYSTEM)
187 if (arg_transport != BUS_TRANSPORT_LOCAL)
190 ask_password_agent_open();
194 static void polkit_agent_open_if_enabled(void) {
196 /* Open the polkit agent as a child process if necessary */
198 if (!arg_ask_password)
201 if (arg_scope != UNIT_FILE_SYSTEM)
204 if (arg_transport != BUS_TRANSPORT_LOCAL)
211 static int translate_bus_error_to_exit_status(int r, const sd_bus_error *error) {
214 if (!sd_bus_error_is_set(error))
217 if (sd_bus_error_has_name(error, SD_BUS_ERROR_ACCESS_DENIED) ||
218 sd_bus_error_has_name(error, BUS_ERROR_ONLY_BY_DEPENDENCY) ||
219 sd_bus_error_has_name(error, BUS_ERROR_NO_ISOLATION) ||
220 sd_bus_error_has_name(error, BUS_ERROR_TRANSACTION_IS_DESTRUCTIVE))
221 return EXIT_NOPERMISSION;
223 if (sd_bus_error_has_name(error, BUS_ERROR_NO_SUCH_UNIT))
224 return EXIT_NOTINSTALLED;
226 if (sd_bus_error_has_name(error, BUS_ERROR_JOB_TYPE_NOT_APPLICABLE) ||
227 sd_bus_error_has_name(error, SD_BUS_ERROR_NOT_SUPPORTED))
228 return EXIT_NOTIMPLEMENTED;
230 if (sd_bus_error_has_name(error, BUS_ERROR_LOAD_FAILED))
231 return EXIT_NOTCONFIGURED;
239 static void warn_wall(enum action a) {
240 static const char *table[_ACTION_MAX] = {
241 [ACTION_HALT] = "The system is going down for system halt NOW!",
242 [ACTION_REBOOT] = "The system is going down for reboot NOW!",
243 [ACTION_POWEROFF] = "The system is going down for power-off NOW!",
244 [ACTION_KEXEC] = "The system is going down for kexec reboot NOW!",
245 [ACTION_RESCUE] = "The system is going down to rescue mode NOW!",
246 [ACTION_EMERGENCY] = "The system is going down to emergency mode NOW!",
247 [ACTION_CANCEL_SHUTDOWN] = "The system shutdown has been cancelled NOW!"
254 _cleanup_free_ char *p;
256 p = strv_join(arg_wall, " ");
263 utmp_wall(p, NULL, NULL);
271 utmp_wall(table[a], NULL, NULL);
274 static bool avoid_bus(void) {
276 if (running_in_chroot() > 0)
279 if (sd_booted() <= 0)
282 if (!isempty(arg_root))
285 if (arg_scope == UNIT_FILE_GLOBAL)
291 static int compare_unit_info(const void *a, const void *b) {
292 const UnitInfo *u = a, *v = b;
296 /* First, order by machine */
297 if (!u->machine && v->machine)
299 if (u->machine && !v->machine)
301 if (u->machine && v->machine) {
302 r = strcasecmp(u->machine, v->machine);
307 /* Second, order by unit type */
308 d1 = strrchr(u->id, '.');
309 d2 = strrchr(v->id, '.');
311 r = strcasecmp(d1, d2);
316 /* Third, order by name */
317 return strcasecmp(u->id, v->id);
320 static bool output_show_unit(const UnitInfo *u, char **patterns) {
323 if (!strv_isempty(patterns)) {
326 STRV_FOREACH(pattern, patterns)
327 if (fnmatch(*pattern, u->id, FNM_NOESCAPE) == 0)
332 return (!arg_types || ((dot = strrchr(u->id, '.')) &&
333 strv_find(arg_types, dot+1))) &&
334 (arg_all || !(streq(u->active_state, "inactive")
335 || u->following[0]) || u->job_id > 0);
338 static int output_units_list(const UnitInfo *unit_infos, unsigned c) {
339 unsigned circle_len = 0, id_len, max_id_len, load_len, active_len, sub_len, job_len, desc_len;
341 unsigned n_shown = 0;
344 max_id_len = strlen("UNIT");
345 load_len = strlen("LOAD");
346 active_len = strlen("ACTIVE");
347 sub_len = strlen("SUB");
348 job_len = strlen("JOB");
351 for (u = unit_infos; u < unit_infos + c; u++) {
352 max_id_len = MAX(max_id_len, strlen(u->id) + (u->machine ? strlen(u->machine)+1 : 0));
353 load_len = MAX(load_len, strlen(u->load_state));
354 active_len = MAX(active_len, strlen(u->active_state));
355 sub_len = MAX(sub_len, strlen(u->sub_state));
357 if (u->job_id != 0) {
358 job_len = MAX(job_len, strlen(u->job_type));
362 if (!arg_no_legend &&
363 (streq(u->active_state, "failed") ||
364 STR_IN_SET(u->load_state, "error", "not-found", "masked")))
368 if (!arg_full && original_stdout_is_tty) {
371 id_len = MIN(max_id_len, 25u);
372 basic_len = circle_len + 5 + id_len + 5 + active_len + sub_len;
375 basic_len += job_len + 1;
377 if (basic_len < (unsigned) columns()) {
378 unsigned extra_len, incr;
379 extra_len = columns() - basic_len;
381 /* Either UNIT already got 25, or is fully satisfied.
382 * Grant up to 25 to DESC now. */
383 incr = MIN(extra_len, 25u);
387 /* split the remaining space between UNIT and DESC,
388 * but do not give UNIT more than it needs. */
390 incr = MIN(extra_len / 2, max_id_len - id_len);
392 desc_len += extra_len - incr;
398 for (u = unit_infos; u < unit_infos + c; u++) {
399 _cleanup_free_ char *e = NULL, *j = NULL;
400 const char *on_loaded = "", *off_loaded = "";
401 const char *on_active = "", *off_active = "";
402 const char *on_circle = "", *off_circle = "";
406 if (!n_shown && !arg_no_legend) {
411 printf("%-*s %-*s %-*s %-*s ",
414 active_len, "ACTIVE",
418 printf("%-*s ", job_len, "JOB");
420 if (!arg_full && arg_no_pager)
421 printf("%.*s\n", desc_len, "DESCRIPTION");
423 printf("%s\n", "DESCRIPTION");
428 if (STR_IN_SET(u->load_state, "error", "not-found", "masked")) {
429 on_loaded = ansi_highlight_red();
430 on_circle = ansi_highlight_yellow();
431 off_loaded = off_circle = ansi_highlight_off();
435 if (streq(u->active_state, "failed")) {
436 on_circle = on_active = ansi_highlight_red();
437 off_circle = off_active = ansi_highlight_off();
442 j = strjoin(u->machine, ":", u->id, NULL);
451 e = ellipsize(id, id_len, 33);
459 printf("%s%s%s ", on_circle, circle ? draw_special_char(DRAW_BLACK_CIRCLE) : " ", off_circle);
461 printf("%s%-*s%s %s%-*s%s %s%-*s %-*s%s %-*s",
462 on_active, id_len, id, off_active,
463 on_loaded, load_len, u->load_state, off_loaded,
464 on_active, active_len, u->active_state,
465 sub_len, u->sub_state, off_active,
466 job_count ? job_len + 1 : 0, u->job_id ? u->job_type : "");
469 printf("%.*s\n", desc_len, u->description);
471 printf("%s\n", u->description);
474 if (!arg_no_legend) {
475 const char *on, *off;
479 "LOAD = Reflects whether the unit definition was properly loaded.\n"
480 "ACTIVE = The high-level unit activation state, i.e. generalization of SUB.\n"
481 "SUB = The low-level unit activation state, values depend on unit type.");
482 puts(job_count ? "JOB = Pending job for the unit.\n" : "");
483 on = ansi_highlight();
484 off = ansi_highlight_off();
486 on = ansi_highlight_red();
487 off = ansi_highlight_off();
491 printf("%s%u loaded units listed.%s\n"
492 "To show all installed unit files use 'systemctl list-unit-files'.\n",
495 printf("%s%u loaded units listed.%s Pass --all to see loaded but inactive units, too.\n"
496 "To show all installed unit files use 'systemctl list-unit-files'.\n",
503 static int get_unit_list(
507 UnitInfo **unit_infos,
509 sd_bus_message **_reply) {
511 _cleanup_bus_message_unref_ sd_bus_message *m = NULL;
512 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
513 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
522 r = sd_bus_message_new_method_call(
525 "org.freedesktop.systemd1",
526 "/org/freedesktop/systemd1",
527 "org.freedesktop.systemd1.Manager",
528 "ListUnitsFiltered");
531 return bus_log_create_error(r);
533 r = sd_bus_message_append_strv(m, arg_states);
535 return bus_log_create_error(r);
537 r = sd_bus_call(bus, m, 0, &error, &reply);
539 log_error("Failed to list units: %s", bus_error_message(&error, r));
543 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssssssouso)");
545 return bus_log_parse_error(r);
547 while ((r = bus_parse_unit_info(reply, &u)) > 0) {
550 if (!output_show_unit(&u, patterns))
553 if (!GREEDY_REALLOC(*unit_infos, size, c+1))
556 (*unit_infos)[c++] = u;
559 return bus_log_parse_error(r);
561 r = sd_bus_message_exit_container(reply);
563 return bus_log_parse_error(r);
571 static void message_set_freep(Set **set) {
574 while ((m = set_steal_first(*set)))
575 sd_bus_message_unref(m);
580 static int get_unit_list_recursive(
583 UnitInfo **_unit_infos,
587 _cleanup_free_ UnitInfo *unit_infos = NULL;
588 _cleanup_(message_set_freep) Set *replies;
589 sd_bus_message *reply;
597 replies = set_new(NULL, NULL);
601 c = get_unit_list(bus, NULL, patterns, &unit_infos, 0, &reply);
605 r = set_put(replies, reply);
607 sd_bus_message_unref(reply);
612 _cleanup_strv_free_ char **machines = NULL;
615 r = sd_get_machine_names(&machines);
619 STRV_FOREACH(i, machines) {
620 _cleanup_bus_close_unref_ sd_bus *container = NULL;
623 r = sd_bus_open_system_container(&container, *i);
625 log_error("Failed to connect to container %s: %s", *i, strerror(-r));
629 k = get_unit_list(container, *i, patterns, &unit_infos, c, &reply);
635 r = set_put(replies, reply);
637 sd_bus_message_unref(reply);
642 *_machines = machines;
647 *_unit_infos = unit_infos;
656 static int list_units(sd_bus *bus, char **args) {
657 _cleanup_free_ UnitInfo *unit_infos = NULL;
658 _cleanup_(message_set_freep) Set *replies = NULL;
659 _cleanup_strv_free_ char **machines = NULL;
662 pager_open_if_enabled();
664 r = get_unit_list_recursive(bus, strv_skip_first(args), &unit_infos, &replies, &machines);
668 qsort_safe(unit_infos, r, sizeof(UnitInfo), compare_unit_info);
669 return output_units_list(unit_infos, r);
672 static int get_triggered_units(
677 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
680 r = sd_bus_get_property_strv(
682 "org.freedesktop.systemd1",
684 "org.freedesktop.systemd1.Unit",
690 log_error("Failed to determine triggers: %s", bus_error_message(&error, r));
695 static int get_listening(
697 const char* unit_path,
700 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
701 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
702 const char *type, *path;
705 r = sd_bus_get_property(
707 "org.freedesktop.systemd1",
709 "org.freedesktop.systemd1.Socket",
715 log_error("Failed to get list of listening sockets: %s", bus_error_message(&error, r));
719 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ss)");
721 return bus_log_parse_error(r);
723 while ((r = sd_bus_message_read(reply, "(ss)", &type, &path)) > 0) {
725 r = strv_extend(listening, type);
729 r = strv_extend(listening, path);
736 return bus_log_parse_error(r);
738 r = sd_bus_message_exit_container(reply);
740 return bus_log_parse_error(r);
752 /* Note: triggered is a list here, although it almost certainly
753 * will always be one unit. Nevertheless, dbus API allows for multiple
754 * values, so let's follow that.*/
757 /* The strv above is shared. free is set only in the first one. */
761 static int socket_info_compare(const struct socket_info *a, const struct socket_info *b) {
767 if (!a->machine && b->machine)
769 if (a->machine && !b->machine)
771 if (a->machine && b->machine) {
772 o = strcasecmp(a->machine, b->machine);
777 o = strcmp(a->path, b->path);
779 o = strcmp(a->type, b->type);
784 static int output_sockets_list(struct socket_info *socket_infos, unsigned cs) {
785 struct socket_info *s;
786 unsigned pathlen = strlen("LISTEN"),
787 typelen = strlen("TYPE") * arg_show_types,
788 socklen = strlen("UNIT"),
789 servlen = strlen("ACTIVATES");
790 const char *on, *off;
792 for (s = socket_infos; s < socket_infos + cs; s++) {
796 socklen = MAX(socklen, strlen(s->id));
798 typelen = MAX(typelen, strlen(s->type));
799 pathlen = MAX(pathlen, strlen(s->path) + (s->machine ? strlen(s->machine)+1 : 0));
801 STRV_FOREACH(a, s->triggered)
802 tmp += strlen(*a) + 2*(a != s->triggered);
803 servlen = MAX(servlen, tmp);
808 printf("%-*s %-*.*s%-*s %s\n",
810 typelen + arg_show_types, typelen + arg_show_types, "TYPE ",
814 for (s = socket_infos; s < socket_infos + cs; s++) {
815 _cleanup_free_ char *j = NULL;
820 j = strjoin(s->machine, ":", s->path, NULL);
828 printf("%-*s %-*s %-*s",
829 pathlen, path, typelen, s->type, socklen, s->id);
832 pathlen, path, socklen, s->id);
833 STRV_FOREACH(a, s->triggered)
835 a == s->triggered ? "" : ",", *a);
839 on = ansi_highlight();
840 off = ansi_highlight_off();
844 on = ansi_highlight_red();
845 off = ansi_highlight_off();
848 if (!arg_no_legend) {
849 printf("%s%u sockets listed.%s\n", on, cs, off);
851 printf("Pass --all to see loaded but inactive sockets, too.\n");
857 static int list_sockets(sd_bus *bus, char **args) {
858 _cleanup_(message_set_freep) Set *replies = NULL;
859 _cleanup_strv_free_ char **machines = NULL;
860 _cleanup_free_ UnitInfo *unit_infos = NULL;
861 _cleanup_free_ struct socket_info *socket_infos = NULL;
863 struct socket_info *s;
868 pager_open_if_enabled();
870 n = get_unit_list_recursive(bus, strv_skip_first(args), &unit_infos, &replies, &machines);
874 for (u = unit_infos; u < unit_infos + n; u++) {
875 _cleanup_strv_free_ char **listening = NULL, **triggered = NULL;
878 if (!endswith(u->id, ".socket"))
881 r = get_triggered_units(bus, u->unit_path, &triggered);
885 c = get_listening(bus, u->unit_path, &listening);
891 if (!GREEDY_REALLOC(socket_infos, size, cs + c)) {
896 for (i = 0; i < c; i++)
897 socket_infos[cs + i] = (struct socket_info) {
898 .machine = u->machine,
900 .type = listening[i*2],
901 .path = listening[i*2 + 1],
902 .triggered = triggered,
903 .own_triggered = i==0,
906 /* from this point on we will cleanup those socket_infos */
909 listening = triggered = NULL; /* avoid cleanup */
912 qsort_safe(socket_infos, cs, sizeof(struct socket_info),
913 (__compar_fn_t) socket_info_compare);
915 output_sockets_list(socket_infos, cs);
918 assert(cs == 0 || socket_infos);
919 for (s = socket_infos; s < socket_infos + cs; s++) {
922 if (s->own_triggered)
923 strv_free(s->triggered);
929 static int get_next_elapse(
932 dual_timestamp *next) {
934 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
942 r = sd_bus_get_property_trivial(
944 "org.freedesktop.systemd1",
946 "org.freedesktop.systemd1.Timer",
947 "NextElapseUSecMonotonic",
952 log_error("Failed to get next elapsation time: %s", bus_error_message(&error, r));
956 r = sd_bus_get_property_trivial(
958 "org.freedesktop.systemd1",
960 "org.freedesktop.systemd1.Timer",
961 "NextElapseUSecRealtime",
966 log_error("Failed to get next elapsation time: %s", bus_error_message(&error, r));
974 static int get_last_trigger(
979 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
986 r = sd_bus_get_property_trivial(
988 "org.freedesktop.systemd1",
990 "org.freedesktop.systemd1.Timer",
996 log_error("Failed to get last trigger time: %s", bus_error_message(&error, r));
1004 const char* machine;
1007 usec_t last_trigger;
1011 static int timer_info_compare(const struct timer_info *a, const struct timer_info *b) {
1017 if (!a->machine && b->machine)
1019 if (a->machine && !b->machine)
1021 if (a->machine && b->machine) {
1022 o = strcasecmp(a->machine, b->machine);
1027 if (a->next_elapse < b->next_elapse)
1029 if (a->next_elapse > b->next_elapse)
1032 return strcmp(a->id, b->id);
1035 static int output_timers_list(struct timer_info *timer_infos, unsigned n) {
1036 struct timer_info *t;
1038 nextlen = strlen("NEXT"),
1039 leftlen = strlen("LEFT"),
1040 lastlen = strlen("LAST"),
1041 passedlen = strlen("PASSED"),
1042 unitlen = strlen("UNIT"),
1043 activatelen = strlen("ACTIVATES");
1045 const char *on, *off;
1047 assert(timer_infos || n == 0);
1049 for (t = timer_infos; t < timer_infos + n; t++) {
1053 if (t->next_elapse > 0) {
1054 char tstamp[FORMAT_TIMESTAMP_MAX] = "", trel[FORMAT_TIMESTAMP_RELATIVE_MAX] = "";
1056 format_timestamp(tstamp, sizeof(tstamp), t->next_elapse);
1057 nextlen = MAX(nextlen, strlen(tstamp) + 1);
1059 format_timestamp_relative(trel, sizeof(trel), t->next_elapse);
1060 leftlen = MAX(leftlen, strlen(trel));
1063 if (t->last_trigger > 0) {
1064 char tstamp[FORMAT_TIMESTAMP_MAX] = "", trel[FORMAT_TIMESTAMP_RELATIVE_MAX] = "";
1066 format_timestamp(tstamp, sizeof(tstamp), t->last_trigger);
1067 lastlen = MAX(lastlen, strlen(tstamp) + 1);
1069 format_timestamp_relative(trel, sizeof(trel), t->last_trigger);
1070 passedlen = MAX(passedlen, strlen(trel));
1073 unitlen = MAX(unitlen, strlen(t->id) + (t->machine ? strlen(t->machine)+1 : 0));
1075 STRV_FOREACH(a, t->triggered)
1076 ul += strlen(*a) + 2*(a != t->triggered);
1078 activatelen = MAX(activatelen, ul);
1083 printf("%-*s %-*s %-*s %-*s %-*s %s\n",
1087 passedlen, "PASSED",
1091 for (t = timer_infos; t < timer_infos + n; t++) {
1092 _cleanup_free_ char *j = NULL;
1094 char tstamp1[FORMAT_TIMESTAMP_MAX] = "n/a", trel1[FORMAT_TIMESTAMP_RELATIVE_MAX] = "n/a";
1095 char tstamp2[FORMAT_TIMESTAMP_MAX] = "n/a", trel2[FORMAT_TIMESTAMP_RELATIVE_MAX] = "n/a";
1098 format_timestamp(tstamp1, sizeof(tstamp1), t->next_elapse);
1099 format_timestamp_relative(trel1, sizeof(trel1), t->next_elapse);
1101 format_timestamp(tstamp2, sizeof(tstamp2), t->last_trigger);
1102 format_timestamp_relative(trel2, sizeof(trel2), t->last_trigger);
1105 j = strjoin(t->machine, ":", t->id, NULL);
1112 printf("%-*s %-*s %-*s %-*s %-*s",
1113 nextlen, tstamp1, leftlen, trel1, lastlen, tstamp2, passedlen, trel2, unitlen, unit);
1115 STRV_FOREACH(a, t->triggered)
1117 a == t->triggered ? "" : ",", *a);
1121 on = ansi_highlight();
1122 off = ansi_highlight_off();
1126 on = ansi_highlight_red();
1127 off = ansi_highlight_off();
1130 if (!arg_no_legend) {
1131 printf("%s%u timers listed.%s\n", on, n, off);
1133 printf("Pass --all to see loaded but inactive timers, too.\n");
1139 static usec_t calc_next_elapse(dual_timestamp *nw, dual_timestamp *next) {
1145 if (next->monotonic != USEC_INFINITY && next->monotonic > 0) {
1148 if (next->monotonic > nw->monotonic)
1149 converted = nw->realtime + (next->monotonic - nw->monotonic);
1151 converted = nw->realtime - (nw->monotonic - next->monotonic);
1153 if (next->realtime != USEC_INFINITY && next->realtime > 0)
1154 next_elapse = MIN(converted, next->realtime);
1156 next_elapse = converted;
1159 next_elapse = next->realtime;
1164 static int list_timers(sd_bus *bus, char **args) {
1165 _cleanup_(message_set_freep) Set *replies = NULL;
1166 _cleanup_strv_free_ char **machines = NULL;
1167 _cleanup_free_ struct timer_info *timer_infos = NULL;
1168 _cleanup_free_ UnitInfo *unit_infos = NULL;
1169 struct timer_info *t;
1176 pager_open_if_enabled();
1178 n = get_unit_list_recursive(bus, strv_skip_first(args), &unit_infos, &replies, &machines);
1182 dual_timestamp_get(&nw);
1184 for (u = unit_infos; u < unit_infos + n; u++) {
1185 _cleanup_strv_free_ char **triggered = NULL;
1186 dual_timestamp next = {};
1189 if (!endswith(u->id, ".timer"))
1192 r = get_triggered_units(bus, u->unit_path, &triggered);
1196 r = get_next_elapse(bus, u->unit_path, &next);
1200 get_last_trigger(bus, u->unit_path, &last);
1202 if (!GREEDY_REALLOC(timer_infos, size, c+1)) {
1207 m = calc_next_elapse(&nw, &next);
1209 timer_infos[c++] = (struct timer_info) {
1210 .machine = u->machine,
1213 .last_trigger = last,
1214 .triggered = triggered,
1217 triggered = NULL; /* avoid cleanup */
1220 qsort_safe(timer_infos, c, sizeof(struct timer_info),
1221 (__compar_fn_t) timer_info_compare);
1223 output_timers_list(timer_infos, c);
1226 for (t = timer_infos; t < timer_infos + c; t++)
1227 strv_free(t->triggered);
1232 static int compare_unit_file_list(const void *a, const void *b) {
1233 const char *d1, *d2;
1234 const UnitFileList *u = a, *v = b;
1236 d1 = strrchr(u->path, '.');
1237 d2 = strrchr(v->path, '.');
1242 r = strcasecmp(d1, d2);
1247 return strcasecmp(basename(u->path), basename(v->path));
1250 static bool output_show_unit_file(const UnitFileList *u, char **patterns) {
1253 if (!strv_isempty(patterns)) {
1256 STRV_FOREACH(pattern, patterns)
1257 if (fnmatch(*pattern, basename(u->path), FNM_NOESCAPE) == 0)
1262 return !arg_types || ((dot = strrchr(u->path, '.')) && strv_find(arg_types, dot+1));
1265 static void output_unit_file_list(const UnitFileList *units, unsigned c) {
1266 unsigned max_id_len, id_cols, state_cols;
1267 const UnitFileList *u;
1269 max_id_len = strlen("UNIT FILE");
1270 state_cols = strlen("STATE");
1272 for (u = units; u < units + c; u++) {
1273 max_id_len = MAX(max_id_len, strlen(basename(u->path)));
1274 state_cols = MAX(state_cols, strlen(unit_file_state_to_string(u->state)));
1278 unsigned basic_cols;
1280 id_cols = MIN(max_id_len, 25u);
1281 basic_cols = 1 + id_cols + state_cols;
1282 if (basic_cols < (unsigned) columns())
1283 id_cols += MIN(columns() - basic_cols, max_id_len - id_cols);
1285 id_cols = max_id_len;
1288 printf("%-*s %-*s\n",
1289 id_cols, "UNIT FILE",
1290 state_cols, "STATE");
1292 for (u = units; u < units + c; u++) {
1293 _cleanup_free_ char *e = NULL;
1294 const char *on, *off;
1297 if (u->state == UNIT_FILE_MASKED ||
1298 u->state == UNIT_FILE_MASKED_RUNTIME ||
1299 u->state == UNIT_FILE_DISABLED ||
1300 u->state == UNIT_FILE_INVALID) {
1301 on = ansi_highlight_red();
1302 off = ansi_highlight_off();
1303 } else if (u->state == UNIT_FILE_ENABLED) {
1304 on = ansi_highlight_green();
1305 off = ansi_highlight_off();
1309 id = basename(u->path);
1311 e = arg_full ? NULL : ellipsize(id, id_cols, 33);
1313 printf("%-*s %s%-*s%s\n",
1314 id_cols, e ? e : id,
1315 on, state_cols, unit_file_state_to_string(u->state), off);
1319 printf("\n%u unit files listed.\n", c);
1322 static int list_unit_files(sd_bus *bus, char **args) {
1323 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
1324 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
1325 _cleanup_free_ UnitFileList *units = NULL;
1333 pager_open_if_enabled();
1341 h = hashmap_new(string_hash_func, string_compare_func);
1345 r = unit_file_get_list(arg_scope, arg_root, h);
1347 unit_file_list_free(h);
1348 log_error("Failed to get unit file list: %s", strerror(-r));
1352 n_units = hashmap_size(h);
1354 units = new(UnitFileList, n_units);
1355 if (!units && n_units > 0) {
1356 unit_file_list_free(h);
1360 HASHMAP_FOREACH(u, h, i) {
1361 if (!output_show_unit_file(u, strv_skip_first(args)))
1368 assert(c <= n_units);
1371 r = sd_bus_call_method(
1373 "org.freedesktop.systemd1",
1374 "/org/freedesktop/systemd1",
1375 "org.freedesktop.systemd1.Manager",
1381 log_error("Failed to list unit files: %s", bus_error_message(&error, r));
1385 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ss)");
1387 return bus_log_parse_error(r);
1389 while ((r = sd_bus_message_read(reply, "(ss)", &path, &state)) > 0) {
1391 if (!GREEDY_REALLOC(units, size, c + 1))
1394 units[c] = (struct UnitFileList) {
1396 unit_file_state_from_string(state)
1399 if (output_show_unit_file(&units[c], strv_skip_first(args)))
1404 return bus_log_parse_error(r);
1406 r = sd_bus_message_exit_container(reply);
1408 return bus_log_parse_error(r);
1411 qsort_safe(units, c, sizeof(UnitFileList), compare_unit_file_list);
1412 output_unit_file_list(units, c);
1415 for (unit = units; unit < units + c; unit++)
1422 static int list_dependencies_print(const char *name, int level, unsigned int branches, bool last) {
1423 _cleanup_free_ char *n = NULL;
1424 size_t max_len = MAX(columns(),20u);
1430 for (i = level - 1; i >= 0; i--) {
1432 if (len > max_len - 3 && !arg_full) {
1433 printf("%s...\n",max_len % 2 ? "" : " ");
1436 printf("%s", draw_special_char(branches & (1 << i) ? DRAW_TREE_VERTICAL : DRAW_TREE_SPACE));
1440 if (len > max_len - 3 && !arg_full) {
1441 printf("%s...\n",max_len % 2 ? "" : " ");
1445 printf("%s", draw_special_char(last ? DRAW_TREE_RIGHT : DRAW_TREE_BRANCH));
1449 printf("%s\n", name);
1453 n = ellipsize(name, max_len-len, 100);
1461 static int list_dependencies_get_dependencies(sd_bus *bus, const char *name, char ***deps) {
1463 static const char *dependencies[_DEPENDENCY_MAX] = {
1464 [DEPENDENCY_FORWARD] = "Requires\0"
1465 "RequiresOverridable\0"
1467 "RequisiteOverridable\0"
1469 [DEPENDENCY_REVERSE] = "RequiredBy\0"
1470 "RequiredByOverridable\0"
1473 [DEPENDENCY_AFTER] = "After\0",
1474 [DEPENDENCY_BEFORE] = "Before\0",
1477 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
1478 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
1479 _cleanup_strv_free_ char **ret = NULL;
1480 _cleanup_free_ char *path = NULL;
1486 assert_cc(ELEMENTSOF(dependencies) == _DEPENDENCY_MAX);
1488 path = unit_dbus_path_from_name(name);
1492 r = sd_bus_call_method(
1494 "org.freedesktop.systemd1",
1496 "org.freedesktop.DBus.Properties",
1500 "s", "org.freedesktop.systemd1.Unit");
1502 log_error("Failed to get properties of %s: %s", name, bus_error_message(&error, r));
1506 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "{sv}");
1508 return bus_log_parse_error(r);
1510 while ((r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_DICT_ENTRY, "sv")) > 0) {
1513 r = sd_bus_message_read(reply, "s", &prop);
1515 return bus_log_parse_error(r);
1517 if (!nulstr_contains(dependencies[arg_dependency], prop)) {
1518 r = sd_bus_message_skip(reply, "v");
1520 return bus_log_parse_error(r);
1523 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_VARIANT, "as");
1525 return bus_log_parse_error(r);
1527 r = bus_message_read_strv_extend(reply, &ret);
1529 return bus_log_parse_error(r);
1531 r = sd_bus_message_exit_container(reply);
1533 return bus_log_parse_error(r);
1536 r = sd_bus_message_exit_container(reply);
1538 return bus_log_parse_error(r);
1542 return bus_log_parse_error(r);
1544 r = sd_bus_message_exit_container(reply);
1546 return bus_log_parse_error(r);
1554 static int list_dependencies_compare(const void *_a, const void *_b) {
1555 const char **a = (const char**) _a, **b = (const char**) _b;
1557 if (unit_name_to_type(*a) == UNIT_TARGET && unit_name_to_type(*b) != UNIT_TARGET)
1559 if (unit_name_to_type(*a) != UNIT_TARGET && unit_name_to_type(*b) == UNIT_TARGET)
1562 return strcasecmp(*a, *b);
1565 static int list_dependencies_one(
1570 unsigned int branches) {
1572 _cleanup_strv_free_ char **deps = NULL;
1580 r = strv_extend(units, name);
1584 r = list_dependencies_get_dependencies(bus, name, &deps);
1588 qsort_safe(deps, strv_length(deps), sizeof (char*), list_dependencies_compare);
1590 STRV_FOREACH(c, deps) {
1593 if (strv_contains(*units, *c)) {
1595 r = list_dependencies_print("...", level + 1, (branches << 1) | (c[1] == NULL ? 0 : 1), 1);
1602 state = check_one_unit(bus, *c, "activating\0active\0reloading\0", true);
1604 printf("%s%s%s ", ansi_highlight_green(), draw_special_char(DRAW_BLACK_CIRCLE), ansi_highlight_off());
1606 printf("%s%s%s ", ansi_highlight_red(), draw_special_char(DRAW_BLACK_CIRCLE), ansi_highlight_off());
1608 r = list_dependencies_print(*c, level, branches, c[1] == NULL);
1612 if (arg_all || unit_name_to_type(*c) == UNIT_TARGET) {
1613 r = list_dependencies_one(bus, *c, level + 1, units, (branches << 1) | (c[1] == NULL ? 0 : 1));
1620 strv_remove(*units, name);
1625 static int list_dependencies(sd_bus *bus, char **args) {
1626 _cleanup_strv_free_ char **units = NULL;
1627 _cleanup_free_ char *unit = NULL;
1633 unit = unit_name_mangle(args[1], MANGLE_NOGLOB);
1638 u = SPECIAL_DEFAULT_TARGET;
1640 pager_open_if_enabled();
1644 return list_dependencies_one(bus, u, 0, &units, 0);
1647 struct machine_info {
1651 char *control_group;
1652 uint32_t n_failed_units;
1657 static const struct bus_properties_map machine_info_property_map[] = {
1658 { "SystemState", "s", NULL, offsetof(struct machine_info, state) },
1659 { "NJobs", "u", NULL, offsetof(struct machine_info, n_jobs) },
1660 { "NFailedUnits", "u", NULL, offsetof(struct machine_info, n_failed_units) },
1661 { "ControlGroup", "s", NULL, offsetof(struct machine_info, control_group) },
1662 { "UserspaceTimestamp", "t", NULL, offsetof(struct machine_info, timestamp) },
1666 static void free_machines_list(struct machine_info *machine_infos, int n) {
1672 for (i = 0; i < n; i++) {
1673 free(machine_infos[i].name);
1674 free(machine_infos[i].state);
1675 free(machine_infos[i].control_group);
1678 free(machine_infos);
1681 static int compare_machine_info(const void *a, const void *b) {
1682 const struct machine_info *u = a, *v = b;
1684 if (u->is_host != v->is_host)
1685 return u->is_host > v->is_host ? -1 : 1;
1687 return strcasecmp(u->name, v->name);
1690 static int get_machine_properties(sd_bus *bus, struct machine_info *mi) {
1691 _cleanup_bus_close_unref_ sd_bus *container = NULL;
1697 r = sd_bus_open_system_container(&container, mi->name);
1704 r = bus_map_all_properties(bus, "org.freedesktop.systemd1", "/org/freedesktop/systemd1", machine_info_property_map, mi);
1711 static bool output_show_machine(const char *name, char **patterns) {
1716 if (strv_isempty(patterns))
1719 STRV_FOREACH(i, patterns)
1720 if (fnmatch(*i, name, FNM_NOESCAPE) == 0)
1726 static int get_machine_list(
1728 struct machine_info **_machine_infos,
1731 struct machine_info *machine_infos = NULL;
1732 _cleanup_strv_free_ char **m = NULL;
1733 _cleanup_free_ char *hn = NULL;
1738 hn = gethostname_malloc();
1742 if (output_show_machine(hn, patterns)) {
1743 if (!GREEDY_REALLOC0(machine_infos, sz, c+1))
1746 machine_infos[c].is_host = true;
1747 machine_infos[c].name = hn;
1750 get_machine_properties(bus, &machine_infos[c]);
1754 sd_get_machine_names(&m);
1755 STRV_FOREACH(i, m) {
1756 _cleanup_free_ char *class = NULL;
1758 if (!output_show_machine(*i, patterns))
1761 sd_machine_get_class(*i, &class);
1762 if (!streq_ptr(class, "container"))
1765 if (!GREEDY_REALLOC0(machine_infos, sz, c+1)) {
1766 free_machines_list(machine_infos, c);
1770 machine_infos[c].is_host = false;
1771 machine_infos[c].name = strdup(*i);
1772 if (!machine_infos[c].name) {
1773 free_machines_list(machine_infos, c);
1777 get_machine_properties(NULL, &machine_infos[c]);
1781 *_machine_infos = machine_infos;
1785 static void output_machines_list(struct machine_info *machine_infos, unsigned n) {
1786 struct machine_info *m;
1789 namelen = sizeof("NAME") - 1,
1790 statelen = sizeof("STATE") - 1,
1791 failedlen = sizeof("FAILED") - 1,
1792 jobslen = sizeof("JOBS") - 1;
1794 assert(machine_infos || n == 0);
1796 for (m = machine_infos; m < machine_infos + n; m++) {
1797 namelen = MAX(namelen, strlen(m->name) + (m->is_host ? sizeof(" (host)") - 1 : 0));
1798 statelen = MAX(statelen, m->state ? strlen(m->state) : 0);
1799 failedlen = MAX(failedlen, DECIMAL_STR_WIDTH(m->n_failed_units));
1800 jobslen = MAX(jobslen, DECIMAL_STR_WIDTH(m->n_jobs));
1802 if (!arg_no_legend && !streq_ptr(m->state, "running"))
1806 if (!arg_no_legend) {
1810 printf("%-*s %-*s %-*s %-*s\n",
1813 failedlen, "FAILED",
1817 for (m = machine_infos; m < machine_infos + n; m++) {
1818 const char *on_state = "", *off_state = "";
1819 const char *on_failed = "", *off_failed = "";
1820 bool circle = false;
1822 if (streq_ptr(m->state, "degraded")) {
1823 on_state = ansi_highlight_red();
1824 off_state = ansi_highlight_off();
1826 } else if (!streq_ptr(m->state, "running")) {
1827 on_state = ansi_highlight_yellow();
1828 off_state = ansi_highlight_off();
1832 if (m->n_failed_units > 0) {
1833 on_failed = ansi_highlight_red();
1834 off_failed = ansi_highlight_off();
1836 on_failed = off_failed = "";
1839 printf("%s%s%s ", on_state, circle ? draw_special_char(DRAW_BLACK_CIRCLE) : " ", off_state);
1842 printf("%-*s (host) %s%-*s%s %s%*u%s %*u\n",
1843 (int) (namelen - (sizeof(" (host)")-1)), strna(m->name),
1844 on_state, statelen, strna(m->state), off_state,
1845 on_failed, failedlen, m->n_failed_units, off_failed,
1846 jobslen, m->n_jobs);
1848 printf("%-*s %s%-*s%s %s%*u%s %*u\n",
1849 namelen, strna(m->name),
1850 on_state, statelen, strna(m->state), off_state,
1851 on_failed, failedlen, m->n_failed_units, off_failed,
1852 jobslen, m->n_jobs);
1856 printf("\n%u machines listed.\n", n);
1859 static int list_machines(sd_bus *bus, char **args) {
1860 struct machine_info *machine_infos = NULL;
1865 if (geteuid() != 0) {
1866 log_error("Must be root.");
1870 pager_open_if_enabled();
1872 r = get_machine_list(bus, &machine_infos, strv_skip_first(args));
1876 qsort_safe(machine_infos, r, sizeof(struct machine_info), compare_machine_info);
1877 output_machines_list(machine_infos, r);
1878 free_machines_list(machine_infos, r);
1883 static int get_default(sd_bus *bus, char **args) {
1884 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
1885 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
1886 _cleanup_free_ char *_path = NULL;
1890 if (!bus || avoid_bus()) {
1891 r = unit_file_get_default(arg_scope, arg_root, &_path);
1893 log_error("Failed to get default target: %s", strerror(-r));
1899 r = sd_bus_call_method(
1901 "org.freedesktop.systemd1",
1902 "/org/freedesktop/systemd1",
1903 "org.freedesktop.systemd1.Manager",
1909 log_error("Failed to get default target: %s", bus_error_message(&error, -r));
1913 r = sd_bus_message_read(reply, "s", &path);
1915 return bus_log_parse_error(r);
1919 printf("%s\n", path);
1924 static void dump_unit_file_changes(const UnitFileChange *changes, unsigned n_changes) {
1927 assert(changes || n_changes == 0);
1929 for (i = 0; i < n_changes; i++) {
1930 if (changes[i].type == UNIT_FILE_SYMLINK)
1931 log_info("Created symlink from %s to %s.", changes[i].path, changes[i].source);
1933 log_info("Removed symlink %s.", changes[i].path);
1937 static int deserialize_and_dump_unit_file_changes(sd_bus_message *m) {
1938 const char *type, *path, *source;
1941 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(sss)");
1943 return bus_log_parse_error(r);
1945 while ((r = sd_bus_message_read(m, "(sss)", &type, &path, &source)) > 0) {
1947 if (streq(type, "symlink"))
1948 log_info("Created symlink from %s to %s.", path, source);
1950 log_info("Removed symlink %s.", path);
1954 return bus_log_parse_error(r);
1956 r = sd_bus_message_exit_container(m);
1958 return bus_log_parse_error(r);
1963 static int set_default(sd_bus *bus, char **args) {
1964 _cleanup_free_ char *unit = NULL;
1965 UnitFileChange *changes = NULL;
1966 unsigned n_changes = 0;
1969 unit = unit_name_mangle_with_suffix(args[1], MANGLE_NOGLOB, ".target");
1973 if (!bus || avoid_bus()) {
1974 r = unit_file_set_default(arg_scope, arg_root, unit, true, &changes, &n_changes);
1976 log_error("Failed to set default target: %s", strerror(-r));
1981 dump_unit_file_changes(changes, n_changes);
1985 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
1986 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
1988 r = sd_bus_call_method(
1990 "org.freedesktop.systemd1",
1991 "/org/freedesktop/systemd1",
1992 "org.freedesktop.systemd1.Manager",
1998 log_error("Failed to set default target: %s", bus_error_message(&error, -r));
2002 r = deserialize_and_dump_unit_file_changes(reply);
2006 /* Try to reload if enabled */
2008 r = daemon_reload(bus, args);
2013 unit_file_changes_free(changes, n_changes);
2020 const char *name, *type, *state;
2023 static void output_jobs_list(const struct job_info* jobs, unsigned n, bool skipped) {
2024 unsigned id_len, unit_len, type_len, state_len;
2025 const struct job_info *j;
2026 const char *on, *off;
2027 bool shorten = false;
2029 assert(n == 0 || jobs);
2032 on = ansi_highlight_green();
2033 off = ansi_highlight_off();
2035 printf("%sNo jobs %s.%s\n", on, skipped ? "listed" : "running", off);
2039 pager_open_if_enabled();
2041 id_len = strlen("JOB");
2042 unit_len = strlen("UNIT");
2043 type_len = strlen("TYPE");
2044 state_len = strlen("STATE");
2046 for (j = jobs; j < jobs + n; j++) {
2047 uint32_t id = j->id;
2048 assert(j->name && j->type && j->state);
2050 id_len = MAX(id_len, DECIMAL_STR_WIDTH(id));
2051 unit_len = MAX(unit_len, strlen(j->name));
2052 type_len = MAX(type_len, strlen(j->type));
2053 state_len = MAX(state_len, strlen(j->state));
2056 if (!arg_full && id_len + 1 + unit_len + type_len + 1 + state_len > columns()) {
2057 unit_len = MAX(33u, columns() - id_len - type_len - state_len - 3);
2062 printf("%*s %-*s %-*s %-*s\n",
2066 state_len, "STATE");
2068 for (j = jobs; j < jobs + n; j++) {
2069 _cleanup_free_ char *e = NULL;
2071 if (streq(j->state, "running")) {
2072 on = ansi_highlight();
2073 off = ansi_highlight_off();
2077 e = shorten ? ellipsize(j->name, unit_len, 33) : NULL;
2078 printf("%*u %s%-*s%s %-*s %s%-*s%s\n",
2080 on, unit_len, e ? e : j->name, off,
2082 on, state_len, j->state, off);
2085 if (!arg_no_legend) {
2086 on = ansi_highlight();
2087 off = ansi_highlight_off();
2089 printf("\n%s%u jobs listed%s.\n", on, n, off);
2093 static bool output_show_job(struct job_info *job, char **patterns) {
2098 if (strv_isempty(patterns))
2101 STRV_FOREACH(pattern, patterns)
2102 if (fnmatch(*pattern, job->name, FNM_NOESCAPE) == 0)
2107 static int list_jobs(sd_bus *bus, char **args) {
2108 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
2109 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
2110 const char *name, *type, *state, *job_path, *unit_path;
2111 _cleanup_free_ struct job_info *jobs = NULL;
2116 bool skipped = false;
2118 r = sd_bus_call_method(
2120 "org.freedesktop.systemd1",
2121 "/org/freedesktop/systemd1",
2122 "org.freedesktop.systemd1.Manager",
2128 log_error("Failed to list jobs: %s", bus_error_message(&error, r));
2132 r = sd_bus_message_enter_container(reply, 'a', "(usssoo)");
2134 return bus_log_parse_error(r);
2136 while ((r = sd_bus_message_read(reply, "(usssoo)", &id, &name, &type, &state, &job_path, &unit_path)) > 0) {
2137 struct job_info job = { id, name, type, state };
2139 if (!output_show_job(&job, strv_skip_first(args))) {
2144 if (!GREEDY_REALLOC(jobs, size, c + 1))
2150 return bus_log_parse_error(r);
2152 r = sd_bus_message_exit_container(reply);
2154 return bus_log_parse_error(r);
2156 output_jobs_list(jobs, c, skipped);
2160 static int cancel_job(sd_bus *bus, char **args) {
2161 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
2166 if (strv_length(args) <= 1)
2167 return daemon_reload(bus, args);
2169 STRV_FOREACH(name, args+1) {
2173 r = safe_atou32(*name, &id);
2175 log_error("Failed to parse job id \"%s\": %s", *name, strerror(-r));
2179 r = sd_bus_call_method(
2181 "org.freedesktop.systemd1",
2182 "/org/freedesktop/systemd1",
2183 "org.freedesktop.systemd1.Manager",
2189 log_error("Failed to cancel job %u: %s", (unsigned) id, bus_error_message(&error, r));
2197 static int need_daemon_reload(sd_bus *bus, const char *unit) {
2198 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
2202 /* We ignore all errors here, since this is used to show a
2205 /* We don't use unit_dbus_path_from_name() directly since we
2206 * don't want to load the unit if it isn't loaded. */
2208 r = sd_bus_call_method(
2210 "org.freedesktop.systemd1",
2211 "/org/freedesktop/systemd1",
2212 "org.freedesktop.systemd1.Manager",
2220 r = sd_bus_message_read(reply, "o", &path);
2224 r = sd_bus_get_property_trivial(
2226 "org.freedesktop.systemd1",
2228 "org.freedesktop.systemd1.Unit",
2238 typedef struct WaitData {
2245 static int wait_filter(sd_bus *bus, sd_bus_message *m, void *data, sd_bus_error *error) {
2252 log_debug("Got D-Bus request: %s.%s() on %s",
2253 sd_bus_message_get_interface(m),
2254 sd_bus_message_get_member(m),
2255 sd_bus_message_get_path(m));
2257 if (sd_bus_message_is_signal(m, "org.freedesktop.DBus.Local", "Disconnected")) {
2258 log_error("Warning! D-Bus connection terminated.");
2260 } else if (sd_bus_message_is_signal(m, "org.freedesktop.systemd1.Manager", "JobRemoved")) {
2262 const char *path, *result, *unit;
2266 r = sd_bus_message_read(m, "uoss", &id, &path, &unit, &result);
2268 ret = set_remove(d->set, (char*) path);
2274 if (!isempty(result))
2275 d->result = strdup(result);
2278 d->name = strdup(unit);
2283 r = sd_bus_message_read(m, "uos", &id, &path, &result);
2285 ret = set_remove(d->set, (char*) path);
2292 d->result = strdup(result);
2298 bus_log_parse_error(r);
2304 static int enable_wait_for_jobs(sd_bus *bus) {
2309 r = sd_bus_add_match(
2313 "sender='org.freedesktop.systemd1',"
2314 "interface='org.freedesktop.systemd1.Manager',"
2315 "member='JobRemoved',"
2316 "path='/org/freedesktop/systemd1'",
2319 log_error("Failed to add match");
2323 /* This is slightly dirty, since we don't undo the match registrations. */
2327 static int bus_process_wait(sd_bus *bus) {
2331 r = sd_bus_process(bus, NULL);
2336 r = sd_bus_wait(bus, (uint64_t) -1);
2342 static int check_wait_response(WaitData *d) {
2348 if (streq(d->result, "timeout"))
2349 log_error("Job for %s timed out.", strna(d->name));
2350 else if (streq(d->result, "canceled"))
2351 log_error("Job for %s canceled.", strna(d->name));
2352 else if (streq(d->result, "dependency"))
2353 log_error("A dependency job for %s failed. See 'journalctl -xn' for details.", strna(d->name));
2354 else if (!streq(d->result, "done") && !streq(d->result, "skipped"))
2355 log_error("Job for %s failed. See 'systemctl status %s' and 'journalctl -xn' for details.", strna(d->name), strna(d->name));
2358 if (streq(d->result, "timeout"))
2360 else if (streq(d->result, "canceled"))
2362 else if (streq(d->result, "dependency"))
2364 else if (!streq(d->result, "done") && !streq(d->result, "skipped"))
2370 static int wait_for_jobs(sd_bus *bus, Set *s) {
2371 _cleanup_bus_slot_unref_ sd_bus_slot *slot = NULL;
2372 WaitData d = { .set = s };
2378 q = sd_bus_add_filter(bus, &slot, wait_filter, &d);
2382 while (!set_isempty(s)) {
2383 q = bus_process_wait(bus);
2385 log_error("Failed to wait for response: %s", strerror(-r));
2390 q = check_wait_response(&d);
2391 /* Return the first error as it is most likely to be
2393 if (q < 0 && r == 0)
2395 log_debug("Got result %s/%s for job %s",
2396 strna(d.result), strerror(-q), strna(d.name));
2409 static int check_one_unit(sd_bus *bus, const char *name, const char *good_states, bool quiet) {
2410 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
2411 _cleanup_free_ char *n = NULL, *state = NULL;
2417 n = unit_name_mangle(name, MANGLE_NOGLOB);
2421 /* We don't use unit_dbus_path_from_name() directly since we
2422 * don't want to load the unit if it isn't loaded. */
2424 r = sd_bus_call_method(
2426 "org.freedesktop.systemd1",
2427 "/org/freedesktop/systemd1",
2428 "org.freedesktop.systemd1.Manager",
2439 r = sd_bus_message_read(reply, "o", &path);
2441 return bus_log_parse_error(r);
2443 r = sd_bus_get_property_string(
2445 "org.freedesktop.systemd1",
2447 "org.freedesktop.systemd1.Unit",
2460 return nulstr_contains(good_states, state);
2463 static int check_triggering_units(
2467 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
2468 _cleanup_free_ char *path = NULL, *n = NULL, *state = NULL;
2469 _cleanup_strv_free_ char **triggered_by = NULL;
2470 bool print_warning_label = true;
2474 n = unit_name_mangle(name, MANGLE_NOGLOB);
2478 path = unit_dbus_path_from_name(n);
2482 r = sd_bus_get_property_string(
2484 "org.freedesktop.systemd1",
2486 "org.freedesktop.systemd1.Unit",
2491 log_error("Failed to get load state of %s: %s", n, bus_error_message(&error, r));
2495 if (streq(state, "masked"))
2498 r = sd_bus_get_property_strv(
2500 "org.freedesktop.systemd1",
2502 "org.freedesktop.systemd1.Unit",
2507 log_error("Failed to get triggered by array of %s: %s", n, bus_error_message(&error, r));
2511 STRV_FOREACH(i, triggered_by) {
2512 r = check_one_unit(bus, *i, "active\0reloading\0", true);
2514 log_error("Failed to check unit: %s", strerror(-r));
2521 if (print_warning_label) {
2522 log_warning("Warning: Stopping %s, but it can still be activated by:", n);
2523 print_warning_label = false;
2526 log_warning(" %s", *i);
2532 static const char *verb_to_method(const char *verb) {
2535 for (i = 0; i < ELEMENTSOF(unit_actions); i++)
2536 if (streq_ptr(unit_actions[i].verb, verb))
2537 return unit_actions[i].method;
2542 static const char *method_to_verb(const char *method) {
2545 for (i = 0; i < ELEMENTSOF(unit_actions); i++)
2546 if (streq_ptr(unit_actions[i].method, method))
2547 return unit_actions[i].verb;
2552 static int start_unit_one(
2557 sd_bus_error *error,
2560 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
2569 log_debug("Calling manager for %s on %s, %s", method, name, mode);
2570 r = sd_bus_call_method(
2572 "org.freedesktop.systemd1",
2573 "/org/freedesktop/systemd1",
2574 "org.freedesktop.systemd1.Manager",
2582 if (r == -ENOENT && arg_action != ACTION_SYSTEMCTL)
2583 /* There's always a fallback possible for
2584 * legacy actions. */
2585 return -EADDRNOTAVAIL;
2587 verb = method_to_verb(method);
2589 log_error("Failed to %s %s: %s", verb, name, bus_error_message(error, r));
2593 r = sd_bus_message_read(reply, "o", &path);
2595 return bus_log_parse_error(r);
2597 if (need_daemon_reload(bus, name) > 0)
2598 log_warning("Warning: Unit file of %s changed on disk, 'systemctl%s daemon-reload' recommended.",
2599 name, arg_scope == UNIT_FILE_SYSTEM ? "" : " --user");
2608 log_debug("Adding %s to the set", p);
2609 r = set_consume(s, p);
2617 static int expand_names(sd_bus *bus, char **names, const char* suffix, char ***ret) {
2619 _cleanup_strv_free_ char **mangled = NULL, **globs = NULL;
2623 STRV_FOREACH(name, names) {
2627 t = unit_name_mangle_with_suffix(*name, MANGLE_GLOB, suffix);
2629 t = unit_name_mangle(*name, MANGLE_GLOB);
2633 if (string_is_glob(t))
2634 r = strv_consume(&globs, t);
2636 r = strv_consume(&mangled, t);
2641 /* Query the manager only if any of the names are a glob, since
2642 * this is fairly expensive */
2643 if (!strv_isempty(globs)) {
2644 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
2645 _cleanup_free_ UnitInfo *unit_infos = NULL;
2647 r = get_unit_list(bus, NULL, globs, &unit_infos, 0, &reply);
2651 for (i = 0; i < r; i++)
2652 if (strv_extend(&mangled, unit_infos[i].id) < 0)
2657 mangled = NULL; /* do not free */
2662 static const struct {
2666 } action_table[_ACTION_MAX] = {
2667 [ACTION_HALT] = { SPECIAL_HALT_TARGET, "halt", "replace-irreversibly" },
2668 [ACTION_POWEROFF] = { SPECIAL_POWEROFF_TARGET, "poweroff", "replace-irreversibly" },
2669 [ACTION_REBOOT] = { SPECIAL_REBOOT_TARGET, "reboot", "replace-irreversibly" },
2670 [ACTION_KEXEC] = { SPECIAL_KEXEC_TARGET, "kexec", "replace-irreversibly" },
2671 [ACTION_RUNLEVEL2] = { SPECIAL_RUNLEVEL2_TARGET, NULL, "isolate" },
2672 [ACTION_RUNLEVEL3] = { SPECIAL_RUNLEVEL3_TARGET, NULL, "isolate" },
2673 [ACTION_RUNLEVEL4] = { SPECIAL_RUNLEVEL4_TARGET, NULL, "isolate" },
2674 [ACTION_RUNLEVEL5] = { SPECIAL_RUNLEVEL5_TARGET, NULL, "isolate" },
2675 [ACTION_RESCUE] = { SPECIAL_RESCUE_TARGET, "rescue", "isolate" },
2676 [ACTION_EMERGENCY] = { SPECIAL_EMERGENCY_TARGET, "emergency", "isolate" },
2677 [ACTION_DEFAULT] = { SPECIAL_DEFAULT_TARGET, "default", "isolate" },
2678 [ACTION_EXIT] = { SPECIAL_EXIT_TARGET, "exit", "replace-irreversibly" },
2679 [ACTION_SUSPEND] = { SPECIAL_SUSPEND_TARGET, "suspend", "replace-irreversibly" },
2680 [ACTION_HIBERNATE] = { SPECIAL_HIBERNATE_TARGET, "hibernate", "replace-irreversibly" },
2681 [ACTION_HYBRID_SLEEP] = { SPECIAL_HYBRID_SLEEP_TARGET, "hybrid-sleep", "replace-irreversibly" },
2684 static enum action verb_to_action(const char *verb) {
2687 for (i = _ACTION_INVALID; i < _ACTION_MAX; i++)
2688 if (streq_ptr(action_table[i].verb, verb))
2691 return _ACTION_INVALID;
2694 static int start_unit(sd_bus *bus, char **args) {
2695 _cleanup_set_free_free_ Set *s = NULL;
2696 _cleanup_strv_free_ char **names = NULL;
2697 const char *method, *mode, *one_name;
2703 ask_password_agent_open_if_enabled();
2705 if (arg_action == ACTION_SYSTEMCTL) {
2707 method = verb_to_method(args[0]);
2708 action = verb_to_action(args[0]);
2710 mode = streq(args[0], "isolate") ? "isolate" :
2711 action_table[action].mode ?: arg_job_mode;
2713 one_name = action_table[action].target;
2715 assert(arg_action < ELEMENTSOF(action_table));
2716 assert(action_table[arg_action].target);
2718 method = "StartUnit";
2720 mode = action_table[arg_action].mode;
2721 one_name = action_table[arg_action].target;
2725 names = strv_new(one_name, NULL);
2727 r = expand_names(bus, args + 1, NULL, &names);
2729 log_error("Failed to expand names: %s", strerror(-r));
2732 if (!arg_no_block) {
2733 r = enable_wait_for_jobs(bus);
2735 log_error("Could not watch jobs: %s", strerror(-r));
2739 s = set_new(string_hash_func, string_compare_func);
2744 STRV_FOREACH(name, names) {
2745 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
2748 q = start_unit_one(bus, method, *name, mode, &error, s);
2749 if (r >= 0 && q < 0)
2750 r = translate_bus_error_to_exit_status(q, &error);
2753 if (!arg_no_block) {
2756 q = wait_for_jobs(bus, s);
2760 /* When stopping units, warn if they can still be triggered by
2761 * another active unit (socket, path, timer) */
2762 if (!arg_quiet && streq(method, "StopUnit"))
2763 STRV_FOREACH(name, names)
2764 check_triggering_units(bus, *name);
2770 /* Ask systemd-logind, which might grant access to unprivileged users
2771 * through PolicyKit */
2772 static int reboot_with_logind(sd_bus *bus, enum action a) {
2774 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
2781 polkit_agent_open_if_enabled();
2789 case ACTION_POWEROFF:
2790 method = "PowerOff";
2793 case ACTION_SUSPEND:
2797 case ACTION_HIBERNATE:
2798 method = "Hibernate";
2801 case ACTION_HYBRID_SLEEP:
2802 method = "HybridSleep";
2809 r = sd_bus_call_method(
2811 "org.freedesktop.login1",
2812 "/org/freedesktop/login1",
2813 "org.freedesktop.login1.Manager",
2819 log_error("Failed to execute operation: %s", bus_error_message(&error, r));
2827 static int check_inhibitors(sd_bus *bus, enum action a) {
2829 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
2830 _cleanup_strv_free_ char **sessions = NULL;
2831 const char *what, *who, *why, *mode;
2840 if (arg_ignore_inhibitors || arg_force > 0)
2852 r = sd_bus_call_method(
2854 "org.freedesktop.login1",
2855 "/org/freedesktop/login1",
2856 "org.freedesktop.login1.Manager",
2862 /* If logind is not around, then there are no inhibitors... */
2865 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssssuu)");
2867 return bus_log_parse_error(r);
2869 while ((r = sd_bus_message_read(reply, "(ssssuu)", &what, &who, &why, &mode, &uid, &pid)) > 0) {
2870 _cleanup_free_ char *comm = NULL, *user = NULL;
2871 _cleanup_strv_free_ char **sv = NULL;
2873 if (!streq(mode, "block"))
2876 sv = strv_split(what, ":");
2880 if (!strv_contains(sv,
2882 a == ACTION_POWEROFF ||
2883 a == ACTION_REBOOT ||
2884 a == ACTION_KEXEC ? "shutdown" : "sleep"))
2887 get_process_comm(pid, &comm);
2888 user = uid_to_name(uid);
2890 log_warning("Operation inhibited by \"%s\" (PID "PID_FMT" \"%s\", user %s), reason is \"%s\".",
2891 who, pid, strna(comm), strna(user), why);
2896 return bus_log_parse_error(r);
2898 r = sd_bus_message_exit_container(reply);
2900 return bus_log_parse_error(r);
2902 /* Check for current sessions */
2903 sd_get_sessions(&sessions);
2904 STRV_FOREACH(s, sessions) {
2905 _cleanup_free_ char *type = NULL, *tty = NULL, *seat = NULL, *user = NULL, *service = NULL, *class = NULL;
2907 if (sd_session_get_uid(*s, &uid) < 0 || uid == getuid())
2910 if (sd_session_get_class(*s, &class) < 0 || !streq(class, "user"))
2913 if (sd_session_get_type(*s, &type) < 0 || (!streq(type, "x11") && !streq(type, "tty")))
2916 sd_session_get_tty(*s, &tty);
2917 sd_session_get_seat(*s, &seat);
2918 sd_session_get_service(*s, &service);
2919 user = uid_to_name(uid);
2921 log_warning("User %s is logged in on %s.", strna(user), isempty(tty) ? (isempty(seat) ? strna(service) : seat) : tty);
2928 log_error("Please retry operation after closing inhibitors and logging out other users.\nAlternatively, ignore inhibitors and users with 'systemctl %s -i'.",
2929 action_table[a].verb);
2937 static int start_special(sd_bus *bus, char **args) {
2943 a = verb_to_action(args[0]);
2945 r = check_inhibitors(bus, a);
2949 if (arg_force >= 2 && geteuid() != 0) {
2950 log_error("Must be root.");
2954 if (arg_force >= 2 &&
2955 (a == ACTION_HALT ||
2956 a == ACTION_POWEROFF ||
2957 a == ACTION_REBOOT))
2960 if (arg_force >= 1 &&
2961 (a == ACTION_HALT ||
2962 a == ACTION_POWEROFF ||
2963 a == ACTION_REBOOT ||
2964 a == ACTION_KEXEC ||
2966 return daemon_reload(bus, args);
2968 /* first try logind, to allow authentication with polkit */
2969 if (geteuid() != 0 &&
2970 (a == ACTION_POWEROFF ||
2971 a == ACTION_REBOOT ||
2972 a == ACTION_SUSPEND ||
2973 a == ACTION_HIBERNATE ||
2974 a == ACTION_HYBRID_SLEEP)) {
2975 r = reboot_with_logind(bus, a);
2980 r = start_unit(bus, args);
2981 if (r == EXIT_SUCCESS)
2987 static int check_unit_generic(sd_bus *bus, int code, const char *good_states, char **args) {
2988 _cleanup_strv_free_ char **names = NULL;
2995 r = expand_names(bus, args, NULL, &names);
2997 log_error("Failed to expand names: %s", strerror(-r));
3001 STRV_FOREACH(name, names) {
3004 state = check_one_unit(bus, *name, good_states, arg_quiet);
3014 static int check_unit_active(sd_bus *bus, char **args) {
3015 /* According to LSB: 3, "program is not running" */
3016 return check_unit_generic(bus, 3, "active\0reloading\0", args + 1);
3019 static int check_unit_failed(sd_bus *bus, char **args) {
3020 return check_unit_generic(bus, 1, "failed\0", args + 1);
3023 static int kill_unit(sd_bus *bus, char **args) {
3024 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
3025 _cleanup_strv_free_ char **names = NULL;
3033 arg_kill_who = "all";
3035 r = expand_names(bus, args + 1, NULL, &names);
3037 log_error("Failed to expand names: %s", strerror(-r));
3039 STRV_FOREACH(name, names) {
3040 q = sd_bus_call_method(
3042 "org.freedesktop.systemd1",
3043 "/org/freedesktop/systemd1",
3044 "org.freedesktop.systemd1.Manager",
3048 "ssi", *names, arg_kill_who, arg_signal);
3050 log_error("Failed to kill unit %s: %s",
3051 *names, bus_error_message(&error, r));
3060 typedef struct ExecStatusInfo {
3068 usec_t start_timestamp;
3069 usec_t exit_timestamp;
3074 LIST_FIELDS(struct ExecStatusInfo, exec);
3077 static void exec_status_info_free(ExecStatusInfo *i) {
3086 static int exec_status_info_deserialize(sd_bus_message *m, ExecStatusInfo *i) {
3087 uint64_t start_timestamp, exit_timestamp, start_timestamp_monotonic, exit_timestamp_monotonic;
3090 int32_t code, status;
3096 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_STRUCT, "sasbttttuii");
3098 return bus_log_parse_error(r);
3102 r = sd_bus_message_read(m, "s", &path);
3104 return bus_log_parse_error(r);
3106 i->path = strdup(path);
3110 r = sd_bus_message_read_strv(m, &i->argv);
3112 return bus_log_parse_error(r);
3114 r = sd_bus_message_read(m,
3117 &start_timestamp, &start_timestamp_monotonic,
3118 &exit_timestamp, &exit_timestamp_monotonic,
3122 return bus_log_parse_error(r);
3125 i->start_timestamp = (usec_t) start_timestamp;
3126 i->exit_timestamp = (usec_t) exit_timestamp;
3127 i->pid = (pid_t) pid;
3131 r = sd_bus_message_exit_container(m);
3133 return bus_log_parse_error(r);
3138 typedef struct UnitStatusInfo {
3140 const char *load_state;
3141 const char *active_state;
3142 const char *sub_state;
3143 const char *unit_file_state;
3145 const char *description;
3146 const char *following;
3148 char **documentation;
3150 const char *fragment_path;
3151 const char *source_path;
3152 const char *control_group;
3154 char **dropin_paths;
3156 const char *load_error;
3159 usec_t inactive_exit_timestamp;
3160 usec_t inactive_exit_timestamp_monotonic;
3161 usec_t active_enter_timestamp;
3162 usec_t active_exit_timestamp;
3163 usec_t inactive_enter_timestamp;
3165 bool need_daemon_reload;
3170 const char *status_text;
3171 const char *pid_file;
3175 usec_t start_timestamp;
3176 usec_t exit_timestamp;
3178 int exit_code, exit_status;
3180 usec_t condition_timestamp;
3181 bool condition_result;
3182 bool failed_condition_trigger;
3183 bool failed_condition_negate;
3184 const char *failed_condition;
3185 const char *failed_condition_param;
3188 unsigned n_accepted;
3189 unsigned n_connections;
3192 /* Pairs of type, path */
3196 const char *sysfs_path;
3198 /* Mount, Automount */
3204 LIST_HEAD(ExecStatusInfo, exec);
3207 static void print_status_info(
3212 const char *active_on, *active_off, *on, *off, *ss;
3214 char since1[FORMAT_TIMESTAMP_RELATIVE_MAX], *s1;
3215 char since2[FORMAT_TIMESTAMP_MAX], *s2;
3218 arg_all * OUTPUT_SHOW_ALL |
3219 (!on_tty() || pager_have()) * OUTPUT_FULL_WIDTH |
3220 on_tty() * OUTPUT_COLOR |
3221 !arg_quiet * OUTPUT_WARN_CUTOFF |
3222 arg_full * OUTPUT_FULL_WIDTH;
3227 /* This shows pretty information about a unit. See
3228 * print_property() for a low-level property printer */
3230 if (streq_ptr(i->active_state, "failed")) {
3231 active_on = ansi_highlight_red();
3232 active_off = ansi_highlight_off();
3233 } else if (streq_ptr(i->active_state, "active") || streq_ptr(i->active_state, "reloading")) {
3234 active_on = ansi_highlight_green();
3235 active_off = ansi_highlight_off();
3237 active_on = active_off = "";
3239 printf("%s%s%s %s", active_on, draw_special_char(DRAW_BLACK_CIRCLE), active_off, strna(i->id));
3241 if (i->description && !streq_ptr(i->id, i->description))
3242 printf(" - %s", i->description);
3247 printf(" Follow: unit currently follows state of %s\n", i->following);
3249 if (streq_ptr(i->load_state, "error")) {
3250 on = ansi_highlight_red();
3251 off = ansi_highlight_off();
3255 path = i->source_path ? i->source_path : i->fragment_path;
3258 printf(" Loaded: %s%s%s (Reason: %s)\n",
3259 on, strna(i->load_state), off, i->load_error);
3260 else if (path && i->unit_file_state)
3261 printf(" Loaded: %s%s%s (%s; %s)\n",
3262 on, strna(i->load_state), off, path, i->unit_file_state);
3264 printf(" Loaded: %s%s%s (%s)\n",
3265 on, strna(i->load_state), off, path);
3267 printf(" Loaded: %s%s%s\n",
3268 on, strna(i->load_state), off);
3270 if (!strv_isempty(i->dropin_paths)) {
3271 _cleanup_free_ char *dir = NULL;
3275 STRV_FOREACH(dropin, i->dropin_paths) {
3276 if (! dir || last) {
3277 printf(dir ? " " : " Drop-In: ");
3282 if (path_get_parent(*dropin, &dir) < 0) {
3287 printf("%s\n %s", dir,
3288 draw_special_char(DRAW_TREE_RIGHT));
3291 last = ! (*(dropin + 1) && startswith(*(dropin + 1), dir));
3293 printf("%s%s", basename(*dropin), last ? "\n" : ", ");
3297 ss = streq_ptr(i->active_state, i->sub_state) ? NULL : i->sub_state;
3299 printf(" Active: %s%s (%s)%s",
3300 active_on, strna(i->active_state), ss, active_off);
3302 printf(" Active: %s%s%s",
3303 active_on, strna(i->active_state), active_off);
3305 if (!isempty(i->result) && !streq(i->result, "success"))
3306 printf(" (Result: %s)", i->result);
3308 timestamp = (streq_ptr(i->active_state, "active") ||
3309 streq_ptr(i->active_state, "reloading")) ? i->active_enter_timestamp :
3310 (streq_ptr(i->active_state, "inactive") ||
3311 streq_ptr(i->active_state, "failed")) ? i->inactive_enter_timestamp :
3312 streq_ptr(i->active_state, "activating") ? i->inactive_exit_timestamp :
3313 i->active_exit_timestamp;
3315 s1 = format_timestamp_relative(since1, sizeof(since1), timestamp);
3316 s2 = format_timestamp(since2, sizeof(since2), timestamp);
3319 printf(" since %s; %s\n", s2, s1);
3321 printf(" since %s\n", s2);
3325 if (!i->condition_result && i->condition_timestamp > 0) {
3326 s1 = format_timestamp_relative(since1, sizeof(since1), i->condition_timestamp);
3327 s2 = format_timestamp(since2, sizeof(since2), i->condition_timestamp);
3329 printf(" start condition failed at %s%s%s\n",
3330 s2, s1 ? "; " : "", s1 ? s1 : "");
3331 if (i->failed_condition_trigger)
3332 printf(" none of the trigger conditions were met\n");
3333 else if (i->failed_condition)
3334 printf(" %s=%s%s was not met\n",
3335 i->failed_condition,
3336 i->failed_condition_negate ? "!" : "",
3337 i->failed_condition_param);
3341 printf(" Device: %s\n", i->sysfs_path);
3343 printf(" Where: %s\n", i->where);
3345 printf(" What: %s\n", i->what);
3347 STRV_FOREACH(t, i->documentation)
3348 printf(" %*s %s\n", 9, t == i->documentation ? "Docs:" : "", *t);
3350 STRV_FOREACH_PAIR(t, t2, i->listen)
3351 printf(" %*s %s (%s)\n", 9, t == i->listen ? "Listen:" : "", *t2, *t);
3354 printf(" Accepted: %u; Connected: %u\n", i->n_accepted, i->n_connections);
3356 LIST_FOREACH(exec, p, i->exec) {
3357 _cleanup_free_ char *argv = NULL;
3360 /* Only show exited processes here */
3364 argv = strv_join(p->argv, " ");
3365 printf(" Process: %u %s=%s ", p->pid, p->name, strna(argv));
3367 good = is_clean_exit_lsb(p->code, p->status, NULL);
3369 on = ansi_highlight_red();
3370 off = ansi_highlight_off();
3374 printf("%s(code=%s, ", on, sigchld_code_to_string(p->code));
3376 if (p->code == CLD_EXITED) {
3379 printf("status=%i", p->status);
3381 c = exit_status_to_string(p->status, EXIT_STATUS_SYSTEMD);
3386 printf("signal=%s", signal_to_string(p->status));
3388 printf(")%s\n", off);
3390 if (i->main_pid == p->pid &&
3391 i->start_timestamp == p->start_timestamp &&
3392 i->exit_timestamp == p->start_timestamp)
3393 /* Let's not show this twice */
3396 if (p->pid == i->control_pid)
3400 if (i->main_pid > 0 || i->control_pid > 0) {
3401 if (i->main_pid > 0) {
3402 printf(" Main PID: %u", (unsigned) i->main_pid);
3405 _cleanup_free_ char *comm = NULL;
3406 get_process_comm(i->main_pid, &comm);
3408 printf(" (%s)", comm);
3409 } else if (i->exit_code > 0) {
3410 printf(" (code=%s, ", sigchld_code_to_string(i->exit_code));
3412 if (i->exit_code == CLD_EXITED) {
3415 printf("status=%i", i->exit_status);
3417 c = exit_status_to_string(i->exit_status, EXIT_STATUS_SYSTEMD);
3422 printf("signal=%s", signal_to_string(i->exit_status));
3426 if (i->control_pid > 0)
3430 if (i->control_pid > 0) {
3431 _cleanup_free_ char *c = NULL;
3433 printf(" %8s: %u", i->main_pid ? "" : " Control", (unsigned) i->control_pid);
3435 get_process_comm(i->control_pid, &c);
3444 printf(" Status: \"%s\"\n", i->status_text);
3445 if (i->status_errno > 0)
3446 printf(" Error: %i (%s)\n", i->status_errno, strerror(i->status_errno));
3448 if (i->control_group &&
3449 (i->main_pid > 0 || i->control_pid > 0 ||
3450 ((arg_transport != BUS_TRANSPORT_LOCAL && arg_transport != BUS_TRANSPORT_CONTAINER) || cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, i->control_group, false) == 0))) {
3453 printf(" CGroup: %s\n", i->control_group);
3455 if (arg_transport == BUS_TRANSPORT_LOCAL || arg_transport == BUS_TRANSPORT_CONTAINER) {
3458 static const char prefix[] = " ";
3461 if (c > sizeof(prefix) - 1)
3462 c -= sizeof(prefix) - 1;
3466 if (i->main_pid > 0)
3467 extra[k++] = i->main_pid;
3469 if (i->control_pid > 0)
3470 extra[k++] = i->control_pid;
3472 show_cgroup_and_extra(SYSTEMD_CGROUP_CONTROLLER, i->control_group, prefix, c, false, extra, k, flags);
3476 if (i->id && arg_transport == BUS_TRANSPORT_LOCAL) {
3477 show_journal_by_unit(stdout,
3481 i->inactive_exit_timestamp_monotonic,
3484 flags | OUTPUT_BEGIN_NEWLINE,
3485 arg_scope == UNIT_FILE_SYSTEM,
3489 if (i->need_daemon_reload)
3490 printf("\n%sWarning:%s Unit file changed on disk, 'systemctl %sdaemon-reload' recommended.\n",
3491 ansi_highlight_red(),
3492 ansi_highlight_off(),
3493 arg_scope == UNIT_FILE_SYSTEM ? "" : "--user ");
3496 static void show_unit_help(UnitStatusInfo *i) {
3501 if (!i->documentation) {
3502 log_info("Documentation for %s not known.", i->id);
3506 STRV_FOREACH(p, i->documentation)
3507 if (startswith(*p, "man:"))
3508 show_man_page(*p + 4, false);
3510 log_info("Can't show: %s", *p);
3513 static int status_property(const char *name, sd_bus_message *m, UnitStatusInfo *i, const char *contents) {
3520 switch (contents[0]) {
3522 case SD_BUS_TYPE_STRING: {
3525 r = sd_bus_message_read(m, "s", &s);
3527 return bus_log_parse_error(r);
3530 if (streq(name, "Id"))
3532 else if (streq(name, "LoadState"))
3534 else if (streq(name, "ActiveState"))
3535 i->active_state = s;
3536 else if (streq(name, "SubState"))
3538 else if (streq(name, "Description"))
3540 else if (streq(name, "FragmentPath"))
3541 i->fragment_path = s;
3542 else if (streq(name, "SourcePath"))
3545 else if (streq(name, "DefaultControlGroup")) {
3547 e = startswith(s, SYSTEMD_CGROUP_CONTROLLER ":");
3549 i->control_group = e;
3552 else if (streq(name, "ControlGroup"))
3553 i->control_group = s;
3554 else if (streq(name, "StatusText"))
3556 else if (streq(name, "PIDFile"))
3558 else if (streq(name, "SysFSPath"))
3560 else if (streq(name, "Where"))
3562 else if (streq(name, "What"))
3564 else if (streq(name, "Following"))
3566 else if (streq(name, "UnitFileState"))
3567 i->unit_file_state = s;
3568 else if (streq(name, "Result"))
3575 case SD_BUS_TYPE_BOOLEAN: {
3578 r = sd_bus_message_read(m, "b", &b);
3580 return bus_log_parse_error(r);
3582 if (streq(name, "Accept"))
3584 else if (streq(name, "NeedDaemonReload"))
3585 i->need_daemon_reload = b;
3586 else if (streq(name, "ConditionResult"))
3587 i->condition_result = b;
3592 case SD_BUS_TYPE_UINT32: {
3595 r = sd_bus_message_read(m, "u", &u);
3597 return bus_log_parse_error(r);
3599 if (streq(name, "MainPID")) {
3601 i->main_pid = (pid_t) u;
3604 } else if (streq(name, "ControlPID"))
3605 i->control_pid = (pid_t) u;
3606 else if (streq(name, "ExecMainPID")) {
3608 i->main_pid = (pid_t) u;
3609 } else if (streq(name, "NAccepted"))
3611 else if (streq(name, "NConnections"))
3612 i->n_connections = u;
3617 case SD_BUS_TYPE_INT32: {
3620 r = sd_bus_message_read(m, "i", &j);
3622 return bus_log_parse_error(r);
3624 if (streq(name, "ExecMainCode"))
3625 i->exit_code = (int) j;
3626 else if (streq(name, "ExecMainStatus"))
3627 i->exit_status = (int) j;
3628 else if (streq(name, "StatusErrno"))
3629 i->status_errno = (int) j;
3634 case SD_BUS_TYPE_UINT64: {
3637 r = sd_bus_message_read(m, "t", &u);
3639 return bus_log_parse_error(r);
3641 if (streq(name, "ExecMainStartTimestamp"))
3642 i->start_timestamp = (usec_t) u;
3643 else if (streq(name, "ExecMainExitTimestamp"))
3644 i->exit_timestamp = (usec_t) u;
3645 else if (streq(name, "ActiveEnterTimestamp"))
3646 i->active_enter_timestamp = (usec_t) u;
3647 else if (streq(name, "InactiveEnterTimestamp"))
3648 i->inactive_enter_timestamp = (usec_t) u;
3649 else if (streq(name, "InactiveExitTimestamp"))
3650 i->inactive_exit_timestamp = (usec_t) u;
3651 else if (streq(name, "InactiveExitTimestampMonotonic"))
3652 i->inactive_exit_timestamp_monotonic = (usec_t) u;
3653 else if (streq(name, "ActiveExitTimestamp"))
3654 i->active_exit_timestamp = (usec_t) u;
3655 else if (streq(name, "ConditionTimestamp"))
3656 i->condition_timestamp = (usec_t) u;
3661 case SD_BUS_TYPE_ARRAY:
3663 if (contents[1] == SD_BUS_TYPE_STRUCT_BEGIN && startswith(name, "Exec")) {
3664 _cleanup_free_ ExecStatusInfo *info = NULL;
3666 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(sasbttttuii)");
3668 return bus_log_parse_error(r);
3670 info = new0(ExecStatusInfo, 1);
3674 while ((r = exec_status_info_deserialize(m, info)) > 0) {
3676 info->name = strdup(name);
3680 LIST_PREPEND(exec, i->exec, info);
3682 info = new0(ExecStatusInfo, 1);
3688 return bus_log_parse_error(r);
3690 r = sd_bus_message_exit_container(m);
3692 return bus_log_parse_error(r);
3696 } else if (contents[1] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "Listen")) {
3697 const char *type, *path;
3699 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(ss)");
3701 return bus_log_parse_error(r);
3703 while ((r = sd_bus_message_read(m, "(ss)", &type, &path)) > 0) {
3705 r = strv_extend(&i->listen, type);
3709 r = strv_extend(&i->listen, path);
3714 return bus_log_parse_error(r);
3716 r = sd_bus_message_exit_container(m);
3718 return bus_log_parse_error(r);
3722 } else if (contents[1] == SD_BUS_TYPE_STRING && streq(name, "DropInPaths")) {
3724 r = sd_bus_message_read_strv(m, &i->dropin_paths);
3726 return bus_log_parse_error(r);
3728 } else if (contents[1] == SD_BUS_TYPE_STRING && streq(name, "Documentation")) {
3730 r = sd_bus_message_read_strv(m, &i->documentation);
3732 return bus_log_parse_error(r);
3734 } else if (contents[1] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "Conditions")) {
3735 const char *cond, *param;
3736 int trigger, negate;
3739 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(sbbsi)");
3741 return bus_log_parse_error(r);
3743 while ((r = sd_bus_message_read(m, "(sbbsi)", &cond, &trigger, &negate, ¶m, &state)) > 0) {
3744 log_debug("%s %d %d %s %d", cond, trigger, negate, param, state);
3745 if (state < 0 && (!trigger || !i->failed_condition)) {
3746 i->failed_condition = cond;
3747 i->failed_condition_trigger = trigger;
3748 i->failed_condition_negate = negate;
3749 i->failed_condition_param = param;
3753 return bus_log_parse_error(r);
3755 r = sd_bus_message_exit_container(m);
3757 return bus_log_parse_error(r);
3764 case SD_BUS_TYPE_STRUCT_BEGIN:
3766 if (streq(name, "LoadError")) {
3767 const char *n, *message;
3769 r = sd_bus_message_read(m, "(ss)", &n, &message);
3771 return bus_log_parse_error(r);
3773 if (!isempty(message))
3774 i->load_error = message;
3787 r = sd_bus_message_skip(m, contents);
3789 return bus_log_parse_error(r);
3794 static int print_property(const char *name, sd_bus_message *m, const char *contents) {
3800 /* This is a low-level property printer, see
3801 * print_status_info() for the nicer output */
3803 if (arg_properties && !strv_find(arg_properties, name)) {
3804 /* skip what we didn't read */
3805 r = sd_bus_message_skip(m, contents);
3809 switch (contents[0]) {
3811 case SD_BUS_TYPE_STRUCT_BEGIN:
3813 if (contents[1] == SD_BUS_TYPE_UINT32 && streq(name, "Job")) {
3816 r = sd_bus_message_read(m, "(uo)", &u, NULL);
3818 return bus_log_parse_error(r);
3821 printf("%s=%u\n", name, (unsigned) u);
3823 printf("%s=\n", name);
3827 } else if (contents[1] == SD_BUS_TYPE_STRING && streq(name, "Unit")) {
3830 r = sd_bus_message_read(m, "(so)", &s, NULL);
3832 return bus_log_parse_error(r);
3834 if (arg_all || !isempty(s))
3835 printf("%s=%s\n", name, s);
3839 } else if (contents[1] == SD_BUS_TYPE_STRING && streq(name, "LoadError")) {
3840 const char *a = NULL, *b = NULL;
3842 r = sd_bus_message_read(m, "(ss)", &a, &b);
3844 return bus_log_parse_error(r);
3846 if (arg_all || !isempty(a) || !isempty(b))
3847 printf("%s=%s \"%s\"\n", name, strempty(a), strempty(b));
3850 } else if (streq_ptr(name, "SystemCallFilter")) {
3851 _cleanup_strv_free_ char **l = NULL;
3854 r = sd_bus_message_enter_container(m, 'r', "bas");
3856 return bus_log_parse_error(r);
3858 r = sd_bus_message_read(m, "b", &whitelist);
3860 return bus_log_parse_error(r);
3862 r = sd_bus_message_read_strv(m, &l);
3864 return bus_log_parse_error(r);
3866 r = sd_bus_message_exit_container(m);
3868 return bus_log_parse_error(r);
3870 if (arg_all || whitelist || !strv_isempty(l)) {
3874 fputs(name, stdout);
3880 STRV_FOREACH(i, l) {
3888 fputc('\n', stdout);
3896 case SD_BUS_TYPE_ARRAY:
3898 if (contents[1] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "EnvironmentFiles")) {
3902 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(sb)");
3904 return bus_log_parse_error(r);
3906 while ((r = sd_bus_message_read(m, "(sb)", &path, &ignore)) > 0)
3907 printf("EnvironmentFile=%s (ignore_errors=%s)\n", path, yes_no(ignore));
3910 return bus_log_parse_error(r);
3912 r = sd_bus_message_exit_container(m);
3914 return bus_log_parse_error(r);
3918 } else if (contents[1] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "Paths")) {
3919 const char *type, *path;
3921 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(ss)");
3923 return bus_log_parse_error(r);
3925 while ((r = sd_bus_message_read(m, "(ss)", &type, &path)) > 0)
3926 printf("%s=%s\n", type, path);
3928 return bus_log_parse_error(r);
3930 r = sd_bus_message_exit_container(m);
3932 return bus_log_parse_error(r);
3936 } else if (contents[1] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "Listen")) {
3937 const char *type, *path;
3939 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(ss)");
3941 return bus_log_parse_error(r);
3943 while ((r = sd_bus_message_read(m, "(ss)", &type, &path)) > 0)
3944 printf("Listen%s=%s\n", type, path);
3946 return bus_log_parse_error(r);
3948 r = sd_bus_message_exit_container(m);
3950 return bus_log_parse_error(r);
3954 } else if (contents[1] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "Timers")) {
3956 uint64_t value, next_elapse;
3958 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(stt)");
3960 return bus_log_parse_error(r);
3962 while ((r = sd_bus_message_read(m, "(stt)", &base, &value, &next_elapse)) > 0) {
3963 char timespan1[FORMAT_TIMESPAN_MAX], timespan2[FORMAT_TIMESPAN_MAX];
3965 printf("%s={ value=%s ; next_elapse=%s }\n",
3967 format_timespan(timespan1, sizeof(timespan1), value, 0),
3968 format_timespan(timespan2, sizeof(timespan2), next_elapse, 0));
3971 return bus_log_parse_error(r);
3973 r = sd_bus_message_exit_container(m);
3975 return bus_log_parse_error(r);
3979 } else if (contents[1] == SD_BUS_TYPE_STRUCT_BEGIN && startswith(name, "Exec")) {
3980 ExecStatusInfo info = {};
3982 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(sasbttttuii)");
3984 return bus_log_parse_error(r);
3986 while ((r = exec_status_info_deserialize(m, &info)) > 0) {
3987 char timestamp1[FORMAT_TIMESTAMP_MAX], timestamp2[FORMAT_TIMESTAMP_MAX];
3988 _cleanup_free_ char *tt;
3990 tt = strv_join(info.argv, " ");
3992 printf("%s={ path=%s ; argv[]=%s ; ignore_errors=%s ; start_time=[%s] ; stop_time=[%s] ; pid=%u ; code=%s ; status=%i%s%s }\n",
3996 yes_no(info.ignore),
3997 strna(format_timestamp(timestamp1, sizeof(timestamp1), info.start_timestamp)),
3998 strna(format_timestamp(timestamp2, sizeof(timestamp2), info.exit_timestamp)),
3999 (unsigned) info. pid,
4000 sigchld_code_to_string(info.code),
4002 info.code == CLD_EXITED ? "" : "/",
4003 strempty(info.code == CLD_EXITED ? NULL : signal_to_string(info.status)));
4006 strv_free(info.argv);
4010 r = sd_bus_message_exit_container(m);
4012 return bus_log_parse_error(r);
4016 } else if (contents[1] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "DeviceAllow")) {
4017 const char *path, *rwm;
4019 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(ss)");
4021 return bus_log_parse_error(r);
4023 while ((r = sd_bus_message_read(m, "(ss)", &path, &rwm)) > 0)
4024 printf("%s=%s %s\n", name, strna(path), strna(rwm));
4026 return bus_log_parse_error(r);
4028 r = sd_bus_message_exit_container(m);
4030 return bus_log_parse_error(r);
4034 } else if (contents[1] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "BlockIODeviceWeight")) {
4038 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(st)");
4040 return bus_log_parse_error(r);
4042 while ((r = sd_bus_message_read(m, "(st)", &path, &weight)) > 0)
4043 printf("%s=%s %" PRIu64 "\n", name, strna(path), weight);
4045 return bus_log_parse_error(r);
4047 r = sd_bus_message_exit_container(m);
4049 return bus_log_parse_error(r);
4053 } else if (contents[1] == SD_BUS_TYPE_STRUCT_BEGIN && (streq(name, "BlockIOReadBandwidth") || streq(name, "BlockIOWriteBandwidth"))) {
4057 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(st)");
4059 return bus_log_parse_error(r);
4061 while ((r = sd_bus_message_read(m, "(st)", &path, &bandwidth)) > 0)
4062 printf("%s=%s %" PRIu64 "\n", name, strna(path), bandwidth);
4064 return bus_log_parse_error(r);
4066 r = sd_bus_message_exit_container(m);
4068 return bus_log_parse_error(r);
4076 r = bus_print_property(name, m, arg_all);
4078 return bus_log_parse_error(r);
4081 r = sd_bus_message_skip(m, contents);
4083 return bus_log_parse_error(r);
4086 printf("%s=[unprintable]\n", name);
4092 static int show_one(
4096 bool show_properties,
4100 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
4101 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4102 UnitStatusInfo info = {};
4109 log_debug("Showing one %s", path);
4111 r = sd_bus_call_method(
4113 "org.freedesktop.systemd1",
4115 "org.freedesktop.DBus.Properties",
4121 log_error("Failed to get properties: %s", bus_error_message(&error, r));
4125 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "{sv}");
4127 return bus_log_parse_error(r);
4134 while ((r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_DICT_ENTRY, "sv")) > 0) {
4135 const char *name, *contents;
4137 r = sd_bus_message_read(reply, "s", &name);
4139 return bus_log_parse_error(r);
4141 r = sd_bus_message_peek_type(reply, NULL, &contents);
4143 return bus_log_parse_error(r);
4145 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_VARIANT, contents);
4147 return bus_log_parse_error(r);
4149 if (show_properties)
4150 r = print_property(name, reply, contents);
4152 r = status_property(name, reply, &info, contents);
4156 r = sd_bus_message_exit_container(reply);
4158 return bus_log_parse_error(r);
4160 r = sd_bus_message_exit_container(reply);
4162 return bus_log_parse_error(r);
4165 return bus_log_parse_error(r);
4167 r = sd_bus_message_exit_container(reply);
4169 return bus_log_parse_error(r);
4173 if (!show_properties) {
4174 if (streq(verb, "help"))
4175 show_unit_help(&info);
4177 print_status_info(&info, ellipsized);
4180 strv_free(info.documentation);
4181 strv_free(info.dropin_paths);
4182 strv_free(info.listen);
4184 if (!streq_ptr(info.active_state, "active") &&
4185 !streq_ptr(info.active_state, "reloading") &&
4186 streq(verb, "status")) {
4187 /* According to LSB: "program not running" */
4188 /* 0: program is running or service is OK
4189 * 1: program is dead and /run PID file exists
4190 * 2: program is dead and /run/lock lock file exists
4191 * 3: program is not running
4192 * 4: program or service status is unknown
4194 if (info.pid_file && access(info.pid_file, F_OK) == 0)
4200 while ((p = info.exec)) {
4201 LIST_REMOVE(exec, info.exec, p);
4202 exec_status_info_free(p);
4208 static int get_unit_dbus_path_by_pid(
4213 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4214 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
4218 r = sd_bus_call_method(
4220 "org.freedesktop.systemd1",
4221 "/org/freedesktop/systemd1",
4222 "org.freedesktop.systemd1.Manager",
4228 log_error("Failed to get unit for PID "PID_FMT": %s", pid, bus_error_message(&error, r));
4232 r = sd_bus_message_read(reply, "o", &u);
4234 return bus_log_parse_error(r);
4244 static int show_all(
4247 bool show_properties,
4251 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
4252 _cleanup_free_ UnitInfo *unit_infos = NULL;
4257 r = get_unit_list(bus, NULL, NULL, &unit_infos, 0, &reply);
4261 pager_open_if_enabled();
4265 qsort_safe(unit_infos, c, sizeof(UnitInfo), compare_unit_info);
4267 for (u = unit_infos; u < unit_infos + c; u++) {
4268 _cleanup_free_ char *p = NULL;
4270 p = unit_dbus_path_from_name(u->id);
4274 r = show_one(verb, bus, p, show_properties, new_line, ellipsized);
4277 else if (r > 0 && ret == 0)
4284 static int show_system_status(sd_bus *bus) {
4285 char since1[FORMAT_TIMESTAMP_RELATIVE_MAX], since2[FORMAT_TIMESTAMP_MAX];
4286 _cleanup_free_ char *hn = NULL;
4287 struct machine_info mi = {};
4288 const char *on, *off;
4291 hn = gethostname_malloc();
4295 r = bus_map_all_properties(bus, "org.freedesktop.systemd1", "/org/freedesktop/systemd1", machine_info_property_map, &mi);
4297 log_error("Failed to read server status: %s", strerror(-r));
4301 if (streq_ptr(mi.state, "degraded")) {
4302 on = ansi_highlight_red();
4303 off = ansi_highlight_off();
4304 } else if (!streq_ptr(mi.state, "running")) {
4305 on = ansi_highlight_yellow();
4306 off = ansi_highlight_off();
4310 printf("%s%s%s %s\n", on, draw_special_char(DRAW_BLACK_CIRCLE), off, arg_host ? arg_host : hn);
4312 printf(" State: %s%s%s\n",
4313 on, strna(mi.state), off);
4315 printf(" Jobs: %u queued\n", mi.n_jobs);
4316 printf(" Failed: %u units\n", mi.n_failed_units);
4318 printf(" Since: %s; %s\n",
4319 format_timestamp(since2, sizeof(since2), mi.timestamp),
4320 format_timestamp_relative(since1, sizeof(since1), mi.timestamp));
4322 printf(" CGroup: %s\n", mi.control_group ?: "/");
4323 if (arg_transport == BUS_TRANSPORT_LOCAL || arg_transport == BUS_TRANSPORT_CONTAINER) {
4325 arg_all * OUTPUT_SHOW_ALL |
4326 (!on_tty() || pager_have()) * OUTPUT_FULL_WIDTH |
4327 on_tty() * OUTPUT_COLOR |
4328 !arg_quiet * OUTPUT_WARN_CUTOFF |
4329 arg_full * OUTPUT_FULL_WIDTH;
4331 static const char prefix[] = " ";
4335 if (c > sizeof(prefix) - 1)
4336 c -= sizeof(prefix) - 1;
4340 show_cgroup(SYSTEMD_CGROUP_CONTROLLER, strempty(mi.control_group), prefix, c, false, flags);
4344 free(mi.control_group);
4349 static int show(sd_bus *bus, char **args) {
4350 bool show_properties, show_status, new_line = false;
4351 bool ellipsized = false;
4357 show_properties = streq(args[0], "show");
4358 show_status = streq(args[0], "status");
4360 if (show_properties)
4361 pager_open_if_enabled();
4363 /* If no argument is specified inspect the manager itself */
4365 if (show_properties && strv_length(args) <= 1)
4366 return show_one(args[0], bus, "/org/freedesktop/systemd1", show_properties, &new_line, &ellipsized);
4368 if (show_status && strv_length(args) <= 1) {
4370 pager_open_if_enabled();
4371 show_system_status(bus);
4375 ret = show_all(args[0], bus, false, &new_line, &ellipsized);
4377 _cleanup_free_ char **patterns = NULL;
4380 STRV_FOREACH(name, args + 1) {
4381 _cleanup_free_ char *unit = NULL;
4384 if (safe_atou32(*name, &id) < 0) {
4385 if (strv_push(&patterns, *name) < 0)
4389 } else if (show_properties) {
4390 /* Interpret as job id */
4391 if (asprintf(&unit, "/org/freedesktop/systemd1/job/%u", id) < 0)
4395 /* Interpret as PID */
4396 r = get_unit_dbus_path_by_pid(bus, id, &unit);
4403 r = show_one(args[0], bus, unit, show_properties,
4404 &new_line, &ellipsized);
4407 else if (r > 0 && ret == 0)
4411 if (!strv_isempty(patterns)) {
4412 _cleanup_strv_free_ char **names = NULL;
4414 r = expand_names(bus, patterns, NULL, &names);
4416 log_error("Failed to expand names: %s", strerror(-r));
4418 STRV_FOREACH(name, names) {
4419 _cleanup_free_ char *unit;
4421 unit = unit_dbus_path_from_name(*name);
4425 r = show_one(args[0], bus, unit, show_properties,
4426 &new_line, &ellipsized);
4429 else if (r > 0 && ret == 0)
4435 if (ellipsized && !arg_quiet)
4436 printf("Hint: Some lines were ellipsized, use -l to show in full.\n");
4441 static int cat(sd_bus *bus, char **args) {
4442 _cleanup_free_ char *unit = NULL;
4443 _cleanup_strv_free_ char **names = NULL;
4451 r = expand_names(bus, args + 1, NULL, &names);
4453 log_error("Failed to expand names: %s", strerror(-r));
4455 pager_open_if_enabled();
4457 STRV_FOREACH(name, names) {
4458 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4459 _cleanup_strv_free_ char **dropin_paths = NULL;
4460 _cleanup_free_ char *fragment_path = NULL;
4463 unit = unit_dbus_path_from_name(*name);
4467 if (need_daemon_reload(bus, *name) > 0)
4468 log_warning("Unit file of %s changed on disk. Run 'systemctl%s daemon-reload'.",
4469 *name, arg_scope == UNIT_FILE_SYSTEM ? "" : " --user");
4471 r = sd_bus_get_property_string(
4473 "org.freedesktop.systemd1",
4475 "org.freedesktop.systemd1.Unit",
4480 log_warning("Failed to get FragmentPath: %s", bus_error_message(&error, r));
4484 r = sd_bus_get_property_strv(
4486 "org.freedesktop.systemd1",
4488 "org.freedesktop.systemd1.Unit",
4493 log_warning("Failed to get DropInPaths: %s", bus_error_message(&error, r));
4502 if (!isempty(fragment_path)) {
4503 printf("%s# %s%s\n",
4504 ansi_highlight_blue(),
4506 ansi_highlight_off());
4509 r = sendfile_full(STDOUT_FILENO, fragment_path);
4511 log_warning("Failed to cat %s: %s", fragment_path, strerror(-r));
4516 STRV_FOREACH(path, dropin_paths) {
4517 printf("%s%s# %s%s\n",
4518 isempty(fragment_path) && path == dropin_paths ? "" : "\n",
4519 ansi_highlight_blue(),
4521 ansi_highlight_off());
4524 r = sendfile_full(STDOUT_FILENO, *path);
4526 log_warning("Failed to cat %s: %s", *path, strerror(-r));
4532 return r < 0 ? r : 0;
4535 static int set_property(sd_bus *bus, char **args) {
4536 _cleanup_bus_message_unref_ sd_bus_message *m = NULL;
4537 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4538 _cleanup_free_ char *n = NULL;
4542 r = sd_bus_message_new_method_call(
4545 "org.freedesktop.systemd1",
4546 "/org/freedesktop/systemd1",
4547 "org.freedesktop.systemd1.Manager",
4548 "SetUnitProperties");
4550 return bus_log_create_error(r);
4552 n = unit_name_mangle(args[1], MANGLE_NOGLOB);
4556 r = sd_bus_message_append(m, "sb", n, arg_runtime);
4558 return bus_log_create_error(r);
4560 r = sd_bus_message_open_container(m, SD_BUS_TYPE_ARRAY, "(sv)");
4562 return bus_log_create_error(r);
4564 STRV_FOREACH(i, args + 2) {
4565 r = sd_bus_message_open_container(m, SD_BUS_TYPE_STRUCT, "sv");
4567 return bus_log_create_error(r);
4569 r = bus_append_unit_property_assignment(m, *i);
4573 r = sd_bus_message_close_container(m);
4575 return bus_log_create_error(r);
4578 r = sd_bus_message_close_container(m);
4580 return bus_log_create_error(r);
4582 r = sd_bus_call(bus, m, 0, &error, NULL);
4584 log_error("Failed to set unit properties on %s: %s", n, bus_error_message(&error, r));
4591 static int snapshot(sd_bus *bus, char **args) {
4592 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4593 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
4594 _cleanup_free_ char *n = NULL, *id = NULL;
4598 if (strv_length(args) > 1)
4599 n = unit_name_mangle_with_suffix(args[1], MANGLE_NOGLOB, ".snapshot");
4605 r = sd_bus_call_method(
4607 "org.freedesktop.systemd1",
4608 "/org/freedesktop/systemd1",
4609 "org.freedesktop.systemd1.Manager",
4615 log_error("Failed to create snapshot: %s", bus_error_message(&error, r));
4619 r = sd_bus_message_read(reply, "o", &path);
4621 return bus_log_parse_error(r);
4623 r = sd_bus_get_property_string(
4625 "org.freedesktop.systemd1",
4627 "org.freedesktop.systemd1.Unit",
4632 log_error("Failed to get ID of snapshot: %s", bus_error_message(&error, r));
4642 static int delete_snapshot(sd_bus *bus, char **args) {
4643 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4644 _cleanup_strv_free_ char **names = NULL;
4650 r = expand_names(bus, args + 1, ".snapshot", &names);
4652 log_error("Failed to expand names: %s", strerror(-r));
4654 STRV_FOREACH(name, names) {
4655 q = sd_bus_call_method(
4657 "org.freedesktop.systemd1",
4658 "/org/freedesktop/systemd1",
4659 "org.freedesktop.systemd1.Manager",
4665 log_error("Failed to remove snapshot %s: %s",
4666 *name, bus_error_message(&error, r));
4675 static int daemon_reload(sd_bus *bus, char **args) {
4676 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4680 if (arg_action == ACTION_RELOAD)
4682 else if (arg_action == ACTION_REEXEC)
4683 method = "Reexecute";
4685 assert(arg_action == ACTION_SYSTEMCTL);
4688 streq(args[0], "clear-jobs") ||
4689 streq(args[0], "cancel") ? "ClearJobs" :
4690 streq(args[0], "daemon-reexec") ? "Reexecute" :
4691 streq(args[0], "reset-failed") ? "ResetFailed" :
4692 streq(args[0], "halt") ? "Halt" :
4693 streq(args[0], "poweroff") ? "PowerOff" :
4694 streq(args[0], "reboot") ? "Reboot" :
4695 streq(args[0], "kexec") ? "KExec" :
4696 streq(args[0], "exit") ? "Exit" :
4697 /* "daemon-reload" */ "Reload";
4700 r = sd_bus_call_method(
4702 "org.freedesktop.systemd1",
4703 "/org/freedesktop/systemd1",
4704 "org.freedesktop.systemd1.Manager",
4710 if (r == -ENOENT && arg_action != ACTION_SYSTEMCTL)
4711 /* There's always a fallback possible for
4712 * legacy actions. */
4714 else if ((r == -ETIMEDOUT || r == -ECONNRESET) && streq(method, "Reexecute"))
4715 /* On reexecution, we expect a disconnect, not a
4719 log_error("Failed to execute operation: %s", bus_error_message(&error, r));
4721 return r < 0 ? r : 0;
4724 static int reset_failed(sd_bus *bus, char **args) {
4725 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4726 _cleanup_strv_free_ char **names = NULL;
4730 if (strv_length(args) <= 1)
4731 return daemon_reload(bus, args);
4733 r = expand_names(bus, args + 1, NULL, &names);
4735 log_error("Failed to expand names: %s", strerror(-r));
4737 STRV_FOREACH(name, names) {
4738 q = sd_bus_call_method(
4740 "org.freedesktop.systemd1",
4741 "/org/freedesktop/systemd1",
4742 "org.freedesktop.systemd1.Manager",
4748 log_error("Failed to reset failed state of unit %s: %s",
4749 *name, bus_error_message(&error, r));
4758 static int show_environment(sd_bus *bus, char **args) {
4759 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4760 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
4764 pager_open_if_enabled();
4766 r = sd_bus_get_property(
4768 "org.freedesktop.systemd1",
4769 "/org/freedesktop/systemd1",
4770 "org.freedesktop.systemd1.Manager",
4776 log_error("Failed to get environment: %s", bus_error_message(&error, r));
4780 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "s");
4782 return bus_log_parse_error(r);
4784 while ((r = sd_bus_message_read_basic(reply, SD_BUS_TYPE_STRING, &text)) > 0)
4787 return bus_log_parse_error(r);
4789 r = sd_bus_message_exit_container(reply);
4791 return bus_log_parse_error(r);
4796 static int switch_root(sd_bus *bus, char **args) {
4797 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4798 _cleanup_free_ char *cmdline_init = NULL;
4799 const char *root, *init;
4803 l = strv_length(args);
4804 if (l < 2 || l > 3) {
4805 log_error("Wrong number of arguments.");
4814 r = parse_env_file("/proc/cmdline", WHITESPACE,
4815 "init", &cmdline_init,
4818 log_debug("Failed to parse /proc/cmdline: %s", strerror(-r));
4820 init = cmdline_init;
4827 const char *root_systemd_path = NULL, *root_init_path = NULL;
4829 root_systemd_path = strappenda(root, "/" SYSTEMD_BINARY_PATH);
4830 root_init_path = strappenda(root, "/", init);
4832 /* If the passed init is actually the same as the
4833 * systemd binary, then let's suppress it. */
4834 if (files_same(root_init_path, root_systemd_path) > 0)
4838 log_debug("Switching root - root: %s; init: %s", root, strna(init));
4840 r = sd_bus_call_method(
4842 "org.freedesktop.systemd1",
4843 "/org/freedesktop/systemd1",
4844 "org.freedesktop.systemd1.Manager",
4850 log_error("Failed to switch root: %s", bus_error_message(&error, r));
4857 static int set_environment(sd_bus *bus, char **args) {
4858 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4859 _cleanup_bus_message_unref_ sd_bus_message *m = NULL;
4866 method = streq(args[0], "set-environment")
4868 : "UnsetEnvironment";
4870 r = sd_bus_message_new_method_call(
4873 "org.freedesktop.systemd1",
4874 "/org/freedesktop/systemd1",
4875 "org.freedesktop.systemd1.Manager",
4878 return bus_log_create_error(r);
4880 r = sd_bus_message_append_strv(m, args + 1);
4882 return bus_log_create_error(r);
4884 r = sd_bus_call(bus, m, 0, &error, NULL);
4886 log_error("Failed to set environment: %s", bus_error_message(&error, r));
4893 static int import_environment(sd_bus *bus, char **args) {
4894 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
4895 _cleanup_bus_message_unref_ sd_bus_message *m = NULL;
4901 r = sd_bus_message_new_method_call(
4904 "org.freedesktop.systemd1",
4905 "/org/freedesktop/systemd1",
4906 "org.freedesktop.systemd1.Manager",
4909 return bus_log_create_error(r);
4911 if (strv_isempty(args + 1))
4912 r = sd_bus_message_append_strv(m, environ);
4916 r = sd_bus_message_open_container(m, 'a', "s");
4918 return bus_log_create_error(r);
4920 STRV_FOREACH(a, args + 1) {
4922 if (!env_name_is_valid(*a)) {
4923 log_error("Not a valid environment variable name: %s", *a);
4927 STRV_FOREACH(b, environ) {
4930 eq = startswith(*b, *a);
4931 if (eq && *eq == '=') {
4933 r = sd_bus_message_append(m, "s", *b);
4935 return bus_log_create_error(r);
4942 r = sd_bus_message_close_container(m);
4945 return bus_log_create_error(r);
4947 r = sd_bus_call(bus, m, 0, &error, NULL);
4949 log_error("Failed to import environment: %s", bus_error_message(&error, r));
4956 static int enable_sysv_units(const char *verb, char **args) {
4959 #if defined(HAVE_SYSV_COMPAT) && defined(HAVE_CHKCONFIG)
4960 unsigned f = 1, t = 1;
4961 _cleanup_lookup_paths_free_ LookupPaths paths = {};
4963 if (arg_scope != UNIT_FILE_SYSTEM)
4966 if (!streq(verb, "enable") &&
4967 !streq(verb, "disable") &&
4968 !streq(verb, "is-enabled"))
4971 /* Processes all SysV units, and reshuffles the array so that
4972 * afterwards only the native units remain */
4974 r = lookup_paths_init(&paths, SYSTEMD_SYSTEM, false, arg_root, NULL, NULL, NULL);
4979 for (f = 0; args[f]; f++) {
4981 _cleanup_free_ char *p = NULL, *q = NULL, *l = NULL;
4982 bool found_native = false, found_sysv;
4984 const char *argv[6] = { "/sbin/chkconfig", NULL, NULL, NULL, NULL };
4992 if (!endswith(name, ".service"))
4995 if (path_is_absolute(name))
4998 STRV_FOREACH(k, paths.unit_path) {
4999 _cleanup_free_ char *path = NULL;
5001 path = path_join(arg_root, *k, name);
5005 found_native = access(path, F_OK) >= 0;
5013 p = path_join(arg_root, SYSTEM_SYSVINIT_PATH, name);
5017 p[strlen(p) - strlen(".service")] = 0;
5018 found_sysv = access(p, F_OK) >= 0;
5022 /* Mark this entry, so that we don't try enabling it as native unit */
5023 args[f] = (char*) "";
5025 log_info("%s is not a native service, redirecting to /sbin/chkconfig.", name);
5027 if (!isempty(arg_root))
5028 argv[c++] = q = strappend("--root=", arg_root);
5030 argv[c++] = basename(p);
5032 streq(verb, "enable") ? "on" :
5033 streq(verb, "disable") ? "off" : "--level=5";
5036 l = strv_join((char**)argv, " ");
5040 log_info("Executing %s", l);
5044 log_error("Failed to fork: %m");
5046 } else if (pid == 0) {
5049 execv(argv[0], (char**) argv);
5050 _exit(EXIT_FAILURE);
5053 j = wait_for_terminate(pid, &status);
5055 log_error("Failed to wait for child: %s", strerror(-r));
5059 if (status.si_code == CLD_EXITED) {
5060 if (streq(verb, "is-enabled")) {
5061 if (status.si_status == 0) {
5070 } else if (status.si_status != 0)
5076 /* Drop all SysV units */
5077 for (f = 0, t = 0; args[f]; f++) {
5079 if (isempty(args[f]))
5082 args[t++] = args[f];
5091 static int mangle_names(char **original_names, char ***mangled_names) {
5092 char **i, **l, **name;
5094 l = new(char*, strv_length(original_names) + 1);
5099 STRV_FOREACH(name, original_names) {
5101 /* When enabling units qualified path names are OK,
5102 * too, hence allow them explicitly. */
5107 *i = unit_name_mangle(*name, MANGLE_NOGLOB);
5123 static int enable_unit(sd_bus *bus, char **args) {
5124 _cleanup_strv_free_ char **names = NULL;
5125 const char *verb = args[0];
5126 UnitFileChange *changes = NULL;
5127 unsigned n_changes = 0;
5128 int carries_install_info = -1;
5134 r = mangle_names(args+1, &names);
5138 r = enable_sysv_units(verb, names);
5142 /* If the operation was fully executed by the SysV compat,
5143 * let's finish early */
5144 if (strv_isempty(names))
5147 if (!bus || avoid_bus()) {
5148 if (streq(verb, "enable")) {
5149 r = unit_file_enable(arg_scope, arg_runtime, arg_root, names, arg_force, &changes, &n_changes);
5150 carries_install_info = r;
5151 } else if (streq(verb, "disable"))
5152 r = unit_file_disable(arg_scope, arg_runtime, arg_root, names, &changes, &n_changes);
5153 else if (streq(verb, "reenable")) {
5154 r = unit_file_reenable(arg_scope, arg_runtime, arg_root, names, arg_force, &changes, &n_changes);
5155 carries_install_info = r;
5156 } else if (streq(verb, "link"))
5157 r = unit_file_link(arg_scope, arg_runtime, arg_root, names, arg_force, &changes, &n_changes);
5158 else if (streq(verb, "preset")) {
5159 r = unit_file_preset(arg_scope, arg_runtime, arg_root, names, arg_preset_mode, arg_force, &changes, &n_changes);
5160 carries_install_info = r;
5161 } else if (streq(verb, "mask"))
5162 r = unit_file_mask(arg_scope, arg_runtime, arg_root, names, arg_force, &changes, &n_changes);
5163 else if (streq(verb, "unmask"))
5164 r = unit_file_unmask(arg_scope, arg_runtime, arg_root, names, &changes, &n_changes);
5166 assert_not_reached("Unknown verb");
5169 log_error("Operation failed: %s", strerror(-r));
5174 dump_unit_file_changes(changes, n_changes);
5178 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL, *m = NULL;
5179 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
5180 int expect_carries_install_info = false;
5181 bool send_force = true, send_preset_mode = false;
5184 if (streq(verb, "enable")) {
5185 method = "EnableUnitFiles";
5186 expect_carries_install_info = true;
5187 } else if (streq(verb, "disable")) {
5188 method = "DisableUnitFiles";
5190 } else if (streq(verb, "reenable")) {
5191 method = "ReenableUnitFiles";
5192 expect_carries_install_info = true;
5193 } else if (streq(verb, "link"))
5194 method = "LinkUnitFiles";
5195 else if (streq(verb, "preset")) {
5197 if (arg_preset_mode != UNIT_FILE_PRESET_FULL) {
5198 method = "PresetUnitFilesWithMode";
5199 send_preset_mode = true;
5201 method = "PresetUnitFiles";
5203 expect_carries_install_info = true;
5204 } else if (streq(verb, "mask"))
5205 method = "MaskUnitFiles";
5206 else if (streq(verb, "unmask")) {
5207 method = "UnmaskUnitFiles";
5210 assert_not_reached("Unknown verb");
5212 r = sd_bus_message_new_method_call(
5215 "org.freedesktop.systemd1",
5216 "/org/freedesktop/systemd1",
5217 "org.freedesktop.systemd1.Manager",
5220 return bus_log_create_error(r);
5222 r = sd_bus_message_append_strv(m, names);
5224 return bus_log_create_error(r);
5226 if (send_preset_mode) {
5227 r = sd_bus_message_append(m, "s", unit_file_preset_mode_to_string(arg_preset_mode));
5229 return bus_log_create_error(r);
5232 r = sd_bus_message_append(m, "b", arg_runtime);
5234 return bus_log_create_error(r);
5237 r = sd_bus_message_append(m, "b", arg_force);
5239 return bus_log_create_error(r);
5242 r = sd_bus_call(bus, m, 0, &error, &reply);
5244 log_error("Failed to execute operation: %s", bus_error_message(&error, r));
5248 if (expect_carries_install_info) {
5249 r = sd_bus_message_read(reply, "b", &carries_install_info);
5251 return bus_log_parse_error(r);
5254 r = deserialize_and_dump_unit_file_changes(reply);
5258 /* Try to reload if enabled */
5260 r = daemon_reload(bus, args);
5265 if (carries_install_info == 0)
5266 log_warning("The unit files have no [Install] section. They are not meant to be enabled\n"
5267 "using systemctl.\n"
5268 "Possible reasons for having this kind of units are:\n"
5269 "1) A unit may be statically enabled by being symlinked from another unit's\n"
5270 " .wants/ or .requires/ directory.\n"
5271 "2) A unit's purpose may be to act as a helper for some other unit which has\n"
5272 " a requirement dependency on it.\n"
5273 "3) A unit may be started when needed via activation (socket, path, timer,\n"
5274 " D-Bus, udev, scripted systemctl call, ...).\n");
5277 unit_file_changes_free(changes, n_changes);
5282 static int preset_all(sd_bus *bus, char **args) {
5283 UnitFileChange *changes = NULL;
5284 unsigned n_changes = 0;
5287 if (!bus || avoid_bus()) {
5289 r = unit_file_preset_all(arg_scope, arg_runtime, arg_root, arg_preset_mode, arg_force, &changes, &n_changes);
5291 log_error("Operation failed: %s", strerror(-r));
5296 dump_unit_file_changes(changes, n_changes);
5301 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
5302 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
5304 r = sd_bus_call_method(
5306 "org.freedesktop.systemd1",
5307 "/org/freedesktop/systemd1",
5308 "org.freedesktop.systemd1.Manager",
5309 "PresetAllUnitFiles",
5313 unit_file_preset_mode_to_string(arg_preset_mode),
5317 log_error("Failed to execute operation: %s", bus_error_message(&error, r));
5321 r = deserialize_and_dump_unit_file_changes(reply);
5326 r = daemon_reload(bus, args);
5332 unit_file_changes_free(changes, n_changes);
5337 static int unit_is_enabled(sd_bus *bus, char **args) {
5339 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
5340 _cleanup_strv_free_ char **names = NULL;
5345 r = mangle_names(args+1, &names);
5349 r = enable_sysv_units(args[0], names);
5355 if (!bus || avoid_bus()) {
5357 STRV_FOREACH(name, names) {
5358 UnitFileState state;
5360 state = unit_file_get_state(arg_scope, arg_root, *name);
5362 log_error("Failed to get unit file state for %s: %s", *name, strerror(-state));
5366 if (state == UNIT_FILE_ENABLED ||
5367 state == UNIT_FILE_ENABLED_RUNTIME ||
5368 state == UNIT_FILE_STATIC)
5372 puts(unit_file_state_to_string(state));
5376 STRV_FOREACH(name, names) {
5377 _cleanup_bus_message_unref_ sd_bus_message *reply = NULL;
5380 r = sd_bus_call_method(
5382 "org.freedesktop.systemd1",
5383 "/org/freedesktop/systemd1",
5384 "org.freedesktop.systemd1.Manager",
5390 log_error("Failed to get unit file state for %s: %s", *name, bus_error_message(&error, r));
5394 r = sd_bus_message_read(reply, "s", &s);
5396 return bus_log_parse_error(r);
5398 if (streq(s, "enabled") ||
5399 streq(s, "enabled-runtime") ||
5411 static int is_system_running(sd_bus *bus, char **args) {
5412 _cleanup_free_ char *state = NULL;
5415 r = sd_bus_get_property_string(
5417 "org.freedesktop.systemd1",
5418 "/org/freedesktop/systemd1",
5419 "org.freedesktop.systemd1.Manager",
5432 return streq(state, "running") ? EXIT_SUCCESS : EXIT_FAILURE;
5435 static void systemctl_help(void) {
5437 pager_open_if_enabled();
5439 printf("%s [OPTIONS...] {COMMAND} ...\n\n"
5440 "Query or send control commands to the systemd manager.\n\n"
5441 " -h --help Show this help\n"
5442 " --version Show package version\n"
5443 " --system Connect to system manager\n"
5444 " --user Connect to user service manager\n"
5445 " -H --host=[USER@]HOST\n"
5446 " Operate on remote host\n"
5447 " -M --machine=CONTAINER\n"
5448 " Operate on local container\n"
5449 " -t --type=TYPE List only units of a particular type\n"
5450 " --state=STATE List only units with particular LOAD or SUB or ACTIVE state\n"
5451 " -p --property=NAME Show only properties by this name\n"
5452 " -a --all Show all loaded units/properties, including dead/empty\n"
5453 " ones. To list all units installed on the system, use\n"
5454 " the 'list-unit-files' command instead.\n"
5455 " -l --full Don't ellipsize unit names on output\n"
5456 " -r --recursive Show unit list of host and local containers\n"
5457 " --reverse Show reverse dependencies with 'list-dependencies'\n"
5458 " --job-mode=MODE Specify how to deal with already queued jobs, when\n"
5459 " queueing a new job\n"
5460 " --show-types When showing sockets, explicitly show their type\n"
5461 " -i --ignore-inhibitors\n"
5462 " When shutting down or sleeping, ignore inhibitors\n"
5463 " --kill-who=WHO Who to send signal to\n"
5464 " -s --signal=SIGNAL Which signal to send\n"
5465 " -q --quiet Suppress output\n"
5466 " --no-block Do not wait until operation finished\n"
5467 " --no-wall Don't send wall message before halt/power-off/reboot\n"
5468 " --no-reload When enabling/disabling unit files, don't reload daemon\n"
5470 " --no-legend Do not print a legend (column headers and hints)\n"
5471 " --no-pager Do not pipe output into a pager\n"
5472 " --no-ask-password\n"
5473 " Do not ask for system passwords\n"
5474 " --global Enable/disable unit files globally\n"
5475 " --runtime Enable unit files only temporarily until next reboot\n"
5476 " -f --force When enabling unit files, override existing symlinks\n"
5477 " When shutting down, execute action immediately\n"
5478 " --preset-mode= Specifies whether fully apply presets, or only enable,\n"
5479 " or only disable\n"
5480 " --root=PATH Enable unit files in the specified root directory\n"
5481 " -n --lines=INTEGER Number of journal entries to show\n"
5482 " -o --output=STRING Change journal output mode (short, short-monotonic,\n"
5483 " verbose, export, json, json-pretty, json-sse, cat)\n"
5484 " --plain Print unit dependencies as a list instead of a tree\n\n"
5486 " list-units [PATTERN...] List loaded units\n"
5487 " list-sockets [PATTERN...] List loaded sockets ordered by address\n"
5488 " list-timers [PATTERN...] List loaded timers ordered by next elapse\n"
5489 " start NAME... Start (activate) one or more units\n"
5490 " stop NAME... Stop (deactivate) one or more units\n"
5491 " reload NAME... Reload one or more units\n"
5492 " restart NAME... Start or restart one or more units\n"
5493 " try-restart NAME... Restart one or more units if active\n"
5494 " reload-or-restart NAME... Reload one or more units if possible,\n"
5495 " otherwise start or restart\n"
5496 " reload-or-try-restart NAME... Reload one or more units if possible,\n"
5497 " otherwise restart if active\n"
5498 " isolate NAME Start one unit and stop all others\n"
5499 " kill NAME... Send signal to processes of a unit\n"
5500 " is-active PATTERN... Check whether units are active\n"
5501 " is-failed PATTERN... Check whether units are failed\n"
5502 " status [PATTERN...|PID...] Show runtime status of one or more units\n"
5503 " show [PATTERN...|JOB...] Show properties of one or more\n"
5504 " units/jobs or the manager\n"
5505 " cat PATTERN... Show files and drop-ins of one or more units\n"
5506 " set-property NAME ASSIGNMENT... Sets one or more properties of a unit\n"
5507 " help PATTERN...|PID... Show manual for one or more units\n"
5508 " reset-failed [PATTERN...] Reset failed state for all, one, or more\n"
5510 " list-dependencies [NAME] Recursively show units which are required\n"
5511 " or wanted by this unit or by which this\n"
5512 " unit is required or wanted\n\n"
5513 "Unit File Commands:\n"
5514 " list-unit-files [PATTERN...] List installed unit files\n"
5515 " enable NAME... Enable one or more unit files\n"
5516 " disable NAME... Disable one or more unit files\n"
5517 " reenable NAME... Reenable one or more unit files\n"
5518 " preset NAME... Enable/disable one or more unit files\n"
5519 " based on preset configuration\n"
5520 " preset-all Enable/disable all unit files based on\n"
5521 " preset configuration\n"
5522 " is-enabled NAME... Check whether unit files are enabled\n\n"
5523 " mask NAME... Mask one or more units\n"
5524 " unmask NAME... Unmask one or more units\n"
5525 " link PATH... Link one or more units files into\n"
5526 " the search path\n"
5527 " get-default Get the name of the default target\n"
5528 " set-default NAME Set the default target\n\n"
5529 "Machine Commands:\n"
5530 " list-machines [PATTERN...] List local containers and host\n\n"
5532 " list-jobs [PATTERN...] List jobs\n"
5533 " cancel [JOB...] Cancel all, one, or more jobs\n\n"
5534 "Snapshot Commands:\n"
5535 " snapshot [NAME] Create a snapshot\n"
5536 " delete NAME... Remove one or more snapshots\n\n"
5537 "Environment Commands:\n"
5538 " show-environment Dump environment\n"
5539 " set-environment NAME=VALUE... Set one or more environment variables\n"
5540 " unset-environment NAME... Unset one or more environment variables\n"
5541 " import-environment NAME... Import all, one or more environment variables\n\n"
5542 "Manager Lifecycle Commands:\n"
5543 " daemon-reload Reload systemd manager configuration\n"
5544 " daemon-reexec Reexecute systemd manager\n\n"
5545 "System Commands:\n"
5546 " is-system-running Check whether system is fully running\n"
5547 " default Enter system default mode\n"
5548 " rescue Enter system rescue mode\n"
5549 " emergency Enter system emergency mode\n"
5550 " halt Shut down and halt the system\n"
5551 " poweroff Shut down and power-off the system\n"
5552 " reboot [ARG] Shut down and reboot the system\n"
5553 " kexec Shut down and reboot the system with kexec\n"
5554 " exit Request user instance exit\n"
5555 " switch-root ROOT [INIT] Change to a different root file system\n"
5556 " suspend Suspend the system\n"
5557 " hibernate Hibernate the system\n"
5558 " hybrid-sleep Hibernate and suspend the system\n",
5559 program_invocation_short_name);
5562 static void halt_help(void) {
5563 printf("%s [OPTIONS...]%s\n\n"
5564 "%s the system.\n\n"
5565 " --help Show this help\n"
5566 " --halt Halt the machine\n"
5567 " -p --poweroff Switch off the machine\n"
5568 " --reboot Reboot the machine\n"
5569 " -f --force Force immediate halt/power-off/reboot\n"
5570 " -w --wtmp-only Don't halt/power-off/reboot, just write wtmp record\n"
5571 " -d --no-wtmp Don't write wtmp record\n"
5572 " --no-wall Don't send wall message before halt/power-off/reboot\n",
5573 program_invocation_short_name,
5574 arg_action == ACTION_REBOOT ? " [ARG]" : "",
5575 arg_action == ACTION_REBOOT ? "Reboot" :
5576 arg_action == ACTION_POWEROFF ? "Power off" :
5580 static void shutdown_help(void) {
5581 printf("%s [OPTIONS...] [TIME] [WALL...]\n\n"
5582 "Shut down the system.\n\n"
5583 " --help Show this help\n"
5584 " -H --halt Halt the machine\n"
5585 " -P --poweroff Power-off the machine\n"
5586 " -r --reboot Reboot the machine\n"
5587 " -h Equivalent to --poweroff, overridden by --halt\n"
5588 " -k Don't halt/power-off/reboot, just send warnings\n"
5589 " --no-wall Don't send wall message before halt/power-off/reboot\n"
5590 " -c Cancel a pending shutdown\n",
5591 program_invocation_short_name);
5594 static void telinit_help(void) {
5595 printf("%s [OPTIONS...] {COMMAND}\n\n"
5596 "Send control commands to the init daemon.\n\n"
5597 " --help Show this help\n"
5598 " --no-wall Don't send wall message before halt/power-off/reboot\n\n"
5600 " 0 Power-off the machine\n"
5601 " 6 Reboot the machine\n"
5602 " 2, 3, 4, 5 Start runlevelX.target unit\n"
5603 " 1, s, S Enter rescue mode\n"
5604 " q, Q Reload init daemon configuration\n"
5605 " u, U Reexecute init daemon\n",
5606 program_invocation_short_name);
5609 static void runlevel_help(void) {
5610 printf("%s [OPTIONS...]\n\n"
5611 "Prints the previous and current runlevel of the init system.\n\n"
5612 " --help Show this help\n",
5613 program_invocation_short_name);
5616 static void help_types(void) {
5621 puts("Available unit types:");
5622 for (i = 0; i < _UNIT_TYPE_MAX; i++) {
5623 t = unit_type_to_string(i);
5629 static int systemctl_parse_argv(int argc, char *argv[]) {
5638 ARG_IGNORE_DEPENDENCIES,
5650 ARG_NO_ASK_PASSWORD,
5660 static const struct option options[] = {
5661 { "help", no_argument, NULL, 'h' },
5662 { "version", no_argument, NULL, ARG_VERSION },
5663 { "type", required_argument, NULL, 't' },
5664 { "property", required_argument, NULL, 'p' },
5665 { "all", no_argument, NULL, 'a' },
5666 { "reverse", no_argument, NULL, ARG_REVERSE },
5667 { "after", no_argument, NULL, ARG_AFTER },
5668 { "before", no_argument, NULL, ARG_BEFORE },
5669 { "show-types", no_argument, NULL, ARG_SHOW_TYPES },
5670 { "failed", no_argument, NULL, ARG_FAILED }, /* compatibility only */
5671 { "full", no_argument, NULL, 'l' },
5672 { "job-mode", required_argument, NULL, ARG_JOB_MODE },
5673 { "fail", no_argument, NULL, ARG_FAIL }, /* compatibility only */
5674 { "irreversible", no_argument, NULL, ARG_IRREVERSIBLE }, /* compatibility only */
5675 { "ignore-dependencies", no_argument, NULL, ARG_IGNORE_DEPENDENCIES }, /* compatibility only */
5676 { "ignore-inhibitors", no_argument, NULL, 'i' },
5677 { "user", no_argument, NULL, ARG_USER },
5678 { "system", no_argument, NULL, ARG_SYSTEM },
5679 { "global", no_argument, NULL, ARG_GLOBAL },
5680 { "no-block", no_argument, NULL, ARG_NO_BLOCK },
5681 { "no-legend", no_argument, NULL, ARG_NO_LEGEND },
5682 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
5683 { "no-wall", no_argument, NULL, ARG_NO_WALL },
5684 { "quiet", no_argument, NULL, 'q' },
5685 { "root", required_argument, NULL, ARG_ROOT },
5686 { "force", no_argument, NULL, ARG_FORCE },
5687 { "no-reload", no_argument, NULL, ARG_NO_RELOAD },
5688 { "kill-who", required_argument, NULL, ARG_KILL_WHO },
5689 { "signal", required_argument, NULL, 's' },
5690 { "no-ask-password", no_argument, NULL, ARG_NO_ASK_PASSWORD },
5691 { "host", required_argument, NULL, 'H' },
5692 { "machine", required_argument, NULL, 'M' },
5693 { "runtime", no_argument, NULL, ARG_RUNTIME },
5694 { "lines", required_argument, NULL, 'n' },
5695 { "output", required_argument, NULL, 'o' },
5696 { "plain", no_argument, NULL, ARG_PLAIN },
5697 { "state", required_argument, NULL, ARG_STATE },
5698 { "recursive", no_argument, NULL, 'r' },
5699 { "preset-mode", required_argument, NULL, ARG_PRESET_MODE },
5708 while ((c = getopt_long(argc, argv, "ht:p:alqfs:H:M:n:o:ir", options, NULL)) >= 0)
5717 puts(PACKAGE_STRING);
5718 puts(SYSTEMD_FEATURES);
5722 const char *word, *state;
5725 FOREACH_WORD_SEPARATOR(word, size, optarg, ",", state) {
5726 _cleanup_free_ char *type;
5728 type = strndup(word, size);
5732 if (streq(type, "help")) {
5737 if (unit_type_from_string(type) >= 0) {
5738 if (strv_push(&arg_types, type))
5744 /* It's much nicer to use --state= for
5745 * load states, but let's support this
5746 * in --types= too for compatibility
5747 * with old versions */
5748 if (unit_load_state_from_string(optarg) >= 0) {
5749 if (strv_push(&arg_states, type) < 0)
5755 log_error("Unknown unit type or load state '%s'.", type);
5756 log_info("Use -t help to see a list of allowed values.");
5764 /* Make sure that if the empty property list
5765 was specified, we won't show any properties. */
5766 if (isempty(optarg) && !arg_properties) {
5767 arg_properties = new0(char*, 1);
5768 if (!arg_properties)
5771 const char *word, *state;
5774 FOREACH_WORD_SEPARATOR(word, size, optarg, ",", state) {
5777 prop = strndup(word, size);
5781 if (strv_consume(&arg_properties, prop) < 0)
5786 /* If the user asked for a particular
5787 * property, show it to him, even if it is
5799 arg_dependency = DEPENDENCY_REVERSE;
5803 arg_dependency = DEPENDENCY_AFTER;
5807 arg_dependency = DEPENDENCY_BEFORE;
5810 case ARG_SHOW_TYPES:
5811 arg_show_types = true;
5815 arg_job_mode = optarg;
5819 arg_job_mode = "fail";
5822 case ARG_IRREVERSIBLE:
5823 arg_job_mode = "replace-irreversibly";
5826 case ARG_IGNORE_DEPENDENCIES:
5827 arg_job_mode = "ignore-dependencies";
5831 arg_scope = UNIT_FILE_USER;
5835 arg_scope = UNIT_FILE_SYSTEM;
5839 arg_scope = UNIT_FILE_GLOBAL;
5843 arg_no_block = true;
5847 arg_no_legend = true;
5851 arg_no_pager = true;
5867 if (strv_extend(&arg_states, "failed") < 0)
5885 arg_no_reload = true;
5889 arg_kill_who = optarg;
5893 if ((arg_signal = signal_from_string_try_harder(optarg)) < 0) {
5894 log_error("Failed to parse signal string %s.", optarg);
5899 case ARG_NO_ASK_PASSWORD:
5900 arg_ask_password = false;
5904 arg_transport = BUS_TRANSPORT_REMOTE;
5909 arg_transport = BUS_TRANSPORT_CONTAINER;
5918 if (safe_atou(optarg, &arg_lines) < 0) {
5919 log_error("Failed to parse lines '%s'", optarg);
5925 arg_output = output_mode_from_string(optarg);
5926 if (arg_output < 0) {
5927 log_error("Unknown output '%s'.", optarg);
5933 arg_ignore_inhibitors = true;
5941 const char *word, *state;
5944 FOREACH_WORD_SEPARATOR(word, size, optarg, ",", state) {
5947 s = strndup(word, size);
5951 if (strv_consume(&arg_states, s) < 0)
5958 if (geteuid() != 0) {
5959 log_error("--recursive requires root privileges.");
5963 arg_recursive = true;
5966 case ARG_PRESET_MODE:
5968 arg_preset_mode = unit_file_preset_mode_from_string(optarg);
5969 if (arg_preset_mode < 0) {
5970 log_error("Failed to parse preset mode: %s.", optarg);
5980 assert_not_reached("Unhandled option");
5983 if (arg_transport != BUS_TRANSPORT_LOCAL && arg_scope != UNIT_FILE_SYSTEM) {
5984 log_error("Cannot access user instance remotely.");
5991 static int halt_parse_argv(int argc, char *argv[]) {
6000 static const struct option options[] = {
6001 { "help", no_argument, NULL, ARG_HELP },
6002 { "halt", no_argument, NULL, ARG_HALT },
6003 { "poweroff", no_argument, NULL, 'p' },
6004 { "reboot", no_argument, NULL, ARG_REBOOT },
6005 { "force", no_argument, NULL, 'f' },
6006 { "wtmp-only", no_argument, NULL, 'w' },
6007 { "no-wtmp", no_argument, NULL, 'd' },
6008 { "no-wall", no_argument, NULL, ARG_NO_WALL },
6017 if (utmp_get_runlevel(&runlevel, NULL) >= 0)
6018 if (runlevel == '0' || runlevel == '6')
6021 while ((c = getopt_long(argc, argv, "pfwdnih", options, NULL)) >= 0)
6029 arg_action = ACTION_HALT;
6033 if (arg_action != ACTION_REBOOT)
6034 arg_action = ACTION_POWEROFF;
6038 arg_action = ACTION_REBOOT;
6060 /* Compatibility nops */
6067 assert_not_reached("Unhandled option");
6070 if (arg_action == ACTION_REBOOT && (argc == optind || argc == optind + 1)) {
6071 r = update_reboot_param_file(argc == optind + 1 ? argv[optind] : NULL);
6074 } else if (optind < argc) {
6075 log_error("Too many arguments.");
6082 static int parse_time_spec(const char *t, usec_t *_u) {
6086 if (streq(t, "now"))
6088 else if (!strchr(t, ':')) {
6091 if (safe_atou64(t, &u) < 0)
6094 *_u = now(CLOCK_REALTIME) + USEC_PER_MINUTE * u;
6103 hour = strtol(t, &e, 10);
6104 if (errno > 0 || *e != ':' || hour < 0 || hour > 23)
6107 minute = strtol(e+1, &e, 10);
6108 if (errno > 0 || *e != 0 || minute < 0 || minute > 59)
6111 n = now(CLOCK_REALTIME);
6112 s = (time_t) (n / USEC_PER_SEC);
6114 assert_se(localtime_r(&s, &tm));
6116 tm.tm_hour = (int) hour;
6117 tm.tm_min = (int) minute;
6120 assert_se(s = mktime(&tm));
6122 *_u = (usec_t) s * USEC_PER_SEC;
6125 *_u += USEC_PER_DAY;
6131 static int shutdown_parse_argv(int argc, char *argv[]) {
6138 static const struct option options[] = {
6139 { "help", no_argument, NULL, ARG_HELP },
6140 { "halt", no_argument, NULL, 'H' },
6141 { "poweroff", no_argument, NULL, 'P' },
6142 { "reboot", no_argument, NULL, 'r' },
6143 { "kexec", no_argument, NULL, 'K' }, /* not documented extension */
6144 { "no-wall", no_argument, NULL, ARG_NO_WALL },
6153 while ((c = getopt_long(argc, argv, "HPrhkt:afFc", options, NULL)) >= 0)
6161 arg_action = ACTION_HALT;
6165 arg_action = ACTION_POWEROFF;
6170 arg_action = ACTION_KEXEC;
6172 arg_action = ACTION_REBOOT;
6176 arg_action = ACTION_KEXEC;
6180 if (arg_action != ACTION_HALT)
6181 arg_action = ACTION_POWEROFF;
6194 /* Compatibility nops */
6198 arg_action = ACTION_CANCEL_SHUTDOWN;
6205 assert_not_reached("Unhandled option");
6208 if (argc > optind && arg_action != ACTION_CANCEL_SHUTDOWN) {
6209 r = parse_time_spec(argv[optind], &arg_when);
6211 log_error("Failed to parse time specification: %s", argv[optind]);
6215 arg_when = now(CLOCK_REALTIME) + USEC_PER_MINUTE;
6217 if (argc > optind && arg_action == ACTION_CANCEL_SHUTDOWN)
6218 /* No time argument for shutdown cancel */
6219 arg_wall = argv + optind;
6220 else if (argc > optind + 1)
6221 /* We skip the time argument */
6222 arg_wall = argv + optind + 1;
6229 static int telinit_parse_argv(int argc, char *argv[]) {
6236 static const struct option options[] = {
6237 { "help", no_argument, NULL, ARG_HELP },
6238 { "no-wall", no_argument, NULL, ARG_NO_WALL },
6242 static const struct {
6246 { '0', ACTION_POWEROFF },
6247 { '6', ACTION_REBOOT },
6248 { '1', ACTION_RESCUE },
6249 { '2', ACTION_RUNLEVEL2 },
6250 { '3', ACTION_RUNLEVEL3 },
6251 { '4', ACTION_RUNLEVEL4 },
6252 { '5', ACTION_RUNLEVEL5 },
6253 { 's', ACTION_RESCUE },
6254 { 'S', ACTION_RESCUE },
6255 { 'q', ACTION_RELOAD },
6256 { 'Q', ACTION_RELOAD },
6257 { 'u', ACTION_REEXEC },
6258 { 'U', ACTION_REEXEC }
6267 while ((c = getopt_long(argc, argv, "", options, NULL)) >= 0)
6282 assert_not_reached("Unhandled option");
6285 if (optind >= argc) {
6286 log_error("%s: required argument missing.",
6287 program_invocation_short_name);
6291 if (optind + 1 < argc) {
6292 log_error("Too many arguments.");
6296 if (strlen(argv[optind]) != 1) {
6297 log_error("Expected single character argument.");
6301 for (i = 0; i < ELEMENTSOF(table); i++)
6302 if (table[i].from == argv[optind][0])
6305 if (i >= ELEMENTSOF(table)) {
6306 log_error("Unknown command '%s'.", argv[optind]);
6310 arg_action = table[i].to;
6317 static int runlevel_parse_argv(int argc, char *argv[]) {
6323 static const struct option options[] = {
6324 { "help", no_argument, NULL, ARG_HELP },
6333 while ((c = getopt_long(argc, argv, "", options, NULL)) >= 0)
6344 assert_not_reached("Unhandled option");
6347 if (optind < argc) {
6348 log_error("Too many arguments.");
6355 static int parse_argv(int argc, char *argv[]) {
6359 if (program_invocation_short_name) {
6361 if (strstr(program_invocation_short_name, "halt")) {
6362 arg_action = ACTION_HALT;
6363 return halt_parse_argv(argc, argv);
6364 } else if (strstr(program_invocation_short_name, "poweroff")) {
6365 arg_action = ACTION_POWEROFF;
6366 return halt_parse_argv(argc, argv);
6367 } else if (strstr(program_invocation_short_name, "reboot")) {
6369 arg_action = ACTION_KEXEC;
6371 arg_action = ACTION_REBOOT;
6372 return halt_parse_argv(argc, argv);
6373 } else if (strstr(program_invocation_short_name, "shutdown")) {
6374 arg_action = ACTION_POWEROFF;
6375 return shutdown_parse_argv(argc, argv);
6376 } else if (strstr(program_invocation_short_name, "init")) {
6378 if (sd_booted() > 0) {
6379 arg_action = _ACTION_INVALID;
6380 return telinit_parse_argv(argc, argv);
6382 /* Hmm, so some other init system is
6383 * running, we need to forward this
6384 * request to it. For now we simply
6385 * guess that it is Upstart. */
6387 execv(TELINIT, argv);
6389 log_error("Couldn't find an alternative telinit implementation to spawn.");
6393 } else if (strstr(program_invocation_short_name, "runlevel")) {
6394 arg_action = ACTION_RUNLEVEL;
6395 return runlevel_parse_argv(argc, argv);
6399 arg_action = ACTION_SYSTEMCTL;
6400 return systemctl_parse_argv(argc, argv);
6403 _pure_ static int action_to_runlevel(void) {
6405 static const char table[_ACTION_MAX] = {
6406 [ACTION_HALT] = '0',
6407 [ACTION_POWEROFF] = '0',
6408 [ACTION_REBOOT] = '6',
6409 [ACTION_RUNLEVEL2] = '2',
6410 [ACTION_RUNLEVEL3] = '3',
6411 [ACTION_RUNLEVEL4] = '4',
6412 [ACTION_RUNLEVEL5] = '5',
6413 [ACTION_RESCUE] = '1'
6416 assert(arg_action < _ACTION_MAX);
6418 return table[arg_action];
6421 static int talk_initctl(void) {
6423 struct init_request request = {
6424 .magic = INIT_MAGIC,
6426 .cmd = INIT_CMD_RUNLVL
6429 _cleanup_close_ int fd = -1;
6433 rl = action_to_runlevel();
6437 request.runlevel = rl;
6439 fd = open(INIT_FIFO, O_WRONLY|O_NDELAY|O_CLOEXEC|O_NOCTTY);
6441 if (errno == ENOENT)
6444 log_error("Failed to open "INIT_FIFO": %m");
6449 r = loop_write(fd, &request, sizeof(request), false) != sizeof(request);
6451 log_error("Failed to write to "INIT_FIFO": %m");
6452 return errno > 0 ? -errno : -EIO;
6458 static int systemctl_main(sd_bus *bus, int argc, char *argv[], int bus_error) {
6460 static const struct {
6468 int (* const dispatch)(sd_bus *bus, char **args);
6474 { "list-units", MORE, 0, list_units },
6475 { "list-unit-files", MORE, 1, list_unit_files, NOBUS },
6476 { "list-sockets", MORE, 1, list_sockets },
6477 { "list-timers", MORE, 1, list_timers },
6478 { "list-jobs", MORE, 1, list_jobs },
6479 { "list-machines", MORE, 1, list_machines },
6480 { "clear-jobs", EQUAL, 1, daemon_reload },
6481 { "cancel", MORE, 2, cancel_job },
6482 { "start", MORE, 2, start_unit },
6483 { "stop", MORE, 2, start_unit },
6484 { "condstop", MORE, 2, start_unit }, /* For compatibility with ALTLinux */
6485 { "reload", MORE, 2, start_unit },
6486 { "restart", MORE, 2, start_unit },
6487 { "try-restart", MORE, 2, start_unit },
6488 { "reload-or-restart", MORE, 2, start_unit },
6489 { "reload-or-try-restart", MORE, 2, start_unit },
6490 { "force-reload", MORE, 2, start_unit }, /* For compatibility with SysV */
6491 { "condreload", MORE, 2, start_unit }, /* For compatibility with ALTLinux */
6492 { "condrestart", MORE, 2, start_unit }, /* For compatibility with RH */
6493 { "isolate", EQUAL, 2, start_unit },
6494 { "kill", MORE, 2, kill_unit },
6495 { "is-active", MORE, 2, check_unit_active },
6496 { "check", MORE, 2, check_unit_active },
6497 { "is-failed", MORE, 2, check_unit_failed },
6498 { "show", MORE, 1, show },
6499 { "cat", MORE, 2, cat },
6500 { "status", MORE, 1, show },
6501 { "help", MORE, 2, show },
6502 { "snapshot", LESS, 2, snapshot },
6503 { "delete", MORE, 2, delete_snapshot },
6504 { "daemon-reload", EQUAL, 1, daemon_reload },
6505 { "daemon-reexec", EQUAL, 1, daemon_reload },
6506 { "show-environment", EQUAL, 1, show_environment },
6507 { "set-environment", MORE, 2, set_environment },
6508 { "unset-environment", MORE, 2, set_environment },
6509 { "import-environment", MORE, 1, import_environment},
6510 { "halt", EQUAL, 1, start_special, FORCE },
6511 { "poweroff", EQUAL, 1, start_special, FORCE },
6512 { "reboot", EQUAL, 1, start_special, FORCE },
6513 { "kexec", EQUAL, 1, start_special },
6514 { "suspend", EQUAL, 1, start_special },
6515 { "hibernate", EQUAL, 1, start_special },
6516 { "hybrid-sleep", EQUAL, 1, start_special },
6517 { "default", EQUAL, 1, start_special },
6518 { "rescue", EQUAL, 1, start_special },
6519 { "emergency", EQUAL, 1, start_special },
6520 { "exit", EQUAL, 1, start_special },
6521 { "reset-failed", MORE, 1, reset_failed },
6522 { "enable", MORE, 2, enable_unit, NOBUS },
6523 { "disable", MORE, 2, enable_unit, NOBUS },
6524 { "is-enabled", MORE, 2, unit_is_enabled, NOBUS },
6525 { "reenable", MORE, 2, enable_unit, NOBUS },
6526 { "preset", MORE, 2, enable_unit, NOBUS },
6527 { "preset-all", EQUAL, 1, preset_all, NOBUS },
6528 { "mask", MORE, 2, enable_unit, NOBUS },
6529 { "unmask", MORE, 2, enable_unit, NOBUS },
6530 { "link", MORE, 2, enable_unit, NOBUS },
6531 { "switch-root", MORE, 2, switch_root },
6532 { "list-dependencies", LESS, 2, list_dependencies },
6533 { "set-default", EQUAL, 2, set_default, NOBUS },
6534 { "get-default", EQUAL, 1, get_default, NOBUS },
6535 { "set-property", MORE, 3, set_property },
6536 { "is-system-running", EQUAL, 1, is_system_running },
6545 left = argc - optind;
6547 /* Special rule: no arguments (left == 0) means "list-units" */
6549 if (streq(argv[optind], "help") && !argv[optind+1]) {
6550 log_error("This command expects one or more "
6551 "unit names. Did you mean --help?");
6555 for (; verb->verb; verb++)
6556 if (streq(argv[optind], verb->verb))
6559 log_error("Unknown operation '%s'.", argv[optind]);
6564 switch (verb->argc_cmp) {
6567 if (left != verb->argc) {
6568 log_error("Invalid number of arguments.");
6575 if (left < verb->argc) {
6576 log_error("Too few arguments.");
6583 if (left > verb->argc) {
6584 log_error("Too many arguments.");
6591 assert_not_reached("Unknown comparison operator.");
6594 /* Require a bus connection for all operations but
6596 if (verb->bus == NOBUS) {
6597 if (!bus && !avoid_bus()) {
6598 log_error("Failed to get D-Bus connection: %s", strerror(-bus_error));
6603 if (running_in_chroot() > 0) {
6604 log_info("Running in chroot, ignoring request.");
6608 if ((verb->bus != FORCE || arg_force <= 0) && !bus) {
6609 log_error("Failed to get D-Bus connection: %s", strerror(-bus_error));
6614 return verb->dispatch(bus, argv + optind);
6617 static int send_shutdownd(usec_t t, char mode, bool dry_run, bool warn, const char *message) {
6619 struct sd_shutdown_command c = {
6626 union sockaddr_union sockaddr = {
6627 .un.sun_family = AF_UNIX,
6628 .un.sun_path = "/run/systemd/shutdownd",
6631 struct iovec iovec[2] = {{
6632 .iov_base = (char*) &c,
6633 .iov_len = offsetof(struct sd_shutdown_command, wall_message),
6636 struct msghdr msghdr = {
6637 .msg_name = &sockaddr,
6638 .msg_namelen = offsetof(struct sockaddr_un, sun_path)
6639 + strlen("/run/systemd/shutdownd"),
6644 _cleanup_close_ int fd;
6646 fd = socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0);
6650 if (!isempty(message)) {
6651 iovec[1].iov_base = (char*) message;
6652 iovec[1].iov_len = strlen(message);
6653 msghdr.msg_iovlen++;
6656 if (sendmsg(fd, &msghdr, MSG_NOSIGNAL) < 0)
6662 static int reload_with_fallback(sd_bus *bus) {
6665 /* First, try systemd via D-Bus. */
6666 if (daemon_reload(bus, NULL) >= 0)
6670 /* Nothing else worked, so let's try signals */
6671 assert(arg_action == ACTION_RELOAD || arg_action == ACTION_REEXEC);
6673 if (kill(1, arg_action == ACTION_RELOAD ? SIGHUP : SIGTERM) < 0) {
6674 log_error("kill() failed: %m");
6681 static int start_with_fallback(sd_bus *bus) {
6684 /* First, try systemd via D-Bus. */
6685 if (start_unit(bus, NULL) >= 0)
6689 /* Nothing else worked, so let's try
6691 if (talk_initctl() > 0)
6694 log_error("Failed to talk to init daemon.");
6698 warn_wall(arg_action);
6702 static int halt_now(enum action a) {
6704 /* Make sure C-A-D is handled by the kernel from this
6706 reboot(RB_ENABLE_CAD);
6711 log_info("Halting.");
6712 reboot(RB_HALT_SYSTEM);
6715 case ACTION_POWEROFF:
6716 log_info("Powering off.");
6717 reboot(RB_POWER_OFF);
6720 case ACTION_REBOOT: {
6721 _cleanup_free_ char *param = NULL;
6723 if (read_one_line_file(REBOOT_PARAM_FILE, ¶m) >= 0) {
6724 log_info("Rebooting with argument '%s'.", param);
6725 syscall(SYS_reboot, LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2,
6726 LINUX_REBOOT_CMD_RESTART2, param);
6729 log_info("Rebooting.");
6730 reboot(RB_AUTOBOOT);
6735 assert_not_reached("Unknown action.");
6739 static int halt_main(sd_bus *bus) {
6742 r = check_inhibitors(bus, arg_action);
6746 if (geteuid() != 0) {
6747 /* Try logind if we are a normal user and no special
6748 * mode applies. Maybe PolicyKit allows us to shutdown
6751 if (arg_when <= 0 &&
6754 (arg_action == ACTION_POWEROFF ||
6755 arg_action == ACTION_REBOOT)) {
6756 r = reboot_with_logind(bus, arg_action);
6761 log_error("Must be root.");
6766 _cleanup_free_ char *m;
6768 m = strv_join(arg_wall, " ");
6772 r = send_shutdownd(arg_when,
6773 arg_action == ACTION_HALT ? 'H' :
6774 arg_action == ACTION_POWEROFF ? 'P' :
6775 arg_action == ACTION_KEXEC ? 'K' :
6782 log_warning("Failed to talk to shutdownd, proceeding with immediate shutdown: %s", strerror(-r));
6784 char date[FORMAT_TIMESTAMP_MAX];
6786 log_info("Shutdown scheduled for %s, use 'shutdown -c' to cancel.",
6787 format_timestamp(date, sizeof(date), arg_when));
6792 if (!arg_dry && !arg_force)
6793 return start_with_fallback(bus);
6796 if (sd_booted() > 0)
6797 log_debug("Not writing utmp record, assuming that systemd-update-utmp is used.");
6799 r = utmp_put_shutdown();
6801 log_warning("Failed to write utmp record: %s", strerror(-r));
6808 r = halt_now(arg_action);
6809 log_error("Failed to reboot: %s", strerror(-r));
6814 static int runlevel_main(void) {
6815 int r, runlevel, previous;
6817 r = utmp_get_runlevel(&runlevel, &previous);
6824 previous <= 0 ? 'N' : previous,
6825 runlevel <= 0 ? 'N' : runlevel);
6830 int main(int argc, char*argv[]) {
6831 _cleanup_bus_close_unref_ sd_bus *bus = NULL;
6834 setlocale(LC_ALL, "");
6835 log_parse_environment();
6838 /* Explicitly not on_tty() to avoid setting cached value.
6839 * This becomes relevant for piping output which might be
6841 original_stdout_is_tty = isatty(STDOUT_FILENO);
6843 r = parse_argv(argc, argv);
6847 /* /sbin/runlevel doesn't need to communicate via D-Bus, so
6848 * let's shortcut this */
6849 if (arg_action == ACTION_RUNLEVEL) {
6850 r = runlevel_main();
6854 if (running_in_chroot() > 0 && arg_action != ACTION_SYSTEMCTL) {
6855 log_info("Running in chroot, ignoring request.");
6861 r = bus_open_transport_systemd(arg_transport, arg_host, arg_scope != UNIT_FILE_SYSTEM, &bus);
6863 /* systemctl_main() will print an error message for the bus
6864 * connection, but only if it needs to */
6866 switch (arg_action) {
6868 case ACTION_SYSTEMCTL:
6869 r = systemctl_main(bus, argc, argv, r);
6873 case ACTION_POWEROFF:
6879 case ACTION_RUNLEVEL2:
6880 case ACTION_RUNLEVEL3:
6881 case ACTION_RUNLEVEL4:
6882 case ACTION_RUNLEVEL5:
6884 case ACTION_EMERGENCY:
6885 case ACTION_DEFAULT:
6886 r = start_with_fallback(bus);
6891 r = reload_with_fallback(bus);
6894 case ACTION_CANCEL_SHUTDOWN: {
6895 _cleanup_free_ char *m = NULL;
6898 m = strv_join(arg_wall, " ");
6905 r = send_shutdownd(arg_when, SD_SHUTDOWN_NONE, false, !arg_no_wall, m);
6907 log_warning("Failed to talk to shutdownd, shutdown hasn't been cancelled: %s", strerror(-r));
6911 case ACTION_RUNLEVEL:
6912 case _ACTION_INVALID:
6914 assert_not_reached("Unknown action");
6919 ask_password_agent_close();
6920 polkit_agent_close();
6922 strv_free(arg_types);
6923 strv_free(arg_states);
6924 strv_free(arg_properties);
6926 return r < 0 ? EXIT_FAILURE : r;