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