ps.c revision 1.88 1 /* $NetBSD: ps.c,v 1.88 2016/12/26 20:52:39 rin Exp $ */
2
3 /*
4 * Copyright (c) 2000-2008 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Simon Burge.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 /*
33 * Copyright (c) 1990, 1993, 1994
34 * The Regents of the University of California. All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
44 * 3. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
47 *
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 * SUCH DAMAGE.
59 */
60
61 #include <sys/cdefs.h>
62 #ifndef lint
63 __COPYRIGHT("@(#) Copyright (c) 1990, 1993, 1994\
64 The Regents of the University of California. All rights reserved.");
65 #endif /* not lint */
66
67 #ifndef lint
68 #if 0
69 static char sccsid[] = "@(#)ps.c 8.4 (Berkeley) 4/2/94";
70 #else
71 __RCSID("$NetBSD: ps.c,v 1.88 2016/12/26 20:52:39 rin Exp $");
72 #endif
73 #endif /* not lint */
74
75 #include <sys/param.h>
76 #include <sys/time.h>
77 #include <sys/resource.h>
78 #include <sys/lwp.h>
79 #include <sys/proc.h>
80 #include <sys/stat.h>
81 #include <sys/ioctl.h>
82 #include <sys/sysctl.h>
83
84 #include <stddef.h>
85 #include <ctype.h>
86 #include <err.h>
87 #include <errno.h>
88 #include <fcntl.h>
89 #include <kvm.h>
90 #include <limits.h>
91 #include <locale.h>
92 #include <math.h>
93 #include <nlist.h>
94 #include <paths.h>
95 #include <pwd.h>
96 #include <stdio.h>
97 #include <stdlib.h>
98 #include <string.h>
99 #include <unistd.h>
100
101 #include "ps.h"
102
103 /*
104 * ARGOPTS must contain all option characters that take arguments
105 * (except for 't'!) - it is used in kludge_oldps_options()
106 */
107 #define GETOPTSTR "aAcCdeghjk:LlM:mN:O:o:p:rSsTt:U:uvW:wx"
108 #define ARGOPTS "kMNOopUW"
109
110 struct varlist displaylist = SIMPLEQ_HEAD_INITIALIZER(displaylist);
111 struct varlist sortlist = SIMPLEQ_HEAD_INITIALIZER(sortlist);
112
113 int eval; /* exit value */
114 int sumrusage; /* -S */
115 int termwidth; /* width of screen (0 == infinity) */
116 int totwidth; /* calculated width of requested variables */
117
118 int needcomm, needenv, commandonly;
119 uid_t myuid;
120
121 static struct kinfo_lwp
122 *pick_representative_lwp(struct kinfo_proc2 *,
123 struct kinfo_lwp *, int);
124 static struct kinfo_proc2
125 *getkinfo_kvm(kvm_t *, int, int, int *);
126 static struct pinfo
127 *setpinfo(struct kinfo_proc2 *, int, int, int);
128 static char *kludge_oldps_options(char *);
129 static int pscomp(const void *, const void *);
130 static void scanvars(void);
131 __dead static void usage(void);
132 static int parsenum(const char *, const char *);
133 static void descendant_sort(struct pinfo *, int);
134
135 char dfmt[] = "pid tt state time command";
136 char jfmt[] = "user pid ppid pgid sess jobc state tt time command";
137 char lfmt[] = "uid pid ppid cpu pri nice vsz rss wchan state tt time command";
138 char sfmt[] = "uid pid ppid cpu lid nlwp pri nice vsz rss wchan lstate tt "
139 "ltime command";
140 char ufmt[] = "user pid %cpu %mem vsz rss tt state start time command";
141 char vfmt[] = "pid state time sl re pagein vsz rss lim tsiz %cpu %mem command";
142
143 const char *default_fmt = dfmt;
144
145 struct varent *Opos = NULL; /* -O flag inserts after this point */
146
147 kvm_t *kd;
148
149 static long long
150 ttyname2dev(const char *ttname, int *xflg, int *what)
151 {
152 struct stat sb;
153 const char *ttypath;
154 char pathbuf[MAXPATHLEN];
155
156 ttypath = NULL;
157 if (strcmp(ttname, "?") == 0) {
158 *xflg = 1;
159 return KERN_PROC_TTY_NODEV;
160 }
161 if (strcmp(ttname, "-") == 0)
162 return KERN_PROC_TTY_REVOKE;
163
164 if (strcmp(ttname, "co") == 0)
165 ttypath = _PATH_CONSOLE;
166 else if (strncmp(ttname, "pts/", 4) == 0 ||
167 strncmp(ttname, "tty", 3) == 0) {
168 (void)snprintf(pathbuf,
169 sizeof(pathbuf), "%s%s", _PATH_DEV, ttname);
170 ttypath = pathbuf;
171 } else if (*ttname != '/') {
172 (void)snprintf(pathbuf,
173 sizeof(pathbuf), "%s%s", _PATH_TTY, ttname);
174 ttypath = pathbuf;
175 } else
176 ttypath = ttname;
177 *what = KERN_PROC_TTY;
178 if (stat(ttypath, &sb) == -1) {
179 devmajor_t pts;
180 int serrno;
181
182 serrno = errno;
183 pts = getdevmajor("pts", S_IFCHR);
184 if (pts != NODEVMAJOR && strncmp(ttname, "pts/", 4) == 0) {
185 int ptsminor = atoi(ttname + 4);
186
187 snprintf(pathbuf, sizeof(pathbuf), "pts/%d", ptsminor);
188 if (strcmp(pathbuf, ttname) == 0 && ptsminor >= 0)
189 return makedev(pts, ptsminor);
190 }
191 errno = serrno;
192 err(1, "%s", ttypath);
193 }
194 if (!S_ISCHR(sb.st_mode))
195 errx(1, "%s: not a terminal", ttypath);
196 return sb.st_rdev;
197 }
198
199 int
200 main(int argc, char *argv[])
201 {
202 struct kinfo_proc2 *kinfo;
203 struct pinfo *pinfo;
204 struct varent *vent;
205 struct winsize ws;
206 struct kinfo_lwp *kl, *l;
207 int ch, i, j, fmt, lineno, descendancy, nentries, nlwps;
208 long long flag;
209 int calc_pcpu, prtheader, wflag, what, xflg, rawcpu, showlwps;
210 char *nlistf, *memf, *swapf, errbuf[_POSIX2_LINE_MAX];
211 char *ttname;
212
213 setprogname(argv[0]);
214 (void)setlocale(LC_ALL, "");
215
216 if ((ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&ws) == -1 &&
217 ioctl(STDERR_FILENO, TIOCGWINSZ, (char *)&ws) == -1 &&
218 ioctl(STDIN_FILENO, TIOCGWINSZ, (char *)&ws) == -1) ||
219 ws.ws_col == 0)
220 termwidth = 79;
221 else
222 termwidth = ws.ws_col - 1;
223
224 if (argc > 1)
225 argv[1] = kludge_oldps_options(argv[1]);
226
227 descendancy = fmt = prtheader = wflag = xflg = showlwps = 0;
228 what = KERN_PROC_UID;
229 flag = myuid = getuid();
230 memf = nlistf = swapf = NULL;
231
232 while ((ch = getopt(argc, argv, GETOPTSTR)) != -1)
233 switch((char)ch) {
234 case 'A':
235 /* "-A" shows all processes, like "-ax" */
236 xflg = 1;
237 /*FALLTHROUGH*/
238 case 'a':
239 what = KERN_PROC_ALL;
240 flag = 0;
241 break;
242 case 'c':
243 commandonly = 1;
244 break;
245 case 'd':
246 descendancy = 1;
247 break;
248 case 'e': /* XXX set ufmt */
249 needenv = 1;
250 break;
251 case 'C':
252 rawcpu = 1;
253 break;
254 case 'g':
255 break; /* no-op */
256 case 'h':
257 prtheader = ws.ws_row > 5 ? ws.ws_row : 22;
258 break;
259 case 'j':
260 parsefmt(jfmt);
261 fmt = 1;
262 jfmt[0] = '\0';
263 break;
264 case 'k':
265 parsesort(optarg);
266 break;
267 case 'K':
268 break; /* no-op - was dontuseprocfs */
269 case 'L':
270 showkey();
271 return 0;
272 case 'l':
273 parsefmt(lfmt);
274 fmt = 1;
275 lfmt[0] = '\0';
276 break;
277 case 'M':
278 memf = optarg;
279 break;
280 case 'm':
281 parsesort("vsz");
282 break;
283 case 'N':
284 nlistf = optarg;
285 break;
286 case 'O':
287 /*
288 * If this is not the first -O option, insert
289 * just after the previous one.
290 *
291 * If there is no format yet, start with the default
292 * format, and insert after the pid column.
293 *
294 * If there is already a format, insert after
295 * the pid column, or at the end if there's no
296 * pid column.
297 */
298 if (!Opos) {
299 if (!fmt)
300 parsefmt(default_fmt);
301 Opos = varlist_find(&displaylist, "pid");
302 }
303 parsefmt_insert(optarg, &Opos);
304 fmt = 1;
305 break;
306 case 'o':
307 parsefmt(optarg);
308 fmt = 1;
309 break;
310 case 'p':
311 what = KERN_PROC_PID;
312 flag = parsenum(optarg, "process id");
313 xflg = 1;
314 break;
315 case 'r':
316 parsesort("%cpu");
317 break;
318 case 'S':
319 sumrusage = 1;
320 break;
321 case 's':
322 /* -L was already taken... */
323 showlwps = 1;
324 default_fmt = sfmt;
325 break;
326 case 'T':
327 if ((ttname = ttyname(STDIN_FILENO)) == NULL)
328 errx(1, "stdin: not a terminal");
329 flag = ttyname2dev(ttname, &xflg, &what);
330 break;
331 case 't':
332 flag = ttyname2dev(optarg, &xflg, &what);
333 break;
334 case 'U':
335 if (*optarg != '\0') {
336 struct passwd *pw;
337
338 what = KERN_PROC_UID;
339 pw = getpwnam(optarg);
340 if (pw == NULL) {
341 flag = parsenum(optarg, "user name");
342 } else
343 flag = pw->pw_uid;
344 }
345 break;
346 case 'u':
347 parsefmt(ufmt);
348 parsesort("%cpu");
349 fmt = 1;
350 ufmt[0] = '\0';
351 break;
352 case 'v':
353 parsefmt(vfmt);
354 parsesort("vsz");
355 fmt = 1;
356 vfmt[0] = '\0';
357 break;
358 case 'W':
359 swapf = optarg;
360 break;
361 case 'w':
362 if (wflag)
363 termwidth = UNLIMITED;
364 else if (termwidth < 131)
365 termwidth = 131;
366 wflag++;
367 break;
368 case 'x':
369 xflg = 1;
370 break;
371 case '?':
372 default:
373 usage();
374 }
375 argc -= optind;
376 argv += optind;
377
378 #define BACKWARD_COMPATIBILITY
379 #ifdef BACKWARD_COMPATIBILITY
380 if (*argv) {
381 nlistf = *argv;
382 if (*++argv) {
383 memf = *argv;
384 if (*++argv)
385 swapf = *argv;
386 }
387 }
388 #endif
389
390 if (memf == NULL) {
391 kd = kvm_openfiles(NULL, NULL, NULL, KVM_NO_FILES, errbuf);
392 donlist_sysctl();
393 } else
394 kd = kvm_openfiles(nlistf, memf, swapf, O_RDONLY, errbuf);
395
396 if (kd == NULL)
397 errx(1, "%s", errbuf);
398
399 if (!fmt)
400 parsefmt(default_fmt);
401
402 /* Add default sort criteria */
403 parsesort("tdev,pid");
404 calc_pcpu = 0;
405 SIMPLEQ_FOREACH(vent, &sortlist, next) {
406 if (vent->var->flag & LWP || vent->var->type == UNSPECIFIED)
407 warnx("Cannot sort on %s, sort key ignored",
408 vent->var->name);
409 if (vent->var->type == PCPU)
410 calc_pcpu = 1;
411 }
412 if (!calc_pcpu)
413 SIMPLEQ_FOREACH(vent, &displaylist, next)
414 if (vent->var->type == PCPU) {
415 calc_pcpu = 1;
416 break;
417 }
418
419 /*
420 * scan requested variables, noting what structures are needed.
421 */
422 scanvars();
423
424 /*
425 * select procs
426 */
427 if (!(kinfo = getkinfo_kvm(kd, what, flag, &nentries)))
428 err(1, "%s", kvm_geterr(kd));
429 if (nentries == 0) {
430 printheader();
431 return 1;
432 }
433 pinfo = setpinfo(kinfo, nentries, calc_pcpu, rawcpu);
434
435 /*
436 * sort proc list
437 */
438 qsort(pinfo, nentries, sizeof(struct pinfo), pscomp);
439
440 /*
441 * We want things in descendant order
442 */
443 if (descendancy)
444 descendant_sort(pinfo, nentries);
445
446 /*
447 * For each proc, call each variable output function in
448 * "setwidth" mode to determine the widest element of
449 * the column.
450 */
451
452 for (i = 0; i < nentries; i++) {
453 struct pinfo *pi = &pinfo[i];
454 struct kinfo_proc2 *ki = pi->ki;
455
456 if (xflg == 0 && (ki->p_tdev == (uint32_t)NODEV ||
457 (ki->p_flag & P_CONTROLT) == 0))
458 continue;
459
460 kl = kvm_getlwps(kd, ki->p_pid, ki->p_paddr,
461 sizeof(struct kinfo_lwp), &nlwps);
462 if (kl == 0)
463 nlwps = 0;
464 if (showlwps == 0) {
465 l = pick_representative_lwp(ki, kl, nlwps);
466 SIMPLEQ_FOREACH(vent, &displaylist, next)
467 OUTPUT(vent, l, pi, ki, WIDTHMODE);
468 } else {
469 /* The printing is done with the loops
470 * reversed, but here we don't need that,
471 * and this improves the code locality a bit.
472 */
473 SIMPLEQ_FOREACH(vent, &displaylist, next)
474 for (j = 0; j < nlwps; j++)
475 OUTPUT(vent, &kl[j], pi, ki, WIDTHMODE);
476 }
477 }
478 /*
479 * Print header - AFTER determining process field widths.
480 * printheader() also adds up the total width of all
481 * fields the first time it's called.
482 */
483 printheader();
484 /*
485 * For each proc, call each variable output function in
486 * print mode.
487 */
488 for (i = lineno = 0; i < nentries; i++) {
489 struct pinfo *pi = &pinfo[i];
490 struct kinfo_proc2 *ki = pi->ki;
491
492 if (xflg == 0 && (ki->p_tdev == (uint32_t)NODEV ||
493 (ki->p_flag & P_CONTROLT ) == 0))
494 continue;
495 kl = kvm_getlwps(kd, ki->p_pid, (u_long)ki->p_paddr,
496 sizeof(struct kinfo_lwp), &nlwps);
497 if (kl == 0)
498 nlwps = 0;
499 if (showlwps == 0) {
500 l = pick_representative_lwp(ki, kl, nlwps);
501 SIMPLEQ_FOREACH(vent, &displaylist, next) {
502 OUTPUT(vent, l, pi, ki, PRINTMODE);
503 if (SIMPLEQ_NEXT(vent, next) != NULL)
504 (void)putchar(' ');
505 }
506 (void)putchar('\n');
507 if (prtheader && lineno++ == prtheader - 4) {
508 (void)putchar('\n');
509 printheader();
510 lineno = 0;
511 }
512 } else {
513 for (j = 0; j < nlwps; j++) {
514 SIMPLEQ_FOREACH(vent, &displaylist, next) {
515 OUTPUT(vent, &kl[j], pi, ki, PRINTMODE);
516 if (SIMPLEQ_NEXT(vent, next) != NULL)
517 (void)putchar(' ');
518 }
519 (void)putchar('\n');
520 if (prtheader && lineno++ == prtheader - 4) {
521 (void)putchar('\n');
522 printheader();
523 lineno = 0;
524 }
525 }
526 }
527 }
528 return eval;
529 }
530
531 static struct kinfo_lwp *
532 pick_representative_lwp(struct kinfo_proc2 *ki, struct kinfo_lwp *kl, int nlwps)
533 {
534 int i, onproc, running, sleeping, stopped, suspended;
535 static struct kinfo_lwp zero_lwp;
536
537 if (kl == 0)
538 return &zero_lwp;
539
540 /* Trivial case: only one LWP */
541 if (nlwps == 1)
542 return kl;
543
544 switch (ki->p_realstat) {
545 case SSTOP:
546 case SACTIVE:
547 /* Pick the most live LWP */
548 onproc = running = sleeping = stopped = suspended = -1;
549 for (i = 0; i < nlwps; i++) {
550 switch (kl[i].l_stat) {
551 case LSONPROC:
552 onproc = i;
553 break;
554 case LSRUN:
555 running = i;
556 break;
557 case LSSLEEP:
558 sleeping = i;
559 break;
560 case LSSTOP:
561 stopped = i;
562 break;
563 case LSSUSPENDED:
564 suspended = i;
565 break;
566 }
567 }
568 if (onproc != -1)
569 return &kl[onproc];
570 if (running != -1)
571 return &kl[running];
572 if (sleeping != -1)
573 return &kl[sleeping];
574 if (stopped != -1)
575 return &kl[stopped];
576 if (suspended != -1)
577 return &kl[suspended];
578 break;
579 case SZOMB:
580 /* First will do */
581 return kl;
582 break;
583 }
584 /* Error condition! */
585 warnx("Inconsistent LWP state for process %d", ki->p_pid);
586 return kl;
587 }
588
589 static struct kinfo_proc2 *
590 getkinfo_kvm(kvm_t *kdp, int what, int flag, int *nentriesp)
591 {
592
593 return (kvm_getproc2(kdp, what, flag, sizeof(struct kinfo_proc2),
594 nentriesp));
595 }
596
597 static struct pinfo *
598 setpinfo(struct kinfo_proc2 *ki, int nentries, int calc_pcpu, int rawcpu)
599 {
600 struct pinfo *pi;
601 int i;
602
603 pi = calloc(nentries, sizeof(*pi));
604 if (pi == NULL)
605 err(1, "calloc");
606
607 if (calc_pcpu && !nlistread)
608 donlist();
609
610 for (i = 0; i < nentries; i++) {
611 pi[i].ki = &ki[i];
612 if (!calc_pcpu)
613 continue;
614 if (ki[i].p_swtime == 0 || ki[i].p_realstat == SZOMB) {
615 pi[i].pcpu = 0.0;
616 continue;
617 }
618 pi[i].pcpu = 100.0 * (double)ki[i].p_pctcpu / fscale;
619 if (!rawcpu)
620 pi[i].pcpu /= 1.0 - exp(ki[i].p_swtime * log_ccpu);
621 }
622
623 return pi;
624 }
625
626 static void
627 scanvars(void)
628 {
629 struct varent *vent;
630 VAR *v;
631
632 SIMPLEQ_FOREACH(vent, &displaylist, next) {
633 v = vent->var;
634 if (v->flag & COMM) {
635 needcomm = 1;
636 break;
637 }
638 }
639 }
640
641 static int
642 pscomp(const void *a, const void *b)
643 {
644 const struct pinfo *pa = (const struct pinfo *)a;
645 const struct pinfo *pb = (const struct pinfo *)b;
646 const struct kinfo_proc2 *ka = pa->ki;
647 const struct kinfo_proc2 *kb = pb->ki;
648
649 int i;
650 int64_t i64;
651 VAR *v;
652 struct varent *ve;
653 const sigset_t *sa, *sb;
654
655 #define V_SIZE(k) ((k)->p_vm_msize)
656 #define RDIFF_N(t, n) \
657 if (((const t *)((const char *)ka + v->off))[n] > ((const t *)((const char *)kb + v->off))[n]) \
658 return 1; \
659 if (((const t *)((const char *)ka + v->off))[n] < ((const t *)((const char *)kb + v->off))[n]) \
660 return -1;
661
662 #define RDIFF(type) RDIFF_N(type, 0); continue
663
664 SIMPLEQ_FOREACH(ve, &sortlist, next) {
665 v = ve->var;
666 if (v->flag & LWP)
667 /* LWP structure not available (yet) */
668 continue;
669 /* Sort on pvar() fields, + a few others */
670 switch (v->type) {
671 case CHAR:
672 RDIFF(char);
673 case UCHAR:
674 RDIFF(u_char);
675 case SHORT:
676 RDIFF(short);
677 case USHORT:
678 RDIFF(ushort);
679 case INT:
680 RDIFF(int);
681 case UINT:
682 RDIFF(uint);
683 case LONG:
684 RDIFF(long);
685 case ULONG:
686 RDIFF(ulong);
687 case INT32:
688 RDIFF(int32_t);
689 case UINT32:
690 RDIFF(uint32_t);
691 case SIGLIST:
692 sa = (const void *)((const char *)ka + v->off);
693 sb = (const void *)((const char *)kb + v->off);
694 i = 0;
695 do {
696 if (sa->__bits[i] > sb->__bits[i])
697 return 1;
698 if (sa->__bits[i] < sb->__bits[i])
699 return -1;
700 i++;
701 } while (i < (int)__arraycount(sa->__bits));
702 continue;
703 case INT64:
704 RDIFF(int64_t);
705 case KPTR:
706 case KPTR24:
707 case UINT64:
708 RDIFF(uint64_t);
709 case TIMEVAL:
710 /* compare xxx_sec then xxx_usec */
711 RDIFF_N(uint32_t, 0);
712 RDIFF_N(uint32_t, 1);
713 continue;
714 case CPUTIME:
715 i64 = ka->p_rtime_sec * 1000000 + ka->p_rtime_usec;
716 i64 -= kb->p_rtime_sec * 1000000 + kb->p_rtime_usec;
717 if (sumrusage) {
718 i64 += ka->p_uctime_sec * 1000000
719 + ka->p_uctime_usec;
720 i64 -= kb->p_uctime_sec * 1000000
721 + kb->p_uctime_usec;
722 }
723 if (i64 != 0)
724 return i64 > 0 ? 1 : -1;
725 continue;
726 case PCPU:
727 i = pb->pcpu - pa->pcpu;
728 if (i != 0)
729 return i;
730 continue;
731 case VSIZE:
732 i = V_SIZE(kb) - V_SIZE(ka);
733 if (i != 0)
734 return i;
735 continue;
736
737 default:
738 /* Ignore everything else */
739 break;
740 }
741 }
742 return 0;
743
744 #undef VSIZE
745 }
746
747 /*
748 * ICK (all for getopt), would rather hide the ugliness
749 * here than taint the main code.
750 *
751 * ps foo -> ps -foo
752 * ps 34 -> ps -p34
753 *
754 * The old convention that 't' with no trailing tty arg means the user's
755 * tty, is only supported if argv[1] doesn't begin with a '-'. This same
756 * feature is available with the option 'T', which takes no argument.
757 */
758 static char *
759 kludge_oldps_options(char *s)
760 {
761 size_t len;
762 char *newopts, *ns, *cp;
763
764 len = strlen(s);
765 if ((newopts = ns = malloc(len + 3)) == NULL)
766 err(1, NULL);
767 /*
768 * options begin with '-'
769 */
770 if (*s != '-')
771 *ns++ = '-'; /* add option flag */
772 /*
773 * gaze to end of argv[1]
774 */
775 cp = s + len - 1;
776 /*
777 * if the last letter is a 't' flag and there are no other option
778 * characters that take arguments (eg U, p, o) in the option
779 * string and the option string doesn't start with a '-' then
780 * convert to 'T' (meaning *this* terminal, i.e. ttyname(0)).
781 */
782 if (*cp == 't' && *s != '-' && strpbrk(s, ARGOPTS) == NULL)
783 *cp = 'T';
784 else {
785 /*
786 * otherwise check for trailing number, which *may* be a
787 * pid.
788 */
789 while (cp >= s && isdigit((unsigned char)*cp))
790 --cp;
791 }
792 cp++;
793 memmove(ns, s, (size_t)(cp - s)); /* copy up to trailing number */
794 ns += cp - s;
795 /*
796 * if there's a trailing number, and not a preceding 'p' (pid) or
797 * 't' (tty) flag, then assume it's a pid and insert a 'p' flag.
798 */
799 if (isdigit((unsigned char)*cp) &&
800 (cp == s || (cp[-1] != 'U' && cp[-1] != 't' && cp[-1] != 'p' &&
801 cp[-1] != '/' && (cp - 1 == s || cp[-2] != 't'))))
802 *ns++ = 'p';
803 /* and append the number */
804 (void)strcpy(ns, cp); /* XXX strcpy is safe here */
805
806 return (newopts);
807 }
808
809 static int
810 parsenum(const char *str, const char *msg)
811 {
812 char *ep;
813 unsigned long ul;
814
815 ul = strtoul(str, &ep, 0);
816
817 if (*str == '\0' || *ep != '\0')
818 errx(1, "Invalid %s: `%s'", msg, str);
819
820 if (ul > INT_MAX)
821 errx(1, "Out of range %s: `%s'", msg, str);
822
823 return (int)ul;
824 }
825
826 static void
827 descendant_sort(struct pinfo *ki, int items)
828 {
829 int dst, lvl, maxlvl, n, ndst, nsrc, siblings, src;
830 unsigned char *path;
831 struct pinfo kn;
832
833 /*
834 * First, sort the entries by descendancy, tracking the descendancy
835 * depth in the level field.
836 */
837 src = 0;
838 maxlvl = 0;
839 while (src < items) {
840 if (ki[src].level) {
841 src++;
842 continue;
843 }
844 for (nsrc = 1; src + nsrc < items; nsrc++)
845 if (!ki[src + nsrc].level)
846 break;
847
848 for (dst = 0; dst < items; dst++) {
849 if (ki[dst].ki->p_pid == ki[src].ki->p_pid)
850 continue;
851 if (ki[dst].ki->p_pid == ki[src].ki->p_ppid)
852 break;
853 }
854
855 if (dst == items) {
856 src += nsrc;
857 continue;
858 }
859
860 for (ndst = 1; dst + ndst < items; ndst++)
861 if (ki[dst + ndst].level <= ki[dst].level)
862 break;
863
864 for (n = src; n < src + nsrc; n++) {
865 ki[n].level += ki[dst].level + 1;
866 if (maxlvl < ki[n].level)
867 maxlvl = ki[n].level;
868 }
869
870 while (nsrc) {
871 if (src < dst) {
872 kn = ki[src];
873 memmove(ki + src, ki + src + 1,
874 (dst - src + ndst - 1) * sizeof *ki);
875 ki[dst + ndst - 1] = kn;
876 nsrc--;
877 dst--;
878 ndst++;
879 } else if (src != dst + ndst) {
880 kn = ki[src];
881 memmove(ki + dst + ndst + 1, ki + dst + ndst,
882 (src - dst - ndst) * sizeof *ki);
883 ki[dst + ndst] = kn;
884 ndst++;
885 nsrc--;
886 src++;
887 } else {
888 ndst += nsrc;
889 src += nsrc;
890 nsrc = 0;
891 }
892 }
893 }
894
895 /*
896 * Now populate prefix (instead of level) with the command
897 * prefix used to show descendancies.
898 */
899 path = malloc((maxlvl + 7) / 8);
900 memset(path, '\0', (maxlvl + 7) / 8);
901 for (src = 0; src < items; src++) {
902 if ((lvl = ki[src].level) == 0) {
903 ki[src].prefix = NULL;
904 continue;
905 }
906 if ((ki[src].prefix = malloc(lvl * 2 + 1)) == NULL)
907 errx(1, "malloc failed");
908 for (n = 0; n < lvl - 2; n++) {
909 ki[src].prefix[n * 2] =
910 path[n / 8] & 1 << (n % 8) ? '|' : ' ';
911 ki[src].prefix[n * 2 + 1] = ' ';
912
913 }
914 if (n == lvl - 2) {
915 /* Have I any more siblings? */
916 for (siblings = 0, dst = src + 1; dst < items; dst++) {
917 if (ki[dst].level > lvl)
918 continue;
919 if (ki[dst].level == lvl)
920 siblings = 1;
921 break;
922 }
923 if (siblings)
924 path[n / 8] |= 1 << (n % 8);
925 else
926 path[n / 8] &= ~(1 << (n % 8));
927 ki[src].prefix[n * 2] = siblings ? '|' : '`';
928 ki[src].prefix[n * 2 + 1] = '-';
929 n++;
930 }
931 strcpy(ki[src].prefix + n * 2, "- ");
932 }
933 free(path);
934 }
935
936 static void
937 usage(void)
938 {
939
940 (void)fprintf(stderr,
941 "usage:\t%s\n\t %s\n\t%s\n",
942 "ps [-AaCcdehjlmrSsTuvwx] [-k key] [-M core] [-N system] [-O fmt]",
943 "[-o fmt] [-p pid] [-t tty] [-U user] [-W swap]",
944 "ps -L");
945 exit(1);
946 /* NOTREACHED */
947 }
948