Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 158424
b: refs/heads/master
c: a871bd3
h: refs/heads/master
v: v3
  • Loading branch information
Jason Baron authored and Frederic Weisbecker committed Aug 11, 2009
1 parent e1355ed commit 409c8c7
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 63fbdab3157b72467013fe4dcf88c85e45280ef7
refs/heads/master: a871bd33a6c0bc86fb47cd02ea2650dd43d3d95f
7 changes: 5 additions & 2 deletions trunk/arch/x86/kernel/ptrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@

#include <trace/syscall.h>

DEFINE_TRACE(syscall_enter);
DEFINE_TRACE(syscall_exit);

#include "tls.h"

enum x86_regset {
Expand Down Expand Up @@ -1498,7 +1501,7 @@ asmregparm long syscall_trace_enter(struct pt_regs *regs)
ret = -1L;

if (unlikely(test_thread_flag(TIF_SYSCALL_FTRACE)))
ftrace_syscall_enter(regs);
trace_syscall_enter(regs, regs->orig_ax);

if (unlikely(current->audit_context)) {
if (IS_IA32)
Expand All @@ -1524,7 +1527,7 @@ asmregparm void syscall_trace_leave(struct pt_regs *regs)
audit_syscall_exit(AUDITSC_RESULT(regs->ax), regs->ax);

if (unlikely(test_thread_flag(TIF_SYSCALL_FTRACE)))
ftrace_syscall_exit(regs);
trace_syscall_exit(regs, regs->ax);

if (test_thread_flag(TIF_SYSCALL_TRACE))
tracehook_report_syscall_exit(regs, 0);
Expand Down
20 changes: 20 additions & 0 deletions trunk/include/trace/syscall.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,28 @@
#ifndef _TRACE_SYSCALL_H
#define _TRACE_SYSCALL_H

#include <linux/tracepoint.h>

#include <asm/ptrace.h>


extern void syscall_regfunc(void);
extern void syscall_unregfunc(void);

DECLARE_TRACE_WITH_CALLBACK(syscall_enter,
TP_PROTO(struct pt_regs *regs, long id),
TP_ARGS(regs, id),
syscall_regfunc,
syscall_unregfunc
);

DECLARE_TRACE_WITH_CALLBACK(syscall_exit,
TP_PROTO(struct pt_regs *regs, long ret),
TP_ARGS(regs, ret),
syscall_regfunc,
syscall_unregfunc
);

/*
* A syscall entry in the ftrace syscalls array.
*
Expand Down
38 changes: 38 additions & 0 deletions trunk/kernel/tracepoint.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <linux/tracepoint.h>
#include <linux/err.h>
#include <linux/slab.h>
#include <linux/sched.h>

extern struct tracepoint __start___tracepoints[];
extern struct tracepoint __stop___tracepoints[];
Expand Down Expand Up @@ -577,3 +578,40 @@ static int init_tracepoints(void)
__initcall(init_tracepoints);

#endif /* CONFIG_MODULES */

static DEFINE_MUTEX(regfunc_mutex);
static int sys_tracepoint_refcount;

void syscall_regfunc(void)
{
unsigned long flags;
struct task_struct *g, *t;

mutex_lock(&regfunc_mutex);
if (!sys_tracepoint_refcount) {
read_lock_irqsave(&tasklist_lock, flags);
do_each_thread(g, t) {
set_tsk_thread_flag(t, TIF_SYSCALL_FTRACE);
} while_each_thread(g, t);
read_unlock_irqrestore(&tasklist_lock, flags);
}
sys_tracepoint_refcount++;
mutex_unlock(&regfunc_mutex);
}

void syscall_unregfunc(void)
{
unsigned long flags;
struct task_struct *g, *t;

mutex_lock(&regfunc_mutex);
sys_tracepoint_refcount--;
if (!sys_tracepoint_refcount) {
read_lock_irqsave(&tasklist_lock, flags);
do_each_thread(g, t) {
clear_tsk_thread_flag(t, TIF_SYSCALL_FTRACE);
} while_each_thread(g, t);
read_unlock_irqrestore(&tasklist_lock, flags);
}
mutex_unlock(&regfunc_mutex);
}

0 comments on commit 409c8c7

Please sign in to comment.