Blame SOURCES/gdb-orphanripper.c

861f93
/*
861f93
 * Copyright 2006-2007 Free Software Foundation, Inc.
861f93
 *
861f93
 * This program is free software; you can redistribute it and/or modify
861f93
 * it under the terms of the GNU General Public License as published by
861f93
 * the Free Software Foundation; either version 2 of the License, or
861f93
 * (at your option) any later version.
861f93
 *
861f93
 * This program is distributed in the hope that it will be useful,
861f93
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
861f93
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
861f93
 * GNU General Public License for more details.
861f93
 *
861f93
 * You should have received a copy of the GNU General Public License
861f93
 * along with this program; if not, write to the Free Software
861f93
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
861f93
 *
861f93
 * Reap any leftover children possibly holding file descriptors.
861f93
 * Children are identified by the stale file descriptor or PGID / SID.
861f93
 * Both can be missed but only the stale file descriptors are important for us.
861f93
 * PGID / SID may be set by the children on their own.
861f93
 * If we fine a candidate we kill it will all its process tree (grandchildren).
861f93
 * The child process is run with `2>&1' redirection (due to forkpty(3)).
861f93
 * 2007-07-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
861f93
 */
861f93
861f93
/* For getpgid(2).  */
861f93
#define _GNU_SOURCE 1
861f93
861f93
#include <stdio.h>
861f93
#include <stdlib.h>
861f93
#include <sys/types.h>
861f93
#include <sys/wait.h>
861f93
#include <dirent.h>
861f93
#include <unistd.h>
861f93
#include <errno.h>
861f93
#include <ctype.h>
861f93
#include <string.h>
861f93
#include <limits.h>
861f93
#include <fcntl.h>
861f93
#include <assert.h>
861f93
#include <pty.h>
861f93
#include <poll.h>
861f93
#include <sys/stat.h>
861f93
861f93
#define LENGTH(x) (sizeof (x) / sizeof (*(x)))
861f93
861f93
static const char *progname;
861f93
861f93
static volatile pid_t child;
861f93
861f93
static void signal_chld (int signo)
861f93
{
861f93
}
861f93
861f93
static volatile int signal_alrm_hit = 0;
861f93
861f93
static void signal_alrm (int signo)
861f93
{
861f93
  signal_alrm_hit = 1;
861f93
}
861f93
861f93
static char childptyname[LINE_MAX];
861f93
861f93
static void print_child_error (const char *reason, char **argv)
861f93
{
861f93
  char **sp;
861f93
861f93
  fprintf (stderr, "%s: %d %s:", progname, (int) child, reason);
861f93
  for (sp = argv; *sp != NULL; sp++)
861f93
    {
861f93
      fputc (' ', stderr);
861f93
      fputs (*sp, stderr);
861f93
    }
861f93
  fputc ('\n', stderr);
861f93
}
861f93
861f93
static int read_out (int amaster)
861f93
{
861f93
  char buf[LINE_MAX];
861f93
  ssize_t buf_got;
861f93
861f93
  buf_got = read (amaster, buf, sizeof buf);
861f93
  if (buf_got == 0)
861f93
    return 0;
861f93
  /* Weird but at least after POLLHUP we get EIO instead of just EOF.  */
861f93
  if (buf_got == -1 && errno == EIO)
861f93
    return 0;
861f93
  if (buf_got == -1 && errno == EAGAIN)
861f93
    return 0;
861f93
  if (buf_got < 0)
861f93
    {
861f93
      perror ("read (amaster)");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  if (write (STDOUT_FILENO, buf, buf_got) != buf_got)
861f93
    {
861f93
      perror ("write(2)");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  return 1;
861f93
}
861f93
861f93
/* kill (child, 0) == 0 sometimes even when CHILD's state is already "Z".  */
861f93
861f93
static int child_exited (void)
861f93
{
861f93
  char buf[200];
861f93
  int fd, i, retval;
861f93
  ssize_t got;
861f93
  char state[3];
861f93
861f93
  snprintf (buf, sizeof (buf), "/proc/%ld/stat", (long) child);
861f93
  fd = open (buf, O_RDONLY);
861f93
  if (fd == -1)
861f93
    {
861f93
      perror ("open (/proc/CHILD/stat)");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  got = read (fd, buf, sizeof(buf));
861f93
  if (got <= 0)
861f93
    {
861f93
      perror ("read (/proc/CHILD/stat)");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  if (close (fd) != 0)
861f93
    {
861f93
      perror ("close (/proc/CHILD/stat)");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  /* RHEL-5 does not support %ms.  */
861f93
  i = sscanf (buf, "%*d%*s%2s", state);
861f93
  if (i != 1)
861f93
    {
861f93
      perror ("sscanf (/proc/CHILD/stat)");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  retval = strcmp (state, "Z") == 0;
861f93
  return retval;
861f93
}
861f93
861f93
static int spawn (char **argv, int timeout)
861f93
{
861f93
  pid_t child_got;
861f93
  int status, amaster, i, rc;
861f93
  struct sigaction act;
861f93
  sigset_t set;
861f93
  struct termios termios;
861f93
  unsigned alarm_orig;
861f93
861f93
  /* We do not use signal(2) to be sure we do not have SA_RESTART.  */
861f93
  memset (&act, 0, sizeof (act));
861f93
  act.sa_handler = signal_chld;
861f93
  i = sigemptyset (&act.sa_mask);
861f93
  assert (i == 0);
861f93
  act.sa_flags = 0;	/* !SA_RESTART */
861f93
  i = sigaction (SIGCHLD, &act, NULL);
861f93
  assert (i == 0);
861f93
861f93
  i = sigemptyset (&set);
861f93
  assert (i == 0);
861f93
  i = sigaddset (&set, SIGCHLD);
861f93
  assert (i == 0);
861f93
  i = sigprocmask (SIG_SETMASK, &set, NULL);
861f93
  assert (i == 0);
861f93
861f93
  /* With TERMP passed as NULL we get "\n" -> "\r\n".  */
861f93
  termios.c_iflag = IGNBRK | IGNPAR;
861f93
  termios.c_oflag = 0;
861f93
  termios.c_cflag = CS8 | CREAD | CLOCAL | HUPCL | B9600;
861f93
  termios.c_lflag = IEXTEN | NOFLSH;
861f93
  memset (termios.c_cc, _POSIX_VDISABLE, sizeof (termios.c_cc));
861f93
  termios.c_cc[VTIME] = 0;
861f93
  termios.c_cc[VMIN ] = 1;
861f93
  cfmakeraw (&termios);
861f93
#ifdef FLUSHO
861f93
  /* Workaround a readline deadlock bug in _get_tty_settings().  */
861f93
  termios.c_lflag &= ~FLUSHO;
861f93
#endif
861f93
  child = forkpty (&amaster, childptyname, &termios, NULL);
861f93
  switch (child)
861f93
    {
861f93
      case -1:
861f93
	perror ("forkpty(3)");
861f93
	exit (EXIT_FAILURE);
861f93
      case 0:
861f93
	/* Do not replace STDIN as inferiors query its termios.  */
861f93
#if 0
861f93
	i = close (STDIN_FILENO);
861f93
	assert (i == 0);
861f93
	i = open ("/dev/null", O_RDONLY);
861f93
	assert (i == STDIN_FILENO);
861f93
#endif
861f93
861f93
	i = sigemptyset (&set);
861f93
	assert (i == 0);
861f93
	i = sigprocmask (SIG_SETMASK, &set, NULL);
861f93
	assert (i == 0);
861f93
861f93
	/* Do not setpgrp(2) in the parent process as the process-group
861f93
	   is shared for the whole sh(1) pipeline we could be a part
861f93
	   of.  The process-group is set according to PID of the first
861f93
	   command in the pipeline.
861f93
	   We would rip even vi(1) in the case of:
861f93
		./orphanripper sh -c 'sleep 1&' | vi -
861f93
	   */
861f93
	/* Do not setpgrp(2) as our pty would not be ours and we would
861f93
	   get `SIGSTOP' later, particularly after spawning gdb(1).
861f93
	   setsid(3) was already executed by forkpty(3) and it would fail if
861f93
	   executed again.  */
861f93
	if (getpid() != getpgrp ())
861f93
	  {
861f93
	    perror ("getpgrp(2)");
861f93
	    exit (EXIT_FAILURE);
861f93
	  }
861f93
	execvp (argv[0], argv);
861f93
	perror ("execvp(2)");
861f93
	exit (EXIT_FAILURE);
861f93
      default:
861f93
	break;
861f93
    }
861f93
  i = fcntl (amaster, F_SETFL, O_RDWR | O_NONBLOCK);
861f93
  if (i != 0)
861f93
    {
861f93
      perror ("fcntl (amaster, F_SETFL, O_NONBLOCK)");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
861f93
  /* We do not use signal(2) to be sure we do not have SA_RESTART.  */
861f93
  act.sa_handler = signal_alrm;
861f93
  i = sigaction (SIGALRM, &act, NULL);
861f93
  assert (i == 0);
861f93
861f93
  alarm_orig = alarm (timeout);
861f93
  assert (alarm_orig == 0);
861f93
861f93
  i = sigemptyset (&set);
861f93
  assert (i == 0);
861f93
861f93
  while (!signal_alrm_hit)
861f93
    {
861f93
      struct pollfd pollfd;
861f93
861f93
      pollfd.fd = amaster;
861f93
      pollfd.events = POLLIN;
861f93
      i = ppoll (&pollfd, 1, NULL, &set);
861f93
      if (i == -1 && errno == EINTR)
861f93
	{
861f93
	  if (child_exited ())
861f93
	    break;
861f93
	  /* Non-CHILD child may have exited.  */
861f93
	  continue;
861f93
	}
861f93
      assert (i == 1);
861f93
      /* Data available?  Process it first.  */
861f93
      if (pollfd.revents & POLLIN)
861f93
	{
861f93
	  if (!read_out (amaster))
861f93
	    {
861f93
	      fprintf (stderr, "%s: Unexpected EOF\n", progname);
861f93
	      exit (EXIT_FAILURE);
861f93
	    }
861f93
	}
861f93
      if (pollfd.revents & POLLHUP)
861f93
        break;
861f93
      if ((pollfd.revents &= ~POLLIN) != 0)
861f93
	{
861f93
	  fprintf (stderr, "%s: ppoll(2): revents 0x%x\n", progname,
861f93
		   (unsigned) pollfd.revents);
861f93
	  exit (EXIT_FAILURE);
861f93
	}
861f93
      /* Child exited?  */
861f93
      if (child_exited ())
861f93
	break;
861f93
    }
861f93
861f93
  if (signal_alrm_hit)
861f93
    {
861f93
      i = kill (child, SIGKILL);
861f93
      assert (i == 0);
861f93
    }
861f93
  else
861f93
    alarm (0);
861f93
861f93
  /* WNOHANG still could fail.  */
861f93
  child_got = waitpid (child, &status, 0);
861f93
  if (child != child_got)
861f93
    {
861f93
      fprintf (stderr, "waitpid (%d) = %d: %m\n", (int) child, (int) child_got);
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  if (signal_alrm_hit)
861f93
    {
861f93
      char *buf;
861f93
861f93
      if (asprintf (&buf, "Timed out after %d seconds", timeout) != -1)
861f93
	{
861f93
	  print_child_error (buf, argv);
861f93
	  free (buf);
861f93
	}
861f93
      rc = 128 + SIGALRM;
861f93
    }
861f93
  else if (WIFEXITED (status))
861f93
    rc = WEXITSTATUS (status);
861f93
  else if (WIFSIGNALED (status))
861f93
    {
861f93
      print_child_error (strsignal (WTERMSIG (status)), argv);
861f93
      rc = 128 + WTERMSIG (status);
861f93
    }
861f93
  else if (WIFSTOPPED (status))
861f93
    {
861f93
      fprintf (stderr, "waitpid (%d): WIFSTOPPED - WSTOPSIG is %d\n",
861f93
	       (int) child, WSTOPSIG (status));
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  else
861f93
    {
861f93
      fprintf (stderr, "waitpid (%d): !WIFEXITED (%d)\n", (int) child, status);
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
861f93
  /* Not used in fact.  */
861f93
  i = sigprocmask (SIG_SETMASK, &set, NULL);
861f93
  assert (i == 0);
861f93
861f93
  /* Do not unset O_NONBLOCK as a stale child (the whole purpose of this
861f93
     program) having open its output pty would block us in read_out.  */
861f93
#if 0
861f93
  i = fcntl (amaster, F_SETFL, O_RDONLY /* !O_NONBLOCK */);
861f93
  if (i != 0)
861f93
    {
861f93
      perror ("fcntl (amaster, F_SETFL, O_RDONLY /* !O_NONBLOCK */)");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
#endif
861f93
861f93
  while (read_out (amaster));
861f93
861f93
  /* Do not close the master FD as the child would have `/dev/pts/23 (deleted)'
861f93
     entries which are not expected (and expecting ` (deleted)' would be
861f93
     a race.  */
861f93
#if 0
861f93
  i = close (amaster);
861f93
  if (i != 0)
861f93
    {
861f93
      perror ("close (forkpty ()'s amaster)");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
#endif
861f93
861f93
  return rc;
861f93
}
861f93
861f93
/* Detected commandline may look weird due to a race:
861f93
   Original command:
861f93
	./orphanripper sh -c 'sleep 1&' &
861f93
   Correct output:
861f93
	[1] 29610
861f93
	./orphanripper: Killed -9 orphan PID 29612 (PGID 29611): sleep 1
861f93
   Raced output (sh(1) child still did not update its argv[]):
861f93
	[1] 29613
861f93
	./orphanripper: Killed -9 orphan PID 29615 (PGID 29614): sh -c sleep 1&
861f93
   We could delay a bit before ripping the children.  */
861f93
static const char *read_cmdline (pid_t pid)
861f93
{
861f93
  char cmdline_fname[32];
861f93
  static char cmdline[LINE_MAX];
861f93
  int fd;
861f93
  ssize_t got;
861f93
  char *s;
861f93
861f93
  if (snprintf (cmdline_fname, sizeof cmdline_fname, "/proc/%d/cmdline",
861f93
      (int) pid) < 0)
861f93
    return NULL;
861f93
  fd = open (cmdline_fname, O_RDONLY);
861f93
  if (fd == -1)
861f93
    {
861f93
      /* It may have already exited - ENOENT.  */
861f93
#if 0
861f93
      fprintf (stderr, "%s: open (\"%s\"): %m\n", progname, cmdline_fname);
861f93
#endif
861f93
      return NULL;
861f93
    }
861f93
  got = read (fd, cmdline, sizeof (cmdline) - 1);
861f93
  if (got == -1)
861f93
    fprintf (stderr, "%s: read (\"%s\"): %m\n", progname,
861f93
       cmdline_fname);
861f93
  if (close (fd) != 0)
861f93
    fprintf (stderr, "%s: close (\"%s\"): %m\n", progname,
861f93
       cmdline_fname);
861f93
  if (got < 0)
861f93
    return NULL;
861f93
  /* Convert '\0' argument delimiters to spaces.  */
861f93
  for (s = cmdline; s < cmdline + got; s++)
861f93
    if (!*s)
861f93
      *s = ' ';
861f93
  /* Trim the trailing spaces (typically single '\0'->' ').  */
861f93
  while (s > cmdline && isspace (s[-1]))
861f93
    s--;
861f93
  *s = 0;
861f93
  return cmdline;
861f93
}
861f93
861f93
static int dir_scan (const char *dirname,
861f93
		  int (*callback) (struct dirent *dirent, const char *pathname))
861f93
{
861f93
  DIR *dir;
861f93
  struct dirent *dirent;
861f93
  int rc = 0;
861f93
861f93
  dir = opendir (dirname);
861f93
  if (dir == NULL)
861f93
    {
861f93
      if (errno == EACCES || errno == ENOENT)
861f93
	return rc;
861f93
      fprintf (stderr, "%s: opendir (\"%s\"): %m\n", progname, dirname);
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  while ((errno = 0, dirent = readdir (dir)))
861f93
    {
861f93
      char pathname[LINE_MAX];
861f93
      int pathname_len;
861f93
861f93
      pathname_len = snprintf (pathname, sizeof pathname, "%s/%s",
861f93
				 dirname, dirent->d_name);
861f93
      if (pathname_len <= 0 || pathname_len >= (int) sizeof pathname)
861f93
	{
861f93
	  fprintf (stderr, "entry file name too long: `%s' / `%s'\n",
861f93
		   dirname, dirent->d_name);
861f93
	  continue;
861f93
	}
861f93
      /* RHEL-4.5 on s390x never fills in D_TYPE.  */
861f93
      if (dirent->d_type == DT_UNKNOWN)
861f93
        {
861f93
	  struct stat statbuf;
861f93
	  int i;
861f93
861f93
	  /* We are not interested in the /proc/PID/fd/ links targets.  */
861f93
	  i = lstat (pathname, &statbuf);
861f93
	  if (i == -1)
861f93
	    {
861f93
	      if (errno == EACCES || errno == ENOENT)
861f93
	        continue;
861f93
	      fprintf (stderr, "%s: stat (\"%s\"): %m\n", progname, pathname);
861f93
	      exit (EXIT_FAILURE);
861f93
	    }
861f93
	  if (S_ISDIR (statbuf.st_mode))
861f93
	    dirent->d_type = DT_DIR;
861f93
	  if (S_ISLNK (statbuf.st_mode))
861f93
	    dirent->d_type = DT_LNK;
861f93
	  /* No other D_TYPE types used in this code.  */
861f93
	}
861f93
      rc = (*callback) (dirent, pathname);
861f93
      if (rc != 0)
861f93
	{
861f93
	  errno = 0;
861f93
	  break;
861f93
	}
861f93
    }
861f93
  if (errno != 0)
861f93
    {
861f93
      fprintf (stderr, "%s: readdir (\"%s\"): %m\n", progname, dirname);
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  if (closedir (dir) != 0)
861f93
    {
861f93
      fprintf (stderr, "%s: closedir (\"%s\"): %m\n", progname, dirname);
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  return rc;
861f93
}
861f93
861f93
static int fd_fs_scan (pid_t pid, int (*func) (pid_t pid, const char *link))
861f93
{
861f93
  char dirname[64];
861f93
861f93
  if (snprintf (dirname, sizeof dirname, "/proc/%d/fd", (int) pid) < 0)
861f93
    {
861f93
      perror ("snprintf(3)");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
861f93
  int callback (struct dirent *dirent, const char *pathname)
861f93
  {
861f93
    char buf[LINE_MAX];
861f93
    ssize_t buf_len;
861f93
861f93
    if ((dirent->d_type != DT_DIR && dirent->d_type != DT_LNK)
861f93
	|| (dirent->d_type == DT_DIR && strcmp (dirent->d_name, ".") != 0
861f93
	    && strcmp (dirent->d_name, "..") != 0)
861f93
	|| (dirent->d_type == DT_LNK && strspn (dirent->d_name, "0123456789")
861f93
	    != strlen (dirent->d_name)))
861f93
      {
861f93
	fprintf (stderr, "Unexpected entry \"%s\" (d_type %u)"
861f93
			 " on readdir (\"%s\"): %m\n",
861f93
		 dirent->d_name, (unsigned) dirent->d_type, dirname);
861f93
	return 0;
861f93
      }
861f93
    if (dirent->d_type == DT_DIR)
861f93
      return 0;
861f93
    buf_len = readlink (pathname, buf, sizeof buf - 1);
861f93
    if (buf_len <= 0 || buf_len >= (ssize_t) sizeof buf - 1)
861f93
      {
861f93
	if (errno != ENOENT && errno != EACCES)
861f93
	  fprintf (stderr, "Error reading link \"%s\": %m\n", pathname);
861f93
	return 0;
861f93
      }
861f93
    buf[buf_len] = 0;
861f93
    return (*func) (pid, buf);
861f93
  }
861f93
861f93
  return dir_scan (dirname, callback);
861f93
}
861f93
861f93
static void pid_fs_scan (void (*func) (pid_t pid, void *data), void *data)
861f93
{
861f93
  int callback (struct dirent *dirent, const char *pathname)
861f93
  {
861f93
    if (dirent->d_type != DT_DIR
861f93
	|| strspn (dirent->d_name, "0123456789") != strlen (dirent->d_name))
861f93
      return 0;
861f93
    (*func) (atoi (dirent->d_name), data);
861f93
    return 0;
861f93
  }
861f93
861f93
  dir_scan ("/proc", callback);
861f93
}
861f93
861f93
static int rip_check_ptyname (pid_t pid, const char *link)
861f93
{
861f93
  assert (pid != getpid ());
861f93
861f93
  return strcmp (link, childptyname) == 0;
861f93
}
861f93
861f93
struct pid
861f93
  {
861f93
    struct pid *next;
861f93
    pid_t pid;
861f93
  };
861f93
static struct pid *pid_list;
861f93
861f93
static int pid_found (pid_t pid)
861f93
{
861f93
  struct pid *entry;
861f93
861f93
  for (entry = pid_list; entry != NULL; entry = entry->next)
861f93
    if (entry->pid == pid)
861f93
      return 1;
861f93
  return 0;
861f93
}
861f93
861f93
/* Single pass is not enough, a (multithreaded) process was seen to survive.
861f93
   Repeated killing of the same process is not enough, zombies can be killed.
861f93
   */
861f93
static int cleanup_acted;
861f93
861f93
static void pid_record (pid_t pid)
861f93
{
861f93
  struct pid *entry;
861f93
861f93
  if (pid_found (pid))
861f93
    return;
861f93
  cleanup_acted = 1;
861f93
861f93
  entry = malloc (sizeof (*entry));
861f93
  if (entry == NULL)
861f93
    {
861f93
      fprintf (stderr, "%s: malloc: %m\n", progname);
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  entry->pid = pid;
861f93
  entry->next = pid_list;
861f93
  pid_list = entry;
861f93
}
861f93
861f93
static void pid_forall (void (*func) (pid_t pid))
861f93
{
861f93
  struct pid *entry;
861f93
861f93
  for (entry = pid_list; entry != NULL; entry = entry->next)
861f93
    (*func) (entry->pid);
861f93
}
861f93
861f93
/* Returns 0 on failure.  */
861f93
static pid_t pid_get_parent (pid_t pid)
861f93
{
861f93
  char fname[64];
861f93
  FILE *f;
861f93
  char line[LINE_MAX];
861f93
  pid_t retval = 0;
861f93
861f93
  if (snprintf (fname, sizeof fname, "/proc/%d/status", (int) pid) < 0)
861f93
    {
861f93
      perror ("snprintf(3)");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  f = fopen (fname, "r");
861f93
  if (f == NULL)
861f93
    {
861f93
      return 0;
861f93
    }
861f93
  while (errno = 0, fgets (line, sizeof line, f) == line)
861f93
    {
861f93
      if (strncmp (line, "PPid:\t", sizeof "PPid:\t" - 1) != 0)
861f93
	continue;
861f93
      retval = atoi (line + sizeof "PPid:\t" - 1);
861f93
      errno = 0;
861f93
      break;
861f93
    }
861f93
  if (errno != 0)
861f93
    {
861f93
      fprintf (stderr, "%s: fgets (\"%s\"): %m\n", progname, fname);
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  if (fclose (f) != 0)
861f93
    {
861f93
      fprintf (stderr, "%s: fclose (\"%s\"): %m\n", progname, fname);
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  return retval;
861f93
}
861f93
861f93
static void killtree (pid_t pid);
861f93
861f93
static void killtree_pid_fs_scan (pid_t pid, void *data)
861f93
{
861f93
  pid_t parent_pid = *(pid_t *) data;
861f93
861f93
  /* Do not optimize it as we could miss some newly spawned processes.
861f93
     Always traverse all the leaves.  */
861f93
#if 0
861f93
  /* Optimization.  */
861f93
  if (pid_found (pid))
861f93
    return;
861f93
#endif
861f93
861f93
  if (pid_get_parent (pid) != parent_pid)
861f93
    return;
861f93
861f93
  killtree (pid);
861f93
}
861f93
861f93
static void killtree (pid_t pid)
861f93
{
861f93
  pid_record (pid);
861f93
  pid_fs_scan (killtree_pid_fs_scan, &pid;;
861f93
}
861f93
861f93
static void rip_pid_fs_scan (pid_t pid, void *data)
861f93
{
861f93
  pid_t pgid;
861f93
861f93
  /* Shouldn't happen.  */
861f93
  if (pid == getpid ())
861f93
    return;
861f93
861f93
  /* Check both PGID and the stale file descriptors.  */
861f93
  pgid = getpgid (pid);
861f93
  if (pgid == child
861f93
      || fd_fs_scan (pid, rip_check_ptyname) != 0)
861f93
    killtree (pid);
861f93
}
861f93
861f93
static void killproc (pid_t pid)
861f93
{
861f93
  const char *cmdline;
861f93
861f93
  cmdline = read_cmdline (pid);
861f93
  /* Avoid printing the message for already gone processes.  */
861f93
  if (kill (pid, 0) != 0 && errno == ESRCH)
861f93
    return;
861f93
  if (cmdline == NULL)
861f93
    cmdline = "<error>";
861f93
  fprintf (stderr, "%s: Killed -9 orphan PID %d: %s\n", progname, (int) pid, cmdline);
861f93
  if (kill (pid, SIGKILL) == 0)
861f93
    cleanup_acted = 1;
861f93
  else if (errno != ESRCH)
861f93
    fprintf (stderr, "%s: kill (%d, SIGKILL): %m\n", progname, (int) pid);
861f93
  /* RHEL-3 kernels cannot SIGKILL a `T (stopped)' process.  */
861f93
  kill (pid, SIGCONT);
861f93
  /* Do not waitpid(2) as it cannot be our direct descendant and it gets
861f93
     cleaned up by init(8).  */
861f93
#if 0
861f93
  pid_t pid_got;
861f93
  pid_got = waitpid (pid, NULL, 0);
861f93
  if (pid != pid_got)
861f93
    {
861f93
      fprintf (stderr, "%s: waitpid (%d) != %d: %m\n", progname,
861f93
	 (int) pid, (int) pid_got);
861f93
      return;
861f93
    }
861f93
#endif
861f93
}
861f93
861f93
static void rip (void)
861f93
{
861f93
  cleanup_acted = 0;
861f93
  do
861f93
    {
861f93
      if (cleanup_acted)
861f93
        usleep (1000000 / 10);
861f93
      cleanup_acted = 0;
861f93
      pid_fs_scan (rip_pid_fs_scan, NULL);
861f93
      pid_forall (killproc);
861f93
    }
861f93
  while (cleanup_acted);
861f93
}
861f93
861f93
int main (int argc, char **argv)
861f93
{
861f93
  int timeout = 0;
861f93
  int rc;
861f93
861f93
  progname = *argv++;
861f93
  argc--;
861f93
861f93
  if (argc < 1 || strcmp (*argv, "-h") == 0
861f93
      || strcmp (*argv, "--help") == 0)
861f93
    {
861f93
      puts ("Syntax: orphanripper [-t <seconds>] <execvp(3) commandline>");
861f93
      exit (EXIT_FAILURE);
861f93
    }
861f93
  if ((*argv)[0] == '-' && (*argv)[1] == 't')
861f93
    {
861f93
      char *timeout_s = NULL;
861f93
861f93
      if ((*argv)[2] == 0)
861f93
	timeout_s = *++argv;
861f93
      else if (isdigit ((*argv)[2]))
861f93
	timeout_s = (*argv) + 2;
861f93
      if (timeout_s != NULL)
861f93
	{
861f93
	  long l;
861f93
	  char *endptr;
861f93
861f93
	  argv++;
861f93
	  l = strtol (timeout_s, &endptr, 0);
861f93
	  timeout = l;
861f93
	  if ((endptr != NULL && *endptr != 0) || timeout < 0 || timeout != l)
861f93
	    {
861f93
	      fprintf (stderr, "%s: Invalid timeout value: %s\n", progname,
861f93
		       timeout_s);
861f93
	      exit (EXIT_FAILURE);
861f93
	    }
861f93
	}
861f93
    }
861f93
861f93
  rc = spawn (argv, timeout);
861f93
  rip ();
861f93
  return rc;
861f93
}