blob: 45bb2d4c28e71a7ee5854c79d38c53a4c09f6fff [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- ProcessGDBRemote.h --------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_ProcessGDBRemote_h_
11#define liblldb_ProcessGDBRemote_h_
12
13// C Includes
Chris Lattner30fdc8d2010-06-08 16:52:24 +000014// C++ Includes
Eugene Zelenkoedb35d92015-10-24 01:08:35 +000015#include <atomic>
16#include <map>
Saleem Abdulrasool16ff8602016-05-18 01:59:10 +000017#include <mutex>
Eugene Zelenkoedb35d92015-10-24 01:08:35 +000018#include <string>
Greg Clayton71fc2a32011-02-12 06:28:37 +000019#include <vector>
Chris Lattner30fdc8d2010-06-08 16:52:24 +000020
Chris Lattner30fdc8d2010-06-08 16:52:24 +000021#include "lldb/Core/Broadcaster.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000022#include "lldb/Core/LoadedModuleInfoList.h"
Pavel Labath2f1fbae2016-09-08 10:07:04 +000023#include "lldb/Core/ModuleSpec.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000024#include "lldb/Core/ThreadSafeValue.h"
Zachary Turner39de3112014-09-09 20:54:56 +000025#include "lldb/Host/HostThread.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000026#include "lldb/Target/Process.h"
27#include "lldb/Target/Thread.h"
Pavel Labath5f19b902017-11-13 16:16:33 +000028#include "lldb/Utility/ArchSpec.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000029#include "lldb/Utility/ConstString.h"
Zachary Turner97206d52017-05-12 04:51:55 +000030#include "lldb/Utility/Status.h"
Ravitheja Addepallye714c4f2017-05-26 11:46:27 +000031#include "lldb/Utility/StreamGDBRemote.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000032#include "lldb/Utility/StreamString.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000033#include "lldb/Utility/StringExtractor.h"
Zachary Turner573ab902017-03-21 18:25:04 +000034#include "lldb/Utility/StringList.h"
Pavel Labathf2a8bcc2017-06-27 10:45:31 +000035#include "lldb/Utility/StructuredData.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000036#include "lldb/lldb-private-forward.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000037
Greg Clayton576d8832011-03-22 04:00:09 +000038#include "GDBRemoteCommunicationClient.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000039#include "GDBRemoteRegisterContext.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000040
Pavel Labath2f1fbae2016-09-08 10:07:04 +000041#include "llvm/ADT/DenseMap.h"
42
Tamas Berghammerdb264a62015-03-31 09:52:22 +000043namespace lldb_private {
44namespace process_gdb_remote {
45
Chris Lattner30fdc8d2010-06-08 16:52:24 +000046class ThreadGDBRemote;
47
Kate Stoneb9c1b512016-09-06 20:57:50 +000048class ProcessGDBRemote : public Process,
49 private GDBRemoteClientBase::ContinueDelegate {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000050public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000051 ProcessGDBRemote(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp);
Eugene Zelenkoedb35d92015-10-24 01:08:35 +000052
Kate Stoneb9c1b512016-09-06 20:57:50 +000053 ~ProcessGDBRemote() override;
Eugene Zelenkoedb35d92015-10-24 01:08:35 +000054
Kate Stoneb9c1b512016-09-06 20:57:50 +000055 static lldb::ProcessSP CreateInstance(lldb::TargetSP target_sp,
56 lldb::ListenerSP listener_sp,
57 const FileSpec *crash_file_path);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000058
Kate Stoneb9c1b512016-09-06 20:57:50 +000059 static void Initialize();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000060
Kate Stoneb9c1b512016-09-06 20:57:50 +000061 static void DebuggerInitialize(Debugger &debugger);
Greg Clayton7f982402013-07-15 22:54:20 +000062
Kate Stoneb9c1b512016-09-06 20:57:50 +000063 static void Terminate();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000064
Kate Stoneb9c1b512016-09-06 20:57:50 +000065 static ConstString GetPluginNameStatic();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000066
Kate Stoneb9c1b512016-09-06 20:57:50 +000067 static const char *GetPluginDescriptionStatic();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000068
Kate Stoneb9c1b512016-09-06 20:57:50 +000069 //------------------------------------------------------------------
70 // Check if a given Process
71 //------------------------------------------------------------------
72 bool CanDebug(lldb::TargetSP target_sp,
73 bool plugin_specified_by_name) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000074
Kate Stoneb9c1b512016-09-06 20:57:50 +000075 CommandObject *GetPluginCommandObject() override;
Jim Ingham5aee1622010-08-09 23:31:02 +000076
Kate Stoneb9c1b512016-09-06 20:57:50 +000077 //------------------------------------------------------------------
78 // Creating a new process, or attaching to an existing one
79 //------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +000080 Status WillLaunch(Module *module) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000081
Zachary Turner97206d52017-05-12 04:51:55 +000082 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000083
Kate Stoneb9c1b512016-09-06 20:57:50 +000084 void DidLaunch() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000085
Zachary Turner97206d52017-05-12 04:51:55 +000086 Status WillAttachToProcessWithID(lldb::pid_t pid) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000087
Zachary Turner97206d52017-05-12 04:51:55 +000088 Status WillAttachToProcessWithName(const char *process_name,
89 bool wait_for_launch) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000090
Zachary Turner97206d52017-05-12 04:51:55 +000091 Status DoConnectRemote(Stream *strm, llvm::StringRef remote_url) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000092
Zachary Turner97206d52017-05-12 04:51:55 +000093 Status WillLaunchOrAttach();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000094
Zachary Turner97206d52017-05-12 04:51:55 +000095 Status DoAttachToProcessWithID(lldb::pid_t pid,
96 const ProcessAttachInfo &attach_info) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000097
Zachary Turner97206d52017-05-12 04:51:55 +000098 Status
Kate Stoneb9c1b512016-09-06 20:57:50 +000099 DoAttachToProcessWithName(const char *process_name,
100 const ProcessAttachInfo &attach_info) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000101
Kate Stoneb9c1b512016-09-06 20:57:50 +0000102 void DidAttach(ArchSpec &process_arch) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000103
Kate Stoneb9c1b512016-09-06 20:57:50 +0000104 //------------------------------------------------------------------
105 // PluginInterface protocol
106 //------------------------------------------------------------------
107 ConstString GetPluginName() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000108
Kate Stoneb9c1b512016-09-06 20:57:50 +0000109 uint32_t GetPluginVersion() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000110
Kate Stoneb9c1b512016-09-06 20:57:50 +0000111 //------------------------------------------------------------------
112 // Process Control
113 //------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000114 Status WillResume() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000115
Zachary Turner97206d52017-05-12 04:51:55 +0000116 Status DoResume() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000117
Zachary Turner97206d52017-05-12 04:51:55 +0000118 Status DoHalt(bool &caused_stop) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000119
Zachary Turner97206d52017-05-12 04:51:55 +0000120 Status DoDetach(bool keep_stopped) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000121
Kate Stoneb9c1b512016-09-06 20:57:50 +0000122 bool DetachRequiresHalt() override { return true; }
Chaoren Linc963a222015-09-01 16:58:45 +0000123
Zachary Turner97206d52017-05-12 04:51:55 +0000124 Status DoSignal(int signal) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000125
Zachary Turner97206d52017-05-12 04:51:55 +0000126 Status DoDestroy() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000127
Kate Stoneb9c1b512016-09-06 20:57:50 +0000128 void RefreshStateAfterStop() override;
Greg Clayton2e309072015-07-17 23:42:28 +0000129
Kate Stoneb9c1b512016-09-06 20:57:50 +0000130 void SetUnixSignals(const lldb::UnixSignalsSP &signals_sp);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000131
Kate Stoneb9c1b512016-09-06 20:57:50 +0000132 //------------------------------------------------------------------
133 // Process Queries
134 //------------------------------------------------------------------
135 bool IsAlive() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000136
Kate Stoneb9c1b512016-09-06 20:57:50 +0000137 lldb::addr_t GetImageInfoAddress() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000138
Kate Stoneb9c1b512016-09-06 20:57:50 +0000139 void WillPublicStop() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000140
Kate Stoneb9c1b512016-09-06 20:57:50 +0000141 //------------------------------------------------------------------
142 // Process Memory
143 //------------------------------------------------------------------
144 size_t DoReadMemory(lldb::addr_t addr, void *buf, size_t size,
Zachary Turner97206d52017-05-12 04:51:55 +0000145 Status &error) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000146
Pavel Labath16064d32018-03-20 11:56:24 +0000147 Status
148 WriteObjectFile(std::vector<ObjectFile::LoadableData> entries) override;
149
Kate Stoneb9c1b512016-09-06 20:57:50 +0000150 size_t DoWriteMemory(lldb::addr_t addr, const void *buf, size_t size,
Zachary Turner97206d52017-05-12 04:51:55 +0000151 Status &error) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000152
Kate Stoneb9c1b512016-09-06 20:57:50 +0000153 lldb::addr_t DoAllocateMemory(size_t size, uint32_t permissions,
Zachary Turner97206d52017-05-12 04:51:55 +0000154 Status &error) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000155
Zachary Turner97206d52017-05-12 04:51:55 +0000156 Status GetMemoryRegionInfo(lldb::addr_t load_addr,
157 MemoryRegionInfo &region_info) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000158
Zachary Turner97206d52017-05-12 04:51:55 +0000159 Status DoDeallocateMemory(lldb::addr_t ptr) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000160
Kate Stoneb9c1b512016-09-06 20:57:50 +0000161 //------------------------------------------------------------------
162 // Process STDIO
163 //------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000164 size_t PutSTDIN(const char *buf, size_t buf_size, Status &error) override;
Jim Ingham1c823b42011-01-22 01:33:44 +0000165
Kate Stoneb9c1b512016-09-06 20:57:50 +0000166 //----------------------------------------------------------------------
167 // Process Breakpoints
168 //----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000169 Status EnableBreakpointSite(BreakpointSite *bp_site) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000170
Zachary Turner97206d52017-05-12 04:51:55 +0000171 Status DisableBreakpointSite(BreakpointSite *bp_site) override;
Jason Molendaa3329782014-03-29 18:54:20 +0000172
Kate Stoneb9c1b512016-09-06 20:57:50 +0000173 //----------------------------------------------------------------------
174 // Process Watchpoints
175 //----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000176 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override;
Greg Claytonfbb76342013-11-20 21:07:01 +0000177
Zachary Turner97206d52017-05-12 04:51:55 +0000178 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
Jason Molenda6076bf42014-05-06 04:34:52 +0000179
Zachary Turner97206d52017-05-12 04:51:55 +0000180 Status GetWatchpointSupportInfo(uint32_t &num) override;
Tamas Berghammer7cb18bf2015-03-24 11:15:23 +0000181
Ravitheja Addepallye714c4f2017-05-26 11:46:27 +0000182 lldb::user_id_t StartTrace(const TraceOptions &options,
183 Status &error) override;
184
185 Status StopTrace(lldb::user_id_t uid, lldb::tid_t thread_id) override;
186
187 Status GetData(lldb::user_id_t uid, lldb::tid_t thread_id,
188 llvm::MutableArrayRef<uint8_t> &buffer,
189 size_t offset = 0) override;
190
191 Status GetMetaData(lldb::user_id_t uid, lldb::tid_t thread_id,
192 llvm::MutableArrayRef<uint8_t> &buffer,
193 size_t offset = 0) override;
194
195 Status GetTraceConfig(lldb::user_id_t uid, TraceOptions &options) override;
196
Zachary Turner97206d52017-05-12 04:51:55 +0000197 Status GetWatchpointSupportInfo(uint32_t &num, bool &after) override;
Jim Ingham13c30d22015-11-05 22:33:17 +0000198
Kate Stoneb9c1b512016-09-06 20:57:50 +0000199 bool StartNoticingNewThreads() override;
Stephane Sezer87b0fe02016-01-12 19:02:41 +0000200
Kate Stoneb9c1b512016-09-06 20:57:50 +0000201 bool StopNoticingNewThreads() override;
Tamas Berghammer783bfc82015-06-18 20:43:56 +0000202
Kate Stoneb9c1b512016-09-06 20:57:50 +0000203 GDBRemoteCommunicationClient &GetGDBRemote() { return m_gdb_comm; }
Colin Rileyc3c95b22015-04-16 15:51:33 +0000204
Zachary Turner97206d52017-05-12 04:51:55 +0000205 Status SendEventData(const char *data) override;
Greg Clayton0b90be12015-06-23 21:27:50 +0000206
Kate Stoneb9c1b512016-09-06 20:57:50 +0000207 //----------------------------------------------------------------------
208 // Override DidExit so we can disconnect from the remote GDB server
209 //----------------------------------------------------------------------
210 void DidExit() override;
Jason Molenda20ee21b2015-07-10 23:15:22 +0000211
Kate Stoneb9c1b512016-09-06 20:57:50 +0000212 void SetUserSpecifiedMaxMemoryTransferSize(uint64_t user_specified_max);
Todd Fiala75930012016-08-19 04:21:48 +0000213
Kate Stoneb9c1b512016-09-06 20:57:50 +0000214 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
215 ModuleSpec &module_spec) override;
Jason Molenda9ab5dc22016-07-21 08:30:55 +0000216
Pavel Labath2f1fbae2016-09-08 10:07:04 +0000217 void PrefetchModuleSpecs(llvm::ArrayRef<FileSpec> module_file_specs,
218 const llvm::Triple &triple) override;
219
Pavel Labath2272c482018-06-18 15:02:23 +0000220 llvm::VersionTuple GetHostOSVersion() override;
Jason Molenda9ab5dc22016-07-21 08:30:55 +0000221
Kate Stoneb9c1b512016-09-06 20:57:50 +0000222 size_t LoadModules(LoadedModuleInfoList &module_list) override;
Jason Molenda9ab5dc22016-07-21 08:30:55 +0000223
Kate Stoneb9c1b512016-09-06 20:57:50 +0000224 size_t LoadModules() override;
Jason Molenda37397352016-07-22 00:17:55 +0000225
Zachary Turner97206d52017-05-12 04:51:55 +0000226 Status GetFileLoadAddress(const FileSpec &file, bool &is_loaded,
227 lldb::addr_t &load_addr) override;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000228
229 void ModulesDidLoad(ModuleList &module_list) override;
230
231 StructuredData::ObjectSP
232 GetLoadedDynamicLibrariesInfos(lldb::addr_t image_list_address,
233 lldb::addr_t image_count) override;
234
Zachary Turner97206d52017-05-12 04:51:55 +0000235 Status
Kate Stoneb9c1b512016-09-06 20:57:50 +0000236 ConfigureStructuredData(const ConstString &type_name,
237 const StructuredData::ObjectSP &config_sp) override;
238
239 StructuredData::ObjectSP GetLoadedDynamicLibrariesInfos() override;
240
241 StructuredData::ObjectSP GetLoadedDynamicLibrariesInfos(
242 const std::vector<lldb::addr_t> &load_addresses) override;
243
244 StructuredData::ObjectSP
245 GetLoadedDynamicLibrariesInfos_sender(StructuredData::ObjectSP args);
246
247 StructuredData::ObjectSP GetSharedCacheInfo() override;
248
249 std::string HarmonizeThreadIdsForProfileData(
250 StringExtractorGDBRemote &inputStringExtractor);
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000251
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000252protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000253 friend class ThreadGDBRemote;
254 friend class GDBRemoteCommunicationClient;
255 friend class GDBRemoteRegisterContext;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000256
Kate Stoneb9c1b512016-09-06 20:57:50 +0000257 //------------------------------------------------------------------
258 /// Broadcaster event bits definitions.
259 //------------------------------------------------------------------
260 enum {
261 eBroadcastBitAsyncContinue = (1 << 0),
262 eBroadcastBitAsyncThreadShouldExit = (1 << 1),
263 eBroadcastBitAsyncThreadDidExit = (1 << 2)
264 };
Eugene Zelenkoedb35d92015-10-24 01:08:35 +0000265
Kate Stoneb9c1b512016-09-06 20:57:50 +0000266 GDBRemoteCommunicationClient m_gdb_comm;
267 std::atomic<lldb::pid_t> m_debugserver_pid;
268 std::vector<StringExtractorGDBRemote> m_stop_packet_stack; // The stop packet
269 // stack replaces
270 // the last stop
271 // packet variable
272 std::recursive_mutex m_last_stop_packet_mutex;
273 GDBRemoteDynamicRegisterInfo m_register_info;
274 Broadcaster m_async_broadcaster;
275 lldb::ListenerSP m_async_listener_sp;
276 HostThread m_async_thread;
277 std::recursive_mutex m_async_thread_state_mutex;
278 typedef std::vector<lldb::tid_t> tid_collection;
279 typedef std::vector<std::pair<lldb::tid_t, int>> tid_sig_collection;
280 typedef std::map<lldb::addr_t, lldb::addr_t> MMapMap;
281 typedef std::map<uint32_t, std::string> ExpeditedRegisterMap;
282 tid_collection m_thread_ids; // Thread IDs for all threads. This list gets
283 // updated after stopping
284 std::vector<lldb::addr_t> m_thread_pcs; // PC values for all the threads.
285 StructuredData::ObjectSP m_jstopinfo_sp; // Stop info only for any threads
286 // that have valid stop infos
287 StructuredData::ObjectSP m_jthreadsinfo_sp; // Full stop info, expedited
288 // registers and memory for all
289 // threads if "jThreadsInfo"
290 // packet is supported
291 tid_collection m_continue_c_tids; // 'c' for continue
292 tid_sig_collection m_continue_C_tids; // 'C' for continue with signal
293 tid_collection m_continue_s_tids; // 's' for step
294 tid_sig_collection m_continue_S_tids; // 'S' for step with signal
295 uint64_t m_max_memory_size; // The maximum number of bytes to read/write when
296 // reading and writing memory
297 uint64_t m_remote_stub_max_memory_size; // The maximum memory size the remote
298 // gdb stub can handle
299 MMapMap m_addr_to_mmap_size;
300 lldb::BreakpointSP m_thread_create_bp_sp;
301 bool m_waiting_for_attach;
302 bool m_destroy_tried_resuming;
303 lldb::CommandObjectSP m_command_sp;
304 int64_t m_breakpoint_pc_offset;
305 lldb::tid_t m_initial_tid; // The initial thread ID, given by stub on attach
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000306
Pavel Labath16064d32018-03-20 11:56:24 +0000307 bool m_allow_flash_writes;
308 using FlashRangeVector = lldb_private::RangeVector<lldb::addr_t, size_t>;
309 using FlashRange = FlashRangeVector::Entry;
310 FlashRangeVector m_erased_flash_ranges;
311
Kate Stoneb9c1b512016-09-06 20:57:50 +0000312 //----------------------------------------------------------------------
313 // Accessors
314 //----------------------------------------------------------------------
315 bool IsRunning(lldb::StateType state) {
316 return state == lldb::eStateRunning || IsStepping(state);
317 }
Eugene Zelenkoedb35d92015-10-24 01:08:35 +0000318
Kate Stoneb9c1b512016-09-06 20:57:50 +0000319 bool IsStepping(lldb::StateType state) {
320 return state == lldb::eStateStepping;
321 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000322
Kate Stoneb9c1b512016-09-06 20:57:50 +0000323 bool CanResume(lldb::StateType state) { return state == lldb::eStateStopped; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000324
Kate Stoneb9c1b512016-09-06 20:57:50 +0000325 bool HasExited(lldb::StateType state) { return state == lldb::eStateExited; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000326
Kate Stoneb9c1b512016-09-06 20:57:50 +0000327 bool ProcessIDIsValid() const;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000328
Kate Stoneb9c1b512016-09-06 20:57:50 +0000329 void Clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000330
Kate Stoneb9c1b512016-09-06 20:57:50 +0000331 bool UpdateThreadList(ThreadList &old_thread_list,
332 ThreadList &new_thread_list) override;
Oleksiy Vyalovafd6ce42015-11-23 19:32:24 +0000333
Zachary Turner97206d52017-05-12 04:51:55 +0000334 Status EstablishConnectionIfNeeded(const ProcessInfo &process_info);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000335
Zachary Turner97206d52017-05-12 04:51:55 +0000336 Status LaunchAndConnectToDebugserver(const ProcessInfo &process_info);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000337
Kate Stoneb9c1b512016-09-06 20:57:50 +0000338 void KillDebugserverProcess();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000339
Kate Stoneb9c1b512016-09-06 20:57:50 +0000340 void BuildDynamicRegisterInfo(bool force);
Jason Molendad1fae142012-09-29 08:03:33 +0000341
Kate Stoneb9c1b512016-09-06 20:57:50 +0000342 void SetLastStopPacket(const StringExtractorGDBRemote &response);
Greg Claytonef8180a2013-10-15 00:14:28 +0000343
Kate Stoneb9c1b512016-09-06 20:57:50 +0000344 bool ParsePythonTargetDefinition(const FileSpec &target_definition_fspec);
Steve Pucci03904ac2014-03-04 23:18:46 +0000345
Kate Stoneb9c1b512016-09-06 20:57:50 +0000346 const lldb::DataBufferSP GetAuxvData() override;
Jason Molenda705b1802014-06-13 02:37:02 +0000347
Kate Stoneb9c1b512016-09-06 20:57:50 +0000348 StructuredData::ObjectSP GetExtendedInfoForThread(lldb::tid_t tid);
Jason Molenda6076bf42014-05-06 04:34:52 +0000349
Kate Stoneb9c1b512016-09-06 20:57:50 +0000350 void GetMaxMemorySize();
Greg Clayton358cf1e2015-06-25 21:46:34 +0000351
Kate Stoneb9c1b512016-09-06 20:57:50 +0000352 bool CalculateThreadStopInfo(ThreadGDBRemote *thread);
Jason Molenda545304d2015-12-18 00:45:35 +0000353
Kate Stoneb9c1b512016-09-06 20:57:50 +0000354 size_t UpdateThreadPCsFromStopReplyThreadsValue(std::string &value);
Greg Clayton2e59d4f2015-06-29 20:08:51 +0000355
Kate Stoneb9c1b512016-09-06 20:57:50 +0000356 size_t UpdateThreadIDsFromStopReplyThreadsValue(std::string &value);
Ewan Crawford76df2882015-06-23 12:32:06 +0000357
Kate Stoneb9c1b512016-09-06 20:57:50 +0000358 bool HandleNotifyPacket(StringExtractorGDBRemote &packet);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000359
Kate Stoneb9c1b512016-09-06 20:57:50 +0000360 bool StartAsyncThread();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000361
Kate Stoneb9c1b512016-09-06 20:57:50 +0000362 void StopAsyncThread();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000363
Kate Stoneb9c1b512016-09-06 20:57:50 +0000364 static lldb::thread_result_t AsyncThread(void *arg);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000365
Kate Stoneb9c1b512016-09-06 20:57:50 +0000366 static bool
367 MonitorDebugserverProcess(std::weak_ptr<ProcessGDBRemote> process_wp,
368 lldb::pid_t pid, bool exited, int signo,
369 int exit_status);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000370
Kate Stoneb9c1b512016-09-06 20:57:50 +0000371 lldb::StateType SetThreadStopInfo(StringExtractor &stop_packet);
Greg Clayton2e309072015-07-17 23:42:28 +0000372
Kate Stoneb9c1b512016-09-06 20:57:50 +0000373 bool
374 GetThreadStopInfoFromJSON(ThreadGDBRemote *thread,
375 const StructuredData::ObjectSP &thread_infos_sp);
Greg Clayton358cf1e2015-06-25 21:46:34 +0000376
Kate Stoneb9c1b512016-09-06 20:57:50 +0000377 lldb::ThreadSP SetThreadStopInfo(StructuredData::Dictionary *thread_dict);
Greg Clayton358cf1e2015-06-25 21:46:34 +0000378
Kate Stoneb9c1b512016-09-06 20:57:50 +0000379 lldb::ThreadSP
380 SetThreadStopInfo(lldb::tid_t tid,
381 ExpeditedRegisterMap &expedited_register_map, uint8_t signo,
382 const std::string &thread_name, const std::string &reason,
383 const std::string &description, uint32_t exc_type,
384 const std::vector<lldb::addr_t> &exc_data,
385 lldb::addr_t thread_dispatch_qaddr, bool queue_vars_valid,
386 lldb_private::LazyBool associated_with_libdispatch_queue,
387 lldb::addr_t dispatch_queue_t, std::string &queue_name,
388 lldb::QueueKind queue_kind, uint64_t queue_serial);
Ewan Crawford78baa192015-05-13 09:18:18 +0000389
Kate Stoneb9c1b512016-09-06 20:57:50 +0000390 void HandleStopReplySequence();
Greg Clayton9e920902012-04-10 02:25:43 +0000391
Kate Stoneb9c1b512016-09-06 20:57:50 +0000392 void ClearThreadIDList();
Greg Clayton9e920902012-04-10 02:25:43 +0000393
Kate Stoneb9c1b512016-09-06 20:57:50 +0000394 bool UpdateThreadIDList();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000395
Kate Stoneb9c1b512016-09-06 20:57:50 +0000396 void DidLaunchOrAttach(ArchSpec &process_arch);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000397
Zachary Turner97206d52017-05-12 04:51:55 +0000398 Status ConnectToDebugserver(llvm::StringRef host_port);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000399
Kate Stoneb9c1b512016-09-06 20:57:50 +0000400 const char *GetDispatchQueueNameForThread(lldb::addr_t thread_dispatch_qaddr,
401 std::string &dispatch_queue_name);
Jason Molenda5e8534e2012-10-03 01:29:34 +0000402
Kate Stoneb9c1b512016-09-06 20:57:50 +0000403 DynamicLoader *GetDynamicLoader() override;
Aidan Doddsc0c83852015-05-08 09:36:31 +0000404
Kate Stoneb9c1b512016-09-06 20:57:50 +0000405 // Query remote GDBServer for register information
406 bool GetGDBServerRegisterInfo(ArchSpec &arch);
Aidan Doddsc0c83852015-05-08 09:36:31 +0000407
Kate Stoneb9c1b512016-09-06 20:57:50 +0000408 // Query remote GDBServer for a detailed loaded library list
Zachary Turner97206d52017-05-12 04:51:55 +0000409 Status GetLoadedModuleList(LoadedModuleInfoList &);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000410
411 lldb::ModuleSP LoadModuleAtAddress(const FileSpec &file,
412 lldb::addr_t link_map,
413 lldb::addr_t base_addr,
414 bool value_is_offset);
Aidan Doddsc0c83852015-05-08 09:36:31 +0000415
Zachary Turner97206d52017-05-12 04:51:55 +0000416 Status UpdateAutomaticSignalFiltering() override;
Eugene Zemtsov7993cc52017-03-07 21:34:40 +0000417
Pavel Labath16064d32018-03-20 11:56:24 +0000418 Status FlashErase(lldb::addr_t addr, size_t size);
419
420 Status FlashDone();
421
422 bool HasErased(FlashRange range);
423
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000424private:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000425 //------------------------------------------------------------------
426 // For ProcessGDBRemote only
427 //------------------------------------------------------------------
428 std::string m_partial_profile_data;
429 std::map<uint64_t, uint32_t> m_thread_id_to_used_usec_map;
Eugene Zemtsov7993cc52017-03-07 21:34:40 +0000430 uint64_t m_last_signals_version = 0;
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000431
Kate Stoneb9c1b512016-09-06 20:57:50 +0000432 static bool NewThreadNotifyBreakpointHit(void *baton,
433 StoppointCallbackContext *context,
434 lldb::user_id_t break_id,
435 lldb::user_id_t break_loc_id);
Jim Ingham1c823b42011-01-22 01:33:44 +0000436
Kate Stoneb9c1b512016-09-06 20:57:50 +0000437 //------------------------------------------------------------------
438 // ContinueDelegate interface
439 //------------------------------------------------------------------
440 void HandleAsyncStdout(llvm::StringRef out) override;
441 void HandleAsyncMisc(llvm::StringRef data) override;
442 void HandleStopReply() override;
Todd Fialafcdb1af2016-09-10 00:06:29 +0000443 void HandleAsyncStructuredDataPacket(llvm::StringRef data) override;
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000444
Pavel Labathe0a5b572017-01-20 14:17:16 +0000445 void SetThreadPc(const lldb::ThreadSP &thread_sp, uint64_t index);
Pavel Labath2f1fbae2016-09-08 10:07:04 +0000446 using ModuleCacheKey = std::pair<std::string, std::string>;
447 // KeyInfo for the cached module spec DenseMap.
448 // The invariant is that all real keys will have the file and architecture
449 // set.
450 // The empty key has an empty file and an empty arch.
451 // The tombstone key has an invalid arch and an empty file.
452 // The comparison and hash functions take the file name and architecture
453 // triple into account.
454 struct ModuleCacheInfo {
455 static ModuleCacheKey getEmptyKey() { return ModuleCacheKey(); }
456
457 static ModuleCacheKey getTombstoneKey() { return ModuleCacheKey("", "T"); }
458
459 static unsigned getHashValue(const ModuleCacheKey &key) {
460 return llvm::hash_combine(key.first, key.second);
461 }
462
463 static bool isEqual(const ModuleCacheKey &LHS, const ModuleCacheKey &RHS) {
464 return LHS == RHS;
465 }
466 };
467
468 llvm::DenseMap<ModuleCacheKey, ModuleSpec, ModuleCacheInfo>
469 m_cached_module_specs;
470
Kate Stoneb9c1b512016-09-06 20:57:50 +0000471 DISALLOW_COPY_AND_ASSIGN(ProcessGDBRemote);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000472};
473
Tamas Berghammerdb264a62015-03-31 09:52:22 +0000474} // namespace process_gdb_remote
475} // namespace lldb_private
476
Eugene Zelenkoedb35d92015-10-24 01:08:35 +0000477#endif // liblldb_ProcessGDBRemote_h_