mirror of
https://github.com/opnsense/src.git
synced 2026-04-12 12:56:47 -04:00
This changes struct kinfo_filedesc and kinfo_vmentry such that they are same on both 32 and 64 bit platforms like i386/amd64 and won't require sysctl wrapping. Two new OIDs are assigned. The old ones are available under COMPAT_FREEBSD7 - but it isn't that simple. The superceded interface was never actually released on 7.x. The other main change is to pack the data passed to userland via the sysctl. kf_structsize and kve_structsize are reduced for the copyout. If you have a process with 100,000+ sockets open, the unpacked records require a 132MB+ copyout. With packing, it is "only" ~35MB. (Still seriously unpleasant, but not quite as devastating). A similar problem exists for the vmentry structure - have lots and lots of shared libraries and small mmaps and its copyout gets expensive too. My immediate problem is valgrind. It traditionally achieves this functionality by parsing procfs output, in a packed format. Secondly, when tracing 32 bit binaries on amd64 under valgrind, it uses a cross compiled 32 bit binary which ran directly into the differing data structures in 32 vs 64 bit mode. (valgrind uses this to track file descriptor operations and this therefore affected every single 32 bit binary) I've added two utility functions to libutil to unpack the structures into a fixed record length and to make it a little more convenient to use.
102 lines
3.1 KiB
C
102 lines
3.1 KiB
C
/*-
|
|
* Copyright (c) 2007 Robert N. M. Watson
|
|
* All rights reserved.
|
|
*
|
|
* 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.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/sysctl.h>
|
|
#include <sys/user.h>
|
|
|
|
#include <err.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <libutil.h>
|
|
|
|
#include "procstat.h"
|
|
|
|
void
|
|
procstat_vm(pid_t pid, struct kinfo_proc *kipp __unused)
|
|
{
|
|
struct kinfo_vmentry *freep, *kve;
|
|
int ptrwidth;
|
|
int i, cnt;
|
|
const char *str;
|
|
|
|
ptrwidth = 2*sizeof(void *) + 2;
|
|
if (!hflag)
|
|
printf("%5s %*s %*s %3s %4s %4s %3s %3s %2s %-2s %-s\n",
|
|
"PID", ptrwidth, "START", ptrwidth, "END", "PRT", "RES",
|
|
"PRES", "REF", "SHD", "FL", "TP", "PATH");
|
|
|
|
freep = kinfo_getvmmap(pid, &cnt);
|
|
for (i = 0; i < cnt; i++) {
|
|
kve = &freep[i];
|
|
printf("%5d ", pid);
|
|
printf("%*p ", ptrwidth, kve->kve_start);
|
|
printf("%*p ", ptrwidth, kve->kve_end);
|
|
printf("%s", kve->kve_protection & KVME_PROT_READ ? "r" : "-");
|
|
printf("%s", kve->kve_protection & KVME_PROT_WRITE ? "w" : "-");
|
|
printf("%s ", kve->kve_protection & KVME_PROT_EXEC ? "x" : "-");
|
|
printf("%4d ", kve->kve_resident);
|
|
printf("%4d ", kve->kve_private_resident);
|
|
printf("%3d ", kve->kve_ref_count);
|
|
printf("%3d ", kve->kve_shadow_count);
|
|
printf("%-1s", kve->kve_flags & KVME_FLAG_COW ? "C" : "-");
|
|
printf("%-1s ", kve->kve_flags & KVME_FLAG_NEEDS_COPY ? "N" :
|
|
"-");
|
|
switch (kve->kve_type) {
|
|
case KVME_TYPE_NONE:
|
|
str = "--";
|
|
break;
|
|
case KVME_TYPE_DEFAULT:
|
|
str = "df";
|
|
break;
|
|
case KVME_TYPE_VNODE:
|
|
str = "vn";
|
|
break;
|
|
case KVME_TYPE_SWAP:
|
|
str = "sw";
|
|
break;
|
|
case KVME_TYPE_DEVICE:
|
|
str = "dv";
|
|
break;
|
|
case KVME_TYPE_PHYS:
|
|
str = "ph";
|
|
break;
|
|
case KVME_TYPE_DEAD:
|
|
str = "dd";
|
|
break;
|
|
case KVME_TYPE_UNKNOWN:
|
|
default:
|
|
str = "??";
|
|
break;
|
|
}
|
|
printf("%-2s ", str);
|
|
printf("%-s\n", kve->kve_path);
|
|
}
|
|
free(freep);
|
|
}
|