Reece
7eb6900e9f
[+] AuRemoveConst [*] Support circular reference in Aurora pipelines Include, added support for early Aurora::Build AuroraEnum [+] Added SWInfo API [+] AU_COPY_MOVE, AU_MOVE, AU_COPY to go with AU_NO_... variants [+] Adding GetProcessId
405 lines
11 KiB
C++
405 lines
11 KiB
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Process.Win32.cpp
|
|
Date: 2021-6-12
|
|
Author: Reece
|
|
***/
|
|
#include <Source/RuntimeInternal.hpp>
|
|
#include "Processes.hpp"
|
|
#include "Process.Win32.hpp"
|
|
#include <shellapi.h>
|
|
#include <tlhelp32.h>
|
|
#include <process.h>
|
|
|
|
namespace Aurora::Processes
|
|
{
|
|
static HANDLE gLeaderJob = INVALID_HANDLE_VALUE;
|
|
|
|
void InitWin32()
|
|
{
|
|
gLeaderJob = CreateJobObject(NULL, NULL);
|
|
if (!gLeaderJob)
|
|
{
|
|
SysPushErrorArg("CreateJobObject error");
|
|
return;
|
|
}
|
|
|
|
JOBOBJECT_EXTENDED_LIMIT_INFORMATION jeli {};
|
|
jeli.BasicLimitInformation.LimitFlags = JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE;
|
|
if (!SetInformationJobObject(gLeaderJob, JobObjectExtendedLimitInformation, &jeli, sizeof(jeli)))
|
|
{
|
|
SysPushErrorGen("SetInformationJobObject error");
|
|
}
|
|
}
|
|
|
|
void DeinitWin32()
|
|
{
|
|
AuWin32CloseHandle(gLeaderJob);
|
|
}
|
|
|
|
class ProcessImpl : public IProcess
|
|
{
|
|
public:
|
|
ProcessImpl(AuString execModule, AuList<AuString> args);
|
|
~ProcessImpl();
|
|
|
|
bool TermWinEnumProcesses();
|
|
|
|
bool TryKill() override;
|
|
bool HasExited();
|
|
|
|
AuUInt GetProcessId() override;
|
|
|
|
bool Terminate() override;
|
|
AuSPtr<Threading::IWaitable> AsWaitable() override;
|
|
AuSInt GetExitCode() override;
|
|
|
|
void ShutdownPipes();
|
|
|
|
bool Read(bool error, void *buffer, AuUInt32 &len) override;
|
|
bool Read(void *buffer, AuUInt32 &len, bool errorStream, bool nonblock) override;
|
|
|
|
bool Write(const void *buffer, AuUInt32 len) override;
|
|
|
|
// TODO: what in the hell this is ugly
|
|
bool Start(enum ESpawnType type, bool fwdOut, bool fwdErr, bool fwdIn) override;
|
|
|
|
private:
|
|
|
|
HANDLE pipeStdOutRead_ {INVALID_HANDLE_VALUE};
|
|
HANDLE pipeStdOutWrite_ {INVALID_HANDLE_VALUE};
|
|
HANDLE pipeStdErrRead_ {INVALID_HANDLE_VALUE};
|
|
HANDLE pipeStdErrWrite_ {INVALID_HANDLE_VALUE};
|
|
HANDLE pipeStdInRead_ {INVALID_HANDLE_VALUE};
|
|
HANDLE pipeStdInWrite_ {INVALID_HANDLE_VALUE};
|
|
|
|
AuString execModule_;
|
|
ESpawnType type_;
|
|
|
|
AuList<AuString> args_;
|
|
AuList<const char *> cargs_;
|
|
AuString windowsCli_;
|
|
|
|
AuThreads::ThreadUnique_t thread_;
|
|
HANDLE process_ {INVALID_HANDLE_VALUE};
|
|
HANDLE hthread_ {INVALID_HANDLE_VALUE};
|
|
AuSInt exitCode_;
|
|
};
|
|
|
|
|
|
ProcessImpl::ProcessImpl(AuString execModule, AuList<AuString> args) : execModule_(execModule), args_(args)
|
|
{
|
|
this->args_.insert(this->args_.begin(), execModule);
|
|
|
|
// ehhhh https://github.com/tritao/WindowsSDK/blob/07983c7ba4f6861d15e23f195744c60c0c249ce0/SDKs/SourceDir/Windows%20Kits/10/Source/10.0.17763.0/ucrt/exec/cenvarg.cpp#L23
|
|
for (const auto &arg : this->args_)
|
|
{
|
|
this->cargs_.push_back(arg.c_str());
|
|
this->windowsCli_ += arg + " ";
|
|
}
|
|
|
|
this->cargs_.push_back(nullptr);
|
|
this->windowsCli_.resize(this->windowsCli_.size() - 1);
|
|
}
|
|
|
|
ProcessImpl::~ProcessImpl()
|
|
{
|
|
if (this->type_ == ESpawnType::eSpawnChildProcessWorker)
|
|
{
|
|
TryKill();
|
|
Terminate();
|
|
}
|
|
|
|
if (this->thread_)
|
|
{
|
|
this->thread_.reset();
|
|
}
|
|
|
|
AuWin32CloseHandle(this->process_);
|
|
AuWin32CloseHandle(this->hthread_);
|
|
|
|
ShutdownPipes();
|
|
}
|
|
|
|
AuUInt ProcessImpl::GetProcessId()
|
|
{
|
|
if (this->process_ == INVALID_HANDLE_VALUE)
|
|
{
|
|
return {};
|
|
}
|
|
|
|
return ::GetProcessId(this->process_);
|
|
}
|
|
|
|
static BOOL TermWinHandleWin32Thread(HWND handle, LPARAM a)
|
|
{
|
|
SendMessageA(handle, WM_CLOSE, 0, 0);
|
|
(*reinterpret_cast<AuUInt32 *>(a))++;
|
|
return true;
|
|
}
|
|
|
|
bool ProcessImpl::TermWinEnumProcesses()
|
|
{
|
|
THREADENTRY32 te{};
|
|
HANDLE h{};
|
|
|
|
if (this->process_ == INVALID_HANDLE_VALUE)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
h = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, GetProcessId());
|
|
if (h == INVALID_HANDLE_VALUE)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
te.dwSize = sizeof(te);
|
|
AuUInt32 count{};
|
|
if (Thread32First(h, &te))
|
|
{
|
|
do
|
|
{
|
|
if (te.dwSize >= FIELD_OFFSET(THREADENTRY32, th32OwnerProcessID) +
|
|
sizeof(te.th32OwnerProcessID))
|
|
{
|
|
EnumThreadWindows(te.th32ThreadID, TermWinHandleWin32Thread, reinterpret_cast<LPARAM>(&count));
|
|
}
|
|
te.dwSize = sizeof(te);
|
|
} while (Thread32Next(h, &te));
|
|
}
|
|
|
|
CloseHandle(h);
|
|
|
|
if (!count)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return Threading::YieldPoll(true, 2500, [=]()
|
|
{
|
|
return !HasExited();
|
|
});
|
|
}
|
|
|
|
bool ProcessImpl::TryKill()
|
|
{
|
|
return TermWinEnumProcesses();
|
|
}
|
|
|
|
bool ProcessImpl::HasExited()
|
|
{
|
|
DWORD a;
|
|
if (!GetExitCodeProcess(this->process_, &a)) return true;
|
|
return a != STILL_ACTIVE;
|
|
}
|
|
|
|
bool ProcessImpl::Terminate()
|
|
{
|
|
if (this->process_ != INVALID_HANDLE_VALUE)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return TerminateProcess(this->process_, 0) || HasExited();
|
|
}
|
|
|
|
AuSPtr<Threading::IWaitable> ProcessImpl::AsWaitable()
|
|
{
|
|
if (!this->thread_) return nullptr;
|
|
return this->thread_->AsWaitable();
|
|
}
|
|
|
|
AuSInt ProcessImpl::GetExitCode()
|
|
{
|
|
return this->exitCode_;
|
|
}
|
|
|
|
void ProcessImpl::ShutdownPipes()
|
|
{
|
|
AuWin32CloseHandle(this->pipeStdOutRead_);
|
|
AuWin32CloseHandle(this->pipeStdOutWrite_);
|
|
AuWin32CloseHandle(this->pipeStdErrRead_);
|
|
AuWin32CloseHandle(this->pipeStdErrWrite_);
|
|
AuWin32CloseHandle(this->pipeStdInRead_);
|
|
AuWin32CloseHandle(this->pipeStdInWrite_);
|
|
}
|
|
|
|
bool ProcessImpl::Read(bool error, void *buffer, AuUInt32 &len)
|
|
{
|
|
return Read(buffer, len, error, false);
|
|
}
|
|
|
|
bool ProcessImpl::Read(void *buffer, AuUInt32 &len, bool errorStream, bool nonblock)
|
|
{
|
|
DWORD size = AuExchange(len, 0);
|
|
|
|
auto handle = errorStream ? pipeStdErrRead_ : pipeStdOutRead_;
|
|
if (handle == INVALID_HANDLE_VALUE)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (nonblock)
|
|
{
|
|
DWORD avail {};
|
|
if (!PeekNamedPipe(handle, NULL, NULL, NULL, &avail, NULL))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (!avail)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
size = AuMin(size, avail);
|
|
}
|
|
|
|
auto ret = ReadFile(handle, buffer, size, &size, NULL);
|
|
len = size;
|
|
return ret;
|
|
}
|
|
|
|
bool ProcessImpl::Write(const void *buffer, AuUInt32 len)
|
|
{
|
|
DWORD size = len;
|
|
if (pipeStdInWrite_ == INVALID_HANDLE_VALUE) return false;
|
|
return WriteFile(pipeStdInWrite_, buffer, size, &size, NULL) && size == len;
|
|
}
|
|
|
|
bool ProcessImpl::Start(enum ESpawnType type, bool fwdOut, bool fwdErr, bool fwdIn)
|
|
{
|
|
this->exitCode_ = 0x10110100;
|
|
this->type_ = type;
|
|
|
|
if (type == ESpawnType::eSpawnAtomicOvermap)
|
|
{
|
|
_spawnv(_P_OVERLAY, this->execModule_.c_str(), this->cargs_.data());
|
|
SysPushErrorGen("_spawnv didn't overwrite the process map, given {} ({})", this->execModule_, this->windowsCli_);
|
|
return false;
|
|
}
|
|
|
|
{
|
|
SECURITY_ATTRIBUTES saAttr{};
|
|
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
|
|
saAttr.bInheritHandle = TRUE;
|
|
|
|
if (fwdOut)
|
|
{
|
|
if (!CreatePipe(&pipeStdOutRead_, &pipeStdOutWrite_, &saAttr, 0))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (!SetHandleInformation(pipeStdOutRead_, HANDLE_FLAG_INHERIT, 0))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (fwdErr)
|
|
{
|
|
if (!CreatePipe(&pipeStdErrRead_, &pipeStdErrWrite_, &saAttr, 0))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (!SetHandleInformation(pipeStdErrRead_, HANDLE_FLAG_INHERIT, 0))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (fwdIn)
|
|
{
|
|
if (!CreatePipe(&pipeStdInRead_, &pipeStdInWrite_, &saAttr, 0))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (!SetHandleInformation(pipeStdInWrite_, HANDLE_FLAG_INHERIT, 0))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
PROCESS_INFORMATION processInfo = { 0 };
|
|
{
|
|
STARTUPINFOW startupInfo = { 0 };
|
|
startupInfo.cb = sizeof(startupInfo);
|
|
|
|
bool inheritHandles = fwdIn || fwdErr || fwdOut;
|
|
|
|
startupInfo.hStdInput = pipeStdInRead_;
|
|
startupInfo.hStdError = pipeStdErrWrite_;
|
|
startupInfo.hStdOutput = pipeStdOutWrite_;
|
|
startupInfo.dwFlags |= (inheritHandles ? STARTF_USESTDHANDLES : 0);
|
|
|
|
auto result = CreateProcessW(Locale::ConvertFromUTF8(this->execModule_).c_str(),
|
|
Locale::ConvertFromUTF8(this->windowsCli_).data(),
|
|
NULL, NULL, inheritHandles,
|
|
NULL,
|
|
NULL, NULL, &startupInfo, &processInfo);
|
|
|
|
if (!result)
|
|
{
|
|
SysPushErrorGen("CreateProcess failed");
|
|
return false;
|
|
}
|
|
|
|
this->process_ = processInfo.hProcess;
|
|
this->hthread_ = processInfo.hThread;
|
|
|
|
AuWin32CloseHandle(this->pipeStdOutRead_);
|
|
AuWin32CloseHandle(this->pipeStdErrRead_);
|
|
AuWin32CloseHandle(this->pipeStdInWrite_);
|
|
|
|
if (type == ESpawnType::eSpawnChildProcessWorker)
|
|
{
|
|
if (gLeaderJob)
|
|
{
|
|
if (!AssignProcessToJobObject(gLeaderJob, processInfo.hProcess))
|
|
{
|
|
SysPushErrorGen("Could not AssignProcessToObject");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO: delegate to a singular worker thread
|
|
auto a = [=]()
|
|
{
|
|
WaitForSingleObject(processInfo.hProcess, INFINITE);
|
|
|
|
DWORD exitCode;
|
|
auto result = GetExitCodeProcess(processInfo.hProcess, &exitCode);
|
|
this->exitCode_ = exitCode;
|
|
};
|
|
|
|
this->thread_ = AuThreads::ThreadUnique(AuThreads::ThreadInfo(
|
|
AuMakeShared<AuThreads::IThreadVectorsFunctional>(AuThreads::IThreadVectorsFunctional::OnEntry_t(std::bind(a)),
|
|
AuThreads::IThreadVectorsFunctional::OnExit_t{})
|
|
));
|
|
|
|
if (!this->thread_)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
this->thread_->Run();
|
|
return true;
|
|
}
|
|
|
|
AUKN_SYM IProcess *SpawnNew(const AuString &app, const AuList<AuString> &args)
|
|
{
|
|
return _new ProcessImpl(app, args);
|
|
}
|
|
|
|
AUKN_SYM void SpawnRelease(IProcess *process)
|
|
{
|
|
SafeDelete<ProcessImpl *>(process);
|
|
}
|
|
} |