Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 1 | #ifndef _TRACE_SYSCALL_H |
| 2 | #define _TRACE_SYSCALL_H |
| 3 | |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 4 | #include <linux/tracepoint.h> |
Jason Baron | fb34a08 | 2009-08-10 16:52:47 -0400 | [diff] [blame] | 5 | #include <linux/unistd.h> |
| 6 | #include <linux/ftrace_event.h> |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 7 | |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 8 | #include <asm/ptrace.h> |
| 9 | |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 10 | |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 11 | /* |
| 12 | * A syscall entry in the ftrace syscalls array. |
| 13 | * |
| 14 | * @name: name of the syscall |
Lai Jiangshan | c252f65 | 2009-12-01 16:23:47 +0800 | [diff] [blame] | 15 | * @syscall_nr: number of the syscall |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 16 | * @nb_args: number of parameters it takes |
| 17 | * @types: list of types as strings |
| 18 | * @args: list of args as strings (args[i] matches types[i]) |
Li Zefan | 540b7b8 | 2009-08-19 15:54:51 +0800 | [diff] [blame] | 19 | * @enter_event: associated syscall_enter trace event |
| 20 | * @exit_event: associated syscall_exit trace event |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 21 | */ |
| 22 | struct syscall_metadata { |
| 23 | const char *name; |
Lai Jiangshan | c252f65 | 2009-12-01 16:23:47 +0800 | [diff] [blame] | 24 | int syscall_nr; |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 25 | int nb_args; |
| 26 | const char **types; |
| 27 | const char **args; |
Steven Rostedt | 2e33af0 | 2010-04-22 10:35:55 -0400 | [diff] [blame] | 28 | struct list_head enter_fields; |
Li Zefan | 540b7b8 | 2009-08-19 15:54:51 +0800 | [diff] [blame] | 29 | |
| 30 | struct ftrace_event_call *enter_event; |
| 31 | struct ftrace_event_call *exit_event; |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | #ifdef CONFIG_FTRACE_SYSCALLS |
Frederic Weisbecker | c44fc77 | 2009-09-19 06:50:42 +0200 | [diff] [blame] | 35 | extern unsigned long arch_syscall_addr(int nr); |
Lai Jiangshan | a1301da | 2009-12-01 16:23:55 +0800 | [diff] [blame] | 36 | extern int init_syscall_trace(struct ftrace_event_call *call); |
Masami Hiramatsu | bd1a5c8 | 2009-08-13 16:34:53 -0400 | [diff] [blame] | 37 | |
Masami Hiramatsu | bd1a5c8 | 2009-08-13 16:34:53 -0400 | [diff] [blame] | 38 | extern int reg_event_syscall_enter(struct ftrace_event_call *call); |
| 39 | extern void unreg_event_syscall_enter(struct ftrace_event_call *call); |
| 40 | extern int reg_event_syscall_exit(struct ftrace_event_call *call); |
| 41 | extern void unreg_event_syscall_exit(struct ftrace_event_call *call); |
| 42 | extern int |
| 43 | ftrace_format_syscall(struct ftrace_event_call *call, struct trace_seq *s); |
Steven Rostedt | a9a5776 | 2010-04-22 18:46:14 -0400 | [diff] [blame] | 44 | enum print_line_t print_syscall_enter(struct trace_iterator *iter, int flags, |
| 45 | struct trace_event *event); |
| 46 | enum print_line_t print_syscall_exit(struct trace_iterator *iter, int flags, |
| 47 | struct trace_event *event); |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 48 | #endif |
Li Zefan | 07b139c | 2009-12-21 14:27:35 +0800 | [diff] [blame] | 49 | |
| 50 | #ifdef CONFIG_PERF_EVENTS |
Frederic Weisbecker | 97d5a22 | 2010-03-05 05:35:37 +0100 | [diff] [blame] | 51 | int perf_sysenter_enable(struct ftrace_event_call *call); |
| 52 | void perf_sysenter_disable(struct ftrace_event_call *call); |
| 53 | int perf_sysexit_enable(struct ftrace_event_call *call); |
| 54 | void perf_sysexit_disable(struct ftrace_event_call *call); |
Jason Baron | f4b5ffc | 2009-08-10 16:53:02 -0400 | [diff] [blame] | 55 | #endif |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 56 | |
| 57 | #endif /* _TRACE_SYSCALL_H */ |