1 //===-- ProcessLauncherLinux.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/Host/posix/ProcessLauncherPosixFork.h"
11 #include "lldb/Host/Host.h"
12 #include "lldb/Host/HostProcess.h"
13 #include "lldb/Host/Pipe.h"
14 #include "lldb/Target/ProcessLaunchInfo.h"
15 #include "lldb/Utility/FileSpec.h"
16 #include "lldb/Utility/Log.h"
17 #include "llvm/Support/Errno.h"
18 
19 #include <limits.h>
20 #include <sys/ptrace.h>
21 #include <sys/wait.h>
22 #include <unistd.h>
23 
24 #include <sstream>
25 #include <csignal>
26 
27 #ifdef __ANDROID__
28 #include <android/api-level.h>
29 #define PT_TRACE_ME PTRACE_TRACEME
30 #endif
31 
32 #if defined(__ANDROID_API__) && __ANDROID_API__ < 15
33 #include <linux/personality.h>
34 #elif defined(__linux__)
35 #include <sys/personality.h>
36 #endif
37 
38 using namespace lldb;
39 using namespace lldb_private;
40 
41 static void FixupEnvironment(Environment &env) {
42 #ifdef __ANDROID__
43   // If there is no PATH variable specified inside the environment then set the
44   // path to /system/bin. It is required because the default path used by
45   // execve() is wrong on android.
46   env.try_emplace("PATH", "/system/bin");
47 #endif
48 }
49 
50 static void LLVM_ATTRIBUTE_NORETURN ExitWithError(int error_fd,
51                                                   const char *operation) {
52   int err = errno;
53   llvm::raw_fd_ostream os(error_fd, true);
54   os << operation << " failed: " << llvm::sys::StrError(err);
55   os.flush();
56   _exit(1);
57 }
58 
59 static void DisableASLRIfRequested(int error_fd, const ProcessLaunchInfo &info) {
60 #if defined(__linux__)
61   if (info.GetFlags().Test(lldb::eLaunchFlagDisableASLR)) {
62     const unsigned long personality_get_current = 0xffffffff;
63     int value = personality(personality_get_current);
64     if (value == -1)
65       ExitWithError(error_fd, "personality get");
66 
67     value = personality(ADDR_NO_RANDOMIZE | value);
68     if (value == -1)
69       ExitWithError(error_fd, "personality set");
70   }
71 #endif
72 }
73 
74 static void DupDescriptor(int error_fd, const FileSpec &file_spec, int fd,
75                           int flags) {
76   int target_fd = ::open(file_spec.GetCString(), flags, 0666);
77 
78   if (target_fd == -1)
79     ExitWithError(error_fd, "DupDescriptor-open");
80 
81   if (target_fd == fd)
82     return;
83 
84   if (::dup2(target_fd, fd) == -1)
85     ExitWithError(error_fd, "DupDescriptor-dup2");
86 
87   ::close(target_fd);
88   return;
89 }
90 
91 static void LLVM_ATTRIBUTE_NORETURN ChildFunc(int error_fd,
92                                               const ProcessLaunchInfo &info) {
93   // Do not inherit setgid powers.
94   if (setgid(getgid()) != 0)
95     ExitWithError(error_fd, "setgid");
96 
97   if (info.GetFlags().Test(eLaunchFlagLaunchInSeparateProcessGroup)) {
98     if (setpgid(0, 0) != 0)
99       ExitWithError(error_fd, "setpgid");
100   }
101 
102   for (size_t i = 0; i < info.GetNumFileActions(); ++i) {
103     const FileAction &action = *info.GetFileActionAtIndex(i);
104     switch (action.GetAction()) {
105     case FileAction::eFileActionClose:
106       if (close(action.GetFD()) != 0)
107         ExitWithError(error_fd, "close");
108       break;
109     case FileAction::eFileActionDuplicate:
110       if (dup2(action.GetFD(), action.GetActionArgument()) == -1)
111         ExitWithError(error_fd, "dup2");
112       break;
113     case FileAction::eFileActionOpen:
114       DupDescriptor(error_fd, action.GetFileSpec(), action.GetFD(),
115                     action.GetActionArgument());
116       break;
117     case FileAction::eFileActionNone:
118       break;
119     }
120   }
121 
122   const char **argv = info.GetArguments().GetConstArgumentVector();
123 
124   // Change working directory
125   if (info.GetWorkingDirectory() &&
126       0 != ::chdir(info.GetWorkingDirectory().GetCString()))
127     ExitWithError(error_fd, "chdir");
128 
129   DisableASLRIfRequested(error_fd, info);
130   Environment env = info.GetEnvironment();
131   FixupEnvironment(env);
132   Environment::Envp envp = env.getEnvp();
133 
134   // Clear the signal mask to prevent the child from being affected by any
135   // masking done by the parent.
136   sigset_t set;
137   if (sigemptyset(&set) != 0 ||
138       pthread_sigmask(SIG_SETMASK, &set, nullptr) != 0)
139     ExitWithError(error_fd, "pthread_sigmask");
140 
141   if (info.GetFlags().Test(eLaunchFlagDebug)) {
142     // HACK:
143     // Close everything besides stdin, stdout, and stderr that has no file
144     // action to avoid leaking. Only do this when debugging, as elsewhere we
145     // actually rely on passing open descriptors to child processes.
146     for (int fd = 3; fd < sysconf(_SC_OPEN_MAX); ++fd)
147       if (!info.GetFileActionForFD(fd) && fd != error_fd)
148         close(fd);
149 
150     // Start tracing this child that is about to exec.
151     if (ptrace(PT_TRACE_ME, 0, nullptr, 0) == -1)
152       ExitWithError(error_fd, "ptrace");
153   }
154 
155   // Execute.  We should never return...
156   execve(argv[0], const_cast<char *const *>(argv), envp);
157 
158 #if defined(__linux__)
159   if (errno == ETXTBSY) {
160     // On android M and earlier we can get this error because the adb deamon
161     // can hold a write handle on the executable even after it has finished
162     // uploading it. This state lasts only a short time and happens only when
163     // there are many concurrent adb commands being issued, such as when
164     // running the test suite. (The file remains open when someone does an "adb
165     // shell" command in the fork() child before it has had a chance to exec.)
166     // Since this state should clear up quickly, wait a while and then give it
167     // one more go.
168     usleep(50000);
169     execve(argv[0], const_cast<char *const *>(argv), envp);
170   }
171 #endif
172 
173   // ...unless exec fails.  In which case we definitely need to end the child
174   // here.
175   ExitWithError(error_fd, "execve");
176 }
177 
178 HostProcess
179 ProcessLauncherPosixFork::LaunchProcess(const ProcessLaunchInfo &launch_info,
180                                         Status &error) {
181   char exe_path[PATH_MAX];
182   launch_info.GetExecutableFile().GetPath(exe_path, sizeof(exe_path));
183 
184   // A pipe used by the child process to report errors.
185   PipePosix pipe;
186   const bool child_processes_inherit = false;
187   error = pipe.CreateNew(child_processes_inherit);
188   if (error.Fail())
189     return HostProcess();
190 
191   ::pid_t pid = ::fork();
192   if (pid == -1) {
193     // Fork failed
194     error.SetErrorStringWithFormatv("Fork failed with error message: {0}",
195                                     llvm::sys::StrError());
196     return HostProcess(LLDB_INVALID_PROCESS_ID);
197   }
198   if (pid == 0) {
199     // child process
200     pipe.CloseReadFileDescriptor();
201     ChildFunc(pipe.ReleaseWriteFileDescriptor(), launch_info);
202   }
203 
204   // parent process
205 
206   pipe.CloseWriteFileDescriptor();
207   char buf[1000];
208   int r = read(pipe.GetReadFileDescriptor(), buf, sizeof buf);
209 
210   if (r == 0)
211     return HostProcess(pid); // No error. We're done.
212 
213   error.SetErrorString(buf);
214 
215   waitpid(pid, nullptr, 0);
216 
217   return HostProcess();
218 }
219