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