Markers: make __ust_marker_ptrs PIC
[ust.git] / include / ust / tracepoint.h
CommitLineData
27b052e3
PMF
1#ifndef _UST_TRACEPOINT_H
2#define _UST_TRACEPOINT_H
f99be407
PMF
3
4/*
1f8b0dff
PMF
5 * Copyright (C) 2008 Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
6 * Copyright (C) 2009 Pierre-Marc Fournier
22d72948 7 * Copyright (C) 2009 Steven Rostedt <rostedt@goodmis.org>
f99be407 8 *
8fc2d8db
PMF
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
f37142a4
MD
11 * License as published by the Free Software Foundation;
12 * version 2.1 of the License.
f99be407 13 *
8fc2d8db 14 * This library is distributed in the hope that it will be useful,
1f8b0dff 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8fc2d8db
PMF
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
1f8b0dff 18 *
8fc2d8db
PMF
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
f99be407
PMF
22 *
23 * Heavily inspired from the Linux Kernel Markers.
24 *
1f8b0dff 25 * Ported to userspace by Pierre-Marc Fournier.
f99be407
PMF
26 */
27
872037bb 28#define _LGPL_SOURCE
b7ea1a1c 29#include <urcu-bp.h>
518d7abb 30#include <ust/core.h>
f99be407 31
f99be407
PMF
32struct tracepoint;
33
b979b346 34struct tracepoint_probe {
9dec086e
NC
35 void *func;
36 void *data;
37};
38
f99be407
PMF
39struct tracepoint {
40 const char *name; /* Tracepoint name */
f36c12ab 41 char state; /* State. */
b979b346 42 struct tracepoint_probe *probes;
f218ff28 43};
f99be407 44
b979b346 45#define TP_PARAMS(args...) args
7166e240
PMF
46#define TP_PROTO(args...) args
47#define TP_ARGS(args...) args
f99be407 48
cc7b66ba
MD
49/*
50 * Tracepoints should be added to the instrumented code using the
51 * "tracepoint()" macro.
52 */
53#define tracepoint(name, args...) __trace_##name(args)
54
55#define register_tracepoint(name, probe, data) \
56 __register_trace_##name(probe, data)
57
58#define unregister_tracepoint(name, probe, data) \
59 __unregister_trace_##name(probe, data)
60
872037bb
PMF
61#define CONFIG_TRACEPOINTS
62#ifdef CONFIG_TRACEPOINTS
f99be407
PMF
63
64/*
65 * it_func[0] is never NULL because there is at least one element in the array
66 * when the array itself is non NULL.
67 */
68#define __DO_TRACE(tp, proto, args) \
69 do { \
b979b346
MD
70 struct tracepoint_probe *__tp_it_probe_ptr; \
71 void *__tp_it_func; \
72 void *__tp_cb_data; \
f99be407 73 \
9dec086e 74 rcu_read_lock(); \
b979b346
MD
75 __tp_it_probe_ptr = rcu_dereference((tp)->probes); \
76 if (__tp_it_probe_ptr) { \
f99be407 77 do { \
b979b346
MD
78 __tp_it_func = __tp_it_probe_ptr->func; \
79 __tp_cb_data = __tp_it_probe_ptr->data; \
80 ((void(*)(proto))__tp_it_func)(args); \
81 } while ((++__tp_it_probe_ptr)->func); \
f99be407 82 } \
9dec086e 83 rcu_read_unlock(); \
f99be407
PMF
84 } while (0)
85
f36c12ab 86#define __CHECK_TRACE(name, proto, args) \
f99be407 87 do { \
f36c12ab
MD
88 if (unlikely(__tracepoint_##name.state)) \
89 __DO_TRACE(&__tracepoint_##name, \
90 TP_PROTO(proto), TP_ARGS(args)); \
f99be407
PMF
91 } while (0)
92
93/*
94 * Make sure the alignment of the structure in the __tracepoints section will
95 * not add unwanted padding between the beginning of the section and the
96 * structure. Force alignment to the same alignment as the section start.
f99be407 97 */
9dec086e 98#define __DECLARE_TRACE(name, proto, args, data_proto, data_args) \
f99be407 99 extern struct tracepoint __tracepoint_##name; \
cc7b66ba 100 static inline void __trace_##name(proto) \
f99be407 101 { \
f36c12ab 102 __CHECK_TRACE(name, TP_PROTO(data_proto), \
9dec086e 103 TP_ARGS(data_args)); \
f99be407 104 } \
9dec086e 105 static inline int \
cc7b66ba 106 __register_trace_##name(void (*probe)(data_proto), void *data) \
f99be407 107 { \
9dec086e
NC
108 return tracepoint_probe_register(#name, (void *)probe, \
109 data); \
110 \
f99be407 111 } \
9dec086e 112 static inline int \
cc7b66ba 113 __unregister_trace_##name(void (*probe)(data_proto), void *data)\
f99be407 114 { \
9dec086e
NC
115 return tracepoint_probe_unregister(#name, (void *)probe, \
116 data); \
f99be407
PMF
117 }
118
f218ff28 119#define DEFINE_TRACE_FN(name, reg, unreg) \
f99be407
PMF
120 static const char __tpstrtab_##name[] \
121 __attribute__((section("__tracepoints_strings"))) = #name; \
122 struct tracepoint __tracepoint_##name \
f218ff28
MD
123 __attribute__((section("__tracepoints"))) = \
124 { __tpstrtab_##name, 0, NULL }; \
125 static struct tracepoint * const __tracepoint_ptr_##name \
126 __attribute__((used, section("__tracepoints_ptrs"))) = \
127 &__tracepoint_##name;
f99be407 128
9dec086e 129#define DEFINE_TRACE(name) \
f218ff28 130 DEFINE_TRACE_FN(name, NULL, NULL)
9dec086e 131
f218ff28
MD
132extern void tracepoint_update_probe_range(struct tracepoint * const *begin,
133 struct tracepoint * const *end);
f99be407 134
872037bb 135#else /* !CONFIG_TRACEPOINTS */
9dec086e 136#define __DECLARE_TRACE(name, proto, args) \
872037bb
PMF
137 static inline void trace_##name(proto) \
138 { } \
139 static inline void _trace_##name(proto) \
140 { } \
cc7b66ba 141 static inline int __register_trace_##name(void (*probe)(proto), void *data) \
872037bb
PMF
142 { \
143 return -ENOSYS; \
144 } \
cc7b66ba 145 static inline int __unregister_trace_##name(void (*probe)(proto), void *data) \
872037bb
PMF
146 { \
147 return -ENOSYS; \
148 }
149
150#define DEFINE_TRACE(name)
151#define EXPORT_TRACEPOINT_SYMBOL_GPL(name)
152#define EXPORT_TRACEPOINT_SYMBOL(name)
153
154static inline void tracepoint_update_probe_range(struct tracepoint *begin,
155 struct tracepoint *end)
156{ }
157#endif /* CONFIG_TRACEPOINTS */
f99be407 158
377d33ed
MD
159/*
160 * The need for the DECLARE_TRACE_NOARGS() is to handle the prototype
161 * (void). "void" is a special value in a function prototype and can
162 * not be combined with other arguments. Since the DECLARE_TRACE()
163 * macro adds a data element at the beginning of the prototype,
164 * we need a way to differentiate "(void *data, proto)" from
165 * "(void *data, void)". The second prototype is invalid.
166 *
167 * DECLARE_TRACE_NOARGS() passes "void" as the tracepoint prototype
b979b346 168 * and "void *__tp_cb_data" as the callback prototype.
377d33ed
MD
169 *
170 * DECLARE_TRACE() passes "proto" as the tracepoint protoype and
b979b346 171 * "void *__tp_cb_data, proto" as the callback prototype.
377d33ed
MD
172 */
173#define DECLARE_TRACE_NOARGS(name) \
b979b346 174 __DECLARE_TRACE(name, void, , void *__tp_cb_data, __tp_cb_data)
377d33ed
MD
175
176#define DECLARE_TRACE(name, proto, args) \
b979b346
MD
177 __DECLARE_TRACE(name, TP_PARAMS(proto), TP_PARAMS(args),\
178 TP_PARAMS(void *__tp_cb_data, proto), \
179 TP_PARAMS(__tp_cb_data, args))
9dec086e 180
f99be407
PMF
181/*
182 * Connect a probe to a tracepoint.
183 * Internal API, should not be used directly.
184 */
9dec086e 185extern int tracepoint_probe_register(const char *name, void *probe, void *data);
f99be407
PMF
186
187/*
188 * Disconnect a probe from a tracepoint.
189 * Internal API, should not be used directly.
190 */
9dec086e 191extern int tracepoint_probe_unregister(const char *name, void *probe, void *data);
f99be407 192
9dec086e
NC
193extern int tracepoint_probe_register_noupdate(const char *name, void *probe,
194 void *data);
195extern int tracepoint_probe_unregister_noupdate(const char *name, void *probe,
196 void *data);
f99be407
PMF
197extern void tracepoint_probe_update_all(void);
198
199struct tracepoint_iter {
474d745f 200 struct tracepoint_lib *lib;
f218ff28 201 struct tracepoint * const *tracepoint;
f99be407
PMF
202};
203
204extern void tracepoint_iter_start(struct tracepoint_iter *iter);
205extern void tracepoint_iter_next(struct tracepoint_iter *iter);
206extern void tracepoint_iter_stop(struct tracepoint_iter *iter);
207extern void tracepoint_iter_reset(struct tracepoint_iter *iter);
f218ff28
MD
208extern int tracepoint_get_iter_range(struct tracepoint * const **tracepoint,
209 struct tracepoint * const *begin, struct tracepoint * const *end);
f99be407
PMF
210
211/*
212 * tracepoint_synchronize_unregister must be called between the last tracepoint
213 * probe unregistration and the end of module exit to make sure there is no
214 * caller executing a probe when it is freed.
215 */
216static inline void tracepoint_synchronize_unregister(void)
217{
270c6b98 218//ust// synchronize_sched();
f99be407
PMF
219}
220
474d745f 221struct tracepoint_lib {
f218ff28 222 struct tracepoint * const *tracepoints_start;
474d745f 223 int tracepoints_count;
0222e121 224 struct cds_list_head list;
474d745f
PMF
225};
226
f218ff28 227extern int tracepoint_register_lib(struct tracepoint * const *tracepoints_start,
872037bb 228 int tracepoints_count);
f218ff28 229extern int tracepoint_unregister_lib(struct tracepoint * const *tracepoints_start);
872037bb
PMF
230
231#define TRACEPOINT_LIB \
bf5fe926
MD
232 extern struct tracepoint * const __start___tracepoints_ptrs[] __attribute__((weak, visibility("hidden"))); \
233 extern struct tracepoint * const __stop___tracepoints_ptrs[] __attribute__((weak, visibility("hidden"))); \
f08ebbe2
MD
234 static struct tracepoint * const __tracepoint_ptr_dummy \
235 __attribute__((used, section("__tracepoints_ptrs"))) = NULL; \
bf5fe926
MD
236 static void __attribute__((constructor)) __tracepoints__init(void) \
237 { \
103fffbc
MD
238 tracepoint_register_lib(__start___tracepoints_ptrs, \
239 __stop___tracepoints_ptrs - \
240 __start___tracepoints_ptrs); \
bf5fe926
MD
241 } \
242 \
243 static void __attribute__((destructor)) __tracepoints__destroy(void) \
244 { \
103fffbc 245 tracepoint_unregister_lib(__start___tracepoints_ptrs); \
872037bb
PMF
246 }
247
22d72948
NC
248
249#ifndef TRACE_EVENT
250/*
251 * For use with the TRACE_EVENT macro:
252 *
253 * We define a tracepoint, its arguments, its printf format
254 * and its 'fast binary record' layout.
255 *
256 * Firstly, name your tracepoint via TRACE_EVENT(name : the
257 * 'subsystem_event' notation is fine.
258 *
259 * Think about this whole construct as the
260 * 'trace_sched_switch() function' from now on.
261 *
262 *
263 * TRACE_EVENT(sched_switch,
264 *
265 * *
266 * * A function has a regular function arguments
267 * * prototype, declare it via TP_PROTO():
268 * *
269 *
270 * TP_PROTO(struct rq *rq, struct task_struct *prev,
271 * struct task_struct *next),
272 *
273 * *
274 * * Define the call signature of the 'function'.
275 * * (Design sidenote: we use this instead of a
276 * * TP_PROTO1/TP_PROTO2/TP_PROTO3 ugliness.)
277 * *
278 *
279 * TP_ARGS(rq, prev, next),
280 *
281 * *
282 * * Fast binary tracing: define the trace record via
283 * * TP_STRUCT__entry(). You can think about it like a
284 * * regular C structure local variable definition.
285 * *
286 * * This is how the trace record is structured and will
287 * * be saved into the ring buffer. These are the fields
288 * * that will be exposed to readers.
289 * *
290 * * The declared 'local variable' is called '__entry'
291 * *
292 * * __field(pid_t, prev_prid) is equivalent to a standard declariton:
293 * *
294 * * pid_t prev_pid;
295 * *
296 * * __array(char, prev_comm, TASK_COMM_LEN) is equivalent to:
297 * *
298 * * char prev_comm[TASK_COMM_LEN];
299 * *
300 *
301 * TP_STRUCT__entry(
302 * __array( char, prev_comm, TASK_COMM_LEN )
303 * __field( pid_t, prev_pid )
304 * __field( int, prev_prio )
305 * __array( char, next_comm, TASK_COMM_LEN )
306 * __field( pid_t, next_pid )
307 * __field( int, next_prio )
308 * ),
309 *
310 * *
311 * * Assign the entry into the trace record, by embedding
312 * * a full C statement block into TP_fast_assign(). You
313 * * can refer to the trace record as '__entry' -
314 * * otherwise you can put arbitrary C code in here.
315 * *
316 * * Note: this C code will execute every time a trace event
317 * * happens, on an active tracepoint.
318 * *
319 *
320 * TP_fast_assign(
321 * memcpy(__entry->next_comm, next->comm, TASK_COMM_LEN);
322 * __entry->prev_pid = prev->pid;
323 * __entry->prev_prio = prev->prio;
324 * memcpy(__entry->prev_comm, prev->comm, TASK_COMM_LEN);
325 * __entry->next_pid = next->pid;
326 * __entry->next_prio = next->prio;
327 * )
328 *
329 * *
330 * * Formatted output of a trace record via TP_printf().
331 * * This is how the tracepoint will appear under debugging
332 * * of tracepoints.
333 * *
334 * * (raw-binary tracing wont actually perform this step.)
335 * *
336 *
337 * TP_printf("task %s:%d [%d] ==> %s:%d [%d]",
338 * __entry->prev_comm, __entry->prev_pid, __entry->prev_prio,
339 * __entry->next_comm, __entry->next_pid, __entry->next_prio),
340 *
341 * );
342 *
343 * This macro construct is thus used for the regular printf format
344 * tracing setup.
345 *
346 * A set of (un)registration functions can be passed to the variant
347 * TRACE_EVENT_FN to perform any (un)registration work.
348 */
349
0c0686ee
NC
350struct trace_event {
351 const char *name;
352 int (*regfunc)(void *data);
353 int (*unregfunc)(void *data);
fc1caebc 354};
0c0686ee
NC
355
356struct trace_event_lib {
fc1caebc 357 struct trace_event * const *trace_events_start;
0c0686ee 358 int trace_events_count;
0222e121 359 struct cds_list_head list;
0c0686ee
NC
360};
361
362struct trace_event_iter {
363 struct trace_event_lib *lib;
fc1caebc 364 struct trace_event * const *trace_event;
0c0686ee
NC
365};
366
367extern void lock_trace_events(void);
368extern void unlock_trace_events(void);
369
370extern void trace_event_iter_start(struct trace_event_iter *iter);
371extern void trace_event_iter_next(struct trace_event_iter *iter);
372extern void trace_event_iter_reset(struct trace_event_iter *iter);
373
fc1caebc
MD
374extern int trace_event_get_iter_range(struct trace_event * const **trace_event,
375 struct trace_event * const *begin,
376 struct trace_event * const *end);
0c0686ee
NC
377
378extern void trace_event_update_process(void);
379extern int is_trace_event_enabled(const char *channel, const char *name);
380
fc1caebc 381extern int trace_event_register_lib(struct trace_event * const *start_trace_events,
0c0686ee
NC
382 int trace_event_count);
383
fc1caebc 384extern int trace_event_unregister_lib(struct trace_event * const *start_trace_events);
0c0686ee
NC
385
386#define TRACE_EVENT_LIB \
fc1caebc 387 extern struct trace_event * const __start___trace_events_ptrs[] \
0c0686ee 388 __attribute__((weak, visibility("hidden"))); \
fc1caebc 389 extern struct trace_event * const __stop___trace_events_ptrs[] \
0c0686ee 390 __attribute__((weak, visibility("hidden"))); \
f08ebbe2
MD
391 static struct trace_event * const __event_ptrs_dummy \
392 __attribute__((used, section("__trace_events_ptrs"))) = NULL; \
0c0686ee
NC
393 static void __attribute__((constructor)) \
394 __trace_events__init(void) \
395 { \
fc1caebc
MD
396 trace_event_register_lib(__start___trace_events_ptrs, \
397 __stop___trace_events_ptrs - \
398 __start___trace_events_ptrs); \
0c0686ee
NC
399 } \
400 \
401 static void __attribute__((destructor)) \
402 __trace_event__destroy(void) \
403 { \
fc1caebc 404 trace_event_unregister_lib(__start___trace_events_ptrs);\
0c0686ee
NC
405 }
406
22d72948
NC
407#define DECLARE_TRACE_EVENT_CLASS(name, proto, args, tstruct, assign, print)
408#define DEFINE_TRACE_EVENT(template, name, proto, args) \
b979b346 409 DECLARE_TRACE(name, TP_PARAMS(proto), TP_PARAMS(args))
22d72948 410#define DEFINE_TRACE_EVENT_PRINT(template, name, proto, args, print) \
b979b346 411 DECLARE_TRACE(name, TP_PARAMS(proto), TP_PARAMS(args))
22d72948
NC
412
413#define TRACE_EVENT(name, proto, args, struct, assign, print) \
b979b346 414 DECLARE_TRACE(name, TP_PARAMS(proto), TP_PARAMS(args))
22d72948
NC
415#define TRACE_EVENT_FN(name, proto, args, struct, \
416 assign, print, reg, unreg) \
b979b346 417 DECLARE_TRACE(name, TP_PARAMS(proto), TP_PARAMS(args))
22d72948
NC
418
419#endif /* ifdef TRACE_EVENT (see note above) */
420
421
27b052e3 422#endif /* _UST_TRACEPOINT_H */
This page took 0.055591 seconds and 4 git commands to generate.