forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
winprocess_impl.cpp
497 lines (429 loc) · 15.4 KB
/
winprocess_impl.cpp
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : winprocess.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifdef __WXMSW__
#include "winprocess_impl.h"
#include "processreaderthread.h"
#include <wx/filefn.h>
#include <memory>
#include "procutils.h"
#include <wx/sharedptr.h>
class MyDirGuard
{
wxString _d;
public:
MyDirGuard() : _d( wxGetCwd() ) {}
~MyDirGuard() {
wxSetWorkingDirectory(_d);
}
};
/**
* @class ConsoleAttacher
* @date 11/03/10
* @brief a helper class to attach this process to a process' console
* this allows us to write directly into that process console-input-buffer
* One should check isAttached once this object is constructed
*/
class ConsoleAttacher
{
public:
bool isAttached;
public:
ConsoleAttacher(long pid) {
isAttached = AttachConsole(pid);
}
~ConsoleAttacher() {
if(isAttached) {
FreeConsole();
}
isAttached = false;
}
};
/*static*/
IProcess* WinProcessImpl::Execute(wxEvtHandler *parent, const wxString& cmd, wxString &errMsg, IProcessCreateFlags flags, const wxString &workingDir, IProcessCallback* cb)
{
SECURITY_ATTRIBUTES saAttr;
BOOL fSuccess;
MyDirGuard dg;
wxString wd(workingDir);
if (workingDir.IsEmpty()) {
wd = wxGetCwd();
}
wxSetWorkingDirectory( wd );
// Set the bInheritHandle flag so pipe handles are inherited.
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
saAttr.bInheritHandle = TRUE;
saAttr.lpSecurityDescriptor = NULL;
WinProcessImpl *prc = new WinProcessImpl(parent);
prc->LinkCallback( cb );
prc->m_flags = flags;
// The steps for redirecting child process's STDOUT:
// 1. Save current STDOUT, to be restored later.
// 2. Create anonymous pipe to be STDOUT for child process.
// 3. Set STDOUT of the parent process to be write handle to
// the pipe, so it is inherited by the child process.
// 4. Create a noninheritable duplicate of the read handle and
// close the inheritable read handle.
// Save the handle to the current STDOUT.
prc->hSaveStdout = GetStdHandle(STD_OUTPUT_HANDLE);
// Create a pipe for the child process's STDOUT.
if ( !CreatePipe( &prc->hChildStdoutRd, &prc->hChildStdoutWr, &saAttr, 0) ) {
delete prc;
return NULL;
}
// Set a write handle to the pipe to be STDOUT.
if ( !SetStdHandle(STD_OUTPUT_HANDLE, prc->hChildStdoutWr) ) {
delete prc;
return NULL;
}
// Create noninheritable read handle and close the inheritable read handle.
fSuccess = DuplicateHandle( GetCurrentProcess(), prc->hChildStdoutRd,
GetCurrentProcess(), &prc->hChildStdoutRdDup ,
0, FALSE,
DUPLICATE_SAME_ACCESS );
if ( !fSuccess ) {
delete prc;
return NULL;
}
CloseHandle( prc->hChildStdoutRd );
// The steps for redirecting child process's STDERR:
// 1. Save current STDERR, to be restored later.
// 2. Create anonymous pipe to be STDERR for child process.
// 3. Set STDERR of the parent process to be write handle to
// the pipe, so it is inherited by the child process.
// 4. Create a noninheritable duplicate of the read handle and
// close the inheritable read handle.
// Save the handle to the current STDERR.
prc->hSaveStderr = GetStdHandle(STD_ERROR_HANDLE);
// Create a pipe for the child process's STDERR.
if ( !CreatePipe( &prc->hChildStderrRd, &prc->hChildStderrWr, &saAttr, 0) ) {
delete prc;
return NULL;
}
// Set a write handle to the pipe to be STDERR.
if ( !SetStdHandle(STD_ERROR_HANDLE, prc->hChildStderrWr) ) {
delete prc;
return NULL;
}
// Create noninheritable read handle and close the inheritable read handle.
fSuccess = DuplicateHandle( GetCurrentProcess(), prc->hChildStderrRd,
GetCurrentProcess(), &prc->hChildStderrRdDup ,
0, FALSE,
DUPLICATE_SAME_ACCESS );
if ( !fSuccess ) {
delete prc;
return NULL;
}
CloseHandle( prc->hChildStderrRd );
// The steps for redirecting child process's STDIN:
// 1. Save current STDIN, to be restored later.
// 2. Create anonymous pipe to be STDIN for child process.
// 3. Set STDIN of the parent to be the read handle to the
// pipe, so it is inherited by the child process.
// 4. Create a noninheritable duplicate of the write handle,
// and close the inheritable write handle.
// Save the handle to the current STDIN.
prc->hSaveStdin = GetStdHandle(STD_INPUT_HANDLE);
// Create a pipe for the child process's STDIN.
if ( !CreatePipe(&prc->hChildStdinRd, &prc->hChildStdinWr, &saAttr, 0) ) {
delete prc;
return NULL;
}
// Set a read handle to the pipe to be STDIN.
if ( !SetStdHandle(STD_INPUT_HANDLE, prc->hChildStdinRd) ) {
delete prc;
return NULL;
}
// Duplicate the write handle to the pipe so it is not inherited.
fSuccess = DuplicateHandle(GetCurrentProcess(), prc->hChildStdinWr,
GetCurrentProcess(), &prc->hChildStdinWrDup,
0, FALSE, // not inherited
DUPLICATE_SAME_ACCESS );
if ( !fSuccess ) {
delete prc;
return NULL;
}
CloseHandle(prc->hChildStdinWr);
// Execute the child process
STARTUPINFO siStartInfo;
// Set up members of STARTUPINFO structure.
ZeroMemory( &siStartInfo, sizeof(STARTUPINFO) );
siStartInfo.cb = sizeof(STARTUPINFO);
siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; ;
siStartInfo.hStdInput = prc->hChildStdinRd;
siStartInfo.hStdOutput = prc->hChildStdoutWr;
siStartInfo.hStdError = prc->hChildStderrWr;
// Set the window to hide
siStartInfo.wShowWindow = flags & IProcessCreateConsole ? SW_SHOW : SW_HIDE;
DWORD creationFlags = flags & IProcessCreateConsole ? CREATE_NEW_CONSOLE : CREATE_NO_WINDOW;
if(flags & IProcessCreateWithHiddenConsole) {
siStartInfo.wShowWindow = SW_HIDE;
creationFlags = CREATE_NEW_CONSOLE|CREATE_NEW_PROCESS_GROUP;
}
BOOL ret = CreateProcess( NULL,
cmd.wchar_str(), // shell line execution command
NULL, // process security attributes
NULL, // primary thread security attributes
TRUE, // handles are inherited
creationFlags, // creation flags
NULL, // use parent's environment
NULL, // CD to tmp dir
&siStartInfo, // STARTUPINFO pointer
&prc->piProcInfo); // receives PROCESS_INFORMATION
if ( ret ) {
prc->dwProcessId = prc->piProcInfo.dwProcessId;
} else {
int err = GetLastError();
wxUnusedVar(err);
delete prc;
return NULL;
}
// After process creation, restore the saved STDIN and STDOUT.
if ( !SetStdHandle(STD_INPUT_HANDLE, prc->hSaveStdin) ) {
delete prc;
return NULL;
}
if ( !SetStdHandle(STD_OUTPUT_HANDLE, prc->hSaveStdout) ) {
delete prc;
return NULL;
}
if ( !SetStdHandle(STD_OUTPUT_HANDLE, prc->hSaveStderr) ) {
delete prc;
return NULL;
}
if ( prc->m_flags & IProcessCreateConsole || prc->m_flags & IProcessCreateWithHiddenConsole ) {
ConsoleAttacher ca(prc->GetPid());
if ( ca.isAttached ) {
freopen("CONOUT$","wb", stdout); // reopen stout handle as console window output
freopen("CONOUT$","wb", stderr); // reopen stderr handle as console window output
}
}
prc->SetPid( prc->dwProcessId );
prc->StartReaderThread();
return prc;
}
WinProcessImpl::WinProcessImpl(wxEvtHandler *parent)
: IProcess(parent)
, m_thr (NULL )
{
hChildStdinRd = NULL;
hChildStdinWrDup = NULL;
hChildStdoutWr = NULL;
hChildStdoutRdDup = NULL;
hChildStderrWr = NULL;
hChildStderrRdDup = NULL;
piProcInfo.hProcess = NULL;
piProcInfo.hThread = NULL;
}
WinProcessImpl::~WinProcessImpl()
{
Cleanup();
}
bool WinProcessImpl::Read(wxString& buff)
{
DWORD le1(-1);
DWORD le2(-1);
buff.Clear();
if( !DoReadFromPipe(hChildStderrRdDup, buff) ) {
le2 = GetLastError();
}
if( !DoReadFromPipe(hChildStdoutRdDup, buff) ) {
le1 = GetLastError();
}
if( le1 == ERROR_NO_DATA && le2 == ERROR_NO_DATA) {
if ( IsAlive() ) {
wxThread::Sleep(15);
return true;
}
}
bool success = !buff.IsEmpty();
if(!success) {
DWORD dwExitCode;
if (GetExitCodeProcess(piProcInfo.hProcess, &dwExitCode)) {
SetProcessExitCode(GetPid(), (int)dwExitCode);
}
}
return success;
}
bool WinProcessImpl::Write(const wxString& buff)
{
DWORD dwMode;
DWORD dwTimeout;
wxUnusedVar(dwTimeout);
char chBuf[4097];
wxString tmpCmd = buff;
tmpCmd = tmpCmd.Trim().Trim(false);
tmpCmd += wxT("\r\n");
strcpy(chBuf, tmpCmd.mb_str());
// Make the pipe to non-blocking mode
dwMode = PIPE_READMODE_BYTE | PIPE_NOWAIT;
dwTimeout = 30000;
SetNamedPipeHandleState(hChildStdinWrDup,
&dwMode,
NULL,
NULL); // Timeout of 30 seconds
DWORD dwWritten;
if (!WriteFile(hChildStdinWrDup, chBuf, (unsigned long)strlen(chBuf), &dwWritten, NULL))
return false;
return true;
}
bool WinProcessImpl::IsAlive()
{
DWORD dwExitCode;
if (GetExitCodeProcess(piProcInfo.hProcess, &dwExitCode)) {
if (dwExitCode == STILL_ACTIVE)
return true;
}
return false;
}
void WinProcessImpl::Cleanup()
{
// Under windows, the reader thread is detached
if ( m_thr ) {
// Stop the reader thread
m_thr->Stop();
delete m_thr;
}
m_thr = NULL;
// terminate the process
if (IsAlive()) {
std::map<unsigned long, bool> tree;
ProcUtils::GetProcTree(tree, GetPid());
std::map<unsigned long, bool>::iterator iter = tree.begin();
for(; iter != tree.end(); iter++) {
wxKillError rc;
wxKill(iter->first, wxSIGKILL, &rc);
}
TerminateProcess(piProcInfo.hProcess, 255);
}
CloseHandle( hChildStdinRd);
CloseHandle( hChildStdinWrDup );
CloseHandle( hChildStdoutWr);
CloseHandle( hChildStdoutRdDup );
CloseHandle( hChildStderrWr);
CloseHandle( hChildStderrRdDup );
CloseHandle( piProcInfo.hProcess );
CloseHandle( piProcInfo.hThread );
hChildStdinRd = NULL;
hChildStdoutWr = NULL;
hChildStdinWrDup = NULL;
hChildStdoutRdDup = NULL;
hChildStderrWr = NULL;
hChildStderrRdDup = NULL;
piProcInfo.hProcess = NULL;
piProcInfo.hThread = NULL;
}
void WinProcessImpl::StartReaderThread()
{
// Launch the 'Reader' thread
m_thr = new ProcessReaderThread();
m_thr->SetProcess( this );
m_thr->SetNotifyWindow( m_parent );
m_thr->Start();
}
bool WinProcessImpl::DoReadFromPipe(HANDLE pipe, wxString& buff)
{
DWORD dwRead;
DWORD dwMode;
DWORD dwTimeout;
memset(m_buffer, 0, sizeof(m_buffer));
// Make the pipe to non-blocking mode
dwMode = PIPE_READMODE_BYTE | PIPE_NOWAIT;
dwTimeout = 1000;
SetNamedPipeHandleState(pipe,
&dwMode,
NULL,
&dwTimeout);
BOOL bRes = ReadFile( pipe, m_buffer, 65536, &dwRead, NULL);
if ( bRes ) {
wxString tmpBuff;
// Success read
m_buffer[dwRead/sizeof(char)] = 0;
tmpBuff = wxString(m_buffer, wxConvUTF8);
if (tmpBuff.IsEmpty() && dwRead > 0) {
//conversion failed
tmpBuff = wxString::From8BitData(m_buffer);
}
buff << tmpBuff;
return true;
}
return false;
}
void WinProcessImpl::Terminate()
{
// terminate the process
if (IsAlive()) {
std::map<unsigned long, bool> tree;
ProcUtils::GetProcTree(tree, GetPid());
std::map<unsigned long, bool>::iterator iter = tree.begin();
for(; iter != tree.end(); iter++) {
wxKillError rc;
wxKill(iter->first, wxSIGKILL, &rc);
}
TerminateProcess(piProcInfo.hProcess, 255);
}
}
bool WinProcessImpl::WriteToConsole(const wxString& buff)
{
wxString pass(buff);
pass.Trim().Trim(false);
// To write password, we need to attach to the child process console
if( !(m_flags & (IProcessCreateWithHiddenConsole | IProcessCreateConsole)) )
return false;
ConsoleAttacher ca(GetPid());
if(ca.isAttached == false)
return false;
HANDLE hStdIn = ::CreateFile(L"CONIN$",
GENERIC_WRITE | GENERIC_READ,
FILE_SHARE_READ | FILE_SHARE_WRITE,
NULL,
OPEN_EXISTING,
0,
0);
if(hStdIn == INVALID_HANDLE_VALUE) {
return false;
}
pass += wxT("\r\n");
wxSharedPtr<INPUT_RECORD> pKeyEvents(new INPUT_RECORD[pass.Len()]);
for(size_t i=0; i<pass.Len(); i++) {
(pKeyEvents.get())[i].EventType = KEY_EVENT;
(pKeyEvents.get())[i].Event.KeyEvent.bKeyDown = TRUE;
(pKeyEvents.get())[i].Event.KeyEvent.wRepeatCount = 1;
(pKeyEvents.get())[i].Event.KeyEvent.wVirtualKeyCode = LOBYTE(::VkKeyScan(pass[i]));
(pKeyEvents.get())[i].Event.KeyEvent.wVirtualScanCode = 0;
(pKeyEvents.get())[i].Event.KeyEvent.uChar.UnicodeChar = pass[i];
(pKeyEvents.get())[i].Event.KeyEvent.dwControlKeyState = 0;
}
DWORD dwTextWritten;
if(::WriteConsoleInput(hStdIn,
pKeyEvents.get(),
pass.Len(),
&dwTextWritten) == FALSE) {
CloseHandle(hStdIn);
return false;
}
CloseHandle(hStdIn);
return true;
}
#endif //__WXMSW__