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
|
/**
* @file llprocess.cpp
* @brief Utility class for launching, terminating, and tracking the state of processes.
*
* $LicenseInfo:firstyear=2008&license=viewerlgpl$
* Second Life Viewer Source Code
* Copyright (C) 2010, Linden Research, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License only.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
* $/LicenseInfo$
*/
#include "linden_common.h"
#include "llprocess.h"
#include "llsdserialize.h"
#include "llsingleton.h"
#include "llstring.h"
#include "stringize.h"
#include <boost/foreach.hpp>
#include <iostream>
#include <stdexcept>
/// Need an exception to avoid constructing an invalid LLProcess object, but
/// internal use only
struct LLProcessError: public std::runtime_error
{
LLProcessError(const std::string& msg): std::runtime_error(msg) {}
};
LLProcessPtr LLProcess::create(const LLSDOrParams& params)
{
try
{
return LLProcessPtr(new LLProcess(params));
}
catch (const LLProcessError& e)
{
LL_WARNS("LLProcess") << e.what() << LL_ENDL;
return LLProcessPtr();
}
}
LLProcess::LLProcess(const LLSDOrParams& params):
mProcessID(0),
mProcessHandle(0),
mAutokill(params.autokill)
{
if (! params.validateBlock(true))
{
throw LLProcessError(STRINGIZE("not launched: failed parameter validation\n"
<< LLSDNotationStreamer(params)));
}
launch(params);
}
LLProcess::~LLProcess()
{
if (mAutokill)
{
kill();
}
}
bool LLProcess::isRunning(void)
{
mProcessHandle = isRunning(mProcessHandle, mDesc);
return (mProcessHandle != 0);
}
LLProcess::id LLProcess::getProcessID() const
{
return mProcessID;
}
LLProcess::handle LLProcess::getProcessHandle() const
{
return mProcessHandle;
}
std::ostream& operator<<(std::ostream& out, const LLProcess::Params& params)
{
std::string cwd(params.cwd);
if (! cwd.empty())
{
out << "cd " << LLStringUtil::quote(cwd) << ": ";
}
out << LLStringUtil::quote(params.executable);
BOOST_FOREACH(const std::string& arg, params.args)
{
out << ' ' << LLStringUtil::quote(arg);
}
return out;
}
/*****************************************************************************
* Windows specific
*****************************************************************************/
#if LL_WINDOWS
static std::string WindowsErrorString(const std::string& operation);
/**
* Wrap a Windows Job Object for use in managing child-process lifespan.
*
* On Windows, we use a Job Object to constrain the lifespan of any
* autokill=true child process to the viewer's own lifespan:
* http://stackoverflow.com/questions/53208/how-do-i-automatically-destroy-child-processes-in-windows
* (thanks Richard!).
*
* We manage it using an LLSingleton for a couple of reasons:
*
* # Lazy initialization: if some viewer session never launches a child
* process, we should never have to create a Job Object.
* # Cross-DLL support: be wary of C++ statics when multiple DLLs are
* involved.
*/
class LLJob: public LLSingleton<LLJob>
{
public:
void assignProcess(const std::string& prog, LLProcess::handle hProcess)
{
// If we never managed to initialize this Job Object, can't use it --
// but don't keep spamming the log, we already emitted warnings when
// we first tried to create.
if (! mJob)
return;
if (! AssignProcessToJobObject(mJob, hProcess))
{
LL_WARNS("LLProcess") << WindowsErrorString(STRINGIZE("AssignProcessToJobObject("
<< prog << ")")) << LL_ENDL;
}
}
private:
friend class LLSingleton<LLJob>;
LLJob():
mJob(0)
{
mJob = CreateJobObject(NULL, NULL);
if (! mJob)
{
LL_WARNS("LLProcess") << WindowsErrorString("CreateJobObject()") << LL_ENDL;
return;
}
JOBOBJECT_EXTENDED_LIMIT_INFORMATION jeli = { 0 };
// Configure all child processes associated with this new job object
// to terminate when the calling process (us!) terminates.
jeli.BasicLimitInformation.LimitFlags = JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE;
if (! SetInformationJobObject(mJob, JobObjectExtendedLimitInformation, &jeli, sizeof(jeli)))
{
LL_WARNS("LLProcess") << WindowsErrorString("SetInformationJobObject()") << LL_ENDL;
// This Job Object is useless to us
CloseHandle(mJob);
// prevent assignProcess() from trying to use it
mJob = 0;
}
}
LLProcess::handle mJob;
};
void LLProcess::launch(const LLSDOrParams& params)
{
PROCESS_INFORMATION pinfo;
STARTUPINFOA sinfo = { sizeof(sinfo) };
// LLProcess::create()'s caller passes a Unix-style array of strings for
// command-line arguments. Our caller can and should expect that these will be
// passed to the child process as individual arguments, regardless of content
// (e.g. embedded spaces). But because Windows invokes any child process with
// a single command-line string, this means we must quote each argument behind
// the scenes.
std::string args = LLStringUtil::quote(params.executable);
BOOST_FOREACH(const std::string& arg, params.args)
{
args += " ";
args += LLStringUtil::quote(arg);
}
// So retarded. Windows requires that the second parameter to
// CreateProcessA be a writable (non-const) string...
std::vector<char> args2(args.begin(), args.end());
args2.push_back('\0');
// Convert wrapper to a real std::string so we can use c_str(); but use a
// named variable instead of a temporary so c_str() pointer remains valid.
std::string cwd(params.cwd);
const char * working_directory = 0;
if (! cwd.empty())
working_directory = cwd.c_str();
// It's important to pass CREATE_BREAKAWAY_FROM_JOB because Windows 7 et
// al. tend to implicitly launch new processes already bound to a job. From
// http://msdn.microsoft.com/en-us/library/windows/desktop/ms681949%28v=vs.85%29.aspx :
// "The process must not already be assigned to a job; if it is, the
// function fails with ERROR_ACCESS_DENIED." ...
// "If the process is being monitored by the Program Compatibility
// Assistant (PCA), it is placed into a compatibility job. Therefore, the
// process must be created using CREATE_BREAKAWAY_FROM_JOB before it can
// be placed in another job."
if( ! CreateProcessA(NULL, // lpApplicationName
&args2[0], // lpCommandLine
NULL, // lpProcessAttributes
NULL, // lpThreadAttributes
FALSE, // bInheritHandles
CREATE_BREAKAWAY_FROM_JOB, // dwCreationFlags
NULL, // lpEnvironment
working_directory, // lpCurrentDirectory
&sinfo, // lpStartupInfo
&pinfo ) ) // lpProcessInformation
{
throw LLProcessError(WindowsErrorString("CreateProcessA"));
}
// CloseHandle(pinfo.hProcess); // stops leaks - nothing else
mProcessID = pinfo.dwProcessId;
mProcessHandle = pinfo.hProcess;
CloseHandle(pinfo.hThread); // stops leaks - nothing else
mDesc = STRINGIZE(LLStringUtil::quote(params.executable) << " (" << mProcessID << ')');
LL_INFOS("LLProcess") << "Launched " << params << " (" << mProcessID << ")" << LL_ENDL;
// Now associate the new child process with our Job Object -- unless
// autokill is false, i.e. caller asserts the child should persist.
if (params.autokill)
{
LLJob::instance().assignProcess(mDesc, mProcessHandle);
}
}
LLProcess::handle LLProcess::isRunning(handle h, const std::string& desc)
{
if (! h)
return 0;
DWORD waitresult = WaitForSingleObject(h, 0);
if(waitresult == WAIT_OBJECT_0)
{
// the process has completed.
if (! desc.empty())
{
LL_INFOS("LLProcess") << desc << " terminated" << LL_ENDL;
}
return 0;
}
return h;
}
bool LLProcess::kill(void)
{
if (! mProcessHandle)
return false;
LL_INFOS("LLProcess") << "killing " << mDesc << LL_ENDL;
TerminateProcess(mProcessHandle, 0);
return ! isRunning();
}
/// GetLastError()/FormatMessage() boilerplate
static std::string WindowsErrorString(const std::string& operation)
{
int result = GetLastError();
LPTSTR error_str = 0;
if (FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
NULL,
result,
0,
(LPTSTR)&error_str,
0,
NULL)
!= 0)
{
// convert from wide-char string to multi-byte string
char message[256];
wcstombs(message, error_str, sizeof(message));
message[sizeof(message)-1] = 0;
LocalFree(error_str);
// convert to std::string to trim trailing whitespace
std::string mbsstr(message);
mbsstr.erase(mbsstr.find_last_not_of(" \t\r\n"));
return STRINGIZE(operation << " failed (" << result << "): " << mbsstr);
}
return STRINGIZE(operation << " failed (" << result
<< "), but FormatMessage() did not explain");
}
/*****************************************************************************
* Posix specific
*****************************************************************************/
#else // Mac and linux
#include <signal.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/wait.h>
// Attempt to reap a process ID -- returns true if the process has exited and been reaped, false otherwise.
static bool reap_pid(pid_t pid)
{
pid_t wait_result = ::waitpid(pid, NULL, WNOHANG);
if (wait_result == pid)
{
return true;
}
if (wait_result == -1 && errno == ECHILD)
{
// No such process -- this may mean we're ignoring SIGCHILD.
return true;
}
return false;
}
void LLProcess::launch(const LLSDOrParams& params)
{
// flush all buffers before the child inherits them
::fflush(NULL);
pid_t child = vfork();
if (child == 0)
{
// child process
std::string cwd(params.cwd);
if (! cwd.empty())
{
// change to the desired child working directory
if (::chdir(cwd.c_str()))
{
// chdir failed
LL_WARNS("LLProcess") << "could not chdir(\"" << cwd << "\")" << LL_ENDL;
// pointless to throw; this is child process...
_exit(248);
}
}
// create an argv vector for the child process
std::vector<const char*> fake_argv;
// add the executable path
std::string executable(params.executable);
fake_argv.push_back(executable.c_str());
// and any arguments
std::vector<std::string> args(params.args.begin(), params.args.end());
BOOST_FOREACH(const std::string& arg, args)
{
fake_argv.push_back(arg.c_str());
}
// terminate with a null pointer
fake_argv.push_back(NULL);
::execv(executable.c_str(), const_cast<char* const*>(&fake_argv[0]));
// If we reach this point, the exec failed.
LL_WARNS("LLProcess") << "failed to launch: ";
BOOST_FOREACH(const char* arg, fake_argv)
{
LL_CONT << arg << ' ';
}
LL_CONT << LL_ENDL;
// Use _exit() instead of exit() per the vfork man page. Exit with a
// distinctive rc: someday soon we'll be able to retrieve it, and it
// would be nice to be able to tell that the child process failed!
_exit(249);
}
// parent process
mProcessID = child;
mProcessHandle = child;
mDesc = STRINGIZE(LLStringUtil::quote(params.executable) << " (" << mProcessID << ')');
LL_INFOS("LLProcess") << "Launched " << params << " (" << mProcessID << ")" << LL_ENDL;
}
LLProcess::id LLProcess::isRunning(id pid, const std::string& desc)
{
if (! pid)
return 0;
// Check whether the process has exited, and reap it if it has.
if(reap_pid(pid))
{
// the process has exited.
if (! desc.empty())
{
LL_INFOS("LLProcess") << desc << " terminated" << LL_ENDL;
}
return 0;
}
return pid;
}
bool LLProcess::kill(void)
{
if (! mProcessID)
return false;
// Try to kill the process. We'll do approximately the same thing whether
// the kill returns an error or not, so we ignore the result.
LL_INFOS("LLProcess") << "killing " << mDesc << LL_ENDL;
(void)::kill(mProcessID, SIGTERM);
// This will have the side-effect of reaping the zombie if the process has exited.
return ! isRunning();
}
/*==========================================================================*|
static std::list<pid_t> sZombies;
void LLProcess::orphan(void)
{
// Disassociate the process from this object
if(mProcessID != 0)
{
// We may still need to reap the process's zombie eventually
sZombies.push_back(mProcessID);
mProcessID = 0;
}
}
// static
void LLProcess::reap(void)
{
// Attempt to real all saved process ID's.
std::list<pid_t>::iterator iter = sZombies.begin();
while(iter != sZombies.end())
{
if(reap_pid(*iter))
{
iter = sZombies.erase(iter);
}
else
{
iter++;
}
}
}
|*==========================================================================*/
#endif // Posix
|