2017-04-20 07:02:10 +08:00
|
|
|
//===- ObjectFile.cpp - File format independent object file ---------------===//
|
2010-11-15 11:21:41 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-11-15 11:21:41 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines a file format independent ObjectFile class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-06-06 19:49:48 +08:00
|
|
|
#include "llvm/Object/ObjectFile.h"
|
2017-04-20 07:02:10 +08:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2017-06-07 11:48:56 +08:00
|
|
|
#include "llvm/BinaryFormat/Magic.h"
|
2017-04-20 07:02:10 +08:00
|
|
|
#include "llvm/Object/Binary.h"
|
2014-07-31 11:12:45 +08:00
|
|
|
#include "llvm/Object/COFF.h"
|
2017-04-20 07:02:10 +08:00
|
|
|
#include "llvm/Object/Error.h"
|
2014-07-31 11:12:45 +08:00
|
|
|
#include "llvm/Object/MachO.h"
|
2016-12-01 00:49:11 +08:00
|
|
|
#include "llvm/Object/Wasm.h"
|
2017-04-20 07:02:10 +08:00
|
|
|
#include "llvm/Support/Error.h"
|
2010-11-15 11:21:41 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2017-04-20 07:02:10 +08:00
|
|
|
#include "llvm/Support/ErrorOr.h"
|
2013-06-11 23:19:04 +08:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2010-11-15 11:21:41 +08:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2014-02-22 04:42:18 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2017-04-20 07:02:10 +08:00
|
|
|
#include <algorithm>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <memory>
|
2014-06-13 01:38:55 +08:00
|
|
|
#include <system_error>
|
2010-11-15 11:21:41 +08:00
|
|
|
|
2010-11-16 09:06:51 +08:00
|
|
|
using namespace llvm;
|
|
|
|
using namespace object;
|
2010-11-15 11:21:41 +08:00
|
|
|
|
2019-11-19 16:54:24 +08:00
|
|
|
raw_ostream &object::operator<<(raw_ostream &OS, const SectionedAddress &Addr) {
|
|
|
|
OS << "SectionedAddress{" << format_hex(Addr.Address, 10);
|
|
|
|
if (Addr.SectionIndex != SectionedAddress::UndefSection)
|
|
|
|
OS << ", " << Addr.SectionIndex;
|
|
|
|
return OS << "}";
|
|
|
|
}
|
|
|
|
|
2017-04-20 07:02:10 +08:00
|
|
|
void ObjectFile::anchor() {}
|
2011-12-20 10:50:00 +08:00
|
|
|
|
2014-08-20 02:44:46 +08:00
|
|
|
ObjectFile::ObjectFile(unsigned int Type, MemoryBufferRef Source)
|
|
|
|
: SymbolicFile(Type, Source) {}
|
2014-02-22 04:10:59 +08:00
|
|
|
|
2015-07-01 04:18:49 +08:00
|
|
|
bool SectionRef::containsSymbol(SymbolRef S) const {
|
2016-05-03 04:28:12 +08:00
|
|
|
Expected<section_iterator> SymSec = S.getSection();
|
|
|
|
if (!SymSec) {
|
|
|
|
// TODO: Actually report errors helpfully.
|
|
|
|
consumeError(SymSec.takeError());
|
2015-07-01 04:18:49 +08:00
|
|
|
return false;
|
2016-05-03 04:28:12 +08:00
|
|
|
}
|
2015-08-08 07:27:14 +08:00
|
|
|
return *this == **SymSec;
|
2015-07-01 04:18:49 +08:00
|
|
|
}
|
|
|
|
|
2020-05-02 14:04:04 +08:00
|
|
|
Expected<uint64_t> ObjectFile::getSymbolValue(DataRefImpl Ref) const {
|
2020-04-10 20:24:21 +08:00
|
|
|
if (Expected<uint32_t> FlagsOrErr = getSymbolFlags(Ref)) {
|
|
|
|
if (*FlagsOrErr & SymbolRef::SF_Undefined)
|
|
|
|
return 0;
|
|
|
|
if (*FlagsOrErr & SymbolRef::SF_Common)
|
|
|
|
return getCommonSymbolSize(Ref);
|
|
|
|
} else
|
2020-05-02 14:04:04 +08:00
|
|
|
// TODO: Test this error.
|
|
|
|
return FlagsOrErr.takeError();
|
2015-07-08 01:12:59 +08:00
|
|
|
return getSymbolValueImpl(Ref);
|
|
|
|
}
|
|
|
|
|
2019-05-10 17:59:04 +08:00
|
|
|
Error ObjectFile::printSymbolName(raw_ostream &OS, DataRefImpl Symb) const {
|
2016-04-21 05:24:34 +08:00
|
|
|
Expected<StringRef> Name = getSymbolName(Symb);
|
|
|
|
if (!Name)
|
2019-05-10 17:59:04 +08:00
|
|
|
return Name.takeError();
|
2015-07-03 04:55:21 +08:00
|
|
|
OS << *Name;
|
2019-05-10 17:59:04 +08:00
|
|
|
return Error::success();
|
2014-02-22 04:10:59 +08:00
|
|
|
}
|
2010-11-15 11:21:41 +08:00
|
|
|
|
2015-06-01 07:52:50 +08:00
|
|
|
uint32_t ObjectFile::getSymbolAlignment(DataRefImpl DRI) const { return 0; }
|
2013-04-30 06:24:22 +08:00
|
|
|
|
2016-03-01 03:40:10 +08:00
|
|
|
bool ObjectFile::isSectionBitcode(DataRefImpl Sec) const {
|
2019-09-02 22:57:35 +08:00
|
|
|
Expected<StringRef> NameOrErr = getSectionName(Sec);
|
|
|
|
if (NameOrErr)
|
2019-05-02 18:32:03 +08:00
|
|
|
return *NameOrErr == ".llvmbc";
|
2019-09-02 22:57:35 +08:00
|
|
|
consumeError(NameOrErr.takeError());
|
2016-03-01 03:40:10 +08:00
|
|
|
return false;
|
|
|
|
}
|
2017-09-26 22:22:35 +08:00
|
|
|
|
|
|
|
bool ObjectFile::isSectionStripped(DataRefImpl Sec) const { return false; }
|
2016-03-01 03:40:10 +08:00
|
|
|
|
2018-12-14 03:40:12 +08:00
|
|
|
bool ObjectFile::isBerkeleyText(DataRefImpl Sec) const {
|
|
|
|
return isSectionText(Sec);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ObjectFile::isBerkeleyData(DataRefImpl Sec) const {
|
|
|
|
return isSectionData(Sec);
|
|
|
|
}
|
|
|
|
|
2020-04-02 16:00:18 +08:00
|
|
|
bool ObjectFile::isDebugSection(StringRef SectionName) const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-10-21 19:06:38 +08:00
|
|
|
Expected<section_iterator>
|
|
|
|
ObjectFile::getRelocatedSection(DataRefImpl Sec) const {
|
2013-05-30 11:05:14 +08:00
|
|
|
return section_iterator(SectionRef(Sec, this));
|
|
|
|
}
|
|
|
|
|
2017-09-19 10:22:48 +08:00
|
|
|
Triple ObjectFile::makeTriple() const {
|
|
|
|
Triple TheTriple;
|
|
|
|
auto Arch = getArch();
|
|
|
|
TheTriple.setArch(Triple::ArchType(Arch));
|
|
|
|
|
|
|
|
// For ARM targets, try to use the build attributes to build determine
|
|
|
|
// the build target. Target features are also added, but later during
|
|
|
|
// disassembly.
|
|
|
|
if (Arch == Triple::arm || Arch == Triple::armeb)
|
|
|
|
setARMSubArch(TheTriple);
|
|
|
|
|
|
|
|
// TheTriple defaults to ELF, and COFF doesn't have an environment:
|
[Object] Update ObjectFile::makeTriple for XCOFF
Summary:
When we encounter an XCOFF file, reflect that in the triple information.
In addition to knowing the object file format, we know that the
associated OS is AIX.
This means that we can expect that there is no output difference in the
processing of an XCOFF32 input file between cases where the triple is
left unspecified by the user and cases where the user specifies
`--triple powerpc-ibm-aix` explicitly.
Reviewers: jhenderson, sfertile, jasonliu, daltenty
Reviewed By: jasonliu
Subscribers: wuzish, nemanjai, hiraditya, MaskRay, rupprecht, steven.zhang, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D77025
2020-04-01 05:24:22 +08:00
|
|
|
// something we can do here is indicate that it is mach-o.
|
|
|
|
if (isMachO()) {
|
2017-09-19 10:22:48 +08:00
|
|
|
TheTriple.setObjectFormat(Triple::MachO);
|
[Object] Update ObjectFile::makeTriple for XCOFF
Summary:
When we encounter an XCOFF file, reflect that in the triple information.
In addition to knowing the object file format, we know that the
associated OS is AIX.
This means that we can expect that there is no output difference in the
processing of an XCOFF32 input file between cases where the triple is
left unspecified by the user and cases where the user specifies
`--triple powerpc-ibm-aix` explicitly.
Reviewers: jhenderson, sfertile, jasonliu, daltenty
Reviewed By: jasonliu
Subscribers: wuzish, nemanjai, hiraditya, MaskRay, rupprecht, steven.zhang, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D77025
2020-04-01 05:24:22 +08:00
|
|
|
} else if (isCOFF()) {
|
2019-10-01 19:25:17 +08:00
|
|
|
const auto COFFObj = cast<COFFObjectFile>(this);
|
2017-09-19 10:22:48 +08:00
|
|
|
if (COFFObj->getArch() == Triple::thumb)
|
|
|
|
TheTriple.setTriple("thumbv7-windows");
|
[Object] Update ObjectFile::makeTriple for XCOFF
Summary:
When we encounter an XCOFF file, reflect that in the triple information.
In addition to knowing the object file format, we know that the
associated OS is AIX.
This means that we can expect that there is no output difference in the
processing of an XCOFF32 input file between cases where the triple is
left unspecified by the user and cases where the user specifies
`--triple powerpc-ibm-aix` explicitly.
Reviewers: jhenderson, sfertile, jasonliu, daltenty
Reviewed By: jasonliu
Subscribers: wuzish, nemanjai, hiraditya, MaskRay, rupprecht, steven.zhang, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D77025
2020-04-01 05:24:22 +08:00
|
|
|
} else if (isXCOFF()) {
|
|
|
|
// XCOFF implies AIX.
|
|
|
|
TheTriple.setOS(Triple::AIX);
|
|
|
|
TheTriple.setObjectFormat(Triple::XCOFF);
|
2017-09-19 10:22:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return TheTriple;
|
|
|
|
}
|
|
|
|
|
2016-04-07 06:14:09 +08:00
|
|
|
Expected<std::unique_ptr<ObjectFile>>
|
2017-06-07 11:48:56 +08:00
|
|
|
ObjectFile::createObjectFile(MemoryBufferRef Object, file_magic Type) {
|
2014-08-20 02:44:46 +08:00
|
|
|
StringRef Data = Object.getBuffer();
|
2017-06-07 11:48:56 +08:00
|
|
|
if (Type == file_magic::unknown)
|
|
|
|
Type = identify_magic(Data);
|
2014-01-22 08:14:49 +08:00
|
|
|
|
2013-06-11 23:19:04 +08:00
|
|
|
switch (Type) {
|
2017-06-07 11:48:56 +08:00
|
|
|
case file_magic::unknown:
|
|
|
|
case file_magic::bitcode:
|
|
|
|
case file_magic::coff_cl_gl_object:
|
|
|
|
case file_magic::archive:
|
|
|
|
case file_magic::macho_universal_binary:
|
|
|
|
case file_magic::windows_resource:
|
2018-03-08 02:58:33 +08:00
|
|
|
case file_magic::pdb:
|
[Object] Add basic minidump support
Summary:
This patch adds basic support for reading minidump files. It contains
the definitions of various important minidump data structures (header,
stream directory), and of one minidump stream (SystemInfo). The ability
to read other streams will be added in follow-up patches. However, all
streams can be read even now as raw data, which means lldb's minidump
support (where this code is taken from) can be immediately rebased on
top of this patch as soon as it lands.
As we don't have any support for generating minidump files (yet), this
tests the code via unit tests with some small handcrafted binaries in
the form of c char arrays.
Reviewers: Bigcheese, jhenderson, zturner
Subscribers: srhines, dschuff, mgorny, fedor.sergeev, lemo, clayborg, JDevlieghere, aprantl, lldb-commits, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D59291
llvm-svn: 356652
2019-03-21 17:18:59 +08:00
|
|
|
case file_magic::minidump:
|
2016-04-07 06:14:09 +08:00
|
|
|
return errorCodeToError(object_error::invalid_file_type);
|
[BinaryFormat] Teach identify_magic about Tapi files.
Summary:
Tapi files are YAML files that start with the !tapi tag. The only execption are
TBD v1 files, which don't have a tag. In that case we have to scan a little
further and check if the first key "archs" exists.
This is the first patch in a series of patches to add libObject support for
text-based dynamic library (.tbd) files.
This patch is practically exactly the same as D37820, that was never pushed to master,
and is needed for future commits related to reading tbd files for llvm-nm
Reviewers: ributzka, steven_wu, bollu, espindola, jfb, shafik, jdoerfert
Reviewed By: steven_wu
Subscribers: dexonsmith, llvm-commits
Tags: #llvm, #clang, #sanitizers, #lldb, #libc, #openmp
Differential Revision: https://reviews.llvm.org/D66149
llvm-svn: 369579
2019-08-22 05:00:16 +08:00
|
|
|
case file_magic::tapi_file:
|
|
|
|
return errorCodeToError(object_error::invalid_file_type);
|
2017-06-07 11:48:56 +08:00
|
|
|
case file_magic::elf:
|
|
|
|
case file_magic::elf_relocatable:
|
|
|
|
case file_magic::elf_executable:
|
|
|
|
case file_magic::elf_shared_object:
|
|
|
|
case file_magic::elf_core:
|
2017-10-11 04:00:07 +08:00
|
|
|
return createELFObjectFile(Object);
|
2017-06-07 11:48:56 +08:00
|
|
|
case file_magic::macho_object:
|
|
|
|
case file_magic::macho_executable:
|
|
|
|
case file_magic::macho_fixed_virtual_memory_shared_lib:
|
|
|
|
case file_magic::macho_core:
|
|
|
|
case file_magic::macho_preload_executable:
|
|
|
|
case file_magic::macho_dynamically_linked_shared_lib:
|
|
|
|
case file_magic::macho_dynamic_linker:
|
|
|
|
case file_magic::macho_bundle:
|
|
|
|
case file_magic::macho_dynamically_linked_shared_lib_stub:
|
|
|
|
case file_magic::macho_dsym_companion:
|
|
|
|
case file_magic::macho_kext_bundle:
|
2016-04-07 06:14:09 +08:00
|
|
|
return createMachOObjectFile(Object);
|
2017-06-07 11:48:56 +08:00
|
|
|
case file_magic::coff_object:
|
|
|
|
case file_magic::coff_import_library:
|
|
|
|
case file_magic::pecoff_executable:
|
2017-10-11 04:00:07 +08:00
|
|
|
return createCOFFObjectFile(Object);
|
[XCOFF] Add functionality for parsing AIX XCOFF object file headers
Summary:
1. Add functionality for parsing AIX XCOFF object files headers.
2. Only support 32-bit AIX XCOFF object files in this patch.
3. Print out the AIX XCOFF object file header in YAML format.
Reviewers: sfertile, hubert.reinterpretcast, jasonliu, mstorsjo, zturner, rnk
Reviewed By: sfertile, hubert.reinterpretcast
Subscribers: jsji, mgorny, hiraditya, jdoerfert, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D59419
Patch by Digger Lin
llvm-svn: 357663
2019-04-04 08:53:21 +08:00
|
|
|
case file_magic::xcoff_object_32:
|
2019-07-10 02:09:11 +08:00
|
|
|
return createXCOFFObjectFile(Object, Binary::ID_XCOFF32);
|
|
|
|
case file_magic::xcoff_object_64:
|
|
|
|
return createXCOFFObjectFile(Object, Binary::ID_XCOFF64);
|
2017-06-07 11:48:56 +08:00
|
|
|
case file_magic::wasm_object:
|
2016-12-01 00:49:11 +08:00
|
|
|
return createWasmObjectFile(Object);
|
2010-11-15 11:21:41 +08:00
|
|
|
}
|
2013-06-11 23:19:04 +08:00
|
|
|
llvm_unreachable("Unexpected Object File Type");
|
2010-11-15 11:21:41 +08:00
|
|
|
}
|
|
|
|
|
2016-04-07 06:14:09 +08:00
|
|
|
Expected<OwningBinary<ObjectFile>>
|
2014-07-31 11:12:45 +08:00
|
|
|
ObjectFile::createObjectFile(StringRef ObjectPath) {
|
2014-07-07 01:43:13 +08:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> FileOrErr =
|
|
|
|
MemoryBuffer::getFile(ObjectPath);
|
|
|
|
if (std::error_code EC = FileOrErr.getError())
|
2016-04-07 06:14:09 +08:00
|
|
|
return errorCodeToError(EC);
|
2014-08-20 02:44:46 +08:00
|
|
|
std::unique_ptr<MemoryBuffer> Buffer = std::move(FileOrErr.get());
|
|
|
|
|
2016-04-07 06:14:09 +08:00
|
|
|
Expected<std::unique_ptr<ObjectFile>> ObjOrErr =
|
2014-08-20 02:44:46 +08:00
|
|
|
createObjectFile(Buffer->getMemBufferRef());
|
2016-10-18 13:17:23 +08:00
|
|
|
if (Error Err = ObjOrErr.takeError())
|
2020-02-10 23:06:45 +08:00
|
|
|
return std::move(Err);
|
2014-08-20 02:44:46 +08:00
|
|
|
std::unique_ptr<ObjectFile> Obj = std::move(ObjOrErr.get());
|
|
|
|
|
|
|
|
return OwningBinary<ObjectFile>(std::move(Obj), std::move(Buffer));
|
2010-11-15 11:21:41 +08:00
|
|
|
}
|