summaryrefslogtreecommitdiff
path: root/usr.bin/vmstat
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-12-15 03:43:42 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-12-15 03:43:42 +0000
commitc17a62acbabdbe36ee55e8b87bf6c6e0cadb3942 (patch)
tree2580b8f1021ec9b2fda279fe2f22844298904c26 /usr.bin/vmstat
parentd196417615cee2b0bef878d8bece937836f17b1f (diff)
change over last few bits to use sysctl(3) if possible, and make this
not setgid kmem (hurray!) ok tedu, tested jsg
Diffstat (limited to 'usr.bin/vmstat')
-rw-r--r--usr.bin/vmstat/Makefile4
-rw-r--r--usr.bin/vmstat/vmstat.c52
2 files changed, 18 insertions, 38 deletions
diff --git a/usr.bin/vmstat/Makefile b/usr.bin/vmstat/Makefile
index effbf02831a..6ee77cedea3 100644
--- a/usr.bin/vmstat/Makefile
+++ b/usr.bin/vmstat/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.7 2001/06/27 06:16:50 art Exp $
+# $OpenBSD: Makefile,v 1.8 2007/12/15 03:43:41 deraadt Exp $
PROG= vmstat
@@ -6,8 +6,6 @@ SRCS= dkstats.c vmstat.c
MAN= vmstat.8
DPADD= ${LIBKVM}
LDADD= -lkvm
-BINGRP= kmem
-BINMODE=2555
.include <bsd.prog.mk>
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c
index 7cd6a5fe74f..81b815f6497 100644
--- a/usr.bin/vmstat/vmstat.c
+++ b/usr.bin/vmstat/vmstat.c
@@ -1,5 +1,5 @@
/* $NetBSD: vmstat.c,v 1.29.4.1 1996/06/05 00:21:05 cgd Exp $ */
-/* $OpenBSD: vmstat.c,v 1.106 2007/10/26 14:15:25 sobrado Exp $ */
+/* $OpenBSD: vmstat.c,v 1.107 2007/12/15 03:43:41 deraadt Exp $ */
/*
* Copyright (c) 1980, 1986, 1991, 1993
@@ -40,7 +40,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)vmstat.c 8.1 (Berkeley) 6/6/93";
#else
-static const char rcsid[] = "$OpenBSD: vmstat.c,v 1.106 2007/10/26 14:15:25 sobrado Exp $";
+static const char rcsid[] = "$OpenBSD: vmstat.c,v 1.107 2007/12/15 03:43:41 deraadt Exp $";
#endif
#endif /* not lint */
@@ -92,10 +92,7 @@ struct nlist namelist[] = {
{ "_nselcoll" },
#define X_POOLHEAD 7 /* sysctl */
{ "_pool_head" },
- { "" },
-};
-
-struct nlist namelist2[] = {
+#define X_KMPAGESFREE 8 /* sysctl */
{ "_uvm_km_pages_free" },
{ "" },
};
@@ -128,7 +125,6 @@ void dopool(void);
void dosum(void);
void dovmstat(u_int, int);
void kread(int, void *, size_t);
-int kreado(struct nlist *, void *, size_t);
void usage(void);
void dotimes(void);
void doforkst(void);
@@ -216,9 +212,7 @@ main(int argc, char *argv[])
* Discard setgid privileges if not the running kernel so that bad
* guys can't print interesting stuff from kernel memory.
*/
-#if notyet
if (nlistf != NULL || memf != NULL) {
-#endif
kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf);
if (kd == 0)
errx(1, "kvm_openfiles: %s", errbuf);
@@ -243,10 +237,8 @@ main(int argc, char *argv[])
} else
errx(1, "kvm_nlist: %s", kvm_geterr(kd));
}
-#ifdef notyet
} else if (setresgid(gid, gid, gid) == -1)
err(1, "setresgid");
-#endif /* notyet */
mib[0] = CTL_HW;
mib[1] = HW_NCPU;
@@ -1065,8 +1057,18 @@ dopool_sysctl(void)
inuse /= 1024;
total /= 1024;
- if (!kreado(namelist2, &kmfp, sizeof(kmfp)))
- total += kmfp * (getpagesize() / 1024);
+ if (nlistf == NULL && memf == NULL) {
+ int mib[] = { CTL_VM, VM_KMPAGESFREE };
+ size_t size = sizeof(kmfp);
+
+ if (sysctl(mib, 2, &kmfp, &size, NULL, 0) < 0) {
+ warn("could not read uvm.kmpagesfree");
+ return;
+ }
+ } else {
+ kread(X_KMPAGESFREE, &kmfp, sizeof(kmfp));
+ }
+ total += kmfp * (getpagesize() / 1024);
printf("\nIn use %ldK, total allocated %ldK; utilization %.1f%%\n",
inuse, total, (double)(100 * inuse) / total);
}
@@ -1111,8 +1113,8 @@ dopool_kvm(void)
inuse /= 1024;
total /= 1024;
- if (!kreado(namelist2, &kmfp, sizeof(kmfp)))
- total += kmfp * (getpagesize() / 1024);
+ kread(X_KMPAGESFREE, &kmfp, sizeof(kmfp));
+ total += kmfp * (getpagesize() / 1024);
printf("\nIn use %ldK, total allocated %ldK; utilization %.1f%%\n",
inuse, total, (double)(100 * inuse) / total);
}
@@ -1139,26 +1141,6 @@ kread(int nlx, void *addr, size_t size)
}
}
-/*
- * kreado reads something from the kernel, given its nlist index.
- */
-int
-kreado(struct nlist *nl, void *addr, size_t size)
-{
- int c;
-
- if ((c = kvm_nlist(kd, nl)) != 0)
- return (c);
-
- if (nl->n_type == 0 || nl->n_value == 0)
- return (-1);
-
- if (kvm_read(kd, nl->n_value, addr, size) != size)
- return (-1);
-
- return (0);
-}
-
void
usage(void)
{