udp/usrreq: Add brackets properly
[dragonfly.git] / bin / ps / print.c
blob2bb98d05efdb43fefd19705c886ca4bb59e28886
1 /*-
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
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 * 3. 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.
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.
29 * @(#)print.c 8.6 (Berkeley) 4/16/94
30 * $FreeBSD: src/bin/ps/print.c,v 1.36.2.4 2002/11/30 13:00:14 tjr Exp $
31 * $DragonFly: src/bin/ps/print.c,v 1.34 2008/11/10 14:56:33 swildner Exp $
34 #include <sys/user.h>
35 #include <sys/param.h>
36 #include <sys/time.h>
37 #include <sys/resource.h>
38 #include <sys/stat.h>
40 #include <sys/ucred.h>
41 #include <sys/sysctl.h>
42 #include <sys/rtprio.h>
43 #include <vm/vm.h>
45 #include <err.h>
46 #include <langinfo.h>
47 #include <locale.h>
48 #include <math.h>
49 #include <nlist.h>
50 #include <pwd.h>
51 #include <stddef.h>
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <unistd.h>
55 #include <string.h>
56 #include <vis.h>
58 #include "ps.h"
60 static const char *make_printable(const char *str);
61 static void put64(u_int64_t n, int w, int type);
63 void
64 printheader(void)
66 const VAR *v;
67 struct varent *vent;
68 int allempty;
70 allempty = 1;
71 STAILQ_FOREACH(vent, &var_head, link) {
72 if (*vent->header != '\0') {
73 allempty = 0;
74 break;
77 if (allempty)
78 return;
79 STAILQ_FOREACH(vent, &var_head, link) {
80 v = vent->var;
81 if (v->flag & LJUST) {
82 if (STAILQ_NEXT(vent, link) == NULL) /* last one */
83 printf("%s", vent->header);
84 else
85 printf("%-*s", vent->width, vent->header);
86 } else
87 printf("%*s", vent->width, vent->header);
88 if (STAILQ_NEXT(vent, link) != NULL)
89 putchar(' ');
91 putchar('\n');
94 void
95 command(const KINFO *k, const struct varent *vent)
97 int left;
98 int indent;
99 char *cp, *vis_env, *vis_args;
101 if (cflag) {
102 /* Don't pad the last field. */
103 if (STAILQ_NEXT(vent, link) == NULL)
104 printf("%s", make_printable(KI_PROC(k, comm)));
105 else
106 printf("%-*s", vent->width,
107 make_printable(KI_PROC(k, comm)));
108 return;
111 if ((vis_args = malloc(strlen(k->ki_args) * 4 + 1)) == NULL)
112 err(1, NULL);
113 strvis(vis_args, k->ki_args, VIS_TAB | VIS_NL | VIS_NOSLASH);
114 if (k->ki_env) {
115 if ((vis_env = malloc(strlen(k->ki_env) * 4 + 1)) == NULL)
116 err(1, NULL);
117 strvis(vis_env, k->ki_env, VIS_TAB | VIS_NL | VIS_NOSLASH);
118 } else {
119 vis_env = NULL;
122 indent = k->ki_indent;
123 if (indent < 0)
124 indent = 0;
126 if (STAILQ_NEXT(vent, link) == NULL) {
127 /* last field */
128 if (termwidth == UNLIMITED) {
129 if (vis_env)
130 printf("%s ", vis_env);
131 while (indent) {
132 putchar(' ');
133 --indent;
135 printf("%s", vis_args);
136 } else {
137 left = termwidth - (totwidth - vent->width);
138 if (left < 1) /* already wrapped, just use std width */
139 left = vent->width;
140 while (indent && left > 1) {
141 putchar(' ');
142 --indent;
143 --left;
145 if ((cp = vis_env) != NULL) {
146 while (--left >= 0 && *cp)
147 putchar(*cp++);
148 if (--left >= 0)
149 putchar(' ');
151 for (cp = vis_args; --left >= 0 && *cp != '\0';)
152 putchar(*cp++);
154 } else
155 /* XXX env? */
156 printf("%-*.*s", vent->width, vent->width, vis_args);
157 free(vis_args);
158 if (vis_env != NULL)
159 free(vis_env);
162 void
163 ucomm(const KINFO *k, const struct varent *vent)
165 /* Do not pad the last field */
166 if (STAILQ_NEXT(vent, link) == NULL)
167 printf("%s", make_printable(KI_PROC(k, comm)));
168 else
169 printf("%-*s", vent->width, make_printable(KI_PROC(k, comm)));
172 void
173 logname(const KINFO *k, const struct varent *vent)
175 const char *s = KI_PROC(k, login);
177 printf("%-*s", vent->width, *s != '\0' ? s : "-");
180 void
181 state(const KINFO *k, const struct varent *vent)
183 int flag;
184 char *cp;
185 char buf[16];
187 flag = KI_PROC(k, flags);
188 cp = buf;
190 switch (KI_PROC(k, stat)) {
192 case SSTOP:
193 *cp = 'T';
194 break;
196 case SACTIVE:
197 switch (KI_LWP(k, stat)) {
198 case LSSLEEP:
199 if (KI_LWP(k, flags) & LWP_SINTR) {
200 /* interruptable wait short/long */
201 *cp = KI_LWP(k, slptime) >= MAXSLP ? 'I' : 'S';
203 else if (KI_LWP(k, tdflags) & TDF_SINTR)
204 *cp = 'S'; /* interruptable lwkt wait */
205 else if (KI_PROC(k, paddr))
206 *cp = 'D'; /* uninterruptable wait */
207 else
208 *cp = 'B'; /* uninterruptable lwkt wait */
209 /*break;*/
211 case LSRUN:
212 if (KI_LWP(k, stat) == LSRUN) {
213 *cp = 'R';
214 if (!(KI_LWP(k, tdflags) &
215 (TDF_RUNNING | TDF_RUNQ)))
216 *++cp = 'Q';
218 /*if (KI_LWP(k, tdflags) & (TDF_RUNNING | TDF_RUNQ))*/ {
219 ++cp;
220 sprintf(cp, "%d", KI_LWP(k, cpuid));
221 while (cp[1])
222 ++cp;
224 break;
226 case LSSTOP:
227 /* shouldn't happen anyways */
228 *cp = 'T';
229 break;
231 break;
233 case SZOMB:
234 *cp = 'Z';
235 break;
237 default:
238 *cp = '?';
241 cp++;
242 if (flag & P_SWAPPEDOUT)
243 *cp++ = 'W';
244 if (KI_PROC(k, nice) < NZERO)
245 *cp++ = '<';
246 else if (KI_PROC(k, nice) > NZERO)
247 *cp++ = 'N';
248 if (flag & P_TRACED)
249 *cp++ = 'X';
250 if (flag & P_WEXIT && KI_PROC(k, stat) != SZOMB)
251 *cp++ = 'E';
252 if (flag & P_PPWAIT)
253 *cp++ = 'V';
254 if ((flag & P_SYSTEM) || KI_PROC(k, lock) > 0)
255 *cp++ = 'L';
256 if (flag & P_JAILED)
257 *cp++ = 'J';
258 if (KI_PROC(k, auxflags) & KI_SLEADER)
259 *cp++ = 's';
260 if ((flag & P_CONTROLT) && KI_PROC(k, pgid) == KI_PROC(k, tpgid))
261 *cp++ = '+';
262 *cp = '\0';
263 printf("%-*s", vent->width, buf);
267 * Normalized priority (lower is better). For pure threads
268 * output a negated LWKT priority (so lower still means better).
270 * XXX bsd4 scheduler specific.
272 void
273 pri(const KINFO *k, const struct varent *vent)
275 if (KI_LWP(k, pid) != -1)
276 printf("%*d", vent->width, KI_LWP(k, prio));
277 else
278 printf("%*d", vent->width, -(KI_LWP(k, tdprio)));
281 void
282 tdpri(const KINFO *k, const struct varent *vent)
284 char buf[32];
285 int val = KI_LWP(k, tdprio);
287 snprintf(buf, sizeof(buf), "%2d", val);
288 printf("%*s", vent->width, buf);
291 void
292 uname(const KINFO *k, const struct varent *vent)
294 printf("%-*s", vent->width,
295 user_from_uid(KI_PROC(k, uid), 0));
299 s_uname(const KINFO *k)
301 return (strlen(user_from_uid(KI_PROC(k, uid), 0)));
304 void
305 runame(const KINFO *k, const struct varent *vent)
307 printf("%-*s", vent->width,
308 user_from_uid(KI_PROC(k, ruid), 0));
312 s_runame(const KINFO *k)
314 return (strlen(user_from_uid(KI_PROC(k, ruid), 0)));
317 void
318 tdev(const KINFO *k, const struct varent *vent)
320 dev_t dev;
321 char buff[16];
323 dev = KI_PROC(k, tdev);
324 if (dev == NODEV)
325 printf("%*s", vent->width, "??");
326 else {
327 snprintf(buff, sizeof(buff), "%d/%d", major(dev), minor(dev));
328 printf("%*s", vent->width, buff);
332 void
333 tname(const KINFO *k, const struct varent *vent)
335 dev_t dev;
336 const char *ttname;
338 dev = KI_PROC(k, tdev);
339 if (dev == NODEV || (ttname = devname(dev, S_IFCHR)) == NULL)
340 printf("%*s ", vent->width-1, "??");
341 else {
342 if (strncmp(ttname, "tty", 3) == 0 ||
343 strncmp(ttname, "cua", 3) == 0)
344 ttname += 3;
345 if (strncmp(ttname, "pts/", 4) == 0)
346 ttname += 4;
347 printf("%*.*s%c", vent->width-1, vent->width-1, ttname,
348 KI_PROC(k, auxflags) & KI_CTTY ? ' ' : '-');
352 void
353 longtname(const KINFO *k, const struct varent *vent)
355 dev_t dev;
356 const char *ttname;
358 dev = KI_PROC(k, tdev);
359 if (dev == NODEV || (ttname = devname(dev, S_IFCHR)) == NULL)
360 printf("%-*s", vent->width, "??");
361 else
362 printf("%-*s", vent->width, ttname);
365 void
366 started(const KINFO *k, const struct varent *vent)
368 static time_t now;
369 time_t then;
370 struct tm *tp;
371 char buf[100];
372 static int use_ampm = -1;
374 if (use_ampm < 0)
375 use_ampm = (*nl_langinfo(T_FMT_AMPM) != '\0');
377 then = KI_PROC(k, start).tv_sec;
378 if (then < btime.tv_sec) {
379 then = btime.tv_sec;
382 tp = localtime(&then);
383 if (!now)
384 time(&now);
385 if (now - then < 24 * 3600) {
386 strftime(buf, sizeof(buf) - 1,
387 use_ampm ? "%l:%M%p" : "%k:%M ", tp);
388 } else if (now - then < 7 * 86400) {
389 strftime(buf, sizeof(buf) - 1,
390 use_ampm ? "%a%I%p" : "%a%H ", tp);
391 } else
392 strftime(buf, sizeof(buf) - 1, "%e%b%y", tp);
393 printf("%-*s", vent->width, buf);
396 void
397 lstarted(const KINFO *k, const struct varent *vent)
399 time_t then;
400 char buf[100];
402 then = KI_PROC(k, start).tv_sec;
403 strftime(buf, sizeof(buf) -1, "%c", localtime(&then));
404 printf("%-*s", vent->width, buf);
407 void
408 wchan(const KINFO *k, const struct varent *vent)
410 if (*KI_LWP(k, wmesg)) {
411 printf("%-*.*s", vent->width, vent->width,
412 KI_LWP(k, wmesg));
413 } else {
414 printf("%-*s", vent->width, "-");
418 static u_int64_t
419 pgtob(u_int64_t pg)
421 static size_t pgsize;
423 if (pgsize == 0)
424 pgsize = getpagesize();
425 return(pg * pgsize);
428 void
429 vsize(const KINFO *k, const struct varent *vent)
431 put64((uintmax_t)KI_PROC(k, vm_map_size)/1024, vent->width, 'k');
434 void
435 rssize(const KINFO *k, const struct varent *vent)
437 /* XXX don't have info about shared */
438 put64(pgtob(KI_PROC(k, vm_rssize))/1024, vent->width, 'k');
441 /* doesn't account for text */
442 void
443 p_rssize(const KINFO *k, const struct varent *vent)
445 put64(pgtob(KI_PROC(k, vm_rssize))/1024, vent->width, 'k');
448 void
449 cputime(const KINFO *k, const struct varent *vent)
451 long secs;
452 long psecs; /* "parts" of a second. first micro, then centi */
453 u_int64_t timeus;
454 char obuff[128];
455 static char decimal_point = '\0';
457 if (decimal_point == '\0')
458 decimal_point = localeconv()->decimal_point[0];
461 * This counts time spent handling interrupts. We could
462 * fix this, but it is not 100% trivial (and interrupt
463 * time fractions only work on the sparc anyway). XXX
465 timeus = KI_LWP(k, uticks) + KI_LWP(k, sticks) +
466 KI_LWP(k, iticks);
467 secs = timeus / 1000000;
468 psecs = timeus % 1000000;
469 if (sumrusage) {
470 secs += KI_PROC(k, cru).ru_utime.tv_sec +
471 KI_PROC(k, cru).ru_stime.tv_sec;
472 psecs += KI_PROC(k, cru).ru_utime.tv_usec +
473 KI_PROC(k, cru).ru_stime.tv_usec;
476 * round and scale to 100's
478 psecs = (psecs + 5000) / 10000;
479 secs += psecs / 100;
480 psecs = psecs % 100;
481 #if 1
482 if (secs >= 86400) {
483 snprintf(obuff, sizeof(obuff), "%3ldd%02ld:%02ld",
484 secs / 86400, secs / (60 * 60) % 24, secs / 60 % 60);
485 } else if (secs >= 100 * 60) {
486 snprintf(obuff, sizeof(obuff), "%2ld:%02ld:%02ld",
487 secs / 60 / 60, secs / 60 % 60, secs % 60);
488 } else
489 #endif
491 snprintf(obuff, sizeof(obuff), "%3ld:%02ld%c%02ld",
492 secs / 60, secs % 60,
493 decimal_point, psecs);
495 printf("%*s", vent->width, obuff);
498 double
499 getpcpu(const KINFO *k)
501 static int failure;
503 if (!nlistread)
504 failure = donlist();
505 if (failure)
506 return (0.0);
508 #define fxtofl(fixpt) ((double)(fixpt) / fscale)
510 /* XXX - I don't like this */
511 if (KI_PROC(k, swtime) == 0 || (KI_PROC(k, flags) & P_SWAPPEDOUT))
512 return (0.0);
513 return (100.0 * fxtofl(KI_LWP(k, pctcpu)));
516 void
517 pcpu(const KINFO *k, const struct varent *vent)
519 printf("%*.1f", vent->width, getpcpu(k));
522 void
523 pnice(const KINFO *k, const struct varent *vent)
525 int niceval;
527 switch (KI_LWP(k, rtprio).type) {
528 case RTP_PRIO_REALTIME:
529 niceval = PRIO_MIN - 1 - RTP_PRIO_MAX + KI_LWP(k, rtprio).prio;
530 break;
531 case RTP_PRIO_IDLE:
532 niceval = PRIO_MAX + 1 + KI_LWP(k, rtprio).prio;
533 break;
534 case RTP_PRIO_THREAD:
535 niceval = PRIO_MIN - 1 - RTP_PRIO_MAX - KI_LWP(k, rtprio).prio;
536 break;
537 default:
538 niceval = KI_PROC(k, nice) - NZERO;
539 break;
541 printf("%*d", vent->width, niceval);
545 double
546 getpmem(const KINFO *k)
548 static int failure;
549 double fracmem;
550 int szptudot;
552 if (!nlistread)
553 failure = donlist();
554 if (failure)
555 return (0.0);
557 if (KI_PROC(k, flags) & P_SWAPPEDOUT)
558 return (0.0);
559 /* XXX want pmap ptpages, segtab, etc. (per architecture) */
560 szptudot = UPAGES;
561 /* XXX don't have info about shared */
562 fracmem = ((float)KI_PROC(k, vm_rssize) + szptudot)/mempages;
563 return (100.0 * fracmem);
566 void
567 pmem(const KINFO *k, const struct varent *vent)
569 printf("%*.1f", vent->width, getpmem(k));
572 void
573 pagein(const KINFO *k, const struct varent *vent)
575 printf("%*ld", vent->width, KI_LWP(k, ru).ru_majflt);
578 /* ARGSUSED */
579 void
580 maxrss(const KINFO *k __unused, const struct varent *vent)
582 printf("%*ld", vent->width, KI_PROC(k, ru).ru_maxrss);
585 void
586 tsize(const KINFO *k, const struct varent *vent)
588 put64(pgtob(KI_PROC(k, vm_tsize))/1024, vent->width, 'k');
591 void
592 rtprior(const KINFO *k, const struct varent *vent)
594 struct rtprio *prtp;
595 char str[8];
596 unsigned prio, type;
598 prtp = &KI_LWP(k, rtprio);
599 prio = prtp->prio;
600 type = prtp->type;
601 switch (type) {
602 case RTP_PRIO_REALTIME:
603 snprintf(str, sizeof(str), "real:%u", prio);
604 break;
605 case RTP_PRIO_NORMAL:
606 strncpy(str, "normal", sizeof(str));
607 break;
608 case RTP_PRIO_IDLE:
609 snprintf(str, sizeof(str), "idle:%u", prio);
610 break;
611 default:
612 snprintf(str, sizeof(str), "%u:%u", type, prio);
613 break;
615 str[sizeof(str) - 1] = '\0';
616 printf("%*s", vent->width, str);
620 * Generic output routines. Print fields from various prototype
621 * structures.
623 static void
624 printval(const char *bp, const struct varent *vent)
626 static char ofmt[32] = "%";
627 const char *fcp;
628 char *cp;
630 cp = ofmt + 1;
631 fcp = vent->var->fmt;
632 if (vent->var->flag & LJUST)
633 *cp++ = '-';
634 *cp++ = '*';
635 while ((*cp++ = *fcp++));
637 switch (vent->var->type) {
638 case CHAR:
639 printf(ofmt, vent->width, *(const char *)bp);
640 break;
641 case UCHAR:
642 printf(ofmt, vent->width, *(const u_char *)bp);
643 break;
644 case SHORT:
645 printf(ofmt, vent->width, *(const short *)bp);
646 break;
647 case USHORT:
648 printf(ofmt, vent->width, *(const u_short *)bp);
649 break;
650 case INT:
651 printf(ofmt, vent->width, *(const int *)bp);
652 break;
653 case UINT:
654 printf(ofmt, vent->width, *(const u_int *)bp);
655 break;
656 case LONG:
657 printf(ofmt, vent->width, *(const long *)bp);
658 break;
659 case ULONG:
660 printf(ofmt, vent->width, *(const u_long *)bp);
661 break;
662 case KPTR:
663 printf(ofmt, vent->width, *(const u_long *)bp);
664 break;
665 default:
666 errx(1, "unknown type %d", vent->var->type);
670 void
671 pvar(const KINFO *k, const struct varent *vent)
673 printval((char *)((char *)k->ki_proc + vent->var->off), vent);
676 void
677 lpest(const KINFO *k, const struct varent *vent)
679 int val;
681 val = *(int *)((char *)&k->ki_proc->kp_lwp + vent->var->off);
682 val = val / 128;
683 printval((char *)&val, vent);
687 void
688 lpvar(const KINFO *k, const struct varent *vent)
690 printval((char *)((char *)&k->ki_proc->kp_lwp + vent->var->off), vent);
693 void
694 rvar(const KINFO *k, const struct varent *vent)
696 printval(((const char *)&KI_LWP(k, ru) + vent->var->off), vent);
699 static const char *
700 make_printable(const char *str)
702 static char *cpy;
703 int len;
705 if (cpy)
706 free(cpy);
707 len = strlen(str);
708 if ((cpy = malloc(len * 4 + 1)) == NULL)
709 err(1, NULL);
710 strvis(cpy, str, VIS_TAB | VIS_NL | VIS_NOSLASH);
711 return(cpy);
715 * Output a number, divide down as needed to fit within the
716 * field. This function differs from the code used by systat
717 * in that it tries to differentiate the display by always
718 * using a decimal point for excessively large numbers so
719 * the human eye naturally notices the difference.
721 static void
722 put64(u_int64_t n, int w, int type)
724 char b[128];
725 u_int64_t d;
726 u_int64_t u;
727 size_t len;
728 int ntype;
730 snprintf(b, sizeof(b), "%*jd", w, (uintmax_t)n);
731 len = strlen(b);
732 if (len <= (size_t)w) {
733 fwrite(b, len, 1, stdout);
734 return;
737 if (type == 'D')
738 u = 1000;
739 else
740 u = 1024;
742 ntype = 0;
743 for (d = 1; n / d >= 100000; d *= u) {
744 switch(type) {
745 case 'D':
746 case 0:
747 type = 'k';
748 ntype = 'M';
749 break;
750 case 'k':
751 type = 'M';
752 ntype = 'G';
753 break;
754 case 'M':
755 type = 'G';
756 ntype = 'T';
757 break;
758 case 'G':
759 type = 'T';
760 ntype = 'X';
761 break;
762 case 'T':
763 type = 'X';
764 ntype = '?';
765 break;
766 default:
767 type = '?';
768 break;
771 if (w > 4 && n / d >= u) {
772 snprintf(b, sizeof(b), "%*ju.%02u%c",
773 w - 4,
774 (uintmax_t)(n / (d * u)),
775 (u_int)(n / (d * u / 100) % 100),
776 ntype);
777 } else {
778 snprintf(b, sizeof(b), "%*jd%c",
779 w - 1, (uintmax_t)n / d, type);
781 len = strlen(b);
782 fwrite(b, len, 1, stdout);