]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/systemctl/systemctl.c
Merge pull request #12946 from poettering/blockdev-tweaks
[thirdparty/systemd.git] / src / systemctl / systemctl.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
7e4249b9 2
03a7b521
LP
3#include <errno.h>
4#include <fcntl.h>
7e4249b9 5#include <getopt.h>
a9cdc94f 6#include <locale.h>
7e4249b9 7#include <stdbool.h>
03a7b521
LP
8#include <stddef.h>
9#include <stdio.h>
7e4249b9 10#include <string.h>
4c787df7 11#include <sys/mount.h>
4bb2e9d4 12#include <sys/prctl.h>
03a7b521 13#include <sys/reboot.h>
f1c5860b 14#include <sys/socket.h>
03a7b521 15#include <unistd.h>
81527be1 16
03a7b521 17#include "sd-bus.h"
f459b602 18#include "sd-daemon.h"
adb6cd9b 19#include "sd-event.h"
f459b602 20#include "sd-login.h"
03a7b521 21
b5efdb8a 22#include "alloc-util.h"
4bb2e9d4 23#include "bootspec.h"
03a7b521
LP
24#include "bus-common-errors.h"
25#include "bus-error.h"
26#include "bus-message.h"
25b1d72d 27#include "bus-unit-procs.h"
291d565a 28#include "bus-unit-util.h"
03a7b521 29#include "bus-util.h"
e45c81b8 30#include "bus-wait-for-jobs.h"
ab35fb1b 31#include "cgroup-show.h"
c6c18be3 32#include "cgroup-util.h"
cda134ab 33#include "copy.h"
a047f4f1 34#include "cpu-set-util.h"
ad2a0358 35#include "dropin.h"
5bdf2243 36#include "efivars.h"
03a7b521 37#include "env-util.h"
804ee07c 38#include "escape.h"
b3d59367 39#include "exec-util.h"
03a7b521 40#include "exit-status.h"
3ffd4af2 41#include "fd-util.h"
f97b34a6 42#include "format-util.h"
f4f15635 43#include "fs-util.h"
7d50b32a 44#include "glob-util.h"
08f3be7a 45#include "hexdecoct.h"
c52a937b 46#include "hostname-util.h"
0a970718 47#include "in-addr-util.h"
03a7b521
LP
48#include "initreq.h"
49#include "install.h"
c004493c 50#include "io-util.h"
305a2850 51#include "journal-util.h"
03a7b521 52#include "list.h"
8752c575 53#include "locale-util.h"
03a7b521
LP
54#include "log.h"
55#include "logs-show.h"
56#include "macro.h"
d1405af3 57#include "main-func.h"
0a970718 58#include "memory-util.h"
03a7b521
LP
59#include "mkdir.h"
60#include "pager.h"
6bedfcbb 61#include "parse-util.h"
03a7b521
LP
62#include "path-lookup.h"
63#include "path-util.h"
294bf0c3 64#include "pretty-print.h"
01771226 65#include "proc-cmdline.h"
03a7b521 66#include "process-util.h"
e3631d1c 67#include "reboot-util.h"
78f22b97 68#include "rlimit-util.h"
03a7b521 69#include "set.h"
592705f2 70#include "sigbus.h"
24882e06 71#include "signal-util.h"
03a7b521 72#include "socket-util.h"
760877e9 73#include "sort-util.h"
03a7b521
LP
74#include "spawn-ask-password-agent.h"
75#include "spawn-polkit-agent.h"
76#include "special.h"
8fcde012 77#include "stat-util.h"
8559e61d 78#include "string-table.h"
03a7b521 79#include "strv.h"
63a3b3cb 80#include "sysv-compat.h"
03a7b521 81#include "terminal-util.h"
e4de7287 82#include "tmpfile-util.h"
89ada3ba 83#include "unit-def.h"
03a7b521 84#include "unit-name.h"
b1d4f8e1 85#include "user-util.h"
305a2850 86#include "utf8.h"
03a7b521 87#include "utmp-wtmp.h"
e449de87 88#include "verbs.h"
7f4b3c5e 89#include "virt.h"
7e4249b9 90
20b3f379 91static char **arg_types = NULL;
9b9b3d36 92static char **arg_states = NULL;
20b3f379 93static char **arg_properties = NULL;
7e4249b9 94static bool arg_all = false;
afba4199
ZJS
95static enum dependency {
96 DEPENDENCY_FORWARD,
97 DEPENDENCY_REVERSE,
98 DEPENDENCY_AFTER,
99 DEPENDENCY_BEFORE,
071066a5 100 _DEPENDENCY_MAX
afba4199 101} arg_dependency = DEPENDENCY_FORWARD;
e67c3609 102static const char *arg_job_mode = "replace";
729e3769 103static UnitFileScope arg_scope = UNIT_FILE_SYSTEM;
93a08841 104static bool arg_wait = false;
ee5762e3 105static bool arg_no_block = false;
ebed32bf 106static bool arg_no_legend = false;
0221d68a 107static PagerFlags arg_pager_flags = 0;
e4b61340 108static bool arg_no_wtmp = false;
f3f054f0 109static bool arg_no_sync = false;
514f4ef5 110static bool arg_no_wall = false;
ee5762e3 111static bool arg_no_reload = false;
4f9a9105 112static bool arg_value = false;
991f2a39 113static bool arg_show_types = false;
b37844d3 114static bool arg_ignore_inhibitors = false;
1ae17672 115static bool arg_dry_run = false;
0183528f 116static bool arg_quiet = false;
ee5762e3 117static bool arg_full = false;
1238ee09 118static bool arg_recursive = false;
85d9b598 119static bool arg_show_transaction = false;
e606bb61 120static int arg_force = 0;
16f017fa 121static bool arg_ask_password = false;
729e3769 122static bool arg_runtime = false;
d309c1c3 123static UnitFilePresetMode arg_preset_mode = UNIT_FILE_PRESET_FULL;
e4b61340 124static char **arg_wall = NULL;
8a0867d6 125static const char *arg_kill_who = NULL;
8a0867d6 126static int arg_signal = SIGTERM;
0f03c2a4 127static char *arg_root = NULL;
f6144808 128static usec_t arg_when = 0;
4445a875 129static enum action {
e4b61340
LP
130 ACTION_SYSTEMCTL,
131 ACTION_HALT,
132 ACTION_POWEROFF,
133 ACTION_REBOOT,
20b09ca7
LP
134 ACTION_KEXEC,
135 ACTION_EXIT,
6edd7d0a
LP
136 ACTION_SUSPEND,
137 ACTION_HIBERNATE,
6524990f 138 ACTION_HYBRID_SLEEP,
e68c79db 139 ACTION_SUSPEND_THEN_HIBERNATE,
e4b61340
LP
140 ACTION_RUNLEVEL2,
141 ACTION_RUNLEVEL3,
142 ACTION_RUNLEVEL4,
143 ACTION_RUNLEVEL5,
144 ACTION_RESCUE,
514f4ef5
LP
145 ACTION_EMERGENCY,
146 ACTION_DEFAULT,
e4b61340
LP
147 ACTION_RELOAD,
148 ACTION_REEXEC,
149 ACTION_RUNLEVEL,
f6144808 150 ACTION_CANCEL_SHUTDOWN,
913c1916
AJ
151 _ACTION_MAX,
152 _ACTION_INVALID = -1
e4b61340 153} arg_action = ACTION_SYSTEMCTL;
f459b602 154static BusTransport arg_transport = BUS_TRANSPORT_LOCAL;
fc2ffaf1 155static const char *arg_host = NULL;
df50185b
LP
156static unsigned arg_lines = 10;
157static OutputMode arg_output = OUTPUT_SHORT;
5d0c05e5 158static bool arg_plain = false;
5bdf2243 159static bool arg_firmware_setup = false;
97af80c5
LP
160static usec_t arg_boot_loader_menu = USEC_INFINITY;
161static const char *arg_boot_loader_entry = NULL;
57ab2eab 162static bool arg_now = false;
82948f6c
LP
163static bool arg_jobs_before = false;
164static bool arg_jobs_after = false;
1238ee09 165
61ff45db
LP
166STATIC_DESTRUCTOR_REGISTER(arg_wall, strv_freep);
167STATIC_DESTRUCTOR_REGISTER(arg_root, freep);
168STATIC_DESTRUCTOR_REGISTER(arg_types, strv_freep);
169STATIC_DESTRUCTOR_REGISTER(arg_states, strv_freep);
170STATIC_DESTRUCTOR_REGISTER(arg_properties, strv_freep);
171
e449de87 172static int daemon_reload(int argc, char *argv[], void* userdata);
2853b60a 173static int trivial_method(int argc, char *argv[], void *userdata);
477def80 174static int halt_now(enum action a);
fa0d5878 175static int get_state_one_unit(sd_bus *bus, const char *name, UnitActiveState *active_state);
dbc2c080 176
4fbd7192
LP
177static bool original_stdout_is_tty;
178
179typedef enum BusFocus {
180 BUS_FULL, /* The full bus indicated via --system or --user */
181 BUS_MANAGER, /* The manager itself, possibly directly, possibly via the bus */
182 _BUS_FOCUS_MAX
183} BusFocus;
184
5238e957 185static sd_bus *buses[_BUS_FOCUS_MAX] = {};
4fbd7192 186
b3796dd8
JS
187static UnitFileFlags args_to_flags(void) {
188 return (arg_runtime ? UNIT_FILE_RUNTIME : 0) |
189 (arg_force ? UNIT_FILE_FORCE : 0);
190}
191
4fbd7192
LP
192static int acquire_bus(BusFocus focus, sd_bus **ret) {
193 int r;
194
195 assert(focus < _BUS_FOCUS_MAX);
196 assert(ret);
197
198 /* We only go directly to the manager, if we are using a local transport */
199 if (arg_transport != BUS_TRANSPORT_LOCAL)
200 focus = BUS_FULL;
201
d4015567
LP
202 if (getenv_bool("SYSTEMCTL_FORCE_BUS") > 0)
203 focus = BUS_FULL;
204
5238e957 205 if (!buses[focus]) {
4fbd7192
LP
206 bool user;
207
208 user = arg_scope != UNIT_FILE_SYSTEM;
209
210 if (focus == BUS_MANAGER)
5238e957 211 r = bus_connect_transport_systemd(arg_transport, arg_host, user, &buses[focus]);
4fbd7192 212 else
5238e957 213 r = bus_connect_transport(arg_transport, arg_host, user, &buses[focus]);
4fbd7192
LP
214 if (r < 0)
215 return log_error_errno(r, "Failed to connect to bus: %m");
216
5238e957 217 (void) sd_bus_set_allow_interactive_authorization(buses[focus], arg_ask_password);
4fbd7192
LP
218 }
219
5238e957 220 *ret = buses[focus];
4fbd7192
LP
221 return 0;
222}
223
224static void release_busses(void) {
225 BusFocus w;
226
227 for (w = 0; w < _BUS_FOCUS_MAX; w++)
5238e957 228 buses[w] = sd_bus_flush_close_unref(buses[w]);
4fbd7192
LP
229}
230
6bb92a16 231static void ask_password_agent_open_if_enabled(void) {
729e3769 232 /* Open the password agent as a child process if necessary */
501fc174 233
1ae17672
ZJS
234 if (arg_dry_run)
235 return;
236
501fc174
LP
237 if (!arg_ask_password)
238 return;
715554e7 239
729e3769 240 if (arg_scope != UNIT_FILE_SYSTEM)
501fc174
LP
241 return;
242
cbc9fbd1
LP
243 if (arg_transport != BUS_TRANSPORT_LOCAL)
244 return;
245
6bb92a16
LP
246 ask_password_agent_open();
247}
248
8a4b13c5 249static void polkit_agent_open_maybe(void) {
6bb92a16
LP
250 /* Open the polkit agent as a child process if necessary */
251
6bb92a16
LP
252 if (arg_scope != UNIT_FILE_SYSTEM)
253 return;
254
8a4b13c5 255 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
501fc174
LP
256}
257
3c756001
LP
258static OutputFlags get_output_flags(void) {
259 return
260 arg_all * OUTPUT_SHOW_ALL |
459b9f9f 261 (arg_full || !on_tty() || pager_have()) * OUTPUT_FULL_WIDTH |
40c9fe4c 262 colors_enabled() * OUTPUT_COLOR |
8b0cc9a3 263 !arg_quiet * OUTPUT_WARN_CUTOFF;
3c756001
LP
264}
265
f459b602 266static int translate_bus_error_to_exit_status(int r, const sd_bus_error *error) {
22f4096c
LP
267 assert(error);
268
f459b602 269 if (!sd_bus_error_is_set(error))
22f4096c
LP
270 return r;
271
f459b602
MAP
272 if (sd_bus_error_has_name(error, SD_BUS_ERROR_ACCESS_DENIED) ||
273 sd_bus_error_has_name(error, BUS_ERROR_ONLY_BY_DEPENDENCY) ||
274 sd_bus_error_has_name(error, BUS_ERROR_NO_ISOLATION) ||
275 sd_bus_error_has_name(error, BUS_ERROR_TRANSACTION_IS_DESTRUCTIVE))
22f4096c
LP
276 return EXIT_NOPERMISSION;
277
f459b602 278 if (sd_bus_error_has_name(error, BUS_ERROR_NO_SUCH_UNIT))
22f4096c
LP
279 return EXIT_NOTINSTALLED;
280
f459b602 281 if (sd_bus_error_has_name(error, BUS_ERROR_JOB_TYPE_NOT_APPLICABLE) ||
718db961 282 sd_bus_error_has_name(error, SD_BUS_ERROR_NOT_SUPPORTED))
22f4096c
LP
283 return EXIT_NOTIMPLEMENTED;
284
f459b602 285 if (sd_bus_error_has_name(error, BUS_ERROR_LOAD_FAILED))
22f4096c
LP
286 return EXIT_NOTCONFIGURED;
287
288 if (r != 0)
289 return r;
290
291 return EXIT_FAILURE;
292}
293
4fbd7192 294static bool install_client_side(void) {
4fbd7192
LP
295 /* Decides when to execute enable/disable/... operations
296 * client-side rather than server-side. */
4f16c1f4 297
f38951a6 298 if (running_in_chroot_or_offline())
729e3769
LP
299 return true;
300
301 if (sd_booted() <= 0)
302 return true;
303
304 if (!isempty(arg_root))
305 return true;
306
307 if (arg_scope == UNIT_FILE_GLOBAL)
308 return true;
309
b41b9d2a
LP
310 /* Unsupported environment variable, mostly for debugging purposes */
311 if (getenv_bool("SYSTEMCTL_INSTALL_CLIENT_SIDE") > 0)
312 return true;
313
729e3769
LP
314 return false;
315}
316
93bab288 317static int compare_unit_info(const UnitInfo *a, const UnitInfo *b) {
36c32ba2 318 const char *d1, *d2;
1238ee09
LP
319 int r;
320
321 /* First, order by machine */
93bab288 322 if (!a->machine && b->machine)
1238ee09 323 return -1;
93bab288 324 if (a->machine && !b->machine)
1238ee09 325 return 1;
93bab288
YW
326 if (a->machine && b->machine) {
327 r = strcasecmp(a->machine, b->machine);
1238ee09
LP
328 if (r != 0)
329 return r;
330 }
36c32ba2 331
1238ee09 332 /* Second, order by unit type */
93bab288
YW
333 d1 = strrchr(a->id, '.');
334 d2 = strrchr(b->id, '.');
36c32ba2 335 if (d1 && d2) {
f84190d8
LP
336 r = strcasecmp(d1, d2);
337 if (r != 0)
36c32ba2
LP
338 return r;
339 }
340
1238ee09 341 /* Third, order by name */
93bab288 342 return strcasecmp(a->id, b->id);
36c32ba2
LP
343}
344
16484a8a
ZJS
345static const char* unit_type_suffix(const char *name) {
346 const char *dot;
347
348 dot = strrchr(name, '.');
349 if (!dot)
350 return "";
351
352 return dot + 1;
353}
354
d8fba7c6 355static bool output_show_unit(const UnitInfo *u, char **patterns) {
f8591ee1
LP
356 assert(u);
357
2404701e 358 if (!strv_fnmatch_or_empty(patterns, u->id, FNM_NOESCAPE))
d8fba7c6 359 return false;
d8fba7c6 360
16484a8a
ZJS
361 if (arg_types && !strv_find(arg_types, unit_type_suffix(u->id)))
362 return false;
6c71341a
ZJS
363
364 if (arg_all)
365 return true;
366
409472cb
FB
367 /* Note that '--all' is not purely a state filter, but also a
368 * filter that hides units that "follow" other units (which is
369 * used for device units that appear under different names). */
370 if (!isempty(u->following))
371 return false;
372
ebc96265
FB
373 if (!strv_isempty(arg_states))
374 return true;
375
376 /* By default show all units except the ones in inactive
377 * state and with no pending job */
6c71341a
ZJS
378 if (u->job_id > 0)
379 return true;
380
409472cb 381 if (streq(u->active_state, "inactive"))
6c71341a
ZJS
382 return false;
383
384 return true;
33330222
ZJS
385}
386
1238ee09 387static int output_units_list(const UnitInfo *unit_infos, unsigned c) {
b5d7f1bb 388 unsigned circle_len = 0, id_len, max_id_len, load_len, active_len, sub_len, job_len, desc_len, max_desc_len;
f459b602 389 const UnitInfo *u;
a1074881 390 unsigned n_shown = 0;
b5d7f1bb 391 int job_count = 0;
0221d68a 392 bool full = arg_full || FLAGS_SET(arg_pager_flags, PAGER_DISABLE);
33330222 393
fbd0b64f
LP
394 max_id_len = STRLEN("UNIT");
395 load_len = STRLEN("LOAD");
396 active_len = STRLEN("ACTIVE");
397 sub_len = STRLEN("SUB");
398 job_len = STRLEN("JOB");
399 max_desc_len = STRLEN("DESCRIPTION");
b036fc00
LP
400
401 for (u = unit_infos; u < unit_infos + c; u++) {
1238ee09 402 max_id_len = MAX(max_id_len, strlen(u->id) + (u->machine ? strlen(u->machine)+1 : 0));
a1074881 403 load_len = MAX(load_len, strlen(u->load_state));
b036fc00
LP
404 active_len = MAX(active_len, strlen(u->active_state));
405 sub_len = MAX(sub_len, strlen(u->sub_state));
b5d7f1bb 406 max_desc_len = MAX(max_desc_len, strlen(u->description));
f459b602 407
ccd41387 408 if (u->job_id != 0) {
b036fc00 409 job_len = MAX(job_len, strlen(u->job_type));
ccd41387
ZJS
410 job_count++;
411 }
90c3f79d
LP
412
413 if (!arg_no_legend &&
414 (streq(u->active_state, "failed") ||
c4555ad8 415 STR_IN_SET(u->load_state, "error", "not-found", "bad-setting", "masked")))
90c3f79d 416 circle_len = 2;
33330222
ZJS
417 }
418
184ecaf7 419 if (!arg_full && original_stdout_is_tty) {
4deb3b93 420 unsigned basic_len;
cbc9fbd1 421
b5d7f1bb 422 id_len = MIN(max_id_len, 25u); /* as much as it needs, but at most 25 for now */
a9bd056a 423 basic_len = circle_len + 1 + id_len + 1 + load_len + 1 + active_len + 1 + sub_len + 1;
cbc9fbd1 424
ccd41387
ZJS
425 if (job_count)
426 basic_len += job_len + 1;
cbc9fbd1 427
4deb3b93
MS
428 if (basic_len < (unsigned) columns()) {
429 unsigned extra_len, incr;
430 extra_len = columns() - basic_len;
cbc9fbd1 431
4deb3b93
MS
432 /* Either UNIT already got 25, or is fully satisfied.
433 * Grant up to 25 to DESC now. */
9607d947 434 incr = MIN(extra_len, 25u);
b5d7f1bb 435 desc_len = incr;
4deb3b93 436 extra_len -= incr;
cbc9fbd1 437
b5d7f1bb
LP
438 /* Of the remainder give as much as the ID needs to the ID, and give the rest to the
439 * description but not more than it needs. */
4deb3b93 440 if (extra_len > 0) {
b5d7f1bb 441 incr = MIN(max_id_len - id_len, extra_len);
4deb3b93 442 id_len += incr;
b5d7f1bb 443 desc_len += MIN(extra_len - incr, max_desc_len - desc_len);
4deb3b93 444 }
43479f8d
ZJS
445 } else
446 desc_len = 0;
b5d7f1bb 447 } else {
4deb3b93 448 id_len = max_id_len;
b5d7f1bb
LP
449 desc_len = max_desc_len;
450 }
4deb3b93 451
b036fc00 452 for (u = unit_infos; u < unit_infos + c; u++) {
1238ee09 453 _cleanup_free_ char *e = NULL, *j = NULL;
16484a8a 454 const char *on_underline = "", *off_underline = "";
90c3f79d
LP
455 const char *on_loaded = "", *off_loaded = "";
456 const char *on_active = "", *off_active = "";
457 const char *on_circle = "", *off_circle = "";
1238ee09 458 const char *id;
16484a8a 459 bool circle = false, underline = false;
b036fc00 460
ad94ad63 461 if (!n_shown && !arg_no_legend) {
90c3f79d
LP
462
463 if (circle_len > 0)
464 fputs(" ", stdout);
465
16484a8a
ZJS
466 printf("%s%-*s %-*s %-*s %-*s ",
467 ansi_underline(),
cbc9fbd1
LP
468 id_len, "UNIT",
469 load_len, "LOAD",
470 active_len, "ACTIVE",
471 sub_len, "SUB");
472
ccd41387
ZJS
473 if (job_count)
474 printf("%-*s ", job_len, "JOB");
cbc9fbd1 475
b5d7f1bb
LP
476 printf("%-*.*s%s\n",
477 desc_len,
0221d68a 478 full ? -1 : (int) desc_len,
16484a8a
ZJS
479 "DESCRIPTION",
480 ansi_normal());
ad94ad63
ZJS
481 }
482
688c6725
LP
483 n_shown++;
484
16484a8a
ZJS
485 if (u + 1 < unit_infos + c &&
486 !streq(unit_type_suffix(u->id), unit_type_suffix((u + 1)->id))) {
487 on_underline = ansi_underline();
488 off_underline = ansi_normal();
489 underline = true;
490 }
491
c4555ad8 492 if (STR_IN_SET(u->load_state, "error", "not-found", "bad-setting", "masked") && !arg_plain) {
90c3f79d 493 on_circle = ansi_highlight_yellow();
16484a8a 494 off_circle = ansi_normal();
90c3f79d 495 circle = true;
16484a8a 496 on_loaded = underline ? ansi_highlight_red_underline() : ansi_highlight_red();
835a19e0 497 off_loaded = underline ? on_underline : ansi_normal();
250ba664 498 } else if (streq(u->active_state, "failed") && !arg_plain) {
16484a8a
ZJS
499 on_circle = ansi_highlight_red();
500 off_circle = ansi_normal();
90c3f79d 501 circle = true;
16484a8a 502 on_active = underline ? ansi_highlight_red_underline() : ansi_highlight_red();
835a19e0 503 off_active = underline ? on_underline : ansi_normal();
90c3f79d 504 }
eb68c413 505
1238ee09 506 if (u->machine) {
605405c6 507 j = strjoin(u->machine, ":", u->id);
1238ee09
LP
508 if (!j)
509 return log_oom();
510
511 id = j;
512 } else
513 id = u->id;
514
515 if (arg_full) {
516 e = ellipsize(id, id_len, 33);
517 if (!e)
518 return log_oom();
519
520 id = e;
521 }
eb68c413 522
90c3f79d 523 if (circle_len > 0)
9a6f746f 524 printf("%s%s%s ", on_circle, circle ? special_glyph(SPECIAL_GLYPH_BLACK_CIRCLE) : " ", off_circle);
90c3f79d 525
16484a8a
ZJS
526 printf("%s%s%-*s%s %s%-*s%s %s%-*s %-*s%s %-*s",
527 on_underline,
90c3f79d 528 on_active, id_len, id, off_active,
a1074881 529 on_loaded, load_len, u->load_state, off_loaded,
b036fc00
LP
530 on_active, active_len, u->active_state,
531 sub_len, u->sub_state, off_active,
ccd41387 532 job_count ? job_len + 1 : 0, u->job_id ? u->job_type : "");
cbc9fbd1 533
b5d7f1bb
LP
534 printf("%-*.*s%s\n",
535 desc_len,
0221d68a 536 full ? -1 : (int) desc_len,
16484a8a
ZJS
537 u->description,
538 off_underline);
eb68c413
ZJS
539 }
540
ebed32bf 541 if (!arg_no_legend) {
57f7ae4f
ZJS
542 const char *on, *off;
543
544 if (n_shown) {
90c3f79d
LP
545 puts("\n"
546 "LOAD = Reflects whether the unit definition was properly loaded.\n"
e3e0314b
ZJS
547 "ACTIVE = The high-level unit activation state, i.e. generalization of SUB.\n"
548 "SUB = The low-level unit activation state, values depend on unit type.");
549 puts(job_count ? "JOB = Pending job for the unit.\n" : "");
0b5a519c 550 on = ansi_highlight();
1fc464f6 551 off = ansi_normal();
57f7ae4f 552 } else {
0b5a519c 553 on = ansi_highlight_red();
1fc464f6 554 off = ansi_normal();
57f7ae4f 555 }
eb68c413
ZJS
556
557 if (arg_all)
48c2826b 558 printf("%s%u loaded units listed.%s\n"
57f7ae4f
ZJS
559 "To show all installed unit files use 'systemctl list-unit-files'.\n",
560 on, n_shown, off);
eb68c413 561 else
48c2826b 562 printf("%s%u loaded units listed.%s Pass --all to see loaded but inactive units, too.\n"
57f7ae4f
ZJS
563 "To show all installed unit files use 'systemctl list-unit-files'.\n",
564 on, n_shown, off);
eb68c413 565 }
1238ee09
LP
566
567 return 0;
eb68c413
ZJS
568}
569
a00963a2 570static int get_unit_list(
f459b602 571 sd_bus *bus,
1238ee09
LP
572 const char *machine,
573 char **patterns,
574 UnitInfo **unit_infos,
575 int c,
576 sd_bus_message **_reply) {
a00963a2 577
4afd3348
LP
578 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
579 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
580 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
ca2d3784 581 size_t size = c;
1238ee09 582 int r;
f459b602 583 UnitInfo u;
313fe66f 584 bool fallback = false;
7e4249b9 585
265a7a2a 586 assert(bus);
1238ee09 587 assert(unit_infos);
f459b602 588 assert(_reply);
1238ee09 589
cdc06ed7 590 r = sd_bus_message_new_method_call(
f22f08cd 591 bus,
cdc06ed7 592 &m,
f22f08cd
SP
593 "org.freedesktop.systemd1",
594 "/org/freedesktop/systemd1",
595 "org.freedesktop.systemd1.Manager",
313fe66f 596 "ListUnitsByPatterns");
cdc06ed7
DS
597 if (r < 0)
598 return bus_log_create_error(r);
599
600 r = sd_bus_message_append_strv(m, arg_states);
601 if (r < 0)
602 return bus_log_create_error(r);
603
313fe66f 604 r = sd_bus_message_append_strv(m, patterns);
605 if (r < 0)
606 return bus_log_create_error(r);
607
cdc06ed7 608 r = sd_bus_call(bus, m, 0, &error, &reply);
33d52725
ZJS
609 if (r < 0 && (sd_bus_error_has_name(&error, SD_BUS_ERROR_UNKNOWN_METHOD) ||
610 sd_bus_error_has_name(&error, SD_BUS_ERROR_ACCESS_DENIED))) {
313fe66f 611 /* Fallback to legacy ListUnitsFiltered method */
612 fallback = true;
613 log_debug_errno(r, "Failed to list units: %s Falling back to ListUnitsFiltered method.", bus_error_message(&error, r));
614 m = sd_bus_message_unref(m);
615 sd_bus_error_free(&error);
616
617 r = sd_bus_message_new_method_call(
618 bus,
619 &m,
620 "org.freedesktop.systemd1",
621 "/org/freedesktop/systemd1",
622 "org.freedesktop.systemd1.Manager",
623 "ListUnitsFiltered");
624 if (r < 0)
625 return bus_log_create_error(r);
626
627 r = sd_bus_message_append_strv(m, arg_states);
628 if (r < 0)
629 return bus_log_create_error(r);
630
631 r = sd_bus_call(bus, m, 0, &error, &reply);
632 }
4c3e8e39
LP
633 if (r < 0)
634 return log_error_errno(r, "Failed to list units: %s", bus_error_message(&error, r));
7e4249b9 635
f459b602
MAP
636 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssssssouso)");
637 if (r < 0)
638 return bus_log_parse_error(r);
7e4249b9 639
f459b602 640 while ((r = bus_parse_unit_info(reply, &u)) > 0) {
1238ee09
LP
641 u.machine = machine;
642
313fe66f 643 if (!output_show_unit(&u, fallback ? patterns : NULL))
8d5ba5a9 644 continue;
7e4249b9 645
1238ee09 646 if (!GREEDY_REALLOC(*unit_infos, size, c+1))
f459b602 647 return log_oom();
36c32ba2 648
1238ee09 649 (*unit_infos)[c++] = u;
991f2a39 650 }
f459b602
MAP
651 if (r < 0)
652 return bus_log_parse_error(r);
991f2a39 653
f459b602
MAP
654 r = sd_bus_message_exit_container(reply);
655 if (r < 0)
656 return bus_log_parse_error(r);
657
1cc6c93a 658 *_reply = TAKE_PTR(reply);
f459b602 659
1238ee09
LP
660 return c;
661}
662
663static void message_set_freep(Set **set) {
224b0e7a 664 set_free_with_destructor(*set, sd_bus_message_unref);
1238ee09
LP
665}
666
667static int get_unit_list_recursive(
668 sd_bus *bus,
669 char **patterns,
670 UnitInfo **_unit_infos,
671 Set **_replies,
672 char ***_machines) {
673
674 _cleanup_free_ UnitInfo *unit_infos = NULL;
675 _cleanup_(message_set_freep) Set *replies;
676 sd_bus_message *reply;
677 int c, r;
678
679 assert(bus);
680 assert(_replies);
681 assert(_unit_infos);
682 assert(_machines);
683
d5099efc 684 replies = set_new(NULL);
1238ee09
LP
685 if (!replies)
686 return log_oom();
687
688 c = get_unit_list(bus, NULL, patterns, &unit_infos, 0, &reply);
689 if (c < 0)
690 return c;
691
692 r = set_put(replies, reply);
693 if (r < 0) {
694 sd_bus_message_unref(reply);
4c3e8e39 695 return log_oom();
1238ee09
LP
696 }
697
698 if (arg_recursive) {
699 _cleanup_strv_free_ char **machines = NULL;
700 char **i;
701
702 r = sd_get_machine_names(&machines);
703 if (r < 0)
4c3e8e39 704 return log_error_errno(r, "Failed to get machine names: %m");
1238ee09
LP
705
706 STRV_FOREACH(i, machines) {
4afd3348 707 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *container = NULL;
1238ee09
LP
708 int k;
709
de33fc62 710 r = sd_bus_open_system_machine(&container, *i);
1238ee09 711 if (r < 0) {
4c3e8e39 712 log_warning_errno(r, "Failed to connect to container %s, ignoring: %m", *i);
1238ee09
LP
713 continue;
714 }
715
716 k = get_unit_list(container, *i, patterns, &unit_infos, c, &reply);
717 if (k < 0)
718 return k;
719
720 c = k;
721
722 r = set_put(replies, reply);
723 if (r < 0) {
724 sd_bus_message_unref(reply);
4c3e8e39 725 return log_oom();
1238ee09
LP
726 }
727 }
728
1cc6c93a 729 *_machines = TAKE_PTR(machines);
1238ee09
LP
730 } else
731 *_machines = NULL;
732
1cc6c93a 733 *_unit_infos = TAKE_PTR(unit_infos);
1cc6c93a 734 *_replies = TAKE_PTR(replies);
1238ee09 735
f459b602 736 return c;
991f2a39
ZJS
737}
738
e449de87 739static int list_units(int argc, char *argv[], void *userdata) {
f459b602 740 _cleanup_free_ UnitInfo *unit_infos = NULL;
1238ee09
LP
741 _cleanup_(message_set_freep) Set *replies = NULL;
742 _cleanup_strv_free_ char **machines = NULL;
4fbd7192 743 sd_bus *bus;
991f2a39
ZJS
744 int r;
745
4fbd7192
LP
746 r = acquire_bus(BUS_MANAGER, &bus);
747 if (r < 0)
748 return r;
749
0221d68a 750 (void) pager_open(arg_pager_flags);
d2ad7e1b 751
e449de87 752 r = get_unit_list_recursive(bus, strv_skip(argv, 1), &unit_infos, &replies, &machines);
991f2a39
ZJS
753 if (r < 0)
754 return r;
755
93bab288 756 typesafe_qsort(unit_infos, r, compare_unit_info);
1238ee09 757 return output_units_list(unit_infos, r);
991f2a39
ZJS
758}
759
a00963a2 760static int get_triggered_units(
f459b602
MAP
761 sd_bus *bus,
762 const char* path,
763 char*** ret) {
a00963a2 764
4afd3348 765 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
991f2a39
ZJS
766 int r;
767
4fbd7192
LP
768 assert(bus);
769 assert(path);
770 assert(ret);
771
f459b602
MAP
772 r = sd_bus_get_property_strv(
773 bus,
774 "org.freedesktop.systemd1",
775 path,
776 "org.freedesktop.systemd1.Unit",
777 "Triggers",
778 &error,
779 ret);
f459b602 780 if (r < 0)
691395d8 781 return log_error_errno(r, "Failed to determine triggers: %s", bus_error_message(&error, r));
991f2a39
ZJS
782
783 return 0;
784}
785
f459b602
MAP
786static int get_listening(
787 sd_bus *bus,
788 const char* unit_path,
cbb76c29 789 char*** listening) {
f459b602 790
4afd3348
LP
791 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
792 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
f459b602 793 const char *type, *path;
cbb76c29 794 int r, n = 0;
991f2a39 795
f459b602
MAP
796 r = sd_bus_get_property(
797 bus,
798 "org.freedesktop.systemd1",
799 unit_path,
800 "org.freedesktop.systemd1.Socket",
801 "Listen",
802 &error,
803 &reply,
804 "a(ss)");
691395d8
LP
805 if (r < 0)
806 return log_error_errno(r, "Failed to get list of listening sockets: %s", bus_error_message(&error, r));
991f2a39 807
f459b602
MAP
808 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ss)");
809 if (r < 0)
810 return bus_log_parse_error(r);
991f2a39 811
f459b602 812 while ((r = sd_bus_message_read(reply, "(ss)", &type, &path)) > 0) {
36c32ba2 813
0d95178e 814 r = strv_extend(listening, type);
f459b602
MAP
815 if (r < 0)
816 return log_oom();
991f2a39 817
0d95178e 818 r = strv_extend(listening, path);
f459b602
MAP
819 if (r < 0)
820 return log_oom();
7e4249b9 821
cbb76c29 822 n++;
36c32ba2 823 }
f459b602
MAP
824 if (r < 0)
825 return bus_log_parse_error(r);
826
827 r = sd_bus_message_exit_container(reply);
828 if (r < 0)
829 return bus_log_parse_error(r);
36c32ba2 830
cbb76c29 831 return n;
991f2a39
ZJS
832}
833
834struct socket_info {
0cfc3525 835 const char *machine;
991f2a39
ZJS
836 const char* id;
837
838 char* type;
839 char* path;
840
841 /* Note: triggered is a list here, although it almost certainly
842 * will always be one unit. Nevertheless, dbus API allows for multiple
f7340ab2 843 * values, so let's follow that. */
991f2a39
ZJS
844 char** triggered;
845
846 /* The strv above is shared. free is set only in the first one. */
847 bool own_triggered;
848};
849
cbb76c29 850static int socket_info_compare(const struct socket_info *a, const struct socket_info *b) {
93bab288 851 int r;
cbc9fbd1 852
cbb76c29
LP
853 assert(a);
854 assert(b);
855
0cfc3525
TA
856 if (!a->machine && b->machine)
857 return -1;
858 if (a->machine && !b->machine)
859 return 1;
860 if (a->machine && b->machine) {
93bab288
YW
861 r = strcasecmp(a->machine, b->machine);
862 if (r != 0)
863 return r;
0cfc3525
TA
864 }
865
93bab288
YW
866 r = strcmp(a->path, b->path);
867 if (r == 0)
868 r = strcmp(a->type, b->type);
cbc9fbd1 869
93bab288 870 return r;
991f2a39
ZJS
871}
872
873static int output_sockets_list(struct socket_info *socket_infos, unsigned cs) {
874 struct socket_info *s;
fbd0b64f
LP
875 unsigned pathlen = STRLEN("LISTEN"),
876 typelen = STRLEN("TYPE") * arg_show_types,
877 socklen = STRLEN("UNIT"),
878 servlen = STRLEN("ACTIVATES");
991f2a39
ZJS
879 const char *on, *off;
880
881 for (s = socket_infos; s < socket_infos + cs; s++) {
991f2a39 882 unsigned tmp = 0;
cbc9fbd1 883 char **a;
991f2a39
ZJS
884
885 socklen = MAX(socklen, strlen(s->id));
886 if (arg_show_types)
887 typelen = MAX(typelen, strlen(s->type));
0cfc3525 888 pathlen = MAX(pathlen, strlen(s->path) + (s->machine ? strlen(s->machine)+1 : 0));
991f2a39
ZJS
889
890 STRV_FOREACH(a, s->triggered)
891 tmp += strlen(*a) + 2*(a != s->triggered);
892 servlen = MAX(servlen, tmp);
893 }
894
895 if (cs) {
571bfc6c
MM
896 if (!arg_no_legend)
897 printf("%-*s %-*.*s%-*s %s\n",
898 pathlen, "LISTEN",
899 typelen + arg_show_types, typelen + arg_show_types, "TYPE ",
900 socklen, "UNIT",
901 "ACTIVATES");
991f2a39
ZJS
902
903 for (s = socket_infos; s < socket_infos + cs; s++) {
0cfc3525
TA
904 _cleanup_free_ char *j = NULL;
905 const char *path;
991f2a39
ZJS
906 char **a;
907
0cfc3525 908 if (s->machine) {
605405c6 909 j = strjoin(s->machine, ":", s->path);
0cfc3525
TA
910 if (!j)
911 return log_oom();
912 path = j;
913 } else
914 path = s->path;
915
991f2a39
ZJS
916 if (arg_show_types)
917 printf("%-*s %-*s %-*s",
0cfc3525 918 pathlen, path, typelen, s->type, socklen, s->id);
991f2a39
ZJS
919 else
920 printf("%-*s %-*s",
0cfc3525 921 pathlen, path, socklen, s->id);
991f2a39
ZJS
922 STRV_FOREACH(a, s->triggered)
923 printf("%s %s",
924 a == s->triggered ? "" : ",", *a);
925 printf("\n");
926 }
927
0b5a519c 928 on = ansi_highlight();
1fc464f6 929 off = ansi_normal();
571bfc6c
MM
930 if (!arg_no_legend)
931 printf("\n");
991f2a39 932 } else {
0b5a519c 933 on = ansi_highlight_red();
1fc464f6 934 off = ansi_normal();
991f2a39
ZJS
935 }
936
571bfc6c
MM
937 if (!arg_no_legend) {
938 printf("%s%u sockets listed.%s\n", on, cs, off);
939 if (!arg_all)
940 printf("Pass --all to see loaded but inactive sockets, too.\n");
941 }
265a7a2a
ZJS
942
943 return 0;
944}
945
e449de87 946static int list_sockets(int argc, char *argv[], void *userdata) {
0cfc3525
TA
947 _cleanup_(message_set_freep) Set *replies = NULL;
948 _cleanup_strv_free_ char **machines = NULL;
f459b602 949 _cleanup_free_ UnitInfo *unit_infos = NULL;
8d5ba5a9 950 _cleanup_free_ struct socket_info *socket_infos = NULL;
f459b602 951 const UnitInfo *u;
991f2a39 952 struct socket_info *s;
cbb76c29 953 unsigned cs = 0;
991f2a39 954 size_t size = 0;
ad83b4c4 955 int r = 0, n;
4fbd7192 956 sd_bus *bus;
265a7a2a 957
4fbd7192
LP
958 r = acquire_bus(BUS_MANAGER, &bus);
959 if (r < 0)
960 return r;
961
0221d68a 962 (void) pager_open(arg_pager_flags);
d2ad7e1b 963
e449de87 964 n = get_unit_list_recursive(bus, strv_skip(argv, 1), &unit_infos, &replies, &machines);
cbb76c29
LP
965 if (n < 0)
966 return n;
265a7a2a 967
cbb76c29 968 for (u = unit_infos; u < unit_infos + n; u++) {
0d95178e 969 _cleanup_strv_free_ char **listening = NULL, **triggered = NULL;
cbb76c29 970 int i, c;
991f2a39 971
cbc9fbd1 972 if (!endswith(u->id, ".socket"))
991f2a39
ZJS
973 continue;
974
975 r = get_triggered_units(bus, u->unit_path, &triggered);
976 if (r < 0)
977 goto cleanup;
978
cbb76c29
LP
979 c = get_listening(bus, u->unit_path, &listening);
980 if (c < 0) {
981 r = c;
991f2a39 982 goto cleanup;
cbb76c29 983 }
991f2a39
ZJS
984
985 if (!GREEDY_REALLOC(socket_infos, size, cs + c)) {
986 r = log_oom();
987 goto cleanup;
988 }
989
990 for (i = 0; i < c; i++)
991 socket_infos[cs + i] = (struct socket_info) {
0cfc3525 992 .machine = u->machine,
991f2a39 993 .id = u->id,
0d95178e
KS
994 .type = listening[i*2],
995 .path = listening[i*2 + 1],
991f2a39
ZJS
996 .triggered = triggered,
997 .own_triggered = i==0,
998 };
999
1000 /* from this point on we will cleanup those socket_infos */
1001 cs += c;
0d95178e
KS
1002 free(listening);
1003 listening = triggered = NULL; /* avoid cleanup */
991f2a39
ZJS
1004 }
1005
93bab288 1006 typesafe_qsort(socket_infos, cs, socket_info_compare);
991f2a39
ZJS
1007
1008 output_sockets_list(socket_infos, cs);
1009
1010 cleanup:
1011 assert(cs == 0 || socket_infos);
1012 for (s = socket_infos; s < socket_infos + cs; s++) {
1013 free(s->type);
1014 free(s->path);
1015 if (s->own_triggered)
1016 strv_free(s->triggered);
1017 }
4445a875 1018
872c8faa 1019 return r;
4445a875
LP
1020}
1021
cbb76c29
LP
1022static int get_next_elapse(
1023 sd_bus *bus,
1024 const char *path,
1025 dual_timestamp *next) {
1026
4afd3348 1027 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
cbb76c29
LP
1028 dual_timestamp t;
1029 int r;
1030
1031 assert(bus);
1032 assert(path);
1033 assert(next);
1034
1035 r = sd_bus_get_property_trivial(
1036 bus,
1037 "org.freedesktop.systemd1",
1038 path,
1039 "org.freedesktop.systemd1.Timer",
1040 "NextElapseUSecMonotonic",
1041 &error,
1042 't',
1043 &t.monotonic);
691395d8 1044 if (r < 0)
021723c6 1045 return log_error_errno(r, "Failed to get next elapse time: %s", bus_error_message(&error, r));
cbb76c29
LP
1046
1047 r = sd_bus_get_property_trivial(
1048 bus,
1049 "org.freedesktop.systemd1",
1050 path,
1051 "org.freedesktop.systemd1.Timer",
1052 "NextElapseUSecRealtime",
1053 &error,
1054 't',
1055 &t.realtime);
691395d8 1056 if (r < 0)
021723c6 1057 return log_error_errno(r, "Failed to get next elapse time: %s", bus_error_message(&error, r));
cbb76c29
LP
1058
1059 *next = t;
1060 return 0;
1061}
1062
d784e2db
LP
1063static int get_last_trigger(
1064 sd_bus *bus,
1065 const char *path,
1066 usec_t *last) {
1067
4afd3348 1068 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
d784e2db
LP
1069 int r;
1070
1071 assert(bus);
1072 assert(path);
1073 assert(last);
1074
1075 r = sd_bus_get_property_trivial(
1076 bus,
1077 "org.freedesktop.systemd1",
1078 path,
1079 "org.freedesktop.systemd1.Timer",
dedabea4 1080 "LastTriggerUSec",
d784e2db
LP
1081 &error,
1082 't',
1083 last);
691395d8
LP
1084 if (r < 0)
1085 return log_error_errno(r, "Failed to get last trigger time: %s", bus_error_message(&error, r));
d784e2db
LP
1086
1087 return 0;
1088}
1089
cbb76c29 1090struct timer_info {
806a37e7 1091 const char* machine;
cbb76c29
LP
1092 const char* id;
1093 usec_t next_elapse;
d784e2db 1094 usec_t last_trigger;
cbb76c29
LP
1095 char** triggered;
1096};
1097
1098static int timer_info_compare(const struct timer_info *a, const struct timer_info *b) {
93bab288 1099 int r;
806a37e7 1100
cbb76c29
LP
1101 assert(a);
1102 assert(b);
1103
806a37e7
TA
1104 if (!a->machine && b->machine)
1105 return -1;
1106 if (a->machine && !b->machine)
1107 return 1;
1108 if (a->machine && b->machine) {
93bab288
YW
1109 r = strcasecmp(a->machine, b->machine);
1110 if (r != 0)
1111 return r;
806a37e7
TA
1112 }
1113
93bab288
YW
1114 r = CMP(a->next_elapse, b->next_elapse);
1115 if (r != 0)
1116 return r;
cbb76c29
LP
1117
1118 return strcmp(a->id, b->id);
1119}
1120
1121static int output_timers_list(struct timer_info *timer_infos, unsigned n) {
1122 struct timer_info *t;
1123 unsigned
fbd0b64f
LP
1124 nextlen = STRLEN("NEXT"),
1125 leftlen = STRLEN("LEFT"),
1126 lastlen = STRLEN("LAST"),
1127 passedlen = STRLEN("PASSED"),
1128 unitlen = STRLEN("UNIT"),
1129 activatelen = STRLEN("ACTIVATES");
cbb76c29
LP
1130
1131 const char *on, *off;
1132
1133 assert(timer_infos || n == 0);
1134
1135 for (t = timer_infos; t < timer_infos + n; t++) {
1136 unsigned ul = 0;
1137 char **a;
1138
1139 if (t->next_elapse > 0) {
1140 char tstamp[FORMAT_TIMESTAMP_MAX] = "", trel[FORMAT_TIMESTAMP_RELATIVE_MAX] = "";
1141
1142 format_timestamp(tstamp, sizeof(tstamp), t->next_elapse);
1143 nextlen = MAX(nextlen, strlen(tstamp) + 1);
1144
1145 format_timestamp_relative(trel, sizeof(trel), t->next_elapse);
1146 leftlen = MAX(leftlen, strlen(trel));
1147 }
1148
d784e2db
LP
1149 if (t->last_trigger > 0) {
1150 char tstamp[FORMAT_TIMESTAMP_MAX] = "", trel[FORMAT_TIMESTAMP_RELATIVE_MAX] = "";
1151
1152 format_timestamp(tstamp, sizeof(tstamp), t->last_trigger);
1153 lastlen = MAX(lastlen, strlen(tstamp) + 1);
1154
1155 format_timestamp_relative(trel, sizeof(trel), t->last_trigger);
1156 passedlen = MAX(passedlen, strlen(trel));
1157 }
1158
806a37e7 1159 unitlen = MAX(unitlen, strlen(t->id) + (t->machine ? strlen(t->machine)+1 : 0));
cbb76c29
LP
1160
1161 STRV_FOREACH(a, t->triggered)
1162 ul += strlen(*a) + 2*(a != t->triggered);
d784e2db 1163
cbb76c29
LP
1164 activatelen = MAX(activatelen, ul);
1165 }
1166
1167 if (n > 0) {
1168 if (!arg_no_legend)
d784e2db
LP
1169 printf("%-*s %-*s %-*s %-*s %-*s %s\n",
1170 nextlen, "NEXT",
1171 leftlen, "LEFT",
1172 lastlen, "LAST",
1173 passedlen, "PASSED",
1174 unitlen, "UNIT",
1175 "ACTIVATES");
cbb76c29
LP
1176
1177 for (t = timer_infos; t < timer_infos + n; t++) {
806a37e7
TA
1178 _cleanup_free_ char *j = NULL;
1179 const char *unit;
d784e2db
LP
1180 char tstamp1[FORMAT_TIMESTAMP_MAX] = "n/a", trel1[FORMAT_TIMESTAMP_RELATIVE_MAX] = "n/a";
1181 char tstamp2[FORMAT_TIMESTAMP_MAX] = "n/a", trel2[FORMAT_TIMESTAMP_RELATIVE_MAX] = "n/a";
cbb76c29
LP
1182 char **a;
1183
d784e2db
LP
1184 format_timestamp(tstamp1, sizeof(tstamp1), t->next_elapse);
1185 format_timestamp_relative(trel1, sizeof(trel1), t->next_elapse);
cbb76c29 1186
d784e2db
LP
1187 format_timestamp(tstamp2, sizeof(tstamp2), t->last_trigger);
1188 format_timestamp_relative(trel2, sizeof(trel2), t->last_trigger);
1189
806a37e7 1190 if (t->machine) {
605405c6 1191 j = strjoin(t->machine, ":", t->id);
806a37e7
TA
1192 if (!j)
1193 return log_oom();
1194 unit = j;
1195 } else
1196 unit = t->id;
1197
d784e2db 1198 printf("%-*s %-*s %-*s %-*s %-*s",
806a37e7 1199 nextlen, tstamp1, leftlen, trel1, lastlen, tstamp2, passedlen, trel2, unitlen, unit);
cbb76c29
LP
1200
1201 STRV_FOREACH(a, t->triggered)
1202 printf("%s %s",
1203 a == t->triggered ? "" : ",", *a);
1204 printf("\n");
1205 }
1206
1207 on = ansi_highlight();
1fc464f6 1208 off = ansi_normal();
cbb76c29
LP
1209 if (!arg_no_legend)
1210 printf("\n");
1211 } else {
1212 on = ansi_highlight_red();
1fc464f6 1213 off = ansi_normal();
cbb76c29
LP
1214 }
1215
1216 if (!arg_no_legend) {
1217 printf("%s%u timers listed.%s\n", on, n, off);
1218 if (!arg_all)
1219 printf("Pass --all to see loaded but inactive timers, too.\n");
1220 }
1221
1222 return 0;
1223}
1224
f5080e73
DH
1225static usec_t calc_next_elapse(dual_timestamp *nw, dual_timestamp *next) {
1226 usec_t next_elapse;
1227
1228 assert(nw);
1229 assert(next);
1230
3a43da28 1231 if (next->monotonic != USEC_INFINITY && next->monotonic > 0) {
f5080e73
DH
1232 usec_t converted;
1233
1234 if (next->monotonic > nw->monotonic)
1235 converted = nw->realtime + (next->monotonic - nw->monotonic);
1236 else
1237 converted = nw->realtime - (nw->monotonic - next->monotonic);
1238
3a43da28 1239 if (next->realtime != USEC_INFINITY && next->realtime > 0)
f5080e73
DH
1240 next_elapse = MIN(converted, next->realtime);
1241 else
1242 next_elapse = converted;
1243
1244 } else
1245 next_elapse = next->realtime;
1246
1247 return next_elapse;
1248}
1249
e449de87 1250static int list_timers(int argc, char *argv[], void *userdata) {
806a37e7
TA
1251 _cleanup_(message_set_freep) Set *replies = NULL;
1252 _cleanup_strv_free_ char **machines = NULL;
cbb76c29
LP
1253 _cleanup_free_ struct timer_info *timer_infos = NULL;
1254 _cleanup_free_ UnitInfo *unit_infos = NULL;
1255 struct timer_info *t;
1256 const UnitInfo *u;
1257 size_t size = 0;
1823b86e 1258 int n, c = 0;
cbb76c29 1259 dual_timestamp nw;
4fbd7192 1260 sd_bus *bus;
1823b86e 1261 int r = 0;
cbb76c29 1262
4fbd7192
LP
1263 r = acquire_bus(BUS_MANAGER, &bus);
1264 if (r < 0)
1265 return r;
1266
0221d68a 1267 (void) pager_open(arg_pager_flags);
d2ad7e1b 1268
e449de87 1269 n = get_unit_list_recursive(bus, strv_skip(argv, 1), &unit_infos, &replies, &machines);
cbb76c29
LP
1270 if (n < 0)
1271 return n;
1272
1273 dual_timestamp_get(&nw);
1274
1275 for (u = unit_infos; u < unit_infos + n; u++) {
1276 _cleanup_strv_free_ char **triggered = NULL;
5cb14b37 1277 dual_timestamp next = DUAL_TIMESTAMP_NULL;
d784e2db 1278 usec_t m, last = 0;
cbb76c29 1279
cbb76c29
LP
1280 if (!endswith(u->id, ".timer"))
1281 continue;
1282
1283 r = get_triggered_units(bus, u->unit_path, &triggered);
1284 if (r < 0)
1285 goto cleanup;
1286
1287 r = get_next_elapse(bus, u->unit_path, &next);
1288 if (r < 0)
1289 goto cleanup;
1290
d784e2db
LP
1291 get_last_trigger(bus, u->unit_path, &last);
1292
cbb76c29
LP
1293 if (!GREEDY_REALLOC(timer_infos, size, c+1)) {
1294 r = log_oom();
1295 goto cleanup;
1296 }
1297
f5080e73
DH
1298 m = calc_next_elapse(&nw, &next);
1299
cbb76c29 1300 timer_infos[c++] = (struct timer_info) {
806a37e7 1301 .machine = u->machine,
cbb76c29
LP
1302 .id = u->id,
1303 .next_elapse = m,
d784e2db 1304 .last_trigger = last,
1cc6c93a 1305 .triggered = TAKE_PTR(triggered),
cbb76c29 1306 };
cbb76c29
LP
1307 }
1308
93bab288 1309 typesafe_qsort(timer_infos, c, timer_info_compare);
cbb76c29
LP
1310
1311 output_timers_list(timer_infos, c);
1312
1313 cleanup:
1314 for (t = timer_infos; t < timer_infos + c; t++)
1315 strv_free(t->triggered);
1316
1317 return r;
1318}
1319
93bab288 1320static int compare_unit_file_list(const UnitFileList *a, const UnitFileList *b) {
729e3769 1321 const char *d1, *d2;
729e3769 1322
93bab288
YW
1323 d1 = strrchr(a->path, '.');
1324 d2 = strrchr(b->path, '.');
729e3769
LP
1325
1326 if (d1 && d2) {
1327 int r;
1328
1329 r = strcasecmp(d1, d2);
1330 if (r != 0)
1331 return r;
1332 }
1333
93bab288 1334 return strcasecmp(basename(a->path), basename(b->path));
729e3769
LP
1335}
1336
313fe66f 1337static bool output_show_unit_file(const UnitFileList *u, char **states, char **patterns) {
f8591ee1
LP
1338 assert(u);
1339
2404701e 1340 if (!strv_fnmatch_or_empty(patterns, basename(u->path), FNM_NOESCAPE))
d8fba7c6 1341 return false;
d8fba7c6 1342
6c71341a
ZJS
1343 if (!strv_isempty(arg_types)) {
1344 const char *dot;
1345
1346 dot = strrchr(u->path, '.');
1347 if (!dot)
1348 return false;
1349
1350 if (!strv_find(arg_types, dot+1))
1351 return false;
1352 }
1353
313fe66f 1354 if (!strv_isempty(states) &&
1355 !strv_find(states, unit_file_state_to_string(u->state)))
bceccd5e 1356 return false;
fec1530e 1357
6c71341a 1358 return true;
729e3769
LP
1359}
1360
8d5ba5a9 1361static void output_unit_file_list(const UnitFileList *units, unsigned c) {
0d292f5e 1362 unsigned max_id_len, id_cols, state_cols;
729e3769
LP
1363 const UnitFileList *u;
1364
fbd0b64f
LP
1365 max_id_len = STRLEN("UNIT FILE");
1366 state_cols = STRLEN("STATE");
cbc9fbd1 1367
1c0a113f 1368 for (u = units; u < units + c; u++) {
2b6bf07d 1369 max_id_len = MAX(max_id_len, strlen(basename(u->path)));
1c0a113f
ZJS
1370 state_cols = MAX(state_cols, strlen(unit_file_state_to_string(u->state)));
1371 }
1372
1373 if (!arg_full) {
1374 unsigned basic_cols;
cbc9fbd1 1375
9607d947 1376 id_cols = MIN(max_id_len, 25u);
1c0a113f
ZJS
1377 basic_cols = 1 + id_cols + state_cols;
1378 if (basic_cols < (unsigned) columns())
1379 id_cols += MIN(columns() - basic_cols, max_id_len - id_cols);
1380 } else
1381 id_cols = max_id_len;
1382
11690bcc 1383 if (!arg_no_legend && c > 0)
6ae3e62a
ZJS
1384 printf("%s%-*s %-*s%s\n",
1385 ansi_underline(),
cbc9fbd1 1386 id_cols, "UNIT FILE",
6ae3e62a
ZJS
1387 state_cols, "STATE",
1388 ansi_normal());
729e3769
LP
1389
1390 for (u = units; u < units + c; u++) {
aaa6732d 1391 const char *on_underline = NULL, *on_color = NULL, *off = NULL, *id;
7fd1b19b 1392 _cleanup_free_ char *e = NULL;
aaa6732d
LP
1393 bool underline;
1394
1395 underline = u + 1 < units + c &&
1396 !streq(unit_type_suffix(u->path), unit_type_suffix((u + 1)->path));
6ae3e62a 1397
aaa6732d 1398 if (underline)
6ae3e62a 1399 on_underline = ansi_underline();
729e3769 1400
4c315c2c
IS
1401 if (IN_SET(u->state,
1402 UNIT_FILE_MASKED,
1403 UNIT_FILE_MASKED_RUNTIME,
1404 UNIT_FILE_DISABLED,
6ae3e62a 1405 UNIT_FILE_BAD))
aaa6732d 1406 on_color = underline ? ansi_highlight_red_underline() : ansi_highlight_red();
6ae3e62a 1407 else if (u->state == UNIT_FILE_ENABLED)
aaa6732d
LP
1408 on_color = underline ? ansi_highlight_green_underline() : ansi_highlight_green();
1409
1410 if (on_underline || on_color)
1411 off = ansi_normal();
729e3769 1412
2b6bf07d 1413 id = basename(u->path);
729e3769 1414
1c0a113f 1415 e = arg_full ? NULL : ellipsize(id, id_cols, 33);
729e3769 1416
aaa6732d
LP
1417 printf("%s%-*s %s%-*s%s\n",
1418 strempty(on_underline),
1c0a113f 1419 id_cols, e ? e : id,
aaa6732d 1420 strempty(on_color), state_cols, unit_file_state_to_string(u->state), strempty(off));
729e3769
LP
1421 }
1422
1c0a113f 1423 if (!arg_no_legend)
0d292f5e 1424 printf("\n%u unit files listed.\n", c);
729e3769
LP
1425}
1426
e449de87 1427static int list_unit_files(int argc, char *argv[], void *userdata) {
4afd3348 1428 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
f84190d8 1429 _cleanup_free_ UnitFileList *units = NULL;
8d5ba5a9
ZJS
1430 UnitFileList *unit;
1431 size_t size = 0;
f459b602
MAP
1432 unsigned c = 0;
1433 const char *state;
1434 char *path;
f84190d8 1435 int r;
313fe66f 1436 bool fallback = false;
729e3769 1437
4fbd7192 1438 if (install_client_side()) {
729e3769
LP
1439 Hashmap *h;
1440 UnitFileList *u;
1441 Iterator i;
f459b602 1442 unsigned n_units;
729e3769 1443
d5099efc 1444 h = hashmap_new(&string_hash_ops);
0d0f0c50
SL
1445 if (!h)
1446 return log_oom();
729e3769 1447
313fe66f 1448 r = unit_file_get_list(arg_scope, arg_root, h, arg_states, strv_skip(argv, 1));
729e3769 1449 if (r < 0) {
8ea913b2 1450 unit_file_list_free(h);
691395d8 1451 return log_error_errno(r, "Failed to get unit file list: %m");
729e3769
LP
1452 }
1453
1454 n_units = hashmap_size(h);
fdbdf6ec 1455
0da999fa
ZJS
1456 units = new(UnitFileList, n_units ?: 1); /* avoid malloc(0) */
1457 if (!units) {
729e3769 1458 unit_file_list_free(h);
0d0f0c50 1459 return log_oom();
729e3769
LP
1460 }
1461
1462 HASHMAP_FOREACH(u, h, i) {
313fe66f 1463 if (!output_show_unit_file(u, NULL, NULL))
8d5ba5a9
ZJS
1464 continue;
1465
1466 units[c++] = *u;
729e3769
LP
1467 free(u);
1468 }
1469
8d5ba5a9 1470 assert(c <= n_units);
729e3769 1471 hashmap_free(h);
5f056378
CH
1472
1473 r = 0;
729e3769 1474 } else {
313fe66f 1475 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
4afd3348 1476 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
4fbd7192
LP
1477 sd_bus *bus;
1478
1479 r = acquire_bus(BUS_MANAGER, &bus);
1480 if (r < 0)
1481 return r;
6e646d22 1482
313fe66f 1483 r = sd_bus_message_new_method_call(
f22f08cd 1484 bus,
313fe66f 1485 &m,
729e3769
LP
1486 "org.freedesktop.systemd1",
1487 "/org/freedesktop/systemd1",
1488 "org.freedesktop.systemd1.Manager",
313fe66f 1489 "ListUnitFilesByPatterns");
1490 if (r < 0)
1491 return bus_log_create_error(r);
1492
1493 r = sd_bus_message_append_strv(m, arg_states);
1494 if (r < 0)
1495 return bus_log_create_error(r);
1496
1497 r = sd_bus_message_append_strv(m, strv_skip(argv, 1));
1498 if (r < 0)
1499 return bus_log_create_error(r);
1500
1501 r = sd_bus_call(bus, m, 0, &error, &reply);
1502 if (r < 0 && sd_bus_error_has_name(&error, SD_BUS_ERROR_UNKNOWN_METHOD)) {
1503 /* Fallback to legacy ListUnitFiles method */
1504 fallback = true;
1505 log_debug_errno(r, "Failed to list unit files: %s Falling back to ListUnitsFiles method.", bus_error_message(&error, r));
1506 m = sd_bus_message_unref(m);
1507 sd_bus_error_free(&error);
1508
1509 r = sd_bus_message_new_method_call(
1510 bus,
1511 &m,
1512 "org.freedesktop.systemd1",
1513 "/org/freedesktop/systemd1",
1514 "org.freedesktop.systemd1.Manager",
1515 "ListUnitFiles");
1516 if (r < 0)
1517 return bus_log_create_error(r);
1518
1519 r = sd_bus_call(bus, m, 0, &error, &reply);
1520 }
691395d8
LP
1521 if (r < 0)
1522 return log_error_errno(r, "Failed to list unit files: %s", bus_error_message(&error, r));
729e3769 1523
f459b602
MAP
1524 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ss)");
1525 if (r < 0)
1526 return bus_log_parse_error(r);
729e3769 1527
f459b602 1528 while ((r = sd_bus_message_read(reply, "(ss)", &path, &state)) > 0) {
729e3769 1529
f459b602
MAP
1530 if (!GREEDY_REALLOC(units, size, c + 1))
1531 return log_oom();
729e3769 1532
8d5ba5a9 1533 units[c] = (struct UnitFileList) {
f459b602
MAP
1534 path,
1535 unit_file_state_from_string(state)
1536 };
8d5ba5a9 1537
313fe66f 1538 if (output_show_unit_file(&units[c],
1539 fallback ? arg_states : NULL,
1540 fallback ? strv_skip(argv, 1) : NULL))
313cefa1 1541 c++;
8d5ba5a9 1542
729e3769 1543 }
f459b602
MAP
1544 if (r < 0)
1545 return bus_log_parse_error(r);
1546
1547 r = sd_bus_message_exit_container(reply);
1548 if (r < 0)
1549 return bus_log_parse_error(r);
729e3769
LP
1550 }
1551
0221d68a 1552 (void) pager_open(arg_pager_flags);
d2ad7e1b 1553
93bab288 1554 typesafe_qsort(units, c, compare_unit_file_list);
4fe1be9c 1555 output_unit_file_list(units, c);
729e3769 1556
0da999fa 1557 if (install_client_side())
8d5ba5a9
ZJS
1558 for (unit = units; unit < units + c; unit++)
1559 free(unit->path);
1560
f84190d8 1561 return 0;
729e3769
LP
1562}
1563
14cb109d 1564static int list_dependencies_print(const char *name, int level, unsigned branches, bool last) {
55c0b89c 1565 _cleanup_free_ char *n = NULL;
9607d947 1566 size_t max_len = MAX(columns(),20u);
cbc9fbd1
LP
1567 size_t len = 0;
1568 int i;
55c0b89c 1569
5d0c05e5 1570 if (!arg_plain) {
cbc9fbd1 1571
5d0c05e5
LN
1572 for (i = level - 1; i >= 0; i--) {
1573 len += 2;
f168c273 1574 if (len > max_len - 3 && !arg_full) {
5d0c05e5
LN
1575 printf("%s...\n",max_len % 2 ? "" : " ");
1576 return 0;
1577 }
9a6f746f 1578 printf("%s", special_glyph(branches & (1 << i) ? SPECIAL_GLYPH_TREE_VERTICAL : SPECIAL_GLYPH_TREE_SPACE));
5d0c05e5 1579 }
55c0b89c 1580 len += 2;
cbc9fbd1 1581
f168c273 1582 if (len > max_len - 3 && !arg_full) {
55c0b89c
LN
1583 printf("%s...\n",max_len % 2 ? "" : " ");
1584 return 0;
1585 }
cbc9fbd1 1586
9a6f746f 1587 printf("%s", special_glyph(last ? SPECIAL_GLYPH_TREE_RIGHT : SPECIAL_GLYPH_TREE_BRANCH));
55c0b89c 1588 }
55c0b89c 1589
9ed794a3 1590 if (arg_full) {
55c0b89c
LN
1591 printf("%s\n", name);
1592 return 0;
1593 }
1594
1595 n = ellipsize(name, max_len-len, 100);
f168c273 1596 if (!n)
55c0b89c
LN
1597 return log_oom();
1598
1599 printf("%s\n", n);
1600 return 0;
1601}
1602
f459b602 1603static int list_dependencies_get_dependencies(sd_bus *bus, const char *name, char ***deps) {
32b47279
YW
1604 struct DependencyStatusInfo {
1605 char **dep[5];
1606 } info = {};
1607
1608 static const struct bus_properties_map map[_DEPENDENCY_MAX][6] = {
1609 [DEPENDENCY_FORWARD] = {
1610 { "Requires", "as", NULL, offsetof(struct DependencyStatusInfo, dep[0]) },
1611 { "Requisite", "as", NULL, offsetof(struct DependencyStatusInfo, dep[1]) },
1612 { "Wants", "as", NULL, offsetof(struct DependencyStatusInfo, dep[2]) },
1613 { "ConsistsOf", "as", NULL, offsetof(struct DependencyStatusInfo, dep[3]) },
1614 { "BindsTo", "as", NULL, offsetof(struct DependencyStatusInfo, dep[4]) },
1615 {}
1616 },
1617 [DEPENDENCY_REVERSE] = {
1618 { "RequiredBy", "as", NULL, offsetof(struct DependencyStatusInfo, dep[0]) },
1619 { "RequisiteOf", "as", NULL, offsetof(struct DependencyStatusInfo, dep[1]) },
1620 { "WantedBy", "as", NULL, offsetof(struct DependencyStatusInfo, dep[2]) },
1621 { "PartOf", "as", NULL, offsetof(struct DependencyStatusInfo, dep[3]) },
1622 { "BoundBy", "as", NULL, offsetof(struct DependencyStatusInfo, dep[4]) },
1623 {}
1624 },
1625 [DEPENDENCY_AFTER] = {
1626 { "After", "as", NULL, offsetof(struct DependencyStatusInfo, dep[0]) },
1627 {}
1628 },
1629 [DEPENDENCY_BEFORE] = {
1630 { "Before", "as", NULL, offsetof(struct DependencyStatusInfo, dep[0]) },
1631 {}
1632 },
afba4199 1633 };
55c0b89c 1634
4afd3348 1635 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
f459b602
MAP
1636 _cleanup_strv_free_ char **ret = NULL;
1637 _cleanup_free_ char *path = NULL;
32b47279 1638 int i, r;
55c0b89c
LN
1639
1640 assert(bus);
1641 assert(name);
1642 assert(deps);
1643
1644 path = unit_dbus_path_from_name(name);
f459b602
MAP
1645 if (!path)
1646 return log_oom();
55c0b89c 1647
32b47279
YW
1648 r = bus_map_all_properties(bus,
1649 "org.freedesktop.systemd1",
1650 path,
1651 map[arg_dependency],
f39cbb6e 1652 BUS_MAP_STRDUP,
32b47279 1653 &error,
f37f8a61 1654 NULL,
32b47279 1655 &info);
691395d8
LP
1656 if (r < 0)
1657 return log_error_errno(r, "Failed to get properties of %s: %s", name, bus_error_message(&error, r));
55c0b89c 1658
32b47279
YW
1659 if (IN_SET(arg_dependency, DEPENDENCY_AFTER, DEPENDENCY_BEFORE)) {
1660 *deps = info.dep[0];
1661 return 0;
1662 }
55c0b89c 1663
32b47279
YW
1664 for (i = 0; i < 5; i++) {
1665 r = strv_extend_strv(&ret, info.dep[i], true);
f459b602 1666 if (r < 0)
32b47279
YW
1667 return log_oom();
1668 info.dep[i] = strv_free(info.dep[i]);
f459b602 1669 }
540e7dbe 1670
1cc6c93a 1671 *deps = TAKE_PTR(ret);
540e7dbe 1672
f459b602 1673 return 0;
55c0b89c
LN
1674}
1675
93bab288 1676static int list_dependencies_compare(char * const *a, char * const *b) {
55c0b89c
LN
1677 if (unit_name_to_type(*a) == UNIT_TARGET && unit_name_to_type(*b) != UNIT_TARGET)
1678 return 1;
1679 if (unit_name_to_type(*a) != UNIT_TARGET && unit_name_to_type(*b) == UNIT_TARGET)
1680 return -1;
cbc9fbd1 1681
55c0b89c
LN
1682 return strcasecmp(*a, *b);
1683}
1684
f459b602
MAP
1685static int list_dependencies_one(
1686 sd_bus *bus,
1687 const char *name,
1688 int level,
1689 char ***units,
14cb109d 1690 unsigned branches) {
f459b602 1691
e3e45d4f 1692 _cleanup_strv_free_ char **deps = NULL;
55c0b89c 1693 char **c;
55c0b89c
LN
1694 int r = 0;
1695
cbc9fbd1
LP
1696 assert(bus);
1697 assert(name);
1698 assert(units);
1699
e3e45d4f
SP
1700 r = strv_extend(units, name);
1701 if (r < 0)
55c0b89c
LN
1702 return log_oom();
1703
1704 r = list_dependencies_get_dependencies(bus, name, &deps);
1705 if (r < 0)
cec7eda5 1706 return r;
55c0b89c 1707
93bab288 1708 typesafe_qsort(deps, strv_length(deps), list_dependencies_compare);
55c0b89c
LN
1709
1710 STRV_FOREACH(c, deps) {
e3e45d4f 1711 if (strv_contains(*units, *c)) {
5d0c05e5 1712 if (!arg_plain) {
60705040 1713 printf(" ");
5d0c05e5
LN
1714 r = list_dependencies_print("...", level + 1, (branches << 1) | (c[1] == NULL ? 0 : 1), 1);
1715 if (r < 0)
1716 return r;
1717 }
55c0b89c
LN
1718 continue;
1719 }
1720
250ba664
ZJS
1721 if (arg_plain)
1722 printf(" ");
1723 else {
fa0d5878 1724 UnitActiveState active_state = _UNIT_ACTIVE_STATE_INVALID;
250ba664
ZJS
1725 const char *on;
1726
fa0d5878 1727 (void) get_state_one_unit(bus, *c, &active_state);
baa9ecc1 1728
fa0d5878 1729 switch (active_state) {
baa9ecc1
LP
1730 case UNIT_ACTIVE:
1731 case UNIT_RELOADING:
1732 case UNIT_ACTIVATING:
1733 on = ansi_highlight_green();
1734 break;
1735
1736 case UNIT_INACTIVE:
1737 case UNIT_DEACTIVATING:
1738 on = ansi_normal();
1739 break;
1740
1741 default:
1742 on = ansi_highlight_red();
1743 break;
fa0d5878
BR
1744 }
1745
9a6f746f 1746 printf("%s%s%s ", on, special_glyph(SPECIAL_GLYPH_BLACK_CIRCLE), ansi_normal());
250ba664 1747 }
dbc2c080 1748
55c0b89c 1749 r = list_dependencies_print(*c, level, branches, c[1] == NULL);
cec7eda5
ZJS
1750 if (r < 0)
1751 return r;
55c0b89c
LN
1752
1753 if (arg_all || unit_name_to_type(*c) == UNIT_TARGET) {
e3e45d4f 1754 r = list_dependencies_one(bus, *c, level + 1, units, (branches << 1) | (c[1] == NULL ? 0 : 1));
f168c273 1755 if (r < 0)
cec7eda5 1756 return r;
55c0b89c
LN
1757 }
1758 }
f459b602 1759
e3e45d4f
SP
1760 if (!arg_plain)
1761 strv_remove(*units, name);
f459b602 1762
cec7eda5 1763 return 0;
55c0b89c
LN
1764}
1765
e449de87 1766static int list_dependencies(int argc, char *argv[], void *userdata) {
5d0c05e5 1767 _cleanup_strv_free_ char **units = NULL;
f459b602 1768 _cleanup_free_ char *unit = NULL;
e31165b2 1769 const char *u;
4fbd7192 1770 sd_bus *bus;
7410616c 1771 int r;
55c0b89c 1772
e449de87 1773 if (argv[1]) {
37cbc1d5 1774 r = unit_name_mangle(argv[1], arg_quiet ? 0 : UNIT_NAME_MANGLE_WARN, &unit);
7410616c
LP
1775 if (r < 0)
1776 return log_error_errno(r, "Failed to mangle unit name: %m");
1777
e31165b2
LP
1778 u = unit;
1779 } else
1780 u = SPECIAL_DEFAULT_TARGET;
55c0b89c 1781
4fbd7192
LP
1782 r = acquire_bus(BUS_MANAGER, &bus);
1783 if (r < 0)
1784 return r;
1785
0221d68a 1786 (void) pager_open(arg_pager_flags);
d2ad7e1b 1787
e31165b2
LP
1788 puts(u);
1789
5d0c05e5 1790 return list_dependencies_one(bus, u, 0, &units, 0);
55c0b89c
LN
1791}
1792
0d292f5e
LP
1793struct machine_info {
1794 bool is_host;
1795 char *name;
0d292f5e 1796 char *state;
8fcf784d
LP
1797 char *control_group;
1798 uint32_t n_failed_units;
1799 uint32_t n_jobs;
1800 usec_t timestamp;
1801};
1802
1803static const struct bus_properties_map machine_info_property_map[] = {
1804 { "SystemState", "s", NULL, offsetof(struct machine_info, state) },
1805 { "NJobs", "u", NULL, offsetof(struct machine_info, n_jobs) },
1806 { "NFailedUnits", "u", NULL, offsetof(struct machine_info, n_failed_units) },
1807 { "ControlGroup", "s", NULL, offsetof(struct machine_info, control_group) },
1808 { "UserspaceTimestamp", "t", NULL, offsetof(struct machine_info, timestamp) },
1809 {}
0d292f5e
LP
1810};
1811
e7e55dbd 1812static void machine_info_clear(struct machine_info *info) {
f8654baa
ZJS
1813 assert(info);
1814
1815 free(info->name);
1816 free(info->state);
1817 free(info->control_group);
1818 zero(*info);
e7e55dbd
DH
1819}
1820
0d292f5e
LP
1821static void free_machines_list(struct machine_info *machine_infos, int n) {
1822 int i;
1823
1824 if (!machine_infos)
1825 return;
1826
e7e55dbd
DH
1827 for (i = 0; i < n; i++)
1828 machine_info_clear(&machine_infos[i]);
0d292f5e
LP
1829
1830 free(machine_infos);
1831}
1832
93bab288
YW
1833static int compare_machine_info(const struct machine_info *a, const struct machine_info *b) {
1834 int r;
0d292f5e 1835
93bab288
YW
1836 r = CMP(b->is_host, a->is_host);
1837 if (r != 0)
1838 return r;
0d292f5e 1839
93bab288 1840 return strcasecmp(a->name, b->name);
0d292f5e
LP
1841}
1842
1843static int get_machine_properties(sd_bus *bus, struct machine_info *mi) {
4afd3348 1844 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *container = NULL;
0d292f5e
LP
1845 int r;
1846
1847 assert(mi);
1848
1849 if (!bus) {
de33fc62 1850 r = sd_bus_open_system_machine(&container, mi->name);
0d292f5e
LP
1851 if (r < 0)
1852 return r;
1853
1854 bus = container;
1855 }
1856
a7e4861c
YW
1857 r = bus_map_all_properties(
1858 bus,
1859 "org.freedesktop.systemd1",
1860 "/org/freedesktop/systemd1",
1861 machine_info_property_map,
1862 BUS_MAP_STRDUP,
1863 NULL,
1864 NULL,
1865 mi);
0d292f5e
LP
1866 if (r < 0)
1867 return r;
1868
1869 return 0;
1870}
1871
1872static bool output_show_machine(const char *name, char **patterns) {
2404701e 1873 return strv_fnmatch_or_empty(patterns, name, FNM_NOESCAPE);
0d292f5e
LP
1874}
1875
1876static int get_machine_list(
1877 sd_bus *bus,
1878 struct machine_info **_machine_infos,
1879 char **patterns) {
1880
1881 struct machine_info *machine_infos = NULL;
1882 _cleanup_strv_free_ char **m = NULL;
1883 _cleanup_free_ char *hn = NULL;
1884 size_t sz = 0;
1885 char **i;
4c3e8e39 1886 int c = 0, r;
0d292f5e
LP
1887
1888 hn = gethostname_malloc();
1889 if (!hn)
1890 return log_oom();
1891
1892 if (output_show_machine(hn, patterns)) {
1893 if (!GREEDY_REALLOC0(machine_infos, sz, c+1))
1894 return log_oom();
1895
1896 machine_infos[c].is_host = true;
ae2a15bc 1897 machine_infos[c].name = TAKE_PTR(hn);
0d292f5e 1898
f9e0eefc 1899 (void) get_machine_properties(bus, &machine_infos[c]);
0d292f5e
LP
1900 c++;
1901 }
1902
4c3e8e39
LP
1903 r = sd_get_machine_names(&m);
1904 if (r < 0)
1905 return log_error_errno(r, "Failed to get machine list: %m");
1906
0d292f5e
LP
1907 STRV_FOREACH(i, m) {
1908 _cleanup_free_ char *class = NULL;
1909
1910 if (!output_show_machine(*i, patterns))
1911 continue;
1912
1913 sd_machine_get_class(*i, &class);
1914 if (!streq_ptr(class, "container"))
1915 continue;
1916
1917 if (!GREEDY_REALLOC0(machine_infos, sz, c+1)) {
1918 free_machines_list(machine_infos, c);
1919 return log_oom();
1920 }
1921
1922 machine_infos[c].is_host = false;
1923 machine_infos[c].name = strdup(*i);
1924 if (!machine_infos[c].name) {
1925 free_machines_list(machine_infos, c);
1926 return log_oom();
1927 }
1928
f9e0eefc 1929 (void) get_machine_properties(NULL, &machine_infos[c]);
0d292f5e
LP
1930 c++;
1931 }
1932
1933 *_machine_infos = machine_infos;
1934 return c;
1935}
1936
1937static void output_machines_list(struct machine_info *machine_infos, unsigned n) {
1938 struct machine_info *m;
1939 unsigned
90c3f79d 1940 circle_len = 0,
fbd0b64f
LP
1941 namelen = STRLEN("NAME"),
1942 statelen = STRLEN("STATE"),
1943 failedlen = STRLEN("FAILED"),
1944 jobslen = STRLEN("JOBS");
aa91d592 1945 bool state_missing = false;
0d292f5e
LP
1946
1947 assert(machine_infos || n == 0);
1948
1949 for (m = machine_infos; m < machine_infos + n; m++) {
fbd0b64f
LP
1950 namelen = MAX(namelen,
1951 strlen(m->name) + (m->is_host ? STRLEN(" (host)") : 0));
7bf7ce28 1952 statelen = MAX(statelen, strlen_ptr(m->state));
0d292f5e
LP
1953 failedlen = MAX(failedlen, DECIMAL_STR_WIDTH(m->n_failed_units));
1954 jobslen = MAX(jobslen, DECIMAL_STR_WIDTH(m->n_jobs));
90c3f79d 1955
a004cb75 1956 if (!arg_plain && m->state && !streq(m->state, "running"))
90c3f79d 1957 circle_len = 2;
0d292f5e
LP
1958 }
1959
90c3f79d
LP
1960 if (!arg_no_legend) {
1961 if (circle_len > 0)
1962 fputs(" ", stdout);
1963
0d292f5e
LP
1964 printf("%-*s %-*s %-*s %-*s\n",
1965 namelen, "NAME",
1966 statelen, "STATE",
1967 failedlen, "FAILED",
1968 jobslen, "JOBS");
90c3f79d 1969 }
0d292f5e
LP
1970
1971 for (m = machine_infos; m < machine_infos + n; m++) {
90c3f79d
LP
1972 const char *on_state = "", *off_state = "";
1973 const char *on_failed = "", *off_failed = "";
1974 bool circle = false;
0d292f5e
LP
1975
1976 if (streq_ptr(m->state, "degraded")) {
1977 on_state = ansi_highlight_red();
1fc464f6 1978 off_state = ansi_normal();
90c3f79d 1979 circle = true;
0d292f5e
LP
1980 } else if (!streq_ptr(m->state, "running")) {
1981 on_state = ansi_highlight_yellow();
1fc464f6 1982 off_state = ansi_normal();
90c3f79d
LP
1983 circle = true;
1984 }
0d292f5e
LP
1985
1986 if (m->n_failed_units > 0) {
1987 on_failed = ansi_highlight_red();
1fc464f6 1988 off_failed = ansi_normal();
0d292f5e
LP
1989 } else
1990 on_failed = off_failed = "";
1991
90c3f79d 1992 if (circle_len > 0)
9a6f746f 1993 printf("%s%s%s ", on_state, circle ? special_glyph(SPECIAL_GLYPH_BLACK_CIRCLE) : " ", off_state);
90c3f79d 1994
4bea2469
ZJS
1995 if (!m->state)
1996 state_missing = true;
1997
0d292f5e 1998 if (m->is_host)
c6ba5b80 1999 printf("%-*s (host) %s%-*s%s %s%*" PRIu32 "%s %*" PRIu32 "\n",
4bea2469 2000 (int) (namelen - strlen(" (host)")),
fbd0b64f 2001 strna(m->name),
0d292f5e
LP
2002 on_state, statelen, strna(m->state), off_state,
2003 on_failed, failedlen, m->n_failed_units, off_failed,
2004 jobslen, m->n_jobs);
2005 else
c6ba5b80 2006 printf("%-*s %s%-*s%s %s%*" PRIu32 "%s %*" PRIu32 "\n",
0d292f5e
LP
2007 namelen, strna(m->name),
2008 on_state, statelen, strna(m->state), off_state,
2009 on_failed, failedlen, m->n_failed_units, off_failed,
2010 jobslen, m->n_jobs);
2011 }
2012
4bea2469
ZJS
2013 if (!arg_no_legend) {
2014 printf("\n");
2015 if (state_missing && geteuid() != 0)
2016 printf("Notice: some information only available to privileged users was not shown.\n");
2017 printf("%u machines listed.\n", n);
2018 }
0d292f5e
LP
2019}
2020
e449de87 2021static int list_machines(int argc, char *argv[], void *userdata) {
0d292f5e 2022 struct machine_info *machine_infos = NULL;
4fbd7192 2023 sd_bus *bus;
0d292f5e
LP
2024 int r;
2025
4fbd7192
LP
2026 r = acquire_bus(BUS_MANAGER, &bus);
2027 if (r < 0)
2028 return r;
2029
e449de87 2030 r = get_machine_list(bus, &machine_infos, strv_skip(argv, 1));
0d292f5e
LP
2031 if (r < 0)
2032 return r;
2033
0221d68a 2034 (void) pager_open(arg_pager_flags);
d2ad7e1b 2035
93bab288 2036 typesafe_qsort(machine_infos, r, compare_machine_info);
0d292f5e
LP
2037 output_machines_list(machine_infos, r);
2038 free_machines_list(machine_infos, r);
2039
2040 return 0;
2041}
2042
e449de87 2043static int get_default(int argc, char *argv[], void *userdata) {
4afd3348 2044 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
f459b602
MAP
2045 _cleanup_free_ char *_path = NULL;
2046 const char *path;
99504dd4 2047 int r;
99504dd4 2048
4fbd7192 2049 if (install_client_side()) {
f459b602 2050 r = unit_file_get_default(arg_scope, arg_root, &_path);
f647962d
MS
2051 if (r < 0)
2052 return log_error_errno(r, "Failed to get default target: %m");
f459b602 2053 path = _path;
99504dd4 2054
5f056378 2055 r = 0;
99504dd4 2056 } else {
4afd3348 2057 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
4fbd7192
LP
2058 sd_bus *bus;
2059
2060 r = acquire_bus(BUS_MANAGER, &bus);
2061 if (r < 0)
2062 return r;
6e646d22 2063
f459b602
MAP
2064 r = sd_bus_call_method(
2065 bus,
2066 "org.freedesktop.systemd1",
2067 "/org/freedesktop/systemd1",
2068 "org.freedesktop.systemd1.Manager",
2069 "GetDefaultTarget",
2070 &error,
2071 &reply,
2072 NULL);
691395d8
LP
2073 if (r < 0)
2074 return log_error_errno(r, "Failed to get default target: %s", bus_error_message(&error, r));
99504dd4 2075
f459b602
MAP
2076 r = sd_bus_message_read(reply, "s", &path);
2077 if (r < 0)
2078 return bus_log_parse_error(r);
99504dd4
VP
2079 }
2080
2081 if (path)
2082 printf("%s\n", path);
2083
f459b602 2084 return 0;
99504dd4
VP
2085}
2086
e449de87 2087static int set_default(int argc, char *argv[], void *userdata) {
718db961 2088 _cleanup_free_ char *unit = NULL;
acc0269c 2089 UnitFileChange *changes = NULL;
da6053d0 2090 size_t n_changes = 0;
718db961
LP
2091 int r;
2092
e449de87
LP
2093 assert(argc >= 2);
2094 assert(argv);
2095
37cbc1d5 2096 r = unit_name_mangle_with_suffix(argv[1], arg_quiet ? 0 : UNIT_NAME_MANGLE_WARN, ".target", &unit);
7410616c
LP
2097 if (r < 0)
2098 return log_error_errno(r, "Failed to mangle unit name: %m");
718db961 2099
4fbd7192 2100 if (install_client_side()) {
b3796dd8 2101 r = unit_file_set_default(arg_scope, UNIT_FILE_FORCE, arg_root, unit, &changes, &n_changes);
af3d8113 2102 unit_file_dump_changes(r, "set default", changes, n_changes, arg_quiet);
5f056378
CH
2103
2104 if (r > 0)
2105 r = 0;
718db961 2106 } else {
4afd3348
LP
2107 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2108 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
4fbd7192 2109 sd_bus *bus;
718db961 2110
8a4b13c5 2111 polkit_agent_open_maybe();
6e646d22 2112
4fbd7192
LP
2113 r = acquire_bus(BUS_MANAGER, &bus);
2114 if (r < 0)
2115 return r;
2116
6e646d22 2117 r = sd_bus_call_method(
718db961
LP
2118 bus,
2119 "org.freedesktop.systemd1",
2120 "/org/freedesktop/systemd1",
2121 "org.freedesktop.systemd1.Manager",
6e646d22
LP
2122 "SetDefaultTarget",
2123 &error,
2124 &reply,
2125 "sb", unit, 1);
691395d8
LP
2126 if (r < 0)
2127 return log_error_errno(r, "Failed to set default target: %s", bus_error_message(&error, r));
718db961 2128
acc0269c 2129 r = bus_deserialize_and_dump_unit_file_changes(reply, arg_quiet, &changes, &n_changes);
718db961 2130 if (r < 0)
acc0269c 2131 goto finish;
718db961 2132
93c941e3 2133 /* Try to reload if enabled */
718db961 2134 if (!arg_no_reload)
e449de87 2135 r = daemon_reload(argc, argv, userdata);
718db961
LP
2136 else
2137 r = 0;
2138 }
2139
acc0269c
CH
2140finish:
2141 unit_file_changes_free(changes, n_changes);
2142
718db961
LP
2143 return r;
2144}
2145
76d8ca22 2146static int output_waiting_jobs(sd_bus *bus, uint32_t id, const char *method, const char *prefix) {
82948f6c
LP
2147 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2148 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
31d99bd1 2149 const char *name, *type;
82948f6c
LP
2150 uint32_t other_id;
2151 int r;
2152
2153 assert(bus);
2154
2155 r = sd_bus_call_method(
2156 bus,
2157 "org.freedesktop.systemd1",
2158 "/org/freedesktop/systemd1",
2159 "org.freedesktop.systemd1.Manager",
2160 method,
2161 &error,
2162 &reply,
2163 "u", id);
76d8ca22
ZJS
2164 if (r < 0)
2165 return log_debug_errno(r, "Failed to get waiting jobs for job %" PRIu32, id);
82948f6c
LP
2166
2167 r = sd_bus_message_enter_container(reply, 'a', "(usssoo)");
76d8ca22
ZJS
2168 if (r < 0)
2169 return bus_log_parse_error(r);
82948f6c 2170
31d99bd1 2171 while ((r = sd_bus_message_read(reply, "(usssoo)", &other_id, &name, &type, NULL, NULL, NULL)) > 0)
bc357ce5 2172 printf("%s %u (%s/%s)\n", prefix, other_id, name, type);
76d8ca22
ZJS
2173 if (r < 0)
2174 return bus_log_parse_error(r);
82948f6c
LP
2175
2176 r = sd_bus_message_exit_container(reply);
76d8ca22
ZJS
2177 if (r < 0)
2178 return bus_log_parse_error(r);
2179
2180 return 0;
82948f6c
LP
2181}
2182
75add28a
ZJS
2183struct job_info {
2184 uint32_t id;
f459b602 2185 const char *name, *type, *state;
75add28a
ZJS
2186};
2187
82948f6c 2188static void output_jobs_list(sd_bus *bus, const struct job_info* jobs, unsigned n, bool skipped) {
f459b602
MAP
2189 unsigned id_len, unit_len, type_len, state_len;
2190 const struct job_info *j;
75add28a
ZJS
2191 const char *on, *off;
2192 bool shorten = false;
2193
2194 assert(n == 0 || jobs);
2195
2196 if (n == 0) {
250ba664
ZJS
2197 if (!arg_no_legend) {
2198 on = ansi_highlight_green();
1fc464f6 2199 off = ansi_normal();
75add28a 2200
250ba664
ZJS
2201 printf("%sNo jobs %s.%s\n", on, skipped ? "listed" : "running", off);
2202 }
75add28a
ZJS
2203 return;
2204 }
2205
0221d68a 2206 (void) pager_open(arg_pager_flags);
75add28a 2207
fbd0b64f
LP
2208 id_len = STRLEN("JOB");
2209 unit_len = STRLEN("UNIT");
2210 type_len = STRLEN("TYPE");
2211 state_len = STRLEN("STATE");
6d6d40c9 2212
f459b602
MAP
2213 for (j = jobs; j < jobs + n; j++) {
2214 uint32_t id = j->id;
2215 assert(j->name && j->type && j->state);
75add28a 2216
f459b602
MAP
2217 id_len = MAX(id_len, DECIMAL_STR_WIDTH(id));
2218 unit_len = MAX(unit_len, strlen(j->name));
2219 type_len = MAX(type_len, strlen(j->type));
2220 state_len = MAX(state_len, strlen(j->state));
2221 }
75add28a 2222
f459b602
MAP
2223 if (!arg_full && id_len + 1 + unit_len + type_len + 1 + state_len > columns()) {
2224 unit_len = MAX(33u, columns() - id_len - type_len - state_len - 3);
2225 shorten = true;
2226 }
75add28a 2227
6ce774fd
MM
2228 if (!arg_no_legend)
2229 printf("%*s %-*s %-*s %-*s\n",
2230 id_len, "JOB",
2231 unit_len, "UNIT",
2232 type_len, "TYPE",
2233 state_len, "STATE");
75add28a 2234
f459b602
MAP
2235 for (j = jobs; j < jobs + n; j++) {
2236 _cleanup_free_ char *e = NULL;
75add28a 2237
f459b602
MAP
2238 if (streq(j->state, "running")) {
2239 on = ansi_highlight();
1fc464f6 2240 off = ansi_normal();
f459b602
MAP
2241 } else
2242 on = off = "";
2243
2244 e = shorten ? ellipsize(j->name, unit_len, 33) : NULL;
2245 printf("%*u %s%-*s%s %-*s %s%-*s%s\n",
2246 id_len, j->id,
2247 on, unit_len, e ? e : j->name, off,
2248 type_len, j->type,
2249 on, state_len, j->state, off);
82948f6c
LP
2250
2251 if (arg_jobs_after)
bc357ce5 2252 output_waiting_jobs(bus, j->id, "GetJobAfter", "\twaiting for job");
82948f6c 2253 if (arg_jobs_before)
bc357ce5 2254 output_waiting_jobs(bus, j->id, "GetJobBefore", "\tblocking job");
75add28a
ZJS
2255 }
2256
6ce774fd
MM
2257 if (!arg_no_legend) {
2258 on = ansi_highlight();
1fc464f6 2259 off = ansi_normal();
75add28a 2260
6ce774fd
MM
2261 printf("\n%s%u jobs listed%s.\n", on, n, off);
2262 }
75add28a
ZJS
2263}
2264
d8fba7c6 2265static bool output_show_job(struct job_info *job, char **patterns) {
2404701e 2266 return strv_fnmatch_or_empty(patterns, job->name, FNM_NOESCAPE);
d8fba7c6
ZJS
2267}
2268
e449de87 2269static int list_jobs(int argc, char *argv[], void *userdata) {
4afd3348
LP
2270 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2271 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
f459b602 2272 _cleanup_free_ struct job_info *jobs = NULL;
31d99bd1
YW
2273 const char *name, *type, *state;
2274 bool skipped = false;
f459b602
MAP
2275 size_t size = 0;
2276 unsigned c = 0;
4fbd7192 2277 sd_bus *bus;
f459b602 2278 uint32_t id;
f84190d8 2279 int r;
ec14911e 2280
4fbd7192
LP
2281 r = acquire_bus(BUS_MANAGER, &bus);
2282 if (r < 0)
2283 return r;
2284
f459b602 2285 r = sd_bus_call_method(
f22f08cd
SP
2286 bus,
2287 "org.freedesktop.systemd1",
2288 "/org/freedesktop/systemd1",
2289 "org.freedesktop.systemd1.Manager",
2290 "ListJobs",
f459b602 2291 &error,
f22f08cd 2292 &reply,
f459b602 2293 NULL);
691395d8
LP
2294 if (r < 0)
2295 return log_error_errno(r, "Failed to list jobs: %s", bus_error_message(&error, r));
7e4249b9 2296
f459b602
MAP
2297 r = sd_bus_message_enter_container(reply, 'a', "(usssoo)");
2298 if (r < 0)
2299 return bus_log_parse_error(r);
7e4249b9 2300
31d99bd1 2301 while ((r = sd_bus_message_read(reply, "(usssoo)", &id, &name, &type, &state, NULL, NULL)) > 0) {
d8fba7c6
ZJS
2302 struct job_info job = { id, name, type, state };
2303
e449de87 2304 if (!output_show_job(&job, strv_skip(argv, 1))) {
d8fba7c6
ZJS
2305 skipped = true;
2306 continue;
2307 }
8fe914ec 2308
f459b602
MAP
2309 if (!GREEDY_REALLOC(jobs, size, c + 1))
2310 return log_oom();
7e4249b9 2311
d8fba7c6 2312 jobs[c++] = job;
7e4249b9 2313 }
f459b602
MAP
2314 if (r < 0)
2315 return bus_log_parse_error(r);
7e4249b9 2316
f459b602
MAP
2317 r = sd_bus_message_exit_container(reply);
2318 if (r < 0)
2319 return bus_log_parse_error(r);
f73e33d9 2320
0221d68a 2321 (void) pager_open(arg_pager_flags);
d2ad7e1b 2322
82948f6c 2323 output_jobs_list(bus, jobs, c, skipped);
91d0f17e 2324 return 0;
7e4249b9
LP
2325}
2326
e449de87 2327static int cancel_job(int argc, char *argv[], void *userdata) {
4fbd7192 2328 sd_bus *bus;
729e3769 2329 char **name;
342641fb 2330 int r = 0;
7e4249b9 2331
e449de87 2332 if (argc <= 1)
2853b60a 2333 return trivial_method(argc, argv, userdata);
ee5762e3 2334
4fbd7192
LP
2335 r = acquire_bus(BUS_MANAGER, &bus);
2336 if (r < 0)
2337 return r;
2338
8a4b13c5 2339 polkit_agent_open_maybe();
d2ad7e1b 2340
e449de87 2341 STRV_FOREACH(name, strv_skip(argv, 1)) {
4afd3348 2342 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
5dd9014f 2343 uint32_t id;
342641fb 2344 int q;
7e4249b9 2345
342641fb 2346 q = safe_atou32(*name, &id);
f647962d
MS
2347 if (q < 0)
2348 return log_error_errno(q, "Failed to parse job id \"%s\": %m", *name);
7e4249b9 2349
6e646d22 2350 q = sd_bus_call_method(
f22f08cd
SP
2351 bus,
2352 "org.freedesktop.systemd1",
2353 "/org/freedesktop/systemd1",
2354 "org.freedesktop.systemd1.Manager",
6e646d22
LP
2355 "CancelJob",
2356 &error,
2357 NULL,
2358 "u", id);
342641fb 2359 if (q < 0) {
691395d8 2360 log_error_errno(q, "Failed to cancel job %"PRIu32": %s", id, bus_error_message(&error, q));
342641fb
LP
2361 if (r == 0)
2362 r = q;
f459b602 2363 }
7e4249b9
LP
2364 }
2365
342641fb 2366 return r;
7e4249b9
LP
2367}
2368
f459b602 2369static int need_daemon_reload(sd_bus *bus, const char *unit) {
4afd3348 2370 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
f459b602
MAP
2371 const char *path;
2372 int b, r;
94c01aeb 2373
f459b602
MAP
2374 /* We ignore all errors here, since this is used to show a
2375 * warning only */
45fb0699 2376
f459b602
MAP
2377 /* We don't use unit_dbus_path_from_name() directly since we
2378 * don't want to load the unit if it isn't loaded. */
f84190d8 2379
f459b602 2380 r = sd_bus_call_method(
f22f08cd
SP
2381 bus,
2382 "org.freedesktop.systemd1",
2383 "/org/freedesktop/systemd1",
2384 "org.freedesktop.systemd1.Manager",
2385 "GetUnit",
f459b602 2386 NULL,
f22f08cd 2387 &reply,
e3e0314b 2388 "s", unit);
f84190d8
LP
2389 if (r < 0)
2390 return r;
45fb0699 2391
f459b602
MAP
2392 r = sd_bus_message_read(reply, "o", &path);
2393 if (r < 0)
2394 return r;
f84190d8 2395
f459b602 2396 r = sd_bus_get_property_trivial(
f22f08cd 2397 bus,
b0193f1c
LP
2398 "org.freedesktop.systemd1",
2399 path,
f459b602
MAP
2400 "org.freedesktop.systemd1.Unit",
2401 "NeedDaemonReload",
2402 NULL,
2403 'b', &b);
f84190d8
LP
2404 if (r < 0)
2405 return r;
45fb0699 2406
45fb0699
LP
2407 return b;
2408}
2409
3f36991e 2410static void warn_unit_file_changed(const char *name) {
87ec20ef
LP
2411 assert(name);
2412
e9f4aabd 2413 log_warning("%sWarning:%s The unit file, source configuration file or drop-ins of %s changed on disk. Run 'systemctl%s daemon-reload' to reload units.",
3f36991e 2414 ansi_highlight_red(),
1fc464f6 2415 ansi_normal(),
3f36991e
ZJS
2416 name,
2417 arg_scope == UNIT_FILE_SYSTEM ? "" : " --user");
2418}
2419
c45e7e0c 2420static int unit_file_find_path(LookupPaths *lp, const char *unit_name, char **ret_unit_path) {
33f6c497
ZJS
2421 char **p;
2422
2423 assert(lp);
2424 assert(unit_name);
33f6c497 2425
a3c4eb07 2426 STRV_FOREACH(p, lp->search_path) {
c6dd36b6
FS
2427 _cleanup_free_ char *path = NULL, *lpath = NULL;
2428 int r;
33f6c497 2429
62a85ee0 2430 path = path_join(*p, unit_name);
33f6c497
ZJS
2431 if (!path)
2432 return log_oom();
2433
c4f4fce7 2434 r = chase_symlinks(path, arg_root, 0, &lpath);
c6dd36b6
FS
2435 if (r == -ENOENT)
2436 continue;
2437 if (r == -ENOMEM)
2438 return log_oom();
2439 if (r < 0)
86f004fb 2440 return log_error_errno(r, "Failed to access path \"%s\": %m", path);
c6dd36b6 2441
c45e7e0c
LP
2442 if (ret_unit_path)
2443 *ret_unit_path = TAKE_PTR(lpath);
ae2a15bc 2444
c6dd36b6 2445 return 1;
33f6c497
ZJS
2446 }
2447
f67cb270
LP
2448 if (ret_unit_path)
2449 *ret_unit_path = NULL;
2450
33f6c497
ZJS
2451 return 0;
2452}
2453
173471b7
ZJS
2454static int unit_find_template_path(
2455 const char *unit_name,
2456 LookupPaths *lp,
b03677e2
LP
2457 char **ret_fragment_path,
2458 char **ret_template) {
173471b7 2459
b03677e2 2460 _cleanup_free_ char *t = NULL, *f = NULL;
173471b7
ZJS
2461 int r;
2462
2463 /* Returns 1 if a fragment was found, 0 if not found, negative on error. */
2464
b03677e2
LP
2465 r = unit_file_find_path(lp, unit_name, &f);
2466 if (r < 0)
2467 return r;
2468 if (r > 0) {
2469 if (ret_fragment_path)
2470 *ret_fragment_path = TAKE_PTR(f);
2471 if (ret_template)
2472 *ret_template = NULL;
2473 return r; /* found a real unit */
2474 }
2475
2476 r = unit_name_template(unit_name, &t);
2477 if (r == -EINVAL) {
2478 if (ret_fragment_path)
2479 *ret_fragment_path = NULL;
2480 if (ret_template)
2481 *ret_template = NULL;
173471b7 2482
173471b7 2483 return 0; /* not a template, does not exist */
b03677e2 2484 }
173471b7
ZJS
2485 if (r < 0)
2486 return log_error_errno(r, "Failed to determine template name: %m");
2487
b03677e2 2488 r = unit_file_find_path(lp, t, ret_fragment_path);
173471b7
ZJS
2489 if (r < 0)
2490 return r;
2491
b03677e2
LP
2492 if (ret_template)
2493 *ret_template = r > 0 ? TAKE_PTR(t) : NULL;
ae2a15bc 2494
173471b7
ZJS
2495 return r;
2496}
2497
6e646d22
LP
2498static int unit_find_paths(
2499 sd_bus *bus,
2500 const char *unit_name,
6e646d22 2501 LookupPaths *lp,
02a126a3
LP
2502 bool force_client_side,
2503 char **ret_fragment_path,
2504 char ***ret_dropin_paths) {
dab2bce8 2505
dab2bce8 2506 _cleanup_strv_free_ char **dropins = NULL;
02a126a3 2507 _cleanup_free_ char *path = NULL;
33f6c497
ZJS
2508 int r;
2509
ad2a0358 2510 /**
02a126a3
LP
2511 * Finds where the unit is defined on disk. Returns 0 if the unit is not found. Returns 1 if it is found, and
2512 * sets:
2513 * - the path to the unit in *ret_frament_path, if it exists on disk,
2514 * - and a strv of existing drop-ins in *ret_dropin_paths, if the arg is not NULL and any dropins were found.
2515 *
2516 * Returns -ERFKILL if the unit is masked, and -EKEYREJECTED if the unit file could not be loaded for some
2517 * reason (the latter only applies if we are going through the service manager)
ad2a0358
ZJS
2518 */
2519
33f6c497 2520 assert(unit_name);
02a126a3 2521 assert(ret_fragment_path);
33f6c497
ZJS
2522 assert(lp);
2523
02a126a3
LP
2524 /* Go via the bus to acquire the path, unless we are explicitly told not to, or when the unit name is a template */
2525 if (!force_client_side &&
2526 !install_client_side() &&
2527 !unit_name_is_valid(unit_name, UNIT_NAME_TEMPLATE)) {
4afd3348 2528 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
02a126a3 2529 _cleanup_free_ char *load_state = NULL, *unit = NULL;
33f6c497
ZJS
2530
2531 unit = unit_dbus_path_from_name(unit_name);
2532 if (!unit)
2533 return log_oom();
2534
02a126a3
LP
2535 r = sd_bus_get_property_string(
2536 bus,
2537 "org.freedesktop.systemd1",
2538 unit,
2539 "org.freedesktop.systemd1.Unit",
2540 "LoadState",
2541 &error,
2542 &load_state);
2543 if (r < 0)
2544 return log_error_errno(r, "Failed to get LoadState: %s", bus_error_message(&error, r));
2545
2546 if (streq(load_state, "masked"))
2547 return -ERFKILL;
2548 if (streq(load_state, "not-found")) {
2549 r = 0;
2550 goto not_found;
2551 }
2552 if (!streq(load_state, "loaded"))
2553 return -EKEYREJECTED;
2554
33f6c497
ZJS
2555 r = sd_bus_get_property_string(
2556 bus,
2557 "org.freedesktop.systemd1",
2558 unit,
2559 "org.freedesktop.systemd1.Unit",
2560 "FragmentPath",
2561 &error,
ad2a0358
ZJS
2562 &path);
2563 if (r < 0)
2564 return log_error_errno(r, "Failed to get FragmentPath: %s", bus_error_message(&error, r));
2565
02a126a3 2566 if (ret_dropin_paths) {
dab2bce8
IS
2567 r = sd_bus_get_property_strv(
2568 bus,
2569 "org.freedesktop.systemd1",
2570 unit,
2571 "org.freedesktop.systemd1.Unit",
2572 "DropInPaths",
2573 &error,
2574 &dropins);
2575 if (r < 0)
2576 return log_error_errno(r, "Failed to get DropInPaths: %s", bus_error_message(&error, r));
33f6c497 2577 }
ad2a0358 2578 } else {
173471b7 2579 _cleanup_set_free_ Set *names = NULL;
6483ad89 2580 _cleanup_free_ char *template = NULL;
33f6c497 2581
ad2a0358
ZJS
2582 names = set_new(NULL);
2583 if (!names)
7410616c 2584 return log_oom();
33f6c497 2585
173471b7 2586 r = unit_find_template_path(unit_name, lp, &path, &template);
ad2a0358
ZJS
2587 if (r < 0)
2588 return r;
86f004fb
ZJS
2589 if (r > 0) {
2590 if (null_or_empty_path(path))
2591 /* The template is masked. Let's cut the process short. */
2592 return -ERFKILL;
2593
6483ad89
ZJS
2594 /* We found the unit file. If we followed symlinks, this name might be
2595 * different then the unit_name with started with. Look for dropins matching
2596 * that "final" name. */
2597 r = set_put(names, basename(path));
86f004fb 2598 } else if (!template)
6483ad89
ZJS
2599 /* No unit file, let's look for dropins matching the original name.
2600 * systemd has fairly complicated rules (based on unit type and provenience),
2601 * which units are allowed not to have the main unit file. We err on the
2602 * side of including too many files, and always try to load dropins. */
2603 r = set_put(names, unit_name);
2604 else
2605 /* The cases where we allow a unit to exist without the main file are
2606 * never valid for templates. Don't try to load dropins in this case. */
2607 goto not_found;
2608
c6dd36b6
FS
2609 if (r < 0)
2610 return log_error_errno(r, "Failed to add unit name: %m");
2611
02a126a3
LP
2612 if (ret_dropin_paths) {
2613 r = unit_file_find_dropin_conf_paths(arg_root, lp->search_path, NULL, names, &dropins);
dab2bce8
IS
2614 if (r < 0)
2615 return r;
2616 }
2617 }
2618
02a126a3 2619 r = 0;
dab2bce8
IS
2620
2621 if (!isempty(path)) {
02a126a3 2622 *ret_fragment_path = TAKE_PTR(path);
dab2bce8 2623 r = 1;
02a126a3
LP
2624 } else
2625 *ret_fragment_path = NULL;
dab2bce8 2626
02a126a3
LP
2627 if (ret_dropin_paths) {
2628 if (!strv_isempty(dropins)) {
2629 *ret_dropin_paths = TAKE_PTR(dropins);
2630 r = 1;
2631 } else
2632 *ret_dropin_paths = NULL;
33f6c497 2633 }
02a126a3 2634
6483ad89 2635 not_found:
39c38ce1 2636 if (r == 0 && !arg_force)
b5e6a600
IS
2637 log_error("No files found for %s.", unit_name);
2638
ad2a0358 2639 return r;
33f6c497
ZJS
2640}
2641
fa0d5878 2642static int get_state_one_unit(sd_bus *bus, const char *name, UnitActiveState *active_state) {
b430f85f 2643 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
3d083b22 2644 _cleanup_free_ char *buf = NULL, *path = NULL;
fa0d5878 2645 UnitActiveState state;
f22f08cd 2646 int r;
701cdcb9 2647
31be1221 2648 assert(name);
fa0d5878 2649 assert(active_state);
701cdcb9 2650
3d083b22
LP
2651 path = unit_dbus_path_from_name(name);
2652 if (!path)
2653 return log_oom();
2654
2655 r = sd_bus_get_property_string(
f22f08cd
SP
2656 bus,
2657 "org.freedesktop.systemd1",
3d083b22
LP
2658 path,
2659 "org.freedesktop.systemd1.Unit",
2660 "ActiveState",
b430f85f 2661 &error,
3d083b22
LP
2662 &buf);
2663 if (r < 0)
2664 return log_error_errno(r, "Failed to retrieve unit state: %s", bus_error_message(&error, r));
b430f85f 2665
3d083b22 2666 state = unit_active_state_from_string(buf);
2f50e59f
LP
2667 if (state < 0)
2668 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Invalid unit state '%s' for: %s", buf, name);
701cdcb9 2669
fa0d5878
BR
2670 *active_state = state;
2671 return 0;
701cdcb9
MS
2672}
2673
86f004fb 2674static int unit_is_masked(sd_bus *bus, LookupPaths *lp, const char *name) {
bd062910 2675 _cleanup_free_ char *load_state = NULL;
f22f08cd 2676 int r;
701cdcb9 2677
86f004fb
ZJS
2678 if (unit_name_is_valid(name, UNIT_NAME_TEMPLATE)) {
2679 _cleanup_free_ char *path = NULL;
2680
2681 /* A template cannot be loaded, but it can be still masked, so
2682 * we need to use a different method. */
2683
2684 r = unit_file_find_path(lp, name, &path);
2685 if (r < 0)
2686 return r;
2687 if (r == 0)
2688 return false;
2689 return null_or_empty_path(path);
2690 }
2691
bd062910 2692 r = unit_load_state(bus, name, &load_state);
691395d8 2693 if (r < 0)
bd062910 2694 return r;
d0a5cdb2 2695
9d9dd746
ZJS
2696 return streq(load_state, "masked");
2697}
2698
2699static int check_triggering_units(sd_bus *bus, const char *name) {
2700 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
86f004fb 2701 _cleanup_free_ char *n = NULL, *path = NULL, *load_state = NULL;
9d9dd746
ZJS
2702 _cleanup_strv_free_ char **triggered_by = NULL;
2703 bool print_warning_label = true;
2704 UnitActiveState active_state;
2705 char **i;
2706 int r;
2707
2708 r = unit_name_mangle(name, 0, &n);
2709 if (r < 0)
2710 return log_error_errno(r, "Failed to mangle unit name: %m");
2711
86f004fb
ZJS
2712 r = unit_load_state(bus, name, &load_state);
2713 if (r < 0)
2714 return r;
2715
2716 if (streq(load_state, "masked"))
2717 return 0;
9d9dd746
ZJS
2718
2719 path = unit_dbus_path_from_name(n);
2720 if (!path)
2721 return log_oom();
701cdcb9 2722
f459b602
MAP
2723 r = sd_bus_get_property_strv(
2724 bus,
2725 "org.freedesktop.systemd1",
2726 path,
2727 "org.freedesktop.systemd1.Unit",
2728 "TriggeredBy",
2729 &error,
2730 &triggered_by);
691395d8
LP
2731 if (r < 0)
2732 return log_error_errno(r, "Failed to get triggered by array of %s: %s", n, bus_error_message(&error, r));
701cdcb9 2733
f459b602 2734 STRV_FOREACH(i, triggered_by) {
fa0d5878 2735 r = get_state_one_unit(bus, *i, &active_state);
f647962d 2736 if (r < 0)
fa0d5878 2737 return r;
701cdcb9 2738
fa0d5878 2739 if (!IN_SET(active_state, UNIT_ACTIVE, UNIT_RELOADING))
f459b602 2740 continue;
60f9ba0b 2741
f459b602
MAP
2742 if (print_warning_label) {
2743 log_warning("Warning: Stopping %s, but it can still be activated by:", n);
2744 print_warning_label = false;
701cdcb9 2745 }
1c291cf3 2746
f459b602 2747 log_warning(" %s", *i);
701cdcb9 2748 }
f459b602
MAP
2749
2750 return 0;
701cdcb9
MS
2751}
2752
2fc9a280 2753static const struct {
85d9b598
LP
2754 const char *verb; /* systemctl verb */
2755 const char *method; /* Name of the specific D-Bus method */
2756 const char *job_type; /* Job type when passing to the generic EnqueueUnitJob() method */
2fc9a280 2757} unit_actions[] = {
85d9b598
LP
2758 { "start", "StartUnit", "start" },
2759 { "stop", "StopUnit", "stop" },
2760 { "condstop", "StopUnit", "stop" }, /* legacy alias */
2761 { "reload", "ReloadUnit", "reload" },
2762 { "restart", "RestartUnit", "restart" },
2763 { "try-restart", "TryRestartUnit", "try-restart" },
2764 { "condrestart", "TryRestartUnit", "try-restart" }, /* legacy alias */
2765 { "reload-or-restart", "ReloadOrRestartUnit", "reload-or-restart" },
2766 { "try-reload-or-restart", "ReloadOrTryRestartUnit", "reload-or-try-restart" },
2767 { "reload-or-try-restart", "ReloadOrTryRestartUnit", "reload-or-try-restart" }, /* legacy alias */
2768 { "condreload", "ReloadOrTryRestartUnit", "reload-or-try-restart" }, /* legacy alias */
2769 { "force-reload", "ReloadOrTryRestartUnit", "reload-or-try-restart" }, /* legacy alias */
2fc9a280
LP
2770};
2771
39602c39 2772static const char *verb_to_method(const char *verb) {
85d9b598 2773 size_t i;
39602c39
TA
2774
2775 for (i = 0; i < ELEMENTSOF(unit_actions); i++)
2776 if (streq_ptr(unit_actions[i].verb, verb))
2777 return unit_actions[i].method;
2778
2779 return "StartUnit";
2780}
2781
85d9b598
LP
2782static const char *verb_to_job_type(const char *verb) {
2783 size_t i;
39602c39
TA
2784
2785 for (i = 0; i < ELEMENTSOF(unit_actions); i++)
85d9b598
LP
2786 if (streq_ptr(unit_actions[i].verb, verb))
2787 return unit_actions[i].job_type;
39602c39 2788
85d9b598 2789 return "start";
39602c39
TA
2790}
2791
93a08841
MP
2792typedef struct {
2793 sd_bus_slot *match;
2794 sd_event *event;
2795 Set *unit_paths;
2796 bool any_failed;
2797} WaitContext;
2798
2799static void wait_context_free(WaitContext *c) {
2800 c->match = sd_bus_slot_unref(c->match);
2801 c->event = sd_event_unref(c->event);
6fa4160d 2802 c->unit_paths = set_free_free(c->unit_paths);
93a08841
MP
2803}
2804
2805static int on_properties_changed(sd_bus_message *m, void *userdata, sd_bus_error *error) {
109b0cbf 2806 const char *path, *interface, *active_state = NULL, *job_path = NULL;
93a08841 2807 WaitContext *c = userdata;
109b0cbf 2808 bool is_failed;
93a08841
MP
2809 int r;
2810
109b0cbf
LP
2811 /* Called whenever we get a PropertiesChanged signal. Checks if ActiveState changed to inactive/failed.
2812 *
2813 * Signal parameters: (s interface, a{sv} changed_properties, as invalidated_properties) */
2814
93a08841
MP
2815 path = sd_bus_message_get_path(m);
2816 if (!set_contains(c->unit_paths, path))
2817 return 0;
2818
109b0cbf 2819 r = sd_bus_message_read(m, "s", &interface);
93a08841
MP
2820 if (r < 0)
2821 return bus_log_parse_error(r);
6fa4160d 2822
109b0cbf
LP
2823 if (!streq(interface, "org.freedesktop.systemd1.Unit")) /* ActiveState is on the Unit interface */
2824 return 0;
2825
93a08841
MP
2826 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "{sv}");
2827 if (r < 0)
2828 return bus_log_parse_error(r);
2829
109b0cbf 2830 for (;;) {
93a08841 2831 const char *s;
93a08841 2832
109b0cbf 2833 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_DICT_ENTRY, "sv");
93a08841
MP
2834 if (r < 0)
2835 return bus_log_parse_error(r);
109b0cbf
LP
2836 if (r == 0) /* end of array */
2837 break;
6fa4160d 2838
109b0cbf
LP
2839 r = sd_bus_message_read(m, "s", &s); /* Property name */
2840 if (r < 0)
2841 return bus_log_parse_error(r);
6fa4160d 2842
109b0cbf
LP
2843 if (streq(s, "ActiveState")) {
2844 r = sd_bus_message_read(m, "v", "s", &active_state);
93a08841
MP
2845 if (r < 0)
2846 return bus_log_parse_error(r);
6fa4160d 2847
109b0cbf
LP
2848 if (job_path) /* Found everything we need */
2849 break;
2850
2851 } else if (streq(s, "Job")) {
2852 uint32_t job_id;
2853
2854 r = sd_bus_message_read(m, "v", "(uo)", &job_id, &job_path);
93a08841
MP
2855 if (r < 0)
2856 return bus_log_parse_error(r);
6fa4160d 2857
109b0cbf
LP
2858 /* There's still a job pending for this unit, let's ignore this for now, and return right-away. */
2859 if (job_id != 0)
2860 return 0;
2861
2862 if (active_state) /* Found everything we need */
2863 break;
6fa4160d 2864
93a08841 2865 } else {
109b0cbf 2866 r = sd_bus_message_skip(m, "v"); /* Other property */
93a08841
MP
2867 if (r < 0)
2868 return bus_log_parse_error(r);
2869 }
109b0cbf 2870
93a08841
MP
2871 r = sd_bus_message_exit_container(m);
2872 if (r < 0)
2873 return bus_log_parse_error(r);
2874 }
109b0cbf
LP
2875
2876 /* If this didn't contain the ActiveState property we can't do anything */
2877 if (!active_state)
2878 return 0;
2879
2880 is_failed = streq(active_state, "failed");
2881 if (streq(active_state, "inactive") || is_failed) {
2882 log_debug("%s became %s, dropping from --wait tracking", path, active_state);
2883 free(set_remove(c->unit_paths, path));
2884 c->any_failed = c->any_failed || is_failed;
2885 } else
2886 log_debug("ActiveState on %s changed to %s", path, active_state);
93a08841
MP
2887
2888 if (set_isempty(c->unit_paths))
2889 sd_event_exit(c->event, EXIT_SUCCESS);
2890
2891 return 0;
2892}
2893
9a199645
LP
2894static int wait_context_watch(
2895 WaitContext *wait_context,
2896 sd_bus *bus,
2897 const char *name) {
2898
2899 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2900 _cleanup_free_ char *unit_path = NULL;
2901 int r;
2902
2903 assert(wait_context);
2904 assert(name);
2905
2906 log_debug("Watching for property changes of %s", name);
2907 r = sd_bus_call_method(
2908 bus,
2909 "org.freedesktop.systemd1",
2910 "/org/freedesktop/systemd1",
2911 "org.freedesktop.systemd1.Manager",
2912 "RefUnit",
2913 &error,
2914 NULL,
2915 "s", name);
2916 if (r < 0)
2917 return log_error_errno(r, "Failed to add reference to unit %s: %s", name, bus_error_message(&error, r));
2918
2919 unit_path = unit_dbus_path_from_name(name);
2920 if (!unit_path)
2921 return log_oom();
2922
2923 r = set_ensure_allocated(&wait_context->unit_paths, &string_hash_ops);
2924 if (r < 0)
2925 return log_oom();
2926
2927 r = set_put_strdup(wait_context->unit_paths, unit_path);
2928 if (r < 0)
2929 return log_error_errno(r, "Failed to add unit path %s to set: %m", unit_path);
2930
2931 r = sd_bus_match_signal_async(bus,
2932 &wait_context->match,
2933 NULL,
2934 unit_path,
2935 "org.freedesktop.DBus.Properties",
2936 "PropertiesChanged",
2937 on_properties_changed, NULL, wait_context);
2938 if (r < 0)
2939 return log_error_errno(r, "Failed to request match for PropertiesChanged signal: %m");
2940
2941 return 0;
2942}
2943
e4b61340 2944static int start_unit_one(
f459b602 2945 sd_bus *bus,
85d9b598
LP
2946 const char *method, /* When using classic per-job bus methods */
2947 const char *job_type, /* When using new-style EnqueueUnitJob() */
e4b61340
LP
2948 const char *name,
2949 const char *mode,
f459b602 2950 sd_bus_error *error,
93a08841
MP
2951 BusWaitForJobs *w,
2952 WaitContext *wait_context) {
7e4249b9 2953
4afd3348 2954 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
45fb0699 2955 const char *path;
85d9b598 2956 bool done = false;
7e4249b9 2957 int r;
7e4249b9 2958
e4b61340
LP
2959 assert(method);
2960 assert(name);
2961 assert(mode);
22f4096c 2962 assert(error);
7e4249b9 2963
93a08841 2964 if (wait_context) {
9a199645 2965 r = wait_context_watch(wait_context, bus, name);
93a08841 2966 if (r < 0)
9a199645 2967 return r;
93a08841
MP
2968 }
2969
dbc9830c
ZJS
2970 log_debug("%s dbus call org.freedesktop.systemd1.Manager %s(%s, %s)",
2971 arg_dry_run ? "Would execute" : "Executing",
1ae17672 2972 method, name, mode);
85d9b598 2973
1ae17672
ZJS
2974 if (arg_dry_run)
2975 return 0;
342641fb 2976
85d9b598
LP
2977 if (arg_show_transaction) {
2978 _cleanup_(sd_bus_error_free) sd_bus_error enqueue_error = SD_BUS_ERROR_NULL;
39602c39 2979
85d9b598
LP
2980 /* Use the new, fancy EnqueueUnitJob() API if the user wants us to print the transaction */
2981 r = sd_bus_call_method(
2982 bus,
2983 "org.freedesktop.systemd1",
2984 "/org/freedesktop/systemd1",
2985 "org.freedesktop.systemd1.Manager",
2986 "EnqueueUnitJob",
2987 &enqueue_error,
2988 &reply,
2989 "sss",
2990 name, job_type, mode);
2991 if (r < 0) {
2992 if (!sd_bus_error_has_name(&enqueue_error, SD_BUS_ERROR_UNKNOWN_METHOD)) {
2993 (void) sd_bus_error_move(error, &enqueue_error);
2994 goto fail;
2995 }
67f3c402 2996
85d9b598
LP
2997 /* Hmm, the API is not yet available. Let's use the classic API instead (see below). */
2998 log_notice("--show-transaction not supported by this service manager, proceeding without.");
2999 } else {
3000 const char *u, *jt;
3001 uint32_t id;
39602c39 3002
85d9b598
LP
3003 r = sd_bus_message_read(reply, "uosos", &id, &path, &u, NULL, &jt);
3004 if (r < 0)
3005 return bus_log_parse_error(r);
ee87525c 3006
85d9b598 3007 log_info("Enqueued anchor job %" PRIu32 " %s/%s.", id, u, jt);
ee87525c 3008
85d9b598
LP
3009 r = sd_bus_message_enter_container(reply, 'a', "(uosos)");
3010 if (r < 0)
3011 return bus_log_parse_error(r);
3012 for (;;) {
3013 r = sd_bus_message_read(reply, "(uosos)", &id, NULL, &u, NULL, &jt);
3014 if (r < 0)
3015 return bus_log_parse_error(r);
3016 if (r == 0)
3017 break;
3018
3019 log_info("Enqueued auxiliary job %" PRIu32 " %s/%s.", id, u, jt);
3020 }
3021
3022 r = sd_bus_message_exit_container(reply);
3023 if (r < 0)
3024 return bus_log_parse_error(r);
3025
3026 done = true;
3027 }
7e4249b9
LP
3028 }
3029
85d9b598
LP
3030 if (!done) {
3031 r = sd_bus_call_method(
3032 bus,
3033 "org.freedesktop.systemd1",
3034 "/org/freedesktop/systemd1",
3035 "org.freedesktop.systemd1.Manager",
3036 method,
3037 error,
3038 &reply,
3039 "ss", name, mode);
3040 if (r < 0)
3041 goto fail;
3042
3043 r = sd_bus_message_read(reply, "o", &path);
3044 if (r < 0)
3045 return bus_log_parse_error(r);
3046 }
45fb0699 3047
e3e0314b 3048 if (need_daemon_reload(bus, name) > 0)
3f36991e 3049 warn_unit_file_changed(name);
45fb0699 3050
ebd011d9
LP
3051 if (w) {
3052 log_debug("Adding %s to the set", path);
3053 r = bus_wait_for_jobs_add(w, path);
cbc9fbd1 3054 if (r < 0)
d2e1b2fd 3055 return log_error_errno(r, "Failed to watch job for %s: %m", name);
e4b61340 3056 }
7e4249b9 3057
46eddbb5 3058 return 0;
85d9b598
LP
3059
3060fail:
3061 /* There's always a fallback possible for legacy actions. */
3062 if (arg_action != ACTION_SYSTEMCTL)
3063 return r;
3064
3065 log_error_errno(r, "Failed to %s %s: %s", job_type, name, bus_error_message(error, r));
3066
3067 if (!sd_bus_error_has_name(error, BUS_ERROR_NO_SUCH_UNIT) &&
3068 !sd_bus_error_has_name(error, BUS_ERROR_UNIT_MASKED) &&
3069 !sd_bus_error_has_name(error, BUS_ERROR_JOB_TYPE_NOT_APPLICABLE))
3070 log_error("See %s logs and 'systemctl%s status%s %s' for details.",
3071 arg_scope == UNIT_FILE_SYSTEM ? "system" : "user",
3072 arg_scope == UNIT_FILE_SYSTEM ? "" : " --user",
3073 name[0] == '-' ? " --" : "",
3074 name);
3075
3076 return r;
7e4249b9
LP
3077}
3078
e3e0314b 3079static int expand_names(sd_bus *bus, char **names, const char* suffix, char ***ret) {
e3e0314b
ZJS
3080 _cleanup_strv_free_ char **mangled = NULL, **globs = NULL;
3081 char **name;
7410616c 3082 int r, i;
e3e0314b 3083
4fbd7192
LP
3084 assert(bus);
3085 assert(ret);
3086
e3e0314b
ZJS
3087 STRV_FOREACH(name, names) {
3088 char *t;
37cbc1d5 3089 UnitNameMangle options = UNIT_NAME_MANGLE_GLOB | (arg_quiet ? 0 : UNIT_NAME_MANGLE_WARN);
e3e0314b 3090
e80733be 3091 if (suffix)
37cbc1d5 3092 r = unit_name_mangle_with_suffix(*name, options, suffix, &t);
e80733be 3093 else
37cbc1d5 3094 r = unit_name_mangle(*name, options, &t);
7410616c
LP
3095 if (r < 0)
3096 return log_error_errno(r, "Failed to mangle name: %m");
e3e0314b
ZJS
3097
3098 if (string_is_glob(t))
6e18964d 3099 r = strv_consume(&globs, t);
e3e0314b 3100 else
6e18964d
ZJS
3101 r = strv_consume(&mangled, t);
3102 if (r < 0)
e3e0314b 3103 return log_oom();
e3e0314b
ZJS
3104 }
3105
3106 /* Query the manager only if any of the names are a glob, since
3107 * this is fairly expensive */
3108 if (!strv_isempty(globs)) {
4afd3348 3109 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
e3e0314b 3110 _cleanup_free_ UnitInfo *unit_infos = NULL;
1b53f64b 3111 size_t allocated, n;
e3e0314b 3112
1238ee09 3113 r = get_unit_list(bus, NULL, globs, &unit_infos, 0, &reply);
e3e0314b
ZJS
3114 if (r < 0)
3115 return r;
3116
1b53f64b
LP
3117 n = strv_length(mangled);
3118 allocated = n + 1;
3119
3120 for (i = 0; i < r; i++) {
3121 if (!GREEDY_REALLOC(mangled, allocated, n+2))
3122 return log_oom();
3123
3124 mangled[n] = strdup(unit_infos[i].id);
3125 if (!mangled[n])
e3e0314b 3126 return log_oom();
1b53f64b
LP
3127
3128 mangled[++n] = NULL;
3129 }
e3e0314b
ZJS
3130 }
3131
1cc6c93a 3132 *ret = TAKE_PTR(mangled);
e3e0314b
ZJS
3133 return 0;
3134}
3135
47a0eaa6
MS
3136static const struct {
3137 const char *target;
3138 const char *verb;
3139 const char *mode;
3140} action_table[_ACTION_MAX] = {
5fd77930
LP
3141 [ACTION_HALT] = { SPECIAL_HALT_TARGET, "halt", "replace-irreversibly" },
3142 [ACTION_POWEROFF] = { SPECIAL_POWEROFF_TARGET, "poweroff", "replace-irreversibly" },
3143 [ACTION_REBOOT] = { SPECIAL_REBOOT_TARGET, "reboot", "replace-irreversibly" },
3144 [ACTION_KEXEC] = { SPECIAL_KEXEC_TARGET, "kexec", "replace-irreversibly" },
3145 [ACTION_RUNLEVEL2] = { SPECIAL_MULTI_USER_TARGET, NULL, "isolate" },
3146 [ACTION_RUNLEVEL3] = { SPECIAL_MULTI_USER_TARGET, NULL, "isolate" },
3147 [ACTION_RUNLEVEL4] = { SPECIAL_MULTI_USER_TARGET, NULL, "isolate" },
3148 [ACTION_RUNLEVEL5] = { SPECIAL_GRAPHICAL_TARGET, NULL, "isolate" },
3149 [ACTION_RESCUE] = { SPECIAL_RESCUE_TARGET, "rescue", "isolate" },
3150 [ACTION_EMERGENCY] = { SPECIAL_EMERGENCY_TARGET, "emergency", "isolate" },
3151 [ACTION_DEFAULT] = { SPECIAL_DEFAULT_TARGET, "default", "isolate" },
3152 [ACTION_EXIT] = { SPECIAL_EXIT_TARGET, "exit", "replace-irreversibly" },
3153 [ACTION_SUSPEND] = { SPECIAL_SUSPEND_TARGET, "suspend", "replace-irreversibly" },
3154 [ACTION_HIBERNATE] = { SPECIAL_HIBERNATE_TARGET, "hibernate", "replace-irreversibly" },
3155 [ACTION_HYBRID_SLEEP] = { SPECIAL_HYBRID_SLEEP_TARGET, "hybrid-sleep", "replace-irreversibly" },
e68c79db 3156 [ACTION_SUSPEND_THEN_HIBERNATE] = { SPECIAL_SUSPEND_THEN_HIBERNATE_TARGET, "suspend-then-hibernate", "replace-irreversibly" },
47a0eaa6
MS
3157};
3158
514f4ef5 3159static enum action verb_to_action(const char *verb) {
47a0eaa6
MS
3160 enum action i;
3161
913c1916 3162 for (i = 0; i < _ACTION_MAX; i++)
f459b602 3163 if (streq_ptr(action_table[i].verb, verb))
47a0eaa6 3164 return i;
514f4ef5 3165
f459b602
MAP
3166 return _ACTION_INVALID;
3167}
e4b61340 3168
94369fc0
LP
3169static const char** make_extra_args(const char *extra_args[static 4]) {
3170 size_t n = 0;
3171
3172 if (arg_scope != UNIT_FILE_SYSTEM)
3173 extra_args[n++] = "--user";
3174
3175 if (arg_transport == BUS_TRANSPORT_REMOTE) {
3176 extra_args[n++] = "-H";
3177 extra_args[n++] = arg_host;
3178 } else if (arg_transport == BUS_TRANSPORT_MACHINE) {
3179 extra_args[n++] = "-M";
3180 extra_args[n++] = arg_host;
3181 } else
3182 assert(arg_transport == BUS_TRANSPORT_LOCAL);
3183
3184 extra_args[n] = NULL;
3185 return extra_args;
3186}
3187
e449de87 3188static int start_unit(int argc, char *argv[], void *userdata) {
ebd011d9 3189 _cleanup_(bus_wait_for_jobs_freep) BusWaitForJobs *w = NULL;
0e8d9c0c 3190 _cleanup_(wait_context_free) WaitContext wait_context = {};
85d9b598 3191 const char *method, *job_type, *mode, *one_name, *suffix = NULL;
416b8801 3192 _cleanup_free_ char **stopped_units = NULL; /* Do not use _cleanup_strv_free_ */
ebd011d9 3193 _cleanup_strv_free_ char **names = NULL;
0e8d9c0c 3194 int r, ret = EXIT_SUCCESS;
4fbd7192 3195 sd_bus *bus;
729e3769 3196 char **name;
e4b61340 3197
2f50e59f
LP
3198 if (arg_wait && !STR_IN_SET(argv[0], "start", "restart"))
3199 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3200 "--wait may only be used with the 'start' or 'restart' commands.");
93a08841
MP
3201
3202 /* we cannot do sender tracking on the private bus, so we need the full
3203 * one for RefUnit to implement --wait */
3204 r = acquire_bus(arg_wait ? BUS_FULL : BUS_MANAGER, &bus);
4fbd7192
LP
3205 if (r < 0)
3206 return r;
3207
d2ad7e1b 3208 ask_password_agent_open_if_enabled();
8a4b13c5 3209 polkit_agent_open_maybe();
d2ad7e1b 3210
e4b61340 3211 if (arg_action == ACTION_SYSTEMCTL) {
47a0eaa6 3212 enum action action;
e4b61340 3213
e449de87
LP
3214 action = verb_to_action(argv[0]);
3215
913c1916 3216 if (action != _ACTION_INVALID) {
85d9b598 3217 /* A command in style "systemctl reboot", "systemctl poweroff", … */
913c1916 3218 method = "StartUnit";
85d9b598 3219 job_type = "start";
913c1916
AJ
3220 mode = action_table[action].mode;
3221 one_name = action_table[action].target;
3222 } else {
3223 if (streq(argv[0], "isolate")) {
85d9b598 3224 /* A "systemctl isolate <unit1> <unit2> …" command */
913c1916 3225 method = "StartUnit";
85d9b598 3226 job_type = "start";
913c1916 3227 mode = "isolate";
913c1916
AJ
3228 suffix = ".target";
3229 } else {
85d9b598 3230 /* A command in style of "systemctl start <unit1> <unit2> …", "sysemctl stop <unit1> <unit2> …" and so on */
913c1916 3231 method = verb_to_method(argv[0]);
85d9b598 3232 job_type = verb_to_job_type(argv[0]);
913c1916
AJ
3233 mode = arg_job_mode;
3234 }
3235 one_name = NULL;
3236 }
e4b61340 3237 } else {
85d9b598 3238 /* A SysV legacy command such as "halt", "reboot", "poweroff", … */
78ca9099 3239 assert(arg_action >= 0 && arg_action < _ACTION_MAX);
47a0eaa6 3240 assert(action_table[arg_action].target);
913c1916 3241 assert(action_table[arg_action].mode);
e4b61340
LP
3242
3243 method = "StartUnit";
85d9b598 3244 job_type = "start";
47a0eaa6 3245 mode = action_table[arg_action].mode;
e3e0314b 3246 one_name = action_table[arg_action].target;
514f4ef5
LP
3247 }
3248
8b7ec7bb 3249 if (one_name) {
bea1a013 3250 names = strv_new(one_name);
8b7ec7bb
LP
3251 if (!names)
3252 return log_oom();
3253 } else {
e449de87 3254 r = expand_names(bus, strv_skip(argv, 1), suffix, &names);
e3e0314b 3255 if (r < 0)
691395d8 3256 return log_error_errno(r, "Failed to expand names: %m");
e3e0314b 3257 }
b6520546 3258
6e905d93 3259 if (!arg_no_block) {
ebd011d9 3260 r = bus_wait_for_jobs_new(bus, &w);
f647962d
MS
3261 if (r < 0)
3262 return log_error_errno(r, "Could not watch jobs: %m");
e4b61340
LP
3263 }
3264
93a08841 3265 if (arg_wait) {
31b2cd5d 3266 r = sd_bus_call_method_async(
93a08841 3267 bus,
31b2cd5d 3268 NULL,
93a08841
MP
3269 "org.freedesktop.systemd1",
3270 "/org/freedesktop/systemd1",
3271 "org.freedesktop.systemd1.Manager",
3272 "Subscribe",
31b2cd5d
LP
3273 NULL, NULL,
3274 NULL);
93a08841 3275 if (r < 0)
31b2cd5d 3276 return log_error_errno(r, "Failed to enable subscription: %m");
85d9b598 3277
93a08841
MP
3278 r = sd_event_default(&wait_context.event);
3279 if (r < 0)
3280 return log_error_errno(r, "Failed to allocate event loop: %m");
85d9b598 3281
93a08841
MP
3282 r = sd_bus_attach_event(bus, wait_context.event, 0);
3283 if (r < 0)
3284 return log_error_errno(r, "Failed to attach bus to event loop: %m");
3285 }
3286
b6520546 3287 STRV_FOREACH(name, names) {
4afd3348 3288 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
f459b602 3289
85d9b598 3290 r = start_unit_one(bus, method, job_type, *name, mode, &error, w, arg_wait ? &wait_context : NULL);
0e8d9c0c
LP
3291 if (ret == EXIT_SUCCESS && r < 0)
3292 ret = translate_bus_error_to_exit_status(r, &error);
416b8801
YW
3293
3294 if (r >= 0 && streq(method, "StopUnit")) {
3295 r = strv_push(&stopped_units, *name);
3296 if (r < 0)
3297 return log_oom();
3298 }
e4b61340
LP
3299 }
3300
67f3c402 3301 if (!arg_no_block) {
94369fc0 3302 const char* extra_args[4];
f459b602 3303
94369fc0 3304 r = bus_wait_for_jobs(w, arg_quiet, make_extra_args(extra_args));
0e8d9c0c
LP
3305 if (r < 0)
3306 return r;
49111a70
ZJS
3307
3308 /* When stopping units, warn if they can still be triggered by
3309 * another active unit (socket, path, timer) */
416b8801
YW
3310 if (!arg_quiet)
3311 STRV_FOREACH(name, stopped_units)
86f004fb 3312 (void) check_triggering_units(bus, *name);
67f3c402 3313 }
514f4ef5 3314
0e8d9c0c
LP
3315 if (ret == EXIT_SUCCESS && arg_wait && !set_isempty(wait_context.unit_paths)) {
3316 r = sd_event_loop(wait_context.event);
3317 if (r < 0)
3318 return log_error_errno(r, "Failed to run event loop: %m");
93a08841 3319 if (wait_context.any_failed)
0e8d9c0c 3320 ret = EXIT_FAILURE;
93a08841
MP
3321 }
3322
0e8d9c0c 3323 return ret;
e4b61340
LP
3324}
3325
349cc4a5 3326#if ENABLE_LOGIND
4fbd7192 3327static int logind_set_wall_message(void) {
4afd3348 3328 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
4fbd7192 3329 sd_bus *bus;
f2d11d35
LP
3330 _cleanup_free_ char *m = NULL;
3331 int r;
3332
4fbd7192
LP
3333 r = acquire_bus(BUS_FULL, &bus);
3334 if (r < 0)
3335 return r;
f2d11d35
LP
3336
3337 m = strv_join(arg_wall, " ");
3338 if (!m)
3339 return log_oom();
3340
dbc9830c
ZJS
3341 log_debug("%s wall message \"%s\".", arg_dry_run ? "Would set" : "Setting", m);
3342 if (arg_dry_run)
3343 return 0;
3344
f2d11d35
LP
3345 r = sd_bus_call_method(
3346 bus,
3347 "org.freedesktop.login1",
3348 "/org/freedesktop/login1",
3349 "org.freedesktop.login1.Manager",
3350 "SetWallMessage",
3351 &error,
3352 NULL,
3353 "sb",
3354 m,
3355 !arg_no_wall);
3356
3357 if (r < 0)
3358 return log_warning_errno(r, "Failed to set wall message, ignoring: %s", bus_error_message(&error, r));
f2d11d35
LP
3359 return 0;
3360}
79f1c8f6 3361#endif
f2d11d35 3362
c45e5fb8 3363/* Ask systemd-logind, which might grant access to unprivileged users through polkit */
4fbd7192 3364static int logind_reboot(enum action a) {
349cc4a5 3365#if ENABLE_LOGIND
c45e5fb8
LP
3366 static const struct {
3367 const char *method;
3368 const char *description;
3369 } actions[_ACTION_MAX] = {
3370 [ACTION_POWEROFF] = { "PowerOff", "power off system" },
3371 [ACTION_REBOOT] = { "Reboot", "reboot system" },
3372 [ACTION_HALT] = { "Halt", "halt system" },
3373 [ACTION_SUSPEND] = { "Suspend", "suspend system" },
3374 [ACTION_HIBERNATE] = { "Hibernate", "hibernate system" },
3375 [ACTION_HYBRID_SLEEP] = { "HybridSleep", "put system into hybrid sleep" },
3376 [ACTION_SUSPEND_THEN_HIBERNATE] = { "SuspendThenHibernate", "suspend system, hibernate later" },
3377 };
3378
4afd3348 3379 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
4fbd7192 3380 sd_bus *bus;
f459b602 3381 int r;
4c80c73c 3382
c45e5fb8
LP
3383 if (a < 0 || a >= _ACTION_MAX || !actions[a].method)
3384 return -EINVAL;
3385
4fbd7192
LP
3386 r = acquire_bus(BUS_FULL, &bus);
3387 if (r < 0)
3388 return r;
f2d11d35 3389
8a4b13c5 3390 polkit_agent_open_maybe();
d2ad7e1b
ZJS
3391 (void) logind_set_wall_message();
3392
c45e5fb8
LP
3393 log_debug("%s org.freedesktop.login1.Manager %s dbus call.", arg_dry_run ? "Would execute" : "Executing", actions[a].method);
3394
dbc9830c
ZJS
3395 if (arg_dry_run)
3396 return 0;
3397
f459b602 3398 r = sd_bus_call_method(
f22f08cd
SP
3399 bus,
3400 "org.freedesktop.login1",
3401 "/org/freedesktop/login1",
3402 "org.freedesktop.login1.Manager",
c45e5fb8 3403 actions[a].method,
f459b602 3404 &error,
f22f08cd 3405 NULL,
342641fb 3406 "b", arg_ask_password);
f459b602 3407 if (r < 0)
c45e5fb8 3408 return log_error_errno(r, "Failed to %s via logind: %s", actions[a].description, bus_error_message(&error, r));
f459b602 3409
691395d8 3410 return 0;
4c80c73c
KS
3411#else
3412 return -ENOSYS;
3413#endif
3414}
3415
4fbd7192 3416static int logind_check_inhibitors(enum action a) {
349cc4a5 3417#if ENABLE_LOGIND
4afd3348 3418 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
59164be4 3419 _cleanup_strv_free_ char **sessions = NULL;
f459b602
MAP
3420 const char *what, *who, *why, *mode;
3421 uint32_t uid, pid;
4fbd7192 3422 sd_bus *bus;
f459b602 3423 unsigned c = 0;
59164be4 3424 char **s;
f459b602 3425 int r;
b37844d3 3426
748ebafa
LP
3427 if (arg_ignore_inhibitors || arg_force > 0)
3428 return 0;
3429
3430 if (arg_when > 0)
3431 return 0;
3432
3433 if (geteuid() == 0)
b37844d3
LP
3434 return 0;
3435
3436 if (!on_tty())
3437 return 0;
e08ab379
LP
3438
3439 if (arg_transport != BUS_TRANSPORT_LOCAL)
3440 return 0;
b37844d3 3441
4fbd7192
LP
3442 r = acquire_bus(BUS_FULL, &bus);
3443 if (r < 0)
3444 return r;
3445
f459b602 3446 r = sd_bus_call_method(
b37844d3
LP
3447 bus,
3448 "org.freedesktop.login1",
3449 "/org/freedesktop/login1",
3450 "org.freedesktop.login1.Manager",
3451 "ListInhibitors",
b37844d3 3452 NULL,
f459b602
MAP
3453 &reply,
3454 NULL);
b37844d3
LP
3455 if (r < 0)
3456 /* If logind is not around, then there are no inhibitors... */
3457 return 0;
3458
4aa2beac 3459 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssssuu)");
f459b602
MAP
3460 if (r < 0)
3461 return bus_log_parse_error(r);
b37844d3 3462
4aa2beac 3463 while ((r = sd_bus_message_read(reply, "(ssssuu)", &what, &who, &why, &mode, &uid, &pid)) > 0) {
59164be4 3464 _cleanup_free_ char *comm = NULL, *user = NULL;
f459b602 3465 _cleanup_strv_free_ char **sv = NULL;
b37844d3
LP
3466
3467 if (!streq(mode, "block"))
f459b602 3468 continue;
b37844d3
LP
3469
3470 sv = strv_split(what, ":");
3471 if (!sv)
3472 return log_oom();
3473
2f50e59f
LP
3474 if (!pid_is_valid((pid_t) pid))
3475 return log_error_errno(SYNTHETIC_ERRNO(ERANGE), "Invalid PID "PID_FMT".", (pid_t) pid);
d028e018 3476
b37844d3 3477 if (!strv_contains(sv,
4c315c2c
IS
3478 IN_SET(a,
3479 ACTION_HALT,
3480 ACTION_POWEROFF,
3481 ACTION_REBOOT,
3482 ACTION_KEXEC) ? "shutdown" : "sleep"))
f459b602 3483 continue;
b37844d3
LP
3484
3485 get_process_comm(pid, &comm);
59164be4 3486 user = uid_to_name(uid);
f459b602 3487
de0671ee 3488 log_warning("Operation inhibited by \"%s\" (PID "PID_FMT" \"%s\", user %s), reason is \"%s\".",
d028e018 3489 who, (pid_t) pid, strna(comm), strna(user), why);
b37844d3 3490
f459b602 3491 c++;
b37844d3 3492 }
f459b602
MAP
3493 if (r < 0)
3494 return bus_log_parse_error(r);
b37844d3 3495
f459b602
MAP
3496 r = sd_bus_message_exit_container(reply);
3497 if (r < 0)
3498 return bus_log_parse_error(r);
b37844d3 3499
59164be4
LP
3500 /* Check for current sessions */
3501 sd_get_sessions(&sessions);
3502 STRV_FOREACH(s, sessions) {
59164be4
LP
3503 _cleanup_free_ char *type = NULL, *tty = NULL, *seat = NULL, *user = NULL, *service = NULL, *class = NULL;
3504
3505 if (sd_session_get_uid(*s, &uid) < 0 || uid == getuid())
3506 continue;
3507
3508 if (sd_session_get_class(*s, &class) < 0 || !streq(class, "user"))
3509 continue;
3510
28abce5d 3511 if (sd_session_get_type(*s, &type) < 0 || !STR_IN_SET(type, "x11", "wayland", "tty", "mir"))
59164be4
LP
3512 continue;
3513
3514 sd_session_get_tty(*s, &tty);
3515 sd_session_get_seat(*s, &seat);
3516 sd_session_get_service(*s, &service);
3517 user = uid_to_name(uid);
3518
3519 log_warning("User %s is logged in on %s.", strna(user), isempty(tty) ? (isempty(seat) ? strna(service) : seat) : tty);
3520 c++;
3521 }
3522
b37844d3
LP
3523 if (c <= 0)
3524 return 0;
3525
59164be4 3526 log_error("Please retry operation after closing inhibitors and logging out other users.\nAlternatively, ignore inhibitors and users with 'systemctl %s -i'.",
47a0eaa6 3527 action_table[a].verb);
b37844d3
LP
3528
3529 return -EPERM;
3530#else
3531 return 0;
3532#endif
3533}
3534
97af80c5
LP
3535static int prepare_firmware_setup(void) {
3536
3537 if (!arg_firmware_setup)
3538 return 0;
3539
349cc4a5 3540#if ENABLE_LOGIND
4afd3348 3541 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
4fbd7192 3542 sd_bus *bus;
a4921cf4
JJ
3543 int r;
3544
4fbd7192
LP
3545 r = acquire_bus(BUS_FULL, &bus);
3546 if (r < 0)
3547 return r;
a4921cf4 3548
a4921cf4
JJ
3549 r = sd_bus_call_method(
3550 bus,
3551 "org.freedesktop.login1",
3552 "/org/freedesktop/login1",
3553 "org.freedesktop.login1.Manager",
3554 "SetRebootToFirmwareSetup",
3555 &error,
3556 NULL,
3557 "b", true);
4fbd7192
LP
3558 if (r < 0)
3559 return log_error_errno(r, "Cannot indicate to EFI to boot into setup mode: %s", bus_error_message(&error, r));
a4921cf4
JJ
3560
3561 return 0;
3562#else
2f50e59f
LP
3563 return log_error_errno(SYNTHETIC_ERRNO(ENOSYS),
3564 "Booting into firmware setup not supported.");
a4921cf4
JJ
3565#endif
3566}
3567
97af80c5
LP
3568static int prepare_boot_loader_menu(void) {
3569
3570 if (arg_boot_loader_menu == USEC_INFINITY)
3571 return 0;
3572
3573#if ENABLE_LOGIND
3574 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
3575 sd_bus *bus;
4fbd7192
LP
3576 int r;
3577
97af80c5
LP
3578 r = acquire_bus(BUS_FULL, &bus);
3579 if (r < 0)
3580 return r;
3581
3582 r = sd_bus_call_method(
3583 bus,
3584 "org.freedesktop.login1",
3585 "/org/freedesktop/login1",
3586 "org.freedesktop.login1.Manager",
3587 "SetRebootToBootLoaderMenu",
3588 &error,
3589 NULL,
3590 "t", arg_boot_loader_menu);
3591 if (r < 0)
3592 return log_error_errno(r, "Cannot indicate to boot loader to enter boot loader entry menu: %s", bus_error_message(&error, r));
3593
3594 return 0;
3595#else
2f50e59f
LP
3596 return log_error_errno(SYNTHETIC_ERRNO(ENOSYS),
3597 "Booting into boot loader menu not supported.");
97af80c5
LP
3598#endif
3599}
3600
3601static int prepare_boot_loader_entry(void) {
3602
3603 if (!arg_boot_loader_entry)
4fbd7192
LP
3604 return 0;
3605
97af80c5
LP
3606#if ENABLE_LOGIND
3607 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
3608 sd_bus *bus;
3609 int r;
4fbd7192 3610
97af80c5
LP
3611 r = acquire_bus(BUS_FULL, &bus);
3612 if (r < 0)
3613 return r;
3614
3615 r = sd_bus_call_method(
3616 bus,
3617 "org.freedesktop.login1",
3618 "/org/freedesktop/login1",
3619 "org.freedesktop.login1.Manager",
3620 "SetRebootToBootLoaderEntry",
3621 &error,
3622 NULL,
3623 "s", arg_boot_loader_entry);
3624 if (r < 0)
3625 return log_error_errno(r, "Cannot set boot into loader entry '%s': %s", arg_boot_loader_entry, bus_error_message(&error, r));
4fbd7192 3626
97af80c5
LP
3627 return 0;
3628#else
ee429649
LP
3629 return log_error_errno(SYNTHETIC_ERRNO(ENOSYS),
3630 "Booting into boot loader entry not supported.");
97af80c5 3631#endif
4fbd7192
LP
3632}
3633
4bb2e9d4
ZJS
3634static int load_kexec_kernel(void) {
3635 _cleanup_(boot_config_free) BootConfig config = {};
43b736a8 3636 _cleanup_free_ char *kernel = NULL, *initrd = NULL, *options = NULL;
4bb2e9d4
ZJS
3637 const BootEntry *e;
3638 pid_t pid;
3639 int r;
3640
3641 if (kexec_loaded()) {
3642 log_debug("Kexec kernel already loaded.");
3643 return 0;
3644 }
3645
c0d73214
ZJS
3646 if (access(KEXEC, X_OK) < 0)
3647 return log_error_errno(errno, KEXEC" is not available: %m");
3648
38bd74d6 3649 r = boot_entries_load_config_auto(NULL, NULL, &config);
cc5957dc
LP
3650 if (r == -ENOKEY) /* The call doesn't log about ENOKEY, let's do so here. */
3651 return log_error_errno(r, "Cannot find the ESP partition mount point.");
4bb2e9d4 3652 if (r < 0)
1b20d889 3653 return r;
4bb2e9d4 3654
38bd74d6
LP
3655 e = boot_config_default_entry(&config);
3656 if (!e)
3657 return log_error_errno(SYNTHETIC_ERRNO(ENOENT),
3658 "No boot loader entry suitable as default, refusing to guess.");
3659
3660 log_debug("Found default boot loader entry in file \"%s\"", e->path);
3661
78c38fe7
LP
3662 if (!e->kernel)
3663 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP),
3664 "Boot entry does not refer to Linux kernel, which is not supported currently.");
8a1ef3bf 3665 if (strv_length(e->initrd) > 1)
0f88d829 3666 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP),
8a1ef3bf 3667 "Boot entry specifies multiple initrds, which is not supported currently.");
4bb2e9d4 3668
43b736a8 3669 kernel = path_join(e->root, e->kernel);
9fc32cd9
LP
3670 if (!kernel)
3671 return log_oom();
3672
3673 if (!strv_isempty(e->initrd)) {
0f88d829 3674 initrd = path_join(e->root, e->initrd[0]);
9fc32cd9
LP
3675 if (!initrd)
3676 return log_oom();
3677 }
3678
4bb2e9d4
ZJS
3679 options = strv_join(e->options, " ");
3680 if (!options)
3681 return log_oom();
3682
cd086a01
ZJS
3683 log_full(arg_quiet ? LOG_DEBUG : LOG_INFO,
3684 "%s "KEXEC" --load \"%s\" --append \"%s\"%s%s%s",
3685 arg_dry_run ? "Would run" : "Running",
3686 kernel,
3687 options,
3688 initrd ? " --initrd \"" : NULL, strempty(initrd), initrd ? "\"" : "");
4bb2e9d4
ZJS
3689 if (arg_dry_run)
3690 return 0;
3691
c943e95f 3692 r = safe_fork("(kexec)", FORK_WAIT|FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_RLIMIT_NOFILE_SAFE|FORK_LOG, &pid);
4c253ed1 3693 if (r < 0)
b6e1fff1 3694 return r;
4c253ed1 3695 if (r == 0) {
4bb2e9d4
ZJS
3696 const char* const args[] = {
3697 KEXEC,
3698 "--load", kernel,
3699 "--append", options,
3700 initrd ? "--initrd" : NULL, initrd,
c943e95f
LP
3701 NULL
3702 };
4bb2e9d4
ZJS
3703
3704 /* Child */
4bb2e9d4
ZJS
3705 execv(args[0], (char * const *) args);
3706 _exit(EXIT_FAILURE);
4c253ed1
LP
3707 }
3708
df685d57 3709 return 0;
4bb2e9d4
ZJS
3710}
3711
57ab9006 3712static int set_exit_code(uint8_t code) {
4afd3348 3713 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
57ab9006
LP
3714 sd_bus *bus;
3715 int r;
3716
3717 r = acquire_bus(BUS_MANAGER, &bus);
3718 if (r < 0)
3719 return r;
3720
3721 r = sd_bus_call_method(
3722 bus,
3723 "org.freedesktop.systemd1",
3724 "/org/freedesktop/systemd1",
3725 "org.freedesktop.systemd1.Manager",
3726 "SetExitCode",
3727 &error,
3728 NULL,
3729 "y", code);
3730 if (r < 0)
af3d8113 3731 return log_error_errno(r, "Failed to set exit code: %s", bus_error_message(&error, r));
57ab9006
LP
3732
3733 return 0;
3734}
3735
e449de87 3736static int start_special(int argc, char *argv[], void *userdata) {
4c80c73c 3737 enum action a;
983d9c90 3738 int r;
2b0f4e6f
ZJS
3739 bool termination_action; /* an action that terminates the manager,
3740 * can be performed also by signal. */
983d9c90 3741
e449de87 3742 assert(argv);
514f4ef5 3743
e449de87 3744 a = verb_to_action(argv[0]);
4c80c73c 3745
4fbd7192 3746 r = logind_check_inhibitors(a);
748ebafa
LP
3747 if (r < 0)
3748 return r;
3749
fba868fa
LP
3750 if (arg_force >= 2) {
3751 r = must_be_root();
3752 if (r < 0)
3753 return r;
c32b90de
LP
3754 }
3755
4fbd7192 3756 r = prepare_firmware_setup();
a4921cf4
JJ
3757 if (r < 0)
3758 return r;
5bdf2243 3759
97af80c5
LP
3760 r = prepare_boot_loader_menu();
3761 if (r < 0)
3762 return r;
3763
3764 r = prepare_boot_loader_entry();
3765 if (r < 0)
3766 return r;
3767
e449de87 3768 if (a == ACTION_REBOOT && argc > 1) {
77defcf5 3769 r = update_reboot_parameter_and_warn(argv[1], false);
b986229e
SW
3770 if (r < 0)
3771 return r;
57ab9006 3772
4bb2e9d4
ZJS
3773 } else if (a == ACTION_KEXEC) {
3774 r = load_kexec_kernel();
d23b5ce2
ZJS
3775 if (r < 0 && arg_force >= 1)
3776 log_notice("Failed to load kexec kernel, continuing without.");
3777 else if (r < 0)
4bb2e9d4
ZJS
3778 return r;
3779
e449de87 3780 } else if (a == ACTION_EXIT && argc > 1) {
7bbb5359 3781 uint8_t code;
287419c1 3782
57ab9006
LP
3783 /* If the exit code is not given on the command line,
3784 * don't reset it to zero: just keep it as it might
3785 * have been set previously. */
287419c1 3786
e449de87 3787 r = safe_atou8(argv[1], &code);
4fbd7192 3788 if (r < 0)
57ab9006 3789 return log_error_errno(r, "Invalid exit code.");
4fbd7192 3790
57ab9006 3791 r = set_exit_code(code);
691395d8 3792 if (r < 0)
57ab9006 3793 return r;
b986229e
SW
3794 }
3795
2b0f4e6f
ZJS
3796 termination_action = IN_SET(a,
3797 ACTION_HALT,
3798 ACTION_POWEROFF,
3799 ACTION_REBOOT);
3800 if (termination_action && arg_force >= 2)
477def80 3801 return halt_now(a);
e606bb61 3802
7e59bfcb 3803 if (arg_force >= 1 &&
5955df2c 3804 (termination_action || IN_SET(a, ACTION_KEXEC, ACTION_EXIT)))
2b0f4e6f
ZJS
3805 r = trivial_method(argc, argv, userdata);
3806 else {
3807 /* First try logind, to allow authentication with polkit */
3808 if (IN_SET(a,
3809 ACTION_POWEROFF,
3810 ACTION_REBOOT,
36b69c31 3811 ACTION_HALT,
2b0f4e6f
ZJS
3812 ACTION_SUSPEND,
3813 ACTION_HIBERNATE,
c58493c0 3814 ACTION_HYBRID_SLEEP,
e68c79db 3815 ACTION_SUSPEND_THEN_HIBERNATE)) {
2b0f4e6f
ZJS
3816
3817 r = logind_reboot(a);
3818 if (r >= 0)
3819 return r;
3820 if (IN_SET(r, -EOPNOTSUPP, -EINPROGRESS))
3821 /* requested operation is not supported or already in progress */
3822 return r;
20b09ca7 3823
130246d2
LP
3824 /* On all other errors, try low-level operation. In order to minimize the difference between
3825 * operation with and without logind, we explicitly enable non-blocking mode for this, as
3826 * logind's shutdown operations are always non-blocking. */
3827
3828 arg_no_block = true;
3829
3830 } else if (IN_SET(a, ACTION_EXIT, ACTION_KEXEC))
3831 /* Since exit/kexec are so close in behaviour to power-off/reboot, let's also make them
3832 * asynchronous, in order to not confuse the user needlessly with unexpected behaviour. */
3833 arg_no_block = true;
7089051f 3834
2b0f4e6f 3835 r = start_unit(argc, argv, userdata);
4c80c73c 3836 }
983d9c90 3837
2b0f4e6f
ZJS
3838 if (termination_action && arg_force < 2 &&
3839 IN_SET(r, -ENOENT, -ETIMEDOUT))
cc7de2ba 3840 log_notice("It is possible to perform action directly, see discussion of --force --force in man:systemctl(1).");
2b0f4e6f
ZJS
3841
3842 return r;
514f4ef5
LP
3843}
3844
988b3b17
ZJS
3845static int start_system_special(int argc, char *argv[], void *userdata) {
3846 /* Like start_special above, but raises an error when running in user mode */
3847
baaa35ad
ZJS
3848 if (arg_scope != UNIT_FILE_SYSTEM)
3849 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3850 "Bad action for %s mode.",
3851 arg_scope == UNIT_FILE_GLOBAL ? "--global" : "--user");
988b3b17
ZJS
3852
3853 return start_special(argc, argv, userdata);
3854}
3855
fa0d5878 3856static int check_unit_generic(int code, const UnitActiveState good_states[], int nb_states, char **args) {
e3e0314b 3857 _cleanup_strv_free_ char **names = NULL;
fa0d5878 3858 UnitActiveState active_state;
4fbd7192 3859 sd_bus *bus;
729e3769 3860 char **name;
fa0d5878 3861 int r, i;
d60f6ad0 3862 bool found = false;
0183528f 3863
4fbd7192
LP
3864 r = acquire_bus(BUS_MANAGER, &bus);
3865 if (r < 0)
3866 return r;
3867
e3e0314b 3868 r = expand_names(bus, args, NULL, &names);
f647962d
MS
3869 if (r < 0)
3870 return log_error_errno(r, "Failed to expand names: %m");
e3e0314b
ZJS
3871
3872 STRV_FOREACH(name, names) {
fa0d5878
BR
3873 r = get_state_one_unit(bus, *name, &active_state);
3874 if (r < 0)
3875 return r;
3876
3877 if (!arg_quiet)
3878 puts(unit_active_state_to_string(active_state));
60f9ba0b 3879
fa0d5878
BR
3880 for (i = 0; i < nb_states; ++i)
3881 if (good_states[i] == active_state)
3882 found = true;
1a0fce45
TA
3883 }
3884
d60f6ad0
LN
3885 /* use the given return code for the case that we won't find
3886 * any unit which matches the list */
3887 return found ? 0 : code;
1a0fce45
TA
3888}
3889
e449de87 3890static int check_unit_active(int argc, char *argv[], void *userdata) {
9897b09b
LP
3891 static const UnitActiveState states[] = {
3892 UNIT_ACTIVE,
3893 UNIT_RELOADING,
3894 };
3895
e3e0314b 3896 /* According to LSB: 3, "program is not running" */
b613907e 3897 return check_unit_generic(EXIT_PROGRAM_NOT_RUNNING, states, ELEMENTSOF(states), strv_skip(argv, 1));
e3e0314b 3898}
0183528f 3899
e449de87 3900static int check_unit_failed(int argc, char *argv[], void *userdata) {
9897b09b
LP
3901 static const UnitActiveState states[] = {
3902 UNIT_FAILED,
3903 };
3904
b613907e 3905 return check_unit_generic(EXIT_PROGRAM_DEAD_AND_PID_EXISTS, states, ELEMENTSOF(states), strv_skip(argv, 1));
48220598
LP
3906}
3907
e449de87 3908static int kill_unit(int argc, char *argv[], void *userdata) {
e3e0314b 3909 _cleanup_strv_free_ char **names = NULL;
ac5e3a50 3910 char *kill_who = NULL, **name;
4fbd7192 3911 sd_bus *bus;
e3e0314b 3912 int r, q;
8a0867d6 3913
4fbd7192
LP
3914 r = acquire_bus(BUS_MANAGER, &bus);
3915 if (r < 0)
3916 return r;
3917
8a4b13c5 3918 polkit_agent_open_maybe();
d2ad7e1b 3919
8a0867d6
LP
3920 if (!arg_kill_who)
3921 arg_kill_who = "all";
3922
ac5e3a50
JS
3923 /* --fail was specified */
3924 if (streq(arg_job_mode, "fail"))
81d62103 3925 kill_who = strjoina(arg_kill_who, "-fail");
ac5e3a50 3926
e449de87 3927 r = expand_names(bus, strv_skip(argv, 1), NULL, &names);
e3e0314b 3928 if (r < 0)
691395d8 3929 return log_error_errno(r, "Failed to expand names: %m");
60f9ba0b 3930
e3e0314b 3931 STRV_FOREACH(name, names) {
4afd3348 3932 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
342641fb 3933
6e646d22 3934 q = sd_bus_call_method(
f22f08cd 3935 bus,
b0193f1c
LP
3936 "org.freedesktop.systemd1",
3937 "/org/freedesktop/systemd1",
3938 "org.freedesktop.systemd1.Manager",
6e646d22
LP
3939 "KillUnit",
3940 &error,
3941 NULL,
169d7fb6 3942 "ssi", *name, kill_who ? kill_who : arg_kill_who, arg_signal);
e3e0314b 3943 if (q < 0) {
169d7fb6 3944 log_error_errno(q, "Failed to kill unit %s: %s", *name, bus_error_message(&error, q));
e3e0314b
ZJS
3945 if (r == 0)
3946 r = q;
f459b602 3947 }
8a0867d6 3948 }
f459b602 3949
e3e0314b 3950 return r;
8a0867d6
LP
3951}
3952
582a507f 3953typedef struct ExecStatusInfo {
0129173a
LP
3954 char *name;
3955
582a507f
LP
3956 char *path;
3957 char **argv;
3958
b708e7ce
LP
3959 bool ignore;
3960
582a507f
LP
3961 usec_t start_timestamp;
3962 usec_t exit_timestamp;
3963 pid_t pid;
3964 int code;
3965 int status;
3966
b3d59367
AZ
3967 ExecCommandFlags flags;
3968
582a507f
LP
3969 LIST_FIELDS(struct ExecStatusInfo, exec);
3970} ExecStatusInfo;
3971
3972static void exec_status_info_free(ExecStatusInfo *i) {
3973 assert(i);
3974
0129173a 3975 free(i->name);
582a507f
LP
3976 free(i->path);
3977 strv_free(i->argv);
3978 free(i);
3979}
3980
b3d59367
AZ
3981static int exec_status_info_deserialize(sd_bus_message *m, ExecStatusInfo *i, bool is_ex_prop) {
3982 _cleanup_strv_free_ char **ex_opts = NULL;
b21a0ef8 3983 uint64_t start_timestamp, exit_timestamp, start_timestamp_monotonic, exit_timestamp_monotonic;
f459b602 3984 const char *path;
582a507f
LP
3985 uint32_t pid;
3986 int32_t code, status;
f459b602 3987 int ignore, r;
582a507f 3988
f459b602 3989 assert(m);
582a507f 3990 assert(i);
582a507f 3991
b3d59367 3992 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_STRUCT, is_ex_prop ? "sasasttttuii" : "sasbttttuii");
f459b602
MAP
3993 if (r < 0)
3994 return bus_log_parse_error(r);
3995 else if (r == 0)
3996 return 0;
582a507f 3997
f459b602
MAP
3998 r = sd_bus_message_read(m, "s", &path);
3999 if (r < 0)
4000 return bus_log_parse_error(r);
582a507f 4001
f84190d8
LP
4002 i->path = strdup(path);
4003 if (!i->path)
f459b602 4004 return log_oom();
582a507f 4005
f459b602
MAP
4006 r = sd_bus_message_read_strv(m, &i->argv);
4007 if (r < 0)
4008 return bus_log_parse_error(r);
4009
b3d59367
AZ
4010 r = is_ex_prop ? sd_bus_message_read_strv(m, &ex_opts) : sd_bus_message_read(m, "b", &ignore);
4011 if (r < 0)
4012 return bus_log_parse_error(r);
4013
f459b602 4014 r = sd_bus_message_read(m,
b3d59367 4015 "ttttuii",
f459b602
MAP
4016 &start_timestamp, &start_timestamp_monotonic,
4017 &exit_timestamp, &exit_timestamp_monotonic,
4018 &pid,
4019 &code, &status);
4020 if (r < 0)
4021 return bus_log_parse_error(r);
582a507f 4022
b3d59367
AZ
4023 if (is_ex_prop) {
4024 r = exec_command_flags_from_strv(ex_opts, &i->flags);
4025 if (r < 0)
4026 return log_error_errno(r, "Failed to convert strv to ExecCommandFlags: %m");
4027
4028 i->ignore = FLAGS_SET(i->flags, EXEC_COMMAND_IGNORE_FAILURE);
4029 } else
4030 i->ignore = ignore;
4031
582a507f
LP
4032 i->start_timestamp = (usec_t) start_timestamp;
4033 i->exit_timestamp = (usec_t) exit_timestamp;
4034 i->pid = (pid_t) pid;
4035 i->code = code;
4036 i->status = status;
4037
f459b602
MAP
4038 r = sd_bus_message_exit_container(m);
4039 if (r < 0)
4040 return bus_log_parse_error(r);
4041
4042 return 1;
582a507f
LP
4043}
4044
d5db7fe6
WC
4045typedef struct UnitCondition {
4046 char *name;
b1ed76ae 4047 char *param;
d5db7fe6
WC
4048 bool trigger;
4049 bool negate;
d5db7fe6
WC
4050 int tristate;
4051
b1ed76ae 4052 LIST_FIELDS(struct UnitCondition, conditions);
d5db7fe6
WC
4053} UnitCondition;
4054
4055static void unit_condition_free(UnitCondition *c) {
9bb71940
ZJS
4056 if (!c)
4057 return;
d5db7fe6
WC
4058
4059 free(c->name);
4060 free(c->param);
4061 free(c);
4062}
4063
9bb71940
ZJS
4064DEFINE_TRIVIAL_CLEANUP_FUNC(UnitCondition*, unit_condition_free);
4065
61cbdc4b
LP
4066typedef struct UnitStatusInfo {
4067 const char *id;
4068 const char *load_state;
4069 const char *active_state;
4070 const char *sub_state;
a4375746 4071 const char *unit_file_state;
d2dc52db 4072 const char *unit_file_preset;
61cbdc4b
LP
4073
4074 const char *description;
4a9e2fff 4075 const char *following;
61cbdc4b 4076
49dbfa7b
LP
4077 char **documentation;
4078
1b64d026
LP
4079 const char *fragment_path;
4080 const char *source_path;
4ad49000 4081 const char *control_group;
61cbdc4b 4082
76d14b87
OS
4083 char **dropin_paths;
4084
9f39404c 4085 const char *load_error;
f42806df 4086 const char *result;
9f39404c 4087
584be568 4088 usec_t inactive_exit_timestamp;
df50185b 4089 usec_t inactive_exit_timestamp_monotonic;
584be568
LP
4090 usec_t active_enter_timestamp;
4091 usec_t active_exit_timestamp;
4092 usec_t inactive_enter_timestamp;
4093
45fb0699 4094 bool need_daemon_reload;
055ef36b 4095 bool transient;
45fb0699 4096
61cbdc4b
LP
4097 /* Service */
4098 pid_t main_pid;
4099 pid_t control_pid;
4100 const char *status_text;
175728c4 4101 const char *pid_file;
d06dacd0 4102 bool running:1;
b4af5a80 4103 int status_errno;
61cbdc4b
LP
4104
4105 usec_t start_timestamp;
4106 usec_t exit_timestamp;
4107
4108 int exit_code, exit_status;
4109
90bbc946
LP
4110 usec_t condition_timestamp;
4111 bool condition_result;
b1ed76ae 4112 LIST_HEAD(UnitCondition, conditions);
59fccdc5
LP
4113
4114 usec_t assert_timestamp;
4115 bool assert_result;
4116 bool failed_assert_trigger;
4117 bool failed_assert_negate;
4118 const char *failed_assert;
4119 const char *failed_assert_parameter;
601b0842
GS
4120 usec_t next_elapse_real;
4121 usec_t next_elapse_monotonic;
90bbc946 4122
61cbdc4b
LP
4123 /* Socket */
4124 unsigned n_accepted;
4125 unsigned n_connections;
a98f7575 4126 unsigned n_refused;
b8131a87 4127 bool accept;
61cbdc4b 4128
13160134 4129 /* Pairs of type, path */
67419600
OS
4130 char **listen;
4131
61cbdc4b
LP
4132 /* Device */
4133 const char *sysfs_path;
4134
4135 /* Mount, Automount */
4136 const char *where;
4137
4138 /* Swap */
4139 const char *what;
582a507f 4140
934277fe
LP
4141 /* CGroup */
4142 uint64_t memory_current;
48422635 4143 uint64_t memory_min;
da4d897e
TH
4144 uint64_t memory_low;
4145 uint64_t memory_high;
4146 uint64_t memory_max;
96e131ea 4147 uint64_t memory_swap_max;
934277fe 4148 uint64_t memory_limit;
5ad096b3 4149 uint64_t cpu_usage_nsec;
03a7b521
LP
4150 uint64_t tasks_current;
4151 uint64_t tasks_max;
0e97c93f
DM
4152 uint64_t ip_ingress_bytes;
4153 uint64_t ip_egress_bytes;
7a5de3f9
LP
4154 uint64_t io_read_bytes;
4155 uint64_t io_write_bytes;
0e97c93f 4156
7ad5439e 4157 uint64_t default_memory_min;
c52db42b
CD
4158 uint64_t default_memory_low;
4159
582a507f 4160 LIST_HEAD(ExecStatusInfo, exec);
61cbdc4b
LP
4161} UnitStatusInfo;
4162
a7335518
ZJS
4163static void unit_status_info_free(UnitStatusInfo *info) {
4164 ExecStatusInfo *p;
4165 UnitCondition *c;
4166
4167 strv_free(info->documentation);
4168 strv_free(info->dropin_paths);
4169 strv_free(info->listen);
4170
4171 while ((c = info->conditions)) {
4172 LIST_REMOVE(conditions, info->conditions, c);
4173 unit_condition_free(c);
4174 }
4175
4176 while ((p = info->exec)) {
4177 LIST_REMOVE(exec, info->exec, p);
4178 exec_status_info_free(p);
4179 }
4180}
4181
f459b602 4182static void print_status_info(
291d565a 4183 sd_bus *bus,
f459b602
MAP
4184 UnitStatusInfo *i,
4185 bool *ellipsized) {
4186
4d9685be
ZJS
4187 char since1[FORMAT_TIMESTAMP_RELATIVE_MAX], since2[FORMAT_TIMESTAMP_MAX];
4188 const char *s1, *s2, *active_on, *active_off, *on, *off, *ss;
c7080257
LP
4189 _cleanup_free_ char *formatted_path = NULL;
4190 ExecStatusInfo *p;
584be568 4191 usec_t timestamp;
1b64d026 4192 const char *path;
13160134 4193 char **t, **t2;
291d565a 4194 int r;
582a507f 4195
61cbdc4b
LP
4196 assert(i);
4197
4198 /* This shows pretty information about a unit. See
4199 * print_property() for a low-level property printer */
4200
b0d14c69
LP
4201 if (streq_ptr(i->active_state, "failed")) {
4202 active_on = ansi_highlight_red();
1fc464f6 4203 active_off = ansi_normal();
1cf03a4f 4204 } else if (STRPTR_IN_SET(i->active_state, "active", "reloading")) {
b0d14c69 4205 active_on = ansi_highlight_green();
1fc464f6 4206 active_off = ansi_normal();
b0d14c69
LP
4207 } else
4208 active_on = active_off = "";
4209
9a6f746f 4210 printf("%s%s%s %s", active_on, special_glyph(SPECIAL_GLYPH_BLACK_CIRCLE), active_off, strna(i->id));
61cbdc4b
LP
4211
4212 if (i->description && !streq_ptr(i->id, i->description))
4213 printf(" - %s", i->description);
4214
4215 printf("\n");
4216
4a9e2fff 4217 if (i->following)
856323c9 4218 printf(" Follow: unit currently follows state of %s\n", i->following);
4a9e2fff 4219
c4555ad8 4220 if (STRPTR_IN_SET(i->load_state, "error", "not-found", "bad-setting")) {
0b5a519c 4221 on = ansi_highlight_red();
1fc464f6 4222 off = ansi_normal();
c31b4423
LP
4223 } else
4224 on = off = "";
4225
c7080257
LP
4226 path = i->source_path ?: i->fragment_path;
4227 if (path && terminal_urlify_path(path, NULL, &formatted_path) >= 0)
4228 path = formatted_path;
1b64d026 4229
9a0abfa8 4230 if (!isempty(i->load_error))
856323c9
ZJS
4231 printf(" Loaded: %s%s%s (Reason: %s)\n",
4232 on, strna(i->load_state), off, i->load_error);
15ce1647
LP
4233 else if (path && !isempty(i->unit_file_state) && !isempty(i->unit_file_preset) &&
4234 !STR_IN_SET(i->unit_file_state, "generated", "transient"))
d2dc52db
LP
4235 printf(" Loaded: %s%s%s (%s; %s; vendor preset: %s)\n",
4236 on, strna(i->load_state), off, path, i->unit_file_state, i->unit_file_preset);
4237 else if (path && !isempty(i->unit_file_state))
856323c9
ZJS
4238 printf(" Loaded: %s%s%s (%s; %s)\n",
4239 on, strna(i->load_state), off, path, i->unit_file_state);
1b64d026 4240 else if (path)
856323c9
ZJS
4241 printf(" Loaded: %s%s%s (%s)\n",
4242 on, strna(i->load_state), off, path);
61cbdc4b 4243 else
856323c9
ZJS
4244 printf(" Loaded: %s%s%s\n",
4245 on, strna(i->load_state), off);
61cbdc4b 4246
055ef36b
LP
4247 if (i->transient)
4248 printf("Transient: yes\n");
4249
76d14b87 4250 if (!strv_isempty(i->dropin_paths)) {
f459b602 4251 _cleanup_free_ char *dir = NULL;
76d14b87 4252 bool last = false;
f459b602 4253 char ** dropin;
76d14b87
OS
4254
4255 STRV_FOREACH(dropin, i->dropin_paths) {
c7080257
LP
4256 _cleanup_free_ char *dropin_formatted = NULL;
4257 const char *df;
4258
eb2c3192
LP
4259 if (!dir || last) {
4260 printf(dir ? " " :
4261 " Drop-In: ");
76d14b87 4262
97b11eed 4263 dir = mfree(dir);
76d14b87 4264
5f311f8c
LP
4265 dir = dirname_malloc(*dropin);
4266 if (!dir) {
76d14b87
OS
4267 log_oom();
4268 return;
4269 }
4270
eb2c3192
LP
4271 printf("%s\n"
4272 " %s", dir,
9a6f746f 4273 special_glyph(SPECIAL_GLYPH_TREE_RIGHT));
76d14b87
OS
4274 }
4275
4276 last = ! (*(dropin + 1) && startswith(*(dropin + 1), dir));
4277
c7080257
LP
4278 if (terminal_urlify_path(*dropin, basename(*dropin), &dropin_formatted) >= 0)
4279 df = dropin_formatted;
4280 else
4281 df = *dropin;
4282
4283 printf("%s%s", df, last ? "\n" : ", ");
76d14b87 4284 }
76d14b87
OS
4285 }
4286
2ee68f72 4287 ss = streq_ptr(i->active_state, i->sub_state) ? NULL : i->sub_state;
2ee68f72 4288 if (ss)
856323c9 4289 printf(" Active: %s%s (%s)%s",
b0d14c69 4290 active_on, strna(i->active_state), ss, active_off);
2ee68f72 4291 else
856323c9 4292 printf(" Active: %s%s%s",
b0d14c69 4293 active_on, strna(i->active_state), active_off);
61cbdc4b 4294
f42806df
LP
4295 if (!isempty(i->result) && !streq(i->result, "success"))
4296 printf(" (Result: %s)", i->result);
4297
1cf03a4f
ZJS
4298 timestamp = STRPTR_IN_SET(i->active_state, "active", "reloading") ? i->active_enter_timestamp :
4299 STRPTR_IN_SET(i->active_state, "inactive", "failed") ? i->inactive_enter_timestamp :
4300 STRPTR_IN_SET(i->active_state, "activating") ? i->inactive_exit_timestamp :
4301 i->active_exit_timestamp;
584be568 4302
bbb8486e 4303 s1 = format_timestamp_relative(since1, sizeof(since1), timestamp);
584be568
LP
4304 s2 = format_timestamp(since2, sizeof(since2), timestamp);
4305
4306 if (s1)
538da63d 4307 printf(" since %s; %s\n", s2, s1);
584be568 4308 else if (s2)
538da63d 4309 printf(" since %s\n", s2);
584be568
LP
4310 else
4311 printf("\n");
4312
601b0842
GS
4313 if (endswith(i->id, ".timer")) {
4314 char tstamp1[FORMAT_TIMESTAMP_RELATIVE_MAX],
4315 tstamp2[FORMAT_TIMESTAMP_MAX];
4d9685be 4316 const char *next_rel_time, *next_time;
601b0842
GS
4317 dual_timestamp nw, next = {i->next_elapse_real,
4318 i->next_elapse_monotonic};
4319 usec_t next_elapse;
4320
4321 printf(" Trigger: ");
4322
4323 dual_timestamp_get(&nw);
4324 next_elapse = calc_next_elapse(&nw, &next);
4d9685be
ZJS
4325 next_rel_time = format_timestamp_relative(tstamp1, sizeof tstamp1, next_elapse);
4326 next_time = format_timestamp(tstamp2, sizeof tstamp2, next_elapse);
601b0842
GS
4327
4328 if (next_time && next_rel_time)
4329 printf("%s; %s\n", next_time, next_rel_time);
4330 else
4331 printf("n/a\n");
4332 }
4333
90bbc946 4334 if (!i->condition_result && i->condition_timestamp > 0) {
d5db7fe6
WC
4335 UnitCondition *c;
4336 int n = 0;
4337
bbb8486e 4338 s1 = format_timestamp_relative(since1, sizeof(since1), i->condition_timestamp);
90bbc946
LP
4339 s2 = format_timestamp(since2, sizeof(since2), i->condition_timestamp);
4340
59fccdc5 4341 printf("Condition: start %scondition failed%s at %s%s%s\n",
1fc464f6 4342 ansi_highlight_yellow(), ansi_normal(),
5cfee414 4343 s2, s1 ? "; " : "", strempty(s1));
d5db7fe6 4344
b1ed76ae 4345 LIST_FOREACH(conditions, c, i->conditions)
d5db7fe6
WC
4346 if (c->tristate < 0)
4347 n++;
d5db7fe6 4348
b1ed76ae
ZJS
4349 LIST_FOREACH(conditions, c, i->conditions)
4350 if (c->tristate < 0)
4351 printf(" %s %s=%s%s%s was not met\n",
9a6f746f 4352 --n ? special_glyph(SPECIAL_GLYPH_TREE_BRANCH) : special_glyph(SPECIAL_GLYPH_TREE_RIGHT),
b1ed76ae
ZJS
4353 c->name,
4354 c->trigger ? "|" : "",
4355 c->negate ? "!" : "",
4356 c->param);
59fccdc5
LP
4357 }
4358
4359 if (!i->assert_result && i->assert_timestamp > 0) {
4360 s1 = format_timestamp_relative(since1, sizeof(since1), i->assert_timestamp);
4361 s2 = format_timestamp(since2, sizeof(since2), i->assert_timestamp);
4362
4363 printf(" Assert: start %sassertion failed%s at %s%s%s\n",
1fc464f6 4364 ansi_highlight_red(), ansi_normal(),
5cfee414 4365 s2, s1 ? "; " : "", strempty(s1));
59fccdc5
LP
4366 if (i->failed_assert_trigger)
4367 printf(" none of the trigger assertions were met\n");
4368 else if (i->failed_assert)
4369 printf(" %s=%s%s was not met\n",
4370 i->failed_assert,
4371 i->failed_assert_negate ? "!" : "",
4372 i->failed_assert_parameter);
90bbc946
LP
4373 }
4374
61cbdc4b 4375 if (i->sysfs_path)
856323c9 4376 printf(" Device: %s\n", i->sysfs_path);
9feeba4b 4377 if (i->where)
856323c9 4378 printf(" Where: %s\n", i->where);
9feeba4b 4379 if (i->what)
856323c9 4380 printf(" What: %s\n", i->what);
49dbfa7b 4381
78c7d20e
LP
4382 STRV_FOREACH(t, i->documentation) {
4383 _cleanup_free_ char *formatted = NULL;
4384 const char *q;
4385
4386 if (terminal_urlify(*t, NULL, &formatted) >= 0)
4387 q = formatted;
4388 else
4389 q = *t;
4390
4391 printf(" %*s %s\n", 9, t == i->documentation ? "Docs:" : "", q);
4392 }
49dbfa7b 4393
13160134 4394 STRV_FOREACH_PAIR(t, t2, i->listen)
856323c9 4395 printf(" %*s %s (%s)\n", 9, t == i->listen ? "Listen:" : "", *t2, *t);
67419600 4396
a98f7575
MM
4397 if (i->accept) {
4398 printf(" Accepted: %u; Connected: %u;", i->n_accepted, i->n_connections);
4399 if (i->n_refused)
4400 printf(" Refused: %u", i->n_refused);
4401 printf("\n");
4402 }
4403
582a507f 4404 LIST_FOREACH(exec, p, i->exec) {
13160134 4405 _cleanup_free_ char *argv = NULL;
9a57c629 4406 bool good;
582a507f
LP
4407
4408 /* Only show exited processes here */
4409 if (p->code == 0)
4410 continue;
4411
13160134 4412 argv = strv_join(p->argv, " ");
1fa2f38f 4413 printf(" Process: "PID_FMT" %s=%s ", p->pid, p->name, strna(argv));
582a507f 4414
1f0958f6 4415 good = is_clean_exit(p->code, p->status, EXIT_CLEAN_DAEMON, NULL);
9a57c629 4416 if (!good) {
0b5a519c 4417 on = ansi_highlight_red();
1fc464f6 4418 off = ansi_normal();
9a57c629
LP
4419 } else
4420 on = off = "";
4421
4422 printf("%s(code=%s, ", on, sigchld_code_to_string(p->code));
4423
d06dacd0
LP
4424 if (p->code == CLD_EXITED) {
4425 const char *c;
4426
582a507f 4427 printf("status=%i", p->status);
d06dacd0 4428
1b64d026
LP
4429 c = exit_status_to_string(p->status, EXIT_STATUS_SYSTEMD);
4430 if (c)
d06dacd0
LP
4431 printf("/%s", c);
4432
4433 } else
582a507f 4434 printf("signal=%s", signal_to_string(p->status));
9a57c629
LP
4435
4436 printf(")%s\n", off);
4437
582a507f
LP
4438 if (i->main_pid == p->pid &&
4439 i->start_timestamp == p->start_timestamp &&
4440 i->exit_timestamp == p->start_timestamp)
4441 /* Let's not show this twice */
4442 i->main_pid = 0;
4443
4444 if (p->pid == i->control_pid)
4445 i->control_pid = 0;
4446 }
4447
61cbdc4b 4448 if (i->main_pid > 0 || i->control_pid > 0) {
61cbdc4b 4449 if (i->main_pid > 0) {
8c06592f 4450 printf(" Main PID: "PID_FMT, i->main_pid);
61cbdc4b
LP
4451
4452 if (i->running) {
a081b9ce
LP
4453
4454 if (arg_transport == BUS_TRANSPORT_LOCAL) {
4455 _cleanup_free_ char *comm = NULL;
4456
4457 (void) get_process_comm(i->main_pid, &comm);
4458 if (comm)
4459 printf(" (%s)", comm);
4460 }
4461
6d4fc029 4462 } else if (i->exit_code > 0) {
61cbdc4b
LP
4463 printf(" (code=%s, ", sigchld_code_to_string(i->exit_code));
4464
d06dacd0
LP
4465 if (i->exit_code == CLD_EXITED) {
4466 const char *c;
4467
61cbdc4b 4468 printf("status=%i", i->exit_status);
d06dacd0 4469
1b64d026
LP
4470 c = exit_status_to_string(i->exit_status, EXIT_STATUS_SYSTEMD);
4471 if (c)
d06dacd0
LP
4472 printf("/%s", c);
4473
4474 } else
582a507f 4475 printf("signal=%s", signal_to_string(i->exit_status));
6d4fc029
LP
4476 printf(")");
4477 }
13160134 4478 }
61cbdc4b
LP
4479
4480 if (i->control_pid > 0) {
13160134 4481 _cleanup_free_ char *c = NULL;
61cbdc4b 4482
1089dcd4
LP
4483 if (i->main_pid > 0)
4484 fputs("; Control PID: ", stdout);
4485 else
4486 fputs("Cntrl PID: ", stdout); /* if first in column, abbreviated so it fits alignment */
4487
4488 printf(PID_FMT, i->control_pid);
61cbdc4b 4489
a081b9ce
LP
4490 if (arg_transport == BUS_TRANSPORT_LOCAL) {
4491 (void) get_process_comm(i->control_pid, &c);
4492 if (c)
4493 printf(" (%s)", c);
4494 }
61cbdc4b
LP
4495 }
4496
4497 printf("\n");
4498 }
4499
17bb7382 4500 if (i->status_text)
856323c9 4501 printf(" Status: \"%s\"\n", i->status_text);
b4af5a80
LP
4502 if (i->status_errno > 0)
4503 printf(" Error: %i (%s)\n", i->status_errno, strerror(i->status_errno));
17bb7382 4504
0e97c93f
DM
4505 if (i->ip_ingress_bytes != (uint64_t) -1 && i->ip_egress_bytes != (uint64_t) -1) {
4506 char buf_in[FORMAT_BYTES_MAX], buf_out[FORMAT_BYTES_MAX];
4507
4508 printf(" IP: %s in, %s out\n",
4509 format_bytes(buf_in, sizeof(buf_in), i->ip_ingress_bytes),
4510 format_bytes(buf_out, sizeof(buf_out), i->ip_egress_bytes));
4511 }
4512
7a5de3f9
LP
4513 if (i->io_read_bytes != UINT64_MAX && i->io_write_bytes != UINT64_MAX) {
4514 char buf_in[FORMAT_BYTES_MAX], buf_out[FORMAT_BYTES_MAX];
4515
4516 printf(" IO: %s read, %s written\n",
4517 format_bytes(buf_in, sizeof(buf_in), i->io_read_bytes),
4518 format_bytes(buf_out, sizeof(buf_out), i->io_write_bytes));
4519 }
4520
03a7b521
LP
4521 if (i->tasks_current != (uint64_t) -1) {
4522 printf(" Tasks: %" PRIu64, i->tasks_current);
4523
4524 if (i->tasks_max != (uint64_t) -1)
2a6736dd 4525 printf(" (limit: %" PRIu64 ")\n", i->tasks_max);
03a7b521
LP
4526 else
4527 printf("\n");
4528 }
4529
934277fe
LP
4530 if (i->memory_current != (uint64_t) -1) {
4531 char buf[FORMAT_BYTES_MAX];
4532
4533 printf(" Memory: %s", format_bytes(buf, sizeof(buf), i->memory_current));
4534
48422635
TH
4535 if (i->memory_min > 0 || i->memory_low > 0 ||
4536 i->memory_high != CGROUP_LIMIT_MAX || i->memory_max != CGROUP_LIMIT_MAX ||
4537 i->memory_swap_max != CGROUP_LIMIT_MAX ||
da4d897e
TH
4538 i->memory_limit != CGROUP_LIMIT_MAX) {
4539 const char *prefix = "";
4540
4541 printf(" (");
48422635
TH
4542 if (i->memory_min > 0) {
4543 printf("%smin: %s", prefix, format_bytes(buf, sizeof(buf), i->memory_min));
4544 prefix = " ";
4545 }
da4d897e
TH
4546 if (i->memory_low > 0) {
4547 printf("%slow: %s", prefix, format_bytes(buf, sizeof(buf), i->memory_low));
4548 prefix = " ";
4549 }
4550 if (i->memory_high != CGROUP_LIMIT_MAX) {
4551 printf("%shigh: %s", prefix, format_bytes(buf, sizeof(buf), i->memory_high));
4552 prefix = " ";
4553 }
4554 if (i->memory_max != CGROUP_LIMIT_MAX) {
4555 printf("%smax: %s", prefix, format_bytes(buf, sizeof(buf), i->memory_max));
4556 prefix = " ";
4557 }
96e131ea
WC
4558 if (i->memory_swap_max != CGROUP_LIMIT_MAX) {
4559 printf("%sswap max: %s", prefix, format_bytes(buf, sizeof(buf), i->memory_swap_max));
4560 prefix = " ";
4561 }
da4d897e
TH
4562 if (i->memory_limit != CGROUP_LIMIT_MAX) {
4563 printf("%slimit: %s", prefix, format_bytes(buf, sizeof(buf), i->memory_limit));
4564 prefix = " ";
4565 }
4566 printf(")");
4567 }
4568 printf("\n");
934277fe
LP
4569 }
4570
5ad096b3
LP
4571 if (i->cpu_usage_nsec != (uint64_t) -1) {
4572 char buf[FORMAT_TIMESPAN_MAX];
4573 printf(" CPU: %s\n", format_timespan(buf, sizeof(buf), i->cpu_usage_nsec / NSEC_PER_USEC, USEC_PER_MSEC));
4574 }
4575
51e22f88 4576 if (i->control_group) {
291d565a
LP
4577 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
4578 static const char prefix[] = " ";
ab35fb1b
LP
4579 unsigned c;
4580
51e22f88
LP
4581 printf(" CGroup: %s\n", i->control_group);
4582
291d565a
LP
4583 c = columns();
4584 if (c > sizeof(prefix) - 1)
4585 c -= sizeof(prefix) - 1;
4586 else
4587 c = 0;
ab35fb1b 4588
291d565a
LP
4589 r = unit_show_processes(bus, i->id, i->control_group, prefix, c, get_output_flags(), &error);
4590 if (r == -EBADR) {
b69d29ce
LP
4591 unsigned k = 0;
4592 pid_t extra[2];
4593
291d565a 4594 /* Fallback for older systemd versions where the GetUnitProcesses() call is not yet available */
ab35fb1b 4595
b69d29ce
LP
4596 if (i->main_pid > 0)
4597 extra[k++] = i->main_pid;
4598
4599 if (i->control_pid > 0)
4600 extra[k++] = i->control_pid;
4601
0ff308c8 4602 show_cgroup_and_extra(SYSTEMD_CGROUP_CONTROLLER, i->control_group, prefix, c, extra, k, get_output_flags());
291d565a 4603 } else if (r < 0)
950d6889 4604 log_warning_errno(r, "Failed to dump process list for '%s', ignoring: %s", i->id, bus_error_message(&error, r));
c59760ee 4605 }
45fb0699 4606
ece174c5 4607 if (i->id && arg_transport == BUS_TRANSPORT_LOCAL)
3c756001
LP
4608 show_journal_by_unit(
4609 stdout,
4610 i->id,
4611 arg_output,
4612 0,
4613 i->inactive_exit_timestamp_monotonic,
4614 arg_lines,
4615 getuid(),
4616 get_output_flags() | OUTPUT_BEGIN_NEWLINE,
4617 SD_JOURNAL_LOCAL_ONLY,
4618 arg_scope == UNIT_FILE_SYSTEM,
4619 ellipsized);
86aa7ba4 4620
45fb0699 4621 if (i->need_daemon_reload)
3f36991e 4622 warn_unit_file_changed(i->id);
61cbdc4b
LP
4623}
4624
b43f208f 4625static void show_unit_help(UnitStatusInfo *i) {
256425cc
LP
4626 char **p;
4627
4628 assert(i);
4629
4630 if (!i->documentation) {
4631 log_info("Documentation for %s not known.", i->id);
4632 return;
4633 }
4634
78002a67
ZJS
4635 STRV_FOREACH(p, i->documentation)
4636 if (startswith(*p, "man:"))
4637 show_man_page(*p + 4, false);
4638 else
0315fe37 4639 log_info("Can't show: %s", *p);
256425cc
LP
4640}
4641
4679a8c3
YW
4642static int map_main_pid(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
4643 UnitStatusInfo *i = userdata;
4644 uint32_t u;
f459b602 4645 int r;
61cbdc4b 4646
4679a8c3
YW
4647 r = sd_bus_message_read(m, "u", &u);
4648 if (r < 0)
4649 return r;
61cbdc4b 4650
4679a8c3
YW
4651 i->main_pid = (pid_t) u;
4652 i->running = u > 0;
b8131a87 4653
4679a8c3
YW
4654 return 0;
4655}
b8131a87 4656
4679a8c3 4657static int map_load_error(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
31d99bd1 4658 const char *message, **p = userdata;
4679a8c3 4659 int r;
b8131a87 4660
31d99bd1 4661 r = sd_bus_message_read(m, "(ss)", NULL, &message);
4679a8c3
YW
4662 if (r < 0)
4663 return r;
b8131a87 4664
4679a8c3
YW
4665 if (!isempty(message))
4666 *p = message;
61cbdc4b 4667
4679a8c3
YW
4668 return 0;
4669}
61cbdc4b 4670
4679a8c3
YW
4671static int map_listen(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
4672 const char *type, *path;
4673 char ***p = userdata;
4674 int r;
61cbdc4b 4675
4679a8c3
YW
4676 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(ss)");
4677 if (r < 0)
4678 return r;
61cbdc4b 4679
4679a8c3 4680 while ((r = sd_bus_message_read(m, "(ss)", &type, &path)) > 0) {
61cbdc4b 4681
4679a8c3 4682 r = strv_extend(p, type);
f459b602 4683 if (r < 0)
4679a8c3 4684 return r;
61cbdc4b 4685
4679a8c3 4686 r = strv_extend(p, path);
f459b602 4687 if (r < 0)
4679a8c3 4688 return r;
61cbdc4b 4689 }
4679a8c3
YW
4690 if (r < 0)
4691 return r;
582a507f 4692
4679a8c3
YW
4693 r = sd_bus_message_exit_container(m);
4694 if (r < 0)
4695 return r;
49dbfa7b 4696
4679a8c3
YW
4697 return 0;
4698}
52990c2e 4699
4679a8c3
YW
4700static int map_conditions(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
4701 UnitStatusInfo *i = userdata;
4702 const char *cond, *param;
4703 int trigger, negate;
4704 int32_t state;
4705 int r;
52990c2e 4706
4679a8c3
YW
4707 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(sbbsi)");
4708 if (r < 0)
4709 return r;
f459b602 4710
4679a8c3
YW
4711 while ((r = sd_bus_message_read(m, "(sbbsi)", &cond, &trigger, &negate, &param, &state)) > 0) {
4712 _cleanup_(unit_condition_freep) UnitCondition *c = NULL;
d5db7fe6 4713
3bfa8668 4714 c = new(UnitCondition, 1);
4679a8c3
YW
4715 if (!c)
4716 return -ENOMEM;
d5db7fe6 4717
3bfa8668
LP
4718 *c = (UnitCondition) {
4719 .name = strdup(cond),
4720 .param = strdup(param),
4721 .trigger = trigger,
4722 .negate = negate,
4723 .tristate = state,
4724 };
4725
4679a8c3
YW
4726 if (!c->name || !c->param)
4727 return -ENOMEM;
d5db7fe6 4728
d5db7fe6 4729
3bfa8668 4730 LIST_PREPEND(conditions, i->conditions, TAKE_PTR(c));
4679a8c3
YW
4731 }
4732 if (r < 0)
4733 return r;
d5db7fe6 4734
4679a8c3
YW
4735 r = sd_bus_message_exit_container(m);
4736 if (r < 0)
4737 return r;
59fccdc5 4738
4679a8c3
YW
4739 return 0;
4740}
59fccdc5 4741
4679a8c3
YW
4742static int map_asserts(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
4743 UnitStatusInfo *i = userdata;
4744 const char *cond, *param;
4745 int trigger, negate;
4746 int32_t state;
4747 int r;
59fccdc5 4748
4679a8c3
YW
4749 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(sbbsi)");
4750 if (r < 0)
4751 return r;
59fccdc5 4752
4679a8c3
YW
4753 while ((r = sd_bus_message_read(m, "(sbbsi)", &cond, &trigger, &negate, &param, &state)) > 0) {
4754 if (state < 0 && (!trigger || !i->failed_assert)) {
4755 i->failed_assert = cond;
4756 i->failed_assert_trigger = trigger;
4757 i->failed_assert_negate = negate;
4758 i->failed_assert_parameter = param;
4759 }
4760 }
4761 if (r < 0)
4762 return r;
f459b602 4763
4679a8c3
YW
4764 r = sd_bus_message_exit_container(m);
4765 if (r < 0)
4766 return r;
f459b602 4767
4679a8c3
YW
4768 return 0;
4769}
582a507f 4770
4679a8c3
YW
4771static int map_exec(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
4772 _cleanup_free_ ExecStatusInfo *info = NULL;
3e14d36a 4773 ExecStatusInfo *last;
4679a8c3 4774 UnitStatusInfo *i = userdata;
b3d59367 4775 bool is_ex_prop = endswith(member, "Ex");
4679a8c3 4776 int r;
9f39404c 4777
b3d59367 4778 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, is_ex_prop ? "(sasasttttuii)" : "(sasbttttuii)");
4679a8c3
YW
4779 if (r < 0)
4780 return r;
9f39404c 4781
4679a8c3
YW
4782 info = new0(ExecStatusInfo, 1);
4783 if (!info)
4784 return -ENOMEM;
9f39404c 4785
3e14d36a
LP
4786 LIST_FIND_TAIL(exec, i->exec, last);
4787
b3d59367 4788 while ((r = exec_status_info_deserialize(m, info, is_ex_prop)) > 0) {
9f39404c 4789
4679a8c3
YW
4790 info->name = strdup(member);
4791 if (!info->name)
4792 return -ENOMEM;
9f39404c 4793
3e14d36a
LP
4794 LIST_INSERT_AFTER(exec, i->exec, last, info);
4795 last = info;
f459b602 4796
4679a8c3
YW
4797 info = new0(ExecStatusInfo, 1);
4798 if (!info)
4799 return -ENOMEM;
9f39404c 4800 }
4679a8c3
YW
4801 if (r < 0)
4802 return r;
f459b602 4803
4679a8c3 4804 r = sd_bus_message_exit_container(m);
f459b602 4805 if (r < 0)
4679a8c3 4806 return r;
61cbdc4b
LP
4807
4808 return 0;
4809}
4810
eda19357 4811static int print_property(const char *name, const char *expected_value, sd_bus_message *m, bool value, bool all) {
07636114
YW
4812 char bus_type;
4813 const char *contents;
f459b602
MAP
4814 int r;
4815
48220598 4816 assert(name);
f459b602 4817 assert(m);
48220598 4818
61cbdc4b
LP
4819 /* This is a low-level property printer, see
4820 * print_status_info() for the nicer output */
4821
07636114
YW
4822 r = sd_bus_message_peek_type(m, &bus_type, &contents);
4823 if (r < 0)
852c1b4d 4824 return r;
48220598 4825
07636114 4826 switch (bus_type) {
48220598 4827
a3ddd457
YW
4828 case SD_BUS_TYPE_INT32:
4829 if (endswith(name, "ActionExitStatus")) {
4830 int32_t i;
4831
4832 r = sd_bus_message_read_basic(m, bus_type, &i);
4833 if (r < 0)
4834 return r;
4835
4836 if (i >= 0 && i <= 255)
4837 bus_print_property_valuef(name, expected_value, value, "%"PRIi32, i);
4838 else if (all)
4839 bus_print_property_value(name, expected_value, value, "[not set]");
4840
b070c7c0
MS
4841 return 1;
4842 } else if (streq(name, "NUMAPolicy")) {
4843 int32_t i;
4844
4845 r = sd_bus_message_read_basic(m, bus_type, &i);
4846 if (r < 0)
4847 return r;
4848
4849 bus_print_property_valuef(name, expected_value, value, "%s", strna(mpol_to_string(i)));
4850
a3ddd457
YW
4851 return 1;
4852 }
4853 break;
4854
07636114 4855 case SD_BUS_TYPE_STRUCT:
48220598 4856
07636114 4857 if (contents[0] == SD_BUS_TYPE_UINT32 && streq(name, "Job")) {
48220598
LP
4858 uint32_t u;
4859
f459b602
MAP
4860 r = sd_bus_message_read(m, "(uo)", &u, NULL);
4861 if (r < 0)
4862 return bus_log_parse_error(r);
48220598 4863
f459b602 4864 if (u > 0)
102b0214 4865 bus_print_property_valuef(name, expected_value, value, "%"PRIu32, u);
07636114 4866 else if (all)
102b0214 4867 bus_print_property_value(name, expected_value, value, "");
48220598 4868
07636114 4869 return 1;
f459b602 4870
07636114 4871 } else if (contents[0] == SD_BUS_TYPE_STRING && streq(name, "Unit")) {
48220598
LP
4872 const char *s;
4873
f459b602
MAP
4874 r = sd_bus_message_read(m, "(so)", &s, NULL);
4875 if (r < 0)
4876 return bus_log_parse_error(r);
48220598 4877
07636114 4878 if (all || !isempty(s))
102b0214 4879 bus_print_property_value(name, expected_value, value, s);
48220598 4880
07636114 4881 return 1;
f459b602 4882
07636114 4883 } else if (contents[0] == SD_BUS_TYPE_STRING && streq(name, "LoadError")) {
9f39404c
LP
4884 const char *a = NULL, *b = NULL;
4885
f459b602
MAP
4886 r = sd_bus_message_read(m, "(ss)", &a, &b);
4887 if (r < 0)
4888 return bus_log_parse_error(r);
9f39404c 4889
48d3358d 4890 if (!isempty(a) || !isempty(b))
102b0214 4891 bus_print_property_valuef(name, expected_value, value, "%s \"%s\"", strempty(a), strempty(b));
48d3358d
YW
4892 else if (all)
4893 bus_print_property_value(name, expected_value, value, "");
f786e80d 4894
07636114 4895 return 1;
04749e40
YW
4896
4897 } else if (STR_IN_SET(name, "SystemCallFilter", "RestrictAddressFamilies")) {
57183d11
LP
4898 _cleanup_strv_free_ char **l = NULL;
4899 int whitelist;
4900
4901 r = sd_bus_message_enter_container(m, 'r', "bas");
4902 if (r < 0)
4903 return bus_log_parse_error(r);
4904
4905 r = sd_bus_message_read(m, "b", &whitelist);
4906 if (r < 0)
4907 return bus_log_parse_error(r);
4908
4909 r = sd_bus_message_read_strv(m, &l);
4910 if (r < 0)
4911 return bus_log_parse_error(r);
4912
4913 r = sd_bus_message_exit_container(m);
4914 if (r < 0)
4915 return bus_log_parse_error(r);
4916
07636114 4917 if (all || whitelist || !strv_isempty(l)) {
57183d11
LP
4918 bool first = true;
4919 char **i;
4920
07636114 4921 if (!value) {
4f9a9105
ZJS
4922 fputs(name, stdout);
4923 fputc('=', stdout);
4924 }
57183d11
LP
4925
4926 if (!whitelist)
4927 fputc('~', stdout);
4928
4929 STRV_FOREACH(i, l) {
4930 if (first)
4931 first = false;
4932 else
4933 fputc(' ', stdout);
4934
4935 fputs(*i, stdout);
4936 }
4937 fputc('\n', stdout);
4938 }
4939
c7bb2fec 4940 return 1;
102b0214 4941
c7bb2fec
IP
4942 } else if (STR_IN_SET(name, "SELinuxContext", "AppArmorProfile", "SmackProcessLabel")) {
4943 int ignore;
4944 const char *s;
4945
4946 r = sd_bus_message_read(m, "(bs)", &ignore, &s);
4947 if (r < 0)
4948 return bus_log_parse_error(r);
4949
4950 if (!isempty(s))
102b0214 4951 bus_print_property_valuef(name, expected_value, value, "%s%s", ignore ? "-" : "", s);
c7bb2fec 4952 else if (all)
102b0214 4953 bus_print_property_value(name, expected_value, value, "");
c7bb2fec 4954
07636114 4955 return 1;
4a220712
YW
4956
4957 } else if (endswith(name, "ExitStatus") && streq(contents, "aiai")) {
4958 const int32_t *status, *signal;
4959 size_t sz_status, sz_signal, i;
4960
4961 r = sd_bus_message_enter_container(m, 'r', "aiai");
4962 if (r < 0)
4963 return bus_log_parse_error(r);
4964
4965 r = sd_bus_message_read_array(m, 'i', (const void **) &status, &sz_status);
4966 if (r < 0)
4967 return bus_log_parse_error(r);
4968
4969 r = sd_bus_message_read_array(m, 'i', (const void **) &signal, &sz_signal);
4970 if (r < 0)
4971 return bus_log_parse_error(r);
4972
4973 r = sd_bus_message_exit_container(m);
4974 if (r < 0)
4975 return bus_log_parse_error(r);
4976
4977 sz_status /= sizeof(int32_t);
4978 sz_signal /= sizeof(int32_t);
4979
4980 if (all || sz_status > 0 || sz_signal > 0) {
4981 bool first = true;
4982
4983 if (!value) {
4984 fputs(name, stdout);
4985 fputc('=', stdout);
4986 }
4987
4988 for (i = 0; i < sz_status; i++) {
4989 if (status[i] < 0 || status[i] > 255)
4990 continue;
4991
4992 if (first)
4993 first = false;
4994 else
4995 fputc(' ', stdout);
4996
4997 printf("%"PRIi32, status[i]);
4998 }
4999
5000 for (i = 0; i < sz_signal; i++) {
5001 const char *str;
5002
5003 str = signal_to_string((int) signal[i]);
5004 if (!str)
5005 continue;
5006
5007 if (first)
5008 first = false;
5009 else
5010 fputc(' ', stdout);
5011
5012 fputs(str, stdout);
5013 }
5014
5015 fputc('\n', stdout);
5016 }
5017 return 1;
48220598
LP
5018 }
5019
5020 break;
48220598 5021
f459b602 5022 case SD_BUS_TYPE_ARRAY:
48220598 5023
07636114 5024 if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "EnvironmentFiles")) {
f459b602
MAP
5025 const char *path;
5026 int ignore;
8c7be95e 5027
f459b602
MAP
5028 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(sb)");
5029 if (r < 0)
5030 return bus_log_parse_error(r);
8c7be95e 5031
f459b602 5032 while ((r = sd_bus_message_read(m, "(sb)", &path, &ignore)) > 0)
102b0214 5033 bus_print_property_valuef(name, expected_value, value, "%s (ignore_errors=%s)", path, yes_no(ignore));
8c7be95e 5034
f459b602
MAP
5035 if (r < 0)
5036 return bus_log_parse_error(r);
8c7be95e 5037
f459b602
MAP
5038 r = sd_bus_message_exit_container(m);
5039 if (r < 0)
5040 return bus_log_parse_error(r);
8c7be95e 5041
07636114 5042 return 1;
8c7be95e 5043
07636114 5044 } else if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "Paths")) {
f459b602 5045 const char *type, *path;
67419600 5046
f459b602
MAP
5047 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(ss)");
5048 if (r < 0)
5049 return bus_log_parse_error(r);
ebf57b80 5050
f459b602 5051 while ((r = sd_bus_message_read(m, "(ss)", &type, &path)) > 0)
102b0214 5052 bus_print_property_valuef(name, expected_value, value, "%s (%s)", path, type);
f459b602
MAP
5053 if (r < 0)
5054 return bus_log_parse_error(r);
ebf57b80 5055
f459b602
MAP
5056 r = sd_bus_message_exit_container(m);
5057 if (r < 0)
5058 return bus_log_parse_error(r);
ebf57b80 5059
07636114 5060 return 1;
582a507f 5061
07636114 5062 } else if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "Listen")) {
f459b602 5063 const char *type, *path;
67419600 5064
f459b602
MAP
5065 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(ss)");
5066 if (r < 0)
5067 return bus_log_parse_error(r);
67419600 5068
f459b602 5069 while ((r = sd_bus_message_read(m, "(ss)", &type, &path)) > 0)
102b0214 5070 bus_print_property_valuef(name, expected_value, value, "%s (%s)", path, type);
f459b602
MAP
5071 if (r < 0)
5072 return bus_log_parse_error(r);
67419600 5073
f459b602
MAP
5074 r = sd_bus_message_exit_container(m);
5075 if (r < 0)
5076 return bus_log_parse_error(r);
67419600 5077
07636114 5078 return 1;
67419600 5079
07636114 5080 } else if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "TimersMonotonic")) {
f459b602 5081 const char *base;
07636114 5082 uint64_t v, next_elapse;
707e5e52 5083
f459b602
MAP
5084 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(stt)");
5085 if (r < 0)
5086 return bus_log_parse_error(r);
552e4331 5087
07636114 5088 while ((r = sd_bus_message_read(m, "(stt)", &base, &v, &next_elapse)) > 0) {
f459b602 5089 char timespan1[FORMAT_TIMESPAN_MAX], timespan2[FORMAT_TIMESPAN_MAX];
fe68089d 5090
102b0214
YW
5091 bus_print_property_valuef(name, expected_value, value, "{ %s=%s ; next_elapse=%s }", base,
5092 format_timespan(timespan1, sizeof(timespan1), v, 0),
5093 format_timespan(timespan2, sizeof(timespan2), next_elapse, 0));
fe68089d 5094 }
f459b602
MAP
5095 if (r < 0)
5096 return bus_log_parse_error(r);
5097
5098 r = sd_bus_message_exit_container(m);
5099 if (r < 0)
5100 return bus_log_parse_error(r);
fe68089d 5101
07636114 5102 return 1;
fe68089d 5103
07636114 5104 } else if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "TimersCalendar")) {
fa6dee52
YW
5105 const char *base, *spec;
5106 uint64_t next_elapse;
5107
5108 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(sst)");
5109 if (r < 0)
5110 return bus_log_parse_error(r);
5111
5112 while ((r = sd_bus_message_read(m, "(sst)", &base, &spec, &next_elapse)) > 0) {
5113 char timestamp[FORMAT_TIMESTAMP_MAX];
5114
102b0214
YW
5115 bus_print_property_valuef(name, expected_value, value, "{ %s=%s ; next_elapse=%s }", base, spec,
5116 format_timestamp(timestamp, sizeof(timestamp), next_elapse));
fa6dee52
YW
5117 }
5118 if (r < 0)
5119 return bus_log_parse_error(r);
5120
5121 r = sd_bus_message_exit_container(m);
5122 if (r < 0)
5123 return bus_log_parse_error(r);
5124
07636114 5125 return 1;
fa6dee52 5126
07636114 5127 } else if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN && startswith(name, "Exec")) {
f459b602 5128 ExecStatusInfo info = {};
b3d59367 5129 bool is_ex_prop = endswith(name, "Ex");
f459b602 5130
b3d59367 5131 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, is_ex_prop ? "(sasasttttuii)" : "(sasbttttuii)");
f459b602
MAP
5132 if (r < 0)
5133 return bus_log_parse_error(r);
5134
b3d59367 5135 while ((r = exec_status_info_deserialize(m, &info, is_ex_prop)) > 0) {
f459b602 5136 char timestamp1[FORMAT_TIMESTAMP_MAX], timestamp2[FORMAT_TIMESTAMP_MAX];
b3d59367
AZ
5137 _cleanup_strv_free_ char **optv = NULL;
5138 _cleanup_free_ char *tt, *o = NULL;
f459b602
MAP
5139
5140 tt = strv_join(info.argv, " ");
5141
b3d59367
AZ
5142 if (is_ex_prop) {
5143 r = exec_command_flags_to_strv(info.flags, &optv);
5144 if (r < 0)
5145 return log_error_errno(r, "Failed to convert ExecCommandFlags to strv: %m");
5146
5147 o = strv_join(optv, " ");
5148
5149 bus_print_property_valuef(name, expected_value, value,
5150 "{ path=%s ; argv[]=%s ; flags=%s ; start_time=[%s] ; stop_time=[%s] ; pid="PID_FMT" ; code=%s ; status=%i%s%s }",
5151 strna(info.path),
5152 strna(tt),
5153 strna(o),
5154 strna(format_timestamp(timestamp1, sizeof(timestamp1), info.start_timestamp)),
5155 strna(format_timestamp(timestamp2, sizeof(timestamp2), info.exit_timestamp)),
5156 info.pid,
5157 sigchld_code_to_string(info.code),
5158 info.status,
5159 info.code == CLD_EXITED ? "" : "/",
5160 strempty(info.code == CLD_EXITED ? NULL : signal_to_string(info.status)));
5161 } else
5162 bus_print_property_valuef(name, expected_value, value,
5163 "{ path=%s ; argv[]=%s ; ignore_errors=%s ; start_time=[%s] ; stop_time=[%s] ; pid="PID_FMT" ; code=%s ; status=%i%s%s }",
5164 strna(info.path),
5165 strna(tt),
5166 yes_no(info.ignore),
5167 strna(format_timestamp(timestamp1, sizeof(timestamp1), info.start_timestamp)),
5168 strna(format_timestamp(timestamp2, sizeof(timestamp2), info.exit_timestamp)),
5169 info.pid,
5170 sigchld_code_to_string(info.code),
5171 info.status,
5172 info.code == CLD_EXITED ? "" : "/",
5173 strempty(info.code == CLD_EXITED ? NULL : signal_to_string(info.status)));
fe68089d 5174
582a507f
LP
5175 free(info.path);
5176 strv_free(info.argv);
f459b602 5177 zero(info);
707e5e52
LP
5178 }
5179
f459b602
MAP
5180 r = sd_bus_message_exit_container(m);
5181 if (r < 0)
5182 return bus_log_parse_error(r);
5183
07636114 5184 return 1;
4ad49000 5185
07636114 5186 } else if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "DeviceAllow")) {
f459b602 5187 const char *path, *rwm;
4ad49000 5188
f459b602
MAP
5189 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(ss)");
5190 if (r < 0)
5191 return bus_log_parse_error(r);
4ad49000 5192
f459b602 5193 while ((r = sd_bus_message_read(m, "(ss)", &path, &rwm)) > 0)
102b0214 5194 bus_print_property_valuef(name, expected_value, value, "%s %s", strna(path), strna(rwm));
f459b602
MAP
5195 if (r < 0)
5196 return bus_log_parse_error(r);
4ad49000 5197
f459b602
MAP
5198 r = sd_bus_message_exit_container(m);
5199 if (r < 0)
5200 return bus_log_parse_error(r);
4ad49000 5201
07636114 5202 return 1;
4ad49000 5203
07636114 5204 } else if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN &&
72240b52 5205 STR_IN_SET(name, "IODeviceWeight", "BlockIODeviceWeight")) {
f459b602
MAP
5206 const char *path;
5207 uint64_t weight;
b8ab2dc6 5208
f459b602
MAP
5209 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(st)");
5210 if (r < 0)
5211 return bus_log_parse_error(r);
b8ab2dc6 5212
f459b602 5213 while ((r = sd_bus_message_read(m, "(st)", &path, &weight)) > 0)
102b0214 5214 bus_print_property_valuef(name, expected_value, value, "%s %"PRIu64, strna(path), weight);
f459b602
MAP
5215 if (r < 0)
5216 return bus_log_parse_error(r);
b8ab2dc6 5217
f459b602
MAP
5218 r = sd_bus_message_exit_container(m);
5219 if (r < 0)
5220 return bus_log_parse_error(r);
b8ab2dc6 5221
07636114 5222 return 1;
b8ab2dc6 5223
07636114 5224 } else if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN &&
72240b52
ZJS
5225 (cgroup_io_limit_type_from_string(name) >= 0 ||
5226 STR_IN_SET(name, "BlockIOReadBandwidth", "BlockIOWriteBandwidth"))) {
f459b602
MAP
5227 const char *path;
5228 uint64_t bandwidth;
4ad49000 5229
f459b602
MAP
5230 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(st)");
5231 if (r < 0)
5232 return bus_log_parse_error(r);
4ad49000 5233
f459b602 5234 while ((r = sd_bus_message_read(m, "(st)", &path, &bandwidth)) > 0)
102b0214 5235 bus_print_property_valuef(name, expected_value, value, "%s %"PRIu64, strna(path), bandwidth);
f459b602
MAP
5236 if (r < 0)
5237 return bus_log_parse_error(r);
4ad49000 5238
f459b602
MAP
5239 r = sd_bus_message_exit_container(m);
5240 if (r < 0)
5241 return bus_log_parse_error(r);
4ad49000 5242
07636114 5243 return 1;
6ae4283c
TH
5244
5245 } else if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN &&
5246 streq(name, "IODeviceLatencyTargetUSec")) {
5247 char ts[FORMAT_TIMESPAN_MAX];
5248 const char *path;
5249 uint64_t target;
5250
5251 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(st)");
5252 if (r < 0)
5253 return bus_log_parse_error(r);
5254
5255 while ((r = sd_bus_message_read(m, "(st)", &path, &target)) > 0)
102b0214
YW
5256 bus_print_property_valuef(name, expected_value, value, "%s %s", strna(path),
5257 format_timespan(ts, sizeof(ts), target, 1));
6ae4283c
TH
5258 if (r < 0)
5259 return bus_log_parse_error(r);
5260
5261 r = sd_bus_message_exit_container(m);
5262 if (r < 0)
5263 return bus_log_parse_error(r);
5264
5265 return 1;
08f3be7a 5266
07636114 5267 } else if (contents[0] == SD_BUS_TYPE_BYTE && streq(name, "StandardInputData")) {
08f3be7a
LP
5268 _cleanup_free_ char *h = NULL;
5269 const void *p;
5270 size_t sz;
5271 ssize_t n;
5272
5273 r = sd_bus_message_read_array(m, 'y', &p, &sz);
5274 if (r < 0)
5275 return bus_log_parse_error(r);
5276
5277 n = base64mem(p, sz, &h);
5278 if (n < 0)
5279 return log_oom();
5280
102b0214 5281 bus_print_property_value(name, expected_value, value, h);
08f3be7a 5282
07636114 5283 return 1;
9c1f9465
YW
5284
5285 } else if (STR_IN_SET(name, "IPAddressAllow", "IPAddressDeny")) {
5286 _cleanup_free_ char *addresses = NULL;
5287
5288 r = sd_bus_message_enter_container(m, 'a', "(iayu)");
5289 if (r < 0)
5290 return bus_log_parse_error(r);
5291
5292 for (;;) {
5293 _cleanup_free_ char *str = NULL;
5294 uint32_t prefixlen;
5295 int32_t family;
5296 const void *ap;
5297 size_t an;
5298
5299 r = sd_bus_message_enter_container(m, 'r', "iayu");
5300 if (r < 0)
5301 return bus_log_parse_error(r);
5302 if (r == 0)
5303 break;
5304
5305 r = sd_bus_message_read(m, "i", &family);
5306 if (r < 0)
5307 return bus_log_parse_error(r);
5308
5309 r = sd_bus_message_read_array(m, 'y', &ap, &an);
5310 if (r < 0)
5311 return bus_log_parse_error(r);
5312
5313 r = sd_bus_message_read(m, "u", &prefixlen);
5314 if (r < 0)
5315 return bus_log_parse_error(r);
5316
5317 r = sd_bus_message_exit_container(m);
5318 if (r < 0)
5319 return bus_log_parse_error(r);
5320
5321 if (!IN_SET(family, AF_INET, AF_INET6))
5322 continue;
5323
5324 if (an != FAMILY_ADDRESS_SIZE(family))
5325 continue;
5326
5327 if (prefixlen > FAMILY_ADDRESS_SIZE(family) * 8)
5328 continue;
5329
5330 if (in_addr_prefix_to_string(family, (union in_addr_union *) ap, prefixlen, &str) < 0)
5331 continue;
5332
5333 if (!strextend_with_separator(&addresses, " ", str, NULL))
5334 return log_oom();
5335 }
5336
5337 r = sd_bus_message_exit_container(m);
5338 if (r < 0)
5339 return bus_log_parse_error(r);
5340
5341 if (all || !isempty(addresses))
5342 bus_print_property_value(name, expected_value, value, strempty(addresses));
5343
5344 return 1;
4c787df7
YW
5345
5346 } else if (STR_IN_SET(name, "BindPaths", "BindReadOnlyPaths")) {
5347 _cleanup_free_ char *paths = NULL;
5348 const char *source, *dest;
5349 int ignore_enoent;
5350 uint64_t rbind;
5351
5352 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(ssbt)");
5353 if (r < 0)
5354 return bus_log_parse_error(r);
5355
5356 while ((r = sd_bus_message_read(m, "(ssbt)", &source, &dest, &ignore_enoent, &rbind)) > 0) {
5357 _cleanup_free_ char *str = NULL;
5358
5359 if (isempty(source))
5360 continue;
5361
5362 if (asprintf(&str, "%s%s%s%s%s",
5363 ignore_enoent ? "-" : "",
5364 source,
5365 isempty(dest) ? "" : ":",
5366 strempty(dest),
5367 rbind == MS_REC ? ":rbind" : "") < 0)
5368 return log_oom();
5369
5370 if (!strextend_with_separator(&paths, " ", str, NULL))
5371 return log_oom();
5372 }
5373 if (r < 0)
5374 return bus_log_parse_error(r);
5375
5376 r = sd_bus_message_exit_container(m);
5377 if (r < 0)
5378 return bus_log_parse_error(r);
5379
5380 if (all || !isempty(paths))
5381 bus_print_property_value(name, expected_value, value, strempty(paths));
5382
5383 return 1;
5384
5385 } else if (streq(name, "TemporaryFileSystem")) {
5386 _cleanup_free_ char *paths = NULL;
5387 const char *target, *option;
5388
5389 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(ss)");
5390 if (r < 0)
5391 return bus_log_parse_error(r);
5392
5393 while ((r = sd_bus_message_read(m, "(ss)", &target, &option)) > 0) {
5394 _cleanup_free_ char *str = NULL;
5395
5396 if (isempty(target))
5397 continue;
5398
5399 if (asprintf(&str, "%s%s%s", target, isempty(option) ? "" : ":", strempty(option)) < 0)
5400 return log_oom();
5401
5402 if (!strextend_with_separator(&paths, " ", str, NULL))
5403 return log_oom();
5404 }
5405 if (r < 0)
5406 return bus_log_parse_error(r);
5407
5408 r = sd_bus_message_exit_container(m);
5409 if (r < 0)
5410 return bus_log_parse_error(r);
5411
5412 if (all || !isempty(paths))
5413 bus_print_property_value(name, expected_value, value, strempty(paths));
5414
5415 return 1;
305a2850
YW
5416
5417 } else if (streq(name, "LogExtraFields")) {
5418 _cleanup_free_ char *fields = NULL;
5419 const void *p;
5420 size_t sz;
5421
5422 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "ay");
5423 if (r < 0)
5424 return bus_log_parse_error(r);
5425
5426 while ((r = sd_bus_message_read_array(m, 'y', &p, &sz)) > 0) {
5427 _cleanup_free_ char *str = NULL;
5428 const char *eq;
5429
5430 if (memchr(p, 0, sz))
5431 continue;
5432
5433 eq = memchr(p, '=', sz);
5434 if (!eq)
5435 continue;
5436
5437 if (!journal_field_valid(p, eq - (const char*) p, false))
5438 continue;
5439
5440 str = malloc(sz + 1);
5441 if (!str)
5442 return log_oom();
5443
5444 memcpy(str, p, sz);
5445 str[sz] = '\0';
5446
5447 if (!utf8_is_valid(str))
5448 continue;
5449
5450 if (!strextend_with_separator(&fields, " ", str, NULL))
5451 return log_oom();
5452 }
5453 if (r < 0)
5454 return bus_log_parse_error(r);
5455
5456 r = sd_bus_message_exit_container(m);
5457 if (r < 0)
5458 return bus_log_parse_error(r);
5459
5460 if (all || !isempty(fields))
5461 bus_print_property_value(name, expected_value, value, strempty(fields));
5462
a047f4f1 5463 return 1;
b070c7c0 5464 } else if (contents[0] == SD_BUS_TYPE_BYTE && STR_IN_SET(name, "CPUAffinity", "NUMAMask")) {
a047f4f1
MS
5465 _cleanup_free_ char *affinity = NULL;
5466 _cleanup_(cpu_set_reset) CPUSet set = {};
5467 const void *a;
5468 size_t n;
5469
5470 r = sd_bus_message_read_array(m, 'y', &a, &n);
5471 if (r < 0)
5472 return bus_log_parse_error(r);
5473
5474 r = cpu_set_from_dbus(a, n, &set);
5475 if (r < 0)
b070c7c0 5476 return log_error_errno(r, "Failed to deserialize %s: %m", name);
a047f4f1
MS
5477
5478 affinity = cpu_set_to_range_string(&set);
5479 if (!affinity)
5480 return log_oom();
5481
5482 bus_print_property_value(name, expected_value, value, affinity);
5483
305a2850 5484 return 1;
48220598
LP
5485 }
5486
5487 break;
5488 }
5489
48220598
LP
5490 return 0;
5491}
5492
8559e61d
YW
5493typedef enum SystemctlShowMode{
5494 SYSTEMCTL_SHOW_PROPERTIES,
5495 SYSTEMCTL_SHOW_STATUS,
5496 SYSTEMCTL_SHOW_HELP,
5497 _SYSTEMCTL_SHOW_MODE_MAX,
5498 _SYSTEMCTL_SHOW_MODE_INVALID = -1,
5499} SystemctlShowMode;
5500
aa8d423e 5501static const char* const systemctl_show_mode_table[_SYSTEMCTL_SHOW_MODE_MAX] = {
8559e61d
YW
5502 [SYSTEMCTL_SHOW_PROPERTIES] = "show",
5503 [SYSTEMCTL_SHOW_STATUS] = "status",
5504 [SYSTEMCTL_SHOW_HELP] = "help",
5505};
5506
5507DEFINE_PRIVATE_STRING_TABLE_LOOKUP_FROM_STRING(systemctl_show_mode, SystemctlShowMode);
5508
f459b602 5509static int show_one(
f459b602
MAP
5510 sd_bus *bus,
5511 const char *path,
3dced37b 5512 const char *unit,
8559e61d 5513 SystemctlShowMode show_mode,
f459b602
MAP
5514 bool *new_line,
5515 bool *ellipsized) {
5516
3dced37b 5517 static const struct bus_properties_map property_map[] = {
b3d59367
AZ
5518 { "LoadState", "s", NULL, offsetof(UnitStatusInfo, load_state) },
5519 { "ActiveState", "s", NULL, offsetof(UnitStatusInfo, active_state) },
5520 { "Documentation", "as", NULL, offsetof(UnitStatusInfo, documentation) },
4679a8c3
YW
5521 {}
5522 }, status_map[] = {
b3d59367
AZ
5523 { "Id", "s", NULL, offsetof(UnitStatusInfo, id) },
5524 { "LoadState", "s", NULL, offsetof(UnitStatusInfo, load_state) },
5525 { "ActiveState", "s", NULL, offsetof(UnitStatusInfo, active_state) },
5526 { "SubState", "s", NULL, offsetof(UnitStatusInfo, sub_state) },
5527 { "UnitFileState", "s", NULL, offsetof(UnitStatusInfo, unit_file_state) },
5528 { "UnitFilePreset", "s", NULL, offsetof(UnitStatusInfo, unit_file_preset) },
5529 { "Description", "s", NULL, offsetof(UnitStatusInfo, description) },
5530 { "Following", "s", NULL, offsetof(UnitStatusInfo, following) },
5531 { "Documentation", "as", NULL, offsetof(UnitStatusInfo, documentation) },
5532 { "FragmentPath", "s", NULL, offsetof(UnitStatusInfo, fragment_path) },
5533 { "SourcePath", "s", NULL, offsetof(UnitStatusInfo, source_path) },
5534 { "ControlGroup", "s", NULL, offsetof(UnitStatusInfo, control_group) },
5535 { "DropInPaths", "as", NULL, offsetof(UnitStatusInfo, dropin_paths) },
5536 { "LoadError", "(ss)", map_load_error, offsetof(UnitStatusInfo, load_error) },
5537 { "Result", "s", NULL, offsetof(UnitStatusInfo, result) },
5538 { "InactiveExitTimestamp", "t", NULL, offsetof(UnitStatusInfo, inactive_exit_timestamp) },
5539 { "InactiveExitTimestampMonotonic", "t", NULL, offsetof(UnitStatusInfo, inactive_exit_timestamp_monotonic) },
5540 { "ActiveEnterTimestamp", "t", NULL, offsetof(UnitStatusInfo, active_enter_timestamp) },
5541 { "ActiveExitTimestamp", "t", NULL, offsetof(UnitStatusInfo, active_exit_timestamp) },
5542 { "InactiveEnterTimestamp", "t", NULL, offsetof(UnitStatusInfo, inactive_enter_timestamp) },
5543 { "NeedDaemonReload", "b", NULL, offsetof(UnitStatusInfo, need_daemon_reload) },
5544 { "Transient", "b", NULL, offsetof(UnitStatusInfo, transient) },
5545 { "ExecMainPID", "u", NULL, offsetof(UnitStatusInfo, main_pid) },
5546 { "MainPID", "u", map_main_pid, 0 },
5547 { "ControlPID", "u", NULL, offsetof(UnitStatusInfo, control_pid) },
5548 { "StatusText", "s", NULL, offsetof(UnitStatusInfo, status_text) },
5549 { "PIDFile", "s", NULL, offsetof(UnitStatusInfo, pid_file) },
5550 { "StatusErrno", "i", NULL, offsetof(UnitStatusInfo, status_errno) },
5551 { "ExecMainStartTimestamp", "t", NULL, offsetof(UnitStatusInfo, start_timestamp) },
5552 { "ExecMainExitTimestamp", "t", NULL, offsetof(UnitStatusInfo, exit_timestamp) },
5553 { "ExecMainCode", "i", NULL, offsetof(UnitStatusInfo, exit_code) },
5554 { "ExecMainStatus", "i", NULL, offsetof(UnitStatusInfo, exit_status) },
5555 { "ConditionTimestamp", "t", NULL, offsetof(UnitStatusInfo, condition_timestamp) },
5556 { "ConditionResult", "b", NULL, offsetof(UnitStatusInfo, condition_result) },
5557 { "Conditions", "a(sbbsi)", map_conditions, 0 },
5558 { "AssertTimestamp", "t", NULL, offsetof(UnitStatusInfo, assert_timestamp) },
5559 { "AssertResult", "b", NULL, offsetof(UnitStatusInfo, assert_result) },
5560 { "Asserts", "a(sbbsi)", map_asserts, 0 },
5561 { "NextElapseUSecRealtime", "t", NULL, offsetof(UnitStatusInfo, next_elapse_real) },
5562 { "NextElapseUSecMonotonic", "t", NULL, offsetof(UnitStatusInfo, next_elapse_monotonic) },
5563 { "NAccepted", "u", NULL, offsetof(UnitStatusInfo, n_accepted) },
5564 { "NConnections", "u", NULL, offsetof(UnitStatusInfo, n_connections) },
5565 { "NRefused", "u", NULL, offsetof(UnitStatusInfo, n_refused) },
5566 { "Accept", "b", NULL, offsetof(UnitStatusInfo, accept) },
5567 { "Listen", "a(ss)", map_listen, offsetof(UnitStatusInfo, listen) },
5568 { "SysFSPath", "s", NULL, offsetof(UnitStatusInfo, sysfs_path) },
5569 { "Where", "s", NULL, offsetof(UnitStatusInfo, where) },
5570 { "What", "s", NULL, offsetof(UnitStatusInfo, what) },
5571 { "MemoryCurrent", "t", NULL, offsetof(UnitStatusInfo, memory_current) },
5572 { "DefaultMemoryMin", "t", NULL, offsetof(UnitStatusInfo, default_memory_min) },
5573 { "DefaultMemoryLow", "t", NULL, offsetof(UnitStatusInfo, default_memory_low) },
5574 { "MemoryMin", "t", NULL, offsetof(UnitStatusInfo, memory_min) },
5575 { "MemoryLow", "t", NULL, offsetof(UnitStatusInfo, memory_low) },
5576 { "MemoryHigh", "t", NULL, offsetof(UnitStatusInfo, memory_high) },
5577 { "MemoryMax", "t", NULL, offsetof(UnitStatusInfo, memory_max) },
5578 { "MemorySwapMax", "t", NULL, offsetof(UnitStatusInfo, memory_swap_max) },
5579 { "MemoryLimit", "t", NULL, offsetof(UnitStatusInfo, memory_limit) },
5580 { "CPUUsageNSec", "t", NULL, offsetof(UnitStatusInfo, cpu_usage_nsec) },
5581 { "TasksCurrent", "t", NULL, offsetof(UnitStatusInfo, tasks_current) },
5582 { "TasksMax", "t", NULL, offsetof(UnitStatusInfo, tasks_max) },
5583 { "IPIngressBytes", "t", NULL, offsetof(UnitStatusInfo, ip_ingress_bytes) },
5584 { "IPEgressBytes", "t", NULL, offsetof(UnitStatusInfo, ip_egress_bytes) },
5585 { "IOReadBytes", "t", NULL, offsetof(UnitStatusInfo, io_read_bytes) },
5586 { "IOWriteBytes", "t", NULL, offsetof(UnitStatusInfo, io_write_bytes) },
5587 { "ExecStartPre", "a(sasbttttuii)", map_exec, 0 },
5588 { "ExecStartPreEx", "a(sasasttttuii)", map_exec, 0 },
5589 { "ExecStart", "a(sasbttttuii)", map_exec, 0 },
5590 { "ExecStartEx", "a(sasasttttuii)", map_exec, 0 },
5591 { "ExecStartPost", "a(sasbttttuii)", map_exec, 0 },
5592 { "ExecStartPostEx", "a(sasasttttuii)", map_exec, 0 },
5593 { "ExecReload", "a(sasbttttuii)", map_exec, 0 },
5594 { "ExecStopPre", "a(sasbttttuii)", map_exec, 0 },
5595 { "ExecStop", "a(sasbttttuii)", map_exec, 0 },
5596 { "ExecStopPost", "a(sasbttttuii)", map_exec, 0 },
3dced37b
LP
5597 {}
5598 };
5599
4afd3348
LP
5600 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
5601 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
3dced37b 5602 _cleanup_set_free_ Set *found_properties = NULL;
a7335518 5603 _cleanup_(unit_status_info_free) UnitStatusInfo info = {
934277fe 5604 .memory_current = (uint64_t) -1,
da4d897e
TH
5605 .memory_high = CGROUP_LIMIT_MAX,
5606 .memory_max = CGROUP_LIMIT_MAX,
96e131ea 5607 .memory_swap_max = CGROUP_LIMIT_MAX,
934277fe 5608 .memory_limit = (uint64_t) -1,
5ad096b3 5609 .cpu_usage_nsec = (uint64_t) -1,
03a7b521
LP
5610 .tasks_current = (uint64_t) -1,
5611 .tasks_max = (uint64_t) -1,
0e97c93f
DM
5612 .ip_ingress_bytes = (uint64_t) -1,
5613 .ip_egress_bytes = (uint64_t) -1,
7a5de3f9
LP
5614 .io_read_bytes = UINT64_MAX,
5615 .io_write_bytes = UINT64_MAX,
934277fe 5616 };
4679a8c3 5617 char **pp;
f459b602 5618 int r;
48220598 5619
48220598 5620 assert(path);
61cbdc4b 5621 assert(new_line);
48220598 5622
e3e0314b
ZJS
5623 log_debug("Showing one %s", path);
5624
4679a8c3 5625 r = bus_map_all_properties(
f22f08cd
SP
5626 bus,
5627 "org.freedesktop.systemd1",
5628 path,
4679a8c3 5629 show_mode == SYSTEMCTL_SHOW_STATUS ? status_map : property_map,
a7e4861c 5630 BUS_MAP_BOOLEAN_AS_BOOL,
f459b602 5631 &error,
f22f08cd 5632 &reply,
4679a8c3 5633 &info);
4c3e8e39
LP
5634 if (r < 0)
5635 return log_error_errno(r, "Failed to get properties: %s", bus_error_message(&error, r));
48220598 5636
4679a8c3
YW
5637 if (unit && streq_ptr(info.load_state, "not-found") && streq_ptr(info.active_state, "inactive")) {
5638 log_full(show_mode == SYSTEMCTL_SHOW_STATUS ? LOG_ERR : LOG_DEBUG,
5639 "Unit %s could not be found.", unit);
e33a06a1 5640
4679a8c3
YW
5641 if (show_mode == SYSTEMCTL_SHOW_STATUS)
5642 return EXIT_PROGRAM_OR_SERVICES_STATUS_UNKNOWN;
5643 else if (show_mode == SYSTEMCTL_SHOW_HELP)
5644 return -ENOENT;
5645 }
e33a06a1 5646
4679a8c3
YW
5647 if (*new_line)
5648 printf("\n");
3dced37b 5649
4679a8c3
YW
5650 *new_line = true;
5651
5652 if (show_mode == SYSTEMCTL_SHOW_STATUS) {
5653 print_status_info(bus, &info, ellipsized);
5654
5655 if (info.active_state && !STR_IN_SET(info.active_state, "active", "reloading"))
5656 return EXIT_PROGRAM_NOT_RUNNING;
5657
5658 return EXIT_PROGRAM_RUNNING_OR_SERVICE_OK;
5659
5660 } else if (show_mode == SYSTEMCTL_SHOW_HELP) {
5661 show_unit_help(&info);
5662 return 0;
3dced37b 5663 }
e33a06a1 5664
4679a8c3
YW
5665 r = sd_bus_message_rewind(reply, true);
5666 if (r < 0)
5667 return log_error_errno(r, "Failed to rewind: %s", bus_error_message(&error, r));
5668
07636114 5669 r = bus_message_print_all_properties(reply, print_property, arg_properties, arg_value, arg_all, &found_properties);
f459b602
MAP
5670 if (r < 0)
5671 return bus_log_parse_error(r);
48220598 5672
4679a8c3
YW
5673 STRV_FOREACH(pp, arg_properties)
5674 if (!set_contains(found_properties, *pp))
5675 log_debug("Property %s does not exist.", *pp);
3dced37b 5676
4679a8c3 5677 return 0;
48220598
LP
5678}
5679
f74294c1 5680static int get_unit_dbus_path_by_pid(
f459b602
MAP
5681 sd_bus *bus,
5682 uint32_t pid,
f74294c1 5683 char **unit) {
f459b602 5684
4afd3348
LP
5685 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
5686 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
373d32c9 5687 char *u;
a223b325
MS
5688 int r;
5689
f459b602 5690 r = sd_bus_call_method(
f22f08cd
SP
5691 bus,
5692 "org.freedesktop.systemd1",
5693 "/org/freedesktop/systemd1",
5694 "org.freedesktop.systemd1.Manager",
5695 "GetUnitByPID",
f459b602 5696 &error,
f22f08cd 5697 &reply,
f459b602 5698 "u", pid);
691395d8
LP
5699 if (r < 0)
5700 return log_error_errno(r, "Failed to get unit for PID %"PRIu32": %s", pid, bus_error_message(&error, r));
a223b325 5701
373d32c9 5702 r = sd_bus_message_read(reply, "o", &u);
f459b602
MAP
5703 if (r < 0)
5704 return bus_log_parse_error(r);
5705
373d32c9
LP
5706 u = strdup(u);
5707 if (!u)
5708 return log_oom();
5709
5710 *unit = u;
f74294c1 5711 return 0;
a223b325
MS
5712}
5713
f459b602 5714static int show_all(
f459b602 5715 sd_bus *bus,
f459b602
MAP
5716 bool *new_line,
5717 bool *ellipsized) {
5718
4afd3348 5719 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
f459b602
MAP
5720 _cleanup_free_ UnitInfo *unit_infos = NULL;
5721 const UnitInfo *u;
5722 unsigned c;
5bb75bc7 5723 int r, ret = 0;
265a7a2a 5724
1238ee09 5725 r = get_unit_list(bus, NULL, NULL, &unit_infos, 0, &reply);
265a7a2a
ZJS
5726 if (r < 0)
5727 return r;
5728
0221d68a 5729 (void) pager_open(arg_pager_flags);
dbed408b 5730
f459b602
MAP
5731 c = (unsigned) r;
5732
93bab288 5733 typesafe_qsort(unit_infos, c, compare_unit_info);
991f2a39 5734
265a7a2a 5735 for (u = unit_infos; u < unit_infos + c; u++) {
7fd1b19b 5736 _cleanup_free_ char *p = NULL;
265a7a2a 5737
265a7a2a
ZJS
5738 p = unit_dbus_path_from_name(u->id);
5739 if (!p)
5740 return log_oom();
5741
8559e61d 5742 r = show_one(bus, p, u->id, SYSTEMCTL_SHOW_STATUS, new_line, ellipsized);
3df538da 5743 if (r < 0)
265a7a2a 5744 return r;
5bb75bc7
ZJS
5745 else if (r > 0 && ret == 0)
5746 ret = r;
265a7a2a
ZJS
5747 }
5748
5bb75bc7 5749 return ret;
265a7a2a
ZJS
5750}
5751
8fcf784d
LP
5752static int show_system_status(sd_bus *bus) {
5753 char since1[FORMAT_TIMESTAMP_RELATIVE_MAX], since2[FORMAT_TIMESTAMP_MAX];
f9e0eefc 5754 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
e7e55dbd 5755 _cleanup_(machine_info_clear) struct machine_info mi = {};
f9e0eefc 5756 _cleanup_free_ char *hn = NULL;
8fcf784d
LP
5757 const char *on, *off;
5758 int r;
5759
5760 hn = gethostname_malloc();
5761 if (!hn)
5762 return log_oom();
5763
a7e4861c
YW
5764 r = bus_map_all_properties(
5765 bus,
5766 "org.freedesktop.systemd1",
5767 "/org/freedesktop/systemd1",
5768 machine_info_property_map,
5769 BUS_MAP_STRDUP,
5770 &error,
5771 NULL,
5772 &mi);
f647962d 5773 if (r < 0)
f9e0eefc 5774 return log_error_errno(r, "Failed to read server status: %s", bus_error_message(&error, r));
8fcf784d 5775
8fcf784d
LP
5776 if (streq_ptr(mi.state, "degraded")) {
5777 on = ansi_highlight_red();
1fc464f6 5778 off = ansi_normal();
92f34a9c
JR
5779 } else if (streq_ptr(mi.state, "running")) {
5780 on = ansi_highlight_green();
5781 off = ansi_normal();
5782 } else {
8fcf784d 5783 on = ansi_highlight_yellow();
1fc464f6 5784 off = ansi_normal();
92f34a9c 5785 }
8fcf784d 5786
9a6f746f 5787 printf("%s%s%s %s\n", on, special_glyph(SPECIAL_GLYPH_BLACK_CIRCLE), off, arg_host ? arg_host : hn);
b0d14c69 5788
8fcf784d
LP
5789 printf(" State: %s%s%s\n",
5790 on, strna(mi.state), off);
5791
c6ba5b80
MP
5792 printf(" Jobs: %" PRIu32 " queued\n", mi.n_jobs);
5793 printf(" Failed: %" PRIu32 " units\n", mi.n_failed_units);
8fcf784d
LP
5794
5795 printf(" Since: %s; %s\n",
5796 format_timestamp(since2, sizeof(since2), mi.timestamp),
5797 format_timestamp_relative(since1, sizeof(since1), mi.timestamp));
5798
5799 printf(" CGroup: %s\n", mi.control_group ?: "/");
4c315c2c
IS
5800 if (IN_SET(arg_transport,
5801 BUS_TRANSPORT_LOCAL,
5802 BUS_TRANSPORT_MACHINE)) {
8fcf784d
LP
5803 static const char prefix[] = " ";
5804 unsigned c;
5805
5806 c = columns();
5807 if (c > sizeof(prefix) - 1)
5808 c -= sizeof(prefix) - 1;
5809 else
5810 c = 0;
5811
0ff308c8 5812 show_cgroup(SYSTEMD_CGROUP_CONTROLLER, strempty(mi.control_group), prefix, c, get_output_flags());
8fcf784d
LP
5813 }
5814
8fcf784d
LP
5815 return 0;
5816}
5817
e449de87 5818static int show(int argc, char *argv[], void *userdata) {
8559e61d
YW
5819 bool new_line = false, ellipsized = false;
5820 SystemctlShowMode show_mode;
e3e0314b 5821 int r, ret = 0;
4fbd7192 5822 sd_bus *bus;
48220598 5823
e449de87 5824 assert(argv);
48220598 5825
8559e61d 5826 show_mode = systemctl_show_mode_from_string(argv[0]);
baaa35ad
ZJS
5827 if (show_mode < 0)
5828 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
5829 "Invalid argument.");
e449de87 5830
baaa35ad
ZJS
5831 if (show_mode == SYSTEMCTL_SHOW_HELP && argc <= 1)
5832 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
5833 "This command expects one or more unit names. Did you mean --help?");
61cbdc4b 5834
d2ad7e1b
ZJS
5835 r = acquire_bus(BUS_MANAGER, &bus);
5836 if (r < 0)
5837 return r;
5838
0221d68a 5839 (void) pager_open(arg_pager_flags);
ec14911e 5840
4fbd7192 5841 /* If no argument is specified inspect the manager itself */
8559e61d
YW
5842 if (show_mode == SYSTEMCTL_SHOW_PROPERTIES && argc <= 1)
5843 return show_one(bus, "/org/freedesktop/systemd1", NULL, show_mode, &new_line, &ellipsized);
48220598 5844
8559e61d 5845 if (show_mode == SYSTEMCTL_SHOW_STATUS && argc <= 1) {
8fcf784d 5846
8fcf784d
LP
5847 show_system_status(bus);
5848 new_line = true;
5849
5850 if (arg_all)
8559e61d 5851 ret = show_all(bus, &new_line, &ellipsized);
8fcf784d 5852 } else {
e3e0314b
ZJS
5853 _cleanup_free_ char **patterns = NULL;
5854 char **name;
5855
e449de87 5856 STRV_FOREACH(name, strv_skip(argv, 1)) {
3dced37b 5857 _cleanup_free_ char *path = NULL, *unit = NULL;
94e0bd7d 5858 uint32_t id;
48220598 5859
94e0bd7d 5860 if (safe_atou32(*name, &id) < 0) {
e3e0314b 5861 if (strv_push(&patterns, *name) < 0)
94e0bd7d 5862 return log_oom();
48220598 5863
e3e0314b 5864 continue;
8559e61d 5865 } else if (show_mode == SYSTEMCTL_SHOW_PROPERTIES) {
94e0bd7d 5866 /* Interpret as job id */
3dced37b 5867 if (asprintf(&path, "/org/freedesktop/systemd1/job/%u", id) < 0)
94e0bd7d 5868 return log_oom();
48220598 5869
94e0bd7d
ZJS
5870 } else {
5871 /* Interpret as PID */
3dced37b 5872 r = get_unit_dbus_path_by_pid(bus, id, &path);
373d32c9 5873 if (r < 0) {
94e0bd7d 5874 ret = r;
373d32c9
LP
5875 continue;
5876 }
3dced37b
LP
5877
5878 r = unit_name_from_dbus_path(path, &unit);
5879 if (r < 0)
5880 return log_oom();
94e0bd7d 5881 }
f74294c1 5882
8559e61d 5883 r = show_one(bus, path, unit, show_mode, &new_line, &ellipsized);
5bb75bc7
ZJS
5884 if (r < 0)
5885 return r;
5886 else if (r > 0 && ret == 0)
5887 ret = r;
48220598 5888 }
94e0bd7d 5889
e3e0314b
ZJS
5890 if (!strv_isempty(patterns)) {
5891 _cleanup_strv_free_ char **names = NULL;
5892
5893 r = expand_names(bus, patterns, NULL, &names);
5894 if (r < 0)
691395d8 5895 return log_error_errno(r, "Failed to expand names: %m");
e3e0314b
ZJS
5896
5897 STRV_FOREACH(name, names) {
3dced37b 5898 _cleanup_free_ char *path;
e3e0314b 5899
3dced37b
LP
5900 path = unit_dbus_path_from_name(*name);
5901 if (!path)
e3e0314b
ZJS
5902 return log_oom();
5903
8559e61d 5904 r = show_one(bus, path, *name, show_mode, &new_line, &ellipsized);
5bb75bc7
ZJS
5905 if (r < 0)
5906 return r;
3dced37b 5907 if (r > 0 && ret == 0)
5bb75bc7 5908 ret = r;
e3e0314b
ZJS
5909 }
5910 }
5911 }
5912
94e0bd7d
ZJS
5913 if (ellipsized && !arg_quiet)
5914 printf("Hint: Some lines were ellipsized, use -l to show in full.\n");
48220598 5915
22f4096c 5916 return ret;
0183528f
LP
5917}
5918
e449de87 5919static int cat(int argc, char *argv[], void *userdata) {
8e766630 5920 _cleanup_(lookup_paths_free) LookupPaths lp = {};
15ef1144
LP
5921 _cleanup_strv_free_ char **names = NULL;
5922 char **name;
4fbd7192
LP
5923 sd_bus *bus;
5924 bool first = true;
25586912 5925 int r;
15ef1144 5926
4eb53120
FS
5927 /* Include all units by default - i.e. continue as if the --all
5928 * option was used */
5929 if (strv_isempty(arg_states))
5930 arg_all = true;
5931
2f50e59f
LP
5932 if (arg_transport != BUS_TRANSPORT_LOCAL)
5933 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Cannot remotely cat units.");
3e495a66 5934
4943d143 5935 r = lookup_paths_init(&lp, arg_scope, 0, arg_root);
ad2a0358 5936 if (r < 0)
c51932be 5937 return log_error_errno(r, "Failed to determine unit paths: %m");
ad2a0358 5938
4fbd7192 5939 r = acquire_bus(BUS_MANAGER, &bus);
15ef1144 5940 if (r < 0)
4fbd7192 5941 return r;
15ef1144 5942
e449de87 5943 r = expand_names(bus, strv_skip(argv, 1), NULL, &names);
4fbd7192
LP
5944 if (r < 0)
5945 return log_error_errno(r, "Failed to expand names: %m");
ad2a0358 5946
0221d68a 5947 (void) pager_open(arg_pager_flags);
15ef1144
LP
5948
5949 STRV_FOREACH(name, names) {
ad2a0358 5950 _cleanup_free_ char *fragment_path = NULL;
15ef1144 5951 _cleanup_strv_free_ char **dropin_paths = NULL;
15ef1144 5952
02a126a3 5953 r = unit_find_paths(bus, *name, &lp, false, &fragment_path, &dropin_paths);
86f004fb 5954 if (r == -ERFKILL) {
02a126a3
LP
5955 printf("%s# Unit %s is masked%s.\n",
5956 ansi_highlight_magenta(),
5957 *name,
5958 ansi_normal());
5959 continue;
5960 }
5961 if (r == -EKEYREJECTED) {
5962 printf("%s# Unit %s could not be loaded.%s\n",
86f004fb
ZJS
5963 ansi_highlight_magenta(),
5964 *name,
5965 ansi_normal());
5966 continue;
5967 }
ad2a0358
ZJS
5968 if (r < 0)
5969 return r;
02a126a3 5970 if (r == 0)
b5e6a600 5971 return -ENOENT;
15ef1144
LP
5972
5973 if (first)
5974 first = false;
5975 else
5976 puts("");
5977
5b9635d1 5978 if (need_daemon_reload(bus, *name) > 0) /* ignore errors (<0), this is informational output */
e100155d
LW
5979 fprintf(stderr,
5980 "%s# Warning: %s changed on disk, the version systemd has loaded is outdated.\n"
5981 "%s# This output shows the current version of the unit's original fragment and drop-in files.\n"
5982 "%s# If fragments or drop-ins were added or removed, they are not properly reflected in this output.\n"
5983 "%s# Run 'systemctl%s daemon-reload' to reload units.%s\n",
5984 ansi_highlight_red(),
5985 *name,
5986 ansi_highlight_red(),
5987 ansi_highlight_red(),
5988 ansi_highlight_red(),
5989 arg_scope == UNIT_FILE_SYSTEM ? "" : " --user",
5990 ansi_normal());
5991
854a42fb 5992 r = cat_files(fragment_path, dropin_paths, 0);
81f5e513
ZJS
5993 if (r < 0)
5994 return r;
15ef1144
LP
5995 }
5996
25586912 5997 return 0;
15ef1144
LP
5998}
5999
e449de87 6000static int set_property(int argc, char *argv[], void *userdata) {
4afd3348
LP
6001 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
6002 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
68372da6 6003 _cleanup_free_ char *n = NULL;
89ada3ba 6004 UnitType t;
4fbd7192 6005 sd_bus *bus;
8e2af478
LP
6006 int r;
6007
4fbd7192
LP
6008 r = acquire_bus(BUS_MANAGER, &bus);
6009 if (r < 0)
6010 return r;
6011
8a4b13c5 6012 polkit_agent_open_maybe();
d2ad7e1b 6013
f459b602
MAP
6014 r = sd_bus_message_new_method_call(
6015 bus,
151b9b96 6016 &m,
8e2af478
LP
6017 "org.freedesktop.systemd1",
6018 "/org/freedesktop/systemd1",
6019 "org.freedesktop.systemd1.Manager",
151b9b96 6020 "SetUnitProperties");
f459b602
MAP
6021 if (r < 0)
6022 return bus_log_create_error(r);
8e2af478 6023
37cbc1d5 6024 r = unit_name_mangle(argv[1], arg_quiet ? 0 : UNIT_NAME_MANGLE_WARN, &n);
7410616c
LP
6025 if (r < 0)
6026 return log_error_errno(r, "Failed to mangle unit name: %m");
68372da6 6027
89ada3ba 6028 t = unit_name_to_type(n);
2f50e59f
LP
6029 if (t < 0)
6030 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Invalid unit type: %s", n);
89ada3ba 6031
f459b602
MAP
6032 r = sd_bus_message_append(m, "sb", n, arg_runtime);
6033 if (r < 0)
6034 return bus_log_create_error(r);
8e2af478 6035
f459b602
MAP
6036 r = sd_bus_message_open_container(m, SD_BUS_TYPE_ARRAY, "(sv)");
6037 if (r < 0)
6038 return bus_log_create_error(r);
8e2af478 6039
89ada3ba 6040 r = bus_append_unit_property_assignment_many(m, t, strv_skip(argv, 2));
8673cf13
LP
6041 if (r < 0)
6042 return r;
8e2af478 6043
f459b602
MAP
6044 r = sd_bus_message_close_container(m);
6045 if (r < 0)
6046 return bus_log_create_error(r);
8e2af478 6047
c49b30a2 6048 r = sd_bus_call(bus, m, 0, &error, NULL);
691395d8
LP
6049 if (r < 0)
6050 return log_error_errno(r, "Failed to set unit properties on %s: %s", n, bus_error_message(&error, r));
8e2af478
LP
6051
6052 return 0;
6053}
6054
e449de87 6055static int daemon_reload(int argc, char *argv[], void *userdata) {
4afd3348 6056 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2853b60a 6057 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
7e4249b9 6058 const char *method;
4fbd7192 6059 sd_bus *bus;
f459b602 6060 int r;
7e4249b9 6061
4fbd7192
LP
6062 r = acquire_bus(BUS_MANAGER, &bus);
6063 if (r < 0)
6064 return r;
6065
8a4b13c5 6066 polkit_agent_open_maybe();
d2ad7e1b 6067
2853b60a
LP
6068 switch (arg_action) {
6069
6070 case ACTION_RELOAD:
e4b61340 6071 method = "Reload";
2853b60a
LP
6072 break;
6073
6074 case ACTION_REEXEC:
e4b61340 6075 method = "Reexecute";
2853b60a
LP
6076 break;
6077
6078 case ACTION_SYSTEMCTL:
6079 method = streq(argv[0], "daemon-reexec") ? "Reexecute" :
6080 /* "daemon-reload" */ "Reload";
6081 break;
e4b61340 6082
2853b60a
LP
6083 default:
6084 assert_not_reached("Unexpected action");
e4b61340 6085 }
7e4249b9 6086
2853b60a
LP
6087 r = sd_bus_message_new_method_call(
6088 bus,
6089 &m,
6090 "org.freedesktop.systemd1",
6091 "/org/freedesktop/systemd1",
6092 "org.freedesktop.systemd1.Manager",
6093 method);
6094 if (r < 0)
6095 return bus_log_create_error(r);
6096
6097 /* Note we use an extra-long timeout here. This is because a reload or reexec means generators are rerun which
6098 * are timed out after DEFAULT_TIMEOUT_USEC. Let's use twice that time here, so that the generators can have
6099 * their timeout, and for everything else there's the same time budget in place. */
6100
6101 r = sd_bus_call(bus, m, DEFAULT_TIMEOUT_USEC * 2, &error, NULL);
6102
6103 /* On reexecution, we expect a disconnect, not a reply */
6104 if (IN_SET(r, -ETIMEDOUT, -ECONNRESET) && streq(method, "Reexecute"))
6105 r = 0;
6106
6107 if (r < 0 && arg_action == ACTION_SYSTEMCTL)
6108 return log_error_errno(r, "Failed to reload daemon: %s", bus_error_message(&error, r));
6109
6110 /* Note that for the legacy commands (i.e. those with action != ACTION_SYSTEMCTL) we support fallbacks to the
6111 * old ways of doing things, hence don't log any error in that case here. */
6112
6113 return r < 0 ? r : 0;
6114}
6115
6116static int trivial_method(int argc, char *argv[], void *userdata) {
6117 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
6118 const char *method;
6119 sd_bus *bus;
6120 int r;
6121
1ae17672
ZJS
6122 if (arg_dry_run)
6123 return 0;
6124
2853b60a
LP
6125 r = acquire_bus(BUS_MANAGER, &bus);
6126 if (r < 0)
6127 return r;
6128
8a4b13c5 6129 polkit_agent_open_maybe();
d2ad7e1b 6130
2853b60a
LP
6131 method =
6132 streq(argv[0], "clear-jobs") ||
6133 streq(argv[0], "cancel") ? "ClearJobs" :
6134 streq(argv[0], "reset-failed") ? "ResetFailed" :
6135 streq(argv[0], "halt") ? "Halt" :
6136 streq(argv[0], "reboot") ? "Reboot" :
6137 streq(argv[0], "kexec") ? "KExec" :
6138 streq(argv[0], "exit") ? "Exit" :
6139 /* poweroff */ "PowerOff";
6140
6e646d22 6141 r = sd_bus_call_method(
f22f08cd
SP
6142 bus,
6143 "org.freedesktop.systemd1",
6144 "/org/freedesktop/systemd1",
6145 "org.freedesktop.systemd1.Manager",
6e646d22
LP
6146 method,
6147 &error,
6148 NULL,
6149 NULL);
2853b60a
LP
6150 if (r < 0 && arg_action == ACTION_SYSTEMCTL)
6151 return log_error_errno(r, "Failed to execute operation: %s", bus_error_message(&error, r));
6152
6153 /* Note that for the legacy commands (i.e. those with action != ACTION_SYSTEMCTL) we support fallbacks to the
6154 * old ways of doing things, hence don't log any error in that case here. */
7e4249b9 6155
0a9776c2 6156 return r < 0 ? r : 0;
7e4249b9
LP
6157}
6158
e449de87 6159static int reset_failed(int argc, char *argv[], void *userdata) {
e3e0314b 6160 _cleanup_strv_free_ char **names = NULL;
4fbd7192 6161 sd_bus *bus;
f84190d8 6162 char **name;
e3e0314b 6163 int r, q;
5632e374 6164
e449de87 6165 if (argc <= 1)
2853b60a 6166 return trivial_method(argc, argv, userdata);
5632e374 6167
4fbd7192
LP
6168 r = acquire_bus(BUS_MANAGER, &bus);
6169 if (r < 0)
6170 return r;
6171
8a4b13c5 6172 polkit_agent_open_maybe();
d2ad7e1b 6173
e449de87 6174 r = expand_names(bus, strv_skip(argv, 1), NULL, &names);
e3e0314b 6175 if (r < 0)
691395d8 6176 return log_error_errno(r, "Failed to expand names: %m");
f84190d8 6177
e3e0314b 6178 STRV_FOREACH(name, names) {
4afd3348 6179 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
342641fb 6180
6e646d22 6181 q = sd_bus_call_method(
f22f08cd 6182 bus,
b0193f1c
LP
6183 "org.freedesktop.systemd1",
6184 "/org/freedesktop/systemd1",
6185 "org.freedesktop.systemd1.Manager",
6e646d22
LP
6186 "ResetFailedUnit",
6187 &error,
6188 NULL,
6189 "s", *name);
e3e0314b 6190 if (q < 0) {
691395d8 6191 log_error_errno(q, "Failed to reset failed state of unit %s: %s", *name, bus_error_message(&error, q));
e3e0314b
ZJS
6192 if (r == 0)
6193 r = q;
f459b602 6194 }
5632e374
LP
6195 }
6196
e3e0314b 6197 return r;
5632e374
LP
6198}
6199
804ee07c
ZJS
6200static int print_variable(const char *s) {
6201 const char *sep;
6202 _cleanup_free_ char *esc = NULL;
6203
6204 sep = strchr(s, '=');
baaa35ad
ZJS
6205 if (!sep)
6206 return log_error_errno(SYNTHETIC_ERRNO(EUCLEAN),
6207 "Invalid environment block");
804ee07c
ZJS
6208
6209 esc = shell_maybe_quote(sep + 1, ESCAPE_POSIX);
6210 if (!esc)
6211 return log_oom();
6212
6213 printf("%.*s=%s\n", (int)(sep-s), s, esc);
6214 return 0;
6215}
6216
e449de87 6217static int show_environment(int argc, char *argv[], void *userdata) {
4afd3348
LP
6218 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
6219 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
f459b602 6220 const char *text;
4fbd7192 6221 sd_bus *bus;
7e4249b9 6222 int r;
7e4249b9 6223
4fbd7192
LP
6224 r = acquire_bus(BUS_MANAGER, &bus);
6225 if (r < 0)
6226 return r;
6227
0221d68a 6228 (void) pager_open(arg_pager_flags);
d2ad7e1b 6229
f459b602 6230 r = sd_bus_get_property(
f22f08cd
SP
6231 bus,
6232 "org.freedesktop.systemd1",
6233 "/org/freedesktop/systemd1",
f459b602
MAP
6234 "org.freedesktop.systemd1.Manager",
6235 "Environment",
6236 &error,
f22f08cd 6237 &reply,
f459b602 6238 "as");
691395d8
LP
6239 if (r < 0)
6240 return log_error_errno(r, "Failed to get environment: %s", bus_error_message(&error, r));
7e4249b9 6241
f459b602
MAP
6242 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "s");
6243 if (r < 0)
6244 return bus_log_parse_error(r);
7e4249b9 6245
804ee07c
ZJS
6246 while ((r = sd_bus_message_read_basic(reply, SD_BUS_TYPE_STRING, &text)) > 0) {
6247 r = print_variable(text);
6248 if (r < 0)
6249 return r;
6250 }
f459b602
MAP
6251 if (r < 0)
6252 return bus_log_parse_error(r);
7e4249b9 6253
f459b602
MAP
6254 r = sd_bus_message_exit_container(reply);
6255 if (r < 0)
6256 return bus_log_parse_error(r);
7e4249b9 6257
f84190d8 6258 return 0;
7e4249b9
LP
6259}
6260
e449de87 6261static int switch_root(int argc, char *argv[], void *userdata) {
4afd3348 6262 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
f39d4a08
HH
6263 _cleanup_free_ char *cmdline_init = NULL;
6264 const char *root, *init;
4fbd7192 6265 sd_bus *bus;
f459b602 6266 int r;
957eb8ca 6267
2f50e59f
LP
6268 if (arg_transport != BUS_TRANSPORT_LOCAL)
6269 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Cannot switch root remotely.");
4fbd7192 6270
2f50e59f
LP
6271 if (argc < 2 || argc > 3)
6272 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Wrong number of arguments.");
957eb8ca 6273
e449de87 6274 root = argv[1];
13068da8 6275
e449de87
LP
6276 if (argc >= 3)
6277 init = argv[2];
13068da8 6278 else {
01771226 6279 r = proc_cmdline_get_key("init", 0, &cmdline_init);
f39d4a08 6280 if (r < 0)
da927ba9 6281 log_debug_errno(r, "Failed to parse /proc/cmdline: %m");
13068da8 6282
f39d4a08 6283 init = cmdline_init;
13068da8 6284 }
f459b602 6285
3c6f7c34 6286 init = empty_to_null(init);
f39d4a08
HH
6287 if (init) {
6288 const char *root_systemd_path = NULL, *root_init_path = NULL;
6289
270384b2
YW
6290 root_systemd_path = prefix_roota(root, "/" SYSTEMD_BINARY_PATH);
6291 root_init_path = prefix_roota(root, init);
f39d4a08
HH
6292
6293 /* If the passed init is actually the same as the
6294 * systemd binary, then let's suppress it. */
e3f791a2 6295 if (files_same(root_init_path, root_systemd_path, 0) > 0)
f39d4a08
HH
6296 init = NULL;
6297 }
13068da8 6298
d86e4c97
LP
6299 /* Instruct PID1 to exclude us from its killing spree applied during the transition. Otherwise we
6300 * would exit with a failure status even though the switch to the new root has succeed. */
6301 assert(saved_argv);
6302 assert(saved_argv[0]);
6303 saved_argv[0][0] = '@';
acc28e2e 6304
4fbd7192
LP
6305 r = acquire_bus(BUS_MANAGER, &bus);
6306 if (r < 0)
6307 return r;
6308
8a7a9cea
ZJS
6309 /* If we are slow to exit after the root switch, the new systemd instance
6310 * will send us a signal to terminate. Just ignore it and exit normally.
6311 * This way the unit does not end up as failed.
6312 */
6313 r = ignore_signals(SIGTERM, -1);
6314 if (r < 0)
6315 log_warning_errno(r, "Failed to change disposition of SIGTERM to ignore: %m");
6316
f39d4a08 6317 log_debug("Switching root - root: %s; init: %s", root, strna(init));
957eb8ca 6318
f459b602 6319 r = sd_bus_call_method(
f22f08cd 6320 bus,
957eb8ca
LP
6321 "org.freedesktop.systemd1",
6322 "/org/freedesktop/systemd1",
6323 "org.freedesktop.systemd1.Manager",
f22f08cd 6324 "SwitchRoot",
f459b602 6325 &error,
f22f08cd 6326 NULL,
f459b602 6327 "ss", root, init);
8a7a9cea
ZJS
6328 if (r < 0) {
6329 (void) default_signals(SIGTERM, -1);
6330
691395d8 6331 return log_error_errno(r, "Failed to switch root: %s", bus_error_message(&error, r));
8a7a9cea 6332 }
f459b602
MAP
6333
6334 return 0;
957eb8ca
LP
6335}
6336
e449de87 6337static int set_environment(int argc, char *argv[], void *userdata) {
4afd3348
LP
6338 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
6339 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
7e4249b9 6340 const char *method;
4fbd7192 6341 sd_bus *bus;
31e767f7
LP
6342 int r;
6343
e449de87
LP
6344 assert(argc > 1);
6345 assert(argv);
7e4249b9 6346
4fbd7192
LP
6347 r = acquire_bus(BUS_MANAGER, &bus);
6348 if (r < 0)
6349 return r;
6350
8a4b13c5 6351 polkit_agent_open_maybe();
d2ad7e1b 6352
e449de87 6353 method = streq(argv[0], "set-environment")
7e4249b9
LP
6354 ? "SetEnvironment"
6355 : "UnsetEnvironment";
6356
f459b602
MAP
6357 r = sd_bus_message_new_method_call(
6358 bus,
151b9b96 6359 &m,
31e767f7
LP
6360 "org.freedesktop.systemd1",
6361 "/org/freedesktop/systemd1",
6362 "org.freedesktop.systemd1.Manager",
151b9b96 6363 method);
f459b602
MAP
6364 if (r < 0)
6365 return bus_log_create_error(r);
7e4249b9 6366
e449de87 6367 r = sd_bus_message_append_strv(m, strv_skip(argv, 1));
31e767f7 6368 if (r < 0)
f459b602 6369 return bus_log_create_error(r);
7e4249b9 6370
c49b30a2 6371 r = sd_bus_call(bus, m, 0, &error, NULL);
691395d8
LP
6372 if (r < 0)
6373 return log_error_errno(r, "Failed to set environment: %s", bus_error_message(&error, r));
7e4249b9 6374
f84190d8 6375 return 0;
7e4249b9
LP
6376}
6377
e449de87 6378static int import_environment(int argc, char *argv[], void *userdata) {
4afd3348
LP
6379 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
6380 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
4fbd7192 6381 sd_bus *bus;
ac3efa8a
LP
6382 int r;
6383
4fbd7192
LP
6384 r = acquire_bus(BUS_MANAGER, &bus);
6385 if (r < 0)
6386 return r;
6387
8a4b13c5 6388 polkit_agent_open_maybe();
d2ad7e1b 6389
ac3efa8a
LP
6390 r = sd_bus_message_new_method_call(
6391 bus,
151b9b96 6392 &m,
ac3efa8a
LP
6393 "org.freedesktop.systemd1",
6394 "/org/freedesktop/systemd1",
6395 "org.freedesktop.systemd1.Manager",
151b9b96 6396 "SetEnvironment");
ac3efa8a
LP
6397 if (r < 0)
6398 return bus_log_create_error(r);
6399
e449de87 6400 if (argc < 2)
ac3efa8a
LP
6401 r = sd_bus_message_append_strv(m, environ);
6402 else {
6403 char **a, **b;
6404
6405 r = sd_bus_message_open_container(m, 'a', "s");
6406 if (r < 0)
6407 return bus_log_create_error(r);
6408
e449de87 6409 STRV_FOREACH(a, strv_skip(argv, 1)) {
ac3efa8a 6410
2f50e59f
LP
6411 if (!env_name_is_valid(*a))
6412 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Not a valid environment variable name: %s", *a);
ac3efa8a
LP
6413
6414 STRV_FOREACH(b, environ) {
6415 const char *eq;
6416
6417 eq = startswith(*b, *a);
6418 if (eq && *eq == '=') {
6419
6420 r = sd_bus_message_append(m, "s", *b);
6421 if (r < 0)
6422 return bus_log_create_error(r);
6423
6424 break;
6425 }
6426 }
6427 }
6428
6429 r = sd_bus_message_close_container(m);
6430 }
6431 if (r < 0)
6432 return bus_log_create_error(r);
6433
6434 r = sd_bus_call(bus, m, 0, &error, NULL);
691395d8
LP
6435 if (r < 0)
6436 return log_error_errno(r, "Failed to import environment: %s", bus_error_message(&error, r));
ac3efa8a
LP
6437
6438 return 0;
6439}
6440
cbb13b2a 6441static int enable_sysv_units(const char *verb, char **args) {
729e3769 6442 int r = 0;
ee5762e3 6443
349cc4a5 6444#if HAVE_SYSV_COMPAT
8e766630 6445 _cleanup_(lookup_paths_free) LookupPaths paths = {};
e735decc
LP
6446 unsigned f = 0;
6447
6448 /* Processes all SysV units, and reshuffles the array so that afterwards only the native units remain */
ee5762e3 6449
729e3769
LP
6450 if (arg_scope != UNIT_FILE_SYSTEM)
6451 return 0;
ee5762e3 6452
b41b9d2a
LP
6453 if (getenv_bool("SYSTEMCTL_SKIP_SYSV") > 0)
6454 return 0;
6455
4c315c2c
IS
6456 if (!STR_IN_SET(verb,
6457 "enable",
6458 "disable",
6459 "is-enabled"))
729e3769 6460 return 0;
ee5762e3 6461
4943d143 6462 r = lookup_paths_init(&paths, arg_scope, LOOKUP_PATHS_EXCLUDE_GENERATED, arg_root);
729e3769
LP
6463 if (r < 0)
6464 return r;
ee5762e3 6465
729e3769 6466 r = 0;
a644abed 6467 while (args[f]) {
e735decc
LP
6468
6469 const char *argv[] = {
6470 ROOTLIBEXECDIR "/systemd-sysv-install",
3483460c
LP
6471 NULL, /* --root= */
6472 NULL, /* verb */
6473 NULL, /* service */
e735decc
LP
6474 NULL,
6475 };
6476
8d1ee648 6477 _cleanup_free_ char *p = NULL, *q = NULL, *l = NULL, *v = NULL;
729e3769 6478 bool found_native = false, found_sysv;
e735decc 6479 const char *name;
729e3769 6480 unsigned c = 1;
729e3769 6481 pid_t pid;
e735decc 6482 int j;
ee5762e3 6483
a644abed 6484 name = args[f++];
ee5762e3 6485
729e3769
LP
6486 if (!endswith(name, ".service"))
6487 continue;
ee5762e3 6488
729e3769
LP
6489 if (path_is_absolute(name))
6490 continue;
ee5762e3 6491
e735decc 6492 j = unit_file_exists(arg_scope, &paths, name);
76ec966f 6493 if (j < 0 && !IN_SET(j, -ELOOP, -ERFKILL, -EADDRNOTAVAIL))
e735decc 6494 return log_error_errno(j, "Failed to lookup unit file state: %m");
3c6d8e57 6495 found_native = j != 0;
ee5762e3 6496
e735decc
LP
6497 /* If we have both a native unit and a SysV script, enable/disable them both (below); for is-enabled,
6498 * prefer the native unit */
355ff449 6499 if (found_native && streq(verb, "is-enabled"))
729e3769 6500 continue;
ee5762e3 6501
652ef298 6502 p = path_join(arg_root, SYSTEM_SYSVINIT_PATH, name);
0c6ea3a4 6503 if (!p)
60731f32 6504 return log_oom();
ee5762e3 6505
fbd0b64f 6506 p[strlen(p) - STRLEN(".service")] = 0;
729e3769 6507 found_sysv = access(p, F_OK) >= 0;
4b6756a8 6508 if (!found_sysv)
729e3769 6509 continue;
71fad675 6510
689e4e6a
CR
6511 if (!arg_quiet) {
6512 if (found_native)
6513 log_info("Synchronizing state of %s with SysV service script with %s.", name, argv[0]);
6514 else
6515 log_info("%s is not a native service, redirecting to systemd-sysv-install.", name);
6516 }
ee5762e3 6517
b1dffbb9
LP
6518 if (!isempty(arg_root)) {
6519 q = strappend("--root=", arg_root);
6520 if (!q)
6521 return log_oom();
6522
6523 argv[c++] = q;
6524 }
ee5762e3 6525
8d1ee648
LP
6526 /* Let's copy the verb, since it's still pointing directly into the original argv[] array we
6527 * got passed, but safe_fork() is likely going to rewrite that for the new child */
6528 v = strdup(verb);
6529 if (!v)
6530 return log_oom();
6531
6532 argv[c++] = v;
2b6bf07d 6533 argv[c++] = basename(p);
729e3769 6534 argv[c] = NULL;
ee5762e3 6535
729e3769 6536 l = strv_join((char**)argv, " ");
60731f32
ZJS
6537 if (!l)
6538 return log_oom();
ee5762e3 6539
8ecc68f4
LP
6540 if (!arg_quiet)
6541 log_info("Executing: %s", l);
ee5762e3 6542
0672e2c6 6543 j = safe_fork("(sysv-install)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_RLIMIT_NOFILE_SAFE|FORK_LOG, &pid);
4c253ed1 6544 if (j < 0)
b6e1fff1 6545 return j;
4c253ed1 6546 if (j == 0) {
729e3769 6547 /* Child */
729e3769 6548 execv(argv[0], (char**) argv);
cc7cb0ca 6549 log_error_errno(errno, "Failed to execute %s: %m", argv[0]);
729e3769
LP
6550 _exit(EXIT_FAILURE);
6551 }
ee5762e3 6552
2e87a1fd 6553 j = wait_for_terminate_and_check("sysv-install", pid, WAIT_LOG_ABNORMAL);
d710aaf7 6554 if (j < 0)
2e87a1fd
LP
6555 return j;
6556 if (streq(verb, "is-enabled")) {
b4a34311 6557 if (j == EXIT_SUCCESS) {
2e87a1fd
LP
6558 if (!arg_quiet)
6559 puts("enabled");
6560 r = 1;
6561 } else {
6562 if (!arg_quiet)
6563 puts("disabled");
6564 }
ee5762e3 6565
b4a34311 6566 } else if (j != EXIT_SUCCESS)
2e87a1fd 6567 return -EBADE; /* We don't warn here, under the assumption the script already showed an explanation */
ee5762e3 6568
355ff449
MP
6569 if (found_native)
6570 continue;
6571
a644abed 6572 /* Remove this entry, so that we don't try enabling it as native unit */
aba84331
LP
6573 assert(f > 0);
6574 f--;
6575 assert(args[f] == name);
290cb8e8 6576 strv_remove(args + f, name);
729e3769 6577 }
ee5762e3 6578
729e3769
LP
6579#endif
6580 return r;
6581}
ee5762e3 6582
37370d0c 6583static int mangle_names(char **original_names, char ***mangled_names) {
a33fdebb 6584 char **i, **l, **name;
7410616c 6585 int r;
37370d0c 6586
7410616c 6587 l = i = new(char*, strv_length(original_names) + 1);
a33fdebb 6588 if (!l)
37370d0c
VP
6589 return log_oom();
6590
37370d0c 6591 STRV_FOREACH(name, original_names) {
44386fc1
LN
6592
6593 /* When enabling units qualified path names are OK,
6594 * too, hence allow them explicitly. */
6595
7410616c 6596 if (is_path(*name)) {
44386fc1 6597 *i = strdup(*name);
7410616c
LP
6598 if (!*i) {
6599 strv_free(l);
6600 return log_oom();
6601 }
6602 } else {
37cbc1d5 6603 r = unit_name_mangle(*name, arg_quiet ? 0 : UNIT_NAME_MANGLE_WARN, i);
7410616c 6604 if (r < 0) {
523f8cde 6605 *i = NULL;
7410616c
LP
6606 strv_free(l);
6607 return log_error_errno(r, "Failed to mangle unit name: %m");
6608 }
a33fdebb
LP
6609 }
6610
6611 i++;
37370d0c 6612 }
a33fdebb
LP
6613
6614 *i = NULL;
6615 *mangled_names = l;
37370d0c
VP
6616
6617 return 0;
6618}
6619
decd7982
JR
6620static int normalize_filenames(char **names) {
6621 char **u;
6622 int r;
6623
6624 STRV_FOREACH(u, names)
6625 if (!path_is_absolute(*u)) {
6626 char* normalized_path;
6627
baaa35ad
ZJS
6628 if (!isempty(arg_root))
6629 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
6630 "Non-absolute paths are not allowed when --root is used: %s",
6631 *u);
decd7982 6632
baaa35ad
ZJS
6633 if (!strchr(*u,'/'))
6634 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
6635 "Link argument does contain at least one directory separator: %s",
6636 *u);
decd7982
JR
6637
6638 r = path_make_absolute_cwd(*u, &normalized_path);
6639 if (r < 0)
6640 return r;
6641
6642 free_and_replace(*u, normalized_path);
6643 }
6644
6645 return 0;
6646}
6647
1d3c86c0
MS
6648static int normalize_names(char **names, bool warn_if_path) {
6649 char **u;
6650 bool was_path = false;
6651
6652 STRV_FOREACH(u, names) {
6653 int r;
6654
6655 if (!is_path(*u))
6656 continue;
6657
6658 r = free_and_strdup(u, basename(*u));
6659 if (r < 0)
6660 return log_error_errno(r, "Failed to normalize unit file path: %m");
6661
6662 was_path = true;
6663 }
6664
6665 if (warn_if_path && was_path)
6666 log_warning("Warning: Can't execute disable on the unit file path. Proceeding with the unit name.");
6667
6668 return 0;
6669}
6670
173471b7 6671static int unit_exists(LookupPaths *lp, const char *unit) {
d6568222 6672 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
f37f8a61 6673 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
d6568222
SS
6674 _cleanup_free_ char *path = NULL;
6675 static const struct bus_properties_map property_map[] = {
f37f8a61
YW
6676 { "LoadState", "s", NULL, offsetof(UnitStatusInfo, load_state) },
6677 { "ActiveState", "s", NULL, offsetof(UnitStatusInfo, active_state)},
d6568222
SS
6678 {},
6679 };
6680 UnitStatusInfo info = {};
6681 sd_bus *bus;
6682 int r;
6683
173471b7
ZJS
6684 if (unit_name_is_valid(unit, UNIT_NAME_TEMPLATE))
6685 return unit_find_template_path(unit, lp, NULL, NULL);
6686
d6568222
SS
6687 path = unit_dbus_path_from_name(unit);
6688 if (!path)
6689 return log_oom();
6690
6691 r = acquire_bus(BUS_MANAGER, &bus);
6692 if (r < 0)
6693 return r;
6694
a7e4861c 6695 r = bus_map_all_properties(bus, "org.freedesktop.systemd1", path, property_map, 0, &error, &m, &info);
d6568222
SS
6696 if (r < 0)
6697 return log_error_errno(r, "Failed to get properties: %s", bus_error_message(&error, r));
6698
d6568222
SS
6699 return !streq_ptr(info.load_state, "not-found") || !streq_ptr(info.active_state, "inactive");
6700}
6701
e449de87 6702static int enable_unit(int argc, char *argv[], void *userdata) {
e3e0314b 6703 _cleanup_strv_free_ char **names = NULL;
e449de87 6704 const char *verb = argv[0];
729e3769 6705 UnitFileChange *changes = NULL;
da6053d0 6706 size_t n_changes = 0;
729e3769 6707 int carries_install_info = -1;
35b132e8 6708 bool ignore_carries_install_info = arg_quiet;
729e3769 6709 int r;
ee5762e3 6710
e449de87 6711 if (!argv[1])
ab5919fa
MS
6712 return 0;
6713
e449de87 6714 r = mangle_names(strv_skip(argv, 1), &names);
3a05c0f9 6715 if (r < 0)
cbb13b2a
VP
6716 return r;
6717
e3e0314b 6718 r = enable_sysv_units(verb, names);
cbb13b2a
VP
6719 if (r < 0)
6720 return r;
3a05c0f9 6721
c61b443d 6722 /* If the operation was fully executed by the SysV compat, let's finish early */
823e5fab
FB
6723 if (strv_isempty(names)) {
6724 if (arg_no_reload || install_client_side())
6725 return 0;
6726 return daemon_reload(argc, argv, userdata);
6727 }
67d66210 6728
1d3c86c0
MS
6729 if (streq(verb, "disable")) {
6730 r = normalize_names(names, true);
6731 if (r < 0)
6732 return r;
6733 }
6734
decd7982
JR
6735 if (streq(verb, "link")) {
6736 r = normalize_filenames(names);
6737 if (r < 0)
6738 return r;
6739 }
6740
4fbd7192 6741 if (install_client_side()) {
b3796dd8
JS
6742 UnitFileFlags flags;
6743
6744 flags = args_to_flags();
729e3769 6745 if (streq(verb, "enable")) {
b3796dd8 6746 r = unit_file_enable(arg_scope, flags, arg_root, names, &changes, &n_changes);
729e3769
LP
6747 carries_install_info = r;
6748 } else if (streq(verb, "disable"))
b3796dd8 6749 r = unit_file_disable(arg_scope, flags, arg_root, names, &changes, &n_changes);
729e3769 6750 else if (streq(verb, "reenable")) {
b3796dd8 6751 r = unit_file_reenable(arg_scope, flags, arg_root, names, &changes, &n_changes);
729e3769
LP
6752 carries_install_info = r;
6753 } else if (streq(verb, "link"))
b3796dd8 6754 r = unit_file_link(arg_scope, flags, arg_root, names, &changes, &n_changes);
729e3769 6755 else if (streq(verb, "preset")) {
b3796dd8 6756 r = unit_file_preset(arg_scope, flags, arg_root, names, arg_preset_mode, &changes, &n_changes);
729e3769 6757 } else if (streq(verb, "mask"))
b3796dd8 6758 r = unit_file_mask(arg_scope, flags, arg_root, names, &changes, &n_changes);
729e3769 6759 else if (streq(verb, "unmask"))
b3796dd8 6760 r = unit_file_unmask(arg_scope, flags, arg_root, names, &changes, &n_changes);
344ca755
LP
6761 else if (streq(verb, "revert"))
6762 r = unit_file_revert(arg_scope, arg_root, names, &changes, &n_changes);
729e3769
LP
6763 else
6764 assert_not_reached("Unknown verb");
ee5762e3 6765
af3d8113 6766 unit_file_dump_changes(r, verb, changes, n_changes, arg_quiet);
d073dea0 6767 if (r < 0)
85b78539 6768 goto finish;
df77cdf0 6769 r = 0;
729e3769 6770 } else {
4afd3348
LP
6771 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL, *m = NULL;
6772 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
39207373 6773 bool expect_carries_install_info = false;
344ca755 6774 bool send_runtime = true, send_force = true, send_preset_mode = false;
718db961 6775 const char *method;
4fbd7192 6776 sd_bus *bus;
729e3769 6777
d6568222 6778 if (STR_IN_SET(verb, "mask", "unmask")) {
f8d6cb48 6779 char **name;
8e766630 6780 _cleanup_(lookup_paths_free) LookupPaths lp = {};
173471b7
ZJS
6781
6782 r = lookup_paths_init(&lp, arg_scope, 0, arg_root);
d6568222
SS
6783 if (r < 0)
6784 return r;
f8d6cb48
ZJS
6785
6786 STRV_FOREACH(name, names) {
173471b7 6787 r = unit_exists(&lp, *name);
f8d6cb48
ZJS
6788 if (r < 0)
6789 return r;
6790 if (r == 0)
25c59b5d 6791 log_notice("Unit %s does not exist, proceeding anyway.", *name);
f8d6cb48 6792 }
d6568222
SS
6793 }
6794
4fbd7192
LP
6795 r = acquire_bus(BUS_MANAGER, &bus);
6796 if (r < 0)
6797 return r;
6798
8a4b13c5 6799 polkit_agent_open_maybe();
d2ad7e1b 6800
729e3769
LP
6801 if (streq(verb, "enable")) {
6802 method = "EnableUnitFiles";
6803 expect_carries_install_info = true;
6804 } else if (streq(verb, "disable")) {
6805 method = "DisableUnitFiles";
6806 send_force = false;
6807 } else if (streq(verb, "reenable")) {
6808 method = "ReenableUnitFiles";
6809 expect_carries_install_info = true;
6810 } else if (streq(verb, "link"))
6811 method = "LinkUnitFiles";
6812 else if (streq(verb, "preset")) {
d309c1c3
LP
6813
6814 if (arg_preset_mode != UNIT_FILE_PRESET_FULL) {
6815 method = "PresetUnitFilesWithMode";
6816 send_preset_mode = true;
6817 } else
6818 method = "PresetUnitFiles";
6819
729e3769 6820 expect_carries_install_info = true;
39207373 6821 ignore_carries_install_info = true;
729e3769
LP
6822 } else if (streq(verb, "mask"))
6823 method = "MaskUnitFiles";
6824 else if (streq(verb, "unmask")) {
6825 method = "UnmaskUnitFiles";
6826 send_force = false;
344ca755
LP
6827 } else if (streq(verb, "revert")) {
6828 method = "RevertUnitFiles";
6829 send_runtime = send_force = false;
729e3769
LP
6830 } else
6831 assert_not_reached("Unknown verb");
6832
f459b602
MAP
6833 r = sd_bus_message_new_method_call(
6834 bus,
151b9b96 6835 &m,
729e3769
LP
6836 "org.freedesktop.systemd1",
6837 "/org/freedesktop/systemd1",
6838 "org.freedesktop.systemd1.Manager",
151b9b96 6839 method);
f459b602
MAP
6840 if (r < 0)
6841 return bus_log_create_error(r);
ee5762e3 6842
e3e0314b 6843 r = sd_bus_message_append_strv(m, names);
f459b602
MAP
6844 if (r < 0)
6845 return bus_log_create_error(r);
ee5762e3 6846
d309c1c3
LP
6847 if (send_preset_mode) {
6848 r = sd_bus_message_append(m, "s", unit_file_preset_mode_to_string(arg_preset_mode));
6849 if (r < 0)
6850 return bus_log_create_error(r);
6851 }
6852
344ca755
LP
6853 if (send_runtime) {
6854 r = sd_bus_message_append(m, "b", arg_runtime);
6855 if (r < 0)
6856 return bus_log_create_error(r);
6857 }
ee5762e3 6858
729e3769 6859 if (send_force) {
f459b602
MAP
6860 r = sd_bus_message_append(m, "b", arg_force);
6861 if (r < 0)
6862 return bus_log_create_error(r);
ee5762e3
LP
6863 }
6864
c49b30a2 6865 r = sd_bus_call(bus, m, 0, &error, &reply);
691395d8 6866 if (r < 0)
af3d8113 6867 return log_error_errno(r, "Failed to %s unit: %s", verb, bus_error_message(&error, r));
be394c48 6868
729e3769 6869 if (expect_carries_install_info) {
f459b602
MAP
6870 r = sd_bus_message_read(reply, "b", &carries_install_info);
6871 if (r < 0)
6872 return bus_log_parse_error(r);
ee5762e3
LP
6873 }
6874
57ab2eab 6875 r = bus_deserialize_and_dump_unit_file_changes(reply, arg_quiet, &changes, &n_changes);
f459b602 6876 if (r < 0)
85b78539 6877 goto finish;
b77398f7 6878
93c941e3 6879 /* Try to reload if enabled */
d6cb60c7 6880 if (!arg_no_reload)
e449de87 6881 r = daemon_reload(argc, argv, userdata);
f459b602
MAP
6882 else
6883 r = 0;
b647f10d 6884 }
3d3961f2 6885
39207373 6886 if (carries_install_info == 0 && !ignore_carries_install_info)
46efc978
LP
6887 log_notice("The unit files have no installation config (WantedBy=, RequiredBy=, Also=,\n"
6888 "Alias= settings in the [Install] section, and DefaultInstance= for template\n"
2811184a
ZJS
6889 "units). This means they are not meant to be enabled using systemctl.\n"
6890 " \n" /* trick: the space is needed so that the line does not get stripped from output */
46efc978 6891 "Possible reasons for having this kind of units are:\n"
18c93ee3
LP
6892 "%1$s A unit may be statically enabled by being symlinked from another unit's\n"
6893 " .wants/ or .requires/ directory.\n"
6894 "%1$s A unit's purpose may be to act as a helper for some other unit which has\n"
6895 " a requirement dependency on it.\n"
6896 "%1$s A unit may be started when needed via activation (socket, path, timer,\n"
6897 " D-Bus, udev, scripted systemctl call, ...).\n"
6898 "%1$s In case of template units, the unit is meant to be enabled with some\n"
6899 " instance name specified.",
9a6f746f 6900 special_glyph(SPECIAL_GLYPH_BULLET));
ee5762e3 6901
6bc30691 6902 if (arg_now && STR_IN_SET(argv[0], "enable", "disable", "mask")) {
4fbd7192 6903 sd_bus *bus;
da6053d0 6904 size_t len, i;
57ab2eab 6905
4fbd7192
LP
6906 r = acquire_bus(BUS_MANAGER, &bus);
6907 if (r < 0)
d073dea0 6908 goto finish;
4fbd7192 6909
6bc30691
JS
6910 len = strv_length(names);
6911 {
6912 char *new_args[len + 2];
57ab2eab 6913
6bc30691
JS
6914 new_args[0] = (char*) (streq(argv[0], "enable") ? "start" : "stop");
6915 for (i = 0; i < len; i++)
6916 new_args[i + 1] = basename(names[i]);
6917 new_args[i + 1] = NULL;
6918
6919 r = start_unit(len + 1, new_args, userdata);
6920 }
57ab2eab
JS
6921 }
6922
729e3769 6923finish:
729e3769 6924 unit_file_changes_free(changes, n_changes);
ee5762e3 6925
729e3769 6926 return r;
ee5762e3
LP
6927}
6928
e449de87 6929static int add_dependency(int argc, char *argv[], void *userdata) {
e94937df
LN
6930 _cleanup_strv_free_ char **names = NULL;
6931 _cleanup_free_ char *target = NULL;
e449de87 6932 const char *verb = argv[0];
acc0269c 6933 UnitFileChange *changes = NULL;
da6053d0 6934 size_t n_changes = 0;
e94937df
LN
6935 UnitDependency dep;
6936 int r = 0;
6937
e449de87 6938 if (!argv[1])
e94937df
LN
6939 return 0;
6940
37cbc1d5 6941 r = unit_name_mangle_with_suffix(argv[1], arg_quiet ? 0 : UNIT_NAME_MANGLE_WARN, ".target", &target);
7410616c
LP
6942 if (r < 0)
6943 return log_error_errno(r, "Failed to mangle unit name: %m");
e94937df 6944
e449de87 6945 r = mangle_names(strv_skip(argv, 2), &names);
e94937df
LN
6946 if (r < 0)
6947 return r;
6948
6949 if (streq(verb, "add-wants"))
6950 dep = UNIT_WANTS;
6951 else if (streq(verb, "add-requires"))
6952 dep = UNIT_REQUIRES;
6953 else
6954 assert_not_reached("Unknown verb");
6955
4fbd7192 6956 if (install_client_side()) {
b3796dd8 6957 r = unit_file_add_dependency(arg_scope, args_to_flags(), arg_root, names, target, dep, &changes, &n_changes);
af3d8113 6958 unit_file_dump_changes(r, "add dependency on", changes, n_changes, arg_quiet);
5f056378
CH
6959
6960 if (r > 0)
6961 r = 0;
e94937df 6962 } else {
4afd3348
LP
6963 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL, *m = NULL;
6964 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
4fbd7192 6965 sd_bus *bus;
e94937df 6966
4fbd7192
LP
6967 r = acquire_bus(BUS_MANAGER, &bus);
6968 if (r < 0)
6969 return r;
6970
8a4b13c5 6971 polkit_agent_open_maybe();
d2ad7e1b 6972
e94937df
LN
6973 r = sd_bus_message_new_method_call(
6974 bus,
6975 &m,
6976 "org.freedesktop.systemd1",
6977 "/org/freedesktop/systemd1",
6978 "org.freedesktop.systemd1.Manager",
6979 "AddDependencyUnitFiles");
6980 if (r < 0)
6981 return bus_log_create_error(r);
6982
342641fb 6983 r = sd_bus_message_append_strv(m, names);
e94937df
LN
6984 if (r < 0)
6985 return bus_log_create_error(r);
6986
342641fb 6987 r = sd_bus_message_append(m, "ssbb", target, unit_dependency_to_string(dep), arg_runtime, arg_force);
e94937df
LN
6988 if (r < 0)
6989 return bus_log_create_error(r);
6990
6991 r = sd_bus_call(bus, m, 0, &error, &reply);
691395d8 6992 if (r < 0)
af3d8113 6993 return log_error_errno(r, "Failed to add dependency: %s", bus_error_message(&error, r));
e94937df 6994
acc0269c 6995 r = bus_deserialize_and_dump_unit_file_changes(reply, arg_quiet, &changes, &n_changes);
e94937df 6996 if (r < 0)
acc0269c 6997 goto finish;
e94937df 6998
acc0269c
CH
6999 if (arg_no_reload) {
7000 r = 0;
7001 goto finish;
7002 }
7003
7004 r = daemon_reload(argc, argv, userdata);
e94937df 7005 }
acc0269c
CH
7006
7007finish:
7008 unit_file_changes_free(changes, n_changes);
7009
7010 return r;
e94937df
LN
7011}
7012
e449de87 7013static int preset_all(int argc, char *argv[], void *userdata) {
acc0269c 7014 UnitFileChange *changes = NULL;
da6053d0 7015 size_t n_changes = 0;
d309c1c3
LP
7016 int r;
7017
4fbd7192 7018 if (install_client_side()) {
b3796dd8 7019 r = unit_file_preset_all(arg_scope, args_to_flags(), arg_root, arg_preset_mode, &changes, &n_changes);
af3d8113 7020 unit_file_dump_changes(r, "preset", changes, n_changes, arg_quiet);
5f056378
CH
7021
7022 if (r > 0)
7023 r = 0;
d309c1c3 7024 } else {
4afd3348
LP
7025 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
7026 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
4fbd7192 7027 sd_bus *bus;
d309c1c3 7028
4fbd7192
LP
7029 r = acquire_bus(BUS_MANAGER, &bus);
7030 if (r < 0)
7031 return r;
7032
8a4b13c5 7033 polkit_agent_open_maybe();
d2ad7e1b 7034
6e646d22 7035 r = sd_bus_call_method(
d309c1c3
LP
7036 bus,
7037 "org.freedesktop.systemd1",
7038 "/org/freedesktop/systemd1",
7039 "org.freedesktop.systemd1.Manager",
6e646d22
LP
7040 "PresetAllUnitFiles",
7041 &error,
7042 &reply,
d309c1c3
LP
7043 "sbb",
7044 unit_file_preset_mode_to_string(arg_preset_mode),
7045 arg_runtime,
7046 arg_force);
691395d8 7047 if (r < 0)
af3d8113 7048 return log_error_errno(r, "Failed to preset all units: %s", bus_error_message(&error, r));
d309c1c3 7049
acc0269c 7050 r = bus_deserialize_and_dump_unit_file_changes(reply, arg_quiet, &changes, &n_changes);
d309c1c3 7051 if (r < 0)
acc0269c 7052 goto finish;
d309c1c3 7053
acc0269c
CH
7054 if (arg_no_reload) {
7055 r = 0;
7056 goto finish;
7057 }
7058
7059 r = daemon_reload(argc, argv, userdata);
d309c1c3 7060 }
acc0269c
CH
7061
7062finish:
7063 unit_file_changes_free(changes, n_changes);
7064
7065 return r;
d309c1c3
LP
7066}
7067
3b3557c4
JS
7068static int show_installation_targets_client_side(const char *name) {
7069 UnitFileChange *changes = NULL;
da6053d0 7070 size_t n_changes = 0, i;
3b3557c4
JS
7071 UnitFileFlags flags;
7072 char **p;
7073 int r;
7074
7075 p = STRV_MAKE(name);
7076 flags = UNIT_FILE_DRY_RUN |
7077 (arg_runtime ? UNIT_FILE_RUNTIME : 0);
7078
7079 r = unit_file_disable(UNIT_FILE_SYSTEM, flags, NULL, p, &changes, &n_changes);
7080 if (r < 0)
7081 return log_error_errno(r, "Failed to get file links for %s: %m", name);
7082
7083 for (i = 0; i < n_changes; i++)
7084 if (changes[i].type == UNIT_FILE_UNLINK)
7085 printf(" %s\n", changes[i].path);
7086
7087 return 0;
7088}
7089
7090static int show_installation_targets(sd_bus *bus, const char *name) {
7091 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
7092 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
7093 const char *link;
7094 int r;
7095
7096 r = sd_bus_call_method(
7097 bus,
7098 "org.freedesktop.systemd1",
7099 "/org/freedesktop/systemd1",
7100 "org.freedesktop.systemd1.Manager",
7101 "GetUnitFileLinks",
7102 &error,
7103 &reply,
7104 "sb", name, arg_runtime);
7105 if (r < 0)
7106 return log_error_errno(r, "Failed to get unit file links for %s: %s", name, bus_error_message(&error, r));
7107
7108 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "s");
7109 if (r < 0)
7110 return bus_log_parse_error(r);
7111
7112 while ((r = sd_bus_message_read(reply, "s", &link)) > 0)
7113 printf(" %s\n", link);
7114
7115 if (r < 0)
7116 return bus_log_parse_error(r);
7117
7118 r = sd_bus_message_exit_container(reply);
7119 if (r < 0)
7120 return bus_log_parse_error(r);
7121
7122 return 0;
7123}
7124
e449de87 7125static int unit_is_enabled(int argc, char *argv[], void *userdata) {
e3e0314b 7126 _cleanup_strv_free_ char **names = NULL;
729e3769
LP
7127 bool enabled;
7128 char **name;
f459b602 7129 int r;
ee5762e3 7130
e449de87 7131 r = mangle_names(strv_skip(argv, 1), &names);
cbb13b2a
VP
7132 if (r < 0)
7133 return r;
7134
e449de87 7135 r = enable_sysv_units(argv[0], names);
729e3769
LP
7136 if (r < 0)
7137 return r;
ee5762e3 7138
729e3769 7139 enabled = r > 0;
ee5762e3 7140
4fbd7192 7141 if (install_client_side()) {
e3e0314b 7142 STRV_FOREACH(name, names) {
729e3769 7143 UnitFileState state;
ee5762e3 7144
0ec0deaa
LP
7145 r = unit_file_get_state(arg_scope, arg_root, *name, &state);
7146 if (r < 0)
c5024cd0 7147 return log_error_errno(r, "Failed to get unit file state for %s: %m", *name);
ee5762e3 7148
4c315c2c
IS
7149 if (IN_SET(state,
7150 UNIT_FILE_ENABLED,
7151 UNIT_FILE_ENABLED_RUNTIME,
7152 UNIT_FILE_STATIC,
f4139308
LP
7153 UNIT_FILE_INDIRECT,
7154 UNIT_FILE_GENERATED))
729e3769
LP
7155 enabled = true;
7156
3b3557c4 7157 if (!arg_quiet) {
729e3769 7158 puts(unit_file_state_to_string(state));
3b3557c4
JS
7159 if (arg_full) {
7160 r = show_installation_targets_client_side(*name);
7161 if (r < 0)
7162 return r;
7163 }
7164 }
71fad675 7165 }
ee5762e3 7166
5f056378 7167 r = 0;
729e3769 7168 } else {
4afd3348 7169 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
4fbd7192
LP
7170 sd_bus *bus;
7171
7172 r = acquire_bus(BUS_MANAGER, &bus);
7173 if (r < 0)
7174 return r;
7175
e3e0314b 7176 STRV_FOREACH(name, names) {
4afd3348 7177 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
729e3769 7178 const char *s;
63a723f3 7179
f459b602 7180 r = sd_bus_call_method(
f22f08cd 7181 bus,
729e3769
LP
7182 "org.freedesktop.systemd1",
7183 "/org/freedesktop/systemd1",
7184 "org.freedesktop.systemd1.Manager",
f22f08cd 7185 "GetUnitFileState",
f459b602 7186 &error,
f22f08cd 7187 &reply,
04504f93 7188 "s", *name);
691395d8
LP
7189 if (r < 0)
7190 return log_error_errno(r, "Failed to get unit file state for %s: %s", *name, bus_error_message(&error, r));
ee5762e3 7191
f459b602
MAP
7192 r = sd_bus_message_read(reply, "s", &s);
7193 if (r < 0)
7194 return bus_log_parse_error(r);
ee5762e3 7195
f4139308 7196 if (STR_IN_SET(s, "enabled", "enabled-runtime", "static", "indirect", "generated"))
729e3769
LP
7197 enabled = true;
7198
3b3557c4 7199 if (!arg_quiet) {
729e3769 7200 puts(s);
3b3557c4
JS
7201 if (arg_full) {
7202 r = show_installation_targets(bus, *name);
7203 if (r < 0)
7204 return r;
7205 }
7206 }
560d8f23 7207 }
ee5762e3
LP
7208 }
7209
f4139308 7210 return enabled ? EXIT_SUCCESS : EXIT_FAILURE;
ee5762e3
LP
7211}
7212
adb6cd9b
FB
7213static int match_startup_finished(sd_bus_message *m, void *userdata, sd_bus_error *error) {
7214 char **state = userdata;
7215 int r;
7216
7217 assert(state);
7218
7219 r = sd_bus_get_property_string(
7220 sd_bus_message_get_bus(m),
7221 "org.freedesktop.systemd1",
7222 "/org/freedesktop/systemd1",
7223 "org.freedesktop.systemd1.Manager",
7224 "SystemState",
7225 NULL,
7226 state);
7227
7228 sd_event_exit(sd_bus_get_event(sd_bus_message_get_bus(m)), r);
7229 return 0;
7230}
7231
e449de87 7232static int is_system_running(int argc, char *argv[], void *userdata) {
e686a616 7233 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
adb6cd9b
FB
7234 _cleanup_(sd_bus_slot_unrefp) sd_bus_slot *slot_startup_finished = NULL;
7235 _cleanup_(sd_event_unrefp) sd_event* event = NULL;
99813a19 7236 _cleanup_free_ char *state = NULL;
4fbd7192 7237 sd_bus *bus;
99813a19
LP
7238 int r;
7239
040524b4 7240 if (running_in_chroot() > 0 || (arg_transport == BUS_TRANSPORT_LOCAL && !sd_booted())) {
94f099d8
LP
7241 if (!arg_quiet)
7242 puts("offline");
7243 return EXIT_FAILURE;
7244 }
7245
4fbd7192
LP
7246 r = acquire_bus(BUS_MANAGER, &bus);
7247 if (r < 0)
7248 return r;
7249
adb6cd9b
FB
7250 if (arg_wait) {
7251 r = sd_event_default(&event);
7252 if (r >= 0)
7253 r = sd_bus_attach_event(bus, event, 0);
7254 if (r >= 0)
7255 r = sd_bus_match_signal_async(
7256 bus,
7257 &slot_startup_finished,
7258 "org.freedesktop.systemd1",
7259 "/org/freedesktop/systemd1",
7260 "org.freedesktop.systemd1.Manager",
7261 "StartupFinished",
7262 match_startup_finished, NULL, &state);
7263 if (r < 0) {
7264 log_warning_errno(r, "Failed to request match for StartupFinished: %m");
7265 arg_wait = false;
7266 }
7267 }
7268
99813a19
LP
7269 r = sd_bus_get_property_string(
7270 bus,
7271 "org.freedesktop.systemd1",
7272 "/org/freedesktop/systemd1",
7273 "org.freedesktop.systemd1.Manager",
7274 "SystemState",
e686a616 7275 &error,
99813a19
LP
7276 &state);
7277 if (r < 0) {
adb6cd9b 7278 log_warning_errno(r, "Failed to query system state: %s", bus_error_message(&error, r));
e686a616 7279
99813a19
LP
7280 if (!arg_quiet)
7281 puts("unknown");
bfeec178 7282 return EXIT_FAILURE;
99813a19
LP
7283 }
7284
adb6cd9b
FB
7285 if (arg_wait && STR_IN_SET(state, "initializing", "starting")) {
7286 r = sd_event_loop(event);
7287 if (r < 0) {
7288 log_warning_errno(r, "Failed to get property from event loop: %m");
7289 if (!arg_quiet)
7290 puts("unknown");
7291 return EXIT_FAILURE;
7292 }
7293 }
7294
99813a19
LP
7295 if (!arg_quiet)
7296 puts(state);
7297
7298 return streq(state, "running") ? EXIT_SUCCESS : EXIT_FAILURE;
7299}
7300
7d4fb3b1 7301static int create_edit_temp_file(const char *new_path, const char *original_path, char **ret_tmp_fn) {
45519fd6 7302 _cleanup_free_ char *t = NULL;
ae6c3cc0 7303 int r;
7d4fb3b1
RC
7304
7305 assert(new_path);
7306 assert(original_path);
7307 assert(ret_tmp_fn);
7308
14bcf25c 7309 r = tempfn_random(new_path, NULL, &t);
ae6c3cc0 7310 if (r < 0)
029009d4 7311 return log_error_errno(r, "Failed to determine temporary filename for \"%s\": %m", new_path);
7d4fb3b1
RC
7312
7313 r = mkdir_parents(new_path, 0755);
45519fd6 7314 if (r < 0)
691395d8 7315 return log_error_errno(r, "Failed to create directories for \"%s\": %m", new_path);
7d4fb3b1 7316
8a016c74 7317 r = copy_file(original_path, t, 0, 0644, 0, 0, COPY_REFLINK);
7d4fb3b1 7318 if (r == -ENOENT) {
45519fd6 7319
7d4fb3b1 7320 r = touch(t);
45519fd6
LP
7321 if (r < 0)
7322 return log_error_errno(r, "Failed to create temporary file \"%s\": %m", t);
7323
7324 } else if (r < 0)
39c38ce1 7325 return log_error_errno(r, "Failed to create temporary file for \"%s\": %m", new_path);
7d4fb3b1 7326
ae2a15bc 7327 *ret_tmp_fn = TAKE_PTR(t);
7d4fb3b1
RC
7328
7329 return 0;
7330}
7331
c51932be
LP
7332static int get_file_to_edit(
7333 const LookupPaths *paths,
7334 const char *name,
7335 char **ret_path) {
7336
7337 _cleanup_free_ char *path = NULL, *run = NULL;
7d4fb3b1 7338
45519fd6
LP
7339 assert(name);
7340 assert(ret_path);
7341
657ee2d8 7342 path = path_join(paths->persistent_config, name);
c51932be 7343 if (!path)
7d4fb3b1
RC
7344 return log_oom();
7345
c51932be 7346 if (arg_runtime) {
657ee2d8 7347 run = path_join(paths->runtime_config, name);
c51932be
LP
7348 if (!run)
7349 return log_oom();
7350 }
7351
bc854dc7 7352 if (arg_runtime) {
baaa35ad
ZJS
7353 if (access(path, F_OK) >= 0)
7354 return log_error_errno(SYNTHETIC_ERRNO(EEXIST),
7355 "Refusing to create \"%s\" because it would be overridden by \"%s\" anyway.",
7356 run, path);
691395d8 7357
ae2a15bc
LP
7358 *ret_path = TAKE_PTR(run);
7359 } else
7360 *ret_path = TAKE_PTR(path);
7d4fb3b1
RC
7361
7362 return 0;
7363}
7364
39c38ce1 7365static int unit_file_create_new(
c51932be
LP
7366 const LookupPaths *paths,
7367 const char *unit_name,
39c38ce1 7368 const char *suffix,
c51932be
LP
7369 char **ret_new_path,
7370 char **ret_tmp_path) {
7371
919d2720
LP
7372 _cleanup_free_ char *new_path = NULL, *tmp_path = NULL;
7373 const char *ending;
7d4fb3b1
RC
7374 int r;
7375
7376 assert(unit_name);
7377 assert(ret_new_path);
7378 assert(ret_tmp_path);
7379
39c38ce1 7380 ending = strjoina(unit_name, suffix);
919d2720 7381 r = get_file_to_edit(paths, ending, &new_path);
7d4fb3b1
RC
7382 if (r < 0)
7383 return r;
7384
919d2720
LP
7385 r = create_edit_temp_file(new_path, new_path, &tmp_path);
7386 if (r < 0)
7d4fb3b1 7387 return r;
7d4fb3b1 7388
919d2720
LP
7389 *ret_new_path = TAKE_PTR(new_path);
7390 *ret_tmp_path = TAKE_PTR(tmp_path);
7d4fb3b1
RC
7391
7392 return 0;
7393}
7394
1cfa9a4c 7395static int unit_file_create_copy(
c51932be 7396 const LookupPaths *paths,
1cfa9a4c
LP
7397 const char *unit_name,
7398 const char *fragment_path,
1cfa9a4c
LP
7399 char **ret_new_path,
7400 char **ret_tmp_path) {
7401
92d6b0bf 7402 _cleanup_free_ char *new_path = NULL, *tmp_path = NULL;
7d4fb3b1
RC
7403 int r;
7404
7405 assert(fragment_path);
7406 assert(unit_name);
7407 assert(ret_new_path);
7408 assert(ret_tmp_path);
7409
92d6b0bf 7410 r = get_file_to_edit(paths, unit_name, &new_path);
7d4fb3b1
RC
7411 if (r < 0)
7412 return r;
7413
92d6b0bf 7414 if (!path_equal(fragment_path, new_path) && access(new_path, F_OK) >= 0) {
7d4fb3b1
RC
7415 char response;
7416
92d6b0bf
LP
7417 r = ask_char(&response, "yn", "\"%s\" already exists. Overwrite with \"%s\"? [(y)es, (n)o] ", new_path, fragment_path);
7418 if (r < 0)
7d4fb3b1 7419 return r;
5daacba2
LP
7420 if (response != 'y')
7421 return log_warning_errno(SYNTHETIC_ERRNO(EKEYREJECTED), "%s skipped.", unit_name);
7d4fb3b1
RC
7422 }
7423
92d6b0bf
LP
7424 r = create_edit_temp_file(new_path, fragment_path, &tmp_path);
7425 if (r < 0)
7d4fb3b1 7426 return r;
7d4fb3b1 7427
92d6b0bf
LP
7428 *ret_new_path = TAKE_PTR(new_path);
7429 *ret_tmp_path = TAKE_PTR(tmp_path);
7d4fb3b1
RC
7430
7431 return 0;
7432}
7433
7434static int run_editor(char **paths) {
7d4fb3b1
RC
7435 int r;
7436
7437 assert(paths);
7438
0672e2c6 7439 r = safe_fork("(editor)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_RLIMIT_NOFILE_SAFE|FORK_LOG|FORK_WAIT, NULL);
4c253ed1 7440 if (r < 0)
b6e1fff1 7441 return r;
4c253ed1 7442 if (r == 0) {
b2238e38 7443 char **editor_args = NULL, **tmp_path, **original_path;
70d6e5bd 7444 size_t n_editor_args = 0, i = 1, argc;
b2238e38 7445 const char **args, *editor, *p;
7d4fb3b1
RC
7446
7447 argc = strv_length(paths)/2 + 1;
7d4fb3b1
RC
7448
7449 /* SYSTEMD_EDITOR takes precedence over EDITOR which takes precedence over VISUAL
7450 * If neither SYSTEMD_EDITOR nor EDITOR nor VISUAL are present,
7451 * we try to execute well known editors
7452 */
7453 editor = getenv("SYSTEMD_EDITOR");
7454 if (!editor)
7455 editor = getenv("EDITOR");
7456 if (!editor)
7457 editor = getenv("VISUAL");
7458
7459 if (!isempty(editor)) {
9ef5d8f2
JS
7460 editor_args = strv_split(editor, WHITESPACE);
7461 if (!editor_args) {
7462 (void) log_oom();
7463 _exit(EXIT_FAILURE);
7464 }
7465 n_editor_args = strv_length(editor_args);
7466 argc += n_editor_args - 1;
7467 }
02a126a3 7468
9ef5d8f2
JS
7469 args = newa(const char*, argc + 1);
7470
7471 if (n_editor_args > 0) {
7472 args[0] = editor_args[0];
7473 for (; i < n_editor_args; i++)
7474 args[i] = editor_args[i];
7475 }
7476
df79fdab
LP
7477 STRV_FOREACH_PAIR(original_path, tmp_path, paths)
7478 args[i++] = *tmp_path;
9ef5d8f2
JS
7479 args[i] = NULL;
7480
7481 if (n_editor_args > 0)
7482 execvp(args[0], (char* const*) args);
7d4fb3b1 7483
9391a1c3 7484 FOREACH_STRING(p, "editor", "nano", "vim", "vi") {
1cfa9a4c
LP
7485 args[0] = p;
7486 execvp(p, (char* const*) args);
7d4fb3b1
RC
7487 /* We do not fail if the editor doesn't exist
7488 * because we want to try each one of them before
7489 * failing.
7490 */
7491 if (errno != ENOENT) {
691395d8 7492 log_error_errno(errno, "Failed to execute %s: %m", editor);
7d4fb3b1
RC
7493 _exit(EXIT_FAILURE);
7494 }
7495 }
7496
1cfa9a4c 7497 log_error("Cannot edit unit(s), no editor available. Please set either $SYSTEMD_EDITOR, $EDITOR or $VISUAL.");
7d4fb3b1
RC
7498 _exit(EXIT_FAILURE);
7499 }
7500
45519fd6 7501 return 0;
7d4fb3b1
RC
7502}
7503
7504static int find_paths_to_edit(sd_bus *bus, char **names, char ***paths) {
8e766630 7505 _cleanup_(lookup_paths_free) LookupPaths lp = {};
7d4fb3b1
RC
7506 char **name;
7507 int r;
7508
7509 assert(names);
7510 assert(paths);
7511
4943d143 7512 r = lookup_paths_init(&lp, arg_scope, 0, arg_root);
5b013a2f 7513 if (r < 0)
8df18507 7514 return r;
7d4fb3b1 7515
e9e310f8 7516 STRV_FOREACH(name, names) {
b74df547
ZJS
7517 _cleanup_free_ char *path = NULL, *new_path = NULL, *tmp_path = NULL, *tmp_name = NULL;
7518 const char *unit_name;
7d4fb3b1 7519
02a126a3
LP
7520 r = unit_find_paths(bus, *name, &lp, false, &path, NULL);
7521 if (r == -EKEYREJECTED) {
7522 /* If loading of the unit failed server side complete, then the server won't tell us the unit
7523 * file path. In that case, find the file client side. */
7524 log_debug_errno(r, "Unit '%s' was not loaded correctly, retrying client-side.", *name);
7525 r = unit_find_paths(bus, *name, &lp, true, &path, NULL);
7526 }
7527 if (r == -ERFKILL)
7528 return log_error_errno(r, "Unit '%s' masked, cannot edit.", *name);
e9e310f8
RC
7529 if (r < 0)
7530 return r;
b3734d98
ZJS
7531
7532 if (r == 0) {
7533 assert(!path);
7534
7535 if (!arg_force) {
85163756
LP
7536 log_info("Run 'systemctl edit%s --force --full %s' to create a new unit.",
7537 arg_scope == UNIT_FILE_GLOBAL ? " --global" :
7538 arg_scope == UNIT_FILE_USER ? " --user" : "",
7539 *name);
39c38ce1
DC
7540 return -ENOENT;
7541 }
39c38ce1 7542
b3734d98
ZJS
7543 /* Create a new unit from scratch */
7544 unit_name = *name;
7545 r = unit_file_create_new(&lp, unit_name,
7546 arg_full ? NULL : ".d/override.conf",
7547 &new_path, &tmp_path);
7548 } else {
7549 assert(path);
b74df547 7550
b3734d98
ZJS
7551 unit_name = basename(path);
7552 /* We follow unit aliases, but we need to propagate the instance */
7553 if (unit_name_is_valid(*name, UNIT_NAME_INSTANCE) &&
7554 unit_name_is_valid(unit_name, UNIT_NAME_TEMPLATE)) {
7555 _cleanup_free_ char *instance = NULL;
b74df547 7556
b3734d98
ZJS
7557 r = unit_name_to_instance(*name, &instance);
7558 if (r < 0)
7559 return r;
b74df547 7560
b3734d98
ZJS
7561 r = unit_name_replace_instance(unit_name, instance, &tmp_name);
7562 if (r < 0)
7563 return r;
7564
7565 unit_name = tmp_name;
7566 }
b74df547 7567
39c38ce1 7568 if (arg_full)
b74df547 7569 r = unit_file_create_copy(&lp, unit_name, path, &new_path, &tmp_path);
39c38ce1 7570 else
b74df547 7571 r = unit_file_create_new(&lp, unit_name, ".d/override.conf", &new_path, &tmp_path);
b3734d98 7572 }
e9e310f8 7573 if (r < 0)
ad2a0358 7574 return r;
7d4fb3b1 7575
e9e310f8
RC
7576 r = strv_push_pair(paths, new_path, tmp_path);
7577 if (r < 0)
7578 return log_oom();
02a126a3 7579
78df0edc 7580 new_path = tmp_path = NULL;
7d4fb3b1
RC
7581 }
7582
7583 return 0;
7584}
7585
e449de87 7586static int edit(int argc, char *argv[], void *userdata) {
86f004fb 7587 _cleanup_(lookup_paths_free) LookupPaths lp = {};
7d4fb3b1
RC
7588 _cleanup_strv_free_ char **names = NULL;
7589 _cleanup_strv_free_ char **paths = NULL;
7590 char **original, **tmp;
4fbd7192 7591 sd_bus *bus;
7d4fb3b1
RC
7592 int r;
7593
2f50e59f
LP
7594 if (!on_tty())
7595 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Cannot edit units if not on a tty.");
7d4fb3b1 7596
2f50e59f
LP
7597 if (arg_transport != BUS_TRANSPORT_LOCAL)
7598 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Cannot edit units remotely.");
7d4fb3b1 7599
86f004fb
ZJS
7600 r = lookup_paths_init(&lp, arg_scope, 0, arg_root);
7601 if (r < 0)
7602 return log_error_errno(r, "Failed to determine unit paths: %m");
7603
4fbd7192
LP
7604 r = acquire_bus(BUS_MANAGER, &bus);
7605 if (r < 0)
7606 return r;
7607
e449de87 7608 r = expand_names(bus, strv_skip(argv, 1), NULL, &names);
7d4fb3b1
RC
7609 if (r < 0)
7610 return log_error_errno(r, "Failed to expand names: %m");
7611
9d9dd746 7612 STRV_FOREACH(tmp, names) {
86f004fb 7613 r = unit_is_masked(bus, &lp, *tmp);
9d9dd746
ZJS
7614 if (r < 0)
7615 return r;
2f50e59f
LP
7616 if (r > 0)
7617 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Cannot edit %s: unit is masked.", *tmp);
9d9dd746
ZJS
7618 }
7619
7d4fb3b1
RC
7620 r = find_paths_to_edit(bus, names, &paths);
7621 if (r < 0)
7622 return r;
7623
b5e6a600 7624 if (strv_isempty(paths))
7d4fb3b1 7625 return -ENOENT;
7d4fb3b1
RC
7626
7627 r = run_editor(paths);
7628 if (r < 0)
7629 goto end;
7630
7631 STRV_FOREACH_PAIR(original, tmp, paths) {
9d9dd746
ZJS
7632 /* If the temporary file is empty we ignore it.
7633 * This allows the user to cancel the modification.
7d4fb3b1
RC
7634 */
7635 if (null_or_empty_path(*tmp)) {
45519fd6 7636 log_warning("Editing \"%s\" canceled: temporary file is empty.", *original);
7d4fb3b1
RC
7637 continue;
7638 }
45519fd6 7639
7d4fb3b1
RC
7640 r = rename(*tmp, *original);
7641 if (r < 0) {
029009d4 7642 r = log_error_errno(errno, "Failed to rename \"%s\" to \"%s\": %m", *tmp, *original);
7d4fb3b1
RC
7643 goto end;
7644 }
7645 }
7646
45519fd6
LP
7647 r = 0;
7648
7649 if (!arg_no_reload && !install_client_side())
e449de87 7650 r = daemon_reload(argc, argv, userdata);
7d4fb3b1
RC
7651
7652end:
5f18271e 7653 STRV_FOREACH_PAIR(original, tmp, paths) {
45519fd6 7654 (void) unlink(*tmp);
7d4fb3b1 7655
5f18271e
RC
7656 /* Removing empty dropin dirs */
7657 if (!arg_full) {
043717f9
RC
7658 _cleanup_free_ char *dir;
7659
7660 dir = dirname_malloc(*original);
7661 if (!dir)
7662 return log_oom();
7663
5f18271e
RC
7664 /* no need to check if the dir is empty, rmdir
7665 * does nothing if it is not the case.
7666 */
7667 (void) rmdir(dir);
7668 }
7669 }
7670
7d4fb3b1
RC
7671 return r;
7672}
7673
37ec0fdd
LP
7674static int systemctl_help(void) {
7675 _cleanup_free_ char *link = NULL;
7676 int r;
7677
0221d68a 7678 (void) pager_open(arg_pager_flags);
729e3769 7679
37ec0fdd
LP
7680 r = terminal_urlify_man("systemctl", "1", &link);
7681 if (r < 0)
7682 return log_oom();
7683
8e543004 7684 printf("%1$s [OPTIONS...] {COMMAND} ...\n\n"
729e3769 7685 "Query or send control commands to the systemd manager.\n\n"
8a0867d6
LP
7686 " -h --help Show this help\n"
7687 " --version Show package version\n"
f459b602
MAP
7688 " --system Connect to system manager\n"
7689 " --user Connect to user service manager\n"
7690 " -H --host=[USER@]HOST\n"
7691 " Operate on remote host\n"
7692 " -M --machine=CONTAINER\n"
7693 " Operate on local container\n"
3fb90db2
ZJS
7694 " -t --type=TYPE List units of a particular type\n"
7695 " --state=STATE List units with particular LOAD or SUB or ACTIVE state\n"
1d52a931 7696 " --failed Shorcut for --state=failed\n"
8a0867d6 7697 " -p --property=NAME Show only properties by this name\n"
2cdbbc9a
LP
7698 " -a --all Show all properties/all units currently in memory,\n"
7699 " including dead/empty ones. To list all units installed on\n"
7700 " the system, use the 'list-unit-files' command instead.\n"
98a6e132 7701 " -l --full Don't ellipsize unit names on output\n"
1238ee09 7702 " -r --recursive Show unit list of host and local containers\n"
4dc5b821
LP
7703 " --reverse Show reverse dependencies with 'list-dependencies'\n"
7704 " --job-mode=MODE Specify how to deal with already queued jobs, when\n"
7705 " queueing a new job\n"
85d9b598
LP
7706 " -T --show-transaction\n"
7707 " When enqueuing a unit job, show full transaction\n"
a521ae4a 7708 " --show-types When showing sockets, explicitly show their type\n"
4f9a9105 7709 " --value When showing properties, only print the value\n"
b37844d3
LP
7710 " -i --ignore-inhibitors\n"
7711 " When shutting down or sleeping, ignore inhibitors\n"
a8f11321
LP
7712 " --kill-who=WHO Who to send signal to\n"
7713 " -s --signal=SIGNAL Which signal to send\n"
57ab2eab 7714 " --now Start or stop unit in addition to enabling or disabling it\n"
1ae17672 7715 " --dry-run Only print what would be done\n"
8a0867d6 7716 " -q --quiet Suppress output\n"
93a08841 7717 " --wait For (re)start, wait until service stopped again\n"
adb6cd9b 7718 " For is-system-running, wait until startup is completed\n"
8a0867d6 7719 " --no-block Do not wait until operation finished\n"
8a0867d6 7720 " --no-wall Don't send wall message before halt/power-off/reboot\n"
3fb90db2 7721 " --no-reload Don't reload daemon after en-/dis-abling unit files\n"
ebed32bf 7722 " --no-legend Do not print a legend (column headers and hints)\n"
69fc152f 7723 " --no-pager Do not pipe output into a pager\n"
501fc174
LP
7724 " --no-ask-password\n"
7725 " Do not ask for system passwords\n"
4e93d369
LR
7726 " --global Enable/disable/mask unit files globally\n"
7727 " --runtime Enable/disable/mask unit files temporarily until next\n"
7728 " reboot\n"
8a0867d6
LP
7729 " -f --force When enabling unit files, override existing symlinks\n"
7730 " When shutting down, execute action immediately\n"
3fb90db2 7731 " --preset-mode= Apply only enable, only disable, or all presets\n"
4e93d369
LR
7732 " --root=PATH Enable/disable/mask unit files in the specified root\n"
7733 " directory\n"
76fdc966 7734 " -n --lines=INTEGER Number of journal entries to show\n"
584c6e70 7735 " -o --output=STRING Change journal output mode (short, short-precise,\n"
7e563bfc
IW
7736 " short-iso, short-iso-precise, short-full,\n"
7737 " short-monotonic, short-unix,\n"
584c6e70 7738 " verbose, export, json, json-pretty, json-sse, cat)\n"
5bdf2243 7739 " --firmware-setup Tell the firmware to show the setup menu on next boot\n"
97af80c5
LP
7740 " --boot-loader-menu=TIME\n"
7741 " Boot into boot loader menu on next boot\n"
7742 " --boot-loader-entry=NAME\n"
7743 " Boot into a specific boot loader entry on next boot\n"
815ebc54 7744 " --plain Print unit dependencies as a list instead of a tree\n\n"
8e543004 7745 "%3$sUnit Commands:%4$s\n"
fbf3283b
ZJS
7746 " list-units [PATTERN...] List units currently in memory\n"
7747 " list-sockets [PATTERN...] List socket units currently in memory,\n"
7748 " ordered by address\n"
7749 " list-timers [PATTERN...] List timer units currently in memory,\n"
7750 " ordered by next elapse\n"
7751 " start UNIT... Start (activate) one or more units\n"
7752 " stop UNIT... Stop (deactivate) one or more units\n"
7753 " reload UNIT... Reload one or more units\n"
7754 " restart UNIT... Start or restart one or more units\n"
7755 " try-restart UNIT... Restart one or more units if active\n"
7756 " reload-or-restart UNIT... Reload one or more units if possible,\n"
7757 " otherwise start or restart\n"
7758 " try-reload-or-restart UNIT... If active, reload one or more units,\n"
7759 " if supported, otherwise restart\n"
7760 " isolate UNIT Start one unit and stop all others\n"
7761 " kill UNIT... Send signal to processes of a unit\n"
7762 " is-active PATTERN... Check whether units are active\n"
7763 " is-failed PATTERN... Check whether units are failed\n"
7764 " status [PATTERN...|PID...] Show runtime status of one or more units\n"
7765 " show [PATTERN...|JOB...] Show properties of one or more\n"
7766 " units/jobs or the manager\n"
7767 " cat PATTERN... Show files and drop-ins of specified units\n"
7768 " set-property UNIT PROPERTY=VALUE... Sets one or more properties of a unit\n"
7769 " help PATTERN...|PID... Show manual for one or more units\n"
7770 " reset-failed [PATTERN...] Reset failed state for all, one, or more\n"
7771 " units\n"
7772 " list-dependencies [UNIT] Recursively show units which are required\n"
7773 " or wanted by this unit or by which this\n"
7774 " unit is required or wanted\n\n"
8e543004 7775 "%3$sUnit File Commands:%4$s\n"
fbf3283b
ZJS
7776 " list-unit-files [PATTERN...] List installed unit files\n"
7777 " enable [UNIT...|PATH...] Enable one or more unit files\n"
7778 " disable UNIT... Disable one or more unit files\n"
7779 " reenable UNIT... Reenable one or more unit files\n"
7780 " preset UNIT... Enable/disable one or more unit files\n"
7781 " based on preset configuration\n"
7782 " preset-all Enable/disable all unit files based on\n"
7783 " preset configuration\n"
7784 " is-enabled UNIT... Check whether unit files are enabled\n"
7785 " mask UNIT... Mask one or more units\n"
7786 " unmask UNIT... Unmask one or more units\n"
7787 " link PATH... Link one or more units files into\n"
7788 " the search path\n"
7789 " revert UNIT... Revert one or more unit files to vendor\n"
7790 " version\n"
7791 " add-wants TARGET UNIT... Add 'Wants' dependency for the target\n"
7792 " on specified one or more units\n"
7793 " add-requires TARGET UNIT... Add 'Requires' dependency for the target\n"
7794 " on specified one or more units\n"
7795 " edit UNIT... Edit one or more unit files\n"
7796 " get-default Get the name of the default target\n"
7797 " set-default TARGET Set the default target\n\n"
8e543004 7798 "%3$sMachine Commands:%4$s\n"
fbf3283b 7799 " list-machines [PATTERN...] List local containers and host\n\n"
8e543004 7800 "%3$sJob Commands:%4$s\n"
fbf3283b
ZJS
7801 " list-jobs [PATTERN...] List jobs\n"
7802 " cancel [JOB...] Cancel all, one, or more jobs\n\n"
8e543004 7803 "%3$sEnvironment Commands:%4$s\n"
fbf3283b 7804 " show-environment Dump environment\n"
135775c1
ZJS
7805 " set-environment VARIABLE=VALUE... Set one or more environment variables\n"
7806 " unset-environment VARIABLE... Unset one or more environment variables\n"
7807 " import-environment [VARIABLE...] Import all or some environment variables\n\n"
8e543004 7808 "%3$sManager Lifecycle Commands:%4$s\n"
fbf3283b
ZJS
7809 " daemon-reload Reload systemd manager configuration\n"
7810 " daemon-reexec Reexecute systemd manager\n\n"
8e543004 7811 "%3$sSystem Commands:%4$s\n"
fbf3283b
ZJS
7812 " is-system-running Check whether system is fully running\n"
7813 " default Enter system default mode\n"
7814 " rescue Enter system rescue mode\n"
7815 " emergency Enter system emergency mode\n"
7816 " halt Shut down and halt the system\n"
7817 " poweroff Shut down and power-off the system\n"
7818 " reboot [ARG] Shut down and reboot the system\n"
7819 " kexec Shut down and reboot the system with kexec\n"
7820 " exit [EXIT_CODE] Request user instance or container exit\n"
7821 " switch-root ROOT [INIT] Change to a different root file system\n"
7822 " suspend Suspend the system\n"
7823 " hibernate Hibernate the system\n"
c58493c0 7824 " hybrid-sleep Hibernate and suspend the system\n"
e68c79db 7825 " suspend-then-hibernate Suspend the system, wake after a period of\n"
37ec0fdd 7826 " time and put it into hibernate\n"
8e543004 7827 "\nSee the %2$s for details.\n"
37ec0fdd
LP
7828 , program_invocation_short_name
7829 , link
8e543004 7830 , ansi_underline(), ansi_normal()
37ec0fdd
LP
7831 );
7832
7833 return 0;
7e4249b9
LP
7834}
7835
37ec0fdd
LP
7836static int halt_help(void) {
7837 _cleanup_free_ char *link = NULL;
7838 int r;
7839
7840 r = terminal_urlify_man("halt", "8", &link);
7841 if (r < 0)
7842 return log_oom();
7843
37185ec8 7844 printf("%s [OPTIONS...]%s\n\n"
e4b61340
LP
7845 "%s the system.\n\n"
7846 " --help Show this help\n"
7847 " --halt Halt the machine\n"
7848 " -p --poweroff Switch off the machine\n"
7849 " --reboot Reboot the machine\n"
2e33c433
LP
7850 " -f --force Force immediate halt/power-off/reboot\n"
7851 " -w --wtmp-only Don't halt/power-off/reboot, just write wtmp record\n"
e4b61340 7852 " -d --no-wtmp Don't write wtmp record\n"
37ec0fdd
LP
7853 " --no-wall Don't send wall message before halt/power-off/reboot\n"
7854 "\nSee the %s for details.\n"
7855 , program_invocation_short_name
7856 , arg_action == ACTION_REBOOT ? " [ARG]" : "",
7857 arg_action == ACTION_REBOOT ? "Reboot" :
7858 arg_action == ACTION_POWEROFF ? "Power off" :
7859 "Halt"
7860 , link
7861 );
7862
7863 return 0;
e4b61340
LP
7864}
7865
37ec0fdd
LP
7866static int shutdown_help(void) {
7867 _cleanup_free_ char *link = NULL;
7868 int r;
7869
7870 r = terminal_urlify_man("shutdown", "8", &link);
7871 if (r < 0)
7872 return log_oom();
7873
08e4b1c5 7874 printf("%s [OPTIONS...] [TIME] [WALL...]\n\n"
e4b61340
LP
7875 "Shut down the system.\n\n"
7876 " --help Show this help\n"
7877 " -H --halt Halt the machine\n"
7878 " -P --poweroff Power-off the machine\n"
7879 " -r --reboot Reboot the machine\n"
386da858 7880 " -h Equivalent to --poweroff, overridden by --halt\n"
2e33c433 7881 " -k Don't halt/power-off/reboot, just send warnings\n"
f6144808 7882 " --no-wall Don't send wall message before halt/power-off/reboot\n"
37ec0fdd
LP
7883 " -c Cancel a pending shutdown\n"
7884 "\nSee the %s for details.\n"
7885 , program_invocation_short_name
7886 , link
7887 );
7888
7889 return 0;
e4b61340
LP
7890}
7891
37ec0fdd
LP
7892static int telinit_help(void) {
7893 _cleanup_free_ char *link = NULL;
7894 int r;
7895
7896 r = terminal_urlify_man("telinit", "8", &link);
7897 if (r < 0)
7898 return log_oom();
7899
2e33c433 7900 printf("%s [OPTIONS...] {COMMAND}\n\n"
514f4ef5
LP
7901 "Send control commands to the init daemon.\n\n"
7902 " --help Show this help\n"
2e33c433 7903 " --no-wall Don't send wall message before halt/power-off/reboot\n\n"
e4b61340
LP
7904 "Commands:\n"
7905 " 0 Power-off the machine\n"
7906 " 6 Reboot the machine\n"
514f4ef5
LP
7907 " 2, 3, 4, 5 Start runlevelX.target unit\n"
7908 " 1, s, S Enter rescue mode\n"
7909 " q, Q Reload init daemon configuration\n"
37ec0fdd
LP
7910 " u, U Reexecute init daemon\n"
7911 "\nSee the %s for details.\n"
7912 , program_invocation_short_name
7913 , link
7914 );
7915
7916 return 0;
e4b61340
LP
7917}
7918
37ec0fdd
LP
7919static int runlevel_help(void) {
7920 _cleanup_free_ char *link = NULL;
7921 int r;
7922
7923 r = terminal_urlify_man("runlevel", "8", &link);
7924 if (r < 0)
7925 return log_oom();
7926
2e33c433 7927 printf("%s [OPTIONS...]\n\n"
e4b61340 7928 "Prints the previous and current runlevel of the init system.\n\n"
37ec0fdd
LP
7929 " --help Show this help\n"
7930 "\nSee the %s for details.\n"
7931 , program_invocation_short_name
7932 , link
7933 );
7934
7935 return 0;
e4b61340
LP
7936}
7937
b93312f5 7938static void help_types(void) {
b93312f5
ZJS
7939 if (!arg_no_legend)
7940 puts("Available unit types:");
5c828e66
LP
7941
7942 DUMP_STRING_TABLE(unit_type, UnitType, _UNIT_TYPE_MAX);
e16972e6
ZJS
7943}
7944
7945static void help_states(void) {
e16972e6
ZJS
7946 if (!arg_no_legend)
7947 puts("Available unit load states:");
5c828e66 7948 DUMP_STRING_TABLE(unit_load_state, UnitLoadState, _UNIT_LOAD_STATE_MAX);
e16972e6
ZJS
7949
7950 if (!arg_no_legend)
7951 puts("\nAvailable unit active states:");
5c828e66 7952 DUMP_STRING_TABLE(unit_active_state, UnitActiveState, _UNIT_ACTIVE_STATE_MAX);
7e55de3b
ZJS
7953
7954 if (!arg_no_legend)
7955 puts("\nAvailable automount unit substates:");
5c828e66 7956 DUMP_STRING_TABLE(automount_state, AutomountState, _AUTOMOUNT_STATE_MAX);
7e55de3b 7957
7e55de3b
ZJS
7958 if (!arg_no_legend)
7959 puts("\nAvailable device unit substates:");
5c828e66 7960 DUMP_STRING_TABLE(device_state, DeviceState, _DEVICE_STATE_MAX);
7e55de3b
ZJS
7961
7962 if (!arg_no_legend)
7963 puts("\nAvailable mount unit substates:");
5c828e66 7964 DUMP_STRING_TABLE(mount_state, MountState, _MOUNT_STATE_MAX);
7e55de3b
ZJS
7965
7966 if (!arg_no_legend)
7967 puts("\nAvailable path unit substates:");
5c828e66 7968 DUMP_STRING_TABLE(path_state, PathState, _PATH_STATE_MAX);
7e55de3b
ZJS
7969
7970 if (!arg_no_legend)
7971 puts("\nAvailable scope unit substates:");
5c828e66 7972 DUMP_STRING_TABLE(scope_state, ScopeState, _SCOPE_STATE_MAX);
7e55de3b
ZJS
7973
7974 if (!arg_no_legend)
7975 puts("\nAvailable service unit substates:");
5c828e66 7976 DUMP_STRING_TABLE(service_state, ServiceState, _SERVICE_STATE_MAX);
7e55de3b
ZJS
7977
7978 if (!arg_no_legend)
7979 puts("\nAvailable slice unit substates:");
5c828e66 7980 DUMP_STRING_TABLE(slice_state, SliceState, _SLICE_STATE_MAX);
7e55de3b 7981
7e55de3b
ZJS
7982 if (!arg_no_legend)
7983 puts("\nAvailable socket unit substates:");
5c828e66 7984 DUMP_STRING_TABLE(socket_state, SocketState, _SOCKET_STATE_MAX);
7e55de3b
ZJS
7985
7986 if (!arg_no_legend)
7987 puts("\nAvailable swap unit substates:");
5c828e66 7988 DUMP_STRING_TABLE(swap_state, SwapState, _SWAP_STATE_MAX);
7e55de3b
ZJS
7989
7990 if (!arg_no_legend)
7991 puts("\nAvailable target unit substates:");
5c828e66 7992 DUMP_STRING_TABLE(target_state, TargetState, _TARGET_STATE_MAX);
7e55de3b
ZJS
7993
7994 if (!arg_no_legend)
7995 puts("\nAvailable timer unit substates:");
5c828e66 7996 DUMP_STRING_TABLE(timer_state, TimerState, _TIMER_STATE_MAX);
45c0c61d
ZJS
7997}
7998
97af80c5
LP
7999static int help_boot_loader_entry(void) {
8000 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
8001 _cleanup_free_ char **l = NULL;
8002 sd_bus *bus;
8003 char **i;
8004 int r;
8005
8006 r = acquire_bus(BUS_FULL, &bus);
8007 if (r < 0)
8008 return r;
8009
8010 r = sd_bus_get_property_strv(
8011 bus,
8012 "org.freedesktop.login1",
8013 "/org/freedesktop/login1",
8014 "org.freedesktop.login1.Manager",
8015 "BootLoaderEntries",
8016 &error,
8017 &l);
8018 if (r < 0)
8019 return log_error_errno(r, "Failed to enumerate boot loader entries: %s", bus_error_message(&error, r));
8020
2f50e59f
LP
8021 if (strv_isempty(l))
8022 return log_error_errno(SYNTHETIC_ERRNO(ENODATA), "No boot loader entries discovered.");
97af80c5
LP
8023
8024 STRV_FOREACH(i, l)
8025 puts(*i);
8026
8027 return 0;
8028}
8029
e4b61340 8030static int systemctl_parse_argv(int argc, char *argv[]) {
7e4249b9 8031 enum {
90d473a1 8032 ARG_FAIL = 0x100,
afba4199
ZJS
8033 ARG_REVERSE,
8034 ARG_AFTER,
8035 ARG_BEFORE,
1ae17672 8036 ARG_DRY_RUN,
991f2a39 8037 ARG_SHOW_TYPES,
23ade460 8038 ARG_IRREVERSIBLE,
e67c3609 8039 ARG_IGNORE_DEPENDENCIES,
4f9a9105 8040 ARG_VALUE,
35df8f27 8041 ARG_VERSION,
af2d49f7 8042 ARG_USER,
7e4249b9 8043 ARG_SYSTEM,
ee5762e3 8044 ARG_GLOBAL,
6e905d93 8045 ARG_NO_BLOCK,
ebed32bf 8046 ARG_NO_LEGEND,
611efaac 8047 ARG_NO_PAGER,
4445a875 8048 ARG_NO_WALL,
be394c48 8049 ARG_ROOT,
ee5762e3 8050 ARG_NO_RELOAD,
501fc174 8051 ARG_KILL_WHO,
30732560 8052 ARG_NO_ASK_PASSWORD,
729e3769 8053 ARG_FAILED,
df50185b 8054 ARG_RUNTIME,
9b9b3d36 8055 ARG_PLAIN,
4dc5b821 8056 ARG_STATE,
d309c1c3
LP
8057 ARG_JOB_MODE,
8058 ARG_PRESET_MODE,
5bdf2243 8059 ARG_FIRMWARE_SETUP,
97af80c5
LP
8060 ARG_BOOT_LOADER_MENU,
8061 ARG_BOOT_LOADER_ENTRY,
57ab2eab 8062 ARG_NOW,
9ef15026 8063 ARG_MESSAGE,
93a08841 8064 ARG_WAIT,
7e4249b9
LP
8065 };
8066
8067 static const struct option options[] = {
9ea9d4cf
LP
8068 { "help", no_argument, NULL, 'h' },
8069 { "version", no_argument, NULL, ARG_VERSION },
8070 { "type", required_argument, NULL, 't' },
8071 { "property", required_argument, NULL, 'p' },
8072 { "all", no_argument, NULL, 'a' },
8073 { "reverse", no_argument, NULL, ARG_REVERSE },
8074 { "after", no_argument, NULL, ARG_AFTER },
8075 { "before", no_argument, NULL, ARG_BEFORE },
8076 { "show-types", no_argument, NULL, ARG_SHOW_TYPES },
8077 { "failed", no_argument, NULL, ARG_FAILED }, /* compatibility only */
8078 { "full", no_argument, NULL, 'l' },
4dc5b821
LP
8079 { "job-mode", required_argument, NULL, ARG_JOB_MODE },
8080 { "fail", no_argument, NULL, ARG_FAIL }, /* compatibility only */
8081 { "irreversible", no_argument, NULL, ARG_IRREVERSIBLE }, /* compatibility only */
8082 { "ignore-dependencies", no_argument, NULL, ARG_IGNORE_DEPENDENCIES }, /* compatibility only */
9ea9d4cf 8083 { "ignore-inhibitors", no_argument, NULL, 'i' },
4f9a9105 8084 { "value", no_argument, NULL, ARG_VALUE },
9ea9d4cf
LP
8085 { "user", no_argument, NULL, ARG_USER },
8086 { "system", no_argument, NULL, ARG_SYSTEM },
8087 { "global", no_argument, NULL, ARG_GLOBAL },
93a08841 8088 { "wait", no_argument, NULL, ARG_WAIT },
9ea9d4cf
LP
8089 { "no-block", no_argument, NULL, ARG_NO_BLOCK },
8090 { "no-legend", no_argument, NULL, ARG_NO_LEGEND },
8091 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
8092 { "no-wall", no_argument, NULL, ARG_NO_WALL },
1ae17672 8093 { "dry-run", no_argument, NULL, ARG_DRY_RUN },
9ea9d4cf
LP
8094 { "quiet", no_argument, NULL, 'q' },
8095 { "root", required_argument, NULL, ARG_ROOT },
68da321f 8096 { "force", no_argument, NULL, 'f' },
9ea9d4cf
LP
8097 { "no-reload", no_argument, NULL, ARG_NO_RELOAD },
8098 { "kill-who", required_argument, NULL, ARG_KILL_WHO },
8099 { "signal", required_argument, NULL, 's' },
8100 { "no-ask-password", no_argument, NULL, ARG_NO_ASK_PASSWORD },
8101 { "host", required_argument, NULL, 'H' },
f459b602 8102 { "machine", required_argument, NULL, 'M' },
9ea9d4cf
LP
8103 { "runtime", no_argument, NULL, ARG_RUNTIME },
8104 { "lines", required_argument, NULL, 'n' },
8105 { "output", required_argument, NULL, 'o' },
8106 { "plain", no_argument, NULL, ARG_PLAIN },
8107 { "state", required_argument, NULL, ARG_STATE },
1238ee09 8108 { "recursive", no_argument, NULL, 'r' },
d309c1c3 8109 { "preset-mode", required_argument, NULL, ARG_PRESET_MODE },
5bdf2243 8110 { "firmware-setup", no_argument, NULL, ARG_FIRMWARE_SETUP },
97af80c5
LP
8111 { "boot-loader-menu", required_argument, NULL, ARG_BOOT_LOADER_MENU },
8112 { "boot-loader-entry", required_argument, NULL, ARG_BOOT_LOADER_ENTRY },
57ab2eab 8113 { "now", no_argument, NULL, ARG_NOW },
9ef15026 8114 { "message", required_argument, NULL, ARG_MESSAGE },
85d9b598 8115 { "show-transaction", no_argument, NULL, 'T' },
eb9da376 8116 {}
7e4249b9
LP
8117 };
8118
0f03c2a4 8119 int c, r;
7e4249b9 8120
e4b61340 8121 assert(argc >= 0);
7e4249b9
LP
8122 assert(argv);
8123
16f017fa
IS
8124 /* we default to allowing interactive authorization only in systemctl (not in the legacy commands) */
8125 arg_ask_password = true;
8126
85d9b598 8127 while ((c = getopt_long(argc, argv, "ht:p:alqfs:H:M:n:o:iTr.::", options, NULL)) >= 0)
7e4249b9
LP
8128
8129 switch (c) {
8130
8131 case 'h':
37ec0fdd 8132 return systemctl_help();
35df8f27
LP
8133
8134 case ARG_VERSION:
3f6fd1ba 8135 return version();
7e4249b9 8136
20b3f379 8137 case 't': {
fb1ac50e
LP
8138 const char *p;
8139
baaa35ad
ZJS
8140 if (isempty(optarg))
8141 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8142 "--type= requires arguments.");
45c0c61d 8143
c58bd76a 8144 for (p = optarg;;) {
5ab22f33 8145 _cleanup_free_ char *type = NULL;
20b3f379 8146
5ab22f33
SS
8147 r = extract_first_word(&p, &type, ",", 0);
8148 if (r < 0)
8149 return log_error_errno(r, "Failed to parse type: %s", optarg);
5ab22f33
SS
8150 if (r == 0)
8151 break;
20b3f379
ZJS
8152
8153 if (streq(type, "help")) {
8154 help_types();
8155 return 0;
8156 }
8157
8158 if (unit_type_from_string(type) >= 0) {
96e895ef 8159 if (strv_consume(&arg_types, TAKE_PTR(type)) < 0)
20b3f379 8160 return log_oom();
20b3f379
ZJS
8161 continue;
8162 }
8163
9b9b3d36
MW
8164 /* It's much nicer to use --state= for
8165 * load states, but let's support this
8166 * in --types= too for compatibility
8167 * with old versions */
7e9d36e0 8168 if (unit_load_state_from_string(type) >= 0) {
96e895ef 8169 if (strv_consume(&arg_states, TAKE_PTR(type)) < 0)
20b3f379 8170 return log_oom();
20b3f379
ZJS
8171 continue;
8172 }
8173
ab06eef8 8174 log_error("Unknown unit type or load state '%s'.", type);
baaa35ad
ZJS
8175 return log_info_errno(SYNTHETIC_ERRNO(EINVAL),
8176 "Use -t help to see a list of allowed values.");
c147dc42 8177 }
20b3f379
ZJS
8178
8179 break;
8180 }
8181
aee7082f
LP
8182 case 'p':
8183 /* Make sure that if the empty property list was specified, we won't show any
8184 properties. */
20b3f379 8185 if (isempty(optarg) && !arg_properties) {
cbc9fbd1 8186 arg_properties = new0(char*, 1);
20b3f379
ZJS
8187 if (!arg_properties)
8188 return log_oom();
fb1ac50e
LP
8189 } else {
8190 const char *p;
8191
c58bd76a 8192 for (p = optarg;;) {
5ab22f33 8193 _cleanup_free_ char *prop = NULL;
033a842c 8194
5ab22f33
SS
8195 r = extract_first_word(&p, &prop, ",", 0);
8196 if (r < 0)
8197 return log_error_errno(r, "Failed to parse property: %s", optarg);
5ab22f33
SS
8198 if (r == 0)
8199 break;
ea4a240d 8200
9dccc6d3 8201 if (strv_consume(&arg_properties, TAKE_PTR(prop)) < 0)
20b3f379 8202 return log_oom();
20b3f379 8203 }
fb1ac50e 8204 }
48220598
LP
8205
8206 /* If the user asked for a particular
8207 * property, show it to him, even if it is
8208 * empty. */
8209 arg_all = true;
033a842c 8210
48220598
LP
8211 break;
8212
7e4249b9
LP
8213 case 'a':
8214 arg_all = true;
8215 break;
8216
afba4199
ZJS
8217 case ARG_REVERSE:
8218 arg_dependency = DEPENDENCY_REVERSE;
8219 break;
8220
8221 case ARG_AFTER:
8222 arg_dependency = DEPENDENCY_AFTER;
82948f6c 8223 arg_jobs_after = true;
afba4199
ZJS
8224 break;
8225
8226 case ARG_BEFORE:
8227 arg_dependency = DEPENDENCY_BEFORE;
82948f6c 8228 arg_jobs_before = true;
afba4199
ZJS
8229 break;
8230
991f2a39
ZJS
8231 case ARG_SHOW_TYPES:
8232 arg_show_types = true;
8233 break;
8234
4f9a9105
ZJS
8235 case ARG_VALUE:
8236 arg_value = true;
8237 break;
8238
4dc5b821
LP
8239 case ARG_JOB_MODE:
8240 arg_job_mode = optarg;
8241 break;
8242
90d473a1 8243 case ARG_FAIL:
e67c3609
LP
8244 arg_job_mode = "fail";
8245 break;
8246
23ade460
MS
8247 case ARG_IRREVERSIBLE:
8248 arg_job_mode = "replace-irreversibly";
8249 break;
8250
e67c3609
LP
8251 case ARG_IGNORE_DEPENDENCIES:
8252 arg_job_mode = "ignore-dependencies";
7e4249b9
LP
8253 break;
8254
af2d49f7 8255 case ARG_USER:
729e3769 8256 arg_scope = UNIT_FILE_USER;
7e4249b9
LP
8257 break;
8258
8259 case ARG_SYSTEM:
729e3769
LP
8260 arg_scope = UNIT_FILE_SYSTEM;
8261 break;
8262
8263 case ARG_GLOBAL:
8264 arg_scope = UNIT_FILE_GLOBAL;
7e4249b9
LP
8265 break;
8266
93a08841
MP
8267 case ARG_WAIT:
8268 arg_wait = true;
8269 break;
8270
6e905d93
LP
8271 case ARG_NO_BLOCK:
8272 arg_no_block = true;
7e4249b9
LP
8273 break;
8274
ebed32bf
MS
8275 case ARG_NO_LEGEND:
8276 arg_no_legend = true;
8277 break;
8278
611efaac 8279 case ARG_NO_PAGER:
0221d68a 8280 arg_pager_flags |= PAGER_DISABLE;
611efaac 8281 break;
0736af98 8282
514f4ef5
LP
8283 case ARG_NO_WALL:
8284 arg_no_wall = true;
8285 break;
8286
be394c48 8287 case ARG_ROOT:
bac75eb3 8288 r = parse_path_argument_and_warn(optarg, false, &arg_root);
0f03c2a4
LP
8289 if (r < 0)
8290 return r;
be394c48
FC
8291 break;
8292
98a6e132 8293 case 'l':
8fe914ec
LP
8294 arg_full = true;
8295 break;
8296
30732560 8297 case ARG_FAILED:
9b9b3d36
MW
8298 if (strv_extend(&arg_states, "failed") < 0)
8299 return log_oom();
8300
30732560
LP
8301 break;
8302
1ae17672
ZJS
8303 case ARG_DRY_RUN:
8304 arg_dry_run = true;
8305 break;
8306
0183528f
LP
8307 case 'q':
8308 arg_quiet = true;
8309 break;
8310
b4f27ccc 8311 case 'f':
313cefa1 8312 arg_force++;
ee5762e3
LP
8313 break;
8314
8315 case ARG_NO_RELOAD:
8316 arg_no_reload = true;
8317 break;
8318
8a0867d6
LP
8319 case ARG_KILL_WHO:
8320 arg_kill_who = optarg;
8321 break;
8322
8a0867d6 8323 case 's':
5c828e66
LP
8324 if (streq(optarg, "help")) {
8325 DUMP_STRING_TABLE(signal, int, _NSIG);
8326 return 0;
8327 }
8328
29a3db75 8329 arg_signal = signal_from_string(optarg);
baaa35ad
ZJS
8330 if (arg_signal < 0)
8331 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8332 "Failed to parse signal string %s.",
8333 optarg);
8a0867d6
LP
8334 break;
8335
501fc174
LP
8336 case ARG_NO_ASK_PASSWORD:
8337 arg_ask_password = false;
8338 break;
8339
f459b602
MAP
8340 case 'H':
8341 arg_transport = BUS_TRANSPORT_REMOTE;
8342 arg_host = optarg;
a8f11321
LP
8343 break;
8344
f459b602 8345 case 'M':
de33fc62 8346 arg_transport = BUS_TRANSPORT_MACHINE;
f459b602 8347 arg_host = optarg;
a8f11321
LP
8348 break;
8349
729e3769
LP
8350 case ARG_RUNTIME:
8351 arg_runtime = true;
8352 break;
8353
df50185b 8354 case 'n':
baaa35ad
ZJS
8355 if (safe_atou(optarg, &arg_lines) < 0)
8356 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8357 "Failed to parse lines '%s'",
8358 optarg);
df50185b
LP
8359 break;
8360
df50185b 8361 case 'o':
5c828e66
LP
8362 if (streq(optarg, "help")) {
8363 DUMP_STRING_TABLE(output_mode, OutputMode, _OUTPUT_MODE_MAX);
8364 return 0;
8365 }
8366
df50185b 8367 arg_output = output_mode_from_string(optarg);
baaa35ad
ZJS
8368 if (arg_output < 0)
8369 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8370 "Unknown output '%s'.",
8371 optarg);
df50185b
LP
8372 break;
8373
b37844d3
LP
8374 case 'i':
8375 arg_ignore_inhibitors = true;
8376 break;
8377
5d0c05e5
LN
8378 case ARG_PLAIN:
8379 arg_plain = true;
8380 break;
8381
5bdf2243
JJ
8382 case ARG_FIRMWARE_SETUP:
8383 arg_firmware_setup = true;
8384 break;
8385
97af80c5
LP
8386 case ARG_BOOT_LOADER_MENU:
8387
8388 r = parse_sec(optarg, &arg_boot_loader_menu);
8389 if (r < 0)
8390 return log_error_errno(r, "Failed to parse --boot-loader-menu= argument '%s': %m", optarg);
8391
8392 break;
8393
8394 case ARG_BOOT_LOADER_ENTRY:
8395
8396 if (streq(optarg, "help")) { /* Yes, this means, "help" is not a valid boot loader entry name we can deal with */
8397 r = help_boot_loader_entry();
8398 if (r < 0)
8399 return r;
8400
8401 return 0;
8402 }
8403
8404 arg_boot_loader_entry = empty_to_null(optarg);
8405 break;
8406
9b9b3d36 8407 case ARG_STATE: {
fb1ac50e
LP
8408 const char *p;
8409
baaa35ad
ZJS
8410 if (isempty(optarg))
8411 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8412 "--state= requires arguments.");
9b9b3d36 8413
c58bd76a 8414 for (p = optarg;;) {
bc6c18fe 8415 _cleanup_free_ char *s = NULL;
9b9b3d36 8416
5ab22f33
SS
8417 r = extract_first_word(&p, &s, ",", 0);
8418 if (r < 0)
6862111e 8419 return log_error_errno(r, "Failed to parse state: %s", optarg);
5ab22f33
SS
8420 if (r == 0)
8421 break;
9b9b3d36 8422
e16972e6
ZJS
8423 if (streq(s, "help")) {
8424 help_states();
8425 return 0;
8426 }
8427
9dccc6d3 8428 if (strv_consume(&arg_states, TAKE_PTR(s)) < 0)
9b9b3d36 8429 return log_oom();
9b9b3d36
MW
8430 }
8431 break;
8432 }
8433
1238ee09 8434 case 'r':
baaa35ad
ZJS
8435 if (geteuid() != 0)
8436 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
8437 "--recursive requires root privileges.");
1238ee09
LP
8438
8439 arg_recursive = true;
8440 break;
8441
d309c1c3 8442 case ARG_PRESET_MODE:
5c828e66
LP
8443 if (streq(optarg, "help")) {
8444 DUMP_STRING_TABLE(unit_file_preset_mode, UnitFilePresetMode, _UNIT_FILE_PRESET_MAX);
8445 return 0;
8446 }
d309c1c3
LP
8447
8448 arg_preset_mode = unit_file_preset_mode_from_string(optarg);
baaa35ad
ZJS
8449 if (arg_preset_mode < 0)
8450 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8451 "Failed to parse preset mode: %s.", optarg);
d309c1c3
LP
8452
8453 break;
8454
57ab2eab
JS
8455 case ARG_NOW:
8456 arg_now = true;
8457 break;
8458
9ef15026
JS
8459 case ARG_MESSAGE:
8460 if (strv_extend(&arg_wall, optarg) < 0)
8461 return log_oom();
8462 break;
8463
85d9b598
LP
8464 case 'T':
8465 arg_show_transaction = true;
8466 break;
8467
2e7e19ca
ZJS
8468 case '.':
8469 /* Output an error mimicking getopt, and print a hint afterwards */
8470 log_error("%s: invalid option -- '.'", program_invocation_name);
8471 log_notice("Hint: to specify units starting with a dash, use \"--\":\n"
8472 " %s [OPTIONS...] {COMMAND} -- -.%s ...",
8473 program_invocation_name, optarg ?: "mount");
8474 _fallthrough_;
8475
7e4249b9
LP
8476 case '?':
8477 return -EINVAL;
8478
8479 default:
eb9da376 8480 assert_not_reached("Unhandled option");
7e4249b9 8481 }
7e4249b9 8482
baaa35ad
ZJS
8483 if (arg_transport != BUS_TRANSPORT_LOCAL && arg_scope != UNIT_FILE_SYSTEM)
8484 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8485 "Cannot access user instance remotely.");
a8f11321 8486
baaa35ad
ZJS
8487 if (arg_wait && arg_no_block)
8488 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8489 "--wait may not be combined with --no-block.");
93a08841 8490
7e4249b9
LP
8491 return 1;
8492}
8493
e4b61340 8494static int halt_parse_argv(int argc, char *argv[]) {
e4b61340
LP
8495 enum {
8496 ARG_HELP = 0x100,
8497 ARG_HALT,
514f4ef5
LP
8498 ARG_REBOOT,
8499 ARG_NO_WALL
e4b61340
LP
8500 };
8501
8502 static const struct option options[] = {
8503 { "help", no_argument, NULL, ARG_HELP },
8504 { "halt", no_argument, NULL, ARG_HALT },
8505 { "poweroff", no_argument, NULL, 'p' },
8506 { "reboot", no_argument, NULL, ARG_REBOOT },
8507 { "force", no_argument, NULL, 'f' },
8508 { "wtmp-only", no_argument, NULL, 'w' },
8509 { "no-wtmp", no_argument, NULL, 'd' },
f3f054f0 8510 { "no-sync", no_argument, NULL, 'n' },
514f4ef5 8511 { "no-wall", no_argument, NULL, ARG_NO_WALL },
eb9da376 8512 {}
e4b61340
LP
8513 };
8514
37185ec8 8515 int c, r, runlevel;
e4b61340
LP
8516
8517 assert(argc >= 0);
8518 assert(argv);
8519
8520 if (utmp_get_runlevel(&runlevel, NULL) >= 0)
4c701096 8521 if (IN_SET(runlevel, '0', '6'))
65491fd8 8522 arg_force = 2;
e4b61340 8523
601185b4 8524 while ((c = getopt_long(argc, argv, "pfwdnih", options, NULL)) >= 0)
e4b61340
LP
8525 switch (c) {
8526
8527 case ARG_HELP:
37ec0fdd 8528 return halt_help();
e4b61340
LP
8529
8530 case ARG_HALT:
8531 arg_action = ACTION_HALT;
8532 break;
8533
8534 case 'p':
a042efad
MS
8535 if (arg_action != ACTION_REBOOT)
8536 arg_action = ACTION_POWEROFF;
e4b61340
LP
8537 break;
8538
8539 case ARG_REBOOT:
8540 arg_action = ACTION_REBOOT;
8541 break;
8542
8543 case 'f':
65491fd8 8544 arg_force = 2;
e4b61340
LP
8545 break;
8546
8547 case 'w':
1ae17672 8548 arg_dry_run = true;
e4b61340
LP
8549 break;
8550
8551 case 'd':
8552 arg_no_wtmp = true;
8553 break;
8554
f3f054f0
TB
8555 case 'n':
8556 arg_no_sync = true;
8557 break;
8558
514f4ef5
LP
8559 case ARG_NO_WALL:
8560 arg_no_wall = true;
8561 break;
8562
e4b61340
LP
8563 case 'i':
8564 case 'h':
8565 /* Compatibility nops */
8566 break;
8567
8568 case '?':
8569 return -EINVAL;
8570
8571 default:
eb9da376 8572 assert_not_reached("Unhandled option");
e4b61340 8573 }
e4b61340 8574
c5220a94 8575 if (arg_action == ACTION_REBOOT && (argc == optind || argc == optind + 1)) {
77defcf5 8576 r = update_reboot_parameter_and_warn(argc == optind + 1 ? argv[optind] : NULL, false);
c5220a94 8577 if (r < 0)
37185ec8 8578 return r;
baaa35ad
ZJS
8579 } else if (optind < argc)
8580 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8581 "Too many arguments.");
e4b61340
LP
8582
8583 return 1;
8584}
8585
8586static int shutdown_parse_argv(int argc, char *argv[]) {
e4b61340
LP
8587 enum {
8588 ARG_HELP = 0x100,
514f4ef5 8589 ARG_NO_WALL
e4b61340
LP
8590 };
8591
8592 static const struct option options[] = {
8593 { "help", no_argument, NULL, ARG_HELP },
8594 { "halt", no_argument, NULL, 'H' },
8595 { "poweroff", no_argument, NULL, 'P' },
8596 { "reboot", no_argument, NULL, 'r' },
04ebb595 8597 { "kexec", no_argument, NULL, 'K' }, /* not documented extension */
514f4ef5 8598 { "no-wall", no_argument, NULL, ARG_NO_WALL },
eb9da376 8599 {}
e4b61340
LP
8600 };
8601
172d7abf 8602 char **wall = NULL;
f6144808 8603 int c, r;
e4b61340
LP
8604
8605 assert(argc >= 0);
8606 assert(argv);
8607
b068c6f5 8608 while ((c = getopt_long(argc, argv, "HPrhkKat:fFc", options, NULL)) >= 0)
e4b61340
LP
8609 switch (c) {
8610
8611 case ARG_HELP:
37ec0fdd 8612 return shutdown_help();
e4b61340
LP
8613
8614 case 'H':
8615 arg_action = ACTION_HALT;
8616 break;
8617
8618 case 'P':
8619 arg_action = ACTION_POWEROFF;
8620 break;
8621
8622 case 'r':
5622dde3
KS
8623 if (kexec_loaded())
8624 arg_action = ACTION_KEXEC;
8625 else
8626 arg_action = ACTION_REBOOT;
e4b61340
LP
8627 break;
8628
04ebb595
LP
8629 case 'K':
8630 arg_action = ACTION_KEXEC;
8631 break;
8632
e4b61340
LP
8633 case 'h':
8634 if (arg_action != ACTION_HALT)
8635 arg_action = ACTION_POWEROFF;
8636 break;
8637
8638 case 'k':
1ae17672 8639 arg_dry_run = true;
e4b61340
LP
8640 break;
8641
514f4ef5
LP
8642 case ARG_NO_WALL:
8643 arg_no_wall = true;
8644 break;
8645
e4b61340 8646 case 'a':
b068c6f5 8647 case 't': /* Note that we also ignore any passed argument to -t, not just the -t itself */
75836b9d
JS
8648 case 'f':
8649 case 'F':
e4b61340
LP
8650 /* Compatibility nops */
8651 break;
8652
f6144808
LP
8653 case 'c':
8654 arg_action = ACTION_CANCEL_SHUTDOWN;
8655 break;
8656
e4b61340
LP
8657 case '?':
8658 return -EINVAL;
8659
8660 default:
eb9da376 8661 assert_not_reached("Unhandled option");
e4b61340 8662 }
e4b61340 8663
dfcc5c33 8664 if (argc > optind && arg_action != ACTION_CANCEL_SHUTDOWN) {
2cc7b0a2 8665 r = parse_shutdown_time_spec(argv[optind], &arg_when);
7e59bfcb 8666 if (r < 0) {
f6144808
LP
8667 log_error("Failed to parse time specification: %s", argv[optind]);
8668 return r;
8669 }
6b5ad000 8670 } else
08e4b1c5 8671 arg_when = now(CLOCK_REALTIME) + USEC_PER_MINUTE;
442b9094 8672
dfcc5c33
MS
8673 if (argc > optind && arg_action == ACTION_CANCEL_SHUTDOWN)
8674 /* No time argument for shutdown cancel */
172d7abf 8675 wall = argv + optind;
dfcc5c33
MS
8676 else if (argc > optind + 1)
8677 /* We skip the time argument */
172d7abf
LP
8678 wall = argv + optind + 1;
8679
8680 if (wall) {
8681 arg_wall = strv_copy(wall);
8682 if (!arg_wall)
8683 return log_oom();
8684 }
e4b61340
LP
8685
8686 optind = argc;
8687
8688 return 1;
e4b61340
LP
8689}
8690
8691static int telinit_parse_argv(int argc, char *argv[]) {
e4b61340
LP
8692 enum {
8693 ARG_HELP = 0x100,
514f4ef5 8694 ARG_NO_WALL
e4b61340
LP
8695 };
8696
8697 static const struct option options[] = {
8698 { "help", no_argument, NULL, ARG_HELP },
514f4ef5 8699 { "no-wall", no_argument, NULL, ARG_NO_WALL },
eb9da376 8700 {}
e4b61340
LP
8701 };
8702
8703 static const struct {
8704 char from;
8705 enum action to;
8706 } table[] = {
8707 { '0', ACTION_POWEROFF },
8708 { '6', ACTION_REBOOT },
ef2f1067 8709 { '1', ACTION_RESCUE },
e4b61340
LP
8710 { '2', ACTION_RUNLEVEL2 },
8711 { '3', ACTION_RUNLEVEL3 },
8712 { '4', ACTION_RUNLEVEL4 },
8713 { '5', ACTION_RUNLEVEL5 },
8714 { 's', ACTION_RESCUE },
8715 { 'S', ACTION_RESCUE },
8716 { 'q', ACTION_RELOAD },
8717 { 'Q', ACTION_RELOAD },
8718 { 'u', ACTION_REEXEC },
8719 { 'U', ACTION_REEXEC }
8720 };
8721
8722 unsigned i;
8723 int c;
8724
8725 assert(argc >= 0);
8726 assert(argv);
8727
601185b4 8728 while ((c = getopt_long(argc, argv, "", options, NULL)) >= 0)
e4b61340
LP
8729 switch (c) {
8730
8731 case ARG_HELP:
37ec0fdd 8732 return telinit_help();
e4b61340 8733
514f4ef5
LP
8734 case ARG_NO_WALL:
8735 arg_no_wall = true;
8736 break;
8737
e4b61340
LP
8738 case '?':
8739 return -EINVAL;
8740
8741 default:
eb9da376 8742 assert_not_reached("Unhandled option");
e4b61340 8743 }
e4b61340 8744
baaa35ad
ZJS
8745 if (optind >= argc)
8746 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8747 "%s: required argument missing.",
8748 program_invocation_short_name);
e4b61340 8749
baaa35ad
ZJS
8750 if (optind + 1 < argc)
8751 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8752 "Too many arguments.");
e4b61340 8753
baaa35ad
ZJS
8754 if (strlen(argv[optind]) != 1)
8755 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8756 "Expected single character argument.");
e4b61340
LP
8757
8758 for (i = 0; i < ELEMENTSOF(table); i++)
8759 if (table[i].from == argv[optind][0])
8760 break;
8761
baaa35ad
ZJS
8762 if (i >= ELEMENTSOF(table))
8763 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8764 "Unknown command '%s'.", argv[optind]);
e4b61340
LP
8765
8766 arg_action = table[i].to;
8767
313cefa1 8768 optind++;
e4b61340
LP
8769
8770 return 1;
8771}
8772
8773static int runlevel_parse_argv(int argc, char *argv[]) {
e4b61340
LP
8774 enum {
8775 ARG_HELP = 0x100,
8776 };
8777
8778 static const struct option options[] = {
8779 { "help", no_argument, NULL, ARG_HELP },
eb9da376 8780 {}
e4b61340
LP
8781 };
8782
8783 int c;
8784
8785 assert(argc >= 0);
8786 assert(argv);
8787
601185b4 8788 while ((c = getopt_long(argc, argv, "", options, NULL)) >= 0)
e4b61340
LP
8789 switch (c) {
8790
8791 case ARG_HELP:
37ec0fdd 8792 return runlevel_help();
e4b61340
LP
8793
8794 case '?':
8795 return -EINVAL;
8796
8797 default:
eb9da376 8798 assert_not_reached("Unhandled option");
e4b61340 8799 }
e4b61340 8800
baaa35ad
ZJS
8801 if (optind < argc)
8802 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8803 "Too many arguments.");
e4b61340
LP
8804
8805 return 1;
8806}
8807
8808static int parse_argv(int argc, char *argv[]) {
8809 assert(argc >= 0);
8810 assert(argv);
8811
8812 if (program_invocation_short_name) {
8813
8814 if (strstr(program_invocation_short_name, "halt")) {
8815 arg_action = ACTION_HALT;
8816 return halt_parse_argv(argc, argv);
c54819ca 8817
e4b61340
LP
8818 } else if (strstr(program_invocation_short_name, "poweroff")) {
8819 arg_action = ACTION_POWEROFF;
8820 return halt_parse_argv(argc, argv);
c54819ca 8821
e4b61340 8822 } else if (strstr(program_invocation_short_name, "reboot")) {
5622dde3
KS
8823 if (kexec_loaded())
8824 arg_action = ACTION_KEXEC;
8825 else
8826 arg_action = ACTION_REBOOT;
e4b61340 8827 return halt_parse_argv(argc, argv);
c54819ca 8828
e4b61340
LP
8829 } else if (strstr(program_invocation_short_name, "shutdown")) {
8830 arg_action = ACTION_POWEROFF;
8831 return shutdown_parse_argv(argc, argv);
c54819ca 8832
e4b61340 8833 } else if (strstr(program_invocation_short_name, "init")) {
d5ca5f11 8834
c54819ca
LP
8835 /* Matches invocations as "init" as well as "telinit", which are synonymous when run as PID !=
8836 * 1 on SysV.
8837 *
8838 * On SysV "telinit" was the official command to communicate with PID 1, but "init" would
8839 * redirect itself to "telinit" if called with PID != 1. We follow the same logic here still,
8840 * though we add one level of indirection, as we implement "telinit" in "systemctl". Hence, for
8841 * us if you invoke "init" you get "systemd", but it will execve() "systemctl" immediately with
8842 * argv[] unmodified if PID is != 1. If you invoke "telinit" you directly get "systemctl". In
8843 * both cases we shall do the same thing, which is why we do strstr(p_i_s_n, "init") here, as a
8844 * quick way to match both.
8845 *
8846 * Also see redirect_telinit() in src/core/main.c. */
8847
d5ca5f11 8848 if (sd_booted() > 0) {
f459b602 8849 arg_action = _ACTION_INVALID;
d5ca5f11
LP
8850 return telinit_parse_argv(argc, argv);
8851 } else {
c54819ca
LP
8852 /* Hmm, so some other init system is running, we need to forward this request to
8853 * it. For now we simply guess that it is Upstart. */
d5ca5f11 8854
595225af 8855 (void) rlimit_nofile_safe();
4ad61fd1 8856 execv(TELINIT, argv);
d5ca5f11 8857
baaa35ad
ZJS
8858 return log_error_errno(SYNTHETIC_ERRNO(EIO),
8859 "Couldn't find an alternative telinit implementation to spawn.");
d5ca5f11
LP
8860 }
8861
e4b61340
LP
8862 } else if (strstr(program_invocation_short_name, "runlevel")) {
8863 arg_action = ACTION_RUNLEVEL;
8864 return runlevel_parse_argv(argc, argv);
8865 }
8866 }
8867
8868 arg_action = ACTION_SYSTEMCTL;
8869 return systemctl_parse_argv(argc, argv);
8870}
8871
349cc4a5 8872#if HAVE_SYSV_COMPAT
44a6b1b6 8873_pure_ static int action_to_runlevel(void) {
eb22ac37
LP
8874 static const char table[_ACTION_MAX] = {
8875 [ACTION_HALT] = '0',
8876 [ACTION_POWEROFF] = '0',
8877 [ACTION_REBOOT] = '6',
8878 [ACTION_RUNLEVEL2] = '2',
8879 [ACTION_RUNLEVEL3] = '3',
8880 [ACTION_RUNLEVEL4] = '4',
8881 [ACTION_RUNLEVEL5] = '5',
8882 [ACTION_RESCUE] = '1'
8883 };
8884
78ca9099 8885 assert(arg_action >= 0 && arg_action < _ACTION_MAX);
d55ae9e6
LP
8886 return table[arg_action];
8887}
d2e79673 8888#endif
d55ae9e6 8889
e449de87 8890static int systemctl_main(int argc, char *argv[]) {
e449de87 8891 static const Verb verbs[] = {
c56d1e2c
CW
8892 { "list-units", VERB_ANY, VERB_ANY, VERB_DEFAULT|VERB_ONLINE_ONLY, list_units },
8893 { "list-unit-files", VERB_ANY, VERB_ANY, 0, list_unit_files },
8894 { "list-sockets", VERB_ANY, VERB_ANY, VERB_ONLINE_ONLY, list_sockets },
8895 { "list-timers", VERB_ANY, VERB_ANY, VERB_ONLINE_ONLY, list_timers },
8896 { "list-jobs", VERB_ANY, VERB_ANY, VERB_ONLINE_ONLY, list_jobs },
a004cb75 8897 { "list-machines", VERB_ANY, VERB_ANY, VERB_ONLINE_ONLY, list_machines },
c56d1e2c
CW
8898 { "clear-jobs", VERB_ANY, 1, VERB_ONLINE_ONLY, trivial_method },
8899 { "cancel", VERB_ANY, VERB_ANY, VERB_ONLINE_ONLY, cancel_job },
8900 { "start", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit },
8901 { "stop", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit },
8902 { "condstop", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit }, /* For compatibility with ALTLinux */
8903 { "reload", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit },
8904 { "restart", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit },
8905 { "try-restart", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit },
8906 { "reload-or-restart", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit },
5238e957 8907 { "reload-or-try-restart", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit }, /* For compatibility with old systemctl <= 228 */
c56d1e2c
CW
8908 { "try-reload-or-restart", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit },
8909 { "force-reload", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit }, /* For compatibility with SysV */
8910 { "condreload", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit }, /* For compatibility with ALTLinux */
8911 { "condrestart", 2, VERB_ANY, VERB_ONLINE_ONLY, start_unit }, /* For compatibility with RH */
8912 { "isolate", 2, 2, VERB_ONLINE_ONLY, start_unit },
8913 { "kill", 2, VERB_ANY, VERB_ONLINE_ONLY, kill_unit },
8914 { "is-active", 2, VERB_ANY, VERB_ONLINE_ONLY, check_unit_active },
3e7e587d 8915 { "check", 2, VERB_ANY, VERB_ONLINE_ONLY, check_unit_active }, /* deprecated alias of is-active */
c56d1e2c
CW
8916 { "is-failed", 2, VERB_ANY, VERB_ONLINE_ONLY, check_unit_failed },
8917 { "show", VERB_ANY, VERB_ANY, VERB_ONLINE_ONLY, show },
8918 { "cat", 2, VERB_ANY, VERB_ONLINE_ONLY, cat },
8919 { "status", VERB_ANY, VERB_ANY, VERB_ONLINE_ONLY, show },
8920 { "help", VERB_ANY, VERB_ANY, VERB_ONLINE_ONLY, show },
8921 { "daemon-reload", VERB_ANY, 1, VERB_ONLINE_ONLY, daemon_reload },
8922 { "daemon-reexec", VERB_ANY, 1, VERB_ONLINE_ONLY, daemon_reload },
8923 { "show-environment", VERB_ANY, 1, VERB_ONLINE_ONLY, show_environment },
8924 { "set-environment", 2, VERB_ANY, VERB_ONLINE_ONLY, set_environment },
8925 { "unset-environment", 2, VERB_ANY, VERB_ONLINE_ONLY, set_environment },
8926 { "import-environment", VERB_ANY, VERB_ANY, VERB_ONLINE_ONLY, import_environment },
8927 { "halt", VERB_ANY, 1, VERB_ONLINE_ONLY, start_system_special },
8928 { "poweroff", VERB_ANY, 1, VERB_ONLINE_ONLY, start_system_special },
8929 { "reboot", VERB_ANY, 2, VERB_ONLINE_ONLY, start_system_special },
8930 { "kexec", VERB_ANY, 1, VERB_ONLINE_ONLY, start_system_special },
8931 { "suspend", VERB_ANY, 1, VERB_ONLINE_ONLY, start_system_special },
8932 { "hibernate", VERB_ANY, 1, VERB_ONLINE_ONLY, start_system_special },
8933 { "hybrid-sleep", VERB_ANY, 1, VERB_ONLINE_ONLY, start_system_special },
e68c79db 8934 { "suspend-then-hibernate",VERB_ANY, 1, VERB_ONLINE_ONLY, start_system_special },
c56d1e2c
CW
8935 { "default", VERB_ANY, 1, VERB_ONLINE_ONLY, start_special },
8936 { "rescue", VERB_ANY, 1, VERB_ONLINE_ONLY, start_system_special },
8937 { "emergency", VERB_ANY, 1, VERB_ONLINE_ONLY, start_system_special },
8938 { "exit", VERB_ANY, 2, VERB_ONLINE_ONLY, start_special },
8939 { "reset-failed", VERB_ANY, VERB_ANY, VERB_ONLINE_ONLY, reset_failed },
8940 { "enable", 2, VERB_ANY, 0, enable_unit },
8941 { "disable", 2, VERB_ANY, 0, enable_unit },
8942 { "is-enabled", 2, VERB_ANY, 0, unit_is_enabled },
8943 { "reenable", 2, VERB_ANY, 0, enable_unit },
8944 { "preset", 2, VERB_ANY, 0, enable_unit },
8945 { "preset-all", VERB_ANY, 1, 0, preset_all },
8946 { "mask", 2, VERB_ANY, 0, enable_unit },
8947 { "unmask", 2, VERB_ANY, 0, enable_unit },
8948 { "link", 2, VERB_ANY, 0, enable_unit },
8949 { "revert", 2, VERB_ANY, 0, enable_unit },
8950 { "switch-root", 2, VERB_ANY, VERB_ONLINE_ONLY, switch_root },
8951 { "list-dependencies", VERB_ANY, 2, VERB_ONLINE_ONLY, list_dependencies },
8952 { "set-default", 2, 2, 0, set_default },
8953 { "get-default", VERB_ANY, 1, 0, get_default },
8954 { "set-property", 3, VERB_ANY, VERB_ONLINE_ONLY, set_property },
8955 { "is-system-running", VERB_ANY, 1, 0, is_system_running },
8956 { "add-wants", 3, VERB_ANY, 0, add_dependency },
8957 { "add-requires", 3, VERB_ANY, 0, add_dependency },
8958 { "edit", 2, VERB_ANY, VERB_ONLINE_ONLY, edit },
d08e75ed 8959 {}
e449de87 8960 };
7e4249b9 8961
e449de87 8962 return dispatch_verb(argc, argv, verbs, NULL);
e4b61340
LP
8963}
8964
4fbd7192 8965static int reload_with_fallback(void) {
4fbd7192 8966 /* First, try systemd via D-Bus. */
e449de87 8967 if (daemon_reload(0, NULL, NULL) >= 0)
4fbd7192 8968 return 0;
e4b61340
LP
8969
8970 /* Nothing else worked, so let's try signals */
2853b60a 8971 assert(IN_SET(arg_action, ACTION_RELOAD, ACTION_REEXEC));
e4b61340 8972
4a62c710
MS
8973 if (kill(1, arg_action == ACTION_RELOAD ? SIGHUP : SIGTERM) < 0)
8974 return log_error_errno(errno, "kill() failed: %m");
e4b61340
LP
8975
8976 return 0;
8977}
8978
4fbd7192 8979static int start_with_fallback(void) {
4fbd7192 8980 /* First, try systemd via D-Bus. */
2e13c0c3 8981 if (start_unit(0, NULL, NULL) == 0)
4fbd7192 8982 return 0;
e4b61340 8983
2771aaf5 8984#if HAVE_SYSV_COMPAT
2853b60a 8985 /* Nothing else worked, so let's try /dev/initctl */
63a3b3cb 8986 if (talk_initctl(action_to_runlevel()) > 0)
48ec22bc 8987 return 0;
2771aaf5 8988#endif
d55ae9e6 8989
baaa35ad
ZJS
8990 return log_error_errno(SYNTHETIC_ERRNO(EIO),
8991 "Failed to talk to init daemon.");
e4b61340
LP
8992}
8993
477def80 8994static int halt_now(enum action a) {
c01dcddf 8995 /* The kernel will automatically flush ATA disks and suchlike on reboot(), but the file systems need to be
f03ec2b1 8996 * synced explicitly in advance. */
1ae17672 8997 if (!arg_no_sync && !arg_dry_run)
f3f054f0 8998 (void) sync();
4a3ad399 8999
1ae17672
ZJS
9000 /* Make sure C-A-D is handled by the kernel from this point on... */
9001 if (!arg_dry_run)
9002 (void) reboot(RB_ENABLE_CAD);
e606bb61 9003
4c80c73c 9004 switch (a) {
e606bb61
LP
9005
9006 case ACTION_HALT:
60675884
LP
9007 if (!arg_quiet)
9008 log_info("Halting.");
1ae17672
ZJS
9009 if (arg_dry_run)
9010 return 0;
19578bb2 9011 (void) reboot(RB_HALT_SYSTEM);
477def80 9012 return -errno;
e606bb61
LP
9013
9014 case ACTION_POWEROFF:
60675884
LP
9015 if (!arg_quiet)
9016 log_info("Powering off.");
1ae17672
ZJS
9017 if (arg_dry_run)
9018 return 0;
19578bb2 9019 (void) reboot(RB_POWER_OFF);
477def80 9020 return -errno;
e606bb61 9021
98d52feb 9022 case ACTION_KEXEC:
c01dcddf
LP
9023 case ACTION_REBOOT:
9024 return reboot_with_parameter(REBOOT_FALLBACK |
9025 (arg_quiet ? 0 : REBOOT_LOG) |
9026 (arg_dry_run ? REBOOT_DRY_RUN : 0));
e606bb61 9027
477def80
LP
9028 default:
9029 assert_not_reached("Unknown action.");
9030 }
e606bb61
LP
9031}
9032
56a730fa 9033static int logind_schedule_shutdown(void) {
7f56c3d4 9034
cf9cda44 9035#if ENABLE_LOGIND
4afd3348 9036 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
56a730fa
LP
9037 char date[FORMAT_TIMESTAMP_MAX];
9038 const char *action;
4fbd7192 9039 sd_bus *bus;
56a730fa
LP
9040 int r;
9041
4fbd7192 9042 r = acquire_bus(BUS_FULL, &bus);
56a730fa 9043 if (r < 0)
4fbd7192 9044 return r;
56a730fa
LP
9045
9046 switch (arg_action) {
9047 case ACTION_HALT:
9048 action = "halt";
9049 break;
9050 case ACTION_POWEROFF:
9051 action = "poweroff";
9052 break;
9053 case ACTION_KEXEC:
9054 action = "kexec";
9055 break;
a4420f7b
LP
9056 case ACTION_EXIT:
9057 action = "exit";
9058 break;
9059 case ACTION_REBOOT:
56a730fa
LP
9060 default:
9061 action = "reboot";
9062 break;
9063 }
9064
1ae17672 9065 if (arg_dry_run)
56a730fa
LP
9066 action = strjoina("dry-", action);
9067
d2ad7e1b
ZJS
9068 (void) logind_set_wall_message();
9069
56a730fa 9070 r = sd_bus_call_method(
4fbd7192 9071 bus,
56a730fa
LP
9072 "org.freedesktop.login1",
9073 "/org/freedesktop/login1",
9074 "org.freedesktop.login1.Manager",
9075 "ScheduleShutdown",
9076 &error,
9077 NULL,
9078 "st",
9079 action,
9080 arg_when);
9081 if (r < 0)
9082 return log_warning_errno(r, "Failed to call ScheduleShutdown in logind, proceeding with immediate shutdown: %s", bus_error_message(&error, r));
9083
60675884
LP
9084 if (!arg_quiet)
9085 log_info("Shutdown scheduled for %s, use 'shutdown -c' to cancel.", format_timestamp(date, sizeof(date), arg_when));
56a730fa 9086 return 0;
cf9cda44 9087#else
2f50e59f
LP
9088 return log_error_errno(SYNTHETIC_ERRNO(ENOSYS),
9089 "Cannot schedule shutdown without logind support, proceeding with immediate shutdown.");
807690fb 9090#endif
56a730fa
LP
9091}
9092
4fbd7192 9093static int halt_main(void) {
e4b61340
LP
9094 int r;
9095
4fbd7192 9096 r = logind_check_inhibitors(arg_action);
748ebafa
LP
9097 if (r < 0)
9098 return r;
b37844d3 9099
940bec70
DJL
9100 /* Delayed shutdown requested, and was successful */
9101 if (arg_when > 0 && logind_schedule_shutdown() == 0)
9102 return 0;
9103 /* no delay, or logind failed or is not at all available */
7f96539d 9104
bc8c2f5c 9105 if (geteuid() != 0) {
1ae17672 9106 if (arg_dry_run || arg_force > 0) {
fba868fa 9107 (void) must_be_root();
2ac3930f
IS
9108 return -EPERM;
9109 }
9110
7e59bfcb 9111 /* Try logind if we are a normal user and no special
d35f51ea 9112 * mode applies. Maybe polkit allows us to shutdown
7e59bfcb 9113 * the machine. */
36b69c31 9114 if (IN_SET(arg_action, ACTION_POWEROFF, ACTION_REBOOT, ACTION_HALT)) {
4fbd7192 9115 r = logind_reboot(arg_action);
4c80c73c
KS
9116 if (r >= 0)
9117 return r;
a9085ea3 9118 if (IN_SET(r, -EOPNOTSUPP, -EINPROGRESS))
7f96539d
LP
9119 /* requested operation is not
9120 * supported on the local system or
9121 * already in progress */
a9085ea3
IS
9122 return r;
9123 /* on all other errors, try low-level operation */
4c80c73c 9124 }
bc8c2f5c
LP
9125 }
9126
2955e0d4
GJ
9127 /* In order to minimize the difference between operation with and
9128 * without logind, we explicitly enable non-blocking mode for this,
9129 * as logind's shutdown operations are always non-blocking. */
9130 arg_no_block = true;
9131
1ae17672 9132 if (!arg_dry_run && !arg_force)
4fbd7192 9133 return start_with_fallback();
e4b61340 9134
2ac3930f
IS
9135 assert(geteuid() == 0);
9136
d90e1a30
LP
9137 if (!arg_no_wtmp) {
9138 if (sd_booted() > 0)
9139 log_debug("Not writing utmp record, assuming that systemd-update-utmp is used.");
7e59bfcb
LP
9140 else {
9141 r = utmp_put_shutdown();
9142 if (r < 0)
da927ba9 9143 log_warning_errno(r, "Failed to write utmp record: %m");
7e59bfcb 9144 }
d90e1a30 9145 }
e4b61340 9146
1ae17672 9147 if (arg_dry_run)
e4b61340
LP
9148 return 0;
9149
477def80 9150 r = halt_now(arg_action);
691395d8 9151 return log_error_errno(r, "Failed to reboot: %m");
e4b61340
LP
9152}
9153
9154static int runlevel_main(void) {
9155 int r, runlevel, previous;
9156
729e3769
LP
9157 r = utmp_get_runlevel(&runlevel, &previous);
9158 if (r < 0) {
9159 puts("unknown");
e4b61340
LP
9160 return r;
9161 }
9162
9163 printf("%c %c\n",
9164 previous <= 0 ? 'N' : previous,
9165 runlevel <= 0 ? 'N' : runlevel);
9166
9167 return 0;
9168}
9169
2cf05793 9170static int logind_cancel_shutdown(void) {
349cc4a5 9171#if ENABLE_LOGIND
4afd3348 9172 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
4fbd7192 9173 sd_bus *bus;
949d9ce9
LP
9174 int r;
9175
4fbd7192 9176 r = acquire_bus(BUS_FULL, &bus);
949d9ce9 9177 if (r < 0)
4fbd7192 9178 return r;
949d9ce9 9179
4fbd7192 9180 (void) logind_set_wall_message();
949d9ce9
LP
9181
9182 r = sd_bus_call_method(
4fbd7192 9183 bus,
949d9ce9
LP
9184 "org.freedesktop.login1",
9185 "/org/freedesktop/login1",
9186 "org.freedesktop.login1.Manager",
9187 "CancelScheduledShutdown",
9188 &error,
9189 NULL, NULL);
9190 if (r < 0)
9191 return log_warning_errno(r, "Failed to talk to logind, shutdown hasn't been cancelled: %s", bus_error_message(&error, r));
9192
9193 return 0;
2cf05793 9194#else
2f50e59f
LP
9195 return log_error_errno(SYNTHETIC_ERRNO(ENOSYS),
9196 "Not compiled with logind support, cannot cancel scheduled shutdowns.");
2cf05793 9197#endif
949d9ce9
LP
9198}
9199
f2a3de01 9200static int run(int argc, char *argv[]) {
f459b602 9201 int r;
e4b61340 9202
a9cdc94f 9203 setlocale(LC_ALL, "");
e4b61340 9204 log_parse_environment();
2396fb04 9205 log_open();
1abaf488
LP
9206
9207 /* The journal merging logic potentially needs a lot of fds. */
9208 (void) rlimit_nofile_bump(HIGH_RLIMIT_NOFILE);
9209
592705f2 9210 sigbus_install();
e4b61340 9211
184ecaf7
DR
9212 /* Explicitly not on_tty() to avoid setting cached value.
9213 * This becomes relevant for piping output which might be
9214 * ellipsized. */
9215 original_stdout_is_tty = isatty(STDOUT_FILENO);
9216
04ebb595 9217 r = parse_argv(argc, argv);
f459b602 9218 if (r <= 0)
e4b61340 9219 goto finish;
7e4249b9 9220
040524b4 9221 if (arg_action != ACTION_SYSTEMCTL && running_in_chroot() > 0) {
60675884
LP
9222 if (!arg_quiet)
9223 log_info("Running in chroot, ignoring request.");
f459b602 9224 r = 0;
82e23ddd
LP
9225 goto finish;
9226 }
9227
41dd15e4
LP
9228 /* systemctl_main() will print an error message for the bus
9229 * connection, but only if it needs to */
e4b61340
LP
9230
9231 switch (arg_action) {
9232
22f4096c 9233 case ACTION_SYSTEMCTL:
e449de87 9234 r = systemctl_main(argc, argv);
e4b61340 9235 break;
e4b61340 9236
081dc638
AJ
9237 /* Legacy command aliases set arg_action. They provide some fallbacks,
9238 * e.g. to tell sysvinit to reboot after you have installed systemd
9239 * binaries. */
9240
e4b61340
LP
9241 case ACTION_HALT:
9242 case ACTION_POWEROFF:
9243 case ACTION_REBOOT:
5622dde3 9244 case ACTION_KEXEC:
4fbd7192 9245 r = halt_main();
e4b61340
LP
9246 break;
9247
e4b61340
LP
9248 case ACTION_RUNLEVEL2:
9249 case ACTION_RUNLEVEL3:
9250 case ACTION_RUNLEVEL4:
9251 case ACTION_RUNLEVEL5:
9252 case ACTION_RESCUE:
4fbd7192 9253 r = start_with_fallback();
e4b61340 9254 break;
7e4249b9 9255
e4b61340
LP
9256 case ACTION_RELOAD:
9257 case ACTION_REEXEC:
4fbd7192 9258 r = reload_with_fallback();
e4b61340
LP
9259 break;
9260
949d9ce9 9261 case ACTION_CANCEL_SHUTDOWN:
2cf05793 9262 r = logind_cancel_shutdown();
f6144808
LP
9263 break;
9264
eb22ac37 9265 case ACTION_RUNLEVEL:
4f16c1f4
LP
9266 r = runlevel_main();
9267 break;
9268
081dc638
AJ
9269 case ACTION_EXIT:
9270 case ACTION_SUSPEND:
9271 case ACTION_HIBERNATE:
9272 case ACTION_HYBRID_SLEEP:
e68c79db 9273 case ACTION_SUSPEND_THEN_HIBERNATE:
081dc638
AJ
9274 case ACTION_EMERGENCY:
9275 case ACTION_DEFAULT:
9276 /* systemctl verbs with no equivalent in the legacy commands.
9277 * These cannot appear in arg_action. Fall through. */
9278
f459b602 9279 case _ACTION_INVALID:
e4b61340
LP
9280 default:
9281 assert_not_reached("Unknown action");
9282 }
7e4249b9
LP
9283
9284finish:
cf647b69
LP
9285 release_busses();
9286
d1405af3
ZJS
9287 /* Note that we return r here, not 0, so that we can implement the LSB-like return codes */
9288 return r;
7e4249b9 9289}
d1405af3
ZJS
9290
9291DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run);