【发布时间】:2017-09-22 09:32:47
【问题描述】:
有 2 个应用程序。
AppCMD 是一个命令行应用程序,AppMAIN 以一些命令行参数启动 AppCMD。
不幸的是,AppMAIN 似乎无法很好地处理AppCMD 的输出,并且出现了问题。
我想记录对AppCMD 的调用及其输出,看看发生了什么。
为此,我想用另一个二进制文件AppWRAP 替换AppCMD,它将调用转发到重命名的AppCMD 并记录它的输出。
AppWRAP 应该像一个透明的中间人。
出于测试目的,我写了一个简单的AppCMD,它只输出它的命令行参数:
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << "#### Hello, I'm the test binary that wants to be wrapped." << endl;
if (argc < 2) {
cout << "#### There where no command line arguments." << endl;
}
else {
cout << "#### These are my command line arguments:";
for (int i = 1; i < argc; ++i) cout << " " << argv[i];
cout << endl;
}
cout << "#### That's pretty much everything I do ... yet ;)" << endl;
return 0;
}
我按照MSDN: Creating a Child Process with Redirected Input and Output 实现AppWrap,但由于它没有返回而我被卡住了,我不知道为什么:
#include <iostream>
#include <sstream>
#include <Windows.h>
using namespace std;
const string TARGET_BINARY("TestBinary.exe");
const size_t BUFFSIZE = 4096;
HANDLE in_read = 0;
HANDLE in_write = 0;
HANDLE out_read = 0;
HANDLE out_write = 0;
int main(int argc, char *argv[])
{
stringstream call;
cout << "Hello, I'm BinTheMiddle." << endl;
//-------------------------- CREATE COMMAND LINE CALL --------------------------
call << TARGET_BINARY;
for (int i = 1; i < argc; ++i) {
call << " " << argv[i];
}
cout << "Attempting to call '" << call.str() << "'" << endl;
//------------------------------ ARRANGE IO PIPES ------------------------------
SECURITY_ATTRIBUTES security;
security.nLength = sizeof(SECURITY_ATTRIBUTES);
security.bInheritHandle = NULL;
security.bInheritHandle = TRUE;
security.lpSecurityDescriptor = NULL;
if (!CreatePipe(&out_read, &out_write, &security, 0)) {
cout << "Error: StdoutRd CreatePipe" << endl;
return -1;
}
if (!SetHandleInformation(out_read, HANDLE_FLAG_INHERIT, 0)) {
cout << "Stdout SetHandleInformation" << endl;
return -2;
}
if (!CreatePipe(&in_read, &in_write, &security, 0)) {
cout << "Stdin CreatePipe" << endl;
return -3;
}
if (!SetHandleInformation(in_write, HANDLE_FLAG_INHERIT, 0)) {
cout << "Stdin SetHandleInformation" << endl;
return -4;
}
//------------------------------ START TARGET APP ------------------------------
STARTUPINFO start;
PROCESS_INFORMATION proc;
ZeroMemory(&start, sizeof(start));
start.cb = sizeof(start);
start.hStdError = out_write;
start.hStdOutput = out_write;
start.hStdInput = in_read;
start.dwFlags |= STARTF_USESTDHANDLES;
ZeroMemory(&proc, sizeof(proc));
// Start the child process.
if (!CreateProcess(NULL, (LPSTR) call.str().c_str(), NULL, NULL, TRUE,
0, NULL, NULL, &start, &proc))
{
cout << "CreateProcess failed (" << GetLastError() << ")" << endl;
return -1;
}
// Wait until child process exits.
WaitForSingleObject(proc.hProcess, INFINITE);
// Close process and thread handles.
CloseHandle(proc.hProcess);
CloseHandle(proc.hThread);
//----------------------------------- OUTPUT -----------------------------------
DWORD dwRead;
CHAR chBuf[127];
while (ReadFile(out_read, chBuf, 127, &dwRead, NULL)) {
cout << "Wrapped: " << chBuf << endl;
}
return 0;
}
它似乎在等待ReadFile 返回。谁能发现我做错了什么?
我这样称呼二进制文件:
> shell_cmd_wrapper.exe param1 param2
这是控制台输出,但二进制文件没有返回。
Hello, I'm BinTheMiddle.
Attempting to call 'TestBinary.exe param1 param2'
Wrapped:#### Hello, I'm the test binary that wants to be wrapped.
#### These are my command line arguments: param1 param2
#### That'sD
Wrapped: pretty much everything I do ... yet ;)
s to be wrapped.
#### These are my command line arguments: param1 param2
#### That'sD
(请忽略我没有清除缓冲区)
【问题讨论】:
-
您可能需要在阅读之前使用
PeekNamedPipe来确定可用数据的大小。 -
@eryksun 谢谢。我打电话给
CloseHandle(out_write); CloseHandle(in_read);它似乎做了它应该做的事情:) 当你有计划写一个答案时,我计划接受一个答案。 -
附带说明,在
ReadFile()之后,您应该向chBuf添加一个空终止符,因为ReadFile不会这样做。您可能很幸运chBuf最初用零填充,但它也可能是随机数据,因此cout会在实际字符串之后写入垃圾,甚至崩溃。 -
CHAR chBuf[127+1]; while (ReadFile(out_read, chBuf, 127, &dwRead, NULL)) { chBuf[dwRead] = 0; cout << "Wrapped: " << chBuf << endl; }- 请注意,我还将缓冲区大小增加了 1 以为空终止符腾出空间。 -
@zett42: 或者,您可以使用
cout.write()而不是cout <<,那么您根本不需要使用空终止符:cout << "Wrapped: "; cout.write(chBuf, dwRead); cout << endl;