⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pisadep.c

📁 Sun Solaris 10 中的 DTrace 组件的源代码。请参看: http://www.sun.com/software/solaris/observability.jsp
💻 C
字号:
/* * Copyright 2005 Sun Microsystems, Inc.  All rights reserved. * * The contents of this file are subject to the terms of the * Common Development and Distribution License, Version 1.0 only. * See the file usr/src/LICENSING.NOTICE in this distribution or * http://www.opensolaris.org/license/ for details. */#pragma ident	"@(#)Pisadep.c	1.5	04/09/28 SMI"#define	__sparcv9cpu#include <sys/stack.h>#include <sys/regset.h>#include <sys/frame.h>#include <sys/sysmacros.h>#include <stdlib.h>#include <unistd.h>#include <sys/types.h>#include <errno.h>#include <string.h>#include "Pcontrol.h"#include "Pstack.h"#include "Pisadep.h"#include "P32ton.h"#define	M_PLT32_NRSV		4	/* reserved PLT entries */#define	M_PLT32_ENTSIZE		12	/* size of each PLT entry */#define	M_PLT64_NRSV		4	/* reserved bit PLT entries */#define	M_PLT64_ENTSIZE		32	/* size of each PLT entry */#define	M_PLT64_FENTSIZE	24	/* size of far PLT entry */#define	M_PLT64_NEARPLTS	0x8000	/* # of NEAR PLTS we can have */#define	M_PLT64_FBLKCNTS	160	/* # of plts in far PLT blocks */#define	M_PLT64_FBLOCKSZ	(M_PLT64_FBLKCNTS * \				(M_PLT64_FENTSIZE + sizeof (uint64_t)))					/* size of far PLT block */#define	SYSCALL32 0x91d02008	/* 32-bit syscall (ta 8) instruction */#define	SYSCALL64 0x91d02040	/* 64-bit syscall (ta 64) instruction */const char *Ppltdest(struct ps_prochandle *P, uintptr_t pltaddr){	map_info_t *mp = Paddr2mptr(P, pltaddr);	uintptr_t r_addr;	file_info_t *fp;	size_t i;	if (mp == NULL || (fp = mp->map_file) == NULL ||	    fp->file_plt_base == 0 || pltaddr < fp->file_plt_base ||	    pltaddr >= fp->file_plt_base + fp->file_plt_size) {		errno = EINVAL;		return (NULL);	}	if (P->status.pr_dmodel == PR_MODEL_LP64) {		Elf64_Rela	r;		uintptr_t	pltoff;		pltoff = pltaddr - fp->file_plt_base;		if (pltoff < (M_PLT64_NEARPLTS * M_PLT64_ENTSIZE)) {			i = (pltaddr - fp->file_plt_base -			    M_PLT64_NRSV * M_PLT64_ENTSIZE) / M_PLT64_ENTSIZE;		} else {			uintptr_t	pltblockoff;			pltblockoff = pltoff - (M_PLT64_NEARPLTS *				M_PLT64_ENTSIZE);			i = M_PLT64_NEARPLTS +				((pltblockoff / M_PLT64_FBLOCKSZ) *				M_PLT64_FBLKCNTS) + ((pltblockoff %				M_PLT64_FBLOCKSZ) / M_PLT64_FENTSIZE) -				M_PLT64_NRSV;		}		r_addr = fp->file_jmp_rel + i * sizeof (Elf64_Rela);		if (Pread(P, &r, sizeof (r), r_addr) == sizeof (r) &&		    (i = ELF64_R_SYM(r.r_info)) < fp->file_dynsym.sym_symn) {			Elf_Data *data = fp->file_dynsym.sym_data;			Elf64_Sym *symp = &(((Elf64_Sym *)data->d_buf)[i]);			return (fp->file_dynsym.sym_strs + symp->st_name);		}	} else /* PR_MODEL_ILP32 */ {		Elf32_Rela r;		i = (pltaddr - fp->file_plt_base -		    M_PLT32_NRSV * M_PLT32_ENTSIZE) / M_PLT32_ENTSIZE;		r_addr = fp->file_jmp_rel + i * sizeof (Elf32_Rela);		if (Pread(P, &r, sizeof (r), r_addr) == sizeof (r) &&		    (i = ELF32_R_SYM(r.r_info)) < fp->file_dynsym.sym_symn) {			Elf_Data *data = fp->file_dynsym.sym_data;			Elf32_Sym *symp = &(((Elf32_Sym *)data->d_buf)[i]);			return (fp->file_dynsym.sym_strs + symp->st_name);		}	}	return (NULL);}intPissyscall(struct ps_prochandle *P, uintptr_t addr){	instr_t sysinstr;	instr_t instr;#if defined(_LP64)	if (P->status.pr_dmodel == PR_MODEL_LP64)		sysinstr = SYSCALL64;	else#endif		sysinstr = SYSCALL32;	if (Pread(P, &instr, sizeof (instr), addr) != sizeof (instr) ||	    instr != sysinstr)		return (0);	else		return (1);}intPissyscall_prev(struct ps_prochandle *P, uintptr_t addr, uintptr_t *dst){	uintptr_t prevaddr = addr - sizeof (instr_t);	if (Pissyscall(P, prevaddr)) {		if (dst)			*dst = prevaddr;		return (1);	}	return (0);}/* ARGSUSED */intPissyscall_text(struct ps_prochandle *P, const void *buf, size_t buflen){	instr_t sysinstr;#if defined(_LP64)	if (P->status.pr_dmodel == PR_MODEL_LP64)		sysinstr = SYSCALL64;	else#endif		sysinstr = SYSCALL32;	if (buflen >= sizeof (instr_t) &&	    memcmp(buf, &sysinstr, sizeof (instr_t)) == 0)		return (1);	else		return (0);}/* * For gwindows_t support, we define a structure to pass arguments to * a Plwp_iter() callback routine. */typedef struct {	struct ps_prochandle *gq_proc;	/* libproc handle */	struct rwindow *gq_rwin;	/* rwindow destination buffer */	uintptr_t gq_addr;		/* stack address to match */} gwin_query_t;static intfind_gwin(gwin_query_t *gqp, const lwpstatus_t *psp){	gwindows_t gwin;	struct stat64 st;	char path[64];	ssize_t n;	int fd, i;	int rv = 0; /* Return value for skip to next lwp */	(void) snprintf(path, sizeof (path), "/proc/%d/lwp/%d/gwindows",	    (int)gqp->gq_proc->pid, (int)psp->pr_lwpid);	if (stat64(path, &st) == -1 || st.st_size == 0)		return (0); /* Nothing doing; skip to next lwp */	if ((fd = open64(path, O_RDONLY)) >= 0) {		/*		 * Zero out the gwindows_t because the gwindows file only has		 * as much data as needed to represent the saved windows.		 */#ifdef _LP64		if (gqp->gq_proc->status.pr_dmodel == PR_MODEL_ILP32) {			gwindows32_t g32;			(void) memset(&g32, 0, sizeof (g32));			if ((n = read(fd, &g32, sizeof (g32))) > 0)				gwindows_32_to_n(&g32, &gwin);		} else {#endif			(void) memset(&gwin, 0, sizeof (gwin));			n = read(fd, &gwin, sizeof (gwin));#ifdef _LP64		}#endif		if (n > 0) {			/*			 * If we actually found a non-zero gwindows file and			 * were able to read it, iterate through the buffers			 * looking for a stack pointer match; if one is found,			 * copy out the corresponding register window.			 */			for (i = 0; i < gwin.wbcnt; i++) {				if (gwin.spbuf[i] == (greg_t *)gqp->gq_addr) {					(void) memcpy(gqp->gq_rwin,					    &gwin.wbuf[i],					    sizeof (struct rwindow));					rv = 1; /* We're done */					break;				}			}		}		(void) close(fd);	}	return (rv);}static intread_gwin(struct ps_prochandle *P, struct rwindow *rwp, uintptr_t sp){	gwin_query_t gq;	if (P->state == PS_DEAD) {		lwp_info_t *lwp = list_next(&P->core->core_lwp_head);		uint_t n;		int i;		for (n = 0; n < P->core->core_nlwp; n++, lwp = list_next(lwp)) {			gwindows_t *gwin = lwp->lwp_gwins;			if (gwin == NULL)				continue; /* No gwindows for this lwp */			/*			 * If this lwp has gwindows associated with it, iterate			 * through the buffers looking for a stack pointer			 * match; if one is found, copy out the register window.			 */			for (i = 0; i < gwin->wbcnt; i++) {				if (gwin->spbuf[i] == (greg_t *)sp) {					(void) memcpy(rwp, &gwin->wbuf[i],					    sizeof (struct rwindow));					return (0); /* We're done */				}			}		}		return (-1); /* No gwindows match found */	}	gq.gq_proc = P;	gq.gq_rwin = rwp;	gq.gq_addr = sp;	return (Plwp_iter(P, (proc_lwp_f *)find_gwin, &gq) ? 0 : -1);}static voiducontext_n_to_prgregs(const ucontext_t *src, prgregset_t dst){	const greg_t *gregs = &src->uc_mcontext.gregs[0];	dst[R_CCR] = gregs[REG_CCR];	dst[R_ASI] = gregs[REG_ASI];	dst[R_FPRS] = gregs[REG_FPRS];	dst[R_PC] = gregs[REG_PC];	dst[R_nPC] = gregs[REG_nPC];	dst[R_Y] = gregs[REG_Y];	dst[R_G1] = gregs[REG_G1];	dst[R_G2] = gregs[REG_G2];	dst[R_G3] = gregs[REG_G3];	dst[R_G4] = gregs[REG_G4];	dst[R_G5] = gregs[REG_G5];	dst[R_G6] = gregs[REG_G6];	dst[R_G7] = gregs[REG_G7];	dst[R_O0] = gregs[REG_O0];	dst[R_O1] = gregs[REG_O1];	dst[R_O2] = gregs[REG_O2];	dst[R_O3] = gregs[REG_O3];	dst[R_O4] = gregs[REG_O4];	dst[R_O5] = gregs[REG_O5];	dst[R_O6] = gregs[REG_O6];	dst[R_O7] = gregs[REG_O7];}#ifdef _LP64static voiducontext_32_to_prgregs(const ucontext32_t *src, prgregset_t dst){	/*	 * We need to be very careful here to cast the greg32_t's (signed) to	 * unsigned and then explicitly promote them as unsigned values.	 */	const greg32_t *gregs = &src->uc_mcontext.gregs[0];	dst[R_PSR] = (uint64_t)(uint32_t)gregs[REG_PSR];	dst[R_PC] = (uint64_t)(uint32_t)gregs[REG_PC];	dst[R_nPC] = (uint64_t)(uint32_t)gregs[REG_nPC];	dst[R_Y] = (uint64_t)(uint32_t)gregs[REG_Y];	dst[R_G1] = (uint64_t)(uint32_t)gregs[REG_G1];	dst[R_G2] = (uint64_t)(uint32_t)gregs[REG_G2];	dst[R_G3] = (uint64_t)(uint32_t)gregs[REG_G3];	dst[R_G4] = (uint64_t)(uint32_t)gregs[REG_G4];	dst[R_G5] = (uint64_t)(uint32_t)gregs[REG_G5];	dst[R_G6] = (uint64_t)(uint32_t)gregs[REG_G6];	dst[R_G7] = (uint64_t)(uint32_t)gregs[REG_G7];	dst[R_O0] = (uint64_t)(uint32_t)gregs[REG_O0];	dst[R_O1] = (uint64_t)(uint32_t)gregs[REG_O1];	dst[R_O2] = (uint64_t)(uint32_t)gregs[REG_O2];	dst[R_O3] = (uint64_t)(uint32_t)gregs[REG_O3];	dst[R_O4] = (uint64_t)(uint32_t)gregs[REG_O4];	dst[R_O5] = (uint64_t)(uint32_t)gregs[REG_O5];	dst[R_O6] = (uint64_t)(uint32_t)gregs[REG_O6];	dst[R_O7] = (uint64_t)(uint32_t)gregs[REG_O7];}#endif	/* _LP64 */intPstack_iter(struct ps_prochandle *P, const prgregset_t regs,	proc_stack_f *func, void *arg){	prgreg_t *prevfp = NULL;	uint_t pfpsize = 0;	int nfp = 0;	prgregset_t gregs;	long args[6];	prgreg_t fp;	int i;	int rv;	uintptr_t sp;	ssize_t n;	uclist_t ucl;	ucontext_t uc;	init_uclist(&ucl, P);	(void) memcpy(gregs, regs, sizeof (gregs));	for (;;) {		fp = gregs[R_FP];		if (stack_loop(fp, &prevfp, &nfp, &pfpsize))			break;		for (i = 0; i < 6; i++)			args[i] = gregs[R_I0 + i];		if ((rv = func(arg, gregs, 6, args)) != 0)			break;		gregs[R_PC] = gregs[R_I7];		gregs[R_nPC] = gregs[R_PC] + 4;		(void) memcpy(&gregs[R_O0], &gregs[R_I0], 8*sizeof (prgreg_t));		if ((sp = gregs[R_FP]) == 0)			break;#ifdef _LP64		if (P->status.pr_dmodel == PR_MODEL_ILP32) {			struct rwindow32 rw32;			ucontext32_t uc32;			if (find_uclink(&ucl, sp +			    SA32(sizeof (struct frame32))) &&			    Pread(P, &uc32, sizeof (uc32), sp +			    SA32(sizeof (struct frame32))) == sizeof (uc32)) {				ucontext_32_to_prgregs(&uc32, gregs);				sp = gregs[R_SP];			}			n = Pread(P, &rw32, sizeof (struct rwindow32), sp);			if (n == sizeof (struct rwindow32)) {				rwindow_32_to_n(&rw32,				    (struct rwindow *)&gregs[R_L0]);				continue;			}		} else {#endif	/* _LP64 */			sp += STACK_BIAS;			if (find_uclink(&ucl, sp + SA(sizeof (struct frame))) &&			    Pread(P, &uc, sizeof (uc), sp +			    SA(sizeof (struct frame))) == sizeof (uc)) {				ucontext_n_to_prgregs(&uc, gregs);				sp = gregs[R_SP] + STACK_BIAS;			}			n = Pread(P, &gregs[R_L0], sizeof (struct rwindow), sp);			if (n == sizeof (struct rwindow))				continue;#ifdef _LP64		}#endif	/* _LP64 */		/*		 * If we get here, then our Pread of the register window		 * failed.  If this is because the address was not mapped,		 * then we attempt to read this window via any gwindows		 * information we have.  If that too fails, abort our loop.		 */		if (n > 0)			break;	/* Failed for reason other than not mapped */		if (read_gwin(P, (struct rwindow *)&gregs[R_L0], sp) == -1)			break;	/* No gwindows match either */	}	if (prevfp)		free(prevfp);	free_uclist(&ucl);	return (rv);}uintptr_tPsyscall_setup(struct ps_prochandle *P, int nargs, int sysindex, uintptr_t sp){	uintptr_t ret;	int model = P->status.pr_dmodel;	if (model == PR_MODEL_LP64) {		sp -= (nargs > 6)?			WINDOWSIZE64 + sizeof (int64_t) * nargs :			WINDOWSIZE64 + sizeof (int64_t) * 6;		sp = PSTACK_ALIGN64(sp);		ret = sp + WINDOWSIZE32 + sizeof (int32_t);	} else {		sp -= (nargs > 6)?			WINDOWSIZE32 + sizeof (int32_t) * (1 + nargs) :			WINDOWSIZE32 + sizeof (int32_t) * (1 + 6);		sp = PSTACK_ALIGN32(sp);		ret = sp + WINDOWSIZE64 + sizeof (int32_t);	}	P->status.pr_lwp.pr_reg[R_G1] = sysindex;	if (model == PR_MODEL_LP64)		P->status.pr_lwp.pr_reg[R_SP] = sp - STACK_BIAS;	else		P->status.pr_lwp.pr_reg[R_SP] = sp;	P->status.pr_lwp.pr_reg[R_PC] = P->sysaddr;	P->status.pr_lwp.pr_reg[R_nPC] = P->sysaddr + sizeof (instr_t);	return (ret);}intPsyscall_copyinargs(struct ps_prochandle *P, int nargs, argdes_t *argp,    uintptr_t ap){	uint32_t arglist32[MAXARGS+2];	uint64_t arglist64[MAXARGS+2];	int i;	argdes_t *adp;	int model = P->status.pr_dmodel;	for (i = 0, adp = argp; i < nargs; i++, adp++) {		arglist32[i] = (uint32_t)adp->arg_value;		arglist64[i] = (uint64_t)adp->arg_value;		if (i < 6)			(void) Pputareg(P, R_O0+i, adp->arg_value);	}	if (model == PR_MODEL_LP64) {		if (nargs > 6 &&		    Pwrite(P, &arglist64[0], sizeof (int64_t) * nargs,		    (uintptr_t)ap) != sizeof (int64_t) * nargs)			return (-1);	} else {		if (nargs > 6 &&		    Pwrite(P, &arglist32[0], sizeof (int32_t) * nargs,		    (uintptr_t)ap) != sizeof (int32_t) * nargs)			return (-1);	}	return (0);}/* ARGSUSED */intPsyscall_copyoutargs(struct ps_prochandle *P, int nargs, argdes_t *argp,    uintptr_t ap){	/* Do nothing */	return (0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -