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