[IA64] utrace use generic trace hook
Make IA64 use generic trace hook in some paths. Signed-off-by: Shaohua Li <shaohua.li@intel.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
This commit is contained in:
parent
cfb361f13c
commit
f14488ccfe
7 changed files with 41 additions and 55 deletions
|
@ -108,6 +108,11 @@ GLOBAL_ENTRY(ia32_trace_syscall)
|
||||||
;;
|
;;
|
||||||
st8 [r2]=r3 // initialize return code to -ENOSYS
|
st8 [r2]=r3 // initialize return code to -ENOSYS
|
||||||
br.call.sptk.few rp=syscall_trace_enter // give parent a chance to catch syscall args
|
br.call.sptk.few rp=syscall_trace_enter // give parent a chance to catch syscall args
|
||||||
|
cmp.lt p6,p0=r8,r0 // check tracehook
|
||||||
|
adds r2=IA64_PT_REGS_R8_OFFSET+16,sp // r2 = &pt_regs.r8
|
||||||
|
;;
|
||||||
|
(p6) st8.spill [r2]=r8 // store return value in slot for r8
|
||||||
|
(p6) br.spnt.few .ret4
|
||||||
.ret2: // Need to reload arguments (they may be changed by the tracing process)
|
.ret2: // Need to reload arguments (they may be changed by the tracing process)
|
||||||
adds r2=IA64_PT_REGS_R1_OFFSET+16,sp // r2 = &pt_regs.r1
|
adds r2=IA64_PT_REGS_R1_OFFSET+16,sp // r2 = &pt_regs.r1
|
||||||
adds r3=IA64_PT_REGS_R13_OFFSET+16,sp // r3 = &pt_regs.r13
|
adds r3=IA64_PT_REGS_R13_OFFSET+16,sp // r3 = &pt_regs.r13
|
||||||
|
|
|
@ -87,9 +87,6 @@ struct thread_info {
|
||||||
#define alloc_task_struct() ((struct task_struct *)__get_free_pages(GFP_KERNEL | __GFP_COMP, KERNEL_STACK_SIZE_ORDER))
|
#define alloc_task_struct() ((struct task_struct *)__get_free_pages(GFP_KERNEL | __GFP_COMP, KERNEL_STACK_SIZE_ORDER))
|
||||||
#define free_task_struct(tsk) free_pages((unsigned long) (tsk), KERNEL_STACK_SIZE_ORDER)
|
#define free_task_struct(tsk) free_pages((unsigned long) (tsk), KERNEL_STACK_SIZE_ORDER)
|
||||||
|
|
||||||
#define tsk_set_notify_resume(tsk) \
|
|
||||||
set_ti_thread_flag(task_thread_info(tsk), TIF_NOTIFY_RESUME)
|
|
||||||
extern void tsk_clear_notify_resume(struct task_struct *tsk);
|
|
||||||
#endif /* !__ASSEMBLY */
|
#endif /* !__ASSEMBLY */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -534,6 +534,11 @@ GLOBAL_ENTRY(ia64_trace_syscall)
|
||||||
stf.spill [r16]=f10
|
stf.spill [r16]=f10
|
||||||
stf.spill [r17]=f11
|
stf.spill [r17]=f11
|
||||||
br.call.sptk.many rp=syscall_trace_enter // give parent a chance to catch syscall args
|
br.call.sptk.many rp=syscall_trace_enter // give parent a chance to catch syscall args
|
||||||
|
cmp.lt p6,p0=r8,r0 // check tracehook
|
||||||
|
adds r2=PT(R8)+16,sp // r2 = &pt_regs.r8
|
||||||
|
adds r3=PT(R10)+16,sp // r3 = &pt_regs.r10
|
||||||
|
mov r10=0
|
||||||
|
(p6) br.cond.sptk strace_error // syscall failed ->
|
||||||
adds r16=PT(F6)+16,sp
|
adds r16=PT(F6)+16,sp
|
||||||
adds r17=PT(F7)+16,sp
|
adds r17=PT(F7)+16,sp
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -40,6 +40,7 @@
|
||||||
#include <linux/capability.h>
|
#include <linux/capability.h>
|
||||||
#include <linux/rcupdate.h>
|
#include <linux/rcupdate.h>
|
||||||
#include <linux/completion.h>
|
#include <linux/completion.h>
|
||||||
|
#include <linux/tracehook.h>
|
||||||
|
|
||||||
#include <asm/errno.h>
|
#include <asm/errno.h>
|
||||||
#include <asm/intrinsics.h>
|
#include <asm/intrinsics.h>
|
||||||
|
@ -3684,7 +3685,7 @@ pfm_restart(pfm_context_t *ctx, void *arg, int count, struct pt_regs *regs)
|
||||||
|
|
||||||
PFM_SET_WORK_PENDING(task, 1);
|
PFM_SET_WORK_PENDING(task, 1);
|
||||||
|
|
||||||
tsk_set_notify_resume(task);
|
set_notify_resume(task);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* XXX: send reschedule if task runs on another CPU
|
* XXX: send reschedule if task runs on another CPU
|
||||||
|
@ -5044,8 +5045,6 @@ pfm_handle_work(void)
|
||||||
|
|
||||||
PFM_SET_WORK_PENDING(current, 0);
|
PFM_SET_WORK_PENDING(current, 0);
|
||||||
|
|
||||||
tsk_clear_notify_resume(current);
|
|
||||||
|
|
||||||
regs = task_pt_regs(current);
|
regs = task_pt_regs(current);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -5414,7 +5413,7 @@ pfm_overflow_handler(struct task_struct *task, pfm_context_t *ctx, u64 pmc0, str
|
||||||
* when coming from ctxsw, current still points to the
|
* when coming from ctxsw, current still points to the
|
||||||
* previous task, therefore we must work with task and not current.
|
* previous task, therefore we must work with task and not current.
|
||||||
*/
|
*/
|
||||||
tsk_set_notify_resume(task);
|
set_notify_resume(task);
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* defer until state is changed (shorten spin window). the context is locked
|
* defer until state is changed (shorten spin window). the context is locked
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/kdebug.h>
|
#include <linux/kdebug.h>
|
||||||
#include <linux/utsname.h>
|
#include <linux/utsname.h>
|
||||||
|
#include <linux/tracehook.h>
|
||||||
|
|
||||||
#include <asm/cpu.h>
|
#include <asm/cpu.h>
|
||||||
#include <asm/delay.h>
|
#include <asm/delay.h>
|
||||||
|
@ -160,21 +161,6 @@ show_regs (struct pt_regs *regs)
|
||||||
show_stack(NULL, NULL);
|
show_stack(NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void tsk_clear_notify_resume(struct task_struct *tsk)
|
|
||||||
{
|
|
||||||
#ifdef CONFIG_PERFMON
|
|
||||||
if (tsk->thread.pfm_needs_checking)
|
|
||||||
return;
|
|
||||||
#endif
|
|
||||||
if (test_ti_thread_flag(task_thread_info(tsk), TIF_RESTORE_RSE))
|
|
||||||
return;
|
|
||||||
clear_ti_thread_flag(task_thread_info(tsk), TIF_NOTIFY_RESUME);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* do_notify_resume_user():
|
|
||||||
* Called from notify_resume_user at entry.S, with interrupts disabled.
|
|
||||||
*/
|
|
||||||
void
|
void
|
||||||
do_notify_resume_user(sigset_t *unused, struct sigscratch *scr, long in_syscall)
|
do_notify_resume_user(sigset_t *unused, struct sigscratch *scr, long in_syscall)
|
||||||
{
|
{
|
||||||
|
@ -203,6 +189,11 @@ do_notify_resume_user(sigset_t *unused, struct sigscratch *scr, long in_syscall)
|
||||||
ia64_do_signal(scr, in_syscall);
|
ia64_do_signal(scr, in_syscall);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (test_thread_flag(TIF_NOTIFY_RESUME)) {
|
||||||
|
clear_thread_flag(TIF_NOTIFY_RESUME);
|
||||||
|
tracehook_notify_resume(&scr->pt);
|
||||||
|
}
|
||||||
|
|
||||||
/* copy user rbs to kernel rbs */
|
/* copy user rbs to kernel rbs */
|
||||||
if (unlikely(test_thread_flag(TIF_RESTORE_RSE))) {
|
if (unlikely(test_thread_flag(TIF_RESTORE_RSE))) {
|
||||||
local_irq_enable(); /* force interrupt enable */
|
local_irq_enable(); /* force interrupt enable */
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
#include <linux/signal.h>
|
#include <linux/signal.h>
|
||||||
#include <linux/regset.h>
|
#include <linux/regset.h>
|
||||||
#include <linux/elf.h>
|
#include <linux/elf.h>
|
||||||
|
#include <linux/tracehook.h>
|
||||||
|
|
||||||
#include <asm/pgtable.h>
|
#include <asm/pgtable.h>
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
|
@ -603,7 +604,7 @@ void ia64_ptrace_stop(void)
|
||||||
{
|
{
|
||||||
if (test_and_set_tsk_thread_flag(current, TIF_RESTORE_RSE))
|
if (test_and_set_tsk_thread_flag(current, TIF_RESTORE_RSE))
|
||||||
return;
|
return;
|
||||||
tsk_set_notify_resume(current);
|
set_notify_resume(current);
|
||||||
unw_init_running(do_sync_rbs, ia64_sync_user_rbs);
|
unw_init_running(do_sync_rbs, ia64_sync_user_rbs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -613,7 +614,6 @@ void ia64_ptrace_stop(void)
|
||||||
void ia64_sync_krbs(void)
|
void ia64_sync_krbs(void)
|
||||||
{
|
{
|
||||||
clear_tsk_thread_flag(current, TIF_RESTORE_RSE);
|
clear_tsk_thread_flag(current, TIF_RESTORE_RSE);
|
||||||
tsk_clear_notify_resume(current);
|
|
||||||
|
|
||||||
unw_init_running(do_sync_rbs, ia64_sync_kernel_rbs);
|
unw_init_running(do_sync_rbs, ia64_sync_kernel_rbs);
|
||||||
}
|
}
|
||||||
|
@ -644,7 +644,7 @@ ptrace_attach_sync_user_rbs (struct task_struct *child)
|
||||||
spin_lock_irq(&child->sighand->siglock);
|
spin_lock_irq(&child->sighand->siglock);
|
||||||
if (child->state == TASK_STOPPED &&
|
if (child->state == TASK_STOPPED &&
|
||||||
!test_and_set_tsk_thread_flag(child, TIF_RESTORE_RSE)) {
|
!test_and_set_tsk_thread_flag(child, TIF_RESTORE_RSE)) {
|
||||||
tsk_set_notify_resume(child);
|
set_notify_resume(child);
|
||||||
|
|
||||||
child->state = TASK_TRACED;
|
child->state = TASK_TRACED;
|
||||||
stopped = 1;
|
stopped = 1;
|
||||||
|
@ -1232,37 +1232,16 @@ arch_ptrace (struct task_struct *child, long request, long addr, long data)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void
|
|
||||||
syscall_trace (void)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* The 0x80 provides a way for the tracing parent to
|
|
||||||
* distinguish between a syscall stop and SIGTRAP delivery.
|
|
||||||
*/
|
|
||||||
ptrace_notify(SIGTRAP
|
|
||||||
| ((current->ptrace & PT_TRACESYSGOOD) ? 0x80 : 0));
|
|
||||||
|
|
||||||
/*
|
|
||||||
* 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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* "asmlinkage" so the input arguments are preserved... */
|
/* "asmlinkage" so the input arguments are preserved... */
|
||||||
|
|
||||||
asmlinkage void
|
asmlinkage long
|
||||||
syscall_trace_enter (long arg0, long arg1, long arg2, long arg3,
|
syscall_trace_enter (long arg0, long arg1, long arg2, long arg3,
|
||||||
long arg4, long arg5, long arg6, long arg7,
|
long arg4, long arg5, long arg6, long arg7,
|
||||||
struct pt_regs regs)
|
struct pt_regs regs)
|
||||||
{
|
{
|
||||||
if (test_thread_flag(TIF_SYSCALL_TRACE)
|
if (test_thread_flag(TIF_SYSCALL_TRACE))
|
||||||
&& (current->ptrace & PT_PTRACED))
|
if (tracehook_report_syscall_entry(®s))
|
||||||
syscall_trace();
|
return -ENOSYS;
|
||||||
|
|
||||||
/* copy user rbs to kernel rbs */
|
/* copy user rbs to kernel rbs */
|
||||||
if (test_thread_flag(TIF_RESTORE_RSE))
|
if (test_thread_flag(TIF_RESTORE_RSE))
|
||||||
|
@ -1283,6 +1262,7 @@ syscall_trace_enter (long arg0, long arg1, long arg2, long arg3,
|
||||||
audit_syscall_entry(arch, syscall, arg0, arg1, arg2, arg3);
|
audit_syscall_entry(arch, syscall, arg0, arg1, arg2, arg3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* "asmlinkage" so the input arguments are preserved... */
|
/* "asmlinkage" so the input arguments are preserved... */
|
||||||
|
@ -1292,6 +1272,8 @@ syscall_trace_leave (long arg0, long arg1, long arg2, long arg3,
|
||||||
long arg4, long arg5, long arg6, long arg7,
|
long arg4, long arg5, long arg6, long arg7,
|
||||||
struct pt_regs regs)
|
struct pt_regs regs)
|
||||||
{
|
{
|
||||||
|
int step;
|
||||||
|
|
||||||
if (unlikely(current->audit_context)) {
|
if (unlikely(current->audit_context)) {
|
||||||
int success = AUDITSC_RESULT(regs.r10);
|
int success = AUDITSC_RESULT(regs.r10);
|
||||||
long result = regs.r8;
|
long result = regs.r8;
|
||||||
|
@ -1301,10 +1283,9 @@ syscall_trace_leave (long arg0, long arg1, long arg2, long arg3,
|
||||||
audit_syscall_exit(success, result);
|
audit_syscall_exit(success, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((test_thread_flag(TIF_SYSCALL_TRACE)
|
step = test_thread_flag(TIF_SINGLESTEP);
|
||||||
|| test_thread_flag(TIF_SINGLESTEP))
|
if (step || test_thread_flag(TIF_SYSCALL_TRACE))
|
||||||
&& (current->ptrace & PT_PTRACED))
|
tracehook_report_syscall_exit(®s, step);
|
||||||
syscall_trace();
|
|
||||||
|
|
||||||
/* copy user rbs to kernel rbs */
|
/* copy user rbs to kernel rbs */
|
||||||
if (test_thread_flag(TIF_RESTORE_RSE))
|
if (test_thread_flag(TIF_RESTORE_RSE))
|
||||||
|
@ -1940,7 +1921,7 @@ gpregs_writeback(struct task_struct *target,
|
||||||
{
|
{
|
||||||
if (test_and_set_tsk_thread_flag(target, TIF_RESTORE_RSE))
|
if (test_and_set_tsk_thread_flag(target, TIF_RESTORE_RSE))
|
||||||
return 0;
|
return 0;
|
||||||
tsk_set_notify_resume(target);
|
set_notify_resume(target);
|
||||||
return do_regset_call(do_gpregs_writeback, target, regset, 0, 0,
|
return do_regset_call(do_gpregs_writeback, target, regset, 0, 0,
|
||||||
NULL, NULL);
|
NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/mm.h>
|
#include <linux/mm.h>
|
||||||
#include <linux/ptrace.h>
|
#include <linux/ptrace.h>
|
||||||
|
#include <linux/tracehook.h>
|
||||||
#include <linux/sched.h>
|
#include <linux/sched.h>
|
||||||
#include <linux/signal.h>
|
#include <linux/signal.h>
|
||||||
#include <linux/smp.h>
|
#include <linux/smp.h>
|
||||||
|
@ -439,6 +440,13 @@ handle_signal (unsigned long sig, struct k_sigaction *ka, siginfo_t *info, sigse
|
||||||
sigaddset(¤t->blocked, sig);
|
sigaddset(¤t->blocked, sig);
|
||||||
recalc_sigpending();
|
recalc_sigpending();
|
||||||
spin_unlock_irq(¤t->sighand->siglock);
|
spin_unlock_irq(¤t->sighand->siglock);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Let tracing know that we've done the handler setup.
|
||||||
|
*/
|
||||||
|
tracehook_signal_handler(sig, info, ka, &scr->pt,
|
||||||
|
test_thread_flag(TIF_SINGLESTEP));
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue