-
Notifications
You must be signed in to change notification settings - Fork 111
/
llvm_propeller_binary_content.cc
402 lines (372 loc) · 15.5 KB
/
llvm_propeller_binary_content.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
#include "llvm_propeller_binary_content.h"
#include <cstdint>
#include <cstring>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "addr2cu.h"
#include "third_party/abseil/absl/container/flat_hash_map.h"
#include "third_party/abseil/absl/status/status.h"
#include "third_party/abseil/absl/status/statusor.h"
#include "third_party/abseil/absl/strings/match.h"
#include "third_party/abseil/absl/strings/str_cat.h"
#include "third_party/abseil/absl/strings/string_view.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/BinaryFormat/ELF.h"
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
#include "llvm/Object/ELFObjectFile.h"
#include "llvm/Object/ELFTypes.h"
#include "llvm/Object/ObjectFile.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/Error.h"
#include "llvm/Support/ErrorOr.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/MemoryBufferRef.h"
#include "llvm/Support/raw_ostream.h"
#include "base/logging.h"
#include "base/status_macros.h"
namespace {
using ::devtools_crosstool_autofdo::BinaryContent;
// Convert binary data stored in data[...] into text representation.
std::string BinaryDataToAscii(absl::string_view data) {
std::string ascii(data.size() * 2, 0);
const char heximal[] = "0123456789abcdef";
for (int i = 0; i < data.size(); ++i) {
uint8_t d(data[i]);
ascii[i * 2] = heximal[((d >> 4) & 0xf)];
ascii[i * 2 + 1] = heximal[(d & 0xf)];
}
return ascii;
}
// Find relocatable ko file's text section index and store it in
// BinaryContent::kernel_module::text_section_index. We only care the first
// section that have SHF_EXECINSTR and SHF_ALLOC flags. This is similar to
// https://source.corp.google.com/h/prodkernel/kernel/release/11xx/+/next:kernel/module.c;l=2514;bpv=1;bpt=0;drc=1e08480468356a0d443f12e97798fbfdc906e76b
//
// (In addition, we require this section to be named ".text". If ".text" is
// not the first such section, we need to do extra alignment calculations for
// the layout, which we choose not to implement here.)
//
// We also create a segment using the section's (offset, address, size).
template <class ELFT>
absl::Status FindRelocatableTextSectionToFillSegment(
const llvm::object::ELFFile<ELFT> &elf_file,
BinaryContent &binary_content) {
llvm::Expected<typename ELFT::ShdrRange> sections = elf_file.sections();
if (!sections) {
return absl::FailedPreconditionError(
"failed to read section list from elf object file");
}
for (const typename ELFT::Shdr &shdr : *sections) {
llvm::Expected<llvm::StringRef> section_name =
elf_file.getSectionName(shdr);
if (!section_name) continue;
uint32_t mask = llvm::ELF::SHF_EXECINSTR | llvm::ELF::SHF_ALLOC;
if ((shdr.sh_flags & mask) != mask) continue;
// Relocatable objects do not have "segments", so we use section's
// address/size/offset fields to create segment data.
if (*section_name == ".text") {
// sh_offset, sh_addr and sh_size are of type
// packed_endian_specific_integral, must use conversion operator method to
// access its value.
binary_content.segments.push_back(BinaryContent::Segment{
.offset = typename ELFT::Off::value_type(shdr.sh_offset),
.vaddr = typename ELFT::Addr::value_type(shdr.sh_addr),
.memsz = typename ELFT::Word::value_type(shdr.sh_size)});
binary_content.kernel_module->text_section_index =
std::distance(sections->begin(), &shdr);
return absl::OkStatus();
}
}
return absl::NotFoundError(
"\".text\" section with EXECINSTR | ALLOC flags not found: ");
}
template <class ELFT>
class ELFFileUtil : public ::devtools_crosstool_autofdo::ELFFileUtilBase {
public:
explicit ELFFileUtil(llvm::object::ObjectFile *object) {
llvm::object::ELFObjectFile<ELFT> *elf_object =
llvm::dyn_cast<llvm::object::ELFObjectFile<ELFT>,
llvm::object::ObjectFile>(object);
if (elf_object) elf_file_ = &elf_object->getELFFile();
}
std::string GetBuildId() override;
absl::Status ReadLoadableSegments(BinaryContent &binary_content) override;
absl::Status InitializeKernelModule(BinaryContent &binary_content) override;
private:
const llvm::object::ELFFile<ELFT> *elf_file_ = nullptr;
absl::StatusOr<const typename ELFT::Shdr *> FindSection(
llvm::StringRef section_name) const;
};
// TODO(shenhan): remove the following code once it is upstreamed.
template <class ELFT>
std::string ELFFileUtil<ELFT>::GetBuildId() {
if (!elf_file_) return "";
auto hex_to_char = [](uint8_t v) -> char {
if (v < 10) return '0' + v;
return 'a' + (v - 10);
};
std::vector<std::string> build_ids;
for (const typename ELFT::Shdr &shdr :
llvm::cantFail(elf_file_->sections())) {
llvm::Expected<llvm::StringRef> section_name =
elf_file_->getSectionName(shdr);
if (!section_name || shdr.sh_type != llvm::ELF::SHT_NOTE ||
(*section_name != kBuildIDSectionName &&
*section_name != kKernelBuildIDSectionName))
continue;
llvm::Error err = llvm::Error::success();
for (const typename ELFT::Note ¬e : elf_file_->notes(shdr, err)) {
llvm::StringRef r = note.getName();
if (r == kBuildIdNoteName) {
llvm::ArrayRef<uint8_t> build_id = note.getDesc(shdr.sh_addralign);
std::string build_id_str(build_id.size() * 2, '0');
int k = 0;
for (uint8_t t : build_id) {
build_id_str[k++] = hex_to_char((t >> 4) & 0xf);
build_id_str[k++] = hex_to_char(t & 0xf);
}
build_ids.push_back(std::move(build_id_str));
}
}
if (errorToBool(std::move(err)))
LOG(WARNING) << "error happened iterating note entries in '"
<< section_name->str() << "'";
}
if (build_ids.empty()) return "";
if (build_ids.size() > 1) {
LOG(WARNING) << "more than 1 build id entries found in the binary, only "
"the first one will be returned";
}
return build_ids.front();
}
template <class ELFT>
absl::Status ELFFileUtil<ELFT>::ReadLoadableSegments(
BinaryContent &binary_content) {
CHECK(elf_file_);
if (binary_content.is_relocatable &&
binary_content.kernel_module.has_value()) {
RETURN_IF_ERROR(FindRelocatableTextSectionToFillSegment<ELFT>(
*elf_file_, binary_content));
return absl::OkStatus();
}
auto program_headers = elf_file_->program_headers();
if (!program_headers) {
return absl::FailedPreconditionError(absl::StrCat(
binary_content.file_name, " does not have program headers"));
}
for (const typename ELFT::Phdr &phdr : *program_headers) {
if (phdr.p_type != llvm::ELF::PT_LOAD ||
((phdr.p_flags & llvm::ELF::PF_X) == 0))
continue;
binary_content.segments.push_back(
{phdr.p_offset, phdr.p_vaddr, phdr.p_memsz});
}
if (binary_content.segments.empty()) {
return absl::FailedPreconditionError(
absl::StrCat("No loadable and executable segments found in '",
binary_content.file_name, "'"));
}
return absl::OkStatus();
}
template <class ELFT>
absl::StatusOr<const typename ELFT::Shdr *> ELFFileUtil<ELFT>::FindSection(
llvm::StringRef section_name) const {
llvm::Expected<llvm::ArrayRef<typename ELFT::Shdr>> sections =
elf_file_->sections();
if (!sections) {
return absl::FailedPreconditionError(
absl::StrCat("Failed to get sections from the ELF file: ",
llvm::toString(sections.takeError())));
}
for (const typename ELFT::Shdr &shdr : *sections) {
llvm::Expected<llvm::StringRef> sn = elf_file_->getSectionName(shdr);
if (!sn) continue;
if (*sn == section_name) return &shdr;
}
return absl::NotFoundError(absl::StrCat(
"Section not found: ",
absl::string_view(section_name.data(), section_name.size())));
}
template <class ELFT>
absl::Status ELFFileUtil<ELFT>::InitializeKernelModule(
BinaryContent &binary_content) {
absl::StatusOr<const typename ELFT::Shdr *> this_module_section =
FindSection(kLinkOnceSectionName);
if (!this_module_section.ok()) return this_module_section.status();
ASSIGN_OR_RETURN(const auto &modinfo_section,
FindSection(kModInfoSectionName));
int modinfo_section_index = std::distance(
llvm::cantFail(elf_file_->sections()).begin(), modinfo_section);
const typename ELFT::Shdr &modinfo =
llvm::cantFail(elf_file_->sections())[modinfo_section_index];
llvm::Expected<llvm::ArrayRef<uint8_t>> modinfo_data =
elf_file_->getSectionContents(modinfo);
if (!modinfo_data) {
return absl::FailedPreconditionError(
"failed to get data for .modinfo section");
}
binary_content.kernel_module = BinaryContent::KernelModule{};
absl::string_view section_content(
reinterpret_cast<const char *>(modinfo_data->data()),
modinfo_data->size());
ASSIGN_OR_RETURN(binary_content.kernel_module->modinfo,
ParseModInfoSectionContent(section_content));
if (auto name = binary_content.kernel_module->modinfo.find("name");
name != binary_content.kernel_module->modinfo.end()) {
LOG(INFO) << "Found kernel module name: " << name->second;
}
if (auto desc = binary_content.kernel_module->modinfo.find("description");
desc != binary_content.kernel_module->modinfo.end())
LOG(INFO) << "Found kernel module description: " << desc->second;
return absl::OkStatus();
}
} // namespace
namespace devtools_crosstool_autofdo {
absl::StatusOr<absl::flat_hash_map<absl::string_view, absl::string_view>>
ELFFileUtilBase::ParseModInfoSectionContent(absl::string_view section_content) {
// .modinfo section is arranged as <key>=<value> pairs, with \0 as separators,
// the last <key>=<value> pair also ends with \0.
if (section_content.empty())
return absl::FailedPreconditionError("empty .modinfo section");
absl::flat_hash_map<absl::string_view, absl::string_view> modinfo;
const char *q, *eq, *p = section_content.data();
const char *end = p + section_content.size();
while (p < end) {
q = p;
eq = p;
while (q != end && *q != '\0') ++q;
if (p == q) {
return absl::FailedPreconditionError(
"malformed .modinfo entry: entry is empty");
}
if (q == end) {
return absl::FailedPreconditionError(
"malformed .modinfo entry: entry does not end properly");
}
while (eq != q && *eq != '=') ++eq;
if (*eq != '=') {
return absl::FailedPreconditionError(
"malformed .modinfo entry: entry does not contain '='");
}
if (eq != p && eq != q) {
CHECK(eq > p);
CHECK(eq < q);
modinfo.emplace(absl::string_view(p, eq - p), absl::string_view(eq + 1));
} else {
return absl::FailedPreconditionError(
"malformed .modinfo entry: entry contains only key or value");
}
p = q + 1;
// Some entries may have multiple \0s at the end, move 'p' over these
// extraneous \0s.
while (p != end && *p == '\0') ++p;
}
if (modinfo.empty()) {
return absl::FailedPreconditionError(
"nothing meaningful in .modinfo section");
}
return modinfo;
}
std::unique_ptr<ELFFileUtilBase> CreateELFFileUtil(
llvm::object::ObjectFile *object_file) {
if (!object_file) return nullptr;
llvm::StringRef content = object_file->getData();
const char *elf_start = content.data();
if (content.size() <= strlen(llvm::ELF::ElfMagic) ||
strncmp(elf_start, llvm::ELF::ElfMagic, strlen(llvm::ELF::ElfMagic))) {
LOG(ERROR) << "Not a valid ELF file.";
return nullptr;
}
const char elf_class = elf_start[llvm::ELF::EI_CLASS];
const char elf_data = elf_start[llvm::ELF::EI_DATA];
if (elf_class == llvm::ELF::ELFCLASS32 &&
elf_data == llvm::ELF::ELFDATA2LSB) {
return std::make_unique<ELFFileUtil<llvm::object::ELF32LE>>(object_file);
} else if (elf_class == llvm::ELF::ELFCLASS32 &&
elf_data == llvm::ELF::ELFDATA2MSB) {
return std::make_unique<ELFFileUtil<llvm::object::ELF32BE>>(object_file);
} else if (elf_class == llvm::ELF::ELFCLASS64 &&
elf_data == llvm::ELF::ELFDATA2LSB) {
return std::make_unique<ELFFileUtil<llvm::object::ELF64LE>>(object_file);
} else if (elf_class == llvm::ELF::ELFCLASS64 &&
elf_data == llvm::ELF::ELFDATA2MSB) {
return std::make_unique<ELFFileUtil<llvm::object::ELF64BE>>(object_file);
}
LOG(ERROR) << "Unrecognized ELF file data.";
return nullptr;
}
// Initializes BinaryContent object:
// - setup file content memory buffer
// - setup object file pointer
// - setup "PIE" bit
// - read loadable and executable segments
absl::StatusOr<std::unique_ptr<BinaryContent>> GetBinaryContent(
absl::string_view binary_file_name) {
auto binary_content = std::make_unique<BinaryContent>();
llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> file =
llvm::MemoryBuffer::getFile(binary_file_name);
if (!file) {
return absl::FailedPreconditionError(
absl::StrCat("Failed to read file '", binary_file_name,
"': ", file.getError().message()));
}
llvm::Expected<std::unique_ptr<llvm::object::ObjectFile>> obj =
llvm::object::ObjectFile::createELFObjectFile(
llvm::MemoryBufferRef(*(*file)));
if (!obj) {
std::string error_message;
llvm::raw_string_ostream raw_string_ostream(error_message);
raw_string_ostream << obj.takeError();
return absl::FailedPreconditionError(
absl::StrCat("Not a valid ELF file '", binary_file_name,
"': ", raw_string_ostream.str()));
}
llvm::object::ELFObjectFileBase *elf_obj =
llvm::dyn_cast<llvm::object::ELFObjectFileBase, llvm::object::ObjectFile>(
(*obj).get());
if (!elf_obj) {
return absl::FailedPreconditionError(
absl::StrCat("Not a valid ELF file '", binary_file_name, "."));
}
binary_content->file_name = binary_file_name;
binary_content->file_content = std::move(*file);
binary_content->object_file = std::move(*obj);
std::string dwp_file = absl::StrCat(binary_content->file_name, ".dwp");
if (!llvm::sys::fs::exists(dwp_file)) dwp_file = "";
binary_content->dwp_file_name = dwp_file;
absl::StatusOr<std::unique_ptr<llvm::DWARFContext>> dwarf_context =
CreateDWARFContext(*binary_content->object_file, dwp_file);
if (dwarf_context.ok()) {
binary_content->dwarf_context = std::move(*dwarf_context);
}else {
LOG(WARNING) << "Failed to create DWARF context: " << dwarf_context.status()
<< "\nNo module names wil be available";
}
binary_content->is_pie = (elf_obj->getEType() == llvm::ELF::ET_DYN);
LOG(INFO) << "'" << binary_file_name
<< "' is PIE: " << binary_content->is_pie;
binary_content->is_relocatable = (elf_obj->getEType() == llvm::ELF::ET_REL);
LOG(INFO) << "'" << binary_file_name
<< "' is relocatable: " << binary_content->is_relocatable;
std::unique_ptr<ELFFileUtilBase> elf_file_util =
CreateELFFileUtil(binary_content->object_file.get());
CHECK(elf_file_util != nullptr);
binary_content->build_id = elf_file_util->GetBuildId();
if (!binary_content->build_id.empty())
LOG(INFO) << "Build Id found in '" << binary_file_name
<< "': " << binary_content->build_id;
if (binary_content->is_relocatable) {
if (!absl::EndsWith(binary_content->file_name, ".ko")) {
return absl::FailedPreconditionError(
"Only support kernel module (.ko) relocatable objects");
}
RETURN_IF_ERROR(elf_file_util->InitializeKernelModule(*binary_content));
}
RETURN_IF_ERROR(elf_file_util->ReadLoadableSegments(*binary_content));
return binary_content;
}
} // namespace devtools_crosstool_autofdo