2017-04-20 01:02:10 +02:00
|
|
|
//===- Binary.cpp - A generic binary file ---------------------------------===//
|
2011-06-25 19:54:29 +02:00
|
|
|
//
|
2019-01-19 09:50:56 +01: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
|
2011-06-25 19:54:29 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the Binary class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-06-06 13:49:48 +02:00
|
|
|
#include "llvm/Object/Binary.h"
|
2011-06-25 19:54:29 +02:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2017-06-07 05:48:56 +02:00
|
|
|
#include "llvm/BinaryFormat/Magic.h"
|
2011-09-27 21:36:55 +02:00
|
|
|
#include "llvm/Object/Archive.h"
|
2017-04-20 01:02:10 +02:00
|
|
|
#include "llvm/Object/Error.h"
|
2013-06-18 17:03:28 +02:00
|
|
|
#include "llvm/Object/MachOUniversal.h"
|
[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 10:18:59 +01:00
|
|
|
#include "llvm/Object/Minidump.h"
|
2011-09-27 21:36:55 +02:00
|
|
|
#include "llvm/Object/ObjectFile.h"
|
2019-08-22 01:30:53 +02:00
|
|
|
#include "llvm/Object/TapiUniversal.h"
|
2017-05-20 03:49:19 +02:00
|
|
|
#include "llvm/Object/WindowsResource.h"
|
2017-04-20 01:02:10 +02:00
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/ErrorOr.h"
|
|
|
|
#include "llvm/Support/FileSystem.h"
|
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include <memory>
|
|
|
|
#include <system_error>
|
2011-06-25 19:54:50 +02:00
|
|
|
|
2011-06-25 19:54:29 +02:00
|
|
|
using namespace llvm;
|
|
|
|
using namespace object;
|
|
|
|
|
2017-04-20 01:02:10 +02:00
|
|
|
Binary::~Binary() = default;
|
2011-06-25 19:54:29 +02:00
|
|
|
|
2014-08-19 20:44:46 +02:00
|
|
|
Binary::Binary(unsigned int Type, MemoryBufferRef Source)
|
|
|
|
: TypeID(Type), Data(Source) {}
|
2011-06-25 19:54:29 +02:00
|
|
|
|
2014-08-19 20:44:46 +02:00
|
|
|
StringRef Binary::getData() const { return Data.getBuffer(); }
|
2011-06-25 19:54:29 +02:00
|
|
|
|
2014-08-19 20:44:46 +02:00
|
|
|
StringRef Binary::getFileName() const { return Data.getBufferIdentifier(); }
|
|
|
|
|
|
|
|
MemoryBufferRef Binary::getMemoryBufferRef() const { return Data; }
|
2011-06-25 19:54:29 +02:00
|
|
|
|
2016-04-07 00:14:09 +02:00
|
|
|
Expected<std::unique_ptr<Binary>> object::createBinary(MemoryBufferRef Buffer,
|
2014-08-19 20:44:46 +02:00
|
|
|
LLVMContext *Context) {
|
2017-06-07 05:48:56 +02:00
|
|
|
file_magic Type = identify_magic(Buffer.getBuffer());
|
2014-01-22 17:04:52 +01:00
|
|
|
|
|
|
|
switch (Type) {
|
2017-06-07 05:48:56 +02:00
|
|
|
case file_magic::archive:
|
|
|
|
return Archive::create(Buffer);
|
|
|
|
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:
|
|
|
|
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:
|
|
|
|
case file_magic::coff_object:
|
|
|
|
case file_magic::coff_import_library:
|
|
|
|
case file_magic::pecoff_executable:
|
|
|
|
case file_magic::bitcode:
|
[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 02:53:21 +02:00
|
|
|
case file_magic::xcoff_object_32:
|
2019-07-09 20:09:11 +02:00
|
|
|
case file_magic::xcoff_object_64:
|
2017-06-07 05:48:56 +02:00
|
|
|
case file_magic::wasm_object:
|
|
|
|
return ObjectFile::createSymbolicFile(Buffer, Type, Context);
|
|
|
|
case file_magic::macho_universal_binary:
|
|
|
|
return MachOUniversalBinary::create(Buffer);
|
|
|
|
case file_magic::windows_resource:
|
|
|
|
return WindowsResource::createWindowsResource(Buffer);
|
2018-03-07 19:58:33 +01:00
|
|
|
case file_magic::pdb:
|
|
|
|
// PDB does not support the Binary interface.
|
|
|
|
return errorCodeToError(object_error::invalid_file_type);
|
2017-06-07 05:48:56 +02:00
|
|
|
case file_magic::unknown:
|
|
|
|
case file_magic::coff_cl_gl_object:
|
|
|
|
// Unrecognized object file format.
|
|
|
|
return errorCodeToError(object_error::invalid_file_type);
|
[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 10:18:59 +01:00
|
|
|
case file_magic::minidump:
|
|
|
|
return MinidumpFile::create(Buffer);
|
[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-21 23:00:16 +02:00
|
|
|
case file_magic::tapi_file:
|
2019-08-22 01:30:53 +02:00
|
|
|
return TapiUniversal::create(Buffer);
|
2011-06-25 19:54:50 +02:00
|
|
|
}
|
2013-06-28 11:44:05 +02:00
|
|
|
llvm_unreachable("Unexpected Binary File Type");
|
2011-06-25 19:54:29 +02:00
|
|
|
}
|
|
|
|
|
2016-04-07 00:14:09 +02:00
|
|
|
Expected<OwningBinary<Binary>> object::createBinary(StringRef Path) {
|
2014-07-06 19:43:13 +02:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> FileOrErr =
|
2019-01-10 00:36:32 +01:00
|
|
|
MemoryBuffer::getFileOrSTDIN(Path, /*FileSize=*/-1,
|
|
|
|
/*RequiresNullTerminator=*/false);
|
2014-07-06 19:43:13 +02:00
|
|
|
if (std::error_code EC = FileOrErr.getError())
|
2016-04-07 00:14:09 +02:00
|
|
|
return errorCodeToError(EC);
|
2014-08-19 20:44:46 +02:00
|
|
|
std::unique_ptr<MemoryBuffer> &Buffer = FileOrErr.get();
|
|
|
|
|
2016-04-07 00:14:09 +02:00
|
|
|
Expected<std::unique_ptr<Binary>> BinOrErr =
|
2014-08-19 20:44:46 +02:00
|
|
|
createBinary(Buffer->getMemBufferRef());
|
2016-04-07 00:14:09 +02:00
|
|
|
if (!BinOrErr)
|
|
|
|
return BinOrErr.takeError();
|
2014-08-19 20:44:46 +02:00
|
|
|
std::unique_ptr<Binary> &Bin = BinOrErr.get();
|
|
|
|
|
|
|
|
return OwningBinary<Binary>(std::move(Bin), std::move(Buffer));
|
2011-06-25 19:54:29 +02:00
|
|
|
}
|