]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/analyze/analyze.c
license: LGPL-2.1+ -> LGPL-2.1-or-later
[thirdparty/systemd.git] / src / analyze / analyze.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 /***
3 Copyright © 2013 Simon Peeters
4 ***/
5
6 #include <getopt.h>
7 #include <inttypes.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <unistd.h>
11
12 #include "sd-bus.h"
13
14 #include "alloc-util.h"
15 #include "analyze-condition.h"
16 #include "analyze-security.h"
17 #include "analyze-verify.h"
18 #include "build.h"
19 #include "bus-error.h"
20 #include "bus-locator.h"
21 #include "bus-map-properties.h"
22 #include "bus-unit-util.h"
23 #include "calendarspec.h"
24 #include "cap-list.h"
25 #include "capability-util.h"
26 #include "conf-files.h"
27 #include "copy.h"
28 #include "def.h"
29 #include "exit-status.h"
30 #include "fd-util.h"
31 #include "fileio.h"
32 #include "format-table.h"
33 #include "glob-util.h"
34 #include "hashmap.h"
35 #include "locale-util.h"
36 #include "log.h"
37 #include "main-func.h"
38 #include "nulstr-util.h"
39 #include "pager.h"
40 #include "parse-util.h"
41 #include "path-util.h"
42 #include "pretty-print.h"
43 #if HAVE_SECCOMP
44 # include "seccomp-util.h"
45 #endif
46 #include "sort-util.h"
47 #include "special.h"
48 #include "strv.h"
49 #include "strxcpyx.h"
50 #include "terminal-util.h"
51 #include "time-util.h"
52 #include "unit-name.h"
53 #include "util.h"
54 #include "verbs.h"
55
56 #define SCALE_X (0.1 / 1000.0) /* pixels per us */
57 #define SCALE_Y (20.0)
58
59 #define svg(...) printf(__VA_ARGS__)
60
61 #define svg_bar(class, x1, x2, y) \
62 svg(" <rect class=\"%s\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n", \
63 (class), \
64 SCALE_X * (x1), SCALE_Y * (y), \
65 SCALE_X * ((x2) - (x1)), SCALE_Y - 1.0)
66
67 #define svg_text(b, x, y, format, ...) \
68 do { \
69 svg(" <text class=\"%s\" x=\"%.03f\" y=\"%.03f\">", (b) ? "left" : "right", SCALE_X * (x) + (b ? 5.0 : -5.0), SCALE_Y * (y) + 14.0); \
70 svg(format, ## __VA_ARGS__); \
71 svg("</text>\n"); \
72 } while (false)
73
74 static enum dot {
75 DEP_ALL,
76 DEP_ORDER,
77 DEP_REQUIRE
78 } arg_dot = DEP_ALL;
79 static char **arg_dot_from_patterns = NULL;
80 static char **arg_dot_to_patterns = NULL;
81 static usec_t arg_fuzz = 0;
82 static PagerFlags arg_pager_flags = 0;
83 static BusTransport arg_transport = BUS_TRANSPORT_LOCAL;
84 static const char *arg_host = NULL;
85 static UnitFileScope arg_scope = UNIT_FILE_SYSTEM;
86 static bool arg_man = true;
87 static bool arg_generators = false;
88 static const char *arg_root = NULL;
89 static unsigned arg_iterations = 1;
90 static usec_t arg_base_time = USEC_INFINITY;
91
92 STATIC_DESTRUCTOR_REGISTER(arg_dot_from_patterns, strv_freep);
93 STATIC_DESTRUCTOR_REGISTER(arg_dot_to_patterns, strv_freep);
94
95 struct boot_times {
96 usec_t firmware_time;
97 usec_t loader_time;
98 usec_t kernel_time;
99 usec_t kernel_done_time;
100 usec_t initrd_time;
101 usec_t userspace_time;
102 usec_t finish_time;
103 usec_t security_start_time;
104 usec_t security_finish_time;
105 usec_t generators_start_time;
106 usec_t generators_finish_time;
107 usec_t unitsload_start_time;
108 usec_t unitsload_finish_time;
109 usec_t initrd_security_start_time;
110 usec_t initrd_security_finish_time;
111 usec_t initrd_generators_start_time;
112 usec_t initrd_generators_finish_time;
113 usec_t initrd_unitsload_start_time;
114 usec_t initrd_unitsload_finish_time;
115
116 /*
117 * If we're analyzing the user instance, all timestamps will be offset
118 * by its own start-up timestamp, which may be arbitrarily big.
119 * With "plot", this causes arbitrarily wide output SVG files which almost
120 * completely consist of empty space. Thus we cancel out this offset.
121 *
122 * This offset is subtracted from times above by acquire_boot_times(),
123 * but it still needs to be subtracted from unit-specific timestamps
124 * (so it is stored here for reference).
125 */
126 usec_t reverse_offset;
127 };
128
129 struct unit_times {
130 bool has_data;
131 char *name;
132 usec_t activating;
133 usec_t activated;
134 usec_t deactivated;
135 usec_t deactivating;
136 usec_t time;
137 };
138
139 struct host_info {
140 char *hostname;
141 char *kernel_name;
142 char *kernel_release;
143 char *kernel_version;
144 char *os_pretty_name;
145 char *virtualization;
146 char *architecture;
147 };
148
149 static int acquire_bus(sd_bus **bus, bool *use_full_bus) {
150 bool user = arg_scope != UNIT_FILE_SYSTEM;
151 int r;
152
153 if (use_full_bus && *use_full_bus) {
154 r = bus_connect_transport(arg_transport, arg_host, user, bus);
155 if (IN_SET(r, 0, -EHOSTDOWN))
156 return r;
157
158 *use_full_bus = false;
159 }
160
161 return bus_connect_transport_systemd(arg_transport, arg_host, user, bus);
162 }
163
164 static int bus_get_uint64_property(sd_bus *bus, const char *path, const char *interface, const char *property, uint64_t *val) {
165 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
166 int r;
167
168 assert(bus);
169 assert(path);
170 assert(interface);
171 assert(property);
172 assert(val);
173
174 r = sd_bus_get_property_trivial(
175 bus,
176 "org.freedesktop.systemd1",
177 path,
178 interface,
179 property,
180 &error,
181 't', val);
182
183 if (r < 0)
184 return log_error_errno(r, "Failed to parse reply: %s", bus_error_message(&error, r));
185
186 return 0;
187 }
188
189 static int bus_get_unit_property_strv(sd_bus *bus, const char *path, const char *property, char ***strv) {
190 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
191 int r;
192
193 assert(bus);
194 assert(path);
195 assert(property);
196 assert(strv);
197
198 r = sd_bus_get_property_strv(
199 bus,
200 "org.freedesktop.systemd1",
201 path,
202 "org.freedesktop.systemd1.Unit",
203 property,
204 &error,
205 strv);
206 if (r < 0)
207 return log_error_errno(r, "Failed to get unit property %s: %s", property, bus_error_message(&error, r));
208
209 return 0;
210 }
211
212 static int compare_unit_start(const struct unit_times *a, const struct unit_times *b) {
213 return CMP(a->activating, b->activating);
214 }
215
216 static void unit_times_free(struct unit_times *t) {
217 struct unit_times *p;
218
219 for (p = t; p->has_data; p++)
220 free(p->name);
221 free(t);
222 }
223
224 DEFINE_TRIVIAL_CLEANUP_FUNC(struct unit_times *, unit_times_free);
225
226 static void subtract_timestamp(usec_t *a, usec_t b) {
227 assert(a);
228
229 if (*a > 0) {
230 assert(*a >= b);
231 *a -= b;
232 }
233 }
234
235 static int acquire_boot_times(sd_bus *bus, struct boot_times **bt) {
236 static const struct bus_properties_map property_map[] = {
237 { "FirmwareTimestampMonotonic", "t", NULL, offsetof(struct boot_times, firmware_time) },
238 { "LoaderTimestampMonotonic", "t", NULL, offsetof(struct boot_times, loader_time) },
239 { "KernelTimestamp", "t", NULL, offsetof(struct boot_times, kernel_time) },
240 { "InitRDTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_time) },
241 { "UserspaceTimestampMonotonic", "t", NULL, offsetof(struct boot_times, userspace_time) },
242 { "FinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, finish_time) },
243 { "SecurityStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, security_start_time) },
244 { "SecurityFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, security_finish_time) },
245 { "GeneratorsStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, generators_start_time) },
246 { "GeneratorsFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, generators_finish_time) },
247 { "UnitsLoadStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, unitsload_start_time) },
248 { "UnitsLoadFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, unitsload_finish_time) },
249 { "InitRDSecurityStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_security_start_time) },
250 { "InitRDSecurityFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_security_finish_time) },
251 { "InitRDGeneratorsStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_generators_start_time) },
252 { "InitRDGeneratorsFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_generators_finish_time) },
253 { "InitRDUnitsLoadStartTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_unitsload_start_time) },
254 { "InitRDUnitsLoadFinishTimestampMonotonic", "t", NULL, offsetof(struct boot_times, initrd_unitsload_finish_time) },
255 {},
256 };
257 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
258 static struct boot_times times;
259 static bool cached = false;
260 int r;
261
262 if (cached)
263 goto finish;
264
265 assert_cc(sizeof(usec_t) == sizeof(uint64_t));
266
267 r = bus_map_all_properties(
268 bus,
269 "org.freedesktop.systemd1",
270 "/org/freedesktop/systemd1",
271 property_map,
272 BUS_MAP_STRDUP,
273 &error,
274 NULL,
275 &times);
276 if (r < 0)
277 return log_error_errno(r, "Failed to get timestamp properties: %s", bus_error_message(&error, r));
278
279 if (times.finish_time <= 0)
280 return log_error_errno(SYNTHETIC_ERRNO(EINPROGRESS),
281 "Bootup is not yet finished (org.freedesktop.systemd1.Manager.FinishTimestampMonotonic=%"PRIu64").\n"
282 "Please try again later.\n"
283 "Hint: Use 'systemctl%s list-jobs' to see active jobs",
284 times.finish_time,
285 arg_scope == UNIT_FILE_SYSTEM ? "" : " --user");
286
287 if (arg_scope == UNIT_FILE_SYSTEM && times.security_start_time > 0) {
288 /* security_start_time is set when systemd is not running under container environment. */
289 if (times.initrd_time > 0)
290 times.kernel_done_time = times.initrd_time;
291 else
292 times.kernel_done_time = times.userspace_time;
293 } else {
294 /*
295 * User-instance-specific or container-system-specific timestamps processing
296 * (see comment to reverse_offset in struct boot_times).
297 */
298 times.reverse_offset = times.userspace_time;
299
300 times.firmware_time = times.loader_time = times.kernel_time = times.initrd_time =
301 times.userspace_time = times.security_start_time = times.security_finish_time = 0;
302
303 subtract_timestamp(&times.finish_time, times.reverse_offset);
304
305 subtract_timestamp(&times.generators_start_time, times.reverse_offset);
306 subtract_timestamp(&times.generators_finish_time, times.reverse_offset);
307
308 subtract_timestamp(&times.unitsload_start_time, times.reverse_offset);
309 subtract_timestamp(&times.unitsload_finish_time, times.reverse_offset);
310 }
311
312 cached = true;
313
314 finish:
315 *bt = &times;
316 return 0;
317 }
318
319 static void free_host_info(struct host_info *hi) {
320 if (!hi)
321 return;
322
323 free(hi->hostname);
324 free(hi->kernel_name);
325 free(hi->kernel_release);
326 free(hi->kernel_version);
327 free(hi->os_pretty_name);
328 free(hi->virtualization);
329 free(hi->architecture);
330 free(hi);
331 }
332
333 DEFINE_TRIVIAL_CLEANUP_FUNC(struct host_info *, free_host_info);
334
335 static int acquire_time_data(sd_bus *bus, struct unit_times **out) {
336 static const struct bus_properties_map property_map[] = {
337 { "InactiveExitTimestampMonotonic", "t", NULL, offsetof(struct unit_times, activating) },
338 { "ActiveEnterTimestampMonotonic", "t", NULL, offsetof(struct unit_times, activated) },
339 { "ActiveExitTimestampMonotonic", "t", NULL, offsetof(struct unit_times, deactivating) },
340 { "InactiveEnterTimestampMonotonic", "t", NULL, offsetof(struct unit_times, deactivated) },
341 {},
342 };
343 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
344 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
345 _cleanup_(unit_times_freep) struct unit_times *unit_times = NULL;
346 struct boot_times *boot_times = NULL;
347 size_t allocated = 0, c = 0;
348 UnitInfo u;
349 int r;
350
351 r = acquire_boot_times(bus, &boot_times);
352 if (r < 0)
353 return r;
354
355 r = bus_call_method(bus, bus_systemd_mgr, "ListUnits", &error, &reply, NULL);
356 if (r < 0)
357 return log_error_errno(r, "Failed to list units: %s", bus_error_message(&error, r));
358
359 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssssssouso)");
360 if (r < 0)
361 return bus_log_parse_error(r);
362
363 while ((r = bus_parse_unit_info(reply, &u)) > 0) {
364 struct unit_times *t;
365
366 if (!GREEDY_REALLOC(unit_times, allocated, c + 2))
367 return log_oom();
368
369 unit_times[c + 1].has_data = false;
370 t = &unit_times[c];
371 t->name = NULL;
372
373 assert_cc(sizeof(usec_t) == sizeof(uint64_t));
374
375 r = bus_map_all_properties(
376 bus,
377 "org.freedesktop.systemd1",
378 u.unit_path,
379 property_map,
380 BUS_MAP_STRDUP,
381 &error,
382 NULL,
383 t);
384 if (r < 0)
385 return log_error_errno(r, "Failed to get timestamp properties of unit %s: %s",
386 u.id, bus_error_message(&error, r));
387
388 subtract_timestamp(&t->activating, boot_times->reverse_offset);
389 subtract_timestamp(&t->activated, boot_times->reverse_offset);
390 subtract_timestamp(&t->deactivating, boot_times->reverse_offset);
391 subtract_timestamp(&t->deactivated, boot_times->reverse_offset);
392
393 if (t->activated >= t->activating)
394 t->time = t->activated - t->activating;
395 else if (t->deactivated >= t->activating)
396 t->time = t->deactivated - t->activating;
397 else
398 t->time = 0;
399
400 if (t->activating == 0)
401 continue;
402
403 t->name = strdup(u.id);
404 if (!t->name)
405 return log_oom();
406
407 t->has_data = true;
408 c++;
409 }
410 if (r < 0)
411 return bus_log_parse_error(r);
412
413 *out = TAKE_PTR(unit_times);
414 return c;
415 }
416
417 static int acquire_host_info(sd_bus *bus, struct host_info **hi) {
418 static const struct bus_properties_map hostname_map[] = {
419 { "Hostname", "s", NULL, offsetof(struct host_info, hostname) },
420 { "KernelName", "s", NULL, offsetof(struct host_info, kernel_name) },
421 { "KernelRelease", "s", NULL, offsetof(struct host_info, kernel_release) },
422 { "KernelVersion", "s", NULL, offsetof(struct host_info, kernel_version) },
423 { "OperatingSystemPrettyName", "s", NULL, offsetof(struct host_info, os_pretty_name) },
424 {}
425 };
426
427 static const struct bus_properties_map manager_map[] = {
428 { "Virtualization", "s", NULL, offsetof(struct host_info, virtualization) },
429 { "Architecture", "s", NULL, offsetof(struct host_info, architecture) },
430 {}
431 };
432
433 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
434 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *system_bus = NULL;
435 _cleanup_(free_host_infop) struct host_info *host;
436 int r;
437
438 host = new0(struct host_info, 1);
439 if (!host)
440 return log_oom();
441
442 if (arg_scope != UNIT_FILE_SYSTEM) {
443 r = bus_connect_transport(arg_transport, arg_host, false, &system_bus);
444 if (r < 0) {
445 log_debug_errno(r, "Failed to connect to system bus, ignoring: %m");
446 goto manager;
447 }
448 }
449
450 r = bus_map_all_properties(
451 system_bus ?: bus,
452 "org.freedesktop.hostname1",
453 "/org/freedesktop/hostname1",
454 hostname_map,
455 BUS_MAP_STRDUP,
456 &error,
457 NULL,
458 host);
459 if (r < 0) {
460 log_debug_errno(r, "Failed to get host information from systemd-hostnamed, ignoring: %s",
461 bus_error_message(&error, r));
462 sd_bus_error_free(&error);
463 }
464
465 manager:
466 r = bus_map_all_properties(
467 bus,
468 "org.freedesktop.systemd1",
469 "/org/freedesktop/systemd1",
470 manager_map,
471 BUS_MAP_STRDUP,
472 &error,
473 NULL,
474 host);
475 if (r < 0)
476 return log_error_errno(r, "Failed to get host information from systemd: %s",
477 bus_error_message(&error, r));
478
479 *hi = TAKE_PTR(host);
480 return 0;
481 }
482
483 static int pretty_boot_time(sd_bus *bus, char **_buf) {
484 char ts[FORMAT_TIMESPAN_MAX];
485 struct boot_times *t;
486 static char buf[4096];
487 size_t size;
488 char *ptr;
489 int r;
490 usec_t activated_time = USEC_INFINITY;
491 _cleanup_free_ char *path = NULL, *unit_id = NULL;
492 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
493
494 r = acquire_boot_times(bus, &t);
495 if (r < 0)
496 return r;
497
498 path = unit_dbus_path_from_name(SPECIAL_DEFAULT_TARGET);
499 if (!path)
500 return log_oom();
501
502 r = sd_bus_get_property_string(
503 bus,
504 "org.freedesktop.systemd1",
505 path,
506 "org.freedesktop.systemd1.Unit",
507 "Id",
508 &error,
509 &unit_id);
510 if (r < 0) {
511 log_error_errno(r, "default.target doesn't seem to exist: %s", bus_error_message(&error, r));
512 unit_id = NULL;
513 }
514
515 r = bus_get_uint64_property(bus, path,
516 "org.freedesktop.systemd1.Unit",
517 "ActiveEnterTimestampMonotonic",
518 &activated_time);
519 if (r < 0) {
520 log_info_errno(r, "Could not get time to reach default.target, ignoring: %m");
521 activated_time = USEC_INFINITY;
522 }
523
524 ptr = buf;
525 size = sizeof(buf);
526
527 size = strpcpyf(&ptr, size, "Startup finished in ");
528 if (t->firmware_time > 0)
529 size = strpcpyf(&ptr, size, "%s (firmware) + ", format_timespan(ts, sizeof(ts), t->firmware_time - t->loader_time, USEC_PER_MSEC));
530 if (t->loader_time > 0)
531 size = strpcpyf(&ptr, size, "%s (loader) + ", format_timespan(ts, sizeof(ts), t->loader_time, USEC_PER_MSEC));
532 if (t->kernel_done_time > 0)
533 size = strpcpyf(&ptr, size, "%s (kernel) + ", format_timespan(ts, sizeof(ts), t->kernel_done_time, USEC_PER_MSEC));
534 if (t->initrd_time > 0)
535 size = strpcpyf(&ptr, size, "%s (initrd) + ", format_timespan(ts, sizeof(ts), t->userspace_time - t->initrd_time, USEC_PER_MSEC));
536
537 size = strpcpyf(&ptr, size, "%s (userspace) ", format_timespan(ts, sizeof(ts), t->finish_time - t->userspace_time, USEC_PER_MSEC));
538 if (t->kernel_done_time > 0)
539 strpcpyf(&ptr, size, "= %s ", format_timespan(ts, sizeof(ts), t->firmware_time + t->finish_time, USEC_PER_MSEC));
540
541 if (unit_id && timestamp_is_set(activated_time)) {
542 usec_t base = t->userspace_time > 0 ? t->userspace_time : t->reverse_offset;
543
544 size = strpcpyf(&ptr, size, "\n%s reached after %s in userspace", unit_id,
545 format_timespan(ts, sizeof(ts), activated_time - base, USEC_PER_MSEC));
546 } else if (unit_id && activated_time == 0)
547 size = strpcpyf(&ptr, size, "\n%s was never reached", unit_id);
548 else if (unit_id && activated_time == USEC_INFINITY)
549 size = strpcpyf(&ptr, size, "\nCould not get time to reach %s.", unit_id);
550 else if (!unit_id)
551 size = strpcpyf(&ptr, size, "\ncould not find default.target");
552
553 ptr = strdup(buf);
554 if (!ptr)
555 return log_oom();
556
557 *_buf = ptr;
558 return 0;
559 }
560
561 static void svg_graph_box(double height, double begin, double end) {
562 long long i;
563
564 /* outside box, fill */
565 svg("<rect class=\"box\" x=\"0\" y=\"0\" width=\"%.03f\" height=\"%.03f\" />\n",
566 SCALE_X * (end - begin),
567 SCALE_Y * height);
568
569 for (i = ((long long) (begin / 100000)) * 100000; i <= end; i += 100000) {
570 /* lines for each second */
571 if (i % 5000000 == 0)
572 svg(" <line class=\"sec5\" x1=\"%.03f\" y1=\"0\" x2=\"%.03f\" y2=\"%.03f\" />\n"
573 " <text class=\"sec\" x=\"%.03f\" y=\"%.03f\" >%.01fs</text>\n",
574 SCALE_X * i,
575 SCALE_X * i,
576 SCALE_Y * height,
577 SCALE_X * i,
578 -5.0,
579 0.000001 * i);
580 else if (i % 1000000 == 0)
581 svg(" <line class=\"sec1\" x1=\"%.03f\" y1=\"0\" x2=\"%.03f\" y2=\"%.03f\" />\n"
582 " <text class=\"sec\" x=\"%.03f\" y=\"%.03f\" >%.01fs</text>\n",
583 SCALE_X * i,
584 SCALE_X * i,
585 SCALE_Y * height,
586 SCALE_X * i,
587 -5.0,
588 0.000001 * i);
589 else
590 svg(" <line class=\"sec01\" x1=\"%.03f\" y1=\"0\" x2=\"%.03f\" y2=\"%.03f\" />\n",
591 SCALE_X * i,
592 SCALE_X * i,
593 SCALE_Y * height);
594 }
595 }
596
597 static int plot_unit_times(struct unit_times *u, double width, int y) {
598 char ts[FORMAT_TIMESPAN_MAX];
599 bool b;
600
601 if (!u->name)
602 return 0;
603
604 svg_bar("activating", u->activating, u->activated, y);
605 svg_bar("active", u->activated, u->deactivating, y);
606 svg_bar("deactivating", u->deactivating, u->deactivated, y);
607
608 /* place the text on the left if we have passed the half of the svg width */
609 b = u->activating * SCALE_X < width / 2;
610 if (u->time)
611 svg_text(b, u->activating, y, "%s (%s)",
612 u->name, format_timespan(ts, sizeof(ts), u->time, USEC_PER_MSEC));
613 else
614 svg_text(b, u->activating, y, "%s", u->name);
615
616 return 1;
617 }
618
619 static int analyze_plot(int argc, char *argv[], void *userdata) {
620 _cleanup_(free_host_infop) struct host_info *host = NULL;
621 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
622 _cleanup_(unit_times_freep) struct unit_times *times = NULL;
623 _cleanup_free_ char *pretty_times = NULL;
624 bool use_full_bus = arg_scope == UNIT_FILE_SYSTEM;
625 struct boot_times *boot;
626 struct unit_times *u;
627 int n, m = 1, y = 0, r;
628 double width;
629
630 r = acquire_bus(&bus, &use_full_bus);
631 if (r < 0)
632 return bus_log_connect_error(r);
633
634 n = acquire_boot_times(bus, &boot);
635 if (n < 0)
636 return n;
637
638 n = pretty_boot_time(bus, &pretty_times);
639 if (n < 0)
640 return n;
641
642 if (use_full_bus || arg_scope != UNIT_FILE_SYSTEM) {
643 n = acquire_host_info(bus, &host);
644 if (n < 0)
645 return n;
646 }
647
648 n = acquire_time_data(bus, &times);
649 if (n <= 0)
650 return n;
651
652 typesafe_qsort(times, n, compare_unit_start);
653
654 width = SCALE_X * (boot->firmware_time + boot->finish_time);
655 if (width < 800.0)
656 width = 800.0;
657
658 if (boot->firmware_time > boot->loader_time)
659 m++;
660 if (boot->loader_time > 0) {
661 m++;
662 if (width < 1000.0)
663 width = 1000.0;
664 }
665 if (boot->initrd_time > 0)
666 m++;
667 if (boot->kernel_done_time > 0)
668 m++;
669
670 for (u = times; u->has_data; u++) {
671 double text_start, text_width;
672
673 if (u->activating > boot->finish_time) {
674 u->name = mfree(u->name);
675 continue;
676 }
677
678 /* If the text cannot fit on the left side then
679 * increase the svg width so it fits on the right.
680 * TODO: calculate the text width more accurately */
681 text_width = 8.0 * strlen(u->name);
682 text_start = (boot->firmware_time + u->activating) * SCALE_X;
683 if (text_width > text_start && text_width + text_start > width)
684 width = text_width + text_start;
685
686 if (u->deactivated > u->activating &&
687 u->deactivated <= boot->finish_time &&
688 u->activated == 0 && u->deactivating == 0)
689 u->activated = u->deactivating = u->deactivated;
690 if (u->activated < u->activating || u->activated > boot->finish_time)
691 u->activated = boot->finish_time;
692 if (u->deactivating < u->activated || u->deactivating > boot->finish_time)
693 u->deactivating = boot->finish_time;
694 if (u->deactivated < u->deactivating || u->deactivated > boot->finish_time)
695 u->deactivated = boot->finish_time;
696 m++;
697 }
698
699 svg("<?xml version=\"1.0\" standalone=\"no\"?>\n"
700 "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" "
701 "\"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n");
702
703 svg("<svg width=\"%.0fpx\" height=\"%.0fpx\" version=\"1.1\" "
704 "xmlns=\"http://www.w3.org/2000/svg\">\n\n",
705 80.0 + width, 150.0 + (m * SCALE_Y) +
706 5 * SCALE_Y /* legend */);
707
708 /* write some basic info as a comment, including some help */
709 svg("<!-- This file is a systemd-analyze SVG file. It is best rendered in a -->\n"
710 "<!-- browser such as Chrome, Chromium or Firefox. Other applications -->\n"
711 "<!-- that render these files properly but much slower are ImageMagick, -->\n"
712 "<!-- gimp, inkscape, etc. To display the files on your system, just -->\n"
713 "<!-- point your browser to this file. -->\n\n"
714 "<!-- This plot was generated by systemd-analyze version %-16.16s -->\n\n", GIT_VERSION);
715
716 /* style sheet */
717 svg("<defs>\n <style type=\"text/css\">\n <![CDATA[\n"
718 " rect { stroke-width: 1; stroke-opacity: 0; }\n"
719 " rect.background { fill: rgb(255,255,255); }\n"
720 " rect.activating { fill: rgb(255,0,0); fill-opacity: 0.7; }\n"
721 " rect.active { fill: rgb(200,150,150); fill-opacity: 0.7; }\n"
722 " rect.deactivating { fill: rgb(150,100,100); fill-opacity: 0.7; }\n"
723 " rect.kernel { fill: rgb(150,150,150); fill-opacity: 0.7; }\n"
724 " rect.initrd { fill: rgb(150,150,150); fill-opacity: 0.7; }\n"
725 " rect.firmware { fill: rgb(150,150,150); fill-opacity: 0.7; }\n"
726 " rect.loader { fill: rgb(150,150,150); fill-opacity: 0.7; }\n"
727 " rect.userspace { fill: rgb(150,150,150); fill-opacity: 0.7; }\n"
728 " rect.security { fill: rgb(144,238,144); fill-opacity: 0.7; }\n"
729 " rect.generators { fill: rgb(102,204,255); fill-opacity: 0.7; }\n"
730 " rect.unitsload { fill: rgb( 82,184,255); fill-opacity: 0.7; }\n"
731 " rect.box { fill: rgb(240,240,240); stroke: rgb(192,192,192); }\n"
732 " line { stroke: rgb(64,64,64); stroke-width: 1; }\n"
733 "// line.sec1 { }\n"
734 " line.sec5 { stroke-width: 2; }\n"
735 " line.sec01 { stroke: rgb(224,224,224); stroke-width: 1; }\n"
736 " text { font-family: Verdana, Helvetica; font-size: 14px; }\n"
737 " text.left { font-family: Verdana, Helvetica; font-size: 14px; text-anchor: start; }\n"
738 " text.right { font-family: Verdana, Helvetica; font-size: 14px; text-anchor: end; }\n"
739 " text.sec { font-size: 10px; }\n"
740 " ]]>\n </style>\n</defs>\n\n");
741
742 svg("<rect class=\"background\" width=\"100%%\" height=\"100%%\" />\n");
743 svg("<text x=\"20\" y=\"50\">%s</text>", pretty_times);
744 if (host)
745 svg("<text x=\"20\" y=\"30\">%s %s (%s %s %s) %s %s</text>",
746 isempty(host->os_pretty_name) ? "Linux" : host->os_pretty_name,
747 strempty(host->hostname),
748 strempty(host->kernel_name),
749 strempty(host->kernel_release),
750 strempty(host->kernel_version),
751 strempty(host->architecture),
752 strempty(host->virtualization));
753
754 svg("<g transform=\"translate(%.3f,100)\">\n", 20.0 + (SCALE_X * boot->firmware_time));
755 svg_graph_box(m, -(double) boot->firmware_time, boot->finish_time);
756
757 if (boot->firmware_time > 0) {
758 svg_bar("firmware", -(double) boot->firmware_time, -(double) boot->loader_time, y);
759 svg_text(true, -(double) boot->firmware_time, y, "firmware");
760 y++;
761 }
762 if (boot->loader_time > 0) {
763 svg_bar("loader", -(double) boot->loader_time, 0, y);
764 svg_text(true, -(double) boot->loader_time, y, "loader");
765 y++;
766 }
767 if (boot->kernel_done_time > 0) {
768 svg_bar("kernel", 0, boot->kernel_done_time, y);
769 svg_text(true, 0, y, "kernel");
770 y++;
771 }
772 if (boot->initrd_time > 0) {
773 svg_bar("initrd", boot->initrd_time, boot->userspace_time, y);
774 if (boot->initrd_security_start_time < boot->initrd_security_finish_time)
775 svg_bar("security", boot->initrd_security_start_time, boot->initrd_security_finish_time, y);
776 if (boot->initrd_generators_start_time < boot->initrd_generators_finish_time)
777 svg_bar("generators", boot->initrd_generators_start_time, boot->initrd_generators_finish_time, y);
778 if (boot->initrd_unitsload_start_time < boot->initrd_unitsload_finish_time)
779 svg_bar("unitsload", boot->initrd_unitsload_start_time, boot->initrd_unitsload_finish_time, y);
780 svg_text(true, boot->initrd_time, y, "initrd");
781 y++;
782 }
783
784 for (u = times; u->has_data; u++) {
785 if (u->activating >= boot->userspace_time)
786 break;
787
788 y += plot_unit_times(u, width, y);
789 }
790
791 svg_bar("active", boot->userspace_time, boot->finish_time, y);
792 if (boot->security_start_time > 0)
793 svg_bar("security", boot->security_start_time, boot->security_finish_time, y);
794 svg_bar("generators", boot->generators_start_time, boot->generators_finish_time, y);
795 svg_bar("unitsload", boot->unitsload_start_time, boot->unitsload_finish_time, y);
796 svg_text(true, boot->userspace_time, y, "systemd");
797 y++;
798
799 for (; u->has_data; u++)
800 y += plot_unit_times(u, width, y);
801
802 svg("</g>\n");
803
804 /* Legend */
805 svg("<g transform=\"translate(20,100)\">\n");
806 y++;
807 svg_bar("activating", 0, 300000, y);
808 svg_text(true, 400000, y, "Activating");
809 y++;
810 svg_bar("active", 0, 300000, y);
811 svg_text(true, 400000, y, "Active");
812 y++;
813 svg_bar("deactivating", 0, 300000, y);
814 svg_text(true, 400000, y, "Deactivating");
815 y++;
816 if (boot->security_start_time > 0) {
817 svg_bar("security", 0, 300000, y);
818 svg_text(true, 400000, y, "Setting up security module");
819 y++;
820 }
821 svg_bar("generators", 0, 300000, y);
822 svg_text(true, 400000, y, "Generators");
823 y++;
824 svg_bar("unitsload", 0, 300000, y);
825 svg_text(true, 400000, y, "Loading unit files");
826 y++;
827
828 svg("</g>\n\n");
829
830 svg("</svg>\n");
831
832 return 0;
833 }
834
835 static int list_dependencies_print(
836 const char *name,
837 unsigned level,
838 unsigned branches,
839 bool last,
840 struct unit_times *times,
841 struct boot_times *boot) {
842
843 unsigned i;
844 char ts[FORMAT_TIMESPAN_MAX], ts2[FORMAT_TIMESPAN_MAX];
845
846 for (i = level; i != 0; i--)
847 printf("%s", special_glyph(branches & (1 << (i-1)) ? SPECIAL_GLYPH_TREE_VERTICAL : SPECIAL_GLYPH_TREE_SPACE));
848
849 printf("%s", special_glyph(last ? SPECIAL_GLYPH_TREE_RIGHT : SPECIAL_GLYPH_TREE_BRANCH));
850
851 if (times) {
852 if (times->time > 0)
853 printf("%s%s @%s +%s%s", ansi_highlight_red(), name,
854 format_timespan(ts, sizeof(ts), times->activating - boot->userspace_time, USEC_PER_MSEC),
855 format_timespan(ts2, sizeof(ts2), times->time, USEC_PER_MSEC), ansi_normal());
856 else if (times->activated > boot->userspace_time)
857 printf("%s @%s", name, format_timespan(ts, sizeof(ts), times->activated - boot->userspace_time, USEC_PER_MSEC));
858 else
859 printf("%s", name);
860 } else
861 printf("%s", name);
862 printf("\n");
863
864 return 0;
865 }
866
867 static int list_dependencies_get_dependencies(sd_bus *bus, const char *name, char ***deps) {
868 _cleanup_free_ char *path = NULL;
869
870 assert(bus);
871 assert(name);
872 assert(deps);
873
874 path = unit_dbus_path_from_name(name);
875 if (!path)
876 return -ENOMEM;
877
878 return bus_get_unit_property_strv(bus, path, "After", deps);
879 }
880
881 static Hashmap *unit_times_hashmap;
882
883 static int list_dependencies_compare(char *const *a, char *const *b) {
884 usec_t usa = 0, usb = 0;
885 struct unit_times *times;
886
887 times = hashmap_get(unit_times_hashmap, *a);
888 if (times)
889 usa = times->activated;
890 times = hashmap_get(unit_times_hashmap, *b);
891 if (times)
892 usb = times->activated;
893
894 return CMP(usb, usa);
895 }
896
897 static bool times_in_range(const struct unit_times *times, const struct boot_times *boot) {
898 return times && times->activated > 0 && times->activated <= boot->finish_time;
899 }
900
901 static int list_dependencies_one(sd_bus *bus, const char *name, unsigned level, char ***units, unsigned branches) {
902 _cleanup_strv_free_ char **deps = NULL;
903 char **c;
904 int r;
905 usec_t service_longest = 0;
906 int to_print = 0;
907 struct unit_times *times;
908 struct boot_times *boot;
909
910 if (strv_extend(units, name))
911 return log_oom();
912
913 r = list_dependencies_get_dependencies(bus, name, &deps);
914 if (r < 0)
915 return r;
916
917 typesafe_qsort(deps, strv_length(deps), list_dependencies_compare);
918
919 r = acquire_boot_times(bus, &boot);
920 if (r < 0)
921 return r;
922
923 STRV_FOREACH(c, deps) {
924 times = hashmap_get(unit_times_hashmap, *c);
925 if (times_in_range(times, boot) && times->activated >= service_longest)
926 service_longest = times->activated;
927 }
928
929 if (service_longest == 0)
930 return r;
931
932 STRV_FOREACH(c, deps) {
933 times = hashmap_get(unit_times_hashmap, *c);
934 if (times_in_range(times, boot) && service_longest - times->activated <= arg_fuzz)
935 to_print++;
936 }
937
938 if (!to_print)
939 return r;
940
941 STRV_FOREACH(c, deps) {
942 times = hashmap_get(unit_times_hashmap, *c);
943 if (!times_in_range(times, boot) || service_longest - times->activated > arg_fuzz)
944 continue;
945
946 to_print--;
947
948 r = list_dependencies_print(*c, level, branches, to_print == 0, times, boot);
949 if (r < 0)
950 return r;
951
952 if (strv_contains(*units, *c)) {
953 r = list_dependencies_print("...", level + 1, (branches << 1) | (to_print ? 1 : 0),
954 true, NULL, boot);
955 if (r < 0)
956 return r;
957 continue;
958 }
959
960 r = list_dependencies_one(bus, *c, level + 1, units, (branches << 1) | (to_print ? 1 : 0));
961 if (r < 0)
962 return r;
963
964 if (to_print == 0)
965 break;
966 }
967 return 0;
968 }
969
970 static int list_dependencies(sd_bus *bus, const char *name) {
971 _cleanup_strv_free_ char **units = NULL;
972 char ts[FORMAT_TIMESPAN_MAX];
973 struct unit_times *times;
974 int r;
975 const char *id;
976 _cleanup_free_ char *path = NULL;
977 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
978 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
979 struct boot_times *boot;
980
981 assert(bus);
982
983 path = unit_dbus_path_from_name(name);
984 if (!path)
985 return -ENOMEM;
986
987 r = sd_bus_get_property(
988 bus,
989 "org.freedesktop.systemd1",
990 path,
991 "org.freedesktop.systemd1.Unit",
992 "Id",
993 &error,
994 &reply,
995 "s");
996 if (r < 0)
997 return log_error_errno(r, "Failed to get ID: %s", bus_error_message(&error, r));
998
999 r = sd_bus_message_read(reply, "s", &id);
1000 if (r < 0)
1001 return bus_log_parse_error(r);
1002
1003 times = hashmap_get(unit_times_hashmap, id);
1004
1005 r = acquire_boot_times(bus, &boot);
1006 if (r < 0)
1007 return r;
1008
1009 if (times) {
1010 if (times->time)
1011 printf("%s%s +%s%s\n", ansi_highlight_red(), id,
1012 format_timespan(ts, sizeof(ts), times->time, USEC_PER_MSEC), ansi_normal());
1013 else if (times->activated > boot->userspace_time)
1014 printf("%s @%s\n", id, format_timespan(ts, sizeof(ts), times->activated - boot->userspace_time, USEC_PER_MSEC));
1015 else
1016 printf("%s\n", id);
1017 }
1018
1019 return list_dependencies_one(bus, name, 0, &units, 0);
1020 }
1021
1022 static int analyze_critical_chain(int argc, char *argv[], void *userdata) {
1023 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1024 _cleanup_(unit_times_freep) struct unit_times *times = NULL;
1025 struct unit_times *u;
1026 Hashmap *h;
1027 int n, r;
1028
1029 r = acquire_bus(&bus, NULL);
1030 if (r < 0)
1031 return bus_log_connect_error(r);
1032
1033 n = acquire_time_data(bus, &times);
1034 if (n <= 0)
1035 return n;
1036
1037 h = hashmap_new(&string_hash_ops);
1038 if (!h)
1039 return log_oom();
1040
1041 for (u = times; u->has_data; u++) {
1042 r = hashmap_put(h, u->name, u);
1043 if (r < 0)
1044 return log_error_errno(r, "Failed to add entry to hashmap: %m");
1045 }
1046 unit_times_hashmap = h;
1047
1048 (void) pager_open(arg_pager_flags);
1049
1050 puts("The time when unit became active or started is printed after the \"@\" character.\n"
1051 "The time the unit took to start is printed after the \"+\" character.\n");
1052
1053 if (argc > 1) {
1054 char **name;
1055 STRV_FOREACH(name, strv_skip(argv, 1))
1056 list_dependencies(bus, *name);
1057 } else
1058 list_dependencies(bus, SPECIAL_DEFAULT_TARGET);
1059
1060 h = hashmap_free(h);
1061 return 0;
1062 }
1063
1064 static int analyze_blame(int argc, char *argv[], void *userdata) {
1065 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1066 _cleanup_(unit_times_freep) struct unit_times *times = NULL;
1067 _cleanup_(table_unrefp) Table *table = NULL;
1068 struct unit_times *u;
1069 TableCell *cell;
1070 int n, r;
1071
1072 r = acquire_bus(&bus, NULL);
1073 if (r < 0)
1074 return bus_log_connect_error(r);
1075
1076 n = acquire_time_data(bus, &times);
1077 if (n <= 0)
1078 return n;
1079
1080 table = table_new("time", "unit");
1081 if (!table)
1082 return log_oom();
1083
1084 table_set_header(table, false);
1085
1086 assert_se(cell = table_get_cell(table, 0, 0));
1087 r = table_set_ellipsize_percent(table, cell, 100);
1088 if (r < 0)
1089 return r;
1090
1091 r = table_set_align_percent(table, cell, 100);
1092 if (r < 0)
1093 return r;
1094
1095 assert_se(cell = table_get_cell(table, 0, 1));
1096 r = table_set_ellipsize_percent(table, cell, 100);
1097 if (r < 0)
1098 return r;
1099
1100 r = table_set_sort(table, (size_t) 0, (size_t) SIZE_MAX);
1101 if (r < 0)
1102 return r;
1103
1104 r = table_set_reverse(table, 0, true);
1105 if (r < 0)
1106 return r;
1107
1108 for (u = times; u->has_data; u++) {
1109 if (u->time <= 0)
1110 continue;
1111
1112 r = table_add_many(table,
1113 TABLE_TIMESPAN_MSEC, u->time,
1114 TABLE_STRING, u->name);
1115 if (r < 0)
1116 return table_log_add_error(r);
1117 }
1118
1119 (void) pager_open(arg_pager_flags);
1120
1121 return table_print(table, NULL);
1122 }
1123
1124 static int analyze_time(int argc, char *argv[], void *userdata) {
1125 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1126 _cleanup_free_ char *buf = NULL;
1127 int r;
1128
1129 r = acquire_bus(&bus, NULL);
1130 if (r < 0)
1131 return bus_log_connect_error(r);
1132
1133 r = pretty_boot_time(bus, &buf);
1134 if (r < 0)
1135 return r;
1136
1137 puts(buf);
1138 return 0;
1139 }
1140
1141 static int graph_one_property(
1142 sd_bus *bus,
1143 const UnitInfo *u,
1144 const char *prop,
1145 const char *color,
1146 char *patterns[],
1147 char *from_patterns[],
1148 char *to_patterns[]) {
1149
1150 _cleanup_strv_free_ char **units = NULL;
1151 char **unit;
1152 int r;
1153 bool match_patterns;
1154
1155 assert(u);
1156 assert(prop);
1157 assert(color);
1158
1159 match_patterns = strv_fnmatch(patterns, u->id);
1160
1161 if (!strv_isempty(from_patterns) && !match_patterns && !strv_fnmatch(from_patterns, u->id))
1162 return 0;
1163
1164 r = bus_get_unit_property_strv(bus, u->unit_path, prop, &units);
1165 if (r < 0)
1166 return r;
1167
1168 STRV_FOREACH(unit, units) {
1169 bool match_patterns2;
1170
1171 match_patterns2 = strv_fnmatch(patterns, *unit);
1172
1173 if (!strv_isempty(to_patterns) && !match_patterns2 && !strv_fnmatch(to_patterns, *unit))
1174 continue;
1175
1176 if (!strv_isempty(patterns) && !match_patterns && !match_patterns2)
1177 continue;
1178
1179 printf("\t\"%s\"->\"%s\" [color=\"%s\"];\n", u->id, *unit, color);
1180 }
1181
1182 return 0;
1183 }
1184
1185 static int graph_one(sd_bus *bus, const UnitInfo *u, char *patterns[], char *from_patterns[], char *to_patterns[]) {
1186 int r;
1187
1188 assert(bus);
1189 assert(u);
1190
1191 if (IN_SET(arg_dot, DEP_ORDER, DEP_ALL)) {
1192 r = graph_one_property(bus, u, "After", "green", patterns, from_patterns, to_patterns);
1193 if (r < 0)
1194 return r;
1195 }
1196
1197 if (IN_SET(arg_dot, DEP_REQUIRE, DEP_ALL)) {
1198 r = graph_one_property(bus, u, "Requires", "black", patterns, from_patterns, to_patterns);
1199 if (r < 0)
1200 return r;
1201 r = graph_one_property(bus, u, "Requisite", "darkblue", patterns, from_patterns, to_patterns);
1202 if (r < 0)
1203 return r;
1204 r = graph_one_property(bus, u, "Wants", "grey66", patterns, from_patterns, to_patterns);
1205 if (r < 0)
1206 return r;
1207 r = graph_one_property(bus, u, "Conflicts", "red", patterns, from_patterns, to_patterns);
1208 if (r < 0)
1209 return r;
1210 }
1211
1212 return 0;
1213 }
1214
1215 static int expand_patterns(sd_bus *bus, char **patterns, char ***ret) {
1216 _cleanup_strv_free_ char **expanded_patterns = NULL;
1217 char **pattern;
1218 int r;
1219
1220 STRV_FOREACH(pattern, patterns) {
1221 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1222 _cleanup_free_ char *unit = NULL, *unit_id = NULL;
1223
1224 if (strv_extend(&expanded_patterns, *pattern) < 0)
1225 return log_oom();
1226
1227 if (string_is_glob(*pattern))
1228 continue;
1229
1230 unit = unit_dbus_path_from_name(*pattern);
1231 if (!unit)
1232 return log_oom();
1233
1234 r = sd_bus_get_property_string(
1235 bus,
1236 "org.freedesktop.systemd1",
1237 unit,
1238 "org.freedesktop.systemd1.Unit",
1239 "Id",
1240 &error,
1241 &unit_id);
1242 if (r < 0)
1243 return log_error_errno(r, "Failed to get ID: %s", bus_error_message(&error, r));
1244
1245 if (!streq(*pattern, unit_id)) {
1246 if (strv_extend(&expanded_patterns, unit_id) < 0)
1247 return log_oom();
1248 }
1249 }
1250
1251 *ret = TAKE_PTR(expanded_patterns); /* do not free */
1252
1253 return 0;
1254 }
1255
1256 static int dot(int argc, char *argv[], void *userdata) {
1257 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1258 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1259 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1260 _cleanup_strv_free_ char **expanded_patterns = NULL;
1261 _cleanup_strv_free_ char **expanded_from_patterns = NULL;
1262 _cleanup_strv_free_ char **expanded_to_patterns = NULL;
1263 int r;
1264 UnitInfo u;
1265
1266 r = acquire_bus(&bus, NULL);
1267 if (r < 0)
1268 return bus_log_connect_error(r);
1269
1270 r = expand_patterns(bus, strv_skip(argv, 1), &expanded_patterns);
1271 if (r < 0)
1272 return r;
1273
1274 r = expand_patterns(bus, arg_dot_from_patterns, &expanded_from_patterns);
1275 if (r < 0)
1276 return r;
1277
1278 r = expand_patterns(bus, arg_dot_to_patterns, &expanded_to_patterns);
1279 if (r < 0)
1280 return r;
1281
1282 r = bus_call_method(bus, bus_systemd_mgr, "ListUnits", &error, &reply, "");
1283 if (r < 0)
1284 log_error_errno(r, "Failed to list units: %s", bus_error_message(&error, r));
1285
1286 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssssssouso)");
1287 if (r < 0)
1288 return bus_log_parse_error(r);
1289
1290 printf("digraph systemd {\n");
1291
1292 while ((r = bus_parse_unit_info(reply, &u)) > 0) {
1293
1294 r = graph_one(bus, &u, expanded_patterns, expanded_from_patterns, expanded_to_patterns);
1295 if (r < 0)
1296 return r;
1297 }
1298 if (r < 0)
1299 return bus_log_parse_error(r);
1300
1301 printf("}\n");
1302
1303 log_info(" Color legend: black = Requires\n"
1304 " dark blue = Requisite\n"
1305 " dark grey = Wants\n"
1306 " red = Conflicts\n"
1307 " green = After\n");
1308
1309 if (on_tty())
1310 log_notice("-- You probably want to process this output with graphviz' dot tool.\n"
1311 "-- Try a shell pipeline like 'systemd-analyze dot | dot -Tsvg > systemd.svg'!\n");
1312
1313 return 0;
1314 }
1315
1316 static int dump_fallback(sd_bus *bus) {
1317 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1318 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1319 const char *text = NULL;
1320 int r;
1321
1322 assert(bus);
1323
1324 r = bus_call_method(bus, bus_systemd_mgr, "Dump", &error, &reply, NULL);
1325 if (r < 0)
1326 return log_error_errno(r, "Failed to issue method call Dump: %s", bus_error_message(&error, r));
1327
1328 r = sd_bus_message_read(reply, "s", &text);
1329 if (r < 0)
1330 return bus_log_parse_error(r);
1331
1332 fputs(text, stdout);
1333 return 0;
1334 }
1335
1336 static int dump(int argc, char *argv[], void *userdata) {
1337 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1338 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1339 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1340 int fd = -1;
1341 int r;
1342
1343 r = acquire_bus(&bus, NULL);
1344 if (r < 0)
1345 return bus_log_connect_error(r);
1346
1347 (void) pager_open(arg_pager_flags);
1348
1349 if (!sd_bus_can_send(bus, SD_BUS_TYPE_UNIX_FD))
1350 return dump_fallback(bus);
1351
1352 r = bus_call_method(bus, bus_systemd_mgr, "DumpByFileDescriptor", &error, &reply, NULL);
1353 if (r < 0) {
1354 /* fall back to Dump if DumpByFileDescriptor is not supported */
1355 if (!IN_SET(r, -EACCES, -EBADR))
1356 return log_error_errno(r, "Failed to issue method call DumpByFileDescriptor: %s",
1357 bus_error_message(&error, r));
1358
1359 return dump_fallback(bus);
1360 }
1361
1362 r = sd_bus_message_read(reply, "h", &fd);
1363 if (r < 0)
1364 return bus_log_parse_error(r);
1365
1366 fflush(stdout);
1367 return copy_bytes(fd, STDOUT_FILENO, (uint64_t) -1, 0);
1368 }
1369
1370 static int cat_config(int argc, char *argv[], void *userdata) {
1371 char **arg, **list;
1372 int r;
1373
1374 (void) pager_open(arg_pager_flags);
1375
1376 list = strv_skip(argv, 1);
1377 STRV_FOREACH(arg, list) {
1378 const char *t = NULL;
1379
1380 if (arg != list)
1381 print_separator();
1382
1383 if (path_is_absolute(*arg)) {
1384 const char *dir;
1385
1386 NULSTR_FOREACH(dir, CONF_PATHS_NULSTR("")) {
1387 t = path_startswith(*arg, dir);
1388 if (t)
1389 break;
1390 }
1391
1392 if (!t)
1393 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1394 "Path %s does not start with any known prefix.", *arg);
1395 } else
1396 t = *arg;
1397
1398 r = conf_files_cat(arg_root, t);
1399 if (r < 0)
1400 return r;
1401 }
1402
1403 return 0;
1404 }
1405
1406 static int set_log_level(int argc, char *argv[], void *userdata) {
1407 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1408 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1409 int r;
1410
1411 assert(argc == 2);
1412 assert(argv);
1413
1414 r = acquire_bus(&bus, NULL);
1415 if (r < 0)
1416 return bus_log_connect_error(r);
1417
1418 r = bus_set_property(bus, bus_systemd_mgr, "LogLevel", &error, "s", argv[1]);
1419 if (r < 0)
1420 return log_error_errno(r, "Failed to issue method call: %s", bus_error_message(&error, r));
1421
1422 return 0;
1423 }
1424
1425 static int get_log_level(int argc, char *argv[], void *userdata) {
1426 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1427 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1428 _cleanup_free_ char *level = NULL;
1429 int r;
1430
1431 r = acquire_bus(&bus, NULL);
1432 if (r < 0)
1433 return bus_log_connect_error(r);
1434
1435 r = bus_get_property_string(bus, bus_systemd_mgr, "LogLevel", &error, &level);
1436 if (r < 0)
1437 return log_error_errno(r, "Failed to get log level: %s", bus_error_message(&error, r));
1438
1439 puts(level);
1440 return 0;
1441 }
1442
1443 static int get_or_set_log_level(int argc, char *argv[], void *userdata) {
1444 return (argc == 1) ? get_log_level(argc, argv, userdata) : set_log_level(argc, argv, userdata);
1445 }
1446
1447 static int set_log_target(int argc, char *argv[], void *userdata) {
1448 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1449 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1450 int r;
1451
1452 assert(argc == 2);
1453 assert(argv);
1454
1455 r = acquire_bus(&bus, NULL);
1456 if (r < 0)
1457 return bus_log_connect_error(r);
1458
1459 r = bus_set_property(bus, bus_systemd_mgr, "LogTarget", &error, "s", argv[1]);
1460 if (r < 0)
1461 return log_error_errno(r, "Failed to issue method call: %s", bus_error_message(&error, r));
1462
1463 return 0;
1464 }
1465
1466 static int get_log_target(int argc, char *argv[], void *userdata) {
1467 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1468 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1469 _cleanup_free_ char *target = NULL;
1470 int r;
1471
1472 r = acquire_bus(&bus, NULL);
1473 if (r < 0)
1474 return bus_log_connect_error(r);
1475
1476 r = bus_get_property_string(bus, bus_systemd_mgr, "LogTarget", &error, &target);
1477 if (r < 0)
1478 return log_error_errno(r, "Failed to get log target: %s", bus_error_message(&error, r));
1479
1480 puts(target);
1481 return 0;
1482 }
1483
1484 static int get_or_set_log_target(int argc, char *argv[], void *userdata) {
1485 return (argc == 1) ? get_log_target(argc, argv, userdata) : set_log_target(argc, argv, userdata);
1486 }
1487
1488 static bool strv_fnmatch_strv_or_empty(char* const* patterns, char **strv, int flags) {
1489 char **s;
1490 STRV_FOREACH(s, strv)
1491 if (strv_fnmatch_or_empty(patterns, *s, flags))
1492 return true;
1493
1494 return false;
1495 }
1496
1497 static int do_unit_files(int argc, char *argv[], void *userdata) {
1498 _cleanup_(lookup_paths_free) LookupPaths lp = {};
1499 _cleanup_hashmap_free_ Hashmap *unit_ids = NULL;
1500 _cleanup_hashmap_free_ Hashmap *unit_names = NULL;
1501 char **patterns = strv_skip(argv, 1);
1502 const char *k, *dst;
1503 char **v;
1504 int r;
1505
1506 r = lookup_paths_init(&lp, arg_scope, 0, NULL);
1507 if (r < 0)
1508 return log_error_errno(r, "lookup_paths_init() failed: %m");
1509
1510 r = unit_file_build_name_map(&lp, NULL, &unit_ids, &unit_names, NULL);
1511 if (r < 0)
1512 return log_error_errno(r, "unit_file_build_name_map() failed: %m");
1513
1514 HASHMAP_FOREACH_KEY(dst, k, unit_ids) {
1515 if (!strv_fnmatch_or_empty(patterns, k, FNM_NOESCAPE) &&
1516 !strv_fnmatch_or_empty(patterns, dst, FNM_NOESCAPE))
1517 continue;
1518
1519 printf("ids: %s → %s\n", k, dst);
1520 }
1521
1522 HASHMAP_FOREACH_KEY(v, k, unit_names) {
1523 if (!strv_fnmatch_or_empty(patterns, k, FNM_NOESCAPE) &&
1524 !strv_fnmatch_strv_or_empty(patterns, v, FNM_NOESCAPE))
1525 continue;
1526
1527 _cleanup_free_ char *j = strv_join(v, ", ");
1528 printf("aliases: %s ← %s\n", k, j);
1529 }
1530
1531 return 0;
1532 }
1533
1534 static int dump_unit_paths(int argc, char *argv[], void *userdata) {
1535 _cleanup_(lookup_paths_free) LookupPaths paths = {};
1536 int r;
1537 char **p;
1538
1539 r = lookup_paths_init(&paths, arg_scope, 0, NULL);
1540 if (r < 0)
1541 return log_error_errno(r, "lookup_paths_init() failed: %m");
1542
1543 STRV_FOREACH(p, paths.search_path)
1544 puts(*p);
1545
1546 return 0;
1547 }
1548
1549 static int dump_exit_status(int argc, char *argv[], void *userdata) {
1550 _cleanup_(table_unrefp) Table *table = NULL;
1551 int r;
1552
1553 table = table_new("name", "status", "class");
1554 if (!table)
1555 return log_oom();
1556
1557 r = table_set_align_percent(table, table_get_cell(table, 0, 1), 100);
1558 if (r < 0)
1559 return log_error_errno(r, "Failed to right-align status: %m");
1560
1561 if (strv_isempty(strv_skip(argv, 1)))
1562 for (size_t i = 0; i < ELEMENTSOF(exit_status_mappings); i++) {
1563 if (!exit_status_mappings[i].name)
1564 continue;
1565
1566 r = table_add_many(table,
1567 TABLE_STRING, exit_status_mappings[i].name,
1568 TABLE_INT, (int) i,
1569 TABLE_STRING, exit_status_class(i));
1570 if (r < 0)
1571 return table_log_add_error(r);
1572 }
1573 else
1574 for (int i = 1; i < argc; i++) {
1575 int status;
1576
1577 status = exit_status_from_string(argv[i]);
1578 if (status < 0)
1579 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Invalid exit status \"%s\".", argv[i]);
1580
1581 assert(status >= 0 && (size_t) status < ELEMENTSOF(exit_status_mappings));
1582 r = table_add_many(table,
1583 TABLE_STRING, exit_status_mappings[status].name ?: "-",
1584 TABLE_INT, status,
1585 TABLE_STRING, exit_status_class(status) ?: "-");
1586 if (r < 0)
1587 return table_log_add_error(r);
1588 }
1589
1590 (void) pager_open(arg_pager_flags);
1591
1592 return table_print(table, NULL);
1593 }
1594
1595 static int dump_capabilities(int argc, char *argv[], void *userdata) {
1596 _cleanup_(table_unrefp) Table *table = NULL;
1597 unsigned last_cap;
1598 int r;
1599
1600 table = table_new("name", "number");
1601 if (!table)
1602 return log_oom();
1603
1604 (void) table_set_align_percent(table, table_get_cell(table, 0, 1), 100);
1605
1606 /* Determine the maximum of the last cap known by the kernel and by us */
1607 last_cap = MAX((unsigned) CAP_LAST_CAP, cap_last_cap());
1608
1609 if (strv_isempty(strv_skip(argv, 1)))
1610 for (unsigned c = 0; c <= last_cap; c++) {
1611 r = table_add_many(table,
1612 TABLE_STRING, capability_to_name(c) ?: "cap_???",
1613 TABLE_UINT, c);
1614 if (r < 0)
1615 return table_log_add_error(r);
1616 }
1617 else {
1618 for (int i = 1; i < argc; i++) {
1619 int c;
1620
1621 c = capability_from_name(argv[i]);
1622 if (c < 0 || (unsigned) c > last_cap)
1623 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Capability \"%s\" not known.", argv[i]);
1624
1625 r = table_add_many(table,
1626 TABLE_STRING, capability_to_name(c) ?: "cap_???",
1627 TABLE_UINT, (unsigned) c);
1628 if (r < 0)
1629 return table_log_add_error(r);
1630 }
1631
1632 (void) table_set_sort(table, (size_t) 1, (size_t) -1);
1633 }
1634
1635 (void) pager_open(arg_pager_flags);
1636
1637 return table_print(table, NULL);
1638 }
1639
1640 #if HAVE_SECCOMP
1641
1642 static int load_kernel_syscalls(Set **ret) {
1643 _cleanup_set_free_ Set *syscalls = NULL;
1644 _cleanup_fclose_ FILE *f = NULL;
1645 int r;
1646
1647 /* Let's read the available system calls from the list of available tracing events. Slightly dirty,
1648 * but good enough for analysis purposes. */
1649
1650 f = fopen("/sys/kernel/tracing/available_events", "re");
1651 if (!f) {
1652 /* We tried the non-debugfs mount point and that didn't work. If it wasn't mounted, maybe the
1653 * old debugfs mount point works? */
1654 f = fopen("/sys/kernel/debug/tracing/available_events", "re");
1655 if (!f)
1656 return log_full_errno(IN_SET(errno, EPERM, EACCES, ENOENT) ? LOG_DEBUG : LOG_WARNING, errno,
1657 "Can't read open tracefs' available_events file: %m");
1658 }
1659
1660 for (;;) {
1661 _cleanup_free_ char *line = NULL;
1662 const char *e;
1663
1664 r = read_line(f, LONG_LINE_MAX, &line);
1665 if (r < 0)
1666 return log_error_errno(r, "Failed to read system call list: %m");
1667 if (r == 0)
1668 break;
1669
1670 e = startswith(line, "syscalls:sys_enter_");
1671 if (!e)
1672 continue;
1673
1674 /* These are named differently inside the kernel than their external name for historical
1675 * reasons. Let's hide them here. */
1676 if (STR_IN_SET(e, "newuname", "newfstat", "newstat", "newlstat", "sysctl"))
1677 continue;
1678
1679 r = set_put_strdup(&syscalls, e);
1680 if (r < 0)
1681 return log_error_errno(r, "Failed to add system call to list: %m");
1682 }
1683
1684 *ret = TAKE_PTR(syscalls);
1685 return 0;
1686 }
1687
1688 static void syscall_set_remove(Set *s, const SyscallFilterSet *set) {
1689 const char *syscall;
1690
1691 NULSTR_FOREACH(syscall, set->value) {
1692 if (syscall[0] == '@')
1693 continue;
1694
1695 free(set_remove(s, syscall));
1696 }
1697 }
1698
1699 static void dump_syscall_filter(const SyscallFilterSet *set) {
1700 const char *syscall;
1701
1702 printf("%s%s%s\n"
1703 " # %s\n",
1704 ansi_highlight(),
1705 set->name,
1706 ansi_normal(),
1707 set->help);
1708
1709 NULSTR_FOREACH(syscall, set->value)
1710 printf(" %s%s%s\n", syscall[0] == '@' ? ansi_underline() : "", syscall, ansi_normal());
1711 }
1712
1713 static int dump_syscall_filters(int argc, char *argv[], void *userdata) {
1714 bool first = true;
1715
1716 (void) pager_open(arg_pager_flags);
1717
1718 if (strv_isempty(strv_skip(argv, 1))) {
1719 _cleanup_set_free_ Set *kernel = NULL, *known = NULL;
1720 const char *sys;
1721 int i, k;
1722
1723 NULSTR_FOREACH(sys, syscall_filter_sets[SYSCALL_FILTER_SET_KNOWN].value)
1724 if (set_put_strdup(&known, sys) < 0)
1725 return log_oom();
1726
1727 k = load_kernel_syscalls(&kernel);
1728
1729 for (i = 0; i < _SYSCALL_FILTER_SET_MAX; i++) {
1730 const SyscallFilterSet *set = syscall_filter_sets + i;
1731 if (!first)
1732 puts("");
1733
1734 dump_syscall_filter(set);
1735 syscall_set_remove(kernel, set);
1736 if (i != SYSCALL_FILTER_SET_KNOWN)
1737 syscall_set_remove(known, set);
1738 first = false;
1739 }
1740
1741 if (!set_isempty(known)) {
1742 _cleanup_free_ char **l = NULL;
1743 char **syscall;
1744
1745 printf("\n"
1746 "# %sUngrouped System Calls%s (known but not included in any of the groups except @known):\n",
1747 ansi_highlight(), ansi_normal());
1748
1749 l = set_get_strv(known);
1750 if (!l)
1751 return log_oom();
1752
1753 strv_sort(l);
1754
1755 STRV_FOREACH(syscall, l)
1756 printf("# %s\n", *syscall);
1757 }
1758
1759 if (k < 0) {
1760 fputc('\n', stdout);
1761 fflush(stdout);
1762 log_notice_errno(k, "# Not showing unlisted system calls, couldn't retrieve kernel system call list: %m");
1763 } else if (!set_isempty(kernel)) {
1764 _cleanup_free_ char **l = NULL;
1765 char **syscall;
1766
1767 printf("\n"
1768 "# %sUnlisted System Calls%s (supported by the local kernel, but not included in any of the groups listed above):\n",
1769 ansi_highlight(), ansi_normal());
1770
1771 l = set_get_strv(kernel);
1772 if (!l)
1773 return log_oom();
1774
1775 strv_sort(l);
1776
1777 STRV_FOREACH(syscall, l)
1778 printf("# %s\n", *syscall);
1779 }
1780 } else {
1781 char **name;
1782
1783 STRV_FOREACH(name, strv_skip(argv, 1)) {
1784 const SyscallFilterSet *set;
1785
1786 if (!first)
1787 puts("");
1788
1789 set = syscall_filter_set_find(*name);
1790 if (!set) {
1791 /* make sure the error appears below normal output */
1792 fflush(stdout);
1793
1794 return log_error_errno(SYNTHETIC_ERRNO(ENOENT),
1795 "Filter set \"%s\" not found.", *name);
1796 }
1797
1798 dump_syscall_filter(set);
1799 first = false;
1800 }
1801 }
1802
1803 return 0;
1804 }
1805
1806 #else
1807 static int dump_syscall_filters(int argc, char *argv[], void *userdata) {
1808 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP), "Not compiled with syscall filters, sorry.");
1809 }
1810 #endif
1811
1812 static void parsing_hint(const char *p, bool calendar, bool timestamp, bool timespan) {
1813 if (calendar && calendar_spec_from_string(p, NULL) >= 0)
1814 log_notice("Hint: this expression is a valid calendar specification. "
1815 "Use 'systemd-analyze calendar \"%s\"' instead?", p);
1816 if (timestamp && parse_timestamp(p, NULL) >= 0)
1817 log_notice("Hint: this expression is a valid timestamp. "
1818 "Use 'systemd-analyze timestamp \"%s\"' instead?", p);
1819 if (timespan && parse_time(p, NULL, USEC_PER_SEC) >= 0)
1820 log_notice("Hint: this expression is a valid timespan. "
1821 "Use 'systemd-analyze timespan \"%s\"' instead?", p);
1822 }
1823
1824 static int dump_timespan(int argc, char *argv[], void *userdata) {
1825 char **input_timespan;
1826
1827 STRV_FOREACH(input_timespan, strv_skip(argv, 1)) {
1828 _cleanup_(table_unrefp) Table *table = NULL;
1829 usec_t output_usecs;
1830 TableCell *cell;
1831 int r;
1832
1833 r = parse_time(*input_timespan, &output_usecs, USEC_PER_SEC);
1834 if (r < 0) {
1835 log_error_errno(r, "Failed to parse time span '%s': %m", *input_timespan);
1836 parsing_hint(*input_timespan, true, true, false);
1837 return r;
1838 }
1839
1840 table = table_new("name", "value");
1841 if (!table)
1842 return log_oom();
1843
1844 table_set_header(table, false);
1845
1846 assert_se(cell = table_get_cell(table, 0, 0));
1847 r = table_set_ellipsize_percent(table, cell, 100);
1848 if (r < 0)
1849 return r;
1850
1851 r = table_set_align_percent(table, cell, 100);
1852 if (r < 0)
1853 return r;
1854
1855 assert_se(cell = table_get_cell(table, 0, 1));
1856 r = table_set_ellipsize_percent(table, cell, 100);
1857 if (r < 0)
1858 return r;
1859
1860 r = table_add_many(table,
1861 TABLE_STRING, "Original:",
1862 TABLE_STRING, *input_timespan);
1863 if (r < 0)
1864 return table_log_add_error(r);
1865
1866 r = table_add_cell_stringf(table, NULL, "%ss:", special_glyph(SPECIAL_GLYPH_MU));
1867 if (r < 0)
1868 return table_log_add_error(r);
1869
1870 r = table_add_many(table,
1871 TABLE_UINT64, output_usecs,
1872 TABLE_STRING, "Human:",
1873 TABLE_TIMESPAN, output_usecs,
1874 TABLE_SET_COLOR, ansi_highlight());
1875 if (r < 0)
1876 return table_log_add_error(r);
1877
1878 r = table_print(table, NULL);
1879 if (r < 0)
1880 return r;
1881
1882 if (input_timespan[1])
1883 putchar('\n');
1884 }
1885
1886 return EXIT_SUCCESS;
1887 }
1888
1889 static int test_timestamp_one(const char *p) {
1890 _cleanup_(table_unrefp) Table *table = NULL;
1891 TableCell *cell;
1892 usec_t usec;
1893 int r;
1894
1895 r = parse_timestamp(p, &usec);
1896 if (r < 0) {
1897 log_error_errno(r, "Failed to parse \"%s\": %m", p);
1898 parsing_hint(p, true, false, true);
1899 return r;
1900 }
1901
1902 table = table_new("name", "value");
1903 if (!table)
1904 return log_oom();
1905
1906 table_set_header(table, false);
1907
1908 assert_se(cell = table_get_cell(table, 0, 0));
1909 r = table_set_ellipsize_percent(table, cell, 100);
1910 if (r < 0)
1911 return r;
1912
1913 r = table_set_align_percent(table, cell, 100);
1914 if (r < 0)
1915 return r;
1916
1917 assert_se(cell = table_get_cell(table, 0, 1));
1918 r = table_set_ellipsize_percent(table, cell, 100);
1919 if (r < 0)
1920 return r;
1921
1922 r = table_add_many(table,
1923 TABLE_STRING, "Original form:",
1924 TABLE_STRING, p,
1925 TABLE_STRING, "Normalized form:",
1926 TABLE_TIMESTAMP, usec,
1927 TABLE_SET_COLOR, ansi_highlight_blue());
1928 if (r < 0)
1929 return table_log_add_error(r);
1930
1931 if (!in_utc_timezone()) {
1932 r = table_add_many(table,
1933 TABLE_STRING, "(in UTC):",
1934 TABLE_TIMESTAMP_UTC, usec);
1935 if (r < 0)
1936 return table_log_add_error(r);
1937 }
1938
1939 r = table_add_cell(table, NULL, TABLE_STRING, "UNIX seconds:");
1940 if (r < 0)
1941 return table_log_add_error(r);
1942
1943 if (usec % USEC_PER_SEC == 0)
1944 r = table_add_cell_stringf(table, NULL, "@%"PRI_USEC,
1945 usec / USEC_PER_SEC);
1946 else
1947 r = table_add_cell_stringf(table, NULL, "@%"PRI_USEC".%06"PRI_USEC"",
1948 usec / USEC_PER_SEC,
1949 usec % USEC_PER_SEC);
1950 if (r < 0)
1951 return r;
1952
1953 r = table_add_many(table,
1954 TABLE_STRING, "From now:",
1955 TABLE_TIMESTAMP_RELATIVE, usec);
1956 if (r < 0)
1957 return table_log_add_error(r);
1958
1959 return table_print(table, NULL);
1960 }
1961
1962 static int test_timestamp(int argc, char *argv[], void *userdata) {
1963 int ret = 0, r;
1964 char **p;
1965
1966 STRV_FOREACH(p, strv_skip(argv, 1)) {
1967 r = test_timestamp_one(*p);
1968 if (ret == 0 && r < 0)
1969 ret = r;
1970
1971 if (*(p + 1))
1972 putchar('\n');
1973 }
1974
1975 return ret;
1976 }
1977
1978 static int test_calendar_one(usec_t n, const char *p) {
1979 _cleanup_(calendar_spec_freep) CalendarSpec *spec = NULL;
1980 _cleanup_(table_unrefp) Table *table = NULL;
1981 _cleanup_free_ char *t = NULL;
1982 TableCell *cell;
1983 int r;
1984
1985 r = calendar_spec_from_string(p, &spec);
1986 if (r < 0) {
1987 log_error_errno(r, "Failed to parse calendar specification '%s': %m", p);
1988 parsing_hint(p, false, true, true);
1989 return r;
1990 }
1991
1992 r = calendar_spec_to_string(spec, &t);
1993 if (r < 0)
1994 return log_error_errno(r, "Failed to format calendar specification '%s': %m", p);
1995
1996 table = table_new("name", "value");
1997 if (!table)
1998 return log_oom();
1999
2000 table_set_header(table, false);
2001
2002 assert_se(cell = table_get_cell(table, 0, 0));
2003 r = table_set_ellipsize_percent(table, cell, 100);
2004 if (r < 0)
2005 return r;
2006
2007 r = table_set_align_percent(table, cell, 100);
2008 if (r < 0)
2009 return r;
2010
2011 assert_se(cell = table_get_cell(table, 0, 1));
2012 r = table_set_ellipsize_percent(table, cell, 100);
2013 if (r < 0)
2014 return r;
2015
2016 if (!streq(t, p)) {
2017 r = table_add_many(table,
2018 TABLE_STRING, "Original form:",
2019 TABLE_STRING, p);
2020 if (r < 0)
2021 return table_log_add_error(r);
2022 }
2023
2024 r = table_add_many(table,
2025 TABLE_STRING, "Normalized form:",
2026 TABLE_STRING, t);
2027 if (r < 0)
2028 return table_log_add_error(r);
2029
2030 for (unsigned i = 0; i < arg_iterations; i++) {
2031 usec_t next;
2032
2033 r = calendar_spec_next_usec(spec, n, &next);
2034 if (r == -ENOENT) {
2035 if (i == 0) {
2036 r = table_add_many(table,
2037 TABLE_STRING, "Next elapse:",
2038 TABLE_STRING, "never",
2039 TABLE_SET_COLOR, ansi_highlight_yellow());
2040 if (r < 0)
2041 return table_log_add_error(r);
2042 }
2043 break;
2044 }
2045 if (r < 0)
2046 return log_error_errno(r, "Failed to determine next elapse for '%s': %m", p);
2047
2048 if (i == 0) {
2049 r = table_add_many(table,
2050 TABLE_STRING, "Next elapse:",
2051 TABLE_TIMESTAMP, next,
2052 TABLE_SET_COLOR, ansi_highlight_blue());
2053 if (r < 0)
2054 return table_log_add_error(r);
2055 } else {
2056 int k = DECIMAL_STR_WIDTH(i + 1);
2057
2058 if (k < 8)
2059 k = 8 - k;
2060 else
2061 k = 0;
2062
2063 r = table_add_cell_stringf(table, NULL, "Iter. #%u:", i+1);
2064 if (r < 0)
2065 return table_log_add_error(r);
2066
2067 r = table_add_many(table,
2068 TABLE_TIMESTAMP, next,
2069 TABLE_SET_COLOR, ansi_highlight_blue());
2070 if (r < 0)
2071 return table_log_add_error(r);
2072 }
2073
2074 if (!in_utc_timezone()) {
2075 r = table_add_many(table,
2076 TABLE_STRING, "(in UTC):",
2077 TABLE_TIMESTAMP_UTC, next);
2078 if (r < 0)
2079 return table_log_add_error(r);
2080 }
2081
2082 r = table_add_many(table,
2083 TABLE_STRING, "From now:",
2084 TABLE_TIMESTAMP_RELATIVE, next);
2085 if (r < 0)
2086 return table_log_add_error(r);
2087
2088 n = next;
2089 }
2090
2091 return table_print(table, NULL);
2092 }
2093
2094 static int test_calendar(int argc, char *argv[], void *userdata) {
2095 int ret = 0, r;
2096 char **p;
2097 usec_t n;
2098
2099 if (arg_base_time != USEC_INFINITY)
2100 n = arg_base_time;
2101 else
2102 n = now(CLOCK_REALTIME); /* We want to use the same "base" for all expressions */
2103
2104 STRV_FOREACH(p, strv_skip(argv, 1)) {
2105 r = test_calendar_one(n, *p);
2106 if (ret == 0 && r < 0)
2107 ret = r;
2108
2109 if (*(p + 1))
2110 putchar('\n');
2111 }
2112
2113 return ret;
2114 }
2115
2116 static int service_watchdogs(int argc, char *argv[], void *userdata) {
2117 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2118 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
2119 int b, r;
2120
2121 assert(IN_SET(argc, 1, 2));
2122 assert(argv);
2123
2124 r = acquire_bus(&bus, NULL);
2125 if (r < 0)
2126 return bus_log_connect_error(r);
2127
2128 if (argc == 1) {
2129 /* get ServiceWatchdogs */
2130 r = bus_get_property_trivial(bus, bus_systemd_mgr, "ServiceWatchdogs", &error, 'b', &b);
2131 if (r < 0)
2132 return log_error_errno(r, "Failed to get service-watchdog state: %s", bus_error_message(&error, r));
2133
2134 printf("%s\n", yes_no(!!b));
2135
2136 } else {
2137 /* set ServiceWatchdogs */
2138 b = parse_boolean(argv[1]);
2139 if (b < 0)
2140 return log_error_errno(b, "Failed to parse service-watchdogs argument: %m");
2141
2142 r = bus_set_property(bus, bus_systemd_mgr, "ServiceWatchdogs", &error, "b", b);
2143 if (r < 0)
2144 return log_error_errno(r, "Failed to set service-watchdog state: %s", bus_error_message(&error, r));
2145 }
2146
2147 return 0;
2148 }
2149
2150 static int do_condition(int argc, char *argv[], void *userdata) {
2151 return verify_conditions(strv_skip(argv, 1), arg_scope);
2152 }
2153
2154 static int do_verify(int argc, char *argv[], void *userdata) {
2155 return verify_units(strv_skip(argv, 1), arg_scope, arg_man, arg_generators);
2156 }
2157
2158 static int do_security(int argc, char *argv[], void *userdata) {
2159 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
2160 int r;
2161
2162 r = acquire_bus(&bus, NULL);
2163 if (r < 0)
2164 return bus_log_connect_error(r);
2165
2166 (void) pager_open(arg_pager_flags);
2167
2168 return analyze_security(bus, strv_skip(argv, 1), 0);
2169 }
2170
2171 static int help(int argc, char *argv[], void *userdata) {
2172 _cleanup_free_ char *link = NULL, *dot_link = NULL;
2173 int r;
2174
2175 (void) pager_open(arg_pager_flags);
2176
2177 r = terminal_urlify_man("systemd-analyze", "1", &link);
2178 if (r < 0)
2179 return log_oom();
2180
2181 /* Not using terminal_urlify_man() for this, since we don't want the "man page" text suffix in this case. */
2182 r = terminal_urlify("man:dot(1)", "dot(1)", &dot_link);
2183 if (r < 0)
2184 return log_oom();
2185
2186 printf("%s [OPTIONS...] COMMAND ...\n\n"
2187 "%sProfile systemd, show unit dependencies, check unit files.%s\n"
2188 "\nCommands:\n"
2189 " [time] Print time required to boot the machine\n"
2190 " blame Print list of running units ordered by time to init\n"
2191 " critical-chain [UNIT...] Print a tree of the time critical chain of units\n"
2192 " plot Output SVG graphic showing service initialization\n"
2193 " dot [UNIT...] Output dependency graph in %s format\n"
2194 " dump Output state serialization of service manager\n"
2195 " cat-config Show configuration file and drop-ins\n"
2196 " unit-files List files and symlinks for units\n"
2197 " unit-paths List load directories for units\n"
2198 " exit-status [STATUS...] List exit status definitions\n"
2199 " capability [CAP...] List capability definitions\n"
2200 " syscall-filter [NAME...] Print list of syscalls in seccomp filter\n"
2201 " condition CONDITION... Evaluate conditions and asserts\n"
2202 " verify FILE... Check unit files for correctness\n"
2203 " calendar SPEC... Validate repetitive calendar time events\n"
2204 " timestamp TIMESTAMP... Validate a timestamp\n"
2205 " timespan SPAN... Validate a time span\n"
2206 " security [UNIT...] Analyze security of unit\n"
2207 "\nOptions:\n"
2208 " -h --help Show this help\n"
2209 " --version Show package version\n"
2210 " --no-pager Do not pipe output into a pager\n"
2211 " --system Operate on system systemd instance\n"
2212 " --user Operate on user systemd instance\n"
2213 " --global Operate on global user configuration\n"
2214 " -H --host=[USER@]HOST Operate on remote host\n"
2215 " -M --machine=CONTAINER Operate on local container\n"
2216 " --order Show only order in the graph\n"
2217 " --require Show only requirement in the graph\n"
2218 " --from-pattern=GLOB Show only origins in the graph\n"
2219 " --to-pattern=GLOB Show only destinations in the graph\n"
2220 " --fuzz=SECONDS Also print services which finished SECONDS earlier\n"
2221 " than the latest in the branch\n"
2222 " --man[=BOOL] Do [not] check for existence of man pages\n"
2223 " --generators[=BOOL] Do [not] run unit generators (requires privileges)\n"
2224 " --iterations=N Show the specified number of iterations\n"
2225 " --base-time=TIMESTAMP Calculate calendar times relative to specified time\n"
2226 "\nSee the %s for details.\n"
2227 , program_invocation_short_name
2228 , ansi_highlight()
2229 , ansi_normal()
2230 , dot_link
2231 , link
2232 );
2233
2234 /* When updating this list, including descriptions, apply changes to
2235 * shell-completion/bash/systemd-analyze and shell-completion/zsh/_systemd-analyze too. */
2236
2237 return 0;
2238 }
2239
2240 static int parse_argv(int argc, char *argv[]) {
2241 enum {
2242 ARG_VERSION = 0x100,
2243 ARG_ORDER,
2244 ARG_REQUIRE,
2245 ARG_ROOT,
2246 ARG_SYSTEM,
2247 ARG_USER,
2248 ARG_GLOBAL,
2249 ARG_DOT_FROM_PATTERN,
2250 ARG_DOT_TO_PATTERN,
2251 ARG_FUZZ,
2252 ARG_NO_PAGER,
2253 ARG_MAN,
2254 ARG_GENERATORS,
2255 ARG_ITERATIONS,
2256 ARG_BASE_TIME,
2257 };
2258
2259 static const struct option options[] = {
2260 { "help", no_argument, NULL, 'h' },
2261 { "version", no_argument, NULL, ARG_VERSION },
2262 { "order", no_argument, NULL, ARG_ORDER },
2263 { "require", no_argument, NULL, ARG_REQUIRE },
2264 { "root", required_argument, NULL, ARG_ROOT },
2265 { "system", no_argument, NULL, ARG_SYSTEM },
2266 { "user", no_argument, NULL, ARG_USER },
2267 { "global", no_argument, NULL, ARG_GLOBAL },
2268 { "from-pattern", required_argument, NULL, ARG_DOT_FROM_PATTERN },
2269 { "to-pattern", required_argument, NULL, ARG_DOT_TO_PATTERN },
2270 { "fuzz", required_argument, NULL, ARG_FUZZ },
2271 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
2272 { "man", optional_argument, NULL, ARG_MAN },
2273 { "generators", optional_argument, NULL, ARG_GENERATORS },
2274 { "host", required_argument, NULL, 'H' },
2275 { "machine", required_argument, NULL, 'M' },
2276 { "iterations", required_argument, NULL, ARG_ITERATIONS },
2277 { "base-time", required_argument, NULL, ARG_BASE_TIME },
2278 {}
2279 };
2280
2281 int r, c;
2282
2283 assert(argc >= 0);
2284 assert(argv);
2285
2286 while ((c = getopt_long(argc, argv, "hH:M:", options, NULL)) >= 0)
2287 switch (c) {
2288
2289 case 'h':
2290 return help(0, NULL, NULL);
2291
2292 case ARG_VERSION:
2293 return version();
2294
2295 case ARG_ROOT:
2296 arg_root = optarg;
2297 break;
2298
2299 case ARG_SYSTEM:
2300 arg_scope = UNIT_FILE_SYSTEM;
2301 break;
2302
2303 case ARG_USER:
2304 arg_scope = UNIT_FILE_USER;
2305 break;
2306
2307 case ARG_GLOBAL:
2308 arg_scope = UNIT_FILE_GLOBAL;
2309 break;
2310
2311 case ARG_ORDER:
2312 arg_dot = DEP_ORDER;
2313 break;
2314
2315 case ARG_REQUIRE:
2316 arg_dot = DEP_REQUIRE;
2317 break;
2318
2319 case ARG_DOT_FROM_PATTERN:
2320 if (strv_extend(&arg_dot_from_patterns, optarg) < 0)
2321 return log_oom();
2322
2323 break;
2324
2325 case ARG_DOT_TO_PATTERN:
2326 if (strv_extend(&arg_dot_to_patterns, optarg) < 0)
2327 return log_oom();
2328
2329 break;
2330
2331 case ARG_FUZZ:
2332 r = parse_sec(optarg, &arg_fuzz);
2333 if (r < 0)
2334 return r;
2335 break;
2336
2337 case ARG_NO_PAGER:
2338 arg_pager_flags |= PAGER_DISABLE;
2339 break;
2340
2341 case 'H':
2342 arg_transport = BUS_TRANSPORT_REMOTE;
2343 arg_host = optarg;
2344 break;
2345
2346 case 'M':
2347 arg_transport = BUS_TRANSPORT_MACHINE;
2348 arg_host = optarg;
2349 break;
2350
2351 case ARG_MAN:
2352 if (optarg) {
2353 r = parse_boolean(optarg);
2354 if (r < 0)
2355 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2356 "Failed to parse --man= argument.");
2357
2358 arg_man = r;
2359 } else
2360 arg_man = true;
2361
2362 break;
2363
2364 case ARG_GENERATORS:
2365 if (optarg) {
2366 r = parse_boolean(optarg);
2367 if (r < 0)
2368 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2369 "Failed to parse --generators= argument.");
2370
2371 arg_generators = r;
2372 } else
2373 arg_generators = true;
2374
2375 break;
2376
2377 case ARG_ITERATIONS:
2378 r = safe_atou(optarg, &arg_iterations);
2379 if (r < 0)
2380 return log_error_errno(r, "Failed to parse iterations: %s", optarg);
2381
2382 break;
2383
2384 case ARG_BASE_TIME:
2385 r = parse_timestamp(optarg, &arg_base_time);
2386 if (r < 0)
2387 return log_error_errno(r, "Failed to parse --base-time= parameter: %s", optarg);
2388
2389 break;
2390
2391 case '?':
2392 return -EINVAL;
2393
2394 default:
2395 assert_not_reached("Unhandled option code.");
2396 }
2397
2398 if (arg_scope == UNIT_FILE_GLOBAL &&
2399 !STR_IN_SET(argv[optind] ?: "time", "dot", "unit-paths", "verify"))
2400 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2401 "Option --global only makes sense with verbs dot, unit-paths, verify.");
2402
2403 if (streq_ptr(argv[optind], "cat-config") && arg_scope == UNIT_FILE_USER)
2404 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2405 "Option --user is not supported for cat-config right now.");
2406
2407 if (arg_root && !streq_ptr(argv[optind], "cat-config"))
2408 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2409 "Option --root is only supported for cat-config right now.");
2410
2411 return 1; /* work to do */
2412 }
2413
2414 static int run(int argc, char *argv[]) {
2415
2416 static const Verb verbs[] = {
2417 { "help", VERB_ANY, VERB_ANY, 0, help },
2418 { "time", VERB_ANY, 1, VERB_DEFAULT, analyze_time },
2419 { "blame", VERB_ANY, 1, 0, analyze_blame },
2420 { "critical-chain", VERB_ANY, VERB_ANY, 0, analyze_critical_chain },
2421 { "plot", VERB_ANY, 1, 0, analyze_plot },
2422 { "dot", VERB_ANY, VERB_ANY, 0, dot },
2423 /* The following seven verbs are deprecated */
2424 { "log-level", VERB_ANY, 2, 0, get_or_set_log_level },
2425 { "log-target", VERB_ANY, 2, 0, get_or_set_log_target },
2426 { "set-log-level", 2, 2, 0, set_log_level },
2427 { "get-log-level", VERB_ANY, 1, 0, get_log_level },
2428 { "set-log-target", 2, 2, 0, set_log_target },
2429 { "get-log-target", VERB_ANY, 1, 0, get_log_target },
2430 { "service-watchdogs", VERB_ANY, 2, 0, service_watchdogs },
2431 { "dump", VERB_ANY, 1, 0, dump },
2432 { "cat-config", 2, VERB_ANY, 0, cat_config },
2433 { "unit-files", VERB_ANY, VERB_ANY, 0, do_unit_files },
2434 { "unit-paths", 1, 1, 0, dump_unit_paths },
2435 { "exit-status", VERB_ANY, VERB_ANY, 0, dump_exit_status },
2436 { "syscall-filter", VERB_ANY, VERB_ANY, 0, dump_syscall_filters },
2437 { "capability", VERB_ANY, VERB_ANY, 0, dump_capabilities },
2438 { "condition", 2, VERB_ANY, 0, do_condition },
2439 { "verify", 2, VERB_ANY, 0, do_verify },
2440 { "calendar", 2, VERB_ANY, 0, test_calendar },
2441 { "timestamp", 2, VERB_ANY, 0, test_timestamp },
2442 { "timespan", 2, VERB_ANY, 0, dump_timespan },
2443 { "security", VERB_ANY, VERB_ANY, 0, do_security },
2444 {}
2445 };
2446
2447 int r;
2448
2449 setlocale(LC_ALL, "");
2450 setlocale(LC_NUMERIC, "C"); /* we want to format/parse floats in C style */
2451
2452 log_setup_cli();
2453
2454 r = parse_argv(argc, argv);
2455 if (r <= 0)
2456 return r;
2457
2458 return dispatch_verb(argc, argv, verbs, NULL);
2459 }
2460
2461 DEFINE_MAIN_FUNCTION(run);