2014-08-28 04:15:30 +08:00
|
|
|
//===-- HostProcessWindows.cpp ----------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2014-08-28 04:15:30 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
#include "lldb/Host/windows/HostProcessWindows.h"
|
2014-10-15 05:55:08 +08:00
|
|
|
#include "lldb/Host/HostThread.h"
|
|
|
|
#include "lldb/Host/ThreadLauncher.h"
|
2014-08-28 04:15:30 +08:00
|
|
|
#include "lldb/Host/windows/windows.h"
|
2017-03-23 02:40:07 +08:00
|
|
|
#include "lldb/Utility/FileSpec.h"
|
2014-08-28 04:15:30 +08:00
|
|
|
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2016-03-23 01:58:09 +08:00
|
|
|
#include "llvm/Support/ConvertUTF.h"
|
2014-08-28 04:15:30 +08:00
|
|
|
|
2016-12-15 23:00:41 +08:00
|
|
|
#include <psapi.h>
|
2014-09-12 06:22:16 +08:00
|
|
|
|
2014-08-28 04:15:30 +08:00
|
|
|
using namespace lldb_private;
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
namespace {
|
|
|
|
struct MonitorInfo {
|
|
|
|
Host::MonitorChildProcessCallback callback;
|
|
|
|
HANDLE process_handle;
|
2014-10-15 05:55:08 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-10-01 00:56:40 +08:00
|
|
|
HostProcessWindows::HostProcessWindows()
|
2016-09-07 04:57:50 +08:00
|
|
|
: HostNativeProcessBase(), m_owns_handle(true) {}
|
2014-10-01 00:56:40 +08:00
|
|
|
|
2014-09-12 06:22:16 +08:00
|
|
|
HostProcessWindows::HostProcessWindows(lldb::process_t process)
|
2016-09-07 04:57:50 +08:00
|
|
|
: HostNativeProcessBase(process), m_owns_handle(true) {}
|
2014-08-28 04:15:30 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
HostProcessWindows::~HostProcessWindows() { Close(); }
|
2014-08-28 04:15:30 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void HostProcessWindows::SetOwnsHandle(bool owns) { m_owns_handle = owns; }
|
2014-11-06 06:16:28 +08:00
|
|
|
|
2017-05-12 12:51:55 +08:00
|
|
|
Status HostProcessWindows::Terminate() {
|
|
|
|
Status error;
|
2016-09-07 04:57:50 +08:00
|
|
|
if (m_process == nullptr)
|
|
|
|
error.SetError(ERROR_INVALID_HANDLE, lldb::eErrorTypeWin32);
|
2014-08-28 04:15:30 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (!::TerminateProcess(m_process, 0))
|
|
|
|
error.SetError(::GetLastError(), lldb::eErrorTypeWin32);
|
2014-08-28 04:15:30 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return error;
|
2014-08-28 04:15:30 +08:00
|
|
|
}
|
|
|
|
|
2017-05-12 12:51:55 +08:00
|
|
|
Status HostProcessWindows::GetMainModule(FileSpec &file_spec) const {
|
|
|
|
Status error;
|
2016-09-07 04:57:50 +08:00
|
|
|
if (m_process == nullptr)
|
|
|
|
error.SetError(ERROR_INVALID_HANDLE, lldb::eErrorTypeWin32);
|
|
|
|
|
|
|
|
std::vector<wchar_t> wpath(PATH_MAX);
|
|
|
|
if (::GetProcessImageFileNameW(m_process, wpath.data(), wpath.size())) {
|
|
|
|
std::string path;
|
|
|
|
if (llvm::convertWideToUTF8(wpath.data(), path))
|
2018-11-02 16:47:33 +08:00
|
|
|
file_spec.SetFile(path, FileSpec::Style::native);
|
2014-08-28 04:15:30 +08:00
|
|
|
else
|
2016-09-07 04:57:50 +08:00
|
|
|
error.SetErrorString("Error converting path to UTF-8");
|
|
|
|
} else
|
|
|
|
error.SetError(::GetLastError(), lldb::eErrorTypeWin32);
|
2014-08-28 04:15:30 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return error;
|
2014-08-28 04:15:30 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::pid_t HostProcessWindows::GetProcessId() const {
|
|
|
|
return (m_process == LLDB_INVALID_PROCESS) ? -1 : ::GetProcessId(m_process);
|
2014-08-28 04:15:30 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool HostProcessWindows::IsRunning() const {
|
|
|
|
if (m_process == nullptr)
|
|
|
|
return false;
|
2014-08-28 04:15:30 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
DWORD code = 0;
|
|
|
|
if (!::GetExitCodeProcess(m_process, &code))
|
|
|
|
return false;
|
2014-08-28 04:15:30 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return (code == STILL_ACTIVE);
|
2014-08-28 04:15:30 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
HostThread HostProcessWindows::StartMonitoring(
|
|
|
|
const Host::MonitorChildProcessCallback &callback, bool monitor_signals) {
|
|
|
|
HostThread monitor_thread;
|
|
|
|
MonitorInfo *info = new MonitorInfo;
|
|
|
|
info->callback = callback;
|
|
|
|
|
|
|
|
// Since the life of this HostProcessWindows instance and the life of the
|
2018-05-01 00:49:04 +08:00
|
|
|
// process may be different, duplicate the handle so that the monitor thread
|
|
|
|
// can have ownership over its own copy of the handle.
|
2016-09-07 04:57:50 +08:00
|
|
|
HostThread result;
|
|
|
|
if (::DuplicateHandle(GetCurrentProcess(), m_process, GetCurrentProcess(),
|
|
|
|
&info->process_handle, 0, FALSE, DUPLICATE_SAME_ACCESS))
|
|
|
|
result = ThreadLauncher::LaunchThread("ChildProcessMonitor",
|
|
|
|
HostProcessWindows::MonitorThread,
|
|
|
|
info, nullptr);
|
|
|
|
return result;
|
2014-10-15 05:55:08 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::thread_result_t HostProcessWindows::MonitorThread(void *thread_arg) {
|
|
|
|
DWORD exit_code;
|
|
|
|
|
|
|
|
MonitorInfo *info = static_cast<MonitorInfo *>(thread_arg);
|
|
|
|
if (info) {
|
|
|
|
::WaitForSingleObject(info->process_handle, INFINITE);
|
|
|
|
::GetExitCodeProcess(info->process_handle, &exit_code);
|
|
|
|
info->callback(::GetProcessId(info->process_handle), true, 0, exit_code);
|
|
|
|
::CloseHandle(info->process_handle);
|
|
|
|
delete (info);
|
|
|
|
}
|
[lldb] fix cannot convert from 'nullptr' to 'lldb::thread_result_t'
Summary:
On Windows `lldb::thread_result_t` resolves to `typedef unsigned thread_result_t;` and on other platforms it resolves to `typedef void *thread_result_t;`.
Therefore one cannot use `nullptr` when returning from a function that returns `thread_result_t`.
I've made this change because a windows build bot fails with these errors:
```
E:\build_slave\lldb-x64-windows-ninja\llvm\tools\lldb\source\Core\Communication.cpp(362): error C2440: 'return': cannot convert from 'nullptr' to 'lldb::thread_result_t'
E:\build_slave\lldb-x64-windows-ninja\llvm\tools\lldb\source\Core\Communication.cpp(362): note: A native nullptr can only be converted to bool or, using reinterpret_cast, to an integral type
```
and
```
E:\build_slave\lldb-x64-windows-ninja\llvm\tools\lldb\source\Core\Debugger.cpp(1619): error C2440: 'return': cannot convert from 'nullptr' to 'lldb::thread_result_t'
E:\build_slave\lldb-x64-windows-ninja\llvm\tools\lldb\source\Core\Debugger.cpp(1619): note: A native nullptr can only be converted to bool or, using reinterpret_cast, to an integral type
E:\build_slave\lldb-x64-windows-ninja\llvm\tools\lldb\source\Core\Debugger.cpp(1664): error C2440: 'return': cannot convert from 'nullptr' to 'lldb::thread_result_t'
E:\build_slave\lldb-x64-windows-ninja\llvm\tools\lldb\source\Core\Debugger.cpp(1664): note: A native nullptr can only be converted to bool or, using reinterpret_cast, to an integral type
```
This is the failing build: http://lab.llvm.org:8011/builders/lldb-x64-windows-ninja/builds/5035/steps/build/logs/stdio
Reviewers: JDevlieghere, teemperor, jankratochvil, labath, clayborg, RKSimon, courbet, jhenderson
Reviewed By: labath, clayborg
Subscribers: labath, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D62305
llvm-svn: 361503
2019-05-23 23:17:39 +08:00
|
|
|
return {};
|
2014-10-15 05:55:08 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
void HostProcessWindows::Close() {
|
|
|
|
if (m_owns_handle && m_process != LLDB_INVALID_PROCESS)
|
|
|
|
::CloseHandle(m_process);
|
|
|
|
m_process = nullptr;
|
2014-08-28 04:15:30 +08:00
|
|
|
}
|