NetBSD/bin/ps/ps.c

733 lines
18 KiB
C
Raw Normal View History

2004-03-27 17:09:10 +03:00
/* $NetBSD: ps.c,v 1.54 2004/03/27 14:09:10 simonb Exp $ */
1995-03-21 12:01:59 +03:00
/*
* Copyright (c) 2000 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Simon Burge.
*
* 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 NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
*/
/*
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. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03:00
* 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
1997-07-21 00:37:53 +04:00
__COPYRIGHT("@(#) Copyright (c) 1990, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n");
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#ifndef lint
1995-03-21 12:01:59 +03:00
#if 0
1994-05-09 07:31:07 +04:00
static char sccsid[] = "@(#)ps.c 8.4 (Berkeley) 4/2/94";
1995-03-21 12:01:59 +03:00
#else
2004-03-27 17:09:10 +03:00
__RCSID("$NetBSD: ps.c,v 1.54 2004/03/27 14:09:10 simonb 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/user.h>
#include <sys/time.h>
#include <sys/resource.h>
2003-01-18 13:52:16 +03:00
#include <sys/lwp.h>
1993-03-21 12:45:37 +03:00
#include <sys/proc.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
1994-05-09 07:31:07 +04:00
#include <sys/sysctl.h>
#include <stddef.h>
1994-05-09 07:31:07 +04:00
#include <ctype.h>
#include <err.h>
1993-03-21 12:45:37 +03:00
#include <errno.h>
1994-05-09 07:31:07 +04:00
#include <fcntl.h>
#include <kvm.h>
#include <limits.h>
1994-05-09 07:31:07 +04:00
#include <nlist.h>
#include <paths.h>
1998-07-28 22:54:02 +04:00
#include <pwd.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
#include <unistd.h>
1993-03-21 12:45:37 +03:00
#include "ps.h"
/*
* ARGOPTS must contain all option characters that take arguments
* (except for 't'!) - it is used in kludge_oldps_options()
*/
#define GETOPTSTR "acCeghjk:LlM:mN:O:o:p:rSsTt:U:uvW:wx"
#define ARGOPTS "kMNOopUW"
struct kinfo_proc2 *kinfo;
struct varent *vhead, *sorthead;
1993-03-21 12:45:37 +03:00
int eval; /* exit value */
int rawcpu; /* -C */
int sumrusage; /* -S */
int termwidth; /* width of screen (0 == infinity) */
int totwidth; /* calculated width of requested variables */
2003-01-18 13:52:16 +03:00
int needcomm, needenv, commandonly;
uid_t myuid;
1993-03-21 12:45:37 +03:00
2003-01-18 13:52:16 +03:00
static struct kinfo_lwp
*pick_representative_lwp(struct kinfo_proc2 *,
struct kinfo_lwp *, int);
static struct kinfo_proc2
*getkinfo_kvm(kvm_t *, int, int, int *);
static char *kludge_oldps_options(char *);
static int pscomp(const void *, const void *);
static void scanvars(void);
static void usage(void);
int main(int, char *[]);
1993-03-21 12:45:37 +03:00
char dfmt[] = "pid tt state time command";
char jfmt[] = "user pid ppid pgid sess jobc state tt time command";
char lfmt[] = "uid pid ppid cpu pri nice vsz rss wchan state tt time command";
char o1[] = "pid";
char o2[] = "tt state time command";
char sfmt[] = "uid pid ppid cpu lid nlwp pri nice vsz rss wchan lstate tt "
"time command";
1993-03-21 12:45:37 +03:00
char ufmt[] = "user pid %cpu %mem vsz rss tt state start time command";
1994-05-09 07:31:07 +04:00
char vfmt[] = "pid state time sl re pagein vsz rss lim tsiz %cpu %mem command";
1993-03-21 12:45:37 +03:00
1994-05-09 07:31:07 +04:00
kvm_t *kd;
int
main(int argc, char *argv[])
1993-03-21 12:45:37 +03:00
{
1994-05-09 07:31:07 +04:00
struct varent *vent;
1993-03-21 12:45:37 +03:00
struct winsize ws;
2003-01-18 13:52:16 +03:00
struct kinfo_lwp *kl, *l;
int ch, flag, i, j, fmt, lineno, nentries, nlwps;
int prtheader, wflag, what, xflg, mode, showlwps;
char *nlistf, *memf, *swapf, errbuf[_POSIX2_LINE_MAX];
char *ttname;
1993-03-21 12:45:37 +03:00
if ((ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&ws) == -1 &&
ioctl(STDERR_FILENO, TIOCGWINSZ, (char *)&ws) == -1 &&
ioctl(STDIN_FILENO, TIOCGWINSZ, (char *)&ws) == -1) ||
1993-03-21 12:45:37 +03:00
ws.ws_col == 0)
termwidth = 79;
else
termwidth = ws.ws_col - 1;
if (argc > 1)
argv[1] = kludge_oldps_options(argv[1]);
2003-01-18 13:52:16 +03:00
fmt = prtheader = wflag = xflg = showlwps = 0;
1998-07-28 22:54:02 +04:00
what = KERN_PROC_UID;
flag = myuid = getuid();
1993-03-21 12:45:37 +03:00
memf = nlistf = swapf = NULL;
mode = PRINTMODE;
while ((ch = getopt(argc, argv, GETOPTSTR)) != -1)
1993-03-21 12:45:37 +03:00
switch((char)ch) {
case 'a':
1998-07-28 22:54:02 +04:00
what = KERN_PROC_ALL;
flag = 0;
1993-03-21 12:45:37 +03:00
break;
1994-09-17 02:23:29 +04:00
case 'c':
commandonly = 1;
break;
1994-05-09 07:31:07 +04:00
case 'e': /* XXX set ufmt */
needenv = 1;
break;
1993-03-21 12:45:37 +03:00
case 'C':
rawcpu = 1;
break;
case 'g':
1994-05-09 07:31:07 +04:00
break; /* no-op */
1993-03-21 12:45:37 +03:00
case 'h':
prtheader = ws.ws_row > 5 ? ws.ws_row : 22;
break;
case 'j':
parsefmt(jfmt);
fmt = 1;
1993-03-21 12:45:37 +03:00
jfmt[0] = '\0';
break;
case 'k':
parsesort(optarg);
break;
case 'K':
break; /* no-op - was dontuseprocfs */
1994-05-09 07:31:07 +04:00
case 'L':
1993-03-21 12:45:37 +03:00
showkey();
exit(0);
1998-07-28 09:31:22 +04:00
/* NOTREACHED */
1993-03-21 12:45:37 +03:00
case 'l':
parsefmt(lfmt);
fmt = 1;
1993-03-21 12:45:37 +03:00
lfmt[0] = '\0';
break;
case 'M':
memf = optarg;
break;
case 'm':
parsesort("vsz");
1993-03-21 12:45:37 +03:00
break;
case 'N':
nlistf = optarg;
break;
case 'O':
parsefmt(o1);
parsefmt(optarg);
parsefmt(o2);
o1[0] = o2[0] = '\0';
fmt = 1;
1993-03-21 12:45:37 +03:00
break;
case 'o':
parsefmt(optarg);
fmt = 1;
1993-03-21 12:45:37 +03:00
break;
case 'p':
1998-07-28 22:54:02 +04:00
what = KERN_PROC_PID;
flag = atol(optarg);
1993-03-21 12:45:37 +03:00
xflg = 1;
break;
case 'r':
parsesort("%cpu");
1993-03-21 12:45:37 +03:00
break;
case 'S':
sumrusage = 1;
break;
2003-01-18 13:52:16 +03:00
case 's':
/* -L was already taken... */
showlwps = 1;
parsefmt(sfmt);
fmt = 1;
sfmt[0] = '\0';
break;
1993-03-21 12:45:37 +03:00
case 'T':
1998-07-27 21:06:48 +04:00
if ((ttname = ttyname(STDIN_FILENO)) == NULL)
1994-05-09 07:31:07 +04:00
errx(1, "stdin: not a terminal");
1998-07-27 21:06:48 +04:00
goto tty;
case 't':
ttname = optarg;
tty: {
1994-05-09 07:31:07 +04:00
struct stat sb;
char *ttypath, pathbuf[MAXPATHLEN];
1993-03-21 12:45:37 +03:00
flag = 0;
if (strcmp(ttname, "?") == 0)
flag = KERN_PROC_TTY_NODEV;
else if (strcmp(ttname, "-") == 0)
flag = KERN_PROC_TTY_REVOKE;
else if (strcmp(ttname, "co") == 0)
1993-03-21 12:45:37 +03:00
ttypath = _PATH_CONSOLE;
else if (*ttname != '/')
1994-05-09 07:31:07 +04:00
(void)snprintf(ttypath = pathbuf,
sizeof(pathbuf), "%s%s", _PATH_TTY, ttname);
1993-03-21 12:45:37 +03:00
else
ttypath = ttname;
1998-07-28 22:54:02 +04:00
what = KERN_PROC_TTY;
if (flag == 0) {
if (stat(ttypath, &sb) == -1)
err(1, "%s", ttypath);
if (!S_ISCHR(sb.st_mode))
errx(1, "%s: not a terminal", ttypath);
flag = sb.st_rdev;
}
1993-03-21 12:45:37 +03:00
break;
}
1998-07-28 22:54:02 +04:00
case 'U':
if (*optarg != '\0') {
struct passwd *pw;
char *ep;
what = KERN_PROC_UID;
pw = getpwnam(optarg);
if (pw == NULL) {
errno = 0;
flag = strtoul(optarg, &ep, 10);
if (errno)
err(1, "%s", optarg);
if (*ep != '\0')
errx(1, "%s: illegal user name",
optarg);
} else
flag = pw->pw_uid;
}
break;
1993-03-21 12:45:37 +03:00
case 'u':
parsefmt(ufmt);
parsesort("%cpu");
fmt = 1;
1993-03-21 12:45:37 +03:00
ufmt[0] = '\0';
break;
case 'v':
parsefmt(vfmt);
parsesort("vsz");
fmt = 1;
1993-03-21 12:45:37 +03:00
vfmt[0] = '\0';
break;
case 'W':
swapf = optarg;
break;
case 'w':
if (wflag)
1993-03-21 12:45:37 +03:00
termwidth = UNLIMITED;
else if (termwidth < 131)
termwidth = 131;
1994-05-09 07:31:07 +04:00
wflag++;
1993-03-21 12:45:37 +03:00
break;
case 'x':
xflg = 1;
break;
case '?':
default:
usage();
}
argc -= optind;
argv += optind;
#define BACKWARD_COMPATIBILITY
#ifdef BACKWARD_COMPATIBILITY
if (*argv) {
nlistf = *argv;
if (*++argv) {
memf = *argv;
if (*++argv)
swapf = *argv;
}
}
#endif
1994-05-09 07:31:07 +04:00
if (memf == NULL) {
kd = kvm_openfiles(NULL, NULL, NULL, KVM_NO_FILES, errbuf);
donlist_sysctl();
} else
kd = kvm_openfiles(nlistf, memf, swapf, O_RDONLY, errbuf);
if (kd == 0)
errx(1, "%s", errbuf);
1993-03-21 12:45:37 +03:00
if (!fmt)
1993-03-21 12:45:37 +03:00
parsefmt(dfmt);
/* Add default sort criteria */
parsesort("tdev,pid");
for (vent = sorthead; vent; vent = vent->next) {
if (vent->var->flag & LWP || vent->var->type == UNSPECIFIED)
warnx("Cannot sort on %s, sort key ignored\n",
vent->var->name);
}
1993-03-21 12:45:37 +03:00
/*
* scan requested variables, noting what structures are needed.
1993-03-21 12:45:37 +03:00
*/
scanvars();
1993-03-21 12:45:37 +03:00
/*
* select procs
*/
2003-01-18 13:52:16 +03:00
if (!(kinfo = getkinfo_kvm(kd, what, flag, &nentries)))
err(1, "%s", kvm_geterr(kd));
if (nentries == 0) {
printheader();
exit(1);
}
1993-03-21 12:45:37 +03:00
/*
* sort proc list
*/
qsort(kinfo, nentries, sizeof(struct kinfo_proc2), pscomp);
1993-03-21 12:45:37 +03:00
/*
* For each proc, call each variable output function in
* "setwidth" mode to determine the widest element of
* the column.
*/
if (mode == PRINTMODE)
for (i = 0; i < nentries; i++) {
struct kinfo_proc2 *ki = &kinfo[i];
if (xflg == 0 && (ki->p_tdev == NODEV ||
(ki->p_flag & P_CONTROLT) == 0))
continue;
2003-01-18 13:52:16 +03:00
kl = kvm_getlwps(kd, ki->p_pid, ki->p_paddr,
sizeof(struct kinfo_lwp), &nlwps);
if (kl == 0)
nlwps = 0;
if (showlwps == 0) {
l = pick_representative_lwp(ki, kl, nlwps);
for (vent = vhead; vent; vent = vent->next)
OUTPUT(vent, ki, l, WIDTHMODE);
} else {
/* The printing is done with the loops
* reversed, but here we don't need that,
* and this improves the code locality a bit.
*/
for (vent = vhead; vent; vent = vent->next)
for (j = 0; j < nlwps; j++)
OUTPUT(vent, ki, &kl[j],
2003-01-18 13:52:16 +03:00
WIDTHMODE);
}
}
/*
* Print header - AFTER determining process field widths.
* printheader() also adds up the total width of all
* fields the first time it's called.
*/
printheader();
/*
* For each proc, call each variable output function in
* print mode.
1993-03-21 12:45:37 +03:00
*/
for (i = lineno = 0; i < nentries; i++) {
struct kinfo_proc2 *ki = &kinfo[i];
if (xflg == 0 && (ki->p_tdev == NODEV ||
(ki->p_flag & P_CONTROLT ) == 0))
1993-03-21 12:45:37 +03:00
continue;
2003-01-18 13:52:16 +03:00
kl = kvm_getlwps(kd, ki->p_pid, (u_long)ki->p_paddr,
sizeof(struct kinfo_lwp), &nlwps);
if (kl == 0)
nlwps = 0;
if (showlwps == 0) {
l = pick_representative_lwp(ki, kl, nlwps);
for (vent = vhead; vent; vent = vent->next) {
OUTPUT(vent, ki, l, mode);
if (vent->next != NULL)
(void)putchar(' ');
}
1994-05-09 07:31:07 +04:00
(void)putchar('\n');
2003-01-18 13:52:16 +03:00
if (prtheader && lineno++ == prtheader - 4) {
(void)putchar('\n');
printheader();
lineno = 0;
}
} else {
for (j = 0; j < nlwps; j++) {
for (vent = vhead; vent; vent = vent->next) {
OUTPUT(vent, ki, &kl[j], mode);
if (vent->next != NULL)
(void)putchar(' ');
}
(void)putchar('\n');
if (prtheader && lineno++ == prtheader - 4) {
(void)putchar('\n');
printheader();
lineno = 0;
}
}
1993-03-21 12:45:37 +03:00
}
}
exit(eval);
1998-07-28 09:31:22 +04:00
/* NOTREACHED */
1993-03-21 12:45:37 +03:00
}
2003-01-18 13:52:16 +03:00
static struct kinfo_lwp *
pick_representative_lwp(struct kinfo_proc2 *ki, struct kinfo_lwp *kl, int nlwps)
2003-01-18 13:52:16 +03:00
{
int i, onproc, running, sleeping, stopped, suspended;
static struct kinfo_lwp zero_lwp;
if (kl == 0)
return &zero_lwp;
2003-01-18 13:52:16 +03:00
/* Trivial case: only one LWP */
if (nlwps == 1)
return kl;
switch (ki->p_realstat) {
case SSTOP:
case SACTIVE:
/* Pick the most live LWP */
onproc = running = sleeping = stopped = suspended = -1;
for (i = 0; i < nlwps; i++) {
switch (kl[i].l_stat) {
case LSONPROC:
onproc = i;
break;
case LSRUN:
running = i;
break;
case LSSLEEP:
sleeping = i;
break;
case LSSTOP:
stopped = i;
break;
case LSSUSPENDED:
suspended = i;
break;
}
}
if (onproc != -1)
return &kl[onproc];
if (running != -1)
return &kl[running];
if (sleeping != -1)
return &kl[sleeping];
if (stopped != -1)
return &kl[stopped];
if (suspended != -1)
return &kl[suspended];
break;
case SZOMB:
/* First will do */
return kl;
break;
}
/* Error condition! */
warnx("Inconsistent LWP state for process %d\n", ki->p_pid);
return kl;
}
2003-01-18 13:52:16 +03:00
static struct kinfo_proc2 *
getkinfo_kvm(kvm_t *kdp, int what, int flag, int *nentriesp)
{
2001-11-03 16:21:09 +03:00
return (kvm_getproc2(kdp, what, flag, sizeof(struct kinfo_proc2),
nentriesp));
}
1994-05-09 07:31:07 +04:00
static void
scanvars(void)
1993-03-21 12:45:37 +03:00
{
1994-05-09 07:31:07 +04:00
struct varent *vent;
VAR *v;
1993-03-21 12:45:37 +03:00
for (vent = vhead; vent; vent = vent->next) {
v = vent->var;
if (v->flag & COMM) {
1993-03-21 12:45:37 +03:00
needcomm = 1;
break;
}
1993-03-21 12:45:37 +03:00
}
}
1994-05-09 07:31:07 +04:00
static int
pscomp(const void *a, const void *b)
1993-03-21 12:45:37 +03:00
{
struct kinfo_proc2 *ka = (struct kinfo_proc2 *)a;
struct kinfo_proc2 *kb = (struct kinfo_proc2 *)b;
1993-03-21 12:45:37 +03:00
int i;
int64_t i64;
VAR *v;
struct varent *ve;
sigset_t *sa, *sb;
2004-03-27 17:09:10 +03:00
#define V_SIZE(k) (k->p_vm_dsize + k->p_vm_ssize + k->p_vm_tsize)
#define RDIFF_N(t, n) \
if (((t *)((char *)ka + v->off))[n] > ((t *)((char *)kb + v->off))[n]) \
return 1; \
if (((t *)((char *)ka + v->off))[n] < ((t *)((char *)kb + v->off))[n]) \
return -1;
2004-03-27 17:09:10 +03:00
#define RDIFF(type) RDIFF_N(type, 0); continue
for (ve = sorthead; ve != NULL; ve = ve->next) {
v = ve->var;
if (v->flag & LWP)
/* LWP structure not available (yet) */
continue;
/* Sort on pvar() fields, + a few others */
switch (v->type) {
case CHAR:
RDIFF(char);
case UCHAR:
RDIFF(u_char);
case SHORT:
RDIFF(short);
case USHORT:
RDIFF(ushort);
case INT:
RDIFF(int);
case UINT:
RDIFF(uint);
case LONG:
RDIFF(long);
case ULONG:
RDIFF(ulong);
case INT32:
RDIFF(int32_t);
case UINT32:
RDIFF(uint32_t);
case SIGLIST:
sa = (void *)((char *)a + v->off);
sb = (void *)((char *)b + v->off);
i = 0;
do {
if (sa->__bits[i] > sb->__bits[i])
return 1;
if (sa->__bits[i] < sb->__bits[i])
return -1;
i++;
} while (i < sizeof sa->__bits / sizeof sa->__bits[0]);
continue;
case INT64:
RDIFF(int64_t);
case KPTR:
case KPTR24:
case UINT64:
RDIFF(uint64_t);
case TIMEVAL:
/* compare xxx_sec then xxx_usec */
RDIFF_N(uint32_t, 0);
RDIFF_N(uint32_t, 1);
continue;
case CPUTIME:
i64 = ka->p_rtime_sec * 1000000 + ka->p_rtime_usec;
i64 -= kb->p_rtime_sec * 1000000 + kb->p_rtime_usec;
if (sumrusage) {
i64 += ka->p_uctime_sec * 1000000
+ ka->p_uctime_usec;
i64 -= kb->p_uctime_sec * 1000000
+ kb->p_uctime_usec;
}
if (i64 != 0)
return i64 > 0 ? 1 : -1;
continue;
case PCPU:
i = getpcpu(kb) - getpcpu(ka);
if (i != 0)
return i;
continue;
case VSIZE:
i = V_SIZE(kb) - V_SIZE(ka);
if (i != 0)
return i;
continue;
1993-03-21 12:45:37 +03:00
default:
/* Ignore everything else */
break;
}
}
return 0;
#undef VSIZE
1993-03-21 12:45:37 +03:00
}
/*
* ICK (all for getopt), would rather hide the ugliness
* here than taint the main code.
*
* ps foo -> ps -foo
* ps 34 -> ps -p34
*
1998-07-28 22:54:02 +04:00
* The old convention that 't' with no trailing tty arg means the user's
1993-03-21 12:45:37 +03:00
* tty, is only supported if argv[1] doesn't begin with a '-'. This same
* feature is available with the option 'T', which takes no argument.
*/
1994-05-09 07:31:07 +04:00
static char *
kludge_oldps_options(char *s)
1993-03-21 12:45:37 +03:00
{
size_t len;
char *newopts, *ns, *cp;
len = strlen(s);
if ((newopts = ns = malloc(len + 3)) == NULL)
err(1, NULL);
1993-03-21 12:45:37 +03:00
/*
* options begin with '-'
*/
if (*s != '-')
*ns++ = '-'; /* add option flag */
/*
* gaze to end of argv[1]
*/
cp = s + len - 1;
/*
* if the last letter is a 't' flag and there are no other option
* characters that take arguments (eg U, p, o) in the option
* string and the option string doesn't start with a '-' then
* convert to 'T' (meaning *this* terminal, i.e. ttyname(0)).
1993-03-21 12:45:37 +03:00
*/
if (*cp == 't' && *s != '-' && strpbrk(s, ARGOPTS) == NULL)
1993-03-21 12:45:37 +03:00
*cp = 'T';
else {
/*
* otherwise check for trailing number, which *may* be a
* pid.
*/
while (cp >= s && isdigit(*cp))
--cp;
}
cp++;
1994-05-09 07:31:07 +04:00
memmove(ns, s, (size_t)(cp - s)); /* copy up to trailing number */
1993-03-21 12:45:37 +03:00
ns += cp - s;
/*
* if there's a trailing number, and not a preceding 'p' (pid) or
* 't' (tty) flag, then assume it's a pid and insert a 'p' flag.
*/
1998-07-28 22:54:02 +04:00
if (isdigit(*cp) &&
(cp == s || (cp[-1] != 'U' && cp[-1] != 't' && cp[-1] != 'p' &&
(cp - 1 == s || cp[-2] != 't'))))
1993-03-21 12:45:37 +03:00
*ns++ = 'p';
1997-04-21 09:28:43 +04:00
/* and append the number */
(void)strcpy(ns, cp); /* XXX strcpy is safe here */
1993-03-21 12:45:37 +03:00
return (newopts);
}
1994-05-09 07:31:07 +04:00
static void
usage(void)
1993-03-21 12:45:37 +03:00
{
1994-05-09 07:31:07 +04:00
(void)fprintf(stderr,
"usage:\t%s\n\t %s\n\t%s\n",
"ps [-acCehjlmrsSTuvwx] [-k key] [-O|o fmt] [-p pid] [-t tty]",
"[-M core] [-N system] [-W swap] [-U username]",
1994-05-09 07:31:07 +04:00
"ps [-L]");
1993-03-21 12:45:37 +03:00
exit(1);
1998-07-28 09:31:22 +04:00
/* NOTREACHED */
1993-03-21 12:45:37 +03:00
}