-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[lldb][AIX] Added XCOFF Object File Header for AIX #111814
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 8 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
08c9d5a
Taking base file structure from ELF as reference
DhruvSrivastavaX d05a2c3
Modified code for XOCFF
DhruvSrivastavaX 9533686
clang-format changes
DhruvSrivastavaX 3471f16
Added basic support for ObjectFileXCOFF
DhruvSrivastavaX c8ce1ad
clang-format
DhruvSrivastavaX 751c2ca
Review comment changes
DhruvSrivastavaX e86d9b6
blunder
DhruvSrivastavaX 16d6044
endianness fix
DhruvSrivastavaX 9b29513
SetByteOrder(eByteOrderBig)
DhruvSrivastavaX File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
add_lldb_library(lldbPluginObjectFileXCOFF PLUGIN | ||
ObjectFileXCOFF.cpp | ||
|
||
LINK_LIBS | ||
lldbCore | ||
lldbHost | ||
lldbSymbol | ||
lldbTarget | ||
LINK_COMPONENTS | ||
BinaryFormat | ||
Object | ||
Support | ||
) |
193 changes: 193 additions & 0 deletions
193
lldb/source/Plugins/ObjectFile/XCOFF/ObjectFileXCOFF.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,193 @@ | ||
//===-- ObjectFileXCOFF.cpp | ||
//-------------------------------------------------===// | ||
// | ||
// 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#include "ObjectFileXCOFF.h" | ||
|
||
#include <algorithm> | ||
#include <cassert> | ||
#include <cstring> | ||
#include <unordered_map> | ||
|
||
#include "lldb/Core/Module.h" | ||
#include "lldb/Core/ModuleSpec.h" | ||
#include "lldb/Core/PluginManager.h" | ||
#include "lldb/Core/Progress.h" | ||
#include "lldb/Core/Section.h" | ||
#include "lldb/Host/FileSystem.h" | ||
#include "lldb/Symbol/SymbolContext.h" | ||
#include "lldb/Target/Process.h" | ||
#include "lldb/Target/Target.h" | ||
#include "lldb/Utility/ArchSpec.h" | ||
#include "lldb/Utility/DataBufferHeap.h" | ||
#include "lldb/Utility/FileSpecList.h" | ||
#include "lldb/Utility/LLDBLog.h" | ||
#include "lldb/Utility/Log.h" | ||
#include "lldb/Utility/RangeMap.h" | ||
#include "lldb/Utility/Status.h" | ||
#include "lldb/Utility/Stream.h" | ||
#include "llvm/ADT/StringRef.h" | ||
#include "llvm/BinaryFormat/XCOFF.h" | ||
#include "llvm/Object/XCOFFObjectFile.h" | ||
#include "llvm/Support/MemoryBuffer.h" | ||
|
||
using namespace llvm; | ||
using namespace lldb; | ||
using namespace lldb_private; | ||
|
||
LLDB_PLUGIN_DEFINE(ObjectFileXCOFF) | ||
|
||
// FIXME: target 64bit at this moment. | ||
|
||
// Static methods. | ||
void ObjectFileXCOFF::Initialize() { | ||
PluginManager::RegisterPlugin(GetPluginNameStatic(), | ||
GetPluginDescriptionStatic(), CreateInstance, | ||
CreateMemoryInstance, GetModuleSpecifications); | ||
} | ||
|
||
void ObjectFileXCOFF::Terminate() { | ||
PluginManager::UnregisterPlugin(CreateInstance); | ||
} | ||
|
||
ObjectFile *ObjectFileXCOFF::CreateInstance(const lldb::ModuleSP &module_sp, | ||
DataBufferSP data_sp, | ||
lldb::offset_t data_offset, | ||
const lldb_private::FileSpec *file, | ||
lldb::offset_t file_offset, | ||
lldb::offset_t length) { | ||
if (!data_sp) { | ||
data_sp = MapFileData(*file, length, file_offset); | ||
if (!data_sp) | ||
return nullptr; | ||
data_offset = 0; | ||
} | ||
if (!ObjectFileXCOFF::MagicBytesMatch(data_sp, data_offset, length)) | ||
return nullptr; | ||
// Update the data to contain the entire file if it doesn't already | ||
if (data_sp->GetByteSize() < length) { | ||
data_sp = MapFileData(*file, length, file_offset); | ||
if (!data_sp) | ||
return nullptr; | ||
data_offset = 0; | ||
} | ||
auto objfile_up = std::make_unique<ObjectFileXCOFF>( | ||
module_sp, data_sp, data_offset, file, file_offset, length); | ||
if (!objfile_up) | ||
return nullptr; | ||
|
||
return objfile_up.release(); | ||
} | ||
|
||
ObjectFile *ObjectFileXCOFF::CreateMemoryInstance( | ||
const lldb::ModuleSP &module_sp, WritableDataBufferSP data_sp, | ||
const lldb::ProcessSP &process_sp, lldb::addr_t header_addr) { | ||
return nullptr; | ||
} | ||
|
||
size_t ObjectFileXCOFF::GetModuleSpecifications( | ||
const lldb_private::FileSpec &file, lldb::DataBufferSP &data_sp, | ||
lldb::offset_t data_offset, lldb::offset_t file_offset, | ||
lldb::offset_t length, lldb_private::ModuleSpecList &specs) { | ||
const size_t initial_count = specs.GetSize(); | ||
|
||
if (ObjectFileXCOFF::MagicBytesMatch(data_sp, 0, data_sp->GetByteSize())) { | ||
ArchSpec arch_spec = | ||
ArchSpec(eArchTypeXCOFF, XCOFF::TCPU_PPC64, LLDB_INVALID_CPUTYPE); | ||
ModuleSpec spec(file, arch_spec); | ||
spec.GetArchitecture().SetArchitecture(eArchTypeXCOFF, XCOFF::TCPU_PPC64, | ||
LLDB_INVALID_CPUTYPE, | ||
llvm::Triple::AIX); | ||
specs.Append(spec); | ||
} | ||
return specs.GetSize() - initial_count; | ||
} | ||
|
||
static uint32_t XCOFFHeaderSizeFromMagic(uint32_t magic) { | ||
switch (magic) { | ||
/* TODO: 32bit not supported yet | ||
case XCOFF::XCOFF32: | ||
return sizeof(struct llvm::object::XCOFFFileHeader32); | ||
*/ | ||
|
||
case XCOFF::XCOFF64: | ||
return sizeof(struct llvm::object::XCOFFFileHeader64); | ||
break; | ||
|
||
default: | ||
break; | ||
} | ||
return 0; | ||
} | ||
|
||
bool ObjectFileXCOFF::MagicBytesMatch(DataBufferSP &data_sp, | ||
lldb::addr_t data_offset, | ||
lldb::addr_t data_length) { | ||
lldb_private::DataExtractor data; | ||
data.SetData(data_sp, data_offset, data_length); | ||
lldb::offset_t offset = 0; | ||
uint16_t magic = data.GetU16(&offset); | ||
if (magic == 0xF701) | ||
magic = 0x01F7; /* Since AIX is big endian, and the host checking platform | ||
might be little endian. */ | ||
DhruvSrivastavaX marked this conversation as resolved.
Show resolved
Hide resolved
|
||
return XCOFFHeaderSizeFromMagic(magic) != 0; | ||
} | ||
|
||
bool ObjectFileXCOFF::ParseHeader() { return false; } | ||
|
||
ByteOrder ObjectFileXCOFF::GetByteOrder() const { return eByteOrderBig; } | ||
|
||
bool ObjectFileXCOFF::IsExecutable() const { return true; } | ||
|
||
uint32_t ObjectFileXCOFF::GetAddressByteSize() const { return 8; } | ||
|
||
void ObjectFileXCOFF::ParseSymtab(Symtab &lldb_symtab) {} | ||
|
||
bool ObjectFileXCOFF::IsStripped() { return false; } | ||
|
||
void ObjectFileXCOFF::CreateSections(SectionList &unified_section_list) {} | ||
|
||
void ObjectFileXCOFF::Dump(Stream *s) {} | ||
|
||
ArchSpec ObjectFileXCOFF::GetArchitecture() { | ||
ArchSpec arch_spec = | ||
ArchSpec(eArchTypeXCOFF, XCOFF::TCPU_PPC64, LLDB_INVALID_CPUTYPE); | ||
return arch_spec; | ||
} | ||
|
||
UUID ObjectFileXCOFF::GetUUID() { return UUID(); } | ||
|
||
uint32_t ObjectFileXCOFF::GetDependentModules(FileSpecList &files) { return 0; } | ||
|
||
ObjectFile::Type ObjectFileXCOFF::CalculateType() { return eTypeExecutable; } | ||
|
||
ObjectFile::Strata ObjectFileXCOFF::CalculateStrata() { return eStrataUnknown; } | ||
|
||
lldb::WritableDataBufferSP | ||
ObjectFileXCOFF::MapFileDataWritable(const FileSpec &file, uint64_t Size, | ||
uint64_t Offset) { | ||
return FileSystem::Instance().CreateWritableDataBuffer(file.GetPath(), Size, | ||
Offset); | ||
} | ||
|
||
ObjectFileXCOFF::ObjectFileXCOFF(const lldb::ModuleSP &module_sp, | ||
DataBufferSP data_sp, | ||
lldb::offset_t data_offset, | ||
const FileSpec *file, | ||
lldb::offset_t file_offset, | ||
lldb::offset_t length) | ||
: ObjectFile(module_sp, file, file_offset, length, data_sp, data_offset) { | ||
if (file) | ||
m_file = *file; | ||
} | ||
|
||
ObjectFileXCOFF::ObjectFileXCOFF(const lldb::ModuleSP &module_sp, | ||
DataBufferSP header_data_sp, | ||
const lldb::ProcessSP &process_sp, | ||
addr_t header_addr) | ||
: ObjectFile(module_sp, process_sp, header_addr, header_data_sp) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
//===-- ObjectFileXCOFF.h --------------------------------------- -*- C++ | ||
//-*-===// | ||
// | ||
// 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef LLDB_SOURCE_PLUGINS_OBJECTFILE_XCOFF_OBJECTFILEXCOFF_H | ||
#define LLDB_SOURCE_PLUGINS_OBJECTFILE_XCOFF_OBJECTFILEXCOFF_H | ||
|
||
#include <cstdint> | ||
|
||
#include <vector> | ||
|
||
#include "lldb/Symbol/ObjectFile.h" | ||
#include "lldb/Utility/ArchSpec.h" | ||
#include "lldb/Utility/FileSpec.h" | ||
#include "lldb/Utility/UUID.h" | ||
#include "lldb/lldb-private.h" | ||
#include "llvm/Object/XCOFFObjectFile.h" | ||
|
||
/// \class ObjectFileXCOFF | ||
/// Generic XCOFF object file reader. | ||
/// | ||
/// This class provides a generic XCOFF (32/64 bit) reader plugin implementing | ||
/// the ObjectFile protocol. | ||
class ObjectFileXCOFF : public lldb_private::ObjectFile { | ||
public: | ||
// Static Functions | ||
static void Initialize(); | ||
|
||
static void Terminate(); | ||
|
||
static llvm::StringRef GetPluginNameStatic() { return "xcoff"; } | ||
|
||
static llvm::StringRef GetPluginDescriptionStatic() { | ||
return "XCOFF object file reader."; | ||
} | ||
|
||
static lldb_private::ObjectFile * | ||
CreateInstance(const lldb::ModuleSP &module_sp, lldb::DataBufferSP data_sp, | ||
lldb::offset_t data_offset, const lldb_private::FileSpec *file, | ||
lldb::offset_t file_offset, lldb::offset_t length); | ||
|
||
static lldb_private::ObjectFile *CreateMemoryInstance( | ||
const lldb::ModuleSP &module_sp, lldb::WritableDataBufferSP data_sp, | ||
const lldb::ProcessSP &process_sp, lldb::addr_t header_addr); | ||
|
||
static size_t GetModuleSpecifications(const lldb_private::FileSpec &file, | ||
lldb::DataBufferSP &data_sp, | ||
lldb::offset_t data_offset, | ||
lldb::offset_t file_offset, | ||
lldb::offset_t length, | ||
lldb_private::ModuleSpecList &specs); | ||
|
||
static bool MagicBytesMatch(lldb::DataBufferSP &data_sp, lldb::addr_t offset, | ||
lldb::addr_t length); | ||
|
||
// PluginInterface protocol | ||
llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } | ||
|
||
// ObjectFile Protocol. | ||
bool ParseHeader() override; | ||
|
||
lldb::ByteOrder GetByteOrder() const override; | ||
|
||
bool IsExecutable() const override; | ||
|
||
uint32_t GetAddressByteSize() const override; | ||
|
||
void ParseSymtab(lldb_private::Symtab &symtab) override; | ||
|
||
bool IsStripped() override; | ||
|
||
void CreateSections(lldb_private::SectionList &unified_section_list) override; | ||
|
||
void Dump(lldb_private::Stream *s) override; | ||
|
||
lldb_private::ArchSpec GetArchitecture() override; | ||
|
||
lldb_private::UUID GetUUID() override; | ||
|
||
uint32_t GetDependentModules(lldb_private::FileSpecList &files) override; | ||
|
||
ObjectFile::Type CalculateType() override; | ||
|
||
ObjectFile::Strata CalculateStrata() override; | ||
|
||
ObjectFileXCOFF(const lldb::ModuleSP &module_sp, lldb::DataBufferSP data_sp, | ||
lldb::offset_t data_offset, | ||
const lldb_private::FileSpec *file, lldb::offset_t offset, | ||
lldb::offset_t length); | ||
|
||
ObjectFileXCOFF(const lldb::ModuleSP &module_sp, | ||
lldb::DataBufferSP header_data_sp, | ||
const lldb::ProcessSP &process_sp, lldb::addr_t header_addr); | ||
|
||
protected: | ||
static lldb::WritableDataBufferSP | ||
MapFileDataWritable(const lldb_private::FileSpec &file, uint64_t Size, | ||
uint64_t Offset); | ||
}; | ||
|
||
#endif // LLDB_SOURCE_PLUGINS_OBJECTFILE_XCOFF_OBJECTFILE_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# RUN: yaml2obj %s -o %t | ||
# RUN: lldb-test object-file %t | FileCheck %s | ||
|
||
# CHECK: Plugin name: xcoff | ||
# CHECK: Architecture: powerpc64-ibm-aix | ||
# CHECK: Executable: true | ||
# CHECK: Stripped: false | ||
# CHECK: Type: executable | ||
# CHECK: Strata: unknown | ||
|
||
--- !XCOFF | ||
FileHeader: | ||
MagicNumber: 0x1F7 | ||
NumberOfSections: 1 | ||
CreationTime: 000000000 | ||
Flags: 0x0000 | ||
Sections: | ||
- Name: .text | ||
Address: 0x100000438 | ||
Size: 0x38 | ||
FileOffsetToData: 0x0 | ||
FileOffsetToLineNumbers: 0x0 | ||
NumberOfLineNumbers: 0x0 | ||
Flags: [ STYP_TEXT ] | ||
SectionData: E8C20000E94204 | ||
StringTable: {} | ||
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.