blob: 916c658dddea91fe69461fbce0296a66d2885882 [file] [log] [blame]
Benjamin Kramer054f4222013-08-09 10:31:14 +00001//===- llvm-readobj.cpp - Dump contents of an Object File -----------------===//
David Meyer2fc34c52012-03-01 01:36:50 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Michael J. Spencerd7e70032013-02-05 20:27:22 +000010// This is a tool similar to readelf, except it works on multiple object file
11// formats. The main purpose of this tool is to provide detailed output suitable
12// for FileCheck.
David Meyerae11a782012-03-02 23:43:51 +000013//
Michael J. Spencerd7e70032013-02-05 20:27:22 +000014// Flags should be similar to readelf where supported, but the output format
15// does not need to be identical. The point is to not make users learn yet
16// another set of flags.
David Meyerae11a782012-03-02 23:43:51 +000017//
Michael J. Spencerd7e70032013-02-05 20:27:22 +000018// Output should be specialized for each format where appropriate.
David Meyerae11a782012-03-02 23:43:51 +000019//
20//===----------------------------------------------------------------------===//
David Meyer2fc34c52012-03-01 01:36:50 +000021
Michael J. Spencer6a8746b2013-02-20 02:37:12 +000022#include "llvm-readobj.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000023#include "Error.h"
24#include "ObjDumper.h"
25#include "StreamWriter.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000026#include "llvm/Object/Archive.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000027#include "llvm/Object/ObjectFile.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000028#include "llvm/Support/Casting.h"
David Meyer2fc34c52012-03-01 01:36:50 +000029#include "llvm/Support/CommandLine.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000030#include "llvm/Support/DataTypes.h"
David Meyer2fc34c52012-03-01 01:36:50 +000031#include "llvm/Support/Debug.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000032#include "llvm/Support/FileSystem.h"
33#include "llvm/Support/ManagedStatic.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000034#include "llvm/Support/PrettyStackTrace.h"
35#include "llvm/Support/Signals.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000036#include "llvm/Support/TargetRegistry.h"
37#include "llvm/Support/TargetSelect.h"
38#include "llvm/Support/system_error.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000039#include <string>
40
David Meyer2fc34c52012-03-01 01:36:50 +000041
42using namespace llvm;
43using namespace llvm::object;
44
Eric Christopher9cad53c2013-04-03 18:31:38 +000045namespace opts {
46 cl::list<std::string> InputFilenames(cl::Positional,
47 cl::desc("<input object files>"),
48 cl::ZeroOrMore);
David Meyer2fc34c52012-03-01 01:36:50 +000049
Eric Christopher9cad53c2013-04-03 18:31:38 +000050 // -file-headers, -h
51 cl::opt<bool> FileHeaders("file-headers",
52 cl::desc("Display file headers "));
53 cl::alias FileHeadersShort("h",
54 cl::desc("Alias for --file-headers"),
55 cl::aliasopt(FileHeaders));
56
57 // -sections, -s
58 cl::opt<bool> Sections("sections",
59 cl::desc("Display all sections."));
60 cl::alias SectionsShort("s",
61 cl::desc("Alias for --sections"),
62 cl::aliasopt(Sections));
63
64 // -section-relocations, -sr
65 cl::opt<bool> SectionRelocations("section-relocations",
66 cl::desc("Display relocations for each section shown."));
67 cl::alias SectionRelocationsShort("sr",
68 cl::desc("Alias for --section-relocations"),
69 cl::aliasopt(SectionRelocations));
70
71 // -section-symbols, -st
72 cl::opt<bool> SectionSymbols("section-symbols",
73 cl::desc("Display symbols for each section shown."));
74 cl::alias SectionSymbolsShort("st",
75 cl::desc("Alias for --section-symbols"),
76 cl::aliasopt(SectionSymbols));
77
78 // -section-data, -sd
79 cl::opt<bool> SectionData("section-data",
80 cl::desc("Display section data for each section shown."));
81 cl::alias SectionDataShort("sd",
82 cl::desc("Alias for --section-data"),
83 cl::aliasopt(SectionData));
84
85 // -relocations, -r
86 cl::opt<bool> Relocations("relocations",
87 cl::desc("Display the relocation entries in the file"));
88 cl::alias RelocationsShort("r",
89 cl::desc("Alias for --relocations"),
90 cl::aliasopt(Relocations));
91
92 // -symbols, -t
93 cl::opt<bool> Symbols("symbols",
94 cl::desc("Display the symbol table"));
95 cl::alias SymbolsShort("t",
96 cl::desc("Alias for --symbols"),
97 cl::aliasopt(Symbols));
98
99 // -dyn-symbols, -dt
100 cl::opt<bool> DynamicSymbols("dyn-symbols",
101 cl::desc("Display the dynamic symbol table"));
102 cl::alias DynamicSymbolsShort("dt",
103 cl::desc("Alias for --dyn-symbols"),
104 cl::aliasopt(DynamicSymbols));
105
106 // -unwind, -u
107 cl::opt<bool> UnwindInfo("unwind",
108 cl::desc("Display unwind information"));
109 cl::alias UnwindInfoShort("u",
110 cl::desc("Alias for --unwind"),
111 cl::aliasopt(UnwindInfo));
112
113 // -dynamic-table
114 cl::opt<bool> DynamicTable("dynamic-table",
115 cl::desc("Display the ELF .dynamic section table"));
116
117 // -needed-libs
118 cl::opt<bool> NeededLibraries("needed-libs",
119 cl::desc("Display the needed libraries"));
Nico Rieckf3f0b792013-04-12 04:01:52 +0000120
Nico Rieckd6df0542013-04-12 04:07:39 +0000121 // -program-headers
122 cl::opt<bool> ProgramHeaders("program-headers",
123 cl::desc("Display ELF program headers"));
124
Nico Rieckf3f0b792013-04-12 04:01:52 +0000125 // -expand-relocs
126 cl::opt<bool> ExpandRelocs("expand-relocs",
127 cl::desc("Expand each shown relocation to multiple lines"));
Timur Iskhodzhanov48703be2013-12-19 11:37:14 +0000128
129 // -codeview-linetables
130 cl::opt<bool> CodeViewLineTables("codeview-linetables",
131 cl::desc("Display CodeView line table information"));
Eric Christopher9cad53c2013-04-03 18:31:38 +0000132} // namespace opts
133
Michael J. Spencer126973b2013-08-08 22:27:13 +0000134static int ReturnValue = EXIT_SUCCESS;
135
Eric Christopher9cad53c2013-04-03 18:31:38 +0000136namespace llvm {
137
138bool error(error_code EC) {
139 if (!EC)
140 return false;
141
Michael J. Spencer126973b2013-08-08 22:27:13 +0000142 ReturnValue = EXIT_FAILURE;
Eric Christopher9cad53c2013-04-03 18:31:38 +0000143 outs() << "\nError reading file: " << EC.message() << ".\n";
144 outs().flush();
145 return true;
Rafael Espindola144af2c2012-12-31 16:05:21 +0000146}
147
Eric Christopher9cad53c2013-04-03 18:31:38 +0000148bool relocAddressLess(RelocationRef a, RelocationRef b) {
149 uint64_t a_addr, b_addr;
Rafael Espindola1e483872013-04-25 12:28:45 +0000150 if (error(a.getOffset(a_addr))) return false;
151 if (error(b.getOffset(b_addr))) return false;
Eric Christopher9cad53c2013-04-03 18:31:38 +0000152 return a_addr < b_addr;
153}
154
155} // namespace llvm
156
157
158static void reportError(StringRef Input, error_code EC) {
159 if (Input == "-")
160 Input = "<stdin>";
161
162 errs() << Input << ": " << EC.message() << "\n";
163 errs().flush();
Michael J. Spencer126973b2013-08-08 22:27:13 +0000164 ReturnValue = EXIT_FAILURE;
Eric Christopher9cad53c2013-04-03 18:31:38 +0000165}
166
167static void reportError(StringRef Input, StringRef Message) {
168 if (Input == "-")
169 Input = "<stdin>";
170
171 errs() << Input << ": " << Message << "\n";
Michael J. Spencer126973b2013-08-08 22:27:13 +0000172 ReturnValue = EXIT_FAILURE;
Eric Christopher9cad53c2013-04-03 18:31:38 +0000173}
174
175/// @brief Creates an format-specific object file dumper.
176static error_code createDumper(const ObjectFile *Obj,
177 StreamWriter &Writer,
178 OwningPtr<ObjDumper> &Result) {
179 if (!Obj)
180 return readobj_error::unsupported_file_format;
181
182 if (Obj->isCOFF())
183 return createCOFFDumper(Obj, Writer, Result);
184 if (Obj->isELF())
185 return createELFDumper(Obj, Writer, Result);
186 if (Obj->isMachO())
187 return createMachODumper(Obj, Writer, Result);
188
189 return readobj_error::unsupported_obj_file_format;
190}
191
192
193/// @brief Dumps the specified object file.
194static void dumpObject(const ObjectFile *Obj) {
195 StreamWriter Writer(outs());
196 OwningPtr<ObjDumper> Dumper;
197 if (error_code EC = createDumper(Obj, Writer, Dumper)) {
198 reportError(Obj->getFileName(), EC);
199 return;
200 }
201
202 outs() << '\n';
203 outs() << "File: " << Obj->getFileName() << "\n";
204 outs() << "Format: " << Obj->getFileFormatName() << "\n";
205 outs() << "Arch: "
206 << Triple::getArchTypeName((llvm::Triple::ArchType)Obj->getArch())
Rafael Espindola21bd8412012-12-31 16:29:44 +0000207 << "\n";
Eric Christopher9cad53c2013-04-03 18:31:38 +0000208 outs() << "AddressSize: " << (8*Obj->getBytesInAddress()) << "bit\n";
209 if (Obj->isELF())
210 outs() << "LoadName: " << Obj->getLoadName() << "\n";
211
212 if (opts::FileHeaders)
213 Dumper->printFileHeaders();
214 if (opts::Sections)
215 Dumper->printSections();
216 if (opts::Relocations)
217 Dumper->printRelocations();
218 if (opts::Symbols)
219 Dumper->printSymbols();
220 if (opts::DynamicSymbols)
221 Dumper->printDynamicSymbols();
222 if (opts::UnwindInfo)
223 Dumper->printUnwindInfo();
224 if (opts::DynamicTable)
225 Dumper->printDynamicTable();
226 if (opts::NeededLibraries)
227 Dumper->printNeededLibraries();
Nico Rieckd6df0542013-04-12 04:07:39 +0000228 if (opts::ProgramHeaders)
229 Dumper->printProgramHeaders();
Rafael Espindola21bd8412012-12-31 16:29:44 +0000230}
231
David Meyer2fc34c52012-03-01 01:36:50 +0000232
Eric Christopher9cad53c2013-04-03 18:31:38 +0000233/// @brief Dumps each object file in \a Arc;
234static void dumpArchive(const Archive *Arc) {
235 for (Archive::child_iterator ArcI = Arc->begin_children(),
236 ArcE = Arc->end_children();
237 ArcI != ArcE; ++ArcI) {
238 OwningPtr<Binary> child;
239 if (error_code EC = ArcI->getAsBinary(child)) {
240 // Ignore non-object files.
241 if (EC != object_error::invalid_file_type)
242 reportError(Arc->getFileName(), EC.message());
243 continue;
David Meyer6c614bf2012-03-09 20:59:52 +0000244 }
Eric Christopher9cad53c2013-04-03 18:31:38 +0000245
246 if (ObjectFile *Obj = dyn_cast<ObjectFile>(child.get()))
247 dumpObject(Obj);
248 else
249 reportError(Arc->getFileName(), readobj_error::unrecognized_file_format);
250 }
251}
252
253
254/// @brief Opens \a File and dumps it.
255static void dumpInput(StringRef File) {
256 // If file isn't stdin, check that it exists.
257 if (File != "-" && !sys::fs::exists(File)) {
258 reportError(File, readobj_error::file_not_found);
259 return;
Rafael Espindolaae740952012-12-31 15:30:58 +0000260 }
David Meyer2fc34c52012-03-01 01:36:50 +0000261
Eric Christopher9cad53c2013-04-03 18:31:38 +0000262 // Attempt to open the binary.
Rafael Espindola63da2952014-01-15 19:37:43 +0000263 ErrorOr<Binary *> BinaryOrErr = createBinary(File);
264 if (error_code EC = BinaryOrErr.getError()) {
Eric Christopher9cad53c2013-04-03 18:31:38 +0000265 reportError(File, EC);
266 return;
Rafael Espindola21bd8412012-12-31 16:29:44 +0000267 }
Rafael Espindola63da2952014-01-15 19:37:43 +0000268 OwningPtr<Binary> Binary(BinaryOrErr.get());
Eric Christopher9cad53c2013-04-03 18:31:38 +0000269
270 if (Archive *Arc = dyn_cast<Archive>(Binary.get()))
271 dumpArchive(Arc);
272 else if (ObjectFile *Obj = dyn_cast<ObjectFile>(Binary.get()))
273 dumpObject(Obj);
274 else
275 reportError(File, readobj_error::unrecognized_file_format);
Rafael Espindola21bd8412012-12-31 16:29:44 +0000276}
277
David Meyerc429b802012-03-01 22:19:54 +0000278
Eric Christopher9cad53c2013-04-03 18:31:38 +0000279int main(int argc, const char *argv[]) {
David Meyer2fc34c52012-03-01 01:36:50 +0000280 sys::PrintStackTraceOnErrorSignal();
281 PrettyStackTraceProgram X(argc, argv);
Eric Christopher9cad53c2013-04-03 18:31:38 +0000282 llvm_shutdown_obj Y;
David Meyer2fc34c52012-03-01 01:36:50 +0000283
Eric Christopher9cad53c2013-04-03 18:31:38 +0000284 // Initialize targets.
285 llvm::InitializeAllTargetInfos();
David Meyer2fc34c52012-03-01 01:36:50 +0000286
Eric Christopher9cad53c2013-04-03 18:31:38 +0000287 // Register the target printer for --version.
288 cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion);
David Meyer2fc34c52012-03-01 01:36:50 +0000289
Eric Christopher9cad53c2013-04-03 18:31:38 +0000290 cl::ParseCommandLineOptions(argc, argv, "LLVM Object Reader\n");
David Meyer2fc34c52012-03-01 01:36:50 +0000291
Eric Christopher9cad53c2013-04-03 18:31:38 +0000292 // Default to stdin if no filename is specified.
293 if (opts::InputFilenames.size() == 0)
294 opts::InputFilenames.push_back("-");
David Meyer2fc34c52012-03-01 01:36:50 +0000295
Eric Christopher9cad53c2013-04-03 18:31:38 +0000296 std::for_each(opts::InputFilenames.begin(), opts::InputFilenames.end(),
297 dumpInput);
Rafael Espindola278e8912012-12-31 16:53:01 +0000298
Michael J. Spencer126973b2013-08-08 22:27:13 +0000299 return ReturnValue;
David Meyer2fc34c52012-03-01 01:36:50 +0000300}