blob: 0ab3a58927172ef4ea255fa88ecc60caabd2ad43 [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"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000027#include "lldb/Core/ThreadSafeValue.h"
Zachary Turner39de3112014-09-09 20:54:56 +000028#include "lldb/Host/HostThread.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000029#include "lldb/Target/Process.h"
30#include "lldb/Target/Thread.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000031#include "lldb/Utility/ConstString.h"
Zachary Turner97206d52017-05-12 04:51:55 +000032#include "lldb/Utility/Status.h"
Ravitheja Addepallye714c4f2017-05-26 11:46:27 +000033#include "lldb/Utility/StreamGDBRemote.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000034#include "lldb/Utility/StreamString.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000035#include "lldb/Utility/StringExtractor.h"
Zachary Turner573ab902017-03-21 18:25:04 +000036#include "lldb/Utility/StringList.h"
Pavel Labathf2a8bcc2017-06-27 10:45:31 +000037#include "lldb/Utility/StructuredData.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 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
Kate Stoneb9c1b512016-09-06 20:57:50 +0000307 //----------------------------------------------------------------------
308 // Accessors
309 //----------------------------------------------------------------------
310 bool IsRunning(lldb::StateType state) {
311 return state == lldb::eStateRunning || IsStepping(state);
312 }
Eugene Zelenkoedb35d92015-10-24 01:08:35 +0000313
Kate Stoneb9c1b512016-09-06 20:57:50 +0000314 bool IsStepping(lldb::StateType state) {
315 return state == lldb::eStateStepping;
316 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000317
Kate Stoneb9c1b512016-09-06 20:57:50 +0000318 bool CanResume(lldb::StateType state) { return state == lldb::eStateStopped; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000319
Kate Stoneb9c1b512016-09-06 20:57:50 +0000320 bool HasExited(lldb::StateType state) { return state == lldb::eStateExited; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000321
Kate Stoneb9c1b512016-09-06 20:57:50 +0000322 bool ProcessIDIsValid() const;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000323
Kate Stoneb9c1b512016-09-06 20:57:50 +0000324 void Clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000325
Kate Stoneb9c1b512016-09-06 20:57:50 +0000326 bool UpdateThreadList(ThreadList &old_thread_list,
327 ThreadList &new_thread_list) override;
Oleksiy Vyalovafd6ce42015-11-23 19:32:24 +0000328
Zachary Turner97206d52017-05-12 04:51:55 +0000329 Status EstablishConnectionIfNeeded(const ProcessInfo &process_info);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000330
Zachary Turner97206d52017-05-12 04:51:55 +0000331 Status LaunchAndConnectToDebugserver(const ProcessInfo &process_info);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000332
Kate Stoneb9c1b512016-09-06 20:57:50 +0000333 void KillDebugserverProcess();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000334
Kate Stoneb9c1b512016-09-06 20:57:50 +0000335 void BuildDynamicRegisterInfo(bool force);
Jason Molendad1fae142012-09-29 08:03:33 +0000336
Kate Stoneb9c1b512016-09-06 20:57:50 +0000337 void SetLastStopPacket(const StringExtractorGDBRemote &response);
Greg Claytonef8180a2013-10-15 00:14:28 +0000338
Kate Stoneb9c1b512016-09-06 20:57:50 +0000339 bool ParsePythonTargetDefinition(const FileSpec &target_definition_fspec);
Steve Pucci03904ac2014-03-04 23:18:46 +0000340
Kate Stoneb9c1b512016-09-06 20:57:50 +0000341 const lldb::DataBufferSP GetAuxvData() override;
Jason Molenda705b1802014-06-13 02:37:02 +0000342
Kate Stoneb9c1b512016-09-06 20:57:50 +0000343 StructuredData::ObjectSP GetExtendedInfoForThread(lldb::tid_t tid);
Jason Molenda6076bf42014-05-06 04:34:52 +0000344
Kate Stoneb9c1b512016-09-06 20:57:50 +0000345 void GetMaxMemorySize();
Greg Clayton358cf1e2015-06-25 21:46:34 +0000346
Kate Stoneb9c1b512016-09-06 20:57:50 +0000347 bool CalculateThreadStopInfo(ThreadGDBRemote *thread);
Jason Molenda545304d2015-12-18 00:45:35 +0000348
Kate Stoneb9c1b512016-09-06 20:57:50 +0000349 size_t UpdateThreadPCsFromStopReplyThreadsValue(std::string &value);
Greg Clayton2e59d4f2015-06-29 20:08:51 +0000350
Kate Stoneb9c1b512016-09-06 20:57:50 +0000351 size_t UpdateThreadIDsFromStopReplyThreadsValue(std::string &value);
Ewan Crawford76df2882015-06-23 12:32:06 +0000352
Kate Stoneb9c1b512016-09-06 20:57:50 +0000353 bool HandleNotifyPacket(StringExtractorGDBRemote &packet);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000354
Kate Stoneb9c1b512016-09-06 20:57:50 +0000355 bool StartAsyncThread();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000356
Kate Stoneb9c1b512016-09-06 20:57:50 +0000357 void StopAsyncThread();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000358
Kate Stoneb9c1b512016-09-06 20:57:50 +0000359 static lldb::thread_result_t AsyncThread(void *arg);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000360
Kate Stoneb9c1b512016-09-06 20:57:50 +0000361 static bool
362 MonitorDebugserverProcess(std::weak_ptr<ProcessGDBRemote> process_wp,
363 lldb::pid_t pid, bool exited, int signo,
364 int exit_status);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000365
Kate Stoneb9c1b512016-09-06 20:57:50 +0000366 lldb::StateType SetThreadStopInfo(StringExtractor &stop_packet);
Greg Clayton2e309072015-07-17 23:42:28 +0000367
Kate Stoneb9c1b512016-09-06 20:57:50 +0000368 bool
369 GetThreadStopInfoFromJSON(ThreadGDBRemote *thread,
370 const StructuredData::ObjectSP &thread_infos_sp);
Greg Clayton358cf1e2015-06-25 21:46:34 +0000371
Kate Stoneb9c1b512016-09-06 20:57:50 +0000372 lldb::ThreadSP SetThreadStopInfo(StructuredData::Dictionary *thread_dict);
Greg Clayton358cf1e2015-06-25 21:46:34 +0000373
Kate Stoneb9c1b512016-09-06 20:57:50 +0000374 lldb::ThreadSP
375 SetThreadStopInfo(lldb::tid_t tid,
376 ExpeditedRegisterMap &expedited_register_map, uint8_t signo,
377 const std::string &thread_name, const std::string &reason,
378 const std::string &description, uint32_t exc_type,
379 const std::vector<lldb::addr_t> &exc_data,
380 lldb::addr_t thread_dispatch_qaddr, bool queue_vars_valid,
381 lldb_private::LazyBool associated_with_libdispatch_queue,
382 lldb::addr_t dispatch_queue_t, std::string &queue_name,
383 lldb::QueueKind queue_kind, uint64_t queue_serial);
Ewan Crawford78baa192015-05-13 09:18:18 +0000384
Kate Stoneb9c1b512016-09-06 20:57:50 +0000385 void HandleStopReplySequence();
Greg Clayton9e920902012-04-10 02:25:43 +0000386
Kate Stoneb9c1b512016-09-06 20:57:50 +0000387 void ClearThreadIDList();
Greg Clayton9e920902012-04-10 02:25:43 +0000388
Kate Stoneb9c1b512016-09-06 20:57:50 +0000389 bool UpdateThreadIDList();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000390
Kate Stoneb9c1b512016-09-06 20:57:50 +0000391 void DidLaunchOrAttach(ArchSpec &process_arch);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000392
Zachary Turner97206d52017-05-12 04:51:55 +0000393 Status ConnectToDebugserver(llvm::StringRef host_port);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000394
Kate Stoneb9c1b512016-09-06 20:57:50 +0000395 const char *GetDispatchQueueNameForThread(lldb::addr_t thread_dispatch_qaddr,
396 std::string &dispatch_queue_name);
Jason Molenda5e8534e2012-10-03 01:29:34 +0000397
Kate Stoneb9c1b512016-09-06 20:57:50 +0000398 DynamicLoader *GetDynamicLoader() override;
Aidan Doddsc0c83852015-05-08 09:36:31 +0000399
Kate Stoneb9c1b512016-09-06 20:57:50 +0000400 // Query remote GDBServer for register information
401 bool GetGDBServerRegisterInfo(ArchSpec &arch);
Aidan Doddsc0c83852015-05-08 09:36:31 +0000402
Kate Stoneb9c1b512016-09-06 20:57:50 +0000403 // Query remote GDBServer for a detailed loaded library list
Zachary Turner97206d52017-05-12 04:51:55 +0000404 Status GetLoadedModuleList(LoadedModuleInfoList &);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000405
406 lldb::ModuleSP LoadModuleAtAddress(const FileSpec &file,
407 lldb::addr_t link_map,
408 lldb::addr_t base_addr,
409 bool value_is_offset);
Aidan Doddsc0c83852015-05-08 09:36:31 +0000410
Zachary Turner97206d52017-05-12 04:51:55 +0000411 Status UpdateAutomaticSignalFiltering() override;
Eugene Zemtsov7993cc52017-03-07 21:34:40 +0000412
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000413private:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000414 //------------------------------------------------------------------
415 // For ProcessGDBRemote only
416 //------------------------------------------------------------------
417 std::string m_partial_profile_data;
418 std::map<uint64_t, uint32_t> m_thread_id_to_used_usec_map;
Eugene Zemtsov7993cc52017-03-07 21:34:40 +0000419 uint64_t m_last_signals_version = 0;
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000420
Kate Stoneb9c1b512016-09-06 20:57:50 +0000421 static bool NewThreadNotifyBreakpointHit(void *baton,
422 StoppointCallbackContext *context,
423 lldb::user_id_t break_id,
424 lldb::user_id_t break_loc_id);
Jim Ingham1c823b42011-01-22 01:33:44 +0000425
Kate Stoneb9c1b512016-09-06 20:57:50 +0000426 //------------------------------------------------------------------
427 // ContinueDelegate interface
428 //------------------------------------------------------------------
429 void HandleAsyncStdout(llvm::StringRef out) override;
430 void HandleAsyncMisc(llvm::StringRef data) override;
431 void HandleStopReply() override;
Todd Fialafcdb1af2016-09-10 00:06:29 +0000432 void HandleAsyncStructuredDataPacket(llvm::StringRef data) override;
Pavel Labath8c1b6bd2016-08-09 12:04:46 +0000433
Pavel Labathe0a5b572017-01-20 14:17:16 +0000434 void SetThreadPc(const lldb::ThreadSP &thread_sp, uint64_t index);
Pavel Labath2f1fbae2016-09-08 10:07:04 +0000435 using ModuleCacheKey = std::pair<std::string, std::string>;
436 // KeyInfo for the cached module spec DenseMap.
437 // The invariant is that all real keys will have the file and architecture
438 // set.
439 // The empty key has an empty file and an empty arch.
440 // The tombstone key has an invalid arch and an empty file.
441 // The comparison and hash functions take the file name and architecture
442 // triple into account.
443 struct ModuleCacheInfo {
444 static ModuleCacheKey getEmptyKey() { return ModuleCacheKey(); }
445
446 static ModuleCacheKey getTombstoneKey() { return ModuleCacheKey("", "T"); }
447
448 static unsigned getHashValue(const ModuleCacheKey &key) {
449 return llvm::hash_combine(key.first, key.second);
450 }
451
452 static bool isEqual(const ModuleCacheKey &LHS, const ModuleCacheKey &RHS) {
453 return LHS == RHS;
454 }
455 };
456
457 llvm::DenseMap<ModuleCacheKey, ModuleSpec, ModuleCacheInfo>
458 m_cached_module_specs;
459
Kate Stoneb9c1b512016-09-06 20:57:50 +0000460 DISALLOW_COPY_AND_ASSIGN(ProcessGDBRemote);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000461};
462
Tamas Berghammerdb264a62015-03-31 09:52:22 +0000463} // namespace process_gdb_remote
464} // namespace lldb_private
465
Eugene Zelenkoedb35d92015-10-24 01:08:35 +0000466#endif // liblldb_ProcessGDBRemote_h_