29#include "llvm/BinaryFormat/ELF.h"
40namespace ELF = llvm::ELF;
45 return "ELF core dump plug-in.";
57 if (crash_file && !can_connect) {
61 const size_t header_size =
sizeof(llvm::ELF::Elf64_Ehdr);
64 crash_file->
GetPath(), header_size, 0);
65 if (data_sp && data_sp->GetByteSize() == header_size &&
70 if (elf_header.
Parse(data, &data_offset)) {
75 if (elf_header.
e_type == llvm::ELF::ET_CORE)
76 process_sp = std::make_shared<ProcessElfCore>(target_sp, listener_sp,
85 bool plugin_specified_by_name) {
129 last_entry->
data.GetRangeEnd() == range_entry.
data.GetRangeBase() &&
132 last_entry->
data.SetRangeEnd(range_entry.
data.GetRangeEnd());
139 const uint32_t permissions =
140 ((header.
p_flags & llvm::ELF::PF_R) ? lldb::ePermissionsReadable : 0u) |
141 ((header.
p_flags & llvm::ELF::PF_W) ? lldb::ePermissionsWritable : 0u) |
142 ((header.
p_flags & llvm::ELF::PF_X) ? lldb::ePermissionsExecutable : 0u);
175 if (core ==
nullptr) {
180 llvm::ArrayRef<elf::ELFProgramHeader> segments = core->
ProgramHeaders();
181 if (segments.size() == 0) {
201 bool ranges_are_sorted =
true;
212 if (H.p_type == llvm::ELF::PT_NOTE) {
218 if (H.p_type == llvm::ELF::PT_LOAD) {
220 if (vm_addr > last_addr)
221 ranges_are_sorted =
false;
223 }
else if (H.p_type == llvm::ELF::PT_AARCH64_MEMTAG_MTE) {
225 if (tag_addr > last_addr)
226 ranges_are_sorted =
false;
227 tag_addr = last_addr;
231 if (!ranges_are_sorted) {
239 bool siginfo_signal_found =
false;
240 bool prstatus_signal_found =
false;
243 if (!thread_data.siginfo_bytes.empty() || thread_data.signo != 0)
244 siginfo_signal_found =
true;
245 if (thread_data.prstatus_sig != 0)
246 prstatus_signal_found =
true;
248 if (!siginfo_signal_found) {
251 if (prstatus_signal_found) {
253 thread_data.signo = thread_data.prstatus_sig;
267 if (!exe_module_sp) {
272 if (!exe_module_sp) {
277 std::optional<NT_FILE_Entry> exe_header =
280 if (llvm::Expected<lldb::ModuleSP> module_sp_or_err =
283 exe_header->end - exe_header->start))
284 exe_module_sp = *module_sp_or_err;
286 llvm::consumeError(module_sp_or_err.takeError());
290 if (!exe_module_sp) {
294 exe_header ? (exe_header->end - exe_header->start) : 0;
297 exe_module_spec, load_addr, size);
299 exe_module_sp->SetPlatformFileSpec(
317 assert(
m_uuids.count(entry.path) == 0 ||
m_uuids[entry.path] == uuid);
319 LLDB_LOGF(log,
"%s found UUID @ %16.16" PRIx64
": %s \"%s\"",
320 __FUNCTION__, entry.start, uuid.
GetAsString().c_str(),
327 std::set<MemoryRegionInfo, std::less<>> finalized_regions;
331 const lldb::addr_t range_base = region_info.GetRange().GetRangeBase();
332 const lldb::addr_t range_end = region_info.GetRange().GetRangeEnd();
337 return entry.start == range_base;
340 region_info.SetName(file_entry->path.c_str());
344 if (tag_entry && tag_entry->
GetRangeEnd() == range_end)
347 finalized_regions.insert(std::move(region_info));
353 if (file_entry.start >= file_entry.end)
357 std::vector<MemoryRegionInfo::RangeType> uncovered_ranges;
359 const lldb::addr_t range_base = region_info.GetRange().GetRangeBase();
360 const lldb::addr_t range_end = region_info.GetRange().GetRangeEnd();
362 if (range_end <= cursor)
364 if (range_base >= file_entry.end)
367 if (cursor < range_base)
368 uncovered_ranges.emplace_back(cursor, range_base - cursor);
370 cursor = std::max(cursor, range_end);
371 if (cursor >= file_entry.end)
375 if (cursor < file_entry.end)
376 uncovered_ranges.emplace_back(cursor, file_entry.end - cursor);
382 if (!file_entry.path.empty())
383 region_info.
SetName(file_entry.path.c_str());
384 finalized_regions.insert(std::move(region_info));
398 path_style = *guessed_style;
407 std::optional<NT_FILE_Entry> exe_header =
425 std::string execfn_str;
469 if (std::optional<lldb::addr_t> load_addr = spec.
GetLoadAddress()) {
470 if (std::optional<NT_FILE_Entry> nt =
483 LLDB_LOGF(log,
"ProcessElfCore::FindModuleUUID() found UUID for %s: %s",
485 it->second.GetAsString().c_str());
492 llvm::StringRef dyld_name;
495 llvm::Triple::UnknownOS)
510 for (
lldb::tid_t tid = 0; tid < num_threads; ++tid) {
515 return new_thread_list.
GetSize(
false) > 0;
530 addr = abi_sp->FixAnyAddress(addr);
544 [load_addr](
const auto &entry) {
545 return entry.GetRange().Contains(load_addr);
547 if (range_entry != following) {
548 region_info = *range_entry;
556 : following->GetRange().GetRangeBase());
569 if (core_objfile ==
nullptr)
575 if (address_range ==
nullptr || address_range->
GetRangeEnd() < addr) {
577 "core file does not contain 0x%" PRIx64, addr);
585 size_t bytes_to_read = size;
586 size_t bytes_copied = 0;
592 if (file_start == file_end)
597 if (file_end > file_start + offset)
598 bytes_left = file_end - (file_start + offset);
600 if (bytes_to_read > bytes_left)
601 bytes_to_read = bytes_left;
606 core_objfile->
CopyData(offset + file_start, bytes_to_read, buf);
611llvm::Expected<std::vector<lldb::addr_t>>
614 if (core_objfile ==
nullptr)
615 return llvm::createStringError(llvm::inconvertibleErrorCode(),
616 "No core object file.");
618 llvm::Expected<const MemoryTagManager *> tag_manager_or_err =
620 if (!tag_manager_or_err)
621 return tag_manager_or_err.takeError();
631 if (!tag_entry || (addr + len) >= tag_entry->
GetRangeEnd())
632 return llvm::createStringError(llvm::inconvertibleErrorCode(),
633 "No tag segment that covers this range.");
638 return core_objfile->
CopyData(offset, length, dst);
668 int pr_version = data.
GetU32(&offset);
672 LLDB_LOGF(log,
"FreeBSD PRSTATUS unexpected version %d", pr_version);
694 int pr_version = data.
GetU32(&offset);
698 LLDB_LOGF(log,
"FreeBSD PRPSINFO unexpected version %d", pr_version);
711 uint32_t &cpi_siglwp,
715 uint32_t version = data.
GetU32(&offset);
717 return llvm::createStringError(
718 "Error parsing NetBSD core(5) notes: Unsupported procinfo version");
720 uint32_t cpisize = data.
GetU32(&offset);
722 return llvm::createStringError(
723 "Error parsing NetBSD core(5) notes: Unsupported procinfo size");
725 cpi_signo = data.
GetU32(&offset);
732 cpi_pid = data.
GetU32(&offset);
742 cpi_nlwps = data.
GetU32(&offset);
745 cpi_siglwp = data.
GetU32(&offset);
747 return llvm::Error::success();
754 int version = data.
GetU32(&offset);
762llvm::Expected<std::vector<CoreNote>>
765 std::vector<CoreNote> result;
767 while (offset <
segment.GetByteSize()) {
770 return llvm::createStringError(
"unable to parse note segment");
772 size_t note_start = offset;
773 size_t note_size = llvm::alignTo(
note.n_descsz, 4);
779 return std::move(result);
784 bool lp64 = (arch.
GetMachine() == llvm::Triple::aarch64 ||
787 bool have_prstatus =
false;
788 bool have_prpsinfo =
false;
790 for (
const auto &
note : notes) {
791 if (
note.info.n_name !=
"FreeBSD")
794 if ((
note.info.n_type == ELF::NT_PRSTATUS && have_prstatus) ||
795 (
note.info.n_type == ELF::NT_PRPSINFO && have_prpsinfo)) {
800 have_prstatus =
false;
801 have_prpsinfo =
false;
804 switch (
note.info.n_type) {
805 case ELF::NT_PRSTATUS:
806 have_prstatus =
true;
809 case ELF::NT_PRPSINFO:
810 have_prpsinfo =
true;
813 case ELF::NT_FREEBSD_THRMISC: {
815 thread_data.
name =
note.data.GetCStr(&offset, 20);
818 case ELF::NT_FREEBSD_PROCSTAT_AUXV:
827 if (!have_prstatus) {
828 return llvm::createStringError(
829 "Could not find NT_PRSTATUS note in core file.");
832 return llvm::Error::success();
859 bool had_nt_regs =
false;
868 for (
const auto &
note : notes) {
869 llvm::StringRef name =
note.info.n_name;
871 if (name ==
"NetBSD-CORE") {
881 }
else if (name.consume_front(
"NetBSD-CORE@")) {
883 if (name.getAsInteger(10, tid))
884 return llvm::createStringError(
885 "Error parsing NetBSD core(5) notes: Cannot convert LWP ID "
889 case llvm::Triple::aarch64: {
900 thread_data.
tid = tid;
902 return llvm::createStringError(
903 "Could not find general purpose registers note in core file.");
906 if (!had_nt_regs || tid != thread_data.
tid)
907 return llvm::createStringError(
908 "Error parsing NetBSD core(5) notes: Unexpected order "
909 "of NOTEs PT_GETFPREG before PT_GETREG");
913 case llvm::Triple::x86: {
924 thread_data.
tid = tid;
926 return llvm::createStringError(
927 "Could not find general purpose registers note in core file.");
930 if (!had_nt_regs || tid != thread_data.
tid)
931 return llvm::createStringError(
932 "Error parsing NetBSD core(5) notes: Unexpected order "
933 "of NOTEs PT_GETFPREG before PT_GETREG");
937 case llvm::Triple::x86_64: {
948 thread_data.
tid = tid;
950 return llvm::createStringError(
951 "Could not find general purpose registers note in core file.");
954 if (!had_nt_regs || tid != thread_data.
tid)
955 return llvm::createStringError(
956 "Error parsing NetBSD core(5) notes: Unexpected order "
957 "of NOTEs PT_GETFPREG before PT_GETREG");
972 return llvm::createStringError(
973 "Error parsing NetBSD core(5) notes: No threads information "
974 "specified in notes");
977 return llvm::createStringError(
978 "Error parsing NetBSD core(5) notes: Mismatch between the number "
979 "of LWPs in netbsd_elfcore_procinfo and the number of LWPs specified "
992 if (data.tid == siglwp) {
1000 return llvm::createStringError(
1001 "Error parsing NetBSD core(5) notes: Signal passed to unknown LWP");
1004 return llvm::Error::success();
1009 for (
const auto &
note : notes) {
1012 if (!llvm::StringRef(
note.info.n_name).starts_with(
"OpenBSD"))
1015 switch (
note.info.n_type) {
1031 return llvm::createStringError(
1032 "Could not find general purpose registers note in core file.");
1035 return llvm::Error::success();
1052 bool have_prstatus =
false;
1053 bool have_prpsinfo =
false;
1055 for (
const auto &
note : notes) {
1056 if (
note.info.n_name !=
"CORE" &&
note.info.n_name !=
"LINUX")
1059 if ((
note.info.n_type == ELF::NT_PRSTATUS && have_prstatus) ||
1060 (
note.info.n_type == ELF::NT_PRPSINFO && have_prpsinfo)) {
1065 have_prstatus =
false;
1066 have_prpsinfo =
false;
1069 switch (
note.info.n_type) {
1070 case ELF::NT_PRSTATUS: {
1071 have_prstatus =
true;
1079 size_t len =
note.data.GetByteSize() - header_size;
1083 case ELF::NT_PRPSINFO: {
1084 have_prpsinfo =
true;
1092 auto core_arg = llvm::StringRef(prpsinfo.
pr_psargs,
1101 CoreArgs(core_arg, core_arg.size() ==
1105 case ELF::NT_SIGINFO: {
1109 static_cast<const char *
>(
note.data.GetData(&offset, size));
1113 case ELF::NT_FILE: {
1116 const uint64_t count =
note.data.GetAddress(&offset);
1117 note.data.GetAddress(&offset);
1118 for (uint64_t i = 0; i < count; ++i) {
1120 entry.
start =
note.data.GetAddress(&offset);
1121 entry.
end =
note.data.GetAddress(&offset);
1125 for (uint64_t i = 0; i < count; ++i) {
1126 const char *path =
note.data.GetCStr(&offset);
1127 if (path && path[0])
1143 return llvm::Error::success();
1152 assert(segment_header.
p_type == llvm::ELF::PT_NOTE);
1156 return notes_or_error.takeError();
1158 case llvm::Triple::FreeBSD:
1160 case llvm::Triple::Linux:
1162 case llvm::Triple::NetBSD:
1164 case llvm::Triple::OpenBSD:
1170 llvm::Triple::UnknownOS)
1173 return llvm::createStringError(
1174 "don't know how to parse core file: unsupported OS");
1181 const size_t elf_header_size = addr_size == 4 ?
sizeof(llvm::ELF::Elf32_Ehdr)
1182 :
sizeof(llvm::ELF::Elf64_Ehdr);
1184 std::vector<uint8_t> elf_header_bytes;
1185 elf_header_bytes.resize(elf_header_size);
1189 if (byte_read != elf_header_size ||
1191 return invalid_uuid;
1192 DataExtractor elf_header_data(elf_header_bytes.data(), elf_header_size,
1197 elf_header.
Parse(elf_header_data, &offset);
1201 std::vector<uint8_t> ph_bytes;
1204 bool found_first_load_segment =
false;
1205 for (
unsigned int i = 0; i < elf_header.
e_phnum; ++i) {
1214 program_header.
Parse(program_header_data, &offset);
1215 if (program_header.
p_type == llvm::ELF::PT_LOAD &&
1216 !found_first_load_segment) {
1217 base_addr = program_header.
p_vaddr;
1218 found_first_load_segment =
true;
1220 if (program_header.
p_type != llvm::ELF::PT_NOTE)
1223 std::vector<uint8_t> note_bytes;
1224 note_bytes.resize(program_header.
p_memsz);
1231 if (byte_read != program_header.
p_memsz)
1233 DataExtractor segment_data(note_bytes.data(), note_bytes.size(),
1236 if (!notes_or_error) {
1237 llvm::consumeError(notes_or_error.takeError());
1238 return invalid_uuid;
1241 if (
note.info.n_namesz == 4 &&
1242 note.info.n_type == llvm::ELF::NT_GNU_BUILD_ID &&
1243 "GNU" ==
note.info.n_name &&
1244 note.data.ValidOffsetForDataOfSize(0,
note.info.n_descsz))
1245 return UUID(
note.data.GetData().take_front(
note.info.n_descsz));
1248 return invalid_uuid;
1266 if (target_arch.
IsMIPS()) {
1274 assert(
m_auxv.GetByteSize() == 0 ||
1281 return std::nullopt;
1290 bool added_executable =
false;
1292 const bool add_exe_file_as_first_arg =
true;
1295 add_exe_file_as_first_arg);
1296 added_executable =
true;
1302 add_exe_file_as_first_arg);
1303 added_executable =
true;
1308 bool first_arg_is_executable =
true;
1309 if (added_executable) {
1313 first_arg_is_executable =
false;
1317 info.
SetArguments(process_args, first_arg_is_executable);
1322std::optional<ProcessElfCore::NT_FILE_Entry>
1325 if (file_entry.start <= addr && addr < file_entry.end)
1328 return std::nullopt;
1331std::optional<ProcessElfCore::NT_FILE_Entry>
1346 return std::nullopt;
1352 if (std::optional<uint64_t> opt_value =
1354 if (std::optional<NT_FILE_Entry> nt =
1360 if (std::optional<uint64_t> opt_value =
1362 if (std::optional<NT_FILE_Entry> nt =
1366 return std::nullopt;
static llvm::raw_ostream & error(Stream &strm)
static llvm::raw_ostream & note(Stream &strm)
#define LLDB_LOGF(log,...)
#define LLDB_PLUGIN_DEFINE(PluginName)
static FileSpec CreateFileSpecFromPath(llvm::StringRef path)
Correctly create a FileSpec from a path found in a core file.
static void ParseOpenBSDProcInfo(ThreadData &thread_data, const DataExtractor &data)
static void ParseFreeBSDPrPsInfo(ProcessElfCore &process, const DataExtractor &data, bool lp64)
static void ParseFreeBSDPrStatus(ThreadData &thread_data, const DataExtractor &data, bool lp64)
static llvm::Error ParseNetBSDProcInfo(const DataExtractor &data, uint32_t &cpi_nlwps, uint32_t &cpi_signo, uint32_t &cpi_siglwp, uint32_t &cpi_pid)
@ AUXV_AT_EXECFN
Filename of executable.
@ AUXV_AT_PHDR
Program headers.
@ AUXV_AT_ENTRY
Program entry point.
std::optional< uint64_t > GetAuxValue(enum EntryType entry_type) const
static llvm::StringRef GetPluginNameStatic()
static llvm::StringRef GetPluginNameStatic()
Generic COFF object file reader.
lldb_private::DataExtractor GetSegmentData(const elf::ELFProgramHeader &H)
llvm::ArrayRef< elf::ELFProgramHeader > ProgramHeaders()
std::vector< NT_FILE_Entry > m_nt_file_entries
std::optional< NT_FILE_Entry > GetNTFileEntryForExecutableELFHeader()
Intelligently find the NT_FILE entry for the executable's ELF header.
std::set< lldb_private::MemoryRegionInfo, std::less<> > m_core_range_infos
lldb::addr_t GetImageInfoAddress() override
Get the image information address for the current process.
lldb::addr_t AddAddressRangeFromMemoryTagSegment(const elf::ELFProgramHeader &header)
lldb_private::DataExtractor m_auxv
bool FindModuleUUID(lldb_private::ModuleSpec &spec) override
Given a module spec, try to find the UUID information.
llvm::Error parseLinuxNotes(llvm::ArrayRef< lldb_private::CoreNote > notes)
A description of a linux process usually contains the following NOTE entries:
llvm::Error ParseThreadContextsFromNoteSegment(const elf::ELFProgramHeader &segment_header, const lldb_private::DataExtractor &segment_data)
Parse Thread context from PT_NOTE segment and store it in the thread list A note segment consists of ...
void UpdateBuildIdForNTFileEntries()
std::vector< ThreadData > m_thread_data
lldb_private::Range< lldb::addr_t, lldb::addr_t > FileRange
bool DoUpdateThreadList(lldb_private::ThreadList &old_thread_list, lldb_private::ThreadList &new_thread_list) override
Update the thread list following process plug-in's specific logic.
size_t ReadMemory(lldb::addr_t addr, void *buf, size_t size, lldb_private::Status &error) override
Read of memory from a process.
static llvm::StringRef GetPluginDescriptionStatic()
std::unordered_map< std::string, lldb_private::UUID > m_uuids
llvm::Expected< std::vector< lldb_private::CoreNote > > parseSegment(const lldb_private::DataExtractor &segment)
lldb::addr_t AddAddressRangeFromLoadSegment(const elf::ELFProgramHeader &header)
~ProcessElfCore() override
bool GetMainExecutableModuleSpec(lldb_private::ModuleSpec &exe_spec)
llvm::Error parseFreeBSDNotes(llvm::ArrayRef< lldb_private::CoreNote > notes)
lldb_private::UUID FindBuidIdInCoreMemory(lldb::addr_t address)
VMRangeToFileOffset m_core_aranges
lldb_private::Status DoGetMemoryRegionInfo(lldb::addr_t load_addr, lldb_private::MemoryRegionInfo ®ion_info) override
DoGetMemoryRegionInfo is called by GetMemoryRegionInfo after it has removed non address bits from loa...
Process::CoreArgs m_process_args
size_t DoReadMemory(lldb::addr_t addr, void *buf, size_t size, lldb_private::Status &error) override
Actually do the reading of memory from a process.
VMRangeToFileOffset m_core_tag_ranges
llvm::Error parseNetBSDNotes(llvm::ArrayRef< lldb_private::CoreNote > notes)
NetBSD specific Thread context from PT_NOTE segment.
lldb_private::Status DoLoadCore() override
ProcessElfCore(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp, const lldb_private::FileSpec &core_file)
lldb_private::DynamicLoader * GetDynamicLoader() override
Get the dynamic loader plug-in for this process.
llvm::Expected< std::vector< lldb::addr_t > > ReadMemoryTags(lldb::addr_t addr, size_t len) override
Read memory tags for the range addr to addr+len.
lldb_private::DataExtractor GetAuxvData() override
bool IsAlive() override
Check if a process is still alive.
uint32_t GetNumThreadContexts()
std::string m_executable_name
static lldb::ProcessSP CreateInstance(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp, const lldb_private::FileSpec *crash_file_path, bool can_connect)
llvm::Error parseOpenBSDNotes(llvm::ArrayRef< lldb_private::CoreNote > notes)
void RefreshStateAfterStop() override
Currently called as part of ShouldStop.
lldb_private::ArchSpec GetArchitecture()
bool CanDebug(lldb::TargetSP target_sp, bool plugin_specified_by_name) override
Check if a plug-in instance can debug the file in module.
std::optional< Process::CoreArgs > GetCoreFileArgs() override
Provide arguments of a command that triggered a core dump.
bool GetProcessInfo(lldb_private::ProcessInstanceInfo &info) override
static llvm::StringRef GetPluginNameStatic()
void FinalizeMemoryRegionInfos()
lldb::ModuleSP m_core_module_sp
std::optional< NT_FILE_Entry > GetNTFileEntryContainingAddress(lldb::addr_t addr)
Find the NT_FILE entry that contains an address.
lldb_private::Status DoDestroy() override
A section + offset based address class.
lldb::addr_t GetLoadAddress(Target *target) const
Get the load address.
bool IsValid() const
Check if the object state is valid.
An architecture specification class.
void MergeFrom(const ArchSpec &other)
Merges fields from another ArchSpec into this ArchSpec.
bool IsMIPS() const
if MIPS architecture return true.
llvm::Triple::ArchType GetMachine() const
Returns a machine family for the current architecture.
A command line argument class.
void DeleteArgumentAtIndex(size_t idx)
Deletes the argument value at index if idx is a valid argument index.
const char * GetArgumentAtIndex(size_t idx) const
Gets the NULL terminated C string argument pointer for the argument at index idx.
A plug-in interface definition class for dynamic loaders.
static DynamicLoader * FindPlugin(Process *process, llvm::StringRef plugin_name)
Find a dynamic loader plugin for a given process.
static std::optional< Style > GuessPathStyle(llvm::StringRef absolute_path)
Attempt to guess path style for a given path string.
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
llvm::sys::path::Style Style
static FileSystem & Instance()
std::shared_ptr< DataBuffer > CreateDataBuffer(const llvm::Twine &path, uint64_t size=0, uint64_t offset=0)
Create memory buffer from path.
void SetReadable(LazyBool val)
MemoryRegionInfo & SetMemoryTagged(LazyBool val)
void SetName(const char *name)
Range< lldb::addr_t, lldb::addr_t > RangeType
void SetLLDBPermissions(uint32_t permissions)
void SetMapped(LazyBool val)
void SetExecutable(LazyBool val)
void SetWritable(LazyBool val)
virtual llvm::Expected< std::vector< lldb::addr_t > > UnpackTagsFromCoreFileSegment(CoreReaderFn reader, lldb::addr_t tag_segment_virtual_address, lldb::addr_t tag_segment_data_address, lldb::addr_t addr, size_t len) const =0
static Status GetSharedModule(const ModuleSpec &module_spec, lldb::ModuleSP &module_sp, llvm::SmallVectorImpl< lldb::ModuleSP > *old_modules, bool *did_create_ptr, bool invoke_locate_callback=true, bool invoke_symbol_locators=true)
void SetLoadAddress(lldb::addr_t addr)
Set the load address of a module in process memory.
FileSpec & GetPlatformFileSpec()
ArchSpec & GetArchitecture()
void SetTarget(lldb::TargetSP target)
Set the target to be used when resolving a module.
std::optional< lldb::addr_t > GetLoadAddress() const
Get the load address of a module in process memory.
static lldb::ModuleSP CreateModuleFromObjectFile(Args &&...args)
A plug-in interface definition class for object file parsers.
virtual lldb_private::Address GetImageInfoAddress(Target *target)
Similar to Process::GetImageInfoAddress().
@ eTypeCoreFile
A core file that has a checkpoint of a program's execution state.
size_t CopyData(lldb::offset_t offset, size_t length, void *dst) const
static bool RegisterPlugin(llvm::StringRef name, llvm::StringRef description, ABICreateInstance create_callback)
static bool UnregisterPlugin(ABICreateInstance create_callback)
PostMortemProcess(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp, const FileSpec &core_file)
void SetExecutableFile(const FileSpec &exe_file, bool add_exe_file_as_first_arg)
void SetArchitecture(const ArchSpec &arch)
void SetArg0(llvm::StringRef arg)
void SetArguments(const Args &args, bool first_arg_is_executable)
void SetProcessID(lldb::pid_t pid)
lldb::pid_t GetID() const
Returns the pid of the process or LLDB_INVALID_PROCESS_ID if there is no known pid.
void SetUnixSignals(lldb::UnixSignalsSP &&signals_sp)
size_t ReadCStringFromMemory(lldb::addr_t vm_addr, char *cstr, size_t cstr_max_len, Status &error)
Read a NULL terminated C string from memory.
void SetCanJIT(bool can_jit)
Sets whether executing JIT-compiled code in this process is possible.
lldb::DynamicLoaderUP m_dyld_up
llvm::Expected< const MemoryTagManager * > GetMemoryTagManager()
If this architecture and process supports memory tagging, return a tag manager that can be used to ma...
lldb::ByteOrder GetByteOrder() const
llvm::Expected< lldb::ModuleSP > ReadModuleFromMemory(const FileSpec &file_spec, lldb::addr_t header_addr, size_t size_to_read=512)
Creates and populates a module using an in-memory object file.
void SetID(lldb::pid_t new_pid)
Sets the stored pid.
uint32_t GetAddressByteSize() const
virtual void Finalize(bool destructing)
This object is about to be destroyed, do any necessary cleanup.
ThreadList m_thread_list
The threads for this process as the user will see them.
const lldb::UnixSignalsSP & GetUnixSignals()
const lldb::ABISP & GetABI()
Target & GetTarget()
Get the target object pointer for this module.
RangeData< lldb::addr_t, lldb::addr_t, FileRange > Entry
llvm::Error ToError() const
FIXME: Replace all uses with takeError() instead.
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
static Status FromErrorString(const char *str)
bool Fail() const
Test for error condition.
static Status FromError(llvm::Error error)
Avoid using this in new code. Migrate APIs to llvm::Expected instead.
lldb::ModuleSP GetOrCreateModule(const ModuleSpec &module_spec, bool notify, Status *error_ptr=nullptr)
Find a binary on the system and return its Module, or return an existing Module that is already in th...
bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform=false, bool merge=true)
Set the architecture for this target.
lldb::ModuleSP GetExecutableModule()
Gets the module for the main executable.
const ArchSpec & GetArchitecture() const
void SetExecutableModule(lldb::ModuleSP &module_sp, LoadDependentFiles load_dependent_files=eLoadDependentsDefault)
Set the main executable module.
void AddThread(const lldb::ThreadSP &thread_sp)
uint32_t GetSize(bool can_update=true)
Represents UUID's of various sizes.
std::string GetAsString(llvm::StringRef separator="-") const
static lldb::UnixSignalsSP Create(const ArchSpec &arch)
#define LLDB_INVALID_ADDRESS
@ NT_PROCINFO_CPI_SIGIGNORE_SIZE
@ NT_PROCINFO_CPI_NAME_SIZE
@ NT_PROCINFO_CPI_RUID_SIZE
@ NT_PROCINFO_CPI_SVUID_SIZE
@ NT_PROCINFO_CPI_SIGCODE_SIZE
@ NT_PROCINFO_CPI_SVGID_SIZE
@ NT_PROCINFO_CPI_EUID_SIZE
@ NT_PROCINFO_CPI_PPID_SIZE
@ NT_PROCINFO_CPI_RGID_SIZE
@ NT_PROCINFO_CPI_SIGCATCH_SIZE
@ NT_PROCINFO_CPI_SIGMASK_SIZE
@ NT_PROCINFO_CPI_SID_SIZE
@ NT_PROCINFO_CPI_SIGPEND_SIZE
@ NT_PROCINFO_CPI_EGID_SIZE
@ NT_PROCINFO_CPI_PGRP_SIZE
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
std::shared_ptr< lldb_private::ABI > ABISP
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::Process > ProcessSP
std::shared_ptr< lldb_private::Listener > ListenerSP
std::shared_ptr< lldb_private::Target > TargetSP
std::shared_ptr< lldb_private::Module > ModuleSP
lldb_private::Status Parse(const lldb_private::DataExtractor &data, const lldb_private::ArchSpec &arch)
static size_t GetSize(const lldb_private::ArchSpec &arch)
lldb_private::Status Parse(const lldb_private::DataExtractor &data, const lldb_private::ArchSpec &arch)
llvm::StringRef siginfo_bytes
lldb_private::DataExtractor gpregset
std::vector< lldb_private::CoreNote > notes
BaseType GetRangeBase() const
void SetRangeEnd(BaseType end)
SizeType GetByteSize() const
void SetRangeBase(BaseType b)
Set the start value for the range, and keep the same size.
BaseType GetRangeEnd() const