1994-05-27 05:00:24 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1989, 1992, 1993
|
|
|
|
* The Regents of the University of California. 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.
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2001-09-16 21:35:07 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-27 05:00:24 +00:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
1999-12-27 07:14:58 +00:00
|
|
|
#if 0
|
1994-05-27 05:00:24 +00:00
|
|
|
static char sccsid[] = "@(#)kvm_file.c 8.1 (Berkeley) 6/4/93";
|
1999-12-27 07:14:58 +00:00
|
|
|
#endif
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
|
|
|
|
/*
|
1995-05-30 05:51:47 +00:00
|
|
|
* File list interface for kvm. pstat, fstat and netstat are
|
1994-05-27 05:00:24 +00:00
|
|
|
* users of this code, so we've factored it out into a separate module.
|
|
|
|
* Thus, we keep this grunge out of the other kvm applications (i.e.,
|
|
|
|
* most other applications are interested only in open/close/read/nlist).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/user.h>
|
|
|
|
#include <sys/proc.h>
|
2008-05-26 15:12:47 +00:00
|
|
|
#define _WANT_FILE /* make file.h give us 'struct file' */
|
1994-05-27 05:00:24 +00:00
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <nlist.h>
|
|
|
|
#include <kvm.h>
|
|
|
|
|
|
|
|
#include <vm/vm.h>
|
|
|
|
#include <vm/vm_param.h>
|
|
|
|
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
#include <ndbm.h>
|
|
|
|
#include <paths.h>
|
2009-06-14 12:42:06 +00:00
|
|
|
#include <stdlib.h>
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
#include "kvm_private.h"
|
|
|
|
|
|
|
|
#define KREAD(kd, addr, obj) \
|
|
|
|
(kvm_read(kd, addr, obj, sizeof(*obj)) != sizeof(*obj))
|
|
|
|
|
2007-12-30 01:43:51 +00:00
|
|
|
#define KREADN(kd, addr, obj, cnt) \
|
2011-01-23 11:08:28 +00:00
|
|
|
(kvm_read(kd, addr, obj, (cnt)) != (ssize_t)(cnt))
|
2007-12-30 01:43:51 +00:00
|
|
|
|
1994-05-27 05:00:24 +00:00
|
|
|
/*
|
|
|
|
* Get file structures.
|
|
|
|
*/
|
1996-07-12 18:57:58 +00:00
|
|
|
static int
|
2011-01-23 11:08:28 +00:00
|
|
|
kvm_deadfiles(kvm_t *kd, int op __unused, int arg __unused, long allproc_o,
|
|
|
|
int nprocs __unused)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
2007-12-30 01:43:51 +00:00
|
|
|
struct proc proc;
|
|
|
|
struct filedesc filed;
|
|
|
|
int buflen = kd->arglen, ocnt = 0, n = 0, once = 0, i;
|
|
|
|
struct file **ofiles;
|
1996-03-11 05:34:46 +00:00
|
|
|
struct file *fp;
|
2007-12-30 01:43:51 +00:00
|
|
|
struct proc *p;
|
2002-03-21 23:39:28 +00:00
|
|
|
char *where = kd->argspc;
|
2007-12-30 01:43:51 +00:00
|
|
|
|
2011-01-23 11:08:28 +00:00
|
|
|
if (buflen < (int)(sizeof(struct file *) + sizeof(struct file)))
|
2007-12-30 01:43:51 +00:00
|
|
|
return (0);
|
|
|
|
if (KREAD(kd, allproc_o, &p)) {
|
|
|
|
_kvm_err(kd, kd->program, "cannot read allproc");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
for (; p != NULL; p = LIST_NEXT(&proc, p_list)) {
|
|
|
|
if (KREAD(kd, (u_long)p, &proc)) {
|
2011-01-23 11:08:28 +00:00
|
|
|
_kvm_err(kd, kd->program, "can't read proc at %p", p);
|
2007-12-30 01:43:51 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (proc.p_state == PRS_NEW)
|
|
|
|
continue;
|
|
|
|
if (proc.p_fd == NULL)
|
|
|
|
continue;
|
|
|
|
if (KREAD(kd, (u_long)p->p_fd, &filed)) {
|
2011-01-23 11:08:28 +00:00
|
|
|
_kvm_err(kd, kd->program, "can't read filedesc at %p",
|
2007-12-30 01:43:51 +00:00
|
|
|
p->p_fd);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (filed.fd_lastfile + 1 > ocnt) {
|
|
|
|
ocnt = filed.fd_lastfile + 1;
|
|
|
|
free(ofiles);
|
|
|
|
ofiles = (struct file **)_kvm_malloc(kd,
|
|
|
|
ocnt * sizeof(struct file *));
|
|
|
|
if (ofiles == 0)
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if (KREADN(kd, (u_long)filed.fd_ofiles, ofiles,
|
|
|
|
ocnt * sizeof(struct file *))) {
|
2011-01-23 11:08:28 +00:00
|
|
|
_kvm_err(kd, kd->program, "can't read ofiles at %p",
|
2007-12-30 01:43:51 +00:00
|
|
|
filed.fd_ofiles);
|
1994-05-27 05:00:24 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2007-12-30 01:43:51 +00:00
|
|
|
for (i = 0; i <= filed.fd_lastfile; i++) {
|
|
|
|
if ((fp = ofiles[i]) == NULL)
|
|
|
|
continue;
|
|
|
|
/*
|
|
|
|
* copyout filehead (legacy)
|
|
|
|
*/
|
|
|
|
if (!once) {
|
|
|
|
*(struct file **)kd->argspc = fp;
|
|
|
|
*(struct file **)where = fp;
|
|
|
|
buflen -= sizeof (fp);
|
|
|
|
where += sizeof (fp);
|
|
|
|
once = 1;
|
|
|
|
}
|
2011-01-23 11:08:28 +00:00
|
|
|
if (buflen < (int)sizeof(struct file))
|
2007-12-30 01:43:51 +00:00
|
|
|
goto fail;
|
1994-05-27 05:00:24 +00:00
|
|
|
if (KREAD(kd, (long)fp, ((struct file *)where))) {
|
|
|
|
_kvm_err(kd, kd->program, "can't read kfp");
|
2007-12-30 01:43:51 +00:00
|
|
|
goto fail;
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
buflen -= sizeof (struct file);
|
|
|
|
fp = (struct file *)where;
|
|
|
|
where += sizeof (struct file);
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
2007-12-30 01:43:51 +00:00
|
|
|
free(ofiles);
|
|
|
|
return (n);
|
|
|
|
fail:
|
|
|
|
free(ofiles);
|
|
|
|
return (0);
|
|
|
|
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2011-01-23 11:08:28 +00:00
|
|
|
kvm_getfiles(kvm_t *kd, int op, int arg, int *cnt)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
2007-12-30 01:43:51 +00:00
|
|
|
int mib[2], st, n, nfiles, nprocs;
|
1998-08-25 07:52:33 +00:00
|
|
|
size_t size;
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2007-12-30 01:43:51 +00:00
|
|
|
_kvm_syserr(kd, kd->program, "kvm_getfiles has been broken for years");
|
|
|
|
return (0);
|
1994-05-27 05:00:24 +00:00
|
|
|
if (ISALIVE(kd)) {
|
|
|
|
size = 0;
|
|
|
|
mib[0] = CTL_KERN;
|
|
|
|
mib[1] = KERN_FILE;
|
|
|
|
st = sysctl(mib, 2, NULL, &size, NULL, 0);
|
|
|
|
if (st == -1) {
|
2000-02-18 16:39:00 +00:00
|
|
|
_kvm_syserr(kd, kd->program, "kvm_getfiles");
|
1994-05-27 05:00:24 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if (kd->argspc == 0)
|
|
|
|
kd->argspc = (char *)_kvm_malloc(kd, size);
|
2011-01-23 11:08:28 +00:00
|
|
|
else if (kd->arglen < (int)size)
|
1994-05-27 05:00:24 +00:00
|
|
|
kd->argspc = (char *)_kvm_realloc(kd, kd->argspc, size);
|
|
|
|
if (kd->argspc == 0)
|
|
|
|
return (0);
|
|
|
|
kd->arglen = size;
|
|
|
|
st = sysctl(mib, 2, kd->argspc, &size, NULL, 0);
|
2007-12-30 01:43:51 +00:00
|
|
|
if (st != 0) {
|
1994-05-27 05:00:24 +00:00
|
|
|
_kvm_syserr(kd, kd->program, "kvm_getfiles");
|
|
|
|
return (0);
|
|
|
|
}
|
2007-12-30 01:43:51 +00:00
|
|
|
nfiles = size / sizeof(struct xfile);
|
1994-05-27 05:00:24 +00:00
|
|
|
} else {
|
2007-12-30 01:43:51 +00:00
|
|
|
struct nlist nl[4], *p;
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2007-12-30 01:43:51 +00:00
|
|
|
nl[0].n_name = "_allproc";
|
|
|
|
nl[1].n_name = "_nprocs";
|
|
|
|
nl[2].n_name = "_nfiles";
|
|
|
|
nl[3].n_name = 0;
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
if (kvm_nlist(kd, nl) != 0) {
|
|
|
|
for (p = nl; p->n_type != 0; ++p)
|
|
|
|
;
|
|
|
|
_kvm_err(kd, kd->program,
|
|
|
|
"%s: no such symbol", p->n_name);
|
|
|
|
return (0);
|
|
|
|
}
|
2007-12-30 01:43:51 +00:00
|
|
|
if (KREAD(kd, nl[1].n_value, &nprocs)) {
|
|
|
|
_kvm_err(kd, kd->program, "can't read nprocs");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if (KREAD(kd, nl[2].n_value, &nfiles)) {
|
1994-05-27 05:00:24 +00:00
|
|
|
_kvm_err(kd, kd->program, "can't read nfiles");
|
|
|
|
return (0);
|
|
|
|
}
|
2007-12-30 01:43:51 +00:00
|
|
|
size = sizeof(void *) + (nfiles + 10) * sizeof(struct file);
|
1994-05-27 05:00:24 +00:00
|
|
|
if (kd->argspc == 0)
|
|
|
|
kd->argspc = (char *)_kvm_malloc(kd, size);
|
2011-01-23 11:08:28 +00:00
|
|
|
else if (kd->arglen < (int)size)
|
1994-05-27 05:00:24 +00:00
|
|
|
kd->argspc = (char *)_kvm_realloc(kd, kd->argspc, size);
|
|
|
|
if (kd->argspc == 0)
|
|
|
|
return (0);
|
|
|
|
kd->arglen = size;
|
2007-12-30 01:43:51 +00:00
|
|
|
n = kvm_deadfiles(kd, op, arg, nl[0].n_value, nprocs);
|
|
|
|
if (n != nfiles) {
|
|
|
|
_kvm_err(kd, kd->program, "inconsistant nfiles");
|
1994-05-27 05:00:24 +00:00
|
|
|
return (0);
|
2007-12-30 01:43:51 +00:00
|
|
|
}
|
|
|
|
nfiles = n;
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
*cnt = nfiles;
|
|
|
|
return (kd->argspc);
|
|
|
|
}
|