1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com>
9 * The 'check' subcmd analyzes every .o file and ensures the validity of its
10 * stack trace metadata. It enforces a set of rules on asm code and C inline
11 * assembly code so that stack traces can be reliable.
13 * For more information, see tools/objtool/Documentation/stack-validation.txt.
20 #include <subcmd/exec-cmd.h>
21 #include <subcmd/pager.h>
22 #include <linux/kernel.h>
30 int (*fn
)(int, const char **);
34 static const char objtool_usage_string
[] =
35 "objtool COMMAND [ARGS]";
37 static struct cmd_struct objtool_cmds
[] = {
38 {"check", cmd_check
, "Perform stack metadata validation on an object file" },
39 {"orc", cmd_orc
, "Generate in-place ORC unwind tables for an object file" },
45 static struct objtool_file file
;
47 struct objtool_file
*objtool_open_read(const char *_objname
)
50 if (strcmp(objname
, _objname
)) {
51 WARN("won't handle more than one file at a time");
58 file
.elf
= elf_open_read(objname
, O_RDWR
);
62 INIT_LIST_HEAD(&file
.insn_list
);
63 hash_init(file
.insn_hash
);
64 INIT_LIST_HEAD(&file
.static_call_list
);
65 file
.c_file
= !vmlinux
&& find_section_by_name(file
.elf
, ".comment");
66 file
.ignore_unreachables
= no_unreachable
;
72 static void cmd_usage(void)
74 unsigned int i
, longest
= 0;
76 printf("\n usage: %s\n\n", objtool_usage_string
);
78 for (i
= 0; i
< ARRAY_SIZE(objtool_cmds
); i
++) {
79 if (longest
< strlen(objtool_cmds
[i
].name
))
80 longest
= strlen(objtool_cmds
[i
].name
);
84 for (i
= 0; i
< ARRAY_SIZE(objtool_cmds
); i
++) {
85 printf(" %-*s ", longest
, objtool_cmds
[i
].name
);
86 puts(objtool_cmds
[i
].help
);
96 static void handle_options(int *argc
, const char ***argv
)
99 const char *cmd
= (*argv
)[0];
104 if (!strcmp(cmd
, "--help") || !strcmp(cmd
, "-h")) {
108 fprintf(stderr
, "Unknown option: %s\n", cmd
);
117 static void handle_internal_command(int argc
, const char **argv
)
119 const char *cmd
= argv
[0];
122 for (i
= 0; i
< ARRAY_SIZE(objtool_cmds
); i
++) {
123 struct cmd_struct
*p
= objtool_cmds
+i
;
125 if (strcmp(p
->name
, cmd
))
128 ret
= p
->fn(argc
, argv
);
136 int main(int argc
, const char **argv
)
138 static const char *UNUSED
= "OBJTOOL_NOT_IMPLEMENTED";
141 exec_cmd_init("objtool", UNUSED
, UNUSED
, UNUSED
);
146 handle_options(&argc
, &argv
);
151 handle_internal_command(argc
, argv
);