-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathSpawner.cpp
481 lines (399 loc) · 12.1 KB
/
Spawner.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
#include "Spawner.hpp"
#include <base/Time.hpp>
#include <unistd.h>
#include <stdexcept>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <boost/lexical_cast.hpp>
#include <boost/filesystem.hpp>
#include "CorbaNameService.hpp"
#include <lib_config/Bundle.hpp>
#include <signal.h>
#include <backward/backward.hpp>
#include <rtt/transports/corba/TaskContextProxy.hpp>
#include <base-logging/Logging.hpp>
using namespace orocos_cpp;
using namespace libConfig;
struct sigaction originalSignalHandler[SIGTERM + 1];
backward::SignalHandling sh;
void shutdownHandler(int signum, siginfo_t *info, void *data);
void restoreSignalHandler(int signum)
{
if(sigaction(signum, originalSignalHandler + signum, nullptr))
{
throw std::runtime_error("Error, failed to reregister original signal handler");
}
}
void setSignalHandler(int signum)
{
struct sigaction act;
act.sa_sigaction = shutdownHandler;
/* The SA_SIGINFO flag tells sigaction() to use the sa_sigaction field, not sa_handler. */
act.sa_flags = SA_SIGINFO;
if(sigaction(signum, &act, originalSignalHandler + signum))
{
throw std::runtime_error("Error, failed to register signal handler");
}
}
void shutdownHandler(int signum, siginfo_t *info, void *data)
{
LOG_INFO_S << "Shutdown: trying to kill all childs";
try {
Spawner::getInstace().killAll();
LOG_INFO_S << "Done ";
} catch (...)
{
LOG_ERROR_S << "Error, during killall";
}
restoreSignalHandler(signum);
raise(signum);
}
Spawner::Spawner()
{
nameService = new CorbaNameService();
nameService->connect();
setSignalHandler(SIGINT);
setSignalHandler(SIGQUIT);
setSignalHandler(SIGABRT);
setSignalHandler(SIGSEGV);
setSignalHandler(SIGTERM);
}
Spawner& Spawner::getInstace()
{
static Spawner *instance = nullptr;
if(!instance)
{
instance = new Spawner();
}
return *instance;
}
Spawner::ProcessHandle::ProcessHandle(Deployment *deployment, bool redirectOutputv, const std::string &logDir, std::string textLogFileName) : isRunning(true), deployment(deployment)
{
std::string cmd;
std::vector< std::string > args;
if(!deployment->getExecString(cmd, args))
throw std::runtime_error("Error, could not get parameters to start deployment " + deployment->getName() );
pid = fork();
if(pid < 0)
{
throw std::runtime_error("Fork Failed");
}
//we are the parent
if(pid != 0)
{
if (setpgid(pid, pid) < 0 && errno != EACCES)
{
throw std::runtime_error("Spawner : ProcessHandle: Parent : Error changing process group of child");
}
processName = deployment->getName();
return;
}
if(setpgid(0, 0))
{
throw std::runtime_error("Spawner : ProcessHandle: Child : Error could not change process group");
}
if (textLogFileName.empty())
{
processName = deployment->getName();
textLogFileName = processName + "-" + boost::lexical_cast<std::string>(getpid());
}
//child, redirect output
if(redirectOutputv)
{
//check if directory exists, and create if not
if(!boost::filesystem::exists(logDir))
{
throw std::runtime_error("Error, log directory '" + logDir + "' does not exist, but it should !");
}
redirectOutput(logDir + "/" + textLogFileName + ".txt");
}
//set ORO_LOGFILE so the new deployment logs to its own orocos.log file
if(setenv("ORO_LOGFILE", (logDir + "/" + textLogFileName + "-orocos.log").c_str(), true) != 0)
{
LOG_WARN_S << "Could not set ORO_LOGFILE environment variable";
}
//do the exec
char * argv[args.size() + 2];
argv[0] = const_cast<char *>(cmd.c_str());
argv[args.size() +1] = nullptr;
for(size_t i = 0; i < args.size(); i++)
{
argv[i + 1] = const_cast<char *>(args[i].c_str());
}
std::stringstream ss;
ss << "Executing ";
for(const std::string& arg : args){
ss << arg << " ";
}
LOG_INFO_S << ss.str();
execvp(cmd.c_str(), argv);
//failure case
LOG_ERROR_S << "Start of " << cmd << " failed:" << strerror(errno);
throw std::runtime_error(std::string("Start of ") + cmd + " failed:" + strerror(errno));
exit(EXIT_FAILURE);
}
bool Spawner::ProcessHandle::alive() const
{
//if it was already determined before that the process is already dead,
//we can stop here. Otherwise waitpid would fail!
if(!isRunning){
return isRunning;
}
int status = 0;
pid_t ret = waitpid(pid, &status, WNOHANG);
//waitpid(): on success, returns the process ID of the child whose state has
//changed; if WNOHANG was specified and one or more child(ren) specified by
//pid exist, but have not yet changed state, then 0 is returned.
//On error, -1 is returned.
if(ret == -1 )
{
throw std::runtime_error(std::string("WaitPid failed ") + strerror(errno));
}
else if(ret == 0){
//Not yet terminated, but also no error.. so it's still alive
LOG_DEBUG_S << "Process " << pid << " is still running";
return isRunning;
}
else if(ret == pid){
//Its terminated. Check for status.
if(WIFEXITED(status))
{
int exitStatus = WEXITSTATUS(status);
LOG_INFO_S << "Process " << pid << " terminated normaly, return code " << exitStatus;
isRunning = false;
}
if(WIFSIGNALED(status))
{
isRunning = false;
int sigNum = WTERMSIG(status);
if(sigNum == SIGSEGV)
{
LOG_WARN_S << "Process " << processName << " segfaulted ";
}
else
{
LOG_INFO_S << "Process " << processName << " was terminated by SIG " << sigNum;
}
}
}
else{
std::runtime_error("waitpid returned unexpected return value "+std::to_string(ret));
}
return isRunning;
}
const Deployment& Spawner::ProcessHandle::getDeployment() const
{
return *deployment;
}
void Spawner::ProcessHandle::sendSigKill() const
{
if(kill(pid, SIGKILL))
{
LOG_ERROR_S << "Error sending of SIGKILL to pid " << pid << " failed:" << strerror(errno);
}
}
void Spawner::ProcessHandle::sendSigInt() const
{
if(kill(pid, SIGINT))
{
LOG_ERROR_S << "Error sending of SIGINT to pid " << pid << " failed:" << strerror(errno);
}
}
void Spawner::ProcessHandle::sendSigTerm() const
{
if(kill(pid, SIGTERM))
{
LOG_ERROR_S << "Error sending of SIGTERM to pid " << pid << " failed:" << strerror(errno);
}
}
Spawner::ProcessHandle &Spawner::spawnTask(const std::string& cmp1, const std::string& as, bool redirectOutput)
{
Deployment *dpl = new Deployment(cmp1, as);
return spawnDeployment(dpl, redirectOutput);
}
Spawner::ProcessHandle& Spawner::spawnDeployment(Deployment* deployment, bool redirectOutput, const std::string textLogFileName)
{
if(redirectOutput && logDir.empty())
{
//log dir always exists if requested from bundle
logDir = Bundle::getInstance().getLogDirectory();
}
ProcessHandle *handle = new ProcessHandle(deployment, redirectOutput, logDir, textLogFileName);
handles.push_back(handle);
for(const std::string &task: deployment->getTaskNames())
{
notReadyList.push_back(task);
}
return *handle;
}
Spawner::ProcessHandle& Spawner::spawnDeployment(const std::string& dplName, bool redirectOutput, const std::string textLogFileName)
{
Deployment *deployment = new Deployment(dplName);
return spawnDeployment(deployment, redirectOutput, textLogFileName);
}
bool Spawner::checkAllProcesses()
{
bool allOk = true;
for(ProcessHandle *handle : handles)
{
if(!handle->alive())
{
allOk = false;
//we do not break here, so that we can
//collect signals from any other process
}
}
return allOk;
}
bool Spawner::allReady()
{
auto it = notReadyList.begin();
for(;it != notReadyList.end(); it++)
{
if(nameService->isRegistered(*it))
{
it = notReadyList.erase(it);
}
if(it == notReadyList.end())
break;
}
return notReadyList.empty();
}
void Spawner::waitUntilAllReady(const base::Time& timeout)
{
base::Time start = base::Time::now();
while(!allReady())
{
usleep(10000);
if(base::Time::now() - start > timeout)
{
std::stringstream ss;
ss << "Spawner::waitUntilAllReady: Error the tasks :\n";
for(const std::string &name: notReadyList)
{
ss << " " << name << "\n";
}
ss << "did not register at nameservice";
LOG_ERROR_S << ss.str();
killAll();
throw std::runtime_error("Spawner::waitUntilAllReady: Error timeout while waiting for tasks to register at nameservice");
}
}
}
void Spawner::killAll()
{
//first we try to stop and cleanup the processes
//ask all processes to terminate
for(ProcessHandle *handle : handles)
{
for(const std::string &tName: handle->getDeployment().getTaskNames())
{
try {
LOG_DEBUG_S << "Trying to stop task " << tName;
RTT::corba::TaskContextProxy *proxy = RTT::corba::TaskContextProxy::Create(tName, false);
if(proxy && proxy->isRunning())
proxy->stop();
}
catch (...)
{
//don't care, we want to shut down anyways
}
}
}
//ask all processes to terminate
for(ProcessHandle *handle : handles)
{
if(handle->alive())
{
//we send a sigint here, as this should trigger a clean shutdown
handle->sendSigInt();
}
}
base::Time waitTime = base::Time::fromMilliseconds(100);
base::Time startTime = base::Time::now();
bool allDead = false;
//wait until they terminated
while(!allDead && base::Time::now() - startTime < waitTime)
{
allDead = false;
for(ProcessHandle *handle : handles)
{
if(handle->alive())
{
allDead = true;
}
}
}
//someone just won't terminate... send sigkill
if(!allDead)
{
for(ProcessHandle *handle : handles)
{
if(handle->alive())
{
handle->sendSigKill();
}
}
}
}
void Spawner::sendSigTerm()
{
//ask all processes to terminate
for(ProcessHandle *handle : handles)
{
handle->sendSigTerm();
}
}
void Spawner::ProcessHandle::redirectOutput(const std::string& filename)
{
int newFd = open(filename.c_str(), O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
if(!newFd)
{
LOG_WARN_S << "Error, could not redirect cout to " << filename;
return;
}
if(dup2(newFd, fileno(stdout)) == -1)
{
LOG_WARN_S << "Error, could not redirect cout to " << filename;
return;
}
if(dup2(newFd, fileno(stderr)) == -1)
{
LOG_WARN_S << "Error, could not redirect cerr to " << filename;
return;
}
close(newFd);
}
std::vector< const Deployment* > Spawner::getRunningDeployments()
{
std::vector< const Deployment* > ret;
ret.reserve(handles.size());
for(ProcessHandle *handle: handles)
{
ret.push_back(&(handle->getDeployment()));
}
return ret;
}
bool Spawner::isRunning(const Deployment* instance)
{
for(ProcessHandle *handle: handles)
{
if(&(handle->getDeployment()) == instance)
{
return true;
}
}
return false;
}
void Spawner::setLogDirectory(const std::string& log_folder)
{
logDir = log_folder;
}