Blame SOURCES/gdb-orphanripper.c

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