xref: /freebsd/bin/ps/ps.c (revision ef0cb5db0af0d5d5b75b74f8e534fe601b7176d7)
1 /*-
2  * Copyright (c) 1990, 1993, 1994
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  * ------+---------+---------+-------- + --------+---------+---------+---------*
29  * Copyright (c) 2004  - Garance Alistair Drosehn <gad@FreeBSD.org>.
30  * All rights reserved.
31  *
32  * Significant modifications made to bring `ps' options somewhat closer
33  * to the standard for `ps' as described in SingleUnixSpec-v3.
34  * ------+---------+---------+-------- + --------+---------+---------+---------*
35  */
36 
37 #ifndef lint
38 static const char copyright[] =
39 "@(#) Copyright (c) 1990, 1993, 1994\n\
40 	The Regents of the University of California.  All rights reserved.\n";
41 #endif /* not lint */
42 
43 #if 0
44 #ifndef lint
45 static char sccsid[] = "@(#)ps.c	8.4 (Berkeley) 4/2/94";
46 #endif /* not lint */
47 #endif
48 
49 #include <sys/cdefs.h>
50 __FBSDID("$FreeBSD$");
51 
52 #include <sys/param.h>
53 #include <sys/jail.h>
54 #include <sys/proc.h>
55 #include <sys/user.h>
56 #include <sys/stat.h>
57 #include <sys/ioctl.h>
58 #include <sys/sysctl.h>
59 #include <sys/mount.h>
60 
61 #include <ctype.h>
62 #include <err.h>
63 #include <errno.h>
64 #include <fcntl.h>
65 #include <grp.h>
66 #include <jail.h>
67 #include <kvm.h>
68 #include <limits.h>
69 #include <locale.h>
70 #include <paths.h>
71 #include <pwd.h>
72 #include <stdio.h>
73 #include <stdlib.h>
74 #include <string.h>
75 #include <unistd.h>
76 #include <libxo/xo.h>
77 
78 #include "ps.h"
79 
80 #define	_PATH_PTS	"/dev/pts/"
81 
82 #define	W_SEP	" \t"		/* "Whitespace" list separators */
83 #define	T_SEP	","		/* "Terminate-element" list separators */
84 
85 #ifdef LAZY_PS
86 #define	DEF_UREAD	0
87 #define	OPT_LAZY_f	"f"
88 #else
89 #define	DEF_UREAD	1	/* Always do the more-expensive read. */
90 #define	OPT_LAZY_f		/* I.e., the `-f' option is not added. */
91 #endif
92 
93 /*
94  * isdigit takes an `int', but expects values in the range of unsigned char.
95  * This wrapper ensures that values from a 'char' end up in the correct range.
96  */
97 #define	isdigitch(Anychar) isdigit((u_char)(Anychar))
98 
99 int	 cflag;			/* -c */
100 int	 eval;			/* Exit value */
101 time_t	 now;			/* Current time(3) value */
102 int	 rawcpu;		/* -C */
103 int	 sumrusage;		/* -S */
104 int	 termwidth;		/* Width of the screen (0 == infinity). */
105 int	 showthreads;		/* will threads be shown? */
106 
107 struct velisthead varlist = STAILQ_HEAD_INITIALIZER(varlist);
108 
109 static int	 forceuread = DEF_UREAD; /* Do extra work to get u-area. */
110 static kvm_t	*kd;
111 static int	 needcomm;	/* -o "command" */
112 static int	 needenv;	/* -e */
113 static int	 needuser;	/* -o "user" */
114 static int	 optfatal;	/* Fatal error parsing some list-option. */
115 static int	 pid_max;	/* kern.max_pid */
116 
117 static enum sort { DEFAULT, SORTMEM, SORTCPU } sortby = DEFAULT;
118 
119 struct listinfo;
120 typedef	int	addelem_rtn(struct listinfo *_inf, const char *_elem);
121 
122 struct listinfo {
123 	int		 count;
124 	int		 maxcount;
125 	int		 elemsize;
126 	addelem_rtn	*addelem;
127 	const char	*lname;
128 	union {
129 		gid_t	*gids;
130 		int	*jids;
131 		pid_t	*pids;
132 		dev_t	*ttys;
133 		uid_t	*uids;
134 		void	*ptr;
135 	} l;
136 };
137 
138 static int	 addelem_gid(struct listinfo *, const char *);
139 static int	 addelem_jid(struct listinfo *, const char *);
140 static int	 addelem_pid(struct listinfo *, const char *);
141 static int	 addelem_tty(struct listinfo *, const char *);
142 static int	 addelem_uid(struct listinfo *, const char *);
143 static void	 add_list(struct listinfo *, const char *);
144 static void	 descendant_sort(KINFO *, int);
145 static void	 format_output(KINFO *);
146 static void	*expand_list(struct listinfo *);
147 static const char *
148 		 fmt(char **(*)(kvm_t *, const struct kinfo_proc *, int),
149 		    KINFO *, char *, char *, int);
150 static void	 free_list(struct listinfo *);
151 static void	 init_list(struct listinfo *, addelem_rtn, int, const char *);
152 static char	*kludge_oldps_options(const char *, char *, const char *);
153 static int	 pscomp(const void *, const void *);
154 static void	 saveuser(KINFO *);
155 static void	 scanvars(void);
156 static void	 sizevars(void);
157 static void	 pidmax_init(void);
158 static void	 usage(void);
159 
160 static char dfmt[] = "pid,tt,state,time,command";
161 static char jfmt[] = "user,pid,ppid,pgid,sid,jobc,state,tt,time,command";
162 static char lfmt[] = "uid,pid,ppid,cpu,pri,nice,vsz,rss,mwchan,state,"
163 			"tt,time,command";
164 static char   o1[] = "pid";
165 static char   o2[] = "tt,state,time,command";
166 static char ufmt[] = "user,pid,%cpu,%mem,vsz,rss,tt,state,start,time,command";
167 static char vfmt[] = "pid,state,time,sl,re,pagein,vsz,rss,lim,tsiz,"
168 			"%cpu,%mem,command";
169 static char Zfmt[] = "label";
170 
171 #define	PS_ARGS	"AaCcde" OPT_LAZY_f "G:gHhjJ:LlM:mN:O:o:p:rSTt:U:uvwXxZ"
172 
173 int
174 main(int argc, char *argv[])
175 {
176 	struct listinfo gidlist, jidlist, pgrplist, pidlist;
177 	struct listinfo ruidlist, sesslist, ttylist, uidlist;
178 	struct kinfo_proc *kp;
179 	KINFO *kinfo = NULL, *next_KINFO;
180 	KINFO_STR *ks;
181 	struct varent *vent;
182 	struct winsize ws = { .ws_row = 0 };
183 	const char *nlistf, *memf, *fmtstr, *str;
184 	char *cols;
185 	int all, ch, elem, flag, _fmt, i, lineno, linelen, left;
186 	int descendancy, nentries, nkept, nselectors;
187 	int prtheader, wflag, what, xkeep, xkeep_implied;
188 	int fwidthmin, fwidthmax;
189 	char errbuf[_POSIX2_LINE_MAX];
190 	char fmtbuf[_POSIX2_LINE_MAX];
191 
192 	(void) setlocale(LC_ALL, "");
193 	time(&now);			/* Used by routines in print.c. */
194 
195 	if ((cols = getenv("COLUMNS")) != NULL && *cols != '\0')
196 		termwidth = atoi(cols);
197 	else if ((ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&ws) == -1 &&
198 	     ioctl(STDERR_FILENO, TIOCGWINSZ, (char *)&ws) == -1 &&
199 	     ioctl(STDIN_FILENO,  TIOCGWINSZ, (char *)&ws) == -1) ||
200 	     ws.ws_col == 0)
201 		termwidth = 79;
202 	else
203 		termwidth = ws.ws_col - 1;
204 
205 	/*
206 	 * Hide a number of option-processing kludges in a separate routine,
207 	 * to support some historical BSD behaviors, such as `ps axu'.
208 	 */
209 	if (argc > 1)
210 		argv[1] = kludge_oldps_options(PS_ARGS, argv[1], argv[2]);
211 
212 	pidmax_init();
213 
214 	all = descendancy = _fmt = nselectors = optfatal = 0;
215 	prtheader = showthreads = wflag = xkeep_implied = 0;
216 	xkeep = -1;			/* Neither -x nor -X. */
217 	init_list(&gidlist, addelem_gid, sizeof(gid_t), "group");
218 	init_list(&jidlist, addelem_jid, sizeof(int), "jail id");
219 	init_list(&pgrplist, addelem_pid, sizeof(pid_t), "process group");
220 	init_list(&pidlist, addelem_pid, sizeof(pid_t), "process id");
221 	init_list(&ruidlist, addelem_uid, sizeof(uid_t), "ruser");
222 	init_list(&sesslist, addelem_pid, sizeof(pid_t), "session id");
223 	init_list(&ttylist, addelem_tty, sizeof(dev_t), "tty");
224 	init_list(&uidlist, addelem_uid, sizeof(uid_t), "user");
225 	memf = _PATH_DEVNULL;
226 	nlistf = NULL;
227 
228 	argc = xo_parse_args(argc, argv);
229 	if (argc < 0)
230 		exit(1);
231 
232 	while ((ch = getopt(argc, argv, PS_ARGS)) != -1)
233 		switch (ch) {
234 		case 'A':
235 			/*
236 			 * Exactly the same as `-ax'.   This has been
237 			 * added for compatibility with SUSv3, but for
238 			 * now it will not be described in the man page.
239 			 */
240 			nselectors++;
241 			all = xkeep = 1;
242 			break;
243 		case 'a':
244 			nselectors++;
245 			all = 1;
246 			break;
247 		case 'C':
248 			rawcpu = 1;
249 			break;
250 		case 'c':
251 			cflag = 1;
252 			break;
253 		case 'd':
254 			descendancy = 1;
255 			break;
256 		case 'e':			/* XXX set ufmt */
257 			needenv = 1;
258 			break;
259 #ifdef LAZY_PS
260 		case 'f':
261 			if (getuid() == 0 || getgid() == 0)
262 				forceuread = 1;
263 			break;
264 #endif
265 		case 'G':
266 			add_list(&gidlist, optarg);
267 			xkeep_implied = 1;
268 			nselectors++;
269 			break;
270 		case 'g':
271 #if 0
272 			/*-
273 			 * XXX - This SUSv3 behavior is still under debate
274 			 *	since it conflicts with the (undocumented)
275 			 *	`-g' option.  So we skip it for now.
276 			 */
277 			add_list(&pgrplist, optarg);
278 			xkeep_implied = 1;
279 			nselectors++;
280 			break;
281 #else
282 			/* The historical BSD-ish (from SunOS) behavior. */
283 			break;			/* no-op */
284 #endif
285 		case 'H':
286 			showthreads = KERN_PROC_INC_THREAD;
287 			break;
288 		case 'h':
289 			prtheader = ws.ws_row > 5 ? ws.ws_row : 22;
290 			break;
291 		case 'J':
292 			add_list(&jidlist, optarg);
293 			xkeep_implied = 1;
294 			nselectors++;
295 			break;
296 		case 'j':
297 			parsefmt(jfmt, 0);
298 			_fmt = 1;
299 			jfmt[0] = '\0';
300 			break;
301 		case 'L':
302 			showkey();
303 			exit(0);
304 		case 'l':
305 			parsefmt(lfmt, 0);
306 			_fmt = 1;
307 			lfmt[0] = '\0';
308 			break;
309 		case 'M':
310 			memf = optarg;
311 			break;
312 		case 'm':
313 			sortby = SORTMEM;
314 			break;
315 		case 'N':
316 			nlistf = optarg;
317 			break;
318 		case 'O':
319 			parsefmt(o1, 1);
320 			parsefmt(optarg, 1);
321 			parsefmt(o2, 1);
322 			o1[0] = o2[0] = '\0';
323 			_fmt = 1;
324 			break;
325 		case 'o':
326 			parsefmt(optarg, 1);
327 			_fmt = 1;
328 			break;
329 		case 'p':
330 			add_list(&pidlist, optarg);
331 			/*
332 			 * Note: `-p' does not *set* xkeep, but any values
333 			 * from pidlist are checked before xkeep is.  That
334 			 * way they are always matched, even if the user
335 			 * specifies `-X'.
336 			 */
337 			nselectors++;
338 			break;
339 #if 0
340 		case 'R':
341 			/*-
342 			 * XXX - This un-standard option is still under
343 			 *	debate.  This is what SUSv3 defines as
344 			 *	the `-U' option, and while it would be
345 			 *	nice to have, it could cause even more
346 			 *	confusion to implement it as `-R'.
347 			 */
348 			add_list(&ruidlist, optarg);
349 			xkeep_implied = 1;
350 			nselectors++;
351 			break;
352 #endif
353 		case 'r':
354 			sortby = SORTCPU;
355 			break;
356 		case 'S':
357 			sumrusage = 1;
358 			break;
359 #if 0
360 		case 's':
361 			/*-
362 			 * XXX - This non-standard option is still under
363 			 *	debate.  This *is* supported on Solaris,
364 			 *	Linux, and IRIX, but conflicts with `-s'
365 			 *	on NetBSD and maybe some older BSD's.
366 			 */
367 			add_list(&sesslist, optarg);
368 			xkeep_implied = 1;
369 			nselectors++;
370 			break;
371 #endif
372 		case 'T':
373 			if ((optarg = ttyname(STDIN_FILENO)) == NULL)
374 				xo_errx(1, "stdin: not a terminal");
375 			/* FALLTHROUGH */
376 		case 't':
377 			add_list(&ttylist, optarg);
378 			xkeep_implied = 1;
379 			nselectors++;
380 			break;
381 		case 'U':
382 			/* This is what SUSv3 defines as the `-u' option. */
383 			add_list(&uidlist, optarg);
384 			xkeep_implied = 1;
385 			nselectors++;
386 			break;
387 		case 'u':
388 			parsefmt(ufmt, 0);
389 			sortby = SORTCPU;
390 			_fmt = 1;
391 			ufmt[0] = '\0';
392 			break;
393 		case 'v':
394 			parsefmt(vfmt, 0);
395 			sortby = SORTMEM;
396 			_fmt = 1;
397 			vfmt[0] = '\0';
398 			break;
399 		case 'w':
400 			if (wflag)
401 				termwidth = UNLIMITED;
402 			else if (termwidth < 131)
403 				termwidth = 131;
404 			wflag++;
405 			break;
406 		case 'X':
407 			/*
408 			 * Note that `-X' and `-x' are not standard "selector"
409 			 * options. For most selector-options, we check *all*
410 			 * processes to see if any are matched by the given
411 			 * value(s).  After we have a set of all the matched
412 			 * processes, then `-X' and `-x' govern whether we
413 			 * modify that *matched* set for processes which do
414 			 * not have a controlling terminal.  `-X' causes
415 			 * those processes to be deleted from the matched
416 			 * set, while `-x' causes them to be kept.
417 			 */
418 			xkeep = 0;
419 			break;
420 		case 'x':
421 			xkeep = 1;
422 			break;
423 		case 'Z':
424 			parsefmt(Zfmt, 0);
425 			Zfmt[0] = '\0';
426 			break;
427 		case '?':
428 		default:
429 			usage();
430 		}
431 	argc -= optind;
432 	argv += optind;
433 
434 	/*
435 	 * If there arguments after processing all the options, attempt
436 	 * to treat them as a list of process ids.
437 	 */
438 	while (*argv) {
439 		if (!isdigitch(**argv))
440 			break;
441 		add_list(&pidlist, *argv);
442 		argv++;
443 	}
444 	if (*argv) {
445 		xo_warnx("illegal argument: %s\n", *argv);
446 		usage();
447 	}
448 	if (optfatal)
449 		exit(1);		/* Error messages already printed. */
450 	if (xkeep < 0)			/* Neither -X nor -x was specified. */
451 		xkeep = xkeep_implied;
452 
453 	kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf);
454 	if (kd == 0)
455 		xo_errx(1, "%s", errbuf);
456 
457 	if (!_fmt)
458 		parsefmt(dfmt, 0);
459 
460 	if (nselectors == 0) {
461 		uidlist.l.ptr = malloc(sizeof(uid_t));
462 		if (uidlist.l.ptr == NULL)
463 			xo_errx(1, "malloc failed");
464 		nselectors = 1;
465 		uidlist.count = uidlist.maxcount = 1;
466 		*uidlist.l.uids = getuid();
467 	}
468 
469 	/*
470 	 * scan requested variables, noting what structures are needed,
471 	 * and adjusting header widths as appropriate.
472 	 */
473 	scanvars();
474 
475 	/*
476 	 * Get process list.  If the user requested just one selector-
477 	 * option, then kvm_getprocs can be asked to return just those
478 	 * processes.  Otherwise, have it return all processes, and
479 	 * then this routine will search that full list and select the
480 	 * processes which match any of the user's selector-options.
481 	 */
482 	what = showthreads != 0 ? KERN_PROC_ALL : KERN_PROC_PROC;
483 	flag = 0;
484 	if (nselectors == 1) {
485 		if (gidlist.count == 1) {
486 			what = KERN_PROC_RGID | showthreads;
487 			flag = *gidlist.l.gids;
488 			nselectors = 0;
489 		} else if (pgrplist.count == 1) {
490 			what = KERN_PROC_PGRP | showthreads;
491 			flag = *pgrplist.l.pids;
492 			nselectors = 0;
493 		} else if (pidlist.count == 1) {
494 			what = KERN_PROC_PID | showthreads;
495 			flag = *pidlist.l.pids;
496 			nselectors = 0;
497 		} else if (ruidlist.count == 1) {
498 			what = KERN_PROC_RUID | showthreads;
499 			flag = *ruidlist.l.uids;
500 			nselectors = 0;
501 		} else if (sesslist.count == 1) {
502 			what = KERN_PROC_SESSION | showthreads;
503 			flag = *sesslist.l.pids;
504 			nselectors = 0;
505 		} else if (ttylist.count == 1) {
506 			what = KERN_PROC_TTY | showthreads;
507 			flag = *ttylist.l.ttys;
508 			nselectors = 0;
509 		} else if (uidlist.count == 1) {
510 			what = KERN_PROC_UID | showthreads;
511 			flag = *uidlist.l.uids;
512 			nselectors = 0;
513 		} else if (all) {
514 			/* No need for this routine to select processes. */
515 			nselectors = 0;
516 		}
517 	}
518 
519 	/*
520 	 * select procs
521 	 */
522 	nentries = -1;
523 	kp = kvm_getprocs(kd, what, flag, &nentries);
524 	if ((kp == NULL && nentries > 0) || (kp != NULL && nentries < 0))
525 		xo_errx(1, "%s", kvm_geterr(kd));
526 	nkept = 0;
527 	if (nentries > 0) {
528 		if ((kinfo = malloc(nentries * sizeof(*kinfo))) == NULL)
529 			xo_errx(1, "malloc failed");
530 		for (i = nentries; --i >= 0; ++kp) {
531 			/*
532 			 * If the user specified multiple selection-criteria,
533 			 * then keep any process matched by the inclusive OR
534 			 * of all the selection-criteria given.
535 			 */
536 			if (pidlist.count > 0) {
537 				for (elem = 0; elem < pidlist.count; elem++)
538 					if (kp->ki_pid == pidlist.l.pids[elem])
539 						goto keepit;
540 			}
541 			/*
542 			 * Note that we had to process pidlist before
543 			 * filtering out processes which do not have
544 			 * a controlling terminal.
545 			 */
546 			if (xkeep == 0) {
547 				if ((kp->ki_tdev == NODEV ||
548 				    (kp->ki_flag & P_CONTROLT) == 0))
549 					continue;
550 			}
551 			if (nselectors == 0)
552 				goto keepit;
553 			if (gidlist.count > 0) {
554 				for (elem = 0; elem < gidlist.count; elem++)
555 					if (kp->ki_rgid == gidlist.l.gids[elem])
556 						goto keepit;
557 			}
558 			if (jidlist.count > 0) {
559 				for (elem = 0; elem < jidlist.count; elem++)
560 					if (kp->ki_jid == jidlist.l.jids[elem])
561 						goto keepit;
562 			}
563 			if (pgrplist.count > 0) {
564 				for (elem = 0; elem < pgrplist.count; elem++)
565 					if (kp->ki_pgid ==
566 					    pgrplist.l.pids[elem])
567 						goto keepit;
568 			}
569 			if (ruidlist.count > 0) {
570 				for (elem = 0; elem < ruidlist.count; elem++)
571 					if (kp->ki_ruid ==
572 					    ruidlist.l.uids[elem])
573 						goto keepit;
574 			}
575 			if (sesslist.count > 0) {
576 				for (elem = 0; elem < sesslist.count; elem++)
577 					if (kp->ki_sid == sesslist.l.pids[elem])
578 						goto keepit;
579 			}
580 			if (ttylist.count > 0) {
581 				for (elem = 0; elem < ttylist.count; elem++)
582 					if (kp->ki_tdev == ttylist.l.ttys[elem])
583 						goto keepit;
584 			}
585 			if (uidlist.count > 0) {
586 				for (elem = 0; elem < uidlist.count; elem++)
587 					if (kp->ki_uid == uidlist.l.uids[elem])
588 						goto keepit;
589 			}
590 			/*
591 			 * This process did not match any of the user's
592 			 * selector-options, so skip the process.
593 			 */
594 			continue;
595 
596 		keepit:
597 			next_KINFO = &kinfo[nkept];
598 			next_KINFO->ki_p = kp;
599 			next_KINFO->ki_d.level = 0;
600 			next_KINFO->ki_d.prefix = NULL;
601 			next_KINFO->ki_pcpu = getpcpu(next_KINFO);
602 			if (sortby == SORTMEM)
603 				next_KINFO->ki_memsize = kp->ki_tsize +
604 				    kp->ki_dsize + kp->ki_ssize;
605 			if (needuser)
606 				saveuser(next_KINFO);
607 			nkept++;
608 		}
609 	}
610 
611 	sizevars();
612 
613 	if (nkept == 0) {
614 		printheader();
615 		exit(1);
616 	}
617 
618 	/*
619 	 * sort proc list
620 	 */
621 	qsort(kinfo, nkept, sizeof(KINFO), pscomp);
622 
623 	/*
624 	 * We want things in descendant order
625 	 */
626 	if (descendancy)
627 		descendant_sort(kinfo, nkept);
628 
629 
630 	/*
631 	 * Prepare formatted output.
632 	 */
633 	for (i = 0; i < nkept; i++)
634 		format_output(&kinfo[i]);
635 
636 	/*
637 	 * Print header.
638 	 */
639 	xo_open_container("process-information");
640 	printheader();
641 	if (xo_get_style(NULL) != XO_STYLE_TEXT)
642 		termwidth = UNLIMITED;
643 
644 	/*
645 	 * Output formatted lines.
646 	 */
647 	xo_open_list("process");
648 	for (i = lineno = 0; i < nkept; i++) {
649 		linelen = 0;
650 		xo_open_instance("process");
651 		STAILQ_FOREACH(vent, &varlist, next_ve) {
652 	        	if (vent->var->flag & LJUST)
653 				fmtstr = "%-*s";
654 			else
655 				fmtstr = "%*s";
656 
657 			ks = STAILQ_FIRST(&kinfo[i].ki_ks);
658 			STAILQ_REMOVE_HEAD(&kinfo[i].ki_ks, ks_next);
659 			/* Truncate rightmost column if necessary.  */
660 			fwidthmax = _POSIX2_LINE_MAX;
661 			if (STAILQ_NEXT(vent, next_ve) == NULL &&
662 			   termwidth != UNLIMITED && ks->ks_str != NULL) {
663 				left = termwidth - linelen;
664 				if (left > 0 && left < (int)strlen(ks->ks_str))
665 					fwidthmax = left;
666 			}
667 
668 			str = ks->ks_str;
669 			if (str == NULL)
670 				str = "-";
671 			/* No padding for the last column, if it's LJUST. */
672 			fwidthmin = (xo_get_style(NULL) != XO_STYLE_TEXT ||
673 			    (STAILQ_NEXT(vent, next_ve) == NULL &&
674 			    (vent->var->flag & LJUST))) ? 0 : vent->var->width;
675 			snprintf(fmtbuf, sizeof(fmtbuf), "{:%s/%%%s%d..%ds}",
676 			    vent->var->field ?: vent->var->name,
677 			    (vent->var->flag & LJUST) ? "-" : "",
678 			    fwidthmin, fwidthmax);
679 			xo_emit(fmtbuf, str);
680 			linelen += fwidthmin;
681 
682 			if (ks->ks_str != NULL) {
683 				free(ks->ks_str);
684 				ks->ks_str = NULL;
685 			}
686 			free(ks);
687 			ks = NULL;
688 
689 			if (STAILQ_NEXT(vent, next_ve) != NULL) {
690 				xo_emit("{P: }");
691 				linelen++;
692 			}
693 		}
694 	        xo_emit("\n");
695 		xo_close_instance("process");
696 		if (prtheader && lineno++ == prtheader - 4) {
697 			xo_emit("\n");
698 			printheader();
699 			lineno = 0;
700 		}
701 	}
702 	xo_close_list("process");
703 	xo_close_container("process-information");
704 	xo_finish();
705 
706 	free_list(&gidlist);
707 	free_list(&jidlist);
708 	free_list(&pidlist);
709 	free_list(&pgrplist);
710 	free_list(&ruidlist);
711 	free_list(&sesslist);
712 	free_list(&ttylist);
713 	free_list(&uidlist);
714 	for (i = 0; i < nkept; i++)
715 		free(kinfo[i].ki_d.prefix);
716 	free(kinfo);
717 
718 	exit(eval);
719 }
720 
721 static int
722 addelem_gid(struct listinfo *inf, const char *elem)
723 {
724 	struct group *grp;
725 	const char *nameorID;
726 	char *endp;
727 	u_long bigtemp;
728 
729 	if (*elem == '\0' || strlen(elem) >= MAXLOGNAME) {
730 		if (*elem == '\0')
731 			xo_warnx("Invalid (zero-length) %s name", inf->lname);
732 		else
733 			xo_warnx("%s name too long: %s", inf->lname, elem);
734 		optfatal = 1;
735 		return (0);		/* Do not add this value. */
736 	}
737 
738 	/*
739 	 * SUSv3 states that `ps -G grouplist' should match "real-group
740 	 * ID numbers", and does not mention group-names.  I do want to
741 	 * also support group-names, so this tries for a group-id first,
742 	 * and only tries for a name if that doesn't work.  This is the
743 	 * opposite order of what is done in addelem_uid(), but in
744 	 * practice the order would only matter for group-names which
745 	 * are all-numeric.
746 	 */
747 	grp = NULL;
748 	nameorID = "named";
749 	errno = 0;
750 	bigtemp = strtoul(elem, &endp, 10);
751 	if (errno == 0 && *endp == '\0' && bigtemp <= GID_MAX) {
752 		nameorID = "name or ID matches";
753 		grp = getgrgid((gid_t)bigtemp);
754 	}
755 	if (grp == NULL)
756 		grp = getgrnam(elem);
757 	if (grp == NULL) {
758 		xo_warnx("No %s %s '%s'", inf->lname, nameorID, elem);
759 		optfatal = 1;
760 		return (0);
761 	}
762 	if (inf->count >= inf->maxcount)
763 		expand_list(inf);
764 	inf->l.gids[(inf->count)++] = grp->gr_gid;
765 	return (1);
766 }
767 
768 static int
769 addelem_jid(struct listinfo *inf, const char *elem)
770 {
771 	int tempid;
772 
773 	if (*elem == '\0') {
774 		warnx("Invalid (zero-length) jail id");
775 		optfatal = 1;
776 		return (0);		/* Do not add this value. */
777 	}
778 
779 	tempid = jail_getid(elem);
780 	if (tempid < 0) {
781 		warnx("Invalid %s: %s", inf->lname, elem);
782 		optfatal = 1;
783 		return (0);
784 	}
785 
786 	if (inf->count >= inf->maxcount)
787 		expand_list(inf);
788 	inf->l.jids[(inf->count)++] = tempid;
789 	return (1);
790 }
791 
792 static int
793 addelem_pid(struct listinfo *inf, const char *elem)
794 {
795 	char *endp;
796 	long tempid;
797 
798 	if (*elem == '\0') {
799 		xo_warnx("Invalid (zero-length) process id");
800 		optfatal = 1;
801 		return (0);		/* Do not add this value. */
802 	}
803 
804 	errno = 0;
805 	tempid = strtol(elem, &endp, 10);
806 	if (*endp != '\0' || tempid < 0 || elem == endp) {
807 		xo_warnx("Invalid %s: %s", inf->lname, elem);
808 		errno = ERANGE;
809 	} else if (errno != 0 || tempid > pid_max) {
810 		xo_warnx("%s too large: %s", inf->lname, elem);
811 		errno = ERANGE;
812 	}
813 	if (errno == ERANGE) {
814 		optfatal = 1;
815 		return (0);
816 	}
817 	if (inf->count >= inf->maxcount)
818 		expand_list(inf);
819 	inf->l.pids[(inf->count)++] = tempid;
820 	return (1);
821 }
822 
823 /*-
824  * The user can specify a device via one of three formats:
825  *     1) fully qualified, e.g.:     /dev/ttyp0 /dev/console	/dev/pts/0
826  *     2) missing "/dev", e.g.:      ttyp0      console		pts/0
827  *     3) two-letters, e.g.:         p0         co		0
828  *        (matching letters that would be seen in the "TT" column)
829  */
830 static int
831 addelem_tty(struct listinfo *inf, const char *elem)
832 {
833 	const char *ttypath;
834 	struct stat sb;
835 	char pathbuf[PATH_MAX], pathbuf2[PATH_MAX], pathbuf3[PATH_MAX];
836 
837 	ttypath = NULL;
838 	pathbuf2[0] = '\0';
839 	pathbuf3[0] = '\0';
840 	switch (*elem) {
841 	case '/':
842 		ttypath = elem;
843 		break;
844 	case 'c':
845 		if (strcmp(elem, "co") == 0) {
846 			ttypath = _PATH_CONSOLE;
847 			break;
848 		}
849 		/* FALLTHROUGH */
850 	default:
851 		strlcpy(pathbuf, _PATH_DEV, sizeof(pathbuf));
852 		strlcat(pathbuf, elem, sizeof(pathbuf));
853 		ttypath = pathbuf;
854 		if (strncmp(pathbuf, _PATH_TTY, strlen(_PATH_TTY)) == 0)
855 			break;
856 		if (strncmp(pathbuf, _PATH_PTS, strlen(_PATH_PTS)) == 0)
857 			break;
858 		if (strcmp(pathbuf, _PATH_CONSOLE) == 0)
859 			break;
860 		/* Check to see if /dev/tty${elem} exists */
861 		strlcpy(pathbuf2, _PATH_TTY, sizeof(pathbuf2));
862 		strlcat(pathbuf2, elem, sizeof(pathbuf2));
863 		if (stat(pathbuf2, &sb) == 0 && S_ISCHR(sb.st_mode)) {
864 			/* No need to repeat stat() && S_ISCHR() checks */
865 			ttypath = NULL;
866 			break;
867 		}
868 		/* Check to see if /dev/pts/${elem} exists */
869 		strlcpy(pathbuf3, _PATH_PTS, sizeof(pathbuf3));
870 		strlcat(pathbuf3, elem, sizeof(pathbuf3));
871 		if (stat(pathbuf3, &sb) == 0 && S_ISCHR(sb.st_mode)) {
872 			/* No need to repeat stat() && S_ISCHR() checks */
873 			ttypath = NULL;
874 			break;
875 		}
876 		break;
877 	}
878 	if (ttypath) {
879 		if (stat(ttypath, &sb) == -1) {
880 			if (pathbuf3[0] != '\0')
881 				xo_warn("%s, %s, and %s", pathbuf3, pathbuf2,
882 				    ttypath);
883 			else
884 				xo_warn("%s", ttypath);
885 			optfatal = 1;
886 			return (0);
887 		}
888 		if (!S_ISCHR(sb.st_mode)) {
889 			if (pathbuf3[0] != '\0')
890 				xo_warnx("%s, %s, and %s: Not a terminal",
891 				    pathbuf3, pathbuf2, ttypath);
892 			else
893 				xo_warnx("%s: Not a terminal", ttypath);
894 			optfatal = 1;
895 			return (0);
896 		}
897 	}
898 	if (inf->count >= inf->maxcount)
899 		expand_list(inf);
900 	inf->l.ttys[(inf->count)++] = sb.st_rdev;
901 	return (1);
902 }
903 
904 static int
905 addelem_uid(struct listinfo *inf, const char *elem)
906 {
907 	struct passwd *pwd;
908 	char *endp;
909 	u_long bigtemp;
910 
911 	if (*elem == '\0' || strlen(elem) >= MAXLOGNAME) {
912 		if (*elem == '\0')
913 			xo_warnx("Invalid (zero-length) %s name", inf->lname);
914 		else
915 			xo_warnx("%s name too long: %s", inf->lname, elem);
916 		optfatal = 1;
917 		return (0);		/* Do not add this value. */
918 	}
919 
920 	pwd = getpwnam(elem);
921 	if (pwd == NULL) {
922 		errno = 0;
923 		bigtemp = strtoul(elem, &endp, 10);
924 		if (errno != 0 || *endp != '\0' || bigtemp > UID_MAX)
925 			xo_warnx("No %s named '%s'", inf->lname, elem);
926 		else {
927 			/* The string is all digits, so it might be a userID. */
928 			pwd = getpwuid((uid_t)bigtemp);
929 			if (pwd == NULL)
930 				xo_warnx("No %s name or ID matches '%s'",
931 				    inf->lname, elem);
932 		}
933 	}
934 	if (pwd == NULL) {
935 		/*
936 		 * These used to be treated as minor warnings (and the
937 		 * option was simply ignored), but now they are fatal
938 		 * errors (and the command will be aborted).
939 		 */
940 		optfatal = 1;
941 		return (0);
942 	}
943 	if (inf->count >= inf->maxcount)
944 		expand_list(inf);
945 	inf->l.uids[(inf->count)++] = pwd->pw_uid;
946 	return (1);
947 }
948 
949 static void
950 add_list(struct listinfo *inf, const char *argp)
951 {
952 	const char *savep;
953 	char *cp, *endp;
954 	int toolong;
955 	char elemcopy[PATH_MAX];
956 
957 	if (*argp == '\0')
958 		inf->addelem(inf, argp);
959 	while (*argp != '\0') {
960 		while (*argp != '\0' && strchr(W_SEP, *argp) != NULL)
961 			argp++;
962 		savep = argp;
963 		toolong = 0;
964 		cp = elemcopy;
965 		if (strchr(T_SEP, *argp) == NULL) {
966 			endp = elemcopy + sizeof(elemcopy) - 1;
967 			while (*argp != '\0' && cp <= endp &&
968 			    strchr(W_SEP T_SEP, *argp) == NULL)
969 				*cp++ = *argp++;
970 			if (cp > endp)
971 				toolong = 1;
972 		}
973 		if (!toolong) {
974 			*cp = '\0';
975 			/*
976 			 * Add this single element to the given list.
977 			 */
978 			inf->addelem(inf, elemcopy);
979 		} else {
980 			/*
981 			 * The string is too long to copy.  Find the end
982 			 * of the string to print out the warning message.
983 			 */
984 			while (*argp != '\0' && strchr(W_SEP T_SEP,
985 			    *argp) == NULL)
986 				argp++;
987 			xo_warnx("Value too long: %.*s", (int)(argp - savep),
988 			    savep);
989 			optfatal = 1;
990 		}
991 		/*
992 		 * Skip over any number of trailing whitespace characters,
993 		 * but only one (at most) trailing element-terminating
994 		 * character.
995 		 */
996 		while (*argp != '\0' && strchr(W_SEP, *argp) != NULL)
997 			argp++;
998 		if (*argp != '\0' && strchr(T_SEP, *argp) != NULL) {
999 			argp++;
1000 			/* Catch case where string ended with a comma. */
1001 			if (*argp == '\0')
1002 				inf->addelem(inf, argp);
1003 		}
1004 	}
1005 }
1006 
1007 static void
1008 descendant_sort(KINFO *ki, int items)
1009 {
1010 	int dst, lvl, maxlvl, n, ndst, nsrc, siblings, src;
1011 	unsigned char *path;
1012 	KINFO kn;
1013 
1014 	/*
1015 	 * First, sort the entries by descendancy, tracking the descendancy
1016 	 * depth in the ki_d.level field.
1017 	 */
1018 	src = 0;
1019 	maxlvl = 0;
1020 	while (src < items) {
1021 		if (ki[src].ki_d.level) {
1022 			src++;
1023 			continue;
1024 		}
1025 		for (nsrc = 1; src + nsrc < items; nsrc++)
1026 			if (!ki[src + nsrc].ki_d.level)
1027 				break;
1028 
1029 		for (dst = 0; dst < items; dst++) {
1030 			if (ki[dst].ki_p->ki_pid == ki[src].ki_p->ki_pid)
1031 				continue;
1032 			if (ki[dst].ki_p->ki_pid == ki[src].ki_p->ki_ppid)
1033 				break;
1034 		}
1035 
1036 		if (dst == items) {
1037 			src += nsrc;
1038 			continue;
1039 		}
1040 
1041 		for (ndst = 1; dst + ndst < items; ndst++)
1042 			if (ki[dst + ndst].ki_d.level <= ki[dst].ki_d.level)
1043 				break;
1044 
1045 		for (n = src; n < src + nsrc; n++) {
1046 			ki[n].ki_d.level += ki[dst].ki_d.level + 1;
1047 			if (maxlvl < ki[n].ki_d.level)
1048 				maxlvl = ki[n].ki_d.level;
1049 		}
1050 
1051 		while (nsrc) {
1052 			if (src < dst) {
1053 				kn = ki[src];
1054 				memmove(ki + src, ki + src + 1,
1055 				    (dst - src + ndst - 1) * sizeof *ki);
1056 				ki[dst + ndst - 1] = kn;
1057 				nsrc--;
1058 				dst--;
1059 				ndst++;
1060 			} else if (src != dst + ndst) {
1061 				kn = ki[src];
1062 				memmove(ki + dst + ndst + 1, ki + dst + ndst,
1063 				    (src - dst - ndst) * sizeof *ki);
1064 				ki[dst + ndst] = kn;
1065 				ndst++;
1066 				nsrc--;
1067 				src++;
1068 			} else {
1069 				ndst += nsrc;
1070 				src += nsrc;
1071 				nsrc = 0;
1072 			}
1073 		}
1074 	}
1075 
1076 	/*
1077 	 * Now populate ki_d.prefix (instead of ki_d.level) with the command
1078 	 * prefix used to show descendancies.
1079 	 */
1080 	path = malloc((maxlvl + 7) / 8);
1081 	memset(path, '\0', (maxlvl + 7) / 8);
1082 	for (src = 0; src < items; src++) {
1083 		if ((lvl = ki[src].ki_d.level) == 0) {
1084 			ki[src].ki_d.prefix = NULL;
1085 			continue;
1086 		}
1087 		if ((ki[src].ki_d.prefix = malloc(lvl * 2 + 1)) == NULL)
1088 			xo_errx(1, "malloc failed");
1089 		for (n = 0; n < lvl - 2; n++) {
1090 			ki[src].ki_d.prefix[n * 2] =
1091 			    path[n / 8] & 1 << (n % 8) ? '|' : ' ';
1092 			ki[src].ki_d.prefix[n * 2 + 1] = ' ';
1093 		}
1094 		if (n == lvl - 2) {
1095 			/* Have I any more siblings? */
1096 			for (siblings = 0, dst = src + 1; dst < items; dst++) {
1097 				if (ki[dst].ki_d.level > lvl)
1098 					continue;
1099 				if (ki[dst].ki_d.level == lvl)
1100 					siblings = 1;
1101 				break;
1102 			}
1103 			if (siblings)
1104 				path[n / 8] |= 1 << (n % 8);
1105 			else
1106 				path[n / 8] &= ~(1 << (n % 8));
1107 			ki[src].ki_d.prefix[n * 2] = siblings ? '|' : '`';
1108 			ki[src].ki_d.prefix[n * 2 + 1] = '-';
1109 			n++;
1110 		}
1111 		strcpy(ki[src].ki_d.prefix + n * 2, "- ");
1112 	}
1113 	free(path);
1114 }
1115 
1116 static void *
1117 expand_list(struct listinfo *inf)
1118 {
1119 	void *newlist;
1120 	int newmax;
1121 
1122 	newmax = (inf->maxcount + 1) << 1;
1123 	newlist = realloc(inf->l.ptr, newmax * inf->elemsize);
1124 	if (newlist == NULL) {
1125 		free(inf->l.ptr);
1126 		xo_errx(1, "realloc to %d %ss failed", newmax, inf->lname);
1127 	}
1128 	inf->maxcount = newmax;
1129 	inf->l.ptr = newlist;
1130 
1131 	return (newlist);
1132 }
1133 
1134 static void
1135 free_list(struct listinfo *inf)
1136 {
1137 
1138 	inf->count = inf->elemsize = inf->maxcount = 0;
1139 	if (inf->l.ptr != NULL)
1140 		free(inf->l.ptr);
1141 	inf->addelem = NULL;
1142 	inf->lname = NULL;
1143 	inf->l.ptr = NULL;
1144 }
1145 
1146 static void
1147 init_list(struct listinfo *inf, addelem_rtn artn, int elemsize,
1148     const char *lname)
1149 {
1150 
1151 	inf->count = inf->maxcount = 0;
1152 	inf->elemsize = elemsize;
1153 	inf->addelem = artn;
1154 	inf->lname = lname;
1155 	inf->l.ptr = NULL;
1156 }
1157 
1158 VARENT *
1159 find_varentry(VAR *v)
1160 {
1161 	struct varent *vent;
1162 
1163 	STAILQ_FOREACH(vent, &varlist, next_ve) {
1164 		if (strcmp(vent->var->name, v->name) == 0)
1165 			return vent;
1166 	}
1167 	return NULL;
1168 }
1169 
1170 static void
1171 scanvars(void)
1172 {
1173 	struct varent *vent;
1174 	VAR *v;
1175 
1176 	STAILQ_FOREACH(vent, &varlist, next_ve) {
1177 		v = vent->var;
1178 		if (v->flag & USER)
1179 			needuser = 1;
1180 		if (v->flag & COMM)
1181 			needcomm = 1;
1182 	}
1183 }
1184 
1185 static void
1186 format_output(KINFO *ki)
1187 {
1188 	struct varent *vent;
1189 	VAR *v;
1190 	KINFO_STR *ks;
1191 	char *str;
1192 	int len;
1193 
1194 	STAILQ_INIT(&ki->ki_ks);
1195 	STAILQ_FOREACH(vent, &varlist, next_ve) {
1196 		v = vent->var;
1197 		str = (v->oproc)(ki, vent);
1198 		ks = malloc(sizeof(*ks));
1199 		if (ks == NULL)
1200 			xo_errx(1, "malloc failed");
1201 		ks->ks_str = str;
1202 		STAILQ_INSERT_TAIL(&ki->ki_ks, ks, ks_next);
1203 		if (str != NULL) {
1204 			len = strlen(str);
1205 		} else
1206 			len = 1; /* "-" */
1207 		if (v->width < len)
1208 			v->width = len;
1209 	}
1210 }
1211 
1212 static void
1213 sizevars(void)
1214 {
1215 	struct varent *vent;
1216 	VAR *v;
1217 	int i;
1218 
1219 	STAILQ_FOREACH(vent, &varlist, next_ve) {
1220 		v = vent->var;
1221 		i = strlen(vent->header);
1222 		if (v->width < i)
1223 			v->width = i;
1224 	}
1225 }
1226 
1227 static const char *
1228 fmt(char **(*fn)(kvm_t *, const struct kinfo_proc *, int), KINFO *ki,
1229     char *comm, char *thread, int maxlen)
1230 {
1231 	const char *s;
1232 
1233 	s = fmt_argv((*fn)(kd, ki->ki_p, termwidth), comm,
1234 	    showthreads && ki->ki_p->ki_numthreads > 1 ? thread : NULL, maxlen);
1235 	return (s);
1236 }
1237 
1238 #define UREADOK(ki)	(forceuread || (ki->ki_p->ki_flag & P_INMEM))
1239 
1240 static void
1241 saveuser(KINFO *ki)
1242 {
1243 
1244 	if (ki->ki_p->ki_flag & P_INMEM) {
1245 		/*
1246 		 * The u-area might be swapped out, and we can't get
1247 		 * at it because we have a crashdump and no swap.
1248 		 * If it's here fill in these fields, otherwise, just
1249 		 * leave them 0.
1250 		 */
1251 		ki->ki_valid = 1;
1252 	} else
1253 		ki->ki_valid = 0;
1254 	/*
1255 	 * save arguments if needed
1256 	 */
1257 	if (needcomm) {
1258 		if (ki->ki_p->ki_stat == SZOMB)
1259 			ki->ki_args = strdup("<defunct>");
1260 		else if (UREADOK(ki) || (ki->ki_p->ki_args != NULL))
1261 			ki->ki_args = strdup(fmt(kvm_getargv, ki,
1262 			    ki->ki_p->ki_comm, ki->ki_p->ki_tdname, MAXCOMLEN));
1263 		else
1264 			asprintf(&ki->ki_args, "(%s)", ki->ki_p->ki_comm);
1265 		if (ki->ki_args == NULL)
1266 			xo_errx(1, "malloc failed");
1267 	} else {
1268 		ki->ki_args = NULL;
1269 	}
1270 	if (needenv) {
1271 		if (UREADOK(ki))
1272 			ki->ki_env = strdup(fmt(kvm_getenvv, ki,
1273 			    (char *)NULL, (char *)NULL, 0));
1274 		else
1275 			ki->ki_env = strdup("()");
1276 		if (ki->ki_env == NULL)
1277 			xo_errx(1, "malloc failed");
1278 	} else {
1279 		ki->ki_env = NULL;
1280 	}
1281 }
1282 
1283 /* A macro used to improve the readability of pscomp(). */
1284 #define	DIFF_RETURN(a, b, field) do {	\
1285 	if ((a)->field != (b)->field)	\
1286 		return (((a)->field < (b)->field) ? -1 : 1); 	\
1287 } while (0)
1288 
1289 static int
1290 pscomp(const void *a, const void *b)
1291 {
1292 	const KINFO *ka, *kb;
1293 
1294 	ka = a;
1295 	kb = b;
1296 	/* SORTCPU and SORTMEM are sorted in descending order. */
1297 	if (sortby == SORTCPU)
1298 		DIFF_RETURN(kb, ka, ki_pcpu);
1299 	if (sortby == SORTMEM)
1300 		DIFF_RETURN(kb, ka, ki_memsize);
1301 	/*
1302 	 * TTY's are sorted in ascending order, except that all NODEV
1303 	 * processes come before all processes with a device.
1304 	 */
1305 	if (ka->ki_p->ki_tdev != kb->ki_p->ki_tdev) {
1306 		if (ka->ki_p->ki_tdev == NODEV)
1307 			return (-1);
1308 		if (kb->ki_p->ki_tdev == NODEV)
1309 			return (1);
1310 		DIFF_RETURN(ka, kb, ki_p->ki_tdev);
1311 	}
1312 
1313 	/* PID's and TID's (threads) are sorted in ascending order. */
1314 	DIFF_RETURN(ka, kb, ki_p->ki_pid);
1315 	DIFF_RETURN(ka, kb, ki_p->ki_tid);
1316 	return (0);
1317 }
1318 #undef DIFF_RETURN
1319 
1320 /*
1321  * ICK (all for getopt), would rather hide the ugliness
1322  * here than taint the main code.
1323  *
1324  *  ps foo -> ps -foo
1325  *  ps 34 -> ps -p34
1326  *
1327  * The old convention that 't' with no trailing tty arg means the users
1328  * tty, is only supported if argv[1] doesn't begin with a '-'.  This same
1329  * feature is available with the option 'T', which takes no argument.
1330  */
1331 static char *
1332 kludge_oldps_options(const char *optlist, char *origval, const char *nextarg)
1333 {
1334 	size_t len;
1335 	char *argp, *cp, *newopts, *ns, *optp, *pidp;
1336 
1337 	/*
1338 	 * See if the original value includes any option which takes an
1339 	 * argument (and will thus use up the remainder of the string).
1340 	 */
1341 	argp = NULL;
1342 	if (optlist != NULL) {
1343 		for (cp = origval; *cp != '\0'; cp++) {
1344 			optp = strchr(optlist, *cp);
1345 			if ((optp != NULL) && *(optp + 1) == ':') {
1346 				argp = cp;
1347 				break;
1348 			}
1349 		}
1350 	}
1351 	if (argp != NULL && *origval == '-')
1352 		return (origval);
1353 
1354 	/*
1355 	 * if last letter is a 't' flag with no argument (in the context
1356 	 * of the oldps options -- option string NOT starting with a '-' --
1357 	 * then convert to 'T' (meaning *this* terminal, i.e. ttyname(0)).
1358 	 *
1359 	 * However, if a flag accepting a string argument is found earlier
1360 	 * in the option string (including a possible `t' flag), then the
1361 	 * remainder of the string must be the argument to that flag; so
1362 	 * do not modify that argument.  Note that a trailing `t' would
1363 	 * cause argp to be set, if argp was not already set by some
1364 	 * earlier option.
1365 	 */
1366 	len = strlen(origval);
1367 	cp = origval + len - 1;
1368 	pidp = NULL;
1369 	if (*cp == 't' && *origval != '-' && cp == argp) {
1370 		if (nextarg == NULL || *nextarg == '-' || isdigitch(*nextarg))
1371 			*cp = 'T';
1372 	} else if (argp == NULL) {
1373 		/*
1374 		 * The original value did not include any option which takes
1375 		 * an argument (and that would include `p' and `t'), so check
1376 		 * the value for trailing number, or comma-separated list of
1377 		 * numbers, which we will treat as a pid request.
1378 		 */
1379 		if (isdigitch(*cp)) {
1380 			while (cp >= origval && (*cp == ',' || isdigitch(*cp)))
1381 				--cp;
1382 			pidp = cp + 1;
1383 		}
1384 	}
1385 
1386 	/*
1387 	 * If nothing needs to be added to the string, then return
1388 	 * the "original" (although possibly modified) value.
1389 	 */
1390 	if (*origval == '-' && pidp == NULL)
1391 		return (origval);
1392 
1393 	/*
1394 	 * Create a copy of the string to add '-' and/or 'p' to the
1395 	 * original value.
1396 	 */
1397 	if ((newopts = ns = malloc(len + 3)) == NULL)
1398 		xo_errx(1, "malloc failed");
1399 
1400 	if (*origval != '-')
1401 		*ns++ = '-';	/* add option flag */
1402 
1403 	if (pidp == NULL)
1404 		strcpy(ns, origval);
1405 	else {
1406 		/*
1407 		 * Copy everything before the pid string, add the `p',
1408 		 * and then copy the pid string.
1409 		 */
1410 		len = pidp - origval;
1411 		memcpy(ns, origval, len);
1412 		ns += len;
1413 		*ns++ = 'p';
1414 		strcpy(ns, pidp);
1415 	}
1416 
1417 	return (newopts);
1418 }
1419 
1420 static void
1421 pidmax_init(void)
1422 {
1423 	size_t intsize;
1424 
1425 	intsize = sizeof(pid_max);
1426 	if (sysctlbyname("kern.pid_max", &pid_max, &intsize, NULL, 0) < 0) {
1427 		xo_warn("unable to read kern.pid_max");
1428 		pid_max = 99999;
1429 	}
1430 }
1431 
1432 static void
1433 usage(void)
1434 {
1435 #define	SINGLE_OPTS	"[-aCcde" OPT_LAZY_f "HhjlmrSTuvwXxZ]"
1436 
1437 	(void)xo_error("%s\n%s\n%s\n%s\n",
1438 	    "usage: ps " SINGLE_OPTS " [-O fmt | -o fmt] [-G gid[,gid...]]",
1439 	    "          [-J jid[,jid...]] [-M core] [-N system]",
1440 	    "          [-p pid[,pid...]] [-t tty[,tty...]] [-U user[,user...]]",
1441 	    "       ps [-L]");
1442 	exit(1);
1443 }
1444