syscall.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #ifndef _TRACE_SYSCALL_H
  2. #define _TRACE_SYSCALL_H
  3. #include <linux/tracepoint.h>
  4. #include <linux/unistd.h>
  5. #include <linux/ftrace_event.h>
  6. #include <linux/thread_info.h>
  7. #include <asm/ptrace.h>
  8. /*
  9. * A syscall entry in the ftrace syscalls array.
  10. *
  11. * @name: name of the syscall
  12. * @syscall_nr: number of the syscall
  13. * @nb_args: number of parameters it takes
  14. * @types: list of types as strings
  15. * @args: list of args as strings (args[i] matches types[i])
  16. * @enter_event: associated syscall_enter trace event
  17. * @exit_event: associated syscall_exit trace event
  18. */
  19. struct syscall_metadata {
  20. const char *name;
  21. int syscall_nr;
  22. int nb_args;
  23. const char **types;
  24. const char **args;
  25. struct list_head enter_fields;
  26. struct ftrace_event_call *enter_event;
  27. struct ftrace_event_call *exit_event;
  28. };
  29. #ifdef CONFIG_FTRACE_SYSCALLS
  30. extern unsigned long arch_syscall_addr(int nr);
  31. extern int init_syscall_trace(struct ftrace_event_call *call);
  32. extern int reg_event_syscall_enter(struct ftrace_event_call *call);
  33. extern void unreg_event_syscall_enter(struct ftrace_event_call *call);
  34. extern int reg_event_syscall_exit(struct ftrace_event_call *call);
  35. extern void unreg_event_syscall_exit(struct ftrace_event_call *call);
  36. extern int
  37. ftrace_format_syscall(struct ftrace_event_call *call, struct trace_seq *s);
  38. enum print_line_t print_syscall_enter(struct trace_iterator *iter, int flags,
  39. struct trace_event *event);
  40. enum print_line_t print_syscall_exit(struct trace_iterator *iter, int flags,
  41. struct trace_event *event);
  42. #endif
  43. #ifdef CONFIG_PERF_EVENTS
  44. int perf_sysenter_enable(struct ftrace_event_call *call);
  45. void perf_sysenter_disable(struct ftrace_event_call *call);
  46. int perf_sysexit_enable(struct ftrace_event_call *call);
  47. void perf_sysexit_disable(struct ftrace_event_call *call);
  48. #endif
  49. #if defined(CONFIG_TRACEPOINTS) && defined(CONFIG_HAVE_SYSCALL_TRACEPOINTS)
  50. static inline void syscall_tracepoint_update(struct task_struct *p)
  51. {
  52. if (test_thread_flag(TIF_SYSCALL_TRACEPOINT))
  53. set_tsk_thread_flag(p, TIF_SYSCALL_TRACEPOINT);
  54. else
  55. clear_tsk_thread_flag(p, TIF_SYSCALL_TRACEPOINT);
  56. }
  57. #else
  58. static inline void syscall_tracepoint_update(struct task_struct *p)
  59. {
  60. }
  61. #endif
  62. #endif /* _TRACE_SYSCALL_H */