Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1 | //===-- 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 |
| 14 | |
| 15 | // C++ Includes |
| 16 | #include <list> |
| 17 | |
| 18 | // Other libraries and framework includes |
| 19 | #include "lldb/Core/ArchSpec.h" |
| 20 | #include "lldb/Core/Broadcaster.h" |
| 21 | #include "lldb/Core/Error.h" |
| 22 | #include "lldb/Core/InputReader.h" |
| 23 | #include "lldb/Core/StreamString.h" |
Jim Ingham | 7508e73 | 2010-08-09 23:31:02 +0000 | [diff] [blame] | 24 | #include "lldb/Core/StringList.h" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 25 | #include "lldb/Core/ThreadSafeValue.h" |
| 26 | #include "lldb/Target/Process.h" |
| 27 | #include "lldb/Target/Thread.h" |
| 28 | |
| 29 | #include "GDBRemoteCommunication.h" |
Greg Clayton | 54e7afa | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 30 | #include "Utility/StringExtractor.h" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 31 | #include "GDBRemoteRegisterContext.h" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 32 | |
| 33 | class ThreadGDBRemote; |
| 34 | |
| 35 | class ProcessGDBRemote : public lldb_private::Process |
| 36 | { |
| 37 | public: |
| 38 | //------------------------------------------------------------------ |
| 39 | // Constructors and Destructors |
| 40 | //------------------------------------------------------------------ |
| 41 | static Process* |
| 42 | CreateInstance (lldb_private::Target& target, lldb_private::Listener &listener); |
| 43 | |
| 44 | static void |
| 45 | Initialize(); |
| 46 | |
| 47 | static void |
| 48 | Terminate(); |
| 49 | |
| 50 | static const char * |
| 51 | GetPluginNameStatic(); |
| 52 | |
| 53 | static const char * |
| 54 | GetPluginDescriptionStatic(); |
| 55 | |
| 56 | //------------------------------------------------------------------ |
| 57 | // Constructors and Destructors |
| 58 | //------------------------------------------------------------------ |
| 59 | ProcessGDBRemote(lldb_private::Target& target, lldb_private::Listener &listener); |
| 60 | |
| 61 | virtual |
| 62 | ~ProcessGDBRemote(); |
| 63 | |
| 64 | //------------------------------------------------------------------ |
| 65 | // Check if a given Process |
| 66 | //------------------------------------------------------------------ |
| 67 | virtual bool |
| 68 | CanDebug (lldb_private::Target &target); |
| 69 | |
Jim Ingham | 7508e73 | 2010-08-09 23:31:02 +0000 | [diff] [blame] | 70 | virtual uint32_t |
| 71 | ListProcessesMatchingName (const char *name, lldb_private::StringList &matches, std::vector<lldb::pid_t> &pids); |
| 72 | |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 73 | //------------------------------------------------------------------ |
| 74 | // Creating a new process, or attaching to an existing one |
| 75 | //------------------------------------------------------------------ |
| 76 | virtual lldb_private::Error |
| 77 | WillLaunch (lldb_private::Module* module); |
| 78 | |
| 79 | virtual lldb_private::Error |
| 80 | DoLaunch (lldb_private::Module* module, |
| 81 | char const *argv[], // Can be NULL |
| 82 | char const *envp[], // Can be NULL |
Greg Clayton | 452bf61 | 2010-08-31 18:35:14 +0000 | [diff] [blame] | 83 | uint32_t flags, |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 84 | const char *stdin_path, // Can be NULL |
| 85 | const char *stdout_path, // Can be NULL |
| 86 | const char *stderr_path); // Can be NULL |
| 87 | |
| 88 | virtual void |
| 89 | DidLaunch (); |
| 90 | |
| 91 | virtual lldb_private::Error |
Greg Clayton | 20d338f | 2010-11-18 05:57:03 +0000 | [diff] [blame] | 92 | WillAttachToProcessWithID (lldb::pid_t pid); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 93 | |
| 94 | virtual lldb_private::Error |
Greg Clayton | 20d338f | 2010-11-18 05:57:03 +0000 | [diff] [blame] | 95 | WillAttachToProcessWithName (const char *process_name, bool wait_for_launch); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 96 | |
| 97 | lldb_private::Error |
| 98 | WillLaunchOrAttach (); |
| 99 | |
| 100 | virtual lldb_private::Error |
Greg Clayton | 54e7afa | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 101 | DoAttachToProcessWithID (lldb::pid_t pid); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 102 | |
| 103 | virtual lldb_private::Error |
Greg Clayton | 54e7afa | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 104 | DoAttachToProcessWithName (const char *process_name, bool wait_for_launch); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 105 | |
| 106 | virtual void |
| 107 | DidAttach (); |
| 108 | |
| 109 | //------------------------------------------------------------------ |
| 110 | // PluginInterface protocol |
| 111 | //------------------------------------------------------------------ |
| 112 | virtual const char * |
| 113 | GetPluginName(); |
| 114 | |
| 115 | virtual const char * |
| 116 | GetShortPluginName(); |
| 117 | |
| 118 | virtual uint32_t |
| 119 | GetPluginVersion(); |
| 120 | |
| 121 | virtual void |
| 122 | GetPluginCommandHelp (const char *command, lldb_private::Stream *strm); |
| 123 | |
| 124 | virtual lldb_private::Error |
| 125 | ExecutePluginCommand (lldb_private::Args &command, lldb_private::Stream *strm); |
| 126 | |
| 127 | virtual lldb_private::Log * |
| 128 | EnablePluginLogging (lldb_private::Stream *strm, lldb_private::Args &command); |
| 129 | |
| 130 | //------------------------------------------------------------------ |
| 131 | // Process Control |
| 132 | //------------------------------------------------------------------ |
| 133 | virtual lldb_private::Error |
| 134 | WillResume (); |
| 135 | |
| 136 | virtual lldb_private::Error |
| 137 | DoResume (); |
| 138 | |
| 139 | virtual lldb_private::Error |
Jim Ingham | 3ae449a | 2010-11-17 02:32:00 +0000 | [diff] [blame] | 140 | DoHalt (bool &caused_stop); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 141 | |
| 142 | virtual lldb_private::Error |
| 143 | WillDetach (); |
| 144 | |
| 145 | virtual lldb_private::Error |
| 146 | DoDetach (); |
| 147 | |
| 148 | virtual lldb_private::Error |
| 149 | DoSignal (int signal); |
| 150 | |
| 151 | virtual lldb_private::Error |
| 152 | DoDestroy (); |
| 153 | |
| 154 | virtual void |
| 155 | RefreshStateAfterStop(); |
| 156 | |
| 157 | //------------------------------------------------------------------ |
| 158 | // Process Queries |
| 159 | //------------------------------------------------------------------ |
| 160 | virtual bool |
| 161 | IsAlive (); |
| 162 | |
| 163 | virtual lldb::addr_t |
| 164 | GetImageInfoAddress(); |
| 165 | |
| 166 | //------------------------------------------------------------------ |
| 167 | // Process Memory |
| 168 | //------------------------------------------------------------------ |
| 169 | virtual size_t |
| 170 | DoReadMemory (lldb::addr_t addr, void *buf, size_t size, lldb_private::Error &error); |
| 171 | |
| 172 | virtual size_t |
| 173 | DoWriteMemory (lldb::addr_t addr, const void *buf, size_t size, lldb_private::Error &error); |
| 174 | |
| 175 | virtual lldb::addr_t |
| 176 | DoAllocateMemory (size_t size, uint32_t permissions, lldb_private::Error &error); |
| 177 | |
| 178 | virtual lldb_private::Error |
| 179 | DoDeallocateMemory (lldb::addr_t ptr); |
| 180 | |
| 181 | //------------------------------------------------------------------ |
| 182 | // Process STDIO |
| 183 | //------------------------------------------------------------------ |
| 184 | virtual size_t |
| 185 | GetSTDOUT (char *buf, size_t buf_size, lldb_private::Error &error); |
| 186 | |
| 187 | virtual size_t |
| 188 | GetSTDERR (char *buf, size_t buf_size, lldb_private::Error &error); |
| 189 | |
| 190 | virtual size_t |
| 191 | PutSTDIN (const char *buf, size_t buf_size, lldb_private::Error &error); |
| 192 | |
| 193 | //---------------------------------------------------------------------- |
| 194 | // Process Breakpoints |
| 195 | //---------------------------------------------------------------------- |
| 196 | virtual size_t |
| 197 | GetSoftwareBreakpointTrapOpcode (lldb_private::BreakpointSite *bp_site); |
| 198 | |
| 199 | //---------------------------------------------------------------------- |
| 200 | // Process Breakpoints |
| 201 | //---------------------------------------------------------------------- |
| 202 | virtual lldb_private::Error |
| 203 | EnableBreakpoint (lldb_private::BreakpointSite *bp_site); |
| 204 | |
| 205 | virtual lldb_private::Error |
| 206 | DisableBreakpoint (lldb_private::BreakpointSite *bp_site); |
| 207 | |
| 208 | //---------------------------------------------------------------------- |
| 209 | // Process Watchpoints |
| 210 | //---------------------------------------------------------------------- |
| 211 | virtual lldb_private::Error |
| 212 | EnableWatchpoint (lldb_private::WatchpointLocation *wp_loc); |
| 213 | |
| 214 | virtual lldb_private::Error |
| 215 | DisableWatchpoint (lldb_private::WatchpointLocation *wp_loc); |
| 216 | |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 217 | virtual lldb_private::DynamicLoader * |
| 218 | GetDynamicLoader (); |
Jim Ingham | 55e01d8 | 2011-01-22 01:33:44 +0000 | [diff] [blame^] | 219 | |
| 220 | virtual bool |
| 221 | StartNoticingNewThreads(); |
| 222 | |
| 223 | virtual bool |
| 224 | StopNoticingNewThreads(); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 225 | |
| 226 | protected: |
| 227 | friend class ThreadGDBRemote; |
| 228 | friend class GDBRemoteCommunication; |
| 229 | friend class GDBRemoteRegisterContext; |
| 230 | |
| 231 | bool |
| 232 | SetCurrentGDBRemoteThread (int tid); |
| 233 | |
| 234 | bool |
| 235 | SetCurrentGDBRemoteThreadForRun (int tid); |
| 236 | |
| 237 | //---------------------------------------------------------------------- |
| 238 | // Accessors |
| 239 | //---------------------------------------------------------------------- |
| 240 | bool |
| 241 | IsRunning ( lldb::StateType state ) |
| 242 | { |
| 243 | return state == lldb::eStateRunning || IsStepping(state); |
| 244 | } |
| 245 | |
| 246 | bool |
| 247 | IsStepping ( lldb::StateType state) |
| 248 | { |
| 249 | return state == lldb::eStateStepping; |
| 250 | } |
| 251 | bool |
| 252 | CanResume ( lldb::StateType state) |
| 253 | { |
| 254 | return state == lldb::eStateStopped; |
| 255 | } |
| 256 | |
| 257 | bool |
| 258 | HasExited (lldb::StateType state) |
| 259 | { |
| 260 | return state == lldb::eStateExited; |
| 261 | } |
| 262 | |
| 263 | bool |
| 264 | ProcessIDIsValid ( ) const; |
| 265 | |
Caroline Tice | 861efb3 | 2010-11-16 05:07:41 +0000 | [diff] [blame] | 266 | // static void |
| 267 | // STDIOReadThreadBytesReceived (void *baton, const void *src, size_t src_len); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 268 | |
Caroline Tice | 861efb3 | 2010-11-16 05:07:41 +0000 | [diff] [blame] | 269 | // void |
| 270 | // AppendSTDOUT (const char* s, size_t len); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 271 | |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 272 | void |
| 273 | Clear ( ); |
| 274 | |
| 275 | lldb_private::Flags & |
| 276 | GetFlags () |
| 277 | { |
| 278 | return m_flags; |
| 279 | } |
| 280 | |
| 281 | const lldb_private::Flags & |
| 282 | GetFlags () const |
| 283 | { |
| 284 | return m_flags; |
| 285 | } |
| 286 | |
| 287 | uint32_t |
| 288 | UpdateThreadListIfNeeded (); |
| 289 | |
| 290 | lldb_private::Error |
Greg Clayton | 23cf0c7 | 2010-11-08 04:29:11 +0000 | [diff] [blame] | 291 | StartDebugserverProcess (const char *debugserver_url, // The connection string to use in the spawned debugserver ("localhost:1234" or "/dev/tty...") |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 292 | char const *inferior_argv[], |
| 293 | char const *inferior_envp[], |
| 294 | const char *stdin_path, |
Greg Clayton | 23cf0c7 | 2010-11-08 04:29:11 +0000 | [diff] [blame] | 295 | bool launch_process, // Set to true if we are going to be launching a the process |
| 296 | lldb::pid_t attach_pid, // If inferior inferior_argv == NULL, then attach to this pid |
| 297 | const char *attach_pid_name, // Wait for the next process to launch whose basename matches "attach_wait_name" |
| 298 | bool wait_for_launch, // Wait for the process named "attach_wait_name" to launch |
Caroline Tice | bd66601 | 2010-12-03 18:46:09 +0000 | [diff] [blame] | 299 | uint32_t launch_flags, |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 300 | lldb_private::ArchSpec& arch_spec); |
| 301 | |
| 302 | void |
| 303 | KillDebugserverProcess (); |
| 304 | |
| 305 | void |
| 306 | BuildDynamicRegisterInfo (); |
| 307 | |
| 308 | GDBRemoteCommunication & |
| 309 | GetGDBRemote() |
| 310 | { |
| 311 | return m_gdb_comm; |
| 312 | } |
| 313 | |
| 314 | //------------------------------------------------------------------ |
| 315 | /// Broadcaster event bits definitions. |
| 316 | //------------------------------------------------------------------ |
| 317 | enum |
| 318 | { |
| 319 | eBroadcastBitAsyncContinue = (1 << 0), |
| 320 | eBroadcastBitAsyncThreadShouldExit = (1 << 1) |
| 321 | }; |
| 322 | |
| 323 | |
| 324 | std::auto_ptr<lldb_private::DynamicLoader> m_dynamic_loader_ap; |
| 325 | lldb_private::Flags m_flags; // Process specific flags (see eFlags enums) |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 326 | lldb_private::Mutex m_stdio_mutex; // Multithreaded protection for stdio |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 327 | GDBRemoteCommunication m_gdb_comm; |
| 328 | lldb::pid_t m_debugserver_pid; |
Greg Clayton | 75ccf50 | 2010-08-21 02:22:51 +0000 | [diff] [blame] | 329 | lldb::thread_t m_debugserver_thread; |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 330 | StringExtractor m_last_stop_packet; |
| 331 | GDBRemoteDynamicRegisterInfo m_register_info; |
| 332 | lldb_private::Broadcaster m_async_broadcaster; |
| 333 | lldb::thread_t m_async_thread; |
| 334 | // Current GDB remote state. Any members added here need to be reset to |
| 335 | // proper default values in ResetGDBRemoteState (). |
| 336 | lldb::tid_t m_curr_tid; // Current gdb remote protocol thread index for all other operations |
| 337 | lldb::tid_t m_curr_tid_run; // Current gdb remote protocol thread index for continue, step, etc |
| 338 | uint32_t m_z0_supported:1; // Set to non-zero if Z0 and z0 packets are supported |
| 339 | lldb_private::StreamString m_continue_packet; |
| 340 | lldb::addr_t m_dispatch_queue_offsets_addr; |
| 341 | uint32_t m_packet_timeout; |
| 342 | size_t m_max_memory_size; // The maximum number of bytes to read/write when reading and writing memory |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 343 | bool m_waiting_for_attach; |
Jim Ingham | 7508e73 | 2010-08-09 23:31:02 +0000 | [diff] [blame] | 344 | bool m_local_debugserver; // Is the debugserver process we are talking to local or on another machine. |
Jim Ingham | 55e01d8 | 2011-01-22 01:33:44 +0000 | [diff] [blame^] | 345 | std::vector<lldb::user_id_t> m_thread_observation_bps; |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 346 | |
| 347 | void |
| 348 | ResetGDBRemoteState (); |
| 349 | |
| 350 | bool |
| 351 | StartAsyncThread (); |
| 352 | |
| 353 | void |
| 354 | StopAsyncThread (); |
| 355 | |
| 356 | static void * |
| 357 | AsyncThread (void *arg); |
| 358 | |
| 359 | static bool |
| 360 | MonitorDebugserverProcess (void *callback_baton, |
| 361 | lldb::pid_t pid, |
| 362 | int signo, // Zero for no signal |
| 363 | int exit_status); // Exit value of process if signal is zero |
| 364 | |
| 365 | lldb::StateType |
| 366 | SetThreadStopInfo (StringExtractor& stop_packet); |
| 367 | |
| 368 | void |
| 369 | DidLaunchOrAttach (); |
| 370 | |
| 371 | lldb_private::Error |
| 372 | ConnectToDebugserver (const char *host_port); |
| 373 | |
| 374 | const char * |
| 375 | GetDispatchQueueNameForThread (lldb::addr_t thread_dispatch_qaddr, |
| 376 | std::string &dispatch_queue_name); |
| 377 | |
| 378 | static size_t |
| 379 | AttachInputReaderCallback (void *baton, |
| 380 | lldb_private::InputReader *reader, |
| 381 | lldb::InputReaderAction notification, |
| 382 | const char *bytes, |
| 383 | size_t bytes_len); |
| 384 | |
| 385 | private: |
| 386 | //------------------------------------------------------------------ |
| 387 | // For ProcessGDBRemote only |
| 388 | //------------------------------------------------------------------ |
Jim Ingham | 55e01d8 | 2011-01-22 01:33:44 +0000 | [diff] [blame^] | 389 | static bool |
| 390 | NewThreadNotifyBreakpointHit (void *baton, |
| 391 | lldb_private::StoppointCallbackContext *context, |
| 392 | lldb::user_id_t break_id, |
| 393 | lldb::user_id_t break_loc_id); |
| 394 | |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 395 | DISALLOW_COPY_AND_ASSIGN (ProcessGDBRemote); |
| 396 | |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 397 | }; |
| 398 | |
| 399 | #endif // liblldb_ProcessGDBRemote_h_ |