blob: 5fb1027d116cce5ed9cccf064602511cead8a011 [file] [log] [blame]
Greg Clayton269f91e2011-07-15 18:02:58 +00001//===-- ProcessKDP.h --------------------------------------------*- C++ -*-===//
Greg Clayton363be3f2011-07-15 03:27:12 +00002//
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_ProcessKDP_h_
11#define liblldb_ProcessKDP_h_
12
13// C Includes
14
15// C++ Includes
16#include <list>
17#include <vector>
18
19// Other libraries and framework includes
20#include "lldb/Core/ArchSpec.h"
21#include "lldb/Core/Broadcaster.h"
22#include "lldb/Core/Error.h"
23#include "lldb/Core/InputReader.h"
24#include "lldb/Core/StreamString.h"
25#include "lldb/Core/StringList.h"
26#include "lldb/Core/ThreadSafeValue.h"
27#include "lldb/Target/Process.h"
28#include "lldb/Target/Thread.h"
29
30#include "CommunicationKDP.h"
31#include "Utility/StringExtractor.h"
32
33class ThreadKDP;
34
35class ProcessKDP : public lldb_private::Process
36{
37public:
38 //------------------------------------------------------------------
39 // Constructors and Destructors
40 //------------------------------------------------------------------
Greg Clayton46c9a352012-02-09 06:16:32 +000041 static lldb::ProcessSP
42 CreateInstance (lldb_private::Target& target,
43 lldb_private::Listener &listener,
44 const lldb_private::FileSpec *crash_file_path);
Greg Clayton363be3f2011-07-15 03:27:12 +000045
46 static void
47 Initialize();
48
49 static void
50 Terminate();
51
52 static const char *
53 GetPluginNameStatic();
54
55 static const char *
56 GetPluginDescriptionStatic();
57
58 //------------------------------------------------------------------
59 // Constructors and Destructors
60 //------------------------------------------------------------------
61 ProcessKDP(lldb_private::Target& target, lldb_private::Listener &listener);
62
63 virtual
64 ~ProcessKDP();
65
66 //------------------------------------------------------------------
67 // Check if a given Process
68 //------------------------------------------------------------------
69 virtual bool
Greg Clayton8d2ea282011-07-17 20:36:25 +000070 CanDebug (lldb_private::Target &target,
71 bool plugin_specified_by_name);
Greg Clayton363be3f2011-07-15 03:27:12 +000072
73 // virtual uint32_t
74 // ListProcessesMatchingName (const char *name, lldb_private::StringList &matches, std::vector<lldb::pid_t> &pids);
75
76 //------------------------------------------------------------------
77 // Creating a new process, or attaching to an existing one
78 //------------------------------------------------------------------
79 virtual lldb_private::Error
80 WillLaunch (lldb_private::Module* module);
81
82 virtual lldb_private::Error
Greg Clayton36bc5ea2011-11-03 21:22:33 +000083 DoLaunch (lldb_private::Module *exe_module,
84 const lldb_private::ProcessLaunchInfo &launch_info);
Greg Clayton363be3f2011-07-15 03:27:12 +000085
86 virtual lldb_private::Error
87 WillAttachToProcessWithID (lldb::pid_t pid);
88
89 virtual lldb_private::Error
90 WillAttachToProcessWithName (const char *process_name, bool wait_for_launch);
91
92 virtual lldb_private::Error
Jason Molendafac2e622012-09-29 04:02:01 +000093 DoConnectRemote (lldb_private::Stream *strm, const char *remote_url);
Greg Clayton363be3f2011-07-15 03:27:12 +000094
95 virtual lldb_private::Error
96 DoAttachToProcessWithID (lldb::pid_t pid);
97
98 virtual lldb_private::Error
Han Ming Ongd1040dd2012-02-25 01:07:38 +000099 DoAttachToProcessWithID (lldb::pid_t pid, const lldb_private::ProcessAttachInfo &attach_info);
100
101 virtual lldb_private::Error
102 DoAttachToProcessWithName (const char *process_name, bool wait_for_launch, const lldb_private::ProcessAttachInfo &attach_info);
Greg Clayton363be3f2011-07-15 03:27:12 +0000103
104 virtual void
105 DidAttach ();
106
Jason Molendab46937c2012-10-03 01:29:34 +0000107 lldb::addr_t
108 GetImageInfoAddress();
109
110 lldb_private::DynamicLoader *
111 GetDynamicLoader ();
112
Greg Clayton363be3f2011-07-15 03:27:12 +0000113 //------------------------------------------------------------------
114 // PluginInterface protocol
115 //------------------------------------------------------------------
116 virtual const char *
117 GetPluginName();
118
119 virtual const char *
120 GetShortPluginName();
121
122 virtual uint32_t
123 GetPluginVersion();
124
125 //------------------------------------------------------------------
126 // Process Control
127 //------------------------------------------------------------------
128 virtual lldb_private::Error
129 WillResume ();
130
131 virtual lldb_private::Error
132 DoResume ();
133
134 virtual lldb_private::Error
135 DoHalt (bool &caused_stop);
136
137 virtual lldb_private::Error
Greg Clayton363be3f2011-07-15 03:27:12 +0000138 DoDetach ();
139
140 virtual lldb_private::Error
141 DoSignal (int signal);
142
143 virtual lldb_private::Error
Greg Clayton3acaa922012-09-25 02:40:06 +0000144 WillDestroy ();
145
146 virtual lldb_private::Error
Greg Clayton363be3f2011-07-15 03:27:12 +0000147 DoDestroy ();
148
149 virtual void
150 RefreshStateAfterStop();
151
152 //------------------------------------------------------------------
153 // Process Queries
154 //------------------------------------------------------------------
155 virtual bool
156 IsAlive ();
157
158 //------------------------------------------------------------------
159 // Process Memory
160 //------------------------------------------------------------------
161 virtual size_t
162 DoReadMemory (lldb::addr_t addr, void *buf, size_t size, lldb_private::Error &error);
163
164 virtual size_t
165 DoWriteMemory (lldb::addr_t addr, const void *buf, size_t size, lldb_private::Error &error);
166
167 virtual lldb::addr_t
168 DoAllocateMemory (size_t size, uint32_t permissions, lldb_private::Error &error);
169
170 virtual lldb_private::Error
171 DoDeallocateMemory (lldb::addr_t ptr);
172
173 //----------------------------------------------------------------------
174 // Process Breakpoints
175 //----------------------------------------------------------------------
176 virtual lldb_private::Error
177 EnableBreakpoint (lldb_private::BreakpointSite *bp_site);
178
179 virtual lldb_private::Error
180 DisableBreakpoint (lldb_private::BreakpointSite *bp_site);
181
182 //----------------------------------------------------------------------
183 // Process Watchpoints
184 //----------------------------------------------------------------------
185 virtual lldb_private::Error
Johnny Chenecd4feb2011-10-14 00:42:25 +0000186 EnableWatchpoint (lldb_private::Watchpoint *wp);
Greg Clayton363be3f2011-07-15 03:27:12 +0000187
188 virtual lldb_private::Error
Johnny Chenecd4feb2011-10-14 00:42:25 +0000189 DisableWatchpoint (lldb_private::Watchpoint *wp);
Greg Clayton363be3f2011-07-15 03:27:12 +0000190
Greg Clayton0fa51242011-07-19 03:57:15 +0000191 CommunicationKDP &
192 GetCommunication()
193 {
194 return m_comm;
195 }
196
Greg Clayton363be3f2011-07-15 03:27:12 +0000197protected:
198 friend class ThreadKDP;
199 friend class CommunicationKDP;
200
201 //----------------------------------------------------------------------
202 // Accessors
203 //----------------------------------------------------------------------
204 bool
205 IsRunning ( lldb::StateType state )
206 {
207 return state == lldb::eStateRunning || IsStepping(state);
208 }
209
210 bool
211 IsStepping ( lldb::StateType state)
212 {
213 return state == lldb::eStateStepping;
214 }
215
216 bool
217 CanResume ( lldb::StateType state)
218 {
219 return state == lldb::eStateStopped;
220 }
221
222 bool
223 HasExited (lldb::StateType state)
224 {
225 return state == lldb::eStateExited;
226 }
227
228 bool
229 ProcessIDIsValid ( ) const;
230
231 // static void
232 // STDIOReadThreadBytesReceived (void *baton, const void *src, size_t src_len);
233
234 // void
235 // AppendSTDOUT (const char* s, size_t len);
236
237 void
238 Clear ( );
239
Greg Claytonae932352012-04-10 00:18:59 +0000240 virtual bool
Greg Clayton37f962e2011-08-22 02:49:39 +0000241 UpdateThreadList (lldb_private::ThreadList &old_thread_list,
242 lldb_private::ThreadList &new_thread_list);
Greg Clayton363be3f2011-07-15 03:27:12 +0000243
Greg Clayton363be3f2011-07-15 03:27:12 +0000244 enum
245 {
246 eBroadcastBitAsyncContinue = (1 << 0),
247 eBroadcastBitAsyncThreadShouldExit = (1 << 1)
248 };
Greg Claytone76f8c42012-09-21 16:31:20 +0000249
Greg Clayton3acaa922012-09-25 02:40:06 +0000250 lldb::ThreadSP
251 GetKernelThread (lldb_private::ThreadList &old_thread_list,
252 lldb_private::ThreadList &new_thread_list);
Greg Clayton363be3f2011-07-15 03:27:12 +0000253
254 //------------------------------------------------------------------
255 /// Broadcaster event bits definitions.
256 //------------------------------------------------------------------
257 CommunicationKDP m_comm;
258 lldb_private::Broadcaster m_async_broadcaster;
259 lldb::thread_t m_async_thread;
Greg Clayton3acaa922012-09-25 02:40:06 +0000260 bool m_destroy_in_process;
Jason Molendab46937c2012-10-03 01:29:34 +0000261 std::string m_dyld_plugin_name;
262 lldb::addr_t m_kernel_load_addr;
Greg Clayton363be3f2011-07-15 03:27:12 +0000263
264 bool
265 StartAsyncThread ();
266
267 void
268 StopAsyncThread ();
269
270 static void *
271 AsyncThread (void *arg);
272
Greg Clayton363be3f2011-07-15 03:27:12 +0000273private:
274 //------------------------------------------------------------------
275 // For ProcessKDP only
276 //------------------------------------------------------------------
277
278 DISALLOW_COPY_AND_ASSIGN (ProcessKDP);
279
280};
281
282#endif // liblldb_ProcessKDP_h_