procps/pgrep.c

803 lines
19 KiB
C
Raw Normal View History

2002-02-02 04:17:29 +05:30
/* emacs settings: -*- c-basic-offset: 8 tab-width: 8 -*-
*
* pgrep/pkill -- utilities to filter the process table
*
* Copyright 2000 Kjetil Torgrim Homme <kjetilho@ifi.uio.no>
*
* May be distributed under the conditions of the
* GNU General Public License; a copy is in COPYING
*
* Changes by Albert Cahalan, 2002,2006.
*
2002-02-02 04:17:29 +05:30
*/
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
2002-02-02 04:17:29 +05:30
#include <unistd.h>
#include <ctype.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
2002-02-02 04:17:29 +05:30
#include <signal.h>
#include <pwd.h>
#include <grp.h>
#include <regex.h>
#include <errno.h>
#include <getopt.h>
2002-02-02 04:17:29 +05:30
#include "c.h"
#include "nls.h"
2002-02-02 04:17:29 +05:30
#include "proc/readproc.h"
#include "proc/sig.h"
#include "proc/devname.h"
#include "proc/sysinfo.h"
#include "proc/version.h" /* procps_version */
2002-02-02 04:17:29 +05:30
2006-06-21 09:48:02 +05:30
// EXIT_SUCCESS is 0
// EXIT_FAILURE is 1
#define EXIT_USAGE 2
#define EXIT_FATAL 3
2002-02-02 04:17:29 +05:30
static int i_am_pkill = 0;
2002-10-12 09:55:57 +05:30
static const char *progname = "pgrep";
2002-02-02 04:17:29 +05:30
union el {
long num;
char * str;
};
/* User supplied arguments */
static int opt_full = 0;
static int opt_long = 0;
static int opt_oldest = 0;
2002-02-02 04:17:29 +05:30
static int opt_newest = 0;
static int opt_negate = 0;
static int opt_exact = 0;
static int opt_count = 0;
2002-02-02 04:17:29 +05:30
static int opt_signal = SIGTERM;
2006-06-25 01:42:29 +05:30
static int opt_lock = 0;
2006-06-19 02:25:02 +05:30
static int opt_case = 0;
2002-02-02 04:17:29 +05:30
2002-10-12 09:55:57 +05:30
static const char *opt_delim = "\n";
2002-02-02 04:17:29 +05:30
static union el *opt_pgrp = NULL;
2002-12-09 01:58:40 +05:30
static union el *opt_rgid = NULL;
static union el *opt_pid = NULL;
2002-02-02 04:17:29 +05:30
static union el *opt_ppid = NULL;
static union el *opt_sid = NULL;
static union el *opt_term = NULL;
static union el *opt_euid = NULL;
2002-12-09 01:58:40 +05:30
static union el *opt_ruid = NULL;
2002-02-02 04:17:29 +05:30
static char *opt_pattern = NULL;
static char *opt_pidfile = NULL;
2002-02-02 04:17:29 +05:30
static int __attribute__ ((__noreturn__)) usage(int opt)
2002-02-02 04:17:29 +05:30
{
int err = (opt == '?');
2007-05-28 05:46:39 +05:30
FILE *fp = err ? stderr : stdout;
fputs(USAGE_HEADER, fp);
fprintf(fp, _(" %s [options] <pattern>\n"), progname);
fputs(USAGE_OPTIONS, fp);
if (i_am_pkill == 0) {
fputs(_(" -c, --count count of matching processes\n"), fp);
fputs(_(" -d, --delimeter <string> update delay in seconds\n"), fp);
fputs(_(" -l, --list-name list PID and process name\n"), fp);
}
if (i_am_pkill == 1) {
fputs(_(" -<sig>, --signal <sig> signal to send (either number or name)\n"), fp);
}
fputs(_(" -f, --full use full process name to match\n"), fp);
fputs(_(" -g, --pgroup <id,...> match listed process group IDs\n"), fp);
fputs(_(" -G, --group <gid,...> match real group IDs\n"), fp);
fputs(_(" -n, --newest select most recently started\n"), fp);
fputs(_(" -o, --oldest select least recently started\n"), fp);
fputs(_(" -P, --parent <ppid,...> match only childs of given parent\n"), fp);
fputs(_(" -s, --session <sid,...> match session IDs\n"), fp);
fputs(_(" -t, --terminal <tty,...> match by controlling terminal\n"), fp);
fputs(_(" -u, --euid <id,...> match by effective IDs\n"), fp);
fputs(_(" -U, --uid <id,...> match by real IDs\n"), fp);
fputs(_(" -v, --inverse negates the matching\n"), fp);
fputs(_(" -x, --exact match exectly with command name\n"), fp);
fputs(_(" -F, --pidfile <file> read PIDs from file\n"), fp);
fputs(_(" -L, --logpidfile fail if PID file is not locked\n"), fp);
fputs(USAGE_SEPARATOR, fp);
fputs(USAGE_HELP, fp);
fputs(USAGE_VERSION, fp);
fprintf(fp, USAGE_MAN_TAIL("pgrep(1)"));
exit(fp == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static union el *split_list (const char *restrict str, int (*convert)(const char *, union el *))
2002-02-02 04:17:29 +05:30
{
char *copy = strdup (str);
char *ptr = copy;
char *sep_pos;
int i = 0;
int size = 0;
union el *list = NULL;
2002-02-02 04:17:29 +05:30
do {
if (i == size) {
size = size * 5 / 4 + 4;
// add 1 because slot zero is a count
list = realloc (list, 1 + size * sizeof *list);
2002-02-02 04:17:29 +05:30
if (list == NULL)
2006-06-21 09:48:02 +05:30
exit (EXIT_FATAL);
2002-02-02 04:17:29 +05:30
}
sep_pos = strchr (ptr, ',');
if (sep_pos)
*sep_pos = 0;
// Use ++i instead of i++ because slot zero is a count
if (!convert (ptr, &list[++i]))
2006-06-21 09:48:02 +05:30
exit (EXIT_USAGE);
2002-02-02 04:17:29 +05:30
if (sep_pos)
ptr = sep_pos + 1;
} while (sep_pos);
free (copy);
if (!i) {
2002-02-02 04:17:29 +05:30
free (list);
list = NULL;
} else {
list[0].num = i;
2002-02-02 04:17:29 +05:30
}
return list;
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
// strict_atol returns a Boolean: TRUE if the input string
// contains a plain number, FALSE if there are any non-digits.
static int strict_atol (const char *restrict str, long *restrict value)
2002-02-02 04:17:29 +05:30
{
int res = 0;
int sign = 1;
if (*str == '+')
++str;
else if (*str == '-') {
++str;
sign = -1;
}
for ( ; *str; ++str) {
if (! isdigit (*str))
return (0);
res *= 10;
res += *str - '0';
}
*value = sign * res;
return 1;
2002-02-02 04:17:29 +05:30
}
#include <sys/file.h>
2006-06-23 08:48:12 +05:30
// Seen non-BSD code do this:
//
//if (fcntl_lock(pid_fd, F_SETLK, F_WRLCK, SEEK_SET, 0, 0) == -1)
// return -1;
int fcntl_lock(int fd, int cmd, int type, int whence, int start, int len)
{
struct flock lock[1];
lock->l_type = type;
lock->l_whence = whence;
lock->l_start = start;
lock->l_len = len;
return fcntl(fd, cmd, lock);
}
// We try a read lock. The daemon should have a write lock.
// Seen using flock: FreeBSD code
static int has_flock(int fd)
{
return flock(fd, LOCK_SH|LOCK_NB)==-1 && errno==EWOULDBLOCK;
}
// We try a read lock. The daemon should have a write lock.
// Seen using fcntl: libslack
static int has_fcntl(int fd)
{
struct flock f; // seriously, struct flock is for a fnctl lock!
f.l_type = F_RDLCK;
f.l_whence = SEEK_SET;
f.l_start = 0;
f.l_len = 0;
return fcntl(fd,F_SETLK,&f)==-1 && (errno==EACCES || errno==EAGAIN);
}
static union el *read_pidfile(void)
{
char buf[12];
int fd;
struct stat sbuf;
char *endp;
2011-10-07 02:28:26 +05:30
int n, pid;
union el *list = NULL;
fd = open(opt_pidfile, O_RDONLY|O_NOCTTY|O_NONBLOCK);
if(fd<0)
2011-10-07 02:28:26 +05:30
goto just_ret;
if(fstat(fd,&sbuf) || !S_ISREG(sbuf.st_mode) || sbuf.st_size<1)
goto out;
2006-06-23 08:48:12 +05:30
// type of lock, if any, is not standardized on Linux
2006-06-25 01:42:29 +05:30
if(opt_lock && !has_flock(fd) && !has_fcntl(fd))
2011-10-07 02:28:26 +05:30
goto out;
memset(buf,'\0',sizeof buf);
2011-10-07 02:28:26 +05:30
n = read(fd,buf+1,sizeof buf-2);
if (n<1)
goto out;
buf[n] = '\0';
pid = strtoul(buf+1,&endp,10);
if(endp<=buf+1 || pid<1 || pid>0x7fffffff)
goto out;
if(*endp && !isspace(*endp))
goto out;
list = malloc(2 * sizeof *list);
list[0].num = 1;
list[1].num = pid;
out:
close(fd);
2011-10-07 02:28:26 +05:30
just_ret:
return list;
}
2006-06-21 09:48:02 +05:30
static int conv_uid (const char *restrict name, union el *restrict e)
2002-02-02 04:17:29 +05:30
{
struct passwd *pwd;
if (strict_atol (name, &e->num))
return (1);
pwd = getpwnam (name);
if (pwd == NULL) {
fprintf (stderr, _("%s: invalid user name: %s\n"),
2002-02-02 04:17:29 +05:30
progname, name);
return 0;
2002-02-02 04:17:29 +05:30
}
e->num = pwd->pw_uid;
return 1;
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static int conv_gid (const char *restrict name, union el *restrict e)
2002-02-02 04:17:29 +05:30
{
struct group *grp;
if (strict_atol (name, &e->num))
return 1;
2002-02-02 04:17:29 +05:30
grp = getgrnam (name);
if (grp == NULL) {
fprintf (stderr, _("%s: invalid group name: %s\n"),
2002-02-02 04:17:29 +05:30
progname, name);
return 0;
2002-02-02 04:17:29 +05:30
}
e->num = grp->gr_gid;
return 1;
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static int conv_pgrp (const char *restrict name, union el *restrict e)
2002-02-02 04:17:29 +05:30
{
if (! strict_atol (name, &e->num)) {
fprintf (stderr, _("%s: invalid process group: %s\n"),
2002-02-02 04:17:29 +05:30
progname, name);
return 0;
2002-02-02 04:17:29 +05:30
}
if (e->num == 0)
e->num = getpgrp ();
return 1;
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static int conv_sid (const char *restrict name, union el *restrict e)
2002-02-02 04:17:29 +05:30
{
if (! strict_atol (name, &e->num)) {
fprintf (stderr, _("%s: invalid session id: %s\n"),
2002-02-02 04:17:29 +05:30
progname, name);
return 0;
2002-02-02 04:17:29 +05:30
}
if (e->num == 0)
e->num = getsid (0);
return 1;
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static int conv_num (const char *restrict name, union el *restrict e)
2002-02-02 04:17:29 +05:30
{
if (! strict_atol (name, &e->num)) {
fprintf (stderr, _("%s: not a number: %s\n"),
2002-02-02 04:17:29 +05:30
progname, name);
return 0;
2002-02-02 04:17:29 +05:30
}
return 1;
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static int conv_str (const char *restrict name, union el *restrict e)
2002-02-02 04:17:29 +05:30
{
e->str = strdup (name);
return 1;
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static int match_numlist (long value, const union el *restrict list)
2002-02-02 04:17:29 +05:30
{
int found = 0;
if (list == NULL)
found = 0;
else {
int i;
for (i = list[0].num; i > 0; i--) {
if (list[i].num == value)
found = 1;
}
}
return found;
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static int match_strlist (const char *restrict value, const union el *restrict list)
2002-02-02 04:17:29 +05:30
{
int found = 0;
if (list == NULL)
found = 0;
else {
int i;
for (i = list[0].num; i > 0; i--) {
if (! strcmp (list[i].str, value))
found = 1;
}
}
return found;
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static void output_numlist (const union el *restrict list, int num)
2002-02-02 04:17:29 +05:30
{
int i;
const char *delim = opt_delim;
for (i = 0; i < num; i++) {
if(i+1==num)
delim = "\n";
printf ("%ld%s", list[i].num, delim);
}
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static void output_strlist (const union el *restrict list, int num)
2002-02-02 04:17:29 +05:30
{
2002-12-21 19:43:33 +05:30
// FIXME: escape codes
2002-02-02 04:17:29 +05:30
int i;
const char *delim = opt_delim;
for (i = 0; i < num; i++) {
if(i+1==num)
delim = "\n";
printf ("%s%s", list[i].str, delim);
}
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static PROCTAB *do_openproc (void)
2002-02-02 04:17:29 +05:30
{
PROCTAB *ptp;
2002-12-09 01:58:40 +05:30
int flags = 0;
2002-02-02 04:17:29 +05:30
if (opt_pattern || opt_full)
2002-10-09 09:58:48 +05:30
flags |= PROC_FILLCOM;
2002-12-09 01:58:40 +05:30
if (opt_ruid || opt_rgid)
2002-02-02 04:17:29 +05:30
flags |= PROC_FILLSTATUS;
2002-12-09 01:58:40 +05:30
if (opt_oldest || opt_newest || opt_pgrp || opt_sid || opt_term)
flags |= PROC_FILLSTAT;
if (!(flags & PROC_FILLSTAT))
flags |= PROC_FILLSTATUS; // FIXME: need one, and PROC_FILLANY broken
2002-02-02 04:17:29 +05:30
if (opt_euid && !opt_negate) {
int num = opt_euid[0].num;
int i = num;
uid_t *uids = malloc (num * sizeof (uid_t));
if (uids == NULL)
2006-06-21 09:48:02 +05:30
exit (EXIT_FATAL);
2002-02-02 04:17:29 +05:30
while (i-- > 0) {
uids[i] = opt_euid[i+1].num;
}
flags |= PROC_UID;
ptp = openproc (flags, uids, num);
} else {
ptp = openproc (flags);
}
return ptp;
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static regex_t * do_regcomp (void)
2002-02-02 04:17:29 +05:30
{
regex_t *preg = NULL;
if (opt_pattern) {
char *re;
char errbuf[256];
int re_err;
preg = malloc (sizeof (regex_t));
if (preg == NULL)
2006-06-21 09:48:02 +05:30
exit (EXIT_FATAL);
2002-02-02 04:17:29 +05:30
if (opt_exact) {
re = malloc (strlen (opt_pattern) + 5);
if (re == NULL)
2006-06-21 09:48:02 +05:30
exit (EXIT_FATAL);
2002-02-02 04:17:29 +05:30
sprintf (re, "^(%s)$", opt_pattern);
} else {
re = opt_pattern;
}
2006-06-19 02:25:02 +05:30
re_err = regcomp (preg, re, REG_EXTENDED | REG_NOSUB | opt_case);
2002-02-02 04:17:29 +05:30
if (re_err) {
regerror (re_err, preg, errbuf, sizeof(errbuf));
2005-10-31 05:15:47 +05:30
fputs(errbuf,stderr);
2006-06-21 09:48:02 +05:30
exit (EXIT_USAGE);
2002-02-02 04:17:29 +05:30
}
}
return preg;
}
2006-06-21 09:48:02 +05:30
static union el * select_procs (int *num)
2002-02-02 04:17:29 +05:30
{
PROCTAB *ptp;
proc_t task;
unsigned long long saved_start_time; // for new/old support
pid_t saved_pid = 0; // for new/old support
2002-02-02 04:17:29 +05:30
int matches = 0;
int size = 0;
2002-02-02 04:17:29 +05:30
regex_t *preg;
pid_t myself = getpid();
union el *list = NULL;
2002-02-02 04:17:29 +05:30
char cmd[4096];
ptp = do_openproc();
preg = do_regcomp();
if (opt_newest) saved_start_time = 0ULL;
else saved_start_time = ~0ULL;
if (opt_newest) saved_pid = 0;
if (opt_oldest) saved_pid = INT_MAX;
2002-02-02 04:17:29 +05:30
memset(&task, 0, sizeof (task));
while(readproc(ptp, &task)) {
2002-02-02 04:17:29 +05:30
int match = 1;
2003-09-20 13:59:55 +05:30
if (task.XXXID == myself)
2002-02-02 04:17:29 +05:30
continue;
else if (opt_newest && task.start_time < saved_start_time)
match = 0;
else if (opt_oldest && task.start_time > saved_start_time)
2002-02-02 04:17:29 +05:30
match = 0;
else if (opt_ppid && ! match_numlist (task.ppid, opt_ppid))
match = 0;
else if (opt_pid && ! match_numlist (task.tgid, opt_pid))
match = 0;
2002-02-02 04:17:29 +05:30
else if (opt_pgrp && ! match_numlist (task.pgrp, opt_pgrp))
match = 0;
else if (opt_euid && ! match_numlist (task.euid, opt_euid))
match = 0;
2002-12-09 01:58:40 +05:30
else if (opt_ruid && ! match_numlist (task.ruid, opt_ruid))
2002-02-02 04:17:29 +05:30
match = 0;
2002-12-09 01:58:40 +05:30
else if (opt_rgid && ! match_numlist (task.rgid, opt_rgid))
2002-02-02 04:17:29 +05:30
match = 0;
else if (opt_sid && ! match_numlist (task.session, opt_sid))
match = 0;
else if (opt_term) {
2002-12-03 14:37:59 +05:30
if (task.tty == 0) {
2002-02-02 04:17:29 +05:30
match = 0;
} else {
char tty[256];
dev_to_tty (tty, sizeof(tty) - 1,
2003-09-20 13:59:55 +05:30
task.tty, task.XXXID, ABBREV_DEV);
2002-02-02 04:17:29 +05:30
match = match_strlist (tty, opt_term);
}
}
if (opt_long || (match && opt_pattern)) {
if (opt_full && task.cmdline) {
int i = 0;
int bytes = sizeof (cmd) - 1;
/* make sure it is always NUL-terminated */
cmd[bytes] = 0;
/* make room for SPC in loop below */
--bytes;
strncpy (cmd, task.cmdline[i], bytes);
bytes -= strlen (task.cmdline[i++]);
while (task.cmdline[i] && bytes > 0) {
strncat (cmd, " ", bytes);
strncat (cmd, task.cmdline[i], bytes);
bytes -= strlen (task.cmdline[i++]) + 1;
}
} else {
strcpy (cmd, task.cmd);
}
}
if (match && opt_pattern) {
if (regexec (preg, cmd, 0, NULL, 0) != 0)
match = 0;
}
if (match ^ opt_negate) { /* Exclusive OR is neat */
if (opt_newest) {
if (saved_start_time == task.start_time &&
2003-09-20 13:59:55 +05:30
saved_pid > task.XXXID)
continue;
saved_start_time = task.start_time;
2003-09-20 13:59:55 +05:30
saved_pid = task.XXXID;
matches = 0;
}
if (opt_oldest) {
if (saved_start_time == task.start_time &&
2003-09-20 13:59:55 +05:30
saved_pid < task.XXXID)
2002-02-02 04:17:29 +05:30
continue;
saved_start_time = task.start_time;
2003-09-20 13:59:55 +05:30
saved_pid = task.XXXID;
2002-02-02 04:17:29 +05:30
matches = 0;
}
if (matches == size) {
size = size * 5 / 4 + 4;
list = realloc(list, size * sizeof *list);
if (list == NULL)
2006-06-21 09:48:02 +05:30
exit (EXIT_FATAL);
}
2002-02-02 04:17:29 +05:30
if (opt_long) {
2002-12-21 19:43:33 +05:30
char buff[5096]; // FIXME
2003-09-20 13:59:55 +05:30
sprintf (buff, "%d %s", task.XXXID, cmd);
list[matches++].str = strdup (buff);
2002-02-02 04:17:29 +05:30
} else {
list[matches++].num = task.XXXID;
2002-02-02 04:17:29 +05:30
}
}
memset (&task, 0, sizeof (task));
}
closeproc (ptp);
*num = matches;
return list;
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
static void parse_opts (int argc, char **argv)
2002-11-26 02:42:25 +05:30
{
char opts[32] = "";
int opt;
int criteria_count = 0;
enum {
SIGNAL_OPTION = CHAR_MAX + 1
};
static const struct option longopts[] = {
{"signal", required_argument, NULL, SIGNAL_OPTION},
{"count", no_argument, NULL, 'c'},
{"delimeter", required_argument, NULL, 'd'},
{"list-name", no_argument, NULL, 'l'},
{"full", no_argument, NULL, 'f'},
{"pgroup", required_argument, NULL, 'g'},
{"group", required_argument, NULL, 'G'},
{"newest", no_argument, NULL, 'n'},
{"oldest", no_argument, NULL, 'o'},
{"parent", required_argument, NULL, 'P'},
{"session", required_argument, NULL, 's'},
{"terminal", required_argument, NULL, 't'},
{"euid", required_argument, NULL, 'u'},
{"uid", required_argument, NULL, 'U'},
{"inverse", no_argument, NULL, 'v'},
{"exact", no_argument, NULL, 'x'},
{"pidfile", required_argument, NULL, 'F'},
{"logpidfile", no_argument, NULL, 'L'},
{"help", no_argument, NULL, 'h'},
{"version", no_argument, NULL, 'V'},
{NULL, 0, NULL, 0}
};
2002-11-26 02:42:25 +05:30
if (strstr (argv[0], "pkill")) {
i_am_pkill = 1;
progname = "pkill";
/* Look for a signal name or number as first argument */
if (argc > 1 && argv[1][0] == '-') {
int sig;
sig = signal_name_to_number (argv[1] + 1);
if (sig == -1 && isdigit (argv[1][1]))
sig = atoi (argv[1] + 1);
if (sig != -1) {
int i;
for (i = 2; i < argc; i++)
argv[i-1] = argv[i];
--argc;
opt_signal = sig;
}
}
} else {
/* These options are for pgrep only */
strcat (opts, "cld:");
2002-11-26 02:42:25 +05:30
}
strcat (opts, "LF:fnovxP:g:s:u:U:G:t:?Vh");
2002-11-26 02:42:25 +05:30
while ((opt = getopt_long (argc, argv, opts, longopts, NULL)) != -1) {
2002-11-26 02:42:25 +05:30
switch (opt) {
case SIGNAL_OPTION:
opt_signal = signal_name_to_number (optarg);
if (opt_signal == -1 && isdigit (optarg[0]))
opt_signal = atoi (optarg);
break;
// case 'D': // FreeBSD: print info about non-matches for debugging
// break;
case 'F': // FreeBSD: the arg is a file containing a PID to match
opt_pidfile = strdup (optarg);
++criteria_count;
break;
2006-06-19 02:25:02 +05:30
case 'G': // Solaris: match rgid/rgroup
opt_rgid = split_list (optarg, conv_gid);
if (opt_rgid == NULL)
2002-11-26 02:42:25 +05:30
usage (opt);
++criteria_count;
break;
2006-06-19 02:25:02 +05:30
// case 'I': // FreeBSD: require confirmation before killing
// break;
// case 'J': // Solaris: match by project ID (name or number)
// break;
2006-06-25 01:42:29 +05:30
case 'L': // FreeBSD: fail if pidfile (see -F) not locked
opt_lock++;
break;
2006-06-19 02:25:02 +05:30
// case 'M': // FreeBSD: specify core (OS crash dump) file
// break;
// case 'N': // FreeBSD: specify alternate namelist file (for us, System.map -- but we don't need it)
// break;
case 'P': // Solaris: match by PPID
opt_ppid = split_list (optarg, conv_num);
if (opt_ppid == NULL)
2002-11-26 02:42:25 +05:30
usage (opt);
++criteria_count;
break;
2006-06-19 02:25:02 +05:30
// case 'S': // FreeBSD: don't ignore the built-in kernel tasks
// break;
// case 'T': // Solaris: match by "task ID" (probably not a Linux task)
// break;
case 'U': // Solaris: match by ruid/rgroup
opt_ruid = split_list (optarg, conv_uid);
if (opt_ruid == NULL)
2002-11-26 02:42:25 +05:30
usage (opt);
++criteria_count;
2002-11-26 02:42:25 +05:30
break;
case 'V':
printf(PROCPS_NG_VERSION);
2006-06-21 09:48:02 +05:30
exit(EXIT_SUCCESS);
2006-06-19 02:25:02 +05:30
// case 'c': // Solaris: match by contract ID
// break;
case 'c':
opt_count = 1;
break;
2006-06-19 02:25:02 +05:30
case 'd': // Solaris: change the delimiter
2002-11-26 02:42:25 +05:30
opt_delim = strdup (optarg);
break;
2006-06-19 02:25:02 +05:30
case 'f': // Solaris: match full process name (as in "ps -f")
opt_full = 1;
2002-11-26 02:42:25 +05:30
break;
2006-06-19 02:25:02 +05:30
case 'g': // Solaris: match pgrp
2002-11-26 03:06:43 +05:30
opt_pgrp = split_list (optarg, conv_pgrp);
2002-11-26 02:42:25 +05:30
if (opt_pgrp == NULL)
usage (opt);
2006-06-25 01:42:29 +05:30
++criteria_count;
2002-11-26 02:42:25 +05:30
break;
2006-06-19 02:25:02 +05:30
// case 'i': // FreeBSD: ignore case. OpenBSD: withdrawn. See -I. This sucks.
// if (opt_case)
// usage (opt);
// opt_case = REG_ICASE;
// break;
2006-06-19 02:25:02 +05:30
// case 'j': // FreeBSD: restricted to the given jail ID
// break;
case 'l': // Solaris: long output format (pgrep only) Should require -f for beyond argv[0] maybe?
opt_long = 1;
2002-11-26 02:42:25 +05:30
break;
2006-06-19 02:25:02 +05:30
case 'n': // Solaris: match only the newest
if (opt_oldest|opt_negate|opt_newest)
2002-11-26 02:42:25 +05:30
usage (opt);
opt_newest = 1;
2002-11-26 02:42:25 +05:30
++criteria_count;
break;
2006-06-19 02:25:02 +05:30
case 'o': // Solaris: match only the oldest
if (opt_oldest|opt_negate|opt_newest)
2002-11-26 02:42:25 +05:30
usage (opt);
opt_oldest = 1;
2002-11-26 02:42:25 +05:30
++criteria_count;
break;
2006-06-19 02:25:02 +05:30
case 's': // Solaris: match by session ID -- zero means self
opt_sid = split_list (optarg, conv_sid);
if (opt_sid == NULL)
2002-11-26 02:42:25 +05:30
usage (opt);
++criteria_count;
break;
2006-06-19 02:25:02 +05:30
case 't': // Solaris: match by tty
2002-11-26 03:06:43 +05:30
opt_term = split_list (optarg, conv_str);
2002-11-26 02:42:25 +05:30
if (opt_term == NULL)
usage (opt);
++criteria_count;
break;
2006-06-19 02:25:02 +05:30
case 'u': // Solaris: match by euid/egroup
opt_euid = split_list (optarg, conv_uid);
if (opt_euid == NULL)
usage (opt);
++criteria_count;
break;
2006-06-19 02:25:02 +05:30
case 'v': // Solaris: as in grep, invert the matching (uh... applied after selection I think)
if (opt_oldest|opt_negate|opt_newest)
usage (opt);
opt_negate = 1;
break;
// OpenBSD -x, being broken, does a plain string
2006-06-19 02:25:02 +05:30
case 'x': // Solaris: use ^(regexp)$ in place of regexp (FreeBSD too)
opt_exact = 1;
break;
2006-06-19 02:25:02 +05:30
// case 'z': // Solaris: match by zone ID
// break;
case 'h':
usage (opt);
break;
2002-11-26 02:42:25 +05:30
case '?':
usage (optopt ? optopt : opt);
2002-11-26 02:42:25 +05:30
break;
}
}
2006-06-25 01:42:29 +05:30
if(opt_lock && !opt_pidfile){
fprintf(stderr, _("%s: -L without -F makes no sense\n"),progname);
usage(0);
}
if(opt_pidfile){
opt_pid = read_pidfile();
if(!opt_pid){
fprintf(stderr, _("%s: pidfile not valid\n"),progname);
usage(0);
}
}
2002-11-26 02:42:25 +05:30
if (argc - optind == 1)
opt_pattern = argv[optind];
else if (argc - optind > 1)
usage (0);
else if (criteria_count == 0) {
fprintf (stderr, _("%s: No matching criteria specified\n"),
2002-11-26 02:42:25 +05:30
progname);
usage (0);
}
}
2006-06-21 09:48:02 +05:30
int main (int argc, char *argv[])
2002-02-02 04:17:29 +05:30
{
union el *procs;
int num;
2002-02-02 04:17:29 +05:30
parse_opts (argc, argv);
procs = select_procs (&num);
2002-02-02 04:17:29 +05:30
if (i_am_pkill) {
int i;
for (i = 0; i < num; i++) {
if (kill (procs[i].num, opt_signal) != -1) continue;
if (errno==ESRCH) continue; // gone now, which is OK
fprintf (stderr, "pkill: %ld - %s\n",
procs[i].num, strerror (errno));
2002-02-02 04:17:29 +05:30
}
} else {
if (opt_count) {
fprintf(stdout, "%ld\n", num);
} else {
if (opt_long)
output_strlist (procs,num);
else
output_numlist (procs,num);
}
2002-02-02 04:17:29 +05:30
}
2006-06-21 09:48:02 +05:30
return !num; // exit(EXIT_SUCCESS) if match, otherwise exit(EXIT_FAILURE)
2002-02-02 04:17:29 +05:30
}