blob: d7a4e961b5406917edd0d65738e76f951e7cb892 [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
21// Other libraries and framework includes
Eugene Zelenkoedb35d92015-10-24 01:08:35 +000022// Project includes
Chris Lattner30fdc8d2010-06-08 16:52:24 +000023#include "lldb/Core/ArchSpec.h"
24#include "lldb/Core/Broadcaster.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000025#include "lldb/Core/LoadedModuleInfoList.h"
Pavel Labath2f1fbae2016-09-08 10:07:04 +000026#include "lldb/Core/ModuleSpec.h"
Jason Molenda705b1802014-06-13 02:37:02 +000027#include "lldb/Core/StructuredData.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000028#include "lldb/Core/ThreadSafeValue.h"
Zachary Turner39de3112014-09-09 20:54:56 +000029#include "lldb/Host/HostThread.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000030#include "lldb/Target/Process.h"
31#include "lldb/Target/Thread.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000032#include "lldb/Utility/ConstString.h"
Zachary Turner97206d52017-05-12 04:51:55 +000033#include "lldb/Utility/Status.h"
Ravitheja Addepallye714c4f2017-05-26 11:46:27 +000034#include "lldb/Utility/StreamGDBRemote.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000035#include "lldb/Utility/StreamString.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000036#include "lldb/Utility/StringExtractor.h"
Zachary Turner573ab902017-03-21 18:25:04 +000037#include "lldb/Utility/StringList.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000038#include "lldb/lldb-private-forward.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000039
Greg Clayton576d8832011-03-22 04:00:09 +000040#include "GDBRemoteCommunicationClient.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000041#include "GDBRemoteRegisterContext.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000042
Pavel Labath2f1fbae2016-09-08 10:07:04 +000043#include "llvm/ADT/DenseMap.h"
44
Tamas Berghammerdb264a62015-03-31 09:52:22 +000045namespace lldb_private {
46namespace process_gdb_remote {
47
Chris Lattner30fdc8d2010-06-08 16:52:24 +000048class ThreadGDBRemote;
49
Kate Stoneb9c1b512016-09-06 20:57:50 +000050class ProcessGDBRemote : public Process,
51 private GDBRemoteClientBase::ContinueDelegate {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000052public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000053 ProcessGDBRemote(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp);
Eugene Zelenkoedb35d92015-10-24 01:08:35 +000054
Kate Stoneb9c1b512016-09-06 20:57:50 +000055 ~ProcessGDBRemote() override;
Eugene Zelenkoedb35d92015-10-24 01:08:35 +000056
Kate Stoneb9c1b512016-09-06 20:57:50 +000057 static lldb::ProcessSP CreateInstance(lldb::TargetSP target_sp,
58 lldb::ListenerSP listener_sp,
59 const FileSpec *crash_file_path);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000060
Kate Stoneb9c1b512016-09-06 20:57:50 +000061 static void Initialize();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000062
Kate Stoneb9c1b512016-09-06 20:57:50 +000063 static void DebuggerInitialize(Debugger &debugger);
Greg Clayton7f982402013-07-15 22:54:20 +000064
Kate Stoneb9c1b512016-09-06 20:57:50 +000065 static void Terminate();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000066
Kate Stoneb9c1b512016-09-06 20:57:50 +000067 static ConstString GetPluginNameStatic();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000068
Kate Stoneb9c1b512016-09-06 20:57:50 +000069 static const char *GetPluginDescriptionStatic();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000070
Kate Stoneb9c1b512016-09-06 20:57:50 +000071 //------------------------------------------------------------------
72 // Check if a given Process
73 //------------------------------------------------------------------
74 bool CanDebug(lldb::TargetSP target_sp,
75 bool plugin_specified_by_name) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000076
Kate Stoneb9c1b512016-09-06 20:57:50 +000077 CommandObject *GetPluginCommandObject() override;
Jim Ingham5aee1622010-08-09 23:31:02 +000078
Kate Stoneb9c1b512016-09-06 20:57:50 +000079 //------------------------------------------------------------------
80 // Creating a new process, or attaching to an existing one
81 //------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +000082 Status WillLaunch(Module *module) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000083
Zachary Turner97206d52017-05-12 04:51:55 +000084 Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000085
Kate Stoneb9c1b512016-09-06 20:57:50 +000086 void DidLaunch() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000087
Zachary Turner97206d52017-05-12 04:51:55 +000088 Status WillAttachToProcessWithID(lldb::pid_t pid) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000089
Zachary Turner97206d52017-05-12 04:51:55 +000090 Status WillAttachToProcessWithName(const char *process_name,
91 bool wait_for_launch) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000092
Zachary Turner97206d52017-05-12 04:51:55 +000093 Status DoConnectRemote(Stream *strm, llvm::StringRef remote_url) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000094
Zachary Turner97206d52017-05-12 04:51:55 +000095 Status WillLaunchOrAttach();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000096
Zachary Turner97206d52017-05-12 04:51:55 +000097 Status DoAttachToProcessWithID(lldb::pid_t pid,
98 const ProcessAttachInfo &attach_info) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000099
Zachary Turner97206d52017-05-12 04:51:55 +0000100 Status
Kate Stoneb9c1b512016-09-06 20:57:50 +0000101 DoAttachToProcessWithName(const char *process_name,
102 const ProcessAttachInfo &attach_info) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000103
Kate Stoneb9c1b512016-09-06 20:57:50 +0000104 void DidAttach(ArchSpec &process_arch) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000105
Kate Stoneb9c1b512016-09-06 20:57:50 +0000106 //------------------------------------------------------------------
107 // PluginInterface protocol
108 //------------------------------------------------------------------
109 ConstString GetPluginName() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000110
Kate Stoneb9c1b512016-09-06 20:57:50 +0000111 uint32_t GetPluginVersion() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000112
Kate Stoneb9c1b512016-09-06 20:57:50 +0000113 //------------------------------------------------------------------
114 // Process Control
115 //------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000116 Status WillResume() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000117
Zachary Turner97206d52017-05-12 04:51:55 +0000118 Status DoResume() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000119
Zachary Turner97206d52017-05-12 04:51:55 +0000120 Status DoHalt(bool &caused_stop) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000121
Zachary Turner97206d52017-05-12 04:51:55 +0000122 Status DoDetach(bool keep_stopped) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000123
Kate Stoneb9c1b512016-09-06 20:57:50 +0000124 bool DetachRequiresHalt() override { return true; }
Chaoren Linc963a222015-09-01 16:58:45 +0000125
Zachary Turner97206d52017-05-12 04:51:55 +0000126 Status DoSignal(int signal) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000127
Zachary Turner97206d52017-05-12 04:51:55 +0000128 Status DoDestroy() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000129
Kate Stoneb9c1b512016-09-06 20:57:50 +0000130 void RefreshStateAfterStop() override;
Greg Clayton2e309072015-07-17 23:42:28 +0000131
Kate Stoneb9c1b512016-09-06 20:57:50 +0000132 void SetUnixSignals(const lldb::UnixSignalsSP &signals_sp);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000133
Kate Stoneb9c1b512016-09-06 20:57:50 +0000134 //------------------------------------------------------------------
135 // Process Queries
136 //------------------------------------------------------------------
137 bool IsAlive() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000138
Kate Stoneb9c1b512016-09-06 20:57:50 +0000139 lldb::addr_t GetImageInfoAddress() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000140
Kate Stoneb9c1b512016-09-06 20:57:50 +0000141 void WillPublicStop() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000142
Kate Stoneb9c1b512016-09-06 20:57:50 +0000143 //------------------------------------------------------------------
144 // Process Memory
145 //------------------------------------------------------------------
146 size_t DoReadMemory(lldb::addr_t addr, void *buf, size_t size,
Zachary Turner97206d52017-05-12 04:51:55 +0000147 Status &error) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000148
Kate Stoneb9c1b512016-09-06 20:57:50 +0000149 size_t DoWriteMemory(lldb::addr_t addr, const void *buf, size_t size,
Zachary Turner97206d52017-05-12 04:51:55 +0000150 Status &error) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000151
Kate Stoneb9c1b512016-09-06 20:57:50 +0000152 lldb::addr_t DoAllocateMemory(size_t size, uint32_t permissions,
Zachary Turner97206d52017-05-12 04:51:55 +0000153 Status &error) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000154
Zachary Turner97206d52017-05-12 04:51:55 +0000155 Status GetMemoryRegionInfo(lldb::addr_t load_addr,
156 MemoryRegionInfo &region_info) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000157
Zachary Turner97206d52017-05-12 04:51:55 +0000158 Status DoDeallocateMemory(lldb::addr_t ptr) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000159
Kate Stoneb9c1b512016-09-06 20:57:50 +0000160 //------------------------------------------------------------------
161 // Process STDIO
162 //------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000163 size_t PutSTDIN(const char *buf, size_t buf_size, Status &error) override;
Jim Ingham1c823b42011-01-22 01:33:44 +0000164
Kate Stoneb9c1b512016-09-06 20:57:50 +0000165 //----------------------------------------------------------------------
166 // Process Breakpoints
167 //----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000168 Status EnableBreakpointSite(BreakpointSite *bp_site) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000169
Zachary Turner97206d52017-05-12 04:51:55 +0000170 Status DisableBreakpointSite(BreakpointSite *bp_site) override;
Jason Molendaa3329782014-03-29 18:54:20 +0000171
Kate Stoneb9c1b512016-09-06 20:57:50 +0000172 //----------------------------------------------------------------------
173 // Process Watchpoints
174 //----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000175 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override;
Greg Claytonfbb76342013-11-20 21:07:01 +0000176
Zachary Turner97206d52017-05-12 04:51:55 +0000177 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
Jason Molenda6076bf42014-05-06 04:34:52 +0000178
Zachary Turner97206d52017-05-12 04:51:55 +0000179 Status GetWatchpointSupportInfo(uint32_t &num) override;
Tamas Berghammer7cb18bf2015-03-24 11:15:23 +0000180
Ravitheja Addepallye714c4f2017-05-26 11:46:27 +0000181 lldb::user_id_t StartTrace(const TraceOptions &options,
182 Status &error) override;
183
184 Status StopTrace(lldb::user_id_t uid, lldb::tid_t thread_id) override;
185
186 Status GetData(lldb::user_id_t uid, lldb::tid_t thread_id,
187 llvm::MutableArrayRef<uint8_t> &buffer,
188 size_t offset = 0) override;
189
190 Status GetMetaData(lldb::user_id_t uid, lldb::tid_t thread_id,
191 llvm::MutableArrayRef<uint8_t> &buffer,
192 size_t offset = 0) override;
193
194 Status GetTraceConfig(lldb::user_id_t uid, TraceOptions &options) override;
195
Zachary Turner97206d52017-05-12 04:51:55 +0000196 Status GetWatchpointSupportInfo(uint32_t &num, bool &after) override;
Jim Ingham13c30d22015-11-05 22:33:17 +0000197
Kate Stoneb9c1b512016-09-06 20:57:50 +0000198 bool StartNoticingNewThreads() override;
Stephane Sezer87b0fe02016-01-12 19:02:41 +0000199
Kate Stoneb9c1b512016-09-06 20:57:50 +0000200 bool StopNoticingNewThreads() override;
Tamas Berghammer783bfc82015-06-18 20:43:56 +0000201
Kate Stoneb9c1b512016-09-06 20:57:50 +0000202 GDBRemoteCommunicationClient &GetGDBRemote() { return m_gdb_comm; }
Colin Rileyc3c95b22015-04-16 15:51:33 +0000203
Zachary Turner97206d52017-05-12 04:51:55 +0000204 Status SendEventData(const char *data) override;
Greg Clayton0b90be12015-06-23 21:27:50 +0000205
Kate Stoneb9c1b512016-09-06 20:57:50 +0000206 //----------------------------------------------------------------------
207 // Override DidExit so we can disconnect from the remote GDB server
208 //----------------------------------------------------------------------
209 void DidExit() override;
Jason Molenda20ee21b2015-07-10 23:15:22 +0000210
Kate Stoneb9c1b512016-09-06 20:57:50 +0000211 void SetUserSpecifiedMaxMemoryTransferSize(uint64_t user_specified_max);
Todd Fiala75930012016-08-19 04:21:48 +0000212
Kate Stoneb9c1b512016-09-06 20:57:50 +0000213 bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch,
214 ModuleSpec &module_spec) override;
Jason Molenda9ab5dc22016-07-21 08:30:55 +0000215
Pavel Labath2f1fbae2016-09-08 10:07:04 +0000216 void PrefetchModuleSpecs(llvm::ArrayRef<FileSpec> module_file_specs,
217 const llvm::Triple &triple) override;
218
Kate Stoneb9c1b512016-09-06 20:57:50 +0000219 bool GetHostOSVersion(uint32_t &major, uint32_t &minor,
220 uint32_t &update) 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 Flags m_flags; // Process specific flags (see eFlags enums)
267 GDBRemoteCommunicationClient m_gdb_comm;
268 std::atomic<lldb::pid_t> m_debugserver_pid;
269 std::vector<StringExtractorGDBRemote> m_stop_packet_stack; // The stop packet
270 // stack replaces
271 // the last stop
272 // packet variable
273 std::recursive_mutex m_last_stop_packet_mutex;
274 GDBRemoteDynamicRegisterInfo m_register_info;
275 Broadcaster m_async_broadcaster;
276 lldb::ListenerSP m_async_listener_sp;
277 HostThread m_async_thread;
278 std::recursive_mutex m_async_thread_state_mutex;
279 typedef std::vector<lldb::tid_t> tid_collection;
280 typedef std::vector<std::pair<lldb::tid_t, int>> tid_sig_collection;
281 typedef std::map<lldb::addr_t, lldb::addr_t> MMapMap;
282 typedef std::map<uint32_t, std::string> ExpeditedRegisterMap;
283 tid_collection m_thread_ids; // Thread IDs for all threads. This list gets
284 // updated after stopping
285 std::vector<lldb::addr_t> m_thread_pcs; // PC values for all the threads.
286 StructuredData::ObjectSP m_jstopinfo_sp; // Stop info only for any threads
287 // that have valid stop infos
288 StructuredData::ObjectSP m_jthreadsinfo_sp; // Full stop info, expedited
289 // registers and memory for all
290 // threads if "jThreadsInfo"
291 // packet is supported
292 tid_collection m_continue_c_tids; // 'c' for continue
293 tid_sig_collection m_continue_C_tids; // 'C' for continue with signal
294 tid_collection m_continue_s_tids; // 's' for step
295 tid_sig_collection m_continue_S_tids; // 'S' for step with signal
296 uint64_t m_max_memory_size; // The maximum number of bytes to read/write when
297 // reading and writing memory
298 uint64_t m_remote_stub_max_memory_size; // The maximum memory size the remote
299 // gdb stub can handle
300 MMapMap m_addr_to_mmap_size;
301 lldb::BreakpointSP m_thread_create_bp_sp;
302 bool m_waiting_for_attach;
303 bool m_destroy_tried_resuming;
304 lldb::CommandObjectSP m_command_sp;
305 int64_t m_breakpoint_pc_offset;
306 lldb::tid_t m_initial_tid; // The initial thread ID, given by stub on attach
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000307
Kate Stoneb9c1b512016-09-06 20:57:50 +0000308 //----------------------------------------------------------------------
309 // Accessors
310 //----------------------------------------------------------------------
311 bool IsRunning(lldb::StateType state) {
312 return state == lldb::eStateRunning || IsStepping(state);
313 }
Eugene Zelenkoedb35d92015-10-24 01:08:35 +0000314
Kate Stoneb9c1b512016-09-06 20:57:50 +0000315 bool IsStepping(lldb::StateType state) {
316 return state == lldb::eStateStepping;
317 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000318
Kate Stoneb9c1b512016-09-06 20:57:50 +0000319 bool CanResume(lldb::StateType state) { return state == lldb::eStateStopped; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000320
Kate Stoneb9c1b512016-09-06 20:57:50 +0000321 bool HasExited(lldb::StateType state) { return state == lldb::eStateExited; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000322
Kate Stoneb9c1b512016-09-06 20:57:50 +0000323 bool ProcessIDIsValid() const;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000324
Kate Stoneb9c1b512016-09-06 20:57:50 +0000325 void Clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000326
Kate Stoneb9c1b512016-09-06 20:57:50 +0000327 Flags &GetFlags() { return m_flags; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000328
Kate Stoneb9c1b512016-09-06 20:57:50 +0000329 const Flags &GetFlags() const { return m_flags; }
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
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000418private:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000419 //------------------------------------------------------------------
420 // For ProcessGDBRemote only
421 //------------------------------------------------------------------
422 std::string m_partial_profile_data;
423 std::map<uint64_t, uint32_t> m_thread_id_to_used_usec_map;
Eugene Zemtsov7993cc52017-03-07 21:34:40 +0000424 uint64_t m_last_signals_version = 0;
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000425
Kate Stoneb9c1b512016-09-06 20:57:50 +0000426 static bool NewThreadNotifyBreakpointHit(void *baton,
427 StoppointCallbackContext *context,
428 lldb::user_id_t break_id,
429 lldb::user_id_t break_loc_id);
Jim Ingham1c823b42011-01-22 01:33:44 +0000430
Kate Stoneb9c1b512016-09-06 20:57:50 +0000431 //------------------------------------------------------------------
432 // ContinueDelegate interface
433 //------------------------------------------------------------------
434 void HandleAsyncStdout(llvm::StringRef out) override;
435 void HandleAsyncMisc(llvm::StringRef data) override;
436 void HandleStopReply() override;
Todd Fialafcdb1af2016-09-10 00:06:29 +0000437 void HandleAsyncStructuredDataPacket(llvm::StringRef data) override;
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000438
Pavel Labathe0a5b572017-01-20 14:17:16 +0000439 void SetThreadPc(const lldb::ThreadSP &thread_sp, uint64_t index);
Pavel Labath2f1fbae2016-09-08 10:07:04 +0000440 using ModuleCacheKey = std::pair<std::string, std::string>;
441 // KeyInfo for the cached module spec DenseMap.
442 // The invariant is that all real keys will have the file and architecture
443 // set.
444 // The empty key has an empty file and an empty arch.
445 // The tombstone key has an invalid arch and an empty file.
446 // The comparison and hash functions take the file name and architecture
447 // triple into account.
448 struct ModuleCacheInfo {
449 static ModuleCacheKey getEmptyKey() { return ModuleCacheKey(); }
450
451 static ModuleCacheKey getTombstoneKey() { return ModuleCacheKey("", "T"); }
452
453 static unsigned getHashValue(const ModuleCacheKey &key) {
454 return llvm::hash_combine(key.first, key.second);
455 }
456
457 static bool isEqual(const ModuleCacheKey &LHS, const ModuleCacheKey &RHS) {
458 return LHS == RHS;
459 }
460 };
461
462 llvm::DenseMap<ModuleCacheKey, ModuleSpec, ModuleCacheInfo>
463 m_cached_module_specs;
464
Kate Stoneb9c1b512016-09-06 20:57:50 +0000465 DISALLOW_COPY_AND_ASSIGN(ProcessGDBRemote);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000466};
467
Tamas Berghammerdb264a62015-03-31 09:52:22 +0000468} // namespace process_gdb_remote
469} // namespace lldb_private
470
Eugene Zelenkoedb35d92015-10-24 01:08:35 +0000471#endif // liblldb_ProcessGDBRemote_h_