NetBSD/bin/ps/keyword.c

276 lines
8.6 KiB
C
Raw Normal View History

/* $NetBSD: keyword.c,v 1.17 1998/02/17 21:37:56 thorpej Exp $ */
1995-03-21 12:01:59 +03:00
1993-03-21 12:45:37 +03:00
/*-
1994-05-09 07:31:07 +04:00
* Copyright (c) 1990, 1993, 1994
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
1997-07-21 00:37:53 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1995-03-21 12:01:59 +03:00
#if 0
1994-05-09 07:31:07 +04:00
static char sccsid[] = "@(#)keyword.c 8.5 (Berkeley) 4/2/94";
1995-03-21 12:01:59 +03:00
#else
__RCSID("$NetBSD: keyword.c,v 1.17 1998/02/17 21:37:56 thorpej Exp $");
1995-03-21 12:01:59 +03:00
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include <sys/param.h>
#include <sys/time.h>
#include <sys/proc.h>
1998-02-06 07:47:30 +03:00
#include <sys/resource.h>
#include <sys/sysctl.h>
#include <sys/ucred.h>
1994-05-09 07:31:07 +04:00
#include <err.h>
1993-03-21 12:45:37 +03:00
#include <errno.h>
1994-05-09 07:31:07 +04:00
#include <stddef.h>
1993-03-21 12:45:37 +03:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
1994-05-09 07:31:07 +04:00
1993-03-21 12:45:37 +03:00
#include "ps.h"
1994-05-09 07:31:07 +04:00
static VAR *findvar __P((char *));
static int vcmp __P((const void *, const void *));
1993-03-21 12:45:37 +03:00
#ifdef NOTINUSE
int utime(), stime(), ixrss(), idrss(), isrss();
{{"utime"}, "UTIME", USER, utime, 4},
{{"stime"}, "STIME", USER, stime, 4},
{{"ixrss"}, "IXRSS", USER, ixrss, 4},
{{"idrss"}, "IDRSS", USER, idrss, 4},
{{"isrss"}, "ISRSS", USER, isrss, 4},
#endif
/* Compute offset in common structures. */
#define POFF(x) offsetof(struct proc, x)
#define EOFF(x) offsetof(struct eproc, x)
#define UOFF(x) offsetof(struct usave, x)
#define ROFF(x) offsetof(struct rusage, x)
#define UIDFMT "u"
#define UIDLEN 5
#define UID(n1, n2, fn, off) \
{ n1, n2, NULL, 0, fn, UIDLEN, off, UINT32, UIDFMT }
#define GID(n1, n2, fn, off) UID(n1, n2, fn, off)
1993-03-21 12:45:37 +03:00
#define PIDFMT "d"
#define PIDLEN 5
#define PID(n1, n2, fn, off) \
{ n1, n2, NULL, 0, fn, PIDLEN, off, INT32, PIDFMT }
1993-03-21 12:45:37 +03:00
#define USERLEN 8
VAR var[] = {
{"%cpu", "%CPU", NULL, 0, pcpu, 4},
{"%mem", "%MEM", NULL, 0, pmem, 4},
1994-05-09 07:31:07 +04:00
{"acflag", "ACFLG", NULL, 0, pvar, 3, POFF(p_acflag), USHORT, "x"},
1993-03-21 12:45:37 +03:00
{"acflg", "", "acflag"},
{"blocked", "", "sigmask"},
{"caught", "", "sigcatch"},
1994-05-09 07:31:07 +04:00
{"command", "COMMAND", NULL, COMM|LJUST|USER, command, 16},
{"cpu", "CPU", NULL, 0, pvar, 3, POFF(p_estcpu), UINT, "d"},
1993-03-21 12:45:37 +03:00
{"cputime", "", "time"},
{"f", "F", NULL, 0, pvar, 7, POFF(p_flag), INT, "x"},
1993-03-21 12:45:37 +03:00
{"flags", "", "f"},
{"holdcnt", "HOLDCNT", NULL, 0, pvar, 8, POFF(p_holdcnt), INT, "d"},
1993-03-21 12:45:37 +03:00
{"ignored", "", "sigignore"},
{"inblk", "INBLK", NULL, USER, rvar, 4, ROFF(ru_inblock), LONG, "d"},
{"inblock", "", "inblk"},
{"jobc", "JOBC", NULL, 0, evar, 4, EOFF(e_jobc), SHORT, "d"},
{"ktrace", "KTRACE", NULL, 0, pvar, 8, POFF(p_traceflag), INT, "x"},
/* XXX */
{"ktracep", "KTRACEP", NULL, 0, pvar, 8, POFF(p_tracep), KPTR, "x"},
1993-03-21 12:45:37 +03:00
{"lim", "LIM", NULL, 0, maxrss, 5},
{"login", "LOGIN", NULL, LJUST, logname, MAXLOGNAME},
{"logname", "", "login"},
{"lstart", "STARTED", NULL, LJUST|USER, lstarted, 28},
{"majflt", "MAJFLT", NULL, USER, rvar, 4, ROFF(ru_majflt), LONG, "d"},
{"minflt", "MINFLT", NULL, USER, rvar, 4, ROFF(ru_minflt), LONG, "d"},
{"msgrcv", "MSGRCV", NULL, USER, rvar, 4, ROFF(ru_msgrcv), LONG, "d"},
{"msgsnd", "MSGSND", NULL, USER, rvar, 4, ROFF(ru_msgsnd), LONG, "d"},
{"ni", "", "nice"},
{"nice", "NI", NULL, 0, pnice, 2},
1993-03-21 12:45:37 +03:00
{"nivcsw", "NIVCSW", NULL, USER, rvar, 5, ROFF(ru_nivcsw), LONG, "d"},
{"nsignals", "", "nsigs"},
{"nsigs", "NSIGS", NULL, USER, rvar, 4, ROFF(ru_nsignals), LONG, "d"},
{"nswap", "NSWAP", NULL, USER, rvar, 4, ROFF(ru_nswap), LONG, "d"},
{"nvcsw", "NVCSW", NULL, USER, rvar, 5, ROFF(ru_nvcsw), LONG, "d"},
/* XXX */
1993-03-21 12:45:37 +03:00
{"nwchan", "WCHAN", NULL, 0, pvar, 6, POFF(p_wchan), KPTR, "x"},
{"oublk", "OUBLK", NULL, USER, rvar, 4, ROFF(ru_oublock), LONG, "d"},
{"oublock", "", "oublk"},
/* XXX */
1993-03-21 12:45:37 +03:00
{"p_ru", "P_RU", NULL, 0, pvar, 6, POFF(p_ru), KPTR, "x"},
/* XXX */
1993-03-21 12:45:37 +03:00
{"paddr", "PADDR", NULL, 0, evar, 6, EOFF(e_paddr), KPTR, "x"},
{"pagein", "PAGEIN", NULL, USER, pagein, 6},
{"pcpu", "", "%cpu"},
{"pending", "", "sig"},
PID("pgid", "PGID", evar, EOFF(e_pgid)),
PID("pid", "PID", pvar, POFF(p_pid)),
1993-03-21 12:45:37 +03:00
{"pmem", "", "%mem"},
PID("ppid", "PPID", evar, EOFF(e_ppid)),
1993-03-21 12:45:37 +03:00
{"pri", "PRI", NULL, 0, pri, 3},
{"re", "RE", NULL, INF127, pvar, 3, POFF(p_swtime), UINT, "d"},
GID("rgid", "RGID", evar, EOFF(e_pcred.p_rgid)),
/* XXX */
1994-05-05 10:44:24 +04:00
{"rlink", "RLINK", NULL, 0, pvar, 8, POFF(p_back), KPTR, "x"},
1993-03-21 12:45:37 +03:00
{"rss", "RSS", NULL, 0, p_rssize, 4},
{"rssize", "", "rsz"},
{"rsz", "RSZ", NULL, 0, rssize, 4},
UID("ruid", "RUID", evar, EOFF(e_pcred.p_ruid)),
1993-03-21 12:45:37 +03:00
{"ruser", "RUSER", NULL, LJUST, runame, USERLEN},
{"sess", "SESS", NULL, 0, evar, 6, EOFF(e_sess), KPTR, "x"},
PID("sid", "SID", evar, EOFF(e_sid)),
{"sig", "PENDING", NULL, 0, pvar, 8, POFF(p_siglist), INT, "x"},
{"sigcatch", "CAUGHT", NULL, 0, pvar, 8, POFF(p_sigcatch), UINT, "x"},
1993-03-21 12:45:37 +03:00
{"sigignore", "IGNORED",
NULL, 0, pvar, 8, POFF(p_sigignore), UINT, "x"},
{"sigmask", "BLOCKED", NULL, 0, pvar, 8, POFF(p_sigmask), UINT, "x"},
{"sl", "SL", NULL, INF127, pvar, 3, POFF(p_slptime), UINT, "d"},
1993-03-21 12:45:37 +03:00
{"start", "STARTED", NULL, LJUST|USER, started, 8},
{"stat", "", "state"},
{"state", "STAT", NULL, 0, state, 4},
GID("svgid", "SVGID", evar, EOFF(e_pcred.p_svgid)),
UID("svuid", "SVUID", evar, EOFF(e_pcred.p_svuid)),
1993-03-21 12:45:37 +03:00
{"tdev", "TDEV", NULL, 0, tdev, 4},
{"time", "TIME", NULL, USER, cputime, 9},
PID("tpgid", "TGPID", evar, EOFF(e_tpgid)),
1993-03-21 12:45:37 +03:00
{"tsess", "TSESS", NULL, 0, evar, 6, EOFF(e_tsess), KPTR, "x"},
{"tsiz", "TSIZ", NULL, 0, tsize, 4},
{"tt", "TT", NULL, LJUST, tname, 3},
{"tty", "TTY", NULL, LJUST, longtname, 8},
{"ucomm", "UCOMM", NULL, LJUST, ucomm, MAXCOMLEN},
UID("uid", "UID", evar, EOFF(e_ucred.cr_uid)),
{"upr", "UPR", NULL, 0, pvar, 3, POFF(p_usrpri), UCHAR, "d"},
1993-03-21 12:45:37 +03:00
{"user", "USER", NULL, LJUST, uname, USERLEN},
{"usrpri", "", "upr"},
{"vsize", "", "vsz"},
{"vsz", "VSZ", NULL, 0, vsize, 5},
{"wchan", "WCHAN", NULL, LJUST, wchan, 6},
{"xstat", "XSTAT", NULL, 0, pvar, 4, POFF(p_xstat), USHORT, "x"},
{""},
};
1994-05-09 07:31:07 +04:00
void
1993-03-21 12:45:37 +03:00
showkey()
{
1994-05-09 07:31:07 +04:00
VAR *v;
int i;
char *p, *sep;
1993-03-21 12:45:37 +03:00
i = 0;
sep = "";
for (v = var; *(p = v->name); ++v) {
1994-05-09 07:31:07 +04:00
int len = strlen(p);
1993-03-21 12:45:37 +03:00
if (termwidth && (i += len + 1) > termwidth) {
i = len;
sep = "\n";
}
(void) printf("%s%s", sep, p);
sep = " ";
}
(void) printf("\n");
}
1994-05-09 07:31:07 +04:00
void
1993-03-21 12:45:37 +03:00
parsefmt(p)
char *p;
{
static struct varent *vtail;
#define FMTSEP " \t,\n"
while (p && *p) {
1994-05-09 07:31:07 +04:00
char *cp;
VAR *v;
struct varent *vent;
1993-03-21 12:45:37 +03:00
while ((cp = strsep(&p, FMTSEP)) != NULL && *cp == '\0')
/* void */;
if (!(v = findvar(cp)))
continue;
if ((vent = malloc(sizeof(struct varent))) == NULL)
1997-07-21 00:37:53 +04:00
err(1, "%s", "");
1993-03-21 12:45:37 +03:00
vent->var = v;
vent->next = NULL;
if (vhead == NULL)
vhead = vtail = vent;
else {
vtail->next = vent;
vtail = vent;
}
}
if (!vhead)
1994-05-09 07:31:07 +04:00
errx(1, "no valid keywords");
1993-03-21 12:45:37 +03:00
}
static VAR *
findvar(p)
char *p;
{
VAR *v, key;
char *hp;
key.name = p;
1994-05-09 07:31:07 +04:00
hp = strchr(p, '=');
1993-03-21 12:45:37 +03:00
if (hp)
*hp++ = '\0';
key.name = p;
1994-05-09 07:31:07 +04:00
v = bsearch(&key, var, sizeof(var)/sizeof(VAR) - 1, sizeof(VAR), vcmp);
1993-03-21 12:45:37 +03:00
if (v && v->alias) {
if (hp) {
1994-05-09 07:31:07 +04:00
warnx("%s: illegal keyword specification", p);
1993-03-21 12:45:37 +03:00
eval = 1;
}
parsefmt(v->alias);
1994-05-09 07:31:07 +04:00
return ((VAR *)NULL);
1993-03-21 12:45:37 +03:00
}
if (!v) {
1994-05-09 07:31:07 +04:00
warnx("%s: keyword not found", p);
1993-03-21 12:45:37 +03:00
eval = 1;
return ((VAR *)NULL);
1993-03-21 12:45:37 +03:00
}
if (hp)
v->header = hp;
1994-05-09 07:31:07 +04:00
return (v);
1993-03-21 12:45:37 +03:00
}
1994-05-09 07:31:07 +04:00
static int
1993-03-21 12:45:37 +03:00
vcmp(a, b)
1994-05-09 07:31:07 +04:00
const void *a, *b;
1993-03-21 12:45:37 +03:00
{
1994-05-09 07:31:07 +04:00
return (strcmp(((VAR *)a)->name, ((VAR *)b)->name));
1993-03-21 12:45:37 +03:00
}