2014-02-20 00:21:22 +04:00
|
|
|
/* $NetBSD: kvm_i386.c,v 1.30 2014/02/19 20:21:22 dsl Exp $ */
|
1996-03-19 01:33:07 +03:00
|
|
|
|
1994-05-09 07:15:36 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1989, 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software developed by the Computer Systems
|
|
|
|
* Engineering group at Lawrence Berkeley Laboratory under DARPA contract
|
|
|
|
* BG 91-66 and contributed to Berkeley.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:42:00 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-09 07:15:36 +04:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-08-15 06:21:56 +04:00
|
|
|
#include <sys/cdefs.h>
|
1994-05-09 07:15:36 +04:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
1996-03-19 01:33:07 +03:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)kvm_hp300.c 8.1 (Berkeley) 6/4/93";
|
|
|
|
#else
|
2014-02-20 00:21:22 +04:00
|
|
|
__RCSID("$NetBSD: kvm_i386.c,v 1.30 2014/02/19 20:21:22 dsl Exp $");
|
1996-03-19 01:33:07 +03:00
|
|
|
#endif
|
1994-05-09 07:15:36 +04:00
|
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
|
|
|
|
/*
|
1998-02-18 04:13:08 +03:00
|
|
|
* i386 machine dependent routines for kvm.
|
1994-05-09 07:15:36 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
1998-02-18 04:13:08 +03:00
|
|
|
#include <sys/kcore.h>
|
Change kvm_pa2off() and kvm_kvatop() prototypes (private to kvm(3)):
-int _kvm_kvatop(kvm_t *, u_long, u_long *);
-off_t _kvm_pa2off(kvm_t *, u_long);
+int _kvm_kvatop(kvm_t *, vaddr_t, paddr_t *);
+off_t _kvm_pa2off(kvm_t *, paddr_t);
Basically, use vaddr_t for VA and paddr_t for PA. In addition, for variables
representing addresses, use paddr_t or vaddr_t, depending on the context.
For most arches, vaddr_t and paddr_t are equivalent to unsigned long. However,
the change was needed for exotic situations, like i386 PAE, were unsigned long
is not suitable for PA which are 64 bits long. As this required a complete
change of the function prototypes, all arches had to be adapted accordingly.
Core files from before this commit should still work with the new code; I did
not see any direct dependency between core's structure and kvatop/pa2off.
The change was compile tested for all arches, as it impacts all of them.
See also:
http://mail-index.netbsd.org/current-users/2010/09/07/msg014249.html
2010-09-21 03:23:16 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
1995-06-26 17:19:27 +04:00
|
|
|
#include <stdlib.h>
|
1994-05-09 07:15:36 +04:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <nlist.h>
|
|
|
|
#include <kvm.h>
|
|
|
|
|
2000-06-29 10:34:22 +04:00
|
|
|
#include <uvm/uvm_extern.h>
|
1994-05-09 07:15:36 +04:00
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
#include <db.h>
|
|
|
|
|
|
|
|
#include "kvm_private.h"
|
|
|
|
|
Change kvm_pa2off() and kvm_kvatop() prototypes (private to kvm(3)):
-int _kvm_kvatop(kvm_t *, u_long, u_long *);
-off_t _kvm_pa2off(kvm_t *, u_long);
+int _kvm_kvatop(kvm_t *, vaddr_t, paddr_t *);
+off_t _kvm_pa2off(kvm_t *, paddr_t);
Basically, use vaddr_t for VA and paddr_t for PA. In addition, for variables
representing addresses, use paddr_t or vaddr_t, depending on the context.
For most arches, vaddr_t and paddr_t are equivalent to unsigned long. However,
the change was needed for exotic situations, like i386 PAE, were unsigned long
is not suitable for PA which are 64 bits long. As this required a complete
change of the function prototypes, all arches had to be adapted accordingly.
Core files from before this commit should still work with the new code; I did
not see any direct dependency between core's structure and kvatop/pa2off.
The change was compile tested for all arches, as it impacts all of them.
See also:
http://mail-index.netbsd.org/current-users/2010/09/07/msg014249.html
2010-09-21 03:23:16 +04:00
|
|
|
#include <i386/kcore.h>
|
2008-10-26 02:59:06 +03:00
|
|
|
#include <i386/pmap.h>
|
|
|
|
#include <i386/pte.h>
|
|
|
|
#include <i386/vmparam.h>
|
1994-05-09 07:15:36 +04:00
|
|
|
|
|
|
|
#ifndef btop
|
|
|
|
#define btop(x) (((unsigned)(x)) >> PGSHIFT) /* XXX */
|
|
|
|
#define ptob(x) ((caddr_t)((x) << PGSHIFT)) /* XXX */
|
|
|
|
#endif
|
|
|
|
|
2010-10-06 03:48:16 +04:00
|
|
|
/*
|
|
|
|
* Indicates whether PAE is in use for the kernel image
|
|
|
|
* 0: native i386 memory mappings
|
|
|
|
* 1: i386 PAE mappings
|
|
|
|
*/
|
|
|
|
static int i386_use_pae;
|
|
|
|
|
|
|
|
int _kvm_kvatop_i386(kvm_t *, vaddr_t, paddr_t *);
|
|
|
|
int _kvm_kvatop_i386pae(kvm_t *, vaddr_t, paddr_t *);
|
|
|
|
|
1994-05-09 07:15:36 +04:00
|
|
|
void
|
2010-09-19 06:07:00 +04:00
|
|
|
_kvm_freevtop(kvm_t *kd)
|
1994-05-09 07:15:36 +04:00
|
|
|
{
|
|
|
|
|
1998-02-18 04:13:08 +03:00
|
|
|
/* Not actually used for anything right now, but safe. */
|
|
|
|
if (kd->vmst != 0)
|
1994-05-09 07:15:36 +04:00
|
|
|
free(kd->vmst);
|
|
|
|
}
|
|
|
|
|
1998-09-27 22:15:58 +04:00
|
|
|
/*ARGSUSED*/
|
1994-05-09 07:15:36 +04:00
|
|
|
int
|
2010-09-19 06:07:00 +04:00
|
|
|
_kvm_initvtop(kvm_t *kd)
|
1994-05-09 07:15:36 +04:00
|
|
|
{
|
2010-10-06 03:48:16 +04:00
|
|
|
cpu_kcore_hdr_t *cpu_kh = kd->cpu_data;
|
|
|
|
|
|
|
|
i386_use_pae = 0; /* default: non PAE mode */
|
|
|
|
if ((cpu_kh->pdppaddr & I386_KCORE_PAE) == I386_KCORE_PAE)
|
|
|
|
i386_use_pae = 1;
|
1996-03-08 13:45:16 +03:00
|
|
|
|
2010-09-19 06:07:00 +04:00
|
|
|
return 0;
|
1994-05-09 07:15:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Translate a kernel virtual address to a physical address.
|
|
|
|
*/
|
|
|
|
int
|
Change kvm_pa2off() and kvm_kvatop() prototypes (private to kvm(3)):
-int _kvm_kvatop(kvm_t *, u_long, u_long *);
-off_t _kvm_pa2off(kvm_t *, u_long);
+int _kvm_kvatop(kvm_t *, vaddr_t, paddr_t *);
+off_t _kvm_pa2off(kvm_t *, paddr_t);
Basically, use vaddr_t for VA and paddr_t for PA. In addition, for variables
representing addresses, use paddr_t or vaddr_t, depending on the context.
For most arches, vaddr_t and paddr_t are equivalent to unsigned long. However,
the change was needed for exotic situations, like i386 PAE, were unsigned long
is not suitable for PA which are 64 bits long. As this required a complete
change of the function prototypes, all arches had to be adapted accordingly.
Core files from before this commit should still work with the new code; I did
not see any direct dependency between core's structure and kvatop/pa2off.
The change was compile tested for all arches, as it impacts all of them.
See also:
http://mail-index.netbsd.org/current-users/2010/09/07/msg014249.html
2010-09-21 03:23:16 +04:00
|
|
|
_kvm_kvatop(kvm_t *kd, vaddr_t va, paddr_t *pa)
|
1994-05-09 07:15:36 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
if (ISALIVE(kd)) {
|
|
|
|
_kvm_err(kd, 0, "vatop called in live kernel!");
|
Change kvm_pa2off() and kvm_kvatop() prototypes (private to kvm(3)):
-int _kvm_kvatop(kvm_t *, u_long, u_long *);
-off_t _kvm_pa2off(kvm_t *, u_long);
+int _kvm_kvatop(kvm_t *, vaddr_t, paddr_t *);
+off_t _kvm_pa2off(kvm_t *, paddr_t);
Basically, use vaddr_t for VA and paddr_t for PA. In addition, for variables
representing addresses, use paddr_t or vaddr_t, depending on the context.
For most arches, vaddr_t and paddr_t are equivalent to unsigned long. However,
the change was needed for exotic situations, like i386 PAE, were unsigned long
is not suitable for PA which are 64 bits long. As this required a complete
change of the function prototypes, all arches had to be adapted accordingly.
Core files from before this commit should still work with the new code; I did
not see any direct dependency between core's structure and kvatop/pa2off.
The change was compile tested for all arches, as it impacts all of them.
See also:
http://mail-index.netbsd.org/current-users/2010/09/07/msg014249.html
2010-09-21 03:23:16 +04:00
|
|
|
return 0;
|
1994-05-09 07:15:36 +04:00
|
|
|
}
|
1995-06-26 17:19:27 +04:00
|
|
|
|
2010-10-06 03:48:16 +04:00
|
|
|
switch (i386_use_pae) {
|
|
|
|
default:
|
|
|
|
case 0:
|
|
|
|
return _kvm_kvatop_i386(kd, va, pa);
|
|
|
|
case 1:
|
|
|
|
return _kvm_kvatop_i386pae(kd, va, pa);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Used to translate a virtual address to a physical address for systems
|
|
|
|
* with PAE mode disabled. Only two levels of virtual memory pages are
|
|
|
|
* dereferenced (L2 PDEs, then L1 PTEs).
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
_kvm_kvatop_i386(kvm_t *kd, vaddr_t va, paddr_t *pa)
|
|
|
|
{
|
|
|
|
cpu_kcore_hdr_t *cpu_kh;
|
|
|
|
u_long page_off;
|
|
|
|
pd_entry_t pde;
|
|
|
|
pt_entry_t pte;
|
|
|
|
paddr_t pde_pa, pte_pa;
|
|
|
|
|
1998-02-18 04:13:08 +03:00
|
|
|
cpu_kh = kd->cpu_data;
|
|
|
|
page_off = va & PGOFSET;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find and read the page directory entry.
|
2010-10-06 03:48:16 +04:00
|
|
|
* pdppaddr being PAGE_SIZE aligned, we mask the option bits.
|
1998-02-18 04:13:08 +03:00
|
|
|
*/
|
2010-10-06 03:48:16 +04:00
|
|
|
pde_pa = (cpu_kh->pdppaddr & PG_FRAME) + (pl2_pi(va) * sizeof(pde));
|
2008-01-15 16:57:41 +03:00
|
|
|
if (_kvm_pread(kd, kd->pmfd, (void *)&pde, sizeof(pde),
|
1998-09-27 22:15:58 +04:00
|
|
|
_kvm_pa2off(kd, pde_pa)) != sizeof(pde)) {
|
1998-02-18 04:13:08 +03:00
|
|
|
_kvm_syserr(kd, 0, "could not read PDE");
|
|
|
|
goto lose;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find and read the page table entry.
|
|
|
|
*/
|
|
|
|
if ((pde & PG_V) == 0) {
|
|
|
|
_kvm_err(kd, 0, "invalid translation (invalid PDE)");
|
|
|
|
goto lose;
|
|
|
|
}
|
2008-01-05 09:54:12 +03:00
|
|
|
if ((pde & PG_PS) != 0) {
|
|
|
|
/*
|
|
|
|
* This is a 4MB page.
|
|
|
|
*/
|
|
|
|
page_off = va & ~PG_LGFRAME;
|
|
|
|
*pa = (pde & PG_LGFRAME) + page_off;
|
|
|
|
return (int)(NBPD_L2 - page_off);
|
|
|
|
}
|
2008-01-05 09:22:55 +03:00
|
|
|
pte_pa = (pde & PG_FRAME) + (pl1_pi(va) * sizeof(pt_entry_t));
|
2008-01-15 16:57:41 +03:00
|
|
|
if (_kvm_pread(kd, kd->pmfd, (void *) &pte, sizeof(pte),
|
1998-09-27 22:15:58 +04:00
|
|
|
_kvm_pa2off(kd, pte_pa)) != sizeof(pte)) {
|
1998-02-18 04:13:08 +03:00
|
|
|
_kvm_syserr(kd, 0, "could not read PTE");
|
|
|
|
goto lose;
|
1995-06-26 17:19:27 +04:00
|
|
|
}
|
|
|
|
|
1998-02-18 04:13:08 +03:00
|
|
|
/*
|
|
|
|
* Validate the PTE and return the physical address.
|
|
|
|
*/
|
|
|
|
if ((pte & PG_V) == 0) {
|
|
|
|
_kvm_err(kd, 0, "invalid translation (invalid PTE)");
|
|
|
|
goto lose;
|
|
|
|
}
|
|
|
|
*pa = (pte & PG_FRAME) + page_off;
|
1998-09-27 22:15:58 +04:00
|
|
|
return (int)(NBPG - page_off);
|
1995-06-26 17:19:27 +04:00
|
|
|
|
1998-02-18 04:13:08 +03:00
|
|
|
lose:
|
Change kvm_pa2off() and kvm_kvatop() prototypes (private to kvm(3)):
-int _kvm_kvatop(kvm_t *, u_long, u_long *);
-off_t _kvm_pa2off(kvm_t *, u_long);
+int _kvm_kvatop(kvm_t *, vaddr_t, paddr_t *);
+off_t _kvm_pa2off(kvm_t *, paddr_t);
Basically, use vaddr_t for VA and paddr_t for PA. In addition, for variables
representing addresses, use paddr_t or vaddr_t, depending on the context.
For most arches, vaddr_t and paddr_t are equivalent to unsigned long. However,
the change was needed for exotic situations, like i386 PAE, were unsigned long
is not suitable for PA which are 64 bits long. As this required a complete
change of the function prototypes, all arches had to be adapted accordingly.
Core files from before this commit should still work with the new code; I did
not see any direct dependency between core's structure and kvatop/pa2off.
The change was compile tested for all arches, as it impacts all of them.
See also:
http://mail-index.netbsd.org/current-users/2010/09/07/msg014249.html
2010-09-21 03:23:16 +04:00
|
|
|
*pa = (paddr_t)~0L;
|
|
|
|
return 0;
|
1994-05-09 07:15:36 +04:00
|
|
|
}
|
1997-08-14 20:05:21 +04:00
|
|
|
|
1998-02-18 04:13:08 +03:00
|
|
|
/*
|
|
|
|
* Translate a physical address to a file-offset in the crash dump.
|
|
|
|
*/
|
|
|
|
off_t
|
Change kvm_pa2off() and kvm_kvatop() prototypes (private to kvm(3)):
-int _kvm_kvatop(kvm_t *, u_long, u_long *);
-off_t _kvm_pa2off(kvm_t *, u_long);
+int _kvm_kvatop(kvm_t *, vaddr_t, paddr_t *);
+off_t _kvm_pa2off(kvm_t *, paddr_t);
Basically, use vaddr_t for VA and paddr_t for PA. In addition, for variables
representing addresses, use paddr_t or vaddr_t, depending on the context.
For most arches, vaddr_t and paddr_t are equivalent to unsigned long. However,
the change was needed for exotic situations, like i386 PAE, were unsigned long
is not suitable for PA which are 64 bits long. As this required a complete
change of the function prototypes, all arches had to be adapted accordingly.
Core files from before this commit should still work with the new code; I did
not see any direct dependency between core's structure and kvatop/pa2off.
The change was compile tested for all arches, as it impacts all of them.
See also:
http://mail-index.netbsd.org/current-users/2010/09/07/msg014249.html
2010-09-21 03:23:16 +04:00
|
|
|
_kvm_pa2off(kvm_t *kd, paddr_t pa)
|
1998-02-18 04:13:08 +03:00
|
|
|
{
|
|
|
|
cpu_kcore_hdr_t *cpu_kh;
|
1999-07-02 19:28:49 +04:00
|
|
|
phys_ram_seg_t *ramsegs;
|
1998-02-18 04:13:08 +03:00
|
|
|
off_t off;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
cpu_kh = kd->cpu_data;
|
1998-09-27 22:15:58 +04:00
|
|
|
ramsegs = (void *)((char *)(void *)cpu_kh + ALIGN(sizeof *cpu_kh));
|
1998-02-18 04:13:08 +03:00
|
|
|
|
|
|
|
off = 0;
|
|
|
|
for (i = 0; i < cpu_kh->nmemsegs; i++) {
|
|
|
|
if (pa >= ramsegs[i].start &&
|
|
|
|
(pa - ramsegs[i].start) < ramsegs[i].size) {
|
|
|
|
off += (pa - ramsegs[i].start);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
off += ramsegs[i].size;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (kd->dump_off + off);
|
|
|
|
}
|
|
|
|
|
1997-08-14 20:05:21 +04:00
|
|
|
/*
|
|
|
|
* Machine-dependent initialization for ALL open kvm descriptors,
|
|
|
|
* not just those for a kernel crash dump. Some architectures
|
|
|
|
* have to deal with these NOT being constants! (i.e. m68k)
|
|
|
|
*/
|
|
|
|
int
|
2010-09-19 06:07:00 +04:00
|
|
|
_kvm_mdopen(kvm_t *kd)
|
1997-08-14 20:05:21 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
kd->usrstack = USRSTACK;
|
|
|
|
kd->min_uva = VM_MIN_ADDRESS;
|
|
|
|
kd->max_uva = VM_MAXUSER_ADDRESS;
|
|
|
|
|
2010-09-19 06:07:00 +04:00
|
|
|
return 0;
|
1997-08-14 20:05:21 +04:00
|
|
|
}
|