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

📄 ptrace.c

📁 上传linux-jx2410的源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
	child->thread.flags |= IA64_THREAD_KRBS_SYNCED;	/* set the flag in the child thread only */}/* * Write f32-f127 back to task->thread.fph if it has been modified. */inline voidia64_flush_fph (struct task_struct *task){	struct ia64_psr *psr = ia64_psr(ia64_task_regs(task));#ifdef CONFIG_SMP	struct task_struct *fpu_owner = current;#else	struct task_struct *fpu_owner = ia64_get_fpu_owner();#endif	if (task == fpu_owner && psr->mfh) {		psr->mfh = 0;		ia64_save_fpu(&task->thread.fph[0]);		task->thread.flags |= IA64_THREAD_FPH_VALID;	}}/* * Sync the fph state of the task so that it can be manipulated * through thread.fph.  If necessary, f32-f127 are written back to * thread.fph or, if the fph state hasn't been used before, thread.fph * is cleared to zeroes.  Also, access to f32-f127 is disabled to * ensure that the task picks up the state from thread.fph when it * executes again. */voidia64_sync_fph (struct task_struct *task){	struct ia64_psr *psr = ia64_psr(ia64_task_regs(task));	ia64_flush_fph(task);	if (!(task->thread.flags & IA64_THREAD_FPH_VALID)) {		task->thread.flags |= IA64_THREAD_FPH_VALID;		memset(&task->thread.fph, 0, sizeof(task->thread.fph));	}#ifndef CONFIG_SMP	if (ia64_get_fpu_owner() == task)		ia64_set_fpu_owner(0);#endif	psr->dfh = 1;}static intaccess_fr (struct unw_frame_info *info, int regnum, int hi, unsigned long *data, int write_access){	struct ia64_fpreg fpval;	int ret;	ret = unw_get_fr(info, regnum, &fpval);	if (ret < 0)		return ret;	if (write_access) {		fpval.u.bits[hi] = *data;		ret = unw_set_fr(info, regnum, fpval);	} else		*data = fpval.u.bits[hi];	return ret;}static intaccess_uarea (struct task_struct *child, unsigned long addr, unsigned long *data, int write_access){	unsigned long *ptr, regnum, urbs_end, rnat_addr;	struct switch_stack *sw;	struct unw_frame_info info;	struct pt_regs *pt;	pt = ia64_task_regs(child);	sw = (struct switch_stack *) (child->thread.ksp + 16);	if ((addr & 0x7) != 0) {		dprintk("ptrace: unaligned register address 0x%lx\n", addr);		return -1;	}	if (addr < PT_F127 + 16) {		/* accessing fph */		if (write_access)			ia64_sync_fph(child);		else			ia64_flush_fph(child);		ptr = (unsigned long *) ((unsigned long) &child->thread.fph + addr);	} else if (addr >= PT_F10 && addr < PT_F15 + 16) {		/* scratch registers untouched by kernel (saved in switch_stack) */		ptr = (unsigned long *) ((long) sw + addr - PT_NAT_BITS);	} else if (addr < PT_AR_LC + 8) {		/* preserved state: */		unsigned long nat_bits, scratch_unat, dummy = 0;		struct unw_frame_info info;		char nat = 0;		int ret;		unw_init_from_blocked_task(&info, child);		if (unw_unwind_to_user(&info) < 0)			return -1;		switch (addr) {		      case PT_NAT_BITS:			if (write_access) {				nat_bits = *data;				scratch_unat = ia64_put_scratch_nat_bits(pt, nat_bits);				if (unw_set_ar(&info, UNW_AR_UNAT, scratch_unat) < 0) {					dprintk("ptrace: failed to set ar.unat\n");					return -1;				}				for (regnum = 4; regnum <= 7; ++regnum) {					unw_get_gr(&info, regnum, &dummy, &nat);					unw_set_gr(&info, regnum, dummy, (nat_bits >> regnum) & 1);				}			} else {				if (unw_get_ar(&info, UNW_AR_UNAT, &scratch_unat) < 0) {					dprintk("ptrace: failed to read ar.unat\n");					return -1;				}				nat_bits = ia64_get_scratch_nat_bits(pt, scratch_unat);				for (regnum = 4; regnum <= 7; ++regnum) {					unw_get_gr(&info, regnum, &dummy, &nat);					nat_bits |= (nat != 0) << regnum;				}				*data = nat_bits;			}			return 0;		      case PT_R4: case PT_R5: case PT_R6: case PT_R7:			if (write_access) {				/* read NaT bit first: */				ret = unw_get_gr(&info, (addr - PT_R4)/8 + 4, data, &nat);				if (ret < 0)					return ret;			}			return unw_access_gr(&info, (addr - PT_R4)/8 + 4, data, &nat,					     write_access);		      case PT_B1: case PT_B2: case PT_B3: case PT_B4: case PT_B5:			return unw_access_br(&info, (addr - PT_B1)/8 + 1, data, write_access);		      case PT_AR_EC:			return unw_access_ar(&info, UNW_AR_EC, data, write_access);		      case PT_AR_LC:			return unw_access_ar(&info, UNW_AR_LC, data, write_access);		      default:			if (addr >= PT_F2 && addr < PT_F5 + 16)				return access_fr(&info, (addr - PT_F2)/16 + 2, (addr & 8) != 0,						 data, write_access);			else if (addr >= PT_F16 && addr < PT_F31 + 16)				return access_fr(&info, (addr - PT_F16)/16 + 16, (addr & 8) != 0,						 data, write_access);			else {				dprintk("ptrace: rejecting access to register address 0x%lx\n",					addr);				return -1;			}		}	} else if (addr < PT_F9+16) {		/* scratch state */		switch (addr) {		      case PT_AR_BSP:			/*			 * By convention, we use PT_AR_BSP to refer to the end of the user-level			 * backing store.  Use ia64_rse_skip_regs(PT_AR_BSP, -CFM.sof) to get			 * the real value of ar.bsp at the time the kernel was entered.			 */			urbs_end = ia64_get_user_rbs_end(child, pt, NULL);			if (write_access) {				if (*data != urbs_end) {					if (ia64_sync_user_rbs(child, sw,							       pt->ar_bspstore, urbs_end) < 0)						return -1;					/* simulate user-level write of ar.bsp: */					pt->loadrs = 0;					pt->ar_bspstore = *data;				}			} else				*data = urbs_end;			return 0;		      case PT_CFM:			if ((long) pt->cr_ifs < 0) {				if (write_access)					pt->cr_ifs = ((pt->cr_ifs & ~0x3fffffffffUL)						      | (*data & 0x3fffffffffUL));				else					*data = pt->cr_ifs & 0x3fffffffffUL;			} else {				/* kernel was entered through a system call */				unsigned long cfm;				unw_init_from_blocked_task(&info, child);				if (unw_unwind_to_user(&info) < 0)					return -1;				unw_get_cfm(&info, &cfm);				if (write_access)					unw_set_cfm(&info, ((cfm & ~0x3fffffffffU)							    | (*data & 0x3fffffffffUL)));				else					*data = cfm;			}			return 0;		      case PT_CR_IPSR:			if (write_access)				pt->cr_ipsr = ((*data & IPSR_WRITE_MASK)					       | (pt->cr_ipsr & ~IPSR_WRITE_MASK));			else				*data = (pt->cr_ipsr & IPSR_READ_MASK);			return 0;		      case PT_AR_RNAT:			urbs_end = ia64_get_user_rbs_end(child, pt, NULL);			rnat_addr = (long) ia64_rse_rnat_addr((long *) urbs_end);			if (write_access)				return ia64_poke(child, sw, urbs_end, rnat_addr, *data);			else				return ia64_peek(child, sw, urbs_end, rnat_addr, data);				   case PT_R1:  case PT_R2:  case PT_R3:		      case PT_R8:  case PT_R9:  case PT_R10: case PT_R11:		      case PT_R12: case PT_R13: case PT_R14: case PT_R15:		      case PT_R16: case PT_R17: case PT_R18: case PT_R19:		      case PT_R20: case PT_R21: case PT_R22: case PT_R23:		      case PT_R24: case PT_R25: case PT_R26: case PT_R27:		      case PT_R28: case PT_R29: case PT_R30: case PT_R31:		      case PT_B0:  case PT_B6:  case PT_B7:		      case PT_F6:  case PT_F6+8: case PT_F7: case PT_F7+8:		      case PT_F8:  case PT_F8+8: case PT_F9: case PT_F9+8:		      case PT_AR_BSPSTORE:		      case PT_AR_RSC: case PT_AR_UNAT: case PT_AR_PFS:		      case PT_AR_CCV: case PT_AR_FPSR: case PT_CR_IIP: case PT_PR:			/* scratch register */			ptr = (unsigned long *) ((long) pt + addr - PT_CR_IPSR);			break;		      default:			/* disallow accessing anything else... */			dprintk("ptrace: rejecting access to register address 0x%lx\n",				addr);			return -1;		}	} else {		/* access debug registers */		if (!(child->thread.flags & IA64_THREAD_DBG_VALID)) {			child->thread.flags |= IA64_THREAD_DBG_VALID;			memset(child->thread.dbr, 0, sizeof(child->thread.dbr));			memset(child->thread.ibr, 0, sizeof(child->thread.ibr));		}		if (addr >= PT_IBR) {			regnum = (addr - PT_IBR) >> 3;			ptr = &child->thread.ibr[0];		} else {			regnum = (addr - PT_DBR) >> 3;			ptr = &child->thread.dbr[0];		}		if (regnum >= 8) {			dprintk("ptrace: rejecting access to register address 0x%lx\n", addr);			return -1;		}		ptr += regnum;		if (write_access)			/* don't let the user set kernel-level breakpoints... */			*ptr = *data & ~(7UL << 56);		else			*data = *ptr;		return 0;	}	if (write_access)		*ptr = *data;	else		*data = *ptr;	return 0;}/* * Called by kernel/ptrace.c when detaching.. * * Make sure the single step bit is not set. */voidptrace_disable (struct task_struct *child){	struct ia64_psr *child_psr = ia64_psr(ia64_task_regs(child));	/* make sure the single step/take-branch tra bits are not set: */	child_psr->ss = 0;	child_psr->tb = 0;	/* Turn off flag indicating that the KRBS is sync'd with child's VM: */	child->thread.flags &= ~IA64_THREAD_KRBS_SYNCED;}asmlinkage longsys_ptrace (long request, pid_t pid, unsigned long addr, unsigned long data,	    long arg4, long arg5, long arg6, long arg7, long stack){	struct pt_regs *pt, *regs = (struct pt_regs *) &stack;	unsigned long urbs_end;	struct task_struct *child;	struct switch_stack *sw;	long ret;	lock_kernel();	ret = -EPERM;	if (request == PTRACE_TRACEME) {		/* are we already being traced? */		if (current->ptrace & PT_PTRACED)			goto out;		current->ptrace |= PT_PTRACED;		ret = 0;		goto out;	}	ret = -ESRCH;	read_lock(&tasklist_lock);	{		child = find_task_by_pid(pid);		if (child)			get_task_struct(child);	}	read_unlock(&tasklist_lock);	if (!child)		goto out;	ret = -EPERM;	if (pid == 1)		/* no messing around with init! */		goto out_tsk;	if (request == PTRACE_ATTACH) {		ret = ptrace_attach(child);		goto out_tsk;	}	ret = ptrace_check_attach(child, request == PTRACE_KILL);	if (ret < 0)		goto out_tsk;	pt = ia64_task_regs(child);	sw = (struct switch_stack *) (child->thread.ksp + 16);	switch (request) {	      case PTRACE_PEEKTEXT:	      case PTRACE_PEEKDATA:		/* read word at location addr */		urbs_end = ia64_get_user_rbs_end(child, pt, NULL);		if (!(child->thread.flags & IA64_THREAD_KRBS_SYNCED))			threads_sync_user_rbs(child, urbs_end, 0);		ret = ia64_peek(child, sw, urbs_end, addr, &data);		if (ret == 0) {			ret = data;			regs->r8 = 0;	/* ensure "ret" is not mistaken as an error code */		}		goto out_tsk;	      case PTRACE_POKETEXT:	      case PTRACE_POKEDATA:		/* write the word at location addr */		urbs_end = ia64_get_user_rbs_end(child, pt, NULL);		if (!(child->thread.flags & IA64_THREAD_KRBS_SYNCED))			threads_sync_user_rbs(child, urbs_end, 1);		ret = ia64_poke(child, sw, urbs_end, addr, data);		goto out_tsk;	      case PTRACE_PEEKUSR:		/* read the word at addr in the USER area */		if (access_uarea(child, addr, &data, 0) < 0) {			ret = -EIO;			goto out_tsk;		}		ret = data;		regs->r8 = 0;	/* ensure "ret" is not mistaken as an error code */		goto out_tsk;	      case PTRACE_POKEUSR:	      /* write the word at addr in the USER area */		if (access_uarea(child, addr, &data, 1) < 0) {			ret = -EIO;			goto out_tsk;		}		ret = 0;		goto out_tsk;	      case PTRACE_GETSIGINFO:		ret = -EIO;		if (!access_ok(VERIFY_WRITE, data, sizeof (siginfo_t)) || !child->thread.siginfo)			goto out_tsk;		ret = copy_siginfo_to_user((siginfo_t *) data, child->thread.siginfo);		goto out_tsk;	      case PTRACE_SETSIGINFO:		ret = -EIO;		if (!access_ok(VERIFY_READ, data, sizeof (siginfo_t))		    || child->thread.siginfo == 0)			goto out_tsk;		ret = copy_siginfo_from_user(child->thread.siginfo, (siginfo_t *) data);		goto out_tsk;	      case PTRACE_SYSCALL:	/* continue and stop at next (return from) syscall */	      case PTRACE_CONT:		/* restart after signal. */		ret = -EIO;		if (data > _NSIG)			goto out_tsk;		if (request == PTRACE_SYSCALL)			child->ptrace |= PT_TRACESYS;		else			child->ptrace &= ~PT_TRACESYS;		child->exit_code = data;		/* make sure the single step/taken-branch trap bits are not set: */		ia64_psr(pt)->ss = 0;		ia64_psr(pt)->tb = 0;		/* Turn off flag indicating that the KRBS is sync'd with child's VM: */		child->thread.flags &= ~IA64_THREAD_KRBS_SYNCED;		wake_up_process(child);		ret = 0;		goto out_tsk;	      case PTRACE_KILL:		/*		 * Make the child exit.  Best I can do is send it a		 * sigkill.  Perhaps it should be put in the status		 * that it wants to exit.		 */		if (child->state == TASK_ZOMBIE)		/* already dead */			goto out_tsk;		child->exit_code = SIGKILL;		/* make sure the single step/take-branch tra bits are not set: */		ia64_psr(pt)->ss = 0;		ia64_psr(pt)->tb = 0;		/* Turn off flag indicating that the KRBS is sync'd with child's VM: */		child->thread.flags &= ~IA64_THREAD_KRBS_SYNCED;		wake_up_process(child);		ret = 0;		goto out_tsk;	      case PTRACE_SINGLESTEP:		/* let child execute for one instruction */	      case PTRACE_SINGLEBLOCK:		ret = -EIO;		if (data > _NSIG)			goto out_tsk;		child->ptrace &= ~PT_TRACESYS;		if (request == PTRACE_SINGLESTEP) {			ia64_psr(pt)->ss = 1;		} else {			ia64_psr(pt)->tb = 1;		}		child->exit_code = data;		/* Turn off flag indicating that the KRBS is sync'd with child's VM: */		child->thread.flags &= ~IA64_THREAD_KRBS_SYNCED;		/* give it a chance to run. */		wake_up_process(child);		ret = 0;		goto out_tsk;	      case PTRACE_DETACH:		/* detach a process that was attached. */		ret = ptrace_detach(child, data);		goto out_tsk;	      default:		ret = -EIO;		goto out_tsk;	}  out_tsk:	free_task_struct(child);  out:	unlock_kernel();	return ret;}voidsyscall_trace (void){	if ((current->ptrace & (PT_PTRACED|PT_TRACESYS)) != (PT_PTRACED|PT_TRACESYS))		return;	current->exit_code = SIGTRAP;	set_current_state(TASK_STOPPED);	notify_parent(current, SIGCHLD);	schedule();	/*	 * This isn't the same as continuing with a signal, but it	 * will do for normal use.  strace only continues with a	 * signal if the stopping signal is not SIGTRAP.  -brl	 */	if (current->exit_code) {		send_sig(current->exit_code, current, 1);		current->exit_code = 0;	}}

⌨️ 快捷键说明

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