2009-04-08 22:40:59 +04:00
|
|
|
#ifndef _TRACE_SYSCALL_H
|
|
|
|
#define _TRACE_SYSCALL_H
|
|
|
|
|
2009-08-11 00:52:31 +04:00
|
|
|
#include <linux/tracepoint.h>
|
2009-08-11 00:52:47 +04:00
|
|
|
#include <linux/unistd.h>
|
2015-04-29 21:36:05 +03:00
|
|
|
#include <linux/trace_events.h>
|
2014-04-13 22:58:54 +04:00
|
|
|
#include <linux/thread_info.h>
|
2009-08-11 00:52:31 +04:00
|
|
|
|
2009-04-08 22:40:59 +04:00
|
|
|
#include <asm/ptrace.h>
|
|
|
|
|
2009-08-11 00:52:31 +04:00
|
|
|
|
2009-04-08 22:40:59 +04:00
|
|
|
/*
|
|
|
|
* A syscall entry in the ftrace syscalls array.
|
|
|
|
*
|
|
|
|
* @name: name of the syscall
|
2009-12-01 11:23:47 +03:00
|
|
|
* @syscall_nr: number of the syscall
|
2009-04-08 22:40:59 +04:00
|
|
|
* @nb_args: number of parameters it takes
|
|
|
|
* @types: list of types as strings
|
|
|
|
* @args: list of args as strings (args[i] matches types[i])
|
2013-06-29 09:08:05 +04:00
|
|
|
* @enter_fields: list of fields for syscall_enter trace event
|
2009-08-19 11:54:51 +04:00
|
|
|
* @enter_event: associated syscall_enter trace event
|
|
|
|
* @exit_event: associated syscall_exit trace event
|
2009-04-08 22:40:59 +04:00
|
|
|
*/
|
|
|
|
struct syscall_metadata {
|
|
|
|
const char *name;
|
2009-12-01 11:23:47 +03:00
|
|
|
int syscall_nr;
|
2009-04-08 22:40:59 +04:00
|
|
|
int nb_args;
|
|
|
|
const char **types;
|
|
|
|
const char **args;
|
2010-04-22 18:35:55 +04:00
|
|
|
struct list_head enter_fields;
|
2009-08-19 11:54:51 +04:00
|
|
|
|
2015-05-05 18:45:27 +03:00
|
|
|
struct trace_event_call *enter_event;
|
|
|
|
struct trace_event_call *exit_event;
|
2009-04-08 22:40:59 +04:00
|
|
|
};
|
|
|
|
|
2014-04-13 22:58:54 +04:00
|
|
|
#if defined(CONFIG_TRACEPOINTS) && defined(CONFIG_HAVE_SYSCALL_TRACEPOINTS)
|
|
|
|
static inline void syscall_tracepoint_update(struct task_struct *p)
|
|
|
|
{
|
|
|
|
if (test_thread_flag(TIF_SYSCALL_TRACEPOINT))
|
|
|
|
set_tsk_thread_flag(p, TIF_SYSCALL_TRACEPOINT);
|
|
|
|
else
|
|
|
|
clear_tsk_thread_flag(p, TIF_SYSCALL_TRACEPOINT);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline void syscall_tracepoint_update(struct task_struct *p)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-04-08 22:40:59 +04:00
|
|
|
#endif /* _TRACE_SYSCALL_H */
|