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