killall.c revision cee530bb23b78c0dfd18b0c2718cfe41286396df
/*-*- 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 "util.h"
#include "def.h"
#include "killall.h"
FILE *f;
char c;
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;
if (!f)
return true; /* not really, but has the desired effect */
fclose(f);
/* 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;
}
for (;;) {
int k;
usec_t n;
for (;;) {
if (pid == 0)
break;
return;
if (n_processes > 0)
if (--n_processes == 0)
return;
}
n = now(CLOCK_MONOTONIC);
if (n >= until)
return;
log_error("sigtimedwait() failed: %m");
return;
}
if (k >= 0)
log_warning("sigtimedwait() returned unexpected signal.");
}
}
}
struct dirent *d;
unsigned int n_processes = 0;
if (!dir)
return -errno;
d->d_type != DT_UNKNOWN)
continue;
continue;
if (ignore_proc(pid))
continue;
n_processes++;
}
return n_processes;
}
int n_processes;
log_warning("kill(-1, SIGSTOP) failed: %m");
log_warning("kill(-1, SIGCONT) failed: %m");
if (n_processes <= 0)
goto finish;
if (wait)
}