kvm.c revision 1.96 1 1.96 stacktic /* $NetBSD: kvm.c,v 1.96 2010/10/23 14:34:12 stacktic Exp $ */
2 1.42 thorpej
3 1.1 cgd /*-
4 1.35 cgd * Copyright (c) 1989, 1992, 1993
5 1.35 cgd * The Regents of the University of California. All rights reserved.
6 1.35 cgd *
7 1.35 cgd * This code is derived from software developed by the Computer Systems
8 1.35 cgd * Engineering group at Lawrence Berkeley Laboratory under DARPA contract
9 1.35 cgd * BG 91-66 and contributed to Berkeley.
10 1.1 cgd *
11 1.1 cgd * Redistribution and use in source and binary forms, with or without
12 1.1 cgd * modification, are permitted provided that the following conditions
13 1.1 cgd * are met:
14 1.1 cgd * 1. Redistributions of source code must retain the above copyright
15 1.1 cgd * notice, this list of conditions and the following disclaimer.
16 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 cgd * notice, this list of conditions and the following disclaimer in the
18 1.1 cgd * documentation and/or other materials provided with the distribution.
19 1.81 agc * 3. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd */
35 1.1 cgd
36 1.53 mikel #include <sys/cdefs.h>
37 1.1 cgd #if defined(LIBC_SCCS) && !defined(lint)
38 1.42 thorpej #if 0
39 1.35 cgd static char sccsid[] = "@(#)kvm.c 8.2 (Berkeley) 2/13/94";
40 1.42 thorpej #else
41 1.96 stacktic __RCSID("$NetBSD: kvm.c,v 1.96 2010/10/23 14:34:12 stacktic Exp $");
42 1.42 thorpej #endif
43 1.1 cgd #endif /* LIBC_SCCS and not lint */
44 1.1 cgd
45 1.1 cgd #include <sys/param.h>
46 1.1 cgd #include <sys/user.h>
47 1.79 thorpej #include <sys/lwp.h>
48 1.1 cgd #include <sys/proc.h>
49 1.1 cgd #include <sys/ioctl.h>
50 1.35 cgd #include <sys/stat.h>
51 1.35 cgd #include <sys/sysctl.h>
52 1.35 cgd
53 1.40 leo #include <sys/core.h>
54 1.93 he #include <sys/exec.h>
55 1.40 leo #include <sys/kcore.h>
56 1.80 ragge #include <sys/ksyms.h>
57 1.95 jym #include <sys/types.h>
58 1.40 leo
59 1.67 mrg #include <uvm/uvm_extern.h>
60 1.35 cgd
61 1.76 atatat #include <machine/cpu.h>
62 1.76 atatat
63 1.35 cgd #include <ctype.h>
64 1.87 yamt #include <errno.h>
65 1.1 cgd #include <fcntl.h>
66 1.1 cgd #include <limits.h>
67 1.35 cgd #include <nlist.h>
68 1.1 cgd #include <paths.h>
69 1.71 wiz #include <stdarg.h>
70 1.1 cgd #include <stdio.h>
71 1.35 cgd #include <stdlib.h>
72 1.1 cgd #include <string.h>
73 1.35 cgd #include <unistd.h>
74 1.41 leo #include <kvm.h>
75 1.1 cgd
76 1.35 cgd #include "kvm_private.h"
77 1.1 cgd
78 1.88 joerg static int _kvm_get_header(kvm_t *);
79 1.88 joerg static kvm_t *_kvm_open(kvm_t *, const char *, const char *,
80 1.88 joerg const char *, int, char *);
81 1.89 joerg static int clear_gap(kvm_t *, bool (*)(void *, const void *, size_t),
82 1.89 joerg void *, size_t);
83 1.88 joerg static int open_cloexec(const char *, int, int);
84 1.88 joerg static off_t Lseek(kvm_t *, int, off_t, int);
85 1.88 joerg static ssize_t Pread(kvm_t *, int, void *, size_t, off_t);
86 1.19 mycroft
87 1.35 cgd char *
88 1.88 joerg kvm_geterr(kvm_t *kd)
89 1.35 cgd {
90 1.35 cgd return (kd->errbuf);
91 1.35 cgd }
92 1.1 cgd
93 1.35 cgd /*
94 1.35 cgd * Report an error using printf style arguments. "program" is kd->program
95 1.35 cgd * on hard errors, and 0 on soft errors, so that under sun error emulation,
96 1.35 cgd * only hard errors are printed out (otherwise, programs like gdb will
97 1.35 cgd * generate tons of error messages when trying to access bogus pointers).
98 1.35 cgd */
99 1.35 cgd void
100 1.35 cgd _kvm_err(kvm_t *kd, const char *program, const char *fmt, ...)
101 1.35 cgd {
102 1.35 cgd va_list ap;
103 1.27 phil
104 1.35 cgd va_start(ap, fmt);
105 1.35 cgd if (program != NULL) {
106 1.35 cgd (void)fprintf(stderr, "%s: ", program);
107 1.35 cgd (void)vfprintf(stderr, fmt, ap);
108 1.35 cgd (void)fputc('\n', stderr);
109 1.35 cgd } else
110 1.35 cgd (void)vsnprintf(kd->errbuf,
111 1.60 thorpej sizeof(kd->errbuf), fmt, ap);
112 1.26 pk
113 1.35 cgd va_end(ap);
114 1.35 cgd }
115 1.26 pk
116 1.35 cgd void
117 1.35 cgd _kvm_syserr(kvm_t *kd, const char *program, const char *fmt, ...)
118 1.35 cgd {
119 1.35 cgd va_list ap;
120 1.60 thorpej size_t n;
121 1.26 pk
122 1.35 cgd va_start(ap, fmt);
123 1.35 cgd if (program != NULL) {
124 1.35 cgd (void)fprintf(stderr, "%s: ", program);
125 1.35 cgd (void)vfprintf(stderr, fmt, ap);
126 1.35 cgd (void)fprintf(stderr, ": %s\n", strerror(errno));
127 1.35 cgd } else {
128 1.55 perry char *cp = kd->errbuf;
129 1.26 pk
130 1.60 thorpej (void)vsnprintf(cp, sizeof(kd->errbuf), fmt, ap);
131 1.35 cgd n = strlen(cp);
132 1.35 cgd (void)snprintf(&cp[n], sizeof(kd->errbuf) - n, ": %s",
133 1.35 cgd strerror(errno));
134 1.35 cgd }
135 1.35 cgd va_end(ap);
136 1.35 cgd }
137 1.1 cgd
138 1.35 cgd void *
139 1.88 joerg _kvm_malloc(kvm_t *kd, size_t n)
140 1.35 cgd {
141 1.35 cgd void *p;
142 1.35 cgd
143 1.35 cgd if ((p = malloc(n)) == NULL)
144 1.68 sommerfe _kvm_err(kd, kd->program, "%s", strerror(errno));
145 1.35 cgd return (p);
146 1.35 cgd }
147 1.35 cgd
148 1.40 leo /*
149 1.73 christos * Open a file setting the close on exec bit.
150 1.73 christos */
151 1.73 christos static int
152 1.88 joerg open_cloexec(const char *fname, int flags, int mode)
153 1.73 christos {
154 1.73 christos int fd;
155 1.73 christos
156 1.73 christos if ((fd = open(fname, flags, mode)) == -1)
157 1.73 christos return fd;
158 1.77 christos if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
159 1.73 christos goto error;
160 1.73 christos
161 1.73 christos return fd;
162 1.73 christos error:
163 1.73 christos flags = errno;
164 1.73 christos (void)close(fd);
165 1.73 christos errno = flags;
166 1.73 christos return -1;
167 1.73 christos }
168 1.73 christos
169 1.73 christos /*
170 1.58 thorpej * Wrapper around the lseek(2) system call; calls _kvm_syserr() for us
171 1.58 thorpej * in the event of emergency.
172 1.40 leo */
173 1.40 leo static off_t
174 1.88 joerg Lseek(kvm_t *kd, int fd, off_t offset, int whence)
175 1.40 leo {
176 1.58 thorpej off_t off;
177 1.40 leo
178 1.40 leo errno = 0;
179 1.58 thorpej
180 1.40 leo if ((off = lseek(fd, offset, whence)) == -1 && errno != 0) {
181 1.40 leo _kvm_syserr(kd, kd->program, "Lseek");
182 1.58 thorpej return ((off_t)-1);
183 1.40 leo }
184 1.40 leo return (off);
185 1.40 leo }
186 1.40 leo
187 1.91 ad ssize_t
188 1.91 ad _kvm_pread(kvm_t *kd, int fd, void *buf, size_t size, off_t off)
189 1.91 ad {
190 1.91 ad ptrdiff_t moff;
191 1.91 ad void *newbuf;
192 1.91 ad size_t dsize;
193 1.91 ad ssize_t rv;
194 1.91 ad off_t doff;
195 1.91 ad
196 1.91 ad /* If aligned nothing to do. */
197 1.91 ad if (((off % kd->fdalign) | (size % kd->fdalign)) == 0) {
198 1.91 ad return pread(fd, buf, size, off);
199 1.91 ad }
200 1.91 ad
201 1.91 ad /*
202 1.91 ad * Otherwise must buffer. We can't tolerate short reads in this
203 1.91 ad * case (lazy bum).
204 1.91 ad */
205 1.91 ad moff = (ptrdiff_t)off % kd->fdalign;
206 1.91 ad doff = off - moff;
207 1.91 ad dsize = moff + size + kd->fdalign - 1;
208 1.91 ad dsize -= dsize % kd->fdalign;
209 1.91 ad if (kd->iobufsz < dsize) {
210 1.91 ad newbuf = realloc(kd->iobuf, dsize);
211 1.91 ad if (newbuf == NULL) {
212 1.91 ad _kvm_syserr(kd, 0, "cannot allocate I/O buffer");
213 1.91 ad return (-1);
214 1.91 ad }
215 1.91 ad kd->iobuf = newbuf;
216 1.91 ad kd->iobufsz = dsize;
217 1.91 ad }
218 1.91 ad rv = pread(fd, kd->iobuf, dsize, doff);
219 1.96 stacktic if (rv < size + moff)
220 1.91 ad return -1;
221 1.91 ad memcpy(buf, kd->iobuf + moff, size);
222 1.91 ad return size;
223 1.91 ad }
224 1.91 ad
225 1.58 thorpej /*
226 1.58 thorpej * Wrapper around the pread(2) system call; calls _kvm_syserr() for us
227 1.58 thorpej * in the event of emergency.
228 1.58 thorpej */
229 1.40 leo static ssize_t
230 1.88 joerg Pread(kvm_t *kd, int fd, void *buf, size_t nbytes, off_t offset)
231 1.40 leo {
232 1.58 thorpej ssize_t rv;
233 1.40 leo
234 1.40 leo errno = 0;
235 1.40 leo
236 1.91 ad if ((rv = _kvm_pread(kd, fd, buf, nbytes, offset)) != nbytes &&
237 1.58 thorpej errno != 0)
238 1.58 thorpej _kvm_syserr(kd, kd->program, "Pread");
239 1.40 leo return (rv);
240 1.40 leo }
241 1.40 leo
242 1.35 cgd static kvm_t *
243 1.88 joerg _kvm_open(kvm_t *kd, const char *uf, const char *mf, const char *sf, int flag,
244 1.88 joerg char *errout)
245 1.35 cgd {
246 1.35 cgd struct stat st;
247 1.48 cgd int ufgiven;
248 1.35 cgd
249 1.37 mycroft kd->pmfd = -1;
250 1.35 cgd kd->vmfd = -1;
251 1.35 cgd kd->swfd = -1;
252 1.35 cgd kd->nlfd = -1;
253 1.65 simonb kd->alive = KVM_ALIVE_DEAD;
254 1.85 christos kd->procbase = NULL;
255 1.85 christos kd->procbase_len = 0;
256 1.85 christos kd->procbase2 = NULL;
257 1.85 christos kd->procbase2_len = 0;
258 1.85 christos kd->lwpbase = NULL;
259 1.85 christos kd->lwpbase_len = 0;
260 1.36 mycroft kd->nbpg = getpagesize();
261 1.85 christos kd->swapspc = NULL;
262 1.85 christos kd->argspc = NULL;
263 1.85 christos kd->argspc_len = 0;
264 1.85 christos kd->argbuf = NULL;
265 1.85 christos kd->argv = NULL;
266 1.85 christos kd->vmst = NULL;
267 1.85 christos kd->vm_page_buckets = NULL;
268 1.85 christos kd->kcore_hdr = NULL;
269 1.43 gwr kd->cpu_dsize = 0;
270 1.85 christos kd->cpu_data = NULL;
271 1.40 leo kd->dump_off = 0;
272 1.91 ad kd->fdalign = 1;
273 1.91 ad kd->iobuf = NULL;
274 1.91 ad kd->iobufsz = 0;
275 1.52 gwr
276 1.65 simonb if (flag & KVM_NO_FILES) {
277 1.65 simonb kd->alive = KVM_ALIVE_SYSCTL;
278 1.65 simonb return(kd);
279 1.65 simonb }
280 1.65 simonb
281 1.52 gwr /*
282 1.52 gwr * Call the MD open hook. This sets:
283 1.52 gwr * usrstack, min_uva, max_uva
284 1.52 gwr */
285 1.52 gwr if (_kvm_mdopen(kd)) {
286 1.52 gwr _kvm_err(kd, kd->program, "md init failed");
287 1.52 gwr goto failed;
288 1.52 gwr }
289 1.35 cgd
290 1.48 cgd ufgiven = (uf != NULL);
291 1.76 atatat if (!ufgiven) {
292 1.76 atatat #ifdef CPU_BOOTED_KERNEL
293 1.76 atatat /* 130 is 128 + '/' + '\0' */
294 1.76 atatat static char booted_kernel[130];
295 1.76 atatat int mib[2], rc;
296 1.76 atatat size_t len;
297 1.76 atatat
298 1.76 atatat mib[0] = CTL_MACHDEP;
299 1.76 atatat mib[1] = CPU_BOOTED_KERNEL;
300 1.76 atatat booted_kernel[0] = '/';
301 1.76 atatat booted_kernel[1] = '\0';
302 1.76 atatat len = sizeof(booted_kernel) - 2;
303 1.76 atatat rc = sysctl(&mib[0], 2, &booted_kernel[1], &len, NULL, 0);
304 1.76 atatat booted_kernel[sizeof(booted_kernel) - 1] = '\0';
305 1.76 atatat uf = (booted_kernel[1] == '/') ?
306 1.76 atatat &booted_kernel[1] : &booted_kernel[0];
307 1.76 atatat if (rc != -1)
308 1.76 atatat rc = stat(uf, &st);
309 1.76 atatat if (rc != -1 && !S_ISREG(st.st_mode))
310 1.76 atatat rc = -1;
311 1.76 atatat if (rc == -1)
312 1.76 atatat #endif /* CPU_BOOTED_KERNEL */
313 1.76 atatat uf = _PATH_UNIX;
314 1.76 atatat }
315 1.35 cgd else if (strlen(uf) >= MAXPATHLEN) {
316 1.35 cgd _kvm_err(kd, kd->program, "exec file name too long");
317 1.1 cgd goto failed;
318 1.1 cgd }
319 1.35 cgd if (flag & ~O_RDWR) {
320 1.35 cgd _kvm_err(kd, kd->program, "bad flags arg");
321 1.1 cgd goto failed;
322 1.1 cgd }
323 1.35 cgd if (mf == 0)
324 1.35 cgd mf = _PATH_MEM;
325 1.35 cgd if (sf == 0)
326 1.35 cgd sf = _PATH_DRUM;
327 1.35 cgd
328 1.94 apb /*
329 1.94 apb * Open the kernel namelist. If /dev/ksyms doesn't
330 1.94 apb * exist, open the current kernel.
331 1.94 apb */
332 1.94 apb if (ufgiven == 0)
333 1.94 apb kd->nlfd = open_cloexec(_PATH_KSYMS, O_RDONLY, 0);
334 1.94 apb if (kd->nlfd < 0) {
335 1.94 apb if ((kd->nlfd = open_cloexec(uf, O_RDONLY, 0)) < 0) {
336 1.94 apb _kvm_syserr(kd, kd->program, "%s", uf);
337 1.94 apb goto failed;
338 1.94 apb }
339 1.94 apb } else {
340 1.94 apb /*
341 1.94 apb * We're here because /dev/ksyms was opened
342 1.94 apb * successfully. However, we don't want to keep it
343 1.94 apb * open, so we close it now. Later, we will open
344 1.94 apb * it again, since it will be the only case where
345 1.94 apb * kd->nlfd is negative.
346 1.94 apb */
347 1.94 apb close(kd->nlfd);
348 1.94 apb kd->nlfd = -1;
349 1.94 apb }
350 1.94 apb
351 1.73 christos if ((kd->pmfd = open_cloexec(mf, flag, 0)) < 0) {
352 1.35 cgd _kvm_syserr(kd, kd->program, "%s", mf);
353 1.35 cgd goto failed;
354 1.1 cgd }
355 1.35 cgd if (fstat(kd->pmfd, &st) < 0) {
356 1.35 cgd _kvm_syserr(kd, kd->program, "%s", mf);
357 1.1 cgd goto failed;
358 1.1 cgd }
359 1.91 ad if (S_ISCHR(st.st_mode) && strcmp(mf, _PATH_MEM) == 0) {
360 1.1 cgd /*
361 1.91 ad * If this is /dev/mem, open kmem too. (Maybe we should
362 1.35 cgd * make it work for either /dev/mem or /dev/kmem -- in either
363 1.35 cgd * case you're working with a live kernel.)
364 1.1 cgd */
365 1.73 christos if ((kd->vmfd = open_cloexec(_PATH_KMEM, flag, 0)) < 0) {
366 1.35 cgd _kvm_syserr(kd, kd->program, "%s", _PATH_KMEM);
367 1.35 cgd goto failed;
368 1.1 cgd }
369 1.65 simonb kd->alive = KVM_ALIVE_FILES;
370 1.73 christos if ((kd->swfd = open_cloexec(sf, flag, 0)) < 0) {
371 1.84 yamt if (errno != ENXIO) {
372 1.84 yamt _kvm_syserr(kd, kd->program, "%s", sf);
373 1.84 yamt goto failed;
374 1.84 yamt }
375 1.84 yamt /* swap is not configured? not fatal */
376 1.1 cgd }
377 1.35 cgd } else {
378 1.91 ad kd->fdalign = DEV_BSIZE; /* XXX */
379 1.3 cgd /*
380 1.35 cgd * This is a crash dump.
381 1.94 apb * Initialize the virtual address translation machinery.
382 1.94 apb *
383 1.40 leo * If there is no valid core header, fail silently here.
384 1.64 simonb * The address translations however will fail without
385 1.40 leo * header. Things can be made to run by calling
386 1.40 leo * kvm_dump_mkheader() before doing any translation.
387 1.40 leo */
388 1.40 leo if (_kvm_get_header(kd) == 0) {
389 1.40 leo if (_kvm_initvtop(kd) < 0)
390 1.40 leo goto failed;
391 1.40 leo }
392 1.3 cgd }
393 1.35 cgd return (kd);
394 1.35 cgd failed:
395 1.1 cgd /*
396 1.35 cgd * Copy out the error if doing sane error semantics.
397 1.1 cgd */
398 1.35 cgd if (errout != 0)
399 1.78 itojun (void)strlcpy(errout, kd->errbuf, _POSIX2_LINE_MAX);
400 1.35 cgd (void)kvm_close(kd);
401 1.35 cgd return (0);
402 1.1 cgd }
403 1.1 cgd
404 1.43 gwr /*
405 1.43 gwr * The kernel dump file (from savecore) contains:
406 1.43 gwr * kcore_hdr_t kcore_hdr;
407 1.43 gwr * kcore_seg_t cpu_hdr;
408 1.43 gwr * (opaque) cpu_data; (size is cpu_hdr.c_size)
409 1.43 gwr * kcore_seg_t mem_hdr;
410 1.43 gwr * (memory) mem_data; (size is mem_hdr.c_size)
411 1.64 simonb *
412 1.43 gwr * Note: khdr is padded to khdr.c_hdrsize;
413 1.43 gwr * cpu_hdr and mem_hdr are padded to khdr.c_seghdrsize
414 1.43 gwr */
415 1.40 leo static int
416 1.88 joerg _kvm_get_header(kvm_t *kd)
417 1.40 leo {
418 1.43 gwr kcore_hdr_t kcore_hdr;
419 1.43 gwr kcore_seg_t cpu_hdr;
420 1.43 gwr kcore_seg_t mem_hdr;
421 1.43 gwr size_t offset;
422 1.43 gwr ssize_t sz;
423 1.40 leo
424 1.43 gwr /*
425 1.43 gwr * Read the kcore_hdr_t
426 1.43 gwr */
427 1.58 thorpej sz = Pread(kd, kd->pmfd, &kcore_hdr, sizeof(kcore_hdr), (off_t)0);
428 1.43 gwr if (sz != sizeof(kcore_hdr))
429 1.40 leo return (-1);
430 1.40 leo
431 1.40 leo /*
432 1.40 leo * Currently, we only support dump-files made by the current
433 1.40 leo * architecture...
434 1.40 leo */
435 1.43 gwr if ((CORE_GETMAGIC(kcore_hdr) != KCORE_MAGIC) ||
436 1.43 gwr (CORE_GETMID(kcore_hdr) != MID_MACHINE))
437 1.43 gwr return (-1);
438 1.40 leo
439 1.40 leo /*
440 1.40 leo * Currently, we only support exactly 2 segments: cpu-segment
441 1.40 leo * and data-segment in exactly that order.
442 1.40 leo */
443 1.43 gwr if (kcore_hdr.c_nseg != 2)
444 1.40 leo return (-1);
445 1.40 leo
446 1.40 leo /*
447 1.43 gwr * Save away the kcore_hdr. All errors after this
448 1.43 gwr * should do a to "goto fail" to deallocate things.
449 1.43 gwr */
450 1.43 gwr kd->kcore_hdr = _kvm_malloc(kd, sizeof(kcore_hdr));
451 1.43 gwr memcpy(kd->kcore_hdr, &kcore_hdr, sizeof(kcore_hdr));
452 1.43 gwr offset = kcore_hdr.c_hdrsize;
453 1.43 gwr
454 1.43 gwr /*
455 1.43 gwr * Read the CPU segment header
456 1.40 leo */
457 1.58 thorpej sz = Pread(kd, kd->pmfd, &cpu_hdr, sizeof(cpu_hdr), (off_t)offset);
458 1.43 gwr if (sz != sizeof(cpu_hdr))
459 1.43 gwr goto fail;
460 1.43 gwr if ((CORE_GETMAGIC(cpu_hdr) != KCORESEG_MAGIC) ||
461 1.43 gwr (CORE_GETFLAG(cpu_hdr) != CORE_CPU))
462 1.43 gwr goto fail;
463 1.43 gwr offset += kcore_hdr.c_seghdrsize;
464 1.43 gwr
465 1.43 gwr /*
466 1.43 gwr * Read the CPU segment DATA.
467 1.43 gwr */
468 1.43 gwr kd->cpu_dsize = cpu_hdr.c_size;
469 1.43 gwr kd->cpu_data = _kvm_malloc(kd, cpu_hdr.c_size);
470 1.43 gwr if (kd->cpu_data == NULL)
471 1.43 gwr goto fail;
472 1.58 thorpej sz = Pread(kd, kd->pmfd, kd->cpu_data, cpu_hdr.c_size, (off_t)offset);
473 1.43 gwr if (sz != cpu_hdr.c_size)
474 1.43 gwr goto fail;
475 1.43 gwr offset += cpu_hdr.c_size;
476 1.40 leo
477 1.40 leo /*
478 1.40 leo * Read the next segment header: data segment
479 1.40 leo */
480 1.58 thorpej sz = Pread(kd, kd->pmfd, &mem_hdr, sizeof(mem_hdr), (off_t)offset);
481 1.43 gwr if (sz != sizeof(mem_hdr))
482 1.43 gwr goto fail;
483 1.43 gwr offset += kcore_hdr.c_seghdrsize;
484 1.43 gwr
485 1.43 gwr if ((CORE_GETMAGIC(mem_hdr) != KCORESEG_MAGIC) ||
486 1.43 gwr (CORE_GETFLAG(mem_hdr) != CORE_DATA))
487 1.43 gwr goto fail;
488 1.40 leo
489 1.43 gwr kd->dump_off = offset;
490 1.43 gwr return (0);
491 1.40 leo
492 1.43 gwr fail:
493 1.43 gwr if (kd->kcore_hdr != NULL) {
494 1.43 gwr free(kd->kcore_hdr);
495 1.40 leo kd->kcore_hdr = NULL;
496 1.43 gwr }
497 1.43 gwr if (kd->cpu_data != NULL) {
498 1.43 gwr free(kd->cpu_data);
499 1.43 gwr kd->cpu_data = NULL;
500 1.43 gwr kd->cpu_dsize = 0;
501 1.40 leo }
502 1.54 mrg return (-1);
503 1.40 leo }
504 1.40 leo
505 1.40 leo /*
506 1.43 gwr * The format while on the dump device is: (new format)
507 1.47 cgd * kcore_seg_t cpu_hdr;
508 1.47 cgd * (opaque) cpu_data; (size is cpu_hdr.c_size)
509 1.47 cgd * kcore_seg_t mem_hdr;
510 1.47 cgd * (memory) mem_data; (size is mem_hdr.c_size)
511 1.40 leo */
512 1.40 leo int
513 1.88 joerg kvm_dump_mkheader(kvm_t *kd, off_t dump_off)
514 1.40 leo {
515 1.43 gwr kcore_seg_t cpu_hdr;
516 1.60 thorpej size_t hdr_size;
517 1.60 thorpej ssize_t sz;
518 1.40 leo
519 1.41 leo if (kd->kcore_hdr != NULL) {
520 1.41 leo _kvm_err(kd, kd->program, "already has a dump header");
521 1.40 leo return (-1);
522 1.40 leo }
523 1.41 leo if (ISALIVE(kd)) {
524 1.41 leo _kvm_err(kd, kd->program, "don't use on live kernel");
525 1.40 leo return (-1);
526 1.40 leo }
527 1.40 leo
528 1.40 leo /*
529 1.43 gwr * Validate new format crash dump
530 1.40 leo */
531 1.58 thorpej sz = Pread(kd, kd->pmfd, &cpu_hdr, sizeof(cpu_hdr), dump_off);
532 1.43 gwr if (sz != sizeof(cpu_hdr))
533 1.43 gwr return (-1);
534 1.44 leo if ((CORE_GETMAGIC(cpu_hdr) != KCORE_MAGIC)
535 1.44 leo || (CORE_GETMID(cpu_hdr) != MID_MACHINE)) {
536 1.44 leo _kvm_err(kd, 0, "invalid magic in cpu_hdr");
537 1.45 leo return (0);
538 1.44 leo }
539 1.43 gwr hdr_size = ALIGN(sizeof(cpu_hdr));
540 1.43 gwr
541 1.43 gwr /*
542 1.43 gwr * Read the CPU segment.
543 1.43 gwr */
544 1.43 gwr kd->cpu_dsize = cpu_hdr.c_size;
545 1.43 gwr kd->cpu_data = _kvm_malloc(kd, kd->cpu_dsize);
546 1.43 gwr if (kd->cpu_data == NULL)
547 1.43 gwr goto fail;
548 1.58 thorpej sz = Pread(kd, kd->pmfd, kd->cpu_data, cpu_hdr.c_size,
549 1.58 thorpej dump_off + hdr_size);
550 1.43 gwr if (sz != cpu_hdr.c_size)
551 1.43 gwr goto fail;
552 1.43 gwr hdr_size += kd->cpu_dsize;
553 1.43 gwr
554 1.43 gwr /*
555 1.43 gwr * Leave phys mem pointer at beginning of memory data
556 1.43 gwr */
557 1.43 gwr kd->dump_off = dump_off + hdr_size;
558 1.43 gwr if (Lseek(kd, kd->pmfd, kd->dump_off, SEEK_SET) == -1)
559 1.43 gwr goto fail;
560 1.40 leo
561 1.40 leo /*
562 1.40 leo * Create a kcore_hdr.
563 1.40 leo */
564 1.43 gwr kd->kcore_hdr = _kvm_malloc(kd, sizeof(kcore_hdr_t));
565 1.43 gwr if (kd->kcore_hdr == NULL)
566 1.43 gwr goto fail;
567 1.40 leo
568 1.41 leo kd->kcore_hdr->c_hdrsize = ALIGN(sizeof(kcore_hdr_t));
569 1.41 leo kd->kcore_hdr->c_seghdrsize = ALIGN(sizeof(kcore_seg_t));
570 1.41 leo kd->kcore_hdr->c_nseg = 2;
571 1.41 leo CORE_SETMAGIC(*(kd->kcore_hdr), KCORE_MAGIC, MID_MACHINE,0);
572 1.40 leo
573 1.40 leo /*
574 1.40 leo * Now that we have a valid header, enable translations.
575 1.40 leo */
576 1.49 pk if (_kvm_initvtop(kd) == 0)
577 1.49 pk /* Success */
578 1.49 pk return (hdr_size);
579 1.43 gwr
580 1.43 gwr fail:
581 1.43 gwr if (kd->kcore_hdr != NULL) {
582 1.43 gwr free(kd->kcore_hdr);
583 1.43 gwr kd->kcore_hdr = NULL;
584 1.43 gwr }
585 1.43 gwr if (kd->cpu_data != NULL) {
586 1.43 gwr free(kd->cpu_data);
587 1.43 gwr kd->cpu_data = NULL;
588 1.43 gwr kd->cpu_dsize = 0;
589 1.43 gwr }
590 1.43 gwr return (-1);
591 1.40 leo }
592 1.40 leo
593 1.40 leo static int
594 1.89 joerg clear_gap(kvm_t *kd, bool (*write_buf)(void *, const void *, size_t),
595 1.89 joerg void *cookie, size_t size)
596 1.40 leo {
597 1.89 joerg char buf[1024];
598 1.89 joerg size_t len;
599 1.89 joerg
600 1.89 joerg (void)memset(buf, 0, size > sizeof(buf) ? sizeof(buf) : size);
601 1.89 joerg
602 1.89 joerg while (size > 0) {
603 1.89 joerg len = size > sizeof(buf) ? sizeof(buf) : size;
604 1.89 joerg if (!(*write_buf)(cookie, buf, len)) {
605 1.40 leo _kvm_syserr(kd, kd->program, "clear_gap");
606 1.89 joerg return -1;
607 1.40 leo }
608 1.89 joerg size -= len;
609 1.89 joerg }
610 1.89 joerg
611 1.89 joerg return 0;
612 1.40 leo }
613 1.40 leo
614 1.40 leo /*
615 1.89 joerg * Write the dump header by calling write_buf with cookie as first argument.
616 1.40 leo */
617 1.40 leo int
618 1.89 joerg kvm_dump_header(kvm_t *kd, bool (*write_buf)(void *, const void *, size_t),
619 1.89 joerg void *cookie, int dumpsize)
620 1.40 leo {
621 1.40 leo kcore_seg_t seghdr;
622 1.40 leo long offset;
623 1.89 joerg size_t gap;
624 1.40 leo
625 1.43 gwr if (kd->kcore_hdr == NULL || kd->cpu_data == NULL) {
626 1.40 leo _kvm_err(kd, kd->program, "no valid dump header(s)");
627 1.40 leo return (-1);
628 1.40 leo }
629 1.40 leo
630 1.40 leo /*
631 1.40 leo * Write the generic header
632 1.40 leo */
633 1.40 leo offset = 0;
634 1.89 joerg if (!(*write_buf)(cookie, kd->kcore_hdr, sizeof(kcore_hdr_t))) {
635 1.89 joerg _kvm_syserr(kd, kd->program, "kvm_dump_header");
636 1.40 leo return (-1);
637 1.40 leo }
638 1.40 leo offset += kd->kcore_hdr->c_hdrsize;
639 1.40 leo gap = kd->kcore_hdr->c_hdrsize - sizeof(kcore_hdr_t);
640 1.89 joerg if (clear_gap(kd, write_buf, cookie, gap) == -1)
641 1.40 leo return (-1);
642 1.40 leo
643 1.40 leo /*
644 1.83 wiz * Write the CPU header
645 1.40 leo */
646 1.40 leo CORE_SETMAGIC(seghdr, KCORESEG_MAGIC, 0, CORE_CPU);
647 1.43 gwr seghdr.c_size = ALIGN(kd->cpu_dsize);
648 1.89 joerg if (!(*write_buf)(cookie, &seghdr, sizeof(seghdr))) {
649 1.89 joerg _kvm_syserr(kd, kd->program, "kvm_dump_header");
650 1.40 leo return (-1);
651 1.40 leo }
652 1.40 leo offset += kd->kcore_hdr->c_seghdrsize;
653 1.40 leo gap = kd->kcore_hdr->c_seghdrsize - sizeof(seghdr);
654 1.89 joerg if (clear_gap(kd, write_buf, cookie, gap) == -1)
655 1.40 leo return (-1);
656 1.40 leo
657 1.89 joerg if (!(*write_buf)(cookie, kd->cpu_data, kd->cpu_dsize)) {
658 1.89 joerg _kvm_syserr(kd, kd->program, "kvm_dump_header");
659 1.40 leo return (-1);
660 1.40 leo }
661 1.40 leo offset += seghdr.c_size;
662 1.43 gwr gap = seghdr.c_size - kd->cpu_dsize;
663 1.90 joerg if (clear_gap(kd, write_buf, cookie, gap) == -1)
664 1.40 leo return (-1);
665 1.40 leo
666 1.40 leo /*
667 1.40 leo * Write the actual dump data segment header
668 1.40 leo */
669 1.40 leo CORE_SETMAGIC(seghdr, KCORESEG_MAGIC, 0, CORE_DATA);
670 1.40 leo seghdr.c_size = dumpsize;
671 1.89 joerg if (!(*write_buf)(cookie, &seghdr, sizeof(seghdr))) {
672 1.89 joerg _kvm_syserr(kd, kd->program, "kvm_dump_header");
673 1.40 leo return (-1);
674 1.40 leo }
675 1.40 leo offset += kd->kcore_hdr->c_seghdrsize;
676 1.40 leo gap = kd->kcore_hdr->c_seghdrsize - sizeof(seghdr);
677 1.89 joerg if (clear_gap(kd, write_buf, cookie, gap) == -1)
678 1.40 leo return (-1);
679 1.40 leo
680 1.62 christos return (int)offset;
681 1.40 leo }
682 1.40 leo
683 1.89 joerg static bool
684 1.89 joerg kvm_dump_header_stdio(void *cookie, const void *buf, size_t len)
685 1.89 joerg {
686 1.89 joerg return fwrite(buf, len, 1, (FILE *)cookie) == 1;
687 1.89 joerg }
688 1.89 joerg
689 1.89 joerg int
690 1.89 joerg kvm_dump_wrtheader(kvm_t *kd, FILE *fp, int dumpsize)
691 1.89 joerg {
692 1.89 joerg return kvm_dump_header(kd, kvm_dump_header_stdio, fp, dumpsize);
693 1.89 joerg }
694 1.89 joerg
695 1.35 cgd kvm_t *
696 1.88 joerg kvm_openfiles(const char *uf, const char *mf, const char *sf,
697 1.88 joerg int flag, char *errout)
698 1.35 cgd {
699 1.55 perry kvm_t *kd;
700 1.35 cgd
701 1.35 cgd if ((kd = malloc(sizeof(*kd))) == NULL) {
702 1.78 itojun (void)strlcpy(errout, strerror(errno), _POSIX2_LINE_MAX);
703 1.35 cgd return (0);
704 1.35 cgd }
705 1.35 cgd kd->program = 0;
706 1.35 cgd return (_kvm_open(kd, uf, mf, sf, flag, errout));
707 1.35 cgd }
708 1.35 cgd
709 1.35 cgd kvm_t *
710 1.88 joerg kvm_open(const char *uf, const char *mf, const char *sf, int flag,
711 1.88 joerg const char *program)
712 1.35 cgd {
713 1.55 perry kvm_t *kd;
714 1.35 cgd
715 1.86 christos if ((kd = malloc(sizeof(*kd))) == NULL) {
716 1.86 christos (void)fprintf(stderr, "%s: %s\n",
717 1.86 christos program ? program : getprogname(), strerror(errno));
718 1.35 cgd return (0);
719 1.19 mycroft }
720 1.35 cgd kd->program = program;
721 1.35 cgd return (_kvm_open(kd, uf, mf, sf, flag, NULL));
722 1.8 cgd }
723 1.8 cgd
724 1.8 cgd int
725 1.88 joerg kvm_close(kvm_t *kd)
726 1.1 cgd {
727 1.55 perry int error = 0;
728 1.24 mycroft
729 1.35 cgd if (kd->pmfd >= 0)
730 1.35 cgd error |= close(kd->pmfd);
731 1.35 cgd if (kd->vmfd >= 0)
732 1.35 cgd error |= close(kd->vmfd);
733 1.35 cgd if (kd->nlfd >= 0)
734 1.35 cgd error |= close(kd->nlfd);
735 1.35 cgd if (kd->swfd >= 0)
736 1.35 cgd error |= close(kd->swfd);
737 1.35 cgd if (kd->vmst)
738 1.35 cgd _kvm_freevtop(kd);
739 1.43 gwr kd->cpu_dsize = 0;
740 1.43 gwr if (kd->cpu_data != NULL)
741 1.91 ad free(kd->cpu_data);
742 1.40 leo if (kd->kcore_hdr != NULL)
743 1.91 ad free(kd->kcore_hdr);
744 1.35 cgd if (kd->procbase != 0)
745 1.91 ad free(kd->procbase);
746 1.65 simonb if (kd->procbase2 != 0)
747 1.91 ad free(kd->procbase2);
748 1.79 thorpej if (kd->lwpbase != 0)
749 1.91 ad free(kd->lwpbase);
750 1.36 mycroft if (kd->swapspc != 0)
751 1.91 ad free(kd->swapspc);
752 1.36 mycroft if (kd->argspc != 0)
753 1.91 ad free(kd->argspc);
754 1.38 mycroft if (kd->argbuf != 0)
755 1.91 ad free(kd->argbuf);
756 1.35 cgd if (kd->argv != 0)
757 1.91 ad free(kd->argv);
758 1.91 ad if (kd->iobuf != 0)
759 1.91 ad free(kd->iobuf);
760 1.91 ad free(kd);
761 1.19 mycroft
762 1.1 cgd return (0);
763 1.1 cgd }
764 1.1 cgd
765 1.18 mycroft int
766 1.88 joerg kvm_nlist(kvm_t *kd, struct nlist *nl)
767 1.18 mycroft {
768 1.82 cube int rv, nlfd;
769 1.82 cube
770 1.82 cube /*
771 1.82 cube * kd->nlfd might be negative when we get here, and in that
772 1.82 cube * case that means that we're using /dev/ksyms.
773 1.82 cube * So open it again, just for the time we retrieve the list.
774 1.82 cube */
775 1.82 cube if (kd->nlfd < 0) {
776 1.82 cube nlfd = open_cloexec(_PATH_KSYMS, O_RDONLY, 0);
777 1.82 cube if (nlfd < 0) {
778 1.82 cube _kvm_err(kd, 0, "failed to open %s", _PATH_KSYMS);
779 1.82 cube return (nlfd);
780 1.82 cube }
781 1.82 cube } else
782 1.82 cube nlfd = kd->nlfd;
783 1.3 cgd
784 1.35 cgd /*
785 1.80 ragge * Call the nlist(3) routines to retrieve the given namelist.
786 1.35 cgd */
787 1.82 cube rv = __fdnlist(nlfd, nl);
788 1.82 cube
789 1.80 ragge if (rv == -1)
790 1.80 ragge _kvm_err(kd, 0, "bad namelist");
791 1.82 cube
792 1.82 cube if (kd->nlfd < 0)
793 1.82 cube close(nlfd);
794 1.82 cube
795 1.80 ragge return (rv);
796 1.18 mycroft }
797 1.3 cgd
798 1.88 joerg int
799 1.88 joerg kvm_dump_inval(kvm_t *kd)
800 1.40 leo {
801 1.60 thorpej struct nlist nl[2];
802 1.95 jym paddr_t pa;
803 1.92 ad size_t dsize;
804 1.92 ad off_t doff;
805 1.92 ad void *newbuf;
806 1.40 leo
807 1.40 leo if (ISALIVE(kd)) {
808 1.40 leo _kvm_err(kd, kd->program, "clearing dump on live kernel");
809 1.40 leo return (-1);
810 1.40 leo }
811 1.60 thorpej nl[0].n_name = "_dumpmag";
812 1.60 thorpej nl[1].n_name = NULL;
813 1.40 leo
814 1.60 thorpej if (kvm_nlist(kd, nl) == -1) {
815 1.40 leo _kvm_err(kd, 0, "bad namelist");
816 1.40 leo return (-1);
817 1.40 leo }
818 1.95 jym if (_kvm_kvatop(kd, (vaddr_t)nl[0].n_value, &pa) == 0)
819 1.40 leo return (-1);
820 1.40 leo
821 1.40 leo errno = 0;
822 1.92 ad dsize = MAX(kd->fdalign, sizeof(u_long));
823 1.92 ad if (kd->iobufsz < dsize) {
824 1.92 ad newbuf = realloc(kd->iobuf, dsize);
825 1.92 ad if (newbuf == NULL) {
826 1.92 ad _kvm_syserr(kd, 0, "cannot allocate I/O buffer");
827 1.92 ad return (-1);
828 1.92 ad }
829 1.92 ad kd->iobuf = newbuf;
830 1.92 ad kd->iobufsz = dsize;
831 1.92 ad }
832 1.92 ad memset(kd->iobuf, 0, dsize);
833 1.92 ad doff = _kvm_pa2off(kd, pa);
834 1.92 ad doff -= doff % kd->fdalign;
835 1.92 ad if (pwrite(kd->pmfd, kd->iobuf, dsize, doff) == -1) {
836 1.57 thorpej _kvm_syserr(kd, 0, "cannot invalidate dump - pwrite");
837 1.40 leo return (-1);
838 1.40 leo }
839 1.40 leo return (0);
840 1.40 leo }
841 1.40 leo
842 1.35 cgd ssize_t
843 1.88 joerg kvm_read(kvm_t *kd, u_long kva, void *buf, size_t len)
844 1.3 cgd {
845 1.55 perry int cc;
846 1.55 perry void *cp;
847 1.3 cgd
848 1.65 simonb if (ISKMEM(kd)) {
849 1.35 cgd /*
850 1.35 cgd * We're using /dev/kmem. Just read straight from the
851 1.35 cgd * device and let the active kernel do the address translation.
852 1.35 cgd */
853 1.35 cgd errno = 0;
854 1.91 ad cc = _kvm_pread(kd, kd->vmfd, buf, len, (off_t)kva);
855 1.35 cgd if (cc < 0) {
856 1.35 cgd _kvm_syserr(kd, 0, "kvm_read");
857 1.56 msaitoh return (-1);
858 1.35 cgd } else if (cc < len)
859 1.35 cgd _kvm_err(kd, kd->program, "short read");
860 1.35 cgd return (cc);
861 1.65 simonb } else if (ISSYSCTL(kd)) {
862 1.65 simonb _kvm_err(kd, kd->program, "kvm_open called with KVM_NO_FILES, "
863 1.65 simonb "can't use kvm_read");
864 1.65 simonb return (-1);
865 1.35 cgd } else {
866 1.43 gwr if ((kd->kcore_hdr == NULL) || (kd->cpu_data == NULL)) {
867 1.40 leo _kvm_err(kd, kd->program, "no valid dump header");
868 1.56 msaitoh return (-1);
869 1.40 leo }
870 1.35 cgd cp = buf;
871 1.35 cgd while (len > 0) {
872 1.95 jym paddr_t pa;
873 1.40 leo off_t foff;
874 1.64 simonb
875 1.95 jym cc = _kvm_kvatop(kd, (vaddr_t)kva, &pa);
876 1.35 cgd if (cc == 0)
877 1.56 msaitoh return (-1);
878 1.35 cgd if (cc > len)
879 1.35 cgd cc = len;
880 1.40 leo foff = _kvm_pa2off(kd, pa);
881 1.35 cgd errno = 0;
882 1.91 ad cc = _kvm_pread(kd, kd->pmfd, cp, (size_t)cc, foff);
883 1.35 cgd if (cc < 0) {
884 1.35 cgd _kvm_syserr(kd, kd->program, "kvm_read");
885 1.35 cgd break;
886 1.35 cgd }
887 1.35 cgd /*
888 1.35 cgd * If kvm_kvatop returns a bogus value or our core
889 1.35 cgd * file is truncated, we might wind up seeking beyond
890 1.35 cgd * the end of the core file in which case the read will
891 1.35 cgd * return 0 (EOF).
892 1.35 cgd */
893 1.35 cgd if (cc == 0)
894 1.35 cgd break;
895 1.39 cgd cp = (char *)cp + cc;
896 1.35 cgd kva += cc;
897 1.35 cgd len -= cc;
898 1.3 cgd }
899 1.35 cgd return ((char *)cp - (char *)buf);
900 1.3 cgd }
901 1.35 cgd /* NOTREACHED */
902 1.3 cgd }
903 1.3 cgd
904 1.35 cgd ssize_t
905 1.88 joerg kvm_write(kvm_t *kd, u_long kva, const void *buf, size_t len)
906 1.35 cgd {
907 1.55 perry int cc;
908 1.26 pk
909 1.65 simonb if (ISKMEM(kd)) {
910 1.35 cgd /*
911 1.35 cgd * Just like kvm_read, only we write.
912 1.35 cgd */
913 1.35 cgd errno = 0;
914 1.57 thorpej cc = pwrite(kd->vmfd, buf, len, (off_t)kva);
915 1.35 cgd if (cc < 0) {
916 1.35 cgd _kvm_syserr(kd, 0, "kvm_write");
917 1.56 msaitoh return (-1);
918 1.35 cgd } else if (cc < len)
919 1.35 cgd _kvm_err(kd, kd->program, "short write");
920 1.35 cgd return (cc);
921 1.65 simonb } else if (ISSYSCTL(kd)) {
922 1.65 simonb _kvm_err(kd, kd->program, "kvm_open called with KVM_NO_FILES, "
923 1.65 simonb "can't use kvm_write");
924 1.65 simonb return (-1);
925 1.35 cgd } else {
926 1.35 cgd _kvm_err(kd, kd->program,
927 1.35 cgd "kvm_write not implemented for dead kernels");
928 1.56 msaitoh return (-1);
929 1.26 pk }
930 1.35 cgd /* NOTREACHED */
931 1.1 cgd }
932