blob: 825e6b66d15826824dbc6d08ad75416c19c690d5 [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
93 DoConnectRemote (const char *remote_url);
94
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
107 //------------------------------------------------------------------
108 // PluginInterface protocol
109 //------------------------------------------------------------------
110 virtual const char *
111 GetPluginName();
112
113 virtual const char *
114 GetShortPluginName();
115
116 virtual uint32_t
117 GetPluginVersion();
118
119 //------------------------------------------------------------------
120 // Process Control
121 //------------------------------------------------------------------
122 virtual lldb_private::Error
123 WillResume ();
124
125 virtual lldb_private::Error
126 DoResume ();
127
128 virtual lldb_private::Error
129 DoHalt (bool &caused_stop);
130
131 virtual lldb_private::Error
Greg Clayton363be3f2011-07-15 03:27:12 +0000132 DoDetach ();
133
134 virtual lldb_private::Error
135 DoSignal (int signal);
136
137 virtual lldb_private::Error
Greg Clayton3acaa922012-09-25 02:40:06 +0000138 WillDestroy ();
139
140 virtual lldb_private::Error
Greg Clayton363be3f2011-07-15 03:27:12 +0000141 DoDestroy ();
142
143 virtual void
144 RefreshStateAfterStop();
145
146 //------------------------------------------------------------------
147 // Process Queries
148 //------------------------------------------------------------------
149 virtual bool
150 IsAlive ();
151
152 //------------------------------------------------------------------
153 // Process Memory
154 //------------------------------------------------------------------
155 virtual size_t
156 DoReadMemory (lldb::addr_t addr, void *buf, size_t size, lldb_private::Error &error);
157
158 virtual size_t
159 DoWriteMemory (lldb::addr_t addr, const void *buf, size_t size, lldb_private::Error &error);
160
161 virtual lldb::addr_t
162 DoAllocateMemory (size_t size, uint32_t permissions, lldb_private::Error &error);
163
164 virtual lldb_private::Error
165 DoDeallocateMemory (lldb::addr_t ptr);
166
167 //----------------------------------------------------------------------
168 // Process Breakpoints
169 //----------------------------------------------------------------------
170 virtual lldb_private::Error
171 EnableBreakpoint (lldb_private::BreakpointSite *bp_site);
172
173 virtual lldb_private::Error
174 DisableBreakpoint (lldb_private::BreakpointSite *bp_site);
175
176 //----------------------------------------------------------------------
177 // Process Watchpoints
178 //----------------------------------------------------------------------
179 virtual lldb_private::Error
Johnny Chenecd4feb2011-10-14 00:42:25 +0000180 EnableWatchpoint (lldb_private::Watchpoint *wp);
Greg Clayton363be3f2011-07-15 03:27:12 +0000181
182 virtual lldb_private::Error
Johnny Chenecd4feb2011-10-14 00:42:25 +0000183 DisableWatchpoint (lldb_private::Watchpoint *wp);
Greg Clayton363be3f2011-07-15 03:27:12 +0000184
Greg Clayton0fa51242011-07-19 03:57:15 +0000185 CommunicationKDP &
186 GetCommunication()
187 {
188 return m_comm;
189 }
190
Greg Clayton363be3f2011-07-15 03:27:12 +0000191protected:
192 friend class ThreadKDP;
193 friend class CommunicationKDP;
194
195 //----------------------------------------------------------------------
196 // Accessors
197 //----------------------------------------------------------------------
198 bool
199 IsRunning ( lldb::StateType state )
200 {
201 return state == lldb::eStateRunning || IsStepping(state);
202 }
203
204 bool
205 IsStepping ( lldb::StateType state)
206 {
207 return state == lldb::eStateStepping;
208 }
209
210 bool
211 CanResume ( lldb::StateType state)
212 {
213 return state == lldb::eStateStopped;
214 }
215
216 bool
217 HasExited (lldb::StateType state)
218 {
219 return state == lldb::eStateExited;
220 }
221
222 bool
223 ProcessIDIsValid ( ) const;
224
225 // static void
226 // STDIOReadThreadBytesReceived (void *baton, const void *src, size_t src_len);
227
228 // void
229 // AppendSTDOUT (const char* s, size_t len);
230
231 void
232 Clear ( );
233
Greg Claytonae932352012-04-10 00:18:59 +0000234 virtual bool
Greg Clayton37f962e2011-08-22 02:49:39 +0000235 UpdateThreadList (lldb_private::ThreadList &old_thread_list,
236 lldb_private::ThreadList &new_thread_list);
Greg Clayton363be3f2011-07-15 03:27:12 +0000237
Greg Clayton363be3f2011-07-15 03:27:12 +0000238 enum
239 {
240 eBroadcastBitAsyncContinue = (1 << 0),
241 eBroadcastBitAsyncThreadShouldExit = (1 << 1)
242 };
Greg Claytone76f8c42012-09-21 16:31:20 +0000243
Greg Clayton3acaa922012-09-25 02:40:06 +0000244 lldb::ThreadSP
245 GetKernelThread (lldb_private::ThreadList &old_thread_list,
246 lldb_private::ThreadList &new_thread_list);
Greg Clayton363be3f2011-07-15 03:27:12 +0000247
248 //------------------------------------------------------------------
249 /// Broadcaster event bits definitions.
250 //------------------------------------------------------------------
251 CommunicationKDP m_comm;
252 lldb_private::Broadcaster m_async_broadcaster;
253 lldb::thread_t m_async_thread;
Greg Clayton3acaa922012-09-25 02:40:06 +0000254 bool m_destroy_in_process;
Greg Clayton363be3f2011-07-15 03:27:12 +0000255
256 bool
257 StartAsyncThread ();
258
259 void
260 StopAsyncThread ();
261
262 static void *
263 AsyncThread (void *arg);
264
Greg Clayton363be3f2011-07-15 03:27:12 +0000265private:
266 //------------------------------------------------------------------
267 // For ProcessKDP only
268 //------------------------------------------------------------------
269
270 DISALLOW_COPY_AND_ASSIGN (ProcessKDP);
271
272};
273
274#endif // liblldb_ProcessKDP_h_