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