kvm_file.c revision 6683
1/*-
2 * Copyright (c) 1989, 1992, 1993
3 *	The Regents of the University of California.  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 * 3. All advertising materials mentioning features or use of this software
14 *    must display the following acknowledgement:
15 *	This product includes software developed by the University of
16 *	California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 *    may be used to endorse or promote products derived from this software
19 *    without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34#if defined(LIBC_SCCS) && !defined(lint)
35static char sccsid[] = "@(#)kvm_file.c	8.1 (Berkeley) 6/4/93";
36#endif /* LIBC_SCCS and not lint */
37
38/*
39 * File list interface for kvm.  pstat, fstat and netstat are
40 * users of this code, so we've factored it out into a separate module.
41 * Thus, we keep this grunge out of the other kvm applications (i.e.,
42 * most other applications are interested only in open/close/read/nlist).
43 */
44
45#include <sys/param.h>
46#include <sys/user.h>
47#include <sys/proc.h>
48#define KERNEL
49#include <sys/file.h>
50#undef KERNEL
51#include <sys/stat.h>
52#include <sys/ioctl.h>
53#include <sys/tty.h>
54#include <nlist.h>
55#include <kvm.h>
56
57#include <vm/vm.h>
58#include <vm/vm_param.h>
59#include <vm/swap_pager.h>
60
61#include <sys/sysctl.h>
62
63#include <limits.h>
64#include <ndbm.h>
65#include <paths.h>
66
67#include "kvm_private.h"
68
69#define KREAD(kd, addr, obj) \
70	(kvm_read(kd, addr, obj, sizeof(*obj)) != sizeof(*obj))
71
72/*
73 * Get file structures.
74 */
75static
76kvm_deadfiles(kd, op, arg, filehead_o, nfiles)
77	kvm_t *kd;
78	int op, arg, nfiles;
79	long filehead_o;
80{
81	int buflen = kd->arglen, n = 0;
82	struct file *fp, *filehead;
83	register char *where = kd->argspc;
84
85	/*
86	 * first copyout filehead
87	 */
88	if (buflen > sizeof (filehead)) {
89		if (KREAD(kd, filehead_o, &filehead)) {
90			_kvm_err(kd, kd->program, "can't read filehead");
91			return (0);
92		}
93		buflen -= sizeof (filehead);
94		where += sizeof (filehead);
95		*(struct file **)kd->argspc = filehead;
96	}
97	/*
98	 * followed by an array of file structures
99	 */
100	for (fp = filehead; fp != NULL; fp = fp->f_filef) {
101		if (buflen > sizeof (struct file)) {
102			if (KREAD(kd, (long)fp, ((struct file *)where))) {
103				_kvm_err(kd, kd->program, "can't read kfp");
104				return (0);
105			}
106			buflen -= sizeof (struct file);
107			fp = (struct file *)where;
108			where += sizeof (struct file);
109			n++;
110		}
111	}
112	if (n != nfiles) {
113		_kvm_err(kd, kd->program, "inconsistant nfiles");
114		return (0);
115	}
116	return (nfiles);
117}
118
119char *
120kvm_getfiles(kd, op, arg, cnt)
121	kvm_t *kd;
122	int op, arg;
123	int *cnt;
124{
125	int mib[2], size, st, nfiles;
126	struct file *filehead, *fp, *fplim;
127
128	if (ISALIVE(kd)) {
129		size = 0;
130		mib[0] = CTL_KERN;
131		mib[1] = KERN_FILE;
132		st = sysctl(mib, 2, NULL, &size, NULL, 0);
133		if (st == -1) {
134			_kvm_syserr(kd, kd->program, "kvm_getprocs");
135			return (0);
136		}
137		if (kd->argspc == 0)
138			kd->argspc = (char *)_kvm_malloc(kd, size);
139		else if (kd->arglen < size)
140			kd->argspc = (char *)_kvm_realloc(kd, kd->argspc, size);
141		if (kd->argspc == 0)
142			return (0);
143		kd->arglen = size;
144		st = sysctl(mib, 2, kd->argspc, &size, NULL, 0);
145		if (st == -1 || size < sizeof(filehead)) {
146			_kvm_syserr(kd, kd->program, "kvm_getfiles");
147			return (0);
148		}
149		filehead = *(struct file **)kd->argspc;
150		fp = (struct file *)(kd->argspc + sizeof (filehead));
151		fplim = (struct file *)(kd->argspc + size);
152		for (nfiles = 0; filehead && (fp < fplim); nfiles++, fp++)
153			filehead = fp->f_filef;
154	} else {
155		struct nlist nl[3], *p;
156
157		nl[0].n_name = "_filehead";
158		nl[1].n_name = "_nfiles";
159		nl[2].n_name = 0;
160
161		if (kvm_nlist(kd, nl) != 0) {
162			for (p = nl; p->n_type != 0; ++p)
163				;
164			_kvm_err(kd, kd->program,
165				 "%s: no such symbol", p->n_name);
166			return (0);
167		}
168		if (KREAD(kd, nl[0].n_value, &nfiles)) {
169			_kvm_err(kd, kd->program, "can't read nfiles");
170			return (0);
171		}
172		size = sizeof(filehead) + (nfiles + 10) * sizeof(struct file);
173		if (kd->argspc == 0)
174			kd->argspc = (char *)_kvm_malloc(kd, size);
175		else if (kd->arglen < size)
176			kd->argspc = (char *)_kvm_realloc(kd, kd->argspc, size);
177		if (kd->argspc == 0)
178			return (0);
179		kd->arglen = size;
180		nfiles = kvm_deadfiles(kd, op, arg, nl[1].n_value, nfiles);
181		if (nfiles == 0)
182			return (0);
183	}
184	*cnt = nfiles;
185	return (kd->argspc);
186}
187