blob: 4f73cbdf2811bc315d8d987434b2d7a352bd56eb [file] [log] [blame]
Eric Christopher9cad53c2013-04-03 18:31:38 +00001//===-- ObjDumper.cpp - Base dumper class -----------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Eric Christopher9cad53c2013-04-03 18:31:38 +00006//
7//===----------------------------------------------------------------------===//
8///
9/// \file
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000010/// This file implements ObjDumper.
Eric Christopher9cad53c2013-04-03 18:31:38 +000011///
12//===----------------------------------------------------------------------===//
13
14#include "ObjDumper.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000015#include "Error.h"
Paul Semel6e137902018-07-18 18:00:41 +000016#include "llvm-readobj.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000017#include "llvm/Object/ObjectFile.h"
Paul Semel6e137902018-07-18 18:00:41 +000018#include "llvm/Support/Error.h"
Stephen Tozer19bb1d52019-04-15 11:17:48 +000019#include "llvm/Support/FormatVariadic.h"
Zachary Turner88bb1632016-05-03 00:28:04 +000020#include "llvm/Support/ScopedPrinter.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000021#include "llvm/Support/raw_ostream.h"
22
23namespace llvm {
24
Zachary Turner88bb1632016-05-03 00:28:04 +000025ObjDumper::ObjDumper(ScopedPrinter &Writer) : W(Writer) {}
Eric Christopher9cad53c2013-04-03 18:31:38 +000026
27ObjDumper::~ObjDumper() {
28}
29
Paul Semel6e137902018-07-18 18:00:41 +000030static void printAsPrintable(raw_ostream &W, const uint8_t *Start, size_t Len) {
31 for (size_t i = 0; i < Len; i++)
Michael Kruse6f1da6e2018-07-26 15:31:41 +000032 W << (isPrint(Start[i]) ? static_cast<char>(Start[i]) : '.');
Paul Semel6e137902018-07-18 18:00:41 +000033}
34
35static Expected<object::SectionRef>
36getSecNameOrIndexAsSecRef(const object::ObjectFile *Obj, StringRef SecName) {
37 char *StrPtr;
38 long SectionIndex = strtol(SecName.data(), &StrPtr, 10);
Paul Semel5ce8f152018-07-25 10:04:37 +000039 long SecIndex;
40 if (Obj->isELF())
41 SecIndex = 0;
42 else
43 SecIndex = 1;
Paul Semel6e137902018-07-18 18:00:41 +000044 for (object::SectionRef SecRef : Obj->sections()) {
45 if (*StrPtr) {
46 StringRef SectionName;
47
48 if (std::error_code E = SecRef.getName(SectionName))
49 return errorCodeToError(E);
50
51 if (SectionName == SecName)
52 return SecRef;
53 } else if (SecIndex == SectionIndex)
54 return SecRef;
55
56 SecIndex++;
57 }
Stephen Tozer19bb1d52019-04-15 11:17:48 +000058 return make_error<StringError>(
59 formatv("could not find section '{0}'", SecName),
60 object::object_error::parse_failed);
Paul Semel6e137902018-07-18 18:00:41 +000061}
62
63void ObjDumper::printSectionAsString(const object::ObjectFile *Obj,
64 StringRef SecName) {
65 Expected<object::SectionRef> SectionRefOrError =
66 getSecNameOrIndexAsSecRef(Obj, SecName);
67 if (!SectionRefOrError)
68 error(std::move(SectionRefOrError));
69 object::SectionRef Section = *SectionRefOrError;
70 StringRef SectionName;
71
72 if (std::error_code E = Section.getName(SectionName))
73 error(E);
74 W.startLine() << "String dump of section '" << SectionName << "':\n";
75
Fangrui Songe1833402019-05-16 13:24:04 +000076 StringRef SectionContent = unwrapOrError(Section.getContents());
Paul Semel6e137902018-07-18 18:00:41 +000077
78 const uint8_t *SecContent = SectionContent.bytes_begin();
79 const uint8_t *CurrentWord = SecContent;
80 const uint8_t *SecEnd = SectionContent.bytes_end();
81
82 while (CurrentWord <= SecEnd) {
83 size_t WordSize = strnlen(reinterpret_cast<const char *>(CurrentWord),
84 SecEnd - CurrentWord);
85 if (!WordSize) {
86 CurrentWord++;
87 continue;
88 }
89 W.startLine() << format("[%6tx] ", CurrentWord - SecContent);
90 printAsPrintable(W.startLine(), CurrentWord, WordSize);
91 W.startLine() << '\n';
92 CurrentWord += WordSize + 1;
93 }
94}
95
Paul Semel5ce8f152018-07-25 10:04:37 +000096void ObjDumper::printSectionAsHex(const object::ObjectFile *Obj,
97 StringRef SecName) {
98 Expected<object::SectionRef> SectionRefOrError =
99 getSecNameOrIndexAsSecRef(Obj, SecName);
100 if (!SectionRefOrError)
101 error(std::move(SectionRefOrError));
102 object::SectionRef Section = *SectionRefOrError;
103 StringRef SectionName;
104
105 if (std::error_code E = Section.getName(SectionName))
106 error(E);
107 W.startLine() << "Hex dump of section '" << SectionName << "':\n";
108
Fangrui Songe1833402019-05-16 13:24:04 +0000109 StringRef SectionContent = unwrapOrError(Section.getContents());
Paul Semel5ce8f152018-07-25 10:04:37 +0000110 const uint8_t *SecContent = SectionContent.bytes_begin();
111 const uint8_t *SecEnd = SecContent + SectionContent.size();
Paul Semelb98f5042018-07-11 10:00:29 +0000112
113 for (const uint8_t *SecPtr = SecContent; SecPtr < SecEnd; SecPtr += 16) {
114 const uint8_t *TmpSecPtr = SecPtr;
115 uint8_t i;
116 uint8_t k;
117
Sid Manning26238702019-01-16 16:17:19 +0000118 W.startLine() << format_hex(Section.getAddress() + (SecPtr - SecContent),
119 10);
Paul Semelb98f5042018-07-11 10:00:29 +0000120 W.startLine() << ' ';
121 for (i = 0; TmpSecPtr < SecEnd && i < 4; ++i) {
122 for (k = 0; TmpSecPtr < SecEnd && k < 4; k++, TmpSecPtr++) {
123 uint8_t Val = *(reinterpret_cast<const uint8_t *>(TmpSecPtr));
124 W.startLine() << format_hex_no_prefix(Val, 2);
125 }
126 W.startLine() << ' ';
127 }
128
129 // We need to print the correct amount of spaces to match the format.
130 // We are adding the (4 - i) last rows that are 8 characters each.
131 // Then, the (4 - i) spaces that are in between the rows.
132 // Least, if we cut in a middle of a row, we add the remaining characters,
Stephen Tozered7f8e652019-04-05 15:59:07 +0000133 // which is (8 - (k * 2)).
Paul Semelb98f5042018-07-11 10:00:29 +0000134 if (i < 4)
135 W.startLine() << format("%*c", (4 - i) * 8 + (4 - i) + (8 - (k * 2)),
136 ' ');
137
138 TmpSecPtr = SecPtr;
Paul Semel5ce8f152018-07-25 10:04:37 +0000139 for (i = 0; TmpSecPtr + i < SecEnd && i < 16; ++i)
Michael Kruse6f1da6e2018-07-26 15:31:41 +0000140 W.startLine() << (isPrint(TmpSecPtr[i]) ? static_cast<char>(TmpSecPtr[i])
Paul Semel5ce8f152018-07-25 10:04:37 +0000141 : '.');
Paul Semelb98f5042018-07-11 10:00:29 +0000142
143 W.startLine() << '\n';
144 }
145}
146
Eric Christopher9cad53c2013-04-03 18:31:38 +0000147} // namespace llvm