Blame view

include/trace/bpf_probe.h 3.94 KB
c4f6699df   Alexei Starovoitov   bpf: introduce BP...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
  /* SPDX-License-Identifier: GPL-2.0 */
  
  #undef TRACE_SYSTEM_VAR
  
  #ifdef CONFIG_BPF_EVENTS
  
  #undef __entry
  #define __entry entry
  
  #undef __get_dynamic_array
  #define __get_dynamic_array(field)	\
  		((void *)__entry + (__entry->__data_loc_##field & 0xffff))
  
  #undef __get_dynamic_array_len
  #define __get_dynamic_array_len(field)	\
  		((__entry->__data_loc_##field >> 16) & 0xffff)
  
  #undef __get_str
  #define __get_str(field) ((char *)__get_dynamic_array(field))
  
  #undef __get_bitmask
  #define __get_bitmask(field) (char *)__get_dynamic_array(field)
  
  #undef __perf_count
  #define __perf_count(c)	(c)
  
  #undef __perf_task
  #define __perf_task(t)	(t)
  
  /* cast any integer, pointer, or small struct to u64 */
  #define UINTTYPE(size) \
  	__typeof__(__builtin_choose_expr(size == 1,  (u8)1, \
  		   __builtin_choose_expr(size == 2, (u16)2, \
  		   __builtin_choose_expr(size == 4, (u32)3, \
  		   __builtin_choose_expr(size == 8, (u64)4, \
  					 (void)5)))))
  #define __CAST_TO_U64(x) ({ \
  	typeof(x) __src = (x); \
  	UINTTYPE(sizeof(x)) __dst; \
  	memcpy(&__dst, &__src, sizeof(__dst)); \
  	(u64)__dst; })
  
  #define __CAST1(a,...) __CAST_TO_U64(a)
  #define __CAST2(a,...) __CAST_TO_U64(a), __CAST1(__VA_ARGS__)
  #define __CAST3(a,...) __CAST_TO_U64(a), __CAST2(__VA_ARGS__)
  #define __CAST4(a,...) __CAST_TO_U64(a), __CAST3(__VA_ARGS__)
  #define __CAST5(a,...) __CAST_TO_U64(a), __CAST4(__VA_ARGS__)
  #define __CAST6(a,...) __CAST_TO_U64(a), __CAST5(__VA_ARGS__)
  #define __CAST7(a,...) __CAST_TO_U64(a), __CAST6(__VA_ARGS__)
  #define __CAST8(a,...) __CAST_TO_U64(a), __CAST7(__VA_ARGS__)
  #define __CAST9(a,...) __CAST_TO_U64(a), __CAST8(__VA_ARGS__)
  #define __CAST10(a,...) __CAST_TO_U64(a), __CAST9(__VA_ARGS__)
  #define __CAST11(a,...) __CAST_TO_U64(a), __CAST10(__VA_ARGS__)
  #define __CAST12(a,...) __CAST_TO_U64(a), __CAST11(__VA_ARGS__)
  /* tracepoints with more than 12 arguments will hit build error */
  #define CAST_TO_U64(...) CONCATENATE(__CAST, COUNT_ARGS(__VA_ARGS__))(__VA_ARGS__)
  
  #undef DECLARE_EVENT_CLASS
  #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print)	\
  static notrace void							\
  __bpf_trace_##call(void *__data, proto)					\
  {									\
  	struct bpf_prog *prog = __data;					\
  	CONCATENATE(bpf_trace_run, COUNT_ARGS(args))(prog, CAST_TO_U64(args));	\
  }
  
  /*
   * This part is compiled out, it is only here as a build time check
   * to make sure that if the tracepoint handling changes, the
   * bpf probe will fail to compile unless it too is updated.
   */
9df1c28bb   Matt Mullins   bpf: add writable...
72
  #define __DEFINE_EVENT(template, call, proto, args, size)		\
c4f6699df   Alexei Starovoitov   bpf: introduce BP...
73
74
75
76
  static inline void bpf_test_probe_##call(void)				\
  {									\
  	check_trace_callback_type_##call(__bpf_trace_##template);	\
  }									\
e8c423fb3   Alexei Starovoitov   bpf: Add typecast...
77
  typedef void (*btf_trace_##call)(void *__data, proto);			\
441420a1f   Andrii Nakryiko   bpf: Reliably pre...
78
79
80
81
  static union {								\
  	struct bpf_raw_event_map event;					\
  	btf_trace_##call handler;					\
  } __bpf_trace_tp_map_##call __used					\
33def8498   Joe Perches   treewide: Convert...
82
  __section("__bpf_raw_tp_map") = {					\
441420a1f   Andrii Nakryiko   bpf: Reliably pre...
83
84
85
86
87
88
  	.event = {							\
  		.tp		= &__tracepoint_##call,			\
  		.bpf_func	= __bpf_trace_##template,		\
  		.num_args	= COUNT_ARGS(args),			\
  		.writable_size	= size,					\
  	},								\
c4f6699df   Alexei Starovoitov   bpf: introduce BP...
89
  };
9df1c28bb   Matt Mullins   bpf: add writable...
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
  #define FIRST(x, ...) x
  
  #undef DEFINE_EVENT_WRITABLE
  #define DEFINE_EVENT_WRITABLE(template, call, proto, args, size)	\
  static inline void bpf_test_buffer_##call(void)				\
  {									\
  	/* BUILD_BUG_ON() is ignored if the code is completely eliminated, but \
  	 * BUILD_BUG_ON_ZERO() uses a different mechanism that is not	\
  	 * dead-code-eliminated.					\
  	 */								\
  	FIRST(proto);							\
  	(void)BUILD_BUG_ON_ZERO(size != sizeof(*FIRST(args)));		\
  }									\
  __DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args), size)
  
  #undef DEFINE_EVENT
  #define DEFINE_EVENT(template, call, proto, args)			\
  	__DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args), 0)
c4f6699df   Alexei Starovoitov   bpf: introduce BP...
108
109
110
111
112
113
  
  #undef DEFINE_EVENT_PRINT
  #define DEFINE_EVENT_PRINT(template, name, proto, args, print)	\
  	DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
  
  #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
9df1c28bb   Matt Mullins   bpf: add writable...
114
115
116
117
  
  #undef DEFINE_EVENT_WRITABLE
  #undef __DEFINE_EVENT
  #undef FIRST
c4f6699df   Alexei Starovoitov   bpf: introduce BP...
118
  #endif /* CONFIG_BPF_EVENTS */