Change kinfo_proc interface between kernel and userland.
[dragonfly.git] / bin / ps / print.c
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  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * @(#)print.c  8.6 (Berkeley) 4/16/94
34  * $FreeBSD: src/bin/ps/print.c,v 1.36.2.4 2002/11/30 13:00:14 tjr Exp $
35  * $DragonFly: src/bin/ps/print.c,v 1.26 2007/02/01 10:33:25 corecode Exp $
36  */
37
38 #include <sys/param.h>
39 #include <sys/time.h>
40 #include <sys/resource.h>
41 #include <sys/stat.h>
42
43 #include <sys/ucred.h>
44 #include <sys/user.h>
45 #include <sys/sysctl.h>
46 #include <sys/rtprio.h>
47 #include <vm/vm.h>
48
49 #include <err.h>
50 #include <langinfo.h>
51 #include <locale.h>
52 #include <math.h>
53 #include <nlist.h>
54 #include <stddef.h>
55 #include <stdio.h>
56 #include <stdlib.h>
57 #include <unistd.h>
58 #include <string.h>
59 #include <vis.h>
60
61 #include "ps.h"
62
63 static const char *make_printable(const char *str);
64
65 void
66 printheader(void)
67 {
68         const VAR *v;
69         struct varent *vent;
70         int allempty;
71
72         allempty = 1;
73         STAILQ_FOREACH(vent, &var_head, link) {
74                 if (*vent->header != '\0') {
75                         allempty = 0;
76                         break;
77                 }
78         }
79         if (allempty)
80                 return;
81         STAILQ_FOREACH(vent, &var_head, link) {
82                 v = vent->var;
83                 if (v->flag & LJUST) {
84                         if (STAILQ_NEXT(vent, link) == NULL)    /* last one */
85                                 printf("%s", vent->header);
86                         else
87                                 printf("%-*s", vent->width, vent->header);
88                 } else
89                         printf("%*s", vent->width, vent->header);
90                 if (STAILQ_NEXT(vent, link) != NULL)
91                         putchar(' ');
92         }
93         putchar('\n');
94 }
95
96 void
97 command(const KINFO *k, const struct varent *vent)
98 {
99         const VAR *v;
100         int left;
101         char *cp, *vis_env, *vis_args;
102
103         v = vent->var;
104
105         if (cflag) {
106                 /* Don't pad the last field. */
107                 if (STAILQ_NEXT(vent, link) == NULL)
108                         printf("%s", make_printable(KI_PROC(k, comm)));
109                 else
110                         printf("%-*s", vent->width, 
111                                 make_printable(KI_PROC(k, comm)));
112                 return;
113         }
114
115         if ((vis_args = malloc(strlen(k->ki_args) * 4 + 1)) == NULL)
116                 err(1, NULL);
117         strvis(vis_args, k->ki_args, VIS_TAB | VIS_NL | VIS_NOSLASH);
118         if (k->ki_env) {
119                 if ((vis_env = malloc(strlen(k->ki_env) * 4 + 1)) == NULL)
120                         err(1, NULL);
121                 strvis(vis_env, k->ki_env, VIS_TAB | VIS_NL | VIS_NOSLASH);
122         } else
123                 vis_env = NULL;
124
125         if (STAILQ_NEXT(vent, link) == NULL) {
126                 /* last field */
127                 if (termwidth == UNLIMITED) {
128                         if (vis_env)
129                                 printf("%s ", vis_env);
130                         printf("%s", vis_args);
131                 } else {
132                         left = termwidth - (totwidth - vent->width);
133                         if (left < 1) /* already wrapped, just use std width */
134                                 left = vent->width;
135                         if ((cp = vis_env) != NULL) {
136                                 while (--left >= 0 && *cp)
137                                         putchar(*cp++);
138                                 if (--left >= 0)
139                                         putchar(' ');
140                         }
141                         for (cp = vis_args; --left >= 0 && *cp != '\0';)
142                                 putchar(*cp++);
143                 }
144         } else
145                 /* XXX env? */
146                 printf("%-*.*s", vent->width, vent->width, vis_args);
147         free(vis_args);
148         if (vis_env != NULL)
149                 free(vis_env);
150 }
151
152 void
153 ucomm(const KINFO *k, const struct varent *vent)
154 {
155         printf("%-*s", vent->width, make_printable(KI_PROC(k, comm)));
156 }
157
158 void
159 logname(const KINFO *k, const struct varent *vent)
160 {
161         const char *s = KI_PROC(k, login);
162
163         printf("%-*s", vent->width, *s != '\0' ? s : "-");
164 }
165
166 void
167 state(const KINFO *k, const struct varent *vent)
168 {
169         int flag;
170         char *cp;
171         char buf[16];
172
173         flag = KI_LWP(k, flags);
174         cp = buf;
175
176         switch (KI_PROC(k, stat)) {
177
178         case SSTOP:
179                 *cp = 'T';
180                 break;
181
182         case SSLEEP:
183                 if (flag & P_SINTR)     /* interruptable (long) */
184                         *cp = KI_LWP(k, slptime) >= MAXSLP ? 'I' : 'S';
185                 else if (KI_LWP(k, tdflags) & TDF_SINTR)
186                         *cp = 'S';
187                 else
188                         *cp = 'D';
189                 break;
190
191         case SRUN:
192         case SIDL:
193                 *cp = 'R';
194                 if (KI_LWP(k, tdflags) & TDF_RUNNING) {
195                     ++cp;
196                     sprintf(cp, "%d", KI_LWP(k, cpuid));
197                     while (cp[1])
198                         ++cp;
199                 }
200                 break;
201
202         case SZOMB:
203                 *cp = 'Z';
204                 break;
205
206         default:
207                 *cp = '?';
208         }
209         cp++;
210         if (flag & P_SWAPPEDOUT)
211                 *cp++ = 'W';
212         if (KI_PROC(k, nice) < NZERO)
213                 *cp++ = '<';
214         else if (KI_PROC(k, nice) > NZERO)
215                 *cp++ = 'N';
216         if (flag & P_TRACED)
217                 *cp++ = 'X';
218         if (flag & P_WEXIT && KI_LWP(k, stat) != SZOMB)
219                 *cp++ = 'E';
220         if (flag & P_PPWAIT)
221                 *cp++ = 'V';
222         if ((flag & P_SYSTEM) || KI_PROC(k, lock) > 0)
223                 *cp++ = 'L';
224         if (numcpus > 1 && KI_LWP(k, mpcount) == 0)
225                 *cp++ = 'M';
226         if (flag & P_JAILED)
227                 *cp++ = 'J';
228         if (KI_PROC(k, auxflags) & KI_SLEADER)
229                 *cp++ = 's';
230         if ((flag & P_CONTROLT) && KI_PROC(k, pgid) == KI_PROC(k, tpgid))
231                 *cp++ = '+';
232         *cp = '\0';
233         printf("%-*s", vent->width, buf);
234 }
235
236 /*
237  * Normalized priority (lower is better).  For pure threads
238  * output a negated LWKT priority (so lower still means better).
239  *
240  * XXX bsd4 scheduler specific.
241  */
242 void
243 pri(const KINFO *k, const struct varent *vent)
244 {
245         if (KI_LWP(k, pid) != -1)
246             printf("%*d", vent->width, KI_LWP(k, prio));
247         else
248             printf("%*d", vent->width, -(KI_LWP(k, tdprio) & TDPRI_MASK));
249 }
250
251 void
252 tdpri(const KINFO *k, const struct varent *vent)
253 {
254         char buf[32];
255         int val = KI_LWP(k, tdprio);
256
257         snprintf(buf, sizeof(buf), "%02d/%d", val & TDPRI_MASK, val / TDPRI_CRIT);
258         printf("%*s", vent->width, buf);
259 }
260
261 void
262 uname(const KINFO *k, const struct varent *vent)
263 {
264         printf("%-*s", vent->width,
265                user_from_uid(KI_PROC(k, uid), 0));
266 }
267
268 int
269 s_uname(const KINFO *k)
270 {
271         return (strlen(user_from_uid(KI_PROC(k, uid), 0)));
272 }
273
274 void
275 runame(const KINFO *k, const struct varent *vent)
276 {
277         printf("%-*s", vent->width,
278                user_from_uid(KI_PROC(k, ruid), 0));
279 }
280
281 int
282 s_runame(const KINFO *k)
283 {
284         return (strlen(user_from_uid(KI_PROC(k, ruid), 0)));
285 }
286
287 void
288 tdev(const KINFO *k, const struct varent *vent)
289 {
290         dev_t dev;
291         char buff[16];
292
293         dev = KI_PROC(k, tdev);
294         if (dev == NODEV)
295                 printf("%*s", vent->width, "??");
296         else {
297                 snprintf(buff, sizeof(buff), "%d/%d", major(dev), minor(dev));
298                 printf("%*s", vent->width, buff);
299         }
300 }
301
302 void
303 tname(const KINFO *k, const struct varent *vent)
304 {
305         dev_t dev;
306         const char *ttname;
307
308         dev = KI_PROC(k, tdev);
309         if (dev == NODEV || (ttname = devname(dev, S_IFCHR)) == NULL)
310                 printf("%*s ", vent->width-1, "??");
311         else {
312                 if (strncmp(ttname, "tty", 3) == 0 ||
313                     strncmp(ttname, "cua", 3) == 0)
314                         ttname += 3;
315                 printf("%*.*s%c", vent->width-1, vent->width-1, ttname,
316                         KI_PROC(k, auxflags) & KI_CTTY ? ' ' : '-');
317         }
318 }
319
320 void
321 longtname(const KINFO *k, const struct varent *vent)
322 {
323         dev_t dev;
324         const char *ttname;
325
326         dev = KI_PROC(k, tdev);
327         if (dev == NODEV || (ttname = devname(dev, S_IFCHR)) == NULL)
328                 printf("%-*s", vent->width, "??");
329         else
330                 printf("%-*s", vent->width, ttname);
331 }
332
333 void
334 started(const KINFO *k, const struct varent *vent)
335 {
336         static time_t now;
337         time_t then;
338         struct tm *tp;
339         char buf[100];
340         static int  use_ampm = -1;
341
342         if (use_ampm < 0)
343                 use_ampm = (*nl_langinfo(T_FMT_AMPM) != '\0');
344
345         then = KI_PROC(k, start).tv_sec;
346         if (then < btime.tv_sec) {
347                 then = btime.tv_sec;
348         }
349
350         tp = localtime(&then);
351         if (!now)
352                 time(&now);
353         if (now - then < 24 * 3600) {
354                 strftime(buf, sizeof(buf) - 1,
355                 use_ampm ? "%l:%M%p" : "%k:%M  ", tp);
356         } else if (now - then < 7 * 86400) {
357                 strftime(buf, sizeof(buf) - 1,
358                 use_ampm ? "%a%I%p" : "%a%H  ", tp);
359         } else
360                 strftime(buf, sizeof(buf) - 1, "%e%b%y", tp);
361         printf("%-*s", vent->width, buf);
362 }
363
364 void
365 lstarted(const KINFO *k, const struct varent *vent)
366 {
367         time_t then;
368         char buf[100];
369
370         then = KI_PROC(k, start).tv_sec;
371         strftime(buf, sizeof(buf) -1, "%c", localtime(&then));
372         printf("%-*s", vent->width, buf);
373 }
374
375 void
376 wchan(const KINFO *k, const struct varent *vent)
377 {
378         if (KI_LWP(k, wchan)) {
379                 if (*KI_LWP(k, wmesg) != '\0')
380                         printf("%-*.*s", vent->width, vent->width,
381                                KI_LWP(k, wmesg));
382                 else
383                         printf("%-*lx", vent->width,
384                                (long)KI_LWP(k, wchan));
385         } else
386                 printf("%-*s", vent->width, "-");
387 }
388
389 #ifndef pgtok
390 #define pgtok(a)        (((a)*getpagesize())/1024)
391 #endif
392
393 void
394 vsize(const KINFO *k, const struct varent *vent)
395 {
396         printf("%*d", vent->width, (KI_PROC(k, vm_map_size)/1024));
397 }
398
399 void
400 rssize(const KINFO *k, const struct varent *vent)
401 {
402         /* XXX don't have info about shared */
403         printf("%*lu", vent->width, (u_long)pgtok(KI_PROC(k, vm_rssize)));
404 }
405
406 void
407 p_rssize(const KINFO *k, const struct varent *vent)     /* doesn't account for text */
408 {
409         printf("%*ld", vent->width, (long)pgtok(KI_PROC(k, vm_rssize)));
410 }
411
412 void
413 cputime(const KINFO *k, const struct varent *vent)
414 {
415         long secs;
416         long psecs;     /* "parts" of a second. first micro, then centi */
417         char obuff[128];
418         static char decimal_point = '\0';
419
420         if (decimal_point == '\0')
421                 decimal_point = localeconv()->decimal_point[0];
422
423         if (KI_LWP(k, stat) == SZOMB) {
424                 secs = 0;
425                 psecs = 0;
426         } else {
427                 u_int64_t timeus;
428
429                 /*
430                  * This counts time spent handling interrupts.  We could
431                  * fix this, but it is not 100% trivial (and interrupt
432                  * time fractions only work on the sparc anyway).       XXX
433                  */
434                 timeus = KI_LWP(k, uticks) + KI_LWP(k, sticks) +
435                         KI_LWP(k, iticks);
436                 secs = timeus / 1000000;
437                 psecs = timeus % 1000000;
438                 if (sumrusage) {
439                         secs += KI_PROC(k, cru).ru_utime.tv_sec +
440                                 KI_PROC(k, cru).ru_stime.tv_sec;
441                         psecs += KI_PROC(k, cru).ru_utime.tv_usec +
442                                 KI_PROC(k, cru).ru_stime.tv_usec;
443                 }
444                 /*
445                  * round and scale to 100's
446                  */
447                 psecs = (psecs + 5000) / 10000;
448                 secs += psecs / 100;
449                 psecs = psecs % 100;
450         }
451         snprintf(obuff, sizeof(obuff),
452             "%3ld:%02ld%c%02ld", secs/60, secs%60, decimal_point, psecs);
453         printf("%*s", vent->width, obuff);
454 }
455
456 double
457 getpcpu(const KINFO *k)
458 {
459         static int failure;
460
461         if (!nlistread)
462                 failure = donlist();
463         if (failure)
464                 return (0.0);
465
466 #define fxtofl(fixpt)   ((double)(fixpt) / fscale)
467
468         /* XXX - I don't like this */
469         if (KI_LWP(k, swtime) == 0 || (KI_PROC(k, flags) & P_SWAPPEDOUT))
470                 return (0.0);
471         if (rawcpu)
472                 return (100.0 * fxtofl(KI_LWP(k, pctcpu)));
473         return (100.0 * fxtofl(KI_LWP(k, pctcpu)) /
474                 (1.0 - exp(KI_LWP(k, swtime) * log(fxtofl(ccpu)))));
475 }
476
477 void
478 pcpu(const KINFO *k, const struct varent *vent)
479 {
480         printf("%*.1f", vent->width, getpcpu(k));
481 }
482
483 void
484 pnice(const KINFO *k, const struct varent *vent)
485 {
486         int niceval;
487
488         switch (KI_LWP(k, rtprio).type) {
489         case RTP_PRIO_REALTIME:
490                 niceval = PRIO_MIN - 1 - RTP_PRIO_MAX + KI_LWP(k, rtprio).prio;
491                 break;
492         case RTP_PRIO_IDLE:
493                 niceval = PRIO_MAX + 1 + KI_LWP(k, rtprio).prio;
494                 break;
495         case RTP_PRIO_THREAD:
496                 niceval = PRIO_MIN - 1 - RTP_PRIO_MAX - KI_LWP(k, rtprio).prio;
497                 break;
498         default:
499                 niceval = KI_PROC(k, nice) - NZERO;
500                 break;
501         }
502         printf("%*d", vent->width, niceval);
503 }
504
505
506 double
507 getpmem(const KINFO *k)
508 {
509         static int failure;
510         double fracmem;
511         int szptudot;
512
513         if (!nlistread)
514                 failure = donlist();
515         if (failure)
516                 return (0.0);
517
518         if (KI_PROC(k, flags) & P_SWAPPEDOUT)
519                 return (0.0);
520         /* XXX want pmap ptpages, segtab, etc. (per architecture) */
521         szptudot = UPAGES;
522         /* XXX don't have info about shared */
523         fracmem = ((float)KI_PROC(k, vm_rssize) + szptudot)/mempages;
524         return (100.0 * fracmem);
525 }
526
527 void
528 pmem(const KINFO *k, const struct varent *vent)
529 {
530         printf("%*.1f", vent->width, getpmem(k));
531 }
532
533 void
534 pagein(const KINFO *k, const struct varent *vent)
535 {
536         printf("%*ld", vent->width, KI_LWP(k, ru).ru_majflt);
537 }
538
539 /* ARGSUSED */
540 void
541 maxrss(const KINFO *k __unused, const struct varent *vent)
542 {
543         printf("%*ld", vent->width, KI_PROC(k, ru).ru_maxrss);
544 }
545
546 void
547 tsize(const KINFO *k, const struct varent *vent)
548 {
549         printf("%*ld", vent->width, (long)pgtok(KI_PROC(k, vm_tsize)));
550 }
551
552 void
553 rtprior(const KINFO *k, const struct varent *vent)
554 {
555         struct rtprio *prtp;
556         char str[8];
557         unsigned prio, type;
558  
559         prtp = &KI_LWP(k, rtprio);
560         prio = prtp->prio;
561         type = prtp->type;
562         switch (type) {
563         case RTP_PRIO_REALTIME:
564                 snprintf(str, sizeof(str), "real:%u", prio);
565                 break;
566         case RTP_PRIO_NORMAL:
567                 strncpy(str, "normal", sizeof(str));
568                 break;
569         case RTP_PRIO_IDLE:
570                 snprintf(str, sizeof(str), "idle:%u", prio);
571                 break;
572         default:
573                 snprintf(str, sizeof(str), "%u:%u", type, prio);
574                 break;
575         }
576         str[sizeof(str) - 1] = '\0';
577         printf("%*s", vent->width, str);
578 }
579
580 /*
581  * Generic output routines.  Print fields from various prototype
582  * structures.
583  */
584 static void
585 printval(const char *bp, const struct varent *vent)
586 {
587         static char ofmt[32] = "%";
588         const char *fcp;
589         char *cp;
590
591         cp = ofmt + 1;
592         fcp = vent->var->fmt;
593         if (vent->var->flag & LJUST)
594                 *cp++ = '-';
595         *cp++ = '*';
596         while ((*cp++ = *fcp++));
597
598         switch (vent->var->type) {
599         case CHAR:
600                 printf(ofmt, vent->width, *(const char *)bp);
601                 break;
602         case UCHAR:
603                 printf(ofmt, vent->width, *(const u_char *)bp);
604                 break;
605         case SHORT:
606                 printf(ofmt, vent->width, *(const short *)bp);
607                 break;
608         case USHORT:
609                 printf(ofmt, vent->width, *(const u_short *)bp);
610                 break;
611         case INT:
612                 printf(ofmt, vent->width, *(const int *)bp);
613                 break;
614         case UINT:
615                 printf(ofmt, vent->width, *(const u_int *)bp);
616                 break;
617         case LONG:
618                 printf(ofmt, vent->width, *(const long *)bp);
619                 break;
620         case ULONG:
621                 printf(ofmt, vent->width, *(const u_long *)bp);
622                 break;
623         case KPTR:
624                 printf(ofmt, vent->width, *(const u_long *)bp);
625                 break;
626         default:
627                 errx(1, "unknown type %d", vent->var->type);
628         }
629 }
630
631 void
632 pvar(const KINFO *k, const struct varent *vent)
633 {
634         printval((char *)((char *)k->ki_proc + vent->var->off), vent);
635 }
636
637 void
638 lpest(const KINFO *k, const struct varent *vent)
639 {
640         int val;
641
642         val = *(int *)((char *)&k->ki_proc->kp_lwp + vent->var->off);
643         val = val / 128;
644         printval((char *)&val, vent);
645 }
646
647
648 void
649 lpvar(const KINFO *k, const struct varent *vent)
650 {
651         printval((char *)((char *)&k->ki_proc->kp_lwp + vent->var->off), vent);
652 }
653
654 void
655 rvar(const KINFO *k, const struct varent *vent)
656 {
657         printval(((const char *)&KI_LWP(k, ru) + vent->var->off), vent);
658 }
659
660 static const char *
661 make_printable(const char *str)
662 {
663     static char *cpy;
664     int len;
665
666     if (cpy)
667         free(cpy);
668     len = strlen(str);
669     if ((cpy = malloc(len * 4 + 1)) == NULL)
670         err(1, NULL);
671     strvis(cpy, str, VIS_TAB | VIS_NL | VIS_NOSLASH);
672     return(cpy);
673 }