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