2 * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 * The 'check' subcmd analyzes every .o file and ensures the validity of its
22 * stack trace metadata. It enforces a set of rules on asm code and C inline
23 * assembly code so that stack traces can be reliable.
25 * For more information, see tools/objtool/Documentation/stack-validation.txt.
32 #include <subcmd/exec-cmd.h>
33 #include <subcmd/pager.h>
34 #include <linux/kernel.h>
40 int (*fn
)(int, const char **);
44 static const char objtool_usage_string
[] =
45 "objtool COMMAND [ARGS]";
47 static struct cmd_struct objtool_cmds
[] = {
48 {"check", cmd_check
, "Perform stack metadata validation on an object file" },
49 {"orc", cmd_orc
, "Generate in-place ORC unwind tables for an object file" },
54 static void cmd_usage(void)
56 unsigned int i
, longest
= 0;
58 printf("\n usage: %s\n\n", objtool_usage_string
);
60 for (i
= 0; i
< ARRAY_SIZE(objtool_cmds
); i
++) {
61 if (longest
< strlen(objtool_cmds
[i
].name
))
62 longest
= strlen(objtool_cmds
[i
].name
);
66 for (i
= 0; i
< ARRAY_SIZE(objtool_cmds
); i
++) {
67 printf(" %-*s ", longest
, objtool_cmds
[i
].name
);
68 puts(objtool_cmds
[i
].help
);
76 static void handle_options(int *argc
, const char ***argv
)
79 const char *cmd
= (*argv
)[0];
84 if (!strcmp(cmd
, "--help") || !strcmp(cmd
, "-h")) {
88 fprintf(stderr
, "Unknown option: %s\n", cmd
);
97 static void handle_internal_command(int argc
, const char **argv
)
99 const char *cmd
= argv
[0];
102 for (i
= 0; i
< ARRAY_SIZE(objtool_cmds
); i
++) {
103 struct cmd_struct
*p
= objtool_cmds
+i
;
105 if (strcmp(p
->name
, cmd
))
108 ret
= p
->fn(argc
, argv
);
116 int main(int argc
, const char **argv
)
118 static const char *UNUSED
= "OBJTOOL_NOT_IMPLEMENTED";
121 exec_cmd_init("objtool", UNUSED
, UNUSED
, UNUSED
);
126 handle_options(&argc
, &argv
);
131 handle_internal_command(argc
, argv
);