Home | History | Annotate | Line # | Download | only in ps
ps.c revision 1.36
      1  1.36    simonb /*	$NetBSD: ps.c,v 1.36 2000/04/15 04:40:46 simonb Exp $	*/
      2  1.13       cgd 
      3   1.1       cgd /*-
      4  1.11       cgd  * Copyright (c) 1990, 1993, 1994
      5  1.11       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *	This product includes software developed by the University of
     18   1.1       cgd  *	California, Berkeley and its contributors.
     19   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       cgd  *    may be used to endorse or promote products derived from this software
     21   1.1       cgd  *    without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       cgd  * SUCH DAMAGE.
     34   1.1       cgd  */
     35   1.1       cgd 
     36  1.19  christos #include <sys/cdefs.h>
     37   1.1       cgd #ifndef lint
     38  1.19  christos __COPYRIGHT("@(#) Copyright (c) 1990, 1993, 1994\n\
     39  1.19  christos 	The Regents of the University of California.  All rights reserved.\n");
     40   1.1       cgd #endif /* not lint */
     41   1.1       cgd 
     42   1.1       cgd #ifndef lint
     43  1.13       cgd #if 0
     44  1.11       cgd static char sccsid[] = "@(#)ps.c	8.4 (Berkeley) 4/2/94";
     45  1.13       cgd #else
     46  1.36    simonb __RCSID("$NetBSD: ps.c,v 1.36 2000/04/15 04:40:46 simonb Exp $");
     47  1.13       cgd #endif
     48   1.1       cgd #endif /* not lint */
     49   1.1       cgd 
     50   1.1       cgd #include <sys/param.h>
     51   1.1       cgd #include <sys/user.h>
     52   1.1       cgd #include <sys/time.h>
     53   1.1       cgd #include <sys/resource.h>
     54   1.1       cgd #include <sys/proc.h>
     55   1.1       cgd #include <sys/stat.h>
     56   1.1       cgd #include <sys/ioctl.h>
     57  1.11       cgd #include <sys/sysctl.h>
     58  1.11       cgd 
     59  1.11       cgd #include <ctype.h>
     60  1.11       cgd #include <err.h>
     61  1.11       cgd #include <errno.h>
     62  1.11       cgd #include <fcntl.h>
     63  1.11       cgd #include <kvm.h>
     64  1.17        pk #include <limits.h>
     65   1.1       cgd #include <nlist.h>
     66  1.11       cgd #include <paths.h>
     67  1.25   mycroft #include <pwd.h>
     68   1.1       cgd #include <stdio.h>
     69   1.1       cgd #include <stdlib.h>
     70   1.1       cgd #include <string.h>
     71  1.11       cgd #include <unistd.h>
     72  1.11       cgd 
     73   1.1       cgd #include "ps.h"
     74   1.1       cgd 
     75  1.10       cgd #ifdef P_PPWAIT
     76   1.1       cgd #define NEWVM
     77   1.1       cgd #endif
     78   1.1       cgd 
     79   1.1       cgd KINFO *kinfo;
     80   1.1       cgd struct varent *vhead, *vtail;
     81   1.1       cgd 
     82   1.1       cgd int	eval;			/* exit value */
     83   1.1       cgd int	rawcpu;			/* -C */
     84   1.1       cgd int	sumrusage;		/* -S */
     85  1.28  bgrayson int	dontuseprocfs=0;	/* -K */
     86   1.1       cgd int	termwidth;		/* width of screen (0 == infinity) */
     87   1.1       cgd int	totwidth;		/* calculated width of requested variables */
     88   1.1       cgd 
     89  1.31  jdolecek int	needuser, needcomm, needenv, commandonly, use_procfs;
     90  1.33    simonb uid_t	myuid;
     91   1.1       cgd 
     92   1.1       cgd enum sort { DEFAULT, SORTMEM, SORTCPU } sortby = DEFAULT;
     93   1.1       cgd 
     94  1.29  jdolecek static KINFO	*getkinfo_kvm __P((kvm_t *, int, int, int *, int));
     95  1.11       cgd static char	*kludge_oldps_options __P((char *));
     96  1.11       cgd static int	 pscomp __P((const void *, const void *));
     97  1.11       cgd static void	 saveuser __P((KINFO *));
     98  1.11       cgd static void	 scanvars __P((void));
     99  1.11       cgd static void	 usage __P((void));
    100  1.19  christos int		 main __P((int, char *[]));
    101   1.1       cgd 
    102   1.1       cgd char dfmt[] = "pid tt state time command";
    103   1.1       cgd char jfmt[] = "user pid ppid pgid sess jobc state tt time command";
    104   1.1       cgd char lfmt[] = "uid pid ppid cpu pri nice vsz rss wchan state tt time command";
    105   1.1       cgd char   o1[] = "pid";
    106   1.1       cgd char   o2[] = "tt state time command";
    107   1.1       cgd char ufmt[] = "user pid %cpu %mem vsz rss tt state start time command";
    108  1.11       cgd char vfmt[] = "pid state time sl re pagein vsz rss lim tsiz %cpu %mem command";
    109  1.11       cgd 
    110  1.11       cgd kvm_t *kd;
    111   1.1       cgd 
    112  1.11       cgd int
    113   1.1       cgd main(argc, argv)
    114   1.1       cgd 	int argc;
    115  1.11       cgd 	char *argv[];
    116   1.1       cgd {
    117  1.11       cgd 	struct varent *vent;
    118   1.1       cgd 	struct winsize ws;
    119  1.21       mrg 	gid_t egid = getegid();
    120  1.25   mycroft 	int ch, flag, i, fmt, lineno, nentries;
    121  1.11       cgd 	int prtheader, wflag, what, xflg;
    122  1.17        pk 	char *nlistf, *memf, *swapf, errbuf[_POSIX2_LINE_MAX];
    123  1.26       kim 	char *ttname;
    124   1.1       cgd 
    125  1.21       mrg 	(void)setegid(getgid());
    126   1.1       cgd 	if ((ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&ws) == -1 &&
    127   1.1       cgd 	     ioctl(STDERR_FILENO, TIOCGWINSZ, (char *)&ws) == -1 &&
    128   1.1       cgd 	     ioctl(STDIN_FILENO,  TIOCGWINSZ, (char *)&ws) == -1) ||
    129   1.1       cgd 	     ws.ws_col == 0)
    130   1.1       cgd 		termwidth = 79;
    131   1.1       cgd 	else
    132   1.1       cgd 		termwidth = ws.ws_col - 1;
    133   1.1       cgd 
    134   1.1       cgd 	if (argc > 1)
    135   1.1       cgd 		argv[1] = kludge_oldps_options(argv[1]);
    136   1.1       cgd 
    137  1.25   mycroft 	fmt = prtheader = wflag = xflg = 0;
    138  1.25   mycroft 	what = KERN_PROC_UID;
    139  1.33    simonb 	flag = myuid = getuid();
    140   1.1       cgd 	memf = nlistf = swapf = NULL;
    141   1.1       cgd 	while ((ch = getopt(argc, argv,
    142  1.28  bgrayson 	    "acCeghjKLlM:mN:O:o:p:rSTt:U:uvW:wx")) != -1)
    143   1.1       cgd 		switch((char)ch) {
    144   1.1       cgd 		case 'a':
    145  1.25   mycroft 			what = KERN_PROC_ALL;
    146  1.25   mycroft 			flag = 0;
    147   1.1       cgd 			break;
    148  1.12   mycroft 		case 'c':
    149  1.12   mycroft 			commandonly = 1;
    150  1.12   mycroft 			break;
    151  1.11       cgd 		case 'e':			/* XXX set ufmt */
    152  1.11       cgd 			needenv = 1;
    153  1.11       cgd 			break;
    154   1.1       cgd 		case 'C':
    155   1.1       cgd 			rawcpu = 1;
    156   1.1       cgd 			break;
    157   1.1       cgd 		case 'g':
    158  1.11       cgd 			break;			/* no-op */
    159   1.1       cgd 		case 'h':
    160   1.1       cgd 			prtheader = ws.ws_row > 5 ? ws.ws_row : 22;
    161   1.1       cgd 			break;
    162   1.1       cgd 		case 'j':
    163   1.1       cgd 			parsefmt(jfmt);
    164  1.15   mycroft 			fmt = 1;
    165   1.1       cgd 			jfmt[0] = '\0';
    166   1.1       cgd 			break;
    167  1.28  bgrayson 		case 'K':
    168  1.28  bgrayson 			dontuseprocfs=1;
    169  1.28  bgrayson 			break;
    170  1.11       cgd 		case 'L':
    171   1.1       cgd 			showkey();
    172   1.1       cgd 			exit(0);
    173  1.23   mycroft 			/* NOTREACHED */
    174   1.1       cgd 		case 'l':
    175   1.1       cgd 			parsefmt(lfmt);
    176  1.15   mycroft 			fmt = 1;
    177   1.1       cgd 			lfmt[0] = '\0';
    178   1.1       cgd 			break;
    179   1.1       cgd 		case 'M':
    180   1.1       cgd 			memf = optarg;
    181  1.35       chs 			dontuseprocfs = 1;
    182   1.1       cgd 			break;
    183   1.1       cgd 		case 'm':
    184   1.1       cgd 			sortby = SORTMEM;
    185   1.1       cgd 			break;
    186   1.1       cgd 		case 'N':
    187   1.1       cgd 			nlistf = optarg;
    188   1.1       cgd 			break;
    189   1.1       cgd 		case 'O':
    190   1.1       cgd 			parsefmt(o1);
    191   1.1       cgd 			parsefmt(optarg);
    192   1.1       cgd 			parsefmt(o2);
    193   1.1       cgd 			o1[0] = o2[0] = '\0';
    194  1.15   mycroft 			fmt = 1;
    195   1.1       cgd 			break;
    196   1.1       cgd 		case 'o':
    197   1.1       cgd 			parsefmt(optarg);
    198  1.15   mycroft 			fmt = 1;
    199   1.1       cgd 			break;
    200   1.1       cgd 		case 'p':
    201  1.25   mycroft 			what = KERN_PROC_PID;
    202  1.25   mycroft 			flag = atol(optarg);
    203   1.1       cgd 			xflg = 1;
    204   1.1       cgd 			break;
    205   1.1       cgd 		case 'r':
    206   1.1       cgd 			sortby = SORTCPU;
    207   1.1       cgd 			break;
    208   1.1       cgd 		case 'S':
    209   1.1       cgd 			sumrusage = 1;
    210   1.1       cgd 			break;
    211   1.1       cgd 		case 'T':
    212  1.22   mycroft 			if ((ttname = ttyname(STDIN_FILENO)) == NULL)
    213  1.11       cgd 				errx(1, "stdin: not a terminal");
    214  1.22   mycroft 			goto tty;
    215  1.22   mycroft 		case 't':
    216  1.22   mycroft 			ttname = optarg;
    217  1.22   mycroft 		tty: {
    218  1.11       cgd 			struct stat sb;
    219  1.11       cgd 			char *ttypath, pathbuf[MAXPATHLEN];
    220   1.1       cgd 
    221  1.36    simonb 			flag = 0;
    222  1.36    simonb 			if (strcmp(ttname, "?") == 0)
    223  1.36    simonb 				flag = KERN_PROC_TTY_NODEV;
    224  1.36    simonb 			else if (strcmp(ttname, "-") == 0)
    225  1.36    simonb 				flag = KERN_PROC_TTY_REVOKE;
    226  1.36    simonb 			else if (strcmp(ttname, "co") == 0)
    227   1.1       cgd 				ttypath = _PATH_CONSOLE;
    228  1.26       kim 			else if (*ttname != '/')
    229  1.11       cgd 				(void)snprintf(ttypath = pathbuf,
    230  1.26       kim 				    sizeof(pathbuf), "%s%s", _PATH_TTY, ttname);
    231   1.1       cgd 			else
    232  1.26       kim 				ttypath = ttname;
    233  1.25   mycroft 			what = KERN_PROC_TTY;
    234  1.36    simonb 			if (flag == 0) {
    235  1.36    simonb 				if (stat(ttypath, &sb) == -1)
    236  1.36    simonb 					err(1, "%s", ttypath);
    237  1.36    simonb 				if (!S_ISCHR(sb.st_mode))
    238  1.36    simonb 					errx(1, "%s: not a terminal", ttypath);
    239  1.36    simonb 				flag = sb.st_rdev;
    240  1.36    simonb 			}
    241   1.1       cgd 			break;
    242   1.1       cgd 		}
    243  1.25   mycroft 		case 'U':
    244  1.25   mycroft 			if (*optarg != '\0') {
    245  1.25   mycroft 				struct passwd *pw;
    246  1.25   mycroft 				char *ep;
    247  1.25   mycroft 
    248  1.25   mycroft 				what = KERN_PROC_UID;
    249  1.25   mycroft 				pw = getpwnam(optarg);
    250  1.25   mycroft 				if (pw == NULL) {
    251  1.25   mycroft 					errno = 0;
    252  1.25   mycroft 					flag = strtoul(optarg, &ep, 10);
    253  1.25   mycroft 					if (errno)
    254  1.25   mycroft 						err(1, "%s", optarg);
    255  1.25   mycroft 					if (*ep != '\0')
    256  1.25   mycroft 						errx(1, "%s: illegal user name",
    257  1.25   mycroft 						    optarg);
    258  1.25   mycroft 				} else
    259  1.25   mycroft 					flag = pw->pw_uid;
    260  1.25   mycroft 			}
    261  1.25   mycroft 			break;
    262   1.1       cgd 		case 'u':
    263   1.1       cgd 			parsefmt(ufmt);
    264   1.1       cgd 			sortby = SORTCPU;
    265  1.15   mycroft 			fmt = 1;
    266   1.1       cgd 			ufmt[0] = '\0';
    267   1.1       cgd 			break;
    268   1.1       cgd 		case 'v':
    269   1.1       cgd 			parsefmt(vfmt);
    270   1.1       cgd 			sortby = SORTMEM;
    271  1.15   mycroft 			fmt = 1;
    272   1.1       cgd 			vfmt[0] = '\0';
    273   1.1       cgd 			break;
    274   1.1       cgd 		case 'W':
    275   1.1       cgd 			swapf = optarg;
    276   1.1       cgd 			break;
    277   1.1       cgd 		case 'w':
    278   1.6       cgd 			if (wflag)
    279   1.6       cgd 				termwidth = UNLIMITED;
    280   1.6       cgd 			else if (termwidth < 131)
    281   1.1       cgd 				termwidth = 131;
    282  1.11       cgd 			wflag++;
    283   1.1       cgd 			break;
    284   1.1       cgd 		case 'x':
    285   1.1       cgd 			xflg = 1;
    286   1.1       cgd 			break;
    287   1.1       cgd 		case '?':
    288   1.1       cgd 		default:
    289   1.1       cgd 			usage();
    290   1.1       cgd 		}
    291   1.1       cgd 	argc -= optind;
    292   1.1       cgd 	argv += optind;
    293   1.1       cgd 
    294   1.1       cgd #define	BACKWARD_COMPATIBILITY
    295   1.1       cgd #ifdef	BACKWARD_COMPATIBILITY
    296   1.1       cgd 	if (*argv) {
    297   1.1       cgd 		nlistf = *argv;
    298   1.1       cgd 		if (*++argv) {
    299   1.1       cgd 			memf = *argv;
    300   1.1       cgd 			if (*++argv)
    301   1.1       cgd 				swapf = *argv;
    302   1.1       cgd 		}
    303   1.1       cgd 	}
    304   1.1       cgd #endif
    305  1.11       cgd 	/*
    306  1.21       mrg 	 * Discard setgid privileges.  If not the running kernel, we toss
    307  1.21       mrg 	 * them away totally so that bad guys can't print interesting stuff
    308  1.21       mrg 	 * from kernel memory, otherwise switch back to kmem for the
    309  1.21       mrg 	 * duration of the kvm_openfiles() call.
    310  1.11       cgd 	 */
    311  1.11       cgd 	if (nlistf != NULL || memf != NULL || swapf != NULL)
    312  1.21       mrg 		(void)setgid(getgid());
    313  1.21       mrg 	else
    314  1.21       mrg 		(void)setegid(egid);
    315  1.11       cgd 
    316  1.11       cgd 	kd = kvm_openfiles(nlistf, memf, swapf, O_RDONLY, errbuf);
    317  1.29  jdolecek 	if (kd == 0) {
    318  1.29  jdolecek 		if (dontuseprocfs)
    319  1.29  jdolecek 			errx(1, "%s", errbuf);
    320  1.29  jdolecek 		else {
    321  1.29  jdolecek 			warnx("kvm_openfiles: %s", errbuf);
    322  1.29  jdolecek 			fprintf(stderr, "ps: falling back to /proc-based lookup\n");
    323  1.29  jdolecek 		}
    324  1.29  jdolecek 	}
    325  1.21       mrg 
    326  1.21       mrg 	if (nlistf == NULL && memf == NULL && swapf == NULL)
    327  1.21       mrg 		(void)setgid(getgid());
    328   1.1       cgd 
    329  1.15   mycroft 	if (!fmt)
    330   1.1       cgd 		parsefmt(dfmt);
    331   1.1       cgd 
    332   1.1       cgd 	/*
    333   1.1       cgd 	 * scan requested variables, noting what structures are needed,
    334   1.1       cgd 	 * and adjusting header widths as appropiate.
    335   1.1       cgd 	 */
    336   1.1       cgd 	scanvars();
    337  1.29  jdolecek 
    338   1.1       cgd 	/*
    339   1.1       cgd 	 * select procs
    340   1.1       cgd 	 */
    341  1.29  jdolecek 	if (!kd || !(kinfo = getkinfo_kvm(kd, what, flag, &nentries, needuser)))
    342  1.27  bgrayson 	{
    343  1.28  bgrayson 		/*  If/when the /proc-based code is ripped out
    344  1.28  bgrayson 		 *  again, make sure all references to the -K
    345  1.28  bgrayson 		 *  option are also pulled (getopt(), usage(),
    346  1.28  bgrayson 		 *  man page).  See the man page comments about
    347  1.28  bgrayson 		 *  this for more details.  */
    348  1.27  bgrayson 	  	/*  sysctl() ought to provide some sort of
    349  1.27  bgrayson 		 *  always-working-but-minimal-functionality
    350  1.27  bgrayson 		 *  method of providing at least some of the
    351  1.27  bgrayson 		 *  process information.  Unfortunately, such a
    352  1.27  bgrayson 		 *  change will require too much work to be put
    353  1.27  bgrayson 		 *  into 1.4.  For now, enable this experimental
    354  1.27  bgrayson 		 *  /proc-based support instead (if /proc is
    355  1.27  bgrayson 		 *  mounted) to grab as much information as we can.
    356  1.27  bgrayson 		 *  The guts of emulating kvm_getprocs() is in
    357  1.27  bgrayson 		 *  the file procfs_ops.c.  */
    358  1.29  jdolecek 		if (kd)
    359  1.29  jdolecek 			warnx("%s.", kvm_geterr(kd));
    360  1.28  bgrayson 		if (dontuseprocfs) {
    361  1.28  bgrayson 			exit(1);
    362  1.28  bgrayson 		}
    363  1.27  bgrayson 		/*  procfs_getprocs supports all but the
    364  1.27  bgrayson 		 *  KERN_PROC_RUID flag.  */
    365  1.29  jdolecek 		kinfo = getkinfo_procfs(what, flag, &nentries);
    366  1.29  jdolecek 		if (kinfo == 0) {
    367  1.28  bgrayson 		  errx(1, "fallback /proc-based lookup also failed.  %s",
    368  1.28  bgrayson 				  "Giving up...");
    369  1.27  bgrayson 		}
    370  1.28  bgrayson 		fprintf(stderr, "%s%s",
    371  1.28  bgrayson 		    "Warning:  /proc does not provide ",
    372  1.28  bgrayson 		    "valid data for all fields.\n");
    373  1.31  jdolecek 		use_procfs = 1;
    374  1.27  bgrayson 	}
    375  1.29  jdolecek 
    376   1.1       cgd 	/*
    377   1.1       cgd 	 * print header
    378   1.1       cgd 	 */
    379   1.1       cgd 	printheader();
    380  1.24   mycroft 	if (nentries == 0)
    381   1.1       cgd 		exit(0);
    382   1.1       cgd 	/*
    383   1.1       cgd 	 * sort proc list
    384   1.1       cgd 	 */
    385  1.11       cgd 	qsort(kinfo, nentries, sizeof(KINFO), pscomp);
    386   1.1       cgd 	/*
    387   1.1       cgd 	 * for each proc, call each variable output function.
    388   1.1       cgd 	 */
    389   1.1       cgd 	for (i = lineno = 0; i < nentries; i++) {
    390  1.14   mycroft 		KINFO *ki = &kinfo[i];
    391  1.14   mycroft 
    392  1.14   mycroft 		if (xflg == 0 && (KI_EPROC(ki)->e_tdev == NODEV ||
    393  1.14   mycroft 		    (KI_PROC(ki)->p_flag & P_CONTROLT ) == 0))
    394   1.1       cgd 			continue;
    395   1.1       cgd 		for (vent = vhead; vent; vent = vent->next) {
    396  1.14   mycroft 			(vent->var->oproc)(ki, vent);
    397   1.1       cgd 			if (vent->next != NULL)
    398  1.11       cgd 				(void)putchar(' ');
    399   1.1       cgd 		}
    400  1.11       cgd 		(void)putchar('\n');
    401  1.11       cgd 		if (prtheader && lineno++ == prtheader - 4) {
    402  1.11       cgd 			(void)putchar('\n');
    403   1.1       cgd 			printheader();
    404   1.1       cgd 			lineno = 0;
    405   1.1       cgd 		}
    406   1.1       cgd 	}
    407   1.1       cgd 	exit(eval);
    408  1.23   mycroft 	/* NOTREACHED */
    409   1.1       cgd }
    410   1.1       cgd 
    411  1.29  jdolecek static KINFO *
    412  1.29  jdolecek getkinfo_kvm(kd, what, flag, nentriesp, needuser)
    413  1.29  jdolecek 	kvm_t *kd;
    414  1.29  jdolecek 	int what, flag, *nentriesp, needuser;
    415  1.29  jdolecek {
    416  1.29  jdolecek 	struct kinfo_proc *kp;
    417  1.29  jdolecek 	KINFO *kinfo=NULL;
    418  1.29  jdolecek 	size_t i;
    419  1.29  jdolecek 
    420  1.29  jdolecek 	if ((kp = kvm_getprocs(kd, what, flag, nentriesp)) != 0)
    421  1.29  jdolecek 	{
    422  1.29  jdolecek 		if ((kinfo = malloc((*nentriesp) * sizeof(*kinfo))) == NULL)
    423  1.32  drochner 			err(1, NULL);
    424  1.30  jdolecek 		for (i = (*nentriesp); i-- > 0; kp++) {
    425  1.29  jdolecek 			kinfo[i].ki_p = kp;
    426  1.29  jdolecek 			if (needuser)
    427  1.29  jdolecek 				saveuser(&kinfo[i]);
    428  1.29  jdolecek 		}
    429  1.29  jdolecek 	}
    430  1.29  jdolecek 
    431  1.29  jdolecek 	return (kinfo);
    432  1.29  jdolecek }
    433  1.29  jdolecek 
    434  1.11       cgd static void
    435   1.1       cgd scanvars()
    436   1.1       cgd {
    437  1.11       cgd 	struct varent *vent;
    438  1.11       cgd 	VAR *v;
    439  1.11       cgd 	int i;
    440   1.1       cgd 
    441   1.1       cgd 	for (vent = vhead; vent; vent = vent->next) {
    442   1.1       cgd 		v = vent->var;
    443   1.1       cgd 		i = strlen(v->header);
    444   1.1       cgd 		if (v->width < i)
    445   1.1       cgd 			v->width = i;
    446   1.1       cgd 		totwidth += v->width + 1;	/* +1 for space */
    447   1.1       cgd 		if (v->flag & USER)
    448   1.1       cgd 			needuser = 1;
    449   1.1       cgd 		if (v->flag & COMM)
    450   1.1       cgd 			needcomm = 1;
    451   1.1       cgd 	}
    452   1.1       cgd 	totwidth--;
    453  1.11       cgd }
    454   1.1       cgd 
    455  1.11       cgd static void
    456   1.1       cgd saveuser(ki)
    457   1.1       cgd 	KINFO *ki;
    458   1.1       cgd {
    459  1.11       cgd 	struct pstats pstats;
    460  1.11       cgd 	struct usave *usp;
    461   1.5       cgd 
    462  1.11       cgd 	usp = &ki->ki_u;
    463  1.30  jdolecek 	if (kvm_read(kd, (u_long)&KI_PROC(ki)->p_addr->u_stats,
    464  1.11       cgd 	    (char *)&pstats, sizeof(pstats)) == sizeof(pstats)) {
    465   1.1       cgd 		/*
    466  1.11       cgd 		 * The u-area might be swapped out, and we can't get
    467  1.11       cgd 		 * at it because we have a crashdump and no swap.
    468  1.11       cgd 		 * If it's here fill in these fields, otherwise, just
    469  1.11       cgd 		 * leave them 0.
    470   1.1       cgd 		 */
    471  1.11       cgd 		usp->u_start = pstats.p_start;
    472  1.11       cgd 		usp->u_ru = pstats.p_ru;
    473  1.11       cgd 		usp->u_cru = pstats.p_cru;
    474  1.11       cgd 		usp->u_valid = 1;
    475   1.1       cgd 	} else
    476  1.11       cgd 		usp->u_valid = 0;
    477   1.1       cgd }
    478   1.1       cgd 
    479  1.11       cgd static int
    480  1.11       cgd pscomp(a, b)
    481  1.11       cgd 	const void *a, *b;
    482   1.1       cgd {
    483   1.1       cgd 	int i;
    484   1.1       cgd #ifdef NEWVM
    485  1.11       cgd #define VSIZE(k) (KI_EPROC(k)->e_vm.vm_dsize + KI_EPROC(k)->e_vm.vm_ssize + \
    486  1.11       cgd 		  KI_EPROC(k)->e_vm.vm_tsize)
    487   1.1       cgd #else
    488   1.1       cgd #define VSIZE(k) ((k)->ki_p->p_dsize + (k)->ki_p->p_ssize + (k)->ki_e->e_xsize)
    489   1.1       cgd #endif
    490   1.1       cgd 
    491   1.1       cgd 	if (sortby == SORTCPU)
    492  1.11       cgd 		return (getpcpu((KINFO *)b) - getpcpu((KINFO *)a));
    493   1.1       cgd 	if (sortby == SORTMEM)
    494  1.11       cgd 		return (VSIZE((KINFO *)b) - VSIZE((KINFO *)a));
    495  1.11       cgd 	i =  KI_EPROC((KINFO *)a)->e_tdev - KI_EPROC((KINFO *)b)->e_tdev;
    496   1.1       cgd 	if (i == 0)
    497  1.11       cgd 		i = KI_PROC((KINFO *)a)->p_pid - KI_PROC((KINFO *)b)->p_pid;
    498   1.1       cgd 	return (i);
    499   1.1       cgd }
    500   1.1       cgd 
    501   1.1       cgd /*
    502   1.1       cgd  * ICK (all for getopt), would rather hide the ugliness
    503   1.1       cgd  * here than taint the main code.
    504   1.1       cgd  *
    505   1.1       cgd  *  ps foo -> ps -foo
    506   1.1       cgd  *  ps 34 -> ps -p34
    507   1.1       cgd  *
    508  1.25   mycroft  * The old convention that 't' with no trailing tty arg means the user's
    509   1.1       cgd  * tty, is only supported if argv[1] doesn't begin with a '-'.  This same
    510   1.1       cgd  * feature is available with the option 'T', which takes no argument.
    511   1.1       cgd  */
    512  1.11       cgd static char *
    513   1.1       cgd kludge_oldps_options(s)
    514   1.1       cgd 	char *s;
    515   1.1       cgd {
    516   1.1       cgd 	size_t len;
    517   1.1       cgd 	char *newopts, *ns, *cp;
    518   1.1       cgd 
    519   1.1       cgd 	len = strlen(s);
    520  1.16   thorpej 	if ((newopts = ns = malloc(len + 3)) == NULL)
    521  1.32  drochner 		err(1, NULL);
    522   1.1       cgd 	/*
    523   1.1       cgd 	 * options begin with '-'
    524   1.1       cgd 	 */
    525   1.1       cgd 	if (*s != '-')
    526   1.1       cgd 		*ns++ = '-';	/* add option flag */
    527   1.1       cgd 	/*
    528   1.1       cgd 	 * gaze to end of argv[1]
    529   1.1       cgd 	 */
    530   1.1       cgd 	cp = s + len - 1;
    531   1.1       cgd 	/*
    532   1.1       cgd 	 * if last letter is a 't' flag with no argument (in the context
    533   1.1       cgd 	 * of the oldps options -- option string NOT starting with a '-' --
    534   1.1       cgd 	 * then convert to 'T' (meaning *this* terminal, i.e. ttyname(0)).
    535   1.1       cgd 	 */
    536   1.1       cgd 	if (*cp == 't' && *s != '-')
    537   1.1       cgd 		*cp = 'T';
    538   1.1       cgd 	else {
    539   1.1       cgd 		/*
    540   1.1       cgd 		 * otherwise check for trailing number, which *may* be a
    541   1.1       cgd 		 * pid.
    542   1.1       cgd 		 */
    543   1.1       cgd 		while (cp >= s && isdigit(*cp))
    544   1.1       cgd 			--cp;
    545   1.1       cgd 	}
    546   1.1       cgd 	cp++;
    547  1.11       cgd 	memmove(ns, s, (size_t)(cp - s));	/* copy up to trailing number */
    548   1.1       cgd 	ns += cp - s;
    549   1.1       cgd 	/*
    550   1.1       cgd 	 * if there's a trailing number, and not a preceding 'p' (pid) or
    551   1.1       cgd 	 * 't' (tty) flag, then assume it's a pid and insert a 'p' flag.
    552   1.1       cgd 	 */
    553  1.25   mycroft 	if (isdigit(*cp) &&
    554  1.25   mycroft 	    (cp == s || (cp[-1] != 'U' && cp[-1] != 't' && cp[-1] != 'p' &&
    555  1.25   mycroft 	     (cp - 1 == s || cp[-2] != 't'))))
    556   1.1       cgd 		*ns++ = 'p';
    557  1.18       mrg 	/* and append the number */
    558  1.18       mrg 	(void)strcpy(ns, cp);		/* XXX strcpy is safe */
    559   1.1       cgd 
    560   1.1       cgd 	return (newopts);
    561   1.1       cgd }
    562   1.1       cgd 
    563  1.11       cgd static void
    564  1.11       cgd usage()
    565   1.1       cgd {
    566   1.1       cgd 
    567  1.11       cgd 	(void)fprintf(stderr,
    568  1.11       cgd 	    "usage:\t%s\n\t   %s\n\t%s\n",
    569  1.28  bgrayson 	    "ps [-aChjKlmrSTuvwx] [-O|o fmt] [-p pid] [-t tty]",
    570  1.34   hubertf 	    "[-M core] [-N system] [-W swap] [-U username]",
    571  1.11       cgd 	    "ps [-L]");
    572   1.1       cgd 	exit(1);
    573  1.23   mycroft 	/* NOTREACHED */
    574   1.1       cgd }
    575