syscall.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 <asm/ptrace.h>
  7. /*
  8. * A syscall entry in the ftrace syscalls array.
  9. *
  10. * @name: name of the syscall
  11. * @syscall_nr: number of the syscall
  12. * @nb_args: number of parameters it takes
  13. * @types: list of types as strings
  14. * @args: list of args as strings (args[i] matches types[i])
  15. * @enter_event: associated syscall_enter trace event
  16. * @exit_event: associated syscall_exit trace event
  17. */
  18. struct syscall_metadata {
  19. const char *name;
  20. int syscall_nr;
  21. int nb_args;
  22. const char **types;
  23. const char **args;
  24. struct list_head enter_fields;
  25. struct ftrace_event_call *enter_event;
  26. struct ftrace_event_call *exit_event;
  27. };
  28. #ifdef CONFIG_FTRACE_SYSCALLS
  29. extern unsigned long arch_syscall_addr(int nr);
  30. extern int init_syscall_trace(struct ftrace_event_call *call);
  31. extern int reg_event_syscall_enter(struct ftrace_event_call *call);
  32. extern void unreg_event_syscall_enter(struct ftrace_event_call *call);
  33. extern int reg_event_syscall_exit(struct ftrace_event_call *call);
  34. extern void unreg_event_syscall_exit(struct ftrace_event_call *call);
  35. enum print_line_t print_syscall_enter(struct trace_iterator *iter, int flags,
  36. struct trace_event *event);
  37. enum print_line_t print_syscall_exit(struct trace_iterator *iter, int flags,
  38. struct trace_event *event);
  39. #endif
  40. #ifdef CONFIG_PERF_EVENTS
  41. int perf_sysenter_enable(struct ftrace_event_call *call);
  42. void perf_sysenter_disable(struct ftrace_event_call *call);
  43. int perf_sysexit_enable(struct ftrace_event_call *call);
  44. void perf_sysexit_disable(struct ftrace_event_call *call);
  45. #endif
  46. #endif /* _TRACE_SYSCALL_H */