Home | History | Annotate | Line # | Download | only in pkill
pkill.c revision 1.28
      1  1.28  christos /*	$NetBSD: pkill.c,v 1.28 2012/11/20 22:52:01 christos Exp $	*/
      2   1.1        ad 
      3   1.1        ad /*-
      4  1.20     pavel  * Copyright (c) 2002 The NetBSD Foundation, Inc.
      5   1.1        ad  * All rights reserved.
      6   1.1        ad  *
      7   1.1        ad  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1        ad  * by Andrew Doran.
      9   1.1        ad  *
     10   1.1        ad  * Redistribution and use in source and binary forms, with or without
     11   1.1        ad  * modification, are permitted provided that the following conditions
     12   1.1        ad  * are met:
     13   1.1        ad  * 1. Redistributions of source code must retain the above copyright
     14   1.1        ad  *    notice, this list of conditions and the following disclaimer.
     15   1.1        ad  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1        ad  *    notice, this list of conditions and the following disclaimer in the
     17   1.1        ad  *    documentation and/or other materials provided with the distribution.
     18   1.1        ad  *
     19   1.1        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1        ad  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1        ad  */
     31   1.1        ad 
     32   1.1        ad #include <sys/cdefs.h>
     33   1.2        ad #ifndef lint
     34  1.28  christos __RCSID("$NetBSD: pkill.c,v 1.28 2012/11/20 22:52:01 christos Exp $");
     35   1.2        ad #endif /* !lint */
     36   1.1        ad 
     37   1.1        ad #include <sys/types.h>
     38   1.1        ad #include <sys/param.h>
     39   1.1        ad #include <sys/sysctl.h>
     40   1.1        ad #include <sys/proc.h>
     41   1.1        ad #include <sys/queue.h>
     42   1.1        ad #include <sys/stat.h>
     43   1.1        ad 
     44   1.1        ad #include <stdio.h>
     45   1.1        ad #include <stdlib.h>
     46   1.1        ad #include <limits.h>
     47   1.1        ad #include <string.h>
     48   1.1        ad #include <unistd.h>
     49   1.1        ad #include <signal.h>
     50   1.1        ad #include <regex.h>
     51   1.1        ad #include <ctype.h>
     52   1.1        ad #include <kvm.h>
     53   1.1        ad #include <err.h>
     54   1.1        ad #include <pwd.h>
     55   1.1        ad #include <grp.h>
     56   1.1        ad #include <errno.h>
     57  1.11  christos #include <paths.h>
     58   1.1        ad 
     59   1.1        ad #define	STATUS_MATCH	0
     60   1.1        ad #define	STATUS_NOMATCH	1
     61   1.1        ad #define	STATUS_BADUSAGE	2
     62   1.1        ad #define	STATUS_ERROR	3
     63   1.1        ad 
     64   1.1        ad enum listtype {
     65   1.1        ad 	LT_GENERIC,
     66   1.1        ad 	LT_USER,
     67   1.1        ad 	LT_GROUP,
     68   1.1        ad 	LT_TTY,
     69   1.1        ad 	LT_PGRP,
     70   1.1        ad 	LT_SID
     71   1.1        ad };
     72   1.1        ad 
     73   1.1        ad struct list {
     74   1.1        ad 	SLIST_ENTRY(list) li_chain;
     75   1.1        ad 	long	li_number;
     76   1.1        ad };
     77   1.1        ad 
     78   1.1        ad SLIST_HEAD(listhead, list);
     79   1.1        ad 
     80  1.11  christos static struct kinfo_proc2	*plist;
     81  1.11  christos static char	*selected;
     82  1.11  christos static const char *delim = "\n";
     83  1.11  christos static int	nproc;
     84  1.11  christos static int	pgrep;
     85  1.26       mrg static int	prenice;
     86  1.11  christos static int	signum = SIGTERM;
     87  1.26       mrg static int	nicenum;
     88  1.11  christos static int	newest;
     89  1.11  christos static int	inverse;
     90  1.11  christos static int	longfmt;
     91  1.11  christos static int	matchargs;
     92  1.11  christos static int	fullmatch;
     93  1.11  christos static int	cflags = REG_EXTENDED;
     94  1.11  christos static kvm_t	*kd;
     95  1.11  christos static pid_t	mypid;
     96  1.11  christos 
     97  1.11  christos static struct listhead euidlist = SLIST_HEAD_INITIALIZER(list);
     98  1.11  christos static struct listhead ruidlist = SLIST_HEAD_INITIALIZER(list);
     99  1.11  christos static struct listhead rgidlist = SLIST_HEAD_INITIALIZER(list);
    100  1.11  christos static struct listhead pgrplist = SLIST_HEAD_INITIALIZER(list);
    101  1.11  christos static struct listhead ppidlist = SLIST_HEAD_INITIALIZER(list);
    102  1.11  christos static struct listhead tdevlist = SLIST_HEAD_INITIALIZER(list);
    103  1.11  christos static struct listhead sidlist = SLIST_HEAD_INITIALIZER(list);
    104   1.1        ad 
    105  1.22     perry static void	usage(void) __dead;
    106  1.14   dsainty static int	killact(const struct kinfo_proc2 *);
    107  1.26       mrg static int	reniceact(const struct kinfo_proc2 *);
    108  1.14   dsainty static int	grepact(const struct kinfo_proc2 *);
    109  1.11  christos static void	makelist(struct listhead *, enum listtype, char *);
    110   1.1        ad 
    111   1.1        ad int
    112   1.1        ad main(int argc, char **argv)
    113   1.1        ad {
    114  1.14   dsainty 	char buf[_POSIX2_LINE_MAX], **pargv, *q;
    115   1.1        ad 	int i, j, ch, bestidx, rv, criteria;
    116  1.14   dsainty 	int (*action)(const struct kinfo_proc2 *);
    117  1.14   dsainty 	const struct kinfo_proc2 *kp;
    118   1.1        ad 	struct list *li;
    119  1.28  christos 	const char *p;
    120   1.1        ad 	u_int32_t bestsec, bestusec;
    121   1.1        ad 	regex_t reg;
    122   1.1        ad 	regmatch_t regmatch;
    123   1.1        ad 
    124  1.11  christos 	setprogname(argv[0]);
    125  1.11  christos 
    126   1.1        ad 	if (strcmp(getprogname(), "pgrep") == 0) {
    127   1.1        ad 		action = grepact;
    128   1.1        ad 		pgrep = 1;
    129  1.26       mrg 	} else if (strcmp(getprogname(), "prenice") == 0) {
    130  1.26       mrg 		prenice = 1;
    131  1.26       mrg 
    132   1.1        ad 	} else {
    133   1.1        ad 		action = killact;
    134   1.1        ad 		p = argv[1];
    135   1.1        ad 
    136   1.3  augustss 		if (argc > 1 && p[0] == '-') {
    137   1.1        ad 			p++;
    138   1.3  augustss 			i = (int)strtol(p, &q, 10);
    139   1.3  augustss 			if (*q == '\0') {
    140   1.1        ad 				signum = i;
    141   1.1        ad 				argv++;
    142   1.3  augustss 				argc--;
    143   1.1        ad 			} else {
    144   1.1        ad 				if (strncasecmp(p, "sig", 3) == 0)
    145   1.1        ad 					p += 3;
    146   1.1        ad 				for (i = 1; i < NSIG; i++)
    147   1.1        ad 					if (strcasecmp(sys_signame[i], p) == 0)
    148   1.1        ad 						break;
    149   1.1        ad 				if (i != NSIG) {
    150   1.1        ad 					signum = i;
    151   1.1        ad 					argv++;
    152   1.3  augustss 					argc--;
    153   1.1        ad 				}
    154   1.1        ad 			}
    155   1.1        ad 		}
    156   1.1        ad 	}
    157   1.1        ad 
    158   1.1        ad 	criteria = 0;
    159   1.1        ad 
    160  1.27       mrg 	if (prenice) {
    161  1.27       mrg 		if (argc < 2)
    162  1.27       mrg 			usage();
    163  1.27       mrg 
    164  1.27       mrg 		if (strcmp(argv[1], "-l") == 0) {
    165  1.27       mrg 			longfmt = 1;
    166  1.27       mrg 			argv++;
    167  1.27       mrg 			argc--;
    168  1.27       mrg 		}
    169  1.27       mrg 
    170  1.27       mrg 		if (argc < 2)
    171  1.27       mrg 			usage();
    172  1.27       mrg 
    173  1.27       mrg 		action = reniceact;
    174  1.27       mrg 		p = argv[1];
    175  1.27       mrg 
    176  1.27       mrg 		i = (int)strtol(p, &q, 10);
    177  1.27       mrg 		if (*q == '\0') {
    178  1.27       mrg 			nicenum = i;
    179  1.27       mrg 			argv++;
    180  1.27       mrg 			argc--;
    181  1.27       mrg 		} else
    182  1.27       mrg 			usage();
    183  1.27       mrg 	} else {
    184  1.26       mrg 		while ((ch = getopt(argc, argv, "G:P:U:d:fg:ilns:t:u:vx")) != -1)
    185  1.26       mrg 			switch (ch) {
    186  1.26       mrg 			case 'G':
    187  1.26       mrg 				makelist(&rgidlist, LT_GROUP, optarg);
    188  1.26       mrg 				criteria = 1;
    189  1.26       mrg 				break;
    190  1.26       mrg 			case 'P':
    191  1.26       mrg 				makelist(&ppidlist, LT_GENERIC, optarg);
    192  1.26       mrg 				criteria = 1;
    193  1.26       mrg 				break;
    194  1.26       mrg 			case 'U':
    195  1.26       mrg 				makelist(&ruidlist, LT_USER, optarg);
    196  1.26       mrg 				criteria = 1;
    197  1.26       mrg 				break;
    198  1.26       mrg 			case 'd':
    199  1.26       mrg 				if (!pgrep)
    200  1.26       mrg 					usage();
    201  1.26       mrg 				delim = optarg;
    202  1.26       mrg 				break;
    203  1.26       mrg 			case 'f':
    204  1.26       mrg 				matchargs = 1;
    205  1.26       mrg 				break;
    206  1.26       mrg 			case 'g':
    207  1.26       mrg 				makelist(&pgrplist, LT_PGRP, optarg);
    208  1.26       mrg 				criteria = 1;
    209  1.26       mrg 				break;
    210  1.26       mrg 			case 'i':
    211  1.26       mrg 				cflags |= REG_ICASE;
    212  1.26       mrg 				break;
    213  1.26       mrg 			case 'l':
    214  1.26       mrg 				longfmt = 1;
    215  1.26       mrg 				break;
    216  1.26       mrg 			case 'n':
    217  1.26       mrg 				newest = 1;
    218  1.26       mrg 				criteria = 1;
    219  1.26       mrg 				break;
    220  1.26       mrg 			case 's':
    221  1.26       mrg 				makelist(&sidlist, LT_SID, optarg);
    222  1.26       mrg 				criteria = 1;
    223  1.26       mrg 				break;
    224  1.26       mrg 			case 't':
    225  1.26       mrg 				makelist(&tdevlist, LT_TTY, optarg);
    226  1.26       mrg 				criteria = 1;
    227  1.26       mrg 				break;
    228  1.26       mrg 			case 'u':
    229  1.26       mrg 				makelist(&euidlist, LT_USER, optarg);
    230  1.26       mrg 				criteria = 1;
    231  1.26       mrg 				break;
    232  1.26       mrg 			case 'v':
    233  1.26       mrg 				inverse = 1;
    234  1.26       mrg 				break;
    235  1.26       mrg 			case 'x':
    236  1.26       mrg 				fullmatch = 1;
    237  1.26       mrg 				break;
    238  1.26       mrg 			default:
    239   1.1        ad 				usage();
    240  1.26       mrg 				/* NOTREACHED */
    241  1.26       mrg 			}
    242  1.27       mrg 		argc -= optind;
    243  1.27       mrg 		argv += optind;
    244  1.26       mrg 	}
    245   1.1        ad 
    246   1.1        ad 	if (argc != 0)
    247   1.1        ad 		criteria = 1;
    248   1.1        ad 	if (!criteria)
    249   1.1        ad 		usage();
    250   1.1        ad 
    251   1.1        ad 	mypid = getpid();
    252   1.1        ad 
    253   1.1        ad 	/*
    254   1.1        ad 	 * Retrieve the list of running processes from the kernel.
    255   1.1        ad 	 */
    256   1.1        ad 	kd = kvm_openfiles(NULL, NULL, NULL, KVM_NO_FILES, buf);
    257   1.1        ad 	if (kd == NULL)
    258  1.11  christos 		errx(STATUS_ERROR, "Cannot open kernel files (%s)", buf);
    259   1.1        ad 
    260   1.1        ad 	plist = kvm_getproc2(kd, KERN_PROC_ALL, 0, sizeof(*plist), &nproc);
    261   1.1        ad 	if (plist == NULL)
    262  1.11  christos 		errx(STATUS_ERROR, "Cannot get process list (%s)",
    263  1.11  christos 		    kvm_geterr(kd));
    264   1.1        ad 
    265   1.1        ad 	/*
    266   1.1        ad 	 * Allocate memory which will be used to keep track of the
    267   1.1        ad 	 * selection.
    268   1.1        ad 	 */
    269  1.12  christos 	if ((selected = calloc((size_t)1, (size_t)nproc)) == NULL)
    270  1.11  christos 		err(STATUS_ERROR, "Cannot allocate memory for %d processes",
    271  1.11  christos 		    nproc);
    272   1.1        ad 
    273   1.1        ad 	/*
    274   1.1        ad 	 * Refine the selection.
    275   1.1        ad 	 */
    276   1.1        ad 	for (; *argv != NULL; argv++) {
    277   1.9    sketch 		if ((rv = regcomp(&reg, *argv, cflags)) != 0) {
    278  1.12  christos 			(void)regerror(rv, &reg, buf, sizeof(buf));
    279  1.11  christos 			errx(STATUS_BADUSAGE,
    280  1.11  christos 			    "Cannot compile regular expression `%s' (%s)",
    281  1.11  christos 			    *argv, buf);
    282   1.1        ad 		}
    283   1.1        ad 
    284   1.1        ad 		for (i = 0, kp = plist; i < nproc; i++, kp++) {
    285  1.20     pavel 			if ((kp->p_flag & P_SYSTEM) != 0 || kp->p_pid == mypid)
    286   1.1        ad 				continue;
    287   1.1        ad 
    288  1.28  christos 			if ((pargv = kvm_getargv2(kd, kp, 0)) == NULL)
    289  1.28  christos 				continue;
    290   1.1        ad 			if (matchargs) {
    291   1.1        ad 
    292   1.1        ad 				j = 0;
    293  1.25     lukem 				while (j < (int)sizeof(buf) && *pargv != NULL) {
    294   1.1        ad 					j += snprintf(buf + j, sizeof(buf) - j,
    295   1.1        ad 					    pargv[1] != NULL ? "%s " : "%s",
    296   1.1        ad 					    pargv[0]);
    297   1.1        ad 					pargv++;
    298   1.1        ad 				}
    299   1.1        ad 			} else
    300  1.28  christos 				strlcpy(buf, pargv[0], sizeof(buf));
    301   1.1        ad 
    302  1.28  christos 			rv = regexec(&reg, buf, 1, &regmatch, 0);
    303   1.1        ad 			if (rv == 0) {
    304   1.1        ad 				if (fullmatch) {
    305   1.1        ad 					if (regmatch.rm_so == 0 &&
    306  1.28  christos 					    regmatch.rm_eo ==
    307  1.28  christos 					    (regoff_t)strlen(buf))
    308   1.1        ad 						selected[i] = 1;
    309   1.1        ad 				} else
    310   1.1        ad 					selected[i] = 1;
    311   1.1        ad 			} else if (rv != REG_NOMATCH) {
    312  1.12  christos 				(void)regerror(rv, &reg, buf, sizeof(buf));
    313  1.11  christos 				errx(STATUS_ERROR,
    314  1.11  christos 				    "Regular expression evaluation error (%s)",
    315  1.11  christos 				    buf);
    316   1.1        ad 			}
    317   1.1        ad 		}
    318   1.1        ad 
    319   1.1        ad 		regfree(&reg);
    320   1.1        ad 	}
    321   1.1        ad 
    322   1.1        ad 	for (i = 0, kp = plist; i < nproc; i++, kp++) {
    323  1.20     pavel 		if ((kp->p_flag & P_SYSTEM) != 0)
    324   1.1        ad 			continue;
    325   1.1        ad 
    326   1.1        ad 		SLIST_FOREACH(li, &ruidlist, li_chain)
    327   1.1        ad 			if (kp->p_ruid == (uid_t)li->li_number)
    328   1.1        ad 				break;
    329   1.1        ad 		if (SLIST_FIRST(&ruidlist) != NULL && li == NULL) {
    330   1.1        ad 			selected[i] = 0;
    331   1.1        ad 			continue;
    332   1.1        ad 		}
    333   1.1        ad 
    334   1.1        ad 		SLIST_FOREACH(li, &rgidlist, li_chain)
    335   1.1        ad 			if (kp->p_rgid == (gid_t)li->li_number)
    336   1.1        ad 				break;
    337   1.1        ad 		if (SLIST_FIRST(&rgidlist) != NULL && li == NULL) {
    338   1.1        ad 			selected[i] = 0;
    339   1.1        ad 			continue;
    340   1.1        ad 		}
    341   1.1        ad 
    342   1.1        ad 		SLIST_FOREACH(li, &euidlist, li_chain)
    343   1.1        ad 			if (kp->p_uid == (uid_t)li->li_number)
    344   1.1        ad 				break;
    345   1.1        ad 		if (SLIST_FIRST(&euidlist) != NULL && li == NULL) {
    346   1.1        ad 			selected[i] = 0;
    347   1.1        ad 			continue;
    348   1.1        ad 		}
    349   1.1        ad 
    350   1.1        ad 		SLIST_FOREACH(li, &ppidlist, li_chain)
    351  1.25     lukem 			if ((uid_t)kp->p_ppid == (uid_t)li->li_number)
    352   1.1        ad 				break;
    353   1.1        ad 		if (SLIST_FIRST(&ppidlist) != NULL && li == NULL) {
    354   1.1        ad 			selected[i] = 0;
    355   1.1        ad 			continue;
    356   1.1        ad 		}
    357   1.1        ad 
    358   1.1        ad 		SLIST_FOREACH(li, &pgrplist, li_chain)
    359  1.25     lukem 			if (kp->p__pgid == (pid_t)li->li_number)
    360   1.1        ad 				break;
    361   1.1        ad 		if (SLIST_FIRST(&pgrplist) != NULL && li == NULL) {
    362   1.1        ad 			selected[i] = 0;
    363   1.1        ad 			continue;
    364   1.1        ad 		}
    365   1.1        ad 
    366   1.1        ad 		SLIST_FOREACH(li, &tdevlist, li_chain) {
    367   1.1        ad 			if (li->li_number == -1 &&
    368  1.20     pavel 			    (kp->p_flag & P_CONTROLT) == 0)
    369   1.1        ad 				break;
    370   1.1        ad 			if (kp->p_tdev == (uid_t)li->li_number)
    371   1.1        ad 				break;
    372   1.1        ad 		}
    373   1.1        ad 		if (SLIST_FIRST(&tdevlist) != NULL && li == NULL) {
    374   1.1        ad 			selected[i] = 0;
    375   1.1        ad 			continue;
    376   1.1        ad 		}
    377   1.1        ad 
    378   1.1        ad 		SLIST_FOREACH(li, &sidlist, li_chain)
    379  1.25     lukem 			if (kp->p_sid == (pid_t)li->li_number)
    380   1.1        ad 				break;
    381   1.1        ad 		if (SLIST_FIRST(&sidlist) != NULL && li == NULL) {
    382   1.1        ad 			selected[i] = 0;
    383   1.1        ad 			continue;
    384   1.1        ad 		}
    385   1.1        ad 
    386   1.1        ad 		if (argc == 0)
    387   1.1        ad 			selected[i] = 1;
    388   1.1        ad 	}
    389   1.1        ad 
    390   1.1        ad 	if (newest) {
    391   1.1        ad 		bestsec = 0;
    392   1.1        ad 		bestusec = 0;
    393   1.1        ad 		bestidx = -1;
    394   1.1        ad 
    395   1.1        ad 		for (i = 0, kp = plist; i < nproc; i++, kp++) {
    396   1.1        ad 			if (!selected[i])
    397   1.1        ad 				continue;
    398   1.1        ad 
    399   1.1        ad 			if (kp->p_ustart_sec > bestsec ||
    400   1.1        ad 			    (kp->p_ustart_sec == bestsec
    401   1.1        ad 			    && kp->p_ustart_usec > bestusec)) {
    402   1.1        ad 			    	bestsec = kp->p_ustart_sec;
    403   1.1        ad 			    	bestusec = kp->p_ustart_usec;
    404   1.1        ad 				bestidx = i;
    405   1.1        ad 			}
    406   1.1        ad 		}
    407   1.1        ad 
    408  1.12  christos 		(void)memset(selected, 0, (size_t)nproc);
    409   1.1        ad 		if (bestidx != -1)
    410   1.1        ad 			selected[bestidx] = 1;
    411   1.1        ad 	}
    412   1.1        ad 
    413   1.1        ad 	/*
    414   1.1        ad 	 * Take the appropriate action for each matched process, if any.
    415   1.1        ad 	 */
    416   1.1        ad 	for (i = 0, rv = 0, kp = plist; i < nproc; i++, kp++) {
    417   1.1        ad 		if (kp->p_pid == mypid)
    418   1.1        ad 			continue;
    419   1.1        ad 		if (selected[i]) {
    420   1.1        ad 			if (inverse)
    421   1.1        ad 				continue;
    422   1.1        ad 		} else if (!inverse)
    423   1.4        ad 			continue;
    424   1.4        ad 
    425  1.20     pavel 		if ((kp->p_flag & P_SYSTEM) != 0)
    426   1.1        ad 			continue;
    427   1.1        ad 
    428  1.10  christos 		rv |= (*action)(kp);
    429   1.1        ad 	}
    430   1.1        ad 
    431  1.12  christos 	return rv ? STATUS_MATCH : STATUS_NOMATCH;
    432   1.1        ad }
    433   1.1        ad 
    434  1.11  christos static void
    435   1.1        ad usage(void)
    436   1.1        ad {
    437   1.1        ad 	const char *ustr;
    438   1.1        ad 
    439  1.26       mrg 	if (prenice)
    440  1.27       mrg 		fprintf(stderr, "Usage: %s [-l] priority pattern ...\n",
    441  1.26       mrg 		    getprogname());
    442  1.26       mrg 	else {
    443  1.26       mrg 		if (pgrep)
    444  1.26       mrg 			ustr = "[-filnvx] [-d delim]";
    445  1.26       mrg 		else
    446  1.26       mrg 			ustr = "[-signal] [-filnvx]";
    447  1.26       mrg 
    448  1.26       mrg 		(void)fprintf(stderr,
    449  1.26       mrg 		    "Usage: %s %s [-G gid] [-g pgrp] [-P ppid] [-s sid] "
    450  1.26       mrg 			   "[-t tty]\n"
    451  1.26       mrg 		    "             [-U uid] [-u euid] pattern ...\n",
    452  1.26       mrg 			      getprogname(), ustr);
    453  1.26       mrg 	}
    454   1.1        ad 
    455  1.16    kleink 	exit(STATUS_BADUSAGE);
    456   1.1        ad }
    457   1.1        ad 
    458  1.11  christos static int
    459  1.14   dsainty killact(const struct kinfo_proc2 *kp)
    460   1.1        ad {
    461  1.21       erh 	if (longfmt)
    462  1.21       erh 		grepact(kp);
    463  1.10  christos 	if (kill(kp->p_pid, signum) == -1) {
    464  1.13   dsainty 
    465  1.13   dsainty 		/*
    466  1.13   dsainty 		 * Check for ESRCH, which indicates that the process
    467  1.13   dsainty 		 * disappeared between us matching it and us
    468  1.15    kleink 		 * signalling it; don't issue a warning about it.
    469  1.13   dsainty 		 */
    470  1.15    kleink 		if (errno != ESRCH)
    471  1.15    kleink 			warn("signalling pid %d", (int)kp->p_pid);
    472   1.1        ad 
    473  1.15    kleink 		/*
    474  1.15    kleink 		 * Return 0 to indicate that the process should not be
    475  1.15    kleink 		 * considered a match, since we didn't actually get to
    476  1.15    kleink 		 * signal it.
    477  1.15    kleink 		 */
    478  1.15    kleink 		return 0;
    479  1.10  christos 	}
    480  1.10  christos 
    481  1.10  christos 	return 1;
    482   1.1        ad }
    483   1.1        ad 
    484  1.11  christos static int
    485  1.26       mrg reniceact(const struct kinfo_proc2 *kp)
    486  1.26       mrg {
    487  1.26       mrg 	int oldprio;
    488  1.26       mrg 
    489  1.26       mrg 	if (longfmt)
    490  1.26       mrg 		grepact(kp);
    491  1.26       mrg 
    492  1.26       mrg 	errno = 0;
    493  1.26       mrg 	if ((oldprio = getpriority(PRIO_PROCESS, kp->p_pid)) == -1 &&
    494  1.26       mrg 	    errno != 0) {
    495  1.26       mrg 		warn("%d: getpriority", kp->p_pid);
    496  1.26       mrg 		return 0;
    497  1.26       mrg 	}
    498  1.26       mrg 
    499  1.26       mrg 	if (setpriority(PRIO_PROCESS, kp->p_pid, nicenum) == -1) {
    500  1.26       mrg 		warn("%d: setpriority", kp->p_pid);
    501  1.26       mrg 		return 0;
    502  1.26       mrg 	}
    503  1.26       mrg 
    504  1.26       mrg 	(void)printf("%d: old priority %d, new priority %d\n",
    505  1.26       mrg 	    kp->p_pid, oldprio, nicenum);
    506  1.26       mrg 
    507  1.26       mrg 	return 1;
    508  1.26       mrg }
    509  1.26       mrg 
    510  1.26       mrg static int
    511  1.14   dsainty grepact(const struct kinfo_proc2 *kp)
    512   1.1        ad {
    513   1.1        ad 	char **argv;
    514   1.1        ad 
    515   1.1        ad 	if (longfmt && matchargs) {
    516  1.13   dsainty 
    517  1.13   dsainty 		/*
    518  1.13   dsainty 		 * If kvm_getargv2() failed the process has probably
    519  1.13   dsainty 		 * disappeared.  Return 0 to indicate that the process
    520  1.13   dsainty 		 * should not be considered a match, since we are no
    521  1.13   dsainty 		 * longer in a position to output it as a match.
    522  1.13   dsainty 		 */
    523   1.1        ad 		if ((argv = kvm_getargv2(kd, kp, 0)) == NULL)
    524  1.10  christos 			return 0;
    525   1.1        ad 
    526  1.11  christos 		(void)printf("%d ", (int)kp->p_pid);
    527   1.1        ad 		for (; *argv != NULL; argv++) {
    528  1.11  christos 			(void)printf("%s", *argv);
    529   1.1        ad 			if (argv[1] != NULL)
    530  1.11  christos 				(void)putchar(' ');
    531   1.1        ad 		}
    532   1.1        ad 	} else if (longfmt)
    533  1.11  christos 		(void)printf("%d %s", (int)kp->p_pid, kp->p_comm);
    534   1.1        ad 	else
    535  1.11  christos 		(void)printf("%d", (int)kp->p_pid);
    536   1.1        ad 
    537  1.11  christos 	(void)printf("%s", delim);
    538  1.10  christos 
    539  1.10  christos 	return 1;
    540   1.1        ad }
    541   1.1        ad 
    542  1.11  christos static void
    543   1.1        ad makelist(struct listhead *head, enum listtype type, char *src)
    544   1.1        ad {
    545   1.1        ad 	struct list *li;
    546   1.1        ad 	struct passwd *pw;
    547   1.1        ad 	struct group *gr;
    548   1.1        ad 	struct stat st;
    549  1.11  christos 	char *sp, *ep, buf[MAXPATHLEN];
    550  1.11  christos 	const char *p;
    551   1.1        ad 	int empty;
    552  1.11  christos 	const char *prefix = _PATH_DEV;
    553   1.1        ad 
    554   1.1        ad 	empty = 1;
    555   1.1        ad 
    556   1.1        ad 	while ((sp = strsep(&src, ",")) != NULL) {
    557   1.1        ad 		if (*sp == '\0')
    558   1.1        ad 			usage();
    559   1.1        ad 
    560   1.1        ad 		if ((li = malloc(sizeof(*li))) == NULL)
    561  1.28  christos 			err(STATUS_ERROR, "Cannot allocate %zu bytes",
    562  1.11  christos 			    sizeof(*li));
    563   1.1        ad 		SLIST_INSERT_HEAD(head, li, li_chain);
    564   1.1        ad 		empty = 0;
    565   1.1        ad 
    566  1.11  christos 		li->li_number = (uid_t)strtol(sp, &ep, 0);
    567  1.24  christos 		if (*ep == '\0' && type != LT_TTY) {
    568   1.1        ad 			switch (type) {
    569   1.1        ad 			case LT_PGRP:
    570   1.1        ad 				if (li->li_number == 0)
    571   1.1        ad 					li->li_number = getpgrp();
    572   1.1        ad 				break;
    573   1.1        ad 			case LT_SID:
    574   1.1        ad 				if (li->li_number == 0)
    575   1.1        ad 					li->li_number = getsid(mypid);
    576   1.1        ad 				break;
    577   1.1        ad 			default:
    578   1.1        ad 				break;
    579   1.1        ad 			}
    580   1.1        ad 			continue;
    581   1.1        ad 		}
    582   1.1        ad 
    583   1.1        ad 		switch (type) {
    584   1.1        ad 		case LT_USER:
    585   1.1        ad 			if ((pw = getpwnam(sp)) == NULL)
    586  1.11  christos 				errx(STATUS_BADUSAGE, "Unknown user `%s'",
    587   1.8       abs 				    sp);
    588   1.1        ad 			li->li_number = pw->pw_uid;
    589   1.1        ad 			break;
    590   1.1        ad 		case LT_GROUP:
    591   1.1        ad 			if ((gr = getgrnam(sp)) == NULL)
    592  1.11  christos 				errx(STATUS_BADUSAGE, "Unknown group `%s'",
    593   1.8       abs 				    sp);
    594   1.1        ad 			li->li_number = gr->gr_gid;
    595   1.1        ad 			break;
    596   1.1        ad 		case LT_TTY:
    597  1.24  christos 			p = sp;
    598  1.24  christos 			if (*sp == '/')
    599  1.24  christos 				prefix = "";
    600  1.24  christos 			else if (strcmp(sp, "-") == 0) {
    601   1.1        ad 				li->li_number = -1;
    602   1.1        ad 				break;
    603   1.1        ad 			} else if (strcmp(sp, "co") == 0)
    604   1.1        ad 				p = "console";
    605   1.1        ad 			else if (strncmp(sp, "tty", 3) == 0)
    606  1.24  christos 				/* all set */;
    607  1.24  christos 			else if (strncmp(sp, "pts/", 4) == 0)
    608  1.24  christos 				/* all set */;
    609  1.24  christos 			else if (*ep != '\0' || (strlen(sp) == 2 && *sp == '0'))
    610  1.11  christos 				prefix = _PATH_TTY;
    611  1.24  christos 			else
    612  1.24  christos 				prefix = _PATH_DEV_PTS;
    613   1.1        ad 
    614  1.11  christos 			(void)snprintf(buf, sizeof(buf), "%s%s", prefix, p);
    615   1.1        ad 
    616  1.11  christos 			if (stat(buf, &st) == -1) {
    617   1.1        ad 				if (errno == ENOENT)
    618   1.1        ad 					errx(STATUS_BADUSAGE,
    619  1.24  christos 					    "No such tty: `%s'", buf);
    620  1.24  christos 				err(STATUS_ERROR, "Cannot access `%s'", buf);
    621   1.1        ad 			}
    622   1.1        ad 
    623   1.1        ad 			if ((st.st_mode & S_IFCHR) == 0)
    624  1.24  christos 				errx(STATUS_BADUSAGE, "Not a tty: `%s'", buf);
    625   1.1        ad 
    626   1.1        ad 			li->li_number = st.st_rdev;
    627   1.1        ad 			break;
    628   1.1        ad 		default:
    629   1.1        ad 			usage();
    630  1.11  christos 		}
    631   1.1        ad 	}
    632   1.1        ad 
    633   1.1        ad 	if (empty)
    634   1.1        ad 		usage();
    635   1.1        ad }
    636