Home | History | Annotate | Line # | Download | only in libkvm
kvm_sparc.c revision 1.31
      1 /*	$NetBSD: kvm_sparc.c,v 1.31 2010/09/19 02:07:00 jym Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1992, 1993
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * This code is derived from software developed by the Computer Systems
      8  * Engineering group at Lawrence Berkeley Laboratory under DARPA contract
      9  * BG 91-66 and contributed to Berkeley.
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  * 3. Neither the name of the University nor the names of its contributors
     20  *    may be used to endorse or promote products derived from this software
     21  *    without specific prior written permission.
     22  *
     23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  * SUCH DAMAGE.
     34  */
     35 
     36 #include <sys/cdefs.h>
     37 #if defined(LIBC_SCCS) && !defined(lint)
     38 #if 0
     39 static char sccsid[] = "@(#)kvm_sparc.c	8.1 (Berkeley) 6/4/93";
     40 #else
     41 __RCSID("$NetBSD: kvm_sparc.c,v 1.31 2010/09/19 02:07:00 jym Exp $");
     42 #endif
     43 #endif /* LIBC_SCCS and not lint */
     44 
     45 /*
     46  * Sparc machine dependent routines for kvm.  Hopefully, the forthcoming
     47  * vm code will one day obsolete this module.
     48  */
     49 
     50 #include <sys/param.h>
     51 #include <sys/exec.h>
     52 #include <sys/user.h>
     53 #include <sys/proc.h>
     54 #include <sys/stat.h>
     55 #include <sys/core.h>
     56 #include <sys/kcore.h>
     57 #include <unistd.h>
     58 #include <nlist.h>
     59 #include <kvm.h>
     60 
     61 #include <uvm/uvm_extern.h>
     62 
     63 #include <sparc/pmap.h>
     64 #include <sparc/kcore.h>
     65 
     66 #include <limits.h>
     67 #include <db.h>
     68 
     69 #include "kvm_private.h"
     70 
     71 
     72 static int cputyp = -1;
     73 static int pgshift;
     74 static int nptesg;	/* [sun4/sun4c] only */
     75 
     76 #undef VA_VPG
     77 #define VA_VPG(va)	((cputyp == CPU_SUN4C || cputyp == CPU_SUN4M) \
     78 				? VA_SUN4C_VPG(va) \
     79 				: VA_SUN4_VPG(va))
     80 
     81 #undef VA_OFF
     82 #define VA_OFF(va) (va & (kd->nbpg - 1))
     83 
     84 int _kvm_kvatop44c(kvm_t *, u_long, u_long *);
     85 int _kvm_kvatop4m (kvm_t *, u_long, u_long *);
     86 int _kvm_kvatop4u (kvm_t *, u_long, u_long *);
     87 
     88 /*
     89  * XXX
     90  * taken from /sys/arch/sparc64/include/kcore.h.
     91  * this is the same as the sparc one, except for the kphys addition,
     92  * so luckily we can use this here...
     93  */
     94 typedef struct sparc64_cpu_kcore_hdr {
     95 	int	cputype;		/* CPU type associated with this dump */
     96 	u_long	kernbase;		/* copy of KERNBASE goes here */
     97 	int	nmemseg;		/* # of physical memory segments */
     98 	u_long	memsegoffset;		/* start of memseg array (relative */
     99 					/*  to the start of this header) */
    100 	int	nsegmap;		/* # of segmaps following */
    101 	u_long	segmapoffset;		/* start of segmap array (relative */
    102 					/*  to the start of this header) */
    103 	int	npmeg;			/* # of PMEGs; [sun4/sun4c] only */
    104 	u_long	pmegoffset;		/* start of pmeg array (relative */
    105 					/*  to the start of this header) */
    106 /* SPARC64 stuff */
    107 	paddr_t	kphys;			/* Physical address of 4MB locked TLB */
    108 } sparc64_cpu_kcore_hdr_t;
    109 
    110 void
    111 _kvm_freevtop(kvm_t *kd)
    112 {
    113 	if (kd->vmst != 0) {
    114 		_kvm_err(kd, kd->program, "_kvm_freevtop: internal error");
    115 		kd->vmst = 0;
    116 	}
    117 }
    118 
    119 /*
    120  * Prepare for translation of kernel virtual addresses into offsets
    121  * into crash dump files. We use the MMU specific goop written at the
    122  * front of the crash dump by pmap_dumpmmu().
    123  */
    124 int
    125 _kvm_initvtop(kvm_t *kd)
    126 {
    127 	sparc64_cpu_kcore_hdr_t *cpup = kd->cpu_data;
    128 
    129 	switch (cputyp = cpup->cputype) {
    130 	case CPU_SUN4:
    131 	case CPU_SUN4U:
    132 		kd->nbpg = 8196;
    133 		pgshift = 13;
    134 		break;
    135 	case CPU_SUN4C:
    136 	case CPU_SUN4M:
    137 		kd->nbpg = 4096;
    138 		pgshift = 12;
    139 		break;
    140 	default:
    141 		_kvm_err(kd, kd->program, "Unsupported CPU type");
    142 		return (-1);
    143 	}
    144 	nptesg = NBPSG / kd->nbpg;
    145 	return (0);
    146 }
    147 
    148 /*
    149  * Translate a kernel virtual address to a physical address using the
    150  * mapping information in kd->vm.  Returns the result in pa, and returns
    151  * the number of bytes that are contiguously available from this
    152  * physical address.  This routine is used only for crash dumps.
    153  */
    154 int
    155 _kvm_kvatop(kvm_t *kd, u_long va, u_long *pa)
    156 {
    157 	if (cputyp == -1)
    158 		if (_kvm_initvtop(kd) != 0)
    159 			return (-1);
    160 
    161 	switch (cputyp) {
    162 	case CPU_SUN4:
    163 	case CPU_SUN4C:
    164 		return _kvm_kvatop44c(kd, va, pa);
    165 		break;
    166 	case CPU_SUN4M:
    167 		return _kvm_kvatop4m(kd, va, pa);
    168 		break;
    169 	case CPU_SUN4U:
    170 	default:
    171 		return _kvm_kvatop4u(kd, va, pa);
    172 	}
    173 }
    174 
    175 /*
    176  * (note: sun4 3-level MMU not yet supported)
    177  */
    178 int
    179 _kvm_kvatop44c(kvm_t *kd, u_long va, u_long *pa)
    180 {
    181 	int vr, vs, pte;
    182 	sparc64_cpu_kcore_hdr_t *cpup = kd->cpu_data;
    183 	struct segmap *sp, *segmaps;
    184 	int *ptes;
    185 	int nkreg, nureg;
    186 	u_long kernbase = cpup->kernbase;
    187 
    188 	if (va < kernbase)
    189 		goto err;
    190 
    191 	/*
    192 	 * Layout of CPU segment:
    193 	 *	cpu_kcore_hdr_t;
    194 	 *	[alignment]
    195 	 *	phys_ram_seg_t[cpup->nmemseg];
    196 	 *	segmap[cpup->nsegmap];
    197 	 *	ptes[cpup->npmegs];
    198 	 */
    199 	segmaps = (struct segmap *)((long)kd->cpu_data + cpup->segmapoffset);
    200 	ptes = (int *)((int)kd->cpu_data + cpup->pmegoffset);
    201 	nkreg = ((int)((-(unsigned)kernbase) / NBPRG));
    202 	nureg = 256 - nkreg;
    203 
    204 	vr = VA_VREG(va);
    205 	vs = VA_VSEG(va);
    206 
    207 	sp = &segmaps[(vr-nureg)*NSEGRG + vs];
    208 	if (sp->sg_npte == 0)
    209 		goto err;
    210 	if (sp->sg_pmeg == cpup->npmeg - 1) /* =seginval */
    211 		goto err;
    212 	pte = ptes[sp->sg_pmeg * nptesg + VA_VPG(va)];
    213 	if ((pte & PG_V) != 0) {
    214 		long p, off = VA_OFF(va);
    215 
    216 		p = (pte & PG_PFNUM) << pgshift;
    217 		*pa = p + off;
    218 		return (kd->nbpg - off);
    219 	}
    220 err:
    221 	_kvm_err(kd, 0, "invalid address (%lx)", va);
    222 	return (0);
    223 }
    224 
    225 int
    226 _kvm_kvatop4m(kvm_t *kd, u_long va, u_long *pa)
    227 {
    228 	sparc64_cpu_kcore_hdr_t *cpup = kd->cpu_data;
    229 	int vr, vs;
    230 	int pte;
    231 	off_t foff;
    232 	struct segmap *sp, *segmaps;
    233 	int nkreg, nureg;
    234 	u_long kernbase = cpup->kernbase;
    235 
    236 	if (va < kernbase)
    237 		goto err;
    238 
    239 	/*
    240 	 * Layout of CPU segment:
    241 	 *	cpu_kcore_hdr_t;
    242 	 *	[alignment]
    243 	 *	phys_ram_seg_t[cpup->nmemseg];
    244 	 *	segmap[cpup->nsegmap];
    245 	 */
    246 	segmaps = (struct segmap *)((long)kd->cpu_data + cpup->segmapoffset);
    247 	nkreg = ((int)((-(unsigned)kernbase) / NBPRG));
    248 	nureg = 256 - nkreg;
    249 
    250 	vr = VA_VREG(va);
    251 	vs = VA_VSEG(va);
    252 
    253 	sp = &segmaps[(vr-nureg)*NSEGRG + vs];
    254 	if (sp->sg_npte == 0)
    255 		goto err;
    256 
    257 	/* XXX - assume page tables in initial kernel DATA or BSS. */
    258 	foff = _kvm_pa2off(kd, (u_long)&sp->sg_pte[VA_VPG(va)] - kernbase);
    259 	if (foff == (off_t)-1)
    260 		return (0);
    261 
    262 	if (_kvm_pread(kd, kd->pmfd, &pte, sizeof(pte), foff) != sizeof(pte)) {
    263 		_kvm_syserr(kd, kd->program, "cannot read pte for %lx", va);
    264 		return (0);
    265 	}
    266 
    267 	if ((pte & SRMMU_TETYPE) == SRMMU_TEPTE) {
    268 		long p, off = VA_OFF(va);
    269 
    270 		p = (pte & SRMMU_PPNMASK) << SRMMU_PPNPASHIFT;
    271 		*pa = p + off;
    272 		return (kd->nbpg - off);
    273 	}
    274 err:
    275 	_kvm_err(kd, 0, "invalid address (%lx)", va);
    276 	return (0);
    277 }
    278 
    279 /*
    280  * sparc64 pmap's 32-bit page table format
    281  */
    282 int
    283 _kvm_kvatop4u(kvm_t *kd, u_long va, u_long *pa)
    284 {
    285 	sparc64_cpu_kcore_hdr_t *cpup = kd->cpu_data;
    286 	int64_t **segmaps;
    287 	int64_t *ptes;
    288 	int64_t pte;
    289 	int64_t kphys = cpup->kphys;
    290 	u_long kernbase = cpup->kernbase;
    291 
    292 	if (va < kernbase)
    293 		goto err;
    294 
    295 	/*
    296 	 * Kernel layout:
    297 	 *
    298 	 * kernbase:
    299 	 *	4MB locked TLB (text+data+BSS)
    300 	 *	Random other stuff.
    301 	 */
    302 	if (va >= kernbase && va < kernbase + 4*1024*1024)
    303 		return (va - kernbase) + kphys;
    304 
    305 /* XXX: from sparc64/include/pmap.h */
    306 #define	SPARC64_PTSZ		(kd->nbpg/8)
    307 #define	SPARC64_STSZ		(SPARC64_PTSZ)
    308 #define	SPARC64_PTMASK		(SPARC64_PTSZ-1)
    309 #define	SPARC64_PTSHIFT		(13)
    310 #define	SPARC64_PDSHIFT		(10+SPARC64_PTSHIFT)
    311 #define	SPARC64_STSHIFT		(10+SPARC64_PDSHIFT)
    312 #define	SPARC64_STMASK		(SPARC64_STSZ-1)
    313 #define	sparc64_va_to_seg(v)	(int)((((int64_t)(v))>>SPARC64_STSHIFT)&SPARC64_STMASK)
    314 #define	sparc64_va_to_pte(v)	(int)((((int64_t)(v))>>SPARC64_PTSHIFT)&SPARC64_PTMASK)
    315 
    316 /* XXX: from sparc64/include/pte.h */
    317 #define	SPARC64_TLB_V			0x8000000000000000LL
    318 #define	SPARC64_TLB_PA_MASK		0x000001ffffffe000LL
    319 
    320 	/*
    321 	 * Layout of CPU segment:
    322 	 *	cpu_kcore_hdr_t;
    323 	 *	[alignment]
    324 	 *	phys_ram_seg_t[cpup->nmemseg];
    325 	 *	segmap[cpup->nsegmap];
    326 	 */
    327 	segmaps = (int64_t **)((long)kd->cpu_data + cpup->segmapoffset);
    328 	/* XXX XXX XXX _kvm_pa2off takes u_long and returns off_t..
    329 	   should take off_t also!! */
    330 
    331 	ptes = (int64_t *)(int)_kvm_pa2off(kd, (u_long)segmaps[sparc64_va_to_seg(va)]);
    332 	pte = ptes[sparc64_va_to_pte(va)];
    333 	if ((pte & SPARC64_TLB_V) != 0)
    334 		return ((pte & SPARC64_TLB_PA_MASK) | (va & (kd->nbpg - 1)));
    335 err:
    336 	_kvm_err(kd, 0, "invalid address (%lx)", va);
    337 	return (0);
    338 }
    339 
    340 
    341 /*
    342  * Translate a physical address to a file-offset in the crash dump.
    343  */
    344 off_t
    345 _kvm_pa2off(kvm_t *kd, u_long pa)
    346 {
    347 	sparc64_cpu_kcore_hdr_t *cpup = kd->cpu_data;
    348 	phys_ram_seg_t *mp;
    349 	off_t off;
    350 	int nmem;
    351 
    352 	/*
    353 	 * Layout of CPU segment:
    354 	 *	cpu_kcore_hdr_t;
    355 	 *	[alignment]
    356 	 *	phys_ram_seg_t[cpup->nmemseg];
    357 	 */
    358 	mp = (phys_ram_seg_t *)((int)kd->cpu_data + cpup->memsegoffset);
    359 	off = 0;
    360 
    361 	/* Translate (sparse) pfnum to (packed) dump offset */
    362 	for (nmem = cpup->nmemseg; --nmem >= 0; mp++) {
    363 		if (mp->start <= pa && pa < mp->start + mp->size)
    364 			break;
    365 		off += mp->size;
    366 	}
    367 	if (nmem < 0) {
    368 		_kvm_err(kd, 0, "invalid address (%lx)", pa);
    369 		return (-1);
    370 	}
    371 
    372 	return (kd->dump_off + off + pa - mp->start);
    373 }
    374 
    375 /*
    376  * Machine-dependent initialization for ALL open kvm descriptors,
    377  * not just those for a kernel crash dump.  Some architectures
    378  * have to deal with these NOT being constants!  (i.e. m68k)
    379  */
    380 int
    381 _kvm_mdopen(kvm_t *kd)
    382 {
    383 	u_long max_uva;
    384 	extern struct ps_strings *__ps_strings;
    385 
    386 	max_uva = (u_long) (__ps_strings + 1);
    387 	kd->usrstack = max_uva;
    388 	kd->max_uva  = max_uva;
    389 	kd->min_uva  = 0;
    390 
    391 	return (0);
    392 }
    393