kvm_file.c revision 1.28 1 1.28 jym /* $NetBSD: kvm_file.c,v 1.28 2010/09/26 22:28:05 jym Exp $ */
2 1.5 thorpej
3 1.1 cgd /*-
4 1.1 cgd * Copyright (c) 1989, 1992, 1993
5 1.1 cgd * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.23 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 cgd * may be used to endorse or promote products derived from this software
17 1.1 cgd * without specific prior written permission.
18 1.1 cgd *
19 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 cgd * SUCH DAMAGE.
30 1.1 cgd */
31 1.1 cgd
32 1.7 mikel #include <sys/cdefs.h>
33 1.1 cgd #if defined(LIBC_SCCS) && !defined(lint)
34 1.5 thorpej #if 0
35 1.1 cgd static char sccsid[] = "@(#)kvm_file.c 8.1 (Berkeley) 6/4/93";
36 1.5 thorpej #else
37 1.28 jym __RCSID("$NetBSD: kvm_file.c,v 1.28 2010/09/26 22:28:05 jym Exp $");
38 1.5 thorpej #endif
39 1.1 cgd #endif /* LIBC_SCCS and not lint */
40 1.1 cgd
41 1.1 cgd /*
42 1.13 simonb * File list interface for kvm. pstat, fstat and netstat are
43 1.1 cgd * users of this code, so we've factored it out into a separate module.
44 1.1 cgd * Thus, we keep this grunge out of the other kvm applications (i.e.,
45 1.1 cgd * most other applications are interested only in open/close/read/nlist).
46 1.1 cgd */
47 1.1 cgd
48 1.25 ad #define _KERNEL
49 1.25 ad #include <sys/types.h>
50 1.25 ad #undef _KERNEL
51 1.1 cgd #include <sys/param.h>
52 1.1 cgd #include <sys/user.h>
53 1.19 thorpej #include <sys/lwp.h>
54 1.1 cgd #include <sys/proc.h>
55 1.1 cgd #include <sys/exec.h>
56 1.21 tron #define _KERNEL
57 1.21 tron #include <sys/file.h>
58 1.21 tron #undef _KERNEL
59 1.1 cgd #include <sys/stat.h>
60 1.1 cgd #include <sys/ioctl.h>
61 1.1 cgd #include <nlist.h>
62 1.1 cgd #include <kvm.h>
63 1.1 cgd
64 1.17 mrg #include <uvm/uvm_extern.h>
65 1.1 cgd
66 1.1 cgd #include <sys/sysctl.h>
67 1.1 cgd
68 1.1 cgd #include <limits.h>
69 1.1 cgd #include <ndbm.h>
70 1.1 cgd #include <paths.h>
71 1.11 thorpej #include <string.h>
72 1.1 cgd
73 1.1 cgd #include "kvm_private.h"
74 1.1 cgd
75 1.8 drochner static int
76 1.27 jym kvm_deadfiles(kvm_t *, int, int, long, int);
77 1.1 cgd
78 1.1 cgd /*
79 1.1 cgd * Get file structures.
80 1.1 cgd */
81 1.10 christos /*ARGSUSED*/
82 1.6 mikel static int
83 1.27 jym kvm_deadfiles(kvm_t *kd, int op, int arg, long ofhead, int numfiles)
84 1.1 cgd {
85 1.24 christos size_t buflen = kd->argspc_len, n = 0;
86 1.7 mikel struct file *fp;
87 1.10 christos struct filelist fhead;
88 1.9 perry char *where = kd->argspc;
89 1.1 cgd
90 1.1 cgd /*
91 1.1 cgd * first copyout filehead
92 1.1 cgd */
93 1.14 cgd if (buflen < sizeof(fhead) ||
94 1.28 jym KREAD(kd, (u_long)ofhead, &fhead)) {
95 1.14 cgd _kvm_err(kd, kd->program, "can't read filehead");
96 1.14 cgd return (0);
97 1.1 cgd }
98 1.14 cgd buflen -= sizeof(fhead);
99 1.14 cgd where += sizeof(fhead);
100 1.14 cgd (void)memcpy(kd->argspc, &fhead, sizeof(fhead));
101 1.14 cgd
102 1.1 cgd /*
103 1.1 cgd * followed by an array of file structures
104 1.1 cgd */
105 1.10 christos for (fp = fhead.lh_first; fp != 0; fp = fp->f_list.le_next) {
106 1.10 christos if (buflen > sizeof(struct file)) {
107 1.28 jym if (KREAD(kd, (u_long)fp,
108 1.28 jym ((struct file *)(void *)where))) {
109 1.1 cgd _kvm_err(kd, kd->program, "can't read kfp");
110 1.1 cgd return (0);
111 1.1 cgd }
112 1.10 christos buflen -= sizeof(struct file);
113 1.10 christos fp = (struct file *)(void *)where;
114 1.14 cgd where += sizeof(struct file);
115 1.1 cgd n++;
116 1.1 cgd }
117 1.1 cgd }
118 1.18 lukem if (n != numfiles) {
119 1.7 mikel _kvm_err(kd, kd->program, "inconsistent nfiles");
120 1.1 cgd return (0);
121 1.1 cgd }
122 1.18 lukem return (numfiles);
123 1.1 cgd }
124 1.1 cgd
125 1.1 cgd char *
126 1.27 jym kvm_getfiles(kvm_t *kd, int op, int arg, int *cnt)
127 1.1 cgd {
128 1.3 cgd size_t size;
129 1.10 christos int mib[2], st;
130 1.10 christos int numfiles;
131 1.2 mycroft struct file *fp, *fplim;
132 1.10 christos struct filelist fhead;
133 1.1 cgd
134 1.15 simonb if (ISSYSCTL(kd)) {
135 1.1 cgd size = 0;
136 1.1 cgd mib[0] = CTL_KERN;
137 1.1 cgd mib[1] = KERN_FILE;
138 1.1 cgd st = sysctl(mib, 2, NULL, &size, NULL, 0);
139 1.1 cgd if (st == -1) {
140 1.1 cgd _kvm_syserr(kd, kd->program, "kvm_getprocs");
141 1.1 cgd return (0);
142 1.1 cgd }
143 1.24 christos KVM_ALLOC(kd, argspc, size);
144 1.1 cgd st = sysctl(mib, 2, kd->argspc, &size, NULL, 0);
145 1.10 christos if (st == -1 || size < sizeof(fhead)) {
146 1.1 cgd _kvm_syserr(kd, kd->program, "kvm_getfiles");
147 1.1 cgd return (0);
148 1.1 cgd }
149 1.10 christos (void)memcpy(&fhead, kd->argspc, sizeof(fhead));
150 1.10 christos fp = (struct file *)(void *)(kd->argspc + sizeof(fhead));
151 1.10 christos fplim = (struct file *)(void *)(kd->argspc + size);
152 1.10 christos for (numfiles = 0; fhead.lh_first && (fp < fplim);
153 1.10 christos numfiles++, fp++)
154 1.10 christos fhead.lh_first = fp->f_list.le_next;
155 1.1 cgd } else {
156 1.1 cgd struct nlist nl[3], *p;
157 1.1 cgd
158 1.14 cgd nl[0].n_name = "_nfiles";
159 1.14 cgd nl[1].n_name = "_filehead";
160 1.1 cgd nl[2].n_name = 0;
161 1.1 cgd
162 1.1 cgd if (kvm_nlist(kd, nl) != 0) {
163 1.1 cgd for (p = nl; p->n_type != 0; ++p)
164 1.1 cgd ;
165 1.1 cgd _kvm_err(kd, kd->program,
166 1.1 cgd "%s: no such symbol", p->n_name);
167 1.1 cgd return (0);
168 1.1 cgd }
169 1.10 christos if (KREAD(kd, nl[0].n_value, &numfiles)) {
170 1.10 christos _kvm_err(kd, kd->program, "can't read numfiles");
171 1.1 cgd return (0);
172 1.1 cgd }
173 1.10 christos size = sizeof(fhead) + (numfiles + 10) * sizeof(struct file);
174 1.24 christos KVM_ALLOC(kd, argspc, size);
175 1.10 christos numfiles = kvm_deadfiles(kd, op, arg, (long)nl[1].n_value,
176 1.10 christos numfiles);
177 1.10 christos if (numfiles == 0)
178 1.1 cgd return (0);
179 1.1 cgd }
180 1.10 christos *cnt = numfiles;
181 1.1 cgd return (kd->argspc);
182 1.1 cgd }
183