]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/analyze/analyze.c
basic/pager: convert the pager options to a flags argument
[thirdparty/systemd.git] / src / analyze / analyze.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
2265fbf7 2/***
96b2fb93 3 Copyright © 2013 Simon Peeters
2265fbf7
SP
4***/
5
2265fbf7 6#include <getopt.h>
3f1c1287 7#include <inttypes.h>
2265fbf7 8#include <locale.h>
3f6fd1ba
LP
9#include <stdio.h>
10#include <stdlib.h>
2265fbf7 11
048ecf5b 12#include "sd-bus.h"
3f6fd1ba 13
b5efdb8a 14#include "alloc-util.h"
3f6fd1ba 15#include "analyze-verify.h"
048ecf5b 16#include "bus-error.h"
20b16441 17#include "bus-unit-util.h"
3f6fd1ba 18#include "bus-util.h"
6d86f4bd 19#include "calendarspec.h"
971f6ea5 20#include "def.h"
854a42fb 21#include "conf-files.h"
c0a1bfac
DT
22#include "copy.h"
23#include "fd-util.h"
7d50b32a 24#include "glob-util.h"
bb150966 25#include "hashmap.h"
8752c575 26#include "locale-util.h"
3f6fd1ba 27#include "log.h"
9ea9d4cf 28#include "pager.h"
6bedfcbb 29#include "parse-util.h"
854a42fb 30#include "path-util.h"
349cc4a5 31#if HAVE_SECCOMP
869feb33 32#include "seccomp-util.h"
0f734bdc 33#endif
3f6fd1ba
LP
34#include "special.h"
35#include "strv.h"
36#include "strxcpyx.h"
3f1c1287 37#include "time-util.h"
288a74cc 38#include "terminal-util.h"
3f6fd1ba
LP
39#include "unit-name.h"
40#include "util.h"
a6bcef29 41#include "verbs.h"
2265fbf7 42
2f6eb835 43#define SCALE_X (0.1 / 1000.0) /* pixels per us */
a213b7e9 44#define SCALE_Y (20.0)
2f6eb835 45
2265fbf7 46#define svg(...) printf(__VA_ARGS__)
c170f3a4
LP
47
48#define svg_bar(class, x1, x2, y) \
2265fbf7 49 svg(" <rect class=\"%s\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n", \
c170f3a4 50 (class), \
2f6eb835
LP
51 SCALE_X * (x1), SCALE_Y * (y), \
52 SCALE_X * ((x2) - (x1)), SCALE_Y - 1.0)
c170f3a4
LP
53
54#define svg_text(b, x, y, format, ...) \
55 do { \
2f6eb835 56 svg(" <text class=\"%s\" x=\"%.03f\" y=\"%.03f\">", (b) ? "left" : "right", SCALE_X * (x) + (b ? 5.0 : -5.0), SCALE_Y * (y) + 14.0); \
c170f3a4
LP
57 svg(format, ## __VA_ARGS__); \
58 svg("</text>\n"); \
9ed794a3 59 } while (false)
2265fbf7 60
1700761b
SP
61static enum dot {
62 DEP_ALL,
63 DEP_ORDER,
64 DEP_REQUIRE
65} arg_dot = DEP_ALL;
e55933db
ŁS
66static char** arg_dot_from_patterns = NULL;
67static char** arg_dot_to_patterns = NULL;
9ea9d4cf 68static usec_t arg_fuzz = 0;
0221d68a 69static PagerFlags arg_pager_flags = 0;
3cd26e7c 70static BusTransport arg_transport = BUS_TRANSPORT_LOCAL;
f72b7018 71static const char *arg_host = NULL;
28b35ef2 72static UnitFileScope arg_scope = UNIT_FILE_SYSTEM;
1d3bc017 73static bool arg_man = true;
641c0fd1 74static bool arg_generators = false;
46d8646a 75static const char *arg_root = NULL;
bb150966 76
2265fbf7 77struct boot_times {
c170f3a4
LP
78 usec_t firmware_time;
79 usec_t loader_time;
80 usec_t kernel_time;
81 usec_t kernel_done_time;
82 usec_t initrd_time;
83 usec_t userspace_time;
84 usec_t finish_time;
c2e0d600
TA
85 usec_t security_start_time;
86 usec_t security_finish_time;
518d10e9
UTL
87 usec_t generators_start_time;
88 usec_t generators_finish_time;
d9acfb71
TA
89 usec_t unitsload_start_time;
90 usec_t unitsload_finish_time;
8c006565
YW
91 usec_t initrd_security_start_time;
92 usec_t initrd_security_finish_time;
93 usec_t initrd_generators_start_time;
94 usec_t initrd_generators_finish_time;
95 usec_t initrd_unitsload_start_time;
96 usec_t initrd_unitsload_finish_time;
06bef033
IS
97
98 /*
99 * If we're analyzing the user instance, all timestamps will be offset
100 * by its own start-up timestamp, which may be arbitrarily big.
101 * With "plot", this causes arbitrarily wide output SVG files which almost
102 * completely consist of empty space. Thus we cancel out this offset.
103 *
104 * This offset is subtracted from times above by acquire_boot_times(),
105 * but it still needs to be subtracted from unit-specific timestamps
106 * (so it is stored here for reference).
107 */
108 usec_t reverse_offset;
2265fbf7 109};
9ea9d4cf 110
2265fbf7 111struct unit_times {
df560cf6 112 bool has_data;
2265fbf7 113 char *name;
cc27380c
TA
114 usec_t activating;
115 usec_t activated;
116 usec_t deactivated;
117 usec_t deactivating;
c170f3a4 118 usec_t time;
2265fbf7
SP
119};
120
7e690cef
DH
121struct host_info {
122 char *hostname;
123 char *kernel_name;
124 char *kernel_release;
125 char *kernel_version;
126 char *os_pretty_name;
127 char *virtualization;
128 char *architecture;
129};
130
f7e29336 131static int acquire_bus(sd_bus **bus, bool *use_full_bus) {
5c69b31c 132 bool user = arg_scope != UNIT_FILE_SYSTEM;
fb507898 133 int r;
5c69b31c 134
f7e29336 135 if (use_full_bus && *use_full_bus) {
fb507898
YW
136 r = bus_connect_transport(arg_transport, arg_host, user, bus);
137 if (IN_SET(r, 0, -EHOSTDOWN))
138 return r;
5c69b31c
GJ
139
140 *use_full_bus = false;
141 }
142
f7e29336 143 return bus_connect_transport_systemd(arg_transport, arg_host, user, bus);
bf0e0a4d
ZJS
144}
145
048ecf5b 146static int bus_get_uint64_property(sd_bus *bus, const char *path, const char *interface, const char *property, uint64_t *val) {
4afd3348 147 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
c170f3a4 148 int r;
2265fbf7 149
988b9df2
LP
150 assert(bus);
151 assert(path);
152 assert(interface);
153 assert(property);
154 assert(val);
155
a936124f
TA
156 r = sd_bus_get_property_trivial(
157 bus,
158 "org.freedesktop.systemd1",
159 path,
160 interface,
161 property,
162 &error,
163 't', val);
048ecf5b 164
4ae25393
YW
165 if (r < 0)
166 return log_error_errno(r, "Failed to parse reply: %s", bus_error_message(&error, -r));
2265fbf7 167
2265fbf7
SP
168 return 0;
169}
170
988b9df2 171static int bus_get_unit_property_strv(sd_bus *bus, const char *path, const char *property, char ***strv) {
4afd3348 172 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
988b9df2
LP
173 int r;
174
175 assert(bus);
176 assert(path);
177 assert(property);
178 assert(strv);
179
180 r = sd_bus_get_property_strv(
181 bus,
182 "org.freedesktop.systemd1",
183 path,
184 "org.freedesktop.systemd1.Unit",
185 property,
186 &error,
187 strv);
4ae25393
YW
188 if (r < 0)
189 return log_error_errno(r, "Failed to get unit property %s: %s", property, bus_error_message(&error, -r));
988b9df2
LP
190
191 return 0;
192}
193
93bab288
YW
194static int compare_unit_time(const struct unit_times *a, const struct unit_times *b) {
195 return CMP(b->time, a->time);
2265fbf7
SP
196}
197
93bab288
YW
198static int compare_unit_start(const struct unit_times *a, const struct unit_times *b) {
199 return CMP(a->activating, b->activating);
2265fbf7
SP
200}
201
df560cf6 202static void unit_times_free(struct unit_times *t) {
c170f3a4
LP
203 struct unit_times *p;
204
df560cf6 205 for (p = t; p->has_data; p++)
c170f3a4 206 free(p->name);
c170f3a4
LP
207 free(t);
208}
209
df560cf6
FB
210DEFINE_TRIVIAL_CLEANUP_FUNC(struct unit_times *, unit_times_free);
211
06bef033
IS
212static void subtract_timestamp(usec_t *a, usec_t b) {
213 assert(a);
214
215 if (*a > 0) {
216 assert(*a >= b);
217 *a -= b;
218 }
219}
220
048ecf5b 221static int acquire_boot_times(sd_bus *bus, struct boot_times **bt) {
cc0eb780
YW
222 static const struct bus_properties_map property_map[] = {
223 { "FirmwareTimestampMonotonic", "t", NULL, offsetof(struct boot_times, firmware_time) },
224 { "LoaderTimestampMonotonic", "t", NULL, offsetof(struct boot_times, loader_time) },
225 { "KernelTimestamp", "t", NULL, offsetof(struct boot_times, kernel_time) },
226 { "InitRDTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_time) },
227 { "UserspaceTimestampMonotonic", "t", NULL, offsetof(struct boot_times, userspace_time) },
228 { "FinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, finish_time) },
229 { "SecurityStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, security_start_time) },
230 { "SecurityFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, security_finish_time) },
231 { "GeneratorsStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, generators_start_time) },
232 { "GeneratorsFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, generators_finish_time) },
233 { "UnitsLoadStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, unitsload_start_time) },
234 { "UnitsLoadFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, unitsload_finish_time) },
235 { "InitRDSecurityStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_security_start_time) },
236 { "InitRDSecurityFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_security_finish_time) },
237 { "InitRDGeneratorsStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_generators_start_time) },
238 { "InitRDGeneratorsFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_generators_finish_time) },
239 { "InitRDUnitsLoadStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_unitsload_start_time) },
240 { "InitRDUnitsLoadFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_unitsload_finish_time) },
241 {},
242 };
243 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2265fbf7
SP
244 static struct boot_times times;
245 static bool cached = false;
cc0eb780 246 int r;
c170f3a4 247
2265fbf7 248 if (cached)
c170f3a4
LP
249 goto finish;
250
251 assert_cc(sizeof(usec_t) == sizeof(uint64_t));
2265fbf7 252
cc0eb780
YW
253 r = bus_map_all_properties(
254 bus,
255 "org.freedesktop.systemd1",
256 "/org/freedesktop/systemd1",
257 property_map,
258 BUS_MAP_STRDUP,
259 &error,
260 NULL,
261 &times);
262 if (r < 0)
263 return log_error_errno(r, "Failed to get timestamp properties: %s", bus_error_message(&error, r));
8c006565 264
c170f3a4 265 if (times.finish_time <= 0) {
1e9f0cca
ZJS
266 log_error("Bootup is not yet finished (org.freedesktop.systemd1.Manager.FinishTimestampMonotonic=%"PRIu64").\n"
267 "Please try again later.\n"
268 "Hint: Use 'systemctl%s list-jobs' to see active jobs",
269 times.finish_time,
270 arg_scope == UNIT_FILE_SYSTEM ? "" : " --user");
988b9df2 271 return -EINPROGRESS;
2265fbf7
SP
272 }
273
eddb5037
YW
274 if (arg_scope == UNIT_FILE_SYSTEM && times.security_start_time > 0) {
275 /* security_start_time is set when systemd is not running under container environment. */
baa4880b 276 if (times.initrd_time > 0)
28b35ef2
ZJS
277 times.kernel_done_time = times.initrd_time;
278 else
279 times.kernel_done_time = times.userspace_time;
280 } else {
06bef033 281 /*
eddb5037 282 * User-instance-specific or container-system-specific timestamps processing
06bef033
IS
283 * (see comment to reverse_offset in struct boot_times).
284 */
285 times.reverse_offset = times.userspace_time;
286
79ecaae4
YW
287 times.firmware_time = times.loader_time = times.kernel_time = times.initrd_time = times.userspace_time =
288 times.security_start_time = times.security_finish_time = 0;
06bef033 289
79ecaae4 290 subtract_timestamp(&times.finish_time, times.reverse_offset);
06bef033
IS
291
292 subtract_timestamp(&times.generators_start_time, times.reverse_offset);
293 subtract_timestamp(&times.generators_finish_time, times.reverse_offset);
294
295 subtract_timestamp(&times.unitsload_start_time, times.reverse_offset);
296 subtract_timestamp(&times.unitsload_finish_time, times.reverse_offset);
06bef033 297 }
2265fbf7
SP
298
299 cached = true;
c170f3a4
LP
300
301finish:
302 *bt = &times;
303 return 0;
2265fbf7
SP
304}
305
7e690cef 306static void free_host_info(struct host_info *hi) {
b1b533a0
LP
307
308 if (!hi)
19f462f2 309 return;
b1b533a0 310
7e690cef
DH
311 free(hi->hostname);
312 free(hi->kernel_name);
313 free(hi->kernel_release);
314 free(hi->kernel_version);
315 free(hi->os_pretty_name);
316 free(hi->virtualization);
317 free(hi->architecture);
318 free(hi);
319}
b1b533a0 320
19f462f2 321DEFINE_TRIVIAL_CLEANUP_FUNC(struct host_info*, free_host_info);
7e690cef 322
29b8b5ce 323static int acquire_time_data(sd_bus *bus, struct unit_times **out) {
cc0eb780
YW
324 static const struct bus_properties_map property_map[] = {
325 { "InactiveExitTimestampMonotonic", "t", NULL, offsetof(struct unit_times, activating) },
326 { "ActiveEnterTimestampMonotonic", "t", NULL, offsetof(struct unit_times, activated) },
327 { "ActiveExitTimestampMonotonic", "t", NULL, offsetof(struct unit_times, deactivating) },
328 { "InactiveEnterTimestampMonotonic", "t", NULL, offsetof(struct unit_times, deactivated) },
329 {},
330 };
4afd3348
LP
331 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
332 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
df560cf6 333 _cleanup_(unit_times_freep) struct unit_times *unit_times = NULL;
97cec9ba
YW
334 struct boot_times *boot_times = NULL;
335 size_t allocated = 0, c = 0;
29b8b5ce 336 UnitInfo u;
97cec9ba 337 int r;
29b8b5ce 338
06bef033
IS
339 r = acquire_boot_times(bus, &boot_times);
340 if (r < 0)
df560cf6 341 return r;
06bef033 342
29b8b5ce
IS
343 r = sd_bus_call_method(
344 bus,
345 "org.freedesktop.systemd1",
346 "/org/freedesktop/systemd1",
347 "org.freedesktop.systemd1.Manager",
348 "ListUnits",
349 &error, &reply,
350 NULL);
4ae25393
YW
351 if (r < 0)
352 return log_error_errno(r, "Failed to list units: %s", bus_error_message(&error, -r));
29b8b5ce
IS
353
354 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssssssouso)");
df560cf6
FB
355 if (r < 0)
356 return bus_log_parse_error(r);
29b8b5ce
IS
357
358 while ((r = bus_parse_unit_info(reply, &u)) > 0) {
359 struct unit_times *t;
360
97cec9ba 361 if (!GREEDY_REALLOC(unit_times, allocated, c+2))
df560cf6 362 return log_oom();
29b8b5ce 363
df560cf6
FB
364 unit_times[c+1].has_data = false;
365 t = &unit_times[c];
29b8b5ce
IS
366 t->name = NULL;
367
368 assert_cc(sizeof(usec_t) == sizeof(uint64_t));
369
cc0eb780
YW
370 r = bus_map_all_properties(
371 bus,
372 "org.freedesktop.systemd1",
373 u.unit_path,
374 property_map,
375 BUS_MAP_STRDUP,
376 &error,
377 NULL,
378 t);
379 if (r < 0)
380 return log_error_errno(r, "Failed to get timestamp properties of unit %s: %s", u.id, bus_error_message(&error, r));
29b8b5ce 381
06bef033
IS
382 subtract_timestamp(&t->activating, boot_times->reverse_offset);
383 subtract_timestamp(&t->activated, boot_times->reverse_offset);
384 subtract_timestamp(&t->deactivating, boot_times->reverse_offset);
385 subtract_timestamp(&t->deactivated, boot_times->reverse_offset);
386
29b8b5ce
IS
387 if (t->activated >= t->activating)
388 t->time = t->activated - t->activating;
389 else if (t->deactivated >= t->activating)
390 t->time = t->deactivated - t->activating;
391 else
392 t->time = 0;
393
394 if (t->activating == 0)
395 continue;
396
397 t->name = strdup(u.id);
df560cf6
FB
398 if (!t->name)
399 return log_oom();
400
401 t->has_data = true;
29b8b5ce
IS
402 c++;
403 }
df560cf6
FB
404 if (r < 0)
405 return bus_log_parse_error(r);
29b8b5ce 406
df560cf6 407 *out = TAKE_PTR(unit_times);
29b8b5ce 408 return c;
29b8b5ce
IS
409}
410
7e690cef 411static int acquire_host_info(sd_bus *bus, struct host_info **hi) {
7e690cef 412 static const struct bus_properties_map hostname_map[] = {
b1b533a0
LP
413 { "Hostname", "s", NULL, offsetof(struct host_info, hostname) },
414 { "KernelName", "s", NULL, offsetof(struct host_info, kernel_name) },
415 { "KernelRelease", "s", NULL, offsetof(struct host_info, kernel_release) },
416 { "KernelVersion", "s", NULL, offsetof(struct host_info, kernel_version) },
7e690cef
DH
417 { "OperatingSystemPrettyName", "s", NULL, offsetof(struct host_info, os_pretty_name) },
418 {}
419 };
420
421 static const struct bus_properties_map manager_map[] = {
b1b533a0
LP
422 { "Virtualization", "s", NULL, offsetof(struct host_info, virtualization) },
423 { "Architecture", "s", NULL, offsetof(struct host_info, architecture) },
7e690cef
DH
424 {}
425 };
426
4afd3348 427 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
4f481d76 428 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *system_bus = NULL;
b1b533a0
LP
429 _cleanup_(free_host_infop) struct host_info *host;
430 int r;
431
7e690cef
DH
432 host = new0(struct host_info, 1);
433 if (!host)
434 return log_oom();
435
4f481d76
YW
436 if (arg_scope != UNIT_FILE_SYSTEM) {
437 r = bus_connect_transport(arg_transport, arg_host, false, &system_bus);
438 if (r < 0) {
439 log_debug_errno(r, "Failed to connect to system bus, ignoring: %m");
440 goto manager;
441 }
442 }
443
444 r = bus_map_all_properties(system_bus ?: bus,
7e690cef
DH
445 "org.freedesktop.hostname1",
446 "/org/freedesktop/hostname1",
447 hostname_map,
a7e4861c 448 BUS_MAP_STRDUP,
f9e0eefc 449 &error,
f37f8a61 450 NULL,
7e690cef 451 host);
4f481d76
YW
452 if (r < 0) {
453 log_debug_errno(r, "Failed to get host information from systemd-hostnamed, ignoring: %s", bus_error_message(&error, r));
454 sd_bus_error_free(&error);
455 }
7e690cef 456
4f481d76 457manager:
7e690cef
DH
458 r = bus_map_all_properties(bus,
459 "org.freedesktop.systemd1",
460 "/org/freedesktop/systemd1",
461 manager_map,
a7e4861c 462 BUS_MAP_STRDUP,
f9e0eefc 463 &error,
f37f8a61 464 NULL,
7e690cef 465 host);
febda62a 466 if (r < 0)
b1b533a0 467 return log_error_errno(r, "Failed to get host information from systemd: %s", bus_error_message(&error, r));
7e690cef 468
1cc6c93a 469 *hi = TAKE_PTR(host);
b1b533a0 470
7e690cef 471 return 0;
7e690cef
DH
472}
473
048ecf5b 474static int pretty_boot_time(sd_bus *bus, char **_buf) {
c170f3a4 475 char ts[FORMAT_TIMESPAN_MAX];
2265fbf7 476 struct boot_times *t;
2265fbf7 477 static char buf[4096];
c170f3a4
LP
478 size_t size;
479 char *ptr;
480 int r;
bd07d3d0
JR
481 usec_t activated_time = USEC_INFINITY;
482 _cleanup_free_ char* path = NULL, *unit_id = NULL;
483 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
c170f3a4
LP
484
485 r = acquire_boot_times(bus, &t);
486 if (r < 0)
487 return r;
2265fbf7 488
bd07d3d0
JR
489 path = unit_dbus_path_from_name(SPECIAL_DEFAULT_TARGET);
490 if (!path)
491 return log_oom();
492
493 r = sd_bus_get_property_string(
494 bus,
495 "org.freedesktop.systemd1",
496 path,
497 "org.freedesktop.systemd1.Unit",
498 "Id",
499 &error,
500 &unit_id);
501 if (r < 0) {
502 log_error_errno(r, "default.target doesn't seem to exist: %s", bus_error_message(&error, r));
503 unit_id = NULL;
504 }
505
506 r = bus_get_uint64_property(bus, path,
507 "org.freedesktop.systemd1.Unit",
508 "ActiveEnterTimestampMonotonic",
509 &activated_time);
510 if (r < 0) {
0c753963 511 log_info_errno(r, "Could not get time to reach default.target, ignoring: %m");
bd07d3d0
JR
512 activated_time = USEC_INFINITY;
513 }
514
c170f3a4
LP
515 ptr = buf;
516 size = sizeof(buf);
2265fbf7
SP
517
518 size = strpcpyf(&ptr, size, "Startup finished in ");
baa4880b 519 if (t->firmware_time > 0)
2fa4092c 520 size = strpcpyf(&ptr, size, "%s (firmware) + ", format_timespan(ts, sizeof(ts), t->firmware_time - t->loader_time, USEC_PER_MSEC));
baa4880b 521 if (t->loader_time > 0)
2fa4092c 522 size = strpcpyf(&ptr, size, "%s (loader) + ", format_timespan(ts, sizeof(ts), t->loader_time, USEC_PER_MSEC));
02be0cca 523 if (t->kernel_done_time > 0)
2fa4092c 524 size = strpcpyf(&ptr, size, "%s (kernel) + ", format_timespan(ts, sizeof(ts), t->kernel_done_time, USEC_PER_MSEC));
2265fbf7 525 if (t->initrd_time > 0)
2fa4092c 526 size = strpcpyf(&ptr, size, "%s (initrd) + ", format_timespan(ts, sizeof(ts), t->userspace_time - t->initrd_time, USEC_PER_MSEC));
2265fbf7 527
2fa4092c 528 size = strpcpyf(&ptr, size, "%s (userspace) ", format_timespan(ts, sizeof(ts), t->finish_time - t->userspace_time, USEC_PER_MSEC));
02be0cca 529 if (t->kernel_done_time > 0)
feb92776 530 strpcpyf(&ptr, size, "= %s ", format_timespan(ts, sizeof(ts), t->firmware_time + t->finish_time, USEC_PER_MSEC));
2265fbf7 531
eddb5037 532 if (unit_id && activated_time > 0 && activated_time != USEC_INFINITY) {
b5d6f7ea
ZJS
533 usec_t base = t->userspace_time > 0 ? t->userspace_time : t->reverse_offset;
534
535 size = strpcpyf(&ptr, size, "\n%s reached after %s in userspace", unit_id,
536 format_timespan(ts, sizeof(ts), activated_time - base, USEC_PER_MSEC));
eddb5037 537 } else if (unit_id && activated_time == 0)
da933f7d
JR
538 size = strpcpyf(&ptr, size, "\n%s was never reached", unit_id);
539 else if (unit_id && activated_time == USEC_INFINITY)
feb92776 540 size = strpcpyf(&ptr, size, "\nCould not get time to reach %s.", unit_id);
da933f7d
JR
541 else if (!unit_id)
542 size = strpcpyf(&ptr, size, "\ncould not find default.target");
543
c170f3a4
LP
544 ptr = strdup(buf);
545 if (!ptr)
546 return log_oom();
547
548 *_buf = ptr;
549 return 0;
2265fbf7
SP
550}
551
c170f3a4
LP
552static void svg_graph_box(double height, double begin, double end) {
553 long long i;
554
2265fbf7
SP
555 /* outside box, fill */
556 svg("<rect class=\"box\" x=\"0\" y=\"0\" width=\"%.03f\" height=\"%.03f\" />\n",
2f6eb835 557 SCALE_X * (end - begin), SCALE_Y * height);
2265fbf7 558
c170f3a4 559 for (i = ((long long) (begin / 100000)) * 100000; i <= end; i+=100000) {
2265fbf7 560 /* lines for each second */
c170f3a4 561 if (i % 5000000 == 0)
2265fbf7
SP
562 svg(" <line class=\"sec5\" x1=\"%.03f\" y1=\"0\" x2=\"%.03f\" y2=\"%.03f\" />\n"
563 " <text class=\"sec\" x=\"%.03f\" y=\"%.03f\" >%.01fs</text>\n",
2f6eb835 564 SCALE_X * i, SCALE_X * i, SCALE_Y * height, SCALE_X * i, -5.0, 0.000001 * i);
c170f3a4 565 else if (i % 1000000 == 0)
2265fbf7
SP
566 svg(" <line class=\"sec1\" x1=\"%.03f\" y1=\"0\" x2=\"%.03f\" y2=\"%.03f\" />\n"
567 " <text class=\"sec\" x=\"%.03f\" y=\"%.03f\" >%.01fs</text>\n",
2f6eb835 568 SCALE_X * i, SCALE_X * i, SCALE_Y * height, SCALE_X * i, -5.0, 0.000001 * i);
2265fbf7
SP
569 else
570 svg(" <line class=\"sec01\" x1=\"%.03f\" y1=\"0\" x2=\"%.03f\" y2=\"%.03f\" />\n",
2f6eb835 571 SCALE_X * i, SCALE_X * i, SCALE_Y * height);
2265fbf7
SP
572 }
573}
574
7725fc11
YW
575static int plot_unit_times(struct unit_times *u, double width, int y) {
576 char ts[FORMAT_TIMESPAN_MAX];
577 bool b;
578
579 if (!u->name)
580 return 0;
581
582 svg_bar("activating", u->activating, u->activated, y);
583 svg_bar("active", u->activated, u->deactivating, y);
584 svg_bar("deactivating", u->deactivating, u->deactivated, y);
585
586 /* place the text on the left if we have passed the half of the svg width */
587 b = u->activating * SCALE_X < width / 2;
588 if (u->time)
589 svg_text(b, u->activating, y, "%s (%s)",
590 u->name, format_timespan(ts, sizeof(ts), u->time, USEC_PER_MSEC));
591 else
592 svg_text(b, u->activating, y, "%s", u->name);
593
594 return 1;
595}
596
a6bcef29 597static int analyze_plot(int argc, char *argv[], void *userdata) {
b1b533a0 598 _cleanup_(free_host_infop) struct host_info *host = NULL;
a6bcef29 599 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
df560cf6 600 _cleanup_(unit_times_freep) struct unit_times *times = NULL;
4f481d76
YW
601 _cleanup_free_ char *pretty_times = NULL;
602 bool use_full_bus = arg_scope == UNIT_FILE_SYSTEM;
2265fbf7 603 struct boot_times *boot;
4f481d76 604 struct unit_times *u;
a6bcef29 605 int n, m = 1, y = 0, r;
2265fbf7 606 double width;
2265fbf7 607
f7e29336 608 r = acquire_bus(&bus, &use_full_bus);
a6bcef29
LP
609 if (r < 0)
610 return log_error_errno(r, "Failed to create bus connection: %m");
611
c170f3a4
LP
612 n = acquire_boot_times(bus, &boot);
613 if (n < 0)
614 return n;
2265fbf7 615
c170f3a4
LP
616 n = pretty_boot_time(bus, &pretty_times);
617 if (n < 0)
618 return n;
2265fbf7 619
4f481d76 620 if (use_full_bus || arg_scope != UNIT_FILE_SYSTEM) {
5c69b31c
GJ
621 n = acquire_host_info(bus, &host);
622 if (n < 0)
623 return n;
624 }
2265fbf7
SP
625
626 n = acquire_time_data(bus, &times);
c170f3a4 627 if (n <= 0)
19f462f2 628 return n;
2265fbf7 629
93bab288 630 typesafe_qsort(times, n, compare_unit_start);
2265fbf7 631
2f6eb835 632 width = SCALE_X * (boot->firmware_time + boot->finish_time);
2265fbf7
SP
633 if (width < 800.0)
634 width = 800.0;
635
636 if (boot->firmware_time > boot->loader_time)
637 m++;
baa4880b 638 if (boot->loader_time > 0) {
2265fbf7
SP
639 m++;
640 if (width < 1000.0)
641 width = 1000.0;
642 }
baa4880b 643 if (boot->initrd_time > 0)
2265fbf7 644 m++;
02be0cca 645 if (boot->kernel_done_time > 0)
2265fbf7
SP
646 m++;
647
df560cf6 648 for (u = times; u->has_data; u++) {
95168f7d 649 double text_start, text_width;
c170f3a4 650
7725fc11 651 if (u->activating > boot->finish_time) {
a1e58e8e 652 u->name = mfree(u->name);
2265fbf7
SP
653 continue;
654 }
95168f7d
TA
655
656 /* If the text cannot fit on the left side then
657 * increase the svg width so it fits on the right.
658 * TODO: calculate the text width more accurately */
659 text_width = 8.0 * strlen(u->name);
cc27380c 660 text_start = (boot->firmware_time + u->activating) * SCALE_X;
95168f7d
TA
661 if (text_width > text_start && text_width + text_start > width)
662 width = text_width + text_start;
2265fbf7 663
efe6112d
YW
664 if (u->deactivated > u->activating &&
665 u->deactivated <= boot->finish_time &&
666 u->activated == 0 && u->deactivating == 0)
cc27380c
TA
667 u->activated = u->deactivating = u->deactivated;
668 if (u->activated < u->activating || u->activated > boot->finish_time)
669 u->activated = boot->finish_time;
efe6112d 670 if (u->deactivating < u->activated || u->deactivating > boot->finish_time)
cc27380c
TA
671 u->deactivating = boot->finish_time;
672 if (u->deactivated < u->deactivating || u->deactivated > boot->finish_time)
673 u->deactivated = boot->finish_time;
2265fbf7
SP
674 m++;
675 }
676
677 svg("<?xml version=\"1.0\" standalone=\"no\"?>\n"
678 "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" "
679 "\"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n");
680
681 svg("<svg width=\"%.0fpx\" height=\"%.0fpx\" version=\"1.1\" "
682 "xmlns=\"http://www.w3.org/2000/svg\">\n\n",
518d10e9 683 80.0 + width, 150.0 + (m * SCALE_Y) +
d9acfb71 684 5 * SCALE_Y /* legend */);
2265fbf7
SP
685
686 /* write some basic info as a comment, including some help */
687 svg("<!-- This file is a systemd-analyze SVG file. It is best rendered in a -->\n"
688 "<!-- browser such as Chrome, Chromium or Firefox. Other applications -->\n"
689 "<!-- that render these files properly but much slower are ImageMagick, -->\n"
690 "<!-- gimp, inkscape, etc. To display the files on your system, just -->\n"
691 "<!-- point your browser to this file. -->\n\n"
948aaa7c 692 "<!-- This plot was generated by systemd-analyze version %-16.16s -->\n\n", PACKAGE_VERSION);
2265fbf7
SP
693
694 /* style sheet */
695 svg("<defs>\n <style type=\"text/css\">\n <![CDATA[\n"
696 " rect { stroke-width: 1; stroke-opacity: 0; }\n"
418e3750 697 " rect.background { fill: rgb(255,255,255); }\n"
2265fbf7
SP
698 " rect.activating { fill: rgb(255,0,0); fill-opacity: 0.7; }\n"
699 " rect.active { fill: rgb(200,150,150); fill-opacity: 0.7; }\n"
700 " rect.deactivating { fill: rgb(150,100,100); fill-opacity: 0.7; }\n"
701 " rect.kernel { fill: rgb(150,150,150); fill-opacity: 0.7; }\n"
702 " rect.initrd { fill: rgb(150,150,150); fill-opacity: 0.7; }\n"
703 " rect.firmware { fill: rgb(150,150,150); fill-opacity: 0.7; }\n"
704 " rect.loader { fill: rgb(150,150,150); fill-opacity: 0.7; }\n"
705 " rect.userspace { fill: rgb(150,150,150); fill-opacity: 0.7; }\n"
c2e0d600 706 " rect.security { fill: rgb(144,238,144); fill-opacity: 0.7; }\n"
518d10e9 707 " rect.generators { fill: rgb(102,204,255); fill-opacity: 0.7; }\n"
d9acfb71 708 " rect.unitsload { fill: rgb( 82,184,255); fill-opacity: 0.7; }\n"
2265fbf7
SP
709 " rect.box { fill: rgb(240,240,240); stroke: rgb(192,192,192); }\n"
710 " line { stroke: rgb(64,64,64); stroke-width: 1; }\n"
711 "// line.sec1 { }\n"
712 " line.sec5 { stroke-width: 2; }\n"
713 " line.sec01 { stroke: rgb(224,224,224); stroke-width: 1; }\n"
2b7d6965
TA
714 " text { font-family: Verdana, Helvetica; font-size: 14px; }\n"
715 " text.left { font-family: Verdana, Helvetica; font-size: 14px; text-anchor: start; }\n"
716 " text.right { font-family: Verdana, Helvetica; font-size: 14px; text-anchor: end; }\n"
717 " text.sec { font-size: 10px; }\n"
2265fbf7
SP
718 " ]]>\n </style>\n</defs>\n\n");
719
418e3750 720 svg("<rect class=\"background\" width=\"100%%\" height=\"100%%\" />\n");
2265fbf7 721 svg("<text x=\"20\" y=\"50\">%s</text>", pretty_times);
4f481d76 722 if (host)
5c69b31c
GJ
723 svg("<text x=\"20\" y=\"30\">%s %s (%s %s %s) %s %s</text>",
724 isempty(host->os_pretty_name) ? "Linux" : host->os_pretty_name,
725 strempty(host->hostname),
726 strempty(host->kernel_name),
727 strempty(host->kernel_release),
728 strempty(host->kernel_version),
729 strempty(host->architecture),
730 strempty(host->virtualization));
2265fbf7 731
2f6eb835 732 svg("<g transform=\"translate(%.3f,100)\">\n", 20.0 + (SCALE_X * boot->firmware_time));
b5cfa740 733 svg_graph_box(m, -(double) boot->firmware_time, boot->finish_time);
2265fbf7 734
baa4880b 735 if (boot->firmware_time > 0) {
c170f3a4
LP
736 svg_bar("firmware", -(double) boot->firmware_time, -(double) boot->loader_time, y);
737 svg_text(true, -(double) boot->firmware_time, y, "firmware");
2265fbf7
SP
738 y++;
739 }
baa4880b 740 if (boot->loader_time > 0) {
c170f3a4
LP
741 svg_bar("loader", -(double) boot->loader_time, 0, y);
742 svg_text(true, -(double) boot->loader_time, y, "loader");
2265fbf7
SP
743 y++;
744 }
02be0cca 745 if (boot->kernel_done_time > 0) {
2265fbf7 746 svg_bar("kernel", 0, boot->kernel_done_time, y);
c170f3a4 747 svg_text(true, 0, y, "kernel");
2265fbf7
SP
748 y++;
749 }
baa4880b 750 if (boot->initrd_time > 0) {
2265fbf7 751 svg_bar("initrd", boot->initrd_time, boot->userspace_time, y);
8c006565
YW
752 if (boot->initrd_security_start_time < boot->initrd_security_finish_time)
753 svg_bar("security", boot->initrd_security_start_time, boot->initrd_security_finish_time, y);
754 if (boot->initrd_generators_start_time < boot->initrd_generators_finish_time)
755 svg_bar("generators", boot->initrd_generators_start_time, boot->initrd_generators_finish_time, y);
756 if (boot->initrd_unitsload_start_time < boot->initrd_unitsload_finish_time)
757 svg_bar("unitsload", boot->initrd_unitsload_start_time, boot->initrd_unitsload_finish_time, y);
c170f3a4 758 svg_text(true, boot->initrd_time, y, "initrd");
2265fbf7
SP
759 y++;
760 }
7725fc11
YW
761
762 for (u = times; u->has_data; u++) {
763 if (u->activating >= boot->userspace_time)
764 break;
765
766 y += plot_unit_times(u, width, y);
767 }
768
518d10e9 769 svg_bar("active", boot->userspace_time, boot->finish_time, y);
79ecaae4
YW
770 if (boot->security_start_time > 0)
771 svg_bar("security", boot->security_start_time, boot->security_finish_time, y);
518d10e9 772 svg_bar("generators", boot->generators_start_time, boot->generators_finish_time, y);
d9acfb71 773 svg_bar("unitsload", boot->unitsload_start_time, boot->unitsload_finish_time, y);
95168f7d 774 svg_text(true, boot->userspace_time, y, "systemd");
2265fbf7
SP
775 y++;
776
7725fc11
YW
777 for (; u->has_data; u++)
778 y += plot_unit_times(u, width, y);
518d10e9 779
b5cfa740
TA
780 svg("</g>\n");
781
518d10e9 782 /* Legend */
b5cfa740 783 svg("<g transform=\"translate(20,100)\">\n");
518d10e9
UTL
784 y++;
785 svg_bar("activating", 0, 300000, y);
95168f7d 786 svg_text(true, 400000, y, "Activating");
518d10e9
UTL
787 y++;
788 svg_bar("active", 0, 300000, y);
95168f7d 789 svg_text(true, 400000, y, "Active");
518d10e9
UTL
790 y++;
791 svg_bar("deactivating", 0, 300000, y);
95168f7d 792 svg_text(true, 400000, y, "Deactivating");
518d10e9 793 y++;
79ecaae4
YW
794 if (boot->security_start_time > 0) {
795 svg_bar("security", 0, 300000, y);
796 svg_text(true, 400000, y, "Setting up security module");
797 y++;
798 }
518d10e9 799 svg_bar("generators", 0, 300000, y);
95168f7d 800 svg_text(true, 400000, y, "Generators");
518d10e9 801 y++;
d9acfb71 802 svg_bar("unitsload", 0, 300000, y);
95168f7d 803 svg_text(true, 400000, y, "Loading unit files");
d9acfb71 804 y++;
518d10e9 805
2265fbf7
SP
806 svg("</g>\n\n");
807
988b9df2 808 svg("</svg>\n");
c170f3a4 809
df560cf6 810 return 0;
2265fbf7
SP
811}
812
14cb109d 813static int list_dependencies_print(const char *name, unsigned level, unsigned branches,
bb150966 814 bool last, struct unit_times *times, struct boot_times *boot) {
14cb109d 815 unsigned i;
bb150966
HH
816 char ts[FORMAT_TIMESPAN_MAX], ts2[FORMAT_TIMESPAN_MAX];
817
818 for (i = level; i != 0; i--)
323b7dc9 819 printf("%s", special_glyph(branches & (1 << (i-1)) ? TREE_VERTICAL : TREE_SPACE));
bb150966 820
323b7dc9 821 printf("%s", special_glyph(last ? TREE_RIGHT : TREE_BRANCH));
bb150966
HH
822
823 if (times) {
baa4880b 824 if (times->time > 0)
54f8c958 825 printf("%s%s @%s +%s%s", ansi_highlight_red(), name,
cc27380c 826 format_timespan(ts, sizeof(ts), times->activating - boot->userspace_time, USEC_PER_MSEC),
54f8c958 827 format_timespan(ts2, sizeof(ts2), times->time, USEC_PER_MSEC), ansi_normal());
cc27380c
TA
828 else if (times->activated > boot->userspace_time)
829 printf("%s @%s", name, format_timespan(ts, sizeof(ts), times->activated - boot->userspace_time, USEC_PER_MSEC));
bb150966
HH
830 else
831 printf("%s", name);
988b9df2
LP
832 } else
833 printf("%s", name);
bb150966
HH
834 printf("\n");
835
836 return 0;
837}
838
048ecf5b 839static int list_dependencies_get_dependencies(sd_bus *bus, const char *name, char ***deps) {
988b9df2 840 _cleanup_free_ char *path = NULL;
bb150966
HH
841
842 assert(bus);
843 assert(name);
844 assert(deps);
845
846 path = unit_dbus_path_from_name(name);
234519ae 847 if (!path)
988b9df2 848 return -ENOMEM;
bb150966 849
988b9df2 850 return bus_get_unit_property_strv(bus, path, "After", deps);
bb150966
HH
851}
852
853static Hashmap *unit_times_hashmap;
854
93bab288 855static int list_dependencies_compare(char * const *a, char * const *b) {
bb150966
HH
856 usec_t usa = 0, usb = 0;
857 struct unit_times *times;
858
859 times = hashmap_get(unit_times_hashmap, *a);
860 if (times)
cc27380c 861 usa = times->activated;
bb150966
HH
862 times = hashmap_get(unit_times_hashmap, *b);
863 if (times)
cc27380c 864 usb = times->activated;
bb150966 865
93bab288 866 return CMP(usb, usa);
bb150966
HH
867}
868
230cc99a
ZJS
869static bool times_in_range(const struct unit_times *times, const struct boot_times *boot) {
870 return times &&
871 times->activated > 0 && times->activated <= boot->finish_time;
872}
873
14cb109d
YW
874static int list_dependencies_one(sd_bus *bus, const char *name, unsigned level, char ***units,
875 unsigned branches) {
bb150966
HH
876 _cleanup_strv_free_ char **deps = NULL;
877 char **c;
878 int r = 0;
879 usec_t service_longest = 0;
880 int to_print = 0;
881 struct unit_times *times;
882 struct boot_times *boot;
883
988b9df2 884 if (strv_extend(units, name))
bb150966
HH
885 return log_oom();
886
887 r = list_dependencies_get_dependencies(bus, name, &deps);
888 if (r < 0)
889 return r;
890
93bab288 891 typesafe_qsort(deps, strv_length(deps), list_dependencies_compare);
bb150966
HH
892
893 r = acquire_boot_times(bus, &boot);
894 if (r < 0)
895 return r;
896
897 STRV_FOREACH(c, deps) {
898 times = hashmap_get(unit_times_hashmap, *c);
230cc99a 899 if (times_in_range(times, boot) &&
e6813152 900 times->activated >= service_longest)
cc27380c 901 service_longest = times->activated;
bb150966
HH
902 }
903
234519ae 904 if (service_longest == 0)
bb150966
HH
905 return r;
906
907 STRV_FOREACH(c, deps) {
908 times = hashmap_get(unit_times_hashmap, *c);
230cc99a
ZJS
909 if (times_in_range(times, boot) &&
910 service_longest - times->activated <= arg_fuzz)
bb150966 911 to_print++;
bb150966
HH
912 }
913
f168c273 914 if (!to_print)
bb150966
HH
915 return r;
916
917 STRV_FOREACH(c, deps) {
918 times = hashmap_get(unit_times_hashmap, *c);
230cc99a
ZJS
919 if (!times_in_range(times, boot) ||
920 service_longest - times->activated > arg_fuzz)
bb150966
HH
921 continue;
922
923 to_print--;
924
925 r = list_dependencies_print(*c, level, branches, to_print == 0, times, boot);
926 if (r < 0)
927 return r;
928
929 if (strv_contains(*units, *c)) {
930 r = list_dependencies_print("...", level + 1, (branches << 1) | (to_print ? 1 : 0),
931 true, NULL, boot);
872c8faa
ZJS
932 if (r < 0)
933 return r;
bb150966
HH
934 continue;
935 }
936
937 r = list_dependencies_one(bus, *c, level + 1, units,
938 (branches << 1) | (to_print ? 1 : 0));
872c8faa 939 if (r < 0)
bb150966
HH
940 return r;
941
baa4880b 942 if (to_print == 0)
bb150966 943 break;
bb150966
HH
944 }
945 return 0;
946}
947
048ecf5b 948static int list_dependencies(sd_bus *bus, const char *name) {
bb150966
HH
949 _cleanup_strv_free_ char **units = NULL;
950 char ts[FORMAT_TIMESPAN_MAX];
951 struct unit_times *times;
952 int r;
0ee9613d
TA
953 const char *id;
954 _cleanup_free_ char *path = NULL;
4afd3348
LP
955 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
956 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
bb150966
HH
957 struct boot_times *boot;
958
959 assert(bus);
960
805bf39c 961 path = unit_dbus_path_from_name(name);
234519ae 962 if (!path)
988b9df2 963 return -ENOMEM;
bb150966 964
a936124f
TA
965 r = sd_bus_get_property(
966 bus,
967 "org.freedesktop.systemd1",
968 path,
969 "org.freedesktop.systemd1.Unit",
970 "Id",
971 &error,
972 &reply,
973 "s");
4ae25393
YW
974 if (r < 0)
975 return log_error_errno(r, "Failed to get ID: %s", bus_error_message(&error, -r));
bb150966 976
048ecf5b 977 r = sd_bus_message_read(reply, "s", &id);
5b30bef8
LP
978 if (r < 0)
979 return bus_log_parse_error(r);
bb150966 980
bb150966
HH
981 times = hashmap_get(unit_times_hashmap, id);
982
983 r = acquire_boot_times(bus, &boot);
984 if (r < 0)
985 return r;
986
987 if (times) {
988 if (times->time)
54f8c958
LP
989 printf("%s%s +%s%s\n", ansi_highlight_red(), id,
990 format_timespan(ts, sizeof(ts), times->time, USEC_PER_MSEC), ansi_normal());
cc27380c
TA
991 else if (times->activated > boot->userspace_time)
992 printf("%s @%s\n", id, format_timespan(ts, sizeof(ts), times->activated - boot->userspace_time, USEC_PER_MSEC));
bb150966
HH
993 else
994 printf("%s\n", id);
995 }
996
805bf39c 997 return list_dependencies_one(bus, name, 0, &units, 0);
bb150966
HH
998}
999
a6bcef29
LP
1000static int analyze_critical_chain(int argc, char *argv[], void *userdata) {
1001 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
df560cf6
FB
1002 _cleanup_(unit_times_freep) struct unit_times *times = NULL;
1003 struct unit_times *u;
bb150966 1004 Hashmap *h;
988b9df2 1005 int n, r;
bb150966 1006
f7e29336 1007 r = acquire_bus(&bus, NULL);
a6bcef29
LP
1008 if (r < 0)
1009 return log_error_errno(r, "Failed to create bus connection: %m");
1010
bb150966
HH
1011 n = acquire_time_data(bus, &times);
1012 if (n <= 0)
1013 return n;
1014
d5099efc 1015 h = hashmap_new(&string_hash_ops);
bb150966 1016 if (!h)
8efbce13 1017 return log_oom();
bb150966 1018
df560cf6
FB
1019 for (u = times; u->has_data; u++) {
1020 r = hashmap_put(h, u->name, u);
bb150966 1021 if (r < 0)
8efbce13 1022 return log_error_errno(r, "Failed to add entry to hashmap: %m");
bb150966
HH
1023 }
1024 unit_times_hashmap = h;
1025
0221d68a 1026 (void) pager_open(arg_pager_flags);
9ea9d4cf 1027
bb150966
HH
1028 puts("The time after the unit is active or started is printed after the \"@\" character.\n"
1029 "The time the unit takes to start is printed after the \"+\" character.\n");
1030
a6bcef29 1031 if (argc > 1) {
805bf39c 1032 char **name;
a6bcef29 1033 STRV_FOREACH(name, strv_skip(argv, 1))
805bf39c 1034 list_dependencies(bus, *name);
9ea9d4cf 1035 } else
805bf39c 1036 list_dependencies(bus, SPECIAL_DEFAULT_TARGET);
bb150966 1037
a6bcef29 1038 h = hashmap_free(h);
bb150966
HH
1039 return 0;
1040}
1041
a6bcef29
LP
1042static int analyze_blame(int argc, char *argv[], void *userdata) {
1043 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
df560cf6
FB
1044 _cleanup_(unit_times_freep) struct unit_times *times = NULL;
1045 struct unit_times *u;
a6bcef29
LP
1046 int n, r;
1047
f7e29336 1048 r = acquire_bus(&bus, NULL);
a6bcef29
LP
1049 if (r < 0)
1050 return log_error_errno(r, "Failed to create bus connection: %m");
c170f3a4
LP
1051
1052 n = acquire_time_data(bus, &times);
1053 if (n <= 0)
2265fbf7
SP
1054 return n;
1055
93bab288 1056 typesafe_qsort(times, n, compare_unit_time);
2265fbf7 1057
0221d68a 1058 (void) pager_open(arg_pager_flags);
9ea9d4cf 1059
df560cf6 1060 for (u = times; u->has_data; u++) {
c170f3a4
LP
1061 char ts[FORMAT_TIMESPAN_MAX];
1062
df560cf6
FB
1063 if (u->time > 0)
1064 printf("%16s %s\n", format_timespan(ts, sizeof(ts), u->time, USEC_PER_MSEC), u->name);
2265fbf7 1065 }
c170f3a4 1066
2265fbf7
SP
1067 return 0;
1068}
1069
a6bcef29
LP
1070static int analyze_time(int argc, char *argv[], void *userdata) {
1071 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
c170f3a4
LP
1072 _cleanup_free_ char *buf = NULL;
1073 int r;
1074
f7e29336 1075 r = acquire_bus(&bus, NULL);
a6bcef29
LP
1076 if (r < 0)
1077 return log_error_errno(r, "Failed to create bus connection: %m");
1078
c170f3a4
LP
1079 r = pretty_boot_time(bus, &buf);
1080 if (r < 0)
1081 return r;
1082
1083 puts(buf);
2265fbf7
SP
1084 return 0;
1085}
1086
4387795e 1087static int graph_one_property(sd_bus *bus, const UnitInfo *u, const char* prop, const char *color, char* patterns[], char* from_patterns[], char* to_patterns[]) {
048ecf5b 1088 _cleanup_strv_free_ char **units = NULL;
048ecf5b
TA
1089 char **unit;
1090 int r;
6ecb6cec 1091 bool match_patterns;
1700761b 1092
048ecf5b 1093 assert(u);
1700761b 1094 assert(prop);
048ecf5b
TA
1095 assert(color);
1096
2404701e 1097 match_patterns = strv_fnmatch(patterns, u->id, 0);
6ecb6cec 1098
4387795e 1099 if (!strv_isempty(from_patterns) &&
6ecb6cec 1100 !match_patterns &&
4387795e 1101 !strv_fnmatch(from_patterns, u->id, 0))
6ecb6cec
ZJS
1102 return 0;
1103
6e6ca4a5 1104 r = bus_get_unit_property_strv(bus, u->unit_path, prop, &units);
07d0eaa0 1105 if (r < 0)
988b9df2 1106 return r;
1700761b 1107
048ecf5b 1108 STRV_FOREACH(unit, units) {
6ecb6cec
ZJS
1109 bool match_patterns2;
1110
2404701e 1111 match_patterns2 = strv_fnmatch(patterns, *unit, 0);
816f25e8 1112
4387795e 1113 if (!strv_isempty(to_patterns) &&
6ecb6cec 1114 !match_patterns2 &&
4387795e 1115 !strv_fnmatch(to_patterns, *unit, 0))
bceccd5e 1116 continue;
e55933db 1117
6ecb6cec 1118 if (!strv_isempty(patterns) && !match_patterns && !match_patterns2)
bceccd5e 1119 continue;
048ecf5b
TA
1120
1121 printf("\t\"%s\"->\"%s\" [color=\"%s\"];\n", u->id, *unit, color);
1700761b
SP
1122 }
1123
1124 return 0;
1125}
1126
4387795e 1127static int graph_one(sd_bus *bus, const UnitInfo *u, char *patterns[], char *from_patterns[], char *to_patterns[]) {
1700761b 1128 int r;
1700761b
SP
1129
1130 assert(bus);
1131 assert(u);
1132
8901b405 1133 if (IN_SET(arg_dot, DEP_ORDER, DEP_ALL)) {
4387795e 1134 r = graph_one_property(bus, u, "After", "green", patterns, from_patterns, to_patterns);
048ecf5b
TA
1135 if (r < 0)
1136 return r;
1700761b
SP
1137 }
1138
8901b405 1139 if (IN_SET(arg_dot, DEP_REQUIRE, DEP_ALL)) {
4387795e 1140 r = graph_one_property(bus, u, "Requires", "black", patterns, from_patterns, to_patterns);
8901b405
MS
1141 if (r < 0)
1142 return r;
1143 r = graph_one_property(bus, u, "Requisite", "darkblue", patterns, from_patterns, to_patterns);
048ecf5b
TA
1144 if (r < 0)
1145 return r;
4387795e 1146 r = graph_one_property(bus, u, "Wants", "grey66", patterns, from_patterns, to_patterns);
048ecf5b
TA
1147 if (r < 0)
1148 return r;
4387795e 1149 r = graph_one_property(bus, u, "Conflicts", "red", patterns, from_patterns, to_patterns);
048ecf5b
TA
1150 if (r < 0)
1151 return r;
1700761b
SP
1152 }
1153
1154 return 0;
1155}
1156
83efb7c2
EV
1157static int expand_patterns(sd_bus *bus, char **patterns, char ***ret) {
1158 _cleanup_strv_free_ char **expanded_patterns = NULL;
1159 char **pattern;
1160 int r;
1161
1162 STRV_FOREACH(pattern, patterns) {
4afd3348 1163 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
83efb7c2
EV
1164 _cleanup_free_ char *unit = NULL, *unit_id = NULL;
1165
1166 if (strv_extend(&expanded_patterns, *pattern) < 0)
1167 return log_oom();
1168
1169 if (string_is_glob(*pattern))
1170 continue;
1171
1172 unit = unit_dbus_path_from_name(*pattern);
1173 if (!unit)
1174 return log_oom();
1175
1176 r = sd_bus_get_property_string(
1177 bus,
1178 "org.freedesktop.systemd1",
1179 unit,
1180 "org.freedesktop.systemd1.Unit",
1181 "Id",
1182 &error,
1183 &unit_id);
1184 if (r < 0)
1185 return log_error_errno(r, "Failed to get ID: %s", bus_error_message(&error, r));
1186
1187 if (!streq(*pattern, unit_id)) {
1188 if (strv_extend(&expanded_patterns, unit_id) < 0)
1189 return log_oom();
1190 }
1191 }
1192
1193 *ret = expanded_patterns;
1194 expanded_patterns = NULL; /* do not free */
1195
1196 return 0;
1197}
1198
a6bcef29 1199static int dot(int argc, char *argv[], void *userdata) {
4afd3348
LP
1200 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1201 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
a6bcef29 1202 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
83efb7c2 1203 _cleanup_strv_free_ char **expanded_patterns = NULL;
4387795e
EV
1204 _cleanup_strv_free_ char **expanded_from_patterns = NULL;
1205 _cleanup_strv_free_ char **expanded_to_patterns = NULL;
1700761b 1206 int r;
f459b602 1207 UnitInfo u;
048ecf5b 1208
f7e29336 1209 r = acquire_bus(&bus, NULL);
a6bcef29
LP
1210 if (r < 0)
1211 return log_error_errno(r, "Failed to create bus connection: %m");
1212
1213 r = expand_patterns(bus, strv_skip(argv, 1), &expanded_patterns);
83efb7c2
EV
1214 if (r < 0)
1215 return r;
1216
4387795e
EV
1217 r = expand_patterns(bus, arg_dot_from_patterns, &expanded_from_patterns);
1218 if (r < 0)
1219 return r;
1220
1221 r = expand_patterns(bus, arg_dot_to_patterns, &expanded_to_patterns);
1222 if (r < 0)
1223 return r;
1224
a936124f
TA
1225 r = sd_bus_call_method(
1226 bus,
1227 "org.freedesktop.systemd1",
1228 "/org/freedesktop/systemd1",
1229 "org.freedesktop.systemd1.Manager",
1230 "ListUnits",
1231 &error,
1232 &reply,
1233 "");
4ae25393
YW
1234 if (r < 0)
1235 log_error_errno(r, "Failed to list units: %s", bus_error_message(&error, -r));
1700761b 1236
048ecf5b 1237 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssssssouso)");
1700761b 1238 if (r < 0)
988b9df2 1239 return bus_log_parse_error(r);
1700761b
SP
1240
1241 printf("digraph systemd {\n");
1242
048ecf5b 1243 while ((r = bus_parse_unit_info(reply, &u)) > 0) {
f459b602 1244
4387795e 1245 r = graph_one(bus, &u, expanded_patterns, expanded_from_patterns, expanded_to_patterns);
1700761b
SP
1246 if (r < 0)
1247 return r;
1248 }
f459b602
MAP
1249 if (r < 0)
1250 return bus_log_parse_error(r);
1700761b
SP
1251
1252 printf("}\n");
1253
1254 log_info(" Color legend: black = Requires\n"
1255 " dark blue = Requisite\n"
1256 " dark grey = Wants\n"
1257 " red = Conflicts\n"
1258 " green = After\n");
1259
1260 if (on_tty())
1261 log_notice("-- You probably want to process this output with graphviz' dot tool.\n"
1262 "-- Try a shell pipeline like 'systemd-analyze dot | dot -Tsvg > systemd.svg'!\n");
1263
1264 return 0;
1265}
c8a8806e 1266
c0a1bfac
DT
1267static int dump_fallback(sd_bus *bus) {
1268 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1269 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1270 const char *text = NULL;
1271 int r;
1272
1273 assert(bus);
1274
1275 r = sd_bus_call_method(
1276 bus,
1277 "org.freedesktop.systemd1",
1278 "/org/freedesktop/systemd1",
1279 "org.freedesktop.systemd1.Manager",
1280 "Dump",
1281 &error,
1282 &reply,
1283 NULL);
1284 if (r < 0)
1285 return log_error_errno(r, "Failed to issue method call Dump: %s", bus_error_message(&error, r));
1286
1287 r = sd_bus_message_read(reply, "s", &text);
1288 if (r < 0)
1289 return bus_log_parse_error(r);
1290
1291 fputs(text, stdout);
1292 return 0;
1293}
1294
a6bcef29 1295static int dump(int argc, char *argv[], void *userdata) {
4afd3348 1296 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
a6bcef29
LP
1297 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1298 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
c0a1bfac 1299 int fd = -1;
9ea9d4cf 1300 int r;
9ea9d4cf 1301
f7e29336 1302 r = acquire_bus(&bus, NULL);
a6bcef29
LP
1303 if (r < 0)
1304 return log_error_errno(r, "Failed to create bus connection: %m");
a65615ca 1305
0221d68a 1306 (void) pager_open(arg_pager_flags);
9ea9d4cf 1307
c0a1bfac
DT
1308 if (!sd_bus_can_send(bus, SD_BUS_TYPE_UNIX_FD))
1309 return dump_fallback(bus);
1310
a936124f
TA
1311 r = sd_bus_call_method(
1312 bus,
8486c923
LP
1313 "org.freedesktop.systemd1",
1314 "/org/freedesktop/systemd1",
1315 "org.freedesktop.systemd1.Manager",
c0a1bfac 1316 "DumpByFileDescriptor",
8486c923
LP
1317 &error,
1318 &reply,
1319 NULL);
c0a1bfac
DT
1320 if (r < 0) {
1321 /* fall back to Dump if DumpByFileDescriptor is not supported */
1322 if (!IN_SET(r, -EACCES, -EBADR))
1323 return log_error_errno(r, "Failed to issue method call DumpByFileDescriptor: %s", bus_error_message(&error, r));
9ea9d4cf 1324
c0a1bfac
DT
1325 return dump_fallback(bus);
1326 }
1327
1328 r = sd_bus_message_read(reply, "h", &fd);
5b30bef8
LP
1329 if (r < 0)
1330 return bus_log_parse_error(r);
9ea9d4cf 1331
c0a1bfac
DT
1332 fflush(stdout);
1333 return copy_bytes(fd, STDOUT_FILENO, (uint64_t) -1, 0);
9ea9d4cf
LP
1334}
1335
854a42fb
ZJS
1336static int cat_config(int argc, char *argv[], void *userdata) {
1337 char **arg;
1338 int r;
1339
0221d68a 1340 (void) pager_open(arg_pager_flags);
854a42fb
ZJS
1341
1342 STRV_FOREACH(arg, argv + 1) {
971f6ea5
ZJS
1343 const char *t = NULL;
1344
854a42fb 1345 if (arg != argv + 1)
cb91deaf 1346 print_separator();
854a42fb
ZJS
1347
1348 if (path_is_absolute(*arg)) {
971f6ea5
ZJS
1349 const char *dir;
1350
1351 NULSTR_FOREACH(dir, CONF_PATHS_NULSTR("")) {
1352 t = path_startswith(*arg, dir);
1353 if (t)
1354 break;
1355 }
1356
1357 if (!t) {
1358 log_error("Path %s does not start with any known prefix.", *arg);
1359 return -EINVAL;
1360 }
1361 } else
1362 t = *arg;
1363
1364 r = conf_files_cat(arg_root, t);
854a42fb
ZJS
1365 if (r < 0)
1366 return r;
1367 }
1368
1369 return 0;
1370}
1371
a6bcef29 1372static int set_log_level(int argc, char *argv[], void *userdata) {
4afd3348 1373 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
a6bcef29 1374 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
048ecf5b 1375 int r;
a65615ca 1376
a6bcef29
LP
1377 assert(argc == 2);
1378 assert(argv);
a65615ca 1379
f7e29336 1380 r = acquire_bus(&bus, NULL);
a6bcef29
LP
1381 if (r < 0)
1382 return log_error_errno(r, "Failed to create bus connection: %m");
a65615ca 1383
a936124f
TA
1384 r = sd_bus_set_property(
1385 bus,
1386 "org.freedesktop.systemd1",
1387 "/org/freedesktop/systemd1",
1388 "org.freedesktop.systemd1.Manager",
1389 "LogLevel",
1390 &error,
1391 "s",
a6bcef29 1392 argv[1]);
2ca2a91c
LP
1393 if (r < 0)
1394 return log_error_errno(r, "Failed to issue method call: %s", bus_error_message(&error, r));
1395
1396 return 0;
1397}
1398
a6bcef29 1399static int get_log_level(int argc, char *argv[], void *userdata) {
ef5a8cb1 1400 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
a6bcef29 1401 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
ef5a8cb1 1402 _cleanup_free_ char *level = NULL;
a6bcef29 1403 int r;
ef5a8cb1 1404
f7e29336 1405 r = acquire_bus(&bus, NULL);
a6bcef29
LP
1406 if (r < 0)
1407 return log_error_errno(r, "Failed to create bus connection: %m");
ef5a8cb1
LW
1408
1409 r = sd_bus_get_property_string(
1410 bus,
1411 "org.freedesktop.systemd1",
1412 "/org/freedesktop/systemd1",
1413 "org.freedesktop.systemd1.Manager",
1414 "LogLevel",
1415 &error,
1416 &level);
1417 if (r < 0)
1418 return log_error_errno(r, "Failed to get log level: %s", bus_error_message(&error, r));
1419
1420 puts(level);
1421 return 0;
1422}
1423
90657286
YW
1424static int get_or_set_log_level(int argc, char *argv[], void *userdata) {
1425 return (argc == 1) ? get_log_level(argc, argv, userdata) : set_log_level(argc, argv, userdata);
1426}
1427
a6bcef29 1428static int set_log_target(int argc, char *argv[], void *userdata) {
4afd3348 1429 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
a6bcef29 1430 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
2ca2a91c
LP
1431 int r;
1432
a6bcef29
LP
1433 assert(argc == 2);
1434 assert(argv);
2ca2a91c 1435
f7e29336 1436 r = acquire_bus(&bus, NULL);
a6bcef29
LP
1437 if (r < 0)
1438 return log_error_errno(r, "Failed to create bus connection: %m");
a65615ca 1439
2ca2a91c
LP
1440 r = sd_bus_set_property(
1441 bus,
1442 "org.freedesktop.systemd1",
1443 "/org/freedesktop/systemd1",
1444 "org.freedesktop.systemd1.Manager",
1445 "LogTarget",
1446 &error,
1447 "s",
a6bcef29 1448 argv[1]);
2ca2a91c
LP
1449 if (r < 0)
1450 return log_error_errno(r, "Failed to issue method call: %s", bus_error_message(&error, r));
1451
a65615ca
LP
1452 return 0;
1453}
1454
a6bcef29 1455static int get_log_target(int argc, char *argv[], void *userdata) {
ef5a8cb1 1456 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
a6bcef29 1457 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
ef5a8cb1 1458 _cleanup_free_ char *target = NULL;
a6bcef29 1459 int r;
ef5a8cb1 1460
f7e29336 1461 r = acquire_bus(&bus, NULL);
a6bcef29
LP
1462 if (r < 0)
1463 return log_error_errno(r, "Failed to create bus connection: %m");
ef5a8cb1
LW
1464
1465 r = sd_bus_get_property_string(
1466 bus,
1467 "org.freedesktop.systemd1",
1468 "/org/freedesktop/systemd1",
1469 "org.freedesktop.systemd1.Manager",
1470 "LogTarget",
1471 &error,
1472 &target);
1473 if (r < 0)
1474 return log_error_errno(r, "Failed to get log target: %s", bus_error_message(&error, r));
1475
1476 puts(target);
1477 return 0;
1478}
1479
90657286
YW
1480static int get_or_set_log_target(int argc, char *argv[], void *userdata) {
1481 return (argc == 1) ? get_log_target(argc, argv, userdata) : set_log_target(argc, argv, userdata);
1482}
1483
31a5924e 1484static int dump_unit_paths(int argc, char *argv[], void *userdata) {
8e766630 1485 _cleanup_(lookup_paths_free) LookupPaths paths = {};
31a5924e
ZJS
1486 int r;
1487 char **p;
1488
1489 r = lookup_paths_init(&paths, arg_scope, 0, NULL);
1490 if (r < 0)
1491 return log_error_errno(r, "lookup_paths_init() failed: %m");
1492
1493 STRV_FOREACH(p, paths.search_path)
1494 puts(*p);
1495
1496 return 0;
1497}
1498
349cc4a5 1499#if HAVE_SECCOMP
869feb33
ZJS
1500static void dump_syscall_filter(const SyscallFilterSet *set) {
1501 const char *syscall;
1502
1503 printf("%s\n", set->name);
d5efc18b 1504 printf(" # %s\n", set->help);
869feb33
ZJS
1505 NULSTR_FOREACH(syscall, set->value)
1506 printf(" %s\n", syscall);
1507}
1508
a6bcef29 1509static int dump_syscall_filters(int argc, char *argv[], void *userdata) {
869feb33
ZJS
1510 bool first = true;
1511
0221d68a 1512 (void) pager_open(arg_pager_flags);
869feb33 1513
a6bcef29 1514 if (strv_isempty(strv_skip(argv, 1))) {
869feb33
ZJS
1515 int i;
1516
1517 for (i = 0; i < _SYSCALL_FILTER_SET_MAX; i++) {
1518 if (!first)
1519 puts("");
1520 dump_syscall_filter(syscall_filter_sets + i);
1521 first = false;
1522 }
1523 } else {
1524 char **name;
1525
a6bcef29 1526 STRV_FOREACH(name, strv_skip(argv, 1)) {
869feb33
ZJS
1527 const SyscallFilterSet *set;
1528
1529 if (!first)
1530 puts("");
1531
1532 set = syscall_filter_set_find(*name);
1533 if (!set) {
1534 /* make sure the error appears below normal output */
1535 fflush(stdout);
1536
1537 log_error("Filter set \"%s\" not found.", *name);
1538 return -ENOENT;
1539 }
1540
1541 dump_syscall_filter(set);
1542 first = false;
1543 }
1544 }
1545
1546 return 0;
1547}
1548
1720590b 1549#else
ad552e58 1550static int dump_syscall_filters(int argc, char *argv[], void *userdata) {
1720590b
ZJS
1551 log_error("Not compiled with syscall filters, sorry.");
1552 return -EOPNOTSUPP;
1553}
1554#endif
1555
3f1c1287
CD
1556static int dump_timespan(int argc, char *argv[], void *userdata) {
1557 char **input_timespan;
1558
1559 STRV_FOREACH(input_timespan, strv_skip(argv, 1)) {
1560 int r;
1561 usec_t usec_magnitude = 1, output_usecs;
1562 char ft_buf[FORMAT_TIMESPAN_MAX];
1563
1564 r = parse_time(*input_timespan, &output_usecs, USEC_PER_SEC);
1565 if (r < 0)
1566 return log_error_errno(r, "Failed to parse time span '%s': %m", *input_timespan);
1567
1568 printf("Original: %s\n", *input_timespan);
1569 printf(" %ss: %" PRIu64 "\n", special_glyph(MU), output_usecs);
1570 printf(" Human: %s\n", format_timespan(ft_buf, sizeof(ft_buf), output_usecs, usec_magnitude));
1571
1572 if (input_timespan[1])
1573 putchar('\n');
1574 }
1575
1576 return EXIT_SUCCESS;
1577}
1578
a6bcef29 1579static int test_calendar(int argc, char *argv[], void *userdata) {
6d86f4bd
LP
1580 int ret = 0, r;
1581 char **p;
1582 usec_t n;
1583
6d86f4bd
LP
1584 n = now(CLOCK_REALTIME);
1585
a6bcef29 1586 STRV_FOREACH(p, strv_skip(argv, 1)) {
6d86f4bd
LP
1587 _cleanup_(calendar_spec_freep) CalendarSpec *spec = NULL;
1588 _cleanup_free_ char *t = NULL;
1589 usec_t next;
1590
1591 r = calendar_spec_from_string(*p, &spec);
1592 if (r < 0) {
1593 ret = log_error_errno(r, "Failed to parse calendar specification '%s': %m", *p);
1594 continue;
1595 }
1596
1597 r = calendar_spec_normalize(spec);
1598 if (r < 0) {
1599 ret = log_error_errno(r, "Failed to normalize calendar specification '%s': %m", *p);
1600 continue;
1601 }
1602
1603 r = calendar_spec_to_string(spec, &t);
1604 if (r < 0) {
3a6a6889 1605 ret = log_error_errno(r, "Failed to format calendar specification '%s': %m", *p);
6d86f4bd
LP
1606 continue;
1607 }
1608
1609 if (!streq(t, *p))
1610 printf(" Original form: %s\n", *p);
1611
1612 printf("Normalized form: %s\n", t);
1613
1614 r = calendar_spec_next_usec(spec, n, &next);
1615 if (r == -ENOENT)
1616 printf(" Next elapse: never\n");
1617 else if (r < 0) {
1618 ret = log_error_errno(r, "Failed to determine next elapse for '%s': %m", *p);
1619 continue;
1620 } else {
1621 char buffer[CONST_MAX(FORMAT_TIMESTAMP_MAX, FORMAT_TIMESTAMP_RELATIVE_MAX)];
1622
1623 printf(" Next elapse: %s\n", format_timestamp(buffer, sizeof(buffer), next));
1624
1625 if (!in_utc_timezone())
1626 printf(" (in UTC): %s\n", format_timestamp_utc(buffer, sizeof(buffer), next));
1627
1628 printf(" From now: %s\n", format_timestamp_relative(buffer, sizeof(buffer), next));
1629 }
1630
1631 if (*(p+1))
1632 putchar('\n');
1633 }
1634
1635 return ret;
1636}
1637
889d695d
JK
1638static int service_watchdogs(int argc, char *argv[], void *userdata) {
1639 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1640 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1641 int b, r;
1642
90657286 1643 assert(IN_SET(argc, 1, 2));
889d695d
JK
1644 assert(argv);
1645
f7e29336 1646 r = acquire_bus(&bus, NULL);
90657286
YW
1647 if (r < 0)
1648 return log_error_errno(r, "Failed to create bus connection: %m");
1649
1650 /* get ServiceWatchdogs */
1651 if (argc == 1) {
1652 r = sd_bus_get_property_trivial(
1653 bus,
1654 "org.freedesktop.systemd1",
1655 "/org/freedesktop/systemd1",
1656 "org.freedesktop.systemd1.Manager",
1657 "ServiceWatchdogs",
1658 &error,
1659 'b',
1660 &b);
1661 if (r < 0)
1662 return log_error_errno(r, "Failed to get service-watchdog state: %s", bus_error_message(&error, r));
1663
1664 printf("%s\n", yes_no(!!b));
1665
1666 return 0;
1667 }
1668
1669 /* set ServiceWatchdogs */
889d695d
JK
1670 b = parse_boolean(argv[1]);
1671 if (b < 0) {
1672 log_error("Failed to parse service-watchdogs argument.");
1673 return -EINVAL;
1674 }
1675
889d695d
JK
1676 r = sd_bus_set_property(
1677 bus,
1678 "org.freedesktop.systemd1",
1679 "/org/freedesktop/systemd1",
1680 "org.freedesktop.systemd1.Manager",
1681 "ServiceWatchdogs",
1682 &error,
1683 "b",
1684 b);
1685 if (r < 0)
90657286 1686 return log_error_errno(r, "Failed to set service-watchdog state: %s", bus_error_message(&error, r));
889d695d
JK
1687
1688 return 0;
1689}
1690
a6bcef29 1691static int do_verify(int argc, char *argv[], void *userdata) {
28b35ef2 1692 return verify_units(strv_skip(argv, 1), arg_scope, arg_man, arg_generators);
a6bcef29
LP
1693}
1694
1695static int help(int argc, char *argv[], void *userdata) {
37ec0fdd
LP
1696 _cleanup_free_ char *link = NULL;
1697 int r;
9ea9d4cf 1698
0221d68a 1699 (void) pager_open(arg_pager_flags);
9ea9d4cf 1700
37ec0fdd
LP
1701 r = terminal_urlify_man("systemd-analyze", "1", &link);
1702 if (r < 0)
1703 return log_oom();
1704
2265fbf7 1705 printf("%s [OPTIONS...] {COMMAND} ...\n\n"
1d3bc017 1706 "Profile systemd, show unit dependencies, check unit files.\n\n"
869feb33
ZJS
1707 " -h --help Show this help\n"
1708 " --version Show package version\n"
1709 " --no-pager Do not pipe output into a pager\n"
1710 " --system Operate on system systemd instance\n"
1711 " --user Operate on user systemd instance\n"
28b35ef2 1712 " --global Operate on global user configuration\n"
869feb33
ZJS
1713 " -H --host=[USER@]HOST Operate on remote host\n"
1714 " -M --machine=CONTAINER Operate on local container\n"
1715 " --order Show only order in the graph\n"
1716 " --require Show only requirement in the graph\n"
1717 " --from-pattern=GLOB Show only origins in the graph\n"
1718 " --to-pattern=GLOB Show only destinations in the graph\n"
1719 " --fuzz=SECONDS Also print also services which finished SECONDS\n"
1720 " earlier than the latest in the branch\n"
1721 " --man[=BOOL] Do [not] check for existence of man pages\n\n"
641c0fd1 1722 " --generators[=BOOL] Do [not] run unit generators (requires privileges)\n\n"
2265fbf7 1723 "Commands:\n"
869feb33
ZJS
1724 " time Print time spent in the kernel\n"
1725 " blame Print list of running units ordered by time to init\n"
bc6695ec 1726 " critical-chain [UNIT...] Print a tree of the time critical chain of units\n"
869feb33 1727 " plot Output SVG graphic showing service initialization\n"
bc6695ec 1728 " dot [UNIT...] Output dependency graph in man:dot(1) format\n"
90657286
YW
1729 " log-level [LEVEL] Get/set logging threshold for manager\n"
1730 " log-target [TARGET] Get/set logging target for manager\n"
869feb33 1731 " dump Output state serialization of service manager\n"
854a42fb 1732 " cat-config Show configuration file and drop-ins\n"
31a5924e 1733 " unit-paths List load directories for units\n"
869feb33
ZJS
1734 " syscall-filter [NAME...] Print list of syscalls in seccomp filter\n"
1735 " verify FILE... Check unit files for correctness\n"
6d86f4bd 1736 " calendar SPEC... Validate repetitive calendar time events\n"
90657286 1737 " service-watchdogs [BOOL] Get/set service watchdog state\n"
3f1c1287 1738 " timespan SPAN... Validate a time span\n"
37ec0fdd
LP
1739 "\nSee the %s for details.\n"
1740 , program_invocation_short_name
1741 , link
1742 );
96de7c04 1743
37ec0fdd 1744 /* When updating this list, including descriptions, apply changes to shell-completion/bash/systemd-analyze and
1d3bc017 1745 * shell-completion/zsh/_systemd-analyze too. */
a6bcef29
LP
1746
1747 return 0;
2265fbf7
SP
1748}
1749
9ea9d4cf 1750static int parse_argv(int argc, char *argv[]) {
2265fbf7
SP
1751 enum {
1752 ARG_VERSION = 0x100,
1700761b
SP
1753 ARG_ORDER,
1754 ARG_REQUIRE,
46d8646a 1755 ARG_ROOT,
e55933db 1756 ARG_SYSTEM,
28b35ef2
ZJS
1757 ARG_USER,
1758 ARG_GLOBAL,
e55933db 1759 ARG_DOT_FROM_PATTERN,
bb150966 1760 ARG_DOT_TO_PATTERN,
9ea9d4cf 1761 ARG_FUZZ,
1d3bc017 1762 ARG_NO_PAGER,
dad29dff 1763 ARG_MAN,
641c0fd1 1764 ARG_GENERATORS,
2265fbf7
SP
1765 };
1766
1767 static const struct option options[] = {
9ea9d4cf
LP
1768 { "help", no_argument, NULL, 'h' },
1769 { "version", no_argument, NULL, ARG_VERSION },
1770 { "order", no_argument, NULL, ARG_ORDER },
1771 { "require", no_argument, NULL, ARG_REQUIRE },
46d8646a 1772 { "root", required_argument, NULL, ARG_ROOT },
9ea9d4cf 1773 { "system", no_argument, NULL, ARG_SYSTEM },
28b35ef2
ZJS
1774 { "user", no_argument, NULL, ARG_USER },
1775 { "global", no_argument, NULL, ARG_GLOBAL },
9ea9d4cf
LP
1776 { "from-pattern", required_argument, NULL, ARG_DOT_FROM_PATTERN },
1777 { "to-pattern", required_argument, NULL, ARG_DOT_TO_PATTERN },
1778 { "fuzz", required_argument, NULL, ARG_FUZZ },
1779 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
dad29dff 1780 { "man", optional_argument, NULL, ARG_MAN },
641c0fd1 1781 { "generators", optional_argument, NULL, ARG_GENERATORS },
8fe12d88
LP
1782 { "host", required_argument, NULL, 'H' },
1783 { "machine", required_argument, NULL, 'M' },
eb9da376 1784 {}
2265fbf7
SP
1785 };
1786
eb9da376
LP
1787 int r, c;
1788
2265fbf7
SP
1789 assert(argc >= 0);
1790 assert(argv);
1791
601185b4 1792 while ((c = getopt_long(argc, argv, "hH:M:", options, NULL)) >= 0)
eb9da376 1793 switch (c) {
c170f3a4
LP
1794
1795 case 'h':
a6bcef29 1796 return help(0, NULL, NULL);
c170f3a4
LP
1797
1798 case ARG_VERSION:
3f6fd1ba 1799 return version();
c170f3a4 1800
46d8646a
ZJS
1801 case ARG_ROOT:
1802 arg_root = optarg;
1803 break;
1804
28b35ef2
ZJS
1805 case ARG_SYSTEM:
1806 arg_scope = UNIT_FILE_SYSTEM;
1807 break;
1808
c170f3a4 1809 case ARG_USER:
28b35ef2 1810 arg_scope = UNIT_FILE_USER;
c170f3a4
LP
1811 break;
1812
28b35ef2
ZJS
1813 case ARG_GLOBAL:
1814 arg_scope = UNIT_FILE_GLOBAL;
c170f3a4
LP
1815 break;
1816
1817 case ARG_ORDER:
1818 arg_dot = DEP_ORDER;
1819 break;
1820
1821 case ARG_REQUIRE:
1822 arg_dot = DEP_REQUIRE;
1823 break;
1824
e55933db 1825 case ARG_DOT_FROM_PATTERN:
903a0b07
LP
1826 if (strv_extend(&arg_dot_from_patterns, optarg) < 0)
1827 return log_oom();
1828
e55933db
ŁS
1829 break;
1830
1831 case ARG_DOT_TO_PATTERN:
903a0b07
LP
1832 if (strv_extend(&arg_dot_to_patterns, optarg) < 0)
1833 return log_oom();
1834
e55933db
ŁS
1835 break;
1836
bb150966
HH
1837 case ARG_FUZZ:
1838 r = parse_sec(optarg, &arg_fuzz);
1839 if (r < 0)
1840 return r;
1841 break;
1842
9ea9d4cf 1843 case ARG_NO_PAGER:
0221d68a 1844 arg_pager_flags |= PAGER_DISABLE;
9ea9d4cf
LP
1845 break;
1846
3cd26e7c
LP
1847 case 'H':
1848 arg_transport = BUS_TRANSPORT_REMOTE;
1849 arg_host = optarg;
1850 break;
1851
1852 case 'M':
de33fc62 1853 arg_transport = BUS_TRANSPORT_MACHINE;
3cd26e7c
LP
1854 arg_host = optarg;
1855 break;
1856
dad29dff
LP
1857 case ARG_MAN:
1858 if (optarg) {
1859 r = parse_boolean(optarg);
1860 if (r < 0) {
1861 log_error("Failed to parse --man= argument.");
1862 return -EINVAL;
1863 }
1864
5d904a6a 1865 arg_man = r;
dad29dff
LP
1866 } else
1867 arg_man = true;
1868
1d3bc017
ZJS
1869 break;
1870
641c0fd1
ZJS
1871 case ARG_GENERATORS:
1872 if (optarg) {
1873 r = parse_boolean(optarg);
1874 if (r < 0) {
1875 log_error("Failed to parse --generators= argument.");
1876 return -EINVAL;
1877 }
1878
5d904a6a 1879 arg_generators = r;
641c0fd1
ZJS
1880 } else
1881 arg_generators = true;
1882
1883 break;
1884
c170f3a4
LP
1885 case '?':
1886 return -EINVAL;
1887
1888 default:
1d3bc017 1889 assert_not_reached("Unhandled option code.");
2265fbf7 1890 }
eb9da376 1891
31a5924e
ZJS
1892 if (arg_scope == UNIT_FILE_GLOBAL &&
1893 !STR_IN_SET(argv[optind] ?: "time", "dot", "unit-paths", "verify")) {
1894 log_error("Option --global only makes sense with verbs dot, unit-paths, verify.");
1895 return -EINVAL;
1896 }
1897
46d8646a
ZJS
1898 if (arg_root && !streq_ptr(argv[optind], "cat-config")) {
1899 log_error("Option --root is only supported for cat-config right now.");
1900 return -EINVAL;
1901 }
1902
1d3bc017 1903 return 1; /* work to do */
2265fbf7
SP
1904}
1905
1906int main(int argc, char *argv[]) {
a6bcef29
LP
1907
1908 static const Verb verbs[] = {
889d695d
JK
1909 { "help", VERB_ANY, VERB_ANY, 0, help },
1910 { "time", VERB_ANY, 1, VERB_DEFAULT, analyze_time },
1911 { "blame", VERB_ANY, 1, 0, analyze_blame },
1912 { "critical-chain", VERB_ANY, VERB_ANY, 0, analyze_critical_chain },
1913 { "plot", VERB_ANY, 1, 0, analyze_plot },
1914 { "dot", VERB_ANY, VERB_ANY, 0, dot },
90657286
YW
1915 { "log-level", VERB_ANY, 2, 0, get_or_set_log_level },
1916 { "log-target", VERB_ANY, 2, 0, get_or_set_log_target },
1917 /* The following four verbs are deprecated aliases */
889d695d
JK
1918 { "set-log-level", 2, 2, 0, set_log_level },
1919 { "get-log-level", VERB_ANY, 1, 0, get_log_level },
1920 { "set-log-target", 2, 2, 0, set_log_target },
1921 { "get-log-target", VERB_ANY, 1, 0, get_log_target },
1922 { "dump", VERB_ANY, 1, 0, dump },
854a42fb 1923 { "cat-config", 2, VERB_ANY, 0, cat_config },
31a5924e 1924 { "unit-paths", 1, 1, 0, dump_unit_paths },
889d695d
JK
1925 { "syscall-filter", VERB_ANY, VERB_ANY, 0, dump_syscall_filters },
1926 { "verify", 2, VERB_ANY, 0, do_verify },
1927 { "calendar", 2, VERB_ANY, 0, test_calendar },
90657286 1928 { "service-watchdogs", VERB_ANY, 2, 0, service_watchdogs },
3f1c1287 1929 { "timespan", 2, VERB_ANY, 0, dump_timespan },
a6bcef29
LP
1930 {}
1931 };
1932
5220a6f3 1933 int r;
2265fbf7
SP
1934
1935 setlocale(LC_ALL, "");
c170f3a4 1936 setlocale(LC_NUMERIC, "C"); /* we want to format/parse floats in C style */
a6bcef29 1937
2265fbf7
SP
1938 log_parse_environment();
1939 log_open();
1940
1941 r = parse_argv(argc, argv);
9ea9d4cf
LP
1942 if (r <= 0)
1943 goto finish;
2265fbf7 1944
a6bcef29 1945 r = dispatch_verb(argc, argv, verbs, NULL);
2265fbf7 1946
9ea9d4cf
LP
1947finish:
1948 pager_close();
1949
e55933db
ŁS
1950 strv_free(arg_dot_from_patterns);
1951 strv_free(arg_dot_to_patterns);
c170f3a4
LP
1952
1953 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
2265fbf7 1954}