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 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
|
/* -*- linux-c -*-
*
* mainloop - stapio main loop
*
* This file is part of systemtap, and is free software. You can
* redistribute it and/or modify it under the terms of the GNU General
* Public License (GPL); either version 2, or (at your option) any
* later version.
*
* Copyright (C) 2005-2010 Red Hat Inc.
*/
#include "staprun.h"
#include <sys/utsname.h>
#include <sys/ptrace.h>
#include <sys/select.h>
#include <search.h>
#include <wordexp.h>
#define WORKAROUND_BZ467568 1 /* PR 6964; XXX: autoconf when able */
/* globals */
int ncpus;
static int use_old_transport = 0;
static int pending_interrupts = 0;
static int target_pid_failed_p = 0;
/* Setup by setup_main_signals, used by signal_thread to notify the
main thread of interruptable events. */
static pthread_t main_thread;
static void *signal_thread(void *arg)
{
sigset_t *s = (sigset_t *) arg;
int signum = 0;
while (1) {
if (sigwait(s, &signum) < 0) {
_perr("sigwait");
continue;
}
dbug(2, "sigproc %d (%s)\n", signum, strsignal(signum));
if (signum == SIGQUIT) {
pending_interrupts += 2;
break;
} else if (signum == SIGINT || signum == SIGHUP || signum == SIGTERM) {
pending_interrupts ++;
break;
}
}
/* Notify main thread (interrupts select). */
pthread_kill (main_thread, SIGURG);
return NULL;
}
static void urg_proc(int signum)
{
/* This handler is just notified from the signal_thread
whenever an interruptable condition is detected. The
handler itself doesn't do anything. But this will
result select to detect an EINTR event. */
dbug(2, "urg_proc %d (%s)\n", signum, strsignal(signum));
}
static void chld_proc(int signum)
{
int32_t rc, btype = STP_EXIT;
int chld_stat = 0;
dbug(2, "chld_proc %d (%s)\n", signum, strsignal(signum));
pid_t pid = waitpid(-1, &chld_stat, WNOHANG);
if (pid != target_pid) {
return;
}
if (chld_stat) {
// our child exited with a non-zero status
if (WIFSIGNALED(chld_stat)) {
err(_("Warning: child process exited with signal %d (%s)\n"),
WTERMSIG(chld_stat), strsignal(WTERMSIG(chld_stat)));
target_pid_failed_p = 1;
}
if (WIFEXITED(chld_stat) && WEXITSTATUS(chld_stat)) {
err(_("Warning: child process exited with status %d\n"),
WEXITSTATUS(chld_stat));
target_pid_failed_p = 1;
}
}
rc = write(control_channel, &btype, sizeof(btype)); // send STP_EXIT
(void) rc; /* XXX: notused */
}
#if WORKAROUND_BZ467568
/* When a SIGUSR1 signal arrives, set this variable. */
volatile sig_atomic_t usr1_interrupt = 0;
static void signal_usr1(int signum)
{
(void) signum;
usr1_interrupt = 1;
}
#endif /* WORKAROUND_BZ467568 */
static void setup_main_signals(void)
{
pthread_t tid;
struct sigaction sa;
sigset_t *s = malloc(sizeof(*s));
if (!s) {
_perr("malloc failed");
exit(1);
}
/* The main thread will only handle SIGCHLD and SIGURG.
SIGURG is send from the signal thread in case the interrupt
flag is set. This will then interrupt any select call. */
main_thread = pthread_self();
sigfillset(s);
pthread_sigmask(SIG_SETMASK, s, NULL);
memset(&sa, 0, sizeof(sa));
/* select will report EINTR even when SA_RESTART is set. */
sa.sa_flags = SA_RESTART;
sigfillset(&sa.sa_mask);
/* Ignore all these events on the main thread. */
sa.sa_handler = SIG_IGN;
sigaction(SIGINT, &sa, NULL);
sigaction(SIGTERM, &sa, NULL);
sigaction(SIGHUP, &sa, NULL);
sigaction(SIGQUIT, &sa, NULL);
/* This is to notify when our child process (-c) ends. */
sa.sa_handler = chld_proc;
sigaction(SIGCHLD, &sa, NULL);
/* This signal handler is notified from the signal_thread
whenever a interruptable event is detected. It will
result in an EINTR event for select or sleep. */
sa.sa_handler = urg_proc;
sigaction(SIGURG, &sa, NULL);
/* Everything else is handled on a special signal_thread. */
sigemptyset(s);
sigaddset(s, SIGINT);
sigaddset(s, SIGTERM);
sigaddset(s, SIGHUP);
sigaddset(s, SIGQUIT);
pthread_sigmask(SIG_SETMASK, s, NULL);
if (pthread_create(&tid, NULL, signal_thread, s) < 0) {
_perr(_("failed to create thread"));
exit(1);
}
}
/*
* start_cmd forks the command given on the command line with the "-c"
* option. It will wait just at the cusp of the exec until we get the
* signal from the kernel to let it run. We do it this way because we
* must have the pid of the forked command so it can be set to the
* module and made available internally as _stp_target. PTRACE_DETACH
* is sent from stp_main_loop() below when it receives STP_START from
* the module.
*/
void start_cmd(void)
{
pid_t pid;
struct sigaction a;
#if WORKAROUND_BZ467568
struct sigaction usr1_action, old_action;
sigset_t blockmask, oldmask;
#endif /* WORKAROUND_BZ467568 */
/* if we are execing a target cmd, ignore ^C in stapio */
/* and let the target cmd get it. */
memset(&a, 0, sizeof(a));
sigemptyset(&a.sa_mask);
a.sa_flags = 0;
a.sa_handler = SIG_IGN;
sigaction(SIGINT, &a, NULL);
#if WORKAROUND_BZ467568
/* Set up the mask of signals to temporarily block. */
sigemptyset (&blockmask);
sigaddset (&blockmask, SIGUSR1);
/* Establish the SIGUSR1 signal handler. */
memset(&usr1_action, 0, sizeof(usr1_action));
sigfillset (&usr1_action.sa_mask);
usr1_action.sa_flags = 0;
usr1_action.sa_handler = signal_usr1;
sigaction (SIGUSR1, &usr1_action, &old_action);
/* Block SIGUSR1 */
sigprocmask(SIG_BLOCK, &blockmask, &oldmask);
#endif /* WORKAROUND_BZ467568 */
if ((pid = fork()) < 0) {
_perr("fork");
exit(1);
} else if (pid == 0) {
/* We're in the target process. Let's start the execve of target_cmd, */
int rc;
wordexp_t words;
char *sh_c_argv[4] = { NULL, NULL, NULL, NULL };
a.sa_handler = SIG_DFL;
sigaction(SIGINT, &a, NULL);
/* Formerly, we just execl'd(sh,-c,$target_cmd). But this does't
work well if target_cmd is a shell builtin. We really want to
probe a new child process, not a mishmash of shell-interpreted
stuff. */
rc = wordexp (target_cmd, & words, WRDE_NOCMD|WRDE_UNDEF);
if (rc == WRDE_BADCHAR)
{
/* The user must have used a shell metacharacter, thinking that
we use system(3) to evaluate 'stap -c CMD'. We could generate
an error message ... but let's just do what the user meant.
rhbz 467652. */
sh_c_argv[0] = "sh";
sh_c_argv[1] = "-c";
sh_c_argv[2] = target_cmd;
sh_c_argv[3] = NULL;
}
else
{
switch (rc)
{
case 0:
break;
case WRDE_SYNTAX:
_err (_("wordexp: syntax error (unmatched quotes?) in -c COMMAND\n"));
_exit(1);
default:
_err (_("wordexp: parsing error (%d)\n"), rc);
_exit (1);
}
if (words.we_wordc < 1) { _err ("empty -c COMMAND"); _exit (1); }
}
/* PR 6964: when tracing all the user space process including the
child the signal will be messed due to uprobe module or utrace
bug. The kernel sometimes crashes. So as an alternative
approximation, we just wait here for a signal from the parent. */
dbug(1, "blocking briefly\n");
#if WORKAROUND_BZ467568
{
/* Wait for the SIGUSR1 */
while (!usr1_interrupt)
sigsuspend(&oldmask);
/* Restore the old SIGUSR1 signal handler. */
sigaction (SIGUSR1, &old_action, NULL);
/* Restore the original signal mask */
sigprocmask(SIG_SETMASK, &oldmask, NULL);
}
#else /* !WORKAROUND_BZ467568 */
rc = ptrace (PTRACE_TRACEME, 0, 0, 0);
if (rc < 0) perror ("ptrace me");
raise (SIGCONT); /* Harmless; just passes control to parent. */
#endif /* !WORKAROUND_BZ467568 */
dbug(1, "execing target_cmd %s\n", target_cmd);
/* Note that execvp() is not a direct system call; it does a $PATH
search in glibc. We would like to filter out these dummy syscalls
from the utrace events seen by scripts.
This filtering would be done for us for free, if we used ptrace
... but see PR6964. XXX: Instead, we could open-code the
$PATH search here; put the pause() afterward; and run a direct
execve instead of execvp(). */
if (execvp ((sh_c_argv[0] == NULL ? words.we_wordv[0] : sh_c_argv[0]),
(sh_c_argv[0] == NULL ? words.we_wordv : sh_c_argv)) < 0)
perror(target_cmd);
/* (There is no need to wordfree() words; they are or will be gone.) */
_exit(1);
} else {
/* We're in the parent. The child will parse target_cmd and
execv() the result. It will be stopped thereabouts and send us
a SIGTRAP. Or rather, due to PR 6964, it will stop itself and wait for
us to release it. */
target_pid = pid;
#if WORKAROUND_BZ467568
/* Restore the old SIGUSR1 signal handler. */
sigaction (SIGUSR1, &old_action, NULL);
/* Restore the original signal mask */
sigprocmask(SIG_SETMASK, &oldmask, NULL);
#else /* !WORKAROUND_BZ467568 */
int status;
waitpid (target_pid, &status, 0);
dbug(1, "waited for target_cmd %s pid %d status %x\n", target_cmd, target_pid, (unsigned) status);
#endif /* !WORKAROUND_BZ467568 */
}
}
/**
* system_cmd() executes system commands in response
* to an STP_SYSTEM message from the module. These
* messages are sent by the system() systemtap function.
*/
void system_cmd(char *cmd)
{
pid_t pid;
dbug(2, "system %s\n", cmd);
if ((pid = fork()) < 0) {
_perr("fork");
} else if (pid == 0) {
if (execlp("sh", "sh", "-c", cmd, NULL) < 0)
perr("%s", cmd);
_exit(1);
}
}
/* This is only used in the old relayfs code */
static void read_buffer_info(void)
{
char buf[PATH_MAX];
struct statfs st;
int fd, len, ret;
if (!use_old_transport)
return;
if (statfs("/sys/kernel/debug", &st) == 0 && (int)st.f_type == (int)DEBUGFS_MAGIC)
return;
if (sprintf_chk(buf, "/proc/systemtap/%s/bufsize", modname))
return;
fd = open(buf, O_RDONLY);
if (fd < 0)
return;
len = read(fd, buf, sizeof(buf));
if (len <= 0) {
perr(_("Couldn't read bufsize"));
close(fd);
return;
}
ret = sscanf(buf, "%u,%u", &n_subbufs, &subbuf_size);
if (ret != 2)
perr(_("Couldn't read bufsize"));
dbug(2, "n_subbufs= %u, size=%u\n", n_subbufs, subbuf_size);
close(fd);
return;
}
/**
* init_stapio - initialize the app
* @print_summary: boolean, print summary or not at end of run
*
* Returns 0 on success, negative otherwise.
*/
int init_stapio(void)
{
dbug(2, "init_stapio\n");
/* create control channel */
use_old_transport = init_ctl_channel(modname, 1);
if (use_old_transport < 0) {
err(_("Failed to initialize control channel.\n"));
return -1;
}
read_buffer_info();
if (attach_mod) {
dbug(2, "Attaching\n");
if (use_old_transport) {
if (init_oldrelayfs() < 0) {
close_ctl_channel();
return -1;
}
} else {
if (init_relayfs() < 0) {
close_ctl_channel();
return -1;
}
}
return 0;
}
/* fork target_cmd if requested. */
/* It will not actually exec until signalled. */
if (target_cmd)
start_cmd();
/* Run in background */
if (daemon_mode) {
pid_t pid;
int ret;
dbug(2, "daemonizing stapio\n");
/* daemonize */
ret = daemon(0, 1); /* don't close stdout at this time. */
if (ret) {
err(_("Failed to daemonize stapio\n"));
return -1;
}
/* change error messages to syslog. */
switch_syslog("stapio");
/* show new pid */
pid = getpid();
fprintf(stdout, "%d\n", pid);
fflush(stdout);
/* redirect all outputs to /dev/null */
ret = open("/dev/null", O_RDWR);
if (ret < 0) {
err(_("Failed to open /dev/null\n"));
return -1;
}
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
dup2(ret, STDOUT_FILENO);
dup2(ret, STDERR_FILENO);
close(ret);
}
return 0;
}
/* cleanup_and_exit() closed channels, frees memory,
* removes the module (if necessary) and exits. */
void cleanup_and_exit(int detach, int rc)
{
static int exiting = 0;
const char *staprun;
pid_t pid;
int rstatus;
struct sigaction sa;
if (exiting)
return;
exiting = 1;
setup_main_signals();
dbug(1, "detach=%d\n", detach);
/* NB: We don't really need to wait for child processes. Any that
were started by the system() tapset function (system_cmd() above)
can run loose. Or, a target_cmd (stap -c CMD) may have already started and
stopped. */
/* OTOH, it may be still be running - but there's no need for
us to wait for it, considering that the script must have exited
for another reason. So, we no longer while(...wait()...); here.
XXX: we could consider killing it. */
if (use_old_transport)
close_oldrelayfs(detach);
else
close_relayfs();
dbug(1, "closing control channel\n");
close_ctl_channel();
if (detach) {
err(_("\nDisconnecting from systemtap module.\n" "To reconnect, type \"staprun -A %s\"\n"), modname);
_exit(0);
}
else if (rename_mod)
dbug(2, "\nRenamed module to: %s\n", modname);
/* At this point, we're committed to calling staprun -d MODULE to
* unload the thing and exit. */
/* Due to PR9788, we fork and exec the setuid staprun only in a child process. */
staprun = getenv ("SYSTEMTAP_STAPRUN") ?: BINDIR "/staprun";
dbug(2, "removing %s\n", modname);
// So that waitpid() below will work correctly, we need to clear
// out our SIGCHLD handler.
memset(&sa, 0, sizeof(sa));
sigemptyset(&sa.sa_mask);
sa.sa_flags = 0;
sa.sa_handler = SIG_DFL;
sigaction(SIGCHLD, &sa, NULL);
pid = fork();
if (pid < 0) {
_perr("fork");
_exit(-1);
}
if (pid == 0) { /* child process */
/* Run the command. */
char *cmd;
int rc = asprintf(&cmd, "%s %s %s -d '%s'", staprun,
(verbose >= 1) ? "-v" : "",
(verbose >= 2) ? "-v" : "",
modname);
if (rc >= 1) {
execlp("sh", "sh", "-c", cmd, NULL);
/* should not return */
perror(staprun);
_exit(-1);
} else {
perror("asprintf");
_exit(-1);
}
}
/* parent process */
if (waitpid(pid, &rstatus, 0) < 0) {
_perr("waitpid");
_exit(-1);
}
if (WIFEXITED(rstatus)) {
if(rc || target_pid_failed_p || rstatus) // if we have an error
_exit(1);
else
_exit(0); //success
}
_exit(-1);
}
/**
* stp_main_loop - loop forever reading data
*/
int stp_main_loop(void)
{
ssize_t nb;
FILE *ofp = stdout;
struct
{
uint32_t type;
union
{
char data[8192];
struct _stp_msg_start start;
struct _stp_msg_cmd cmd;
} payload;
} recvbuf;
int error_detected = 0;
int select_supported;
int flags;
int res;
int rc;
struct timeval tv;
fd_set fds;
sigset_t blockset, mainset;
setvbuf(ofp, (char *)NULL, _IONBF, 0);
setup_main_signals();
dbug(2, "in main loop\n");
rc = send_request(STP_READY, NULL, 0);
if (rc != 0) {
perror ("Unable to send STP_READY");
cleanup_and_exit (1, rc);
}
flags = fcntl(control_channel, F_GETFL);
/* Make select return immediately. We just check whether
there is an exception available on the control_channel,
which is how we know the module supports select. */
tv.tv_sec = 0;
tv.tv_usec = 0;
FD_ZERO(&fds);
FD_SET(control_channel, &fds);
res = select(control_channel + 1, NULL, NULL, &fds, &tv);
select_supported = (res == 1 && FD_ISSET(control_channel, &fds));
dbug(2, "select_supported: %d\n", select_supported);
if (select_supported) {
/* We block SIGURG to the main thread, except when we call
pselect(). This makes sure we won't miss any signals. All other
calls are non-blocking, so we defer till pselect() time, which
is when we are "sleeping". */
sigemptyset(&blockset);
sigaddset(&blockset, SIGURG);
pthread_sigmask(SIG_BLOCK, &blockset, &mainset);
}
/* handle messages from control channel */
while (1) {
if (pending_interrupts) {
int btype = STP_EXIT;
int rc = write(control_channel, &btype, sizeof(btype));
dbug(2, "signal-triggered %d exit rc %d\n", pending_interrupts, rc);
if (pending_interrupts >= 2) {
cleanup_and_exit (1, 0);
}
}
/* If the runtime does not implement select() on the command
filehandle, we have to poll periodically. The polling interval can
be relatively large, since we don't receive EAGAIN during the
time-sensitive startup period (packets go back-to-back). */
flags |= O_NONBLOCK;
fcntl(control_channel, F_SETFL, flags);
nb = read(control_channel, &recvbuf, sizeof(recvbuf));
flags &= ~O_NONBLOCK;
fcntl(control_channel, F_SETFL, flags);
dbug(3, "nb=%ld\n", (long)nb);
if (nb < (ssize_t) sizeof(recvbuf.type)) {
if (nb >= 0 || (errno != EINTR && errno != EAGAIN)) {
_perr(_("Unexpected EOF in read (nb=%ld)"), (long)nb);
cleanup_and_exit(0, 1);
}
if (!select_supported) {
dbug(4, "sleeping\n");
usleep (250*1000); /* sleep 250ms between polls */
} else {
FD_ZERO(&fds);
FD_SET(control_channel, &fds);
res = pselect(control_channel + 1, &fds, NULL, NULL, NULL, &mainset);
if (res < 0 && errno != EINTR)
{
_perr(_("Unexpected error in select"));
cleanup_and_exit(0, 1);
}
}
continue;
}
nb -= sizeof(recvbuf.type);
PROBE3(staprun, recv__ctlmsg, recvbuf.type, recvbuf.payload.data, nb);
switch (recvbuf.type) {
#if STP_TRANSPORT_VERSION == 1
case STP_REALTIME_DATA:
if (write_realtime_data(recvbuf.payload.data, nb)) {
_perr(_("write error (nb=%ld)"), (long)nb);
cleanup_and_exit(0, 1);
}
break;
#endif
case STP_OOB_DATA:
/* Note that "WARNING:" should not be translated, since it is
* part of the module cmd protocol. */
if (strncmp(recvbuf.payload.data, "WARNING:", 7) == 0) {
if (suppress_warnings) break;
if (verbose) { /* don't eliminate duplicates */
eprintf("%.*s", (int) nb, recvbuf.payload.data);
break;
} else { /* eliminate duplicates */
static void *seen = 0;
static unsigned seen_count = 0;
char *dupstr = strndup (recvbuf.payload.data, (int) nb);
char *retval;
if (! dupstr) {
/* OOM, should not happen. */
eprintf("%.*s", (int) nb, recvbuf.payload.data);
break;
}
retval = tfind (dupstr, & seen, (int (*)(const void*, const void*))strcmp);
if (! retval) { /* new message */
eprintf("%s", dupstr);
/* We set a maximum for stored warning messages,
to prevent a misbehaving script/environment
from emitting countless _stp_warn()s, and
overflow staprun's memory. */
#define MAX_STORED_WARNINGS 1024
if (seen_count++ == MAX_STORED_WARNINGS) {
eprintf(_("WARNING deduplication table full\n"));
free (dupstr);
}
else if (seen_count > MAX_STORED_WARNINGS) {
/* Be quiet in the future, but stop counting to
preclude overflow. */
free (dupstr);
seen_count = MAX_STORED_WARNINGS+1;
}
else if (seen_count < MAX_STORED_WARNINGS) {
/* NB: don't free dupstr; it's going into the tree. */
retval = tsearch (dupstr, & seen,
(int (*)(const void*, const void*))strcmp);
if (retval == 0) {
/* OOM, should not happen */
/* Next time we should get the 'full' message. */
free (dupstr);
seen_count = MAX_STORED_WARNINGS;
}
}
} else { /* old message */
free (dupstr);
}
} /* duplicate elimination */
/* Note that "ERROR:" should not be translated, since it is
* part of the module cmd protocol. */
} else if (strncmp(recvbuf.payload.data, "ERROR:", 5) == 0) {
eprintf("%.*s", (int) nb, recvbuf.payload.data);
error_detected = 1;
} else { /* neither warning nor error */
eprintf("%.*s", (int) nb, recvbuf.payload.data);
}
break;
case STP_EXIT:
{
/* module asks us to unload it and exit */
dbug(2, "got STP_EXIT\n");
cleanup_and_exit(0, error_detected);
break;
}
case STP_REQUEST_EXIT:
{
/* module asks us to start exiting, so send STP_EXIT */
dbug(2, "got STP_REQUEST_EXIT\n");
int32_t rc, btype = STP_EXIT;
rc = write(control_channel, &btype, sizeof(btype));
(void) rc; /* XXX: notused */
break;
}
case STP_START:
{
struct _stp_msg_start *t = &recvbuf.payload.start;
dbug(2, "systemtap_module_init() returned %d\n", t->res);
if (t->res < 0) {
if (target_cmd)
kill(target_pid, SIGKILL);
cleanup_and_exit(0, 1);
} else if (target_cmd) {
dbug(1, "detaching pid %d\n", target_pid);
#if WORKAROUND_BZ467568
/* Let's just send our pet signal to the child
process that should be waiting for us, mid-pause(). */
kill (target_pid, SIGUSR1);
#else
/* Were it not for PR6964, we'd like to do it this way: */
int rc = ptrace (PTRACE_DETACH, target_pid, 0, 0);
if (rc < 0)
{
perror (_("ptrace detach"));
if (target_cmd)
kill(target_pid, SIGKILL);
cleanup_and_exit(0, 1);
}
#endif
}
break;
}
case STP_SYSTEM:
{
struct _stp_msg_cmd *c = &recvbuf.payload.cmd;
dbug(2, "STP_SYSTEM: %s\n", c->cmd);
system_cmd(c->cmd);
break;
}
case STP_TRANSPORT:
{
struct _stp_msg_start ts;
if (use_old_transport) {
if (init_oldrelayfs() < 0)
cleanup_and_exit(0, 1);
} else {
if (init_relayfs() < 0)
cleanup_and_exit(0, 1);
}
ts.target = target_pid;
rc = send_request(STP_START, &ts, sizeof(ts));
if (rc != 0) {
perror ("Unable to send STP_START");
cleanup_and_exit (1, rc);
}
if (load_only)
cleanup_and_exit(1, 0);
break;
}
default:
err(_("WARNING: ignored message of type %d\n"), recvbuf.type);
}
}
fclose(ofp);
return 0;
}
|