]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/analyze/analyze.c
Merge pull request #26217 from bluca/dump_mem
[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.h"
16 #include "analyze-blame.h"
17 #include "analyze-calendar.h"
18 #include "analyze-capability.h"
19 #include "analyze-cat-config.h"
20 #include "analyze-condition.h"
21 #include "analyze-critical-chain.h"
22 #include "analyze-dot.h"
23 #include "analyze-dump.h"
24 #include "analyze-exit-status.h"
25 #include "analyze-filesystems.h"
26 #include "analyze-inspect-elf.h"
27 #include "analyze-log-control.h"
28 #include "analyze-malloc.h"
29 #include "analyze-plot.h"
30 #include "analyze-security.h"
31 #include "analyze-service-watchdogs.h"
32 #include "analyze-syscall-filter.h"
33 #include "analyze-time.h"
34 #include "analyze-time-data.h"
35 #include "analyze-timespan.h"
36 #include "analyze-timestamp.h"
37 #include "analyze-unit-files.h"
38 #include "analyze-unit-paths.h"
39 #include "analyze-compare-versions.h"
40 #include "analyze-verify.h"
41 #include "build.h"
42 #include "bus-error.h"
43 #include "bus-locator.h"
44 #include "bus-map-properties.h"
45 #include "bus-unit-util.h"
46 #include "calendarspec.h"
47 #include "cap-list.h"
48 #include "capability-util.h"
49 #include "conf-files.h"
50 #include "copy.h"
51 #include "constants.h"
52 #include "exit-status.h"
53 #include "extract-word.h"
54 #include "fd-util.h"
55 #include "fileio.h"
56 #include "filesystems.h"
57 #include "format-table.h"
58 #include "glob-util.h"
59 #include "hashmap.h"
60 #include "locale-util.h"
61 #include "log.h"
62 #include "main-func.h"
63 #include "mount-util.h"
64 #include "nulstr-util.h"
65 #include "pager.h"
66 #include "parse-argument.h"
67 #include "parse-util.h"
68 #include "path-util.h"
69 #include "pretty-print.h"
70 #include "rm-rf.h"
71 #if HAVE_SECCOMP
72 # include "seccomp-util.h"
73 #endif
74 #include "sort-util.h"
75 #include "special.h"
76 #include "stat-util.h"
77 #include "string-table.h"
78 #include "strv.h"
79 #include "strxcpyx.h"
80 #include "terminal-util.h"
81 #include "time-util.h"
82 #include "tmpfile-util.h"
83 #include "unit-name.h"
84 #include "verb-log-control.h"
85 #include "verbs.h"
86 #include "version.h"
87
88 DotMode arg_dot = DEP_ALL;
89 char **arg_dot_from_patterns = NULL, **arg_dot_to_patterns = NULL;
90 usec_t arg_fuzz = 0;
91 PagerFlags arg_pager_flags = 0;
92 BusTransport arg_transport = BUS_TRANSPORT_LOCAL;
93 const char *arg_host = NULL;
94 LookupScope arg_scope = LOOKUP_SCOPE_SYSTEM;
95 RecursiveErrors arg_recursive_errors = _RECURSIVE_ERRORS_INVALID;
96 bool arg_man = true;
97 bool arg_generators = false;
98 char *arg_root = NULL;
99 static char *arg_image = NULL;
100 char *arg_security_policy = NULL;
101 bool arg_offline = false;
102 unsigned arg_threshold = 100;
103 unsigned arg_iterations = 1;
104 usec_t arg_base_time = USEC_INFINITY;
105 char *arg_unit = NULL;
106 JsonFormatFlags arg_json_format_flags = JSON_FORMAT_OFF;
107 bool arg_quiet = false;
108 char *arg_profile = NULL;
109 bool arg_legend = true;
110 bool arg_table = false;
111
112 STATIC_DESTRUCTOR_REGISTER(arg_dot_from_patterns, strv_freep);
113 STATIC_DESTRUCTOR_REGISTER(arg_dot_to_patterns, strv_freep);
114 STATIC_DESTRUCTOR_REGISTER(arg_root, freep);
115 STATIC_DESTRUCTOR_REGISTER(arg_image, freep);
116 STATIC_DESTRUCTOR_REGISTER(arg_security_policy, freep);
117 STATIC_DESTRUCTOR_REGISTER(arg_unit, freep);
118 STATIC_DESTRUCTOR_REGISTER(arg_profile, freep);
119
120 int acquire_bus(sd_bus **bus, bool *use_full_bus) {
121 bool user = arg_scope != LOOKUP_SCOPE_SYSTEM;
122 int r;
123
124 if (use_full_bus && *use_full_bus) {
125 r = bus_connect_transport(arg_transport, arg_host, user, bus);
126 if (IN_SET(r, 0, -EHOSTDOWN))
127 return r;
128
129 *use_full_bus = false;
130 }
131
132 return bus_connect_transport_systemd(arg_transport, arg_host, user, bus);
133 }
134
135 int bus_get_unit_property_strv(sd_bus *bus, const char *path, const char *property, char ***strv) {
136 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
137 int r;
138
139 assert(bus);
140 assert(path);
141 assert(property);
142 assert(strv);
143
144 r = sd_bus_get_property_strv(
145 bus,
146 "org.freedesktop.systemd1",
147 path,
148 "org.freedesktop.systemd1.Unit",
149 property,
150 &error,
151 strv);
152 if (r < 0)
153 return log_error_errno(r, "Failed to get unit property %s: %s", property, bus_error_message(&error, r));
154
155 return 0;
156 }
157
158 void time_parsing_hint(const char *p, bool calendar, bool timestamp, bool timespan) {
159 if (calendar && calendar_spec_from_string(p, NULL) >= 0)
160 log_notice("Hint: this expression is a valid calendar specification. "
161 "Use 'systemd-analyze calendar \"%s\"' instead?", p);
162 if (timestamp && parse_timestamp(p, NULL) >= 0)
163 log_notice("Hint: this expression is a valid timestamp. "
164 "Use 'systemd-analyze timestamp \"%s\"' instead?", p);
165 if (timespan && parse_time(p, NULL, USEC_PER_SEC) >= 0)
166 log_notice("Hint: this expression is a valid timespan. "
167 "Use 'systemd-analyze timespan \"%s\"' instead?", p);
168 }
169
170 int dump_fd_reply(sd_bus_message *message) {
171 int fd, r;
172
173 assert(message);
174
175 r = sd_bus_message_read(message, "h", &fd);
176 if (r < 0)
177 return bus_log_parse_error(r);
178
179 fflush(stdout);
180 r = copy_bytes(fd, STDOUT_FILENO, UINT64_MAX, 0);
181 if (r < 0)
182 return r;
183
184 return 1; /* Success */
185 }
186
187 static int help(int argc, char *argv[], void *userdata) {
188 _cleanup_free_ char *link = NULL, *dot_link = NULL;
189 int r;
190
191 pager_open(arg_pager_flags);
192
193 r = terminal_urlify_man("systemd-analyze", "1", &link);
194 if (r < 0)
195 return log_oom();
196
197 /* Not using terminal_urlify_man() for this, since we don't want the "man page" text suffix in this case. */
198 r = terminal_urlify("man:dot(1)", "dot(1)", &dot_link);
199 if (r < 0)
200 return log_oom();
201
202 printf("%s [OPTIONS...] COMMAND ...\n\n"
203 "%sProfile systemd, show unit dependencies, check unit files.%s\n"
204 "\nCommands:\n"
205 " [time] Print time required to boot the machine\n"
206 " blame Print list of running units ordered by\n"
207 " time to init\n"
208 " critical-chain [UNIT...] Print a tree of the time critical chain\n"
209 " of units\n"
210 " plot Output SVG graphic showing service\n"
211 " initialization\n"
212 " dot [UNIT...] Output dependency graph in %s format\n"
213 " dump [PATTERN...] Output state serialization of service\n"
214 " manager\n"
215 " cat-config Show configuration file and drop-ins\n"
216 " unit-files List files and symlinks for units\n"
217 " unit-paths List load directories for units\n"
218 " exit-status [STATUS...] List exit status definitions\n"
219 " capability [CAP...] List capability definitions\n"
220 " syscall-filter [NAME...] List syscalls in seccomp filters\n"
221 " filesystems [NAME...] List known filesystems\n"
222 " condition CONDITION... Evaluate conditions and asserts\n"
223 " compare-versions VERSION1 [OP] VERSION2\n"
224 " Compare two version strings\n"
225 " verify FILE... Check unit files for correctness\n"
226 " calendar SPEC... Validate repetitive calendar time\n"
227 " events\n"
228 " timestamp TIMESTAMP... Validate a timestamp\n"
229 " timespan SPAN... Validate a time span\n"
230 " security [UNIT...] Analyze security of unit\n"
231 " inspect-elf FILE... Parse and print ELF package metadata\n"
232 " malloc [D-BUS SERVICE...] Dump malloc stats of a D-Bus service\n"
233 "\nOptions:\n"
234 " --recursive-errors=MODE Control which units are verified\n"
235 " --offline=BOOL Perform a security review on unit file(s)\n"
236 " --threshold=N Exit with a non-zero status when overall\n"
237 " exposure level is over threshold value\n"
238 " --security-policy=PATH Use custom JSON security policy instead\n"
239 " of built-in one\n"
240 " --json=pretty|short|off Generate JSON output of the security\n"
241 " analysis table, or plot's raw time data\n"
242 " --no-pager Do not pipe output into a pager\n"
243 " --no-legend Disable column headers and hints in plot\n"
244 " with either --table or --json=\n"
245 " --system Operate on system systemd instance\n"
246 " --user Operate on user systemd instance\n"
247 " --global Operate on global user configuration\n"
248 " -H --host=[USER@]HOST Operate on remote host\n"
249 " -M --machine=CONTAINER Operate on local container\n"
250 " --order Show only order in the graph\n"
251 " --require Show only requirement in the graph\n"
252 " --from-pattern=GLOB Show only origins in the graph\n"
253 " --to-pattern=GLOB Show only destinations in the graph\n"
254 " --fuzz=SECONDS Also print services which finished SECONDS\n"
255 " earlier than the latest in the branch\n"
256 " --man[=BOOL] Do [not] check for existence of man pages\n"
257 " --generators[=BOOL] Do [not] run unit generators\n"
258 " (requires privileges)\n"
259 " --iterations=N Show the specified number of iterations\n"
260 " --base-time=TIMESTAMP Calculate calendar times relative to\n"
261 " specified time\n"
262 " --profile=name|PATH Include the specified profile in the\n"
263 " security review of the unit(s)\n"
264 " --table Output plot's raw time data as a table\n"
265 " -h --help Show this help\n"
266 " --version Show package version\n"
267 " -q --quiet Do not emit hints\n"
268 " --root=PATH Operate on an alternate filesystem root\n"
269 " --image=PATH Operate on disk image as filesystem root\n"
270 "\nSee the %s for details.\n",
271 program_invocation_short_name,
272 ansi_highlight(),
273 ansi_normal(),
274 dot_link,
275 link);
276
277 /* When updating this list, including descriptions, apply changes to
278 * shell-completion/bash/systemd-analyze and shell-completion/zsh/_systemd-analyze too. */
279
280 return 0;
281 }
282
283 static int parse_argv(int argc, char *argv[]) {
284 enum {
285 ARG_VERSION = 0x100,
286 ARG_ORDER,
287 ARG_REQUIRE,
288 ARG_ROOT,
289 ARG_IMAGE,
290 ARG_SYSTEM,
291 ARG_USER,
292 ARG_GLOBAL,
293 ARG_DOT_FROM_PATTERN,
294 ARG_DOT_TO_PATTERN,
295 ARG_FUZZ,
296 ARG_NO_PAGER,
297 ARG_MAN,
298 ARG_GENERATORS,
299 ARG_ITERATIONS,
300 ARG_BASE_TIME,
301 ARG_RECURSIVE_ERRORS,
302 ARG_OFFLINE,
303 ARG_THRESHOLD,
304 ARG_SECURITY_POLICY,
305 ARG_JSON,
306 ARG_PROFILE,
307 ARG_TABLE,
308 ARG_NO_LEGEND,
309 };
310
311 static const struct option options[] = {
312 { "help", no_argument, NULL, 'h' },
313 { "version", no_argument, NULL, ARG_VERSION },
314 { "quiet", no_argument, NULL, 'q' },
315 { "order", no_argument, NULL, ARG_ORDER },
316 { "require", no_argument, NULL, ARG_REQUIRE },
317 { "root", required_argument, NULL, ARG_ROOT },
318 { "image", required_argument, NULL, ARG_IMAGE },
319 { "recursive-errors", required_argument, NULL, ARG_RECURSIVE_ERRORS },
320 { "offline", required_argument, NULL, ARG_OFFLINE },
321 { "threshold", required_argument, NULL, ARG_THRESHOLD },
322 { "security-policy", required_argument, NULL, ARG_SECURITY_POLICY },
323 { "system", no_argument, NULL, ARG_SYSTEM },
324 { "user", no_argument, NULL, ARG_USER },
325 { "global", no_argument, NULL, ARG_GLOBAL },
326 { "from-pattern", required_argument, NULL, ARG_DOT_FROM_PATTERN },
327 { "to-pattern", required_argument, NULL, ARG_DOT_TO_PATTERN },
328 { "fuzz", required_argument, NULL, ARG_FUZZ },
329 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
330 { "man", optional_argument, NULL, ARG_MAN },
331 { "generators", optional_argument, NULL, ARG_GENERATORS },
332 { "host", required_argument, NULL, 'H' },
333 { "machine", required_argument, NULL, 'M' },
334 { "iterations", required_argument, NULL, ARG_ITERATIONS },
335 { "base-time", required_argument, NULL, ARG_BASE_TIME },
336 { "unit", required_argument, NULL, 'U' },
337 { "json", required_argument, NULL, ARG_JSON },
338 { "profile", required_argument, NULL, ARG_PROFILE },
339 { "table", optional_argument, NULL, ARG_TABLE },
340 { "no-legend", optional_argument, NULL, ARG_NO_LEGEND },
341 {}
342 };
343
344 int r, c;
345
346 assert(argc >= 0);
347 assert(argv);
348
349 while ((c = getopt_long(argc, argv, "hH:M:U:", options, NULL)) >= 0)
350 switch (c) {
351
352 case 'h':
353 return help(0, NULL, NULL);
354
355 case ARG_VERSION:
356 return version();
357
358 case 'q':
359 arg_quiet = true;
360 break;
361
362 case ARG_RECURSIVE_ERRORS:
363 if (streq(optarg, "help")) {
364 DUMP_STRING_TABLE(recursive_errors, RecursiveErrors, _RECURSIVE_ERRORS_MAX);
365 return 0;
366 }
367 r = recursive_errors_from_string(optarg);
368 if (r < 0)
369 return log_error_errno(r, "Unknown mode passed to --recursive-errors='%s'.", optarg);
370
371 arg_recursive_errors = r;
372 break;
373
374 case ARG_ROOT:
375 r = parse_path_argument(optarg, /* suppress_root= */ true, &arg_root);
376 if (r < 0)
377 return r;
378 break;
379
380 case ARG_IMAGE:
381 r = parse_path_argument(optarg, /* suppress_root= */ false, &arg_image);
382 if (r < 0)
383 return r;
384 break;
385
386 case ARG_SYSTEM:
387 arg_scope = LOOKUP_SCOPE_SYSTEM;
388 break;
389
390 case ARG_USER:
391 arg_scope = LOOKUP_SCOPE_USER;
392 break;
393
394 case ARG_GLOBAL:
395 arg_scope = LOOKUP_SCOPE_GLOBAL;
396 break;
397
398 case ARG_ORDER:
399 arg_dot = DEP_ORDER;
400 break;
401
402 case ARG_REQUIRE:
403 arg_dot = DEP_REQUIRE;
404 break;
405
406 case ARG_DOT_FROM_PATTERN:
407 if (strv_extend(&arg_dot_from_patterns, optarg) < 0)
408 return log_oom();
409
410 break;
411
412 case ARG_DOT_TO_PATTERN:
413 if (strv_extend(&arg_dot_to_patterns, optarg) < 0)
414 return log_oom();
415
416 break;
417
418 case ARG_FUZZ:
419 r = parse_sec(optarg, &arg_fuzz);
420 if (r < 0)
421 return r;
422 break;
423
424 case ARG_NO_PAGER:
425 arg_pager_flags |= PAGER_DISABLE;
426 break;
427
428 case 'H':
429 arg_transport = BUS_TRANSPORT_REMOTE;
430 arg_host = optarg;
431 break;
432
433 case 'M':
434 arg_transport = BUS_TRANSPORT_MACHINE;
435 arg_host = optarg;
436 break;
437
438 case ARG_MAN:
439 r = parse_boolean_argument("--man", optarg, &arg_man);
440 if (r < 0)
441 return r;
442 break;
443
444 case ARG_GENERATORS:
445 r = parse_boolean_argument("--generators", optarg, &arg_generators);
446 if (r < 0)
447 return r;
448 break;
449
450 case ARG_OFFLINE:
451 r = parse_boolean_argument("--offline", optarg, &arg_offline);
452 if (r < 0)
453 return r;
454 break;
455
456 case ARG_THRESHOLD:
457 r = safe_atou(optarg, &arg_threshold);
458 if (r < 0 || arg_threshold > 100)
459 return log_error_errno(r < 0 ? r : SYNTHETIC_ERRNO(EINVAL), "Failed to parse threshold: %s", optarg);
460
461 break;
462
463 case ARG_SECURITY_POLICY:
464 r = parse_path_argument(optarg, /* suppress_root= */ false, &arg_security_policy);
465 if (r < 0)
466 return r;
467 break;
468
469 case ARG_JSON:
470 r = parse_json_argument(optarg, &arg_json_format_flags);
471 if (r <= 0)
472 return r;
473 break;
474
475 case ARG_ITERATIONS:
476 r = safe_atou(optarg, &arg_iterations);
477 if (r < 0)
478 return log_error_errno(r, "Failed to parse iterations: %s", optarg);
479 break;
480
481 case ARG_BASE_TIME:
482 r = parse_timestamp(optarg, &arg_base_time);
483 if (r < 0)
484 return log_error_errno(r, "Failed to parse --base-time= parameter: %s", optarg);
485 break;
486
487 case ARG_PROFILE:
488 if (isempty(optarg))
489 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Profile file name is empty");
490
491 if (is_path(optarg)) {
492 r = parse_path_argument(optarg, /* suppress_root= */ false, &arg_profile);
493 if (r < 0)
494 return r;
495 if (!endswith(arg_profile, ".conf"))
496 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Profile file name must end with .conf: %s", arg_profile);
497 } else {
498 r = free_and_strdup(&arg_profile, optarg);
499 if (r < 0)
500 return log_oom();
501 }
502
503 break;
504
505 case 'U': {
506 _cleanup_free_ char *mangled = NULL;
507
508 r = unit_name_mangle(optarg, UNIT_NAME_MANGLE_WARN, &mangled);
509 if (r < 0)
510 return log_error_errno(r, "Failed to mangle unit name %s: %m", optarg);
511
512 free_and_replace(arg_unit, mangled);
513 break;
514 }
515
516 case ARG_TABLE:
517 arg_table = true;
518 break;
519
520 case ARG_NO_LEGEND:
521 arg_legend = false;
522 break;
523
524 case '?':
525 return -EINVAL;
526
527 default:
528 assert_not_reached();
529 }
530
531 if (arg_offline && !streq_ptr(argv[optind], "security"))
532 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
533 "Option --offline= is only supported for security right now.");
534
535 if (arg_json_format_flags != JSON_FORMAT_OFF && !STRPTR_IN_SET(argv[optind], "security", "inspect-elf", "plot"))
536 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
537 "Option --json= is only supported for security, inspect-elf, and plot right now.");
538
539 if (arg_threshold != 100 && !streq_ptr(argv[optind], "security"))
540 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
541 "Option --threshold= is only supported for security right now.");
542
543 if (arg_scope == LOOKUP_SCOPE_GLOBAL &&
544 !STR_IN_SET(argv[optind] ?: "time", "dot", "unit-paths", "verify"))
545 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
546 "Option --global only makes sense with verbs dot, unit-paths, verify.");
547
548 if (streq_ptr(argv[optind], "cat-config") && arg_scope == LOOKUP_SCOPE_USER)
549 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
550 "Option --user is not supported for cat-config right now.");
551
552 if (arg_security_policy && !streq_ptr(argv[optind], "security"))
553 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
554 "Option --security-policy= is only supported for security.");
555
556 if ((arg_root || arg_image) && (!STRPTR_IN_SET(argv[optind], "cat-config", "verify", "condition")) &&
557 (!(streq_ptr(argv[optind], "security") && arg_offline)))
558 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
559 "Options --root= and --image= are only supported for cat-config, verify, condition and security when used with --offline= right now.");
560
561 /* Having both an image and a root is not supported by the code */
562 if (arg_root && arg_image)
563 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Please specify either --root= or --image=, the combination of both is not supported.");
564
565 if (arg_unit && !streq_ptr(argv[optind], "condition"))
566 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Option --unit= is only supported for condition");
567
568 if (streq_ptr(argv[optind], "condition") && !arg_unit && optind >= argc - 1)
569 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Too few arguments for condition");
570
571 if (streq_ptr(argv[optind], "condition") && arg_unit && optind < argc - 1)
572 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "No conditions can be passed if --unit= is used.");
573
574 if ((!arg_legend && !streq_ptr(argv[optind], "plot")) ||
575 (streq_ptr(argv[optind], "plot") && !arg_legend && !arg_table && FLAGS_SET(arg_json_format_flags, JSON_FORMAT_OFF)))
576 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Option --no-legend is only supported for plot with either --table or --json=.");
577
578 if (arg_table && !streq_ptr(argv[optind], "plot"))
579 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Option --table is only supported for plot right now.");
580
581 if (arg_table && !FLAGS_SET(arg_json_format_flags, JSON_FORMAT_OFF))
582 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "--table and --json= are mutually exclusive.");
583
584 return 1; /* work to do */
585 }
586
587 static int run(int argc, char *argv[]) {
588 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
589 _cleanup_(umount_and_rmdir_and_freep) char *unlink_dir = NULL;
590
591 static const Verb verbs[] = {
592 { "help", VERB_ANY, VERB_ANY, 0, help },
593 { "time", VERB_ANY, 1, VERB_DEFAULT, verb_time },
594 { "blame", VERB_ANY, 1, 0, verb_blame },
595 { "critical-chain", VERB_ANY, VERB_ANY, 0, verb_critical_chain },
596 { "plot", VERB_ANY, 1, 0, verb_plot },
597 { "dot", VERB_ANY, VERB_ANY, 0, verb_dot },
598 /* ↓ The following seven verbs are deprecated, from here … ↓ */
599 { "log-level", VERB_ANY, 2, 0, verb_log_control },
600 { "log-target", VERB_ANY, 2, 0, verb_log_control },
601 { "set-log-level", 2, 2, 0, verb_log_control },
602 { "get-log-level", VERB_ANY, 1, 0, verb_log_control },
603 { "set-log-target", 2, 2, 0, verb_log_control },
604 { "get-log-target", VERB_ANY, 1, 0, verb_log_control },
605 { "service-watchdogs", VERB_ANY, 2, 0, verb_service_watchdogs },
606 /* ↑ … until here ↑ */
607 { "dump", VERB_ANY, VERB_ANY, 0, verb_dump },
608 { "cat-config", 2, VERB_ANY, 0, verb_cat_config },
609 { "unit-files", VERB_ANY, VERB_ANY, 0, verb_unit_files },
610 { "unit-paths", 1, 1, 0, verb_unit_paths },
611 { "exit-status", VERB_ANY, VERB_ANY, 0, verb_exit_status },
612 { "syscall-filter", VERB_ANY, VERB_ANY, 0, verb_syscall_filters },
613 { "capability", VERB_ANY, VERB_ANY, 0, verb_capabilities },
614 { "filesystems", VERB_ANY, VERB_ANY, 0, verb_filesystems },
615 { "condition", VERB_ANY, VERB_ANY, 0, verb_condition },
616 { "compare-versions", 3, 4, 0, verb_compare_versions },
617 { "verify", 2, VERB_ANY, 0, verb_verify },
618 { "calendar", 2, VERB_ANY, 0, verb_calendar },
619 { "timestamp", 2, VERB_ANY, 0, verb_timestamp },
620 { "timespan", 2, VERB_ANY, 0, verb_timespan },
621 { "security", VERB_ANY, VERB_ANY, 0, verb_security },
622 { "inspect-elf", 2, VERB_ANY, 0, verb_elf_inspection },
623 { "malloc", VERB_ANY, VERB_ANY, 0, verb_malloc },
624 {}
625 };
626
627 int r;
628
629 setlocale(LC_ALL, "");
630 setlocale(LC_NUMERIC, "C"); /* we want to format/parse floats in C style */
631
632 log_setup();
633
634 r = parse_argv(argc, argv);
635 if (r <= 0)
636 return r;
637
638 /* Open up and mount the image */
639 if (arg_image) {
640 assert(!arg_root);
641
642 r = mount_image_privately_interactively(
643 arg_image,
644 DISSECT_IMAGE_GENERIC_ROOT |
645 DISSECT_IMAGE_RELAX_VAR_CHECK |
646 DISSECT_IMAGE_READ_ONLY,
647 &unlink_dir,
648 /* ret_dir_fd= */ NULL,
649 &loop_device);
650 if (r < 0)
651 return r;
652
653 arg_root = strdup(unlink_dir);
654 if (!arg_root)
655 return log_oom();
656 }
657
658 return dispatch_verb(argc, argv, verbs, NULL);
659 }
660
661 DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run);