2009-04-08 12:40:59 -06:00
|
|
|
#ifndef _TRACE_SYSCALL_H
|
|
|
|
#define _TRACE_SYSCALL_H
|
|
|
|
|
2009-08-10 14:52:31 -06:00
|
|
|
#include <linux/tracepoint.h>
|
2009-08-10 14:52:47 -06:00
|
|
|
#include <linux/unistd.h>
|
2015-04-29 12:36:05 -06:00
|
|
|
#include <linux/trace_events.h>
|
2014-04-13 12:58:54 -06:00
|
|
|
#include <linux/thread_info.h>
|
2009-08-10 14:52:31 -06:00
|
|
|
|
2009-04-08 12:40:59 -06:00
|
|
|
#include <asm/ptrace.h>
|
|
|
|
|
2009-08-10 14:52:31 -06:00
|
|
|
|
2009-04-08 12:40:59 -06:00
|
|
|
/*
|
|
|
|
* A syscall entry in the ftrace syscalls array.
|
|
|
|
*
|
|
|
|
* @name: name of the syscall
|
2009-12-01 01:23:47 -07:00
|
|
|
* @syscall_nr: number of the syscall
|
2009-04-08 12:40:59 -06: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-28 23:08:05 -06:00
|
|
|
* @enter_fields: list of fields for syscall_enter trace event
|
2009-08-19 01:54:51 -06:00
|
|
|
* @enter_event: associated syscall_enter trace event
|
|
|
|
* @exit_event: associated syscall_exit trace event
|
2009-04-08 12:40:59 -06:00
|
|
|
*/
|
|
|
|
struct syscall_metadata {
|
|
|
|
const char *name;
|
2009-12-01 01:23:47 -07:00
|
|
|
int syscall_nr;
|
2009-04-08 12:40:59 -06:00
|
|
|
int nb_args;
|
|
|
|
const char **types;
|
|
|
|
const char **args;
|
2010-04-22 08:35:55 -06:00
|
|
|
struct list_head enter_fields;
|
2009-08-19 01:54:51 -06:00
|
|
|
|
2015-05-05 09:45:27 -06:00
|
|
|
struct trace_event_call *enter_event;
|
|
|
|
struct trace_event_call *exit_event;
|
2009-04-08 12:40:59 -06:00
|
|
|
};
|
|
|
|
|
2014-04-13 12:58:54 -06: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 12:40:59 -06:00
|
|
|
#endif /* _TRACE_SYSCALL_H */
|