blob: 07f32991982840b74b6feaed10056c4a0127083c [file] [log] [blame]
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06001/*
2 * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com>
3 *
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.
8 *
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.
13 *
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/>.
16 */
17
18/*
19 * objtool:
20 *
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.
24 *
25 * For more information, see tools/objtool/Documentation/stack-validation.txt.
26 */
27
28#include <stdio.h>
29#include <stdbool.h>
30#include <string.h>
31#include <stdlib.h>
32#include <subcmd/exec-cmd.h>
33#include <subcmd/pager.h>
Greg Kroah-Hartmanb790b4f2018-06-03 12:35:15 +020034#include <linux/kernel.h>
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060035
36#include "builtin.h"
37
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060038struct cmd_struct {
39 const char *name;
40 int (*fn)(int, const char **);
41 const char *help;
42};
43
44static const char objtool_usage_string[] =
Greg Kroah-Hartmanb790b4f2018-06-03 12:35:15 +020045 "objtool COMMAND [ARGS]";
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060046
47static struct cmd_struct objtool_cmds[] = {
48 {"check", cmd_check, "Perform stack metadata validation on an object file" },
Greg Kroah-Hartmanb790b4f2018-06-03 12:35:15 +020049 {"orc", cmd_orc, "Generate in-place ORC unwind tables for an object file" },
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060050};
51
52bool help;
53
54static void cmd_usage(void)
55{
56 unsigned int i, longest = 0;
57
58 printf("\n usage: %s\n\n", objtool_usage_string);
59
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);
63 }
64
65 puts(" Commands:");
66 for (i = 0; i < ARRAY_SIZE(objtool_cmds); i++) {
67 printf(" %-*s ", longest, objtool_cmds[i].name);
68 puts(objtool_cmds[i].help);
69 }
70
71 printf("\n");
72
Greg Kroah-Hartmanb790b4f2018-06-03 12:35:15 +020073 exit(129);
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060074}
75
76static void handle_options(int *argc, const char ***argv)
77{
78 while (*argc > 0) {
79 const char *cmd = (*argv)[0];
80
81 if (cmd[0] != '-')
82 break;
83
84 if (!strcmp(cmd, "--help") || !strcmp(cmd, "-h")) {
85 help = true;
86 break;
87 } else {
88 fprintf(stderr, "Unknown option: %s\n", cmd);
Greg Kroah-Hartmanb790b4f2018-06-03 12:35:15 +020089 cmd_usage();
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060090 }
91
92 (*argv)++;
93 (*argc)--;
94 }
95}
96
97static void handle_internal_command(int argc, const char **argv)
98{
99 const char *cmd = argv[0];
100 unsigned int i, ret;
101
102 for (i = 0; i < ARRAY_SIZE(objtool_cmds); i++) {
103 struct cmd_struct *p = objtool_cmds+i;
104
105 if (strcmp(p->name, cmd))
106 continue;
107
108 ret = p->fn(argc, argv);
109
110 exit(ret);
111 }
112
113 cmd_usage();
114}
115
116int main(int argc, const char **argv)
117{
118 static const char *UNUSED = "OBJTOOL_NOT_IMPLEMENTED";
119
120 /* libsubcmd init */
121 exec_cmd_init("objtool", UNUSED, UNUSED, UNUSED);
122 pager_init(UNUSED);
123
124 argv++;
125 argc--;
126 handle_options(&argc, &argv);
127
128 if (!argc || help)
129 cmd_usage();
130
131 handle_internal_command(argc, argv);
132
133 return 0;
134}