1af245d11STodd Fiala //===-- NativeProcessLinux.cpp -------------------------------- -*- C++ -*-===//
2af245d11STodd Fiala //
3af245d11STodd Fiala //                     The LLVM Compiler Infrastructure
4af245d11STodd Fiala //
5af245d11STodd Fiala // This file is distributed under the University of Illinois Open Source
6af245d11STodd Fiala // License. See LICENSE.TXT for details.
7af245d11STodd Fiala //
8af245d11STodd Fiala //===----------------------------------------------------------------------===//
9af245d11STodd Fiala 
10af245d11STodd Fiala #include "NativeProcessLinux.h"
11af245d11STodd Fiala 
12af245d11STodd Fiala // C Includes
13af245d11STodd Fiala #include <errno.h>
145b981ab9SPavel Labath #include <semaphore.h>
15af245d11STodd Fiala #include <string.h>
16af245d11STodd Fiala #include <stdint.h>
17af245d11STodd Fiala #include <unistd.h>
18af245d11STodd Fiala 
19af245d11STodd Fiala // C++ Includes
20af245d11STodd Fiala #include <fstream>
21df7c6995SPavel Labath #include <mutex>
22c076559aSPavel Labath #include <sstream>
23af245d11STodd Fiala #include <string>
245b981ab9SPavel Labath #include <unordered_map>
25af245d11STodd Fiala 
26af245d11STodd Fiala // Other libraries and framework includes
27d8c338d4STamas Berghammer #include "lldb/Core/EmulateInstruction.h"
28af245d11STodd Fiala #include "lldb/Core/Error.h"
29af245d11STodd Fiala #include "lldb/Core/Module.h"
306edef204SOleksiy Vyalov #include "lldb/Core/ModuleSpec.h"
31af245d11STodd Fiala #include "lldb/Core/RegisterValue.h"
32af245d11STodd Fiala #include "lldb/Core/State.h"
331e209fccSTamas Berghammer #include "lldb/Host/common/NativeBreakpoint.h"
340cbf0b13STamas Berghammer #include "lldb/Host/common/NativeRegisterContext.h"
35af245d11STodd Fiala #include "lldb/Host/Host.h"
3639de3110SZachary Turner #include "lldb/Host/ThreadLauncher.h"
375b981ab9SPavel Labath #include "lldb/Target/Platform.h"
3890aff47cSZachary Turner #include "lldb/Target/Process.h"
39af245d11STodd Fiala #include "lldb/Target/ProcessLaunchInfo.h"
405b981ab9SPavel Labath #include "lldb/Target/Target.h"
41c16f5dcaSChaoren Lin #include "lldb/Utility/LLDBAssert.h"
42af245d11STodd Fiala #include "lldb/Utility/PseudoTerminal.h"
43af245d11STodd Fiala 
441e209fccSTamas Berghammer #include "Plugins/Process/POSIX/ProcessPOSIXLog.h"
45af245d11STodd Fiala #include "Plugins/Process/Utility/LinuxSignals.h"
461e209fccSTamas Berghammer #include "Utility/StringExtractor.h"
47af245d11STodd Fiala #include "NativeThreadLinux.h"
48af245d11STodd Fiala #include "ProcFileReader.h"
491e209fccSTamas Berghammer #include "Procfs.h"
50cacde7dfSTodd Fiala 
51d858487eSTamas Berghammer // System includes - They have to be included after framework includes because they define some
52d858487eSTamas Berghammer // macros which collide with variable names in other modules
53d858487eSTamas Berghammer #include <linux/unistd.h>
54d858487eSTamas Berghammer #include <sys/socket.h>
558b335671SVince Harron 
56df7c6995SPavel Labath #include <sys/syscall.h>
57d858487eSTamas Berghammer #include <sys/types.h>
58d858487eSTamas Berghammer #include <sys/user.h>
59d858487eSTamas Berghammer #include <sys/wait.h>
60d858487eSTamas Berghammer 
618b335671SVince Harron #include "lldb/Host/linux/Personality.h"
628b335671SVince Harron #include "lldb/Host/linux/Ptrace.h"
638b335671SVince Harron #include "lldb/Host/linux/Signalfd.h"
64df7c6995SPavel Labath #include "lldb/Host/linux/Uio.h"
658b335671SVince Harron #include "lldb/Host/android/Android.h"
66af245d11STodd Fiala 
670bce1b67STodd Fiala #define LLDB_PERSONALITY_GET_CURRENT_SETTINGS  0xffffffff
68af245d11STodd Fiala 
69af245d11STodd Fiala // Support hardware breakpoints in case it has not been defined
70af245d11STodd Fiala #ifndef TRAP_HWBKPT
71af245d11STodd Fiala   #define TRAP_HWBKPT 4
72af245d11STodd Fiala #endif
73af245d11STodd Fiala 
747cb18bf5STamas Berghammer using namespace lldb;
757cb18bf5STamas Berghammer using namespace lldb_private;
76db264a6dSTamas Berghammer using namespace lldb_private::process_linux;
777cb18bf5STamas Berghammer using namespace llvm;
787cb18bf5STamas Berghammer 
79af245d11STodd Fiala // Private bits we only need internally.
80df7c6995SPavel Labath 
81df7c6995SPavel Labath static bool ProcessVmReadvSupported()
82df7c6995SPavel Labath {
83df7c6995SPavel Labath     static bool is_supported;
84df7c6995SPavel Labath     static std::once_flag flag;
85df7c6995SPavel Labath 
86df7c6995SPavel Labath     std::call_once(flag, [] {
87df7c6995SPavel Labath         Log *log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
88df7c6995SPavel Labath 
89df7c6995SPavel Labath         uint32_t source = 0x47424742;
90df7c6995SPavel Labath         uint32_t dest = 0;
91df7c6995SPavel Labath 
92df7c6995SPavel Labath         struct iovec local, remote;
93df7c6995SPavel Labath         remote.iov_base = &source;
94df7c6995SPavel Labath         local.iov_base = &dest;
95df7c6995SPavel Labath         remote.iov_len = local.iov_len = sizeof source;
96df7c6995SPavel Labath 
97df7c6995SPavel Labath         // We shall try if cross-process-memory reads work by attempting to read a value from our own process.
98df7c6995SPavel Labath         ssize_t res = process_vm_readv(getpid(), &local, 1, &remote, 1, 0);
99df7c6995SPavel Labath         is_supported = (res == sizeof(source) && source == dest);
100df7c6995SPavel Labath         if (log)
101df7c6995SPavel Labath         {
102df7c6995SPavel Labath             if (is_supported)
103df7c6995SPavel Labath                 log->Printf("%s: Detected kernel support for process_vm_readv syscall. Fast memory reads enabled.",
104df7c6995SPavel Labath                         __FUNCTION__);
105df7c6995SPavel Labath             else
106df7c6995SPavel Labath                 log->Printf("%s: syscall process_vm_readv failed (error: %s). Fast memory reads disabled.",
107df7c6995SPavel Labath                         __FUNCTION__, strerror(errno));
108df7c6995SPavel Labath         }
109df7c6995SPavel Labath     });
110df7c6995SPavel Labath 
111df7c6995SPavel Labath     return is_supported;
112df7c6995SPavel Labath }
113df7c6995SPavel Labath 
114af245d11STodd Fiala namespace
115af245d11STodd Fiala {
116af245d11STodd Fiala     const UnixSignals&
117af245d11STodd Fiala     GetUnixSignals ()
118af245d11STodd Fiala     {
119af245d11STodd Fiala         static process_linux::LinuxSignals signals;
120af245d11STodd Fiala         return signals;
121af245d11STodd Fiala     }
122af245d11STodd Fiala 
123af245d11STodd Fiala     Error
124af245d11STodd Fiala     ResolveProcessArchitecture (lldb::pid_t pid, Platform &platform, ArchSpec &arch)
125af245d11STodd Fiala     {
126af245d11STodd Fiala         // Grab process info for the running process.
127af245d11STodd Fiala         ProcessInstanceInfo process_info;
128af245d11STodd Fiala         if (!platform.GetProcessInfo (pid, process_info))
129db264a6dSTamas Berghammer             return Error("failed to get process info");
130af245d11STodd Fiala 
131af245d11STodd Fiala         // Resolve the executable module.
132af245d11STodd Fiala         ModuleSP exe_module_sp;
133e56f6dceSChaoren Lin         ModuleSpec exe_module_spec(process_info.GetExecutableFile(), process_info.GetArchitecture());
134af245d11STodd Fiala         FileSpecList executable_search_paths (Target::GetDefaultExecutableSearchPaths ());
135af245d11STodd Fiala         Error error = platform.ResolveExecutable(
13654539338SOleksiy Vyalov             exe_module_spec,
137af245d11STodd Fiala             exe_module_sp,
138af245d11STodd Fiala             executable_search_paths.GetSize () ? &executable_search_paths : NULL);
139af245d11STodd Fiala 
140af245d11STodd Fiala         if (!error.Success ())
141af245d11STodd Fiala             return error;
142af245d11STodd Fiala 
143af245d11STodd Fiala         // Check if we've got our architecture from the exe_module.
144af245d11STodd Fiala         arch = exe_module_sp->GetArchitecture ();
145af245d11STodd Fiala         if (arch.IsValid ())
146af245d11STodd Fiala             return Error();
147af245d11STodd Fiala         else
148af245d11STodd Fiala             return Error("failed to retrieve a valid architecture from the exe module");
149af245d11STodd Fiala     }
150af245d11STodd Fiala 
151af245d11STodd Fiala     void
152db264a6dSTamas Berghammer     DisplayBytes (StreamString &s, void *bytes, uint32_t count)
153af245d11STodd Fiala     {
154af245d11STodd Fiala         uint8_t *ptr = (uint8_t *)bytes;
155af245d11STodd Fiala         const uint32_t loop_count = std::min<uint32_t>(DEBUG_PTRACE_MAXBYTES, count);
156af245d11STodd Fiala         for(uint32_t i=0; i<loop_count; i++)
157af245d11STodd Fiala         {
158af245d11STodd Fiala             s.Printf ("[%x]", *ptr);
159af245d11STodd Fiala             ptr++;
160af245d11STodd Fiala         }
161af245d11STodd Fiala     }
162af245d11STodd Fiala 
163af245d11STodd Fiala     void
164af245d11STodd Fiala     PtraceDisplayBytes(int &req, void *data, size_t data_size)
165af245d11STodd Fiala     {
166af245d11STodd Fiala         StreamString buf;
167af245d11STodd Fiala         Log *verbose_log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (
168af245d11STodd Fiala                     POSIX_LOG_PTRACE | POSIX_LOG_VERBOSE));
169af245d11STodd Fiala 
170af245d11STodd Fiala         if (verbose_log)
171af245d11STodd Fiala         {
172af245d11STodd Fiala             switch(req)
173af245d11STodd Fiala             {
174af245d11STodd Fiala             case PTRACE_POKETEXT:
175af245d11STodd Fiala             {
176af245d11STodd Fiala                 DisplayBytes(buf, &data, 8);
177af245d11STodd Fiala                 verbose_log->Printf("PTRACE_POKETEXT %s", buf.GetData());
178af245d11STodd Fiala                 break;
179af245d11STodd Fiala             }
180af245d11STodd Fiala             case PTRACE_POKEDATA:
181af245d11STodd Fiala             {
182af245d11STodd Fiala                 DisplayBytes(buf, &data, 8);
183af245d11STodd Fiala                 verbose_log->Printf("PTRACE_POKEDATA %s", buf.GetData());
184af245d11STodd Fiala                 break;
185af245d11STodd Fiala             }
186af245d11STodd Fiala             case PTRACE_POKEUSER:
187af245d11STodd Fiala             {
188af245d11STodd Fiala                 DisplayBytes(buf, &data, 8);
189af245d11STodd Fiala                 verbose_log->Printf("PTRACE_POKEUSER %s", buf.GetData());
190af245d11STodd Fiala                 break;
191af245d11STodd Fiala             }
192af245d11STodd Fiala             case PTRACE_SETREGS:
193af245d11STodd Fiala             {
194af245d11STodd Fiala                 DisplayBytes(buf, data, data_size);
195af245d11STodd Fiala                 verbose_log->Printf("PTRACE_SETREGS %s", buf.GetData());
196af245d11STodd Fiala                 break;
197af245d11STodd Fiala             }
198af245d11STodd Fiala             case PTRACE_SETFPREGS:
199af245d11STodd Fiala             {
200af245d11STodd Fiala                 DisplayBytes(buf, data, data_size);
201af245d11STodd Fiala                 verbose_log->Printf("PTRACE_SETFPREGS %s", buf.GetData());
202af245d11STodd Fiala                 break;
203af245d11STodd Fiala             }
204af245d11STodd Fiala             case PTRACE_SETSIGINFO:
205af245d11STodd Fiala             {
206af245d11STodd Fiala                 DisplayBytes(buf, data, sizeof(siginfo_t));
207af245d11STodd Fiala                 verbose_log->Printf("PTRACE_SETSIGINFO %s", buf.GetData());
208af245d11STodd Fiala                 break;
209af245d11STodd Fiala             }
210af245d11STodd Fiala             case PTRACE_SETREGSET:
211af245d11STodd Fiala             {
212af245d11STodd Fiala                 // Extract iov_base from data, which is a pointer to the struct IOVEC
213af245d11STodd Fiala                 DisplayBytes(buf, *(void **)data, data_size);
214af245d11STodd Fiala                 verbose_log->Printf("PTRACE_SETREGSET %s", buf.GetData());
215af245d11STodd Fiala                 break;
216af245d11STodd Fiala             }
217af245d11STodd Fiala             default:
218af245d11STodd Fiala             {
219af245d11STodd Fiala             }
220af245d11STodd Fiala             }
221af245d11STodd Fiala         }
222af245d11STodd Fiala     }
223af245d11STodd Fiala 
224af245d11STodd Fiala     //------------------------------------------------------------------------------
225af245d11STodd Fiala     // Static implementations of NativeProcessLinux::ReadMemory and
226af245d11STodd Fiala     // NativeProcessLinux::WriteMemory.  This enables mutual recursion between these
227af245d11STodd Fiala     // functions without needed to go thru the thread funnel.
228af245d11STodd Fiala 
229*c7512fdcSPavel Labath     Error
230af245d11STodd Fiala     DoReadMemory(
231af245d11STodd Fiala         lldb::pid_t pid,
232af245d11STodd Fiala         lldb::addr_t vm_addr,
233af245d11STodd Fiala         void *buf,
2343eb4b458SChaoren Lin         size_t size,
235*c7512fdcSPavel Labath         size_t &bytes_read)
236af245d11STodd Fiala     {
237af245d11STodd Fiala         // ptrace word size is determined by the host, not the child
238af245d11STodd Fiala         static const unsigned word_size = sizeof(void*);
239af245d11STodd Fiala         unsigned char *dst = static_cast<unsigned char*>(buf);
2403eb4b458SChaoren Lin         size_t remainder;
241af245d11STodd Fiala         long data;
242af245d11STodd Fiala 
243af245d11STodd Fiala         Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (POSIX_LOG_ALL));
244af245d11STodd Fiala         if (log)
245af245d11STodd Fiala             ProcessPOSIXLog::IncNestLevel();
246af245d11STodd Fiala         if (log && ProcessPOSIXLog::AtTopNestLevel() && log->GetMask().Test(POSIX_LOG_MEMORY))
247af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s(%" PRIu64 ", %d, %p, %p, %zd, _)", __FUNCTION__,
248af245d11STodd Fiala                     pid, word_size, (void*)vm_addr, buf, size);
249af245d11STodd Fiala 
250af245d11STodd Fiala         assert(sizeof(data) >= word_size);
251af245d11STodd Fiala         for (bytes_read = 0; bytes_read < size; bytes_read += remainder)
252af245d11STodd Fiala         {
253*c7512fdcSPavel Labath             Error error;
254068f8a7eSTamas Berghammer             data = NativeProcessLinux::PtraceWrapper(PTRACE_PEEKDATA, pid, (void*)vm_addr, nullptr, 0, error);
25597ccc294SChaoren Lin             if (error.Fail())
256af245d11STodd Fiala             {
257af245d11STodd Fiala                 if (log)
258af245d11STodd Fiala                     ProcessPOSIXLog::DecNestLevel();
259*c7512fdcSPavel Labath                 return error;
260af245d11STodd Fiala             }
261af245d11STodd Fiala 
262af245d11STodd Fiala             remainder = size - bytes_read;
263af245d11STodd Fiala             remainder = remainder > word_size ? word_size : remainder;
264af245d11STodd Fiala 
265af245d11STodd Fiala             // Copy the data into our buffer
266af245d11STodd Fiala             for (unsigned i = 0; i < remainder; ++i)
267af245d11STodd Fiala                 dst[i] = ((data >> i*8) & 0xFF);
268af245d11STodd Fiala 
269af245d11STodd Fiala             if (log && ProcessPOSIXLog::AtTopNestLevel() &&
270af245d11STodd Fiala                     (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_LONG) ||
271af245d11STodd Fiala                             (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_SHORT) &&
272af245d11STodd Fiala                                     size <= POSIX_LOG_MEMORY_SHORT_BYTES)))
273af245d11STodd Fiala             {
274af245d11STodd Fiala                 uintptr_t print_dst = 0;
275af245d11STodd Fiala                 // Format bytes from data by moving into print_dst for log output
276af245d11STodd Fiala                 for (unsigned i = 0; i < remainder; ++i)
277af245d11STodd Fiala                     print_dst |= (((data >> i*8) & 0xFF) << i*8);
278af245d11STodd Fiala                 log->Printf ("NativeProcessLinux::%s() [%p]:0x%lx (0x%lx)", __FUNCTION__,
279af245d11STodd Fiala                         (void*)vm_addr, print_dst, (unsigned long)data);
280af245d11STodd Fiala             }
281af245d11STodd Fiala             vm_addr += word_size;
282af245d11STodd Fiala             dst += word_size;
283af245d11STodd Fiala         }
284af245d11STodd Fiala 
285af245d11STodd Fiala         if (log)
286af245d11STodd Fiala             ProcessPOSIXLog::DecNestLevel();
287*c7512fdcSPavel Labath         return Error();
288af245d11STodd Fiala     }
289af245d11STodd Fiala 
290*c7512fdcSPavel Labath     Error
291af245d11STodd Fiala     DoWriteMemory(
292af245d11STodd Fiala         lldb::pid_t pid,
293af245d11STodd Fiala         lldb::addr_t vm_addr,
294af245d11STodd Fiala         const void *buf,
2953eb4b458SChaoren Lin         size_t size,
296*c7512fdcSPavel Labath         size_t &bytes_written)
297af245d11STodd Fiala     {
298af245d11STodd Fiala         // ptrace word size is determined by the host, not the child
299af245d11STodd Fiala         static const unsigned word_size = sizeof(void*);
300af245d11STodd Fiala         const unsigned char *src = static_cast<const unsigned char*>(buf);
3013eb4b458SChaoren Lin         size_t remainder;
302*c7512fdcSPavel Labath         Error error;
303af245d11STodd Fiala 
304af245d11STodd Fiala         Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (POSIX_LOG_ALL));
305af245d11STodd Fiala         if (log)
306af245d11STodd Fiala             ProcessPOSIXLog::IncNestLevel();
307af245d11STodd Fiala         if (log && ProcessPOSIXLog::AtTopNestLevel() && log->GetMask().Test(POSIX_LOG_MEMORY))
308af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s(%" PRIu64 ", %u, %p, %p, %" PRIu64 ")", __FUNCTION__,
309af245d11STodd Fiala                     pid, word_size, (void*)vm_addr, buf, size);
310af245d11STodd Fiala 
311af245d11STodd Fiala         for (bytes_written = 0; bytes_written < size; bytes_written += remainder)
312af245d11STodd Fiala         {
313af245d11STodd Fiala             remainder = size - bytes_written;
314af245d11STodd Fiala             remainder = remainder > word_size ? word_size : remainder;
315af245d11STodd Fiala 
316af245d11STodd Fiala             if (remainder == word_size)
317af245d11STodd Fiala             {
318af245d11STodd Fiala                 unsigned long data = 0;
319af245d11STodd Fiala                 assert(sizeof(data) >= word_size);
320af245d11STodd Fiala                 for (unsigned i = 0; i < word_size; ++i)
321af245d11STodd Fiala                     data |= (unsigned long)src[i] << i*8;
322af245d11STodd Fiala 
323af245d11STodd Fiala                 if (log && ProcessPOSIXLog::AtTopNestLevel() &&
324af245d11STodd Fiala                         (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_LONG) ||
325af245d11STodd Fiala                                 (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_SHORT) &&
326af245d11STodd Fiala                                         size <= POSIX_LOG_MEMORY_SHORT_BYTES)))
327af245d11STodd Fiala                     log->Printf ("NativeProcessLinux::%s() [%p]:0x%lx (0x%lx)", __FUNCTION__,
3281e209fccSTamas Berghammer                             (void*)vm_addr, *(const unsigned long*)src, data);
329af245d11STodd Fiala 
330068f8a7eSTamas Berghammer                 if (NativeProcessLinux::PtraceWrapper(PTRACE_POKEDATA, pid, (void*)vm_addr, (void*)data, 0, error))
331af245d11STodd Fiala                 {
332af245d11STodd Fiala                     if (log)
333af245d11STodd Fiala                         ProcessPOSIXLog::DecNestLevel();
334*c7512fdcSPavel Labath                     return error;
335af245d11STodd Fiala                 }
336af245d11STodd Fiala             }
337af245d11STodd Fiala             else
338af245d11STodd Fiala             {
339af245d11STodd Fiala                 unsigned char buff[8];
340*c7512fdcSPavel Labath                 size_t bytes_read;
341*c7512fdcSPavel Labath                 error = DoReadMemory(pid, vm_addr, buff, word_size, bytes_read);
342*c7512fdcSPavel Labath                 if (error.Fail())
343af245d11STodd Fiala                 {
344af245d11STodd Fiala                     if (log)
345af245d11STodd Fiala                         ProcessPOSIXLog::DecNestLevel();
346*c7512fdcSPavel Labath                     return error;
347af245d11STodd Fiala                 }
348af245d11STodd Fiala 
349af245d11STodd Fiala                 memcpy(buff, src, remainder);
350af245d11STodd Fiala 
351*c7512fdcSPavel Labath                 size_t bytes_written_rec;
352*c7512fdcSPavel Labath                 error = DoWriteMemory(pid, vm_addr, buff, word_size, bytes_written_rec);
353*c7512fdcSPavel Labath                 if (error.Fail())
354af245d11STodd Fiala                 {
355af245d11STodd Fiala                     if (log)
356af245d11STodd Fiala                         ProcessPOSIXLog::DecNestLevel();
357*c7512fdcSPavel Labath                     return error;
358af245d11STodd Fiala                 }
359af245d11STodd Fiala 
360af245d11STodd Fiala                 if (log && ProcessPOSIXLog::AtTopNestLevel() &&
361af245d11STodd Fiala                         (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_LONG) ||
362af245d11STodd Fiala                                 (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_SHORT) &&
363af245d11STodd Fiala                                         size <= POSIX_LOG_MEMORY_SHORT_BYTES)))
364af245d11STodd Fiala                     log->Printf ("NativeProcessLinux::%s() [%p]:0x%lx (0x%lx)", __FUNCTION__,
3651e209fccSTamas Berghammer                             (void*)vm_addr, *(const unsigned long*)src, *(unsigned long*)buff);
366af245d11STodd Fiala             }
367af245d11STodd Fiala 
368af245d11STodd Fiala             vm_addr += word_size;
369af245d11STodd Fiala             src += word_size;
370af245d11STodd Fiala         }
371af245d11STodd Fiala         if (log)
372af245d11STodd Fiala             ProcessPOSIXLog::DecNestLevel();
373*c7512fdcSPavel Labath         return error;
374af245d11STodd Fiala     }
3751107b5a5SPavel Labath } // end of anonymous namespace
3761107b5a5SPavel Labath 
377bd7cbc5aSPavel Labath // Simple helper function to ensure flags are enabled on the given file
378bd7cbc5aSPavel Labath // descriptor.
379bd7cbc5aSPavel Labath static Error
380bd7cbc5aSPavel Labath EnsureFDFlags(int fd, int flags)
381bd7cbc5aSPavel Labath {
382bd7cbc5aSPavel Labath     Error error;
383bd7cbc5aSPavel Labath 
384bd7cbc5aSPavel Labath     int status = fcntl(fd, F_GETFL);
385bd7cbc5aSPavel Labath     if (status == -1)
386bd7cbc5aSPavel Labath     {
387bd7cbc5aSPavel Labath         error.SetErrorToErrno();
388bd7cbc5aSPavel Labath         return error;
389bd7cbc5aSPavel Labath     }
390bd7cbc5aSPavel Labath 
391bd7cbc5aSPavel Labath     if (fcntl(fd, F_SETFL, status | flags) == -1)
392bd7cbc5aSPavel Labath     {
393bd7cbc5aSPavel Labath         error.SetErrorToErrno();
394bd7cbc5aSPavel Labath         return error;
395bd7cbc5aSPavel Labath     }
396bd7cbc5aSPavel Labath 
397bd7cbc5aSPavel Labath     return error;
398bd7cbc5aSPavel Labath }
399bd7cbc5aSPavel Labath 
400bd7cbc5aSPavel Labath // This class encapsulates the privileged thread which performs all ptrace and wait operations on
401bd7cbc5aSPavel Labath // the inferior. The thread consists of a main loop which waits for events and processes them
402bd7cbc5aSPavel Labath //   - SIGCHLD (delivered over a signalfd file descriptor): These signals notify us of events in
403bd7cbc5aSPavel Labath //     the inferior process. Upon receiving this signal we do a waitpid to get more information
404bd7cbc5aSPavel Labath //     and dispatch to NativeProcessLinux::MonitorCallback.
405bd7cbc5aSPavel Labath //   - requests for ptrace operations: These initiated via the DoOperation method, which funnels
406bd7cbc5aSPavel Labath //     them to the Monitor thread via m_operation member. The Monitor thread is signaled over a
407bd7cbc5aSPavel Labath //     pipe, and the completion of the operation is signalled over the semaphore.
408bd7cbc5aSPavel Labath //   - thread exit event: this is signaled from the Monitor destructor by closing the write end
409bd7cbc5aSPavel Labath //     of the command pipe.
41045f5cb31SPavel Labath class NativeProcessLinux::Monitor
41145f5cb31SPavel Labath {
4121107b5a5SPavel Labath private:
413bd7cbc5aSPavel Labath     // The initial monitor operation (launch or attach). It returns a inferior process id.
414bd7cbc5aSPavel Labath     std::unique_ptr<InitialOperation> m_initial_operation_up;
415bd7cbc5aSPavel Labath 
416bd7cbc5aSPavel Labath     ::pid_t                           m_child_pid = -1;
4171107b5a5SPavel Labath     NativeProcessLinux              * m_native_process;
4181107b5a5SPavel Labath 
4191107b5a5SPavel Labath     enum { READ, WRITE };
4201107b5a5SPavel Labath     int        m_pipefd[2] = {-1, -1};
4211107b5a5SPavel Labath     int        m_signal_fd = -1;
4221107b5a5SPavel Labath     HostThread m_thread;
4231107b5a5SPavel Labath 
424bd7cbc5aSPavel Labath     // current operation which must be executed on the priviliged thread
425bd7cbc5aSPavel Labath     Mutex            m_operation_mutex;
426*c7512fdcSPavel Labath     const Operation *m_operation = nullptr;
427bd7cbc5aSPavel Labath     sem_t            m_operation_sem;
428bd7cbc5aSPavel Labath     Error            m_operation_error;
429bd7cbc5aSPavel Labath 
43045f5cb31SPavel Labath     unsigned   m_operation_nesting_level = 0;
43145f5cb31SPavel Labath 
432bd7cbc5aSPavel Labath     static constexpr char operation_command   = 'o';
43345f5cb31SPavel Labath     static constexpr char begin_block_command = '{';
43445f5cb31SPavel Labath     static constexpr char end_block_command   = '}';
435bd7cbc5aSPavel Labath 
4361107b5a5SPavel Labath     void
4371107b5a5SPavel Labath     HandleSignals();
4381107b5a5SPavel Labath 
4391107b5a5SPavel Labath     void
4401107b5a5SPavel Labath     HandleWait();
4411107b5a5SPavel Labath 
4421107b5a5SPavel Labath     // Returns true if the thread should exit.
4431107b5a5SPavel Labath     bool
4441107b5a5SPavel Labath     HandleCommands();
4451107b5a5SPavel Labath 
4461107b5a5SPavel Labath     void
4471107b5a5SPavel Labath     MainLoop();
4481107b5a5SPavel Labath 
4491107b5a5SPavel Labath     static void *
4501107b5a5SPavel Labath     RunMonitor(void *arg);
4511107b5a5SPavel Labath 
452bd7cbc5aSPavel Labath     Error
45345f5cb31SPavel Labath     WaitForAck();
45445f5cb31SPavel Labath 
45545f5cb31SPavel Labath     void
45645f5cb31SPavel Labath     BeginOperationBlock()
45745f5cb31SPavel Labath     {
45845f5cb31SPavel Labath         write(m_pipefd[WRITE], &begin_block_command, sizeof operation_command);
45945f5cb31SPavel Labath         WaitForAck();
46045f5cb31SPavel Labath     }
46145f5cb31SPavel Labath 
46245f5cb31SPavel Labath     void
46345f5cb31SPavel Labath     EndOperationBlock()
46445f5cb31SPavel Labath     {
46545f5cb31SPavel Labath         write(m_pipefd[WRITE], &end_block_command, sizeof operation_command);
46645f5cb31SPavel Labath         WaitForAck();
46745f5cb31SPavel Labath     }
46845f5cb31SPavel Labath 
4691107b5a5SPavel Labath public:
470bd7cbc5aSPavel Labath     Monitor(const InitialOperation &initial_operation,
471bd7cbc5aSPavel Labath             NativeProcessLinux *native_process)
472bd7cbc5aSPavel Labath         : m_initial_operation_up(new InitialOperation(initial_operation)),
473bd7cbc5aSPavel Labath           m_native_process(native_process)
474bd7cbc5aSPavel Labath     {
475bd7cbc5aSPavel Labath         sem_init(&m_operation_sem, 0, 0);
476bd7cbc5aSPavel Labath     }
4771107b5a5SPavel Labath 
4781107b5a5SPavel Labath     ~Monitor();
4791107b5a5SPavel Labath 
4801107b5a5SPavel Labath     Error
4811107b5a5SPavel Labath     Initialize();
482bd7cbc5aSPavel Labath 
483bd7cbc5aSPavel Labath     void
48445f5cb31SPavel Labath     Terminate();
48545f5cb31SPavel Labath 
486*c7512fdcSPavel Labath     Error
487*c7512fdcSPavel Labath     DoOperation(const Operation &op);
48845f5cb31SPavel Labath 
48945f5cb31SPavel Labath     class ScopedOperationLock {
49045f5cb31SPavel Labath         Monitor &m_monitor;
49145f5cb31SPavel Labath 
49245f5cb31SPavel Labath     public:
49345f5cb31SPavel Labath         ScopedOperationLock(Monitor &monitor)
49445f5cb31SPavel Labath             : m_monitor(monitor)
49545f5cb31SPavel Labath         { m_monitor.BeginOperationBlock(); }
49645f5cb31SPavel Labath 
49745f5cb31SPavel Labath         ~ScopedOperationLock()
49845f5cb31SPavel Labath         { m_monitor.EndOperationBlock(); }
49945f5cb31SPavel Labath     };
5001107b5a5SPavel Labath };
501bd7cbc5aSPavel Labath constexpr char NativeProcessLinux::Monitor::operation_command;
50245f5cb31SPavel Labath constexpr char NativeProcessLinux::Monitor::begin_block_command;
50345f5cb31SPavel Labath constexpr char NativeProcessLinux::Monitor::end_block_command;
5041107b5a5SPavel Labath 
5051107b5a5SPavel Labath Error
5061107b5a5SPavel Labath NativeProcessLinux::Monitor::Initialize()
5071107b5a5SPavel Labath {
5081107b5a5SPavel Labath     Error error;
5091107b5a5SPavel Labath 
5101107b5a5SPavel Labath     // We get a SIGCHLD every time something interesting happens with the inferior. We shall be
5111107b5a5SPavel Labath     // listening for these signals over a signalfd file descriptors. This allows us to wait for
5121107b5a5SPavel Labath     // multiple kinds of events with select.
5131107b5a5SPavel Labath     sigset_t signals;
5141107b5a5SPavel Labath     sigemptyset(&signals);
5151107b5a5SPavel Labath     sigaddset(&signals, SIGCHLD);
5161107b5a5SPavel Labath     m_signal_fd = signalfd(-1, &signals, SFD_NONBLOCK | SFD_CLOEXEC);
5171107b5a5SPavel Labath     if (m_signal_fd < 0)
5181107b5a5SPavel Labath     {
5191107b5a5SPavel Labath         return Error("NativeProcessLinux::Monitor::%s failed due to signalfd failure. Monitoring the inferior will be impossible: %s",
5201107b5a5SPavel Labath                     __FUNCTION__, strerror(errno));
5211107b5a5SPavel Labath 
522af245d11STodd Fiala     }
523af245d11STodd Fiala 
5241107b5a5SPavel Labath     if (pipe2(m_pipefd, O_CLOEXEC) == -1)
5251107b5a5SPavel Labath     {
5261107b5a5SPavel Labath         error.SetErrorToErrno();
5271107b5a5SPavel Labath         return error;
5281107b5a5SPavel Labath     }
5291107b5a5SPavel Labath 
530bd7cbc5aSPavel Labath     if ((error = EnsureFDFlags(m_pipefd[READ], O_NONBLOCK)).Fail()) {
531bd7cbc5aSPavel Labath         return error;
532bd7cbc5aSPavel Labath     }
533bd7cbc5aSPavel Labath 
534bd7cbc5aSPavel Labath     static const char g_thread_name[] = "lldb.process.nativelinux.monitor";
535bd7cbc5aSPavel Labath     m_thread = ThreadLauncher::LaunchThread(g_thread_name, Monitor::RunMonitor, this, nullptr);
5361107b5a5SPavel Labath     if (!m_thread.IsJoinable())
5371107b5a5SPavel Labath         return Error("Failed to create monitor thread for NativeProcessLinux.");
5381107b5a5SPavel Labath 
539bd7cbc5aSPavel Labath     // Wait for initial operation to complete.
54045f5cb31SPavel Labath     return WaitForAck();
541bd7cbc5aSPavel Labath }
542bd7cbc5aSPavel Labath 
543*c7512fdcSPavel Labath Error
544*c7512fdcSPavel Labath NativeProcessLinux::Monitor::DoOperation(const Operation &op)
545bd7cbc5aSPavel Labath {
546bd7cbc5aSPavel Labath     if (m_thread.EqualsThread(pthread_self())) {
547bd7cbc5aSPavel Labath         // If we're on the Monitor thread, we can simply execute the operation.
548*c7512fdcSPavel Labath         return op();
549bd7cbc5aSPavel Labath     }
550bd7cbc5aSPavel Labath 
551bd7cbc5aSPavel Labath     // Otherwise we need to pass the operation to the Monitor thread so it can handle it.
552bd7cbc5aSPavel Labath     Mutex::Locker lock(m_operation_mutex);
553bd7cbc5aSPavel Labath 
554*c7512fdcSPavel Labath     m_operation = &op;
555bd7cbc5aSPavel Labath 
556bd7cbc5aSPavel Labath     // notify the thread that an operation is ready to be processed
557bd7cbc5aSPavel Labath     write(m_pipefd[WRITE], &operation_command, sizeof operation_command);
558bd7cbc5aSPavel Labath 
559*c7512fdcSPavel Labath     return WaitForAck();
56045f5cb31SPavel Labath }
56145f5cb31SPavel Labath 
56245f5cb31SPavel Labath void
56345f5cb31SPavel Labath NativeProcessLinux::Monitor::Terminate()
56445f5cb31SPavel Labath {
56545f5cb31SPavel Labath     if (m_pipefd[WRITE] >= 0)
56645f5cb31SPavel Labath     {
56745f5cb31SPavel Labath         close(m_pipefd[WRITE]);
56845f5cb31SPavel Labath         m_pipefd[WRITE] = -1;
56945f5cb31SPavel Labath     }
57045f5cb31SPavel Labath     if (m_thread.IsJoinable())
57145f5cb31SPavel Labath         m_thread.Join(nullptr);
5721107b5a5SPavel Labath }
5731107b5a5SPavel Labath 
5741107b5a5SPavel Labath NativeProcessLinux::Monitor::~Monitor()
5751107b5a5SPavel Labath {
57645f5cb31SPavel Labath     Terminate();
5771107b5a5SPavel Labath     if (m_pipefd[READ] >= 0)
5781107b5a5SPavel Labath         close(m_pipefd[READ]);
5791107b5a5SPavel Labath     if (m_signal_fd >= 0)
5801107b5a5SPavel Labath         close(m_signal_fd);
581bd7cbc5aSPavel Labath     sem_destroy(&m_operation_sem);
5821107b5a5SPavel Labath }
5831107b5a5SPavel Labath 
5841107b5a5SPavel Labath void
5851107b5a5SPavel Labath NativeProcessLinux::Monitor::HandleSignals()
5861107b5a5SPavel Labath {
5871107b5a5SPavel Labath     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
5881107b5a5SPavel Labath 
5891107b5a5SPavel Labath     // We don't really care about the content of the SIGCHLD siginfo structure, as we will get
5901107b5a5SPavel Labath     // all the information from waitpid(). We just need to read all the signals so that we can
5911107b5a5SPavel Labath     // sleep next time we reach select().
5921107b5a5SPavel Labath     while (true)
5931107b5a5SPavel Labath     {
5941107b5a5SPavel Labath         signalfd_siginfo info;
5951107b5a5SPavel Labath         ssize_t size = read(m_signal_fd, &info, sizeof info);
5961107b5a5SPavel Labath         if (size == -1)
5971107b5a5SPavel Labath         {
5981107b5a5SPavel Labath             if (errno == EAGAIN || errno == EWOULDBLOCK)
5991107b5a5SPavel Labath                 break; // We are done.
6001107b5a5SPavel Labath             if (errno == EINTR)
6011107b5a5SPavel Labath                 continue;
6021107b5a5SPavel Labath             if (log)
6031107b5a5SPavel Labath                 log->Printf("NativeProcessLinux::Monitor::%s reading from signalfd file descriptor failed: %s",
6041107b5a5SPavel Labath                         __FUNCTION__, strerror(errno));
6051107b5a5SPavel Labath             break;
6061107b5a5SPavel Labath         }
6071107b5a5SPavel Labath         if (size != sizeof info)
6081107b5a5SPavel Labath         {
6091107b5a5SPavel Labath             // We got incomplete information structure. This should not happen, let's just log
6101107b5a5SPavel Labath             // that.
6111107b5a5SPavel Labath             if (log)
6121107b5a5SPavel Labath                 log->Printf("NativeProcessLinux::Monitor::%s reading from signalfd file descriptor returned incomplete data: "
6131107b5a5SPavel Labath                         "structure size is %zd, read returned %zd bytes",
6141107b5a5SPavel Labath                         __FUNCTION__, sizeof info, size);
6151107b5a5SPavel Labath             break;
6161107b5a5SPavel Labath         }
6171107b5a5SPavel Labath         if (log)
6181107b5a5SPavel Labath             log->Printf("NativeProcessLinux::Monitor::%s received signal %s(%d).", __FUNCTION__,
6191107b5a5SPavel Labath                 Host::GetSignalAsCString(info.ssi_signo), info.ssi_signo);
6201107b5a5SPavel Labath     }
6211107b5a5SPavel Labath }
6221107b5a5SPavel Labath 
6231107b5a5SPavel Labath void
6241107b5a5SPavel Labath NativeProcessLinux::Monitor::HandleWait()
6251107b5a5SPavel Labath {
6261107b5a5SPavel Labath     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
6271107b5a5SPavel Labath     // Process all pending waitpid notifications.
6281107b5a5SPavel Labath     while (true)
6291107b5a5SPavel Labath     {
6301107b5a5SPavel Labath         int status = -1;
63105a1f2acSPavel Labath         ::pid_t wait_pid = waitpid(-1, &status, __WALL | __WNOTHREAD | WNOHANG);
6321107b5a5SPavel Labath 
6331107b5a5SPavel Labath         if (wait_pid == 0)
6341107b5a5SPavel Labath             break; // We are done.
6351107b5a5SPavel Labath 
6361107b5a5SPavel Labath         if (wait_pid == -1)
6371107b5a5SPavel Labath         {
6381107b5a5SPavel Labath             if (errno == EINTR)
6391107b5a5SPavel Labath                 continue;
6401107b5a5SPavel Labath 
6411107b5a5SPavel Labath             if (log)
64205a1f2acSPavel Labath               log->Printf("NativeProcessLinux::Monitor::%s waitpid (-1, &status, __WALL | __WNOTHREAD | WNOHANG) failed: %s",
64305a1f2acSPavel Labath                       __FUNCTION__, strerror(errno));
6441107b5a5SPavel Labath             break;
6451107b5a5SPavel Labath         }
6461107b5a5SPavel Labath 
6471107b5a5SPavel Labath         bool exited = false;
6481107b5a5SPavel Labath         int signal = 0;
6491107b5a5SPavel Labath         int exit_status = 0;
6501107b5a5SPavel Labath         const char *status_cstr = NULL;
6511107b5a5SPavel Labath         if (WIFSTOPPED(status))
6521107b5a5SPavel Labath         {
6531107b5a5SPavel Labath             signal = WSTOPSIG(status);
6541107b5a5SPavel Labath             status_cstr = "STOPPED";
6551107b5a5SPavel Labath         }
6561107b5a5SPavel Labath         else if (WIFEXITED(status))
6571107b5a5SPavel Labath         {
6581107b5a5SPavel Labath             exit_status = WEXITSTATUS(status);
6591107b5a5SPavel Labath             status_cstr = "EXITED";
6601107b5a5SPavel Labath             exited = true;
6611107b5a5SPavel Labath         }
6621107b5a5SPavel Labath         else if (WIFSIGNALED(status))
6631107b5a5SPavel Labath         {
6641107b5a5SPavel Labath             signal = WTERMSIG(status);
6651107b5a5SPavel Labath             status_cstr = "SIGNALED";
66605a1f2acSPavel Labath             if (wait_pid == m_child_pid) {
6671107b5a5SPavel Labath                 exited = true;
6681107b5a5SPavel Labath                 exit_status = -1;
6691107b5a5SPavel Labath             }
6701107b5a5SPavel Labath         }
6711107b5a5SPavel Labath         else
6721107b5a5SPavel Labath             status_cstr = "(\?\?\?)";
6731107b5a5SPavel Labath 
6741107b5a5SPavel Labath         if (log)
67505a1f2acSPavel Labath             log->Printf("NativeProcessLinux::Monitor::%s: waitpid (-1, &status, __WALL | __WNOTHREAD | WNOHANG)"
6761107b5a5SPavel Labath                 "=> pid = %" PRIi32 ", status = 0x%8.8x (%s), signal = %i, exit_state = %i",
67705a1f2acSPavel Labath                 __FUNCTION__, wait_pid, status, status_cstr, signal, exit_status);
6781107b5a5SPavel Labath 
6791107b5a5SPavel Labath         m_native_process->MonitorCallback (wait_pid, exited, signal, exit_status);
6801107b5a5SPavel Labath     }
6811107b5a5SPavel Labath }
6821107b5a5SPavel Labath 
6831107b5a5SPavel Labath bool
6841107b5a5SPavel Labath NativeProcessLinux::Monitor::HandleCommands()
6851107b5a5SPavel Labath {
6861107b5a5SPavel Labath     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
6871107b5a5SPavel Labath 
6881107b5a5SPavel Labath     while (true)
6891107b5a5SPavel Labath     {
6901107b5a5SPavel Labath         char command = 0;
6911107b5a5SPavel Labath         ssize_t size = read(m_pipefd[READ], &command, sizeof command);
6921107b5a5SPavel Labath         if (size == -1)
6931107b5a5SPavel Labath         {
6941107b5a5SPavel Labath             if (errno == EAGAIN || errno == EWOULDBLOCK)
6951107b5a5SPavel Labath                 return false;
6961107b5a5SPavel Labath             if (errno == EINTR)
6971107b5a5SPavel Labath                 continue;
6981107b5a5SPavel Labath             if (log)
6991107b5a5SPavel Labath                 log->Printf("NativeProcessLinux::Monitor::%s exiting because read from command file descriptor failed: %s", __FUNCTION__, strerror(errno));
7001107b5a5SPavel Labath             return true;
7011107b5a5SPavel Labath         }
7021107b5a5SPavel Labath         if (size == 0) // end of file - write end closed
7031107b5a5SPavel Labath         {
7041107b5a5SPavel Labath             if (log)
7051107b5a5SPavel Labath                 log->Printf("NativeProcessLinux::Monitor::%s exit command received, exiting...", __FUNCTION__);
70645f5cb31SPavel Labath             assert(m_operation_nesting_level == 0 && "Unbalanced begin/end block commands detected");
7071107b5a5SPavel Labath             return true; // We are done.
7081107b5a5SPavel Labath         }
709bd7cbc5aSPavel Labath 
710bd7cbc5aSPavel Labath         switch (command)
711bd7cbc5aSPavel Labath         {
712bd7cbc5aSPavel Labath         case operation_command:
713*c7512fdcSPavel Labath             m_operation_error = (*m_operation)();
71445f5cb31SPavel Labath             break;
71545f5cb31SPavel Labath         case begin_block_command:
71645f5cb31SPavel Labath             ++m_operation_nesting_level;
71745f5cb31SPavel Labath             break;
71845f5cb31SPavel Labath         case end_block_command:
71945f5cb31SPavel Labath             assert(m_operation_nesting_level > 0);
72045f5cb31SPavel Labath             --m_operation_nesting_level;
721bd7cbc5aSPavel Labath             break;
722bd7cbc5aSPavel Labath         default:
7231107b5a5SPavel Labath             if (log)
7241107b5a5SPavel Labath                 log->Printf("NativeProcessLinux::Monitor::%s received unknown command '%c'",
7251107b5a5SPavel Labath                         __FUNCTION__, command);
7261107b5a5SPavel Labath         }
72745f5cb31SPavel Labath 
72845f5cb31SPavel Labath         // notify calling thread that the command has been processed
72945f5cb31SPavel Labath         sem_post(&m_operation_sem);
7301107b5a5SPavel Labath     }
731bd7cbc5aSPavel Labath }
7321107b5a5SPavel Labath 
7331107b5a5SPavel Labath void
7341107b5a5SPavel Labath NativeProcessLinux::Monitor::MainLoop()
7351107b5a5SPavel Labath {
736bd7cbc5aSPavel Labath     ::pid_t child_pid = (*m_initial_operation_up)(m_operation_error);
737bd7cbc5aSPavel Labath     m_initial_operation_up.reset();
73805a1f2acSPavel Labath     m_child_pid = child_pid;
739bd7cbc5aSPavel Labath     sem_post(&m_operation_sem);
740bd7cbc5aSPavel Labath 
7411107b5a5SPavel Labath     while (true)
7421107b5a5SPavel Labath     {
7431107b5a5SPavel Labath         fd_set fds;
7441107b5a5SPavel Labath         FD_ZERO(&fds);
74545f5cb31SPavel Labath         // Only process waitpid events if we are outside of an operation block. Any pending
74645f5cb31SPavel Labath         // events will be processed after we leave the block.
74745f5cb31SPavel Labath         if (m_operation_nesting_level == 0)
7481107b5a5SPavel Labath             FD_SET(m_signal_fd, &fds);
7491107b5a5SPavel Labath         FD_SET(m_pipefd[READ], &fds);
7501107b5a5SPavel Labath 
7511107b5a5SPavel Labath         int max_fd = std::max(m_signal_fd, m_pipefd[READ]) + 1;
7521107b5a5SPavel Labath         int r = select(max_fd, &fds, nullptr, nullptr, nullptr);
7531107b5a5SPavel Labath         if (r < 0)
7541107b5a5SPavel Labath         {
7551107b5a5SPavel Labath             Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
7561107b5a5SPavel Labath             if (log)
7571107b5a5SPavel Labath                 log->Printf("NativeProcessLinux::Monitor::%s exiting because select failed: %s",
7581107b5a5SPavel Labath                         __FUNCTION__, strerror(errno));
7591107b5a5SPavel Labath             return;
7601107b5a5SPavel Labath         }
7611107b5a5SPavel Labath 
7621107b5a5SPavel Labath         if (FD_ISSET(m_pipefd[READ], &fds))
7631107b5a5SPavel Labath         {
7641107b5a5SPavel Labath             if (HandleCommands())
7651107b5a5SPavel Labath                 return;
7661107b5a5SPavel Labath         }
7671107b5a5SPavel Labath 
7681107b5a5SPavel Labath         if (FD_ISSET(m_signal_fd, &fds))
7691107b5a5SPavel Labath         {
7701107b5a5SPavel Labath             HandleSignals();
7711107b5a5SPavel Labath             HandleWait();
7721107b5a5SPavel Labath         }
7731107b5a5SPavel Labath     }
7741107b5a5SPavel Labath }
7751107b5a5SPavel Labath 
776bd7cbc5aSPavel Labath Error
77745f5cb31SPavel Labath NativeProcessLinux::Monitor::WaitForAck()
778bd7cbc5aSPavel Labath {
779bd7cbc5aSPavel Labath     Error error;
780bd7cbc5aSPavel Labath     while (sem_wait(&m_operation_sem) != 0)
781bd7cbc5aSPavel Labath     {
782bd7cbc5aSPavel Labath         if (errno == EINTR)
783bd7cbc5aSPavel Labath             continue;
784bd7cbc5aSPavel Labath 
785bd7cbc5aSPavel Labath         error.SetErrorToErrno();
786bd7cbc5aSPavel Labath         return error;
787bd7cbc5aSPavel Labath     }
788bd7cbc5aSPavel Labath 
789bd7cbc5aSPavel Labath     return m_operation_error;
790bd7cbc5aSPavel Labath }
791bd7cbc5aSPavel Labath 
7921107b5a5SPavel Labath void *
7931107b5a5SPavel Labath NativeProcessLinux::Monitor::RunMonitor(void *arg)
7941107b5a5SPavel Labath {
7951107b5a5SPavel Labath     static_cast<Monitor *>(arg)->MainLoop();
7961107b5a5SPavel Labath     return nullptr;
7971107b5a5SPavel Labath }
7981107b5a5SPavel Labath 
7991107b5a5SPavel Labath 
800bd7cbc5aSPavel Labath NativeProcessLinux::LaunchArgs::LaunchArgs(Module *module,
801af245d11STodd Fiala                                        char const **argv,
802af245d11STodd Fiala                                        char const **envp,
803d3173f34SChaoren Lin                                        const FileSpec &stdin_file_spec,
804d3173f34SChaoren Lin                                        const FileSpec &stdout_file_spec,
805d3173f34SChaoren Lin                                        const FileSpec &stderr_file_spec,
806d3173f34SChaoren Lin                                        const FileSpec &working_dir,
807db264a6dSTamas Berghammer                                        const ProcessLaunchInfo &launch_info)
808bd7cbc5aSPavel Labath     : m_module(module),
809af245d11STodd Fiala       m_argv(argv),
810af245d11STodd Fiala       m_envp(envp),
811d3173f34SChaoren Lin       m_stdin_file_spec(stdin_file_spec),
812d3173f34SChaoren Lin       m_stdout_file_spec(stdout_file_spec),
813d3173f34SChaoren Lin       m_stderr_file_spec(stderr_file_spec),
8140bce1b67STodd Fiala       m_working_dir(working_dir),
8150bce1b67STodd Fiala       m_launch_info(launch_info)
8160bce1b67STodd Fiala {
8170bce1b67STodd Fiala }
818af245d11STodd Fiala 
819af245d11STodd Fiala NativeProcessLinux::LaunchArgs::~LaunchArgs()
820af245d11STodd Fiala { }
821af245d11STodd Fiala 
822af245d11STodd Fiala // -----------------------------------------------------------------------------
823af245d11STodd Fiala // Public Static Methods
824af245d11STodd Fiala // -----------------------------------------------------------------------------
825af245d11STodd Fiala 
826db264a6dSTamas Berghammer Error
827af245d11STodd Fiala NativeProcessLinux::LaunchProcess (
828db264a6dSTamas Berghammer     Module *exe_module,
829db264a6dSTamas Berghammer     ProcessLaunchInfo &launch_info,
830db264a6dSTamas Berghammer     NativeProcessProtocol::NativeDelegate &native_delegate,
831af245d11STodd Fiala     NativeProcessProtocolSP &native_process_sp)
832af245d11STodd Fiala {
833af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
834af245d11STodd Fiala 
835af245d11STodd Fiala     Error error;
836af245d11STodd Fiala 
837af245d11STodd Fiala     // Verify the working directory is valid if one was specified.
838d3173f34SChaoren Lin     FileSpec working_dir{launch_info.GetWorkingDirectory()};
839d3173f34SChaoren Lin     if (working_dir &&
840d3173f34SChaoren Lin             (!working_dir.ResolvePath() ||
841d3173f34SChaoren Lin              working_dir.GetFileType() != FileSpec::eFileTypeDirectory))
842af245d11STodd Fiala     {
843d3173f34SChaoren Lin         error.SetErrorStringWithFormat ("No such file or directory: %s",
844d3173f34SChaoren Lin                 working_dir.GetCString());
845af245d11STodd Fiala         return error;
846af245d11STodd Fiala     }
847af245d11STodd Fiala 
848db264a6dSTamas Berghammer     const FileAction *file_action;
849af245d11STodd Fiala 
850d3173f34SChaoren Lin     // Default of empty will mean to use existing open file descriptors.
851d3173f34SChaoren Lin     FileSpec stdin_file_spec{};
852d3173f34SChaoren Lin     FileSpec stdout_file_spec{};
853d3173f34SChaoren Lin     FileSpec stderr_file_spec{};
854af245d11STodd Fiala 
855af245d11STodd Fiala     file_action = launch_info.GetFileActionForFD (STDIN_FILENO);
85675f47c3aSTodd Fiala     if (file_action)
857d3173f34SChaoren Lin         stdin_file_spec = file_action->GetFileSpec();
858af245d11STodd Fiala 
859af245d11STodd Fiala     file_action = launch_info.GetFileActionForFD (STDOUT_FILENO);
86075f47c3aSTodd Fiala     if (file_action)
861d3173f34SChaoren Lin         stdout_file_spec = file_action->GetFileSpec();
862af245d11STodd Fiala 
863af245d11STodd Fiala     file_action = launch_info.GetFileActionForFD (STDERR_FILENO);
86475f47c3aSTodd Fiala     if (file_action)
865d3173f34SChaoren Lin         stderr_file_spec = file_action->GetFileSpec();
86675f47c3aSTodd Fiala 
86775f47c3aSTodd Fiala     if (log)
86875f47c3aSTodd Fiala     {
869d3173f34SChaoren Lin         if (stdin_file_spec)
870d3173f34SChaoren Lin             log->Printf ("NativeProcessLinux::%s setting STDIN to '%s'",
871d3173f34SChaoren Lin                     __FUNCTION__, stdin_file_spec.GetCString());
87275f47c3aSTodd Fiala         else
87375f47c3aSTodd Fiala             log->Printf ("NativeProcessLinux::%s leaving STDIN as is", __FUNCTION__);
87475f47c3aSTodd Fiala 
875d3173f34SChaoren Lin         if (stdout_file_spec)
876d3173f34SChaoren Lin             log->Printf ("NativeProcessLinux::%s setting STDOUT to '%s'",
877d3173f34SChaoren Lin                     __FUNCTION__, stdout_file_spec.GetCString());
87875f47c3aSTodd Fiala         else
87975f47c3aSTodd Fiala             log->Printf ("NativeProcessLinux::%s leaving STDOUT as is", __FUNCTION__);
88075f47c3aSTodd Fiala 
881d3173f34SChaoren Lin         if (stderr_file_spec)
882d3173f34SChaoren Lin             log->Printf ("NativeProcessLinux::%s setting STDERR to '%s'",
883d3173f34SChaoren Lin                     __FUNCTION__, stderr_file_spec.GetCString());
88475f47c3aSTodd Fiala         else
88575f47c3aSTodd Fiala             log->Printf ("NativeProcessLinux::%s leaving STDERR as is", __FUNCTION__);
88675f47c3aSTodd Fiala     }
887af245d11STodd Fiala 
888af245d11STodd Fiala     // Create the NativeProcessLinux in launch mode.
889af245d11STodd Fiala     native_process_sp.reset (new NativeProcessLinux ());
890af245d11STodd Fiala 
891af245d11STodd Fiala     if (log)
892af245d11STodd Fiala     {
893af245d11STodd Fiala         int i = 0;
894af245d11STodd Fiala         for (const char **args = launch_info.GetArguments ().GetConstArgumentVector (); *args; ++args, ++i)
895af245d11STodd Fiala         {
896af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s arg %d: \"%s\"", __FUNCTION__, i, *args ? *args : "nullptr");
897af245d11STodd Fiala             ++i;
898af245d11STodd Fiala         }
899af245d11STodd Fiala     }
900af245d11STodd Fiala 
901af245d11STodd Fiala     if (!native_process_sp->RegisterNativeDelegate (native_delegate))
902af245d11STodd Fiala     {
903af245d11STodd Fiala         native_process_sp.reset ();
904af245d11STodd Fiala         error.SetErrorStringWithFormat ("failed to register the native delegate");
905af245d11STodd Fiala         return error;
906af245d11STodd Fiala     }
907af245d11STodd Fiala 
908cb84eebbSTamas Berghammer     std::static_pointer_cast<NativeProcessLinux> (native_process_sp)->LaunchInferior (
909af245d11STodd Fiala             exe_module,
910af245d11STodd Fiala             launch_info.GetArguments ().GetConstArgumentVector (),
911af245d11STodd Fiala             launch_info.GetEnvironmentEntries ().GetConstArgumentVector (),
912d3173f34SChaoren Lin             stdin_file_spec,
913d3173f34SChaoren Lin             stdout_file_spec,
914d3173f34SChaoren Lin             stderr_file_spec,
915af245d11STodd Fiala             working_dir,
9160bce1b67STodd Fiala             launch_info,
917af245d11STodd Fiala             error);
918af245d11STodd Fiala 
919af245d11STodd Fiala     if (error.Fail ())
920af245d11STodd Fiala     {
921af245d11STodd Fiala         native_process_sp.reset ();
922af245d11STodd Fiala         if (log)
923af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s failed to launch process: %s", __FUNCTION__, error.AsCString ());
924af245d11STodd Fiala         return error;
925af245d11STodd Fiala     }
926af245d11STodd Fiala 
927af245d11STodd Fiala     launch_info.SetProcessID (native_process_sp->GetID ());
928af245d11STodd Fiala 
929af245d11STodd Fiala     return error;
930af245d11STodd Fiala }
931af245d11STodd Fiala 
932db264a6dSTamas Berghammer Error
933af245d11STodd Fiala NativeProcessLinux::AttachToProcess (
934af245d11STodd Fiala     lldb::pid_t pid,
935db264a6dSTamas Berghammer     NativeProcessProtocol::NativeDelegate &native_delegate,
936af245d11STodd Fiala     NativeProcessProtocolSP &native_process_sp)
937af245d11STodd Fiala {
938af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
939af245d11STodd Fiala     if (log && log->GetMask ().Test (POSIX_LOG_VERBOSE))
940af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s(pid = %" PRIi64 ")", __FUNCTION__, pid);
941af245d11STodd Fiala 
942af245d11STodd Fiala     // Grab the current platform architecture.  This should be Linux,
943af245d11STodd Fiala     // since this code is only intended to run on a Linux host.
944615eb7e6SGreg Clayton     PlatformSP platform_sp (Platform::GetHostPlatform ());
945af245d11STodd Fiala     if (!platform_sp)
946af245d11STodd Fiala         return Error("failed to get a valid default platform");
947af245d11STodd Fiala 
948af245d11STodd Fiala     // Retrieve the architecture for the running process.
949af245d11STodd Fiala     ArchSpec process_arch;
950af245d11STodd Fiala     Error error = ResolveProcessArchitecture (pid, *platform_sp.get (), process_arch);
951af245d11STodd Fiala     if (!error.Success ())
952af245d11STodd Fiala         return error;
953af245d11STodd Fiala 
9541339b5e8SOleksiy Vyalov     std::shared_ptr<NativeProcessLinux> native_process_linux_sp (new NativeProcessLinux ());
955af245d11STodd Fiala 
9561339b5e8SOleksiy Vyalov     if (!native_process_linux_sp->RegisterNativeDelegate (native_delegate))
957af245d11STodd Fiala     {
958af245d11STodd Fiala         error.SetErrorStringWithFormat ("failed to register the native delegate");
959af245d11STodd Fiala         return error;
960af245d11STodd Fiala     }
961af245d11STodd Fiala 
9621339b5e8SOleksiy Vyalov     native_process_linux_sp->AttachToInferior (pid, error);
963af245d11STodd Fiala     if (!error.Success ())
964af245d11STodd Fiala         return error;
965af245d11STodd Fiala 
9661339b5e8SOleksiy Vyalov     native_process_sp = native_process_linux_sp;
967af245d11STodd Fiala     return error;
968af245d11STodd Fiala }
969af245d11STodd Fiala 
970af245d11STodd Fiala // -----------------------------------------------------------------------------
971af245d11STodd Fiala // Public Instance Methods
972af245d11STodd Fiala // -----------------------------------------------------------------------------
973af245d11STodd Fiala 
974af245d11STodd Fiala NativeProcessLinux::NativeProcessLinux () :
975af245d11STodd Fiala     NativeProcessProtocol (LLDB_INVALID_PROCESS_ID),
976af245d11STodd Fiala     m_arch (),
977af245d11STodd Fiala     m_supports_mem_region (eLazyBoolCalculate),
978af245d11STodd Fiala     m_mem_region_cache (),
9798c8ff7afSPavel Labath     m_mem_region_cache_mutex ()
980af245d11STodd Fiala {
981af245d11STodd Fiala }
982af245d11STodd Fiala 
983af245d11STodd Fiala //------------------------------------------------------------------------------
984bd7cbc5aSPavel Labath // NativeProcessLinux spawns a new thread which performs all operations on the inferior process.
985bd7cbc5aSPavel Labath // Refer to Monitor and Operation classes to see why this is necessary.
986bd7cbc5aSPavel Labath //------------------------------------------------------------------------------
987af245d11STodd Fiala void
988af245d11STodd Fiala NativeProcessLinux::LaunchInferior (
989af245d11STodd Fiala     Module *module,
990af245d11STodd Fiala     const char *argv[],
991af245d11STodd Fiala     const char *envp[],
992d3173f34SChaoren Lin     const FileSpec &stdin_file_spec,
993d3173f34SChaoren Lin     const FileSpec &stdout_file_spec,
994d3173f34SChaoren Lin     const FileSpec &stderr_file_spec,
995d3173f34SChaoren Lin     const FileSpec &working_dir,
996db264a6dSTamas Berghammer     const ProcessLaunchInfo &launch_info,
997db264a6dSTamas Berghammer     Error &error)
998af245d11STodd Fiala {
999af245d11STodd Fiala     if (module)
1000af245d11STodd Fiala         m_arch = module->GetArchitecture ();
1001af245d11STodd Fiala 
1002af245d11STodd Fiala     SetState (eStateLaunching);
1003af245d11STodd Fiala 
1004af245d11STodd Fiala     std::unique_ptr<LaunchArgs> args(
1005d3173f34SChaoren Lin         new LaunchArgs(module, argv, envp,
1006d3173f34SChaoren Lin                        stdin_file_spec,
1007d3173f34SChaoren Lin                        stdout_file_spec,
1008d3173f34SChaoren Lin                        stderr_file_spec,
1009d3173f34SChaoren Lin                        working_dir,
1010d3173f34SChaoren Lin                        launch_info));
1011af245d11STodd Fiala 
1012bd7cbc5aSPavel Labath     StartMonitorThread ([&] (Error &e) { return Launch(args.get(), e); }, error);
1013af245d11STodd Fiala     if (!error.Success ())
1014af245d11STodd Fiala         return;
1015af245d11STodd Fiala }
1016af245d11STodd Fiala 
1017af245d11STodd Fiala void
1018db264a6dSTamas Berghammer NativeProcessLinux::AttachToInferior (lldb::pid_t pid, Error &error)
1019af245d11STodd Fiala {
1020af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1021af245d11STodd Fiala     if (log)
1022af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s (pid = %" PRIi64 ")", __FUNCTION__, pid);
1023af245d11STodd Fiala 
1024af245d11STodd Fiala     // We can use the Host for everything except the ResolveExecutable portion.
1025615eb7e6SGreg Clayton     PlatformSP platform_sp = Platform::GetHostPlatform ();
1026af245d11STodd Fiala     if (!platform_sp)
1027af245d11STodd Fiala     {
1028af245d11STodd Fiala         if (log)
1029af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s (pid = %" PRIi64 "): no default platform set", __FUNCTION__, pid);
1030af245d11STodd Fiala         error.SetErrorString ("no default platform available");
103150d60be3SShawn Best         return;
1032af245d11STodd Fiala     }
1033af245d11STodd Fiala 
1034af245d11STodd Fiala     // Gather info about the process.
1035af245d11STodd Fiala     ProcessInstanceInfo process_info;
103650d60be3SShawn Best     if (!platform_sp->GetProcessInfo (pid, process_info))
103750d60be3SShawn Best     {
103850d60be3SShawn Best         if (log)
103950d60be3SShawn Best             log->Printf ("NativeProcessLinux::%s (pid = %" PRIi64 "): failed to get process info", __FUNCTION__, pid);
104050d60be3SShawn Best         error.SetErrorString ("failed to get process info");
104150d60be3SShawn Best         return;
104250d60be3SShawn Best     }
1043af245d11STodd Fiala 
1044af245d11STodd Fiala     // Resolve the executable module
1045af245d11STodd Fiala     ModuleSP exe_module_sp;
1046af245d11STodd Fiala     FileSpecList executable_search_paths (Target::GetDefaultExecutableSearchPaths());
1047e56f6dceSChaoren Lin     ModuleSpec exe_module_spec(process_info.GetExecutableFile(), process_info.GetArchitecture());
10486edef204SOleksiy Vyalov     error = platform_sp->ResolveExecutable(exe_module_spec, exe_module_sp,
1049af245d11STodd Fiala                                            executable_search_paths.GetSize() ? &executable_search_paths : NULL);
1050af245d11STodd Fiala     if (!error.Success())
1051af245d11STodd Fiala         return;
1052af245d11STodd Fiala 
1053af245d11STodd Fiala     // Set the architecture to the exe architecture.
1054af245d11STodd Fiala     m_arch = exe_module_sp->GetArchitecture();
1055af245d11STodd Fiala     if (log)
1056af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s (pid = %" PRIi64 ") detected architecture %s", __FUNCTION__, pid, m_arch.GetArchitectureName ());
1057af245d11STodd Fiala 
1058af245d11STodd Fiala     m_pid = pid;
1059af245d11STodd Fiala     SetState(eStateAttaching);
1060af245d11STodd Fiala 
1061bd7cbc5aSPavel Labath     StartMonitorThread ([=] (Error &e) { return Attach(pid, e); }, error);
1062af245d11STodd Fiala     if (!error.Success ())
1063af245d11STodd Fiala         return;
1064af245d11STodd Fiala }
1065af245d11STodd Fiala 
10668bc34f4dSOleksiy Vyalov void
10678bc34f4dSOleksiy Vyalov NativeProcessLinux::Terminate ()
1068af245d11STodd Fiala {
106945f5cb31SPavel Labath     m_monitor_up->Terminate();
1070af245d11STodd Fiala }
1071af245d11STodd Fiala 
1072bd7cbc5aSPavel Labath ::pid_t
1073bd7cbc5aSPavel Labath NativeProcessLinux::Launch(LaunchArgs *args, Error &error)
1074af245d11STodd Fiala {
10750bce1b67STodd Fiala     assert (args && "null args");
1076af245d11STodd Fiala 
1077af245d11STodd Fiala     const char **argv = args->m_argv;
1078af245d11STodd Fiala     const char **envp = args->m_envp;
1079d3173f34SChaoren Lin     const FileSpec working_dir = args->m_working_dir;
1080af245d11STodd Fiala 
1081af245d11STodd Fiala     lldb_utility::PseudoTerminal terminal;
1082af245d11STodd Fiala     const size_t err_len = 1024;
1083af245d11STodd Fiala     char err_str[err_len];
1084af245d11STodd Fiala     lldb::pid_t pid;
1085af245d11STodd Fiala     NativeThreadProtocolSP thread_sp;
1086af245d11STodd Fiala 
1087af245d11STodd Fiala     lldb::ThreadSP inferior;
1088af245d11STodd Fiala 
1089af245d11STodd Fiala     // Propagate the environment if one is not supplied.
1090af245d11STodd Fiala     if (envp == NULL || envp[0] == NULL)
1091af245d11STodd Fiala         envp = const_cast<const char **>(environ);
1092af245d11STodd Fiala 
1093af245d11STodd Fiala     if ((pid = terminal.Fork(err_str, err_len)) == static_cast<lldb::pid_t> (-1))
1094af245d11STodd Fiala     {
1095bd7cbc5aSPavel Labath         error.SetErrorToGenericError();
1096bd7cbc5aSPavel Labath         error.SetErrorStringWithFormat("Process fork failed: %s", err_str);
1097bd7cbc5aSPavel Labath         return -1;
1098af245d11STodd Fiala     }
1099af245d11STodd Fiala 
1100af245d11STodd Fiala     // Recognized child exit status codes.
1101af245d11STodd Fiala     enum {
1102af245d11STodd Fiala         ePtraceFailed = 1,
1103af245d11STodd Fiala         eDupStdinFailed,
1104af245d11STodd Fiala         eDupStdoutFailed,
1105af245d11STodd Fiala         eDupStderrFailed,
1106af245d11STodd Fiala         eChdirFailed,
1107af245d11STodd Fiala         eExecFailed,
1108af245d11STodd Fiala         eSetGidFailed
1109af245d11STodd Fiala     };
1110af245d11STodd Fiala 
1111af245d11STodd Fiala     // Child process.
1112af245d11STodd Fiala     if (pid == 0)
1113af245d11STodd Fiala     {
111475f47c3aSTodd Fiala         // FIXME consider opening a pipe between parent/child and have this forked child
111575f47c3aSTodd Fiala         // send log info to parent re: launch status, in place of the log lines removed here.
1116af245d11STodd Fiala 
111775f47c3aSTodd Fiala         // Start tracing this child that is about to exec.
1118068f8a7eSTamas Berghammer         NativeProcessLinux::PtraceWrapper(PTRACE_TRACEME, 0, nullptr, nullptr, 0, error);
1119bd7cbc5aSPavel Labath         if (error.Fail())
1120af245d11STodd Fiala             exit(ePtraceFailed);
1121af245d11STodd Fiala 
1122493c3a12SPavel Labath         // terminal has already dupped the tty descriptors to stdin/out/err.
1123493c3a12SPavel Labath         // This closes original fd from which they were copied (and avoids
1124493c3a12SPavel Labath         // leaking descriptors to the debugged process.
1125493c3a12SPavel Labath         terminal.CloseSlaveFileDescriptor();
1126493c3a12SPavel Labath 
1127af245d11STodd Fiala         // Do not inherit setgid powers.
1128af245d11STodd Fiala         if (setgid(getgid()) != 0)
1129af245d11STodd Fiala             exit(eSetGidFailed);
1130af245d11STodd Fiala 
1131af245d11STodd Fiala         // Attempt to have our own process group.
1132af245d11STodd Fiala         if (setpgid(0, 0) != 0)
1133af245d11STodd Fiala         {
113475f47c3aSTodd Fiala             // FIXME log that this failed. This is common.
1135af245d11STodd Fiala             // Don't allow this to prevent an inferior exec.
1136af245d11STodd Fiala         }
1137af245d11STodd Fiala 
1138af245d11STodd Fiala         // Dup file descriptors if needed.
1139d3173f34SChaoren Lin         if (args->m_stdin_file_spec)
1140d3173f34SChaoren Lin             if (!DupDescriptor(args->m_stdin_file_spec, STDIN_FILENO, O_RDONLY))
1141af245d11STodd Fiala                 exit(eDupStdinFailed);
1142af245d11STodd Fiala 
1143d3173f34SChaoren Lin         if (args->m_stdout_file_spec)
1144d3173f34SChaoren Lin             if (!DupDescriptor(args->m_stdout_file_spec, STDOUT_FILENO, O_WRONLY | O_CREAT | O_TRUNC))
1145af245d11STodd Fiala                 exit(eDupStdoutFailed);
1146af245d11STodd Fiala 
1147d3173f34SChaoren Lin         if (args->m_stderr_file_spec)
1148d3173f34SChaoren Lin             if (!DupDescriptor(args->m_stderr_file_spec, STDERR_FILENO, O_WRONLY | O_CREAT | O_TRUNC))
1149af245d11STodd Fiala                 exit(eDupStderrFailed);
1150af245d11STodd Fiala 
11519cf4f2c2SChaoren Lin         // Close everything besides stdin, stdout, and stderr that has no file
11529cf4f2c2SChaoren Lin         // action to avoid leaking
11539cf4f2c2SChaoren Lin         for (int fd = 3; fd < sysconf(_SC_OPEN_MAX); ++fd)
11549cf4f2c2SChaoren Lin             if (!args->m_launch_info.GetFileActionForFD(fd))
11559cf4f2c2SChaoren Lin                 close(fd);
11569cf4f2c2SChaoren Lin 
1157af245d11STodd Fiala         // Change working directory
1158d3173f34SChaoren Lin         if (working_dir && 0 != ::chdir(working_dir.GetCString()))
1159af245d11STodd Fiala               exit(eChdirFailed);
1160af245d11STodd Fiala 
11610bce1b67STodd Fiala         // Disable ASLR if requested.
11620bce1b67STodd Fiala         if (args->m_launch_info.GetFlags ().Test (lldb::eLaunchFlagDisableASLR))
11630bce1b67STodd Fiala         {
11640bce1b67STodd Fiala             const int old_personality = personality (LLDB_PERSONALITY_GET_CURRENT_SETTINGS);
11650bce1b67STodd Fiala             if (old_personality == -1)
11660bce1b67STodd Fiala             {
116775f47c3aSTodd Fiala                 // Can't retrieve Linux personality.  Cannot disable ASLR.
11680bce1b67STodd Fiala             }
11690bce1b67STodd Fiala             else
11700bce1b67STodd Fiala             {
11710bce1b67STodd Fiala                 const int new_personality = personality (ADDR_NO_RANDOMIZE | old_personality);
11720bce1b67STodd Fiala                 if (new_personality == -1)
11730bce1b67STodd Fiala                 {
117475f47c3aSTodd Fiala                     // Disabling ASLR failed.
11750bce1b67STodd Fiala                 }
11760bce1b67STodd Fiala                 else
11770bce1b67STodd Fiala                 {
117875f47c3aSTodd Fiala                     // Disabling ASLR succeeded.
11790bce1b67STodd Fiala                 }
11800bce1b67STodd Fiala             }
11810bce1b67STodd Fiala         }
11820bce1b67STodd Fiala 
118375f47c3aSTodd Fiala         // Execute.  We should never return...
1184af245d11STodd Fiala         execve(argv[0],
1185af245d11STodd Fiala                const_cast<char *const *>(argv),
1186af245d11STodd Fiala                const_cast<char *const *>(envp));
118775f47c3aSTodd Fiala 
118875f47c3aSTodd Fiala         // ...unless exec fails.  In which case we definitely need to end the child here.
1189af245d11STodd Fiala         exit(eExecFailed);
1190af245d11STodd Fiala     }
1191af245d11STodd Fiala 
119275f47c3aSTodd Fiala     //
119375f47c3aSTodd Fiala     // This is the parent code here.
119475f47c3aSTodd Fiala     //
119575f47c3aSTodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
119675f47c3aSTodd Fiala 
1197af245d11STodd Fiala     // Wait for the child process to trap on its call to execve.
1198af245d11STodd Fiala     ::pid_t wpid;
1199af245d11STodd Fiala     int status;
1200af245d11STodd Fiala     if ((wpid = waitpid(pid, &status, 0)) < 0)
1201af245d11STodd Fiala     {
1202bd7cbc5aSPavel Labath         error.SetErrorToErrno();
1203af245d11STodd Fiala         if (log)
1204bd7cbc5aSPavel Labath             log->Printf ("NativeProcessLinux::%s waitpid for inferior failed with %s",
1205bd7cbc5aSPavel Labath                     __FUNCTION__, error.AsCString ());
1206af245d11STodd Fiala 
1207af245d11STodd Fiala         // Mark the inferior as invalid.
1208af245d11STodd Fiala         // FIXME this could really use a new state - eStateLaunchFailure.  For now, using eStateInvalid.
1209bd7cbc5aSPavel Labath         SetState (StateType::eStateInvalid);
1210af245d11STodd Fiala 
1211bd7cbc5aSPavel Labath         return -1;
1212af245d11STodd Fiala     }
1213af245d11STodd Fiala     else if (WIFEXITED(status))
1214af245d11STodd Fiala     {
1215af245d11STodd Fiala         // open, dup or execve likely failed for some reason.
1216bd7cbc5aSPavel Labath         error.SetErrorToGenericError();
1217af245d11STodd Fiala         switch (WEXITSTATUS(status))
1218af245d11STodd Fiala         {
1219af245d11STodd Fiala             case ePtraceFailed:
1220bd7cbc5aSPavel Labath                 error.SetErrorString("Child ptrace failed.");
1221af245d11STodd Fiala                 break;
1222af245d11STodd Fiala             case eDupStdinFailed:
1223bd7cbc5aSPavel Labath                 error.SetErrorString("Child open stdin failed.");
1224af245d11STodd Fiala                 break;
1225af245d11STodd Fiala             case eDupStdoutFailed:
1226bd7cbc5aSPavel Labath                 error.SetErrorString("Child open stdout failed.");
1227af245d11STodd Fiala                 break;
1228af245d11STodd Fiala             case eDupStderrFailed:
1229bd7cbc5aSPavel Labath                 error.SetErrorString("Child open stderr failed.");
1230af245d11STodd Fiala                 break;
1231af245d11STodd Fiala             case eChdirFailed:
1232bd7cbc5aSPavel Labath                 error.SetErrorString("Child failed to set working directory.");
1233af245d11STodd Fiala                 break;
1234af245d11STodd Fiala             case eExecFailed:
1235bd7cbc5aSPavel Labath                 error.SetErrorString("Child exec failed.");
1236af245d11STodd Fiala                 break;
1237af245d11STodd Fiala             case eSetGidFailed:
1238bd7cbc5aSPavel Labath                 error.SetErrorString("Child setgid failed.");
1239af245d11STodd Fiala                 break;
1240af245d11STodd Fiala             default:
1241bd7cbc5aSPavel Labath                 error.SetErrorString("Child returned unknown exit status.");
1242af245d11STodd Fiala                 break;
1243af245d11STodd Fiala         }
1244af245d11STodd Fiala 
1245af245d11STodd Fiala         if (log)
1246af245d11STodd Fiala         {
1247af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s inferior exited with status %d before issuing a STOP",
1248af245d11STodd Fiala                     __FUNCTION__,
1249af245d11STodd Fiala                     WEXITSTATUS(status));
1250af245d11STodd Fiala         }
1251af245d11STodd Fiala 
1252af245d11STodd Fiala         // Mark the inferior as invalid.
1253af245d11STodd Fiala         // FIXME this could really use a new state - eStateLaunchFailure.  For now, using eStateInvalid.
1254bd7cbc5aSPavel Labath         SetState (StateType::eStateInvalid);
1255af245d11STodd Fiala 
1256bd7cbc5aSPavel Labath         return -1;
1257af245d11STodd Fiala     }
1258af245d11STodd Fiala     assert(WIFSTOPPED(status) && (wpid == static_cast< ::pid_t> (pid)) &&
1259af245d11STodd Fiala            "Could not sync with inferior process.");
1260af245d11STodd Fiala 
1261af245d11STodd Fiala     if (log)
1262af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s inferior started, now in stopped state", __FUNCTION__);
1263af245d11STodd Fiala 
1264bd7cbc5aSPavel Labath     error = SetDefaultPtraceOpts(pid);
1265bd7cbc5aSPavel Labath     if (error.Fail())
1266af245d11STodd Fiala     {
1267af245d11STodd Fiala         if (log)
1268af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s inferior failed to set default ptrace options: %s",
1269bd7cbc5aSPavel Labath                     __FUNCTION__, error.AsCString ());
1270af245d11STodd Fiala 
1271af245d11STodd Fiala         // Mark the inferior as invalid.
1272af245d11STodd Fiala         // FIXME this could really use a new state - eStateLaunchFailure.  For now, using eStateInvalid.
1273bd7cbc5aSPavel Labath         SetState (StateType::eStateInvalid);
1274af245d11STodd Fiala 
1275bd7cbc5aSPavel Labath         return -1;
1276af245d11STodd Fiala     }
1277af245d11STodd Fiala 
1278af245d11STodd Fiala     // Release the master terminal descriptor and pass it off to the
1279af245d11STodd Fiala     // NativeProcessLinux instance.  Similarly stash the inferior pid.
1280bd7cbc5aSPavel Labath     m_terminal_fd = terminal.ReleaseMasterFileDescriptor();
1281bd7cbc5aSPavel Labath     m_pid = pid;
1282af245d11STodd Fiala 
1283af245d11STodd Fiala     // Set the terminal fd to be in non blocking mode (it simplifies the
1284af245d11STodd Fiala     // implementation of ProcessLinux::GetSTDOUT to have a non-blocking
1285af245d11STodd Fiala     // descriptor to read from).
1286bd7cbc5aSPavel Labath     error = EnsureFDFlags(m_terminal_fd, O_NONBLOCK);
1287bd7cbc5aSPavel Labath     if (error.Fail())
1288af245d11STodd Fiala     {
1289af245d11STodd Fiala         if (log)
1290af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s inferior EnsureFDFlags failed for ensuring terminal O_NONBLOCK setting: %s",
1291bd7cbc5aSPavel Labath                     __FUNCTION__, error.AsCString ());
1292af245d11STodd Fiala 
1293af245d11STodd Fiala         // Mark the inferior as invalid.
1294af245d11STodd Fiala         // FIXME this could really use a new state - eStateLaunchFailure.  For now, using eStateInvalid.
1295bd7cbc5aSPavel Labath         SetState (StateType::eStateInvalid);
1296af245d11STodd Fiala 
1297bd7cbc5aSPavel Labath         return -1;
1298af245d11STodd Fiala     }
1299af245d11STodd Fiala 
1300af245d11STodd Fiala     if (log)
1301af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s() adding pid = %" PRIu64, __FUNCTION__, pid);
1302af245d11STodd Fiala 
1303bd7cbc5aSPavel Labath     thread_sp = AddThread (pid);
1304af245d11STodd Fiala     assert (thread_sp && "AddThread() returned a nullptr thread");
1305cb84eebbSTamas Berghammer     std::static_pointer_cast<NativeThreadLinux> (thread_sp)->SetStoppedBySignal (SIGSTOP);
13061dbc6c9cSPavel Labath     ThreadWasCreated(pid);
1307af245d11STodd Fiala 
1308af245d11STodd Fiala     // Let our process instance know the thread has stopped.
1309bd7cbc5aSPavel Labath     SetCurrentThreadID (thread_sp->GetID ());
1310bd7cbc5aSPavel Labath     SetState (StateType::eStateStopped);
1311af245d11STodd Fiala 
1312af245d11STodd Fiala     if (log)
1313af245d11STodd Fiala     {
1314bd7cbc5aSPavel Labath         if (error.Success ())
1315af245d11STodd Fiala         {
1316af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s inferior launching succeeded", __FUNCTION__);
1317af245d11STodd Fiala         }
1318af245d11STodd Fiala         else
1319af245d11STodd Fiala         {
1320af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s inferior launching failed: %s",
1321bd7cbc5aSPavel Labath                 __FUNCTION__, error.AsCString ());
1322bd7cbc5aSPavel Labath             return -1;
1323af245d11STodd Fiala         }
1324af245d11STodd Fiala     }
1325bd7cbc5aSPavel Labath     return pid;
1326af245d11STodd Fiala }
1327af245d11STodd Fiala 
1328bd7cbc5aSPavel Labath ::pid_t
1329bd7cbc5aSPavel Labath NativeProcessLinux::Attach(lldb::pid_t pid, Error &error)
1330af245d11STodd Fiala {
1331af245d11STodd Fiala     lldb::ThreadSP inferior;
1332af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1333af245d11STodd Fiala 
1334af245d11STodd Fiala     // Use a map to keep track of the threads which we have attached/need to attach.
1335af245d11STodd Fiala     Host::TidMap tids_to_attach;
1336af245d11STodd Fiala     if (pid <= 1)
1337af245d11STodd Fiala     {
1338bd7cbc5aSPavel Labath         error.SetErrorToGenericError();
1339bd7cbc5aSPavel Labath         error.SetErrorString("Attaching to process 1 is not allowed.");
1340bd7cbc5aSPavel Labath         return -1;
1341af245d11STodd Fiala     }
1342af245d11STodd Fiala 
1343af245d11STodd Fiala     while (Host::FindProcessThreads(pid, tids_to_attach))
1344af245d11STodd Fiala     {
1345af245d11STodd Fiala         for (Host::TidMap::iterator it = tids_to_attach.begin();
1346af245d11STodd Fiala              it != tids_to_attach.end();)
1347af245d11STodd Fiala         {
1348af245d11STodd Fiala             if (it->second == false)
1349af245d11STodd Fiala             {
1350af245d11STodd Fiala                 lldb::tid_t tid = it->first;
1351af245d11STodd Fiala 
1352af245d11STodd Fiala                 // Attach to the requested process.
1353af245d11STodd Fiala                 // An attach will cause the thread to stop with a SIGSTOP.
1354068f8a7eSTamas Berghammer                 NativeProcessLinux::PtraceWrapper(PTRACE_ATTACH, tid, nullptr, nullptr, 0, error);
1355bd7cbc5aSPavel Labath                 if (error.Fail())
1356af245d11STodd Fiala                 {
1357af245d11STodd Fiala                     // No such thread. The thread may have exited.
1358af245d11STodd Fiala                     // More error handling may be needed.
1359bd7cbc5aSPavel Labath                     if (error.GetError() == ESRCH)
1360af245d11STodd Fiala                     {
1361af245d11STodd Fiala                         it = tids_to_attach.erase(it);
1362af245d11STodd Fiala                         continue;
1363af245d11STodd Fiala                     }
1364af245d11STodd Fiala                     else
1365bd7cbc5aSPavel Labath                         return -1;
1366af245d11STodd Fiala                 }
1367af245d11STodd Fiala 
1368af245d11STodd Fiala                 int status;
1369af245d11STodd Fiala                 // Need to use __WALL otherwise we receive an error with errno=ECHLD
1370af245d11STodd Fiala                 // At this point we should have a thread stopped if waitpid succeeds.
1371af245d11STodd Fiala                 if ((status = waitpid(tid, NULL, __WALL)) < 0)
1372af245d11STodd Fiala                 {
1373af245d11STodd Fiala                     // No such thread. The thread may have exited.
1374af245d11STodd Fiala                     // More error handling may be needed.
1375af245d11STodd Fiala                     if (errno == ESRCH)
1376af245d11STodd Fiala                     {
1377af245d11STodd Fiala                         it = tids_to_attach.erase(it);
1378af245d11STodd Fiala                         continue;
1379af245d11STodd Fiala                     }
1380af245d11STodd Fiala                     else
1381af245d11STodd Fiala                     {
1382bd7cbc5aSPavel Labath                         error.SetErrorToErrno();
1383bd7cbc5aSPavel Labath                         return -1;
1384af245d11STodd Fiala                     }
1385af245d11STodd Fiala                 }
1386af245d11STodd Fiala 
1387bd7cbc5aSPavel Labath                 error = SetDefaultPtraceOpts(tid);
1388bd7cbc5aSPavel Labath                 if (error.Fail())
1389bd7cbc5aSPavel Labath                     return -1;
1390af245d11STodd Fiala 
1391af245d11STodd Fiala                 if (log)
1392af245d11STodd Fiala                     log->Printf ("NativeProcessLinux::%s() adding tid = %" PRIu64, __FUNCTION__, tid);
1393af245d11STodd Fiala 
1394af245d11STodd Fiala                 it->second = true;
1395af245d11STodd Fiala 
1396af245d11STodd Fiala                 // Create the thread, mark it as stopped.
1397bd7cbc5aSPavel Labath                 NativeThreadProtocolSP thread_sp (AddThread (static_cast<lldb::tid_t> (tid)));
1398af245d11STodd Fiala                 assert (thread_sp && "AddThread() returned a nullptr");
1399fa03ad2eSChaoren Lin 
1400fa03ad2eSChaoren Lin                 // This will notify this is a new thread and tell the system it is stopped.
1401cb84eebbSTamas Berghammer                 std::static_pointer_cast<NativeThreadLinux> (thread_sp)->SetStoppedBySignal (SIGSTOP);
14021dbc6c9cSPavel Labath                 ThreadWasCreated(tid);
1403bd7cbc5aSPavel Labath                 SetCurrentThreadID (thread_sp->GetID ());
1404af245d11STodd Fiala             }
1405af245d11STodd Fiala 
1406af245d11STodd Fiala             // move the loop forward
1407af245d11STodd Fiala             ++it;
1408af245d11STodd Fiala         }
1409af245d11STodd Fiala     }
1410af245d11STodd Fiala 
1411af245d11STodd Fiala     if (tids_to_attach.size() > 0)
1412af245d11STodd Fiala     {
1413bd7cbc5aSPavel Labath         m_pid = pid;
1414af245d11STodd Fiala         // Let our process instance know the thread has stopped.
1415bd7cbc5aSPavel Labath         SetState (StateType::eStateStopped);
1416af245d11STodd Fiala     }
1417af245d11STodd Fiala     else
1418af245d11STodd Fiala     {
1419bd7cbc5aSPavel Labath         error.SetErrorToGenericError();
1420bd7cbc5aSPavel Labath         error.SetErrorString("No such process.");
1421bd7cbc5aSPavel Labath         return -1;
1422af245d11STodd Fiala     }
1423af245d11STodd Fiala 
1424bd7cbc5aSPavel Labath     return pid;
1425af245d11STodd Fiala }
1426af245d11STodd Fiala 
142797ccc294SChaoren Lin Error
1428af245d11STodd Fiala NativeProcessLinux::SetDefaultPtraceOpts(lldb::pid_t pid)
1429af245d11STodd Fiala {
1430af245d11STodd Fiala     long ptrace_opts = 0;
1431af245d11STodd Fiala 
1432af245d11STodd Fiala     // Have the child raise an event on exit.  This is used to keep the child in
1433af245d11STodd Fiala     // limbo until it is destroyed.
1434af245d11STodd Fiala     ptrace_opts |= PTRACE_O_TRACEEXIT;
1435af245d11STodd Fiala 
1436af245d11STodd Fiala     // Have the tracer trace threads which spawn in the inferior process.
1437af245d11STodd Fiala     // TODO: if we want to support tracing the inferiors' child, add the
1438af245d11STodd Fiala     // appropriate ptrace flags here (PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
1439af245d11STodd Fiala     ptrace_opts |= PTRACE_O_TRACECLONE;
1440af245d11STodd Fiala 
1441af245d11STodd Fiala     // Have the tracer notify us before execve returns
1442af245d11STodd Fiala     // (needed to disable legacy SIGTRAP generation)
1443af245d11STodd Fiala     ptrace_opts |= PTRACE_O_TRACEEXEC;
1444af245d11STodd Fiala 
144597ccc294SChaoren Lin     Error error;
1446068f8a7eSTamas Berghammer     NativeProcessLinux::PtraceWrapper(PTRACE_SETOPTIONS, pid, nullptr, (void*)ptrace_opts, 0, error);
144797ccc294SChaoren Lin     return error;
1448af245d11STodd Fiala }
1449af245d11STodd Fiala 
1450af245d11STodd Fiala static ExitType convert_pid_status_to_exit_type (int status)
1451af245d11STodd Fiala {
1452af245d11STodd Fiala     if (WIFEXITED (status))
1453af245d11STodd Fiala         return ExitType::eExitTypeExit;
1454af245d11STodd Fiala     else if (WIFSIGNALED (status))
1455af245d11STodd Fiala         return ExitType::eExitTypeSignal;
1456af245d11STodd Fiala     else if (WIFSTOPPED (status))
1457af245d11STodd Fiala         return ExitType::eExitTypeStop;
1458af245d11STodd Fiala     else
1459af245d11STodd Fiala     {
1460af245d11STodd Fiala         // We don't know what this is.
1461af245d11STodd Fiala         return ExitType::eExitTypeInvalid;
1462af245d11STodd Fiala     }
1463af245d11STodd Fiala }
1464af245d11STodd Fiala 
1465af245d11STodd Fiala static int convert_pid_status_to_return_code (int status)
1466af245d11STodd Fiala {
1467af245d11STodd Fiala     if (WIFEXITED (status))
1468af245d11STodd Fiala         return WEXITSTATUS (status);
1469af245d11STodd Fiala     else if (WIFSIGNALED (status))
1470af245d11STodd Fiala         return WTERMSIG (status);
1471af245d11STodd Fiala     else if (WIFSTOPPED (status))
1472af245d11STodd Fiala         return WSTOPSIG (status);
1473af245d11STodd Fiala     else
1474af245d11STodd Fiala     {
1475af245d11STodd Fiala         // We don't know what this is.
1476af245d11STodd Fiala         return ExitType::eExitTypeInvalid;
1477af245d11STodd Fiala     }
1478af245d11STodd Fiala }
1479af245d11STodd Fiala 
14801107b5a5SPavel Labath // Handles all waitpid events from the inferior process.
14811107b5a5SPavel Labath void
14821107b5a5SPavel Labath NativeProcessLinux::MonitorCallback(lldb::pid_t pid,
1483af245d11STodd Fiala                                     bool exited,
1484af245d11STodd Fiala                                     int signal,
1485af245d11STodd Fiala                                     int status)
1486af245d11STodd Fiala {
1487af245d11STodd Fiala     Log *log (GetLogIfAnyCategoriesSet (LIBLLDB_LOG_PROCESS));
1488af245d11STodd Fiala 
1489af245d11STodd Fiala     // Certain activities differ based on whether the pid is the tid of the main thread.
14901107b5a5SPavel Labath     const bool is_main_thread = (pid == GetID ());
1491af245d11STodd Fiala 
1492af245d11STodd Fiala     // Handle when the thread exits.
1493af245d11STodd Fiala     if (exited)
1494af245d11STodd Fiala     {
1495af245d11STodd Fiala         if (log)
149686fd8e45SChaoren Lin             log->Printf ("NativeProcessLinux::%s() got exit signal(%d) , tid = %"  PRIu64 " (%s main thread)", __FUNCTION__, signal, pid, is_main_thread ? "is" : "is not");
1497af245d11STodd Fiala 
1498af245d11STodd Fiala         // This is a thread that exited.  Ensure we're not tracking it anymore.
14991107b5a5SPavel Labath         const bool thread_found = StopTrackingThread (pid);
1500af245d11STodd Fiala 
1501af245d11STodd Fiala         if (is_main_thread)
1502af245d11STodd Fiala         {
1503af245d11STodd Fiala             // We only set the exit status and notify the delegate if we haven't already set the process
1504af245d11STodd Fiala             // state to an exited state.  We normally should have received a SIGTRAP | (PTRACE_EVENT_EXIT << 8)
1505af245d11STodd Fiala             // for the main thread.
15061107b5a5SPavel Labath             const bool already_notified = (GetState() == StateType::eStateExited) || (GetState () == StateType::eStateCrashed);
1507af245d11STodd Fiala             if (!already_notified)
1508af245d11STodd Fiala             {
1509af245d11STodd Fiala                 if (log)
15101107b5a5SPavel Labath                     log->Printf ("NativeProcessLinux::%s() tid = %"  PRIu64 " handling main thread exit (%s), expected exit state already set but state was %s instead, setting exit state now", __FUNCTION__, pid, thread_found ? "stopped tracking thread metadata" : "thread metadata not found", StateAsCString (GetState ()));
1511af245d11STodd Fiala                 // The main thread exited.  We're done monitoring.  Report to delegate.
15121107b5a5SPavel Labath                 SetExitStatus (convert_pid_status_to_exit_type (status), convert_pid_status_to_return_code (status), nullptr, true);
1513af245d11STodd Fiala 
1514af245d11STodd Fiala                 // Notify delegate that our process has exited.
15151107b5a5SPavel Labath                 SetState (StateType::eStateExited, true);
1516af245d11STodd Fiala             }
1517af245d11STodd Fiala             else
1518af245d11STodd Fiala             {
1519af245d11STodd Fiala                 if (log)
1520af245d11STodd Fiala                     log->Printf ("NativeProcessLinux::%s() tid = %"  PRIu64 " main thread now exited (%s)", __FUNCTION__, pid, thread_found ? "stopped tracking thread metadata" : "thread metadata not found");
1521af245d11STodd Fiala             }
1522af245d11STodd Fiala         }
1523af245d11STodd Fiala         else
1524af245d11STodd Fiala         {
1525af245d11STodd Fiala             // Do we want to report to the delegate in this case?  I think not.  If this was an orderly
1526af245d11STodd Fiala             // thread exit, we would already have received the SIGTRAP | (PTRACE_EVENT_EXIT << 8) signal,
1527af245d11STodd Fiala             // and we would have done an all-stop then.
1528af245d11STodd Fiala             if (log)
1529af245d11STodd Fiala                 log->Printf ("NativeProcessLinux::%s() tid = %"  PRIu64 " handling non-main thread exit (%s)", __FUNCTION__, pid, thread_found ? "stopped tracking thread metadata" : "thread metadata not found");
1530af245d11STodd Fiala         }
15311107b5a5SPavel Labath         return;
1532af245d11STodd Fiala     }
1533af245d11STodd Fiala 
1534af245d11STodd Fiala     // Get details on the signal raised.
1535af245d11STodd Fiala     siginfo_t info;
15361107b5a5SPavel Labath     const auto err = GetSignalInfo(pid, &info);
153797ccc294SChaoren Lin     if (err.Success())
1538fa03ad2eSChaoren Lin     {
1539fa03ad2eSChaoren Lin         // We have retrieved the signal info.  Dispatch appropriately.
1540fa03ad2eSChaoren Lin         if (info.si_signo == SIGTRAP)
15411107b5a5SPavel Labath             MonitorSIGTRAP(&info, pid);
1542fa03ad2eSChaoren Lin         else
15431107b5a5SPavel Labath             MonitorSignal(&info, pid, exited);
1544fa03ad2eSChaoren Lin     }
1545fa03ad2eSChaoren Lin     else
1546af245d11STodd Fiala     {
154797ccc294SChaoren Lin         if (err.GetError() == EINVAL)
1548af245d11STodd Fiala         {
1549fa03ad2eSChaoren Lin             // This is a group stop reception for this tid.
155039036ac3SPavel Labath             // We can reach here if we reinject SIGSTOP, SIGSTP, SIGTTIN or SIGTTOU into the
155139036ac3SPavel Labath             // tracee, triggering the group-stop mechanism. Normally receiving these would stop
155239036ac3SPavel Labath             // the process, pending a SIGCONT. Simulating this state in a debugger is hard and is
155339036ac3SPavel Labath             // generally not needed (one use case is debugging background task being managed by a
155439036ac3SPavel Labath             // shell). For general use, it is sufficient to stop the process in a signal-delivery
155539036ac3SPavel Labath             // stop which happens before the group stop. This done by MonitorSignal and works
155639036ac3SPavel Labath             // correctly for all signals.
1557fa03ad2eSChaoren Lin             if (log)
155839036ac3SPavel Labath                 log->Printf("NativeProcessLinux::%s received a group stop for pid %" PRIu64 " tid %" PRIu64 ". Transparent handling of group stops not supported, resuming the thread.", __FUNCTION__, GetID (), pid);
155939036ac3SPavel Labath             Resume(pid, signal);
1560a9882ceeSTodd Fiala         }
1561a9882ceeSTodd Fiala         else
1562a9882ceeSTodd Fiala         {
1563af245d11STodd Fiala             // ptrace(GETSIGINFO) failed (but not due to group-stop).
1564af245d11STodd Fiala 
1565af245d11STodd Fiala             // A return value of ESRCH means the thread/process is no longer on the system,
1566af245d11STodd Fiala             // so it was killed somehow outside of our control.  Either way, we can't do anything
1567af245d11STodd Fiala             // with it anymore.
1568af245d11STodd Fiala 
1569af245d11STodd Fiala             // Stop tracking the metadata for the thread since it's entirely off the system now.
15701107b5a5SPavel Labath             const bool thread_found = StopTrackingThread (pid);
1571af245d11STodd Fiala 
1572af245d11STodd Fiala             if (log)
1573af245d11STodd Fiala                 log->Printf ("NativeProcessLinux::%s GetSignalInfo failed: %s, tid = %" PRIu64 ", signal = %d, status = %d (%s, %s, %s)",
157497ccc294SChaoren Lin                              __FUNCTION__, err.AsCString(), pid, signal, status, err.GetError() == ESRCH ? "thread/process killed" : "unknown reason", is_main_thread ? "is main thread" : "is not main thread", thread_found ? "thread metadata removed" : "thread metadata not found");
1575af245d11STodd Fiala 
1576af245d11STodd Fiala             if (is_main_thread)
1577af245d11STodd Fiala             {
1578af245d11STodd Fiala                 // Notify the delegate - our process is not available but appears to have been killed outside
1579af245d11STodd Fiala                 // our control.  Is eStateExited the right exit state in this case?
15801107b5a5SPavel Labath                 SetExitStatus (convert_pid_status_to_exit_type (status), convert_pid_status_to_return_code (status), nullptr, true);
15811107b5a5SPavel Labath                 SetState (StateType::eStateExited, true);
1582af245d11STodd Fiala             }
1583af245d11STodd Fiala             else
1584af245d11STodd Fiala             {
1585af245d11STodd Fiala                 // This thread was pulled out from underneath us.  Anything to do here? Do we want to do an all stop?
1586af245d11STodd Fiala                 if (log)
15871107b5a5SPavel Labath                     log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " tid %" PRIu64 " non-main thread exit occurred, didn't tell delegate anything since thread disappeared out from underneath us", __FUNCTION__, GetID (), pid);
1588af245d11STodd Fiala             }
1589af245d11STodd Fiala         }
1590af245d11STodd Fiala     }
1591af245d11STodd Fiala }
1592af245d11STodd Fiala 
1593af245d11STodd Fiala void
1594426bdf88SPavel Labath NativeProcessLinux::WaitForNewThread(::pid_t tid)
1595426bdf88SPavel Labath {
1596426bdf88SPavel Labath     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1597426bdf88SPavel Labath 
1598426bdf88SPavel Labath     NativeThreadProtocolSP new_thread_sp = GetThreadByID(tid);
1599426bdf88SPavel Labath 
1600426bdf88SPavel Labath     if (new_thread_sp)
1601426bdf88SPavel Labath     {
1602426bdf88SPavel Labath         // We are already tracking the thread - we got the event on the new thread (see
1603426bdf88SPavel Labath         // MonitorSignal) before this one. We are done.
1604426bdf88SPavel Labath         return;
1605426bdf88SPavel Labath     }
1606426bdf88SPavel Labath 
1607426bdf88SPavel Labath     // The thread is not tracked yet, let's wait for it to appear.
1608426bdf88SPavel Labath     int status = -1;
1609426bdf88SPavel Labath     ::pid_t wait_pid;
1610426bdf88SPavel Labath     do
1611426bdf88SPavel Labath     {
1612426bdf88SPavel Labath         if (log)
1613426bdf88SPavel Labath             log->Printf ("NativeProcessLinux::%s() received thread creation event for tid %" PRIu32 ". tid not tracked yet, waiting for thread to appear...", __FUNCTION__, tid);
1614426bdf88SPavel Labath         wait_pid = waitpid(tid, &status, __WALL);
1615426bdf88SPavel Labath     }
1616426bdf88SPavel Labath     while (wait_pid == -1 && errno == EINTR);
1617426bdf88SPavel Labath     // Since we are waiting on a specific tid, this must be the creation event. But let's do
1618426bdf88SPavel Labath     // some checks just in case.
1619426bdf88SPavel Labath     if (wait_pid != tid) {
1620426bdf88SPavel Labath         if (log)
1621426bdf88SPavel Labath             log->Printf ("NativeProcessLinux::%s() waiting for tid %" PRIu32 " failed. Assuming the thread has disappeared in the meantime", __FUNCTION__, tid);
1622426bdf88SPavel Labath         // The only way I know of this could happen is if the whole process was
1623426bdf88SPavel Labath         // SIGKILLed in the mean time. In any case, we can't do anything about that now.
1624426bdf88SPavel Labath         return;
1625426bdf88SPavel Labath     }
1626426bdf88SPavel Labath     if (WIFEXITED(status))
1627426bdf88SPavel Labath     {
1628426bdf88SPavel Labath         if (log)
1629426bdf88SPavel Labath             log->Printf ("NativeProcessLinux::%s() waiting for tid %" PRIu32 " returned an 'exited' event. Not tracking the thread.", __FUNCTION__, tid);
1630426bdf88SPavel Labath         // Also a very improbable event.
1631426bdf88SPavel Labath         return;
1632426bdf88SPavel Labath     }
1633426bdf88SPavel Labath 
1634426bdf88SPavel Labath     siginfo_t info;
1635426bdf88SPavel Labath     Error error = GetSignalInfo(tid, &info);
1636426bdf88SPavel Labath     if (error.Fail())
1637426bdf88SPavel Labath     {
1638426bdf88SPavel Labath         if (log)
1639426bdf88SPavel Labath             log->Printf ("NativeProcessLinux::%s() GetSignalInfo for tid %" PRIu32 " failed. Assuming the thread has disappeared in the meantime.", __FUNCTION__, tid);
1640426bdf88SPavel Labath         return;
1641426bdf88SPavel Labath     }
1642426bdf88SPavel Labath 
1643426bdf88SPavel Labath     if (((info.si_pid != 0) || (info.si_code != SI_USER)) && log)
1644426bdf88SPavel Labath     {
1645426bdf88SPavel Labath         // We should be getting a thread creation signal here, but we received something
1646426bdf88SPavel Labath         // else. There isn't much we can do about it now, so we will just log that. Since the
1647426bdf88SPavel Labath         // thread is alive and we are receiving events from it, we shall pretend that it was
1648426bdf88SPavel Labath         // created properly.
1649426bdf88SPavel Labath         log->Printf ("NativeProcessLinux::%s() GetSignalInfo for tid %" PRIu32 " received unexpected signal with code %d from pid %d.", __FUNCTION__, tid, info.si_code, info.si_pid);
1650426bdf88SPavel Labath     }
1651426bdf88SPavel Labath 
1652426bdf88SPavel Labath     if (log)
1653426bdf88SPavel Labath         log->Printf ("NativeProcessLinux::%s() pid = %" PRIu64 ": tracking new thread tid %" PRIu32,
1654426bdf88SPavel Labath                  __FUNCTION__, GetID (), tid);
1655426bdf88SPavel Labath 
1656426bdf88SPavel Labath     new_thread_sp = AddThread(tid);
1657426bdf88SPavel Labath     std::static_pointer_cast<NativeThreadLinux> (new_thread_sp)->SetRunning ();
1658426bdf88SPavel Labath     Resume (tid, LLDB_INVALID_SIGNAL_NUMBER);
16591dbc6c9cSPavel Labath     ThreadWasCreated(tid);
1660426bdf88SPavel Labath }
1661426bdf88SPavel Labath 
1662426bdf88SPavel Labath void
1663af245d11STodd Fiala NativeProcessLinux::MonitorSIGTRAP(const siginfo_t *info, lldb::pid_t pid)
1664af245d11STodd Fiala {
1665af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1666af245d11STodd Fiala     const bool is_main_thread = (pid == GetID ());
1667af245d11STodd Fiala 
1668af245d11STodd Fiala     assert(info && info->si_signo == SIGTRAP && "Unexpected child signal!");
1669af245d11STodd Fiala     if (!info)
1670af245d11STodd Fiala         return;
1671af245d11STodd Fiala 
16725830aa75STamas Berghammer     Mutex::Locker locker (m_threads_mutex);
16735830aa75STamas Berghammer 
1674af245d11STodd Fiala     // See if we can find a thread for this signal.
1675af245d11STodd Fiala     NativeThreadProtocolSP thread_sp = GetThreadByID (pid);
1676af245d11STodd Fiala     if (!thread_sp)
1677af245d11STodd Fiala     {
1678af245d11STodd Fiala         if (log)
1679af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 " no thread found for tid %" PRIu64, __FUNCTION__, GetID (), pid);
1680af245d11STodd Fiala     }
1681af245d11STodd Fiala 
1682af245d11STodd Fiala     switch (info->si_code)
1683af245d11STodd Fiala     {
1684af245d11STodd Fiala     // TODO: these two cases are required if we want to support tracing of the inferiors' children.  We'd need this to debug a monitor.
1685af245d11STodd Fiala     // case (SIGTRAP | (PTRACE_EVENT_FORK << 8)):
1686af245d11STodd Fiala     // case (SIGTRAP | (PTRACE_EVENT_VFORK << 8)):
1687af245d11STodd Fiala 
1688af245d11STodd Fiala     case (SIGTRAP | (PTRACE_EVENT_CLONE << 8)):
1689af245d11STodd Fiala     {
16905fd24c67SPavel Labath         // This is the notification on the parent thread which informs us of new thread
1691426bdf88SPavel Labath         // creation.
1692426bdf88SPavel Labath         // We don't want to do anything with the parent thread so we just resume it. In case we
1693426bdf88SPavel Labath         // want to implement "break on thread creation" functionality, we would need to stop
1694426bdf88SPavel Labath         // here.
1695af245d11STodd Fiala 
1696af245d11STodd Fiala         unsigned long event_message = 0;
1697426bdf88SPavel Labath         if (GetEventMessage (pid, &event_message).Fail())
1698fa03ad2eSChaoren Lin         {
1699426bdf88SPavel Labath             if (log)
1700fa03ad2eSChaoren Lin                 log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 " received thread creation event but GetEventMessage failed so we don't know the new tid", __FUNCTION__, pid);
1701426bdf88SPavel Labath         } else
1702426bdf88SPavel Labath             WaitForNewThread(event_message);
1703af245d11STodd Fiala 
17045fd24c67SPavel Labath         Resume (pid, LLDB_INVALID_SIGNAL_NUMBER);
1705af245d11STodd Fiala         break;
1706af245d11STodd Fiala     }
1707af245d11STodd Fiala 
1708af245d11STodd Fiala     case (SIGTRAP | (PTRACE_EVENT_EXEC << 8)):
1709a9882ceeSTodd Fiala     {
1710a9882ceeSTodd Fiala         NativeThreadProtocolSP main_thread_sp;
1711af245d11STodd Fiala         if (log)
1712af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s() received exec event, code = %d", __FUNCTION__, info->si_code ^ SIGTRAP);
1713a9882ceeSTodd Fiala 
17141dbc6c9cSPavel Labath         // Exec clears any pending notifications.
17151dbc6c9cSPavel Labath         m_pending_notification_up.reset ();
1716fa03ad2eSChaoren Lin 
1717fa03ad2eSChaoren Lin         // Remove all but the main thread here.  Linux fork creates a new process which only copies the main thread.  Mutexes are in undefined state.
1718a9882ceeSTodd Fiala         if (log)
1719a9882ceeSTodd Fiala             log->Printf ("NativeProcessLinux::%s exec received, stop tracking all but main thread", __FUNCTION__);
1720a9882ceeSTodd Fiala 
1721a9882ceeSTodd Fiala         for (auto thread_sp : m_threads)
1722a9882ceeSTodd Fiala         {
1723a9882ceeSTodd Fiala             const bool is_main_thread = thread_sp && thread_sp->GetID () == GetID ();
1724a9882ceeSTodd Fiala             if (is_main_thread)
1725a9882ceeSTodd Fiala             {
1726a9882ceeSTodd Fiala                 main_thread_sp = thread_sp;
1727a9882ceeSTodd Fiala                 if (log)
1728a9882ceeSTodd Fiala                     log->Printf ("NativeProcessLinux::%s found main thread with tid %" PRIu64 ", keeping", __FUNCTION__, main_thread_sp->GetID ());
1729a9882ceeSTodd Fiala             }
1730a9882ceeSTodd Fiala             else
1731a9882ceeSTodd Fiala             {
1732fa03ad2eSChaoren Lin                 // Tell thread coordinator this thread is dead.
1733a9882ceeSTodd Fiala                 if (log)
1734a9882ceeSTodd Fiala                     log->Printf ("NativeProcessLinux::%s discarding non-main-thread tid %" PRIu64 " due to exec", __FUNCTION__, thread_sp->GetID ());
1735a9882ceeSTodd Fiala             }
1736a9882ceeSTodd Fiala         }
1737a9882ceeSTodd Fiala 
1738a9882ceeSTodd Fiala         m_threads.clear ();
1739a9882ceeSTodd Fiala 
1740a9882ceeSTodd Fiala         if (main_thread_sp)
1741a9882ceeSTodd Fiala         {
1742a9882ceeSTodd Fiala             m_threads.push_back (main_thread_sp);
1743a9882ceeSTodd Fiala             SetCurrentThreadID (main_thread_sp->GetID ());
1744cb84eebbSTamas Berghammer             std::static_pointer_cast<NativeThreadLinux> (main_thread_sp)->SetStoppedByExec ();
1745a9882ceeSTodd Fiala         }
1746a9882ceeSTodd Fiala         else
1747a9882ceeSTodd Fiala         {
1748a9882ceeSTodd Fiala             SetCurrentThreadID (LLDB_INVALID_THREAD_ID);
1749a9882ceeSTodd Fiala             if (log)
1750a9882ceeSTodd Fiala                 log->Printf ("NativeProcessLinux::%s pid %" PRIu64 "no main thread found, discarded all threads, we're in a no-thread state!", __FUNCTION__, GetID ());
1751a9882ceeSTodd Fiala         }
1752a9882ceeSTodd Fiala 
1753fa03ad2eSChaoren Lin         // Tell coordinator about about the "new" (since exec) stopped main thread.
1754fa03ad2eSChaoren Lin         const lldb::tid_t main_thread_tid = GetID ();
17551dbc6c9cSPavel Labath         ThreadWasCreated(main_thread_tid);
1756fa03ad2eSChaoren Lin 
1757fa03ad2eSChaoren Lin         // NOTE: ideally these next statements would execute at the same time as the coordinator thread create was executed.
1758fa03ad2eSChaoren Lin         // Consider a handler that can execute when that happens.
1759a9882ceeSTodd Fiala         // Let our delegate know we have just exec'd.
1760a9882ceeSTodd Fiala         NotifyDidExec ();
1761a9882ceeSTodd Fiala 
1762a9882ceeSTodd Fiala         // If we have a main thread, indicate we are stopped.
1763a9882ceeSTodd Fiala         assert (main_thread_sp && "exec called during ptraced process but no main thread metadata tracked");
1764fa03ad2eSChaoren Lin 
1765fa03ad2eSChaoren Lin         // Let the process know we're stopped.
1766ed89c7feSPavel Labath         StopRunningThreads (pid);
1767a9882ceeSTodd Fiala 
1768af245d11STodd Fiala         break;
1769a9882ceeSTodd Fiala     }
1770af245d11STodd Fiala 
1771af245d11STodd Fiala     case (SIGTRAP | (PTRACE_EVENT_EXIT << 8)):
1772af245d11STodd Fiala     {
1773af245d11STodd Fiala         // The inferior process or one of its threads is about to exit.
17746e35163cSPavel Labath         // We don't want to do anything with the thread so we just resume it. In case we
17756e35163cSPavel Labath         // want to implement "break on thread exit" functionality, we would need to stop
17766e35163cSPavel Labath         // here.
1777fa03ad2eSChaoren Lin 
1778af245d11STodd Fiala         unsigned long data = 0;
177997ccc294SChaoren Lin         if (GetEventMessage(pid, &data).Fail())
1780af245d11STodd Fiala             data = -1;
1781af245d11STodd Fiala 
1782af245d11STodd Fiala         if (log)
1783af245d11STodd Fiala         {
1784af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s() received PTRACE_EVENT_EXIT, data = %lx (WIFEXITED=%s,WIFSIGNALED=%s), pid = %" PRIu64 " (%s)",
1785af245d11STodd Fiala                          __FUNCTION__,
1786af245d11STodd Fiala                          data, WIFEXITED (data) ? "true" : "false", WIFSIGNALED (data) ? "true" : "false",
1787af245d11STodd Fiala                          pid,
1788af245d11STodd Fiala                     is_main_thread ? "is main thread" : "not main thread");
1789af245d11STodd Fiala         }
1790af245d11STodd Fiala 
1791af245d11STodd Fiala         if (is_main_thread)
1792af245d11STodd Fiala         {
1793af245d11STodd Fiala             SetExitStatus (convert_pid_status_to_exit_type (data), convert_pid_status_to_return_code (data), nullptr, true);
179475f47c3aSTodd Fiala         }
179575f47c3aSTodd Fiala 
17966e35163cSPavel Labath         Resume(pid, LLDB_INVALID_SIGNAL_NUMBER);
1797af245d11STodd Fiala 
1798af245d11STodd Fiala         break;
1799af245d11STodd Fiala     }
1800af245d11STodd Fiala 
1801af245d11STodd Fiala     case 0:
1802c16f5dcaSChaoren Lin     case TRAP_TRACE:  // We receive this on single stepping.
1803c16f5dcaSChaoren Lin     case TRAP_HWBKPT: // We receive this on watchpoint hit
180486fd8e45SChaoren Lin         if (thread_sp)
180586fd8e45SChaoren Lin         {
1806c16f5dcaSChaoren Lin             // If a watchpoint was hit, report it
1807c16f5dcaSChaoren Lin             uint32_t wp_index;
1808ea8c25a8SOmair Javaid             Error error = thread_sp->GetRegisterContext()->GetWatchpointHitIndex(wp_index, (lldb::addr_t)info->si_addr);
1809c16f5dcaSChaoren Lin             if (error.Fail() && log)
1810c16f5dcaSChaoren Lin                 log->Printf("NativeProcessLinux::%s() "
1811c16f5dcaSChaoren Lin                             "received error while checking for watchpoint hits, "
1812c16f5dcaSChaoren Lin                             "pid = %" PRIu64 " error = %s",
1813c16f5dcaSChaoren Lin                             __FUNCTION__, pid, error.AsCString());
1814c16f5dcaSChaoren Lin             if (wp_index != LLDB_INVALID_INDEX32)
18155830aa75STamas Berghammer             {
1816c16f5dcaSChaoren Lin                 MonitorWatchpoint(pid, thread_sp, wp_index);
1817c16f5dcaSChaoren Lin                 break;
1818c16f5dcaSChaoren Lin             }
1819c16f5dcaSChaoren Lin         }
1820c16f5dcaSChaoren Lin         // Otherwise, report step over
1821c16f5dcaSChaoren Lin         MonitorTrace(pid, thread_sp);
1822af245d11STodd Fiala         break;
1823af245d11STodd Fiala 
1824af245d11STodd Fiala     case SI_KERNEL:
182535799963SMohit K. Bhakkad #if defined __mips__
182635799963SMohit K. Bhakkad         // For mips there is no special signal for watchpoint
182735799963SMohit K. Bhakkad         // So we check for watchpoint in kernel trap
182835799963SMohit K. Bhakkad         if (thread_sp)
182935799963SMohit K. Bhakkad         {
183035799963SMohit K. Bhakkad             // If a watchpoint was hit, report it
183135799963SMohit K. Bhakkad             uint32_t wp_index;
1832c60c9452SJaydeep Patil             Error error = thread_sp->GetRegisterContext()->GetWatchpointHitIndex(wp_index, LLDB_INVALID_ADDRESS);
183335799963SMohit K. Bhakkad             if (error.Fail() && log)
183435799963SMohit K. Bhakkad                 log->Printf("NativeProcessLinux::%s() "
183535799963SMohit K. Bhakkad                             "received error while checking for watchpoint hits, "
183635799963SMohit K. Bhakkad                             "pid = %" PRIu64 " error = %s",
183735799963SMohit K. Bhakkad                             __FUNCTION__, pid, error.AsCString());
183835799963SMohit K. Bhakkad             if (wp_index != LLDB_INVALID_INDEX32)
183935799963SMohit K. Bhakkad             {
184035799963SMohit K. Bhakkad                 MonitorWatchpoint(pid, thread_sp, wp_index);
184135799963SMohit K. Bhakkad                 break;
184235799963SMohit K. Bhakkad             }
184335799963SMohit K. Bhakkad         }
184435799963SMohit K. Bhakkad         // NO BREAK
184535799963SMohit K. Bhakkad #endif
1846af245d11STodd Fiala     case TRAP_BRKPT:
1847c16f5dcaSChaoren Lin         MonitorBreakpoint(pid, thread_sp);
1848af245d11STodd Fiala         break;
1849af245d11STodd Fiala 
1850af245d11STodd Fiala     case SIGTRAP:
1851af245d11STodd Fiala     case (SIGTRAP | 0x80):
1852af245d11STodd Fiala         if (log)
1853fa03ad2eSChaoren Lin             log->Printf ("NativeProcessLinux::%s() received unknown SIGTRAP system call stop event, pid %" PRIu64 "tid %" PRIu64 ", resuming", __FUNCTION__, GetID (), pid);
1854fa03ad2eSChaoren Lin 
1855af245d11STodd Fiala         // Ignore these signals until we know more about them.
18566e35163cSPavel Labath         Resume(pid, LLDB_INVALID_SIGNAL_NUMBER);
1857af245d11STodd Fiala         break;
1858af245d11STodd Fiala 
1859af245d11STodd Fiala     default:
1860af245d11STodd Fiala         assert(false && "Unexpected SIGTRAP code!");
1861af245d11STodd Fiala         if (log)
18626e35163cSPavel Labath             log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 "tid %" PRIu64 " received unhandled SIGTRAP code: 0x%d",
18636e35163cSPavel Labath                     __FUNCTION__, GetID (), pid, info->si_code);
1864af245d11STodd Fiala         break;
1865af245d11STodd Fiala 
1866af245d11STodd Fiala     }
1867af245d11STodd Fiala }
1868af245d11STodd Fiala 
1869af245d11STodd Fiala void
1870c16f5dcaSChaoren Lin NativeProcessLinux::MonitorTrace(lldb::pid_t pid, NativeThreadProtocolSP thread_sp)
1871c16f5dcaSChaoren Lin {
1872c16f5dcaSChaoren Lin     Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS));
1873c16f5dcaSChaoren Lin     if (log)
1874c16f5dcaSChaoren Lin         log->Printf("NativeProcessLinux::%s() received trace event, pid = %" PRIu64 " (single stepping)",
1875c16f5dcaSChaoren Lin                 __FUNCTION__, pid);
1876c16f5dcaSChaoren Lin 
1877c16f5dcaSChaoren Lin     if (thread_sp)
1878c16f5dcaSChaoren Lin         std::static_pointer_cast<NativeThreadLinux>(thread_sp)->SetStoppedByTrace();
1879c16f5dcaSChaoren Lin 
1880c16f5dcaSChaoren Lin     // This thread is currently stopped.
18811dbc6c9cSPavel Labath     ThreadDidStop(pid, false);
1882c16f5dcaSChaoren Lin 
1883c16f5dcaSChaoren Lin     // Here we don't have to request the rest of the threads to stop or request a deferred stop.
1884c16f5dcaSChaoren Lin     // This would have already happened at the time the Resume() with step operation was signaled.
1885c16f5dcaSChaoren Lin     // At this point, we just need to say we stopped, and the deferred notifcation will fire off
1886c16f5dcaSChaoren Lin     // once all running threads have checked in as stopped.
1887c16f5dcaSChaoren Lin     SetCurrentThreadID(pid);
1888c16f5dcaSChaoren Lin     // Tell the process we have a stop (from software breakpoint).
1889ed89c7feSPavel Labath     StopRunningThreads(pid);
1890c16f5dcaSChaoren Lin }
1891c16f5dcaSChaoren Lin 
1892c16f5dcaSChaoren Lin void
1893c16f5dcaSChaoren Lin NativeProcessLinux::MonitorBreakpoint(lldb::pid_t pid, NativeThreadProtocolSP thread_sp)
1894c16f5dcaSChaoren Lin {
1895c16f5dcaSChaoren Lin     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_BREAKPOINTS));
1896c16f5dcaSChaoren Lin     if (log)
1897c16f5dcaSChaoren Lin         log->Printf("NativeProcessLinux::%s() received breakpoint event, pid = %" PRIu64,
1898c16f5dcaSChaoren Lin                 __FUNCTION__, pid);
1899c16f5dcaSChaoren Lin 
1900c16f5dcaSChaoren Lin     // This thread is currently stopped.
19011dbc6c9cSPavel Labath     ThreadDidStop(pid, false);
1902c16f5dcaSChaoren Lin 
1903c16f5dcaSChaoren Lin     // Mark the thread as stopped at breakpoint.
1904c16f5dcaSChaoren Lin     if (thread_sp)
1905c16f5dcaSChaoren Lin     {
1906c16f5dcaSChaoren Lin         std::static_pointer_cast<NativeThreadLinux>(thread_sp)->SetStoppedByBreakpoint();
1907c16f5dcaSChaoren Lin         Error error = FixupBreakpointPCAsNeeded(thread_sp);
1908c16f5dcaSChaoren Lin         if (error.Fail())
1909c16f5dcaSChaoren Lin             if (log)
1910c16f5dcaSChaoren Lin                 log->Printf("NativeProcessLinux::%s() pid = %" PRIu64 " fixup: %s",
1911c16f5dcaSChaoren Lin                         __FUNCTION__, pid, error.AsCString());
1912d8c338d4STamas Berghammer 
19139eb1ecb9SPavel Labath         if (m_threads_stepping_with_breakpoint.find(pid) != m_threads_stepping_with_breakpoint.end())
1914d8c338d4STamas Berghammer             std::static_pointer_cast<NativeThreadLinux>(thread_sp)->SetStoppedByTrace();
1915d8c338d4STamas Berghammer     }
1916c16f5dcaSChaoren Lin     else
1917c16f5dcaSChaoren Lin         if (log)
1918c16f5dcaSChaoren Lin             log->Printf("NativeProcessLinux::%s()  pid = %" PRIu64 ": "
1919c16f5dcaSChaoren Lin                     "warning, cannot process software breakpoint since no thread metadata",
1920c16f5dcaSChaoren Lin                     __FUNCTION__, pid);
1921c16f5dcaSChaoren Lin 
1922c16f5dcaSChaoren Lin 
1923c16f5dcaSChaoren Lin     // We need to tell all other running threads before we notify the delegate about this stop.
1924ed89c7feSPavel Labath     StopRunningThreads(pid);
1925c16f5dcaSChaoren Lin }
1926c16f5dcaSChaoren Lin 
1927c16f5dcaSChaoren Lin void
1928c16f5dcaSChaoren Lin NativeProcessLinux::MonitorWatchpoint(lldb::pid_t pid, NativeThreadProtocolSP thread_sp, uint32_t wp_index)
1929c16f5dcaSChaoren Lin {
1930c16f5dcaSChaoren Lin     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_WATCHPOINTS));
1931c16f5dcaSChaoren Lin     if (log)
1932c16f5dcaSChaoren Lin         log->Printf("NativeProcessLinux::%s() received watchpoint event, "
1933c16f5dcaSChaoren Lin                     "pid = %" PRIu64 ", wp_index = %" PRIu32,
1934c16f5dcaSChaoren Lin                     __FUNCTION__, pid, wp_index);
1935c16f5dcaSChaoren Lin 
1936c16f5dcaSChaoren Lin     // This thread is currently stopped.
19371dbc6c9cSPavel Labath     ThreadDidStop(pid, false);
1938c16f5dcaSChaoren Lin 
1939c16f5dcaSChaoren Lin     // Mark the thread as stopped at watchpoint.
1940c16f5dcaSChaoren Lin     // The address is at (lldb::addr_t)info->si_addr if we need it.
1941c16f5dcaSChaoren Lin     lldbassert(thread_sp && "thread_sp cannot be NULL");
1942c16f5dcaSChaoren Lin     std::static_pointer_cast<NativeThreadLinux>(thread_sp)->SetStoppedByWatchpoint(wp_index);
1943c16f5dcaSChaoren Lin 
1944c16f5dcaSChaoren Lin     // We need to tell all other running threads before we notify the delegate about this stop.
1945ed89c7feSPavel Labath     StopRunningThreads(pid);
1946c16f5dcaSChaoren Lin }
1947c16f5dcaSChaoren Lin 
1948c16f5dcaSChaoren Lin void
1949af245d11STodd Fiala NativeProcessLinux::MonitorSignal(const siginfo_t *info, lldb::pid_t pid, bool exited)
1950af245d11STodd Fiala {
1951511e5cdcSTodd Fiala     assert (info && "null info");
1952511e5cdcSTodd Fiala     if (!info)
1953511e5cdcSTodd Fiala         return;
1954511e5cdcSTodd Fiala 
1955511e5cdcSTodd Fiala     const int signo = info->si_signo;
1956511e5cdcSTodd Fiala     const bool is_from_llgs = info->si_pid == getpid ();
1957af245d11STodd Fiala 
1958af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1959af245d11STodd Fiala 
1960af245d11STodd Fiala     // POSIX says that process behaviour is undefined after it ignores a SIGFPE,
1961af245d11STodd Fiala     // SIGILL, SIGSEGV, or SIGBUS *unless* that signal was generated by a
1962af245d11STodd Fiala     // kill(2) or raise(3).  Similarly for tgkill(2) on Linux.
1963af245d11STodd Fiala     //
1964af245d11STodd Fiala     // IOW, user generated signals never generate what we consider to be a
1965af245d11STodd Fiala     // "crash".
1966af245d11STodd Fiala     //
1967af245d11STodd Fiala     // Similarly, ACK signals generated by this monitor.
1968af245d11STodd Fiala 
19695830aa75STamas Berghammer     Mutex::Locker locker (m_threads_mutex);
19705830aa75STamas Berghammer 
1971af245d11STodd Fiala     // See if we can find a thread for this signal.
1972af245d11STodd Fiala     NativeThreadProtocolSP thread_sp = GetThreadByID (pid);
1973af245d11STodd Fiala     if (!thread_sp)
1974af245d11STodd Fiala     {
1975af245d11STodd Fiala         if (log)
1976af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 " no thread found for tid %" PRIu64, __FUNCTION__, GetID (), pid);
1977af245d11STodd Fiala     }
1978af245d11STodd Fiala 
1979af245d11STodd Fiala     // Handle the signal.
1980af245d11STodd Fiala     if (info->si_code == SI_TKILL || info->si_code == SI_USER)
1981af245d11STodd Fiala     {
1982af245d11STodd Fiala         if (log)
1983af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s() received signal %s (%d) with code %s, (siginfo pid = %d (%s), waitpid pid = %" PRIu64 ")",
1984af245d11STodd Fiala                             __FUNCTION__,
1985af245d11STodd Fiala                             GetUnixSignals ().GetSignalAsCString (signo),
1986af245d11STodd Fiala                             signo,
1987af245d11STodd Fiala                             (info->si_code == SI_TKILL ? "SI_TKILL" : "SI_USER"),
1988af245d11STodd Fiala                             info->si_pid,
1989511e5cdcSTodd Fiala                             is_from_llgs ? "from llgs" : "not from llgs",
1990af245d11STodd Fiala                             pid);
199158a2f669STodd Fiala     }
1992af245d11STodd Fiala 
199358a2f669STodd Fiala     // Check for new thread notification.
199458a2f669STodd Fiala     if ((info->si_pid == 0) && (info->si_code == SI_USER))
1995af245d11STodd Fiala     {
1996af245d11STodd Fiala         // A new thread creation is being signaled. This is one of two parts that come in
1997426bdf88SPavel Labath         // a non-deterministic order. This code handles the case where the new thread event comes
1998426bdf88SPavel Labath         // before the event on the parent thread. For the opposite case see code in
1999426bdf88SPavel Labath         // MonitorSIGTRAP.
2000af245d11STodd Fiala         if (log)
2001af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s() pid = %" PRIu64 " tid %" PRIu64 ": new thread notification",
2002af245d11STodd Fiala                      __FUNCTION__, GetID (), pid);
2003af245d11STodd Fiala 
20045fd24c67SPavel Labath         thread_sp = AddThread(pid);
20055fd24c67SPavel Labath         assert (thread_sp.get() && "failed to create the tracking data for newly created inferior thread");
20065fd24c67SPavel Labath         // We can now resume the newly created thread.
2007cb84eebbSTamas Berghammer         std::static_pointer_cast<NativeThreadLinux> (thread_sp)->SetRunning ();
20085fd24c67SPavel Labath         Resume (pid, LLDB_INVALID_SIGNAL_NUMBER);
20091dbc6c9cSPavel Labath         ThreadWasCreated(pid);
201058a2f669STodd Fiala         // Done handling.
201158a2f669STodd Fiala         return;
2012af245d11STodd Fiala     }
201358a2f669STodd Fiala 
201458a2f669STodd Fiala     // Check for thread stop notification.
2015511e5cdcSTodd Fiala     if (is_from_llgs && (info->si_code == SI_TKILL) && (signo == SIGSTOP))
2016af245d11STodd Fiala     {
2017af245d11STodd Fiala         // This is a tgkill()-based stop.
2018af245d11STodd Fiala         if (thread_sp)
2019af245d11STodd Fiala         {
2020fa03ad2eSChaoren Lin             if (log)
2021fa03ad2eSChaoren Lin                 log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 " tid %" PRIu64 ", thread stopped",
2022fa03ad2eSChaoren Lin                              __FUNCTION__,
2023fa03ad2eSChaoren Lin                              GetID (),
2024fa03ad2eSChaoren Lin                              pid);
2025fa03ad2eSChaoren Lin 
2026aab58633SChaoren Lin             // Check that we're not already marked with a stop reason.
2027aab58633SChaoren Lin             // Note this thread really shouldn't already be marked as stopped - if we were, that would imply that
2028aab58633SChaoren Lin             // the kernel signaled us with the thread stopping which we handled and marked as stopped,
2029aab58633SChaoren Lin             // and that, without an intervening resume, we received another stop.  It is more likely
2030aab58633SChaoren Lin             // that we are missing the marking of a run state somewhere if we find that the thread was
2031aab58633SChaoren Lin             // marked as stopped.
2032cb84eebbSTamas Berghammer             std::shared_ptr<NativeThreadLinux> linux_thread_sp = std::static_pointer_cast<NativeThreadLinux> (thread_sp);
2033cb84eebbSTamas Berghammer             assert (linux_thread_sp && "linux_thread_sp is null!");
2034aab58633SChaoren Lin 
2035cb84eebbSTamas Berghammer             const StateType thread_state = linux_thread_sp->GetState ();
2036aab58633SChaoren Lin             if (!StateIsStoppedState (thread_state, false))
2037aab58633SChaoren Lin             {
2038ed89c7feSPavel Labath                 // An inferior thread has stopped because of a SIGSTOP we have sent it.
2039ed89c7feSPavel Labath                 // Generally, these are not important stops and we don't want to report them as
2040ed89c7feSPavel Labath                 // they are just used to stop other threads when one thread (the one with the
2041ed89c7feSPavel Labath                 // *real* stop reason) hits a breakpoint (watchpoint, etc...). However, in the
2042ed89c7feSPavel Labath                 // case of an asynchronous Interrupt(), this *is* the real stop reason, so we
2043ed89c7feSPavel Labath                 // leave the signal intact if this is the thread that was chosen as the
2044ed89c7feSPavel Labath                 // triggering thread.
2045ed89c7feSPavel Labath                 if (m_pending_notification_up && m_pending_notification_up->triggering_tid == pid)
2046c4e25c96SPavel Labath                     linux_thread_sp->SetStoppedBySignal(SIGSTOP, info);
2047ed89c7feSPavel Labath                 else
2048cb84eebbSTamas Berghammer                     linux_thread_sp->SetStoppedBySignal(0);
2049ed89c7feSPavel Labath 
2050af245d11STodd Fiala                 SetCurrentThreadID (thread_sp->GetID ());
20511dbc6c9cSPavel Labath                 ThreadDidStop (thread_sp->GetID (), true);
2052aab58633SChaoren Lin             }
2053aab58633SChaoren Lin             else
2054aab58633SChaoren Lin             {
2055aab58633SChaoren Lin                 if (log)
2056aab58633SChaoren Lin                 {
2057aab58633SChaoren Lin                     // Retrieve the signal name if the thread was stopped by a signal.
2058aab58633SChaoren Lin                     int stop_signo = 0;
2059cb84eebbSTamas Berghammer                     const bool stopped_by_signal = linux_thread_sp->IsStopped (&stop_signo);
2060aab58633SChaoren Lin                     const char *signal_name = stopped_by_signal ? GetUnixSignals ().GetSignalAsCString (stop_signo) : "<not stopped by signal>";
2061aab58633SChaoren Lin                     if (!signal_name)
2062aab58633SChaoren Lin                         signal_name = "<no-signal-name>";
2063aab58633SChaoren Lin 
2064aab58633SChaoren Lin                     log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 " tid %" PRIu64 ", thread was already marked as a stopped state (state=%s, signal=%d (%s)), leaving stop signal as is",
2065aab58633SChaoren Lin                                  __FUNCTION__,
2066aab58633SChaoren Lin                                  GetID (),
2067cb84eebbSTamas Berghammer                                  linux_thread_sp->GetID (),
2068aab58633SChaoren Lin                                  StateAsCString (thread_state),
2069aab58633SChaoren Lin                                  stop_signo,
2070aab58633SChaoren Lin                                  signal_name);
2071aab58633SChaoren Lin                 }
20721dbc6c9cSPavel Labath                 ThreadDidStop (thread_sp->GetID (), false);
2073af245d11STodd Fiala             }
207486fd8e45SChaoren Lin         }
2075af245d11STodd Fiala 
207658a2f669STodd Fiala         // Done handling.
2077af245d11STodd Fiala         return;
2078af245d11STodd Fiala     }
2079af245d11STodd Fiala 
2080af245d11STodd Fiala     if (log)
2081af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s() received signal %s", __FUNCTION__, GetUnixSignals ().GetSignalAsCString (signo));
2082af245d11STodd Fiala 
208386fd8e45SChaoren Lin     // This thread is stopped.
20841dbc6c9cSPavel Labath     ThreadDidStop (pid, false);
208586fd8e45SChaoren Lin 
208686fd8e45SChaoren Lin     if (thread_sp)
2087c4e25c96SPavel Labath         std::static_pointer_cast<NativeThreadLinux> (thread_sp)->SetStoppedBySignal(signo, info);
208886fd8e45SChaoren Lin 
208986fd8e45SChaoren Lin     // Send a stop to the debugger after we get all other threads to stop.
2090ed89c7feSPavel Labath     StopRunningThreads (pid);
2091511e5cdcSTodd Fiala }
2092af245d11STodd Fiala 
2093e7708688STamas Berghammer namespace {
2094e7708688STamas Berghammer 
2095e7708688STamas Berghammer struct EmulatorBaton
2096e7708688STamas Berghammer {
2097e7708688STamas Berghammer     NativeProcessLinux* m_process;
2098e7708688STamas Berghammer     NativeRegisterContext* m_reg_context;
20996648fcc3SPavel Labath 
21006648fcc3SPavel Labath     // eRegisterKindDWARF -> RegsiterValue
21016648fcc3SPavel Labath     std::unordered_map<uint32_t, RegisterValue> m_register_values;
2102e7708688STamas Berghammer 
2103e7708688STamas Berghammer     EmulatorBaton(NativeProcessLinux* process, NativeRegisterContext* reg_context) :
2104e7708688STamas Berghammer             m_process(process), m_reg_context(reg_context) {}
2105e7708688STamas Berghammer };
2106e7708688STamas Berghammer 
2107e7708688STamas Berghammer } // anonymous namespace
2108e7708688STamas Berghammer 
2109e7708688STamas Berghammer static size_t
2110e7708688STamas Berghammer ReadMemoryCallback (EmulateInstruction *instruction,
2111e7708688STamas Berghammer                     void *baton,
2112e7708688STamas Berghammer                     const EmulateInstruction::Context &context,
2113e7708688STamas Berghammer                     lldb::addr_t addr,
2114e7708688STamas Berghammer                     void *dst,
2115e7708688STamas Berghammer                     size_t length)
2116e7708688STamas Berghammer {
2117e7708688STamas Berghammer     EmulatorBaton* emulator_baton = static_cast<EmulatorBaton*>(baton);
2118e7708688STamas Berghammer 
21193eb4b458SChaoren Lin     size_t bytes_read;
2120e7708688STamas Berghammer     emulator_baton->m_process->ReadMemory(addr, dst, length, bytes_read);
2121e7708688STamas Berghammer     return bytes_read;
2122e7708688STamas Berghammer }
2123e7708688STamas Berghammer 
2124e7708688STamas Berghammer static bool
2125e7708688STamas Berghammer ReadRegisterCallback (EmulateInstruction *instruction,
2126e7708688STamas Berghammer                       void *baton,
2127e7708688STamas Berghammer                       const RegisterInfo *reg_info,
2128e7708688STamas Berghammer                       RegisterValue &reg_value)
2129e7708688STamas Berghammer {
2130e7708688STamas Berghammer     EmulatorBaton* emulator_baton = static_cast<EmulatorBaton*>(baton);
2131e7708688STamas Berghammer 
21326648fcc3SPavel Labath     auto it = emulator_baton->m_register_values.find(reg_info->kinds[eRegisterKindDWARF]);
21336648fcc3SPavel Labath     if (it != emulator_baton->m_register_values.end())
21346648fcc3SPavel Labath     {
21356648fcc3SPavel Labath         reg_value = it->second;
21366648fcc3SPavel Labath         return true;
21376648fcc3SPavel Labath     }
21386648fcc3SPavel Labath 
2139e7708688STamas Berghammer     // The emulator only fill in the dwarf regsiter numbers (and in some case
2140e7708688STamas Berghammer     // the generic register numbers). Get the full register info from the
2141e7708688STamas Berghammer     // register context based on the dwarf register numbers.
2142e7708688STamas Berghammer     const RegisterInfo* full_reg_info = emulator_baton->m_reg_context->GetRegisterInfo(
2143e7708688STamas Berghammer             eRegisterKindDWARF, reg_info->kinds[eRegisterKindDWARF]);
2144e7708688STamas Berghammer 
2145e7708688STamas Berghammer     Error error = emulator_baton->m_reg_context->ReadRegister(full_reg_info, reg_value);
21466648fcc3SPavel Labath     if (error.Success())
21476648fcc3SPavel Labath         return true;
2148cdc22a88SMohit K. Bhakkad 
21496648fcc3SPavel Labath     return false;
2150e7708688STamas Berghammer }
2151e7708688STamas Berghammer 
2152e7708688STamas Berghammer static bool
2153e7708688STamas Berghammer WriteRegisterCallback (EmulateInstruction *instruction,
2154e7708688STamas Berghammer                        void *baton,
2155e7708688STamas Berghammer                        const EmulateInstruction::Context &context,
2156e7708688STamas Berghammer                        const RegisterInfo *reg_info,
2157e7708688STamas Berghammer                        const RegisterValue &reg_value)
2158e7708688STamas Berghammer {
2159e7708688STamas Berghammer     EmulatorBaton* emulator_baton = static_cast<EmulatorBaton*>(baton);
21606648fcc3SPavel Labath     emulator_baton->m_register_values[reg_info->kinds[eRegisterKindDWARF]] = reg_value;
2161e7708688STamas Berghammer     return true;
2162e7708688STamas Berghammer }
2163e7708688STamas Berghammer 
2164e7708688STamas Berghammer static size_t
2165e7708688STamas Berghammer WriteMemoryCallback (EmulateInstruction *instruction,
2166e7708688STamas Berghammer                      void *baton,
2167e7708688STamas Berghammer                      const EmulateInstruction::Context &context,
2168e7708688STamas Berghammer                      lldb::addr_t addr,
2169e7708688STamas Berghammer                      const void *dst,
2170e7708688STamas Berghammer                      size_t length)
2171e7708688STamas Berghammer {
2172e7708688STamas Berghammer     return length;
2173e7708688STamas Berghammer }
2174e7708688STamas Berghammer 
2175e7708688STamas Berghammer static lldb::addr_t
2176e7708688STamas Berghammer ReadFlags (NativeRegisterContext* regsiter_context)
2177e7708688STamas Berghammer {
2178e7708688STamas Berghammer     const RegisterInfo* flags_info = regsiter_context->GetRegisterInfo(
2179e7708688STamas Berghammer             eRegisterKindGeneric, LLDB_REGNUM_GENERIC_FLAGS);
2180e7708688STamas Berghammer     return regsiter_context->ReadRegisterAsUnsigned(flags_info, LLDB_INVALID_ADDRESS);
2181e7708688STamas Berghammer }
2182e7708688STamas Berghammer 
2183e7708688STamas Berghammer Error
2184e7708688STamas Berghammer NativeProcessLinux::SetupSoftwareSingleStepping(NativeThreadProtocolSP thread_sp)
2185e7708688STamas Berghammer {
2186e7708688STamas Berghammer     Error error;
2187e7708688STamas Berghammer     NativeRegisterContextSP register_context_sp = thread_sp->GetRegisterContext();
2188e7708688STamas Berghammer 
2189e7708688STamas Berghammer     std::unique_ptr<EmulateInstruction> emulator_ap(
2190e7708688STamas Berghammer         EmulateInstruction::FindPlugin(m_arch, eInstructionTypePCModifying, nullptr));
2191e7708688STamas Berghammer 
2192e7708688STamas Berghammer     if (emulator_ap == nullptr)
2193e7708688STamas Berghammer         return Error("Instruction emulator not found!");
2194e7708688STamas Berghammer 
2195e7708688STamas Berghammer     EmulatorBaton baton(this, register_context_sp.get());
2196e7708688STamas Berghammer     emulator_ap->SetBaton(&baton);
2197e7708688STamas Berghammer     emulator_ap->SetReadMemCallback(&ReadMemoryCallback);
2198e7708688STamas Berghammer     emulator_ap->SetReadRegCallback(&ReadRegisterCallback);
2199e7708688STamas Berghammer     emulator_ap->SetWriteMemCallback(&WriteMemoryCallback);
2200e7708688STamas Berghammer     emulator_ap->SetWriteRegCallback(&WriteRegisterCallback);
2201e7708688STamas Berghammer 
2202e7708688STamas Berghammer     if (!emulator_ap->ReadInstruction())
2203e7708688STamas Berghammer         return Error("Read instruction failed!");
2204e7708688STamas Berghammer 
22056648fcc3SPavel Labath     bool emulation_result = emulator_ap->EvaluateInstruction(eEmulateInstructionOptionAutoAdvancePC);
22066648fcc3SPavel Labath 
22076648fcc3SPavel Labath     const RegisterInfo* reg_info_pc = register_context_sp->GetRegisterInfo(eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC);
22086648fcc3SPavel Labath     const RegisterInfo* reg_info_flags = register_context_sp->GetRegisterInfo(eRegisterKindGeneric, LLDB_REGNUM_GENERIC_FLAGS);
22096648fcc3SPavel Labath 
22106648fcc3SPavel Labath     auto pc_it = baton.m_register_values.find(reg_info_pc->kinds[eRegisterKindDWARF]);
22116648fcc3SPavel Labath     auto flags_it = baton.m_register_values.find(reg_info_flags->kinds[eRegisterKindDWARF]);
22126648fcc3SPavel Labath 
2213e7708688STamas Berghammer     lldb::addr_t next_pc;
2214e7708688STamas Berghammer     lldb::addr_t next_flags;
22156648fcc3SPavel Labath     if (emulation_result)
2216e7708688STamas Berghammer     {
22176648fcc3SPavel Labath         assert(pc_it != baton.m_register_values.end() && "Emulation was successfull but PC wasn't updated");
22186648fcc3SPavel Labath         next_pc = pc_it->second.GetAsUInt64();
22196648fcc3SPavel Labath 
22206648fcc3SPavel Labath         if (flags_it != baton.m_register_values.end())
22216648fcc3SPavel Labath             next_flags = flags_it->second.GetAsUInt64();
2222e7708688STamas Berghammer         else
2223e7708688STamas Berghammer             next_flags = ReadFlags (register_context_sp.get());
2224e7708688STamas Berghammer     }
22256648fcc3SPavel Labath     else if (pc_it == baton.m_register_values.end())
2226e7708688STamas Berghammer     {
2227e7708688STamas Berghammer         // Emulate instruction failed and it haven't changed PC. Advance PC
2228e7708688STamas Berghammer         // with the size of the current opcode because the emulation of all
2229e7708688STamas Berghammer         // PC modifying instruction should be successful. The failure most
2230e7708688STamas Berghammer         // likely caused by a not supported instruction which don't modify PC.
2231e7708688STamas Berghammer         next_pc = register_context_sp->GetPC() + emulator_ap->GetOpcode().GetByteSize();
2232e7708688STamas Berghammer         next_flags = ReadFlags (register_context_sp.get());
2233e7708688STamas Berghammer     }
2234e7708688STamas Berghammer     else
2235e7708688STamas Berghammer     {
2236e7708688STamas Berghammer         // The instruction emulation failed after it modified the PC. It is an
2237e7708688STamas Berghammer         // unknown error where we can't continue because the next instruction is
2238e7708688STamas Berghammer         // modifying the PC but we don't  know how.
2239e7708688STamas Berghammer         return Error ("Instruction emulation failed unexpectedly.");
2240e7708688STamas Berghammer     }
2241e7708688STamas Berghammer 
2242e7708688STamas Berghammer     if (m_arch.GetMachine() == llvm::Triple::arm)
2243e7708688STamas Berghammer     {
2244e7708688STamas Berghammer         if (next_flags & 0x20)
2245e7708688STamas Berghammer         {
2246e7708688STamas Berghammer             // Thumb mode
2247e7708688STamas Berghammer             error = SetSoftwareBreakpoint(next_pc, 2);
2248e7708688STamas Berghammer         }
2249e7708688STamas Berghammer         else
2250e7708688STamas Berghammer         {
2251e7708688STamas Berghammer             // Arm mode
2252e7708688STamas Berghammer             error = SetSoftwareBreakpoint(next_pc, 4);
2253e7708688STamas Berghammer         }
2254e7708688STamas Berghammer     }
2255cdc22a88SMohit K. Bhakkad     else if (m_arch.GetMachine() == llvm::Triple::mips64
2256c60c9452SJaydeep Patil             || m_arch.GetMachine() == llvm::Triple::mips64el
2257c60c9452SJaydeep Patil             || m_arch.GetMachine() == llvm::Triple::mips
2258c60c9452SJaydeep Patil             || m_arch.GetMachine() == llvm::Triple::mipsel)
2259cdc22a88SMohit K. Bhakkad         error = SetSoftwareBreakpoint(next_pc, 4);
2260e7708688STamas Berghammer     else
2261e7708688STamas Berghammer     {
2262e7708688STamas Berghammer         // No size hint is given for the next breakpoint
2263e7708688STamas Berghammer         error = SetSoftwareBreakpoint(next_pc, 0);
2264e7708688STamas Berghammer     }
2265e7708688STamas Berghammer 
2266e7708688STamas Berghammer     if (error.Fail())
2267e7708688STamas Berghammer         return error;
2268e7708688STamas Berghammer 
2269e7708688STamas Berghammer     m_threads_stepping_with_breakpoint.insert({thread_sp->GetID(), next_pc});
2270e7708688STamas Berghammer 
2271e7708688STamas Berghammer     return Error();
2272e7708688STamas Berghammer }
2273e7708688STamas Berghammer 
2274e7708688STamas Berghammer bool
2275e7708688STamas Berghammer NativeProcessLinux::SupportHardwareSingleStepping() const
2276e7708688STamas Berghammer {
2277cdc22a88SMohit K. Bhakkad     if (m_arch.GetMachine() == llvm::Triple::arm
2278c60c9452SJaydeep Patil         || m_arch.GetMachine() == llvm::Triple::mips64 || m_arch.GetMachine() == llvm::Triple::mips64el
2279c60c9452SJaydeep Patil         || m_arch.GetMachine() == llvm::Triple::mips || m_arch.GetMachine() == llvm::Triple::mipsel)
2280cdc22a88SMohit K. Bhakkad         return false;
2281cdc22a88SMohit K. Bhakkad     return true;
2282e7708688STamas Berghammer }
2283e7708688STamas Berghammer 
2284af245d11STodd Fiala Error
2285af245d11STodd Fiala NativeProcessLinux::Resume (const ResumeActionList &resume_actions)
2286af245d11STodd Fiala {
2287af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_THREAD));
2288af245d11STodd Fiala     if (log)
2289af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s called: pid %" PRIu64, __FUNCTION__, GetID ());
2290af245d11STodd Fiala 
2291e7708688STamas Berghammer     bool software_single_step = !SupportHardwareSingleStepping();
2292af245d11STodd Fiala 
229345f5cb31SPavel Labath     Monitor::ScopedOperationLock monitor_lock(*m_monitor_up);
2294af245d11STodd Fiala     Mutex::Locker locker (m_threads_mutex);
22955830aa75STamas Berghammer 
2296e7708688STamas Berghammer     if (software_single_step)
2297e7708688STamas Berghammer     {
2298e7708688STamas Berghammer         for (auto thread_sp : m_threads)
2299e7708688STamas Berghammer         {
2300e7708688STamas Berghammer             assert (thread_sp && "thread list should not contain NULL threads");
2301e7708688STamas Berghammer 
2302e7708688STamas Berghammer             const ResumeAction *const action = resume_actions.GetActionForThread (thread_sp->GetID (), true);
2303e7708688STamas Berghammer             if (action == nullptr)
2304e7708688STamas Berghammer                 continue;
2305e7708688STamas Berghammer 
2306e7708688STamas Berghammer             if (action->state == eStateStepping)
2307e7708688STamas Berghammer             {
2308e7708688STamas Berghammer                 Error error = SetupSoftwareSingleStepping(thread_sp);
2309e7708688STamas Berghammer                 if (error.Fail())
2310e7708688STamas Berghammer                     return error;
2311e7708688STamas Berghammer             }
2312e7708688STamas Berghammer         }
2313e7708688STamas Berghammer     }
2314e7708688STamas Berghammer 
2315af245d11STodd Fiala     for (auto thread_sp : m_threads)
2316af245d11STodd Fiala     {
2317af245d11STodd Fiala         assert (thread_sp && "thread list should not contain NULL threads");
2318af245d11STodd Fiala 
2319af245d11STodd Fiala         const ResumeAction *const action = resume_actions.GetActionForThread (thread_sp->GetID (), true);
23206a196ce6SChaoren Lin 
23216a196ce6SChaoren Lin         if (action == nullptr)
23226a196ce6SChaoren Lin         {
23236a196ce6SChaoren Lin             if (log)
23246a196ce6SChaoren Lin                 log->Printf ("NativeProcessLinux::%s no action specified for pid %" PRIu64 " tid %" PRIu64,
23256a196ce6SChaoren Lin                     __FUNCTION__, GetID (), thread_sp->GetID ());
23266a196ce6SChaoren Lin             continue;
23276a196ce6SChaoren Lin         }
2328af245d11STodd Fiala 
2329af245d11STodd Fiala         if (log)
2330af245d11STodd Fiala         {
2331af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s processing resume action state %s for pid %" PRIu64 " tid %" PRIu64,
2332af245d11STodd Fiala                     __FUNCTION__, StateAsCString (action->state), GetID (), thread_sp->GetID ());
2333af245d11STodd Fiala         }
2334af245d11STodd Fiala 
2335af245d11STodd Fiala         switch (action->state)
2336af245d11STodd Fiala         {
2337af245d11STodd Fiala         case eStateRunning:
2338fa03ad2eSChaoren Lin         {
2339af245d11STodd Fiala             // Run the thread, possibly feeding it the signal.
2340fa03ad2eSChaoren Lin             const int signo = action->signal;
23411dbc6c9cSPavel Labath             ResumeThread(thread_sp->GetID (),
234286fd8e45SChaoren Lin                     [=](lldb::tid_t tid_to_resume, bool supress_signal)
2343af245d11STodd Fiala                     {
2344cb84eebbSTamas Berghammer                         std::static_pointer_cast<NativeThreadLinux> (thread_sp)->SetRunning ();
2345fa03ad2eSChaoren Lin                         // Pass this signal number on to the inferior to handle.
23465830aa75STamas Berghammer                         const auto resume_result = Resume (tid_to_resume, (signo > 0 && !supress_signal) ? signo : LLDB_INVALID_SIGNAL_NUMBER);
23475830aa75STamas Berghammer                         if (resume_result.Success())
23485830aa75STamas Berghammer                             SetState(eStateRunning, true);
23495830aa75STamas Berghammer                         return resume_result;
23501dbc6c9cSPavel Labath                     },
23511dbc6c9cSPavel Labath                     false);
2352af245d11STodd Fiala             break;
2353fa03ad2eSChaoren Lin         }
2354af245d11STodd Fiala 
2355af245d11STodd Fiala         case eStateStepping:
2356af245d11STodd Fiala         {
2357ae29d395SChaoren Lin             // Request the step.
2358ae29d395SChaoren Lin             const int signo = action->signal;
23591dbc6c9cSPavel Labath             ResumeThread(thread_sp->GetID (),
236086fd8e45SChaoren Lin                     [=](lldb::tid_t tid_to_step, bool supress_signal)
2361af245d11STodd Fiala                     {
2362cb84eebbSTamas Berghammer                         std::static_pointer_cast<NativeThreadLinux> (thread_sp)->SetStepping ();
2363e7708688STamas Berghammer 
2364e7708688STamas Berghammer                         Error step_result;
2365e7708688STamas Berghammer                         if (software_single_step)
2366e7708688STamas Berghammer                             step_result = Resume (tid_to_step, (signo > 0 && !supress_signal) ? signo : LLDB_INVALID_SIGNAL_NUMBER);
2367e7708688STamas Berghammer                         else
2368e7708688STamas Berghammer                             step_result = SingleStep (tid_to_step,(signo > 0 && !supress_signal) ? signo : LLDB_INVALID_SIGNAL_NUMBER);
2369e7708688STamas Berghammer 
237037c768caSChaoren Lin                         assert (step_result.Success() && "SingleStep() failed");
23715830aa75STamas Berghammer                         if (step_result.Success())
23725830aa75STamas Berghammer                             SetState(eStateStepping, true);
237337c768caSChaoren Lin                         return step_result;
23741dbc6c9cSPavel Labath                     },
23751dbc6c9cSPavel Labath                     false);
2376af245d11STodd Fiala             break;
2377ae29d395SChaoren Lin         }
2378af245d11STodd Fiala 
2379af245d11STodd Fiala         case eStateSuspended:
2380af245d11STodd Fiala         case eStateStopped:
2381108c325dSPavel Labath             lldbassert(0 && "Unexpected state");
2382af245d11STodd Fiala 
2383af245d11STodd Fiala         default:
2384af245d11STodd Fiala             return Error ("NativeProcessLinux::%s (): unexpected state %s specified for pid %" PRIu64 ", tid %" PRIu64,
2385af245d11STodd Fiala                     __FUNCTION__, StateAsCString (action->state), GetID (), thread_sp->GetID ());
2386af245d11STodd Fiala         }
2387af245d11STodd Fiala     }
2388af245d11STodd Fiala 
23895830aa75STamas Berghammer     return Error();
2390af245d11STodd Fiala }
2391af245d11STodd Fiala 
2392af245d11STodd Fiala Error
2393af245d11STodd Fiala NativeProcessLinux::Halt ()
2394af245d11STodd Fiala {
2395af245d11STodd Fiala     Error error;
2396af245d11STodd Fiala 
2397af245d11STodd Fiala     if (kill (GetID (), SIGSTOP) != 0)
2398af245d11STodd Fiala         error.SetErrorToErrno ();
2399af245d11STodd Fiala 
2400af245d11STodd Fiala     return error;
2401af245d11STodd Fiala }
2402af245d11STodd Fiala 
2403af245d11STodd Fiala Error
2404af245d11STodd Fiala NativeProcessLinux::Detach ()
2405af245d11STodd Fiala {
2406af245d11STodd Fiala     Error error;
2407af245d11STodd Fiala 
2408af245d11STodd Fiala     // Tell ptrace to detach from the process.
2409af245d11STodd Fiala     if (GetID () != LLDB_INVALID_PROCESS_ID)
2410af245d11STodd Fiala         error = Detach (GetID ());
2411af245d11STodd Fiala 
2412af245d11STodd Fiala     // Stop monitoring the inferior.
241345f5cb31SPavel Labath     m_monitor_up->Terminate();
2414af245d11STodd Fiala 
2415af245d11STodd Fiala     // No error.
2416af245d11STodd Fiala     return error;
2417af245d11STodd Fiala }
2418af245d11STodd Fiala 
2419af245d11STodd Fiala Error
2420af245d11STodd Fiala NativeProcessLinux::Signal (int signo)
2421af245d11STodd Fiala {
2422af245d11STodd Fiala     Error error;
2423af245d11STodd Fiala 
2424af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2425af245d11STodd Fiala     if (log)
2426af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s: sending signal %d (%s) to pid %" PRIu64,
2427af245d11STodd Fiala                 __FUNCTION__, signo,  GetUnixSignals ().GetSignalAsCString (signo), GetID ());
2428af245d11STodd Fiala 
2429af245d11STodd Fiala     if (kill(GetID(), signo))
2430af245d11STodd Fiala         error.SetErrorToErrno();
2431af245d11STodd Fiala 
2432af245d11STodd Fiala     return error;
2433af245d11STodd Fiala }
2434af245d11STodd Fiala 
2435af245d11STodd Fiala Error
2436e9547b80SChaoren Lin NativeProcessLinux::Interrupt ()
2437e9547b80SChaoren Lin {
2438e9547b80SChaoren Lin     // Pick a running thread (or if none, a not-dead stopped thread) as
2439e9547b80SChaoren Lin     // the chosen thread that will be the stop-reason thread.
2440e9547b80SChaoren Lin     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2441e9547b80SChaoren Lin 
2442e9547b80SChaoren Lin     NativeThreadProtocolSP running_thread_sp;
2443e9547b80SChaoren Lin     NativeThreadProtocolSP stopped_thread_sp;
2444e9547b80SChaoren Lin 
2445e9547b80SChaoren Lin     if (log)
2446e9547b80SChaoren Lin         log->Printf ("NativeProcessLinux::%s selecting running thread for interrupt target", __FUNCTION__);
2447e9547b80SChaoren Lin 
244845f5cb31SPavel Labath     Monitor::ScopedOperationLock monitor_lock(*m_monitor_up);
24495830aa75STamas Berghammer     Mutex::Locker locker (m_threads_mutex);
24505830aa75STamas Berghammer 
2451e9547b80SChaoren Lin     for (auto thread_sp : m_threads)
2452e9547b80SChaoren Lin     {
2453e9547b80SChaoren Lin         // The thread shouldn't be null but lets just cover that here.
2454e9547b80SChaoren Lin         if (!thread_sp)
2455e9547b80SChaoren Lin             continue;
2456e9547b80SChaoren Lin 
2457e9547b80SChaoren Lin         // If we have a running or stepping thread, we'll call that the
2458e9547b80SChaoren Lin         // target of the interrupt.
2459e9547b80SChaoren Lin         const auto thread_state = thread_sp->GetState ();
2460e9547b80SChaoren Lin         if (thread_state == eStateRunning ||
2461e9547b80SChaoren Lin             thread_state == eStateStepping)
2462e9547b80SChaoren Lin         {
2463e9547b80SChaoren Lin             running_thread_sp = thread_sp;
2464e9547b80SChaoren Lin             break;
2465e9547b80SChaoren Lin         }
2466e9547b80SChaoren Lin         else if (!stopped_thread_sp && StateIsStoppedState (thread_state, true))
2467e9547b80SChaoren Lin         {
2468e9547b80SChaoren Lin             // Remember the first non-dead stopped thread.  We'll use that as a backup if there are no running threads.
2469e9547b80SChaoren Lin             stopped_thread_sp = thread_sp;
2470e9547b80SChaoren Lin         }
2471e9547b80SChaoren Lin     }
2472e9547b80SChaoren Lin 
2473e9547b80SChaoren Lin     if (!running_thread_sp && !stopped_thread_sp)
2474e9547b80SChaoren Lin     {
24755830aa75STamas Berghammer         Error error("found no running/stepping or live stopped threads as target for interrupt");
2476e9547b80SChaoren Lin         if (log)
2477e9547b80SChaoren Lin             log->Printf ("NativeProcessLinux::%s skipping due to error: %s", __FUNCTION__, error.AsCString ());
24785830aa75STamas Berghammer 
2479e9547b80SChaoren Lin         return error;
2480e9547b80SChaoren Lin     }
2481e9547b80SChaoren Lin 
2482e9547b80SChaoren Lin     NativeThreadProtocolSP deferred_signal_thread_sp = running_thread_sp ? running_thread_sp : stopped_thread_sp;
2483e9547b80SChaoren Lin 
2484e9547b80SChaoren Lin     if (log)
2485e9547b80SChaoren Lin         log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " %s tid %" PRIu64 " chosen for interrupt target",
2486e9547b80SChaoren Lin                      __FUNCTION__,
2487e9547b80SChaoren Lin                      GetID (),
2488e9547b80SChaoren Lin                      running_thread_sp ? "running" : "stopped",
2489e9547b80SChaoren Lin                      deferred_signal_thread_sp->GetID ());
2490e9547b80SChaoren Lin 
2491ed89c7feSPavel Labath     StopRunningThreads(deferred_signal_thread_sp->GetID());
249245f5cb31SPavel Labath 
24935830aa75STamas Berghammer     return Error();
2494e9547b80SChaoren Lin }
2495e9547b80SChaoren Lin 
2496e9547b80SChaoren Lin Error
2497af245d11STodd Fiala NativeProcessLinux::Kill ()
2498af245d11STodd Fiala {
2499af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2500af245d11STodd Fiala     if (log)
2501af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s called for PID %" PRIu64, __FUNCTION__, GetID ());
2502af245d11STodd Fiala 
2503af245d11STodd Fiala     Error error;
2504af245d11STodd Fiala 
2505af245d11STodd Fiala     switch (m_state)
2506af245d11STodd Fiala     {
2507af245d11STodd Fiala         case StateType::eStateInvalid:
2508af245d11STodd Fiala         case StateType::eStateExited:
2509af245d11STodd Fiala         case StateType::eStateCrashed:
2510af245d11STodd Fiala         case StateType::eStateDetached:
2511af245d11STodd Fiala         case StateType::eStateUnloaded:
2512af245d11STodd Fiala             // Nothing to do - the process is already dead.
2513af245d11STodd Fiala             if (log)
2514af245d11STodd Fiala                 log->Printf ("NativeProcessLinux::%s ignored for PID %" PRIu64 " due to current state: %s", __FUNCTION__, GetID (), StateAsCString (m_state));
2515af245d11STodd Fiala             return error;
2516af245d11STodd Fiala 
2517af245d11STodd Fiala         case StateType::eStateConnected:
2518af245d11STodd Fiala         case StateType::eStateAttaching:
2519af245d11STodd Fiala         case StateType::eStateLaunching:
2520af245d11STodd Fiala         case StateType::eStateStopped:
2521af245d11STodd Fiala         case StateType::eStateRunning:
2522af245d11STodd Fiala         case StateType::eStateStepping:
2523af245d11STodd Fiala         case StateType::eStateSuspended:
2524af245d11STodd Fiala             // We can try to kill a process in these states.
2525af245d11STodd Fiala             break;
2526af245d11STodd Fiala     }
2527af245d11STodd Fiala 
2528af245d11STodd Fiala     if (kill (GetID (), SIGKILL) != 0)
2529af245d11STodd Fiala     {
2530af245d11STodd Fiala         error.SetErrorToErrno ();
2531af245d11STodd Fiala         return error;
2532af245d11STodd Fiala     }
2533af245d11STodd Fiala 
2534af245d11STodd Fiala     return error;
2535af245d11STodd Fiala }
2536af245d11STodd Fiala 
2537af245d11STodd Fiala static Error
2538af245d11STodd Fiala ParseMemoryRegionInfoFromProcMapsLine (const std::string &maps_line, MemoryRegionInfo &memory_region_info)
2539af245d11STodd Fiala {
2540af245d11STodd Fiala     memory_region_info.Clear();
2541af245d11STodd Fiala 
2542af245d11STodd Fiala     StringExtractor line_extractor (maps_line.c_str ());
2543af245d11STodd Fiala 
2544af245d11STodd Fiala     // Format: {address_start_hex}-{address_end_hex} perms offset  dev   inode   pathname
2545af245d11STodd Fiala     // perms: rwxp   (letter is present if set, '-' if not, final character is p=private, s=shared).
2546af245d11STodd Fiala 
2547af245d11STodd Fiala     // Parse out the starting address
2548af245d11STodd Fiala     lldb::addr_t start_address = line_extractor.GetHexMaxU64 (false, 0);
2549af245d11STodd Fiala 
2550af245d11STodd Fiala     // Parse out hyphen separating start and end address from range.
2551af245d11STodd Fiala     if (!line_extractor.GetBytesLeft () || (line_extractor.GetChar () != '-'))
2552af245d11STodd Fiala         return Error ("malformed /proc/{pid}/maps entry, missing dash between address range");
2553af245d11STodd Fiala 
2554af245d11STodd Fiala     // Parse out the ending address
2555af245d11STodd Fiala     lldb::addr_t end_address = line_extractor.GetHexMaxU64 (false, start_address);
2556af245d11STodd Fiala 
2557af245d11STodd Fiala     // Parse out the space after the address.
2558af245d11STodd Fiala     if (!line_extractor.GetBytesLeft () || (line_extractor.GetChar () != ' '))
2559af245d11STodd Fiala         return Error ("malformed /proc/{pid}/maps entry, missing space after range");
2560af245d11STodd Fiala 
2561af245d11STodd Fiala     // Save the range.
2562af245d11STodd Fiala     memory_region_info.GetRange ().SetRangeBase (start_address);
2563af245d11STodd Fiala     memory_region_info.GetRange ().SetRangeEnd (end_address);
2564af245d11STodd Fiala 
2565af245d11STodd Fiala     // Parse out each permission entry.
2566af245d11STodd Fiala     if (line_extractor.GetBytesLeft () < 4)
2567af245d11STodd Fiala         return Error ("malformed /proc/{pid}/maps entry, missing some portion of permissions");
2568af245d11STodd Fiala 
2569af245d11STodd Fiala     // Handle read permission.
2570af245d11STodd Fiala     const char read_perm_char = line_extractor.GetChar ();
2571af245d11STodd Fiala     if (read_perm_char == 'r')
2572af245d11STodd Fiala         memory_region_info.SetReadable (MemoryRegionInfo::OptionalBool::eYes);
2573af245d11STodd Fiala     else
2574af245d11STodd Fiala     {
2575af245d11STodd Fiala         assert ( (read_perm_char == '-') && "unexpected /proc/{pid}/maps read permission char" );
2576af245d11STodd Fiala         memory_region_info.SetReadable (MemoryRegionInfo::OptionalBool::eNo);
2577af245d11STodd Fiala     }
2578af245d11STodd Fiala 
2579af245d11STodd Fiala     // Handle write permission.
2580af245d11STodd Fiala     const char write_perm_char = line_extractor.GetChar ();
2581af245d11STodd Fiala     if (write_perm_char == 'w')
2582af245d11STodd Fiala         memory_region_info.SetWritable (MemoryRegionInfo::OptionalBool::eYes);
2583af245d11STodd Fiala     else
2584af245d11STodd Fiala     {
2585af245d11STodd Fiala         assert ( (write_perm_char == '-') && "unexpected /proc/{pid}/maps write permission char" );
2586af245d11STodd Fiala         memory_region_info.SetWritable (MemoryRegionInfo::OptionalBool::eNo);
2587af245d11STodd Fiala     }
2588af245d11STodd Fiala 
2589af245d11STodd Fiala     // Handle execute permission.
2590af245d11STodd Fiala     const char exec_perm_char = line_extractor.GetChar ();
2591af245d11STodd Fiala     if (exec_perm_char == 'x')
2592af245d11STodd Fiala         memory_region_info.SetExecutable (MemoryRegionInfo::OptionalBool::eYes);
2593af245d11STodd Fiala     else
2594af245d11STodd Fiala     {
2595af245d11STodd Fiala         assert ( (exec_perm_char == '-') && "unexpected /proc/{pid}/maps exec permission char" );
2596af245d11STodd Fiala         memory_region_info.SetExecutable (MemoryRegionInfo::OptionalBool::eNo);
2597af245d11STodd Fiala     }
2598af245d11STodd Fiala 
2599af245d11STodd Fiala     return Error ();
2600af245d11STodd Fiala }
2601af245d11STodd Fiala 
2602af245d11STodd Fiala Error
2603af245d11STodd Fiala NativeProcessLinux::GetMemoryRegionInfo (lldb::addr_t load_addr, MemoryRegionInfo &range_info)
2604af245d11STodd Fiala {
2605af245d11STodd Fiala     // FIXME review that the final memory region returned extends to the end of the virtual address space,
2606af245d11STodd Fiala     // with no perms if it is not mapped.
2607af245d11STodd Fiala 
2608af245d11STodd Fiala     // Use an approach that reads memory regions from /proc/{pid}/maps.
2609af245d11STodd Fiala     // Assume proc maps entries are in ascending order.
2610af245d11STodd Fiala     // FIXME assert if we find differently.
2611af245d11STodd Fiala     Mutex::Locker locker (m_mem_region_cache_mutex);
2612af245d11STodd Fiala 
2613af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2614af245d11STodd Fiala     Error error;
2615af245d11STodd Fiala 
2616af245d11STodd Fiala     if (m_supports_mem_region == LazyBool::eLazyBoolNo)
2617af245d11STodd Fiala     {
2618af245d11STodd Fiala         // We're done.
2619af245d11STodd Fiala         error.SetErrorString ("unsupported");
2620af245d11STodd Fiala         return error;
2621af245d11STodd Fiala     }
2622af245d11STodd Fiala 
2623af245d11STodd Fiala     // If our cache is empty, pull the latest.  There should always be at least one memory region
2624af245d11STodd Fiala     // if memory region handling is supported.
2625af245d11STodd Fiala     if (m_mem_region_cache.empty ())
2626af245d11STodd Fiala     {
2627af245d11STodd Fiala         error = ProcFileReader::ProcessLineByLine (GetID (), "maps",
2628af245d11STodd Fiala              [&] (const std::string &line) -> bool
2629af245d11STodd Fiala              {
2630af245d11STodd Fiala                  MemoryRegionInfo info;
2631af245d11STodd Fiala                  const Error parse_error = ParseMemoryRegionInfoFromProcMapsLine (line, info);
2632af245d11STodd Fiala                  if (parse_error.Success ())
2633af245d11STodd Fiala                  {
2634af245d11STodd Fiala                      m_mem_region_cache.push_back (info);
2635af245d11STodd Fiala                      return true;
2636af245d11STodd Fiala                  }
2637af245d11STodd Fiala                  else
2638af245d11STodd Fiala                  {
2639af245d11STodd Fiala                      if (log)
2640af245d11STodd Fiala                          log->Printf ("NativeProcessLinux::%s failed to parse proc maps line '%s': %s", __FUNCTION__, line.c_str (), error.AsCString ());
2641af245d11STodd Fiala                      return false;
2642af245d11STodd Fiala                  }
2643af245d11STodd Fiala              });
2644af245d11STodd Fiala 
2645af245d11STodd Fiala         // If we had an error, we'll mark unsupported.
2646af245d11STodd Fiala         if (error.Fail ())
2647af245d11STodd Fiala         {
2648af245d11STodd Fiala             m_supports_mem_region = LazyBool::eLazyBoolNo;
2649af245d11STodd Fiala             return error;
2650af245d11STodd Fiala         }
2651af245d11STodd Fiala         else if (m_mem_region_cache.empty ())
2652af245d11STodd Fiala         {
2653af245d11STodd Fiala             // No entries after attempting to read them.  This shouldn't happen if /proc/{pid}/maps
2654af245d11STodd Fiala             // is supported.  Assume we don't support map entries via procfs.
2655af245d11STodd Fiala             if (log)
2656af245d11STodd Fiala                 log->Printf ("NativeProcessLinux::%s failed to find any procfs maps entries, assuming no support for memory region metadata retrieval", __FUNCTION__);
2657af245d11STodd Fiala             m_supports_mem_region = LazyBool::eLazyBoolNo;
2658af245d11STodd Fiala             error.SetErrorString ("not supported");
2659af245d11STodd Fiala             return error;
2660af245d11STodd Fiala         }
2661af245d11STodd Fiala 
2662af245d11STodd Fiala         if (log)
2663af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s read %" PRIu64 " memory region entries from /proc/%" PRIu64 "/maps", __FUNCTION__, static_cast<uint64_t> (m_mem_region_cache.size ()), GetID ());
2664af245d11STodd Fiala 
2665af245d11STodd Fiala         // We support memory retrieval, remember that.
2666af245d11STodd Fiala         m_supports_mem_region = LazyBool::eLazyBoolYes;
2667af245d11STodd Fiala     }
2668af245d11STodd Fiala     else
2669af245d11STodd Fiala     {
2670af245d11STodd Fiala         if (log)
2671af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s reusing %" PRIu64 " cached memory region entries", __FUNCTION__, static_cast<uint64_t> (m_mem_region_cache.size ()));
2672af245d11STodd Fiala     }
2673af245d11STodd Fiala 
2674af245d11STodd Fiala     lldb::addr_t prev_base_address = 0;
2675af245d11STodd Fiala 
2676af245d11STodd Fiala     // FIXME start by finding the last region that is <= target address using binary search.  Data is sorted.
2677af245d11STodd Fiala     // There can be a ton of regions on pthreads apps with lots of threads.
2678af245d11STodd Fiala     for (auto it = m_mem_region_cache.begin(); it != m_mem_region_cache.end (); ++it)
2679af245d11STodd Fiala     {
2680af245d11STodd Fiala         MemoryRegionInfo &proc_entry_info = *it;
2681af245d11STodd Fiala 
2682af245d11STodd Fiala         // Sanity check assumption that /proc/{pid}/maps entries are ascending.
2683af245d11STodd Fiala         assert ((proc_entry_info.GetRange ().GetRangeBase () >= prev_base_address) && "descending /proc/pid/maps entries detected, unexpected");
2684af245d11STodd Fiala         prev_base_address = proc_entry_info.GetRange ().GetRangeBase ();
2685af245d11STodd Fiala 
2686af245d11STodd Fiala         // If the target address comes before this entry, indicate distance to next region.
2687af245d11STodd Fiala         if (load_addr < proc_entry_info.GetRange ().GetRangeBase ())
2688af245d11STodd Fiala         {
2689af245d11STodd Fiala             range_info.GetRange ().SetRangeBase (load_addr);
2690af245d11STodd Fiala             range_info.GetRange ().SetByteSize (proc_entry_info.GetRange ().GetRangeBase () - load_addr);
2691af245d11STodd Fiala             range_info.SetReadable (MemoryRegionInfo::OptionalBool::eNo);
2692af245d11STodd Fiala             range_info.SetWritable (MemoryRegionInfo::OptionalBool::eNo);
2693af245d11STodd Fiala             range_info.SetExecutable (MemoryRegionInfo::OptionalBool::eNo);
2694af245d11STodd Fiala 
2695af245d11STodd Fiala             return error;
2696af245d11STodd Fiala         }
2697af245d11STodd Fiala         else if (proc_entry_info.GetRange ().Contains (load_addr))
2698af245d11STodd Fiala         {
2699af245d11STodd Fiala             // The target address is within the memory region we're processing here.
2700af245d11STodd Fiala             range_info = proc_entry_info;
2701af245d11STodd Fiala             return error;
2702af245d11STodd Fiala         }
2703af245d11STodd Fiala 
2704af245d11STodd Fiala         // The target memory address comes somewhere after the region we just parsed.
2705af245d11STodd Fiala     }
2706af245d11STodd Fiala 
2707af245d11STodd Fiala     // If we made it here, we didn't find an entry that contained the given address.
2708af245d11STodd Fiala     error.SetErrorString ("address comes after final region");
2709af245d11STodd Fiala 
2710af245d11STodd Fiala     if (log)
2711af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s failed to find map entry for address 0x%" PRIx64 ": %s", __FUNCTION__, load_addr, error.AsCString ());
2712af245d11STodd Fiala 
2713af245d11STodd Fiala     return error;
2714af245d11STodd Fiala }
2715af245d11STodd Fiala 
2716af245d11STodd Fiala void
2717af245d11STodd Fiala NativeProcessLinux::DoStopIDBumped (uint32_t newBumpId)
2718af245d11STodd Fiala {
2719af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2720af245d11STodd Fiala     if (log)
2721af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s(newBumpId=%" PRIu32 ") called", __FUNCTION__, newBumpId);
2722af245d11STodd Fiala 
2723af245d11STodd Fiala     {
2724af245d11STodd Fiala         Mutex::Locker locker (m_mem_region_cache_mutex);
2725af245d11STodd Fiala         if (log)
2726af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s clearing %" PRIu64 " entries from the cache", __FUNCTION__, static_cast<uint64_t> (m_mem_region_cache.size ()));
2727af245d11STodd Fiala         m_mem_region_cache.clear ();
2728af245d11STodd Fiala     }
2729af245d11STodd Fiala }
2730af245d11STodd Fiala 
2731af245d11STodd Fiala Error
27323eb4b458SChaoren Lin NativeProcessLinux::AllocateMemory(size_t size, uint32_t permissions, lldb::addr_t &addr)
2733af245d11STodd Fiala {
2734af245d11STodd Fiala     // FIXME implementing this requires the equivalent of
2735af245d11STodd Fiala     // InferiorCallPOSIX::InferiorCallMmap, which depends on
2736af245d11STodd Fiala     // functional ThreadPlans working with Native*Protocol.
2737af245d11STodd Fiala #if 1
2738af245d11STodd Fiala     return Error ("not implemented yet");
2739af245d11STodd Fiala #else
2740af245d11STodd Fiala     addr = LLDB_INVALID_ADDRESS;
2741af245d11STodd Fiala 
2742af245d11STodd Fiala     unsigned prot = 0;
2743af245d11STodd Fiala     if (permissions & lldb::ePermissionsReadable)
2744af245d11STodd Fiala         prot |= eMmapProtRead;
2745af245d11STodd Fiala     if (permissions & lldb::ePermissionsWritable)
2746af245d11STodd Fiala         prot |= eMmapProtWrite;
2747af245d11STodd Fiala     if (permissions & lldb::ePermissionsExecutable)
2748af245d11STodd Fiala         prot |= eMmapProtExec;
2749af245d11STodd Fiala 
2750af245d11STodd Fiala     // TODO implement this directly in NativeProcessLinux
2751af245d11STodd Fiala     // (and lift to NativeProcessPOSIX if/when that class is
2752af245d11STodd Fiala     // refactored out).
2753af245d11STodd Fiala     if (InferiorCallMmap(this, addr, 0, size, prot,
2754af245d11STodd Fiala                          eMmapFlagsAnon | eMmapFlagsPrivate, -1, 0)) {
2755af245d11STodd Fiala         m_addr_to_mmap_size[addr] = size;
2756af245d11STodd Fiala         return Error ();
2757af245d11STodd Fiala     } else {
2758af245d11STodd Fiala         addr = LLDB_INVALID_ADDRESS;
2759af245d11STodd Fiala         return Error("unable to allocate %" PRIu64 " bytes of memory with permissions %s", size, GetPermissionsAsCString (permissions));
2760af245d11STodd Fiala     }
2761af245d11STodd Fiala #endif
2762af245d11STodd Fiala }
2763af245d11STodd Fiala 
2764af245d11STodd Fiala Error
2765af245d11STodd Fiala NativeProcessLinux::DeallocateMemory (lldb::addr_t addr)
2766af245d11STodd Fiala {
2767af245d11STodd Fiala     // FIXME see comments in AllocateMemory - required lower-level
2768af245d11STodd Fiala     // bits not in place yet (ThreadPlans)
2769af245d11STodd Fiala     return Error ("not implemented");
2770af245d11STodd Fiala }
2771af245d11STodd Fiala 
2772af245d11STodd Fiala lldb::addr_t
2773af245d11STodd Fiala NativeProcessLinux::GetSharedLibraryInfoAddress ()
2774af245d11STodd Fiala {
2775af245d11STodd Fiala #if 1
2776af245d11STodd Fiala     // punt on this for now
2777af245d11STodd Fiala     return LLDB_INVALID_ADDRESS;
2778af245d11STodd Fiala #else
2779af245d11STodd Fiala     // Return the image info address for the exe module
2780af245d11STodd Fiala #if 1
2781af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2782af245d11STodd Fiala 
2783af245d11STodd Fiala     ModuleSP module_sp;
2784af245d11STodd Fiala     Error error = GetExeModuleSP (module_sp);
2785af245d11STodd Fiala     if (error.Fail ())
2786af245d11STodd Fiala     {
2787af245d11STodd Fiala          if (log)
2788af245d11STodd Fiala             log->Warning ("NativeProcessLinux::%s failed to retrieve exe module: %s", __FUNCTION__, error.AsCString ());
2789af245d11STodd Fiala         return LLDB_INVALID_ADDRESS;
2790af245d11STodd Fiala     }
2791af245d11STodd Fiala 
2792af245d11STodd Fiala     if (module_sp == nullptr)
2793af245d11STodd Fiala     {
2794af245d11STodd Fiala          if (log)
2795af245d11STodd Fiala             log->Warning ("NativeProcessLinux::%s exe module returned was NULL", __FUNCTION__);
2796af245d11STodd Fiala          return LLDB_INVALID_ADDRESS;
2797af245d11STodd Fiala     }
2798af245d11STodd Fiala 
2799af245d11STodd Fiala     ObjectFileSP object_file_sp = module_sp->GetObjectFile ();
2800af245d11STodd Fiala     if (object_file_sp == nullptr)
2801af245d11STodd Fiala     {
2802af245d11STodd Fiala          if (log)
2803af245d11STodd Fiala             log->Warning ("NativeProcessLinux::%s exe module returned a NULL object file", __FUNCTION__);
2804af245d11STodd Fiala          return LLDB_INVALID_ADDRESS;
2805af245d11STodd Fiala     }
2806af245d11STodd Fiala 
2807af245d11STodd Fiala     return obj_file_sp->GetImageInfoAddress();
2808af245d11STodd Fiala #else
2809af245d11STodd Fiala     Target *target = &GetTarget();
2810af245d11STodd Fiala     ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile();
2811af245d11STodd Fiala     Address addr = obj_file->GetImageInfoAddress(target);
2812af245d11STodd Fiala 
2813af245d11STodd Fiala     if (addr.IsValid())
2814af245d11STodd Fiala         return addr.GetLoadAddress(target);
2815af245d11STodd Fiala     return LLDB_INVALID_ADDRESS;
2816af245d11STodd Fiala #endif
2817af245d11STodd Fiala #endif // punt on this for now
2818af245d11STodd Fiala }
2819af245d11STodd Fiala 
2820af245d11STodd Fiala size_t
2821af245d11STodd Fiala NativeProcessLinux::UpdateThreads ()
2822af245d11STodd Fiala {
2823af245d11STodd Fiala     // The NativeProcessLinux monitoring threads are always up to date
2824af245d11STodd Fiala     // with respect to thread state and they keep the thread list
2825af245d11STodd Fiala     // populated properly. All this method needs to do is return the
2826af245d11STodd Fiala     // thread count.
2827af245d11STodd Fiala     Mutex::Locker locker (m_threads_mutex);
2828af245d11STodd Fiala     return m_threads.size ();
2829af245d11STodd Fiala }
2830af245d11STodd Fiala 
2831af245d11STodd Fiala bool
2832af245d11STodd Fiala NativeProcessLinux::GetArchitecture (ArchSpec &arch) const
2833af245d11STodd Fiala {
2834af245d11STodd Fiala     arch = m_arch;
2835af245d11STodd Fiala     return true;
2836af245d11STodd Fiala }
2837af245d11STodd Fiala 
2838af245d11STodd Fiala Error
283963c8be95STamas Berghammer NativeProcessLinux::GetSoftwareBreakpointPCOffset (NativeRegisterContextSP context_sp, uint32_t &actual_opcode_size)
2840af245d11STodd Fiala {
2841af245d11STodd Fiala     // FIXME put this behind a breakpoint protocol class that can be
2842af245d11STodd Fiala     // set per architecture.  Need ARM, MIPS support here.
28432afc5966STodd Fiala     static const uint8_t g_aarch64_opcode[] = { 0x00, 0x00, 0x20, 0xd4 };
2844af245d11STodd Fiala     static const uint8_t g_i386_opcode [] = { 0xCC };
2845af245d11STodd Fiala 
2846af245d11STodd Fiala     switch (m_arch.GetMachine ())
2847af245d11STodd Fiala     {
28482afc5966STodd Fiala         case llvm::Triple::aarch64:
28492afc5966STodd Fiala             actual_opcode_size = static_cast<uint32_t> (sizeof(g_aarch64_opcode));
28502afc5966STodd Fiala             return Error ();
28512afc5966STodd Fiala 
285263c8be95STamas Berghammer         case llvm::Triple::arm:
285363c8be95STamas Berghammer             actual_opcode_size = 0; // On arm the PC don't get updated for breakpoint hits
285463c8be95STamas Berghammer             return Error ();
285563c8be95STamas Berghammer 
2856af245d11STodd Fiala         case llvm::Triple::x86:
2857af245d11STodd Fiala         case llvm::Triple::x86_64:
2858af245d11STodd Fiala             actual_opcode_size = static_cast<uint32_t> (sizeof(g_i386_opcode));
2859af245d11STodd Fiala             return Error ();
2860af245d11STodd Fiala 
2861e8659b5dSMohit K. Bhakkad         case llvm::Triple::mips64:
2862e8659b5dSMohit K. Bhakkad         case llvm::Triple::mips64el:
2863ce815e45SSagar Thakur         case llvm::Triple::mips:
2864ce815e45SSagar Thakur         case llvm::Triple::mipsel:
2865c60c9452SJaydeep Patil             actual_opcode_size = 0;
2866e8659b5dSMohit K. Bhakkad             return Error ();
2867e8659b5dSMohit K. Bhakkad 
2868af245d11STodd Fiala         default:
2869af245d11STodd Fiala             assert(false && "CPU type not supported!");
2870af245d11STodd Fiala             return Error ("CPU type not supported");
2871af245d11STodd Fiala     }
2872af245d11STodd Fiala }
2873af245d11STodd Fiala 
2874af245d11STodd Fiala Error
2875af245d11STodd Fiala NativeProcessLinux::SetBreakpoint (lldb::addr_t addr, uint32_t size, bool hardware)
2876af245d11STodd Fiala {
2877af245d11STodd Fiala     if (hardware)
2878af245d11STodd Fiala         return Error ("NativeProcessLinux does not support hardware breakpoints");
2879af245d11STodd Fiala     else
2880af245d11STodd Fiala         return SetSoftwareBreakpoint (addr, size);
2881af245d11STodd Fiala }
2882af245d11STodd Fiala 
2883af245d11STodd Fiala Error
288463c8be95STamas Berghammer NativeProcessLinux::GetSoftwareBreakpointTrapOpcode (size_t trap_opcode_size_hint,
288563c8be95STamas Berghammer                                                      size_t &actual_opcode_size,
288663c8be95STamas Berghammer                                                      const uint8_t *&trap_opcode_bytes)
2887af245d11STodd Fiala {
288863c8be95STamas Berghammer     // FIXME put this behind a breakpoint protocol class that can be set per
288963c8be95STamas Berghammer     // architecture.  Need MIPS support here.
28902afc5966STodd Fiala     static const uint8_t g_aarch64_opcode[] = { 0x00, 0x00, 0x20, 0xd4 };
289163c8be95STamas Berghammer     // The ARM reference recommends the use of 0xe7fddefe and 0xdefe but the
289263c8be95STamas Berghammer     // linux kernel does otherwise.
289363c8be95STamas Berghammer     static const uint8_t g_arm_breakpoint_opcode[] = { 0xf0, 0x01, 0xf0, 0xe7 };
2894af245d11STodd Fiala     static const uint8_t g_i386_opcode [] = { 0xCC };
28953df471c3SMohit K. Bhakkad     static const uint8_t g_mips64_opcode[] = { 0x00, 0x00, 0x00, 0x0d };
28962c2acf96SMohit K. Bhakkad     static const uint8_t g_mips64el_opcode[] = { 0x0d, 0x00, 0x00, 0x00 };
289763c8be95STamas Berghammer     static const uint8_t g_thumb_breakpoint_opcode[] = { 0x01, 0xde };
2898af245d11STodd Fiala 
2899af245d11STodd Fiala     switch (m_arch.GetMachine ())
2900af245d11STodd Fiala     {
29012afc5966STodd Fiala     case llvm::Triple::aarch64:
29022afc5966STodd Fiala         trap_opcode_bytes = g_aarch64_opcode;
29032afc5966STodd Fiala         actual_opcode_size = sizeof(g_aarch64_opcode);
29042afc5966STodd Fiala         return Error ();
29052afc5966STodd Fiala 
290663c8be95STamas Berghammer     case llvm::Triple::arm:
290763c8be95STamas Berghammer         switch (trap_opcode_size_hint)
290863c8be95STamas Berghammer         {
290963c8be95STamas Berghammer         case 2:
291063c8be95STamas Berghammer             trap_opcode_bytes = g_thumb_breakpoint_opcode;
291163c8be95STamas Berghammer             actual_opcode_size = sizeof(g_thumb_breakpoint_opcode);
291263c8be95STamas Berghammer             return Error ();
291363c8be95STamas Berghammer         case 4:
291463c8be95STamas Berghammer             trap_opcode_bytes = g_arm_breakpoint_opcode;
291563c8be95STamas Berghammer             actual_opcode_size = sizeof(g_arm_breakpoint_opcode);
291663c8be95STamas Berghammer             return Error ();
291763c8be95STamas Berghammer         default:
291863c8be95STamas Berghammer             assert(false && "Unrecognised trap opcode size hint!");
291963c8be95STamas Berghammer             return Error ("Unrecognised trap opcode size hint!");
292063c8be95STamas Berghammer         }
292163c8be95STamas Berghammer 
2922af245d11STodd Fiala     case llvm::Triple::x86:
2923af245d11STodd Fiala     case llvm::Triple::x86_64:
2924af245d11STodd Fiala         trap_opcode_bytes = g_i386_opcode;
2925af245d11STodd Fiala         actual_opcode_size = sizeof(g_i386_opcode);
2926af245d11STodd Fiala         return Error ();
2927af245d11STodd Fiala 
2928ce815e45SSagar Thakur     case llvm::Triple::mips:
29293df471c3SMohit K. Bhakkad     case llvm::Triple::mips64:
29303df471c3SMohit K. Bhakkad         trap_opcode_bytes = g_mips64_opcode;
29313df471c3SMohit K. Bhakkad         actual_opcode_size = sizeof(g_mips64_opcode);
29323df471c3SMohit K. Bhakkad         return Error ();
29333df471c3SMohit K. Bhakkad 
2934ce815e45SSagar Thakur     case llvm::Triple::mipsel:
29352c2acf96SMohit K. Bhakkad     case llvm::Triple::mips64el:
29362c2acf96SMohit K. Bhakkad         trap_opcode_bytes = g_mips64el_opcode;
29372c2acf96SMohit K. Bhakkad         actual_opcode_size = sizeof(g_mips64el_opcode);
29382c2acf96SMohit K. Bhakkad         return Error ();
29392c2acf96SMohit K. Bhakkad 
2940af245d11STodd Fiala     default:
2941af245d11STodd Fiala         assert(false && "CPU type not supported!");
2942af245d11STodd Fiala         return Error ("CPU type not supported");
2943af245d11STodd Fiala     }
2944af245d11STodd Fiala }
2945af245d11STodd Fiala 
2946af245d11STodd Fiala #if 0
2947af245d11STodd Fiala ProcessMessage::CrashReason
2948af245d11STodd Fiala NativeProcessLinux::GetCrashReasonForSIGSEGV(const siginfo_t *info)
2949af245d11STodd Fiala {
2950af245d11STodd Fiala     ProcessMessage::CrashReason reason;
2951af245d11STodd Fiala     assert(info->si_signo == SIGSEGV);
2952af245d11STodd Fiala 
2953af245d11STodd Fiala     reason = ProcessMessage::eInvalidCrashReason;
2954af245d11STodd Fiala 
2955af245d11STodd Fiala     switch (info->si_code)
2956af245d11STodd Fiala     {
2957af245d11STodd Fiala     default:
2958af245d11STodd Fiala         assert(false && "unexpected si_code for SIGSEGV");
2959af245d11STodd Fiala         break;
2960af245d11STodd Fiala     case SI_KERNEL:
2961af245d11STodd Fiala         // Linux will occasionally send spurious SI_KERNEL codes.
2962af245d11STodd Fiala         // (this is poorly documented in sigaction)
2963af245d11STodd Fiala         // One way to get this is via unaligned SIMD loads.
2964af245d11STodd Fiala         reason = ProcessMessage::eInvalidAddress; // for lack of anything better
2965af245d11STodd Fiala         break;
2966af245d11STodd Fiala     case SEGV_MAPERR:
2967af245d11STodd Fiala         reason = ProcessMessage::eInvalidAddress;
2968af245d11STodd Fiala         break;
2969af245d11STodd Fiala     case SEGV_ACCERR:
2970af245d11STodd Fiala         reason = ProcessMessage::ePrivilegedAddress;
2971af245d11STodd Fiala         break;
2972af245d11STodd Fiala     }
2973af245d11STodd Fiala 
2974af245d11STodd Fiala     return reason;
2975af245d11STodd Fiala }
2976af245d11STodd Fiala #endif
2977af245d11STodd Fiala 
2978af245d11STodd Fiala 
2979af245d11STodd Fiala #if 0
2980af245d11STodd Fiala ProcessMessage::CrashReason
2981af245d11STodd Fiala NativeProcessLinux::GetCrashReasonForSIGILL(const siginfo_t *info)
2982af245d11STodd Fiala {
2983af245d11STodd Fiala     ProcessMessage::CrashReason reason;
2984af245d11STodd Fiala     assert(info->si_signo == SIGILL);
2985af245d11STodd Fiala 
2986af245d11STodd Fiala     reason = ProcessMessage::eInvalidCrashReason;
2987af245d11STodd Fiala 
2988af245d11STodd Fiala     switch (info->si_code)
2989af245d11STodd Fiala     {
2990af245d11STodd Fiala     default:
2991af245d11STodd Fiala         assert(false && "unexpected si_code for SIGILL");
2992af245d11STodd Fiala         break;
2993af245d11STodd Fiala     case ILL_ILLOPC:
2994af245d11STodd Fiala         reason = ProcessMessage::eIllegalOpcode;
2995af245d11STodd Fiala         break;
2996af245d11STodd Fiala     case ILL_ILLOPN:
2997af245d11STodd Fiala         reason = ProcessMessage::eIllegalOperand;
2998af245d11STodd Fiala         break;
2999af245d11STodd Fiala     case ILL_ILLADR:
3000af245d11STodd Fiala         reason = ProcessMessage::eIllegalAddressingMode;
3001af245d11STodd Fiala         break;
3002af245d11STodd Fiala     case ILL_ILLTRP:
3003af245d11STodd Fiala         reason = ProcessMessage::eIllegalTrap;
3004af245d11STodd Fiala         break;
3005af245d11STodd Fiala     case ILL_PRVOPC:
3006af245d11STodd Fiala         reason = ProcessMessage::ePrivilegedOpcode;
3007af245d11STodd Fiala         break;
3008af245d11STodd Fiala     case ILL_PRVREG:
3009af245d11STodd Fiala         reason = ProcessMessage::ePrivilegedRegister;
3010af245d11STodd Fiala         break;
3011af245d11STodd Fiala     case ILL_COPROC:
3012af245d11STodd Fiala         reason = ProcessMessage::eCoprocessorError;
3013af245d11STodd Fiala         break;
3014af245d11STodd Fiala     case ILL_BADSTK:
3015af245d11STodd Fiala         reason = ProcessMessage::eInternalStackError;
3016af245d11STodd Fiala         break;
3017af245d11STodd Fiala     }
3018af245d11STodd Fiala 
3019af245d11STodd Fiala     return reason;
3020af245d11STodd Fiala }
3021af245d11STodd Fiala #endif
3022af245d11STodd Fiala 
3023af245d11STodd Fiala #if 0
3024af245d11STodd Fiala ProcessMessage::CrashReason
3025af245d11STodd Fiala NativeProcessLinux::GetCrashReasonForSIGFPE(const siginfo_t *info)
3026af245d11STodd Fiala {
3027af245d11STodd Fiala     ProcessMessage::CrashReason reason;
3028af245d11STodd Fiala     assert(info->si_signo == SIGFPE);
3029af245d11STodd Fiala 
3030af245d11STodd Fiala     reason = ProcessMessage::eInvalidCrashReason;
3031af245d11STodd Fiala 
3032af245d11STodd Fiala     switch (info->si_code)
3033af245d11STodd Fiala     {
3034af245d11STodd Fiala     default:
3035af245d11STodd Fiala         assert(false && "unexpected si_code for SIGFPE");
3036af245d11STodd Fiala         break;
3037af245d11STodd Fiala     case FPE_INTDIV:
3038af245d11STodd Fiala         reason = ProcessMessage::eIntegerDivideByZero;
3039af245d11STodd Fiala         break;
3040af245d11STodd Fiala     case FPE_INTOVF:
3041af245d11STodd Fiala         reason = ProcessMessage::eIntegerOverflow;
3042af245d11STodd Fiala         break;
3043af245d11STodd Fiala     case FPE_FLTDIV:
3044af245d11STodd Fiala         reason = ProcessMessage::eFloatDivideByZero;
3045af245d11STodd Fiala         break;
3046af245d11STodd Fiala     case FPE_FLTOVF:
3047af245d11STodd Fiala         reason = ProcessMessage::eFloatOverflow;
3048af245d11STodd Fiala         break;
3049af245d11STodd Fiala     case FPE_FLTUND:
3050af245d11STodd Fiala         reason = ProcessMessage::eFloatUnderflow;
3051af245d11STodd Fiala         break;
3052af245d11STodd Fiala     case FPE_FLTRES:
3053af245d11STodd Fiala         reason = ProcessMessage::eFloatInexactResult;
3054af245d11STodd Fiala         break;
3055af245d11STodd Fiala     case FPE_FLTINV:
3056af245d11STodd Fiala         reason = ProcessMessage::eFloatInvalidOperation;
3057af245d11STodd Fiala         break;
3058af245d11STodd Fiala     case FPE_FLTSUB:
3059af245d11STodd Fiala         reason = ProcessMessage::eFloatSubscriptRange;
3060af245d11STodd Fiala         break;
3061af245d11STodd Fiala     }
3062af245d11STodd Fiala 
3063af245d11STodd Fiala     return reason;
3064af245d11STodd Fiala }
3065af245d11STodd Fiala #endif
3066af245d11STodd Fiala 
3067af245d11STodd Fiala #if 0
3068af245d11STodd Fiala ProcessMessage::CrashReason
3069af245d11STodd Fiala NativeProcessLinux::GetCrashReasonForSIGBUS(const siginfo_t *info)
3070af245d11STodd Fiala {
3071af245d11STodd Fiala     ProcessMessage::CrashReason reason;
3072af245d11STodd Fiala     assert(info->si_signo == SIGBUS);
3073af245d11STodd Fiala 
3074af245d11STodd Fiala     reason = ProcessMessage::eInvalidCrashReason;
3075af245d11STodd Fiala 
3076af245d11STodd Fiala     switch (info->si_code)
3077af245d11STodd Fiala     {
3078af245d11STodd Fiala     default:
3079af245d11STodd Fiala         assert(false && "unexpected si_code for SIGBUS");
3080af245d11STodd Fiala         break;
3081af245d11STodd Fiala     case BUS_ADRALN:
3082af245d11STodd Fiala         reason = ProcessMessage::eIllegalAlignment;
3083af245d11STodd Fiala         break;
3084af245d11STodd Fiala     case BUS_ADRERR:
3085af245d11STodd Fiala         reason = ProcessMessage::eIllegalAddress;
3086af245d11STodd Fiala         break;
3087af245d11STodd Fiala     case BUS_OBJERR:
3088af245d11STodd Fiala         reason = ProcessMessage::eHardwareError;
3089af245d11STodd Fiala         break;
3090af245d11STodd Fiala     }
3091af245d11STodd Fiala 
3092af245d11STodd Fiala     return reason;
3093af245d11STodd Fiala }
3094af245d11STodd Fiala #endif
3095af245d11STodd Fiala 
3096af245d11STodd Fiala Error
309745f5cb31SPavel Labath NativeProcessLinux::SetWatchpoint (lldb::addr_t addr, size_t size, uint32_t watch_flags, bool hardware)
309845f5cb31SPavel Labath {
309945f5cb31SPavel Labath     // The base SetWatchpoint will end up executing monitor operations. Let's lock the monitor
310045f5cb31SPavel Labath     // for it.
310145f5cb31SPavel Labath     Monitor::ScopedOperationLock monitor_lock(*m_monitor_up);
310245f5cb31SPavel Labath     return NativeProcessProtocol::SetWatchpoint(addr, size, watch_flags, hardware);
310345f5cb31SPavel Labath }
310445f5cb31SPavel Labath 
310545f5cb31SPavel Labath Error
310645f5cb31SPavel Labath NativeProcessLinux::RemoveWatchpoint (lldb::addr_t addr)
310745f5cb31SPavel Labath {
310845f5cb31SPavel Labath     // The base RemoveWatchpoint will end up executing monitor operations. Let's lock the monitor
310945f5cb31SPavel Labath     // for it.
311045f5cb31SPavel Labath     Monitor::ScopedOperationLock monitor_lock(*m_monitor_up);
311145f5cb31SPavel Labath     return NativeProcessProtocol::RemoveWatchpoint(addr);
311245f5cb31SPavel Labath }
311345f5cb31SPavel Labath 
311445f5cb31SPavel Labath Error
311526438d26SChaoren Lin NativeProcessLinux::ReadMemory (lldb::addr_t addr, void *buf, size_t size, size_t &bytes_read)
3116af245d11STodd Fiala {
3117df7c6995SPavel Labath     if (ProcessVmReadvSupported()) {
3118df7c6995SPavel Labath         // The process_vm_readv path is about 50 times faster than ptrace api. We want to use
3119df7c6995SPavel Labath         // this syscall if it is supported.
3120df7c6995SPavel Labath 
3121df7c6995SPavel Labath         const ::pid_t pid = GetID();
3122df7c6995SPavel Labath 
3123df7c6995SPavel Labath         struct iovec local_iov, remote_iov;
3124df7c6995SPavel Labath         local_iov.iov_base = buf;
3125df7c6995SPavel Labath         local_iov.iov_len = size;
3126df7c6995SPavel Labath         remote_iov.iov_base = reinterpret_cast<void *>(addr);
3127df7c6995SPavel Labath         remote_iov.iov_len = size;
3128df7c6995SPavel Labath 
3129df7c6995SPavel Labath         bytes_read = process_vm_readv(pid, &local_iov, 1, &remote_iov, 1, 0);
3130df7c6995SPavel Labath         const bool success = bytes_read == size;
3131df7c6995SPavel Labath 
3132df7c6995SPavel Labath         Log *log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3133df7c6995SPavel Labath         if (log)
3134df7c6995SPavel Labath             log->Printf ("NativeProcessLinux::%s using process_vm_readv to read %zd bytes from inferior address 0x%" PRIx64": %s",
3135df7c6995SPavel Labath                     __FUNCTION__, size, addr, success ? "Success" : strerror(errno));
3136df7c6995SPavel Labath 
3137df7c6995SPavel Labath         if (success)
3138df7c6995SPavel Labath             return Error();
3139df7c6995SPavel Labath         // else
3140df7c6995SPavel Labath         //     the call failed for some reason, let's retry the read using ptrace api.
3141df7c6995SPavel Labath     }
3142df7c6995SPavel Labath 
3143*c7512fdcSPavel Labath     return DoOperation([&] { return DoReadMemory(GetID(), addr, buf, size, bytes_read); });
3144af245d11STodd Fiala }
3145af245d11STodd Fiala 
3146af245d11STodd Fiala Error
31473eb4b458SChaoren Lin NativeProcessLinux::ReadMemoryWithoutTrap(lldb::addr_t addr, void *buf, size_t size, size_t &bytes_read)
31483eb4b458SChaoren Lin {
31493eb4b458SChaoren Lin     Error error = ReadMemory(addr, buf, size, bytes_read);
31503eb4b458SChaoren Lin     if (error.Fail()) return error;
31513eb4b458SChaoren Lin     return m_breakpoint_list.RemoveTrapsFromBuffer(addr, buf, size);
31523eb4b458SChaoren Lin }
31533eb4b458SChaoren Lin 
31543eb4b458SChaoren Lin Error
31553eb4b458SChaoren Lin NativeProcessLinux::WriteMemory(lldb::addr_t addr, const void *buf, size_t size, size_t &bytes_written)
3156af245d11STodd Fiala {
3157*c7512fdcSPavel Labath     return DoOperation([&] { return DoWriteMemory(GetID(), addr, buf, size, bytes_written); });
3158af245d11STodd Fiala }
3159af245d11STodd Fiala 
316097ccc294SChaoren Lin Error
3161af245d11STodd Fiala NativeProcessLinux::Resume (lldb::tid_t tid, uint32_t signo)
3162af245d11STodd Fiala {
3163af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3164af245d11STodd Fiala 
3165af245d11STodd Fiala     if (log)
3166af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s() resuming thread = %"  PRIu64 " with signal %s", __FUNCTION__, tid,
3167af245d11STodd Fiala                                  GetUnixSignals().GetSignalAsCString (signo));
3168*c7512fdcSPavel Labath 
3169*c7512fdcSPavel Labath 
3170*c7512fdcSPavel Labath 
3171*c7512fdcSPavel Labath     intptr_t data = 0;
3172*c7512fdcSPavel Labath 
3173*c7512fdcSPavel Labath     if (signo != LLDB_INVALID_SIGNAL_NUMBER)
3174*c7512fdcSPavel Labath         data = signo;
3175*c7512fdcSPavel Labath 
3176*c7512fdcSPavel Labath     Error error = DoOperation([&] {
3177*c7512fdcSPavel Labath         Error error;
3178*c7512fdcSPavel Labath         NativeProcessLinux::PtraceWrapper(PTRACE_CONT, tid, nullptr, (void*)data, 0, error);
3179*c7512fdcSPavel Labath         return error;
3180*c7512fdcSPavel Labath     });
3181*c7512fdcSPavel Labath 
3182af245d11STodd Fiala     if (log)
3183*c7512fdcSPavel Labath         log->Printf ("NativeProcessLinux::%s() resuming thread = %"  PRIu64 " result = %s", __FUNCTION__, tid, error.Success() ? "true" : "false");
3184*c7512fdcSPavel Labath     return error;
3185af245d11STodd Fiala }
3186af245d11STodd Fiala 
318797ccc294SChaoren Lin Error
3188af245d11STodd Fiala NativeProcessLinux::SingleStep(lldb::tid_t tid, uint32_t signo)
3189af245d11STodd Fiala {
3190*c7512fdcSPavel Labath     intptr_t data = 0;
3191*c7512fdcSPavel Labath 
3192*c7512fdcSPavel Labath     if (signo != LLDB_INVALID_SIGNAL_NUMBER)
3193*c7512fdcSPavel Labath         data = signo;
3194*c7512fdcSPavel Labath 
3195*c7512fdcSPavel Labath     return DoOperation([&] {
3196*c7512fdcSPavel Labath         Error error;
3197*c7512fdcSPavel Labath         NativeProcessLinux::PtraceWrapper(PTRACE_SINGLESTEP, tid, nullptr, (void*)data, 0, error);
3198*c7512fdcSPavel Labath         return error;
3199*c7512fdcSPavel Labath     });
3200af245d11STodd Fiala }
3201af245d11STodd Fiala 
320297ccc294SChaoren Lin Error
320397ccc294SChaoren Lin NativeProcessLinux::GetSignalInfo(lldb::tid_t tid, void *siginfo)
3204af245d11STodd Fiala {
3205*c7512fdcSPavel Labath     return DoOperation([&] {
3206*c7512fdcSPavel Labath         Error error;
3207*c7512fdcSPavel Labath         NativeProcessLinux::PtraceWrapper(PTRACE_GETSIGINFO, tid, nullptr, siginfo, 0, error);
3208*c7512fdcSPavel Labath         return error;
3209*c7512fdcSPavel Labath     });
3210af245d11STodd Fiala }
3211af245d11STodd Fiala 
321297ccc294SChaoren Lin Error
3213af245d11STodd Fiala NativeProcessLinux::GetEventMessage(lldb::tid_t tid, unsigned long *message)
3214af245d11STodd Fiala {
3215*c7512fdcSPavel Labath     return DoOperation([&] {
3216*c7512fdcSPavel Labath         Error error;
3217*c7512fdcSPavel Labath         NativeProcessLinux::PtraceWrapper(PTRACE_GETEVENTMSG, tid, nullptr, message, 0, error);
3218*c7512fdcSPavel Labath         return error;
3219*c7512fdcSPavel Labath     });
3220af245d11STodd Fiala }
3221af245d11STodd Fiala 
3222db264a6dSTamas Berghammer Error
3223af245d11STodd Fiala NativeProcessLinux::Detach(lldb::tid_t tid)
3224af245d11STodd Fiala {
322597ccc294SChaoren Lin     if (tid == LLDB_INVALID_THREAD_ID)
322697ccc294SChaoren Lin         return Error();
322797ccc294SChaoren Lin 
3228*c7512fdcSPavel Labath     return DoOperation([&] {
3229*c7512fdcSPavel Labath         Error error;
3230*c7512fdcSPavel Labath         NativeProcessLinux::PtraceWrapper(PTRACE_DETACH, tid, nullptr, 0, 0, error);
3231*c7512fdcSPavel Labath         return error;
3232*c7512fdcSPavel Labath     });
3233af245d11STodd Fiala }
3234af245d11STodd Fiala 
3235af245d11STodd Fiala bool
3236d3173f34SChaoren Lin NativeProcessLinux::DupDescriptor(const FileSpec &file_spec, int fd, int flags)
3237af245d11STodd Fiala {
3238d3173f34SChaoren Lin     int target_fd = open(file_spec.GetCString(), flags, 0666);
3239af245d11STodd Fiala 
3240af245d11STodd Fiala     if (target_fd == -1)
3241af245d11STodd Fiala         return false;
3242af245d11STodd Fiala 
3243493c3a12SPavel Labath     if (dup2(target_fd, fd) == -1)
3244493c3a12SPavel Labath         return false;
3245493c3a12SPavel Labath 
3246493c3a12SPavel Labath     return (close(target_fd) == -1) ? false : true;
3247af245d11STodd Fiala }
3248af245d11STodd Fiala 
3249af245d11STodd Fiala void
3250bd7cbc5aSPavel Labath NativeProcessLinux::StartMonitorThread(const InitialOperation &initial_operation, Error &error)
3251af245d11STodd Fiala {
3252bd7cbc5aSPavel Labath     m_monitor_up.reset(new Monitor(initial_operation, this));
32531107b5a5SPavel Labath     error = m_monitor_up->Initialize();
32541107b5a5SPavel Labath     if (error.Fail()) {
32551107b5a5SPavel Labath         m_monitor_up.reset();
3256af245d11STodd Fiala     }
3257af245d11STodd Fiala }
3258af245d11STodd Fiala 
3259af245d11STodd Fiala bool
3260af245d11STodd Fiala NativeProcessLinux::HasThreadNoLock (lldb::tid_t thread_id)
3261af245d11STodd Fiala {
3262af245d11STodd Fiala     for (auto thread_sp : m_threads)
3263af245d11STodd Fiala     {
3264af245d11STodd Fiala         assert (thread_sp && "thread list should not contain NULL threads");
3265af245d11STodd Fiala         if (thread_sp->GetID () == thread_id)
3266af245d11STodd Fiala         {
3267af245d11STodd Fiala             // We have this thread.
3268af245d11STodd Fiala             return true;
3269af245d11STodd Fiala         }
3270af245d11STodd Fiala     }
3271af245d11STodd Fiala 
3272af245d11STodd Fiala     // We don't have this thread.
3273af245d11STodd Fiala     return false;
3274af245d11STodd Fiala }
3275af245d11STodd Fiala 
3276af245d11STodd Fiala NativeThreadProtocolSP
3277af245d11STodd Fiala NativeProcessLinux::MaybeGetThreadNoLock (lldb::tid_t thread_id)
3278af245d11STodd Fiala {
3279af245d11STodd Fiala     // CONSIDER organize threads by map - we can do better than linear.
3280af245d11STodd Fiala     for (auto thread_sp : m_threads)
3281af245d11STodd Fiala     {
3282af245d11STodd Fiala         if (thread_sp->GetID () == thread_id)
3283af245d11STodd Fiala             return thread_sp;
3284af245d11STodd Fiala     }
3285af245d11STodd Fiala 
3286af245d11STodd Fiala     // We don't have this thread.
3287af245d11STodd Fiala     return NativeThreadProtocolSP ();
3288af245d11STodd Fiala }
3289af245d11STodd Fiala 
3290af245d11STodd Fiala bool
3291af245d11STodd Fiala NativeProcessLinux::StopTrackingThread (lldb::tid_t thread_id)
3292af245d11STodd Fiala {
32931dbc6c9cSPavel Labath     Log *const log = GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD);
32941dbc6c9cSPavel Labath 
32951dbc6c9cSPavel Labath     if (log)
32961dbc6c9cSPavel Labath         log->Printf("NativeProcessLinux::%s (tid: %" PRIu64 ")", __FUNCTION__, thread_id);
32971dbc6c9cSPavel Labath 
32981dbc6c9cSPavel Labath     bool found = false;
32991dbc6c9cSPavel Labath 
3300af245d11STodd Fiala     Mutex::Locker locker (m_threads_mutex);
3301af245d11STodd Fiala     for (auto it = m_threads.begin (); it != m_threads.end (); ++it)
3302af245d11STodd Fiala     {
3303af245d11STodd Fiala         if (*it && ((*it)->GetID () == thread_id))
3304af245d11STodd Fiala         {
3305af245d11STodd Fiala             m_threads.erase (it);
33061dbc6c9cSPavel Labath             found = true;
33071dbc6c9cSPavel Labath             break;
3308af245d11STodd Fiala         }
3309af245d11STodd Fiala     }
3310af245d11STodd Fiala 
33111dbc6c9cSPavel Labath     // If we have a pending notification, remove this from the set.
33121dbc6c9cSPavel Labath     if (m_pending_notification_up)
33131dbc6c9cSPavel Labath     {
33141dbc6c9cSPavel Labath         m_pending_notification_up->wait_for_stop_tids.erase(thread_id);
33159eb1ecb9SPavel Labath         SignalIfAllThreadsStopped();
33161dbc6c9cSPavel Labath     }
33171dbc6c9cSPavel Labath 
33181dbc6c9cSPavel Labath     return found;
3319af245d11STodd Fiala }
3320af245d11STodd Fiala 
3321af245d11STodd Fiala NativeThreadProtocolSP
3322af245d11STodd Fiala NativeProcessLinux::AddThread (lldb::tid_t thread_id)
3323af245d11STodd Fiala {
3324af245d11STodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
3325af245d11STodd Fiala 
3326af245d11STodd Fiala     Mutex::Locker locker (m_threads_mutex);
3327af245d11STodd Fiala 
3328af245d11STodd Fiala     if (log)
3329af245d11STodd Fiala     {
3330af245d11STodd Fiala         log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " adding thread with tid %" PRIu64,
3331af245d11STodd Fiala                 __FUNCTION__,
3332af245d11STodd Fiala                 GetID (),
3333af245d11STodd Fiala                 thread_id);
3334af245d11STodd Fiala     }
3335af245d11STodd Fiala 
3336af245d11STodd Fiala     assert (!HasThreadNoLock (thread_id) && "attempted to add a thread by id that already exists");
3337af245d11STodd Fiala 
3338af245d11STodd Fiala     // If this is the first thread, save it as the current thread
3339af245d11STodd Fiala     if (m_threads.empty ())
3340af245d11STodd Fiala         SetCurrentThreadID (thread_id);
3341af245d11STodd Fiala 
3342af245d11STodd Fiala     NativeThreadProtocolSP thread_sp (new NativeThreadLinux (this, thread_id));
3343af245d11STodd Fiala     m_threads.push_back (thread_sp);
3344af245d11STodd Fiala 
3345af245d11STodd Fiala     return thread_sp;
3346af245d11STodd Fiala }
3347af245d11STodd Fiala 
3348af245d11STodd Fiala Error
3349af245d11STodd Fiala NativeProcessLinux::FixupBreakpointPCAsNeeded (NativeThreadProtocolSP &thread_sp)
3350af245d11STodd Fiala {
335175f47c3aSTodd Fiala     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
3352af245d11STodd Fiala 
3353af245d11STodd Fiala     Error error;
3354af245d11STodd Fiala 
3355af245d11STodd Fiala     // Get a linux thread pointer.
3356af245d11STodd Fiala     if (!thread_sp)
3357af245d11STodd Fiala     {
3358af245d11STodd Fiala         error.SetErrorString ("null thread_sp");
3359af245d11STodd Fiala         if (log)
3360af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s failed: %s", __FUNCTION__, error.AsCString ());
3361af245d11STodd Fiala         return error;
3362af245d11STodd Fiala     }
3363cb84eebbSTamas Berghammer     std::shared_ptr<NativeThreadLinux> linux_thread_sp = std::static_pointer_cast<NativeThreadLinux> (thread_sp);
3364af245d11STodd Fiala 
3365af245d11STodd Fiala     // Find out the size of a breakpoint (might depend on where we are in the code).
3366cb84eebbSTamas Berghammer     NativeRegisterContextSP context_sp = linux_thread_sp->GetRegisterContext ();
3367af245d11STodd Fiala     if (!context_sp)
3368af245d11STodd Fiala     {
3369af245d11STodd Fiala         error.SetErrorString ("cannot get a NativeRegisterContext for the thread");
3370af245d11STodd Fiala         if (log)
3371af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s failed: %s", __FUNCTION__, error.AsCString ());
3372af245d11STodd Fiala         return error;
3373af245d11STodd Fiala     }
3374af245d11STodd Fiala 
3375af245d11STodd Fiala     uint32_t breakpoint_size = 0;
337663c8be95STamas Berghammer     error = GetSoftwareBreakpointPCOffset (context_sp, breakpoint_size);
3377af245d11STodd Fiala     if (error.Fail ())
3378af245d11STodd Fiala     {
3379af245d11STodd Fiala         if (log)
3380af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s GetBreakpointSize() failed: %s", __FUNCTION__, error.AsCString ());
3381af245d11STodd Fiala         return error;
3382af245d11STodd Fiala     }
3383af245d11STodd Fiala     else
3384af245d11STodd Fiala     {
3385af245d11STodd Fiala         if (log)
3386af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s breakpoint size: %" PRIu32, __FUNCTION__, breakpoint_size);
3387af245d11STodd Fiala     }
3388af245d11STodd Fiala 
3389af245d11STodd Fiala     // First try probing for a breakpoint at a software breakpoint location: PC - breakpoint size.
3390c60c9452SJaydeep Patil     const lldb::addr_t initial_pc_addr = context_sp->GetPCfromBreakpointLocation ();
3391af245d11STodd Fiala     lldb::addr_t breakpoint_addr = initial_pc_addr;
33923eb4b458SChaoren Lin     if (breakpoint_size > 0)
3393af245d11STodd Fiala     {
3394af245d11STodd Fiala         // Do not allow breakpoint probe to wrap around.
33953eb4b458SChaoren Lin         if (breakpoint_addr >= breakpoint_size)
33963eb4b458SChaoren Lin             breakpoint_addr -= breakpoint_size;
3397af245d11STodd Fiala     }
3398af245d11STodd Fiala 
3399af245d11STodd Fiala     // Check if we stopped because of a breakpoint.
3400af245d11STodd Fiala     NativeBreakpointSP breakpoint_sp;
3401af245d11STodd Fiala     error = m_breakpoint_list.GetBreakpoint (breakpoint_addr, breakpoint_sp);
3402af245d11STodd Fiala     if (!error.Success () || !breakpoint_sp)
3403af245d11STodd Fiala     {
3404af245d11STodd Fiala         // We didn't find one at a software probe location.  Nothing to do.
3405af245d11STodd Fiala         if (log)
3406af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " no lldb breakpoint found at current pc with adjustment: 0x%" PRIx64, __FUNCTION__, GetID (), breakpoint_addr);
3407af245d11STodd Fiala         return Error ();
3408af245d11STodd Fiala     }
3409af245d11STodd Fiala 
3410af245d11STodd Fiala     // If the breakpoint is not a software breakpoint, nothing to do.
3411af245d11STodd Fiala     if (!breakpoint_sp->IsSoftwareBreakpoint ())
3412af245d11STodd Fiala     {
3413af245d11STodd Fiala         if (log)
3414af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " breakpoint found at 0x%" PRIx64 ", not software, nothing to adjust", __FUNCTION__, GetID (), breakpoint_addr);
3415af245d11STodd Fiala         return Error ();
3416af245d11STodd Fiala     }
3417af245d11STodd Fiala 
3418af245d11STodd Fiala     //
3419af245d11STodd Fiala     // We have a software breakpoint and need to adjust the PC.
3420af245d11STodd Fiala     //
3421af245d11STodd Fiala 
3422af245d11STodd Fiala     // Sanity check.
3423af245d11STodd Fiala     if (breakpoint_size == 0)
3424af245d11STodd Fiala     {
3425af245d11STodd Fiala         // Nothing to do!  How did we get here?
3426af245d11STodd Fiala         if (log)
3427af245d11STodd Fiala             log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " breakpoint found at 0x%" PRIx64 ", it is software, but the size is zero, nothing to do (unexpected)", __FUNCTION__, GetID (), breakpoint_addr);
3428af245d11STodd Fiala         return Error ();
3429af245d11STodd Fiala     }
3430af245d11STodd Fiala 
3431af245d11STodd Fiala     // Change the program counter.
3432af245d11STodd Fiala     if (log)
3433cb84eebbSTamas Berghammer         log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " tid %" PRIu64 ": changing PC from 0x%" PRIx64 " to 0x%" PRIx64, __FUNCTION__, GetID (), linux_thread_sp->GetID (), initial_pc_addr, breakpoint_addr);
3434af245d11STodd Fiala 
3435af245d11STodd Fiala     error = context_sp->SetPC (breakpoint_addr);
3436af245d11STodd Fiala     if (error.Fail ())
3437af245d11STodd Fiala     {
3438af245d11STodd Fiala         if (log)
3439cb84eebbSTamas Berghammer             log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " tid %" PRIu64 ": failed to set PC: %s", __FUNCTION__, GetID (), linux_thread_sp->GetID (), error.AsCString ());
3440af245d11STodd Fiala         return error;
3441af245d11STodd Fiala     }
3442af245d11STodd Fiala 
3443af245d11STodd Fiala     return error;
3444af245d11STodd Fiala }
3445fa03ad2eSChaoren Lin 
34467cb18bf5STamas Berghammer Error
34477cb18bf5STamas Berghammer NativeProcessLinux::GetLoadedModuleFileSpec(const char* module_path, FileSpec& file_spec)
34487cb18bf5STamas Berghammer {
34497cb18bf5STamas Berghammer     char maps_file_name[32];
34507cb18bf5STamas Berghammer     snprintf(maps_file_name, sizeof(maps_file_name), "/proc/%" PRIu64 "/maps", GetID());
34517cb18bf5STamas Berghammer 
34527cb18bf5STamas Berghammer     FileSpec maps_file_spec(maps_file_name, false);
34537cb18bf5STamas Berghammer     if (!maps_file_spec.Exists()) {
34547cb18bf5STamas Berghammer         file_spec.Clear();
34557cb18bf5STamas Berghammer         return Error("/proc/%" PRIu64 "/maps file doesn't exists!", GetID());
34567cb18bf5STamas Berghammer     }
34577cb18bf5STamas Berghammer 
34587cb18bf5STamas Berghammer     FileSpec module_file_spec(module_path, true);
34597cb18bf5STamas Berghammer 
34607cb18bf5STamas Berghammer     std::ifstream maps_file(maps_file_name);
34617cb18bf5STamas Berghammer     std::string maps_data_str((std::istreambuf_iterator<char>(maps_file)), std::istreambuf_iterator<char>());
34627cb18bf5STamas Berghammer     StringRef maps_data(maps_data_str.c_str());
34637cb18bf5STamas Berghammer 
34647cb18bf5STamas Berghammer     while (!maps_data.empty())
34657cb18bf5STamas Berghammer     {
34667cb18bf5STamas Berghammer         StringRef maps_row;
34677cb18bf5STamas Berghammer         std::tie(maps_row, maps_data) = maps_data.split('\n');
34687cb18bf5STamas Berghammer 
34697cb18bf5STamas Berghammer         SmallVector<StringRef, 16> maps_columns;
34707cb18bf5STamas Berghammer         maps_row.split(maps_columns, StringRef(" "), -1, false);
34717cb18bf5STamas Berghammer 
34727cb18bf5STamas Berghammer         if (maps_columns.size() >= 6)
34737cb18bf5STamas Berghammer         {
34747cb18bf5STamas Berghammer             file_spec.SetFile(maps_columns[5].str().c_str(), false);
34757cb18bf5STamas Berghammer             if (file_spec.GetFilename() == module_file_spec.GetFilename())
34767cb18bf5STamas Berghammer                 return Error();
34777cb18bf5STamas Berghammer         }
34787cb18bf5STamas Berghammer     }
34797cb18bf5STamas Berghammer 
34807cb18bf5STamas Berghammer     file_spec.Clear();
34817cb18bf5STamas Berghammer     return Error("Module file (%s) not found in /proc/%" PRIu64 "/maps file!",
34827cb18bf5STamas Berghammer                  module_file_spec.GetFilename().AsCString(), GetID());
34837cb18bf5STamas Berghammer }
3484c076559aSPavel Labath 
34855eb721edSPavel Labath Error
3486783bfc8cSTamas Berghammer NativeProcessLinux::GetFileLoadAddress(const llvm::StringRef& file_name, lldb::addr_t& load_addr)
3487783bfc8cSTamas Berghammer {
3488783bfc8cSTamas Berghammer     load_addr = LLDB_INVALID_ADDRESS;
3489783bfc8cSTamas Berghammer     Error error = ProcFileReader::ProcessLineByLine (GetID (), "maps",
3490783bfc8cSTamas Berghammer         [&] (const std::string &line) -> bool
3491783bfc8cSTamas Berghammer         {
3492783bfc8cSTamas Berghammer             StringRef maps_row(line);
3493783bfc8cSTamas Berghammer 
3494783bfc8cSTamas Berghammer             SmallVector<StringRef, 16> maps_columns;
3495783bfc8cSTamas Berghammer             maps_row.split(maps_columns, StringRef(" "), -1, false);
3496783bfc8cSTamas Berghammer 
3497783bfc8cSTamas Berghammer             if (maps_columns.size() < 6)
3498783bfc8cSTamas Berghammer             {
3499783bfc8cSTamas Berghammer                 // Return true to continue reading the proc file
3500783bfc8cSTamas Berghammer                 return true;
3501783bfc8cSTamas Berghammer             }
3502783bfc8cSTamas Berghammer 
3503783bfc8cSTamas Berghammer             if (maps_columns[5] == file_name)
3504783bfc8cSTamas Berghammer             {
3505783bfc8cSTamas Berghammer                 StringExtractor addr_extractor(maps_columns[0].str().c_str());
3506783bfc8cSTamas Berghammer                 load_addr = addr_extractor.GetHexMaxU64(false, LLDB_INVALID_ADDRESS);
3507783bfc8cSTamas Berghammer 
3508783bfc8cSTamas Berghammer                 // Return false to stop reading the proc file further
3509783bfc8cSTamas Berghammer                 return false;
3510783bfc8cSTamas Berghammer             }
3511783bfc8cSTamas Berghammer 
3512783bfc8cSTamas Berghammer             // Return true to continue reading the proc file
3513783bfc8cSTamas Berghammer             return true;
3514783bfc8cSTamas Berghammer         });
3515783bfc8cSTamas Berghammer     return error;
3516783bfc8cSTamas Berghammer }
3517783bfc8cSTamas Berghammer 
3518783bfc8cSTamas Berghammer Error
35191dbc6c9cSPavel Labath NativeProcessLinux::ResumeThread(
3520c076559aSPavel Labath         lldb::tid_t tid,
35218c8ff7afSPavel Labath         NativeThreadLinux::ResumeThreadFunction request_thread_resume_function,
3522c076559aSPavel Labath         bool error_when_already_running)
3523c076559aSPavel Labath {
35245eb721edSPavel Labath     Log *const log = GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD);
35255eb721edSPavel Labath 
35261dbc6c9cSPavel Labath     if (log)
35271dbc6c9cSPavel Labath         log->Printf("NativeProcessLinux::%s (tid: %" PRIu64 ", error_when_already_running: %s)",
35281dbc6c9cSPavel Labath                 __FUNCTION__, tid, error_when_already_running?"true":"false");
35291dbc6c9cSPavel Labath 
35308c8ff7afSPavel Labath     auto thread_sp = std::static_pointer_cast<NativeThreadLinux>(GetThreadByID(tid));
35318c8ff7afSPavel Labath     lldbassert(thread_sp != nullptr);
35325eb721edSPavel Labath 
35338c8ff7afSPavel Labath     auto& context = thread_sp->GetThreadContext();
3534c076559aSPavel Labath     // Tell the thread to resume if we don't already think it is running.
35358c8ff7afSPavel Labath     const bool is_stopped = StateIsStoppedState(thread_sp->GetState(), true);
35365eb721edSPavel Labath 
35375eb721edSPavel Labath     lldbassert(!(error_when_already_running && !is_stopped));
35385eb721edSPavel Labath 
3539c076559aSPavel Labath     if (!is_stopped)
3540c076559aSPavel Labath     {
3541c076559aSPavel Labath         // It's not an error, just a log, if the error_when_already_running flag is not set.
3542c076559aSPavel Labath         // This covers cases where, for instance, we're just trying to resume all threads
3543c076559aSPavel Labath         // from the user side.
35445eb721edSPavel Labath         if (log)
35455eb721edSPavel Labath             log->Printf("NativeProcessLinux::%s tid %" PRIu64 " optional resume skipped since it is already running",
3546c076559aSPavel Labath                     __FUNCTION__,
3547c076559aSPavel Labath                     tid);
35485eb721edSPavel Labath         return Error();
3549c076559aSPavel Labath     }
3550c076559aSPavel Labath 
3551c076559aSPavel Labath     // Before we do the resume below, first check if we have a pending
3552108c325dSPavel Labath     // stop notification that is currently waiting for
3553c076559aSPavel Labath     // this thread to stop.  This is potentially a buggy situation since
3554c076559aSPavel Labath     // we're ostensibly waiting for threads to stop before we send out the
3555c076559aSPavel Labath     // pending notification, and here we are resuming one before we send
3556c076559aSPavel Labath     // out the pending stop notification.
3557108c325dSPavel Labath     if (m_pending_notification_up && log && m_pending_notification_up->wait_for_stop_tids.count (tid) > 0)
3558c076559aSPavel Labath     {
35595eb721edSPavel Labath         log->Printf("NativeProcessLinux::%s about to resume tid %" PRIu64 " per explicit request but we have a pending stop notification (tid %" PRIu64 ") that is actively waiting for this thread to stop. Valid sequence of events?", __FUNCTION__, tid, m_pending_notification_up->triggering_tid);
3560c076559aSPavel Labath     }
3561c076559aSPavel Labath 
3562c076559aSPavel Labath     // Request a resume.  We expect this to be synchronous and the system
3563c076559aSPavel Labath     // to reflect it is running after this completes.
3564c076559aSPavel Labath     const auto error = request_thread_resume_function (tid, false);
3565c076559aSPavel Labath     if (error.Success())
35668c8ff7afSPavel Labath         context.request_resume_function = request_thread_resume_function;
35675eb721edSPavel Labath     else if (log)
3568c076559aSPavel Labath     {
35695eb721edSPavel Labath         log->Printf("NativeProcessLinux::%s failed to resume thread tid  %" PRIu64 ": %s",
3570c076559aSPavel Labath                          __FUNCTION__, tid, error.AsCString ());
3571c076559aSPavel Labath     }
3572c076559aSPavel Labath 
35735eb721edSPavel Labath     return error;
3574c076559aSPavel Labath }
3575c076559aSPavel Labath 
3576c076559aSPavel Labath //===----------------------------------------------------------------------===//
3577c076559aSPavel Labath 
3578c076559aSPavel Labath void
3579337f3eb9SPavel Labath NativeProcessLinux::StopRunningThreads(const lldb::tid_t triggering_tid)
3580c076559aSPavel Labath {
35815eb721edSPavel Labath     Log *const log = GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD);
3582c076559aSPavel Labath 
35835eb721edSPavel Labath     if (log)
3584c076559aSPavel Labath     {
35855eb721edSPavel Labath         log->Printf("NativeProcessLinux::%s about to process event: (triggering_tid: %" PRIu64 ")",
3586c076559aSPavel Labath                 __FUNCTION__, triggering_tid);
3587c076559aSPavel Labath     }
3588c076559aSPavel Labath 
3589337f3eb9SPavel Labath     DoStopThreads(PendingNotificationUP(new PendingNotification(triggering_tid)));
3590c076559aSPavel Labath 
35915eb721edSPavel Labath     if (log)
3592c076559aSPavel Labath     {
35935eb721edSPavel Labath         log->Printf("NativeProcessLinux::%s event processing done", __FUNCTION__);
3594c076559aSPavel Labath     }
3595c076559aSPavel Labath }
3596c076559aSPavel Labath 
3597c076559aSPavel Labath void
35989eb1ecb9SPavel Labath NativeProcessLinux::SignalIfAllThreadsStopped()
3599c076559aSPavel Labath {
3600c076559aSPavel Labath     if (m_pending_notification_up && m_pending_notification_up->wait_for_stop_tids.empty ())
3601c076559aSPavel Labath     {
36029eb1ecb9SPavel Labath         Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_BREAKPOINTS));
36039eb1ecb9SPavel Labath 
36049eb1ecb9SPavel Labath         // Clear any temporary breakpoints we used to implement software single stepping.
36059eb1ecb9SPavel Labath         for (const auto &thread_info: m_threads_stepping_with_breakpoint)
36069eb1ecb9SPavel Labath         {
36079eb1ecb9SPavel Labath             Error error = RemoveBreakpoint (thread_info.second);
36089eb1ecb9SPavel Labath             if (error.Fail())
36099eb1ecb9SPavel Labath                 if (log)
36109eb1ecb9SPavel Labath                     log->Printf("NativeProcessLinux::%s() pid = %" PRIu64 " remove stepping breakpoint: %s",
36119eb1ecb9SPavel Labath                             __FUNCTION__, thread_info.first, error.AsCString());
36129eb1ecb9SPavel Labath         }
36139eb1ecb9SPavel Labath         m_threads_stepping_with_breakpoint.clear();
36149eb1ecb9SPavel Labath 
36159eb1ecb9SPavel Labath         // Notify the delegate about the stop
3616ed89c7feSPavel Labath         SetCurrentThreadID(m_pending_notification_up->triggering_tid);
3617ed89c7feSPavel Labath         SetState(StateType::eStateStopped, true);
3618c076559aSPavel Labath         m_pending_notification_up.reset();
3619c076559aSPavel Labath     }
3620c076559aSPavel Labath }
3621c076559aSPavel Labath 
3622c076559aSPavel Labath void
3623c076559aSPavel Labath NativeProcessLinux::RequestStopOnAllRunningThreads()
3624c076559aSPavel Labath {
3625c076559aSPavel Labath     // Request a stop for all the thread stops that need to be stopped
3626c076559aSPavel Labath     // and are not already known to be stopped.  Keep a list of all the
3627c076559aSPavel Labath     // threads from which we still need to hear a stop reply.
3628c076559aSPavel Labath 
3629c076559aSPavel Labath     ThreadIDSet sent_tids;
36308c8ff7afSPavel Labath     for (const auto &thread_sp: m_threads)
3631c076559aSPavel Labath     {
36328c8ff7afSPavel Labath         // We only care about running threads
36338c8ff7afSPavel Labath         if (StateIsStoppedState(thread_sp->GetState(), true))
36348c8ff7afSPavel Labath             continue;
36358c8ff7afSPavel Labath 
36368c8ff7afSPavel Labath         static_pointer_cast<NativeThreadLinux>(thread_sp)->RequestStop();
3637108c325dSPavel Labath         sent_tids.insert (thread_sp->GetID());
3638c076559aSPavel Labath     }
3639c076559aSPavel Labath 
3640c076559aSPavel Labath     // Set the wait list to the set of tids for which we requested stops.
3641c076559aSPavel Labath     m_pending_notification_up->wait_for_stop_tids.swap (sent_tids);
3642c076559aSPavel Labath }
3643c076559aSPavel Labath 
3644c076559aSPavel Labath 
36455eb721edSPavel Labath Error
36465eb721edSPavel Labath NativeProcessLinux::ThreadDidStop (lldb::tid_t tid, bool initiated_by_llgs)
3647c076559aSPavel Labath {
36481dbc6c9cSPavel Labath     Log *const log = GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD);
36491dbc6c9cSPavel Labath 
36501dbc6c9cSPavel Labath     if (log)
36511dbc6c9cSPavel Labath         log->Printf("NativeProcessLinux::%s (tid: %" PRIu64 ", %sinitiated by llgs)",
36521dbc6c9cSPavel Labath                 __FUNCTION__, tid, initiated_by_llgs?"":"not ");
36531dbc6c9cSPavel Labath 
3654c076559aSPavel Labath     // Ensure we know about the thread.
36558c8ff7afSPavel Labath     auto thread_sp = std::static_pointer_cast<NativeThreadLinux>(GetThreadByID(tid));
36568c8ff7afSPavel Labath     lldbassert(thread_sp != nullptr);
3657c076559aSPavel Labath 
3658c076559aSPavel Labath     // Update the global list of known thread states.  This one is definitely stopped.
36598c8ff7afSPavel Labath     auto& context = thread_sp->GetThreadContext();
36608c8ff7afSPavel Labath     const auto stop_was_requested = context.stop_requested;
36618c8ff7afSPavel Labath     context.stop_requested = false;
3662c076559aSPavel Labath 
3663c076559aSPavel Labath     // If we have a pending notification, remove this from the set.
3664c076559aSPavel Labath     if (m_pending_notification_up)
3665c076559aSPavel Labath     {
3666c076559aSPavel Labath         m_pending_notification_up->wait_for_stop_tids.erase(tid);
36679eb1ecb9SPavel Labath         SignalIfAllThreadsStopped();
3668c076559aSPavel Labath     }
3669c076559aSPavel Labath 
36708c8ff7afSPavel Labath     Error error;
36718c8ff7afSPavel Labath     if (initiated_by_llgs && context.request_resume_function && !stop_was_requested)
3672c076559aSPavel Labath     {
3673c076559aSPavel Labath         // We can end up here if stop was initiated by LLGS but by this time a
3674c076559aSPavel Labath         // thread stop has occurred - maybe initiated by another event.
36755eb721edSPavel Labath         if (log)
36765eb721edSPavel Labath             log->Printf("Resuming thread %"  PRIu64 " since stop wasn't requested", tid);
36778c8ff7afSPavel Labath         error = context.request_resume_function (tid, true);
36788c8ff7afSPavel Labath         if (error.Fail() && log)
36795eb721edSPavel Labath         {
36805eb721edSPavel Labath                 log->Printf("NativeProcessLinux::%s failed to resume thread tid  %" PRIu64 ": %s",
3681c076559aSPavel Labath                         __FUNCTION__, tid, error.AsCString ());
3682c076559aSPavel Labath         }
36838c8ff7afSPavel Labath     }
36845eb721edSPavel Labath     return error;
3685c076559aSPavel Labath }
3686c076559aSPavel Labath 
3687c076559aSPavel Labath void
3688ed89c7feSPavel Labath NativeProcessLinux::DoStopThreads(PendingNotificationUP &&notification_up)
3689c076559aSPavel Labath {
36905eb721edSPavel Labath     Log *const log = GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD);
36915eb721edSPavel Labath     if (m_pending_notification_up && log)
3692c076559aSPavel Labath     {
3693c076559aSPavel Labath         // Yikes - we've already got a pending signal notification in progress.
3694c076559aSPavel Labath         // Log this info.  We lose the pending notification here.
36955eb721edSPavel Labath         log->Printf("NativeProcessLinux::%s dropping existing pending signal notification for tid %" PRIu64 ", to be replaced with signal for tid %" PRIu64,
3696c076559aSPavel Labath                    __FUNCTION__,
3697c076559aSPavel Labath                    m_pending_notification_up->triggering_tid,
3698c076559aSPavel Labath                    notification_up->triggering_tid);
3699c076559aSPavel Labath     }
3700c076559aSPavel Labath     m_pending_notification_up = std::move(notification_up);
3701c076559aSPavel Labath 
3702c076559aSPavel Labath     RequestStopOnAllRunningThreads();
3703c076559aSPavel Labath 
37049eb1ecb9SPavel Labath     SignalIfAllThreadsStopped();
3705c076559aSPavel Labath }
3706c076559aSPavel Labath 
3707c076559aSPavel Labath void
37088c8ff7afSPavel Labath NativeProcessLinux::ThreadWasCreated (lldb::tid_t tid)
3709c076559aSPavel Labath {
37101dbc6c9cSPavel Labath     Log *const log = GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD);
37111dbc6c9cSPavel Labath 
37121dbc6c9cSPavel Labath     if (log)
37131dbc6c9cSPavel Labath         log->Printf("NativeProcessLinux::%s (tid: %" PRIu64 ")", __FUNCTION__, tid);
37141dbc6c9cSPavel Labath 
37158c8ff7afSPavel Labath     auto thread_sp = std::static_pointer_cast<NativeThreadLinux>(GetThreadByID(tid));
37168c8ff7afSPavel Labath     lldbassert(thread_sp != nullptr);
3717c076559aSPavel Labath 
37188c8ff7afSPavel Labath     if (m_pending_notification_up && StateIsRunningState(thread_sp->GetState()))
3719c076559aSPavel Labath     {
3720c076559aSPavel Labath         // We will need to wait for this new thread to stop as well before firing the
3721c076559aSPavel Labath         // notification.
3722c076559aSPavel Labath         m_pending_notification_up->wait_for_stop_tids.insert(tid);
37238c8ff7afSPavel Labath         thread_sp->RequestStop();
3724c076559aSPavel Labath     }
3725c076559aSPavel Labath }
3726068f8a7eSTamas Berghammer 
3727068f8a7eSTamas Berghammer Error
3728*c7512fdcSPavel Labath NativeProcessLinux::DoOperation(const Operation &op)
3729068f8a7eSTamas Berghammer {
3730*c7512fdcSPavel Labath     return m_monitor_up->DoOperation(op);
3731068f8a7eSTamas Berghammer }
3732068f8a7eSTamas Berghammer 
3733068f8a7eSTamas Berghammer // Wrapper for ptrace to catch errors and log calls.
3734068f8a7eSTamas Berghammer // Note that ptrace sets errno on error because -1 can be a valid result (i.e. for PTRACE_PEEK*)
3735068f8a7eSTamas Berghammer long
3736068f8a7eSTamas Berghammer NativeProcessLinux::PtraceWrapper(int req, lldb::pid_t pid, void *addr, void *data, size_t data_size, Error& error)
3737068f8a7eSTamas Berghammer {
3738068f8a7eSTamas Berghammer     long int result;
3739068f8a7eSTamas Berghammer 
3740068f8a7eSTamas Berghammer     Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (POSIX_LOG_PTRACE));
3741068f8a7eSTamas Berghammer 
3742068f8a7eSTamas Berghammer     PtraceDisplayBytes(req, data, data_size);
3743068f8a7eSTamas Berghammer 
3744068f8a7eSTamas Berghammer     error.Clear();
3745068f8a7eSTamas Berghammer     errno = 0;
3746068f8a7eSTamas Berghammer     if (req == PTRACE_GETREGSET || req == PTRACE_SETREGSET)
3747068f8a7eSTamas Berghammer         result = ptrace(static_cast<__ptrace_request>(req), static_cast< ::pid_t>(pid), *(unsigned int *)addr, data);
3748068f8a7eSTamas Berghammer     else
3749068f8a7eSTamas Berghammer         result = ptrace(static_cast<__ptrace_request>(req), static_cast< ::pid_t>(pid), addr, data);
3750068f8a7eSTamas Berghammer 
3751068f8a7eSTamas Berghammer     if (result == -1)
3752068f8a7eSTamas Berghammer         error.SetErrorToErrno();
3753068f8a7eSTamas Berghammer 
3754068f8a7eSTamas Berghammer     if (log)
3755068f8a7eSTamas Berghammer         log->Printf("ptrace(%d, %" PRIu64 ", %p, %p, %zu)=%lX", req, pid, addr, data, data_size, result);
3756068f8a7eSTamas Berghammer 
3757068f8a7eSTamas Berghammer     PtraceDisplayBytes(req, data, data_size);
3758068f8a7eSTamas Berghammer 
3759068f8a7eSTamas Berghammer     if (log && error.GetError() != 0)
3760068f8a7eSTamas Berghammer     {
3761068f8a7eSTamas Berghammer         const char* str;
3762068f8a7eSTamas Berghammer         switch (error.GetError())
3763068f8a7eSTamas Berghammer         {
3764068f8a7eSTamas Berghammer         case ESRCH:  str = "ESRCH"; break;
3765068f8a7eSTamas Berghammer         case EINVAL: str = "EINVAL"; break;
3766068f8a7eSTamas Berghammer         case EBUSY:  str = "EBUSY"; break;
3767068f8a7eSTamas Berghammer         case EPERM:  str = "EPERM"; break;
3768068f8a7eSTamas Berghammer         default:     str = error.AsCString();
3769068f8a7eSTamas Berghammer         }
3770068f8a7eSTamas Berghammer         log->Printf("ptrace() failed; errno=%d (%s)", error.GetError(), str);
3771068f8a7eSTamas Berghammer     }
3772068f8a7eSTamas Berghammer 
3773068f8a7eSTamas Berghammer     return result;
3774068f8a7eSTamas Berghammer }
3775