1 //===-- ProcessLaunchInfo.cpp ---------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 #include "lldb/Host/Config.h"
12 #include "lldb/Host/FileAction.h"
13 #include "lldb/Host/FileSystem.h"
14 #include "lldb/Host/HostInfo.h"
15 #include "lldb/Host/ProcessLaunchInfo.h"
16 #include "lldb/Utility/LLDBLog.h"
17 #include "lldb/Utility/Log.h"
18 #include "lldb/Utility/StreamString.h"
20 #include "llvm/Support/ConvertUTF.h"
21 #include "llvm/Support/FileSystem.h"
28 using namespace lldb_private
;
30 // ProcessLaunchInfo member functions
32 ProcessLaunchInfo::ProcessLaunchInfo()
33 : ProcessInfo(), m_working_dir(), m_plugin_name(), m_flags(0),
34 m_file_actions(), m_pty(new PseudoTerminal
), m_monitor_callback(nullptr) {
37 ProcessLaunchInfo::ProcessLaunchInfo(const FileSpec
&stdin_file_spec
,
38 const FileSpec
&stdout_file_spec
,
39 const FileSpec
&stderr_file_spec
,
40 const FileSpec
&working_directory
,
41 uint32_t launch_flags
)
42 : ProcessInfo(), m_working_dir(), m_plugin_name(), m_flags(launch_flags
),
43 m_file_actions(), m_pty(new PseudoTerminal
) {
44 if (stdin_file_spec
) {
45 FileAction file_action
;
46 const bool read
= true;
47 const bool write
= false;
48 if (file_action
.Open(STDIN_FILENO
, stdin_file_spec
, read
, write
))
49 AppendFileAction(file_action
);
51 if (stdout_file_spec
) {
52 FileAction file_action
;
53 const bool read
= false;
54 const bool write
= true;
55 if (file_action
.Open(STDOUT_FILENO
, stdout_file_spec
, read
, write
))
56 AppendFileAction(file_action
);
58 if (stderr_file_spec
) {
59 FileAction file_action
;
60 const bool read
= false;
61 const bool write
= true;
62 if (file_action
.Open(STDERR_FILENO
, stderr_file_spec
, read
, write
))
63 AppendFileAction(file_action
);
65 if (working_directory
)
66 SetWorkingDirectory(working_directory
);
69 bool ProcessLaunchInfo::AppendCloseFileAction(int fd
) {
70 FileAction file_action
;
71 if (file_action
.Close(fd
)) {
72 AppendFileAction(file_action
);
78 bool ProcessLaunchInfo::AppendDuplicateFileAction(int fd
, int dup_fd
) {
79 FileAction file_action
;
80 if (file_action
.Duplicate(fd
, dup_fd
)) {
81 AppendFileAction(file_action
);
87 bool ProcessLaunchInfo::AppendOpenFileAction(int fd
, const FileSpec
&file_spec
,
88 bool read
, bool write
) {
89 FileAction file_action
;
90 if (file_action
.Open(fd
, file_spec
, read
, write
)) {
91 AppendFileAction(file_action
);
97 bool ProcessLaunchInfo::AppendSuppressFileAction(int fd
, bool read
,
99 FileAction file_action
;
100 if (file_action
.Open(fd
, FileSpec(FileSystem::DEV_NULL
), read
, write
)) {
101 AppendFileAction(file_action
);
107 const FileAction
*ProcessLaunchInfo::GetFileActionAtIndex(size_t idx
) const {
108 if (idx
< m_file_actions
.size())
109 return &m_file_actions
[idx
];
113 const FileAction
*ProcessLaunchInfo::GetFileActionForFD(int fd
) const {
114 for (size_t idx
= 0, count
= m_file_actions
.size(); idx
< count
; ++idx
) {
115 if (m_file_actions
[idx
].GetFD() == fd
)
116 return &m_file_actions
[idx
];
121 const FileSpec
&ProcessLaunchInfo::GetWorkingDirectory() const {
122 return m_working_dir
;
125 void ProcessLaunchInfo::SetWorkingDirectory(const FileSpec
&working_dir
) {
126 m_working_dir
= working_dir
;
129 llvm::StringRef
ProcessLaunchInfo::GetProcessPluginName() const {
130 return llvm::StringRef(m_plugin_name
);
133 void ProcessLaunchInfo::SetProcessPluginName(llvm::StringRef plugin
) {
134 m_plugin_name
= std::string(plugin
);
137 const FileSpec
&ProcessLaunchInfo::GetShell() const { return m_shell
; }
139 void ProcessLaunchInfo::SetShell(const FileSpec
&shell
) {
142 FileSystem::Instance().ResolveExecutableLocation(m_shell
);
143 m_flags
.Set(lldb::eLaunchFlagLaunchInShell
);
145 m_flags
.Clear(lldb::eLaunchFlagLaunchInShell
);
148 void ProcessLaunchInfo::SetLaunchInSeparateProcessGroup(bool separate
) {
150 m_flags
.Set(lldb::eLaunchFlagLaunchInSeparateProcessGroup
);
152 m_flags
.Clear(lldb::eLaunchFlagLaunchInSeparateProcessGroup
);
155 void ProcessLaunchInfo::SetShellExpandArguments(bool expand
) {
157 m_flags
.Set(lldb::eLaunchFlagShellExpandArguments
);
159 m_flags
.Clear(lldb::eLaunchFlagShellExpandArguments
);
162 void ProcessLaunchInfo::Clear() {
163 ProcessInfo::Clear();
164 m_working_dir
.Clear();
165 m_plugin_name
.clear();
168 m_file_actions
.clear();
170 m_listener_sp
.reset();
171 m_hijack_listener_sp
.reset();
174 void ProcessLaunchInfo::NoOpMonitorCallback(lldb::pid_t pid
, int signal
,
176 Log
*log
= GetLog(LLDBLog::Process
);
177 LLDB_LOG(log
, "pid = {0}, signal = {1}, status = {2}", pid
, signal
, status
);
180 bool ProcessLaunchInfo::MonitorProcess() const {
181 if (m_monitor_callback
&& ProcessIDIsValid()) {
182 llvm::Expected
<HostThread
> maybe_thread
=
183 Host::StartMonitoringChildProcess(m_monitor_callback
, GetProcessID());
185 LLDB_LOG_ERROR(GetLog(LLDBLog::Host
), maybe_thread
.takeError(),
186 "failed to launch host thread: {0}");
192 void ProcessLaunchInfo::SetDetachOnError(bool enable
) {
194 m_flags
.Set(lldb::eLaunchFlagDetachOnError
);
196 m_flags
.Clear(lldb::eLaunchFlagDetachOnError
);
199 llvm::Error
ProcessLaunchInfo::SetUpPtyRedirection() {
200 Log
*log
= GetLog(LLDBLog::Process
);
202 bool stdin_free
= GetFileActionForFD(STDIN_FILENO
) == nullptr;
203 bool stdout_free
= GetFileActionForFD(STDOUT_FILENO
) == nullptr;
204 bool stderr_free
= GetFileActionForFD(STDERR_FILENO
) == nullptr;
205 bool any_free
= stdin_free
|| stdout_free
|| stderr_free
;
207 return llvm::Error::success();
209 LLDB_LOG(log
, "Generating a pty to use for stdin/out/err");
211 int open_flags
= O_RDWR
| O_NOCTTY
;
213 // We really shouldn't be specifying platform specific flags that are
214 // intended for a system call in generic code. But this will have to
216 open_flags
|= O_CLOEXEC
;
218 if (llvm::Error Err
= m_pty
->OpenFirstAvailablePrimary(open_flags
))
221 const FileSpec
secondary_file_spec(m_pty
->GetSecondaryName());
224 AppendOpenFileAction(STDIN_FILENO
, secondary_file_spec
, true, false);
227 AppendOpenFileAction(STDOUT_FILENO
, secondary_file_spec
, false, true);
230 AppendOpenFileAction(STDERR_FILENO
, secondary_file_spec
, false, true);
231 return llvm::Error::success();
234 bool ProcessLaunchInfo::ConvertArgumentsForLaunchingInShell(
235 Status
&error
, bool will_debug
, bool first_arg_is_full_shell_command
,
236 uint32_t num_resumes
) {
239 if (GetFlags().Test(eLaunchFlagLaunchInShell
)) {
241 std::string shell_executable
= m_shell
.GetPath();
243 const char **argv
= GetArguments().GetConstArgumentVector();
244 if (argv
== nullptr || argv
[0] == nullptr)
246 Args shell_arguments
;
247 shell_arguments
.AppendArgument(shell_executable
);
248 const llvm::Triple
&triple
= GetArchitecture().GetTriple();
249 if (triple
.getOS() == llvm::Triple::Win32
&&
250 !triple
.isWindowsCygwinEnvironment())
251 shell_arguments
.AppendArgument(llvm::StringRef("/C"));
253 shell_arguments
.AppendArgument(llvm::StringRef("-c"));
255 StreamString shell_command
;
257 // Add a modified PATH environment variable in case argv[0] is a
259 const char *argv0
= argv
[0];
260 FileSpec
arg_spec(argv0
);
261 if (arg_spec
.IsRelative()) {
262 // We have a relative path to our executable which may not work if we
263 // just try to run "a.out" (without it being converted to "./a.out")
264 FileSpec working_dir
= GetWorkingDirectory();
265 // Be sure to put quotes around PATH's value in case any paths have
267 std::string
new_path("PATH=\"");
268 const size_t empty_path_len
= new_path
.size();
271 new_path
+= working_dir
.GetPath();
273 llvm::SmallString
<64> cwd
;
274 if (! llvm::sys::fs::current_path(cwd
))
277 std::string curr_path
;
278 if (HostInfo::GetEnvironmentVar("PATH", curr_path
)) {
279 if (new_path
.size() > empty_path_len
)
281 new_path
+= curr_path
;
284 shell_command
.PutCString(new_path
);
287 if (triple
.getOS() != llvm::Triple::Win32
||
288 triple
.isWindowsCygwinEnvironment())
289 shell_command
.PutCString("exec");
291 // Only Apple supports /usr/bin/arch being able to specify the
293 if (GetArchitecture().IsValid() && // Valid architecture
294 GetArchitecture().GetTriple().getVendor() ==
295 llvm::Triple::Apple
&& // Apple only
296 GetArchitecture().GetCore() !=
297 ArchSpec::eCore_x86_64_x86_64h
) // Don't do this for x86_64h
299 shell_command
.Printf(" /usr/bin/arch -arch %s",
300 GetArchitecture().GetArchitectureName());
301 // Set the resume count to 2:
303 // 2 - stop in /usr/bin/arch
304 // 3 - then we will stop in our program
305 SetResumeCount(num_resumes
+ 1);
307 // Set the resume count to 1:
309 // 2 - then we will stop in our program
310 SetResumeCount(num_resumes
);
314 if (first_arg_is_full_shell_command
) {
315 // There should only be one argument that is the shell command itself
317 if (argv
[0] && !argv
[1])
318 shell_command
.Printf("%s", argv
[0]);
322 for (size_t i
= 0; argv
[i
] != nullptr; ++i
) {
323 std::string safe_arg
= Args::GetShellSafeArgument(m_shell
, argv
[i
]);
324 if (safe_arg
.empty())
326 // Add a space to separate this arg from the previous one.
327 shell_command
.PutCString(" ");
328 shell_command
.PutCString(safe_arg
);
331 shell_arguments
.AppendArgument(shell_command
.GetString());
332 m_executable
= m_shell
;
333 m_arguments
= shell_arguments
;
336 error
.SetErrorString("invalid shell path");
339 error
.SetErrorString("not launching in shell");