14#include "llvm/ADT/ScopeExit.h"
15#include "llvm/Support/ScopedPrinter.h"
16#include "llvm/Support/Threading.h"
85using namespace std::chrono;
91 if (inserted || previous->second == action)
99 :
public Cloneable<ProcessOptionValueProperties, OptionValueProperties> {
115 if (
this != instance_properties)
127 "Continue tracing the parent process and detach the child.",
132 "Trace the child process and detach the parent.",
138#define LLDB_PROPERTIES_process
139#include "TargetProperties.inc"
142#define LLDB_PROPERTIES_process
143#include "TargetPropertiesEnum.inc"
146#define LLDB_PROPERTIES_process_experimental
147#include "TargetProperties.inc"
150#define LLDB_PROPERTIES_process_experimental
151#include "TargetPropertiesEnum.inc"
155 :
public Cloneable<ProcessExperimentalOptionValueProperties,
156 OptionValueProperties> {
172 if (process ==
nullptr) {
174 m_collection_sp = std::make_shared<ProcessOptionValueProperties>(
"process");
180 ePropertyMemCacheLineSize);
184 "thread",
"Settings specific to threads.",
true,
188 std::make_unique<ProcessExperimentalProperties>();
191 "Experimental settings - setting these won't produce "
192 "errors if the setting is not present.",
198 ePropertyPythonOSPluginPath,
199 [
this] {
m_process->LoadOperatingSystemPlugin(
true); });
201 ePropertyDisableLangRuntimeUnwindPlans,
209 const uint32_t idx = ePropertyDisableMemCache;
211 idx, g_process_properties[idx].default_uint_value != 0);
216 const uint32_t idx = ePropertyVerifyMemoryReads;
218 idx, g_process_properties[idx].default_uint_value != 0);
223 const uint32_t idx = ePropertyMemCacheLineSize;
225 idx, g_process_properties[idx].default_uint_value);
230 const uint32_t idx = ePropertyExtraStartCommand;
236 const uint32_t idx = ePropertyExtraStartCommand;
241 const uint32_t idx = ePropertyPythonOSPluginPath;
246 const uint32_t idx = ePropertyVirtualAddressableBits;
248 idx, g_process_properties[idx].default_uint_value);
252 const uint32_t idx = ePropertyVirtualAddressableBits;
257 const uint32_t idx = ePropertyHighmemVirtualAddressableBits;
259 idx, g_process_properties[idx].default_uint_value);
263 const uint32_t idx = ePropertyHighmemVirtualAddressableBits;
268 const uint32_t idx = ePropertyPythonOSPluginPath;
273 const uint32_t idx = ePropertyIgnoreBreakpointsInExpressions;
275 idx, g_process_properties[idx].default_uint_value != 0);
279 const uint32_t idx = ePropertyIgnoreBreakpointsInExpressions;
284 const uint32_t idx = ePropertyUnwindOnErrorInExpressions;
286 idx, g_process_properties[idx].default_uint_value != 0);
290 const uint32_t idx = ePropertyUnwindOnErrorInExpressions;
295 const uint32_t idx = ePropertyStopOnSharedLibraryEvents;
297 idx, g_process_properties[idx].default_uint_value != 0);
301 const uint32_t idx = ePropertyStopOnSharedLibraryEvents;
306 const uint32_t idx = ePropertyDisableLangRuntimeUnwindPlans;
308 idx, g_process_properties[idx].default_uint_value != 0);
312 const uint32_t idx = ePropertyDisableLangRuntimeUnwindPlans;
320 for (
auto thread_sp :
m_process->Threads()) {
321 thread_sp->ClearStackFrames();
322 thread_sp->DiscardThreadPlans(
true);
327 const uint32_t idx = ePropertyDetachKeepsStopped;
329 idx, g_process_properties[idx].default_uint_value != 0);
333 const uint32_t idx = ePropertyDetachKeepsStopped;
338 const uint32_t idx = ePropertyWarningOptimization;
340 idx, g_process_properties[idx].default_uint_value != 0);
344 const uint32_t idx = ePropertyWarningUnsupportedLanguage;
346 idx, g_process_properties[idx].default_uint_value != 0);
350 const uint32_t idx = ePropertyStopOnExec;
352 idx, g_process_properties[idx].default_uint_value != 0);
356 const uint32_t idx = ePropertyUseDelayedBreakpoints;
358 idx, g_process_properties[idx].default_uint_value != 0);
362 const uint32_t idx = ePropertyUtilityExpressionTimeout;
364 idx, g_process_properties[idx].default_uint_value);
365 return std::chrono::seconds(value);
369 const uint32_t idx = ePropertyInterruptTimeout;
371 idx, g_process_properties[idx].default_uint_value);
372 return std::chrono::seconds(value);
376 const uint32_t idx = ePropertySteppingRunsAllThreads;
378 idx, g_process_properties[idx].default_uint_value != 0);
383 const uint32_t idx = ePropertyAlwaysRunThreadNames;
396 const bool fail_value =
true;
402 .value_or(fail_value);
407 exp_values->SetPropertyAtIndex(ePropertyOSPluginReportsAllThreads,
412 const uint32_t idx = ePropertyFollowForkMode;
415 g_process_properties[idx].default_uint_value));
419 const uint32_t idx = ePropertyTrackMemoryCacheChanges;
421 idx, g_process_properties[idx].default_uint_value != 0);
425 llvm::StringRef plugin_name,
429 static std::atomic<uint32_t> g_process_unique_id{0};
433 if (!plugin_name.empty()) {
436 if (create_callback) {
437 process_sp = create_callback(target_sp, listener_sp, crash_file_path,
440 if (process_sp->CanDebug(target_sp,
true)) {
441 process_sp->m_process_unique_id = ++g_process_unique_id;
448 process_sp = create_callback(target_sp, listener_sp, crash_file_path,
451 if (process_sp->CanDebug(target_sp,
false)) {
452 process_sp->m_process_unique_id = ++g_process_unique_id;
463 static constexpr llvm::StringLiteral class_name(
"lldb.process");
476 Broadcaster((target_sp->GetDebugger().GetBroadcasterManager()),
480 "lldb.process.internal_state_broadcaster"),
482 nullptr,
"lldb.process.internal_state_control_broadcaster"),
484 Listener::MakeListener(
"lldb.process.internal_state_listener")),
510 LLDB_LOGF(log,
"%p Process::Process()",
static_cast<void *
>(
this));
548 uint64_t platform_cache_line_size =
549 target_sp->GetPlatform()->GetDefaultMemoryCacheLineSize();
550 if (!value_sp->OptionWasSet() && platform_cache_line_size != 0)
551 value_sp->SetValueAs(platform_cache_line_size);
561 LLDB_LOGF(log,
"%p Process::~Process()",
static_cast<void *
>(
this));
575 return *g_settings_ptr;
610 std::vector<Notifications> empty_notifications;
643 if (pos->baton == callbacks.
baton &&
654 std::vector<Notifications>::iterator notification_pos,
657 notification_pos != notification_end; ++notification_pos) {
658 if (notification_pos->process_state_changed)
659 notification_pos->process_state_changed(notification_pos->baton,
this,
678 std::chrono::seconds(0)) &&
692 auto Result =
m_iohandler_sync.WaitForValueNotEqualTo(iohandler_id, timeout);
698 "waited from m_iohandler_sync to change from {0}. New value is {1}.",
699 iohandler_id, *Result);
701 LLDB_LOG(log,
"timed out waiting for m_iohandler_sync to change from {0}.",
714 event_sp_ptr->reset();
722 LLDB_LOG(log,
"timeout = {0}", timeout);
727 "Process::%s returning without waiting for events; process "
728 "private and public states are already 'stopped'.",
732 if (hijack_listener_sp && use_run_lock)
740 if (event_sp_ptr && event_sp)
741 *event_sp_ptr = event_sp;
743 bool pop_process_io_handler = (hijack_listener_sp.get() !=
nullptr);
745 event_sp, stream, select_most_relevant, pop_process_io_handler);
754 if (hijack_listener_sp && use_run_lock)
763 if (hijack_listener_sp && use_run_lock)
777 bool &pop_process_io_handler) {
778 const bool handle_pop = pop_process_io_handler;
780 pop_process_io_handler =
false;
792 switch (event_state) {
800 stream->
Printf(
"Process %" PRIu64
" %s\n", process_sp->GetID(),
803 pop_process_io_handler =
true;
813 process_sp->GetStatus(*stream);
814 pop_process_io_handler =
true;
825 if (num_reasons > 0) {
828 if (num_reasons == 1) {
832 stream->
Printf(
"Process %" PRIu64
" stopped and restarted: %s\n",
834 reason ? reason :
"<UNKNOWN REASON>");
836 stream->
Printf(
"Process %" PRIu64
837 " stopped and restarted, reasons:\n",
838 process_sp->GetID());
840 for (
size_t i = 0; i < num_reasons; i++) {
844 stream->
Printf(
"\t%s\n", reason ? reason :
"<UNKNOWN REASON>");
854 ThreadList &thread_list = process_sp->GetThreadList();
855 std::lock_guard<std::recursive_mutex> guard(thread_list.
GetMutex());
859 if (curr_thread && curr_thread->IsValid())
860 curr_thread_stop_info_sp = curr_thread->GetStopInfo();
861 bool prefer_curr_thread = curr_thread_stop_info_sp &&
862 curr_thread_stop_info_sp->ShouldSelect();
864 if (!prefer_curr_thread) {
872 if (!stop_info || !stop_info->ShouldSelect())
874 StopReason thread_stop_reason = stop_info->GetStopReason();
877 plan_thread = thread;
878 }
else if (!other_thread) {
879 other_thread = thread;
884 else if (other_thread)
888 if (curr_thread && curr_thread->IsValid())
889 thread = curr_thread;
903 Debugger &debugger = process_sp->GetTarget().GetDebugger();
905 &process_sp->GetTarget()) {
906 ThreadSP thread_sp = process_sp->GetThreadList().GetSelectedThread();
908 if (!thread_sp || !thread_sp->IsValid())
911 const bool only_threads_with_stop_reason =
true;
912 const uint32_t start_frame =
913 thread_sp->GetSelectedFrameIndex(select_most_relevant);
914 const uint32_t num_frames = 1;
915 const uint32_t num_frames_with_source = 1;
916 const bool stop_format =
true;
918 process_sp->GetStatus(*stream);
919 process_sp->GetThreadStatus(*stream, only_threads_with_stop_reason,
920 start_frame, num_frames,
921 num_frames_with_source,
923 if (curr_thread_stop_info_sp) {
926 curr_thread_stop_info_sp, &crashing_address);
929 ValueObject::GetExpressionPathFormat::
930 eGetExpressionPathFormatHonorPointers;
932 valobj_sp->GetExpressionPath(*stream, format);
933 stream->
Printf(
" accessed 0x%" PRIx64
"\n", crashing_address);
938 process_sp->GetTarget().shared_from_this());
940 stream->
Printf(
"Target %d: (", target_idx);
942 stream->
PutCString(
"Target <unknown index>: (");
949 pop_process_io_handler =
true;
954 if (handle_pop && pop_process_io_handler)
955 process_sp->PopProcessIOHandler();
974 LLDB_LOG(log,
"timeout = {0}, event_sp)...", timeout);
981 if (listener_sp->GetEventForBroadcasterWithType(
987 LLDB_LOG(log,
"got no event or was interrupted.");
990 LLDB_LOG(log,
"timeout = {0}, event_sp) => {1}", timeout, state);
997 LLDB_LOGF(log,
"Process::%s...", __FUNCTION__);
1003 LLDB_LOGF(log,
"Process::%s (event_ptr) => %s", __FUNCTION__,
1006 LLDB_LOGF(log,
"Process::%s no events found", __FUNCTION__);
1014 LLDB_LOG(log,
"timeout = {0}, event_sp)...", timeout);
1024 LLDB_LOG(log,
"timeout = {0}, event_sp) => {1}", timeout,
1031 bool control_only) {
1033 LLDB_LOG(log,
"timeout = {0}, event_sp)...", timeout);
1066 LLDB_LOG(log,
"(plugin = {0} status = {1} ({1:x8}), description=\"{2}\")",
1073 "(plugin = {0}) ignoring exit status because state was already set "
1085 if (
ModuleSP mod = target_sp->GetExecutableModule())
1086 module_uuid = mod->GetUUID();
1093 info->
exit_desc = {status, exit_string.str()};
1103 if (!exit_string.empty())
1149 bool clear_unused_threads =
true;
1152 std::lock_guard<std::recursive_mutex> guard(
m_thread_list.GetMutex());
1172 size_t num_old_threads = old_thread_list.
GetSize(
false);
1173 for (
size_t i = 0; i < num_old_threads; ++i)
1206 new_thread_list = real_thread_list;
1246 bool internal,
bool condense_trivial,
1247 bool skip_unreported_plans) {
1249 strm, tid, desc_level, internal, condense_trivial, skip_unreported_plans);
1252 bool internal,
bool condense_trivial,
1253 bool skip_unreported_plans) {
1254 m_thread_plans.DumpPlans(strm, desc_level, internal, condense_trivial,
1255 skip_unreported_plans);
1288 auto [iterator, inserted] =
1293 return iterator->second;
1317 if (new_state_is_stopped) {
1328 LLDB_LOGF(log,
"(plugin = %s, state = %s, restarted = %i)",
1339 "(plugin = %s, state = %s) -- unlocking run lock for detach",
1344 if ((old_state_is_stopped != new_state_is_stopped)) {
1345 if (new_state_is_stopped && !restarted) {
1346 LLDB_LOGF(log,
"(plugin = %s, state = %s) -- unlocking run lock",
1359 LLDB_LOGF(log,
"(plugin = %s) -- SetRunning failed, not resuming.",
1362 "resume request failed - process already running");
1365 if (!
error.Success()) {
1374 LLDB_LOGF(log,
"Process::ResumeSynchronous -- locking run lock");
1376 LLDB_LOGF(log,
"Process::Resume: -- SetRunning failed, not resuming.");
1378 "resume request failed: process already running");
1386 if (
error.Success()) {
1390 const bool must_be_alive =
1394 "process not in stopped state after synchronous resume: %s",
1410 if (!hijacking_name.starts_with(
"lldb.internal"))
1439 bool state_changed =
false;
1444 std::lock_guard<std::recursive_mutex> thread_guard(
m_thread_list.GetMutex());
1448 state_changed = old_state != new_state;
1452 if (old_state_is_stopped != new_state_is_stopped) {
1453 if (new_state_is_stopped)
1459 if (state_changed) {
1480 if (!
m_mod_id.IsLastResumeForUserExpression())
1481 m_mod_id.SetStopEventForLastNaturalStopID(event_sp);
1484 LLDB_LOGF(log,
"(plugin = %s, state = %s, stop_id = %u",
1491 LLDB_LOGF(log,
"(plugin = %s, state = %s) state didn't change. Ignoring...",
1497 m_mod_id.SetRunningUserExpression(on);
1501 m_mod_id.SetRunningUtilityFunction(on);
1513 std::vector<LanguageRuntime *> language_runtimes;
1516 return language_runtimes;
1526 language_runtimes.emplace_back(runtime);
1529 return language_runtimes;
1539 LanguageRuntimeCollection::iterator pos;
1546 runtime = runtime_sp.get();
1548 runtime = pos->second.get();
1574 if (runtime->CouldHaveDynamicValue(in_value))
1604 if (
error.Success())
1619 "invalid breakpoint site ID: %" PRIu64, break_id);
1627 bool forbid_delay) {
1635 "eager breakpoint requested, but failed to flush breakpoints: {0}");
1637 auto site_sp = site.shared_from_this();
1642 return llvm::Error::success();
1646 return llvm::Error::success();
1659 llvm_unreachable(
"Unhandled BreakpointAction");
1671 "invalid breakpoint site ID: %" PRIu64, break_id);
1711 llvm_unreachable(
"unhandled process state");
1737 "warning: failed to resolve indirect function at 0x%" PRIx64
1738 " for breakpoint %i.%i: %s\n",
1740 constituent.
GetID(),
1741 error.AsCString() ?
error.AsCString() :
"unknown error");
1747 Address resolved_address(load_addr);
1771 llvm::Error
error = llvm::Error::success();
1772 for (
auto [site, action] : site_to_action) {
1783 bool use_hardware) {
1793 bp_site_sp->AddConstituent(constituent);
1794 constituent->SetBreakpointSite(bp_site_sp);
1795 return bp_site_sp->GetID();
1801 bool bp_from_address =
1802 constituent->GetBreakpoint().GetResolver()->GetResolverTy() ==
1804 bool forbid_delay = use_hardware || bp_from_address;
1808 if (
error.Success()) {
1809 constituent->SetBreakpointSite(bp_site_sp);
1816 "warning: failed to set breakpoint site at 0x%" PRIx64
1817 " for breakpoint %i.%i: %s\n",
1818 load_addr, constituent->GetBreakpoint().GetID(), constituent->GetID(),
1819 error.AsCString() ?
error.AsCString() :
"unknown error");
1827 uint32_t num_constituents =
1828 bp_site_sp->RemoveConstituent(constituent_id, constituent_loc_id);
1829 if (num_constituents == 0) {
1839 uint8_t *buf)
const {
1845 bp_sites_in_range.
ForEach([bp_addr, size,
1849 size_t intersect_size;
1850 size_t opcode_offset;
1852 &intersect_size, &opcode_offset)) {
1853 assert(bp_addr <= intersect_addr && intersect_addr < bp_addr + size);
1854 assert(bp_addr < intersect_addr + intersect_size &&
1855 intersect_addr + intersect_size <= bp_addr + size);
1856 assert(opcode_offset + intersect_size <= bp_site->GetByteSize());
1857 size_t buf_offset = intersect_addr - bp_addr;
1858 ::memcpy(buf + buf_offset,
1868 if (!data_buffer_sp || data_buffer_sp->GetByteSize() == 0)
1872 data_buffer_sp->GetBytes());
1879 return platform_sp->GetSoftwareBreakpointTrapOpcode(
GetTarget(), bp_site);
1885 assert(bp_site !=
nullptr);
1889 log,
"Process::EnableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64,
1890 bp_site->
GetID(), (uint64_t)bp_addr);
1894 "Process::EnableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64
1895 " -- already enabled",
1896 bp_site->
GetID(), (uint64_t)bp_addr);
1902 "BreakpointSite contains an invalid load address.");
1909 if (bp_opcode_size == 0) {
1911 "Process::GetSoftwareBreakpointTrapOpcode() "
1912 "returned zero, unable to get breakpoint "
1913 "trap for address 0x%" PRIx64,
1918 if (bp_opcode_bytes ==
nullptr) {
1920 "BreakpointSite doesn't contain a valid breakpoint trap opcode.");
1926 error) == bp_opcode_size) {
1930 uint8_t verify_bp_opcode_bytes[64];
1931 if (
DoReadMemory(bp_addr, verify_bp_opcode_bytes, bp_opcode_size,
1932 error) == bp_opcode_size) {
1933 if (::memcmp(bp_opcode_bytes, verify_bp_opcode_bytes,
1934 bp_opcode_size) == 0) {
1938 "Process::EnableSoftwareBreakpoint (site_id = %d) "
1939 "addr = 0x%" PRIx64
" -- SUCCESS",
1940 bp_site->
GetID(), (uint64_t)bp_addr);
1943 "failed to verify the breakpoint trap in memory.");
1946 "Unable to read memory to verify breakpoint trap.");
1949 "Unable to write breakpoint trap to memory.");
1952 "Unable to read memory at breakpoint address.");
1954 if (log &&
error.Fail())
1957 "Process::EnableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64
1959 bp_site->
GetID(), (uint64_t)bp_addr,
error.AsCString());
1965 assert(bp_site !=
nullptr);
1970 "Process::DisableSoftwareBreakpoint (breakID = %" PRIu64
1971 ") addr = 0x%" PRIx64,
1972 breakID, (uint64_t)bp_addr);
1978 const size_t break_op_size = bp_site->
GetByteSize();
1980 if (break_op_size > 0) {
1982 uint8_t curr_break_op[8];
1983 assert(break_op_size <=
sizeof(curr_break_op));
1984 bool break_op_found =
false;
1989 bool verify =
false;
1991 if (::memcmp(curr_break_op, break_op, break_op_size) == 0) {
1992 break_op_found =
true;
1996 break_op_size,
error) == break_op_size) {
2000 "Memory write failed when restoring original opcode.");
2003 "Original breakpoint trap is no longer in memory.");
2010 uint8_t verify_opcode[8];
2011 assert(break_op_size <
sizeof(verify_opcode));
2017 break_op_size) == 0) {
2021 "Process::DisableSoftwareBreakpoint (site_id = %d) "
2022 "addr = 0x%" PRIx64
" -- SUCCESS",
2023 bp_site->
GetID(), (uint64_t)bp_addr);
2028 "Failed to restore original opcode.");
2033 "breakpoint trap was restored.");
2037 "Unable to read memory that should contain the breakpoint trap.");
2042 "Process::DisableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64
2043 " -- already disabled",
2044 bp_site->
GetID(), (uint64_t)bp_addr);
2050 "Process::DisableSoftwareBreakpoint (site_id = %d) addr = 0x%" PRIx64
2052 bp_site->
GetID(), (uint64_t)bp_addr,
error.AsCString());
2058 size_t cache_bytes_read,
size_t size,
2059 const Status &cache_error) {
2062 const bool truncated = cache_error.
Fail();
2064 std::vector<uint8_t> verify_buf(size, 0);
2067 addr, verify_buf.data(), verify_buf.size(), verify_error);
2068 const size_t comparable = std::min(cache_bytes_read, verify_bytes_read);
2070 const char *mismatch =
nullptr;
2071 if (!truncated && cache_bytes_read != verify_bytes_read)
2072 mismatch =
"byte count";
2073 else if (memcmp(cache_buf, verify_buf.data(), comparable) != 0)
2074 mismatch =
"contents";
2075 else if (!truncated && cache_error.
Success() != verify_error.
Success())
2076 mismatch =
"status";
2082 "memory cache verification failed on {0}: read of {1} bytes at "
2083 "{2:x} returned {3} bytes ({4}) from the cache and {5} bytes ({6}) "
2085 mismatch, size, addr, cache_bytes_read, cache_error,
2086 verify_bytes_read, verify_error);
2087 assert(
false &&
"memory cache returned something the process did not");
2097 llvm::Expected<AddressSpaceInfo> info =
2108 addr = abi_sp->FixAnyAddress(addr);
2121llvm::SmallVector<llvm::MutableArrayRef<uint8_t>>
2123 llvm::MutableArrayRef<uint8_t> buffer) {
2124 llvm::SmallVector<Range<lldb::addr_t, size_t>> fixed_ranges;
2125 fixed_ranges.reserve(ranges.size());
2127 fixed_ranges.emplace_back(
FixAnyAddress(range.GetRangeBase()),
2128 range.GetByteSize());
2132 llvm::SmallVector<llvm::MutableArrayRef<uint8_t>> results =
2136 for (
auto [range, result] : llvm::zip(fixed_ranges, results)) {
2137 if (!result.empty()) {
2140 range.GetByteSize(),
error);
2148llvm::SmallVector<llvm::MutableArrayRef<uint8_t>>
2150 llvm::MutableArrayRef<uint8_t> buffer) {
2151 auto total_ranges_len = llvm::sum_of(
2152 llvm::map_range(ranges, [](
auto range) {
return range.size; }));
2156 assert(buffer.size() >= total_ranges_len &&
2157 "Process::DoReadMemoryRanges: provided buffer is too short");
2158 if (buffer.size() < total_ranges_len) {
2159 llvm::MutableArrayRef<uint8_t> empty;
2160 return {ranges.size(), empty};
2163 llvm::SmallVector<llvm::MutableArrayRef<uint8_t>> results;
2167 for (
auto [addr, range_len] : ranges) {
2169 size_t num_bytes_read =
2176 assert(num_bytes_read <= range_len &&
"read more than requested bytes");
2177 if (num_bytes_read > range_len) {
2180 results.emplace_back();
2184 results.push_back(buffer.take_front(num_bytes_read));
2186 buffer = buffer.drop_front(num_bytes_read);
2193 const uint8_t *buf,
size_t size,
2195 size_t max_matches) {
2197 assert(buf !=
nullptr);
2199 assert(alignment > 0);
2200 assert(max_matches > 0);
2203 assert(start_addr < end_addr);
2205 lldb::addr_t start = llvm::alignTo(start_addr, alignment);
2206 while (matches.size() < max_matches && (start + size) < end_addr) {
2211 if (found_addr % alignment) {
2214 start = llvm::alignTo(start + 1, alignment);
2218 matches.emplace_back(found_addr, size);
2219 start = found_addr + alignment;
2225 size_t alignment,
size_t max_matches,
2228 if (buf ==
nullptr) {
2236 if (ranges.empty()) {
2240 if (alignment == 0) {
2244 if (max_matches == 0) {
2249 int resolved_ranges = 0;
2251 for (
size_t i = 0; i < ranges.size(); ++i) {
2252 if (matches.size() >= max_matches)
2265 DoFindInMemory(start_addr, end_addr, buf, size, matches, alignment,
2269 if (resolved_ranges > 0)
2280 if (buf ==
nullptr) {
2292 if (alignment == 0) {
2307 DoFindInMemory(start_addr, end_addr, buf, size, matches, alignment, 1);
2308 if (matches.empty())
2312 return matches[0].GetBaseAddress().GetLoadAddress(&target);
2315llvm::SmallVector<std::optional<std::string>>
2317 llvm::SmallVector<std::optional<std::string>> output_strs(addresses.size(),
2319 llvm::SmallVector<Range<addr_t, size_t>> ranges{
2320 llvm::map_range(addresses, [=](
addr_t ptr) {
2325 uint64_t num_completed_strings = 0;
2327 while (num_completed_strings != addresses.size()) {
2328 llvm::SmallVector<llvm::MutableArrayRef<uint8_t>> read_results =
2334 for (
auto [range, read_result, output_str] :
2335 llvm::zip(ranges, read_results, output_strs)) {
2337 if (range.GetByteSize() == 0)
2341 if (read_result.empty()) {
2342 output_str = std::nullopt;
2343 range.SetByteSize(0);
2344 num_completed_strings++;
2349 auto read_result_str = llvm::toStringRef(read_result);
2351 const char *null_terminator_pos = llvm::find(read_result_str,
'\0');
2352 output_str->append(read_result_str.begin(), null_terminator_pos);
2355 if (null_terminator_pos != read_result_str.end()) {
2356 range.SetByteSize(0);
2357 num_completed_strings++;
2361 range.SetRangeBase(range.GetRangeBase() + read_result.size());
2378 out_str.append(buf, length);
2381 if (length ==
sizeof(buf) - 1)
2382 curr_addr += length;
2386 return out_str.size();
2394 size_t total_cstr_len = 0;
2395 if (dst && dst_max_len) {
2396 result_error.
Clear();
2398 memset(dst, 0, dst_max_len);
2400 const size_t cache_line_size =
m_memory_cache.GetMemoryCacheLineSize();
2401 size_t bytes_left = dst_max_len - 1;
2402 char *curr_dst = dst;
2404 while (bytes_left > 0) {
2405 addr_t cache_line_bytes_left =
2406 cache_line_size - (curr_addr % cache_line_size);
2408 std::min<addr_t>(bytes_left, cache_line_bytes_left);
2410 size_t bytes_read =
ReadMemory(curr_addr, curr_dst, bytes_to_read,
error);
2412 if (bytes_read == 0) {
2413 result_error = std::move(
error);
2414 dst[total_cstr_len] =
'\0';
2417 const size_t len = strlen(curr_dst);
2419 total_cstr_len += len;
2421 if (len < bytes_to_read)
2424 curr_dst += bytes_read;
2425 curr_addr += bytes_read;
2426 bytes_left -= bytes_read;
2432 result_error.
Clear();
2434 return total_cstr_len;
2442 addr = abi_sp->FixAnyAddress(addr);
2444 if (buf ==
nullptr || size == 0)
2447 size_t bytes_read = 0;
2448 uint8_t *bytes = (uint8_t *)buf;
2450 while (bytes_read < size) {
2451 const size_t curr_size = size - bytes_read;
2452 const size_t curr_bytes_read =
2454 bytes_read += curr_bytes_read;
2455 if (curr_bytes_read == curr_size || curr_bytes_read == 0)
2471 if (chunk_size == 0)
2483 uint64_t bytes_remaining = size;
2484 uint64_t bytes_read = 0;
2486 while (bytes_remaining > 0) {
2489 const lldb::addr_t bytes_to_read = std::min(bytes_remaining, chunk_size);
2490 const lldb::addr_t current_addr = vm_addr + bytes_read;
2494 bytes_read += bytes_read_for_chunk;
2497 if (bytes_read_for_chunk > bytes_remaining)
2500 bytes_remaining -= bytes_read_for_chunk;
2502 if (callback(
error, current_addr, buf, bytes_read_for_chunk) ==
2511 size_t integer_byte_size,
2512 uint64_t fail_value,
2521llvm::SmallVector<std::optional<uint64_t>>
2523 unsigned integer_byte_size) {
2524 if (addresses.empty())
2528 if (!llvm::is_contained({1u, 2u, 4u, 8u}, integer_byte_size))
2529 return llvm::SmallVector<std::optional<uint64_t>>(addresses.size(),
2532 llvm::SmallVector<Range<addr_t, size_t>> ranges{
2533 llvm::map_range(addresses, [=](
addr_t ptr) {
2537 std::vector<uint8_t> buffer(integer_byte_size * addresses.size(), 0);
2538 llvm::SmallVector<llvm::MutableArrayRef<uint8_t>> memory =
2541 llvm::SmallVector<std::optional<uint64_t>> result;
2542 result.reserve(addresses.size());
2546 for (llvm::MutableArrayRef<uint8_t> range : memory) {
2547 if (range.size() != integer_byte_size) {
2548 result.push_back(std::nullopt);
2552 DataExtractor data(range.data(), integer_byte_size, byte_order, addr_size);
2554 result.push_back(data.
GetMaxU64(&offset, integer_byte_size));
2555 assert(offset == integer_byte_size);
2561 size_t integer_byte_size,
2577 "a successful read always yields an integer");
2581 return error.ToError();
2582 return llvm::createStringError(
2583 "failed to read pointer from memory at 0x%" PRIx64, vm_addr);
2586llvm::SmallVector<std::optional<addr_t>>
2596 if (addr_byte_size <= 4)
2597 scalar = (uint32_t)ptr_value;
2606 size_t bytes_written = 0;
2607 const uint8_t *bytes = (
const uint8_t *)buf;
2609 while (bytes_written < size) {
2610 const size_t curr_size = size - bytes_written;
2612 addr + bytes_written, bytes + bytes_written, curr_size,
error);
2613 bytes_written += curr_bytes_written;
2614 if (curr_bytes_written == curr_size || curr_bytes_written == 0)
2617 return bytes_written;
2623 addr = abi_sp->FixAnyAddress(addr);
2627 if (buf ==
nullptr || size == 0)
2641 const uint8_t *ubuf = (
const uint8_t *)buf;
2642 uint64_t bytes_written = 0;
2644 bp_sites_in_range.
ForEach([
this, addr, size, &bytes_written, &ubuf,
2653 size_t intersect_size;
2654 size_t opcode_offset;
2656 addr, size, &intersect_addr, &intersect_size, &opcode_offset);
2659 assert(addr <= intersect_addr && intersect_addr < addr + size);
2660 assert(addr < intersect_addr + intersect_size &&
2661 intersect_addr + intersect_size <= addr + size);
2662 assert(opcode_offset + intersect_size <= bp->GetByteSize());
2665 const addr_t curr_addr = addr + bytes_written;
2666 if (intersect_addr > curr_addr) {
2669 size_t curr_size = intersect_addr - curr_addr;
2670 size_t curr_bytes_written =
2672 bytes_written += curr_bytes_written;
2673 if (curr_bytes_written != curr_size) {
2677 if (
error.Success())
2685 bytes_written += intersect_size;
2689 if (bytes_written < size)
2692 size - bytes_written,
error);
2694 return bytes_written;
2701 if (byte_size > 0) {
2703 const size_t mem_size =
2716 bool is_signed,
Scalar &scalar,
2719 if (byte_size == 0) {
2721 }
else if (byte_size & (byte_size - 1)) {
2723 "byte size %u is not a power of 2", byte_size);
2724 }
else if (byte_size <=
sizeof(uval)) {
2726 if (bytes_read == byte_size) {
2731 scalar = data.
GetMaxU32(&offset, byte_size);
2733 scalar = data.
GetMaxU64(&offset, byte_size);
2742 "byte size of %u is too large for integer scalar type", byte_size);
2749 for (
const auto &
Entry : entries) {
2752 if (!
error.Success())
2762 "cannot allocate memory while process is running");
2770 return alloced_addr;
2776 if (
error.Success()) {
2777 std::string buffer(size, 0);
2789 8, ePermissionsReadable | ePermissionsWritable | ePermissionsExecutable,
2795 "Process::%s pid %" PRIu64
2796 " allocation test passed, CanJIT () is true",
2797 __FUNCTION__,
GetID());
2801 "Process::%s pid %" PRIu64
2802 " allocation test failed, CanJIT () is false: %s",
2826 "deallocation of memory at 0x%" PRIx64
" failed.", (uint64_t)ptr);
2833 return *subclass_override;
2835 bool reported_after =
true;
2838 return reported_after;
2841 if (triple.isMIPS() || triple.isPPC64() || triple.isRISCV() ||
2842 triple.isAArch64() || triple.isArmMClass() || triple.isARM() ||
2843 triple.isLoongArch())
2844 reported_after =
false;
2846 return reported_after;
2849llvm::Expected<ModuleSP>
2853 "Process::ReadModuleFromMemory reading %s binary from memory",
2857 return llvm::createStringError(
"failed to allocate module");
2860 std::unique_ptr<Progress> progress_up;
2865 progress_up = std::make_unique<Progress>(
"Reading binary from memory",
2868 if (module_sp->GetMemoryObjectFile(shared_from_this(), header_addr,
error,
2872 return error.takeError();
2876 uint32_t &permissions) {
2880 if (!
error.Success())
2938 LaunchPrivate(launch_info, state_after_launch, first_stop_event_sp);
2967 if (launch_info.
GetFlags().
Test(eLaunchFlagStopAtEntry))
3026 std::string local_exec_file_path = exe_spec_to_use.
GetPath();
3028 local_exec_file_path.c_str());
3031 const bool restarted =
false;
3041 const char *error_string =
error.AsCString();
3042 if (error_string ==
nullptr)
3043 error_string =
"launch failed";
3098 "Unexpected process state after the launch: %s, expected %s, "
3108 if (
error.Success()) {
3151 LLDB_LOGF(log,
"Process::Halt() failed to stop, state is: %s",
3154 "Did not get stopped event after loading the core file.");
3195 uint32_t exec_count)
3200 "Process::AttachCompletionHandler::%s process=%p, exec_count=%" PRIu32,
3201 __FUNCTION__,
static_cast<void *
>(process), exec_count);
3210 "Process::AttachCompletionHandler::%s called with state %s (%d)",
3234 "Process::AttachCompletionHandler::%s state %s: reduced "
3235 "remaining exec count to %" PRIu32
", requesting resume",
3242 "Process::AttachCompletionHandler::%s state %s: no more "
3243 "execs expected to start, continuing with attach",
3286 bool wait_for_launch) {
3308 sizeof(process_name))) {
3311 if (wait_for_launch) {
3313 if (
error.Success()) {
3321 if (
error.AsCString() ==
nullptr)
3335 "could not start private state thread.");
3348 platform_sp->FindProcesses(match_info, process_infos);
3349 const uint32_t num_matches = process_infos.size();
3350 if (num_matches == 1) {
3351 attach_pid = process_infos[0].GetProcessID();
3355 process_name,
sizeof(process_name));
3356 if (num_matches > 1) {
3359 for (
size_t i = 0; i < num_matches; i++) {
3360 process_infos[i].DumpAsTableRow(
3361 s, platform_sp->GetUserIDResolver(),
true,
false);
3364 "more than one process named %s:\n%s", process_name,
3368 "could not find a process named %s", process_name);
3372 "invalid platform, can't find processes by name");
3383 if (
error.Success()) {
3388 if (
error.Success()) {
3398 "could not start private state thread.");
3404 const char *error_string =
error.AsCString();
3405 if (error_string ==
nullptr)
3406 error_string =
"attach failed";
3417 LLDB_LOGF(log,
"Process::%s()", __FUNCTION__);
3426 "Process::{0} replacing process architecture with DidAttach() "
3427 "architecture: \"{1}\"",
3428 __FUNCTION__, process_arch.
GetTriple().getTriple());
3436 assert(platform_sp);
3440 if (target_arch.
IsValid() && !platform_sp->IsCompatibleArchitecture(
3441 target_arch, process_host_arch,
3445 target_arch, process_host_arch, &platform_arch);
3450 "switching platform to {0} and architecture to {1} based on "
3452 platform_sp->GetName(), platform_arch.
GetTriple().getTriple());
3454 }
else if (!process_arch.
IsValid()) {
3464 "Process::%s switching architecture to %s based on info "
3465 "the platform retrieved for pid %" PRIu64,
3466 __FUNCTION__, process_arch.
GetTriple().getTriple().c_str(),
3485 "after DynamicLoader::DidAttach(), target "
3486 "executable is {0} (using {1} plugin)",
3487 exe_module_sp ? exe_module_sp->GetFileSpec() :
FileSpec(),
3495 if (system_runtime) {
3500 "after SystemRuntime::DidAttach(), target "
3501 "executable is {0} (using {1} plugin)",
3502 exe_module_sp ? exe_module_sp->GetFileSpec() :
FileSpec(),
3523 if (module_sp && module_sp->IsExecutable()) {
3524 if (
GetTarget().GetExecutableModulePointer() != module_sp.get())
3525 new_executable_module_sp = module_sp;
3529 if (new_executable_module_sp) {
3536 "Process::%s after looping through modules, target executable is %s",
3538 exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str()
3558 if (
error.Success()) {
3601 "Process::PrivateResume() m_stop_id = %u, public state: %s "
3602 "private state: %s",
3611 if (!
GetModID().IsLastResumeForUserExpression())
3616 if (
error.Success()) {
3626 LLDB_LOGF(log,
"Process::PrivateResume WillResume direction=%d",
3631 "Process::PrivateResume PreResumeActions failed, not resuming.");
3634 "Process::PrivateResume PreResumeActions failed, not resuming.");
3639 "Failed to update some delayed breakpoints: {0}");
3641 if (
error.Success()) {
3645 "Process::PrivateResume thinks the process has resumed.");
3647 LLDB_LOGF(log,
"Process::PrivateResume() DoResume failed.");
3657 "Process::PrivateResume() asked to simulate a start & stop.");
3663 LLDB_LOGF(log,
"Process::PrivateResume() got an error \"%s\".",
3664 error.AsCString(
"<unknown error>"));
3699 halt_listener_sp,
nullptr,
3700 use_run_lock, select_most_relevant);
3715 const uint8_t *buf,
size_t size) {
3716 const size_t region_size = high - low;
3718 if (region_size < size)
3722 std::vector<size_t> bad_char_heuristic(256, size);
3723 for (
size_t idx = 0; idx < size - 1; idx++) {
3724 decltype(bad_char_heuristic)::size_type bcu_idx = buf[idx];
3725 bad_char_heuristic[bcu_idx] = size - idx - 1;
3729 llvm::SmallVector<uint8_t, 0> mem;
3734 const size_t max_read_size = std::max<size_t>(size, 0x10000);
3736 for (
addr_t cur_addr = low; cur_addr <= (high - size);) {
3737 if (cur_addr + size > mem_pos + mem.size()) {
3743 mem.resize_for_overwrite(max_read_size);
3746 std::min<addr_t>(mem.size(), high - cur_addr),
3749 if (size > mem.size()) {
3759 int64_t j = size - 1;
3760 while (j >= 0 && buf[j] == mem[cur_addr + j - mem_pos])
3764 cur_addr += bad_char_heuristic[mem[cur_addr + size - 1 - mem_pos]];
3778 LLDB_LOGF(log,
"Process::%s() About to stop.", __FUNCTION__);
3788 &exit_event_sp,
true, listener_sp);
3798 LLDB_LOGF(log,
"Process::%s() Process exited while waiting to stop.",
3802 exit_event_sp.reset();
3805 LLDB_LOGF(log,
"Process::%s() failed to stop, state is: %s", __FUNCTION__,
3813 "Attempt to stop the target in order to detach timed out. "
3829 if (
error.Success()) {
3832 if (!
error.Success()) {
3835 }
else if (exit_event_sp) {
3849 "Failed to update some delayed breakpoints during detach: {0}");
3852 if (
error.Success()) {
3863 if (exit_event_sp) {
3898 bool keep_stopped =
false;
3905 if (
error.Success()) {
3922 "Failed to update some delayed breakpoints during destroy: {0}");
3926 if (
error.Success()) {
3945 if (exit_event_sp) {
3965 if (
error.Success()) {
3967 if (
error.Success())
3974 assert(signals_sp &&
"null signals_sp");
3994 bool return_value =
true;
4012 return_value =
true;
4016 return_value =
false;
4028 return_value =
true;
4034 return_value =
false;
4047 return_value =
true;
4050 return_value =
false;
4069 "Process::ShouldBroadcastEvent (%p) stopped due to an "
4070 "interrupt, state: %s",
4075 return_value =
true;
4078 bool should_resume =
false;
4090 "Process::ShouldBroadcastEvent: should_resume: %i state: "
4091 "%s was_restarted: %i report_stop_vote: %d.",
4095 switch (report_stop_vote) {
4097 return_value =
true;
4101 return_value =
false;
4105 if (!was_restarted) {
4107 "Process::ShouldBroadcastEvent (%p) Restarting process "
4114 return_value =
true;
4137 "Process::ShouldBroadcastEvent (%p) => new state: %s, last "
4138 "broadcast state: %s - %s",
4141 return_value ?
"YES" :
"NO");
4142 return return_value;
4146 llvm::Expected<HostThread> private_state_thread =
4151 if (!private_state_thread) {
4153 "failed to launch host thread: {0}");
4157 assert(private_state_thread->IsJoinable());
4177 std::shared_ptr<PrivateStateThread> *backup_ptr) {
4181 LLDB_LOGF(log,
"Process::%s()%s ", __FUNCTION__,
4182 already_running ?
" already running"
4183 :
" starting private state thread");
4185 if (backup_ptr ==
nullptr && already_running)
4190 char thread_name[1024];
4191 uint32_t max_len = llvm::get_max_thread_name_length();
4192 if (max_len > 0 && max_len <= 30) {
4195 if (already_running)
4196 snprintf(thread_name,
sizeof(thread_name),
"intern-state-OV");
4198 snprintf(thread_name,
sizeof(thread_name),
"intern-state");
4200 if (already_running)
4201 snprintf(thread_name,
sizeof(thread_name),
4202 "<lldb.process.internal-state-override(pid=%" PRIu64
")>",
4205 snprintf(thread_name,
sizeof(thread_name),
4206 "<lldb.process.internal-state(pid=%" PRIu64
")>",
GetID());
4215 PrivateStateThread::Purpose::RunningExpression));
4220 if (run_lock_is_running)
4246 "Went to stop the private state thread, but it was already invalid.");
4257 LLDB_LOGF(log,
"Process::%s (signal = %d)", __FUNCTION__, signal);
4266 LLDB_LOGF(log,
"Sending control event of type: %d.", signal);
4267 std::shared_ptr<EventDataReceipt> event_receipt_sp(
new EventDataReceipt());
4272 bool receipt_received =
false;
4274 while (!receipt_received) {
4279 if (!receipt_received) {
4294 "Private state thread already dead, no need to signal it to stop.");
4299 if (thread !=
nullptr)
4321 LLDB_LOGF(log,
"Ran next event action, result was %d.", action_result);
4323 switch (action_result) {
4349 if (should_broadcast) {
4352 "Process::%s (pid = %" PRIu64
4353 ") broadcasting new state %s (old state %s) to %s",
4361 if (!
GetTarget().GetDebugger().IsForwardingEvents() &&
4366 LLDB_LOGF(log,
"Process::%s updated m_iohandler_sync to %d",
4400 if (is_hijacked || !
GetTarget().GetDebugger().IsHandlingEvents())
4409 "Process::%s (pid = %" PRIu64
4410 ") suppressing state %s (old state %s): should_broadcast == false",
4439 bool control_only =
true;
4442 LLDB_LOGF(log,
"Process::%s (arg = %p, pid = %" PRIu64
") thread starting...",
4443 __FUNCTION__,
static_cast<void *
>(
this),
GetID());
4445 bool exit_now =
false;
4446 bool interrupt_requested =
false;
4452 "Process::%s (arg = %p, pid = %" PRIu64
4453 ") got a control event: %d",
4454 __FUNCTION__,
static_cast<void *
>(
this),
GetID(),
4455 event_sp->GetType());
4457 switch (event_sp->GetType()) {
4463 control_only =
true;
4467 control_only =
false;
4475 "Process::%s (arg = %p, pid = %" PRIu64
4476 ") woke up with an interrupt while attaching - "
4477 "forwarding interrupt.",
4478 __FUNCTION__,
static_cast<void *
>(
this),
GetID());
4489 "Process::%s (arg = %p, pid = %" PRIu64
4490 ") woke up with an interrupt - Halting.",
4491 __FUNCTION__,
static_cast<void *
>(
this),
GetID());
4493 if (
error.Fail() && log)
4495 "Process::%s (arg = %p, pid = %" PRIu64
4496 ") failed to halt the process: %s",
4497 __FUNCTION__,
static_cast<void *
>(
this),
GetID(),
4504 interrupt_requested =
true;
4513 "Process::%s ignoring interrupt as we have already stopped.",
4529 if (interrupt_requested) {
4539 interrupt_requested =
false;
4542 "Process::%s interrupt_requested, but a non-stopped "
4543 "state '%s' received.",
4554 "Process::%s (arg = %p, pid = %" PRIu64
4555 ") about to exit with internal state %s...",
4556 __FUNCTION__,
static_cast<void *
>(
this),
GetID(),
4564 LLDB_LOGF(log,
"Process::%s (arg = %p, pid = %" PRIu64
") thread exiting...",
4565 __FUNCTION__,
static_cast<void *
>(
this),
GetID());
4585 return "Process::ProcessEventData";
4593 bool &found_valid_stopinfo) {
4594 found_valid_stopinfo =
false;
4600 ThreadList &curr_thread_list = process_sp->GetThreadList();
4601 uint32_t num_threads = curr_thread_list.
GetSize();
4613 std::vector<std::pair<ThreadSP, size_t>> not_suspended_threads;
4614 for (uint32_t idx = 0; idx < num_threads; ++idx) {
4622 not_suspended_threads.emplace_back(thread_sp, thread_sp->GetIndexID());
4630 bool still_should_stop =
false;
4638 for (
auto [thread_sp, thread_index] : not_suspended_threads) {
4639 if (curr_thread_list.
GetSize() != num_threads) {
4643 "Number of threads changed from %u to %u while processing event.",
4644 num_threads, curr_thread_list.
GetSize());
4648 if (thread_sp->GetIndexID() != thread_index) {
4651 "The thread {0} changed from {1} to {2} while processing event.",
4652 thread_sp.get(), thread_index, thread_sp->GetIndexID());
4656 StopInfoSP stop_info_sp = thread_sp->GetStopInfo();
4657 if (stop_info_sp && stop_info_sp->IsValid()) {
4658 found_valid_stopinfo =
true;
4659 bool this_thread_wants_to_stop;
4660 if (stop_info_sp->GetOverrideShouldStop()) {
4661 this_thread_wants_to_stop =
4662 stop_info_sp->GetOverriddenShouldStopValue();
4664 stop_info_sp->PerformAction(event_ptr);
4677 thread_sp->ClearSelectedFrameIndex();
4680 if (stop_info_sp->HasTargetRunSinceMe()) {
4685 this_thread_wants_to_stop = stop_info_sp->ShouldStop(event_ptr);
4688 if (!still_should_stop)
4689 still_should_stop = this_thread_wants_to_stop;
4693 return still_should_stop;
4733 process_sp->SetPublicState(
4740 process_sp->WillPublicStop();
4755 bool does_anybody_have_an_opinion =
false;
4756 bool still_should_stop =
ShouldStop(event_ptr, does_anybody_have_an_opinion);
4762 if (!still_should_stop && does_anybody_have_an_opinion) {
4767 process_sp->PrivateResume();
4770 !process_sp->StateChangedIsHijackedForSynchronousResume();
4778 if (process_sp->GetTarget().RunStopHooks())
4788 s->
Printf(
" process = %p (pid = %" PRIu64
"), ",
4789 static_cast<void *
>(process_sp.get()), process_sp->GetID());
4818 if (data ==
nullptr)
4826 if (data ==
nullptr)
4836 if (data !=
nullptr)
4844 if (data !=
nullptr)
4855 if (data !=
nullptr)
4862 const char *reason) {
4865 if (data !=
nullptr)
4870 const Event *event_ptr) {
4872 if (data ==
nullptr)
4882 if (data !=
nullptr)
4925 auto event_data_sp =
4926 std::make_shared<ProcessEventData>(shared_from_this(),
GetState());
4927 return std::make_shared<Event>(event_type, event_data_sp);
4953 auto data_sp = std::make_shared<EventDataStructuredData>(
4954 shared_from_this(), object_sp, plugin_sp);
4962 return find_it->second;
4973 size_t bytes_available = one_profile_data.size();
4974 if (bytes_available > 0) {
4976 LLDB_LOGF(log,
"Process::GetProfileData (buf = %p, size = %" PRIu64
")",
4977 static_cast<void *
>(buf),
static_cast<uint64_t
>(buf_size));
4978 if (bytes_available > buf_size) {
4979 memcpy(buf, one_profile_data.c_str(), buf_size);
4980 one_profile_data.erase(0, buf_size);
4981 bytes_available = buf_size;
4983 memcpy(buf, one_profile_data.c_str(), bytes_available);
4987 return bytes_available;
4995 if (bytes_available > 0) {
4997 LLDB_LOGF(log,
"Process::GetSTDOUT (buf = %p, size = %" PRIu64
")",
4998 static_cast<void *
>(buf),
static_cast<uint64_t
>(buf_size));
4999 if (bytes_available > buf_size) {
5002 bytes_available = buf_size;
5008 return bytes_available;
5014 if (bytes_available > 0) {
5016 LLDB_LOGF(log,
"Process::GetSTDERR (buf = %p, size = %" PRIu64
")",
5017 static_cast<void *
>(buf),
static_cast<uint64_t
>(buf_size));
5018 if (bytes_available > buf_size) {
5021 bytes_available = buf_size;
5027 return bytes_available;
5033 process->
AppendSTDOUT(
static_cast<const char *
>(src), src_len);
5039 std::make_unique<ConnectionFileDescriptor>(fd,
true));
5050 std::make_shared<IOHandlerProcessSTDIO>(
this, fd);
5066 if (io_handler_sp) {
5068 LLDB_LOGF(log,
"Process::%s pushing IO handler", __FUNCTION__);
5070 io_handler_sp->SetIsDone(
false);
5075 bool cancel_top_handler = !
m_mod_id.IsRunningUtilityFunction();
5077 cancel_top_handler);
5103class RestorePlanState {
5106 : m_thread_plan_sp(thread_plan_sp) {
5107 if (m_thread_plan_sp) {
5108 m_private = m_thread_plan_sp->GetPrivate();
5109 m_is_controlling = m_thread_plan_sp->IsControllingPlan();
5110 m_okay_to_discard = m_thread_plan_sp->OkayToDiscard();
5114 ~RestorePlanState() { Clean(); }
5117 if (!m_already_reset && m_thread_plan_sp) {
5118 m_already_reset =
true;
5119 m_thread_plan_sp->SetPrivate(m_private);
5120 m_thread_plan_sp->SetIsControllingPlan(m_is_controlling);
5121 m_thread_plan_sp->SetOkayToDiscard(m_okay_to_discard);
5127 bool m_already_reset =
false;
5128 bool m_private =
false;
5129 bool m_is_controlling =
false;
5130 bool m_okay_to_discard =
false;
5136 const milliseconds default_one_thread_timeout(250);
5141 : default_one_thread_timeout;
5150 return std::min<microseconds>(default_one_thread_timeout,
5154static Timeout<std::micro>
5156 bool before_first_timeout) {
5162 if (before_first_timeout)
5166 return std::nullopt;
5171static std::optional<ExpressionResults>
5173 RestorePlanState &restorer,
const EventSP &event_sp,
5174 EventSP &event_to_broadcast_sp,
5176 bool handle_interrupts) {
5179 ThreadSP thread_sp = thread_plan_sp->GetTarget()
5182 .FindThreadByID(thread_id);
5185 "The thread on which we were running the "
5186 "expression: tid = {0}, exited while "
5187 "the expression was running.",
5193 if (plan == thread_plan_sp && plan->PlanSucceeded()) {
5194 LLDB_LOG(log,
"execution completed successfully");
5202 StopInfoSP stop_info_sp = thread_sp->GetStopInfo();
5204 stop_info_sp->ShouldNotify(event_sp.get())) {
5205 LLDB_LOG(log,
"stopped for breakpoint: {0}.", stop_info_sp->GetDescription());
5212 thread_plan_sp->SetPrivate(
false);
5213 event_to_broadcast_sp = event_sp;
5218 if (!handle_interrupts &&
5220 return std::nullopt;
5222 LLDB_LOG(log,
"thread plan did not successfully complete");
5224 event_to_broadcast_sp = event_sp;
5237 if (!thread_plan_sp) {
5243 if (!thread_plan_sp->ValidatePlan(
nullptr)) {
5246 "RunThreadPlan called with an invalid thread plan.");
5252 "RunThreadPlan called on wrong process.");
5257 if (thread ==
nullptr) {
5259 "RunThreadPlan called with invalid thread.");
5270 RestorePlanState thread_plan_restorer(thread_plan_sp);
5277 thread_plan_sp->SetPrivate(
false);
5283 thread_plan_sp->SetIsControllingPlan(
true);
5284 thread_plan_sp->SetOkayToDiscard(
false);
5294 "RunThreadPlan called while the private state was not stopped.");
5299 const uint32_t thread_idx_id = thread->GetIndexID();
5302 if (!selected_frame_sp) {
5303 thread->SetSelectedFrame(
nullptr);
5305 if (!selected_frame_sp) {
5306 diagnostic_manager.
Printf(
5308 "RunThreadPlan called without a selected frame on thread %d",
5319 "RunThreadPlan called with one thread "
5320 "timeout greater than total timeout");
5330 : selected_frame_sp->GetStackID();
5338 uint32_t selected_tid;
5340 if (selected_thread_sp) {
5341 selected_tid = selected_thread_sp->GetIndexID();
5349 std::shared_ptr<PrivateStateThread> backup_private_state_thread;
5360 LLDB_LOGF(log,
"Running thread plan on private state thread, spinning up "
5361 "another state thread to handle the events.");
5371 thread->QueueThreadPlan(stopper_base_plan_sp,
false);
5379 &backup_private_state_thread);
5384 diagnostic_manager.
Printf(
5386 "could not spin up a thread to handle events for an expression"
5387 " run on the private state thread.");
5393 thread->QueueThreadPlan(
5394 thread_plan_sp,
false);
5427 "Process::RunThreadPlan(): Resuming thread %u - 0x%4.4" PRIx64
5428 " to run thread plan \"%s\".",
5429 thread_idx_id, expr_thread_id, s.
GetData());
5436 bool before_first_timeout =
true;
5438 bool do_resume =
true;
5439 bool handle_running_event =
true;
5442 uint32_t num_resumes = 0;
5448 before_first_timeout =
false;
5450 LLDB_LOGF(log,
"Stop others: %u, try all: %u, before_first: %u.\n",
5452 before_first_timeout);
5459 Event *other_events = listener_sp->PeekAtNextEvent();
5460 if (other_events !=
nullptr) {
5463 "RunThreadPlan called with pending events on the queue.");
5476#ifdef LLDB_RUN_THREAD_HALT_WITH_EVENT
5484 bool miss_first_event =
true;
5486 bool pending_stop_on_vfork_done =
false;
5490 std::optional<PolicyStack::Guard> policy_guard;
5491 if (backup_private_state_thread)
5501 "Top of while loop: do_resume: %i handle_running_event: %i "
5502 "before_first_timeout: %i.",
5503 do_resume, handle_running_event, before_first_timeout);
5505 if (do_resume || handle_running_event) {
5512 if (!resume_error.
Success()) {
5513 diagnostic_manager.
Printf(
5515 "couldn't resume inferior the %d time: \"%s\".", num_resumes,
5526 "Process::RunThreadPlan(): didn't get any event after "
5527 "resume %" PRIu32
", exiting.",
5531 "didn't get any event after resume %" PRIu32
5542 bool restarted =
false;
5549 "Process::RunThreadPlan(): didn't get running event after "
5550 "resume %d, got %s instead (restarted: %i, do_resume: %i, "
5551 "handle_running_event: %i).",
5553 handle_running_event);
5560 const bool clear_thread_plans =
false;
5561 const bool use_run_lock =
false;
5562 Halt(clear_thread_plans, use_run_lock);
5566 "didn't get running event after initial "
5567 "resume, got %s instead.",
5574 log->
PutCString(
"Process::RunThreadPlan(): resuming succeeded.");
5582 log->
PutCString(
"Process::RunThreadPlan(): waiting for next event.");
5586 handle_running_event =
true;
5595 auto now = system_clock::now();
5597 "Process::RunThreadPlan(): about to wait - now is %s - "
5599 llvm::to_string(now).c_str(),
5600 llvm::to_string(now + *timeout).c_str());
5602 LLDB_LOGF(log,
"Process::RunThreadPlan(): about to wait forever.");
5606#ifdef LLDB_RUN_THREAD_HALT_WITH_EVENT
5608 if (miss_first_event) {
5609 std::this_thread::sleep_for(std::chrono::milliseconds(1));
5610 miss_first_event =
false;
5614 got_event = listener_sp->GetEvent(event_sp, timeout);
5618 bool keep_going =
false;
5620 const bool clear_thread_plans =
false;
5621 const bool use_run_lock =
false;
5622 Halt(clear_thread_plans, use_run_lock);
5625 "execution halted by user interrupt.");
5626 LLDB_LOGF(log,
"Process::RunThreadPlan(): Got interrupted by "
5627 "eBroadcastBitInterrupted, exiting.");
5633 "Process::RunThreadPlan(): in while loop, got event: %s.",
5636 switch (stop_state) {
5642 LLDB_LOGF(log,
"Process::RunThreadPlan(): Got a stop and "
5643 "restart, so we'll continue waiting.");
5646 handle_running_event =
true;
5651 bool handled_fork =
false;
5654 if (
StopInfoSP stop_info_sp = fork_thread_sp->GetStopInfo()) {
5655 StopReason reason = stop_info_sp->GetStopReason();
5659 handled_fork =
true;
5664 LLDB_LOGF(log,
"Process::RunThreadPlan(): stopped for "
5665 "fork, stop-on-fork is set.");
5676 "Process::RunThreadPlan(): got vfork with "
5677 "stop-on-fork, deferring stop to "
5679 pending_stop_on_vfork_done =
true;
5682 handle_running_event =
true;
5684 pending_stop_on_vfork_done) {
5689 LLDB_LOGF(log,
"Process::RunThreadPlan(): vfork cycle "
5690 "complete, stop-on-fork is set.");
5691 pending_stop_on_vfork_done =
false;
5694 LLDB_LOGF(log,
"Process::RunThreadPlan(): got fork "
5695 "event, continuing.");
5698 handle_running_event =
true;
5704 if (!handled_fork) {
5705 const bool handle_interrupts =
true;
5707 expr_thread_id, thread_plan_sp, thread_plan_restorer,
5708 event_sp, event_to_broadcast_sp, options,
5722 handle_running_event =
false;
5727 "Process::RunThreadPlan(): execution stopped with "
5728 "unexpected state: %s.",
5732 event_to_broadcast_sp = event_sp;
5736 "execution stopped with unexpected state.");
5748 log->
PutCString(
"Process::RunThreadPlan(): got_event was true, but "
5749 "the event pointer was null. How odd...");
5761 if (before_first_timeout) {
5763 "Running function with one thread timeout timed out.");
5765 LLDB_LOG(log,
"Restarting function with all threads enabled and "
5766 "timeout: {0} timed out, abandoning execution.",
5769 LLDB_LOG(log,
"Running function with timeout: {0} timed out, "
5770 "abandoning execution.",
5783 bool back_to_top =
true;
5784 uint32_t try_halt_again = 0;
5785 bool do_halt =
true;
5786 const uint32_t num_retries = 5;
5787 while (try_halt_again < num_retries) {
5790 LLDB_LOGF(log,
"Process::RunThreadPlan(): Running Halt.");
5791 const bool clear_thread_plans =
false;
5792 const bool use_run_lock =
false;
5793 Halt(clear_thread_plans, use_run_lock);
5797 log->
PutCString(
"Process::RunThreadPlan(): Halt succeeded.");
5807 "Process::RunThreadPlan(): Stopped with event: %s",
5812 log->
PutCString(
" Event was the Halt interruption event.");
5819 log->
PutCString(
"Process::RunThreadPlan(): Went to halt "
5820 "but got a restarted event, there must be "
5821 "an un-restarted stopped event so try "
5823 "Exiting wait loop.");
5832 const bool handle_interrupts =
false;
5834 expr_thread_id, thread_plan_sp, thread_plan_restorer,
5835 event_sp, event_to_broadcast_sp, options,
5836 handle_interrupts)) {
5837 return_value = *result;
5838 back_to_top =
false;
5844 log->
PutCString(
"Process::RunThreadPlan(): try_all_threads "
5845 "was false, we stopped so now we're "
5848 back_to_top =
false;
5852 if (before_first_timeout) {
5855 before_first_timeout =
false;
5856 thread_plan_sp->SetStopOthers(
false);
5859 "Process::RunThreadPlan(): about to resume.");
5866 log->
PutCString(
"Process::RunThreadPlan(): running all "
5867 "threads timed out.");
5869 back_to_top =
false;
5875 log->
PutCString(
"Process::RunThreadPlan(): halt said it "
5876 "succeeded, but I got no event. "
5877 "I'm getting out of here passing Interrupted.");
5879 back_to_top =
false;
5888 if (!back_to_top || try_halt_again > num_retries)
5895 policy_guard.reset();
5899 if (backup_private_state_thread &&
5900 backup_private_state_thread->IsJoinable()) {
5904 if (stopper_base_plan_sp) {
5905 thread->DiscardThreadPlansUpToPlan(stopper_base_plan_sp);
5915 return return_value;
5921 s.
PutCString(
"Thread state after unsuccessful completion: \n");
5936 thread_plan_sp->RestoreThreadState();
5947 log->
PutCString(
"Process::RunThreadPlan(): Stop event that "
5948 "interrupted us is NULL.");
5953 const char *event_explanation =
nullptr;
5957 event_explanation =
"<no event>";
5960 event_explanation =
"<user interrupt>";
5968 event_explanation =
"<no event data>";
5975 event_explanation =
"<no process>";
5981 uint32_t num_threads = thread_list.
GetSize();
5982 uint32_t thread_index;
5984 ts.
Printf(
"<%u threads> ", num_threads);
5986 for (thread_index = 0; thread_index < num_threads; ++thread_index) {
5994 ts.
Printf(
"<0x%4.4" PRIx64
" ", thread->GetID());
5996 thread->GetRegisterContext().get();
5998 if (register_context)
5999 ts.
Printf(
"[ip 0x%" PRIx64
"] ", register_context->
GetPC());
6007 const char *stop_desc = stop_info_sp->GetDescription();
6014 event_explanation = ts.
GetData();
6018 if (event_explanation)
6020 "Process::RunThreadPlan(): execution interrupted: %s %s",
6021 s.
GetData(), event_explanation);
6023 LLDB_LOGF(log,
"Process::RunThreadPlan(): execution interrupted: %s",
6027 if (should_unwind) {
6029 "Process::RunThreadPlan: ExecutionInterrupted - "
6030 "discarding thread plans up to %p.",
6031 static_cast<void *
>(thread_plan_sp.get()));
6032 thread->DiscardThreadPlansUpToPlan(thread_plan_sp);
6035 "Process::RunThreadPlan: ExecutionInterrupted - for "
6036 "plan: %p not discarding.",
6037 static_cast<void *
>(thread_plan_sp.get()));
6041 log->
PutCString(
"Process::RunThreadPlan(): execution set up error.");
6044 thread->DiscardThreadPlansUpToPlan(thread_plan_sp);
6047 if (thread->IsThreadPlanDone(thread_plan_sp.get())) {
6049 log->
PutCString(
"Process::RunThreadPlan(): thread plan is done");
6051 }
else if (thread->WasThreadPlanDiscarded(thread_plan_sp.get())) {
6054 "Process::RunThreadPlan(): thread plan was discarded");
6059 "Process::RunThreadPlan(): thread plan stopped in mid course");
6062 log->
PutCString(
"Process::RunThreadPlan(): discarding thread plan "
6063 "'cause unwind_on_error is set.");
6064 thread->DiscardThreadPlansUpToPlan(thread_plan_sp);
6074 exe_ctx.
SetFrameSP(thread->GetFrameWithStackID(ctx_frame_id));
6081 if (
GetThreadList().SetSelectedThreadByIndexID(selected_tid) &&
6082 selected_stack_id.
IsValid()) {
6084 std::lock_guard<std::recursive_mutex> guard(
GetThreadList().GetMutex());
6090 old_frame_sp.get());
6097 if (event_to_broadcast_sp) {
6099 log->
PutCString(
"Process::RunThreadPlan(): rebroadcasting event.");
6103 return return_value;
6112 strm.
Printf(
"Process %" PRIu64
" exited with status = %i (0x%8.8x) %s\n",
6113 GetID(), exit_status, exit_status,
6114 exit_description ? exit_description :
"");
6117 strm.
PutCString(
"Connected to remote target.\n");
6121 core_args->Format(strm);
6125 strm.
Printf(
"Process %" PRIu64
" is running.\n",
GetID());
6130 bool only_threads_with_stop_reason,
6131 uint32_t start_frame, uint32_t num_frames,
6132 uint32_t num_frames_with_source,
6134 size_t num_thread_infos_dumped = 0;
6141 uint32_t num_threads;
6142 std::vector<lldb::tid_t> thread_id_array;
6145 std::lock_guard<std::recursive_mutex> guard(
GetThreadList().GetMutex());
6147 num_threads = curr_thread_list.
GetSize();
6149 thread_id_array.resize(num_threads);
6150 for (idx = 0; idx < num_threads; ++idx)
6154 for (uint32_t i = 0; i < num_threads; i++) {
6157 if (only_threads_with_stop_reason) {
6158 StopInfoSP stop_info_sp = thread_sp->GetStopInfo();
6159 if (!stop_info_sp || !stop_info_sp->ShouldShow())
6162 thread_sp->GetStatus(strm, start_frame, num_frames,
6163 num_frames_with_source, stop_format,
6165 ++num_thread_infos_dumped;
6168 LLDB_LOGF(log,
"Process::GetThreadStatus - thread 0x" PRIu64
6169 " vanished while running Thread::GetStatus.");
6172 return num_thread_infos_dumped;
6196 result = this_result;
6260 "Setting Process code address mask to {0:x}", code_address_mask);
6266 "Setting Process data address mask to {0:x}", data_address_mask);
6272 "Setting Process highmem code address mask to {0:x}",
6279 "Setting Process highmem data address mask to {0:x}",
6286 addr = abi_sp->FixCodeAddress(addr);
6292 addr = abi_sp->FixDataAddress(addr);
6298 addr = abi_sp->FixAnyAddress(addr);
6304 LLDB_LOGF(log,
"Process::%s()", __FUNCTION__);
6340 if (address ==
nullptr) {
6348 std::map<addr_t, addr_t>::const_iterator iter =
6351 function_addr = (*iter).second;
6356 "Unable to call resolver for indirect function %s",
6361 function_addr = abi_sp->FixCodeAddress(function_addr);
6363 std::pair<addr_t, addr_t>(addr, function_addr));
6366 return function_addr;
6382 runtime.second->ModulesDidLoad(module_list);
6388 runtime->ModulesDidLoad(module_list);
6399 pair.second->ModulesDidLoad(*
this, module_list);
6423 if (plugins[language])
6425 sc.
module_sp->ReportWarningUnsupportedLanguage(
6436 return platform_sp->GetProcessInfo(
GetID(), info);
6449 if (!memory_history) {
6453 threads = std::make_shared<ThreadCollection>(
6454 memory_history->GetHistoryThreads(addr));
6461 InstrumentationRuntimeCollection::iterator pos;
6466 return (*pos).second;
6471 module_spec.
Clear();
6498 Address retval = default_stop_addr;
6502 if (!default_stop_addr.
IsValid())
6505 const char *plugin_name =
nullptr;
6506 const char *flavor =
nullptr;
6507 const char *cpu =
nullptr;
6508 const char *features =
nullptr;
6512 if (disassembler_sp)
6513 insn_list = &disassembler_sp->GetInstructionList();
6515 if (insn_list ==
nullptr) {
6519 size_t insn_offset =
6526 insn_offset,
false ,
nullptr);
6531 if (branch_index > insn_offset) {
6532 Address next_branch_insn_address =
6534 if (next_branch_insn_address.
IsValid() &&
6536 retval = next_branch_insn_address;
6546 load_addr = abi->FixAnyAddress(load_addr);
6548 std::optional<MemoryRegionInfo> cached_region =
6550 if (cached_region) {
6551 range_info = *cached_region;
6556 if (
error.Success()) {
6573 region_list.clear();
6579 region_list.clear();
6590 region_list.push_back(std::move(region_info));
6598 !(abi && (abi->FixAnyAddress(range_end) != range_end)));
6617 if (supported_type_names.
GetSize() == 0) {
6618 LLDB_LOG(log,
"no structured data types supported");
6623 std::set<llvm::StringRef> type_names;
6626 "the process supports the following async structured data types:");
6635 const llvm::StringRef type_name =
object->GetStringValue();
6636 if (type_name.empty())
6639 type_names.insert(type_name);
6650 if (type_names.empty())
6662 std::vector<llvm::StringRef> names_to_remove;
6663 for (llvm::StringRef type_name : type_names) {
6664 if (plugin_sp->SupportsStructuredDataType(type_name)) {
6666 std::make_pair(type_name, plugin_sp));
6667 names_to_remove.push_back(type_name);
6668 LLDB_LOG(log,
"using plugin {0} for type name {1}",
6669 plugin_sp->GetPluginName(), type_name);
6674 for (llvm::StringRef type_name : names_to_remove)
6675 type_names.erase(type_name);
6692 llvm::StringRef type_name;
6704 find_it->second->HandleArrivalOfStructuredData(*
this, type_name, object_sp);
6716 llvm::function_ref<std::unique_ptr<UtilityFunction>()> factory) {
6717 if (platform !=
GetTarget().GetPlatform().get())
6726 return llvm::createStringError(llvm::inconvertibleErrorCode(),
6727 "Can't trace a non-live process.");
6728 return llvm::make_error<UnimplementedError>();
6733 bool trap_exceptions) {
6735 if (thread ==
nullptr || address ==
nullptr)
6747 auto type_system_or_err =
6749 if (!type_system_or_err) {
6750 llvm::consumeError(type_system_or_err.takeError());
6753 auto ts = *type_system_or_err;
6759 *thread, *address, void_ptr_type, llvm::ArrayRef<addr_t>(), options));
6763 StackFrame *frame = thread->GetStackFrameAtIndex(0).get();
6771 call_plan_sp->GetReturnValueObject()->GetValueAsUnsigned(
6793 if (!arch || !tag_manager) {
6794 return llvm::createStringError(
6795 llvm::inconvertibleErrorCode(),
6796 "This architecture does not support memory tagging");
6800 return llvm::createStringError(llvm::inconvertibleErrorCode(),
6801 "Process does not support memory tagging");
6807llvm::Expected<std::vector<lldb::addr_t>>
6809 llvm::Expected<const MemoryTagManager *> tag_manager_or_err =
6811 if (!tag_manager_or_err)
6812 return tag_manager_or_err.takeError();
6815 llvm::Expected<std::vector<uint8_t>> tag_data =
6818 return tag_data.takeError();
6825 const std::vector<lldb::addr_t> &tags) {
6826 llvm::Expected<const MemoryTagManager *> tag_manager_or_err =
6828 if (!tag_manager_or_err)
6832 llvm::Expected<std::vector<uint8_t>> packed_tags =
6856 if (!dirty_page_list)
6862 llvm::AddressRange range(0, 0);
6863 for (
addr_t page_addr : *dirty_page_list) {
6864 if (range.empty()) {
6866 range = llvm::AddressRange(page_addr, page_addr + page_size);
6868 if (range.end() == page_addr) {
6870 range = llvm::AddressRange(range.start(), page_addr + page_size);
6874 ranges.
Append(range.start(), range.size(), {range, lldb_permissions});
6875 range = llvm::AddressRange(page_addr, page_addr + page_size);
6881 ranges.
Append(range.start(), range.size(), {range, lldb_permissions});
6911 std::set<addr_t> &stack_ends) {
6916 std::vector<lldb_private::MemoryRegionInfo> dynamic_loader_mem_regions;
6922 save_thread_predicate);
6923 for (
const auto ®ion : dynamic_loader_mem_regions) {
6926 if (stack_ends.count(region.GetRange().GetRangeEnd()) == 0)
6935 std::set<addr_t> &stack_ends) {
6936 const bool try_dirty_pages =
true;
6945 StackFrameSP frame_sp = thread_sp->GetStackFrameAtIndex(0);
6951 const addr_t sp = reg_ctx_sp->GetSP();
6952 const size_t red_zone = process.
GetABI()->GetRedZoneSize();
6955 const size_t stack_head = (
sp - red_zone);
6963 stack_ends.insert(range_end);
6967 AddRegion(sp_region, try_dirty_pages, ranges);
6978 std::set<addr_t> &stack_ends) {
6981 const bool try_dirty_pages =
false;
6982 for (
const auto ®ion : regions)
6983 if (stack_ends.count(region.GetRange().GetRangeEnd()) == 0)
6984 AddRegion(region, try_dirty_pages, ranges);
6994 std::set<addr_t> &stack_ends) {
6997 bool have_dirty_page_info =
false;
6998 for (
const auto ®ion : regions) {
6999 if (stack_ends.count(region.GetRange().GetRangeEnd()) == 0 &&
7001 have_dirty_page_info =
true;
7004 if (!have_dirty_page_info) {
7007 const bool try_dirty_pages =
false;
7008 for (
const auto ®ion : regions)
7009 if (stack_ends.count(region.GetRange().GetRangeEnd()) == 0 &&
7011 AddRegion(region, try_dirty_pages, ranges);
7026 std::set<addr_t> &stack_ends) {
7027 const bool try_dirty_pages =
true;
7031 for (
const auto ®ion : regions) {
7033 if (stack_ends.count(region.GetRange().GetRangeEnd()) == 0 &&
7035 AddRegion(region, try_dirty_pages, ranges);
7041static lldb_private::MemoryRegionInfo
7057 if (option_ranges.IsEmpty())
7060 for (
const auto &range : regions) {
7061 auto *entry = option_ranges.FindEntryThatIntersects(range.GetRange());
7063 if (*entry != range.GetRange()) {
7080 if (regions.empty())
7082 "failed to get any valid memory regions from the process");
7085 "callers must set the core_style to something other than "
7086 "eSaveCoreUnspecified");
7090 std::set<addr_t> stack_ends;
7102 switch (core_style) {
7125 "no valid address ranges found for core style");
7130std::vector<ThreadSP>
7132 std::vector<ThreadSP> thread_list;
7135 thread_list.push_back(thread_sp);
7146 if (low_memory_addr_bits == 0 && high_memory_addr_bits == 0)
7149 if (low_memory_addr_bits != 0) {
7156 if (high_memory_addr_bits != 0) {
7164llvm::Expected<AddressSpaceInfo>
7167 return llvm::createStringError(
"process doesn't support address spaces");
7170 if (address_space_name == info.name)
7174 std::string names = llvm::join(
7178 return llvm::createStringError(
7179 "invalid address space \"%s\", expected one of: %s",
7180 address_space_name.str().c_str(), names.c_str());
7183llvm::Expected<AddressSpaceInfo>
7186 return llvm::createStringError(
"process doesn't support address spaces");
7189 if (info.space_id == address_space_id)
7196 return std::to_string(info.
space_id);
7199 return llvm::createStringError(
"invalid address space id %" PRIu64
7200 ", expected one of: %s",
7201 address_space_id, ids.c_str());
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
#define LLDB_LOGF(log,...)
#define LLDB_LOG_ERROR(log, error,...)
static void GetCoreFileSaveRangesFull(Process &process, const MemoryRegionInfos ®ions, CoreFileMemoryRanges &ranges, std::set< addr_t > &stack_ends)
static std::optional< ExpressionResults > HandleStoppedEvent(lldb::tid_t thread_id, const ThreadPlanSP &thread_plan_sp, RestorePlanState &restorer, const EventSP &event_sp, EventSP &event_to_broadcast_sp, const EvaluateExpressionOptions &options, bool handle_interrupts)
static void SaveDynamicLoaderSections(Process &process, const SaveCoreOptions &options, CoreFileMemoryRanges &ranges, std::set< addr_t > &stack_ends)
static CoreFileMemoryRange CreateCoreFileMemoryRange(const lldb_private::MemoryRegionInfo ®ion)
static constexpr unsigned g_string_read_width
static bool AddDirtyPages(const lldb_private::MemoryRegionInfo ®ion, CoreFileMemoryRanges &ranges)
static constexpr OptionEnumValueElement g_follow_fork_mode_values[]
static void GetUserSpecifiedCoreFileSaveRanges(Process &process, const MemoryRegionInfos ®ions, const SaveCoreOptions &options, CoreFileMemoryRanges &ranges)
static void GetCoreFileSaveRangesDirtyOnly(Process &process, const MemoryRegionInfos ®ions, CoreFileMemoryRanges &ranges, std::set< addr_t > &stack_ends)
static bool ShouldShowError(Process &process)
static void AddRegion(const lldb_private::MemoryRegionInfo ®ion, bool try_dirty_pages, CoreFileMemoryRanges &ranges)
static Timeout< std::micro > GetExpressionTimeout(const EvaluateExpressionOptions &options, bool before_first_timeout)
static microseconds GetOneThreadExpressionTimeout(const EvaluateExpressionOptions &options)
static addr_t ComputeConstituentLoadAddress(BreakpointLocation &constituent, Process &proc)
static lldb_private::MemoryRegionInfo Intersect(const lldb_private::MemoryRegionInfo &lhs, const lldb_private::MemoryRegionInfo::RangeType &rhs)
static void SaveOffRegionsWithStackPointers(Process &process, const SaveCoreOptions &core_options, const MemoryRegionInfos ®ions, CoreFileMemoryRanges &ranges, std::set< addr_t > &stack_ends)
static void GetCoreFileSaveRangesStackOnly(Process &process, const MemoryRegionInfos ®ions, CoreFileMemoryRanges &ranges, std::set< addr_t > &stack_ends)
#define LLDB_SCOPED_TIMER()
ProcessExperimentalOptionValueProperties()
const Property * GetPropertyAtIndex(size_t idx, const ExecutionContext *exe_ctx) const override
ProcessOptionValueProperties(llvm::StringRef name)
static lldb::ABISP FindPlugin(lldb::ProcessSP process_sp, const ArchSpec &arch)
A section + offset based address range class.
Address & GetBaseAddress()
Get accessor for the base address of the range.
bool ContainsFileAddress(const Address &so_addr) const
Check if a section offset address is contained in this range.
lldb::addr_t GetByteSize() const
Get accessor for the byte size of this range.
A section + offset based address class.
lldb::addr_t GetLoadAddress(Target *target) const
Get the load address.
lldb::addr_t GetOpcodeLoadAddress(Target *target, AddressClass addr_class=AddressClass::eInvalid) const
Get the load address as an opcode load address.
bool IsValid() const
Check if the object state is valid.
Symbol * CalculateSymbolContextSymbol() const
A class which holds the metadata from a remote stub/corefile note about how many bits are used for ad...
uint32_t GetHighmemAddressableBits() const
static lldb::addr_t AddressableBitToMask(uint32_t addressable_bits)
uint32_t GetLowmemAddressableBits() const
An architecture specification class.
uint32_t GetAddressByteSize() const
Returns the size in bytes of an address of the current architecture.
bool IsValid() const
Tests if this ArchSpec is valid.
llvm::Triple & GetTriple()
Architecture triple accessor.
bool IsCompatibleMatch(const ArchSpec &rhs) const
Shorthand for IsMatch(rhs, CompatibleMatch).
bool IsExactMatch(const ArchSpec &rhs) const
Shorthand for IsMatch(rhs, ExactMatch).
lldb::ByteOrder GetByteOrder() const
Returns the byte order for the architecture specification.
virtual const MemoryTagManager * GetMemoryTagManager() const
A command line argument class.
General Outline: A breakpoint location is defined by the breakpoint that produces it,...
void SetIsIndirect(bool is_indirect)
bool ShouldResolveIndirectFunctions()
Returns whether we should resolve Indirect functions in setting the breakpoint site for this location...
lldb::break_id_t GetID() const
Returns the breakpoint location ID.
Address & GetAddress()
Gets the Address for this breakpoint location.
Breakpoint & GetBreakpoint()
Gets the Breakpoint that created this breakpoint location.
Class that manages the actual breakpoint that will be inserted into the running program.
BreakpointSite::Type GetType() const
void SetType(BreakpointSite::Type type)
bool IntersectsRange(lldb::addr_t addr, size_t size, lldb::addr_t *intersect_addr, size_t *intersect_size, size_t *opcode_offset) const
Says whether addr and size size intersects with the address intersect_addr.
uint8_t * GetTrapOpcodeBytes()
Returns the Opcode Bytes for this breakpoint.
uint8_t * GetSavedOpcodeBytes()
Gets the original instruction bytes that were overwritten by the trap.
bool IsHardware() const override
bool m_enabled
Boolean indicating if this breakpoint site enabled or not.
Broadcaster(lldb::BroadcasterManagerSP manager_sp, std::string name)
Construct with a broadcaster with a name.
lldb::ListenerSP GetPrimaryListener()
void RestoreBroadcaster()
Restore the state of the Broadcaster from a previous hijack attempt.
void SetEventName(uint32_t event_mask, const char *name)
Set the name for an event bit.
bool HijackBroadcaster(const lldb::ListenerSP &listener_sp, uint32_t event_mask=UINT32_MAX)
Provides a simple mechanism to temporarily redirect events from broadcaster.
void BroadcastEventIfUnique(lldb::EventSP &event_sp)
void SetPrimaryListener(lldb::ListenerSP listener_sp)
const char * GetHijackingListenerName()
void BroadcastEvent(lldb::EventSP &event_sp)
Broadcast an event which has no associated data.
bool IsHijackedForEvent(uint32_t event_mask)
void CheckInWithManager()
A class that implements CRTP-based "virtual constructor" idiom.
Generic representation of a type in a programming language.
CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const
Create related types using the current type's AST.
CompilerType GetPointerType() const
Return a new CompilerType that is a pointer to this type.
const char * AsCString(const char *value_if_empty) const
Get the string value as a C string.
Status FinalizeCoreFileSaveRanges()
Finalize and merge all overlapping ranges in this collection.
A subclass of DataBuffer that stores a data buffer on the heap.
lldb::offset_t SetByteSize(lldb::offset_t byte_size)
Set the number of bytes in the data buffer.
A class to manage flag bits.
lldb::StreamUP GetAsyncErrorStream()
TargetList & GetTargetList()
Get accessor for the target list.
bool IsTopIOHandler(const lldb::IOHandlerSP &reader_sp)
bool RemoveIOHandler(const lldb::IOHandlerSP &reader_sp)
Remove the given IO handler if it's currently active.
void FlushStatusLine()
Flush cached state (e.g. stale execution context in the statusline).
void RunIOHandlerAsync(const lldb::IOHandlerSP &reader_sp, bool cancel_top_handler=true)
Run the given IO handler and return immediately.
PlatformList & GetPlatformList()
lldb::ListenerSP GetListener()
size_t void PutString(lldb::Severity severity, llvm::StringRef str)
size_t Printf(lldb::Severity severity, const char *format,...) __attribute__((format(printf
static lldb::DisassemblerSP DisassembleRange(const ArchSpec &arch, const char *plugin_name, const char *flavor, const char *cpu, const char *features, Target &target, llvm::ArrayRef< AddressRange > disasm_ranges, bool force_live_memory=false)
Encapsulates dynamic check functions used by expressions.
A plug-in interface definition class for dynamic loaders.
virtual void DidAttach()=0
Called after attaching a process.
virtual void CalculateDynamicSaveCoreRanges(lldb_private::Process &process, std::vector< lldb_private::MemoryRegionInfo > &ranges, llvm::function_ref< bool(const lldb_private::Thread &)> save_thread_predicate)
Returns a list of memory ranges that should be saved in the core file, specific for this dynamic load...
virtual void DidLaunch()=0
Called after launching a process.
static DynamicLoader * FindPlugin(Process *process, llvm::StringRef plugin_name)
Find a dynamic loader plugin for a given process.
void SetUnwindOnError(bool unwind=false)
bool GetStopOthers() const
bool DoesIgnoreBreakpoints() const
bool IsForUtilityExpr() const
bool GetTryAllThreads() const
void SetTrapExceptions(bool b)
void SetTryAllThreads(bool try_others=true)
void SetTimeout(const Timeout< std::micro > &timeout)
void SetStopOthers(bool stop_others=true)
bool DoesUnwindOnError() const
const Timeout< std::micro > & GetTimeout() const
bool GetStopOnFork() const
void SetIgnoreBreakpoints(bool ignore=false)
const Timeout< std::micro > & GetOneThreadTimeout() const
virtual llvm::StringRef GetFlavor() const =0
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
void SetFrameSP(const lldb::StackFrameSP &frame_sp)
Set accessor to set only the frame shared pointer.
void SetProcessPtr(Process *process)
Set accessor to set only the process shared pointer from a process pointer.
void SetThreadPtr(Thread *thread)
Set accessor to set only the thread shared pointer from a thread pointer.
void SetTargetPtr(Target *target)
Set accessor to set only the target shared pointer from a target pointer.
StackFrame & GetFrameRef() const
Returns a reference to the thread object.
bool HasFrameScope() const
Returns true the ExecutionContext object contains a valid target, process, thread and frame.
void SetFramePtr(StackFrame *frame)
Set accessor to set only the frame shared pointer from a frame pointer.
Process * GetProcessPtr() const
Returns a pointer to the process object.
Thread * GetThreadPtr() const
Returns a pointer to the thread object.
llvm::StringRef GetFilename() const
Filename string const get accessor.
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
static FileSystem & Instance()
bool Test(ValueType bit) const
Test a single flag bit.
bool GetIsOptimized()
Get whether compiler optimizations were enabled for this function.
static lldb::thread_t GetCurrentThread()
Get the thread token (the one returned by ThreadCreate when the thread was created) for the calling t...
uint32_t GetIndexOfInstructionAtAddress(const Address &addr)
lldb::InstructionSP GetInstructionAtIndex(size_t idx) const
uint32_t GetIndexOfNextBranchInstruction(uint32_t start, bool ignore_calls, bool *found_calls) const
Get the index of the next branch instruction.
static void ModulesDidLoad(lldb_private::ModuleList &module_list, Process *process, InstrumentationRuntimeCollection &runtimes)
Class used by the Process to hold a list of its JITLoaders.
void ModulesDidLoad(ModuleList &module_list)
static void LoadPlugins(Process *process, lldb_private::JITLoaderList &list)
Find a JIT loader plugin for a given process.
virtual lldb::LanguageType GetLanguageType() const =0
static LanguageRuntime * FindPlugin(Process *process, lldb::LanguageType language)
virtual bool CouldHaveDynamicValue(ValueObject &in_value)=0
static lldb::LanguageType GetPrimaryLanguage(lldb::LanguageType language)
static std::set< lldb::LanguageType > GetSupportedLanguages()
static lldb::ListenerSP MakeListener(llvm::StringRef name)
void PutCString(const char *cstr)
void PutString(llvm::StringRef str)
static lldb::MemoryHistorySP FindPlugin(const lldb::ProcessSP process)
LazyBool GetMapped() const
int GetPageSize() const
Get the target system's VM page size in bytes.
LazyBool GetReadable() const
LazyBool GetExecutable() const
uint32_t GetLLDBPermissions() const
Range< lldb::addr_t, lldb::addr_t > RangeType
const std::optional< std::vector< lldb::addr_t > > & GetDirtyPageList() const
Get a vector of target VM pages that are dirty – that have been modified – within this memory region.
LazyBool GetWritable() const
void SetLLDBPermissions(uint32_t permissions)
virtual llvm::Expected< std::vector< lldb::addr_t > > UnpackTagsData(const std::vector< uint8_t > &tags, size_t granules=0) const =0
virtual lldb::addr_t GetGranuleSize() const =0
virtual llvm::Expected< std::vector< uint8_t > > PackTags(const std::vector< lldb::addr_t > &tags) const =0
virtual int32_t GetAllocationTagType() const =0
A collection class for Module objects.
A class that describes an executable image and its associated object and symbol files.
const FileSpec & GetFileSpec() const
Get const accessor for the module file specification.
A plug-in interface definition class for halted OS helpers.
virtual lldb::ThreadSP CreateThread(lldb::tid_t tid, lldb::addr_t context)
static OperatingSystem * FindPlugin(Process *process, const char *plugin_name)
Find a halted OS plugin for a given process.
virtual bool UpdateThreadList(ThreadList &old_thread_list, ThreadList &real_thread_list, ThreadList &new_thread_list)=0
virtual bool DoesPluginReportAllThreads()=0
auto GetPropertyAtIndexAs(size_t idx, const ExecutionContext *exe_ctx=nullptr) const
Property * ProtectedGetPropertyAtIndex(size_t idx)
static lldb::OptionValuePropertiesSP CreateLocalCopy(const Properties &global_properties)
void SetMaximumValue(uint64_t v)
void SetMinimumValue(uint64_t v)
OptionValueProperties * GetAsProperties()
virtual llvm::StringRef GetPluginName()=0
static llvm::SmallVector< ProcessCreateInstance > GetProcessCreateCallbacks()
static ProcessCreateInstance GetProcessCreateCallbackForPluginName(llvm::StringRef name)
static llvm::SmallVector< StructuredDataPluginCallbacks > GetStructuredDataPluginCallbacks()
static LanguageSet GetAllTypeSystemSupportedLanguagesForTypes()
RAII guard that pops a policy on destruction.
Guard PushPrivateState(Policy::PrivateStatePurpose purpose=Policy::PrivateStatePurpose::Default)
All Push* methods delegate to the named static factories on Policy, which already inherit from Curren...
static PolicyStack & Get()
An address in a process, qualified by an address space.
lldb::addr_t GetValue() const
lldb::addr_space_t GetAddressSpace() const
bool IsInDefaultAddressSpace() const
uint32_t GetResumeCount() const
lldb::ListenerSP GetListenerForProcess(Debugger &debugger)
bool GetWaitForLaunch() const
ProcessExperimentalProperties()
lldb::pid_t GetProcessID() const
lldb::ListenerSP m_listener_sp
FileSpec & GetExecutableFile()
bool IsScriptedProcess() const
ArchSpec & GetArchitecture()
void SetNameMatchType(NameMatch name_match_type)
ProcessInstanceInfo & GetProcessInfo()
static void DumpTableHeader(Stream &s, bool show_args, bool verbose)
bool GetDetachKeepsStopped() const
bool TrackMemoryCacheChanges() const
bool GetSteppingRunsAllThreads() const
void SetStopOnSharedLibraryEvents(bool stop)
Args GetExtraStartupCommands() const
std::unique_ptr< ProcessExperimentalProperties > m_experimental_properties_up
FollowForkMode GetFollowForkMode() const
uint32_t GetVirtualAddressableBits() const
~ProcessProperties() override
void SetIgnoreBreakpointsInExpressions(bool ignore)
bool GetUnwindOnErrorInExpressions() const
Args GetAlwaysRunThreadNames() const
std::chrono::seconds GetInterruptTimeout() const
bool GetDisableLangRuntimeUnwindPlans() const
void SetDetachKeepsStopped(bool keep_stopped)
bool GetVerifyMemoryReads() const
void SetDisableLangRuntimeUnwindPlans(bool disable)
std::chrono::seconds GetUtilityExpressionTimeout() const
void SetVirtualAddressableBits(uint32_t bits)
bool GetStopOnSharedLibraryEvents() const
void SetHighmemVirtualAddressableBits(uint32_t bits)
void SetOSPluginReportsAllThreads(bool does_report)
bool GetWarningsOptimization() const
void DisableLanguageRuntimeUnwindPlansCallback()
void SetUnwindOnErrorInExpressions(bool ignore)
bool GetDisableMemoryCache() const
bool GetUseDelayedBreakpoints() const
FileSpec GetPythonOSPluginPath() const
bool GetStopOnExec() const
void SetPythonOSPluginPath(const FileSpec &file)
void SetExtraStartupCommands(const Args &args)
bool GetOSPluginReportsAllThreads() const
bool GetWarningsUnsupportedLanguage() const
uint32_t GetHighmemVirtualAddressableBits() const
OptionValueProperties * GetExperimentalProperties() const
bool GetIgnoreBreakpointsInExpressions() const
uint64_t GetMemoryCacheLineSize() const
ProcessProperties(lldb_private::Process *process)
Read/write lock around the process running/stopped state.
EventActionResult HandleBeingInterrupted() override
const char * GetExitString() override
EventActionResult PerformAction(lldb::EventSP &event_sp) override
AttachCompletionHandler(Process *process, uint32_t exec_count)
std::string m_exit_string
NextEventAction(Process *process)
lldb::ProcessWP m_process_wp
static bool GetRestartedFromEvent(const Event *event_ptr)
virtual bool ShouldStop(Event *event_ptr, bool &found_valid_stopinfo)
void SetUpdateStateOnRemoval()
static void AddRestartedReason(Event *event_ptr, const char *reason)
void SetInterrupted(bool new_value)
lldb::ProcessSP GetProcessSP() const
void SetRestarted(bool new_value)
static void SetRestartedInEvent(Event *event_ptr, bool new_value)
static lldb::ProcessSP GetProcessFromEvent(const Event *event_ptr)
static void SetInterruptedInEvent(Event *event_ptr, bool new_value)
bool ForwardEventToPendingListeners(Event *event_ptr) override
This will be queried for a Broadcaster with a primary and some secondary listeners after the primary ...
llvm::StringRef GetFlavor() const override
~ProcessEventData() override
bool GetInterrupted() const
bool GetRestarted() const
size_t GetNumRestartedReasons()
static bool GetInterruptedFromEvent(const Event *event_ptr)
const char * GetRestartedReasonAtIndex(size_t idx)
static bool SetUpdateStateOnRemoval(Event *event_ptr)
static lldb::StateType GetStateFromEvent(const Event *event_ptr)
lldb::StateType GetState() const
static const Process::ProcessEventData * GetEventDataFromEvent(const Event *event_ptr)
static llvm::StringRef GetFlavorString()
void DoOnRemoval(Event *event_ptr) override
void Dump(Stream *s) const override
A plug-in interface definition class for debugging a process.
virtual Status EnableBreakpointSite(BreakpointSite *bp_site)
Status WillAttachToProcessWithName(const char *process_name, bool wait_for_launch)
Called before attaching to a process.
virtual llvm::Expected< TraceSupportedResponse > TraceSupported()
Get the processor tracing type supported for this process.
lldb::IOHandlerSP m_process_input_reader
friend class ProcessProperties
UtilityFunction * GetLoadImageUtilityFunction(Platform *platform, llvm::function_ref< std::unique_ptr< UtilityFunction >()> factory)
Get the cached UtilityFunction that assists in loading binary images into the process.
virtual Status DoSignal(int signal)
Sends a process a UNIX signal signal.
virtual Status WillResume()
Called before resuming to a process.
std::mutex m_process_input_reader_mutex
lldb::addr_t m_code_address_mask
Mask for code an data addresses.
StopPointSiteList< lldb_private::BreakpointSite > & GetBreakpointSiteList()
std::vector< lldb::addr_t > m_image_tokens
virtual Status DoHalt(bool &caused_stop)
Halts a running process.
virtual void DidLaunch()
Called after launching a process.
virtual Status DisableSoftwareBreakpoint(BreakpointSite *bp_site)
lldb::pid_t GetID() const
Returns the pid of the process or LLDB_INVALID_PROCESS_ID if there is no known pid.
lldb::break_id_t CreateBreakpointSite(const lldb::BreakpointLocationSP &owner, bool use_hardware)
virtual Status WillSignal()
Called before sending a signal to a process.
void ResetImageToken(size_t token)
lldb::JITLoaderListUP m_jit_loaders_up
lldb::addr_t CallocateMemory(size_t size, uint32_t permissions, Status &error)
The public interface to allocating memory in the process, this also clears the allocated memory.
void SetNextEventAction(Process::NextEventAction *next_event_action)
Status Destroy(bool force_kill)
Kills the process and shuts down all threads that were spawned to track and monitor the process.
virtual Status WillDetach()
Called before detaching from a process.
virtual Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info)
Launch a new process.
StopPointSiteList< lldb_private::BreakpointSite > m_breakpoint_site_list
This is the list of breakpoint locations we intend to insert in the target.
void ControlPrivateStateThread(uint32_t signal)
ThreadList & GetThreadList()
void SetAddressableBitMasks(AddressableBits bit_masks)
void ClearPreResumeActions()
virtual DataExtractor GetAuxvData()
Process(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp)
Construct with a shared pointer to a target, and the Process listener.
lldb::ExpressionResults RunThreadPlan(ExecutionContext &exe_ctx, lldb::ThreadPlanSP &thread_plan_sp, const EvaluateExpressionOptions &options, DiagnosticManager &diagnostic_manager)
void PrintWarningUnsupportedLanguage(const SymbolContext &sc)
Print a user-visible warning about a function written in a language that this version of LLDB doesn't...
Status LaunchPrivate(ProcessLaunchInfo &launch_info, lldb::StateType &state, lldb::EventSP &event_sp)
std::vector< std::string > m_profile_data
bool m_can_interpret_function_calls
Status Resume()
Resumes all of a process's threads as configured using the Thread run control functions.
void PruneThreadPlans()
Prune ThreadPlanStacks for all unreported threads.
MemoryRegionInfoCache m_memory_region_infos_cache
void SetUnixSignals(lldb::UnixSignalsSP &&signals_sp)
std::string m_stdout_data
Remember if stdin must be forwarded to remote debug server.
bool RemoveInvalidMemoryRange(const LoadRange ®ion)
DelayedBreakpointCache m_delayed_breakpoints
uint32_t GetNextThreadIndexID(uint64_t thread_id)
Status PrivateResume()
The "private" side of resuming a process.
void SetDynamicCheckers(DynamicCheckerFunctions *dynamic_checkers)
void SendAsyncInterrupt(Thread *thread=nullptr)
Send an async interrupt request.
void AddInvalidMemoryRegion(const LoadRange ®ion)
virtual void ModulesDidLoad(ModuleList &module_list)
InstrumentationRuntimeCollection m_instrumentation_runtimes
llvm::Error ExecuteBreakpointSiteAction(BreakpointSite &site, Process::BreakpointAction action, bool forbid_delay)
Performs action on site.
std::atomic< bool > m_destructing
std::shared_ptr< PrivateStateThread > m_current_private_state_thread_sp
This is filled on construction with the "main" private state which will be exposed to clients of this...
virtual llvm::Error UpdateBreakpointSites(const BreakpointSiteToActionMap &site_to_action)
virtual Status DoGetMemoryRegionInfo(lldb::addr_t load_addr, MemoryRegionInfo &range_info)
DoGetMemoryRegionInfo is called by GetMemoryRegionInfo after it has removed non address bits from loa...
@ eBroadcastInternalStateControlResume
@ eBroadcastInternalStateControlStop
@ eBroadcastInternalStateControlPause
int GetExitStatus()
Get the exit status for a process.
OperatingSystem * GetOperatingSystem()
Status WillAttachToProcessWithID(lldb::pid_t pid)
Called before attaching to a process.
virtual Status DoDetach(bool keep_stopped)
Detaches from a running or stopped process.
std::unique_ptr< UtilityFunction > m_dlopen_utility_func_up
void SetRunningUtilityFunction(bool on)
void DisableAllBreakpointSites()
uint32_t m_process_unique_id
Each lldb_private::Process class that is created gets a unique integer ID that increments with each n...
int64_t ReadSignedIntegerFromMemory(lldb::addr_t load_addr, size_t byte_size, int64_t fail_value, Status &error)
Address AdvanceAddressToNextBranchInstruction(Address default_stop_addr, AddressRange range_bounds)
Find the next branch instruction to set a breakpoint on.
virtual bool GetLoadAddressPermissions(lldb::addr_t load_addr, uint32_t &permissions)
Attempt to get the attributes for a region of memory in the process.
static bool HandleProcessStateChangedEvent(const lldb::EventSP &event_sp, Stream *stream, SelectMostRelevant select_most_relevant, bool &pop_process_io_handler)
Centralize the code that handles and prints descriptions for process state changes.
bool SetPublicRunLockToRunning()
virtual size_t GetAsyncProfileData(char *buf, size_t buf_size, Status &error)
Get any available profile data.
lldb::addr_t FixDataAddress(lldb::addr_t pc)
lldb::addr_t AllocateMemory(size_t size, uint32_t permissions, Status &error)
The public interface to allocating memory in the process.
std::unique_ptr< NextEventAction > m_next_event_action_up
void SetHighmemDataAddressMask(lldb::addr_t data_address_mask)
bool PruneThreadPlansForTID(lldb::tid_t tid)
Prune ThreadPlanStacks for unreported threads.
virtual void DidDetach()
Called after detaching from a process.
std::function< IterationAction(lldb_private::Status &error, lldb::addr_t bytes_addr, const void *bytes, lldb::offset_t bytes_size)> ReadMemoryChunkCallback
void PausePrivateStateThread()
virtual llvm::SmallVector< llvm::MutableArrayRef< uint8_t > > DoReadMemoryRanges(llvm::ArrayRef< Range< lldb::addr_t, size_t > > ranges, llvm::MutableArrayRef< uint8_t > buffer)
Reads each range individually via ReadMemoryFromInferior, bypassing the memory cache.
Status EnableBreakpointSiteByID(lldb::user_id_t break_id)
ProcessModID GetModID() const
Get the Modification ID of the process.
size_t ReadMemoryFromInferior(lldb::addr_t vm_addr, void *buf, size_t size, Status &error)
Read of memory from a process.
size_t ReadScalarIntegerFromMemory(lldb::addr_t addr, uint32_t byte_size, bool is_signed, Scalar &scalar, Status &error)
virtual Status Launch(ProcessLaunchInfo &launch_info)
Launch a new process.
std::mutex m_run_thread_plan_lock
static void SettingsInitialize()
void BroadcastStructuredData(const StructuredData::ObjectSP &object_sp, const lldb::StructuredDataPluginSP &plugin_sp)
Broadcasts the given structured data object from the given plugin.
void Flush()
Flush all data in the process.
bool m_clear_thread_plans_on_stop
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 ResumePrivateStateThread()
void MapSupportedStructuredDataPlugins(const StructuredData::Array &supported_type_names)
Loads any plugins associated with asynchronous structured data and maps the relevant supported type n...
bool GetEventsPrivate(lldb::EventSP &event_sp, const Timeout< std::micro > &timeout, bool control_only)
lldb::ABISP m_abi_sp
This is the current signal set for this process.
virtual void DidSignal()
Called after sending a signal to a process.
virtual size_t ReadMemory(const ProcessAddress &process_addr, void *buf, size_t size, Status &error)
Read of memory from a process.
std::map< lldb::BreakpointSiteSP, BreakpointAction, SiteIDCmp > BreakpointSiteToActionMap
virtual SystemRuntime * GetSystemRuntime()
Get the system runtime plug-in for this process.
void RemoveBreakpointOpcodesFromBuffer(lldb::addr_t addr, size_t size, uint8_t *buf) const
std::map< uint64_t, uint32_t > m_thread_id_to_index_id_map
lldb::StateType GetPrivateState() const
void SetPrivateStateNoLock(lldb::StateType new_state)
bool DumpThreadPlansForTID(Stream &strm, lldb::tid_t tid, lldb::DescriptionLevel desc_level, bool internal, bool condense_trivial, bool skip_unreported_plans)
Dump the thread plans associated with thread with tid.
lldb::ListenerSP m_private_state_listener_sp
uint32_t m_extended_thread_stop_id
The natural stop id when extended_thread_list was last updated.
bool PreResumeActionCallback(void *)
lldb::RunDirection m_base_direction
ThreadPlanBase run direction.
Range< lldb::addr_t, lldb::addr_t > LoadRange
static constexpr llvm::StringRef ResumeSynchronousHijackListenerName
void SetBreakpointSiteEnabled(BreakpointSite &site, bool is_enabled=true)
bool WritePointerToMemory(lldb::addr_t vm_addr, lldb::addr_t ptr_value, Status &error)
QueueList m_queue_list
The list of libdispatch queues at a given stop point.
void ClearPreResumeAction(PreResumeActionCallback callback, void *baton)
virtual Status WillDestroy()
lldb::ThreadSP CreateOSPluginThread(lldb::tid_t tid, lldb::addr_t context)
std::vector< PreResumeCallbackAndBaton > m_pre_resume_actions
void SetCanJIT(bool can_jit)
Sets whether executing JIT-compiled code in this process is possible.
lldb::StateType GetStateChangedEventsPrivate(lldb::EventSP &event_sp, const Timeout< std::micro > &timeout)
void LoadOperatingSystemPlugin(bool flush)
lldb::StructuredDataPluginSP GetStructuredDataPlugin(llvm::StringRef type_name) const
Returns the StructuredDataPlugin associated with a given type name, if there is one.
lldb::DynamicLoaderUP m_dyld_up
friend class ProcessEventData
void ResetExtendedCrashInfoDict()
AddressRanges FindRangesInMemory(const uint8_t *buf, uint64_t size, const AddressRanges &ranges, size_t alignment, size_t max_matches, Status &error)
virtual bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch, ModuleSpec &module_spec)
Try to fetch the module specification for a module with the given file name and architecture.
virtual size_t DoWriteMemory(lldb::addr_t vm_addr, const void *buf, size_t size, Status &error)
Actually do the writing of memory to a process.
virtual Status WriteObjectFile(std::vector< ObjectFile::LoadableData > entries)
std::recursive_mutex m_stdio_communication_mutex
static lldb::ProcessSP FindPlugin(lldb::TargetSP target_sp, llvm::StringRef plugin_name, lldb::ListenerSP listener_sp, const FileSpec *crash_file_path, bool can_connect)
Find a Process plug-in that can debug module using the currently selected architecture.
StopPointSiteList< lldb_private::WatchpointResource > m_watchpoint_resource_list
Watchpoint resources currently in use.
Status DisableBreakpointSiteByID(lldb::user_id_t break_id)
llvm::Expected< const MemoryTagManager * > GetMemoryTagManager()
If this architecture and process supports memory tagging, return a tag manager that can be used to ma...
~Process() override
Destructor.
virtual Status DoWriteMemoryTags(lldb::addr_t addr, size_t len, int32_t type, const std::vector< uint8_t > &tags)
Does the final operation to write memory tags.
std::recursive_mutex m_profile_data_comm_mutex
bool IsBreakpointSitePhysicallyEnabled(const BreakpointSite &site)
std::vector< AddressSpaceInfo > m_address_spaces
A list of address spaces for this process.
lldb::InstrumentationRuntimeSP GetInstrumentationRuntime(lldb::InstrumentationRuntimeType type)
Status ResumeSynchronous(Stream *stream)
Resume a process, and wait for it to stop.
lldb::addr_t FixAnyAddress(lldb::addr_t pc)
Use this method when you do not know, or do not care what kind of address you are fixing.
virtual Status DoWillLaunch(Module *module)
Called before launching to a process.
virtual Status ConnectRemote(llvm::StringRef remote_url)
Attach to a remote system via a URL.
void AppendSTDOUT(const char *s, size_t len)
llvm::StringMap< lldb::StructuredDataPluginSP > m_structured_data_plugin_map
virtual Status DisableBreakpointSite(BreakpointSite *bp_site)
size_t GetThreadStatus(Stream &ostrm, bool only_threads_with_stop_reason, uint32_t start_frame, uint32_t num_frames, uint32_t num_frames_with_source, bool stop_format)
void CalculateExecutionContext(ExecutionContext &exe_ctx) override
Reconstruct the object's execution context into sc.
Event * PeekAtStateChangedEvents()
std::vector< Notifications > m_notifications
The list of notifications that this process can deliver.
bool HasAssignedIndexIDToThread(uint64_t sb_thread_id)
llvm::SmallVector< std::optional< uint64_t > > ReadUnsignedIntegersFromMemory(llvm::ArrayRef< lldb::addr_t > addresses, unsigned byte_size)
Use Process::ReadMemoryRanges to efficiently read multiple unsigned integers from memory at once.
void StopPrivateStateThread()
size_t AddImageToken(lldb::addr_t image_ptr)
llvm::Error FlushDelayedBreakpoints()
lldb::StateType GetPrivateStateNoLock() const
virtual void DoFindInMemory(lldb::addr_t start_addr, lldb::addr_t end_addr, const uint8_t *buf, size_t size, AddressRanges &matches, size_t alignment, size_t max_matches)
virtual bool DestroyRequiresHalt()
lldb::EventSP CreateEventFromProcessState(uint32_t event_type)
StructuredData::DictionarySP m_crash_info_dict_sp
A repository for extra crash information, consulted in GetExtendedCrashInformation.
Status CalculateCoreFileSaveRanges(const SaveCoreOptions &core_options, CoreFileMemoryRanges &ranges)
Helper function for Process::SaveCore(...) that calculates the address ranges that should be saved.
lldb::TargetSP CalculateTarget() override
bool SetPublicRunLockToStopped()
void SetHighmemCodeAddressMask(lldb::addr_t code_address_mask)
lldb::ByteOrder GetByteOrder() const
Status Detach(bool keep_stopped)
Detaches from a running or stopped process.
void UpdateThreadListIfNeeded()
virtual llvm::Expected< std::vector< lldb::addr_t > > ReadMemoryTags(lldb::addr_t addr, size_t len)
Read memory tags for the range addr to addr+len.
virtual void DidResume()
Called after resuming a process.
virtual void DidExec()
Called after a process re-execs itself.
void SetCodeAddressMask(lldb::addr_t code_address_mask)
AllocatedMemoryCache m_allocated_memory_cache
virtual Status LoadCore()
llvm::Expected< lldb::addr_t > ReadPointerFromMemory(lldb::addr_t vm_addr)
std::mutex m_exit_status_mutex
Mutex so m_exit_status m_exit_string can be safely accessed from multiple threads.
Status Signal(int signal)
Sends a process a UNIX signal signal.
void SetDynamicLoader(lldb::DynamicLoaderUP dyld)
ThreadPlanStackMap m_thread_plans
This is the list of thread plans for threads in m_thread_list, as well as threads we knew existed,...
std::recursive_mutex m_thread_mutex
virtual Status ConfigureStructuredData(llvm::StringRef type_name, const StructuredData::ObjectSP &config_sp)
Configure asynchronous structured data feature.
virtual Status DoWillAttachToProcessWithName(const char *process_name, bool wait_for_launch)
Called before attaching to a process.
bool m_currently_handling_do_on_removals
void HandlePrivateEvent(lldb::EventSP &event_sp)
void BroadcastAsyncProfileData(const std::string &one_profile_data)
lldb::StateType GetState()
Get accessor for the current process state.
virtual Status DoWillAttachToProcessWithID(lldb::pid_t pid)
Called before attaching to a process.
ProcessRunLock & GetRunLock()
virtual Status DoLoadCore()
Predicate< uint32_t > m_iohandler_sync
LanguageRuntimeCollection m_language_runtimes
Should we detach if the process object goes away with an explicit call to Kill or Detach?
virtual Status GetMemoryRegions(lldb_private::MemoryRegionInfos ®ion_list)
Obtain all the mapped memory regions within this process.
size_t WriteMemoryPrivate(lldb::addr_t addr, const void *buf, size_t size, Status &error)
void SetRunningUserExpression(bool on)
enum lldb_private::Process::@120260360120067272255351105340035202127223005263 m_can_jit
bool IsPossibleDynamicValue(ValueObject &in_value)
std::recursive_mutex m_delayed_breakpoints_mutex
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 RemoveConstituentFromBreakpointSite(lldb::user_id_t site_id, lldb::user_id_t constituent_id, lldb::BreakpointSiteSP &bp_site_sp)
void VerifyMemoryRead(lldb::addr_t addr, const void *cache_buf, size_t cache_bytes_read, size_t size, const Status &cache_error)
Re-read size bytes at addr and assert they match the cache.
lldb::addr_t FindInMemory(lldb::addr_t low, lldb::addr_t high, const uint8_t *buf, size_t size)
Find a pattern within a memory region.
lldb::OperatingSystemUP m_os_up
uint32_t GetLastNaturalStopID() const
lldb::StateType WaitForProcessToStop(const Timeout< std::micro > &timeout, lldb::EventSP *event_sp_ptr=nullptr, bool wait_always=true, lldb::ListenerSP hijack_listener=lldb::ListenerSP(), Stream *stream=nullptr, bool use_run_lock=true, SelectMostRelevant select_most_relevant=DoNoSelectMostRelevantFrame)
lldb::UnixSignalsSP m_unix_signals_sp
bool StateChangedIsHijackedForSynchronousResume()
const char * GetExitDescription()
Get a textual description of what the process exited.
void SetPublicState(lldb::StateType new_state, bool restarted)
lldb::tid_t m_interrupt_tid
void SetDataAddressMask(lldb::addr_t data_address_mask)
virtual Status DoConnectRemote(llvm::StringRef remote_url)
Attach to a remote system via a URL.
uint64_t ReadUnsignedIntegerFromMemory(lldb::addr_t load_addr, size_t byte_size, uint64_t fail_value, Status &error)
Reads an unsigned integer of the specified byte size from process memory.
llvm::once_flag m_dlopen_utility_func_flag_once
void AddCacheData(lldb::addr_t addr, const lldb::WritableDataBufferSP &data_buffer_sp)
Cache memory and substitute the breakpoint opcode in it.
virtual void UpdateQueueListIfNeeded()
virtual Status UpdateAutomaticSignalFiltering()
virtual lldb::addr_t GetImageInfoAddress()
Get the image information address for the current process.
std::map< lldb::addr_t, lldb::addr_t > m_resolved_indirect_addresses
This helps with the Public event coalescing in ShouldBroadcastEvent.
virtual Status DoAttachToProcessWithID(lldb::pid_t pid, const ProcessAttachInfo &attach_info)
Attach to an existing process using a process ID.
llvm::SmallVector< std::optional< std::string > > ReadCStringsFromMemory(llvm::ArrayRef< lldb::addr_t > addresses)
void SetCanRunCode(bool can_run_code)
Sets whether executing code in this process is possible.
Status ClearBreakpointSiteByID(lldb::user_id_t break_id)
virtual Status EnableSoftwareBreakpoint(BreakpointSite *bp_site)
void AppendSTDERR(const char *s, size_t len)
bool GetShouldDetach() const
static llvm::StringRef GetStaticBroadcasterClass()
uint32_t m_thread_index_id
Each thread is created with a 1 based index that won't get re-used.
bool ProcessIOHandlerExists() const
virtual Status DoResume(lldb::RunDirection direction)
Resumes all of a process's threads as configured using the Thread run control functions.
bool RouteAsyncStructuredData(const StructuredData::ObjectSP object_sp)
Route the incoming structured data dictionary to the right plugin.
virtual void DidDestroy()
lldb::offset_t ReadMemoryInChunks(lldb::addr_t vm_addr, void *buf, lldb::addr_t chunk_size, lldb::offset_t total_size, ReadMemoryChunkCallback callback)
Read of memory from a process in discrete chunks, terminating either when all bytes are read,...
bool IsBreakpointSiteEnabled(const BreakpointSite &site)
Broadcaster m_private_state_control_broadcaster
lldb::addr_t GetHighmemCodeAddressMask()
The highmem masks are for targets where we may have different masks for low memory versus high memory...
bool PushProcessIOHandler()
Broadcaster m_private_state_broadcaster
virtual bool DetachRequiresHalt()
virtual bool IsAlive()
Check if a process is still alive.
bool m_destroy_in_process
ThreadList m_thread_list_real
The threads for this process as are known to the protocol we are debugging with.
lldb::addr_t m_data_address_mask
virtual ArchSpec GetSystemArchitecture()
Get the system architecture for this process.
Status DeallocateMemory(lldb::addr_t ptr)
The public interface to deallocating memory in the process.
virtual Status DisableWatchpoint(lldb::WatchpointSP wp_sp, bool notify=true)
void RegisterNotificationCallbacks(const Process::Notifications &callbacks)
Register for process and thread notifications.
virtual void DidAttach(ArchSpec &process_arch)
Called after attaching a process.
virtual lldb::addr_t ResolveIndirectFunction(const Address *address, Status &error)
Resolve dynamically loaded indirect functions.
lldb::StateType m_last_broadcast_state
LanguageRuntime * GetLanguageRuntime(lldb::LanguageType language)
ProcessModID m_mod_id
Tracks the state of the process over stops and other alterations.
virtual bool FindModuleUUID(ModuleSpec &spec)
Given a module spec, try to find the UUID information.
void SetID(lldb::pid_t new_pid)
Sets the stored pid.
virtual JITLoaderList & GetJITLoaders()
uint32_t AssignIndexIDToThread(uint64_t thread_id)
virtual bool SetExitStatus(int exit_status, llvm::StringRef exit_string)
Set accessor for the process exit status (return code).
uint32_t m_queue_list_stop_id
The natural stop id when queue list was last fetched.
void PrintWarningOptimization(const SymbolContext &sc)
Print a user-visible warning about a module being built with optimization.
@ eBroadcastBitStructuredData
@ eBroadcastBitStateChanged
@ eBroadcastBitProfileData
virtual std::optional< bool > DoGetWatchpointReportedAfter()
Provide an override value in the subclass for lldb's CPU-based logic for whether watchpoint exception...
static ProcessProperties & GetGlobalProperties()
lldb::addr_t m_highmem_code_address_mask
lldb::addr_t GetImagePtrFromToken(size_t token) const
int m_exit_status
The exit status of the process, or -1 if not set.
std::vector< LanguageRuntime * > GetLanguageRuntimes()
void SetShouldDetach(bool b)
bool StartPrivateStateThread(lldb::StateType state, bool run_lock_is_running, std::shared_ptr< PrivateStateThread > *backup_ptr=nullptr)
MemoryCache m_memory_cache
static void STDIOReadThreadBytesReceived(void *baton, const void *src, size_t src_len)
virtual bool GetProcessInfo(ProcessInstanceInfo &info)
virtual void DidHalt()
Called after halting a process.
lldb::addr_t FixCodeAddress(lldb::addr_t pc)
Some targets might use bits in a code address to indicate a mode switch, ARM uses bit zero to signify...
lldb::StateType WaitForProcessStopPrivate(lldb::EventSP &event_sp, const Timeout< std::micro > &timeout)
void RestoreProcessEvents()
Restores the process event broadcasting to its normal state.
virtual bool SupportsMemoryTagging()
Check whether the process supports memory tagging.
bool SetPrivateRunLockToRunning()
void DumpThreadPlans(Stream &strm, lldb::DescriptionLevel desc_level, bool internal, bool condense_trivial, bool skip_unreported_plans)
Dump all the thread plans for this process.
uint32_t GetAddressByteSize() const
uint32_t GetStopID() const
void SetPrivateState(lldb::StateType state)
llvm::Expected< AddressSpaceInfo > GetAddressSpaceInfo(llvm::StringRef address_space_name)
lldb::addr_t m_highmem_data_address_mask
virtual Status DoDestroy()=0
Status StopForDestroyOrDetach(lldb::EventSP &exit_event_sp)
bool GetWatchpointReportedAfter()
Whether lldb will be notified about watchpoints after the instruction has completed executing,...
lldb::StateType GetNextEvent(lldb::EventSP &event_sp)
virtual bool DoUpdateThreadList(ThreadList &old_thread_list, ThreadList &new_thread_list)=0
Update the thread list following process plug-in's specific logic.
virtual llvm::Expected< std::vector< uint8_t > > DoReadMemoryTags(lldb::addr_t addr, size_t len, int32_t type)
Does the final operation to read memory tags.
bool StateChangedIsExternallyHijacked()
bool RunPreResumeActions()
lldb::StateType GetPublicState() const
bool PopProcessIOHandler()
virtual size_t GetSTDERR(char *buf, size_t buf_size, Status &error)
Get any available STDERR.
size_t WriteMemory(lldb::addr_t vm_addr, const void *buf, size_t size, Status &error)
Write memory to a process.
virtual llvm::Expected< bool > SaveCore(llvm::StringRef outfile)
Save core dump into the specified file.
bool ProcessIOHandlerIsActive()
Status DestroyImpl(bool force_kill)
bool m_force_next_event_delivery
void GetStatus(Stream &ostrm, bool is_verbose=false)
lldb::SystemRuntimeUP m_system_runtime_up
virtual Status WillHalt()
Called before halting to a process.
bool ShouldBroadcastEvent(Event *event_ptr)
This is the part of the event handling that for a process event.
virtual DynamicLoader * GetDynamicLoader()
Get the dynamic loader plug-in for this process.
std::string m_exit_string
A textual description of why a process exited.
lldb::DynamicCheckerFunctionsUP m_dynamic_checkers_up
The functions used by the expression parser to validate data that expressions use.
void SyncIOHandler(uint32_t iohandler_id, const Timeout< std::micro > &timeout)
Waits for the process state to be running within a given msec timeout.
void ForceNextEventDelivery()
ThreadPlanStack * FindThreadPlans(lldb::tid_t tid)
Find the thread plan stack associated with thread with tid.
void SetSTDIOFileDescriptor(int file_descriptor)
Associates a file descriptor with the process' STDIO handling and configures an asynchronous reading ...
virtual Status Attach(ProcessAttachInfo &attach_info)
Attach to an existing process using the process attach info.
virtual void Finalize(bool destructing)
This object is about to be destroyed, do any necessary cleanup.
lldb::addr_t GetDataAddressMask()
std::recursive_mutex & GetPrivateStateMutex()
virtual bool ShouldUseDelayedBreakpoints() const
Reports whether this process should delay physically enabling/disabling breakpoints until the process...
void SynchronouslyNotifyStateChanged(lldb::StateType state)
bool SetPrivateRunLockToStopped()
bool CanJIT()
Determines whether executing JIT-compiled code in this process is possible.
virtual Status DoAttachToProcessWithName(const char *process_name, const ProcessAttachInfo &attach_info)
Attach to an existing process using a partial process name.
ThreadList m_thread_list
The threads for this process as the user will see them.
bool UpdateThreadList(ThreadList &old_thread_list, ThreadList &new_thread_list)
Update the thread list.
const lldb::UnixSignalsSP & GetUnixSignals()
void SetBaseDirection(lldb::RunDirection direction)
Set the base run direction for the process.
Status WriteMemoryTags(lldb::addr_t addr, size_t len, const std::vector< lldb::addr_t > &tags)
Write memory tags for a range of memory.
virtual size_t DoReadMemory(const ProcessAddress &process_addr, void *buf, size_t size, Status &error)=0
Actually do the reading of memory from a process.
virtual std::optional< CoreArgs > GetCoreFileArgs()
Provide arguments of a command that triggered a core dump.
virtual bool IsLiveDebugSession() const
Check if a process is a live debug session, or a corefile/post-mortem.
std::weak_ptr< Target > m_target_wp
The target that owns this process.
virtual void DoDidExec()
Subclasses of Process should implement this function if they need to do anything after a process exec...
llvm::SmallVector< std::optional< lldb::addr_t > > ReadPointersFromMemory(llvm::ArrayRef< lldb::addr_t > ptr_locs)
Use Process::ReadMemoryRanges to efficiently read multiple pointers from memory at once.
virtual void RefreshStateAfterStop()=0
Currently called as part of ShouldStop.
llvm::SmallVector< llvm::MutableArrayRef< uint8_t > > ReadMemoryRanges(llvm::ArrayRef< Range< lldb::addr_t, size_t > > ranges, llvm::MutableArrayRef< uint8_t > buffer)
Read from multiple memory ranges and write the results into buffer.
lldb::addr_t GetCodeAddressMask()
Get the current address mask in the Process.
bool UnregisterNotificationCallbacks(const Process::Notifications &callbacks)
Unregister for process and thread notifications.
bool HijackProcessEvents(lldb::ListenerSP listener_sp)
If you need to ensure that you and only you will hear about some public event, then make a new listen...
Status GetMemoryRegionInfo(lldb::addr_t load_addr, MemoryRegionInfo &range_info)
Locate the memory region that contains load_addr.
friend class DynamicLoader
static void SettingsTerminate()
lldb::addr_t GetHighmemDataAddressMask()
ThreadList m_extended_thread_list
Constituent for extended threads that may be generated, cleared on natural stops.
bool CallVoidArgVoidPtrReturn(const Address *address, lldb::addr_t &returned_func, bool trap_exceptions=false)
void AddPreResumeAction(PreResumeActionCallback callback, void *baton)
size_t GetSoftwareBreakpointTrapOpcode(BreakpointSite *bp_site)
Status Halt(bool clear_thread_plans=false, bool use_run_lock=true)
Halts a running process.
const lldb::ABISP & GetABI()
Status WillLaunch(Module *module)
Called before launching to a process.
std::vector< lldb::ThreadSP > CalculateCoreFileThreadList(const SaveCoreOptions &core_options)
Helper function for Process::SaveCore(...) that calculates the thread list based upon options set wit...
size_t WriteScalarToMemory(lldb::addr_t vm_addr, const Scalar &scalar, size_t size, Status &error)
Write all or part of a scalar value to memory.
virtual size_t GetSTDOUT(char *buf, size_t buf_size, Status &error)
Get any available STDOUT.
lldb::ThreadCollectionSP GetHistoryThreads(lldb::addr_t addr)
bool PrivateStateThreadIsRunning() const
lldb::thread_result_t RunPrivateStateThread(PrivateStateThread::Purpose purpose)
lldb::StateType GetStateChangedEvents(lldb::EventSP &event_sp, const Timeout< std::micro > &timeout, lldb::ListenerSP hijack_listener)
ThreadedCommunication m_stdio_communication
std::atomic< bool > m_finalizing
The tid of the thread that issued the async interrupt, used by thread plan timeout.
std::recursive_mutex m_language_runtimes_mutex
std::string m_stderr_data
Target & GetTarget()
Get the target object pointer for this module.
virtual Status EnableWatchpoint(lldb::WatchpointSP wp_sp, bool notify=true)
lldb::OptionValuePropertiesSP m_collection_sp
T GetPropertyAtIndexAs(uint32_t idx, T default_value, const ExecutionContext *exe_ctx=nullptr) const
static llvm::StringRef GetExperimentalSettingsName()
bool SetPropertyAtIndex(uint32_t idx, T t, const ExecutionContext *exe_ctx=nullptr) const
lldb::OptionValuePropertiesSP GetValueProperties() const
void Append(const Entry &entry)
uint64_t GetPC(uint64_t fail_value=LLDB_INVALID_ADDRESS)
lldb::SaveCoreStyle GetStyle() const
bool HasSpecifiedThreads() const
const MemoryRanges & GetCoreFileMemoryRanges() const
bool ShouldThreadBeSaved(lldb::tid_t tid) const
size_t GetByteSize() const
bool SignExtend(uint32_t bit_pos)
unsigned long long ULongLong(unsigned long long fail_value=0) const
Scalar::Type GetType() const
size_t GetAsMemoryData(void *dst, size_t dst_len, lldb::ByteOrder dst_byte_order, Status &error) const
long long SLongLong(long long fail_value=0) const
This base class provides an interface to stack frames.
virtual StackID & GetStackID()
void CalculateExecutionContext(ExecutionContext &exe_ctx) override
Reconstruct the object's execution context into sc.
void Clear()
Clear the object state.
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
static Status FromErrorString(const char *str)
bool Fail() const
Test for error condition.
const char * AsCString(const char *default_error_str="unknown error") const
Get the error string associated with the current error.
static Status FromError(llvm::Error error)
Avoid using this in new code. Migrate APIs to llvm::Expected instead.
bool Success() const
Test for success condition.
static lldb::ValueObjectSP GetCrashingDereference(lldb::StopInfoSP &stop_info_sp, lldb::addr_t *crashing_address=nullptr)
void ForEach(std::function< void(StopPointSite *)> const &callback)
lldb::break_id_t GetID() const
virtual lldb::addr_t GetLoadAddress() const
uint32_t GetByteSize() const
lldb::break_id_t GetID() const
const char * GetData() const
llvm::StringRef GetString() const
A stream class that can stream formatted output to a file.
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
bool ForEach(std::function< bool(Object *object)> const &foreach_callback) const
bool GetValueForKeyAsString(llvm::StringRef key, llvm::StringRef &result) const
A class which can hold structured data.
std::shared_ptr< Object > ObjectSP
Defines a symbol context baton that can be handed other debug core functions.
lldb::LanguageType GetLanguage() const
Function * function
The Function for a given query.
lldb::ModuleSP module_sp
The Module for a given query.
lldb::addr_t GetLoadAddress(Target *target) const
ConstString GetName() const
Address GetAddress() const
A plug-in interface definition class for system runtimes.
virtual void DidAttach()
Called after attaching to a process.
void ModulesDidLoad(const ModuleList &module_list) override
Called when modules have been loaded in the process.
virtual void DidLaunch()
Called after launching a process.
static SystemRuntime * FindPlugin(Process *process)
Find a system runtime plugin for a given process.
uint32_t GetIndexOfTarget(lldb::TargetSP target_sp) const
lldb::TargetSP GetSelectedTarget()
bool SetPreferDynamicValue(lldb::DynamicValueType d)
bool GetUseFastStepping() const
lldb::DynamicValueType GetPreferDynamicValue() const
void SetFirstPrivateStopTime()
void SetFirstPublicStopTime()
Module * GetExecutableModulePointer()
Debugger & GetDebugger() const
void UpdateSignalsFromDummy(lldb::UnixSignalsSP signals_sp, lldb::StreamSP warning_stream_sp)
Updates the signals in signals_sp using the stored dummy signals.
void ClearAllLoadedSections()
void ClearModules(bool delete_locations)
Architecture * GetArchitecturePlugin() const
TargetStats & GetStatistics()
bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform=false, bool merge=true)
Set the architecture for this target.
llvm::Expected< lldb::TypeSystemSP > GetScratchTypeSystemForLanguage(lldb::LanguageType language, bool create_on_demand=true)
lldb::ModuleSP GetExecutableModule()
Gets the module for the main executable.
void DidExec()
Called as the last function in Process::DidExec().
bool RunStopHooks(bool at_initial_stop=false)
Status Install(ProcessLaunchInfo *launch_info)
lldb::PlatformSP GetPlatform()
const ArchSpec & GetArchitecture() const
void SetExecutableModule(lldb::ModuleSP &module_sp, LoadDependentFiles load_dependent_files=eLoadDependentsDefault)
Set the main executable module.
void SetPlatform(const lldb::PlatformSP &platform_sp)
virtual ThreadIterable Threads()
static llvm::Expected< HostThread > LaunchThread(llvm::StringRef name, std::function< lldb::thread_result_t()> thread_function, size_t min_stack_byte_size=0)
lldb::ThreadSP GetSelectedThread()
uint32_t GetSize(bool can_update=true)
bool SetSelectedThreadByID(lldb::tid_t tid, bool notify=false)
lldb::ThreadSP FindThreadByIndexID(uint32_t index_id, bool can_update=true)
lldb::ThreadSP GetThreadAtIndex(uint32_t idx, bool can_update=true)
std::recursive_mutex & GetMutex() const override
lldb::ThreadSP GetExpressionExecutionThread()
static void SettingsInitialize()
static void SettingsTerminate()
static ThreadProperties & GetGlobalProperties()
Represents UUID's of various sizes.
RAII guard that should be acquired when an utility function is called within a given process.
"lldb/Expression/UtilityFunction.h" Encapsulates a bit of source code that provides a function that i...
lldb::LanguageType GetObjectRuntimeLanguage()
uint8_t * GetBytes()
Get a pointer to the data.
#define LLDB_INVALID_BREAK_ID
#define LLDB_INVALID_ADDRESS_MASK
Address Mask Bits not used for addressing are set to 1 in the mask; all mask bits set is an invalid v...
#define LLDB_INVALID_THREAD_ID
#define UNUSED_IF_ASSERT_DISABLED(x)
#define LLDB_INVALID_ADDRESS
#define LLDB_INVALID_PROCESS_ID
@ DoNoSelectMostRelevantFrame
@ SelectMostRelevantFrame
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.
bool StateIsStoppedState(lldb::StateType state, bool must_exist)
Check if a state represents a state where the process or thread is stopped.
void RegisterAssertFrameRecognizer(Process *process)
Registers the assert stack frame recognizer.
bool StateIsRunningState(lldb::StateType state)
Check if a state represents a state where the process or thread is running.
lldb::ProcessSP(* ProcessCreateInstance)(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp, const FileSpec *crash_file_path, bool can_connect)
@ eBroadcastAlways
Always send a broadcast when the value is modified.
const char * StateAsCString(lldb::StateType state)
Converts a StateType to a C string.
std::vector< ProcessInstanceInfo > ProcessInstanceInfoList
static uint32_t bits(const uint32_t val, const uint32_t msbit, const uint32_t lsbit)
std::shared_ptr< lldb_private::OptionValueProperties > OptionValuePropertiesSP
std::shared_ptr< lldb_private::ThreadPlan > ThreadPlanSP
std::shared_ptr< lldb_private::ABI > ABISP
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
std::shared_ptr< lldb_private::BreakpointSite > BreakpointSiteSP
std::shared_ptr< lldb_private::BreakpointLocation > BreakpointLocationSP
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.
@ eDescriptionLevelVerbose
RunDirection
Execution directions.
std::shared_ptr< lldb_private::IOHandler > IOHandlerSP
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
std::shared_ptr< lldb_private::UnixSignals > UnixSignalsSP
std::shared_ptr< lldb_private::Platform > PlatformSP
StateType
Process and Thread States.
@ eStateUnloaded
Process is object is valid, but not currently loaded.
@ eStateConnected
Process is connected to remote debug services, but not launched or attached to anything yet.
@ eStateDetached
Process has been detached and can't be examined.
@ eStateStopped
Process or thread is stopped and can be examined.
@ eStateSuspended
Process or thread is in a suspended state as far as the debugger is concerned while other processes o...
@ eStateRunning
Process or thread is running and can't be examined.
@ eStateLaunching
Process is in the process of launching.
@ eStateAttaching
Process is currently trying to attach.
@ eStateExited
Process has exited and can't be examined.
@ eStateStepping
Process or thread is in the process of stepping and can not be examined.
@ eStateCrashed
Process or thread has crashed and can be examined.
LanguageType
Programming language type.
@ eLanguageTypeMipsAssembler
Mips_Assembler.
@ eLanguageTypeUnknown
Unknown or invalid language value.
@ eLanguageTypeC
Non-standardized C, such as K&R.
std::shared_ptr< lldb_private::MemoryHistory > MemoryHistorySP
ExpressionResults
The results of expression evaluation.
@ eExpressionHitBreakpoint
@ eExpressionStoppedForDebug
@ eExpressionThreadVanished
std::shared_ptr< lldb_private::StructuredDataPlugin > StructuredDataPluginSP
std::shared_ptr< lldb_private::Process > ProcessSP
InstrumentationRuntimeType
std::shared_ptr< lldb_private::Disassembler > DisassemblerSP
std::shared_ptr< lldb_private::LanguageRuntime > LanguageRuntimeSP
std::shared_ptr< lldb_private::Event > EventSP
std::unique_ptr< lldb_private::DynamicLoader > DynamicLoaderUP
ByteOrder
Byte ordering definitions.
std::shared_ptr< lldb_private::Watchpoint > WatchpointSP
std::shared_ptr< lldb_private::Listener > ListenerSP
std::shared_ptr< lldb_private::StopInfo > StopInfoSP
std::shared_ptr< lldb_private::WritableDataBuffer > WritableDataBufferSP
StopReason
Thread stop reasons.
@ eStopReasonPlanComplete
std::shared_ptr< lldb_private::Target > TargetSP
std::shared_ptr< lldb_private::RegisterContext > RegisterContextSP
std::shared_ptr< lldb_private::InstrumentationRuntime > InstrumentationRuntimeSP
std::shared_ptr< lldb_private::Module > ModuleSP
std::shared_ptr< lldb_private::OptionValue > OptionValueSP
std::shared_ptr< lldb_private::ThreadCollection > ThreadCollectionSP
A single address space reported by a process.
lldb::addr_space_t space_id
A SmallBitVector that represents a set of source languages (lldb::LanguageType).
Describes what view of the process a thread should see and what operations it is allowed to perform.
@ Private
Parent (unwinder) frames, private state, private run lock.
BreakpointSiteToActionMap m_site_to_action
void Enqueue(lldb::BreakpointSiteSP site, BreakpointAction action)
A notification structure that can be used by clients to listen for changes in a process's lifetime.
void(* process_state_changed)(void *baton, Process *process, lldb::StateType state)
void(* initialize)(void *baton, Process *process)
The PrivateStateThread struct gathers all the bits of state needed to manage handling Process events,...
ProcessRunLock m_public_run_lock
Process & m_process
The process state that we show to client code.
ProcessRunLock & GetRunLock()
Purpose m_purpose
This will be the thread name given to the Private State HostThread when it gets spun up.
HostThread m_private_state_thread
bool IsOnThread(const HostThread &thread) const
std::string m_thread_name
Policy::PrivateStatePurpose Purpose
Why this PST exists.
ProcessRunLock m_private_run_lock
bool Contains(BaseType r) const
BaseType GetRangeBase() const
SizeType GetByteSize() const
void SetRangeBase(BaseType b)
Set the start value for the range, and keep the same size.
BaseType GetRangeEnd() const
Range Intersect(const Range &rhs) const
void SetByteSize(SizeType s)
std::optional< ExitDescription > exit_desc
Helper RAII class for collecting telemetry.
void DispatchOnExit(llvm::unique_function< void(Info *info)> final_callback)
void DispatchNow(llvm::unique_function< void(Info *info)> populate_fields_cb)
void SetDebugger(Debugger *debugger)