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