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