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