killall.c revision 0bee65f0622c4faa8ac8ae771cc0c8a936dfa284
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 ProFUSION embedded systems
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <signal.h>
#include <errno.h>
#include <unistd.h>
#include "util.h"
#include "def.h"
#include "killall.h"
#include "set.h"
char c, *p;
int r;
/* We are PID 1, let's not commit suicide */
if (pid == 1)
return true;
if (r < 0)
return true; /* not really, but better safe than sorry */
/* Non-root processes otherwise are always subject to be killed */
if (uid != 0)
return false;
f = fopen(p, "re");
if (!f)
return true; /* not really, but has the desired effect */
/* Kernel threads have an empty cmdline */
if (count <= 0)
return true;
/* Processes with argv[0][0] = '@' we ignore from the killing
* spree.
*
return true;
return false;
}
if (set_isempty(pids))
return;
for (;;) {
int k;
usec_t n;
void *p;
Iterator i;
/* First, let the kernel inform us about killed
* children. Most processes will probably be our
* children, but some are not (might be our
* grandchildren instead...). */
for (;;) {
if (pid == 0)
break;
if (pid < 0) {
break;
log_error("waitpid() failed: %m");
return;
}
}
/* Now explicitly check who might be remaining, who
* might not be our child. */
SET_FOREACH(p, pids, i) {
/* We misuse getpgid as a check whether a
* process still exists. */
continue;
continue;
set_remove(pids, p);
}
if (set_isempty(pids))
return;
n = now(CLOCK_MONOTONIC);
if (n >= until)
return;
if (k != SIGCHLD) {
log_error("sigtimedwait() failed: %m");
return;
}
if (k >= 0)
log_warning("sigtimedwait() returned unexpected signal.");
}
}
}
struct dirent *d;
if (!dir)
return -errno;
d->d_type != DT_UNKNOWN)
continue;
continue;
if (ignore_proc(pid))
continue;
_cleanup_free_ char *s;
get_process_comm(pid, &s);
}
if (pids)
if (send_sighup) {
/* Optionally, also send a SIGHUP signal, but
only if the process has a controlling
tty. This is useful to allow handling of
shells which ignore SIGTERM but react to
SIGHUP. We do not send this to processes that
have no controlling TTY since we don't want to
trigger reloads of daemon processes. Also we
make sure to only send this after SIGTERM so
that SIGTERM is always first in the queue. */
}
}
}
if (wait_for_exit)
log_warning("kill(-1, SIGSTOP) failed: %m");
log_warning("kill(-1, SIGCONT) failed: %m");
if (wait_for_exit)
}