blob: 00c2fa37b3832d13b9cc4043ab0aafb48da3a2a8 [file] [log] [blame]
Greg Clayton2bddd342010-09-07 20:11:56 +00001//===-- Host.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
Daniel Malea93a64302012-12-05 00:20:57 +000010#include "lldb/lldb-python.h"
11
Greg Claytone3e3fee2013-02-17 20:46:30 +000012// C includes
Greg Claytone3e3fee2013-02-17 20:46:30 +000013#include <errno.h>
Greg Claytone3e3fee2013-02-17 20:46:30 +000014#include <limits.h>
Greg Clayton23f8c952014-03-24 23:10:19 +000015#include <stdlib.h>
Virgile Bellob2f1fb22013-08-23 12:44:05 +000016#include <sys/types.h>
Virgile Bellob2f1fb22013-08-23 12:44:05 +000017#ifdef _WIN32
18#include "lldb/Host/windows/windows.h"
19#include <winsock2.h>
Hafiz Abid Qadeera6678752014-03-10 22:31:39 +000020#include <ws2tcpip.h>
Virgile Bellob2f1fb22013-08-23 12:44:05 +000021#else
Deepak Panickalb36da432014-01-13 14:55:15 +000022#include <unistd.h>
Virgile Bellob2f1fb22013-08-23 12:44:05 +000023#include <dlfcn.h>
24#include <grp.h>
Greg Claytone3e3fee2013-02-17 20:46:30 +000025#include <netdb.h>
26#include <pwd.h>
Jason Molenda4a4b5dc2013-11-21 02:45:55 +000027#include <sys/stat.h>
Sylvestre Ledru785ee472013-09-05 15:39:09 +000028#endif
29
30#if !defined (__GNU__) && !defined (_WIN32)
31// Does not exist under GNU/HURD or Windows
Ed Mastef2b01622013-06-28 12:35:08 +000032#include <sys/sysctl.h>
Virgile Bellob2f1fb22013-08-23 12:44:05 +000033#endif
Greg Claytone3e3fee2013-02-17 20:46:30 +000034
35#if defined (__APPLE__)
Greg Claytone3e3fee2013-02-17 20:46:30 +000036#include <mach/mach_port.h>
Charles Davis510938e2013-08-27 05:04:57 +000037#include <mach/mach_init.h>
38#include <mach-o/dyld.h>
Ed Maste8b006c62013-06-25 18:58:11 +000039#endif
Greg Claytone3e3fee2013-02-17 20:46:30 +000040
Joerg Sonnenbergera53b3592014-05-02 19:09:40 +000041#if defined (__linux__) || defined (__FreeBSD__) || defined (__FreeBSD_kernel__) || defined (__APPLE__) || defined(__NetBSD__)
Daniel Malea4244cbd2013-08-27 20:58:59 +000042#include <spawn.h>
Greg Claytone3e3fee2013-02-17 20:46:30 +000043#include <sys/wait.h>
Michael Sartainc2052432013-08-01 18:51:08 +000044#include <sys/syscall.h>
Ed Maste8b006c62013-06-25 18:58:11 +000045#endif
Greg Claytone3e3fee2013-02-17 20:46:30 +000046
Ed Maste8b006c62013-06-25 18:58:11 +000047#if defined (__FreeBSD__)
Greg Claytone3e3fee2013-02-17 20:46:30 +000048#include <pthread_np.h>
Greg Claytone3e3fee2013-02-17 20:46:30 +000049#endif
50
Todd Fiala17096d72014-07-16 19:03:16 +000051// C++ includes
52#include <limits>
53
Greg Clayton2bddd342010-09-07 20:11:56 +000054#include "lldb/Host/Host.h"
Zachary Turner97a14e62014-08-19 17:18:29 +000055#include "lldb/Host/HostInfo.h"
Greg Clayton2bddd342010-09-07 20:11:56 +000056#include "lldb/Core/ArchSpec.h"
57#include "lldb/Core/ConstString.h"
Sean Callananc0a6e062011-10-27 21:22:25 +000058#include "lldb/Core/Debugger.h"
Greg Clayton2bddd342010-09-07 20:11:56 +000059#include "lldb/Core/Error.h"
Greg Clayton2bddd342010-09-07 20:11:56 +000060#include "lldb/Core/Log.h"
Daniel Malea4244cbd2013-08-27 20:58:59 +000061#include "lldb/Core/Module.h"
Greg Clayton2bddd342010-09-07 20:11:56 +000062#include "lldb/Core/StreamString.h"
Jim Inghamc075ecd2012-05-04 19:24:49 +000063#include "lldb/Core/ThreadSafeSTLMap.h"
Greg Clayton45319462011-02-08 00:35:34 +000064#include "lldb/Host/Config.h"
Greg Clayton7fb56d02011-02-01 01:31:41 +000065#include "lldb/Host/Endian.h"
Greg Claytone996fd32011-03-08 22:40:15 +000066#include "lldb/Host/FileSpec.h"
Zachary Turnerc00cf4a2014-08-15 22:04:21 +000067#include "lldb/Host/FileSystem.h"
Greg Clayton2bddd342010-09-07 20:11:56 +000068#include "lldb/Host/Mutex.h"
Todd Fiala4ceced32014-08-29 17:35:57 +000069#include "lldb/lldb-private-forward.h"
Zachary Turner696b5282014-08-14 16:01:25 +000070#include "lldb/Target/FileAction.h"
Greg Claytone996fd32011-03-08 22:40:15 +000071#include "lldb/Target/Process.h"
Zachary Turner696b5282014-08-14 16:01:25 +000072#include "lldb/Target/ProcessLaunchInfo.h"
Sean Callananc0a6e062011-10-27 21:22:25 +000073#include "lldb/Target/TargetList.h"
Daniel Malea4244cbd2013-08-27 20:58:59 +000074#include "lldb/Utility/CleanUp.h"
Greg Clayton2bddd342010-09-07 20:11:56 +000075
Saleem Abdulrasool28606952014-06-27 05:17:41 +000076#include "llvm/ADT/STLExtras.h"
Daniel Maleafa7425d2013-08-06 21:40:08 +000077#include "llvm/ADT/SmallString.h"
Stephen Wilsonbd588712011-02-24 19:15:09 +000078#include "llvm/Support/Host.h"
Zachary Turner9e757b72014-07-28 16:45:05 +000079#include "llvm/Support/Path.h"
Daniel Maleafa7425d2013-08-06 21:40:08 +000080#include "llvm/Support/raw_ostream.h"
Stephen Wilsonbd588712011-02-24 19:15:09 +000081
Todd Fiala76747122014-01-23 00:52:28 +000082#if defined (__APPLE__)
83#ifndef _POSIX_SPAWN_DISABLE_ASLR
84#define _POSIX_SPAWN_DISABLE_ASLR 0x0100
85#endif
86
87extern "C"
88{
89 int __pthread_chdir(const char *path);
90 int __pthread_fchdir (int fildes);
91}
92
93#endif
Greg Clayton32e0a752011-03-30 18:16:51 +000094
Greg Clayton2bddd342010-09-07 20:11:56 +000095using namespace lldb;
96using namespace lldb_private;
97
Todd Fiala17096d72014-07-16 19:03:16 +000098// Define maximum thread name length
99#if defined (__linux__) || defined (__FreeBSD__) || defined (__FreeBSD_kernel__) || defined (__NetBSD__)
100uint32_t const Host::MAX_THREAD_NAME_LENGTH = 16;
101#else
102uint32_t const Host::MAX_THREAD_NAME_LENGTH = std::numeric_limits<uint32_t>::max ();
103#endif
Greg Claytone4e45922011-11-16 05:37:56 +0000104
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000105#if !defined (__APPLE__) && !defined (_WIN32)
Greg Clayton2bddd342010-09-07 20:11:56 +0000106struct MonitorInfo
107{
108 lldb::pid_t pid; // The process ID to monitor
109 Host::MonitorChildProcessCallback callback; // The callback function to call when "pid" exits or signals
110 void *callback_baton; // The callback baton for the callback function
111 bool monitor_signals; // If true, call the callback when "pid" gets signaled.
112};
113
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000114static thread_result_t
Greg Clayton2bddd342010-09-07 20:11:56 +0000115MonitorChildProcessThreadFunction (void *arg);
116
117lldb::thread_t
118Host::StartMonitoringChildProcess
119(
120 Host::MonitorChildProcessCallback callback,
121 void *callback_baton,
122 lldb::pid_t pid,
123 bool monitor_signals
124)
125{
126 lldb::thread_t thread = LLDB_INVALID_HOST_THREAD;
Greg Claytone4e45922011-11-16 05:37:56 +0000127 MonitorInfo * info_ptr = new MonitorInfo();
Daniel Malea4244cbd2013-08-27 20:58:59 +0000128
Greg Claytone4e45922011-11-16 05:37:56 +0000129 info_ptr->pid = pid;
130 info_ptr->callback = callback;
131 info_ptr->callback_baton = callback_baton;
132 info_ptr->monitor_signals = monitor_signals;
133
134 char thread_name[256];
Todd Fiala0b903a02014-08-28 21:21:39 +0000135
136 if (Host::MAX_THREAD_NAME_LENGTH <= 16)
137 {
138 // On some platforms, the thread name is limited to 16 characters. We need to
139 // abbreviate there or the pid info would get truncated.
140 ::snprintf (thread_name, sizeof(thread_name), "wait4(%" PRIu64 ")", pid);
141 }
142 else
143 {
144 ::snprintf (thread_name, sizeof(thread_name), "<lldb.host.wait4(pid=%" PRIu64 ")>", pid);
145 }
146
Greg Claytone4e45922011-11-16 05:37:56 +0000147 thread = ThreadCreate (thread_name,
148 MonitorChildProcessThreadFunction,
149 info_ptr,
150 NULL);
151
Greg Clayton2bddd342010-09-07 20:11:56 +0000152 return thread;
153}
154
155//------------------------------------------------------------------
156// Scoped class that will disable thread canceling when it is
157// constructed, and exception safely restore the previous value it
158// when it goes out of scope.
159//------------------------------------------------------------------
160class ScopedPThreadCancelDisabler
161{
162public:
163 ScopedPThreadCancelDisabler()
164 {
165 // Disable the ability for this thread to be cancelled
166 int err = ::pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &m_old_state);
167 if (err != 0)
168 m_old_state = -1;
169
170 }
171
172 ~ScopedPThreadCancelDisabler()
173 {
174 // Restore the ability for this thread to be cancelled to what it
175 // previously was.
176 if (m_old_state != -1)
177 ::pthread_setcancelstate (m_old_state, 0);
178 }
179private:
180 int m_old_state; // Save the old cancelability state.
181};
182
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000183static thread_result_t
Greg Clayton2bddd342010-09-07 20:11:56 +0000184MonitorChildProcessThreadFunction (void *arg)
185{
Greg Clayton5160ce52013-03-27 23:08:40 +0000186 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
Greg Clayton2bddd342010-09-07 20:11:56 +0000187 const char *function = __FUNCTION__;
188 if (log)
189 log->Printf ("%s (arg = %p) thread starting...", function, arg);
190
191 MonitorInfo *info = (MonitorInfo *)arg;
192
193 const Host::MonitorChildProcessCallback callback = info->callback;
194 void * const callback_baton = info->callback_baton;
Greg Clayton2bddd342010-09-07 20:11:56 +0000195 const bool monitor_signals = info->monitor_signals;
196
Daniel Malea4244cbd2013-08-27 20:58:59 +0000197 assert (info->pid <= UINT32_MAX);
Andrew MacPherson82aae0d2014-04-02 06:57:45 +0000198 const ::pid_t pid = monitor_signals ? -1 * getpgid(info->pid) : info->pid;
Daniel Malea4244cbd2013-08-27 20:58:59 +0000199
Greg Clayton2bddd342010-09-07 20:11:56 +0000200 delete info;
201
202 int status = -1;
Sylvestre Ledru59405832013-07-01 08:21:36 +0000203#if defined (__FreeBSD__) || defined (__FreeBSD_kernel__)
Ashok Thirumurthi0f3b9b82013-05-01 20:38:19 +0000204 #define __WALL 0
205#endif
Matt Kopec650648f2013-01-08 16:30:18 +0000206 const int options = __WALL;
207
Greg Clayton2bddd342010-09-07 20:11:56 +0000208 while (1)
209 {
Caroline Tice20ad3c42010-10-29 21:48:37 +0000210 log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS);
Greg Clayton2bddd342010-09-07 20:11:56 +0000211 if (log)
Daniel Malea4244cbd2013-08-27 20:58:59 +0000212 log->Printf("%s ::wait_pid (pid = %" PRIi32 ", &status, options = %i)...", function, pid, options);
Greg Clayton2bddd342010-09-07 20:11:56 +0000213
214 // Wait for all child processes
215 ::pthread_testcancel ();
Matt Kopec650648f2013-01-08 16:30:18 +0000216 // Get signals from all children with same process group of pid
Daniel Malea4244cbd2013-08-27 20:58:59 +0000217 const ::pid_t wait_pid = ::waitpid (pid, &status, options);
Greg Clayton2bddd342010-09-07 20:11:56 +0000218 ::pthread_testcancel ();
219
220 if (wait_pid == -1)
221 {
222 if (errno == EINTR)
223 continue;
224 else
Andrew Kaylor93132f52013-05-28 23:04:25 +0000225 {
226 if (log)
227 log->Printf ("%s (arg = %p) thread exiting because waitpid failed (%s)...", __FUNCTION__, arg, strerror(errno));
Greg Clayton2bddd342010-09-07 20:11:56 +0000228 break;
Andrew Kaylor93132f52013-05-28 23:04:25 +0000229 }
Greg Clayton2bddd342010-09-07 20:11:56 +0000230 }
Matt Kopec650648f2013-01-08 16:30:18 +0000231 else if (wait_pid > 0)
Greg Clayton2bddd342010-09-07 20:11:56 +0000232 {
233 bool exited = false;
234 int signal = 0;
235 int exit_status = 0;
236 const char *status_cstr = NULL;
237 if (WIFSTOPPED(status))
238 {
239 signal = WSTOPSIG(status);
240 status_cstr = "STOPPED";
241 }
242 else if (WIFEXITED(status))
243 {
244 exit_status = WEXITSTATUS(status);
245 status_cstr = "EXITED";
Andrew Kaylor93132f52013-05-28 23:04:25 +0000246 exited = true;
Greg Clayton2bddd342010-09-07 20:11:56 +0000247 }
248 else if (WIFSIGNALED(status))
249 {
250 signal = WTERMSIG(status);
251 status_cstr = "SIGNALED";
Andrew Kaylor7d2abdf2013-09-04 16:06:04 +0000252 if (wait_pid == abs(pid)) {
Matt Kopec650648f2013-01-08 16:30:18 +0000253 exited = true;
254 exit_status = -1;
255 }
Greg Clayton2bddd342010-09-07 20:11:56 +0000256 }
257 else
258 {
Johnny Chen44805302011-07-19 19:48:13 +0000259 status_cstr = "(\?\?\?)";
Greg Clayton2bddd342010-09-07 20:11:56 +0000260 }
261
262 // Scope for pthread_cancel_disabler
263 {
264 ScopedPThreadCancelDisabler pthread_cancel_disabler;
265
Caroline Tice20ad3c42010-10-29 21:48:37 +0000266 log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS);
Greg Clayton2bddd342010-09-07 20:11:56 +0000267 if (log)
Daniel Malea4244cbd2013-08-27 20:58:59 +0000268 log->Printf ("%s ::waitpid (pid = %" PRIi32 ", &status, options = %i) => pid = %" PRIi32 ", status = 0x%8.8x (%s), signal = %i, exit_state = %i",
Greg Clayton2bddd342010-09-07 20:11:56 +0000269 function,
270 wait_pid,
271 options,
Greg Clayton2bddd342010-09-07 20:11:56 +0000272 pid,
273 status,
274 status_cstr,
275 signal,
276 exit_status);
277
278 if (exited || (signal != 0 && monitor_signals))
279 {
Greg Claytone4e45922011-11-16 05:37:56 +0000280 bool callback_return = false;
281 if (callback)
Matt Kopec650648f2013-01-08 16:30:18 +0000282 callback_return = callback (callback_baton, wait_pid, exited, signal, exit_status);
Greg Clayton2bddd342010-09-07 20:11:56 +0000283
284 // If our process exited, then this thread should exit
Andrew Kaylor7d2abdf2013-09-04 16:06:04 +0000285 if (exited && wait_pid == abs(pid))
Andrew Kaylor93132f52013-05-28 23:04:25 +0000286 {
287 if (log)
288 log->Printf ("%s (arg = %p) thread exiting because pid received exit signal...", __FUNCTION__, arg);
Greg Clayton2bddd342010-09-07 20:11:56 +0000289 break;
Andrew Kaylor93132f52013-05-28 23:04:25 +0000290 }
Greg Clayton2bddd342010-09-07 20:11:56 +0000291 // If the callback returns true, it means this process should
292 // exit
293 if (callback_return)
Andrew Kaylor93132f52013-05-28 23:04:25 +0000294 {
295 if (log)
296 log->Printf ("%s (arg = %p) thread exiting because callback returned true...", __FUNCTION__, arg);
Greg Clayton2bddd342010-09-07 20:11:56 +0000297 break;
Andrew Kaylor93132f52013-05-28 23:04:25 +0000298 }
Greg Clayton2bddd342010-09-07 20:11:56 +0000299 }
300 }
301 }
302 }
303
Caroline Tice20ad3c42010-10-29 21:48:37 +0000304 log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS);
Greg Clayton2bddd342010-09-07 20:11:56 +0000305 if (log)
306 log->Printf ("%s (arg = %p) thread exiting...", __FUNCTION__, arg);
307
308 return NULL;
309}
310
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000311#endif // #if !defined (__APPLE__) && !defined (_WIN32)
312
313#if !defined (__APPLE__)
Greg Claytone38a5ed2012-01-05 03:57:59 +0000314
315void
316Host::SystemLog (SystemLogType type, const char *format, va_list args)
317{
318 vfprintf (stderr, format, args);
319}
320
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000321#endif
Greg Claytone4e45922011-11-16 05:37:56 +0000322
Greg Claytone38a5ed2012-01-05 03:57:59 +0000323void
324Host::SystemLog (SystemLogType type, const char *format, ...)
325{
326 va_list args;
327 va_start (args, format);
328 SystemLog (type, format, args);
329 va_end (args);
330}
331
Greg Clayton2bddd342010-09-07 20:11:56 +0000332lldb::pid_t
333Host::GetCurrentProcessID()
334{
335 return ::getpid();
336}
337
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000338#ifndef _WIN32
339
Greg Clayton2bddd342010-09-07 20:11:56 +0000340lldb::tid_t
341Host::GetCurrentThreadID()
342{
343#if defined (__APPLE__)
Jean-Daniel Dupas3cfa8e22013-12-06 09:35:53 +0000344 // Calling "mach_thread_self()" bumps the reference count on the thread
Greg Clayton813ddfc2012-09-18 18:19:49 +0000345 // port, so we need to deallocate it. mach_task_self() doesn't bump the ref
346 // count.
347 thread_port_t thread_self = mach_thread_self();
348 mach_port_deallocate(mach_task_self(), thread_self);
349 return thread_self;
Johnny Chen8f3d8382011-08-02 20:52:42 +0000350#elif defined(__FreeBSD__)
351 return lldb::tid_t(pthread_getthreadid_np());
Michael Sartainc2052432013-08-01 18:51:08 +0000352#elif defined(__linux__)
353 return lldb::tid_t(syscall(SYS_gettid));
Greg Clayton2bddd342010-09-07 20:11:56 +0000354#else
355 return lldb::tid_t(pthread_self());
356#endif
357}
358
Jim Ingham372787f2012-04-07 00:00:41 +0000359lldb::thread_t
360Host::GetCurrentThread ()
361{
362 return lldb::thread_t(pthread_self());
363}
364
Greg Clayton2bddd342010-09-07 20:11:56 +0000365const char *
366Host::GetSignalAsCString (int signo)
367{
368 switch (signo)
369 {
370 case SIGHUP: return "SIGHUP"; // 1 hangup
371 case SIGINT: return "SIGINT"; // 2 interrupt
372 case SIGQUIT: return "SIGQUIT"; // 3 quit
373 case SIGILL: return "SIGILL"; // 4 illegal instruction (not reset when caught)
374 case SIGTRAP: return "SIGTRAP"; // 5 trace trap (not reset when caught)
375 case SIGABRT: return "SIGABRT"; // 6 abort()
Jean-Daniel Dupas13698b22013-12-12 18:12:16 +0000376#if defined(SIGPOLL)
Sylvestre Ledrua4cc7de2013-12-13 09:51:39 +0000377#if !defined(SIGIO) || (SIGPOLL != SIGIO)
378// Under some GNU/Linux, SIGPOLL and SIGIO are the same. Causing the build to
379// fail with 'multiple define cases with same value'
Greg Clayton2bddd342010-09-07 20:11:56 +0000380 case SIGPOLL: return "SIGPOLL"; // 7 pollable event ([XSR] generated, not supported)
Benjamin Kramer44030f12011-11-04 16:06:40 +0000381#endif
Sylvestre Ledrua4cc7de2013-12-13 09:51:39 +0000382#endif
Jean-Daniel Dupas13698b22013-12-12 18:12:16 +0000383#if defined(SIGEMT)
Greg Clayton2bddd342010-09-07 20:11:56 +0000384 case SIGEMT: return "SIGEMT"; // 7 EMT instruction
Benjamin Kramer44030f12011-11-04 16:06:40 +0000385#endif
Greg Clayton2bddd342010-09-07 20:11:56 +0000386 case SIGFPE: return "SIGFPE"; // 8 floating point exception
387 case SIGKILL: return "SIGKILL"; // 9 kill (cannot be caught or ignored)
388 case SIGBUS: return "SIGBUS"; // 10 bus error
389 case SIGSEGV: return "SIGSEGV"; // 11 segmentation violation
390 case SIGSYS: return "SIGSYS"; // 12 bad argument to system call
391 case SIGPIPE: return "SIGPIPE"; // 13 write on a pipe with no one to read it
392 case SIGALRM: return "SIGALRM"; // 14 alarm clock
393 case SIGTERM: return "SIGTERM"; // 15 software termination signal from kill
394 case SIGURG: return "SIGURG"; // 16 urgent condition on IO channel
395 case SIGSTOP: return "SIGSTOP"; // 17 sendable stop signal not from tty
396 case SIGTSTP: return "SIGTSTP"; // 18 stop signal from tty
397 case SIGCONT: return "SIGCONT"; // 19 continue a stopped process
398 case SIGCHLD: return "SIGCHLD"; // 20 to parent on child stop or exit
399 case SIGTTIN: return "SIGTTIN"; // 21 to readers pgrp upon background tty read
400 case SIGTTOU: return "SIGTTOU"; // 22 like TTIN for output if (tp->t_local&LTOSTOP)
Jean-Daniel Dupas13698b22013-12-12 18:12:16 +0000401#if defined(SIGIO)
Greg Clayton2bddd342010-09-07 20:11:56 +0000402 case SIGIO: return "SIGIO"; // 23 input/output possible signal
403#endif
404 case SIGXCPU: return "SIGXCPU"; // 24 exceeded CPU time limit
405 case SIGXFSZ: return "SIGXFSZ"; // 25 exceeded file size limit
406 case SIGVTALRM: return "SIGVTALRM"; // 26 virtual time alarm
407 case SIGPROF: return "SIGPROF"; // 27 profiling time alarm
Jean-Daniel Dupas13698b22013-12-12 18:12:16 +0000408#if defined(SIGWINCH)
Greg Clayton2bddd342010-09-07 20:11:56 +0000409 case SIGWINCH: return "SIGWINCH"; // 28 window size changes
Jean-Daniel Dupas13698b22013-12-12 18:12:16 +0000410#endif
411#if defined(SIGINFO)
Greg Clayton2bddd342010-09-07 20:11:56 +0000412 case SIGINFO: return "SIGINFO"; // 29 information request
413#endif
414 case SIGUSR1: return "SIGUSR1"; // 30 user defined signal 1
415 case SIGUSR2: return "SIGUSR2"; // 31 user defined signal 2
416 default:
417 break;
418 }
419 return NULL;
420}
421
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000422#endif
423
Greg Clayton2bddd342010-09-07 20:11:56 +0000424void
425Host::WillTerminate ()
426{
427}
428
Sylvestre Ledru59405832013-07-01 08:21:36 +0000429#if !defined (__APPLE__) && !defined (__FreeBSD__) && !defined (__FreeBSD_kernel__) && !defined (__linux__) // see macosx/Host.mm
Matt Kopec62502c62013-05-13 19:33:58 +0000430
Greg Clayton2bddd342010-09-07 20:11:56 +0000431void
432Host::ThreadCreated (const char *thread_name)
433{
434}
Greg Claytone5219662010-12-03 06:02:24 +0000435
Peter Collingbourne2ced9132011-08-05 00:35:43 +0000436void
Greg Claytone5219662010-12-03 06:02:24 +0000437Host::Backtrace (Stream &strm, uint32_t max_frames)
438{
Michael Sartain3cf443d2013-07-17 00:26:30 +0000439 // TODO: Is there a way to backtrace the current process on other systems?
Greg Claytone5219662010-12-03 06:02:24 +0000440}
441
Greg Clayton85851dd2010-12-04 00:10:17 +0000442size_t
443Host::GetEnvironment (StringList &env)
444{
Michael Sartain3cf443d2013-07-17 00:26:30 +0000445 // TODO: Is there a way to the host environment for this process on other systems?
Greg Clayton85851dd2010-12-04 00:10:17 +0000446 return 0;
447}
448
Sylvestre Ledru59405832013-07-01 08:21:36 +0000449#endif // #if !defined (__APPLE__) && !defined (__FreeBSD__) && !defined (__FreeBSD_kernel__) && !defined (__linux__)
Greg Clayton2bddd342010-09-07 20:11:56 +0000450
451struct HostThreadCreateInfo
452{
453 std::string thread_name;
454 thread_func_t thread_fptr;
455 thread_arg_t thread_arg;
456
457 HostThreadCreateInfo (const char *name, thread_func_t fptr, thread_arg_t arg) :
458 thread_name (name ? name : ""),
459 thread_fptr (fptr),
460 thread_arg (arg)
461 {
462 }
463};
464
465static thread_result_t
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000466#ifdef _WIN32
467__stdcall
468#endif
Greg Clayton2bddd342010-09-07 20:11:56 +0000469ThreadCreateTrampoline (thread_arg_t arg)
470{
471 HostThreadCreateInfo *info = (HostThreadCreateInfo *)arg;
472 Host::ThreadCreated (info->thread_name.c_str());
473 thread_func_t thread_fptr = info->thread_fptr;
474 thread_arg_t thread_arg = info->thread_arg;
475
Greg Clayton5160ce52013-03-27 23:08:40 +0000476 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
Greg Clayton2bddd342010-09-07 20:11:56 +0000477 if (log)
478 log->Printf("thread created");
479
480 delete info;
481 return thread_fptr (thread_arg);
482}
483
484lldb::thread_t
485Host::ThreadCreate
486(
487 const char *thread_name,
488 thread_func_t thread_fptr,
489 thread_arg_t thread_arg,
490 Error *error
491)
492{
493 lldb::thread_t thread = LLDB_INVALID_HOST_THREAD;
494
495 // Host::ThreadCreateTrampoline will delete this pointer for us.
496 HostThreadCreateInfo *info_ptr = new HostThreadCreateInfo (thread_name, thread_fptr, thread_arg);
497
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000498#ifdef _WIN32
499 thread = ::_beginthreadex(0, 0, ThreadCreateTrampoline, info_ptr, 0, NULL);
500 int err = thread <= 0 ? GetLastError() : 0;
501#else
Greg Clayton2bddd342010-09-07 20:11:56 +0000502 int err = ::pthread_create (&thread, NULL, ThreadCreateTrampoline, info_ptr);
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000503#endif
Greg Clayton2bddd342010-09-07 20:11:56 +0000504 if (err == 0)
505 {
506 if (error)
507 error->Clear();
508 return thread;
509 }
510
511 if (error)
512 error->SetError (err, eErrorTypePOSIX);
513
514 return LLDB_INVALID_HOST_THREAD;
515}
516
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000517#ifndef _WIN32
518
Greg Clayton2bddd342010-09-07 20:11:56 +0000519bool
520Host::ThreadCancel (lldb::thread_t thread, Error *error)
521{
522 int err = ::pthread_cancel (thread);
523 if (error)
524 error->SetError(err, eErrorTypePOSIX);
525 return err == 0;
526}
527
528bool
529Host::ThreadDetach (lldb::thread_t thread, Error *error)
530{
531 int err = ::pthread_detach (thread);
532 if (error)
533 error->SetError(err, eErrorTypePOSIX);
534 return err == 0;
535}
536
537bool
538Host::ThreadJoin (lldb::thread_t thread, thread_result_t *thread_result_ptr, Error *error)
539{
540 int err = ::pthread_join (thread, thread_result_ptr);
541 if (error)
542 error->SetError(err, eErrorTypePOSIX);
543 return err == 0;
544}
545
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000546lldb::thread_key_t
547Host::ThreadLocalStorageCreate(ThreadLocalStorageCleanupCallback callback)
548{
549 pthread_key_t key;
550 ::pthread_key_create (&key, callback);
551 return key;
552}
553
554void*
555Host::ThreadLocalStorageGet(lldb::thread_key_t key)
556{
557 return ::pthread_getspecific (key);
558}
559
560void
561Host::ThreadLocalStorageSet(lldb::thread_key_t key, void *value)
562{
563 ::pthread_setspecific (key, value);
564}
565
Matt Kopec62502c62013-05-13 19:33:58 +0000566bool
Greg Clayton2bddd342010-09-07 20:11:56 +0000567Host::SetThreadName (lldb::pid_t pid, lldb::tid_t tid, const char *name)
568{
Greg Clayton85719632013-02-27 22:51:58 +0000569#if defined(__APPLE__) && MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_5
Greg Clayton2bddd342010-09-07 20:11:56 +0000570 lldb::pid_t curr_pid = Host::GetCurrentProcessID();
571 lldb::tid_t curr_tid = Host::GetCurrentThreadID();
572 if (pid == LLDB_INVALID_PROCESS_ID)
573 pid = curr_pid;
574
575 if (tid == LLDB_INVALID_THREAD_ID)
576 tid = curr_tid;
577
Greg Clayton2bddd342010-09-07 20:11:56 +0000578 // Set the pthread name if possible
579 if (pid == curr_pid && tid == curr_tid)
580 {
Matt Kopec62502c62013-05-13 19:33:58 +0000581 if (::pthread_setname_np (name) == 0)
582 return true;
Greg Clayton2bddd342010-09-07 20:11:56 +0000583 }
Matt Kopec62502c62013-05-13 19:33:58 +0000584 return false;
Ed Maste02983be2013-07-25 19:10:32 +0000585#elif defined (__FreeBSD__)
586 lldb::pid_t curr_pid = Host::GetCurrentProcessID();
587 lldb::tid_t curr_tid = Host::GetCurrentThreadID();
588 if (pid == LLDB_INVALID_PROCESS_ID)
589 pid = curr_pid;
590
591 if (tid == LLDB_INVALID_THREAD_ID)
592 tid = curr_tid;
593
594 // Set the pthread name if possible
595 if (pid == curr_pid && tid == curr_tid)
596 {
Michael Sartainc2052432013-08-01 18:51:08 +0000597 ::pthread_set_name_np (::pthread_self(), name);
Ed Maste02983be2013-07-25 19:10:32 +0000598 return true;
599 }
600 return false;
Sylvestre Ledru59405832013-07-01 08:21:36 +0000601#elif defined (__linux__) || defined (__GLIBC__)
Matt Kopec62502c62013-05-13 19:33:58 +0000602 void *fn = dlsym (RTLD_DEFAULT, "pthread_setname_np");
603 if (fn)
604 {
Matt Kopec62502c62013-05-13 19:33:58 +0000605 lldb::pid_t curr_pid = Host::GetCurrentProcessID();
606 lldb::tid_t curr_tid = Host::GetCurrentThreadID();
Matt Kopec62502c62013-05-13 19:33:58 +0000607 if (pid == LLDB_INVALID_PROCESS_ID)
608 pid = curr_pid;
609
610 if (tid == LLDB_INVALID_THREAD_ID)
611 tid = curr_tid;
612
Michael Sartainc2052432013-08-01 18:51:08 +0000613 if (pid == curr_pid && tid == curr_tid)
Matt Kopec62502c62013-05-13 19:33:58 +0000614 {
Michael Sartainc2052432013-08-01 18:51:08 +0000615 int (*pthread_setname_np_func)(pthread_t thread, const char *name);
616 *reinterpret_cast<void **> (&pthread_setname_np_func) = fn;
617
618 if (pthread_setname_np_func (::pthread_self(), name) == 0)
Matt Kopec62502c62013-05-13 19:33:58 +0000619 return true;
620 }
621 }
622 return false;
Jim Ingham5c42d8a2013-05-15 18:27:08 +0000623#else
624 return false;
Greg Clayton2bddd342010-09-07 20:11:56 +0000625#endif
Greg Clayton2bddd342010-09-07 20:11:56 +0000626}
627
Ed Maste02983be2013-07-25 19:10:32 +0000628bool
629Host::SetShortThreadName (lldb::pid_t pid, lldb::tid_t tid,
630 const char *thread_name, size_t len)
631{
Enrico Granata67530b62014-02-12 03:37:33 +0000632 std::unique_ptr<char[]> namebuf(new char[len+1]);
633
Ed Maste02983be2013-07-25 19:10:32 +0000634 // Thread names are coming in like '<lldb.comm.debugger.edit>' and
635 // '<lldb.comm.debugger.editline>'. So just chopping the end of the string
636 // off leads to a lot of similar named threads. Go through the thread name
637 // and search for the last dot and use that.
638 const char *lastdot = ::strrchr (thread_name, '.');
639
640 if (lastdot && lastdot != thread_name)
641 thread_name = lastdot + 1;
Enrico Granata67530b62014-02-12 03:37:33 +0000642 ::strncpy (namebuf.get(), thread_name, len);
Ed Maste02983be2013-07-25 19:10:32 +0000643 namebuf[len] = 0;
644
Enrico Granata67530b62014-02-12 03:37:33 +0000645 int namebuflen = strlen(namebuf.get());
Ed Maste02983be2013-07-25 19:10:32 +0000646 if (namebuflen > 0)
647 {
648 if (namebuf[namebuflen - 1] == '(' || namebuf[namebuflen - 1] == '>')
649 {
650 // Trim off trailing '(' and '>' characters for a bit more cleanup.
651 namebuflen--;
652 namebuf[namebuflen] = 0;
653 }
Enrico Granata67530b62014-02-12 03:37:33 +0000654 return Host::SetThreadName (pid, tid, namebuf.get());
Ed Maste02983be2013-07-25 19:10:32 +0000655 }
656 return false;
657}
658
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000659#endif
660
Greg Clayton2bddd342010-09-07 20:11:56 +0000661#if !defined (__APPLE__) // see Host.mm
Greg Claytonc859e2d2012-02-13 23:10:39 +0000662
663bool
664Host::GetBundleDirectory (const FileSpec &file, FileSpec &bundle)
665{
666 bundle.Clear();
667 return false;
668}
669
Greg Clayton2bddd342010-09-07 20:11:56 +0000670bool
Greg Claytondd36def2010-10-17 22:03:32 +0000671Host::ResolveExecutableInBundle (FileSpec &file)
Greg Clayton2bddd342010-09-07 20:11:56 +0000672{
Greg Claytondd36def2010-10-17 22:03:32 +0000673 return false;
Greg Clayton2bddd342010-09-07 20:11:56 +0000674}
675#endif
676
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000677#ifndef _WIN32
678
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000679FileSpec
680Host::GetModuleFileSpecForHostAddress (const void *host_addr)
681{
682 FileSpec module_filespec;
683 Dl_info info;
684 if (::dladdr (host_addr, &info))
685 {
686 if (info.dli_fname)
687 module_filespec.SetFile(info.dli_fname, true);
688 }
689 return module_filespec;
690}
691
692#endif
693
Matt Kopec085d6ce2013-05-31 22:00:07 +0000694#if !defined(__linux__)
695bool
696Host::FindProcessThreads (const lldb::pid_t pid, TidMap &tids_to_attach)
697{
698 return false;
699}
700#endif
701
Sean Callananc0a6e062011-10-27 21:22:25 +0000702lldb::TargetSP
703Host::GetDummyTarget (lldb_private::Debugger &debugger)
704{
Filipe Cabecinhas721ba3f2012-05-19 09:59:08 +0000705 static TargetSP g_dummy_target_sp;
Filipe Cabecinhasb0183452012-05-17 15:48:02 +0000706
Filipe Cabecinhas721ba3f2012-05-19 09:59:08 +0000707 // FIXME: Maybe the dummy target should be per-Debugger
708 if (!g_dummy_target_sp || !g_dummy_target_sp->IsValid())
709 {
710 ArchSpec arch(Target::GetDefaultArchitecture());
711 if (!arch.IsValid())
Zachary Turner13b18262014-08-20 16:42:51 +0000712 arch = HostInfo::GetArchitecture();
Filipe Cabecinhas721ba3f2012-05-19 09:59:08 +0000713 Error err = debugger.GetTargetList().CreateTarget(debugger,
Greg Claytona0ca6602012-10-18 16:33:33 +0000714 NULL,
Filipe Cabecinhas721ba3f2012-05-19 09:59:08 +0000715 arch.GetTriple().getTriple().c_str(),
716 false,
717 NULL,
718 g_dummy_target_sp);
719 }
Filipe Cabecinhasb0183452012-05-17 15:48:02 +0000720
Filipe Cabecinhas721ba3f2012-05-19 09:59:08 +0000721 return g_dummy_target_sp;
Sean Callananc0a6e062011-10-27 21:22:25 +0000722}
723
Greg Claytond1cf11a2012-04-14 01:42:46 +0000724struct ShellInfo
725{
726 ShellInfo () :
727 process_reaped (false),
728 can_delete (false),
729 pid (LLDB_INVALID_PROCESS_ID),
730 signo(-1),
731 status(-1)
732 {
733 }
734
735 lldb_private::Predicate<bool> process_reaped;
736 lldb_private::Predicate<bool> can_delete;
737 lldb::pid_t pid;
738 int signo;
739 int status;
740};
741
742static bool
743MonitorShellCommand (void *callback_baton,
744 lldb::pid_t pid,
745 bool exited, // True if the process did exit
746 int signo, // Zero for no signal
747 int status) // Exit value of process if signal is zero
748{
749 ShellInfo *shell_info = (ShellInfo *)callback_baton;
750 shell_info->pid = pid;
751 shell_info->signo = signo;
752 shell_info->status = status;
753 // Let the thread running Host::RunShellCommand() know that the process
754 // exited and that ShellInfo has been filled in by broadcasting to it
755 shell_info->process_reaped.SetValue(1, eBroadcastAlways);
756 // Now wait for a handshake back from that thread running Host::RunShellCommand
757 // so we know that we can delete shell_info_ptr
758 shell_info->can_delete.WaitForValueEqualTo(true);
759 // Sleep a bit to allow the shell_info->can_delete.SetValue() to complete...
760 usleep(1000);
761 // Now delete the shell info that was passed into this function
762 delete shell_info;
763 return true;
764}
765
766Error
767Host::RunShellCommand (const char *command,
768 const char *working_dir,
769 int *status_ptr,
770 int *signo_ptr,
771 std::string *command_output_ptr,
Greg Claytonc8f814d2012-09-27 03:13:55 +0000772 uint32_t timeout_sec,
773 const char *shell)
Greg Claytond1cf11a2012-04-14 01:42:46 +0000774{
775 Error error;
776 ProcessLaunchInfo launch_info;
Greg Claytonc8f814d2012-09-27 03:13:55 +0000777 if (shell && shell[0])
778 {
779 // Run the command in a shell
780 launch_info.SetShell(shell);
781 launch_info.GetArguments().AppendArgument(command);
782 const bool localhost = true;
783 const bool will_debug = false;
784 const bool first_arg_is_full_shell_command = true;
785 launch_info.ConvertArgumentsForLaunchingInShell (error,
786 localhost,
787 will_debug,
Jim Inghamdf0ae222013-09-10 02:09:47 +0000788 first_arg_is_full_shell_command,
789 0);
Greg Claytonc8f814d2012-09-27 03:13:55 +0000790 }
791 else
792 {
793 // No shell, just run it
794 Args args (command);
795 const bool first_arg_is_executable = true;
Greg Clayton45392552012-10-17 22:57:12 +0000796 launch_info.SetArguments(args, first_arg_is_executable);
Greg Claytonc8f814d2012-09-27 03:13:55 +0000797 }
Greg Claytond1cf11a2012-04-14 01:42:46 +0000798
799 if (working_dir)
800 launch_info.SetWorkingDirectory(working_dir);
Greg Claytonc6931fc2013-12-04 18:53:50 +0000801 char output_file_path_buffer[PATH_MAX];
Greg Claytond1cf11a2012-04-14 01:42:46 +0000802 const char *output_file_path = NULL;
Greg Claytonc6931fc2013-12-04 18:53:50 +0000803
Greg Claytond1cf11a2012-04-14 01:42:46 +0000804 if (command_output_ptr)
805 {
806 // Create a temporary file to get the stdout/stderr and redirect the
807 // output of the command into this file. We will later read this file
808 // if all goes well and fill the data into "command_output_ptr"
Greg Claytonc6931fc2013-12-04 18:53:50 +0000809 FileSpec tmpdir_file_spec;
Zachary Turner42ff0ad2014-08-21 17:29:12 +0000810 if (HostInfo::GetLLDBPath(ePathTypeLLDBTempSystemDir, tmpdir_file_spec))
Greg Claytonc6931fc2013-12-04 18:53:50 +0000811 {
Zachary Turnerc25146b2014-08-21 23:56:55 +0000812 tmpdir_file_spec.AppendPathComponent("lldb-shell-output.XXXXXX");
Greg Claytonc6931fc2013-12-04 18:53:50 +0000813 strncpy(output_file_path_buffer, tmpdir_file_spec.GetPath().c_str(), sizeof(output_file_path_buffer));
814 }
815 else
816 {
817 strncpy(output_file_path_buffer, "/tmp/lldb-shell-output.XXXXXX", sizeof(output_file_path_buffer));
818 }
819
820 output_file_path = ::mktemp(output_file_path_buffer);
821 }
822
823 launch_info.AppendSuppressFileAction (STDIN_FILENO, true, false);
824 if (output_file_path)
825 {
Greg Claytond1cf11a2012-04-14 01:42:46 +0000826 launch_info.AppendOpenFileAction(STDOUT_FILENO, output_file_path, false, true);
Greg Claytonc8f814d2012-09-27 03:13:55 +0000827 launch_info.AppendDuplicateFileAction(STDOUT_FILENO, STDERR_FILENO);
Greg Claytond1cf11a2012-04-14 01:42:46 +0000828 }
829 else
830 {
Greg Claytond1cf11a2012-04-14 01:42:46 +0000831 launch_info.AppendSuppressFileAction (STDOUT_FILENO, false, true);
832 launch_info.AppendSuppressFileAction (STDERR_FILENO, false, true);
833 }
834
835 // The process monitor callback will delete the 'shell_info_ptr' below...
Greg Clayton7b0992d2013-04-18 22:45:39 +0000836 std::unique_ptr<ShellInfo> shell_info_ap (new ShellInfo());
Greg Claytond1cf11a2012-04-14 01:42:46 +0000837
838 const bool monitor_signals = false;
839 launch_info.SetMonitorProcessCallback(MonitorShellCommand, shell_info_ap.get(), monitor_signals);
840
841 error = LaunchProcess (launch_info);
842 const lldb::pid_t pid = launch_info.GetProcessID();
Daniel Maleae0f8f572013-08-26 23:57:52 +0000843
844 if (error.Success() && pid == LLDB_INVALID_PROCESS_ID)
845 error.SetErrorString("failed to get process ID");
846
847 if (error.Success())
Greg Claytond1cf11a2012-04-14 01:42:46 +0000848 {
849 // The process successfully launched, so we can defer ownership of
850 // "shell_info" to the MonitorShellCommand callback function that will
Greg Claytone01e07b2013-04-18 18:10:51 +0000851 // get called when the process dies. We release the unique pointer as it
Greg Claytond1cf11a2012-04-14 01:42:46 +0000852 // doesn't need to delete the ShellInfo anymore.
853 ShellInfo *shell_info = shell_info_ap.release();
Daniel Malea4244cbd2013-08-27 20:58:59 +0000854 TimeValue *timeout_ptr = nullptr;
Greg Claytond1cf11a2012-04-14 01:42:46 +0000855 TimeValue timeout_time(TimeValue::Now());
Daniel Malea4244cbd2013-08-27 20:58:59 +0000856 if (timeout_sec > 0) {
857 timeout_time.OffsetWithSeconds(timeout_sec);
858 timeout_ptr = &timeout_time;
859 }
Greg Claytond1cf11a2012-04-14 01:42:46 +0000860 bool timed_out = false;
Daniel Malea4244cbd2013-08-27 20:58:59 +0000861 shell_info->process_reaped.WaitForValueEqualTo(true, timeout_ptr, &timed_out);
Greg Claytond1cf11a2012-04-14 01:42:46 +0000862 if (timed_out)
863 {
864 error.SetErrorString("timed out waiting for shell command to complete");
Daniel Malea4244cbd2013-08-27 20:58:59 +0000865
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +0000866 // Kill the process since it didn't complete within the timeout specified
Virgile Bellob2f1fb22013-08-23 12:44:05 +0000867 Kill (pid, SIGKILL);
Greg Claytond1cf11a2012-04-14 01:42:46 +0000868 // Wait for the monitor callback to get the message
869 timeout_time = TimeValue::Now();
870 timeout_time.OffsetWithSeconds(1);
871 timed_out = false;
872 shell_info->process_reaped.WaitForValueEqualTo(true, &timeout_time, &timed_out);
873 }
874 else
875 {
876 if (status_ptr)
877 *status_ptr = shell_info->status;
878
879 if (signo_ptr)
880 *signo_ptr = shell_info->signo;
881
882 if (command_output_ptr)
883 {
884 command_output_ptr->clear();
885 FileSpec file_spec(output_file_path, File::eOpenOptionRead);
886 uint64_t file_size = file_spec.GetByteSize();
887 if (file_size > 0)
888 {
889 if (file_size > command_output_ptr->max_size())
890 {
891 error.SetErrorStringWithFormat("shell command output is too large to fit into a std::string");
892 }
893 else
894 {
895 command_output_ptr->resize(file_size);
896 file_spec.ReadFileContents(0, &((*command_output_ptr)[0]), command_output_ptr->size(), &error);
897 }
898 }
899 }
900 }
901 shell_info->can_delete.SetValue(true, eBroadcastAlways);
902 }
Greg Claytond1cf11a2012-04-14 01:42:46 +0000903
904 if (output_file_path)
905 ::unlink (output_file_path);
906 // Handshake with the monitor thread, or just let it know in advance that
907 // it can delete "shell_info" in case we timed out and were not able to kill
908 // the process...
909 return error;
910}
911
Daniel Malea4244cbd2013-08-27 20:58:59 +0000912
Todd Fiala76747122014-01-23 00:52:28 +0000913// LaunchProcessPosixSpawn for Apple, Linux, FreeBSD and other GLIBC
914// systems
915
Joerg Sonnenbergera53b3592014-05-02 19:09:40 +0000916#if defined (__APPLE__) || defined (__linux__) || defined (__FreeBSD__) || defined (__GLIBC__) || defined(__NetBSD__)
Todd Fiala76747122014-01-23 00:52:28 +0000917
918// this method needs to be visible to macosx/Host.cpp and
919// common/Host.cpp.
920
921short
922Host::GetPosixspawnFlags (ProcessLaunchInfo &launch_info)
923{
924 short flags = POSIX_SPAWN_SETSIGDEF | POSIX_SPAWN_SETSIGMASK;
925
926#if defined (__APPLE__)
927 if (launch_info.GetFlags().Test (eLaunchFlagExec))
928 flags |= POSIX_SPAWN_SETEXEC; // Darwin specific posix_spawn flag
929
930 if (launch_info.GetFlags().Test (eLaunchFlagDebug))
931 flags |= POSIX_SPAWN_START_SUSPENDED; // Darwin specific posix_spawn flag
932
933 if (launch_info.GetFlags().Test (eLaunchFlagDisableASLR))
934 flags |= _POSIX_SPAWN_DISABLE_ASLR; // Darwin specific posix_spawn flag
935
936 if (launch_info.GetLaunchInSeparateProcessGroup())
937 flags |= POSIX_SPAWN_SETPGROUP;
938
939#ifdef POSIX_SPAWN_CLOEXEC_DEFAULT
940#if defined (__APPLE__) && (defined (__x86_64__) || defined (__i386__))
941 static LazyBool g_use_close_on_exec_flag = eLazyBoolCalculate;
942 if (g_use_close_on_exec_flag == eLazyBoolCalculate)
943 {
944 g_use_close_on_exec_flag = eLazyBoolNo;
945
946 uint32_t major, minor, update;
Zachary Turner97a14e62014-08-19 17:18:29 +0000947 if (HostInfo::GetOSVersion(major, minor, update))
Todd Fiala76747122014-01-23 00:52:28 +0000948 {
949 // Kernel panic if we use the POSIX_SPAWN_CLOEXEC_DEFAULT on 10.7 or earlier
950 if (major > 10 || (major == 10 && minor > 7))
951 {
952 // Only enable for 10.8 and later OS versions
953 g_use_close_on_exec_flag = eLazyBoolYes;
954 }
955 }
956 }
957#else
958 static LazyBool g_use_close_on_exec_flag = eLazyBoolYes;
959#endif
960 // Close all files exception those with file actions if this is supported.
961 if (g_use_close_on_exec_flag == eLazyBoolYes)
962 flags |= POSIX_SPAWN_CLOEXEC_DEFAULT;
963#endif
964#endif // #if defined (__APPLE__)
965 return flags;
966}
967
968Error
969Host::LaunchProcessPosixSpawn (const char *exe_path, ProcessLaunchInfo &launch_info, ::pid_t &pid)
Daniel Malea4244cbd2013-08-27 20:58:59 +0000970{
971 Error error;
972 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_HOST | LIBLLDB_LOG_PROCESS));
973
Daniel Malea4244cbd2013-08-27 20:58:59 +0000974 posix_spawnattr_t attr;
Daniel Malea4244cbd2013-08-27 20:58:59 +0000975 error.SetError( ::posix_spawnattr_init (&attr), eErrorTypePOSIX);
Todd Fiala76747122014-01-23 00:52:28 +0000976
977 if (error.Fail() || log)
978 error.PutToLog(log, "::posix_spawnattr_init ( &attr )");
Daniel Malea4244cbd2013-08-27 20:58:59 +0000979 if (error.Fail())
980 return error;
981
982 // Make a quick class that will cleanup the posix spawn attributes in case
983 // we return in the middle of this function.
984 lldb_utility::CleanUp <posix_spawnattr_t *, int> posix_spawnattr_cleanup(&attr, posix_spawnattr_destroy);
985
986 sigset_t no_signals;
987 sigset_t all_signals;
988 sigemptyset (&no_signals);
989 sigfillset (&all_signals);
Todd Fiala76747122014-01-23 00:52:28 +0000990 ::posix_spawnattr_setsigmask(&attr, &no_signals);
Todd Fiala571768c2014-01-23 17:07:54 +0000991#if defined (__linux__) || defined (__FreeBSD__)
Daniel Malea4244cbd2013-08-27 20:58:59 +0000992 ::posix_spawnattr_setsigdefault(&attr, &no_signals);
Todd Fiala76747122014-01-23 00:52:28 +0000993#else
994 ::posix_spawnattr_setsigdefault(&attr, &all_signals);
995#endif
Daniel Malea4244cbd2013-08-27 20:58:59 +0000996
Todd Fiala76747122014-01-23 00:52:28 +0000997 short flags = GetPosixspawnFlags(launch_info);
Daniel Malea4244cbd2013-08-27 20:58:59 +0000998
999 error.SetError( ::posix_spawnattr_setflags (&attr, flags), eErrorTypePOSIX);
Todd Fiala76747122014-01-23 00:52:28 +00001000 if (error.Fail() || log)
1001 error.PutToLog(log, "::posix_spawnattr_setflags ( &attr, flags=0x%8.8x )", flags);
Daniel Malea4244cbd2013-08-27 20:58:59 +00001002 if (error.Fail())
1003 return error;
1004
Todd Fiala76747122014-01-23 00:52:28 +00001005 // posix_spawnattr_setbinpref_np appears to be an Apple extension per:
1006 // http://www.unix.com/man-page/OSX/3/posix_spawnattr_setbinpref_np/
1007#if defined (__APPLE__) && !defined (__arm__)
Jim Ingham90331d52014-02-21 01:25:21 +00001008
1009 // Don't set the binpref if a shell was provided. After all, that's only going to affect what version of the shell
1010 // is launched, not what fork of the binary is launched. We insert "arch --arch <ARCH> as part of the shell invocation
1011 // to do that job on OSX.
1012
1013 if (launch_info.GetShell() == nullptr)
Daniel Malea4244cbd2013-08-27 20:58:59 +00001014 {
Jim Ingham90331d52014-02-21 01:25:21 +00001015 // We don't need to do this for ARM, and we really shouldn't now that we
1016 // have multiple CPU subtypes and no posix_spawnattr call that allows us
1017 // to set which CPU subtype to launch...
1018 const ArchSpec &arch_spec = launch_info.GetArchitecture();
1019 cpu_type_t cpu = arch_spec.GetMachOCPUType();
1020 cpu_type_t sub = arch_spec.GetMachOCPUSubType();
1021 if (cpu != 0 &&
Saleem Abdulrasool3985c8c2014-04-02 03:51:35 +00001022 cpu != static_cast<cpu_type_t>(UINT32_MAX) &&
1023 cpu != static_cast<cpu_type_t>(LLDB_INVALID_CPUTYPE) &&
Jim Ingham90331d52014-02-21 01:25:21 +00001024 !(cpu == 0x01000007 && sub == 8)) // If haswell is specified, don't try to set the CPU type or we will fail
1025 {
1026 size_t ocount = 0;
1027 error.SetError( ::posix_spawnattr_setbinpref_np (&attr, 1, &cpu, &ocount), eErrorTypePOSIX);
1028 if (error.Fail() || log)
1029 error.PutToLog(log, "::posix_spawnattr_setbinpref_np ( &attr, 1, cpu_type = 0x%8.8x, count => %llu )", cpu, (uint64_t)ocount);
Todd Fiala76747122014-01-23 00:52:28 +00001030
Jim Ingham90331d52014-02-21 01:25:21 +00001031 if (error.Fail() || ocount != 1)
1032 return error;
1033 }
Daniel Malea4244cbd2013-08-27 20:58:59 +00001034 }
1035
Todd Fiala76747122014-01-23 00:52:28 +00001036#endif
1037
1038 const char *tmp_argv[2];
1039 char * const *argv = (char * const*)launch_info.GetArguments().GetConstArgumentVector();
1040 char * const *envp = (char * const*)launch_info.GetEnvironmentEntries().GetConstArgumentVector();
1041 if (argv == NULL)
1042 {
1043 // posix_spawn gets very unhappy if it doesn't have at least the program
1044 // name in argv[0]. One of the side affects I have noticed is the environment
1045 // variables don't make it into the child process if "argv == NULL"!!!
1046 tmp_argv[0] = exe_path;
1047 tmp_argv[1] = NULL;
1048 argv = (char * const*)tmp_argv;
1049 }
1050
1051#if !defined (__APPLE__)
1052 // manage the working directory
Daniel Malea4244cbd2013-08-27 20:58:59 +00001053 char current_dir[PATH_MAX];
1054 current_dir[0] = '\0';
Todd Fiala76747122014-01-23 00:52:28 +00001055#endif
Daniel Malea4244cbd2013-08-27 20:58:59 +00001056
1057 const char *working_dir = launch_info.GetWorkingDirectory();
Todd Fiala76747122014-01-23 00:52:28 +00001058 if (working_dir)
Daniel Malea4244cbd2013-08-27 20:58:59 +00001059 {
Todd Fiala76747122014-01-23 00:52:28 +00001060#if defined (__APPLE__)
1061 // Set the working directory on this thread only
1062 if (__pthread_chdir (working_dir) < 0) {
1063 if (errno == ENOENT) {
1064 error.SetErrorStringWithFormat("No such file or directory: %s", working_dir);
1065 } else if (errno == ENOTDIR) {
1066 error.SetErrorStringWithFormat("Path doesn't name a directory: %s", working_dir);
1067 } else {
1068 error.SetErrorStringWithFormat("An unknown error occurred when changing directory for process execution.");
1069 }
1070 return error;
1071 }
1072#else
Daniel Malea4244cbd2013-08-27 20:58:59 +00001073 if (::getcwd(current_dir, sizeof(current_dir)) == NULL)
1074 {
1075 error.SetError(errno, eErrorTypePOSIX);
1076 error.LogIfError(log, "unable to save the current directory");
1077 return error;
1078 }
1079
1080 if (::chdir(working_dir) == -1)
1081 {
1082 error.SetError(errno, eErrorTypePOSIX);
1083 error.LogIfError(log, "unable to change working directory to %s", working_dir);
1084 return error;
1085 }
Todd Fiala76747122014-01-23 00:52:28 +00001086#endif
Daniel Malea4244cbd2013-08-27 20:58:59 +00001087 }
1088
Todd Fiala76747122014-01-23 00:52:28 +00001089 const size_t num_file_actions = launch_info.GetNumFileActions ();
1090 if (num_file_actions > 0)
Daniel Malea4244cbd2013-08-27 20:58:59 +00001091 {
Todd Fiala76747122014-01-23 00:52:28 +00001092 posix_spawn_file_actions_t file_actions;
1093 error.SetError( ::posix_spawn_file_actions_init (&file_actions), eErrorTypePOSIX);
1094 if (error.Fail() || log)
1095 error.PutToLog(log, "::posix_spawn_file_actions_init ( &file_actions )");
1096 if (error.Fail())
1097 return error;
1098
1099 // Make a quick class that will cleanup the posix spawn attributes in case
1100 // we return in the middle of this function.
1101 lldb_utility::CleanUp <posix_spawn_file_actions_t *, int> posix_spawn_file_actions_cleanup (&file_actions, posix_spawn_file_actions_destroy);
1102
1103 for (size_t i=0; i<num_file_actions; ++i)
1104 {
Zachary Turner696b5282014-08-14 16:01:25 +00001105 const FileAction *launch_file_action = launch_info.GetFileActionAtIndex(i);
Todd Fiala76747122014-01-23 00:52:28 +00001106 if (launch_file_action)
1107 {
Zachary Turnerc00cf4a2014-08-15 22:04:21 +00001108 if (!AddPosixSpawnFileAction(&file_actions, launch_file_action, log, error))
Todd Fiala76747122014-01-23 00:52:28 +00001109 return error;
1110 }
1111 }
1112
1113 error.SetError (::posix_spawnp (&pid,
1114 exe_path,
1115 &file_actions,
1116 &attr,
1117 argv,
1118 envp),
1119 eErrorTypePOSIX);
1120
1121 if (error.Fail() || log)
1122 {
1123 error.PutToLog(log, "::posix_spawnp ( pid => %i, path = '%s', file_actions = %p, attr = %p, argv = %p, envp = %p )",
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001124 pid, exe_path, static_cast<void*>(&file_actions),
1125 static_cast<void*>(&attr),
1126 reinterpret_cast<const void*>(argv),
1127 reinterpret_cast<const void*>(envp));
Todd Fiala76747122014-01-23 00:52:28 +00001128 if (log)
1129 {
1130 for (int ii=0; argv[ii]; ++ii)
1131 log->Printf("argv[%i] = '%s'", ii, argv[ii]);
1132 }
1133 }
1134
1135 }
1136 else
1137 {
1138 error.SetError (::posix_spawnp (&pid,
1139 exe_path,
1140 NULL,
1141 &attr,
1142 argv,
1143 envp),
1144 eErrorTypePOSIX);
1145
1146 if (error.Fail() || log)
1147 {
1148 error.PutToLog(log, "::posix_spawnp ( pid => %i, path = '%s', file_actions = NULL, attr = %p, argv = %p, envp = %p )",
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001149 pid, exe_path, static_cast<void*>(&attr),
1150 reinterpret_cast<const void*>(argv),
1151 reinterpret_cast<const void*>(envp));
Todd Fiala76747122014-01-23 00:52:28 +00001152 if (log)
1153 {
1154 for (int ii=0; argv[ii]; ++ii)
1155 log->Printf("argv[%i] = '%s'", ii, argv[ii]);
1156 }
1157 }
Daniel Malea4244cbd2013-08-27 20:58:59 +00001158 }
1159
Todd Fiala76747122014-01-23 00:52:28 +00001160 if (working_dir)
Daniel Malea4244cbd2013-08-27 20:58:59 +00001161 {
Todd Fiala76747122014-01-23 00:52:28 +00001162#if defined (__APPLE__)
1163 // No more thread specific current working directory
1164 __pthread_fchdir (-1);
1165#else
1166 if (::chdir(current_dir) == -1 && error.Success())
1167 {
1168 error.SetError(errno, eErrorTypePOSIX);
1169 error.LogIfError(log, "unable to change current directory back to %s",
1170 current_dir);
1171 }
1172#endif
Daniel Malea4244cbd2013-08-27 20:58:59 +00001173 }
1174
1175 return error;
1176}
1177
Zachary Turnerc00cf4a2014-08-15 22:04:21 +00001178bool
1179Host::AddPosixSpawnFileAction(void *_file_actions, const FileAction *info, Log *log, Error &error)
Zachary Turner696b5282014-08-14 16:01:25 +00001180{
1181 if (info == NULL)
1182 return false;
1183
1184 posix_spawn_file_actions_t *file_actions = reinterpret_cast<posix_spawn_file_actions_t *>(_file_actions);
1185
1186 switch (info->GetAction())
1187 {
Zachary Turnerc00cf4a2014-08-15 22:04:21 +00001188 case FileAction::eFileActionNone:
1189 error.Clear();
1190 break;
Zachary Turner696b5282014-08-14 16:01:25 +00001191
Zachary Turnerc00cf4a2014-08-15 22:04:21 +00001192 case FileAction::eFileActionClose:
1193 if (info->GetFD() == -1)
1194 error.SetErrorString("invalid fd for posix_spawn_file_actions_addclose(...)");
1195 else
1196 {
1197 error.SetError(::posix_spawn_file_actions_addclose(file_actions, info->GetFD()), eErrorTypePOSIX);
1198 if (log && (error.Fail() || log))
1199 error.PutToLog(log, "posix_spawn_file_actions_addclose (action=%p, fd=%i)",
1200 static_cast<void *>(file_actions), info->GetFD());
1201 }
1202 break;
Zachary Turner696b5282014-08-14 16:01:25 +00001203
Zachary Turnerc00cf4a2014-08-15 22:04:21 +00001204 case FileAction::eFileActionDuplicate:
1205 if (info->GetFD() == -1)
1206 error.SetErrorString("invalid fd for posix_spawn_file_actions_adddup2(...)");
1207 else if (info->GetActionArgument() == -1)
1208 error.SetErrorString("invalid duplicate fd for posix_spawn_file_actions_adddup2(...)");
1209 else
1210 {
1211 error.SetError(
1212 ::posix_spawn_file_actions_adddup2(file_actions, info->GetFD(), info->GetActionArgument()),
1213 eErrorTypePOSIX);
1214 if (log && (error.Fail() || log))
1215 error.PutToLog(log, "posix_spawn_file_actions_adddup2 (action=%p, fd=%i, dup_fd=%i)",
1216 static_cast<void *>(file_actions), info->GetFD(), info->GetActionArgument());
1217 }
1218 break;
Zachary Turner696b5282014-08-14 16:01:25 +00001219
Zachary Turnerc00cf4a2014-08-15 22:04:21 +00001220 case FileAction::eFileActionOpen:
1221 if (info->GetFD() == -1)
1222 error.SetErrorString("invalid fd in posix_spawn_file_actions_addopen(...)");
1223 else
1224 {
1225 int oflag = info->GetActionArgument();
Zachary Turner696b5282014-08-14 16:01:25 +00001226
Zachary Turnerc00cf4a2014-08-15 22:04:21 +00001227 mode_t mode = 0;
Zachary Turner696b5282014-08-14 16:01:25 +00001228
Zachary Turnerc00cf4a2014-08-15 22:04:21 +00001229 if (oflag & O_CREAT)
1230 mode = 0640;
Zachary Turner696b5282014-08-14 16:01:25 +00001231
Zachary Turnerc00cf4a2014-08-15 22:04:21 +00001232 error.SetError(
1233 ::posix_spawn_file_actions_addopen(file_actions, info->GetFD(), info->GetPath(), oflag, mode),
1234 eErrorTypePOSIX);
1235 if (error.Fail() || log)
1236 error.PutToLog(log,
1237 "posix_spawn_file_actions_addopen (action=%p, fd=%i, path='%s', oflag=%i, mode=%i)",
1238 static_cast<void *>(file_actions), info->GetFD(), info->GetPath(), oflag, mode);
1239 }
1240 break;
Zachary Turner696b5282014-08-14 16:01:25 +00001241 }
1242 return error.Success();
1243}
1244
Todd Fiala76747122014-01-23 00:52:28 +00001245#endif // LaunchProcedssPosixSpawn: Apple, Linux, FreeBSD and other GLIBC systems
1246
1247
Joerg Sonnenbergera53b3592014-05-02 19:09:40 +00001248#if defined(__linux__) || defined(__FreeBSD__) || defined(__GLIBC__) || defined(__NetBSD__)
1249// The functions below implement process launching via posix_spawn() for Linux,
1250// FreeBSD and NetBSD.
Daniel Malea4244cbd2013-08-27 20:58:59 +00001251
1252Error
1253Host::LaunchProcess (ProcessLaunchInfo &launch_info)
1254{
1255 Error error;
1256 char exe_path[PATH_MAX];
1257
1258 PlatformSP host_platform_sp (Platform::GetDefaultPlatform ());
1259
1260 const ArchSpec &arch_spec = launch_info.GetArchitecture();
1261
1262 FileSpec exe_spec(launch_info.GetExecutableFile());
1263
1264 FileSpec::FileType file_type = exe_spec.GetFileType();
1265 if (file_type != FileSpec::eFileTypeRegular)
1266 {
1267 lldb::ModuleSP exe_module_sp;
1268 error = host_platform_sp->ResolveExecutable (exe_spec,
1269 arch_spec,
1270 exe_module_sp,
1271 NULL);
1272
1273 if (error.Fail())
1274 return error;
1275
1276 if (exe_module_sp)
1277 exe_spec = exe_module_sp->GetFileSpec();
1278 }
1279
1280 if (exe_spec.Exists())
1281 {
1282 exe_spec.GetPath (exe_path, sizeof(exe_path));
1283 }
1284 else
1285 {
1286 launch_info.GetExecutableFile().GetPath (exe_path, sizeof(exe_path));
1287 error.SetErrorStringWithFormat ("executable doesn't exist: '%s'", exe_path);
1288 return error;
1289 }
1290
1291 assert(!launch_info.GetFlags().Test (eLaunchFlagLaunchInTTY));
1292
1293 ::pid_t pid = LLDB_INVALID_PROCESS_ID;
1294
1295 error = LaunchProcessPosixSpawn(exe_path, launch_info, pid);
1296
1297 if (pid != LLDB_INVALID_PROCESS_ID)
1298 {
1299 // If all went well, then set the process ID into the launch info
1300 launch_info.SetProcessID(pid);
1301
Todd Fiala76747122014-01-23 00:52:28 +00001302 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
1303
Daniel Malea4244cbd2013-08-27 20:58:59 +00001304 // Make sure we reap any processes we spawn or we will have zombies.
1305 if (!launch_info.MonitorProcess())
1306 {
1307 const bool monitor_signals = false;
1308 StartMonitoringChildProcess (Process::SetProcessExitStatus,
1309 NULL,
1310 pid,
1311 monitor_signals);
Todd Fiala76747122014-01-23 00:52:28 +00001312 if (log)
1313 log->PutCString ("monitored child process with default Process::SetProcessExitStatus.");
1314 }
1315 else
1316 {
1317 if (log)
1318 log->PutCString ("monitored child process with user-specified process monitor.");
Daniel Malea4244cbd2013-08-27 20:58:59 +00001319 }
1320 }
1321 else
1322 {
1323 // Invalid process ID, something didn't go well
1324 if (error.Success())
1325 error.SetErrorString ("process launch failed for unknown reasons");
1326 }
1327 return error;
1328}
1329
Joerg Sonnenbergera53b3592014-05-02 19:09:40 +00001330#endif // defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
Daniel Malea4244cbd2013-08-27 20:58:59 +00001331
Virgile Bellob2f1fb22013-08-23 12:44:05 +00001332#ifndef _WIN32
1333
Virgile Bellob2f1fb22013-08-23 12:44:05 +00001334void
1335Host::Kill(lldb::pid_t pid, int signo)
1336{
1337 ::kill(pid, signo);
1338}
Greg Claytone3e3fee2013-02-17 20:46:30 +00001339
Virgile Bellob2f1fb22013-08-23 12:44:05 +00001340#endif
Greg Claytond1cf11a2012-04-14 01:42:46 +00001341
Johnny Chen8f3d8382011-08-02 20:52:42 +00001342#if !defined (__APPLE__)
Greg Clayton2bddd342010-09-07 20:11:56 +00001343bool
Greg Clayton3b147632010-12-18 01:54:34 +00001344Host::OpenFileInExternalEditor (const FileSpec &file_spec, uint32_t line_no)
Greg Clayton2bddd342010-09-07 20:11:56 +00001345{
1346 return false;
1347}
Greg Claytondd36def2010-10-17 22:03:32 +00001348
Greg Clayton2d95dc9b2010-11-10 04:57:04 +00001349void
1350Host::SetCrashDescriptionWithFormat (const char *format, ...)
1351{
1352}
1353
1354void
1355Host::SetCrashDescription (const char *description)
1356{
1357}
Greg Claytondd36def2010-10-17 22:03:32 +00001358
1359lldb::pid_t
Daniel Maleae0f8f572013-08-26 23:57:52 +00001360Host::LaunchApplication (const FileSpec &app_file_spec)
Greg Claytondd36def2010-10-17 22:03:32 +00001361{
1362 return LLDB_INVALID_PROCESS_ID;
1363}
1364
Greg Claytonfbb76342013-11-20 21:07:01 +00001365#endif
Todd Fiala4ceced32014-08-29 17:35:57 +00001366
1367#if !defined (__linux__) && !defined (__FreeBSD__) && !defined (__NetBSD__)
1368
1369const lldb_private::UnixSignalsSP&
1370Host::GetUnixSignals ()
1371{
1372 static UnixSignalsSP s_unix_signals_sp (new UnixSignals ());
1373 return s_unix_signals_sp;
1374}
1375
1376#endif