signal.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. /**
  54. * signal_deliver - called when a signal is delivered
  55. * @sig: signal number
  56. * @info: pointer to struct siginfo
  57. * @ka: pointer to struct k_sigaction
  58. *
  59. * A 'sig' signal is delivered to current process with 'info' siginfo,
  60. * and it will be handled by 'ka'. ka->sa.sa_handler can be SIG_IGN or
  61. * SIG_DFL.
  62. * Note that some signals reported by signal_generate tracepoint can be
  63. * lost, ignored or modified (by debugger) before hitting this tracepoint.
  64. * This means, this can show which signals are actually delivered, but
  65. * matching generated signals and delivered signals may not be correct.
  66. */
  67. TRACE_EVENT(signal_deliver,
  68. TP_PROTO(int sig, struct siginfo *info, struct k_sigaction *ka),
  69. TP_ARGS(sig, info, ka),
  70. TP_STRUCT__entry(
  71. __field( int, sig )
  72. __field( int, errno )
  73. __field( int, code )
  74. __field( unsigned long, sa_handler )
  75. __field( unsigned long, sa_flags )
  76. ),
  77. TP_fast_assign(
  78. __entry->sig = sig;
  79. TP_STORE_SIGINFO(__entry, info);
  80. __entry->sa_handler = (unsigned long)ka->sa.sa_handler;
  81. __entry->sa_flags = ka->sa.sa_flags;
  82. ),
  83. TP_printk("sig=%d errno=%d code=%d sa_handler=%lx sa_flags=%lx",
  84. __entry->sig, __entry->errno, __entry->code,
  85. __entry->sa_handler, __entry->sa_flags)
  86. );
  87. DECLARE_EVENT_CLASS(signal_queue_overflow,
  88. TP_PROTO(int sig, int group, struct siginfo *info),
  89. TP_ARGS(sig, group, info),
  90. TP_STRUCT__entry(
  91. __field( int, sig )
  92. __field( int, group )
  93. __field( int, errno )
  94. __field( int, code )
  95. ),
  96. TP_fast_assign(
  97. __entry->sig = sig;
  98. __entry->group = group;
  99. TP_STORE_SIGINFO(__entry, info);
  100. ),
  101. TP_printk("sig=%d group=%d errno=%d code=%d",
  102. __entry->sig, __entry->group, __entry->errno, __entry->code)
  103. );
  104. /**
  105. * signal_overflow_fail - called when signal queue is overflow
  106. * @sig: signal number
  107. * @group: signal to process group or not (bool)
  108. * @info: pointer to struct siginfo
  109. *
  110. * Kernel fails to generate 'sig' signal with 'info' siginfo, because
  111. * siginfo queue is overflow, and the signal is dropped.
  112. * 'group' is not 0 if the signal will be sent to a process group.
  113. * 'sig' is always one of RT signals.
  114. */
  115. DEFINE_EVENT(signal_queue_overflow, signal_overflow_fail,
  116. TP_PROTO(int sig, int group, struct siginfo *info),
  117. TP_ARGS(sig, group, info)
  118. );
  119. /**
  120. * signal_lose_info - called when siginfo is lost
  121. * @sig: signal number
  122. * @group: signal to process group or not (bool)
  123. * @info: pointer to struct siginfo
  124. *
  125. * Kernel generates 'sig' signal but loses 'info' siginfo, because siginfo
  126. * queue is overflow.
  127. * 'group' is not 0 if the signal will be sent to a process group.
  128. * 'sig' is always one of non-RT signals.
  129. */
  130. DEFINE_EVENT(signal_queue_overflow, signal_lose_info,
  131. TP_PROTO(int sig, int group, struct siginfo *info),
  132. TP_ARGS(sig, group, info)
  133. );
  134. #endif /* _TRACE_SIGNAL_H */
  135. /* This part must be outside protection */
  136. #include <trace/define_trace.h>