Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 1 | //===-- ProcessMonitor.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_ProcessMonitor_H_ |
| 11 | #define liblldb_ProcessMonitor_H_ |
| 12 | |
| 13 | // C Includes |
| 14 | #include <semaphore.h> |
| 15 | #include <signal.h> |
| 16 | |
| 17 | // C++ Includes |
| 18 | // Other libraries and framework includes |
| 19 | #include "lldb/lldb-types.h" |
| 20 | #include "lldb/Host/Mutex.h" |
| 21 | |
| 22 | namespace lldb_private |
| 23 | { |
| 24 | class Error; |
| 25 | class Module; |
| 26 | class Scalar; |
| 27 | } // End lldb_private namespace. |
| 28 | |
| 29 | class ProcessFreeBSD; |
| 30 | class Operation; |
| 31 | |
| 32 | /// @class ProcessMonitor |
| 33 | /// @brief Manages communication with the inferior (debugee) process. |
| 34 | /// |
| 35 | /// Upon construction, this class prepares and launches an inferior process for |
| 36 | /// debugging. |
| 37 | /// |
| 38 | /// Changes in the inferior process state are propagated to the associated |
| 39 | /// ProcessFreeBSD instance by calling ProcessFreeBSD::SendMessage with the |
| 40 | /// appropriate ProcessMessage events. |
| 41 | /// |
| 42 | /// A purposely minimal set of operations are provided to interrogate and change |
| 43 | /// the inferior process state. |
| 44 | class ProcessMonitor |
| 45 | { |
| 46 | public: |
| 47 | |
| 48 | /// Launches an inferior process ready for debugging. Forms the |
| 49 | /// implementation of Process::DoLaunch. |
Andrew Kaylor | 6578cb6 | 2013-07-09 22:36:48 +0000 | [diff] [blame] | 50 | ProcessMonitor(ProcessPOSIX *process, |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 51 | lldb_private::Module *module, |
| 52 | char const *argv[], |
| 53 | char const *envp[], |
| 54 | const char *stdin_path, |
| 55 | const char *stdout_path, |
| 56 | const char *stderr_path, |
Daniel Malea | 6217d2a | 2013-01-08 14:49:22 +0000 | [diff] [blame] | 57 | const char *working_dir, |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 58 | lldb_private::Error &error); |
| 59 | |
Andrew Kaylor | 6578cb6 | 2013-07-09 22:36:48 +0000 | [diff] [blame] | 60 | ProcessMonitor(ProcessPOSIX *process, |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 61 | lldb::pid_t pid, |
| 62 | lldb_private::Error &error); |
| 63 | |
| 64 | ~ProcessMonitor(); |
| 65 | |
| 66 | /// Provides the process number of debugee. |
| 67 | lldb::pid_t |
| 68 | GetPID() const { return m_pid; } |
| 69 | |
| 70 | /// Returns the process associated with this ProcessMonitor. |
| 71 | ProcessFreeBSD & |
| 72 | GetProcess() { return *m_process; } |
| 73 | |
| 74 | /// Returns a file descriptor to the controlling terminal of the inferior |
| 75 | /// process. |
| 76 | /// |
| 77 | /// Reads from this file descriptor yield both the standard output and |
| 78 | /// standard error of this debugee. Even if stderr and stdout were |
| 79 | /// redirected on launch it may still happen that data is available on this |
| 80 | /// descriptor (if the inferior process opens /dev/tty, for example). |
| 81 | /// |
| 82 | /// If this monitor was attached to an existing process this method returns |
| 83 | /// -1. |
| 84 | int |
| 85 | GetTerminalFD() const { return m_terminal_fd; } |
| 86 | |
| 87 | /// Reads @p size bytes from address @vm_adder in the inferior process |
| 88 | /// address space. |
| 89 | /// |
| 90 | /// This method is provided to implement Process::DoReadMemory. |
| 91 | size_t |
| 92 | ReadMemory(lldb::addr_t vm_addr, void *buf, size_t size, |
| 93 | lldb_private::Error &error); |
| 94 | |
| 95 | /// Writes @p size bytes from address @p vm_adder in the inferior process |
| 96 | /// address space. |
| 97 | /// |
| 98 | /// This method is provided to implement Process::DoWriteMemory. |
| 99 | size_t |
| 100 | WriteMemory(lldb::addr_t vm_addr, const void *buf, size_t size, |
| 101 | lldb_private::Error &error); |
| 102 | |
| 103 | /// Reads the contents from the register identified by the given (architecture |
| 104 | /// dependent) offset. |
| 105 | /// |
| 106 | /// This method is provided for use by RegisterContextFreeBSD derivatives. |
Daniel Malea | f0da371 | 2012-12-18 19:50:15 +0000 | [diff] [blame] | 107 | /// FIXME: The FreeBSD implementation of this function should use tid in order |
| 108 | /// to enable support for debugging threaded programs. |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 109 | bool |
Ashok Thirumurthi | acbb1a5 | 2013-05-09 19:59:47 +0000 | [diff] [blame] | 110 | ReadRegisterValue(lldb::tid_t tid, unsigned offset, const char *reg_name, |
Daniel Malea | f0da371 | 2012-12-18 19:50:15 +0000 | [diff] [blame] | 111 | unsigned size, lldb_private::RegisterValue &value); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 112 | |
| 113 | /// Writes the given value to the register identified by the given |
| 114 | /// (architecture dependent) offset. |
| 115 | /// |
| 116 | /// This method is provided for use by RegisterContextFreeBSD derivatives. |
Daniel Malea | f0da371 | 2012-12-18 19:50:15 +0000 | [diff] [blame] | 117 | /// FIXME: The FreeBSD implementation of this function should use tid in order |
| 118 | /// to enable support for debugging threaded programs. |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 119 | bool |
Ashok Thirumurthi | acbb1a5 | 2013-05-09 19:59:47 +0000 | [diff] [blame] | 120 | WriteRegisterValue(lldb::tid_t tid, unsigned offset, const char *reg_name, |
Daniel Malea | f0da371 | 2012-12-18 19:50:15 +0000 | [diff] [blame] | 121 | const lldb_private::RegisterValue &value); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 122 | |
| 123 | /// Reads all general purpose registers into the specified buffer. |
Daniel Malea | f0da371 | 2012-12-18 19:50:15 +0000 | [diff] [blame] | 124 | /// FIXME: The FreeBSD implementation of this function should use tid in order |
| 125 | /// to enable support for debugging threaded programs. |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 126 | bool |
Matt Kopec | 7de4846 | 2013-03-06 17:20:48 +0000 | [diff] [blame] | 127 | ReadGPR(lldb::tid_t tid, void *buf, size_t buf_size); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 128 | |
Matt Kopec | c6672c8 | 2013-03-15 20:00:39 +0000 | [diff] [blame] | 129 | /// Reads all floating point registers into the specified buffer. |
Daniel Malea | f0da371 | 2012-12-18 19:50:15 +0000 | [diff] [blame] | 130 | /// FIXME: The FreeBSD implementation of this function should use tid in order |
| 131 | /// to enable support for debugging threaded programs. |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 132 | bool |
Matt Kopec | 7de4846 | 2013-03-06 17:20:48 +0000 | [diff] [blame] | 133 | ReadFPR(lldb::tid_t tid, void *buf, size_t buf_size); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 134 | |
Ashok Thirumurthi | 0f3b9b8 | 2013-05-01 20:38:19 +0000 | [diff] [blame] | 135 | /// Reads the specified register set into the specified buffer. |
| 136 | /// |
| 137 | /// This method is provided for use by RegisterContextFreeBSD derivatives. |
| 138 | /// FIXME: The FreeBSD implementation of this function should use tid in order |
| 139 | /// to enable support for debugging threaded programs. |
| 140 | bool |
| 141 | ReadRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset); |
| 142 | |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 143 | /// Writes all general purpose registers into the specified buffer. |
Daniel Malea | f0da371 | 2012-12-18 19:50:15 +0000 | [diff] [blame] | 144 | /// FIXME: The FreeBSD implementation of this function should use tid in order |
| 145 | /// to enable support for debugging threaded programs. |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 146 | bool |
Matt Kopec | 7de4846 | 2013-03-06 17:20:48 +0000 | [diff] [blame] | 147 | WriteGPR(lldb::tid_t tid, void *buf, size_t buf_size); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 148 | |
Matt Kopec | c6672c8 | 2013-03-15 20:00:39 +0000 | [diff] [blame] | 149 | /// Writes all floating point registers into the specified buffer. |
Daniel Malea | f0da371 | 2012-12-18 19:50:15 +0000 | [diff] [blame] | 150 | /// FIXME: The FreeBSD implementation of this function should use tid in order |
| 151 | /// to enable support for debugging threaded programs. |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 152 | bool |
Ashok Thirumurthi | 0f3b9b8 | 2013-05-01 20:38:19 +0000 | [diff] [blame] | 153 | WriteFPR(lldb::tid_t tid, void *buf, size_t buf_size); |
| 154 | |
| 155 | /// Writes the specified register set into the specified buffer. |
| 156 | /// |
| 157 | /// This method is provided for use by RegisterContextFreeBSD derivatives. |
| 158 | /// FIXME: The FreeBSD implementation of this function should use tid in order |
| 159 | /// to enable support for debugging threaded programs. |
| 160 | bool |
| 161 | WriteRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 162 | |
Ed Maste | 68f5179 | 2013-10-18 19:16:44 +0000 | [diff] [blame] | 163 | /// Reads the value of the thread-specific pointer for a given thread ID. |
| 164 | bool |
| 165 | ReadThreadPointer(lldb::tid_t tid, lldb::addr_t &value); |
| 166 | |
Ed Maste | 819e399 | 2013-07-17 14:02:20 +0000 | [diff] [blame] | 167 | /// Writes a ptrace_lwpinfo structure corresponding to the given thread ID |
| 168 | /// to the memory region pointed to by @p lwpinfo. |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 169 | bool |
Ed Maste | 819e399 | 2013-07-17 14:02:20 +0000 | [diff] [blame] | 170 | GetLwpInfo(lldb::tid_t tid, void *lwpinfo, int &error_no); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 171 | |
| 172 | /// Writes the raw event message code (vis-a-vis PTRACE_GETEVENTMSG) |
| 173 | /// corresponding to the given thread IDto the memory pointed to by @p |
| 174 | /// message. |
| 175 | bool |
| 176 | GetEventMessage(lldb::tid_t tid, unsigned long *message); |
| 177 | |
Ed Maste | 502f902 | 2013-11-25 16:31:23 +0000 | [diff] [blame] | 178 | /// Resumes the process. If @p signo is anything but |
| 179 | /// LLDB_INVALID_SIGNAL_NUMBER, deliver that signal to the process. |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 180 | bool |
Ed Maste | 502f902 | 2013-11-25 16:31:23 +0000 | [diff] [blame] | 181 | Resume(lldb::tid_t unused, uint32_t signo); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 182 | |
Ed Maste | 502f902 | 2013-11-25 16:31:23 +0000 | [diff] [blame] | 183 | /// Single steps the process. If @p signo is anything but |
| 184 | /// LLDB_INVALID_SIGNAL_NUMBER, deliver that signal to the process. |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 185 | bool |
Ed Maste | 502f902 | 2013-11-25 16:31:23 +0000 | [diff] [blame] | 186 | SingleStep(lldb::tid_t unused, uint32_t signo); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 187 | |
| 188 | /// Sends the inferior process a PTRACE_KILL signal. The inferior will |
| 189 | /// still exists and can be interrogated. Once resumed it will exit as |
| 190 | /// though it received a SIGKILL. |
| 191 | bool |
| 192 | BringProcessIntoLimbo(); |
| 193 | |
| 194 | lldb_private::Error |
Matt Kopec | edee182 | 2013-06-03 19:48:53 +0000 | [diff] [blame] | 195 | Detach(lldb::tid_t tid); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 196 | |
Andrew Kaylor | bc68b43 | 2013-07-10 21:57:27 +0000 | [diff] [blame] | 197 | void |
| 198 | StopMonitor(); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 199 | |
Andrew Kaylor | d4d5499 | 2013-09-17 00:30:24 +0000 | [diff] [blame] | 200 | // Waits for the initial stop message from a new thread. |
| 201 | bool |
| 202 | WaitForInitialTIDStop(lldb::tid_t tid); |
| 203 | |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 204 | private: |
Andrew Kaylor | 6578cb6 | 2013-07-09 22:36:48 +0000 | [diff] [blame] | 205 | ProcessFreeBSD *m_process; |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 206 | |
| 207 | lldb::thread_t m_operation_thread; |
| 208 | lldb::thread_t m_monitor_thread; |
| 209 | lldb::pid_t m_pid; |
| 210 | |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 211 | int m_terminal_fd; |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 212 | |
Ed Maste | 756e1ff | 2013-09-18 19:34:08 +0000 | [diff] [blame] | 213 | // current operation which must be executed on the privileged thread |
| 214 | Operation *m_operation; |
| 215 | lldb_private::Mutex m_operation_mutex; |
| 216 | |
| 217 | // semaphores notified when Operation is ready to be processed and when |
| 218 | // the operation is complete. |
| 219 | sem_t m_operation_pending; |
| 220 | sem_t m_operation_done; |
| 221 | |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 222 | struct OperationArgs |
| 223 | { |
| 224 | OperationArgs(ProcessMonitor *monitor); |
| 225 | |
| 226 | ~OperationArgs(); |
| 227 | |
| 228 | ProcessMonitor *m_monitor; // The monitor performing the attach. |
| 229 | sem_t m_semaphore; // Posted to once operation complete. |
| 230 | lldb_private::Error m_error; // Set if process operation failed. |
| 231 | }; |
| 232 | |
| 233 | /// @class LauchArgs |
| 234 | /// |
| 235 | /// @brief Simple structure to pass data to the thread responsible for |
| 236 | /// launching a child process. |
| 237 | struct LaunchArgs : OperationArgs |
| 238 | { |
| 239 | LaunchArgs(ProcessMonitor *monitor, |
| 240 | lldb_private::Module *module, |
| 241 | char const **argv, |
| 242 | char const **envp, |
| 243 | const char *stdin_path, |
| 244 | const char *stdout_path, |
Daniel Malea | 6217d2a | 2013-01-08 14:49:22 +0000 | [diff] [blame] | 245 | const char *stderr_path, |
| 246 | const char *working_dir); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 247 | |
| 248 | ~LaunchArgs(); |
| 249 | |
| 250 | lldb_private::Module *m_module; // The executable image to launch. |
| 251 | char const **m_argv; // Process arguments. |
| 252 | char const **m_envp; // Process environment. |
| 253 | const char *m_stdin_path; // Redirect stdin or NULL. |
| 254 | const char *m_stdout_path; // Redirect stdout or NULL. |
| 255 | const char *m_stderr_path; // Redirect stderr or NULL. |
Daniel Malea | 6217d2a | 2013-01-08 14:49:22 +0000 | [diff] [blame] | 256 | const char *m_working_dir; // Working directory or NULL. |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 257 | }; |
| 258 | |
| 259 | void |
| 260 | StartLaunchOpThread(LaunchArgs *args, lldb_private::Error &error); |
| 261 | |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 262 | static void * |
| 263 | LaunchOpThread(void *arg); |
| 264 | |
| 265 | static bool |
| 266 | Launch(LaunchArgs *args); |
| 267 | |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 268 | struct AttachArgs : OperationArgs |
| 269 | { |
| 270 | AttachArgs(ProcessMonitor *monitor, |
| 271 | lldb::pid_t pid); |
| 272 | |
| 273 | ~AttachArgs(); |
| 274 | |
| 275 | lldb::pid_t m_pid; // pid of the process to be attached. |
| 276 | }; |
| 277 | |
| 278 | void |
| 279 | StartAttachOpThread(AttachArgs *args, lldb_private::Error &error); |
| 280 | |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 281 | static void * |
| 282 | AttachOpThread(void *args); |
| 283 | |
| 284 | static bool |
| 285 | Attach(AttachArgs *args); |
| 286 | |
| 287 | static void |
| 288 | ServeOperation(OperationArgs *args); |
| 289 | |
| 290 | static bool |
| 291 | DupDescriptor(const char *path, int fd, int flags); |
| 292 | |
| 293 | static bool |
| 294 | MonitorCallback(void *callback_baton, |
| 295 | lldb::pid_t pid, bool exited, int signal, int status); |
| 296 | |
| 297 | static ProcessMessage |
| 298 | MonitorSIGTRAP(ProcessMonitor *monitor, |
| 299 | const siginfo_t *info, lldb::pid_t pid); |
| 300 | |
| 301 | static ProcessMessage |
| 302 | MonitorSignal(ProcessMonitor *monitor, |
| 303 | const siginfo_t *info, lldb::pid_t pid); |
| 304 | |
| 305 | static ProcessMessage::CrashReason |
| 306 | GetCrashReasonForSIGSEGV(const siginfo_t *info); |
| 307 | |
| 308 | static ProcessMessage::CrashReason |
| 309 | GetCrashReasonForSIGILL(const siginfo_t *info); |
| 310 | |
| 311 | static ProcessMessage::CrashReason |
| 312 | GetCrashReasonForSIGFPE(const siginfo_t *info); |
| 313 | |
| 314 | static ProcessMessage::CrashReason |
| 315 | GetCrashReasonForSIGBUS(const siginfo_t *info); |
| 316 | |
| 317 | void |
| 318 | DoOperation(Operation *op); |
| 319 | |
| 320 | /// Stops the child monitor thread. |
| 321 | void |
| 322 | StopMonitoringChildProcess(); |
| 323 | |
Ed Maste | a02f553 | 2013-07-02 16:45:16 +0000 | [diff] [blame] | 324 | /// Stops the operation thread used to attach/launch a process. |
| 325 | void |
| 326 | StopOpThread(); |
Johnny Chen | 9ed5b49 | 2012-01-05 21:48:15 +0000 | [diff] [blame] | 327 | }; |
| 328 | |
| 329 | #endif // #ifndef liblldb_ProcessMonitor_H_ |