signal.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #undef TRACE_SYSTEM
  2. #define TRACE_SYSTEM signal
  3. #if !defined(_TRACE_SIGNAL_H) || defined(TRACE_HEADER_MULTI_READ)
  4. #define _TRACE_SIGNAL_H
  5. #include <linux/signal.h>
  6. #include <linux/sched.h>
  7. #include <linux/tracepoint.h>
  8. #define TP_STORE_SIGINFO(__entry, info) \
  9. do { \
  10. if (info == SEND_SIG_NOINFO) { \
  11. __entry->errno = 0; \
  12. __entry->code = SI_USER; \
  13. } else if (info == SEND_SIG_PRIV) { \
  14. __entry->errno = 0; \
  15. __entry->code = SI_KERNEL; \
  16. } else { \
  17. __entry->errno = info->si_errno; \
  18. __entry->code = info->si_code; \
  19. } \
  20. } while (0)
  21. /**
  22. * signal_generate - called when a signal is generated
  23. * @sig: signal number
  24. * @info: pointer to struct siginfo
  25. * @task: pointer to struct task_struct
  26. *
  27. * Current process sends a 'sig' signal to 'task' process with
  28. * 'info' siginfo. If 'info' is SEND_SIG_NOINFO or SEND_SIG_PRIV,
  29. * 'info' is not a pointer and you can't access its field. Instead,
  30. * SEND_SIG_NOINFO means that si_code is SI_USER, and SEND_SIG_PRIV
  31. * means that si_code is SI_KERNEL.
  32. */
  33. TRACE_EVENT(signal_generate,
  34. TP_PROTO(int sig, struct siginfo *info, struct task_struct *task),
  35. TP_ARGS(sig, info, task),
  36. TP_STRUCT__entry(
  37. __field( int, sig )
  38. __field( int, errno )
  39. __field( int, code )
  40. __array( char, comm, TASK_COMM_LEN )
  41. __field( pid_t, pid )
  42. ),
  43. TP_fast_assign(
  44. __entry->sig = sig;
  45. TP_STORE_SIGINFO(__entry, info);
  46. memcpy(__entry->comm, task->comm, TASK_COMM_LEN);
  47. __entry->pid = task->pid;
  48. ),
  49. TP_printk("sig=%d errno=%d code=%d comm=%s pid=%d",
  50. __entry->sig, __entry->errno, __entry->code,
  51. __entry->comm, __entry->pid)
  52. );
  53. #endif /* _TRACE_SIGNAL_H */
  54. /* This part must be outside protection */
  55. #include <trace/define_trace.h>