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 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
|
/* sb2-monitor:
*
* This is used to wrap the commands started by the "sb2" script,
* wait for results, and then start a log analyzer to print out
* statistics after the command has finished.
*
* Basically, this starts the command as a child process,
* waits until the command completes (relaying signals to the child)
* and finally calls an external script.
*
* In practise, it is easy to say that this "relays signals" but
* implementing that requires some tricks - see comments below.
* Also note that a signal proxy is not possible with 100%
* accuracy due to process groups and other oddities that have been
* "built in" to the signal system. All of this can be described as
* yet another best-effort game..
*
*
* Copyright (c) 2008 Nokia Corporation. All rights reserved.
* Author: Lauri T. Aarnio
* Licensed under LGPL version 2.1, see top level LICENSE file for details.
*/
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <dirent.h>
#include <config.h>
#ifdef __APPLE__
#include <signal.h>
#endif
static pid_t child_pid;
static pid_t original_process_group;
static pid_t new_process_group;
static int debug = 0;
static const char *progname;
#define DEBUG_MSG(...) \
do { \
if (debug) { \
fprintf(stderr, "%s [pid=%d]:", progname, getpid()); \
fprintf(stderr, __VA_ARGS__); \
} \
} while(0)
static void usage_exit(const char *errmsg, int exitstatus)
{
if (errmsg)
fprintf(stderr, "%s: Error: %s\n", progname, errmsg);
fprintf(stderr,
"\n%s: Usage:\n"
"\t%s [options_for_%s] -- [envvar=val [...]] command [parameters]\n"
"\nOptions:\n"
"\t-x program\tExecute 'program' after 'command' terminates\n"
"\t-d\tEnable debug messages\n"
"\t-L lib\tAdd 'lib' to LD_PRELOAD\n"
"\t-e envdir\tRead additional environment variables from 'envdir'\n"
"\t-g\tcreate a session and new process group by calling setsid()\n"
"\t-G pgrpfile\tappend process group ID to 'pgrpfile'\n"
"\nExample:\n"
"\t%s -x /bin/echo -- signaltester -n 5\n",
progname, progname, progname, progname);
exit(exitstatus);
}
static void set_process_group(pid_t new_pgrp)
{
int r;
r = setpgid(0, new_pgrp);
DEBUG_MSG("set pgid to %d %s\n", (int)new_pgrp,
r < 0 ? "(failed)" : "(succeeded)");
if (r < 0) {
DEBUG_MSG("err: %s\n", strerror(errno));
}
}
/* Signal handler, which relays the signal sent by kill() or sigqueue()
* to the child process.
*
* this is a bit tricky since we are trying to act as an accurate
* signal bridge: There are some signals that are usually generated
* by an execeptional condition (like SIGILL, SIGFPE and SIGSEGV),
* signals that originate from timers, etc.
* But it is still possible that these signal numbers are sent by another
* user process - although not recommended, it is possible to recycle
* those those signal numbers for something else -
* so we'll have to check how the signal was sent before deciding
* what to do.
*/
static void signal_handler(int sig, siginfo_t *info, void *ptr)
{
(void)ptr; /* unused param */
DEBUG_MSG("Got signal %d (si_errno=%d,si_code=%d)\n",
sig, info->si_errno, info->si_code);
switch (sig) {
case SIGILL: case SIGFPE: case SIGSEGV:
if ((info->si_code != SI_USER) &&
(info->si_code != SI_QUEUE)) {
/* OOPS, the signal is a real, fatal, deadly
* that must not be ignored. */
DEBUG_MSG("Deadly signal\n");
exit(250);
}
/* else it is user-generated signal */
break;
case SIGCHLD:
if (info->si_code == CLD_STOPPED) {
DEBUG_MSG("SIGCHLD: CLD_STOPPED\n");
/* Job control needs special processing. Here the
* child has been stopped - stop ourselves, too.
* Now this is where things really get complicated:
* when the child process needs to continue, it
* it usually waked with SIGCONT, which gets sent
* to the process group. But this wrapper is currently
* in a different process group...so process groups
* must be changed back to the original value before
* stopping ourselves..the story continues below..
*/
set_process_group(original_process_group);
raise(SIGSTOP);
return;
} else {
DEBUG_MSG("SIGCHLD: other\n");
}
break;
case SIGCONT:
/* ...need to continue. When this process was stopped,
* the process group was changed (above) and now it needs
* to be changed again away from the process group that
* is used by child_pid.
*/
DEBUG_MSG("SIGCONT\n");
set_process_group(new_process_group);
break;
}
if (info->si_code == SI_QUEUE) {
DEBUG_MSG("signal %d => sending it to %d by sigqueue\n",
sig, (int)child_pid);
#ifndef __APPLE__
sigqueue(child_pid, sig, info->si_value);
#else
kill(child_pid, sig);
#endif
} else if (info->si_code == SI_USER) {
DEBUG_MSG("signal %d => sending it to %d by kill\n",
sig, (int)child_pid);
kill(child_pid, sig);
} else {
DEBUG_MSG("signal %d: si_code is %d, ignored\n",
sig, info->si_code);
}
}
static void initialize_signal_handler(int sig)
{
struct sigaction act;
memset(&act, 0, sizeof(act));
act.sa_sigaction = signal_handler;
act.sa_flags = SA_SIGINFO;
/* block all other signals while this signal is being processed
* (to avoid accidental reordering of signals)
*/
sigfillset(&act.sa_mask);
sigaction(sig, &act, NULL);
}
/* Set up signal handlers for all signals that can be caught. */
static void catch_all_signals(void)
{
/* order here tries to follows the numerical order of signals
* on Linux (see signal(7)) and Mac OS X (see signal(2))
*/
initialize_signal_handler(SIGHUP); /* 1 */
initialize_signal_handler(SIGINT);
initialize_signal_handler(SIGQUIT);
initialize_signal_handler(SIGILL);
initialize_signal_handler(SIGTRAP); /* 5 */
initialize_signal_handler(SIGABRT);
#ifdef SIGIOT /* old name for SIGABRT */
initialize_signal_handler(SIGIOT);
#endif
#ifdef SIGEMT
initialize_signal_handler(SIGEMT);
#endif
initialize_signal_handler(SIGFPE);
/* SIGKILL, 9, cannot be caught or ignored */
initialize_signal_handler(SIGBUS);
initialize_signal_handler(SIGSEGV); /* 11 */
initialize_signal_handler(SIGSYS);
initialize_signal_handler(SIGPIPE);
initialize_signal_handler(SIGALRM);
initialize_signal_handler(SIGTERM); /* 15 */
initialize_signal_handler(SIGURG);
/* SIGSTOP, 17, cannot be caught or ignored */
initialize_signal_handler(SIGTSTP);
initialize_signal_handler(SIGCONT);
initialize_signal_handler(SIGCHLD); /* 20 */
initialize_signal_handler(SIGTTIN);
initialize_signal_handler(SIGTTOU);
initialize_signal_handler(SIGIO);
initialize_signal_handler(SIGXCPU);
initialize_signal_handler(SIGXFSZ); /* 25 */
initialize_signal_handler(SIGVTALRM);
initialize_signal_handler(SIGPROF);
initialize_signal_handler(SIGWINCH);
#ifdef SIGPWR
initialize_signal_handler(SIGPWR);
#endif
#ifdef SIGLOST
initialize_signal_handler(SIGLOST);
#endif
#ifdef SIGINFO
initialize_signal_handler(SIGINFO);
#endif
initialize_signal_handler(SIGUSR1);
initialize_signal_handler(SIGUSR2);
#ifdef SIGTHR
initialize_signal_handler(SIGTHR);
#endif
}
static void read_env_vars_from_dir(const char *envdir)
{
DIR *ed;
DEBUG_MSG("read_env_vars_from_dir(%s)\n", envdir);
ed = opendir(envdir);
if (ed) {
while(1) {
struct dirent *ent;
FILE *fl;
char *fullfilename;
ent = readdir(ed);
if (!ent) break;
/* skip everything that begins with a dot */
if (ent->d_name[0] == '.') continue;
if (asprintf(&fullfilename, "%s/%s", envdir, ent->d_name) < 0) {
/* asprintf failed */
continue;
}
DEBUG_MSG("open(%s)\n", fullfilename);
fl = fopen(fullfilename, "r");
if (fl) {
char varbuf[2048];
size_t len;
len = fread(varbuf, sizeof(char), sizeof(varbuf), fl);
if (len < sizeof(varbuf)) {
if(len > 0) {
varbuf[len-1] = '\0'; /* replace \n */
DEBUG_MSG("set '%s'\n", varbuf);
putenv(strdup(varbuf));
} else {
DEBUG_MSG("unset '%s'\n", ent->d_name);
unsetenv(ent->d_name);
}
} else {
fprintf(stderr, "Warning: value of target-specific "
"env.var '%s' is too big (not used)\n",
ent->d_name);
}
fclose(fl);
}
free(fullfilename);
}
closedir(ed);
}
}
int main(int argc, char *argv[])
{
int status;
int child2_to_master_pipe_fds[2];
int master_to_child2_pipe_fds[2];
char ch;
char *command_to_exec_at_end = NULL;
int opt;
char *exit_reason;
char exit_status[100];
int new_stdin;
char *sbox_libsb2 = NULL;
int resultcode;
char *envdir = NULL;
int new_session = 0;
char *pgrpfile = NULL;
progname = argv[0];
while ((opt = getopt(argc, argv, "L:x:dhe:gG:")) != -1) {
switch (opt) {
case 'L': sbox_libsb2 = optarg; break;
case 'h': usage_exit(NULL, 0); break;
case 'd': debug = 1; break;
case 'x': command_to_exec_at_end = optarg; break;
case 'e': envdir = optarg; break;
case 'g': new_session = 1; break;
case 'G': pgrpfile = optarg; break;
default: usage_exit("Illegal option", 1); break;
}
}
if (optind >= argc)
usage_exit("Wrong number of parameters", 1);
if (new_session) {
if (setsid() < 0) {
fprintf(stderr,
"%s: failed to create a new session (setsid() failed)\n", progname);
}
}
original_process_group = getpgrp();
if (pgrpfile) {
FILE *pfile;
if ((pfile = fopen(pgrpfile, "a")) == NULL) {
fprintf(stderr,
"%s: failed to open %s\n", progname, pgrpfile);
} else {
fprintf(pfile, "%d\n", (int)original_process_group);
fclose(pfile);
}
}
DEBUG_MSG("PGID=%d\n", (int)getpgrp());
/* create a child process which will execute the command. */
child_pid = fork();
switch (child_pid) {
case -1: /* fork failed */
usage_exit("fork failed", 1);
break;
case 0: /* child - the worker process */
/* child remains in the original process group.. */
DEBUG_MSG("child started\n");
/* set LD_PRELOAD, so that the binary started by execvp()
* will be running in sb2'ed environment (depending on
* the mapping mode & rules, it might not be possible
* to execute 'sb2-monitor' in that environment)
*/
if (sbox_libsb2) {
char *old_ld_preload = getenv("LD_PRELOAD");
char *new_ld_preload = NULL;
if (old_ld_preload) {
char *p_libsb2 = strstr(old_ld_preload,
sbox_libsb2);
DEBUG_MSG("child: LD_PRELOAD was '%s'\n",
old_ld_preload);
if (!p_libsb2) {
/* LD_PRELOAD is defined, but libsb2
* was not included. Add it now. */
if (asprintf(&new_ld_preload, "%s:%s",
old_ld_preload, sbox_libsb2) < 0) {
fprintf(stderr,
"%s: asprintf failed\n",
progname);
exit(1);
}
} /* else libsb2 seems to be already included */
} else {
/* LD_PRELOAD was not set. */
DEBUG_MSG("child: no previous LD_PRELOAD\n");
new_ld_preload = sbox_libsb2;
}
if (new_ld_preload) {
/* need to set/modify LD_PRELOAD */
DEBUG_MSG("child: setting LD_PRELOAD to '%s'\n",
new_ld_preload);
setenv("LD_PRELOAD", new_ld_preload, 1);
}
} else {
DEBUG_MSG("child: WARNING: "
"no '-L lib' option => LD_PRELOAD not set\n");
}
if (envdir) {
read_env_vars_from_dir(envdir);
}
while (argv[optind] && strchr(argv[optind], '=')) {
DEBUG_MSG("child: putenv(%s)\n", argv[optind]);
putenv(strdup(argv[optind]));
optind++;
}
if (argv[optind]) {
int i;
DEBUG_MSG("child, exec:\n");
for (i=optind; argv[i]; i++) {
DEBUG_MSG("[%d]='%s'\n", i, argv[i]);
}
execvp(argv[optind], argv+optind);
}
DEBUG_MSG("child: exec failed\n");
exit(1);
}
/* parent - the signal relay process */
/* close unnecessary file descriptors, and reopen stdin and stdout */
fclose(stdin); /* fd 0 */
fclose(stdout); /* fd 1 */
/* stderr = fd 2 = left open and duplicated to stdout: */
dup2(2, 1);
new_stdin = open("/dev/null", O_RDONLY);
if (new_stdin < 0) usage_exit("failed to open /dev/null", 1);
if (new_stdin != 0) dup2(new_stdin, 0);
/* FIXME: Maybe we should close all fds >= 3 here, but Linux does
* not seem to have any easy way to do so (no F_CLOSEM, no closefrom(),
* no fdwalk() that are available in other systems (solaris, etc)
*/
/* The process group must be changed.
* failing to do so would duplicate all signals sent to the process
* group, because there doesn't seem to be any way to detect if
* the signal signal was sent to a process group or directly to
* the process itself => this program just forwards all signals..
*
* Note that the PID of this process is very likely already in use as
* a process group (for example, if "sb2" was started from a shell,
* the shell has usually created a new process group using the PID
* of the new process), so we'll have to create a new PGID. A safe way
* is to create another child process, and use that as the new PGID.
*
* N.B. When the process group has been changed, this process won't
* be able to receive keyboard-generated signals (intr,tstp,..) anymore.
*/
if (pipe(child2_to_master_pipe_fds) < 0) usage_exit("pipe() failed", 1);
if (pipe(master_to_child2_pipe_fds) < 0) usage_exit("pipe() failed", 1);
new_process_group = fork();
switch (new_process_group) {
case -1:
/* ARGH! fork should not fail, not now.
* can't do anything else than fail completely */
kill(SIGTERM, child_pid);
usage_exit("fork failed", 1);
break;
case 0:
/* the second child. Sit and wait for input that
* never arrives - purpose of the pipe is only to keep
* the PID reserved until the parent dies.
*/
DEBUG_MSG("2nd child\n");
#ifdef __APPLE__
setpgrp(0, 0); /* change process group to
* avoid signals*/
#else
setpgrp();
#endif
close(child2_to_master_pipe_fds[0]); /* close R-end */
close(master_to_child2_pipe_fds[1]); /* close W-end */
/* process group has been created and changed,
* let the parent continue by writing a byte. */
if (write(child2_to_master_pipe_fds[1], "a", 1) == 1) {
while (read(master_to_child2_pipe_fds[0], &ch, 1) > 0);
}
DEBUG_MSG("2nd child: done\n");
exit(0);
}
close(child2_to_master_pipe_fds[1]); /* close W-end */
/* syncronize: read one byte from the second child.
* This ensures that new_process_group has been created
* by the 2nd child before this process continues; if
* we wouldn't syncronize, set_process_group() (below)
* may be executed before the 2nd child executes setpgrp(0,0)
* => setpgid() fails inside set_process_group().
*/
if (read(child2_to_master_pipe_fds[0], &ch, 1) < 1) {
DEBUG_MSG("failed fo synchronize with the 2nd child\n");
}
/* close R-end of the pipe. After this there is no need to
* do anything considering the second child, it will die away
* when the parent process dies and the W-end of the pipe is
* closed automatically.
*/
close(master_to_child2_pipe_fds[0]);
set_process_group(new_process_group); /* finally, change process group! */
/* now catch all signals that are sent to this PID,
* but since the process group was just changed, this won't catch
* those signals that were sent to that process group being used by
* the first child.
*/
catch_all_signals();
errno = 0;
/* wait until the worker child has finished. */
while ((waitpid(child_pid, &status, 0) == -1) &&
(errno == EINTR)) {
DEBUG_MSG("parent: EINTR\n");
errno = 0;
}
DEBUG_MSG("parent: child returned\n");
/* determine reason why it exited, to be forwarded to the
* report generator
*/
if (WIFEXITED(status)) {
exit_reason = "exit";
resultcode = WEXITSTATUS(status);
snprintf(exit_status, sizeof(exit_status), "%d",
resultcode);
} else if (WIFSIGNALED(status)) {
exit_reason = "signal";
resultcode = 1;
snprintf(exit_status, sizeof(exit_status), "%d%s",
WTERMSIG(status),
(WCOREDUMP(status) ? " (core dumped)" : ""));
} else {
/* this should not be possible */
exit_reason = "UNKNOWN";
*exit_status = '\0';
resultcode = 1;
}
DEBUG_MSG("%s %s\n", exit_reason, exit_status);
if (command_to_exec_at_end) {
/* time to exec the external script */
execlp(command_to_exec_at_end, command_to_exec_at_end,
exit_reason, exit_status, NULL);
/* OOPS, exec failed */
DEBUG_MSG("Failed to execute %s\n", command_to_exec_at_end);
exit(1);
}
exit(resultcode);
}
|