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> |
Steven Rostedt (Red Hat) | af658dc | 2015-04-29 14:36:05 -0400 | [diff] [blame] | 6 | #include <linux/trace_events.h> |
Oleg Nesterov | 4af4206 | 2014-04-13 20:58:54 +0200 | [diff] [blame] | 7 | #include <linux/thread_info.h> |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 8 | |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 9 | #include <asm/ptrace.h> |
| 10 | |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 11 | |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 12 | /* |
| 13 | * A syscall entry in the ftrace syscalls array. |
| 14 | * |
| 15 | * @name: name of the syscall |
Lai Jiangshan | c252f65 | 2009-12-01 16:23:47 +0800 | [diff] [blame] | 16 | * @syscall_nr: number of the syscall |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 17 | * @nb_args: number of parameters it takes |
| 18 | * @types: list of types as strings |
| 19 | * @args: list of args as strings (args[i] matches types[i]) |
Tom Zanussi | 44a6a4e | 2013-06-29 00:08:05 -0500 | [diff] [blame] | 20 | * @enter_fields: list of fields for syscall_enter trace event |
Li Zefan | 540b7b8 | 2009-08-19 15:54:51 +0800 | [diff] [blame] | 21 | * @enter_event: associated syscall_enter trace event |
| 22 | * @exit_event: associated syscall_exit trace event |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 23 | */ |
| 24 | struct syscall_metadata { |
| 25 | const char *name; |
Lai Jiangshan | c252f65 | 2009-12-01 16:23:47 +0800 | [diff] [blame] | 26 | int syscall_nr; |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 27 | int nb_args; |
| 28 | const char **types; |
| 29 | const char **args; |
Steven Rostedt | 2e33af0 | 2010-04-22 10:35:55 -0400 | [diff] [blame] | 30 | struct list_head enter_fields; |
Li Zefan | 540b7b8 | 2009-08-19 15:54:51 +0800 | [diff] [blame] | 31 | |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 32 | struct trace_event_call *enter_event; |
| 33 | struct trace_event_call *exit_event; |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 34 | }; |
| 35 | |
Oleg Nesterov | 4af4206 | 2014-04-13 20:58:54 +0200 | [diff] [blame] | 36 | #if defined(CONFIG_TRACEPOINTS) && defined(CONFIG_HAVE_SYSCALL_TRACEPOINTS) |
| 37 | static inline void syscall_tracepoint_update(struct task_struct *p) |
| 38 | { |
| 39 | if (test_thread_flag(TIF_SYSCALL_TRACEPOINT)) |
| 40 | set_tsk_thread_flag(p, TIF_SYSCALL_TRACEPOINT); |
| 41 | else |
| 42 | clear_tsk_thread_flag(p, TIF_SYSCALL_TRACEPOINT); |
| 43 | } |
| 44 | #else |
| 45 | static inline void syscall_tracepoint_update(struct task_struct *p) |
| 46 | { |
| 47 | } |
| 48 | #endif |
| 49 | |
Frederic Weisbecker | 47788c5 | 2009-04-08 20:40:59 +0200 | [diff] [blame] | 50 | #endif /* _TRACE_SYSCALL_H */ |