procstat_vm.c revision 227317
1/*-
2 * Copyright (c) 2007 Robert N. M. Watson
3 * 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 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/usr.bin/procstat/procstat_vm.c 227317 2011-11-07 21:16:19Z trociny $
27 */
28
29#include <sys/param.h>
30#include <sys/sysctl.h>
31#include <sys/user.h>
32
33#include <err.h>
34#include <errno.h>
35#include <libprocstat.h>
36#include <stdio.h>
37#include <stdlib.h>
38#include <stdint.h>
39#include <libutil.h>
40
41#include "procstat.h"
42
43void
44procstat_vm(struct kinfo_proc *kipp)
45{
46	struct kinfo_vmentry *freep, *kve;
47	int ptrwidth;
48	int i, cnt;
49	const char *str;
50
51	ptrwidth = 2*sizeof(void *) + 2;
52	if (!hflag)
53		printf("%5s %*s %*s %3s %4s %4s %3s %3s %3s %-2s %-s\n",
54		    "PID", ptrwidth, "START", ptrwidth, "END", "PRT", "RES",
55		    "PRES", "REF", "SHD", "FL", "TP", "PATH");
56
57	freep = kinfo_getvmmap(kipp->ki_pid, &cnt);
58	if (freep == NULL)
59		return;
60	for (i = 0; i < cnt; i++) {
61		kve = &freep[i];
62		printf("%5d ", kipp->ki_pid);
63		printf("%#*jx ", ptrwidth, (uintmax_t)kve->kve_start);
64		printf("%#*jx ", ptrwidth, (uintmax_t)kve->kve_end);
65		printf("%s", kve->kve_protection & KVME_PROT_READ ? "r" : "-");
66		printf("%s", kve->kve_protection & KVME_PROT_WRITE ? "w" : "-");
67		printf("%s ", kve->kve_protection & KVME_PROT_EXEC ? "x" : "-");
68		printf("%4d ", kve->kve_resident);
69		printf("%4d ", kve->kve_private_resident);
70		printf("%3d ", kve->kve_ref_count);
71		printf("%3d ", kve->kve_shadow_count);
72		printf("%-1s", kve->kve_flags & KVME_FLAG_COW ? "C" : "-");
73		printf("%-1s", kve->kve_flags & KVME_FLAG_NEEDS_COPY ? "N" :
74		    "-");
75		printf("%-1s ", kve->kve_flags & KVME_FLAG_SUPER ? "S" : "-");
76		switch (kve->kve_type) {
77		case KVME_TYPE_NONE:
78			str = "--";
79			break;
80		case KVME_TYPE_DEFAULT:
81			str = "df";
82			break;
83		case KVME_TYPE_VNODE:
84			str = "vn";
85			break;
86		case KVME_TYPE_SWAP:
87			str = "sw";
88			break;
89		case KVME_TYPE_DEVICE:
90			str = "dv";
91			break;
92		case KVME_TYPE_PHYS:
93			str = "ph";
94			break;
95		case KVME_TYPE_DEAD:
96			str = "dd";
97			break;
98		case KVME_TYPE_SG:
99			str = "sg";
100			break;
101		case KVME_TYPE_UNKNOWN:
102		default:
103			str = "??";
104			break;
105		}
106		printf("%-2s ", str);
107		printf("%-s\n", kve->kve_path);
108	}
109	free(freep);
110}
111