]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/analyze/analyze.c
socket-util: fix socket_get_family()
[thirdparty/systemd.git] / src / analyze / analyze.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2265fbf7 2/***
96b2fb93 3 Copyright © 2013 Simon Peeters
2265fbf7
SP
4***/
5
2265fbf7 6#include <getopt.h>
3f1c1287 7#include <inttypes.h>
3f6fd1ba
LP
8#include <stdio.h>
9#include <stdlib.h>
ca78ad1d 10#include <unistd.h>
2265fbf7 11
048ecf5b 12#include "sd-bus.h"
3f6fd1ba 13
b5efdb8a 14#include "alloc-util.h"
30bddc06 15#include "analyze.h"
113dd9cb 16#include "analyze-blame.h"
5229b03c 17#include "analyze-calendar.h"
6488e844 18#include "analyze-capability.h"
c649b343 19#include "analyze-cat-config.h"
edfea9fe 20#include "analyze-condition.h"
ef215fa7 21#include "analyze-critical-chain.h"
cccd2af6 22#include "analyze-dot.h"
25eb70af 23#include "analyze-dump.h"
73cb64c4 24#include "analyze-exit-status.h"
08e36480 25#include "analyze-filesystems.h"
2acfc252 26#include "analyze-inspect-elf.h"
faaa6ea0 27#include "analyze-log-control.h"
f50535af 28#include "analyze-malloc.h"
ba474dad 29#include "analyze-plot.h"
ec16f3b6 30#include "analyze-security.h"
2b04e72c 31#include "analyze-service-watchdogs.h"
389638d3 32#include "analyze-syscall-filter.h"
f24f8e37 33#include "analyze-time.h"
113dd9cb 34#include "analyze-time-data.h"
30bddc06 35#include "analyze-timespan.h"
503ccaaa 36#include "analyze-timestamp.h"
0c2d69df 37#include "analyze-unit-files.h"
36258fbe 38#include "analyze-unit-paths.h"
bc012a3e 39#include "analyze-compare-versions.h"
3f6fd1ba 40#include "analyze-verify.h"
d6b4d1c7 41#include "build.h"
048ecf5b 42#include "bus-error.h"
9b71e4ab 43#include "bus-locator.h"
807542be 44#include "bus-map-properties.h"
20b16441 45#include "bus-unit-util.h"
6d86f4bd 46#include "calendarspec.h"
b2af819b
LP
47#include "cap-list.h"
48#include "capability-util.h"
854a42fb 49#include "conf-files.h"
c0a1bfac 50#include "copy.h"
28db6fbf 51#include "constants.h"
76ed04d9 52#include "exit-status.h"
da845dab 53#include "extract-word.h"
c0a1bfac 54#include "fd-util.h"
cdf6258c 55#include "fileio.h"
b41711cd 56#include "filesystems.h"
d8bfdbe1 57#include "format-table.h"
7d50b32a 58#include "glob-util.h"
bb150966 59#include "hashmap.h"
8752c575 60#include "locale-util.h"
3f6fd1ba 61#include "log.h"
d665c7b2 62#include "main-func.h"
e5ea5c3a 63#include "mount-util.h"
d8b4d14d 64#include "nulstr-util.h"
9ea9d4cf 65#include "pager.h"
599c7c54 66#include "parse-argument.h"
6bedfcbb 67#include "parse-util.h"
854a42fb 68#include "path-util.h"
294bf0c3 69#include "pretty-print.h"
da845dab 70#include "rm-rf.h"
349cc4a5 71#if HAVE_SECCOMP
294bf0c3 72# include "seccomp-util.h"
0f734bdc 73#endif
760877e9 74#include "sort-util.h"
3f6fd1ba 75#include "special.h"
b41711cd 76#include "stat-util.h"
3cc3dc77 77#include "string-table.h"
3f6fd1ba
LP
78#include "strv.h"
79#include "strxcpyx.h"
288a74cc 80#include "terminal-util.h"
760877e9 81#include "time-util.h"
da845dab 82#include "tmpfile-util.h"
3f6fd1ba 83#include "unit-name.h"
a87b151a 84#include "verb-log-control.h"
a6bcef29 85#include "verbs.h"
47350c5f 86#include "version.h"
2265fbf7 87
cccd2af6
LP
88DotMode arg_dot = DEP_ALL;
89char **arg_dot_from_patterns = NULL, **arg_dot_to_patterns = NULL;
ef215fa7 90usec_t arg_fuzz = 0;
08e36480 91PagerFlags arg_pager_flags = 0;
25eb70af 92BusTransport arg_transport = BUS_TRANSPORT_LOCAL;
ba474dad 93const char *arg_host = NULL;
b380b643 94LookupScope arg_scope = LOOKUP_SCOPE_SYSTEM;
cae7c282 95RecursiveErrors arg_recursive_errors = _RECURSIVE_ERRORS_INVALID;
57a22a3f
LP
96bool arg_man = true;
97bool arg_generators = false;
c649b343 98char *arg_root = NULL;
e5ea5c3a 99static char *arg_image = NULL;
57a22a3f
LP
100char *arg_security_policy = NULL;
101bool arg_offline = false;
102unsigned arg_threshold = 100;
5229b03c
LP
103unsigned arg_iterations = 1;
104usec_t arg_base_time = USEC_INFINITY;
e82116e5 105char *arg_unit = NULL;
57a22a3f 106JsonFormatFlags arg_json_format_flags = JSON_FORMAT_OFF;
08e36480 107bool arg_quiet = false;
57a22a3f 108char *arg_profile = NULL;
ff46b2f9
JZ
109bool arg_legend = true;
110bool arg_table = false;
bb150966 111
d665c7b2
YW
112STATIC_DESTRUCTOR_REGISTER(arg_dot_from_patterns, strv_freep);
113STATIC_DESTRUCTOR_REGISTER(arg_dot_to_patterns, strv_freep);
782671bc 114STATIC_DESTRUCTOR_REGISTER(arg_root, freep);
e5ea5c3a 115STATIC_DESTRUCTOR_REGISTER(arg_image, freep);
ecfd082b 116STATIC_DESTRUCTOR_REGISTER(arg_security_policy, freep);
8de7929d 117STATIC_DESTRUCTOR_REGISTER(arg_unit, freep);
04469211 118STATIC_DESTRUCTOR_REGISTER(arg_profile, freep);
d665c7b2 119
25eb70af 120int acquire_bus(sd_bus **bus, bool *use_full_bus) {
b380b643 121 bool user = arg_scope != LOOKUP_SCOPE_SYSTEM;
fb507898 122 int r;
5c69b31c 123
f7e29336 124 if (use_full_bus && *use_full_bus) {
fb507898
YW
125 r = bus_connect_transport(arg_transport, arg_host, user, bus);
126 if (IN_SET(r, 0, -EHOSTDOWN))
127 return r;
5c69b31c
GJ
128
129 *use_full_bus = false;
130 }
131
f7e29336 132 return bus_connect_transport_systemd(arg_transport, arg_host, user, bus);
bf0e0a4d
ZJS
133}
134
cccd2af6 135int bus_get_unit_property_strv(sd_bus *bus, const char *path, const char *property, char ***strv) {
4afd3348 136 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
988b9df2
LP
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);
4ae25393 152 if (r < 0)
0ed3da7c 153 return log_error_errno(r, "Failed to get unit property %s: %s", property, bus_error_message(&error, r));
988b9df2
LP
154
155 return 0;
156}
157
30bddc06 158void time_parsing_hint(const char *p, bool calendar, bool timestamp, bool timespan) {
c269607f
ZJS
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);
6d86f4bd
LP
168}
169
f50535af
LB
170int 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
a6bcef29 187static int help(int argc, char *argv[], void *userdata) {
49139a5d 188 _cleanup_free_ char *link = NULL, *dot_link = NULL;
37ec0fdd 189 int r;
9ea9d4cf 190
384c2c32 191 pager_open(arg_pager_flags);
9ea9d4cf 192
37ec0fdd
LP
193 r = terminal_urlify_man("systemd-analyze", "1", &link);
194 if (r < 0)
195 return log_oom();
196
49139a5d
LP
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
353b2baa
LP
202 printf("%s [OPTIONS...] COMMAND ...\n\n"
203 "%sProfile systemd, show unit dependencies, check unit files.%s\n"
20a51f6a 204 "\nCommands:\n"
3cc3dc77
MG
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"
d1d8786c 213 " dump [PATTERN...] Output state serialization of service\n"
3cc3dc77
MG
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"
52117f5a
ZJS
220 " syscall-filter [NAME...] List syscalls in seccomp filters\n"
221 " filesystems [NAME...] List known filesystems\n"
3cc3dc77 222 " condition CONDITION... Evaluate conditions and asserts\n"
bc012a3e
ZJS
223 " compare-versions VERSION1 [OP] VERSION2\n"
224 " Compare two version strings\n"
3cc3dc77
MG
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"
917e6554 231 " inspect-elf FILE... Parse and print ELF package metadata\n"
f50535af 232 " malloc [D-BUS SERVICE...] Dump malloc stats of a D-Bus service\n"
353b2baa 233 "\nOptions:\n"
3cc3dc77 234 " --recursive-errors=MODE Control which units are verified\n"
bb43d853 235 " --offline=BOOL Perform a security review on unit file(s)\n"
dfbda879
MG
236 " --threshold=N Exit with a non-zero status when overall\n"
237 " exposure level is over threshold value\n"
ecfd082b
MG
238 " --security-policy=PATH Use custom JSON security policy instead\n"
239 " of built-in one\n"
4b4a8ef7 240 " --json=pretty|short|off Generate JSON output of the security\n"
ff46b2f9 241 " analysis table, or plot's raw time data\n"
3cc3dc77 242 " --no-pager Do not pipe output into a pager\n"
ff46b2f9
JZ
243 " --no-legend Disable column headers and hints in plot\n"
244 " with either --table or --json=\n"
3cc3dc77
MG
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"
04469211
LB
262 " --profile=name|PATH Include the specified profile in the\n"
263 " security review of the unit(s)\n"
ff46b2f9 264 " --table Output plot's raw time data as a table\n"
52117f5a
ZJS
265 " -h --help Show this help\n"
266 " --version Show package version\n"
267 " -q --quiet Do not emit hints\n"
9f5b68d6
LP
268 " --root=PATH Operate on an alternate filesystem root\n"
269 " --image=PATH Operate on disk image as filesystem root\n"
bc556335
DDM
270 "\nSee the %s for details.\n",
271 program_invocation_short_name,
272 ansi_highlight(),
273 ansi_normal(),
274 dot_link,
275 link);
96de7c04 276
1ace223c
SJ
277 /* When updating this list, including descriptions, apply changes to
278 * shell-completion/bash/systemd-analyze and shell-completion/zsh/_systemd-analyze too. */
a6bcef29
LP
279
280 return 0;
2265fbf7
SP
281}
282
9ea9d4cf 283static int parse_argv(int argc, char *argv[]) {
2265fbf7
SP
284 enum {
285 ARG_VERSION = 0x100,
1700761b
SP
286 ARG_ORDER,
287 ARG_REQUIRE,
46d8646a 288 ARG_ROOT,
e5ea5c3a 289 ARG_IMAGE,
e55933db 290 ARG_SYSTEM,
28b35ef2
ZJS
291 ARG_USER,
292 ARG_GLOBAL,
e55933db 293 ARG_DOT_FROM_PATTERN,
bb150966 294 ARG_DOT_TO_PATTERN,
9ea9d4cf 295 ARG_FUZZ,
1d3bc017 296 ARG_NO_PAGER,
dad29dff 297 ARG_MAN,
641c0fd1 298 ARG_GENERATORS,
f2ccf832 299 ARG_ITERATIONS,
985c1880 300 ARG_BASE_TIME,
3cc3dc77 301 ARG_RECURSIVE_ERRORS,
bb43d853 302 ARG_OFFLINE,
dfbda879 303 ARG_THRESHOLD,
ecfd082b 304 ARG_SECURITY_POLICY,
4b4a8ef7 305 ARG_JSON,
04469211 306 ARG_PROFILE,
ff46b2f9
JZ
307 ARG_TABLE,
308 ARG_NO_LEGEND,
2265fbf7
SP
309 };
310
311 static const struct option options[] = {
3cc3dc77
MG
312 { "help", no_argument, NULL, 'h' },
313 { "version", no_argument, NULL, ARG_VERSION },
52117f5a 314 { "quiet", no_argument, NULL, 'q' },
3cc3dc77
MG
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 },
bb43d853 320 { "offline", required_argument, NULL, ARG_OFFLINE },
dfbda879 321 { "threshold", required_argument, NULL, ARG_THRESHOLD },
ecfd082b 322 { "security-policy", required_argument, NULL, ARG_SECURITY_POLICY },
3cc3dc77
MG
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 },
8de7929d 336 { "unit", required_argument, NULL, 'U' },
4b4a8ef7 337 { "json", required_argument, NULL, ARG_JSON },
04469211 338 { "profile", required_argument, NULL, ARG_PROFILE },
ff46b2f9
JZ
339 { "table", optional_argument, NULL, ARG_TABLE },
340 { "no-legend", optional_argument, NULL, ARG_NO_LEGEND },
eb9da376 341 {}
2265fbf7
SP
342 };
343
eb9da376
LP
344 int r, c;
345
2265fbf7
SP
346 assert(argc >= 0);
347 assert(argv);
348
8de7929d 349 while ((c = getopt_long(argc, argv, "hH:M:U:", options, NULL)) >= 0)
eb9da376 350 switch (c) {
c170f3a4
LP
351
352 case 'h':
a6bcef29 353 return help(0, NULL, NULL);
c170f3a4 354
52117f5a
ZJS
355 case ARG_VERSION:
356 return version();
357
358 case 'q':
359 arg_quiet = true;
360 break;
361
3cc3dc77
MG
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
46d8646a 374 case ARG_ROOT:
782671bc
MG
375 r = parse_path_argument(optarg, /* suppress_root= */ true, &arg_root);
376 if (r < 0)
377 return r;
46d8646a
ZJS
378 break;
379
e5ea5c3a
MG
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
28b35ef2 386 case ARG_SYSTEM:
b380b643 387 arg_scope = LOOKUP_SCOPE_SYSTEM;
28b35ef2
ZJS
388 break;
389
c170f3a4 390 case ARG_USER:
b380b643 391 arg_scope = LOOKUP_SCOPE_USER;
c170f3a4
LP
392 break;
393
28b35ef2 394 case ARG_GLOBAL:
b380b643 395 arg_scope = LOOKUP_SCOPE_GLOBAL;
c170f3a4
LP
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
e55933db 406 case ARG_DOT_FROM_PATTERN:
903a0b07
LP
407 if (strv_extend(&arg_dot_from_patterns, optarg) < 0)
408 return log_oom();
409
e55933db
ŁS
410 break;
411
412 case ARG_DOT_TO_PATTERN:
903a0b07
LP
413 if (strv_extend(&arg_dot_to_patterns, optarg) < 0)
414 return log_oom();
415
e55933db
ŁS
416 break;
417
bb150966
HH
418 case ARG_FUZZ:
419 r = parse_sec(optarg, &arg_fuzz);
420 if (r < 0)
421 return r;
422 break;
423
9ea9d4cf 424 case ARG_NO_PAGER:
0221d68a 425 arg_pager_flags |= PAGER_DISABLE;
9ea9d4cf
LP
426 break;
427
3cd26e7c
LP
428 case 'H':
429 arg_transport = BUS_TRANSPORT_REMOTE;
430 arg_host = optarg;
431 break;
432
433 case 'M':
de33fc62 434 arg_transport = BUS_TRANSPORT_MACHINE;
3cd26e7c
LP
435 arg_host = optarg;
436 break;
437
dad29dff 438 case ARG_MAN:
599c7c54
ZJS
439 r = parse_boolean_argument("--man", optarg, &arg_man);
440 if (r < 0)
441 return r;
1d3bc017
ZJS
442 break;
443
641c0fd1 444 case ARG_GENERATORS:
599c7c54
ZJS
445 r = parse_boolean_argument("--generators", optarg, &arg_generators);
446 if (r < 0)
447 return r;
641c0fd1
ZJS
448 break;
449
bb43d853
MG
450 case ARG_OFFLINE:
451 r = parse_boolean_argument("--offline", optarg, &arg_offline);
452 if (r < 0)
453 return r;
454 break;
455
dfbda879
MG
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
ecfd082b
MG
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
4b4a8ef7
MG
469 case ARG_JSON:
470 r = parse_json_argument(optarg, &arg_json_format_flags);
471 if (r <= 0)
472 return r;
473 break;
474
f2ccf832
LP
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);
f2ccf832
LP
479 break;
480
985c1880
LP
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);
985c1880
LP
485 break;
486
04469211
LB
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
8de7929d
DDM
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 }
ff46b2f9
JZ
515
516 case ARG_TABLE:
517 arg_table = true;
518 break;
519
520 case ARG_NO_LEGEND:
521 arg_legend = false;
522 break;
523
c170f3a4
LP
524 case '?':
525 return -EINVAL;
526
527 default:
04499a70 528 assert_not_reached();
2265fbf7 529 }
eb9da376 530
bb43d853
MG
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
ff46b2f9 535 if (arg_json_format_flags != JSON_FORMAT_OFF && !STRPTR_IN_SET(argv[optind], "security", "inspect-elf", "plot"))
4b4a8ef7 536 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
ff46b2f9 537 "Option --json= is only supported for security, inspect-elf, and plot right now.");
4b4a8ef7 538
dfbda879
MG
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
b380b643 543 if (arg_scope == LOOKUP_SCOPE_GLOBAL &&
baaa35ad
ZJS
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.");
31a5924e 547
b380b643 548 if (streq_ptr(argv[optind], "cat-config") && arg_scope == LOOKUP_SCOPE_USER)
f1d9d36a
ZJS
549 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
550 "Option --user is not supported for cat-config right now.");
551
ecfd082b
MG
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
8de7929d 556 if ((arg_root || arg_image) && (!STRPTR_IN_SET(argv[optind], "cat-config", "verify", "condition")) &&
bb43d853 557 (!(streq_ptr(argv[optind], "security") && arg_offline)))
baaa35ad 558 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
8de7929d 559 "Options --root= and --image= are only supported for cat-config, verify, condition and security when used with --offline= right now.");
e5ea5c3a
MG
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.");
46d8646a 564
8de7929d
DDM
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
ff46b2f9
JZ
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
1d3bc017 584 return 1; /* work to do */
2265fbf7
SP
585}
586
d665c7b2 587static int run(int argc, char *argv[]) {
e5ea5c3a 588 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
e5ea5c3a 589 _cleanup_(umount_and_rmdir_and_freep) char *unlink_dir = NULL;
a6bcef29
LP
590
591 static const Verb verbs[] = {
889d695d 592 { "help", VERB_ANY, VERB_ANY, 0, help },
ef38bedb
LP
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 },
ab86ccba 598 /* ↓ The following seven verbs are deprecated, from here … ↓ */
a87b151a
DDM
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 },
ef38bedb 605 { "service-watchdogs", VERB_ANY, 2, 0, verb_service_watchdogs },
ab86ccba 606 /* ↑ … until here ↑ */
d1d8786c 607 { "dump", VERB_ANY, VERB_ANY, 0, verb_dump },
ef38bedb
LP
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 },
bc012a3e 616 { "compare-versions", 3, 4, 0, verb_compare_versions },
ef38bedb
LP
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 },
f50535af 623 { "malloc", VERB_ANY, VERB_ANY, 0, verb_malloc },
a6bcef29
LP
624 {}
625 };
626
5220a6f3 627 int r;
2265fbf7
SP
628
629 setlocale(LC_ALL, "");
c170f3a4 630 setlocale(LC_NUMERIC, "C"); /* we want to format/parse floats in C style */
a6bcef29 631
d2acb93d 632 log_setup();
2265fbf7
SP
633
634 r = parse_argv(argc, argv);
9ea9d4cf 635 if (r <= 0)
d665c7b2 636 return r;
c170f3a4 637
e5ea5c3a
MG
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,
a133d2c3 648 /* ret_dir_fd= */ NULL,
e330f97a 649 &loop_device);
e5ea5c3a
MG
650 if (r < 0)
651 return r;
652
653 arg_root = strdup(unlink_dir);
654 if (!arg_root)
655 return log_oom();
656 }
657
d665c7b2 658 return dispatch_verb(argc, argv, verbs, NULL);
2265fbf7 659}
d665c7b2 660
fddad5f4 661DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run);