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