1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
#include "commonheaders.h"
BOOL isWindowsNT(void)
{
BOOL result;
OSVERSIONINFO ovi;
ZeroMemory(&ovi, sizeof(ovi));
ovi.dwOSVersionInfoSize=sizeof(OSVERSIONINFO);
GetVersionEx(&ovi);
if(ovi.dwPlatformId==VER_PLATFORM_WIN32_NT) result=TRUE;
else result=FALSE;
return result;
}
void storeOutput(HANDLE ahandle, char **aoutput)
{
DWORD success;
char readbuffer[10];
DWORD transfered;
DWORD available;
do
{
PeekNamedPipe(ahandle, NULL, 0, NULL, &available, NULL);
if(available==0) continue;
success=ReadFile(ahandle, readbuffer, sizeof(readbuffer), &transfered, NULL);
if((success)&&(transfered!=0))
appendText(aoutput, readbuffer, transfered);
}
while(available>0);
}
pxResult pxExecute(char *acommandline, char *ainput, char **aoutput, LPDWORD aexitcode)
{
BOOL success;
STARTUPINFO startupinfo;
SECURITY_ATTRIBUTES securityattributes;
SECURITY_DESCRIPTOR securitydescriptor;
PROCESS_INFORMATION processinformation;
HANDLE newstdin, newstdout, readstdout, writestdin;
char *inputpos;
DWORD transfered;
int size;
LogMessage("commandline:\n", acommandline, "\n");
ZeroMemory(&securityattributes, sizeof(securityattributes));
securityattributes.nLength=sizeof(SECURITY_ATTRIBUTES);
securityattributes.bInheritHandle=TRUE;
if(isWindowsNT())
{
InitializeSecurityDescriptor(&securitydescriptor, SECURITY_DESCRIPTOR_REVISION);
SetSecurityDescriptorDacl(&securitydescriptor, TRUE, NULL, FALSE);
securityattributes.lpSecurityDescriptor=&securitydescriptor;
}
else securityattributes.lpSecurityDescriptor=NULL;
success=CreatePipe(&newstdin, &writestdin ,&securityattributes ,0);
if(! success)
{
LogMessage("--- ", "create pipe failed", "\n");
return pxCreatePipeFailed;
}
success=CreatePipe(&readstdout, &newstdout, &securityattributes, 0);
if(! success)
{
LogMessage("--- ", "create pipe failed", "\n");
CloseHandle(newstdin);
CloseHandle(writestdin);
return pxCreatePipeFailed;
}
GetStartupInfo(&startupinfo);
startupinfo.dwFlags=STARTF_USESTDHANDLES|STARTF_USESHOWWINDOW;
startupinfo.wShowWindow=SW_HIDE;
startupinfo.hStdOutput=newstdout;
startupinfo.hStdError=newstdout;
startupinfo.hStdInput=newstdin;
success=CreateProcess(NULL, acommandline, NULL, NULL, TRUE, CREATE_NEW_CONSOLE, NULL, NULL, &startupinfo, &processinformation);
if(! success)
{
LogMessage("--- ", "create process failed", "\n");
CloseHandle(newstdin);
CloseHandle(writestdin);
CloseHandle(newstdout);
CloseHandle(readstdout);
return pxCreateProcessFailed;
}
inputpos=ainput;
while(TRUE)
{
success=GetExitCodeProcess(processinformation.hProcess, aexitcode);
if((success)&&(*aexitcode!=STILL_ACTIVE)) break;
storeOutput(readstdout, aoutput);
if(*inputpos!='\0') size=1;
else size=0;
success=WriteFile(writestdin, inputpos, size, &transfered, NULL);
inputpos+=transfered;
}
storeOutput(readstdout, aoutput);
WaitForSingleObject(processinformation.hProcess, INFINITE);
LogMessage("output:\n", *aoutput, "");
CloseHandle(processinformation.hThread);
CloseHandle(processinformation.hProcess);
CloseHandle(newstdin);
CloseHandle(newstdout);
CloseHandle(readstdout);
CloseHandle(writestdin);
return pxSuccess;
}
|