1 //===-- NativeProcessLinux.cpp -------------------------------- -*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #include "lldb/lldb-python.h"
11 
12 #include "NativeProcessLinux.h"
13 
14 // C Includes
15 #include <errno.h>
16 #include <poll.h>
17 #include <string.h>
18 #include <stdint.h>
19 #include <unistd.h>
20 #include <linux/unistd.h>
21 #if defined(__ANDROID_NDK__) && defined (__arm__)
22 #include <linux/personality.h>
23 #include <linux/user.h>
24 #else
25 #include <sys/personality.h>
26 #include <sys/user.h>
27 #endif
28 #ifndef __ANDROID__
29 #include <sys/procfs.h>
30 #endif
31 #include <sys/ptrace.h>
32 #include <sys/uio.h>
33 #include <sys/socket.h>
34 #include <sys/syscall.h>
35 #include <sys/types.h>
36 #include <sys/wait.h>
37 
38 #if defined (__arm64__) || defined (__aarch64__)
39 // NT_PRSTATUS and NT_FPREGSET definition
40 #include <elf.h>
41 #endif
42 
43 // C++ Includes
44 #include <fstream>
45 #include <string>
46 
47 // Other libraries and framework includes
48 #include "lldb/Core/Debugger.h"
49 #include "lldb/Core/Error.h"
50 #include "lldb/Core/Module.h"
51 #include "lldb/Core/ModuleSpec.h"
52 #include "lldb/Core/RegisterValue.h"
53 #include "lldb/Core/Scalar.h"
54 #include "lldb/Core/State.h"
55 #include "lldb/Host/Host.h"
56 #include "lldb/Host/HostInfo.h"
57 #include "lldb/Host/ThreadLauncher.h"
58 #include "lldb/Symbol/ObjectFile.h"
59 #include "lldb/Host/common/NativeRegisterContext.h"
60 #include "lldb/Target/ProcessLaunchInfo.h"
61 #include "lldb/Utility/PseudoTerminal.h"
62 
63 #include "lldb/Host/common/NativeBreakpoint.h"
64 #include "Utility/StringExtractor.h"
65 
66 #include "Plugins/Process/Utility/LinuxSignals.h"
67 #include "NativeThreadLinux.h"
68 #include "ProcFileReader.h"
69 #include "ThreadStateCoordinator.h"
70 #include "Plugins/Process/POSIX/ProcessPOSIXLog.h"
71 
72 #ifdef __ANDROID__
73 #define __ptrace_request int
74 #define PT_DETACH PTRACE_DETACH
75 #endif
76 
77 #define DEBUG_PTRACE_MAXBYTES 20
78 
79 // Support ptrace extensions even when compiled without required kernel support
80 #ifndef PT_GETREGS
81 #ifndef PTRACE_GETREGS
82   #define PTRACE_GETREGS 12
83 #endif
84 #endif
85 #ifndef PT_SETREGS
86 #ifndef PTRACE_SETREGS
87   #define PTRACE_SETREGS 13
88 #endif
89 #endif
90 #ifndef PT_GETFPREGS
91 #ifndef PTRACE_GETFPREGS
92   #define PTRACE_GETFPREGS 14
93 #endif
94 #endif
95 #ifndef PT_SETFPREGS
96 #ifndef PTRACE_SETFPREGS
97   #define PTRACE_SETFPREGS 15
98 #endif
99 #endif
100 #ifndef PTRACE_GETREGSET
101   #define PTRACE_GETREGSET 0x4204
102 #endif
103 #ifndef PTRACE_SETREGSET
104   #define PTRACE_SETREGSET 0x4205
105 #endif
106 #ifndef PTRACE_GET_THREAD_AREA
107   #define PTRACE_GET_THREAD_AREA 25
108 #endif
109 #ifndef PTRACE_ARCH_PRCTL
110   #define PTRACE_ARCH_PRCTL      30
111 #endif
112 #ifndef ARCH_GET_FS
113   #define ARCH_SET_GS 0x1001
114   #define ARCH_SET_FS 0x1002
115   #define ARCH_GET_FS 0x1003
116   #define ARCH_GET_GS 0x1004
117 #endif
118 
119 #define LLDB_PERSONALITY_GET_CURRENT_SETTINGS  0xffffffff
120 
121 // Support hardware breakpoints in case it has not been defined
122 #ifndef TRAP_HWBKPT
123   #define TRAP_HWBKPT 4
124 #endif
125 
126 // Try to define a macro to encapsulate the tgkill syscall
127 // fall back on kill() if tgkill isn't available
128 #define tgkill(pid, tid, sig)  syscall(SYS_tgkill, pid, tid, sig)
129 
130 // We disable the tracing of ptrace calls for integration builds to
131 // avoid the additional indirection and checks.
132 #ifndef LLDB_CONFIGURATION_BUILDANDINTEGRATION
133 #define PTRACE(req, pid, addr, data, data_size, error) \
134     PtraceWrapper((req), (pid), (addr), (data), (data_size), (error), #req, __FILE__, __LINE__)
135 #else
136 #define PTRACE(req, pid, addr, data, data_size, error) \
137     PtraceWrapper((req), (pid), (addr), (data), (data_size), (error))
138 #endif
139 
140 // Private bits we only need internally.
141 namespace
142 {
143     using namespace lldb;
144     using namespace lldb_private;
145 
146     const UnixSignals&
147     GetUnixSignals ()
148     {
149         static process_linux::LinuxSignals signals;
150         return signals;
151     }
152 
153     ThreadStateCoordinator::LogFunction
154     GetThreadLoggerFunction ()
155     {
156         return [](const char *format, va_list args)
157         {
158             Log *const log = GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD);
159             if (log)
160                 log->VAPrintf (format, args);
161         };
162     }
163 
164     void
165     CoordinatorErrorHandler (const std::string &error_message)
166     {
167         Log *const log = GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD);
168         if (log)
169             log->Printf ("NativeProcessLinux::%s %s", __FUNCTION__, error_message.c_str ());
170         assert (false && "ThreadStateCoordinator error reported");
171     }
172 
173     Error
174     ResolveProcessArchitecture (lldb::pid_t pid, Platform &platform, ArchSpec &arch)
175     {
176         // Grab process info for the running process.
177         ProcessInstanceInfo process_info;
178         if (!platform.GetProcessInfo (pid, process_info))
179             return lldb_private::Error("failed to get process info");
180 
181         // Resolve the executable module.
182         ModuleSP exe_module_sp;
183         ModuleSpec exe_module_spec(process_info.GetExecutableFile(), platform.GetSystemArchitecture ());
184         FileSpecList executable_search_paths (Target::GetDefaultExecutableSearchPaths ());
185         Error error = platform.ResolveExecutable(
186             exe_module_spec,
187             exe_module_sp,
188             executable_search_paths.GetSize () ? &executable_search_paths : NULL);
189 
190         if (!error.Success ())
191             return error;
192 
193         // Check if we've got our architecture from the exe_module.
194         arch = exe_module_sp->GetArchitecture ();
195         if (arch.IsValid ())
196             return Error();
197         else
198             return Error("failed to retrieve a valid architecture from the exe module");
199     }
200 
201     void
202     DisplayBytes (lldb_private::StreamString &s, void *bytes, uint32_t count)
203     {
204         uint8_t *ptr = (uint8_t *)bytes;
205         const uint32_t loop_count = std::min<uint32_t>(DEBUG_PTRACE_MAXBYTES, count);
206         for(uint32_t i=0; i<loop_count; i++)
207         {
208             s.Printf ("[%x]", *ptr);
209             ptr++;
210         }
211     }
212 
213     void
214     PtraceDisplayBytes(int &req, void *data, size_t data_size)
215     {
216         StreamString buf;
217         Log *verbose_log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (
218                     POSIX_LOG_PTRACE | POSIX_LOG_VERBOSE));
219 
220         if (verbose_log)
221         {
222             switch(req)
223             {
224             case PTRACE_POKETEXT:
225             {
226                 DisplayBytes(buf, &data, 8);
227                 verbose_log->Printf("PTRACE_POKETEXT %s", buf.GetData());
228                 break;
229             }
230             case PTRACE_POKEDATA:
231             {
232                 DisplayBytes(buf, &data, 8);
233                 verbose_log->Printf("PTRACE_POKEDATA %s", buf.GetData());
234                 break;
235             }
236             case PTRACE_POKEUSER:
237             {
238                 DisplayBytes(buf, &data, 8);
239                 verbose_log->Printf("PTRACE_POKEUSER %s", buf.GetData());
240                 break;
241             }
242             case PTRACE_SETREGS:
243             {
244                 DisplayBytes(buf, data, data_size);
245                 verbose_log->Printf("PTRACE_SETREGS %s", buf.GetData());
246                 break;
247             }
248             case PTRACE_SETFPREGS:
249             {
250                 DisplayBytes(buf, data, data_size);
251                 verbose_log->Printf("PTRACE_SETFPREGS %s", buf.GetData());
252                 break;
253             }
254             case PTRACE_SETSIGINFO:
255             {
256                 DisplayBytes(buf, data, sizeof(siginfo_t));
257                 verbose_log->Printf("PTRACE_SETSIGINFO %s", buf.GetData());
258                 break;
259             }
260             case PTRACE_SETREGSET:
261             {
262                 // Extract iov_base from data, which is a pointer to the struct IOVEC
263                 DisplayBytes(buf, *(void **)data, data_size);
264                 verbose_log->Printf("PTRACE_SETREGSET %s", buf.GetData());
265                 break;
266             }
267             default:
268             {
269             }
270             }
271         }
272     }
273 
274     // Wrapper for ptrace to catch errors and log calls.
275     // Note that ptrace sets errno on error because -1 can be a valid result (i.e. for PTRACE_PEEK*)
276     long
277     PtraceWrapper(int req, lldb::pid_t pid, void *addr, void *data, size_t data_size, Error& error,
278                   const char* reqName, const char* file, int line)
279     {
280         long int result;
281 
282         Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (POSIX_LOG_PTRACE));
283 
284         PtraceDisplayBytes(req, data, data_size);
285 
286         error.Clear();
287         errno = 0;
288         if (req == PTRACE_GETREGSET || req == PTRACE_SETREGSET)
289             result = ptrace(static_cast<__ptrace_request>(req), static_cast< ::pid_t>(pid), *(unsigned int *)addr, data);
290         else
291             result = ptrace(static_cast<__ptrace_request>(req), static_cast< ::pid_t>(pid), addr, data);
292 
293         if (result == -1)
294             error.SetErrorToErrno();
295 
296         if (log)
297             log->Printf("ptrace(%s, %" PRIu64 ", %p, %p, %zu)=%lX called from file %s line %d",
298                     reqName, pid, addr, data, data_size, result, file, line);
299 
300         PtraceDisplayBytes(req, data, data_size);
301 
302         if (log && error.GetError() != 0)
303         {
304             const char* str;
305             switch (error.GetError())
306             {
307             case ESRCH:  str = "ESRCH"; break;
308             case EINVAL: str = "EINVAL"; break;
309             case EBUSY:  str = "EBUSY"; break;
310             case EPERM:  str = "EPERM"; break;
311             default:     str = error.AsCString();
312             }
313             log->Printf("ptrace() failed; errno=%d (%s)", error.GetError(), str);
314         }
315 
316         return result;
317     }
318 
319 #ifdef LLDB_CONFIGURATION_BUILDANDINTEGRATION
320     // Wrapper for ptrace when logging is not required.
321     // Sets errno to 0 prior to calling ptrace.
322     long
323     PtraceWrapper(int req, lldb::pid_t pid, void *addr, void *data, size_t data_size, Error& error)
324     {
325         long result = 0;
326 
327         error.Clear();
328         errno = 0;
329         if (req == PTRACE_GETREGSET || req == PTRACE_SETREGSET)
330             result = ptrace(static_cast<__ptrace_request>(req), static_cast< ::pid_t>(pid), *(unsigned int *)addr, data);
331         else
332             result = ptrace(static_cast<__ptrace_request>(req), static_cast< ::pid_t>(pid), addr, data);
333 
334         if (result == -1)
335             error.SetErrorToErrno();
336         return result;
337     }
338 #endif
339 
340     //------------------------------------------------------------------------------
341     // Static implementations of NativeProcessLinux::ReadMemory and
342     // NativeProcessLinux::WriteMemory.  This enables mutual recursion between these
343     // functions without needed to go thru the thread funnel.
344 
345     lldb::addr_t
346     DoReadMemory (
347         lldb::pid_t pid,
348         lldb::addr_t vm_addr,
349         void *buf,
350         lldb::addr_t size,
351         Error &error)
352     {
353         // ptrace word size is determined by the host, not the child
354         static const unsigned word_size = sizeof(void*);
355         unsigned char *dst = static_cast<unsigned char*>(buf);
356         lldb::addr_t bytes_read;
357         lldb::addr_t remainder;
358         long data;
359 
360         Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (POSIX_LOG_ALL));
361         if (log)
362             ProcessPOSIXLog::IncNestLevel();
363         if (log && ProcessPOSIXLog::AtTopNestLevel() && log->GetMask().Test(POSIX_LOG_MEMORY))
364             log->Printf ("NativeProcessLinux::%s(%" PRIu64 ", %d, %p, %p, %zd, _)", __FUNCTION__,
365                     pid, word_size, (void*)vm_addr, buf, size);
366 
367         assert(sizeof(data) >= word_size);
368         for (bytes_read = 0; bytes_read < size; bytes_read += remainder)
369         {
370             data = PTRACE(PTRACE_PEEKDATA, pid, (void*)vm_addr, nullptr, 0, error);
371             if (error.Fail())
372             {
373                 if (log)
374                     ProcessPOSIXLog::DecNestLevel();
375                 return bytes_read;
376             }
377 
378             remainder = size - bytes_read;
379             remainder = remainder > word_size ? word_size : remainder;
380 
381             // Copy the data into our buffer
382             for (unsigned i = 0; i < remainder; ++i)
383                 dst[i] = ((data >> i*8) & 0xFF);
384 
385             if (log && ProcessPOSIXLog::AtTopNestLevel() &&
386                     (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_LONG) ||
387                             (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_SHORT) &&
388                                     size <= POSIX_LOG_MEMORY_SHORT_BYTES)))
389             {
390                 uintptr_t print_dst = 0;
391                 // Format bytes from data by moving into print_dst for log output
392                 for (unsigned i = 0; i < remainder; ++i)
393                     print_dst |= (((data >> i*8) & 0xFF) << i*8);
394                 log->Printf ("NativeProcessLinux::%s() [%p]:0x%lx (0x%lx)", __FUNCTION__,
395                         (void*)vm_addr, print_dst, (unsigned long)data);
396             }
397 
398             vm_addr += word_size;
399             dst += word_size;
400         }
401 
402         if (log)
403             ProcessPOSIXLog::DecNestLevel();
404         return bytes_read;
405     }
406 
407     lldb::addr_t
408     DoWriteMemory(
409         lldb::pid_t pid,
410         lldb::addr_t vm_addr,
411         const void *buf,
412         lldb::addr_t size,
413         Error &error)
414     {
415         // ptrace word size is determined by the host, not the child
416         static const unsigned word_size = sizeof(void*);
417         const unsigned char *src = static_cast<const unsigned char*>(buf);
418         lldb::addr_t bytes_written = 0;
419         lldb::addr_t remainder;
420 
421         Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (POSIX_LOG_ALL));
422         if (log)
423             ProcessPOSIXLog::IncNestLevel();
424         if (log && ProcessPOSIXLog::AtTopNestLevel() && log->GetMask().Test(POSIX_LOG_MEMORY))
425             log->Printf ("NativeProcessLinux::%s(%" PRIu64 ", %u, %p, %p, %" PRIu64 ")", __FUNCTION__,
426                     pid, word_size, (void*)vm_addr, buf, size);
427 
428         for (bytes_written = 0; bytes_written < size; bytes_written += remainder)
429         {
430             remainder = size - bytes_written;
431             remainder = remainder > word_size ? word_size : remainder;
432 
433             if (remainder == word_size)
434             {
435                 unsigned long data = 0;
436                 assert(sizeof(data) >= word_size);
437                 for (unsigned i = 0; i < word_size; ++i)
438                     data |= (unsigned long)src[i] << i*8;
439 
440                 if (log && ProcessPOSIXLog::AtTopNestLevel() &&
441                         (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_LONG) ||
442                                 (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_SHORT) &&
443                                         size <= POSIX_LOG_MEMORY_SHORT_BYTES)))
444                     log->Printf ("NativeProcessLinux::%s() [%p]:0x%lx (0x%lx)", __FUNCTION__,
445                             (void*)vm_addr, *(unsigned long*)src, data);
446 
447                 if (PTRACE(PTRACE_POKEDATA, pid, (void*)vm_addr, (void*)data, 0, error))
448                 {
449                     if (log)
450                         ProcessPOSIXLog::DecNestLevel();
451                     return bytes_written;
452                 }
453             }
454             else
455             {
456                 unsigned char buff[8];
457                 if (DoReadMemory(pid, vm_addr,
458                                 buff, word_size, error) != word_size)
459                 {
460                     if (log)
461                         ProcessPOSIXLog::DecNestLevel();
462                     return bytes_written;
463                 }
464 
465                 memcpy(buff, src, remainder);
466 
467                 if (DoWriteMemory(pid, vm_addr,
468                                 buff, word_size, error) != word_size)
469                 {
470                     if (log)
471                         ProcessPOSIXLog::DecNestLevel();
472                     return bytes_written;
473                 }
474 
475                 if (log && ProcessPOSIXLog::AtTopNestLevel() &&
476                         (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_LONG) ||
477                                 (log->GetMask().Test(POSIX_LOG_MEMORY_DATA_SHORT) &&
478                                         size <= POSIX_LOG_MEMORY_SHORT_BYTES)))
479                     log->Printf ("NativeProcessLinux::%s() [%p]:0x%lx (0x%lx)", __FUNCTION__,
480                             (void*)vm_addr, *(unsigned long*)src, *(unsigned long*)buff);
481             }
482 
483             vm_addr += word_size;
484             src += word_size;
485         }
486         if (log)
487             ProcessPOSIXLog::DecNestLevel();
488         return bytes_written;
489     }
490 
491     //------------------------------------------------------------------------------
492     /// @class Operation
493     /// @brief Represents a NativeProcessLinux operation.
494     ///
495     /// Under Linux, it is not possible to ptrace() from any other thread but the
496     /// one that spawned or attached to the process from the start.  Therefore, when
497     /// a NativeProcessLinux is asked to deliver or change the state of an inferior
498     /// process the operation must be "funneled" to a specific thread to perform the
499     /// task.  The Operation class provides an abstract base for all services the
500     /// NativeProcessLinux must perform via the single virtual function Execute, thus
501     /// encapsulating the code that needs to run in the privileged context.
502     class Operation
503     {
504     public:
505         Operation () : m_error() { }
506 
507         virtual
508         ~Operation() {}
509 
510         virtual void
511         Execute (NativeProcessLinux *process) = 0;
512 
513         const Error &
514         GetError () const { return m_error; }
515 
516     protected:
517         Error m_error;
518     };
519 
520     //------------------------------------------------------------------------------
521     /// @class ReadOperation
522     /// @brief Implements NativeProcessLinux::ReadMemory.
523     class ReadOperation : public Operation
524     {
525     public:
526         ReadOperation (
527             lldb::addr_t addr,
528             void *buff,
529             lldb::addr_t size,
530             lldb::addr_t &result) :
531             Operation (),
532             m_addr (addr),
533             m_buff (buff),
534             m_size (size),
535             m_result (result)
536             {
537             }
538 
539         void Execute (NativeProcessLinux *process) override;
540 
541     private:
542         lldb::addr_t m_addr;
543         void *m_buff;
544         lldb::addr_t m_size;
545         lldb::addr_t &m_result;
546     };
547 
548     void
549     ReadOperation::Execute (NativeProcessLinux *process)
550     {
551         m_result = DoReadMemory (process->GetID (), m_addr, m_buff, m_size, m_error);
552     }
553 
554     //------------------------------------------------------------------------------
555     /// @class WriteOperation
556     /// @brief Implements NativeProcessLinux::WriteMemory.
557     class WriteOperation : public Operation
558     {
559     public:
560         WriteOperation (
561             lldb::addr_t addr,
562             const void *buff,
563             lldb::addr_t size,
564             lldb::addr_t &result) :
565             Operation (),
566             m_addr (addr),
567             m_buff (buff),
568             m_size (size),
569             m_result (result)
570             {
571             }
572 
573         void Execute (NativeProcessLinux *process) override;
574 
575     private:
576         lldb::addr_t m_addr;
577         const void *m_buff;
578         lldb::addr_t m_size;
579         lldb::addr_t &m_result;
580     };
581 
582     void
583     WriteOperation::Execute(NativeProcessLinux *process)
584     {
585         m_result = DoWriteMemory (process->GetID (), m_addr, m_buff, m_size, m_error);
586     }
587 
588     //------------------------------------------------------------------------------
589     /// @class ReadRegOperation
590     /// @brief Implements NativeProcessLinux::ReadRegisterValue.
591     class ReadRegOperation : public Operation
592     {
593     public:
594         ReadRegOperation(lldb::tid_t tid, uint32_t offset, const char *reg_name,
595                 RegisterValue &value)
596             : m_tid(tid),
597               m_offset(static_cast<uintptr_t> (offset)),
598               m_reg_name(reg_name),
599               m_value(value)
600             { }
601 
602         void Execute(NativeProcessLinux *monitor);
603 
604     private:
605         lldb::tid_t m_tid;
606         uintptr_t m_offset;
607         const char *m_reg_name;
608         RegisterValue &m_value;
609     };
610 
611     void
612     ReadRegOperation::Execute(NativeProcessLinux *monitor)
613     {
614 #if defined (__arm64__) || defined (__aarch64__)
615         if (m_offset > sizeof(struct user_pt_regs))
616         {
617             uintptr_t offset = m_offset - sizeof(struct user_pt_regs);
618             if (offset > sizeof(struct user_fpsimd_state))
619             {
620                 m_error.SetErrorString("invalid offset value");
621                 return;
622             }
623             elf_fpregset_t regs;
624             int regset = NT_FPREGSET;
625             struct iovec ioVec;
626 
627             ioVec.iov_base = &regs;
628             ioVec.iov_len = sizeof regs;
629             PTRACE(PTRACE_GETREGSET, m_tid, &regset, &ioVec, sizeof regs, m_error);
630             if (m_error.Success())
631             {
632                 lldb_private::ArchSpec arch;
633                 if (monitor->GetArchitecture(arch))
634                     m_value.SetBytes((void *)(((unsigned char *)(&regs)) + offset), 16, arch.GetByteOrder());
635                 else
636                     m_error.SetErrorString("failed to get architecture");
637             }
638         }
639         else
640         {
641             elf_gregset_t regs;
642             int regset = NT_PRSTATUS;
643             struct iovec ioVec;
644 
645             ioVec.iov_base = &regs;
646             ioVec.iov_len = sizeof regs;
647             PTRACE(PTRACE_GETREGSET, m_tid, &regset, &ioVec, sizeof regs, m_error);
648             if (m_error.Success())
649             {
650                 lldb_private::ArchSpec arch;
651                 if (monitor->GetArchitecture(arch))
652                     m_value.SetBytes((void *)(((unsigned char *)(regs)) + m_offset), 8, arch.GetByteOrder());
653                 else
654                     m_error.SetErrorString("failed to get architecture");
655             }
656         }
657 #else
658         Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (POSIX_LOG_REGISTERS));
659 
660         lldb::addr_t data = PTRACE(PTRACE_PEEKUSER, m_tid, (void*)m_offset, nullptr, 0, m_error);
661         if (m_error.Success())
662             m_value = data;
663 
664         if (log)
665             log->Printf ("NativeProcessLinux::%s() reg %s: 0x%" PRIx64, __FUNCTION__,
666                     m_reg_name, data);
667 #endif
668     }
669 
670     //------------------------------------------------------------------------------
671     /// @class WriteRegOperation
672     /// @brief Implements NativeProcessLinux::WriteRegisterValue.
673     class WriteRegOperation : public Operation
674     {
675     public:
676         WriteRegOperation(lldb::tid_t tid, unsigned offset, const char *reg_name,
677                 const RegisterValue &value)
678             : m_tid(tid),
679               m_offset(offset),
680               m_reg_name(reg_name),
681               m_value(value)
682             { }
683 
684         void Execute(NativeProcessLinux *monitor);
685 
686     private:
687         lldb::tid_t m_tid;
688         uintptr_t m_offset;
689         const char *m_reg_name;
690         const RegisterValue &m_value;
691     };
692 
693     void
694     WriteRegOperation::Execute(NativeProcessLinux *monitor)
695     {
696 #if defined (__arm64__) || defined (__aarch64__)
697         if (m_offset > sizeof(struct user_pt_regs))
698         {
699             uintptr_t offset = m_offset - sizeof(struct user_pt_regs);
700             if (offset > sizeof(struct user_fpsimd_state))
701             {
702                 m_error.SetErrorString("invalid offset value");
703                 return;
704             }
705             elf_fpregset_t regs;
706             int regset = NT_FPREGSET;
707             struct iovec ioVec;
708 
709             ioVec.iov_base = &regs;
710             ioVec.iov_len = sizeof regs;
711             PTRACE(PTRACE_GETREGSET, m_tid, &regset, &ioVec, sizeof regs, m_error);
712             if (m_error.Sucess())
713             {
714                 ::memcpy((void *)(((unsigned char *)(&regs)) + offset), m_value.GetBytes(), 16);
715                 PTRACE(PTRACE_SETREGSET, m_tid, &regset, &ioVec, sizeof regs, m_error);
716             }
717         }
718         else
719         {
720             elf_gregset_t regs;
721             int regset = NT_PRSTATUS;
722             struct iovec ioVec;
723 
724             ioVec.iov_base = &regs;
725             ioVec.iov_len = sizeof regs;
726             PTRACE(PTRACE_GETREGSET, m_tid, &regset, &ioVec, sizeof regs, m_error);
727             if (m_error.Sucess())
728             {
729                 ::memcpy((void *)(((unsigned char *)(&regs)) + m_offset), m_value.GetBytes(), 8);
730                 PTRACE(PTRACE_SETREGSET, m_tid, &regset, &ioVec, sizeof regs, m_error);
731             }
732         }
733 #else
734         void* buf;
735         Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (POSIX_LOG_REGISTERS));
736 
737         buf = (void*) m_value.GetAsUInt64();
738 
739         if (log)
740             log->Printf ("NativeProcessLinux::%s() reg %s: %p", __FUNCTION__, m_reg_name, buf);
741         PTRACE(PTRACE_POKEUSER, m_tid, (void*)m_offset, buf, 0, m_error);
742 #endif
743     }
744 
745     //------------------------------------------------------------------------------
746     /// @class ReadGPROperation
747     /// @brief Implements NativeProcessLinux::ReadGPR.
748     class ReadGPROperation : public Operation
749     {
750     public:
751         ReadGPROperation(lldb::tid_t tid, void *buf, size_t buf_size)
752             : m_tid(tid), m_buf(buf), m_buf_size(buf_size)
753             { }
754 
755         void Execute(NativeProcessLinux *monitor);
756 
757     private:
758         lldb::tid_t m_tid;
759         void *m_buf;
760         size_t m_buf_size;
761     };
762 
763     void
764     ReadGPROperation::Execute(NativeProcessLinux *monitor)
765     {
766 #if defined (__arm64__) || defined (__aarch64__)
767         int regset = NT_PRSTATUS;
768         struct iovec ioVec;
769 
770         ioVec.iov_base = m_buf;
771         ioVec.iov_len = m_buf_size;
772         PTRACE(PTRACE_GETREGSET, m_tid, &regset, &ioVec, m_buf_size, m_error);
773 #else
774         PTRACE(PTRACE_GETREGS, m_tid, nullptr, m_buf, m_buf_size, m_error);
775 #endif
776     }
777 
778     //------------------------------------------------------------------------------
779     /// @class ReadFPROperation
780     /// @brief Implements NativeProcessLinux::ReadFPR.
781     class ReadFPROperation : public Operation
782     {
783     public:
784         ReadFPROperation(lldb::tid_t tid, void *buf, size_t buf_size)
785             : m_tid(tid),
786               m_buf(buf),
787               m_buf_size(buf_size)
788             { }
789 
790         void Execute(NativeProcessLinux *monitor);
791 
792     private:
793         lldb::tid_t m_tid;
794         void *m_buf;
795         size_t m_buf_size;
796     };
797 
798     void
799     ReadFPROperation::Execute(NativeProcessLinux *monitor)
800     {
801 #if defined (__arm64__) || defined (__aarch64__)
802         int regset = NT_FPREGSET;
803         struct iovec ioVec;
804 
805         ioVec.iov_base = m_buf;
806         ioVec.iov_len = m_buf_size;
807         if (PTRACE(PTRACE_GETREGSET, m_tid, &regset, &ioVec, m_buf_size) < 0)
808             m_result = false;
809         else
810             m_result = true;
811 #else
812         PTRACE(PTRACE_GETFPREGS, m_tid, nullptr, m_buf, m_buf_size, m_error);
813 #endif
814     }
815 
816     //------------------------------------------------------------------------------
817     /// @class ReadRegisterSetOperation
818     /// @brief Implements NativeProcessLinux::ReadRegisterSet.
819     class ReadRegisterSetOperation : public Operation
820     {
821     public:
822         ReadRegisterSetOperation(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset)
823             : m_tid(tid), m_buf(buf), m_buf_size(buf_size), m_regset(regset)
824             { }
825 
826         void Execute(NativeProcessLinux *monitor);
827 
828     private:
829         lldb::tid_t m_tid;
830         void *m_buf;
831         size_t m_buf_size;
832         const unsigned int m_regset;
833     };
834 
835     void
836     ReadRegisterSetOperation::Execute(NativeProcessLinux *monitor)
837     {
838         PTRACE(PTRACE_GETREGSET, m_tid, (void *)&m_regset, m_buf, m_buf_size, m_error);
839     }
840 
841     //------------------------------------------------------------------------------
842     /// @class WriteGPROperation
843     /// @brief Implements NativeProcessLinux::WriteGPR.
844     class WriteGPROperation : public Operation
845     {
846     public:
847         WriteGPROperation(lldb::tid_t tid, void *buf, size_t buf_size)
848             : m_tid(tid), m_buf(buf), m_buf_size(buf_size)
849             { }
850 
851         void Execute(NativeProcessLinux *monitor);
852 
853     private:
854         lldb::tid_t m_tid;
855         void *m_buf;
856         size_t m_buf_size;
857     };
858 
859     void
860     WriteGPROperation::Execute(NativeProcessLinux *monitor)
861     {
862 #if defined (__arm64__) || defined (__aarch64__)
863         int regset = NT_PRSTATUS;
864         struct iovec ioVec;
865 
866         ioVec.iov_base = m_buf;
867         ioVec.iov_len = m_buf_size;
868         PTRACE(PTRACE_SETREGSET, m_tid, &regset, &ioVec, m_buf_size, m_error);
869 #else
870         PTRACE(PTRACE_SETREGS, m_tid, NULL, m_buf, m_buf_size, m_error);
871 #endif
872     }
873 
874     //------------------------------------------------------------------------------
875     /// @class WriteFPROperation
876     /// @brief Implements NativeProcessLinux::WriteFPR.
877     class WriteFPROperation : public Operation
878     {
879     public:
880         WriteFPROperation(lldb::tid_t tid, void *buf, size_t buf_size)
881             : m_tid(tid), m_buf(buf), m_buf_size(buf_size)
882             { }
883 
884         void Execute(NativeProcessLinux *monitor);
885 
886     private:
887         lldb::tid_t m_tid;
888         void *m_buf;
889         size_t m_buf_size;
890     };
891 
892     void
893     WriteFPROperation::Execute(NativeProcessLinux *monitor)
894     {
895 #if defined (__arm64__) || defined (__aarch64__)
896         int regset = NT_FPREGSET;
897         struct iovec ioVec;
898 
899         ioVec.iov_base = m_buf;
900         ioVec.iov_len = m_buf_size;
901         PTRACE(PTRACE_SETREGSET, m_tid, &regset, &ioVec, m_buf_size, m_error);
902 #else
903         PTRACE(PTRACE_SETFPREGS, m_tid, NULL, m_buf, m_buf_size, m_error);
904 #endif
905     }
906 
907     //------------------------------------------------------------------------------
908     /// @class WriteRegisterSetOperation
909     /// @brief Implements NativeProcessLinux::WriteRegisterSet.
910     class WriteRegisterSetOperation : public Operation
911     {
912     public:
913         WriteRegisterSetOperation(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset)
914             : m_tid(tid), m_buf(buf), m_buf_size(buf_size), m_regset(regset)
915             { }
916 
917         void Execute(NativeProcessLinux *monitor);
918 
919     private:
920         lldb::tid_t m_tid;
921         void *m_buf;
922         size_t m_buf_size;
923         const unsigned int m_regset;
924     };
925 
926     void
927     WriteRegisterSetOperation::Execute(NativeProcessLinux *monitor)
928     {
929         PTRACE(PTRACE_SETREGSET, m_tid, (void *)&m_regset, m_buf, m_buf_size, m_error);
930     }
931 
932     //------------------------------------------------------------------------------
933     /// @class ResumeOperation
934     /// @brief Implements NativeProcessLinux::Resume.
935     class ResumeOperation : public Operation
936     {
937     public:
938         ResumeOperation(lldb::tid_t tid, uint32_t signo) :
939             m_tid(tid), m_signo(signo) { }
940 
941         void Execute(NativeProcessLinux *monitor);
942 
943     private:
944         lldb::tid_t m_tid;
945         uint32_t m_signo;
946     };
947 
948     void
949     ResumeOperation::Execute(NativeProcessLinux *monitor)
950     {
951         intptr_t data = 0;
952 
953         if (m_signo != LLDB_INVALID_SIGNAL_NUMBER)
954             data = m_signo;
955 
956         PTRACE(PTRACE_CONT, m_tid, nullptr, (void*)data, 0, m_error);
957         if (m_error.Fail())
958         {
959             Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
960 
961             if (log)
962                 log->Printf ("ResumeOperation (%"  PRIu64 ") failed: %s", m_tid, m_error.AsCString());
963         }
964     }
965 
966     //------------------------------------------------------------------------------
967     /// @class SingleStepOperation
968     /// @brief Implements NativeProcessLinux::SingleStep.
969     class SingleStepOperation : public Operation
970     {
971     public:
972         SingleStepOperation(lldb::tid_t tid, uint32_t signo)
973             : m_tid(tid), m_signo(signo) { }
974 
975         void Execute(NativeProcessLinux *monitor);
976 
977     private:
978         lldb::tid_t m_tid;
979         uint32_t m_signo;
980     };
981 
982     void
983     SingleStepOperation::Execute(NativeProcessLinux *monitor)
984     {
985         intptr_t data = 0;
986 
987         if (m_signo != LLDB_INVALID_SIGNAL_NUMBER)
988             data = m_signo;
989 
990         PTRACE(PTRACE_SINGLESTEP, m_tid, nullptr, (void*)data, 0, m_error);
991     }
992 
993     //------------------------------------------------------------------------------
994     /// @class SiginfoOperation
995     /// @brief Implements NativeProcessLinux::GetSignalInfo.
996     class SiginfoOperation : public Operation
997     {
998     public:
999         SiginfoOperation(lldb::tid_t tid, void *info)
1000             : m_tid(tid), m_info(info) { }
1001 
1002         void Execute(NativeProcessLinux *monitor);
1003 
1004     private:
1005         lldb::tid_t m_tid;
1006         void *m_info;
1007     };
1008 
1009     void
1010     SiginfoOperation::Execute(NativeProcessLinux *monitor)
1011     {
1012         PTRACE(PTRACE_GETSIGINFO, m_tid, nullptr, m_info, 0, m_error);
1013     }
1014 
1015     //------------------------------------------------------------------------------
1016     /// @class EventMessageOperation
1017     /// @brief Implements NativeProcessLinux::GetEventMessage.
1018     class EventMessageOperation : public Operation
1019     {
1020     public:
1021         EventMessageOperation(lldb::tid_t tid, unsigned long *message)
1022             : m_tid(tid), m_message(message) { }
1023 
1024         void Execute(NativeProcessLinux *monitor);
1025 
1026     private:
1027         lldb::tid_t m_tid;
1028         unsigned long *m_message;
1029     };
1030 
1031     void
1032     EventMessageOperation::Execute(NativeProcessLinux *monitor)
1033     {
1034         PTRACE(PTRACE_GETEVENTMSG, m_tid, nullptr, m_message, 0, m_error);
1035     }
1036 
1037     class DetachOperation : public Operation
1038     {
1039     public:
1040         DetachOperation(lldb::tid_t tid) : m_tid(tid) { }
1041 
1042         void Execute(NativeProcessLinux *monitor);
1043 
1044     private:
1045         lldb::tid_t m_tid;
1046     };
1047 
1048     void
1049     DetachOperation::Execute(NativeProcessLinux *monitor)
1050     {
1051         PTRACE(PTRACE_DETACH, m_tid, nullptr, 0, 0, m_error);
1052     }
1053 
1054 }
1055 
1056 using namespace lldb_private;
1057 
1058 // Simple helper function to ensure flags are enabled on the given file
1059 // descriptor.
1060 static bool
1061 EnsureFDFlags(int fd, int flags, Error &error)
1062 {
1063     int status;
1064 
1065     if ((status = fcntl(fd, F_GETFL)) == -1)
1066     {
1067         error.SetErrorToErrno();
1068         return false;
1069     }
1070 
1071     if (fcntl(fd, F_SETFL, status | flags) == -1)
1072     {
1073         error.SetErrorToErrno();
1074         return false;
1075     }
1076 
1077     return true;
1078 }
1079 
1080 NativeProcessLinux::OperationArgs::OperationArgs(NativeProcessLinux *monitor)
1081     : m_monitor(monitor)
1082 {
1083     sem_init(&m_semaphore, 0, 0);
1084 }
1085 
1086 NativeProcessLinux::OperationArgs::~OperationArgs()
1087 {
1088     sem_destroy(&m_semaphore);
1089 }
1090 
1091 NativeProcessLinux::LaunchArgs::LaunchArgs(NativeProcessLinux *monitor,
1092                                        lldb_private::Module *module,
1093                                        char const **argv,
1094                                        char const **envp,
1095                                        const std::string &stdin_path,
1096                                        const std::string &stdout_path,
1097                                        const std::string &stderr_path,
1098                                        const char *working_dir,
1099                                        const lldb_private::ProcessLaunchInfo &launch_info)
1100     : OperationArgs(monitor),
1101       m_module(module),
1102       m_argv(argv),
1103       m_envp(envp),
1104       m_stdin_path(stdin_path),
1105       m_stdout_path(stdout_path),
1106       m_stderr_path(stderr_path),
1107       m_working_dir(working_dir),
1108       m_launch_info(launch_info)
1109 {
1110 }
1111 
1112 NativeProcessLinux::LaunchArgs::~LaunchArgs()
1113 { }
1114 
1115 NativeProcessLinux::AttachArgs::AttachArgs(NativeProcessLinux *monitor,
1116                                        lldb::pid_t pid)
1117     : OperationArgs(monitor), m_pid(pid) { }
1118 
1119 NativeProcessLinux::AttachArgs::~AttachArgs()
1120 { }
1121 
1122 // -----------------------------------------------------------------------------
1123 // Public Static Methods
1124 // -----------------------------------------------------------------------------
1125 
1126 lldb_private::Error
1127 NativeProcessLinux::LaunchProcess (
1128     lldb_private::Module *exe_module,
1129     lldb_private::ProcessLaunchInfo &launch_info,
1130     lldb_private::NativeProcessProtocol::NativeDelegate &native_delegate,
1131     NativeProcessProtocolSP &native_process_sp)
1132 {
1133     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1134 
1135     Error error;
1136 
1137     // Verify the working directory is valid if one was specified.
1138     const char* working_dir = launch_info.GetWorkingDirectory ();
1139     if (working_dir)
1140     {
1141       FileSpec working_dir_fs (working_dir, true);
1142       if (!working_dir_fs || working_dir_fs.GetFileType () != FileSpec::eFileTypeDirectory)
1143       {
1144           error.SetErrorStringWithFormat ("No such file or directory: %s", working_dir);
1145           return error;
1146       }
1147     }
1148 
1149     const lldb_private::FileAction *file_action;
1150 
1151     // Default of NULL will mean to use existing open file descriptors.
1152     std::string stdin_path;
1153     std::string stdout_path;
1154     std::string stderr_path;
1155 
1156     file_action = launch_info.GetFileActionForFD (STDIN_FILENO);
1157     if (file_action)
1158         stdin_path = file_action->GetPath ();
1159 
1160     file_action = launch_info.GetFileActionForFD (STDOUT_FILENO);
1161     if (file_action)
1162         stdout_path = file_action->GetPath ();
1163 
1164     file_action = launch_info.GetFileActionForFD (STDERR_FILENO);
1165     if (file_action)
1166         stderr_path = file_action->GetPath ();
1167 
1168     if (log)
1169     {
1170         if (!stdin_path.empty ())
1171             log->Printf ("NativeProcessLinux::%s setting STDIN to '%s'", __FUNCTION__, stdin_path.c_str ());
1172         else
1173             log->Printf ("NativeProcessLinux::%s leaving STDIN as is", __FUNCTION__);
1174 
1175         if (!stdout_path.empty ())
1176             log->Printf ("NativeProcessLinux::%s setting STDOUT to '%s'", __FUNCTION__, stdout_path.c_str ());
1177         else
1178             log->Printf ("NativeProcessLinux::%s leaving STDOUT as is", __FUNCTION__);
1179 
1180         if (!stderr_path.empty ())
1181             log->Printf ("NativeProcessLinux::%s setting STDERR to '%s'", __FUNCTION__, stderr_path.c_str ());
1182         else
1183             log->Printf ("NativeProcessLinux::%s leaving STDERR as is", __FUNCTION__);
1184     }
1185 
1186     // Create the NativeProcessLinux in launch mode.
1187     native_process_sp.reset (new NativeProcessLinux ());
1188 
1189     if (log)
1190     {
1191         int i = 0;
1192         for (const char **args = launch_info.GetArguments ().GetConstArgumentVector (); *args; ++args, ++i)
1193         {
1194             log->Printf ("NativeProcessLinux::%s arg %d: \"%s\"", __FUNCTION__, i, *args ? *args : "nullptr");
1195             ++i;
1196         }
1197     }
1198 
1199     if (!native_process_sp->RegisterNativeDelegate (native_delegate))
1200     {
1201         native_process_sp.reset ();
1202         error.SetErrorStringWithFormat ("failed to register the native delegate");
1203         return error;
1204     }
1205 
1206     reinterpret_cast<NativeProcessLinux*> (native_process_sp.get ())->LaunchInferior (
1207             exe_module,
1208             launch_info.GetArguments ().GetConstArgumentVector (),
1209             launch_info.GetEnvironmentEntries ().GetConstArgumentVector (),
1210             stdin_path,
1211             stdout_path,
1212             stderr_path,
1213             working_dir,
1214             launch_info,
1215             error);
1216 
1217     if (error.Fail ())
1218     {
1219         native_process_sp.reset ();
1220         if (log)
1221             log->Printf ("NativeProcessLinux::%s failed to launch process: %s", __FUNCTION__, error.AsCString ());
1222         return error;
1223     }
1224 
1225     launch_info.SetProcessID (native_process_sp->GetID ());
1226 
1227     return error;
1228 }
1229 
1230 lldb_private::Error
1231 NativeProcessLinux::AttachToProcess (
1232     lldb::pid_t pid,
1233     lldb_private::NativeProcessProtocol::NativeDelegate &native_delegate,
1234     NativeProcessProtocolSP &native_process_sp)
1235 {
1236     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1237     if (log && log->GetMask ().Test (POSIX_LOG_VERBOSE))
1238         log->Printf ("NativeProcessLinux::%s(pid = %" PRIi64 ")", __FUNCTION__, pid);
1239 
1240     // Grab the current platform architecture.  This should be Linux,
1241     // since this code is only intended to run on a Linux host.
1242     PlatformSP platform_sp (Platform::GetHostPlatform ());
1243     if (!platform_sp)
1244         return Error("failed to get a valid default platform");
1245 
1246     // Retrieve the architecture for the running process.
1247     ArchSpec process_arch;
1248     Error error = ResolveProcessArchitecture (pid, *platform_sp.get (), process_arch);
1249     if (!error.Success ())
1250         return error;
1251 
1252     std::shared_ptr<NativeProcessLinux> native_process_linux_sp (new NativeProcessLinux ());
1253 
1254     if (!native_process_linux_sp->RegisterNativeDelegate (native_delegate))
1255     {
1256         error.SetErrorStringWithFormat ("failed to register the native delegate");
1257         return error;
1258     }
1259 
1260     native_process_linux_sp->AttachToInferior (pid, error);
1261     if (!error.Success ())
1262         return error;
1263 
1264     native_process_sp = native_process_linux_sp;
1265     return error;
1266 }
1267 
1268 // -----------------------------------------------------------------------------
1269 // Public Instance Methods
1270 // -----------------------------------------------------------------------------
1271 
1272 NativeProcessLinux::NativeProcessLinux () :
1273     NativeProcessProtocol (LLDB_INVALID_PROCESS_ID),
1274     m_arch (),
1275     m_operation_thread (),
1276     m_monitor_thread (),
1277     m_operation (nullptr),
1278     m_operation_mutex (),
1279     m_operation_pending (),
1280     m_operation_done (),
1281     m_supports_mem_region (eLazyBoolCalculate),
1282     m_mem_region_cache (),
1283     m_mem_region_cache_mutex (),
1284     m_coordinator_up (new ThreadStateCoordinator (GetThreadLoggerFunction ())),
1285     m_coordinator_thread ()
1286 {
1287 }
1288 
1289 //------------------------------------------------------------------------------
1290 /// The basic design of the NativeProcessLinux is built around two threads.
1291 ///
1292 /// One thread (@see SignalThread) simply blocks on a call to waitpid() looking
1293 /// for changes in the debugee state.  When a change is detected a
1294 /// ProcessMessage is sent to the associated ProcessLinux instance.  This thread
1295 /// "drives" state changes in the debugger.
1296 ///
1297 /// The second thread (@see OperationThread) is responsible for two things 1)
1298 /// launching or attaching to the inferior process, and then 2) servicing
1299 /// operations such as register reads/writes, stepping, etc.  See the comments
1300 /// on the Operation class for more info as to why this is needed.
1301 void
1302 NativeProcessLinux::LaunchInferior (
1303     Module *module,
1304     const char *argv[],
1305     const char *envp[],
1306     const std::string &stdin_path,
1307     const std::string &stdout_path,
1308     const std::string &stderr_path,
1309     const char *working_dir,
1310     const lldb_private::ProcessLaunchInfo &launch_info,
1311     lldb_private::Error &error)
1312 {
1313     if (module)
1314         m_arch = module->GetArchitecture ();
1315 
1316     SetState (eStateLaunching);
1317 
1318     std::unique_ptr<LaunchArgs> args(
1319         new LaunchArgs(
1320             this, module, argv, envp,
1321             stdin_path, stdout_path, stderr_path,
1322             working_dir, launch_info));
1323 
1324     sem_init (&m_operation_pending, 0, 0);
1325     sem_init (&m_operation_done, 0, 0);
1326 
1327     StartLaunchOpThread (args.get(), error);
1328     if (!error.Success ())
1329         return;
1330 
1331     error = StartCoordinatorThread ();
1332     if (!error.Success ())
1333         return;
1334 
1335 WAIT_AGAIN:
1336     // Wait for the operation thread to initialize.
1337     if (sem_wait(&args->m_semaphore))
1338     {
1339         if (errno == EINTR)
1340             goto WAIT_AGAIN;
1341         else
1342         {
1343             error.SetErrorToErrno();
1344             return;
1345         }
1346     }
1347 
1348     // Check that the launch was a success.
1349     if (!args->m_error.Success())
1350     {
1351         StopOpThread();
1352         StopCoordinatorThread ();
1353         error = args->m_error;
1354         return;
1355     }
1356 
1357     // Finally, start monitoring the child process for change in state.
1358     m_monitor_thread = Host::StartMonitoringChildProcess(
1359         NativeProcessLinux::MonitorCallback, this, GetID(), true);
1360     if (!m_monitor_thread.IsJoinable())
1361     {
1362         error.SetErrorToGenericError();
1363         error.SetErrorString ("Process attach failed to create monitor thread for NativeProcessLinux::MonitorCallback.");
1364         return;
1365     }
1366 }
1367 
1368 void
1369 NativeProcessLinux::AttachToInferior (lldb::pid_t pid, lldb_private::Error &error)
1370 {
1371     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1372     if (log)
1373         log->Printf ("NativeProcessLinux::%s (pid = %" PRIi64 ")", __FUNCTION__, pid);
1374 
1375     // We can use the Host for everything except the ResolveExecutable portion.
1376     PlatformSP platform_sp = Platform::GetHostPlatform ();
1377     if (!platform_sp)
1378     {
1379         if (log)
1380             log->Printf ("NativeProcessLinux::%s (pid = %" PRIi64 "): no default platform set", __FUNCTION__, pid);
1381         error.SetErrorString ("no default platform available");
1382         return;
1383     }
1384 
1385     // Gather info about the process.
1386     ProcessInstanceInfo process_info;
1387     if (!platform_sp->GetProcessInfo (pid, process_info))
1388     {
1389         if (log)
1390             log->Printf ("NativeProcessLinux::%s (pid = %" PRIi64 "): failed to get process info", __FUNCTION__, pid);
1391         error.SetErrorString ("failed to get process info");
1392         return;
1393     }
1394 
1395     // Resolve the executable module
1396     ModuleSP exe_module_sp;
1397     FileSpecList executable_search_paths (Target::GetDefaultExecutableSearchPaths());
1398     ModuleSpec exe_module_spec(process_info.GetExecutableFile(), HostInfo::GetArchitecture());
1399     error = platform_sp->ResolveExecutable(exe_module_spec, exe_module_sp,
1400                                            executable_search_paths.GetSize() ? &executable_search_paths : NULL);
1401     if (!error.Success())
1402         return;
1403 
1404     // Set the architecture to the exe architecture.
1405     m_arch = exe_module_sp->GetArchitecture();
1406     if (log)
1407         log->Printf ("NativeProcessLinux::%s (pid = %" PRIi64 ") detected architecture %s", __FUNCTION__, pid, m_arch.GetArchitectureName ());
1408 
1409     m_pid = pid;
1410     SetState(eStateAttaching);
1411 
1412     sem_init (&m_operation_pending, 0, 0);
1413     sem_init (&m_operation_done, 0, 0);
1414 
1415     std::unique_ptr<AttachArgs> args (new AttachArgs (this, pid));
1416 
1417     StartAttachOpThread(args.get (), error);
1418     if (!error.Success ())
1419         return;
1420 
1421     error = StartCoordinatorThread ();
1422     if (!error.Success ())
1423         return;
1424 
1425 WAIT_AGAIN:
1426     // Wait for the operation thread to initialize.
1427     if (sem_wait (&args->m_semaphore))
1428     {
1429         if (errno == EINTR)
1430             goto WAIT_AGAIN;
1431         else
1432         {
1433             error.SetErrorToErrno ();
1434             return;
1435         }
1436     }
1437 
1438     // Check that the attach was a success.
1439     if (!args->m_error.Success ())
1440     {
1441         StopOpThread ();
1442         StopCoordinatorThread ();
1443         error = args->m_error;
1444         return;
1445     }
1446 
1447     // Finally, start monitoring the child process for change in state.
1448     m_monitor_thread = Host::StartMonitoringChildProcess (
1449         NativeProcessLinux::MonitorCallback, this, GetID (), true);
1450     if (!m_monitor_thread.IsJoinable())
1451     {
1452         error.SetErrorToGenericError ();
1453         error.SetErrorString ("Process attach failed to create monitor thread for NativeProcessLinux::MonitorCallback.");
1454         return;
1455     }
1456 }
1457 
1458 NativeProcessLinux::~NativeProcessLinux()
1459 {
1460     StopMonitor();
1461 }
1462 
1463 //------------------------------------------------------------------------------
1464 // Thread setup and tear down.
1465 
1466 void
1467 NativeProcessLinux::StartLaunchOpThread(LaunchArgs *args, Error &error)
1468 {
1469     static const char *g_thread_name = "lldb.process.nativelinux.operation";
1470 
1471     if (m_operation_thread.IsJoinable())
1472         return;
1473 
1474     m_operation_thread = ThreadLauncher::LaunchThread(g_thread_name, LaunchOpThread, args, &error);
1475 }
1476 
1477 void *
1478 NativeProcessLinux::LaunchOpThread(void *arg)
1479 {
1480     LaunchArgs *args = static_cast<LaunchArgs*>(arg);
1481 
1482     if (!Launch(args)) {
1483         sem_post(&args->m_semaphore);
1484         return NULL;
1485     }
1486 
1487     ServeOperation(args);
1488     return NULL;
1489 }
1490 
1491 bool
1492 NativeProcessLinux::Launch(LaunchArgs *args)
1493 {
1494     assert (args && "null args");
1495     if (!args)
1496         return false;
1497 
1498     NativeProcessLinux *monitor = args->m_monitor;
1499     assert (monitor && "monitor is NULL");
1500     if (!monitor)
1501         return false;
1502 
1503     const char **argv = args->m_argv;
1504     const char **envp = args->m_envp;
1505     const char *working_dir = args->m_working_dir;
1506 
1507     lldb_utility::PseudoTerminal terminal;
1508     const size_t err_len = 1024;
1509     char err_str[err_len];
1510     lldb::pid_t pid;
1511     NativeThreadProtocolSP thread_sp;
1512 
1513     lldb::ThreadSP inferior;
1514 
1515     // Propagate the environment if one is not supplied.
1516     if (envp == NULL || envp[0] == NULL)
1517         envp = const_cast<const char **>(environ);
1518 
1519     if ((pid = terminal.Fork(err_str, err_len)) == static_cast<lldb::pid_t> (-1))
1520     {
1521         args->m_error.SetErrorToGenericError();
1522         args->m_error.SetErrorString("Process fork failed.");
1523         return false;
1524     }
1525 
1526     // Recognized child exit status codes.
1527     enum {
1528         ePtraceFailed = 1,
1529         eDupStdinFailed,
1530         eDupStdoutFailed,
1531         eDupStderrFailed,
1532         eChdirFailed,
1533         eExecFailed,
1534         eSetGidFailed
1535     };
1536 
1537     // Child process.
1538     if (pid == 0)
1539     {
1540         // FIXME consider opening a pipe between parent/child and have this forked child
1541         // send log info to parent re: launch status, in place of the log lines removed here.
1542 
1543         // Start tracing this child that is about to exec.
1544         PTRACE(PTRACE_TRACEME, 0, nullptr, nullptr, 0, args->m_error);
1545         if (args->m_error.Fail())
1546             exit(ePtraceFailed);
1547 
1548         // terminal has already dupped the tty descriptors to stdin/out/err.
1549         // This closes original fd from which they were copied (and avoids
1550         // leaking descriptors to the debugged process.
1551         terminal.CloseSlaveFileDescriptor();
1552 
1553         // Do not inherit setgid powers.
1554         if (setgid(getgid()) != 0)
1555             exit(eSetGidFailed);
1556 
1557         // Attempt to have our own process group.
1558         if (setpgid(0, 0) != 0)
1559         {
1560             // FIXME log that this failed. This is common.
1561             // Don't allow this to prevent an inferior exec.
1562         }
1563 
1564         // Dup file descriptors if needed.
1565         if (!args->m_stdin_path.empty ())
1566             if (!DupDescriptor(args->m_stdin_path.c_str (), STDIN_FILENO, O_RDONLY))
1567                 exit(eDupStdinFailed);
1568 
1569         if (!args->m_stdout_path.empty ())
1570             if (!DupDescriptor(args->m_stdout_path.c_str (), STDOUT_FILENO, O_WRONLY | O_CREAT))
1571                 exit(eDupStdoutFailed);
1572 
1573         if (!args->m_stderr_path.empty ())
1574             if (!DupDescriptor(args->m_stderr_path.c_str (), STDERR_FILENO, O_WRONLY | O_CREAT))
1575                 exit(eDupStderrFailed);
1576 
1577         // Change working directory
1578         if (working_dir != NULL && working_dir[0])
1579           if (0 != ::chdir(working_dir))
1580               exit(eChdirFailed);
1581 
1582         // Disable ASLR if requested.
1583         if (args->m_launch_info.GetFlags ().Test (lldb::eLaunchFlagDisableASLR))
1584         {
1585             const int old_personality = personality (LLDB_PERSONALITY_GET_CURRENT_SETTINGS);
1586             if (old_personality == -1)
1587             {
1588                 // Can't retrieve Linux personality.  Cannot disable ASLR.
1589             }
1590             else
1591             {
1592                 const int new_personality = personality (ADDR_NO_RANDOMIZE | old_personality);
1593                 if (new_personality == -1)
1594                 {
1595                     // Disabling ASLR failed.
1596                 }
1597                 else
1598                 {
1599                     // Disabling ASLR succeeded.
1600                 }
1601             }
1602         }
1603 
1604         // Execute.  We should never return...
1605         execve(argv[0],
1606                const_cast<char *const *>(argv),
1607                const_cast<char *const *>(envp));
1608 
1609         // ...unless exec fails.  In which case we definitely need to end the child here.
1610         exit(eExecFailed);
1611     }
1612 
1613     //
1614     // This is the parent code here.
1615     //
1616     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1617 
1618     // Wait for the child process to trap on its call to execve.
1619     ::pid_t wpid;
1620     int status;
1621     if ((wpid = waitpid(pid, &status, 0)) < 0)
1622     {
1623         args->m_error.SetErrorToErrno();
1624 
1625         if (log)
1626             log->Printf ("NativeProcessLinux::%s waitpid for inferior failed with %s", __FUNCTION__, args->m_error.AsCString ());
1627 
1628         // Mark the inferior as invalid.
1629         // FIXME this could really use a new state - eStateLaunchFailure.  For now, using eStateInvalid.
1630         monitor->SetState (StateType::eStateInvalid);
1631 
1632         return false;
1633     }
1634     else if (WIFEXITED(status))
1635     {
1636         // open, dup or execve likely failed for some reason.
1637         args->m_error.SetErrorToGenericError();
1638         switch (WEXITSTATUS(status))
1639         {
1640             case ePtraceFailed:
1641                 args->m_error.SetErrorString("Child ptrace failed.");
1642                 break;
1643             case eDupStdinFailed:
1644                 args->m_error.SetErrorString("Child open stdin failed.");
1645                 break;
1646             case eDupStdoutFailed:
1647                 args->m_error.SetErrorString("Child open stdout failed.");
1648                 break;
1649             case eDupStderrFailed:
1650                 args->m_error.SetErrorString("Child open stderr failed.");
1651                 break;
1652             case eChdirFailed:
1653                 args->m_error.SetErrorString("Child failed to set working directory.");
1654                 break;
1655             case eExecFailed:
1656                 args->m_error.SetErrorString("Child exec failed.");
1657                 break;
1658             case eSetGidFailed:
1659                 args->m_error.SetErrorString("Child setgid failed.");
1660                 break;
1661             default:
1662                 args->m_error.SetErrorString("Child returned unknown exit status.");
1663                 break;
1664         }
1665 
1666         if (log)
1667         {
1668             log->Printf ("NativeProcessLinux::%s inferior exited with status %d before issuing a STOP",
1669                     __FUNCTION__,
1670                     WEXITSTATUS(status));
1671         }
1672 
1673         // Mark the inferior as invalid.
1674         // FIXME this could really use a new state - eStateLaunchFailure.  For now, using eStateInvalid.
1675         monitor->SetState (StateType::eStateInvalid);
1676 
1677         return false;
1678     }
1679     assert(WIFSTOPPED(status) && (wpid == static_cast< ::pid_t> (pid)) &&
1680            "Could not sync with inferior process.");
1681 
1682     if (log)
1683         log->Printf ("NativeProcessLinux::%s inferior started, now in stopped state", __FUNCTION__);
1684 
1685     args->m_error = SetDefaultPtraceOpts(pid);
1686     if (args->m_error.Fail())
1687     {
1688         if (log)
1689             log->Printf ("NativeProcessLinux::%s inferior failed to set default ptrace options: %s",
1690                     __FUNCTION__,
1691                     args->m_error.AsCString ());
1692 
1693         // Mark the inferior as invalid.
1694         // FIXME this could really use a new state - eStateLaunchFailure.  For now, using eStateInvalid.
1695         monitor->SetState (StateType::eStateInvalid);
1696 
1697         return false;
1698     }
1699 
1700     // Release the master terminal descriptor and pass it off to the
1701     // NativeProcessLinux instance.  Similarly stash the inferior pid.
1702     monitor->m_terminal_fd = terminal.ReleaseMasterFileDescriptor();
1703     monitor->m_pid = pid;
1704 
1705     // Set the terminal fd to be in non blocking mode (it simplifies the
1706     // implementation of ProcessLinux::GetSTDOUT to have a non-blocking
1707     // descriptor to read from).
1708     if (!EnsureFDFlags(monitor->m_terminal_fd, O_NONBLOCK, args->m_error))
1709     {
1710         if (log)
1711             log->Printf ("NativeProcessLinux::%s inferior EnsureFDFlags failed for ensuring terminal O_NONBLOCK setting: %s",
1712                     __FUNCTION__,
1713                     args->m_error.AsCString ());
1714 
1715         // Mark the inferior as invalid.
1716         // FIXME this could really use a new state - eStateLaunchFailure.  For now, using eStateInvalid.
1717         monitor->SetState (StateType::eStateInvalid);
1718 
1719         return false;
1720     }
1721 
1722     if (log)
1723         log->Printf ("NativeProcessLinux::%s() adding pid = %" PRIu64, __FUNCTION__, pid);
1724 
1725     thread_sp = monitor->AddThread (pid);
1726     assert (thread_sp && "AddThread() returned a nullptr thread");
1727     monitor->NotifyThreadCreateStopped (pid);
1728     reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetStoppedBySignal (SIGSTOP);
1729 
1730     // Let our process instance know the thread has stopped.
1731     monitor->SetCurrentThreadID (thread_sp->GetID ());
1732     monitor->SetState (StateType::eStateStopped);
1733 
1734     if (log)
1735     {
1736         if (args->m_error.Success ())
1737         {
1738             log->Printf ("NativeProcessLinux::%s inferior launching succeeded", __FUNCTION__);
1739         }
1740         else
1741         {
1742             log->Printf ("NativeProcessLinux::%s inferior launching failed: %s",
1743                 __FUNCTION__,
1744                 args->m_error.AsCString ());
1745         }
1746     }
1747     return args->m_error.Success();
1748 }
1749 
1750 void
1751 NativeProcessLinux::StartAttachOpThread(AttachArgs *args, lldb_private::Error &error)
1752 {
1753     static const char *g_thread_name = "lldb.process.linux.operation";
1754 
1755     if (m_operation_thread.IsJoinable())
1756         return;
1757 
1758     m_operation_thread = ThreadLauncher::LaunchThread(g_thread_name, AttachOpThread, args, &error);
1759 }
1760 
1761 void *
1762 NativeProcessLinux::AttachOpThread(void *arg)
1763 {
1764     AttachArgs *args = static_cast<AttachArgs*>(arg);
1765 
1766     if (!Attach(args)) {
1767         sem_post(&args->m_semaphore);
1768         return nullptr;
1769     }
1770 
1771     ServeOperation(args);
1772     return nullptr;
1773 }
1774 
1775 bool
1776 NativeProcessLinux::Attach(AttachArgs *args)
1777 {
1778     lldb::pid_t pid = args->m_pid;
1779 
1780     NativeProcessLinux *monitor = args->m_monitor;
1781     lldb::ThreadSP inferior;
1782     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1783 
1784     // Use a map to keep track of the threads which we have attached/need to attach.
1785     Host::TidMap tids_to_attach;
1786     if (pid <= 1)
1787     {
1788         args->m_error.SetErrorToGenericError();
1789         args->m_error.SetErrorString("Attaching to process 1 is not allowed.");
1790         goto FINISH;
1791     }
1792 
1793     while (Host::FindProcessThreads(pid, tids_to_attach))
1794     {
1795         for (Host::TidMap::iterator it = tids_to_attach.begin();
1796              it != tids_to_attach.end();)
1797         {
1798             if (it->second == false)
1799             {
1800                 lldb::tid_t tid = it->first;
1801 
1802                 // Attach to the requested process.
1803                 // An attach will cause the thread to stop with a SIGSTOP.
1804                 PTRACE(PTRACE_ATTACH, tid, nullptr, nullptr, 0, args->m_error);
1805                 if (args->m_error.Fail())
1806                 {
1807                     // No such thread. The thread may have exited.
1808                     // More error handling may be needed.
1809                     if (args->m_error.GetError() == ESRCH)
1810                     {
1811                         it = tids_to_attach.erase(it);
1812                         continue;
1813                     }
1814                     else
1815                         goto FINISH;
1816                 }
1817 
1818                 int status;
1819                 // Need to use __WALL otherwise we receive an error with errno=ECHLD
1820                 // At this point we should have a thread stopped if waitpid succeeds.
1821                 if ((status = waitpid(tid, NULL, __WALL)) < 0)
1822                 {
1823                     // No such thread. The thread may have exited.
1824                     // More error handling may be needed.
1825                     if (errno == ESRCH)
1826                     {
1827                         it = tids_to_attach.erase(it);
1828                         continue;
1829                     }
1830                     else
1831                     {
1832                         args->m_error.SetErrorToErrno();
1833                         goto FINISH;
1834                     }
1835                 }
1836 
1837                 args->m_error = SetDefaultPtraceOpts(tid);
1838                 if (args->m_error.Fail())
1839                     goto FINISH;
1840 
1841 
1842                 if (log)
1843                     log->Printf ("NativeProcessLinux::%s() adding tid = %" PRIu64, __FUNCTION__, tid);
1844 
1845                 it->second = true;
1846 
1847                 // Create the thread, mark it as stopped.
1848                 NativeThreadProtocolSP thread_sp (monitor->AddThread (static_cast<lldb::tid_t> (tid)));
1849                 assert (thread_sp && "AddThread() returned a nullptr");
1850 
1851                 // This will notify this is a new thread and tell the system it is stopped.
1852                 monitor->NotifyThreadCreateStopped (tid);
1853                 reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetStoppedBySignal (SIGSTOP);
1854                 monitor->SetCurrentThreadID (thread_sp->GetID ());
1855             }
1856 
1857             // move the loop forward
1858             ++it;
1859         }
1860     }
1861 
1862     if (tids_to_attach.size() > 0)
1863     {
1864         monitor->m_pid = pid;
1865         // Let our process instance know the thread has stopped.
1866         monitor->SetState (StateType::eStateStopped);
1867     }
1868     else
1869     {
1870         args->m_error.SetErrorToGenericError();
1871         args->m_error.SetErrorString("No such process.");
1872     }
1873 
1874  FINISH:
1875     return args->m_error.Success();
1876 }
1877 
1878 Error
1879 NativeProcessLinux::SetDefaultPtraceOpts(lldb::pid_t pid)
1880 {
1881     long ptrace_opts = 0;
1882 
1883     // Have the child raise an event on exit.  This is used to keep the child in
1884     // limbo until it is destroyed.
1885     ptrace_opts |= PTRACE_O_TRACEEXIT;
1886 
1887     // Have the tracer trace threads which spawn in the inferior process.
1888     // TODO: if we want to support tracing the inferiors' child, add the
1889     // appropriate ptrace flags here (PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
1890     ptrace_opts |= PTRACE_O_TRACECLONE;
1891 
1892     // Have the tracer notify us before execve returns
1893     // (needed to disable legacy SIGTRAP generation)
1894     ptrace_opts |= PTRACE_O_TRACEEXEC;
1895 
1896     Error error;
1897     PTRACE(PTRACE_SETOPTIONS, pid, nullptr, (void*)ptrace_opts, 0, error);
1898     return error;
1899 }
1900 
1901 static ExitType convert_pid_status_to_exit_type (int status)
1902 {
1903     if (WIFEXITED (status))
1904         return ExitType::eExitTypeExit;
1905     else if (WIFSIGNALED (status))
1906         return ExitType::eExitTypeSignal;
1907     else if (WIFSTOPPED (status))
1908         return ExitType::eExitTypeStop;
1909     else
1910     {
1911         // We don't know what this is.
1912         return ExitType::eExitTypeInvalid;
1913     }
1914 }
1915 
1916 static int convert_pid_status_to_return_code (int status)
1917 {
1918     if (WIFEXITED (status))
1919         return WEXITSTATUS (status);
1920     else if (WIFSIGNALED (status))
1921         return WTERMSIG (status);
1922     else if (WIFSTOPPED (status))
1923         return WSTOPSIG (status);
1924     else
1925     {
1926         // We don't know what this is.
1927         return ExitType::eExitTypeInvalid;
1928     }
1929 }
1930 
1931 // Main process monitoring waitpid-loop handler.
1932 bool
1933 NativeProcessLinux::MonitorCallback(void *callback_baton,
1934                                 lldb::pid_t pid,
1935                                 bool exited,
1936                                 int signal,
1937                                 int status)
1938 {
1939     Log *log (GetLogIfAnyCategoriesSet (LIBLLDB_LOG_PROCESS));
1940 
1941     NativeProcessLinux *const process = static_cast<NativeProcessLinux*>(callback_baton);
1942     assert (process && "process is null");
1943     if (!process)
1944     {
1945         if (log)
1946             log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " callback_baton was null, can't determine process to use", __FUNCTION__, pid);
1947         return true;
1948     }
1949 
1950     // Certain activities differ based on whether the pid is the tid of the main thread.
1951     const bool is_main_thread = (pid == process->GetID ());
1952 
1953     // Assume we keep monitoring by default.
1954     bool stop_monitoring = false;
1955 
1956     // Handle when the thread exits.
1957     if (exited)
1958     {
1959         if (log)
1960             log->Printf ("NativeProcessLinux::%s() got exit signal(%d) , tid = %"  PRIu64 " (%s main thread)", __FUNCTION__, signal, pid, is_main_thread ? "is" : "is not");
1961 
1962         // This is a thread that exited.  Ensure we're not tracking it anymore.
1963         const bool thread_found = process->StopTrackingThread (pid);
1964 
1965         // Make sure the thread state coordinator knows about this.
1966         process->NotifyThreadDeath (pid);
1967 
1968         if (is_main_thread)
1969         {
1970             // We only set the exit status and notify the delegate if we haven't already set the process
1971             // state to an exited state.  We normally should have received a SIGTRAP | (PTRACE_EVENT_EXIT << 8)
1972             // for the main thread.
1973             const bool already_notified = (process->GetState() == StateType::eStateExited) || (process->GetState () == StateType::eStateCrashed);
1974             if (!already_notified)
1975             {
1976                 if (log)
1977                     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 (process->GetState ()));
1978                 // The main thread exited.  We're done monitoring.  Report to delegate.
1979                 process->SetExitStatus (convert_pid_status_to_exit_type (status), convert_pid_status_to_return_code (status), nullptr, true);
1980 
1981                 // Notify delegate that our process has exited.
1982                 process->SetState (StateType::eStateExited, true);
1983             }
1984             else
1985             {
1986                 if (log)
1987                     log->Printf ("NativeProcessLinux::%s() tid = %"  PRIu64 " main thread now exited (%s)", __FUNCTION__, pid, thread_found ? "stopped tracking thread metadata" : "thread metadata not found");
1988             }
1989             return true;
1990         }
1991         else
1992         {
1993             // Do we want to report to the delegate in this case?  I think not.  If this was an orderly
1994             // thread exit, we would already have received the SIGTRAP | (PTRACE_EVENT_EXIT << 8) signal,
1995             // and we would have done an all-stop then.
1996             if (log)
1997                 log->Printf ("NativeProcessLinux::%s() tid = %"  PRIu64 " handling non-main thread exit (%s)", __FUNCTION__, pid, thread_found ? "stopped tracking thread metadata" : "thread metadata not found");
1998 
1999             // Not the main thread, we keep going.
2000             return false;
2001         }
2002     }
2003 
2004     // Get details on the signal raised.
2005     siginfo_t info;
2006     const auto err = process->GetSignalInfo(pid, &info);
2007     if (err.Success())
2008     {
2009         // We have retrieved the signal info.  Dispatch appropriately.
2010         if (info.si_signo == SIGTRAP)
2011             process->MonitorSIGTRAP(&info, pid);
2012         else
2013             process->MonitorSignal(&info, pid, exited);
2014 
2015         stop_monitoring = false;
2016     }
2017     else
2018     {
2019         if (err.GetError() == EINVAL)
2020         {
2021             // This is a group stop reception for this tid.
2022             if (log)
2023                 log->Printf ("NativeThreadLinux::%s received a group stop for pid %" PRIu64 " tid %" PRIu64, __FUNCTION__, process->GetID (), pid);
2024             process->NotifyThreadStop (pid);
2025         }
2026         else
2027         {
2028             // ptrace(GETSIGINFO) failed (but not due to group-stop).
2029 
2030             // A return value of ESRCH means the thread/process is no longer on the system,
2031             // so it was killed somehow outside of our control.  Either way, we can't do anything
2032             // with it anymore.
2033 
2034             // We stop monitoring if it was the main thread.
2035             stop_monitoring = is_main_thread;
2036 
2037             // Stop tracking the metadata for the thread since it's entirely off the system now.
2038             const bool thread_found = process->StopTrackingThread (pid);
2039 
2040             // Make sure the thread state coordinator knows about this.
2041             process->NotifyThreadDeath (pid);
2042 
2043             if (log)
2044                 log->Printf ("NativeProcessLinux::%s GetSignalInfo failed: %s, tid = %" PRIu64 ", signal = %d, status = %d (%s, %s, %s)",
2045                              __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");
2046 
2047             if (is_main_thread)
2048             {
2049                 // Notify the delegate - our process is not available but appears to have been killed outside
2050                 // our control.  Is eStateExited the right exit state in this case?
2051                 process->SetExitStatus (convert_pid_status_to_exit_type (status), convert_pid_status_to_return_code (status), nullptr, true);
2052                 process->SetState (StateType::eStateExited, true);
2053             }
2054             else
2055             {
2056                 // This thread was pulled out from underneath us.  Anything to do here? Do we want to do an all stop?
2057                 if (log)
2058                     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__, process->GetID (), pid);
2059             }
2060         }
2061     }
2062 
2063     return stop_monitoring;
2064 }
2065 
2066 void
2067 NativeProcessLinux::MonitorSIGTRAP(const siginfo_t *info, lldb::pid_t pid)
2068 {
2069     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2070     const bool is_main_thread = (pid == GetID ());
2071 
2072     assert(info && info->si_signo == SIGTRAP && "Unexpected child signal!");
2073     if (!info)
2074         return;
2075 
2076     // See if we can find a thread for this signal.
2077     NativeThreadProtocolSP thread_sp = GetThreadByID (pid);
2078     if (!thread_sp)
2079     {
2080         if (log)
2081             log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 " no thread found for tid %" PRIu64, __FUNCTION__, GetID (), pid);
2082     }
2083 
2084     switch (info->si_code)
2085     {
2086     // TODO: these two cases are required if we want to support tracing of the inferiors' children.  We'd need this to debug a monitor.
2087     // case (SIGTRAP | (PTRACE_EVENT_FORK << 8)):
2088     // case (SIGTRAP | (PTRACE_EVENT_VFORK << 8)):
2089 
2090     case (SIGTRAP | (PTRACE_EVENT_CLONE << 8)):
2091     {
2092         lldb::tid_t tid = LLDB_INVALID_THREAD_ID;
2093 
2094         // The main thread is stopped here.
2095         if (thread_sp)
2096             reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetStoppedBySignal (SIGTRAP);
2097         NotifyThreadStop (pid);
2098 
2099         unsigned long event_message = 0;
2100         if (GetEventMessage (pid, &event_message).Success())
2101         {
2102             tid = static_cast<lldb::tid_t> (event_message);
2103             if (log)
2104                 log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 " received thread creation event for tid %" PRIu64, __FUNCTION__, pid, tid);
2105 
2106             // If we don't track the thread yet: create it, mark as stopped.
2107             // If we do track it, this is the wait we needed.  Now resume the new thread.
2108             // In all cases, resume the current (i.e. main process) thread.
2109             bool created_now = false;
2110             NativeThreadProtocolSP new_thread_sp = GetOrCreateThread (tid, created_now);
2111             assert (new_thread_sp.get() && "failed to get or create the tracking data for newly created inferior thread");
2112 
2113             // If the thread was already tracked, it means the created thread already received its SI_USER notification of creation.
2114             if (!created_now)
2115             {
2116                 // We can now resume the newly created thread since it is fully created.
2117                 NotifyThreadCreateStopped (tid);
2118                 m_coordinator_up->RequestThreadResume (tid,
2119                                                        [=](lldb::tid_t tid_to_resume, bool supress_signal)
2120                                                        {
2121                                                            reinterpret_cast<NativeThreadLinux*> (new_thread_sp.get ())->SetRunning ();
2122                                                            return Resume (tid_to_resume, LLDB_INVALID_SIGNAL_NUMBER);
2123                                                        },
2124                                                        CoordinatorErrorHandler);
2125             }
2126             else
2127             {
2128                 // Mark the thread as currently launching.  Need to wait for SIGTRAP clone on the main thread before
2129                 // this thread is ready to go.
2130                 reinterpret_cast<NativeThreadLinux*> (new_thread_sp.get ())->SetLaunching ();
2131             }
2132         }
2133         else
2134         {
2135             if (log)
2136                 log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 " received thread creation event but GetEventMessage failed so we don't know the new tid", __FUNCTION__, pid);
2137         }
2138 
2139         // In all cases, we can resume the main thread here.
2140         m_coordinator_up->RequestThreadResume (pid,
2141                                                [=](lldb::tid_t tid_to_resume, bool supress_signal)
2142                                                {
2143                                                    reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetRunning ();
2144                                                    return Resume (tid_to_resume, LLDB_INVALID_SIGNAL_NUMBER);
2145                                                },
2146                                                CoordinatorErrorHandler);
2147 
2148         break;
2149     }
2150 
2151     case (SIGTRAP | (PTRACE_EVENT_EXEC << 8)):
2152     {
2153         NativeThreadProtocolSP main_thread_sp;
2154         if (log)
2155             log->Printf ("NativeProcessLinux::%s() received exec event, code = %d", __FUNCTION__, info->si_code ^ SIGTRAP);
2156 
2157         // The thread state coordinator needs to reset due to the exec.
2158         m_coordinator_up->ResetForExec ();
2159 
2160         // Remove all but the main thread here.  Linux fork creates a new process which only copies the main thread.  Mutexes are in undefined state.
2161         {
2162             Mutex::Locker locker (m_threads_mutex);
2163 
2164             if (log)
2165                 log->Printf ("NativeProcessLinux::%s exec received, stop tracking all but main thread", __FUNCTION__);
2166 
2167             for (auto thread_sp : m_threads)
2168             {
2169                 const bool is_main_thread = thread_sp && thread_sp->GetID () == GetID ();
2170                 if (is_main_thread)
2171                 {
2172                     main_thread_sp = thread_sp;
2173                     if (log)
2174                         log->Printf ("NativeProcessLinux::%s found main thread with tid %" PRIu64 ", keeping", __FUNCTION__, main_thread_sp->GetID ());
2175                 }
2176                 else
2177                 {
2178                     // Tell thread coordinator this thread is dead.
2179                     if (log)
2180                         log->Printf ("NativeProcessLinux::%s discarding non-main-thread tid %" PRIu64 " due to exec", __FUNCTION__, thread_sp->GetID ());
2181                 }
2182             }
2183 
2184             m_threads.clear ();
2185 
2186             if (main_thread_sp)
2187             {
2188                 m_threads.push_back (main_thread_sp);
2189                 SetCurrentThreadID (main_thread_sp->GetID ());
2190                 reinterpret_cast<NativeThreadLinux*>(main_thread_sp.get())->SetStoppedByExec ();
2191             }
2192             else
2193             {
2194                 SetCurrentThreadID (LLDB_INVALID_THREAD_ID);
2195                 if (log)
2196                     log->Printf ("NativeProcessLinux::%s pid %" PRIu64 "no main thread found, discarded all threads, we're in a no-thread state!", __FUNCTION__, GetID ());
2197             }
2198         }
2199 
2200         // Tell coordinator about about the "new" (since exec) stopped main thread.
2201         const lldb::tid_t main_thread_tid = GetID ();
2202         NotifyThreadCreateStopped (main_thread_tid);
2203 
2204         // NOTE: ideally these next statements would execute at the same time as the coordinator thread create was executed.
2205         // Consider a handler that can execute when that happens.
2206         // Let our delegate know we have just exec'd.
2207         NotifyDidExec ();
2208 
2209         // If we have a main thread, indicate we are stopped.
2210         assert (main_thread_sp && "exec called during ptraced process but no main thread metadata tracked");
2211 
2212         // Let the process know we're stopped.
2213         SetState (StateType::eStateStopped);
2214 
2215         break;
2216     }
2217 
2218     case (SIGTRAP | (PTRACE_EVENT_EXIT << 8)):
2219     {
2220         // The inferior process or one of its threads is about to exit.
2221 
2222         // This thread is currently stopped.  It's not actually dead yet, just about to be.
2223         NotifyThreadStop (pid);
2224 
2225         unsigned long data = 0;
2226         if (GetEventMessage(pid, &data).Fail())
2227             data = -1;
2228 
2229         if (log)
2230         {
2231             log->Printf ("NativeProcessLinux::%s() received PTRACE_EVENT_EXIT, data = %lx (WIFEXITED=%s,WIFSIGNALED=%s), pid = %" PRIu64 " (%s)",
2232                          __FUNCTION__,
2233                          data, WIFEXITED (data) ? "true" : "false", WIFSIGNALED (data) ? "true" : "false",
2234                          pid,
2235                     is_main_thread ? "is main thread" : "not main thread");
2236         }
2237 
2238         if (is_main_thread)
2239         {
2240             SetExitStatus (convert_pid_status_to_exit_type (data), convert_pid_status_to_return_code (data), nullptr, true);
2241         }
2242 
2243         const int signo = static_cast<int> (data);
2244         m_coordinator_up->RequestThreadResume (pid,
2245                                                [=](lldb::tid_t tid_to_resume, bool supress_signal)
2246                                                {
2247                                                    reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetRunning ();
2248                                                    return Resume (tid_to_resume, (supress_signal) ? LLDB_INVALID_SIGNAL_NUMBER : signo);
2249                                                },
2250                                                CoordinatorErrorHandler);
2251 
2252         break;
2253     }
2254 
2255     case 0:
2256     case TRAP_TRACE:
2257         // We receive this on single stepping.
2258         if (log)
2259             log->Printf ("NativeProcessLinux::%s() received trace event, pid = %" PRIu64 " (single stepping)", __FUNCTION__, pid);
2260 
2261         if (thread_sp)
2262         {
2263             reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetStoppedByTrace ();
2264         }
2265 
2266         // This thread is currently stopped.
2267         NotifyThreadStop (pid);
2268 
2269         // Here we don't have to request the rest of the threads to stop or request a deferred stop.
2270         // This would have already happened at the time the Resume() with step operation was signaled.
2271         // At this point, we just need to say we stopped, and the deferred notifcation will fire off
2272         // once all running threads have checked in as stopped.
2273         SetCurrentThreadID (pid);
2274         // Tell the process we have a stop (from software breakpoint).
2275         SetState (StateType::eStateStopped, true);
2276         break;
2277 
2278     case SI_KERNEL:
2279     case TRAP_BRKPT:
2280         if (log)
2281             log->Printf ("NativeProcessLinux::%s() received breakpoint event, pid = %" PRIu64, __FUNCTION__, pid);
2282 
2283         // This thread is currently stopped.
2284         NotifyThreadStop (pid);
2285 
2286         // Mark the thread as stopped at breakpoint.
2287         if (thread_sp)
2288         {
2289             reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetStoppedByBreakpoint ();
2290             Error error = FixupBreakpointPCAsNeeded (thread_sp);
2291             if (error.Fail ())
2292             {
2293                 if (log)
2294                     log->Printf ("NativeProcessLinux::%s() pid = %" PRIu64 " fixup: %s", __FUNCTION__, pid, error.AsCString ());
2295             }
2296         }
2297         else
2298         {
2299             if (log)
2300                 log->Printf ("NativeProcessLinux::%s()  pid = %" PRIu64 ": warning, cannot process software breakpoint since no thread metadata", __FUNCTION__, pid);
2301         }
2302 
2303 
2304         // We need to tell all other running threads before we notify the delegate about this stop.
2305         CallAfterRunningThreadsStop (pid,
2306                                      [=](lldb::tid_t deferred_notification_tid)
2307                                      {
2308                                          SetCurrentThreadID (deferred_notification_tid);
2309                                          // Tell the process we have a stop (from software breakpoint).
2310                                          SetState (StateType::eStateStopped, true);
2311                                      });
2312         break;
2313 
2314     case TRAP_HWBKPT:
2315         if (log)
2316             log->Printf ("NativeProcessLinux::%s() received watchpoint event, pid = %" PRIu64, __FUNCTION__, pid);
2317 
2318         // This thread is currently stopped.
2319         NotifyThreadStop (pid);
2320 
2321         // Mark the thread as stopped at watchpoint.
2322         // The address is at (lldb::addr_t)info->si_addr if we need it.
2323         if (thread_sp)
2324             reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetStoppedByWatchpoint ();
2325         else
2326         {
2327             if (log)
2328                 log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 " tid %" PRIu64 ": warning, cannot process hardware breakpoint since no thread metadata", __FUNCTION__, GetID (), pid);
2329         }
2330 
2331         // We need to tell all other running threads before we notify the delegate about this stop.
2332         CallAfterRunningThreadsStop (pid,
2333                                      [=](lldb::tid_t deferred_notification_tid)
2334                                      {
2335                                          SetCurrentThreadID (deferred_notification_tid);
2336                                          // Tell the process we have a stop (from hardware breakpoint).
2337                                          SetState (StateType::eStateStopped, true);
2338                                      });
2339         break;
2340 
2341     case SIGTRAP:
2342     case (SIGTRAP | 0x80):
2343         if (log)
2344             log->Printf ("NativeProcessLinux::%s() received unknown SIGTRAP system call stop event, pid %" PRIu64 "tid %" PRIu64 ", resuming", __FUNCTION__, GetID (), pid);
2345 
2346         // This thread is currently stopped.
2347         NotifyThreadStop (pid);
2348         if (thread_sp)
2349             reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetStoppedBySignal (SIGTRAP);
2350 
2351 
2352         // Ignore these signals until we know more about them.
2353         m_coordinator_up->RequestThreadResume (pid,
2354                                                [=](lldb::tid_t tid_to_resume, bool supress_signal)
2355                                                {
2356                                                    reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetRunning ();
2357                                                    return Resume (tid_to_resume, LLDB_INVALID_SIGNAL_NUMBER);
2358                                                },
2359                                                CoordinatorErrorHandler);
2360         break;
2361 
2362     default:
2363         assert(false && "Unexpected SIGTRAP code!");
2364         if (log)
2365             log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 "tid %" PRIu64 " received unhandled SIGTRAP code: 0x%" PRIx64, __FUNCTION__, GetID (), pid, static_cast<uint64_t> (SIGTRAP | (PTRACE_EVENT_CLONE << 8)));
2366         break;
2367 
2368     }
2369 }
2370 
2371 void
2372 NativeProcessLinux::MonitorSignal(const siginfo_t *info, lldb::pid_t pid, bool exited)
2373 {
2374     assert (info && "null info");
2375     if (!info)
2376         return;
2377 
2378     const int signo = info->si_signo;
2379     const bool is_from_llgs = info->si_pid == getpid ();
2380 
2381     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2382 
2383     // POSIX says that process behaviour is undefined after it ignores a SIGFPE,
2384     // SIGILL, SIGSEGV, or SIGBUS *unless* that signal was generated by a
2385     // kill(2) or raise(3).  Similarly for tgkill(2) on Linux.
2386     //
2387     // IOW, user generated signals never generate what we consider to be a
2388     // "crash".
2389     //
2390     // Similarly, ACK signals generated by this monitor.
2391 
2392     // See if we can find a thread for this signal.
2393     NativeThreadProtocolSP thread_sp = GetThreadByID (pid);
2394     if (!thread_sp)
2395     {
2396         if (log)
2397             log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 " no thread found for tid %" PRIu64, __FUNCTION__, GetID (), pid);
2398     }
2399 
2400     // Handle the signal.
2401     if (info->si_code == SI_TKILL || info->si_code == SI_USER)
2402     {
2403         if (log)
2404             log->Printf ("NativeProcessLinux::%s() received signal %s (%d) with code %s, (siginfo pid = %d (%s), waitpid pid = %" PRIu64 ")",
2405                             __FUNCTION__,
2406                             GetUnixSignals ().GetSignalAsCString (signo),
2407                             signo,
2408                             (info->si_code == SI_TKILL ? "SI_TKILL" : "SI_USER"),
2409                             info->si_pid,
2410                             is_from_llgs ? "from llgs" : "not from llgs",
2411                             pid);
2412     }
2413 
2414     // Check for new thread notification.
2415     if ((info->si_pid == 0) && (info->si_code == SI_USER))
2416     {
2417         // A new thread creation is being signaled.  This is one of two parts that come in
2418         // a non-deterministic order.  pid is the thread id.
2419         if (log)
2420             log->Printf ("NativeProcessLinux::%s() pid = %" PRIu64 " tid %" PRIu64 ": new thread notification",
2421                      __FUNCTION__, GetID (), pid);
2422 
2423         // Did we already create the thread?
2424         bool created_now = false;
2425         thread_sp = GetOrCreateThread (pid, created_now);
2426         assert (thread_sp.get() && "failed to get or create the tracking data for newly created inferior thread");
2427 
2428         // If the thread was already tracked, it means the main thread already received its SIGTRAP for the create.
2429         if (!created_now)
2430         {
2431             // We can now resume the newly created thread since it is fully created.
2432             NotifyThreadCreateStopped (pid);
2433             m_coordinator_up->RequestThreadResume (pid,
2434                                                    [=](lldb::tid_t tid_to_resume, bool supress_signal)
2435                                                    {
2436                                                        reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetRunning ();
2437                                                        return Resume (tid_to_resume, LLDB_INVALID_SIGNAL_NUMBER);
2438                                                    },
2439                                                    CoordinatorErrorHandler);
2440         }
2441         else
2442         {
2443             // Mark the thread as currently launching.  Need to wait for SIGTRAP clone on the main thread before
2444             // this thread is ready to go.
2445             reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetLaunching ();
2446         }
2447 
2448         // Done handling.
2449         return;
2450     }
2451 
2452     // Check for thread stop notification.
2453     if (is_from_llgs && (info->si_code == SI_TKILL) && (signo == SIGSTOP))
2454     {
2455         // This is a tgkill()-based stop.
2456         if (thread_sp)
2457         {
2458             if (log)
2459                 log->Printf ("NativeProcessLinux::%s() pid %" PRIu64 " tid %" PRIu64 ", thread stopped",
2460                              __FUNCTION__,
2461                              GetID (),
2462                              pid);
2463 
2464             // Check that we're not already marked with a stop reason.
2465             // Note this thread really shouldn't already be marked as stopped - if we were, that would imply that
2466             // the kernel signaled us with the thread stopping which we handled and marked as stopped,
2467             // and that, without an intervening resume, we received another stop.  It is more likely
2468             // that we are missing the marking of a run state somewhere if we find that the thread was
2469             // marked as stopped.
2470             NativeThreadLinux *const linux_thread_p = reinterpret_cast<NativeThreadLinux*> (thread_sp.get ());
2471             assert (linux_thread_p && "linux_thread_p is null!");
2472 
2473             const StateType thread_state = linux_thread_p->GetState ();
2474             if (!StateIsStoppedState (thread_state, false))
2475             {
2476                 // An inferior thread just stopped, but was not the primary cause of the process stop.
2477                 // Instead, something else (like a breakpoint or step) caused the stop.  Mark the
2478                 // stop signal as 0 to let lldb know this isn't the important stop.
2479                 linux_thread_p->SetStoppedBySignal (0);
2480                 SetCurrentThreadID (thread_sp->GetID ());
2481                 m_coordinator_up->NotifyThreadStop (thread_sp->GetID (), true, CoordinatorErrorHandler);
2482             }
2483             else
2484             {
2485                 if (log)
2486                 {
2487                     // Retrieve the signal name if the thread was stopped by a signal.
2488                     int stop_signo = 0;
2489                     const bool stopped_by_signal = linux_thread_p->IsStopped (&stop_signo);
2490                     const char *signal_name = stopped_by_signal ? GetUnixSignals ().GetSignalAsCString (stop_signo) : "<not stopped by signal>";
2491                     if (!signal_name)
2492                         signal_name = "<no-signal-name>";
2493 
2494                     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",
2495                                  __FUNCTION__,
2496                                  GetID (),
2497                                  linux_thread_p->GetID (),
2498                                  StateAsCString (thread_state),
2499                                  stop_signo,
2500                                  signal_name);
2501                 }
2502                 // Tell the thread state coordinator about the stop.
2503                 NotifyThreadStop (thread_sp->GetID ());
2504             }
2505         }
2506 
2507         // Done handling.
2508         return;
2509     }
2510 
2511     if (log)
2512         log->Printf ("NativeProcessLinux::%s() received signal %s", __FUNCTION__, GetUnixSignals ().GetSignalAsCString (signo));
2513 
2514     // This thread is stopped.
2515     NotifyThreadStop (pid);
2516 
2517     switch (signo)
2518     {
2519     case SIGSTOP:
2520         {
2521             if (log)
2522             {
2523                 if (is_from_llgs)
2524                     log->Printf ("NativeProcessLinux::%s pid = %" PRIu64 " tid %" PRIu64 " received SIGSTOP from llgs, most likely an interrupt", __FUNCTION__, GetID (), pid);
2525                 else
2526                     log->Printf ("NativeProcessLinux::%s pid = %" PRIu64 " tid %" PRIu64 " received SIGSTOP from outside of debugger", __FUNCTION__, GetID (), pid);
2527             }
2528 
2529             // Resume this thread to get the group-stop mechanism to fire off the true group stops.
2530             // This thread will get stopped again as part of the group-stop completion.
2531             m_coordinator_up->RequestThreadResume (pid,
2532                                                    [=](lldb::tid_t tid_to_resume, bool supress_signal)
2533                                                    {
2534                                                        reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetRunning ();
2535                                                        // Pass this signal number on to the inferior to handle.
2536                                                        return Resume (tid_to_resume, (supress_signal) ? LLDB_INVALID_SIGNAL_NUMBER : signo);
2537                                                    },
2538                                                    CoordinatorErrorHandler);
2539         }
2540         break;
2541     case SIGSEGV:
2542     case SIGILL:
2543     case SIGFPE:
2544     case SIGBUS:
2545         if (thread_sp)
2546             reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetCrashedWithException (*info);
2547         break;
2548     default:
2549         // This is just a pre-signal-delivery notification of the incoming signal.
2550         if (thread_sp)
2551             reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetStoppedBySignal (signo);
2552 
2553         break;
2554     }
2555 
2556     // Send a stop to the debugger after we get all other threads to stop.
2557     CallAfterRunningThreadsStop (pid,
2558                                  [=] (lldb::tid_t signaling_tid)
2559                                  {
2560                                      SetCurrentThreadID (signaling_tid);
2561                                      SetState (StateType::eStateStopped, true);
2562                                  });
2563 }
2564 
2565 Error
2566 NativeProcessLinux::Resume (const ResumeActionList &resume_actions)
2567 {
2568     Error error;
2569 
2570     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_THREAD));
2571     if (log)
2572         log->Printf ("NativeProcessLinux::%s called: pid %" PRIu64, __FUNCTION__, GetID ());
2573 
2574     lldb::tid_t deferred_signal_tid = LLDB_INVALID_THREAD_ID;
2575     lldb::tid_t deferred_signal_skip_tid = LLDB_INVALID_THREAD_ID;
2576     int deferred_signo = 0;
2577     NativeThreadProtocolSP deferred_signal_thread_sp;
2578     int resume_count = 0;
2579     bool stepping = false;
2580 
2581 
2582     // std::vector<NativeThreadProtocolSP> new_stop_threads;
2583 
2584     // Scope for threads mutex.
2585     {
2586         Mutex::Locker locker (m_threads_mutex);
2587         for (auto thread_sp : m_threads)
2588         {
2589             assert (thread_sp && "thread list should not contain NULL threads");
2590 
2591             const ResumeAction *const action = resume_actions.GetActionForThread (thread_sp->GetID (), true);
2592 
2593             if (action == nullptr)
2594             {
2595                 if (log)
2596                     log->Printf ("NativeProcessLinux::%s no action specified for pid %" PRIu64 " tid %" PRIu64,
2597                         __FUNCTION__, GetID (), thread_sp->GetID ());
2598                 continue;
2599             }
2600 
2601             if (log)
2602             {
2603                 log->Printf ("NativeProcessLinux::%s processing resume action state %s for pid %" PRIu64 " tid %" PRIu64,
2604                         __FUNCTION__, StateAsCString (action->state), GetID (), thread_sp->GetID ());
2605             }
2606 
2607             switch (action->state)
2608             {
2609             case eStateRunning:
2610             {
2611                 // Run the thread, possibly feeding it the signal.
2612                 const int signo = action->signal;
2613                 m_coordinator_up->RequestThreadResumeAsNeeded (thread_sp->GetID (),
2614                                                                [=](lldb::tid_t tid_to_resume, bool supress_signal)
2615                                                                {
2616                                                                    reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetRunning ();
2617                                                                    // Pass this signal number on to the inferior to handle.
2618                                                                    return Resume (tid_to_resume, (signo > 0 && !supress_signal) ? signo : LLDB_INVALID_SIGNAL_NUMBER);
2619                                                                },
2620                                                                CoordinatorErrorHandler);
2621                 ++resume_count;
2622                 break;
2623             }
2624 
2625             case eStateStepping:
2626             {
2627                 // Request the step.
2628                 const int signo = action->signal;
2629                 m_coordinator_up->RequestThreadResume (thread_sp->GetID (),
2630                                                        [=](lldb::tid_t tid_to_step, bool supress_signal)
2631                                                        {
2632                                                            reinterpret_cast<NativeThreadLinux*> (thread_sp.get ())->SetStepping ();
2633                                                            const auto step_result = SingleStep (tid_to_step,(signo > 0 && !supress_signal) ? signo : LLDB_INVALID_SIGNAL_NUMBER);
2634                                                            assert (step_result.Success() && "SingleStep() failed");
2635                                                            return step_result;
2636                                                        },
2637                                                        CoordinatorErrorHandler);
2638                 stepping = true;
2639                 break;
2640             }
2641 
2642             case eStateSuspended:
2643             case eStateStopped:
2644                 // if we haven't chosen a deferred signal tid yet, use this one.
2645                 if (deferred_signal_tid == LLDB_INVALID_THREAD_ID)
2646                 {
2647                     deferred_signal_tid = thread_sp->GetID ();
2648                     deferred_signal_thread_sp = thread_sp;
2649                     deferred_signo = SIGSTOP;
2650                 }
2651                 break;
2652 
2653             default:
2654                 return Error ("NativeProcessLinux::%s (): unexpected state %s specified for pid %" PRIu64 ", tid %" PRIu64,
2655                         __FUNCTION__, StateAsCString (action->state), GetID (), thread_sp->GetID ());
2656             }
2657         }
2658     }
2659 
2660     // If we had any thread stopping, then do a deferred notification of the chosen stop thread id and signal
2661     // after all other running threads have stopped.
2662     // If there is a stepping thread involved we'll be eventually stopped by SIGTRAP trace signal.
2663     if (deferred_signal_tid != LLDB_INVALID_THREAD_ID && !stepping)
2664     {
2665         CallAfterRunningThreadsStopWithSkipTID (deferred_signal_tid,
2666                                                 deferred_signal_skip_tid,
2667                                      [=](lldb::tid_t deferred_notification_tid)
2668                                      {
2669                                          // Set the signal thread to the current thread.
2670                                          SetCurrentThreadID (deferred_notification_tid);
2671 
2672                                          // Set the thread state as stopped by the deferred signo.
2673                                          reinterpret_cast<NativeThreadLinux*> (deferred_signal_thread_sp.get ())->SetStoppedBySignal (deferred_signo);
2674 
2675                                          // Tell the process delegate that the process is in a stopped state.
2676                                          SetState (StateType::eStateStopped, true);
2677                                      });
2678     }
2679 
2680     return error;
2681 }
2682 
2683 Error
2684 NativeProcessLinux::Halt ()
2685 {
2686     Error error;
2687 
2688     if (kill (GetID (), SIGSTOP) != 0)
2689         error.SetErrorToErrno ();
2690 
2691     return error;
2692 }
2693 
2694 Error
2695 NativeProcessLinux::Detach ()
2696 {
2697     Error error;
2698 
2699     // Tell ptrace to detach from the process.
2700     if (GetID () != LLDB_INVALID_PROCESS_ID)
2701         error = Detach (GetID ());
2702 
2703     // Stop monitoring the inferior.
2704     StopMonitor ();
2705 
2706     // No error.
2707     return error;
2708 }
2709 
2710 Error
2711 NativeProcessLinux::Signal (int signo)
2712 {
2713     Error error;
2714 
2715     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2716     if (log)
2717         log->Printf ("NativeProcessLinux::%s: sending signal %d (%s) to pid %" PRIu64,
2718                 __FUNCTION__, signo,  GetUnixSignals ().GetSignalAsCString (signo), GetID ());
2719 
2720     if (kill(GetID(), signo))
2721         error.SetErrorToErrno();
2722 
2723     return error;
2724 }
2725 
2726 Error
2727 NativeProcessLinux::Interrupt ()
2728 {
2729     // Pick a running thread (or if none, a not-dead stopped thread) as
2730     // the chosen thread that will be the stop-reason thread.
2731     Error error;
2732     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2733 
2734     NativeThreadProtocolSP running_thread_sp;
2735     NativeThreadProtocolSP stopped_thread_sp;
2736     {
2737         Mutex::Locker locker (m_threads_mutex);
2738 
2739         if (log)
2740             log->Printf ("NativeProcessLinux::%s selecting running thread for interrupt target", __FUNCTION__);
2741 
2742         for (auto thread_sp : m_threads)
2743         {
2744             // The thread shouldn't be null but lets just cover that here.
2745             if (!thread_sp)
2746                 continue;
2747 
2748             // If we have a running or stepping thread, we'll call that the
2749             // target of the interrupt.
2750             const auto thread_state = thread_sp->GetState ();
2751             if (thread_state == eStateRunning ||
2752                 thread_state == eStateStepping)
2753             {
2754                 running_thread_sp = thread_sp;
2755                 break;
2756             }
2757             else if (!stopped_thread_sp && StateIsStoppedState (thread_state, true))
2758             {
2759                 // Remember the first non-dead stopped thread.  We'll use that as a backup if there are no running threads.
2760                 stopped_thread_sp = thread_sp;
2761             }
2762         }
2763     }
2764 
2765     if (!running_thread_sp && !stopped_thread_sp)
2766     {
2767         error.SetErrorString ("found no running/stepping or live stopped threads as target for interrupt");
2768         if (log)
2769         {
2770             log->Printf ("NativeProcessLinux::%s skipping due to error: %s", __FUNCTION__, error.AsCString ());
2771         }
2772         return error;
2773     }
2774 
2775     NativeThreadProtocolSP deferred_signal_thread_sp = running_thread_sp ? running_thread_sp : stopped_thread_sp;
2776 
2777     if (log)
2778         log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " %s tid %" PRIu64 " chosen for interrupt target",
2779                      __FUNCTION__,
2780                      GetID (),
2781                      running_thread_sp ? "running" : "stopped",
2782                      deferred_signal_thread_sp->GetID ());
2783 
2784     CallAfterRunningThreadsStop (deferred_signal_thread_sp->GetID (),
2785                                  [=](lldb::tid_t deferred_notification_tid)
2786                                  {
2787                                      // Set the signal thread to the current thread.
2788                                      SetCurrentThreadID (deferred_notification_tid);
2789 
2790                                      // Set the thread state as stopped by the deferred signo.
2791                                      reinterpret_cast<NativeThreadLinux*> (deferred_signal_thread_sp.get ())->SetStoppedBySignal (SIGSTOP);
2792 
2793                                                 // Tell the process delegate that the process is in a stopped state.
2794                                                 SetState (StateType::eStateStopped, true);
2795                                             });
2796     return error;
2797 }
2798 
2799 Error
2800 NativeProcessLinux::Kill ()
2801 {
2802     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2803     if (log)
2804         log->Printf ("NativeProcessLinux::%s called for PID %" PRIu64, __FUNCTION__, GetID ());
2805 
2806     Error error;
2807 
2808     switch (m_state)
2809     {
2810         case StateType::eStateInvalid:
2811         case StateType::eStateExited:
2812         case StateType::eStateCrashed:
2813         case StateType::eStateDetached:
2814         case StateType::eStateUnloaded:
2815             // Nothing to do - the process is already dead.
2816             if (log)
2817                 log->Printf ("NativeProcessLinux::%s ignored for PID %" PRIu64 " due to current state: %s", __FUNCTION__, GetID (), StateAsCString (m_state));
2818             return error;
2819 
2820         case StateType::eStateConnected:
2821         case StateType::eStateAttaching:
2822         case StateType::eStateLaunching:
2823         case StateType::eStateStopped:
2824         case StateType::eStateRunning:
2825         case StateType::eStateStepping:
2826         case StateType::eStateSuspended:
2827             // We can try to kill a process in these states.
2828             break;
2829     }
2830 
2831     if (kill (GetID (), SIGKILL) != 0)
2832     {
2833         error.SetErrorToErrno ();
2834         return error;
2835     }
2836 
2837     return error;
2838 }
2839 
2840 static Error
2841 ParseMemoryRegionInfoFromProcMapsLine (const std::string &maps_line, MemoryRegionInfo &memory_region_info)
2842 {
2843     memory_region_info.Clear();
2844 
2845     StringExtractor line_extractor (maps_line.c_str ());
2846 
2847     // Format: {address_start_hex}-{address_end_hex} perms offset  dev   inode   pathname
2848     // perms: rwxp   (letter is present if set, '-' if not, final character is p=private, s=shared).
2849 
2850     // Parse out the starting address
2851     lldb::addr_t start_address = line_extractor.GetHexMaxU64 (false, 0);
2852 
2853     // Parse out hyphen separating start and end address from range.
2854     if (!line_extractor.GetBytesLeft () || (line_extractor.GetChar () != '-'))
2855         return Error ("malformed /proc/{pid}/maps entry, missing dash between address range");
2856 
2857     // Parse out the ending address
2858     lldb::addr_t end_address = line_extractor.GetHexMaxU64 (false, start_address);
2859 
2860     // Parse out the space after the address.
2861     if (!line_extractor.GetBytesLeft () || (line_extractor.GetChar () != ' '))
2862         return Error ("malformed /proc/{pid}/maps entry, missing space after range");
2863 
2864     // Save the range.
2865     memory_region_info.GetRange ().SetRangeBase (start_address);
2866     memory_region_info.GetRange ().SetRangeEnd (end_address);
2867 
2868     // Parse out each permission entry.
2869     if (line_extractor.GetBytesLeft () < 4)
2870         return Error ("malformed /proc/{pid}/maps entry, missing some portion of permissions");
2871 
2872     // Handle read permission.
2873     const char read_perm_char = line_extractor.GetChar ();
2874     if (read_perm_char == 'r')
2875         memory_region_info.SetReadable (MemoryRegionInfo::OptionalBool::eYes);
2876     else
2877     {
2878         assert ( (read_perm_char == '-') && "unexpected /proc/{pid}/maps read permission char" );
2879         memory_region_info.SetReadable (MemoryRegionInfo::OptionalBool::eNo);
2880     }
2881 
2882     // Handle write permission.
2883     const char write_perm_char = line_extractor.GetChar ();
2884     if (write_perm_char == 'w')
2885         memory_region_info.SetWritable (MemoryRegionInfo::OptionalBool::eYes);
2886     else
2887     {
2888         assert ( (write_perm_char == '-') && "unexpected /proc/{pid}/maps write permission char" );
2889         memory_region_info.SetWritable (MemoryRegionInfo::OptionalBool::eNo);
2890     }
2891 
2892     // Handle execute permission.
2893     const char exec_perm_char = line_extractor.GetChar ();
2894     if (exec_perm_char == 'x')
2895         memory_region_info.SetExecutable (MemoryRegionInfo::OptionalBool::eYes);
2896     else
2897     {
2898         assert ( (exec_perm_char == '-') && "unexpected /proc/{pid}/maps exec permission char" );
2899         memory_region_info.SetExecutable (MemoryRegionInfo::OptionalBool::eNo);
2900     }
2901 
2902     return Error ();
2903 }
2904 
2905 Error
2906 NativeProcessLinux::GetMemoryRegionInfo (lldb::addr_t load_addr, MemoryRegionInfo &range_info)
2907 {
2908     // FIXME review that the final memory region returned extends to the end of the virtual address space,
2909     // with no perms if it is not mapped.
2910 
2911     // Use an approach that reads memory regions from /proc/{pid}/maps.
2912     // Assume proc maps entries are in ascending order.
2913     // FIXME assert if we find differently.
2914     Mutex::Locker locker (m_mem_region_cache_mutex);
2915 
2916     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
2917     Error error;
2918 
2919     if (m_supports_mem_region == LazyBool::eLazyBoolNo)
2920     {
2921         // We're done.
2922         error.SetErrorString ("unsupported");
2923         return error;
2924     }
2925 
2926     // If our cache is empty, pull the latest.  There should always be at least one memory region
2927     // if memory region handling is supported.
2928     if (m_mem_region_cache.empty ())
2929     {
2930         error = ProcFileReader::ProcessLineByLine (GetID (), "maps",
2931              [&] (const std::string &line) -> bool
2932              {
2933                  MemoryRegionInfo info;
2934                  const Error parse_error = ParseMemoryRegionInfoFromProcMapsLine (line, info);
2935                  if (parse_error.Success ())
2936                  {
2937                      m_mem_region_cache.push_back (info);
2938                      return true;
2939                  }
2940                  else
2941                  {
2942                      if (log)
2943                          log->Printf ("NativeProcessLinux::%s failed to parse proc maps line '%s': %s", __FUNCTION__, line.c_str (), error.AsCString ());
2944                      return false;
2945                  }
2946              });
2947 
2948         // If we had an error, we'll mark unsupported.
2949         if (error.Fail ())
2950         {
2951             m_supports_mem_region = LazyBool::eLazyBoolNo;
2952             return error;
2953         }
2954         else if (m_mem_region_cache.empty ())
2955         {
2956             // No entries after attempting to read them.  This shouldn't happen if /proc/{pid}/maps
2957             // is supported.  Assume we don't support map entries via procfs.
2958             if (log)
2959                 log->Printf ("NativeProcessLinux::%s failed to find any procfs maps entries, assuming no support for memory region metadata retrieval", __FUNCTION__);
2960             m_supports_mem_region = LazyBool::eLazyBoolNo;
2961             error.SetErrorString ("not supported");
2962             return error;
2963         }
2964 
2965         if (log)
2966             log->Printf ("NativeProcessLinux::%s read %" PRIu64 " memory region entries from /proc/%" PRIu64 "/maps", __FUNCTION__, static_cast<uint64_t> (m_mem_region_cache.size ()), GetID ());
2967 
2968         // We support memory retrieval, remember that.
2969         m_supports_mem_region = LazyBool::eLazyBoolYes;
2970     }
2971     else
2972     {
2973         if (log)
2974             log->Printf ("NativeProcessLinux::%s reusing %" PRIu64 " cached memory region entries", __FUNCTION__, static_cast<uint64_t> (m_mem_region_cache.size ()));
2975     }
2976 
2977     lldb::addr_t prev_base_address = 0;
2978 
2979     // FIXME start by finding the last region that is <= target address using binary search.  Data is sorted.
2980     // There can be a ton of regions on pthreads apps with lots of threads.
2981     for (auto it = m_mem_region_cache.begin(); it != m_mem_region_cache.end (); ++it)
2982     {
2983         MemoryRegionInfo &proc_entry_info = *it;
2984 
2985         // Sanity check assumption that /proc/{pid}/maps entries are ascending.
2986         assert ((proc_entry_info.GetRange ().GetRangeBase () >= prev_base_address) && "descending /proc/pid/maps entries detected, unexpected");
2987         prev_base_address = proc_entry_info.GetRange ().GetRangeBase ();
2988 
2989         // If the target address comes before this entry, indicate distance to next region.
2990         if (load_addr < proc_entry_info.GetRange ().GetRangeBase ())
2991         {
2992             range_info.GetRange ().SetRangeBase (load_addr);
2993             range_info.GetRange ().SetByteSize (proc_entry_info.GetRange ().GetRangeBase () - load_addr);
2994             range_info.SetReadable (MemoryRegionInfo::OptionalBool::eNo);
2995             range_info.SetWritable (MemoryRegionInfo::OptionalBool::eNo);
2996             range_info.SetExecutable (MemoryRegionInfo::OptionalBool::eNo);
2997 
2998             return error;
2999         }
3000         else if (proc_entry_info.GetRange ().Contains (load_addr))
3001         {
3002             // The target address is within the memory region we're processing here.
3003             range_info = proc_entry_info;
3004             return error;
3005         }
3006 
3007         // The target memory address comes somewhere after the region we just parsed.
3008     }
3009 
3010     // If we made it here, we didn't find an entry that contained the given address.
3011     error.SetErrorString ("address comes after final region");
3012 
3013     if (log)
3014         log->Printf ("NativeProcessLinux::%s failed to find map entry for address 0x%" PRIx64 ": %s", __FUNCTION__, load_addr, error.AsCString ());
3015 
3016     return error;
3017 }
3018 
3019 void
3020 NativeProcessLinux::DoStopIDBumped (uint32_t newBumpId)
3021 {
3022     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3023     if (log)
3024         log->Printf ("NativeProcessLinux::%s(newBumpId=%" PRIu32 ") called", __FUNCTION__, newBumpId);
3025 
3026     {
3027         Mutex::Locker locker (m_mem_region_cache_mutex);
3028         if (log)
3029             log->Printf ("NativeProcessLinux::%s clearing %" PRIu64 " entries from the cache", __FUNCTION__, static_cast<uint64_t> (m_mem_region_cache.size ()));
3030         m_mem_region_cache.clear ();
3031     }
3032 }
3033 
3034 Error
3035 NativeProcessLinux::AllocateMemory (
3036     lldb::addr_t size,
3037     uint32_t permissions,
3038     lldb::addr_t &addr)
3039 {
3040     // FIXME implementing this requires the equivalent of
3041     // InferiorCallPOSIX::InferiorCallMmap, which depends on
3042     // functional ThreadPlans working with Native*Protocol.
3043 #if 1
3044     return Error ("not implemented yet");
3045 #else
3046     addr = LLDB_INVALID_ADDRESS;
3047 
3048     unsigned prot = 0;
3049     if (permissions & lldb::ePermissionsReadable)
3050         prot |= eMmapProtRead;
3051     if (permissions & lldb::ePermissionsWritable)
3052         prot |= eMmapProtWrite;
3053     if (permissions & lldb::ePermissionsExecutable)
3054         prot |= eMmapProtExec;
3055 
3056     // TODO implement this directly in NativeProcessLinux
3057     // (and lift to NativeProcessPOSIX if/when that class is
3058     // refactored out).
3059     if (InferiorCallMmap(this, addr, 0, size, prot,
3060                          eMmapFlagsAnon | eMmapFlagsPrivate, -1, 0)) {
3061         m_addr_to_mmap_size[addr] = size;
3062         return Error ();
3063     } else {
3064         addr = LLDB_INVALID_ADDRESS;
3065         return Error("unable to allocate %" PRIu64 " bytes of memory with permissions %s", size, GetPermissionsAsCString (permissions));
3066     }
3067 #endif
3068 }
3069 
3070 Error
3071 NativeProcessLinux::DeallocateMemory (lldb::addr_t addr)
3072 {
3073     // FIXME see comments in AllocateMemory - required lower-level
3074     // bits not in place yet (ThreadPlans)
3075     return Error ("not implemented");
3076 }
3077 
3078 lldb::addr_t
3079 NativeProcessLinux::GetSharedLibraryInfoAddress ()
3080 {
3081 #if 1
3082     // punt on this for now
3083     return LLDB_INVALID_ADDRESS;
3084 #else
3085     // Return the image info address for the exe module
3086 #if 1
3087     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3088 
3089     ModuleSP module_sp;
3090     Error error = GetExeModuleSP (module_sp);
3091     if (error.Fail ())
3092     {
3093          if (log)
3094             log->Warning ("NativeProcessLinux::%s failed to retrieve exe module: %s", __FUNCTION__, error.AsCString ());
3095         return LLDB_INVALID_ADDRESS;
3096     }
3097 
3098     if (module_sp == nullptr)
3099     {
3100          if (log)
3101             log->Warning ("NativeProcessLinux::%s exe module returned was NULL", __FUNCTION__);
3102          return LLDB_INVALID_ADDRESS;
3103     }
3104 
3105     ObjectFileSP object_file_sp = module_sp->GetObjectFile ();
3106     if (object_file_sp == nullptr)
3107     {
3108          if (log)
3109             log->Warning ("NativeProcessLinux::%s exe module returned a NULL object file", __FUNCTION__);
3110          return LLDB_INVALID_ADDRESS;
3111     }
3112 
3113     return obj_file_sp->GetImageInfoAddress();
3114 #else
3115     Target *target = &GetTarget();
3116     ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile();
3117     Address addr = obj_file->GetImageInfoAddress(target);
3118 
3119     if (addr.IsValid())
3120         return addr.GetLoadAddress(target);
3121     return LLDB_INVALID_ADDRESS;
3122 #endif
3123 #endif // punt on this for now
3124 }
3125 
3126 size_t
3127 NativeProcessLinux::UpdateThreads ()
3128 {
3129     // The NativeProcessLinux monitoring threads are always up to date
3130     // with respect to thread state and they keep the thread list
3131     // populated properly. All this method needs to do is return the
3132     // thread count.
3133     Mutex::Locker locker (m_threads_mutex);
3134     return m_threads.size ();
3135 }
3136 
3137 bool
3138 NativeProcessLinux::GetArchitecture (ArchSpec &arch) const
3139 {
3140     arch = m_arch;
3141     return true;
3142 }
3143 
3144 Error
3145 NativeProcessLinux::GetSoftwareBreakpointSize (NativeRegisterContextSP context_sp, uint32_t &actual_opcode_size)
3146 {
3147     // FIXME put this behind a breakpoint protocol class that can be
3148     // set per architecture.  Need ARM, MIPS support here.
3149     static const uint8_t g_aarch64_opcode[] = { 0x00, 0x00, 0x20, 0xd4 };
3150     static const uint8_t g_i386_opcode [] = { 0xCC };
3151 
3152     switch (m_arch.GetMachine ())
3153     {
3154         case llvm::Triple::aarch64:
3155             actual_opcode_size = static_cast<uint32_t> (sizeof(g_aarch64_opcode));
3156             return Error ();
3157 
3158         case llvm::Triple::x86:
3159         case llvm::Triple::x86_64:
3160             actual_opcode_size = static_cast<uint32_t> (sizeof(g_i386_opcode));
3161             return Error ();
3162 
3163         default:
3164             assert(false && "CPU type not supported!");
3165             return Error ("CPU type not supported");
3166     }
3167 }
3168 
3169 Error
3170 NativeProcessLinux::SetBreakpoint (lldb::addr_t addr, uint32_t size, bool hardware)
3171 {
3172     if (hardware)
3173         return Error ("NativeProcessLinux does not support hardware breakpoints");
3174     else
3175         return SetSoftwareBreakpoint (addr, size);
3176 }
3177 
3178 Error
3179 NativeProcessLinux::GetSoftwareBreakpointTrapOpcode (size_t trap_opcode_size_hint, size_t &actual_opcode_size, const uint8_t *&trap_opcode_bytes)
3180 {
3181     // FIXME put this behind a breakpoint protocol class that can be
3182     // set per architecture.  Need ARM, MIPS support here.
3183     static const uint8_t g_aarch64_opcode[] = { 0x00, 0x00, 0x20, 0xd4 };
3184     static const uint8_t g_i386_opcode [] = { 0xCC };
3185 
3186     switch (m_arch.GetMachine ())
3187     {
3188     case llvm::Triple::aarch64:
3189         trap_opcode_bytes = g_aarch64_opcode;
3190         actual_opcode_size = sizeof(g_aarch64_opcode);
3191         return Error ();
3192 
3193     case llvm::Triple::x86:
3194     case llvm::Triple::x86_64:
3195         trap_opcode_bytes = g_i386_opcode;
3196         actual_opcode_size = sizeof(g_i386_opcode);
3197         return Error ();
3198 
3199     default:
3200         assert(false && "CPU type not supported!");
3201         return Error ("CPU type not supported");
3202     }
3203 }
3204 
3205 #if 0
3206 ProcessMessage::CrashReason
3207 NativeProcessLinux::GetCrashReasonForSIGSEGV(const siginfo_t *info)
3208 {
3209     ProcessMessage::CrashReason reason;
3210     assert(info->si_signo == SIGSEGV);
3211 
3212     reason = ProcessMessage::eInvalidCrashReason;
3213 
3214     switch (info->si_code)
3215     {
3216     default:
3217         assert(false && "unexpected si_code for SIGSEGV");
3218         break;
3219     case SI_KERNEL:
3220         // Linux will occasionally send spurious SI_KERNEL codes.
3221         // (this is poorly documented in sigaction)
3222         // One way to get this is via unaligned SIMD loads.
3223         reason = ProcessMessage::eInvalidAddress; // for lack of anything better
3224         break;
3225     case SEGV_MAPERR:
3226         reason = ProcessMessage::eInvalidAddress;
3227         break;
3228     case SEGV_ACCERR:
3229         reason = ProcessMessage::ePrivilegedAddress;
3230         break;
3231     }
3232 
3233     return reason;
3234 }
3235 #endif
3236 
3237 
3238 #if 0
3239 ProcessMessage::CrashReason
3240 NativeProcessLinux::GetCrashReasonForSIGILL(const siginfo_t *info)
3241 {
3242     ProcessMessage::CrashReason reason;
3243     assert(info->si_signo == SIGILL);
3244 
3245     reason = ProcessMessage::eInvalidCrashReason;
3246 
3247     switch (info->si_code)
3248     {
3249     default:
3250         assert(false && "unexpected si_code for SIGILL");
3251         break;
3252     case ILL_ILLOPC:
3253         reason = ProcessMessage::eIllegalOpcode;
3254         break;
3255     case ILL_ILLOPN:
3256         reason = ProcessMessage::eIllegalOperand;
3257         break;
3258     case ILL_ILLADR:
3259         reason = ProcessMessage::eIllegalAddressingMode;
3260         break;
3261     case ILL_ILLTRP:
3262         reason = ProcessMessage::eIllegalTrap;
3263         break;
3264     case ILL_PRVOPC:
3265         reason = ProcessMessage::ePrivilegedOpcode;
3266         break;
3267     case ILL_PRVREG:
3268         reason = ProcessMessage::ePrivilegedRegister;
3269         break;
3270     case ILL_COPROC:
3271         reason = ProcessMessage::eCoprocessorError;
3272         break;
3273     case ILL_BADSTK:
3274         reason = ProcessMessage::eInternalStackError;
3275         break;
3276     }
3277 
3278     return reason;
3279 }
3280 #endif
3281 
3282 #if 0
3283 ProcessMessage::CrashReason
3284 NativeProcessLinux::GetCrashReasonForSIGFPE(const siginfo_t *info)
3285 {
3286     ProcessMessage::CrashReason reason;
3287     assert(info->si_signo == SIGFPE);
3288 
3289     reason = ProcessMessage::eInvalidCrashReason;
3290 
3291     switch (info->si_code)
3292     {
3293     default:
3294         assert(false && "unexpected si_code for SIGFPE");
3295         break;
3296     case FPE_INTDIV:
3297         reason = ProcessMessage::eIntegerDivideByZero;
3298         break;
3299     case FPE_INTOVF:
3300         reason = ProcessMessage::eIntegerOverflow;
3301         break;
3302     case FPE_FLTDIV:
3303         reason = ProcessMessage::eFloatDivideByZero;
3304         break;
3305     case FPE_FLTOVF:
3306         reason = ProcessMessage::eFloatOverflow;
3307         break;
3308     case FPE_FLTUND:
3309         reason = ProcessMessage::eFloatUnderflow;
3310         break;
3311     case FPE_FLTRES:
3312         reason = ProcessMessage::eFloatInexactResult;
3313         break;
3314     case FPE_FLTINV:
3315         reason = ProcessMessage::eFloatInvalidOperation;
3316         break;
3317     case FPE_FLTSUB:
3318         reason = ProcessMessage::eFloatSubscriptRange;
3319         break;
3320     }
3321 
3322     return reason;
3323 }
3324 #endif
3325 
3326 #if 0
3327 ProcessMessage::CrashReason
3328 NativeProcessLinux::GetCrashReasonForSIGBUS(const siginfo_t *info)
3329 {
3330     ProcessMessage::CrashReason reason;
3331     assert(info->si_signo == SIGBUS);
3332 
3333     reason = ProcessMessage::eInvalidCrashReason;
3334 
3335     switch (info->si_code)
3336     {
3337     default:
3338         assert(false && "unexpected si_code for SIGBUS");
3339         break;
3340     case BUS_ADRALN:
3341         reason = ProcessMessage::eIllegalAlignment;
3342         break;
3343     case BUS_ADRERR:
3344         reason = ProcessMessage::eIllegalAddress;
3345         break;
3346     case BUS_OBJERR:
3347         reason = ProcessMessage::eHardwareError;
3348         break;
3349     }
3350 
3351     return reason;
3352 }
3353 #endif
3354 
3355 void
3356 NativeProcessLinux::ServeOperation(OperationArgs *args)
3357 {
3358     NativeProcessLinux *monitor = args->m_monitor;
3359 
3360     // We are finised with the arguments and are ready to go.  Sync with the
3361     // parent thread and start serving operations on the inferior.
3362     sem_post(&args->m_semaphore);
3363 
3364     for(;;)
3365     {
3366         // wait for next pending operation
3367         if (sem_wait(&monitor->m_operation_pending))
3368         {
3369             if (errno == EINTR)
3370                 continue;
3371             assert(false && "Unexpected errno from sem_wait");
3372         }
3373 
3374         reinterpret_cast<Operation*>(monitor->m_operation)->Execute(monitor);
3375 
3376         // notify calling thread that operation is complete
3377         sem_post(&monitor->m_operation_done);
3378     }
3379 }
3380 
3381 void
3382 NativeProcessLinux::DoOperation(void *op)
3383 {
3384     Mutex::Locker lock(m_operation_mutex);
3385 
3386     m_operation = op;
3387 
3388     // notify operation thread that an operation is ready to be processed
3389     sem_post(&m_operation_pending);
3390 
3391     // wait for operation to complete
3392     while (sem_wait(&m_operation_done))
3393     {
3394         if (errno == EINTR)
3395             continue;
3396         assert(false && "Unexpected errno from sem_wait");
3397     }
3398 }
3399 
3400 Error
3401 NativeProcessLinux::ReadMemory (lldb::addr_t addr, void *buf, lldb::addr_t size, lldb::addr_t &bytes_read)
3402 {
3403     ReadOperation op(addr, buf, size, bytes_read);
3404     DoOperation(&op);
3405     return op.GetError ();
3406 }
3407 
3408 Error
3409 NativeProcessLinux::WriteMemory (lldb::addr_t addr, const void *buf, lldb::addr_t size, lldb::addr_t &bytes_written)
3410 {
3411     WriteOperation op(addr, buf, size, bytes_written);
3412     DoOperation(&op);
3413     return op.GetError ();
3414 }
3415 
3416 Error
3417 NativeProcessLinux::ReadRegisterValue(lldb::tid_t tid, uint32_t offset, const char* reg_name,
3418                                   uint32_t size, RegisterValue &value)
3419 {
3420     ReadRegOperation op(tid, offset, reg_name, value);
3421     DoOperation(&op);
3422     return op.GetError();
3423 }
3424 
3425 Error
3426 NativeProcessLinux::WriteRegisterValue(lldb::tid_t tid, unsigned offset,
3427                                    const char* reg_name, const RegisterValue &value)
3428 {
3429     WriteRegOperation op(tid, offset, reg_name, value);
3430     DoOperation(&op);
3431     return op.GetError();
3432 }
3433 
3434 Error
3435 NativeProcessLinux::ReadGPR(lldb::tid_t tid, void *buf, size_t buf_size)
3436 {
3437     ReadGPROperation op(tid, buf, buf_size);
3438     DoOperation(&op);
3439     return op.GetError();
3440 }
3441 
3442 Error
3443 NativeProcessLinux::ReadFPR(lldb::tid_t tid, void *buf, size_t buf_size)
3444 {
3445     ReadFPROperation op(tid, buf, buf_size);
3446     DoOperation(&op);
3447     return op.GetError();
3448 }
3449 
3450 Error
3451 NativeProcessLinux::ReadRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset)
3452 {
3453     ReadRegisterSetOperation op(tid, buf, buf_size, regset);
3454     DoOperation(&op);
3455     return op.GetError();
3456 }
3457 
3458 Error
3459 NativeProcessLinux::WriteGPR(lldb::tid_t tid, void *buf, size_t buf_size)
3460 {
3461     WriteGPROperation op(tid, buf, buf_size);
3462     DoOperation(&op);
3463     return op.GetError();
3464 }
3465 
3466 Error
3467 NativeProcessLinux::WriteFPR(lldb::tid_t tid, void *buf, size_t buf_size)
3468 {
3469     WriteFPROperation op(tid, buf, buf_size);
3470     DoOperation(&op);
3471     return op.GetError();
3472 }
3473 
3474 Error
3475 NativeProcessLinux::WriteRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset)
3476 {
3477     WriteRegisterSetOperation op(tid, buf, buf_size, regset);
3478     DoOperation(&op);
3479     return op.GetError();
3480 }
3481 
3482 Error
3483 NativeProcessLinux::Resume (lldb::tid_t tid, uint32_t signo)
3484 {
3485     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
3486 
3487     if (log)
3488         log->Printf ("NativeProcessLinux::%s() resuming thread = %"  PRIu64 " with signal %s", __FUNCTION__, tid,
3489                                  GetUnixSignals().GetSignalAsCString (signo));
3490     ResumeOperation op (tid, signo);
3491     DoOperation (&op);
3492     if (log)
3493         log->Printf ("NativeProcessLinux::%s() resuming thread = %"  PRIu64 " result = %s", __FUNCTION__, tid, op.GetError().Success() ? "true" : "false");
3494     return op.GetError();
3495 }
3496 
3497 Error
3498 NativeProcessLinux::SingleStep(lldb::tid_t tid, uint32_t signo)
3499 {
3500     SingleStepOperation op(tid, signo);
3501     DoOperation(&op);
3502     return op.GetError();
3503 }
3504 
3505 Error
3506 NativeProcessLinux::GetSignalInfo(lldb::tid_t tid, void *siginfo)
3507 {
3508     SiginfoOperation op(tid, siginfo);
3509     DoOperation(&op);
3510     return op.GetError();
3511 }
3512 
3513 Error
3514 NativeProcessLinux::GetEventMessage(lldb::tid_t tid, unsigned long *message)
3515 {
3516     EventMessageOperation op(tid, message);
3517     DoOperation(&op);
3518     return op.GetError();
3519 }
3520 
3521 lldb_private::Error
3522 NativeProcessLinux::Detach(lldb::tid_t tid)
3523 {
3524     if (tid == LLDB_INVALID_THREAD_ID)
3525         return Error();
3526 
3527     DetachOperation op(tid);
3528     DoOperation(&op);
3529     return op.GetError();
3530 }
3531 
3532 bool
3533 NativeProcessLinux::DupDescriptor(const char *path, int fd, int flags)
3534 {
3535     int target_fd = open(path, flags, 0666);
3536 
3537     if (target_fd == -1)
3538         return false;
3539 
3540     if (dup2(target_fd, fd) == -1)
3541         return false;
3542 
3543     return (close(target_fd) == -1) ? false : true;
3544 }
3545 
3546 void
3547 NativeProcessLinux::StopMonitoringChildProcess()
3548 {
3549     if (m_monitor_thread.IsJoinable())
3550     {
3551         m_monitor_thread.Cancel();
3552         m_monitor_thread.Join(nullptr);
3553     }
3554 }
3555 
3556 void
3557 NativeProcessLinux::StopMonitor()
3558 {
3559     StopMonitoringChildProcess();
3560     StopOpThread();
3561     StopCoordinatorThread ();
3562     sem_destroy(&m_operation_pending);
3563     sem_destroy(&m_operation_done);
3564 
3565     // TODO: validate whether this still holds, fix up comment.
3566     // Note: ProcessPOSIX passes the m_terminal_fd file descriptor to
3567     // Process::SetSTDIOFileDescriptor, which in turn transfers ownership of
3568     // the descriptor to a ConnectionFileDescriptor object.  Consequently
3569     // even though still has the file descriptor, we shouldn't close it here.
3570 }
3571 
3572 void
3573 NativeProcessLinux::StopOpThread()
3574 {
3575     if (!m_operation_thread.IsJoinable())
3576         return;
3577 
3578     m_operation_thread.Cancel();
3579     m_operation_thread.Join(nullptr);
3580 }
3581 
3582 Error
3583 NativeProcessLinux::StartCoordinatorThread ()
3584 {
3585     Error error;
3586     static const char *g_thread_name = "lldb.process.linux.ts_coordinator";
3587     Log *const log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
3588 
3589     // Skip if thread is already running
3590     if (m_coordinator_thread.IsJoinable())
3591     {
3592         error.SetErrorString ("ThreadStateCoordinator's run loop is already running");
3593         if (log)
3594             log->Printf ("NativeProcessLinux::%s %s", __FUNCTION__, error.AsCString ());
3595         return error;
3596     }
3597 
3598     // Enable verbose logging if lldb thread logging is enabled.
3599     m_coordinator_up->LogEnableEventProcessing (log != nullptr);
3600 
3601     if (log)
3602         log->Printf ("NativeProcessLinux::%s launching ThreadStateCoordinator thread for pid %" PRIu64, __FUNCTION__, GetID ());
3603     m_coordinator_thread = ThreadLauncher::LaunchThread(g_thread_name, CoordinatorThread, this, &error);
3604     return error;
3605 }
3606 
3607 void *
3608 NativeProcessLinux::CoordinatorThread (void *arg)
3609 {
3610     Log *const log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
3611 
3612     NativeProcessLinux *const process = static_cast<NativeProcessLinux*> (arg);
3613     assert (process && "null process passed to CoordinatorThread");
3614     if (!process)
3615     {
3616         if (log)
3617             log->Printf ("NativeProcessLinux::%s null process, exiting ThreadStateCoordinator processing loop", __FUNCTION__);
3618         return nullptr;
3619     }
3620 
3621     // Run the thread state coordinator loop until it is done.  This call uses
3622     // efficient waiting for an event to be ready.
3623     while (process->m_coordinator_up->ProcessNextEvent () == ThreadStateCoordinator::eventLoopResultContinue)
3624     {
3625     }
3626 
3627     if (log)
3628         log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " exiting ThreadStateCoordinator processing loop due to coordinator indicating completion", __FUNCTION__, process->GetID ());
3629 
3630     return nullptr;
3631 }
3632 
3633 void
3634 NativeProcessLinux::StopCoordinatorThread()
3635 {
3636     Log *const log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
3637     if (log)
3638         log->Printf ("NativeProcessLinux::%s requesting ThreadStateCoordinator stop for pid %" PRIu64, __FUNCTION__, GetID ());
3639 
3640     // Tell the coordinator we're done.  This will cause the coordinator
3641     // run loop thread to exit when the processing queue hits this message.
3642     m_coordinator_up->StopCoordinator ();
3643 }
3644 
3645 bool
3646 NativeProcessLinux::HasThreadNoLock (lldb::tid_t thread_id)
3647 {
3648     for (auto thread_sp : m_threads)
3649     {
3650         assert (thread_sp && "thread list should not contain NULL threads");
3651         if (thread_sp->GetID () == thread_id)
3652         {
3653             // We have this thread.
3654             return true;
3655         }
3656     }
3657 
3658     // We don't have this thread.
3659     return false;
3660 }
3661 
3662 NativeThreadProtocolSP
3663 NativeProcessLinux::MaybeGetThreadNoLock (lldb::tid_t thread_id)
3664 {
3665     // CONSIDER organize threads by map - we can do better than linear.
3666     for (auto thread_sp : m_threads)
3667     {
3668         if (thread_sp->GetID () == thread_id)
3669             return thread_sp;
3670     }
3671 
3672     // We don't have this thread.
3673     return NativeThreadProtocolSP ();
3674 }
3675 
3676 bool
3677 NativeProcessLinux::StopTrackingThread (lldb::tid_t thread_id)
3678 {
3679     Mutex::Locker locker (m_threads_mutex);
3680     for (auto it = m_threads.begin (); it != m_threads.end (); ++it)
3681     {
3682         if (*it && ((*it)->GetID () == thread_id))
3683         {
3684             m_threads.erase (it);
3685             return true;
3686         }
3687     }
3688 
3689     // Didn't find it.
3690     return false;
3691 }
3692 
3693 NativeThreadProtocolSP
3694 NativeProcessLinux::AddThread (lldb::tid_t thread_id)
3695 {
3696     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
3697 
3698     Mutex::Locker locker (m_threads_mutex);
3699 
3700     if (log)
3701     {
3702         log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " adding thread with tid %" PRIu64,
3703                 __FUNCTION__,
3704                 GetID (),
3705                 thread_id);
3706     }
3707 
3708     assert (!HasThreadNoLock (thread_id) && "attempted to add a thread by id that already exists");
3709 
3710     // If this is the first thread, save it as the current thread
3711     if (m_threads.empty ())
3712         SetCurrentThreadID (thread_id);
3713 
3714     NativeThreadProtocolSP thread_sp (new NativeThreadLinux (this, thread_id));
3715     m_threads.push_back (thread_sp);
3716 
3717     return thread_sp;
3718 }
3719 
3720 NativeThreadProtocolSP
3721 NativeProcessLinux::GetOrCreateThread (lldb::tid_t thread_id, bool &created)
3722 {
3723     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
3724 
3725     Mutex::Locker locker (m_threads_mutex);
3726     if (log)
3727     {
3728         log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " get/create thread with tid %" PRIu64,
3729                      __FUNCTION__,
3730                      GetID (),
3731                      thread_id);
3732     }
3733 
3734     // Retrieve the thread if it is already getting tracked.
3735     NativeThreadProtocolSP thread_sp = MaybeGetThreadNoLock (thread_id);
3736     if (thread_sp)
3737     {
3738         if (log)
3739             log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " tid %" PRIu64 ": thread already tracked, returning",
3740                          __FUNCTION__,
3741                          GetID (),
3742                          thread_id);
3743         created = false;
3744         return thread_sp;
3745 
3746     }
3747 
3748     // Create the thread metadata since it isn't being tracked.
3749     if (log)
3750         log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " tid %" PRIu64 ": thread didn't exist, tracking now",
3751                      __FUNCTION__,
3752                      GetID (),
3753                      thread_id);
3754 
3755     thread_sp.reset (new NativeThreadLinux (this, thread_id));
3756     m_threads.push_back (thread_sp);
3757     created = true;
3758 
3759     return thread_sp;
3760 }
3761 
3762 Error
3763 NativeProcessLinux::FixupBreakpointPCAsNeeded (NativeThreadProtocolSP &thread_sp)
3764 {
3765     Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
3766 
3767     Error error;
3768 
3769     // Get a linux thread pointer.
3770     if (!thread_sp)
3771     {
3772         error.SetErrorString ("null thread_sp");
3773         if (log)
3774             log->Printf ("NativeProcessLinux::%s failed: %s", __FUNCTION__, error.AsCString ());
3775         return error;
3776     }
3777     NativeThreadLinux *const linux_thread_p = reinterpret_cast<NativeThreadLinux*> (thread_sp.get());
3778 
3779     // Find out the size of a breakpoint (might depend on where we are in the code).
3780     NativeRegisterContextSP context_sp = linux_thread_p->GetRegisterContext ();
3781     if (!context_sp)
3782     {
3783         error.SetErrorString ("cannot get a NativeRegisterContext for the thread");
3784         if (log)
3785             log->Printf ("NativeProcessLinux::%s failed: %s", __FUNCTION__, error.AsCString ());
3786         return error;
3787     }
3788 
3789     uint32_t breakpoint_size = 0;
3790     error = GetSoftwareBreakpointSize (context_sp, breakpoint_size);
3791     if (error.Fail ())
3792     {
3793         if (log)
3794             log->Printf ("NativeProcessLinux::%s GetBreakpointSize() failed: %s", __FUNCTION__, error.AsCString ());
3795         return error;
3796     }
3797     else
3798     {
3799         if (log)
3800             log->Printf ("NativeProcessLinux::%s breakpoint size: %" PRIu32, __FUNCTION__, breakpoint_size);
3801     }
3802 
3803     // First try probing for a breakpoint at a software breakpoint location: PC - breakpoint size.
3804     const lldb::addr_t initial_pc_addr = context_sp->GetPC ();
3805     lldb::addr_t breakpoint_addr = initial_pc_addr;
3806     if (breakpoint_size > static_cast<lldb::addr_t> (0))
3807     {
3808         // Do not allow breakpoint probe to wrap around.
3809         if (breakpoint_addr >= static_cast<lldb::addr_t> (breakpoint_size))
3810             breakpoint_addr -= static_cast<lldb::addr_t> (breakpoint_size);
3811     }
3812 
3813     // Check if we stopped because of a breakpoint.
3814     NativeBreakpointSP breakpoint_sp;
3815     error = m_breakpoint_list.GetBreakpoint (breakpoint_addr, breakpoint_sp);
3816     if (!error.Success () || !breakpoint_sp)
3817     {
3818         // We didn't find one at a software probe location.  Nothing to do.
3819         if (log)
3820             log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " no lldb breakpoint found at current pc with adjustment: 0x%" PRIx64, __FUNCTION__, GetID (), breakpoint_addr);
3821         return Error ();
3822     }
3823 
3824     // If the breakpoint is not a software breakpoint, nothing to do.
3825     if (!breakpoint_sp->IsSoftwareBreakpoint ())
3826     {
3827         if (log)
3828             log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " breakpoint found at 0x%" PRIx64 ", not software, nothing to adjust", __FUNCTION__, GetID (), breakpoint_addr);
3829         return Error ();
3830     }
3831 
3832     //
3833     // We have a software breakpoint and need to adjust the PC.
3834     //
3835 
3836     // Sanity check.
3837     if (breakpoint_size == 0)
3838     {
3839         // Nothing to do!  How did we get here?
3840         if (log)
3841             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);
3842         return Error ();
3843     }
3844 
3845     // Change the program counter.
3846     if (log)
3847         log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " tid %" PRIu64 ": changing PC from 0x%" PRIx64 " to 0x%" PRIx64, __FUNCTION__, GetID (), linux_thread_p->GetID (), initial_pc_addr, breakpoint_addr);
3848 
3849     error = context_sp->SetPC (breakpoint_addr);
3850     if (error.Fail ())
3851     {
3852         if (log)
3853             log->Printf ("NativeProcessLinux::%s pid %" PRIu64 " tid %" PRIu64 ": failed to set PC: %s", __FUNCTION__, GetID (), linux_thread_p->GetID (), error.AsCString ());
3854         return error;
3855     }
3856 
3857     return error;
3858 }
3859 
3860 void
3861 NativeProcessLinux::NotifyThreadCreateStopped (lldb::tid_t tid)
3862 {
3863     const bool is_stopped = true;
3864     m_coordinator_up->NotifyThreadCreate (tid, is_stopped, CoordinatorErrorHandler);
3865 }
3866 
3867 void
3868 NativeProcessLinux::NotifyThreadDeath (lldb::tid_t tid)
3869 {
3870     m_coordinator_up->NotifyThreadDeath (tid, CoordinatorErrorHandler);
3871 }
3872 
3873 void
3874 NativeProcessLinux::NotifyThreadStop (lldb::tid_t tid)
3875 {
3876     m_coordinator_up->NotifyThreadStop (tid, false, CoordinatorErrorHandler);
3877 }
3878 
3879 void
3880 NativeProcessLinux::CallAfterRunningThreadsStop (lldb::tid_t tid,
3881                                                  const std::function<void (lldb::tid_t tid)> &call_after_function)
3882 {
3883     Log *const log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
3884     if (log)
3885         log->Printf("NativeProcessLinux::%s tid %" PRIu64, __FUNCTION__, tid);
3886 
3887     const lldb::pid_t pid = GetID ();
3888     m_coordinator_up->CallAfterRunningThreadsStop (tid,
3889                                                    [=](lldb::tid_t request_stop_tid)
3890                                                    {
3891                                                        return RequestThreadStop(pid, request_stop_tid);
3892                                                    },
3893                                                    call_after_function,
3894                                                    CoordinatorErrorHandler);
3895 }
3896 
3897 void
3898 NativeProcessLinux::CallAfterRunningThreadsStopWithSkipTID (lldb::tid_t deferred_signal_tid,
3899                                                             lldb::tid_t skip_stop_request_tid,
3900                                                             const std::function<void (lldb::tid_t tid)> &call_after_function)
3901 {
3902     Log *const log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
3903     if (log)
3904         log->Printf("NativeProcessLinux::%s deferred_signal_tid %" PRIu64 ", skip_stop_request_tid %" PRIu64, __FUNCTION__, deferred_signal_tid, skip_stop_request_tid);
3905 
3906     const lldb::pid_t pid = GetID ();
3907     m_coordinator_up->CallAfterRunningThreadsStopWithSkipTIDs (deferred_signal_tid,
3908                                                                skip_stop_request_tid != LLDB_INVALID_THREAD_ID ? ThreadStateCoordinator::ThreadIDSet {skip_stop_request_tid} : ThreadStateCoordinator::ThreadIDSet (),
3909                                                                [=](lldb::tid_t request_stop_tid)
3910                                                                {
3911                                                                    return RequestThreadStop(pid, request_stop_tid);
3912                                                                },
3913                                                                call_after_function,
3914                                                                CoordinatorErrorHandler);
3915 }
3916 
3917 lldb_private::Error
3918 NativeProcessLinux::RequestThreadStop (const lldb::pid_t pid, const lldb::tid_t tid)
3919 {
3920     Log* log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
3921     if (log)
3922         log->Printf ("NativeProcessLinux::%s requesting thread stop(pid: %" PRIu64 ", tid: %" PRIu64 ")", __FUNCTION__, pid, tid);
3923 
3924     Error err;
3925     errno = 0;
3926     if (::tgkill (pid, tid, SIGSTOP) != 0)
3927     {
3928         err.SetErrorToErrno ();
3929         if (log)
3930             log->Printf ("NativeProcessLinux::%s tgkill(%" PRIu64 ", %" PRIu64 ", SIGSTOP) failed: %s", __FUNCTION__, pid, tid, err.AsCString ());
3931     }
3932 
3933     return err;
3934 }
3935