cleanup: function attribute 'destructor'
[lttng-ust.git] / include / lttng / tracepoint.h
CommitLineData
b728d87e 1/*
c0c0989a 2 * SPDX-License-Identifier: MIT
b728d87e 3 *
c0c0989a 4 * Copyright (C) 2011-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
b728d87e
MD
5 */
6
c0c0989a
MJ
7#ifndef _LTTNG_TRACEPOINT_H
8#define _LTTNG_TRACEPOINT_H
9
76aca78d
MD
10#include <stdio.h>
11#include <stdlib.h>
8fce9e2b 12#include <lttng/tracepoint-types.h>
40b2b5a4 13#include <lttng/tracepoint-rcu.h>
b728d87e 14#include <urcu/compiler.h>
c082d14b 15#include <urcu/system.h>
deb6e540 16#include <dlfcn.h> /* for dlopen */
51920067 17#include <string.h> /* for memset */
3d3dc207 18
b2f60c79 19#include <lttng/ust-config.h> /* for sdt */
a8909ba5 20#include <lttng/ust-compiler.h>
3d3dc207 21#include <lttng/ust-tracer.h>
b2f60c79
MD
22
23#ifdef LTTNG_UST_HAVE_SDT_INTEGRATION
23b75ae5
MJ
24/*
25 * Instead of using SDT_USE_VARIADIC from 'sys/sdt.h', use our own namespaced
26 * macros since the instrumented application might already have included
27 * 'sys/sdt.h' without variadic support.
28 */
b2f60c79 29#include <sys/sdt.h>
23b75ae5
MJ
30
31#define _LTTNG_SDT_NARG(...) \
32 __LTTNG_SDT_NARG(__VA_ARGS__, 12,11,10,9,8,7,6,5,4,3,2,1,0)
33
34#define __LTTNG_SDT_NARG(_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12, N, ...) N
35
36#define _LTTNG_SDT_PROBE_N(provider, name, N, ...) \
37 _SDT_PROBE(provider, name, N, (__VA_ARGS__))
38
39#define LTTNG_STAP_PROBEV(provider, name, ...) \
40 _LTTNG_SDT_PROBE_N(provider, name, _LTTNG_SDT_NARG(0, ##__VA_ARGS__), ##__VA_ARGS__)
41
b2f60c79 42#else
afeea86f 43#define LTTNG_STAP_PROBEV(...)
b2f60c79 44#endif
b728d87e
MD
45
46#ifdef __cplusplus
47extern "C" {
48#endif
49
8da6d0c8 50#define tracepoint_enabled(provider, name) \
c082d14b 51 caa_unlikely(CMM_LOAD_SHARED(__tracepoint_##provider##___##name.state))
8da6d0c8
DS
52
53#define do_tracepoint(provider, name, ...) \
54 __tracepoint_cb_##provider##___##name(__VA_ARGS__)
55
23c8854a
MD
56#define tracepoint(provider, name, ...) \
57 do { \
afeea86f 58 LTTNG_STAP_PROBEV(provider, name, ## __VA_ARGS__); \
8da6d0c8
DS
59 if (tracepoint_enabled(provider, name)) \
60 do_tracepoint(provider, name, __VA_ARGS__); \
b728d87e
MD
61 } while (0)
62
63#define TP_ARGS(...) __VA_ARGS__
64
65/*
66 * TP_ARGS takes tuples of type, argument separated by a comma.
67 * It can take up to 10 tuples (which means that less than 10 tuples is
68 * fine too).
69 * Each tuple is also separated by a comma.
70 */
df854e41
MD
71#define __TP_COMBINE_TOKENS(_tokena, _tokenb) \
72 _tokena##_tokenb
73#define _TP_COMBINE_TOKENS(_tokena, _tokenb) \
74 __TP_COMBINE_TOKENS(_tokena, _tokenb)
75#define __TP_COMBINE_TOKENS3(_tokena, _tokenb, _tokenc) \
76 _tokena##_tokenb##_tokenc
77#define _TP_COMBINE_TOKENS3(_tokena, _tokenb, _tokenc) \
78 __TP_COMBINE_TOKENS3(_tokena, _tokenb, _tokenc)
79#define __TP_COMBINE_TOKENS4(_tokena, _tokenb, _tokenc, _tokend) \
80 _tokena##_tokenb##_tokenc##_tokend
81#define _TP_COMBINE_TOKENS4(_tokena, _tokenb, _tokenc, _tokend) \
82 __TP_COMBINE_TOKENS4(_tokena, _tokenb, _tokenc, _tokend)
b728d87e 83
4495dd39
MD
84/*
85 * _TP_EXVAR* extract the var names.
86 * _TP_EXVAR1 and _TP_EXDATA_VAR1 are needed for -std=c99.
87 */
b728d87e 88#define _TP_EXVAR0()
4495dd39 89#define _TP_EXVAR1(a)
b728d87e
MD
90#define _TP_EXVAR2(a,b) b
91#define _TP_EXVAR4(a,b,c,d) b,d
92#define _TP_EXVAR6(a,b,c,d,e,f) b,d,f
93#define _TP_EXVAR8(a,b,c,d,e,f,g,h) b,d,f,h
94#define _TP_EXVAR10(a,b,c,d,e,f,g,h,i,j) b,d,f,h,j
95#define _TP_EXVAR12(a,b,c,d,e,f,g,h,i,j,k,l) b,d,f,h,j,l
96#define _TP_EXVAR14(a,b,c,d,e,f,g,h,i,j,k,l,m,n) b,d,f,h,j,l,n
97#define _TP_EXVAR16(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) b,d,f,h,j,l,n,p
98#define _TP_EXVAR18(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r) b,d,f,h,j,l,n,p,r
99#define _TP_EXVAR20(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t) b,d,f,h,j,l,n,p,r,t
100
101#define _TP_EXDATA_VAR0() __tp_data
4495dd39 102#define _TP_EXDATA_VAR1(a) __tp_data
b728d87e
MD
103#define _TP_EXDATA_VAR2(a,b) __tp_data,b
104#define _TP_EXDATA_VAR4(a,b,c,d) __tp_data,b,d
105#define _TP_EXDATA_VAR6(a,b,c,d,e,f) __tp_data,b,d,f
106#define _TP_EXDATA_VAR8(a,b,c,d,e,f,g,h) __tp_data,b,d,f,h
107#define _TP_EXDATA_VAR10(a,b,c,d,e,f,g,h,i,j) __tp_data,b,d,f,h,j
108#define _TP_EXDATA_VAR12(a,b,c,d,e,f,g,h,i,j,k,l) __tp_data,b,d,f,h,j,l
109#define _TP_EXDATA_VAR14(a,b,c,d,e,f,g,h,i,j,k,l,m,n) __tp_data,b,d,f,h,j,l,n
110#define _TP_EXDATA_VAR16(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) __tp_data,b,d,f,h,j,l,n,p
111#define _TP_EXDATA_VAR18(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r) __tp_data,b,d,f,h,j,l,n,p,r
112#define _TP_EXDATA_VAR20(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t) __tp_data,b,d,f,h,j,l,n,p,r,t
113
4495dd39
MD
114/*
115 * _TP_EXPROTO* extract tuples of type, var.
116 * _TP_EXPROTO1 and _TP_EXDATA_PROTO1 are needed for -std=c99.
117 */
86637aa6 118#define _TP_EXPROTO0() void
4495dd39 119#define _TP_EXPROTO1(a) void
b728d87e
MD
120#define _TP_EXPROTO2(a,b) a b
121#define _TP_EXPROTO4(a,b,c,d) a b,c d
122#define _TP_EXPROTO6(a,b,c,d,e,f) a b,c d,e f
123#define _TP_EXPROTO8(a,b,c,d,e,f,g,h) a b,c d,e f,g h
124#define _TP_EXPROTO10(a,b,c,d,e,f,g,h,i,j) a b,c d,e f,g h,i j
125#define _TP_EXPROTO12(a,b,c,d,e,f,g,h,i,j,k,l) a b,c d,e f,g h,i j,k l
126#define _TP_EXPROTO14(a,b,c,d,e,f,g,h,i,j,k,l,m,n) a b,c d,e f,g h,i j,k l,m n
127#define _TP_EXPROTO16(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) a b,c d,e f,g h,i j,k l,m n,o p
128#define _TP_EXPROTO18(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r) a b,c d,e f,g h,i j,k l,m n,o p,q r
129#define _TP_EXPROTO20(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t) a b,c d,e f,g h,i j,k l,m n,o p,q r,s t
130
131#define _TP_EXDATA_PROTO0() void *__tp_data
4495dd39 132#define _TP_EXDATA_PROTO1(a) void *__tp_data
b728d87e
MD
133#define _TP_EXDATA_PROTO2(a,b) void *__tp_data,a b
134#define _TP_EXDATA_PROTO4(a,b,c,d) void *__tp_data,a b,c d
135#define _TP_EXDATA_PROTO6(a,b,c,d,e,f) void *__tp_data,a b,c d,e f
136#define _TP_EXDATA_PROTO8(a,b,c,d,e,f,g,h) void *__tp_data,a b,c d,e f,g h
137#define _TP_EXDATA_PROTO10(a,b,c,d,e,f,g,h,i,j) void *__tp_data,a b,c d,e f,g h,i j
138#define _TP_EXDATA_PROTO12(a,b,c,d,e,f,g,h,i,j,k,l) void *__tp_data,a b,c d,e f,g h,i j,k l
139#define _TP_EXDATA_PROTO14(a,b,c,d,e,f,g,h,i,j,k,l,m,n) void *__tp_data,a b,c d,e f,g h,i j,k l,m n
140#define _TP_EXDATA_PROTO16(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) void *__tp_data,a b,c d,e f,g h,i j,k l,m n,o p
141#define _TP_EXDATA_PROTO18(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r) void *__tp_data,a b,c d,e f,g h,i j,k l,m n,o p,q r
142#define _TP_EXDATA_PROTO20(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t) void *__tp_data,a b,c d,e f,g h,i j,k l,m n,o p,q r,s t
143
144/* Preprocessor trick to count arguments. Inspired from sdt.h. */
145#define _TP_NARGS(...) __TP_NARGS(__VA_ARGS__, 20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0)
146#define __TP_NARGS(_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20, N, ...) N
23c8854a
MD
147#define _TP_PROTO_N(N, ...) _TP_PARAMS(_TP_COMBINE_TOKENS(_TP_EXPROTO, N)(__VA_ARGS__))
148#define _TP_VAR_N(N, ...) _TP_PARAMS(_TP_COMBINE_TOKENS(_TP_EXVAR, N)(__VA_ARGS__))
149#define _TP_DATA_PROTO_N(N, ...) _TP_PARAMS(_TP_COMBINE_TOKENS(_TP_EXDATA_PROTO, N)(__VA_ARGS__))
150#define _TP_DATA_VAR_N(N, ...) _TP_PARAMS(_TP_COMBINE_TOKENS(_TP_EXDATA_VAR, N)(__VA_ARGS__))
b728d87e 151#define _TP_ARGS_PROTO(...) _TP_PROTO_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
23c8854a 152#define _TP_ARGS_VAR(...) _TP_VAR_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
b728d87e 153#define _TP_ARGS_DATA_PROTO(...) _TP_DATA_PROTO_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
23c8854a 154#define _TP_ARGS_DATA_VAR(...) _TP_DATA_VAR_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
b728d87e
MD
155#define _TP_PARAMS(...) __VA_ARGS__
156
96f85541
MD
157/*
158 * The tracepoint cb is marked always inline so we can distinguish
159 * between caller's ip addresses within the probe using the return
160 * address.
161 */
0f2f7e21 162#define _DECLARE_TRACEPOINT(_provider, _name, ...) \
1a206094 163extern struct lttng_ust_tracepoint __tracepoint_##_provider##___##_name; \
8da9deee
MJ
164static inline \
165void __tracepoint_cb_##_provider##___##_name(_TP_ARGS_PROTO(__VA_ARGS__)) \
166 __attribute__((always_inline, unused)) lttng_ust_notrace; \
96f85541 167static \
a8909ba5 168void __tracepoint_cb_##_provider##___##_name(_TP_ARGS_PROTO(__VA_ARGS__)) \
b728d87e 169{ \
10544ee8 170 struct lttng_ust_tracepoint_probe *__tp_probe; \
b728d87e 171 \
d3db6a40 172 if (caa_unlikely(!TP_RCU_LINK_TEST())) \
deb6e540 173 return; \
10544ee8
MD
174 tp_rcu_read_lock(); \
175 __tp_probe = tp_rcu_dereference(__tracepoint_##_provider##___##_name.probes); \
23c8854a 176 if (caa_unlikely(!__tp_probe)) \
b728d87e
MD
177 goto end; \
178 do { \
1a206094 179 void (*__tp_cb)(void) = __tp_probe->func; \
23c8854a 180 void *__tp_data = __tp_probe->data; \
b728d87e 181 \
23c8854a
MD
182 URCU_FORCE_CAST(void (*)(_TP_ARGS_DATA_PROTO(__VA_ARGS__)), __tp_cb) \
183 (_TP_ARGS_DATA_VAR(__VA_ARGS__)); \
184 } while ((++__tp_probe)->func); \
b728d87e 185end: \
10544ee8 186 tp_rcu_read_unlock(); \
b728d87e 187} \
a8909ba5
PW
188static inline lttng_ust_notrace \
189void __tracepoint_register_##_provider##___##_name(char *name, \
190 void (*func)(void), void *data); \
191static inline \
192void __tracepoint_register_##_provider##___##_name(char *name, \
193 void (*func)(void), void *data) \
b728d87e 194{ \
67e5f391
MD
195 __tracepoint_probe_register(name, func, data, \
196 __tracepoint_##_provider##___##_name.signature); \
b728d87e 197} \
a8909ba5
PW
198static inline lttng_ust_notrace \
199void __tracepoint_unregister_##_provider##___##_name(char *name, \
200 void (*func)(void), void *data); \
201static inline \
202void __tracepoint_unregister_##_provider##___##_name(char *name, \
203 void (*func)(void), void *data) \
b728d87e 204{ \
23c8854a 205 __tracepoint_probe_unregister(name, func, data); \
b728d87e
MD
206}
207
fbdeb5ec
MD
208extern int __tracepoint_probe_register(const char *name, void (*func)(void),
209 void *data, const char *signature);
210extern int __tracepoint_probe_unregister(const char *name, void (*func)(void),
211 void *data);
deb6e540 212
51920067
MD
213/*
214 * tracepoint dynamic linkage handling (callbacks). Hidden visibility:
215 * shared across objects in a module/main executable.
f641d544
MD
216 *
217 * IMPORTANT: this structure is part of the ABI between instrumented
218 * applications and UST. Fields need to be only added at the end, never
219 * reordered, never removed.
220 *
221 * The field @struct_size should be used to determine the size of the
222 * structure. It should be queried before using additional fields added
223 * at the end of the structure.
51920067 224 */
1a206094 225struct lttng_ust_tracepoint_dlopen {
f641d544
MD
226 uint32_t struct_size;
227
51920067
MD
228 void *liblttngust_handle;
229
1a206094 230 int (*tracepoint_register_lib)(struct lttng_ust_tracepoint * const *tracepoints_start,
51920067 231 int tracepoints_count);
1a206094 232 int (*tracepoint_unregister_lib)(struct lttng_ust_tracepoint * const *tracepoints_start);
10544ee8
MD
233 void (*rcu_read_lock_sym)(void);
234 void (*rcu_read_unlock_sym)(void);
235 void *(*rcu_dereference_sym)(void *p);
f641d544
MD
236
237 /* End of base ABI. Fields below should be used after checking struct_size. */
51920067
MD
238};
239
1a206094 240extern struct lttng_ust_tracepoint_dlopen tracepoint_dlopen;
f4624de2 241extern struct lttng_ust_tracepoint_dlopen *tracepoint_dlopen_ptr;
51920067 242
46c881a7
MD
243/*
244 * These weak symbols, the constructor, and destructor take care of
245 * registering only _one_ instance of the tracepoints per shared-ojbect
246 * (or for the whole main program).
247 */
248int __tracepoint_registered
249 __attribute__((weak, visibility("hidden")));
250int __tracepoint_ptrs_registered
251 __attribute__((weak, visibility("hidden")));
1a206094 252struct lttng_ust_tracepoint_dlopen tracepoint_dlopen
f641d544
MD
253 __attribute__((weak, visibility("hidden"))) = {
254 .struct_size = sizeof(struct lttng_ust_tracepoint_dlopen),
255};
9443a022
MD
256/*
257 * Deal with gcc O1 optimisation issues with weak hidden symbols. gcc
258 * 4.8 and prior does not have the same behavior for symbol scoping on
259 * 32-bit powerpc depending on the object size: symbols for objects of 8
260 * bytes or less have the same address throughout a module, whereas they
261 * have different addresses between compile units for objects larger
262 * than 8 bytes. Add this pointer indirection to ensure that the symbol
263 * scoping match that of the other weak hidden symbols found in this
264 * header.
265 */
266struct lttng_ust_tracepoint_dlopen *tracepoint_dlopen_ptr
267 __attribute__((weak, visibility("hidden")));
46c881a7 268
0fd0de10
FD
269/*
270 * Tracepoint dynamic linkage handling (callbacks). Hidden visibility: shared
271 * across objects in a module/main executable. The callbacks are used to
272 * control and check if the destructors should be executed.
f641d544
MD
273 *
274 * IMPORTANT: this structure is part of the ABI between instrumented
275 * applications and UST. Fields need to be only added at the end, never
276 * reordered, never removed.
277 *
278 * The field @struct_size should be used to determine the size of the
279 * structure. It should be queried before using additional fields added
280 * at the end of the structure.
0fd0de10
FD
281 */
282struct lttng_ust_tracepoint_destructors_syms {
f641d544
MD
283 uint32_t struct_size;
284
0fd0de10
FD
285 void (*tracepoint_disable_destructors)(void);
286 int (*tracepoint_get_destructors_state)(void);
f641d544
MD
287
288 /* End of base ABI. Fields below should be used after checking struct_size. */
0fd0de10
FD
289};
290
291extern struct lttng_ust_tracepoint_destructors_syms tracepoint_destructors_syms;
292extern struct lttng_ust_tracepoint_destructors_syms *tracepoint_destructors_syms_ptr;
293
294struct lttng_ust_tracepoint_destructors_syms tracepoint_destructors_syms
f641d544
MD
295 __attribute__((weak, visibility("hidden"))) = {
296 .struct_size = sizeof(struct lttng_ust_tracepoint_destructors_syms),
297};
0fd0de10
FD
298struct lttng_ust_tracepoint_destructors_syms *tracepoint_destructors_syms_ptr
299 __attribute__((weak, visibility("hidden")));
300
301static inline void tracepoint_disable_destructors(void)
302{
303 if (!tracepoint_dlopen_ptr)
304 tracepoint_dlopen_ptr = &tracepoint_dlopen;
305 if (!tracepoint_destructors_syms_ptr)
306 tracepoint_destructors_syms_ptr = &tracepoint_destructors_syms;
307 if (tracepoint_dlopen_ptr->liblttngust_handle
308 && tracepoint_destructors_syms_ptr->tracepoint_disable_destructors)
309 tracepoint_destructors_syms_ptr->tracepoint_disable_destructors();
0fd0de10
FD
310}
311
99234da6
MD
312#ifndef _LGPL_SOURCE
313static inline void lttng_ust_notrace
314__tracepoint__init_urcu_sym(void);
315static inline void
316__tracepoint__init_urcu_sym(void)
317{
9443a022
MD
318 if (!tracepoint_dlopen_ptr)
319 tracepoint_dlopen_ptr = &tracepoint_dlopen;
99234da6
MD
320 /*
321 * Symbols below are needed by tracepoint call sites and probe
322 * providers.
323 */
10544ee8
MD
324 if (!tracepoint_dlopen_ptr->rcu_read_lock_sym)
325 tracepoint_dlopen_ptr->rcu_read_lock_sym =
99234da6 326 URCU_FORCE_CAST(void (*)(void),
9443a022 327 dlsym(tracepoint_dlopen_ptr->liblttngust_handle,
10544ee8
MD
328 "tp_rcu_read_lock"));
329 if (!tracepoint_dlopen_ptr->rcu_read_unlock_sym)
330 tracepoint_dlopen_ptr->rcu_read_unlock_sym =
99234da6 331 URCU_FORCE_CAST(void (*)(void),
9443a022 332 dlsym(tracepoint_dlopen_ptr->liblttngust_handle,
10544ee8
MD
333 "tp_rcu_read_unlock"));
334 if (!tracepoint_dlopen_ptr->rcu_dereference_sym)
335 tracepoint_dlopen_ptr->rcu_dereference_sym =
99234da6 336 URCU_FORCE_CAST(void *(*)(void *p),
9443a022 337 dlsym(tracepoint_dlopen_ptr->liblttngust_handle,
10544ee8 338 "tp_rcu_dereference_sym"));
99234da6
MD
339}
340#else
341static inline void lttng_ust_notrace
342__tracepoint__init_urcu_sym(void);
343static inline void
344__tracepoint__init_urcu_sym(void)
345{
346}
347#endif
348
465a0d04
MJ
349static void
350__tracepoints__init(void)
351 lttng_ust_notrace __attribute__((constructor));
46c881a7
MD
352static void
353__tracepoints__init(void)
354{
8f0d1c78
MD
355 if (__tracepoint_registered++) {
356 if (!tracepoint_dlopen_ptr->liblttngust_handle)
357 return;
358 __tracepoint__init_urcu_sym();
46c881a7 359 return;
8f0d1c78 360 }
46c881a7 361
9443a022
MD
362 if (!tracepoint_dlopen_ptr)
363 tracepoint_dlopen_ptr = &tracepoint_dlopen;
364 if (!tracepoint_dlopen_ptr->liblttngust_handle)
365 tracepoint_dlopen_ptr->liblttngust_handle =
3d3dc207 366 dlopen(LTTNG_UST_TRACEPOINT_LIB_SONAME, RTLD_NOW | RTLD_GLOBAL);
9443a022 367 if (!tracepoint_dlopen_ptr->liblttngust_handle)
46c881a7 368 return;
99234da6 369 __tracepoint__init_urcu_sym();
46c881a7
MD
370}
371
c589eca2
MJ
372static void
373__tracepoints__destroy(void)
374 lttng_ust_notrace __attribute__((destructor));
46c881a7
MD
375static void
376__tracepoints__destroy(void)
377{
378 int ret;
379
380 if (--__tracepoint_registered)
381 return;
9443a022
MD
382 if (!tracepoint_dlopen_ptr)
383 tracepoint_dlopen_ptr = &tracepoint_dlopen;
0fd0de10
FD
384 if (!tracepoint_destructors_syms_ptr)
385 tracepoint_destructors_syms_ptr = &tracepoint_destructors_syms;
386 if (!tracepoint_dlopen_ptr->liblttngust_handle)
387 return;
388 if (__tracepoint_ptrs_registered)
389 return;
390 /*
391 * Lookup if destructors must be executed using the new method.
392 */
393 if (tracepoint_destructors_syms_ptr->tracepoint_get_destructors_state
394 && !tracepoint_destructors_syms_ptr->tracepoint_get_destructors_state()) {
395 /*
396 * The tracepoint_get_destructors_state symbol was found with
397 * dlsym but its returned value is 0 meaning that destructors
398 * must not be executed.
399 */
400 return;
401 }
0fd0de10
FD
402 ret = dlclose(tracepoint_dlopen_ptr->liblttngust_handle);
403 if (ret) {
404 fprintf(stderr, "Error (%d) in dlclose\n", ret);
405 abort();
406 }
407 memset(tracepoint_dlopen_ptr, 0, sizeof(*tracepoint_dlopen_ptr));
46c881a7
MD
408}
409
deb6e540
MD
410#ifdef TRACEPOINT_DEFINE
411
558b9d86
MD
412/*
413 * These weak symbols, the constructor, and destructor take care of
414 * registering only _one_ instance of the tracepoints per shared-ojbect
415 * (or for the whole main program).
416 */
1a206094 417extern struct lttng_ust_tracepoint * const __start___tracepoints_ptrs[]
558b9d86 418 __attribute__((weak, visibility("hidden")));
1a206094 419extern struct lttng_ust_tracepoint * const __stop___tracepoints_ptrs[]
558b9d86
MD
420 __attribute__((weak, visibility("hidden")));
421
628e1d81
MD
422/*
423 * When TRACEPOINT_PROBE_DYNAMIC_LINKAGE is defined, we do not emit a
424 * unresolved symbol that requires the provider to be linked in. When
425 * TRACEPOINT_PROBE_DYNAMIC_LINKAGE is not defined, we emit an
426 * unresolved symbol that depends on having the provider linked in,
427 * otherwise the linker complains. This deals with use of static
428 * libraries, ensuring that the linker does not remove the provider
429 * object from the executable.
430 */
431#ifdef TRACEPOINT_PROBE_DYNAMIC_LINKAGE
b4f3bc52 432#define _TRACEPOINT_UNDEFINED_REF(provider) NULL
628e1d81 433#else /* TRACEPOINT_PROBE_DYNAMIC_LINKAGE */
b4f3bc52 434#define _TRACEPOINT_UNDEFINED_REF(provider) &__tracepoint_provider_##provider
628e1d81
MD
435#endif /* TRACEPOINT_PROBE_DYNAMIC_LINKAGE */
436
b728d87e
MD
437/*
438 * Note: to allow PIC code, we need to allow the linker to update the pointers
439 * in the __tracepoints_ptrs section.
440 * Therefore, this section is _not_ const (read-only).
441 */
b4f3bc52
MD
442#define _TP_EXTRACT_STRING(...) #__VA_ARGS__
443
444#define _DEFINE_TRACEPOINT(_provider, _name, _args) \
445 extern int __tracepoint_provider_##_provider; \
446 static const char __tp_strtab_##_provider##___##_name[] \
b728d87e 447 __attribute__((section("__tracepoints_strings"))) = \
b4f3bc52 448 #_provider ":" #_name; \
1a206094 449 struct lttng_ust_tracepoint __tracepoint_##_provider##___##_name \
f641d544
MD
450 __attribute__((section("__tracepoints"))) = { \
451 sizeof(struct lttng_ust_tracepoint), \
b4f3bc52
MD
452 __tp_strtab_##_provider##___##_name, \
453 0, \
454 NULL, \
455 _TRACEPOINT_UNDEFINED_REF(_provider), \
456 _TP_EXTRACT_STRING(_args), \
457 }; \
1a206094
SM
458 static struct lttng_ust_tracepoint * \
459 __tracepoint_ptr_##_provider##___##_name \
4f74bc5e
MD
460 __attribute__((section("__tracepoints_ptrs"), used)) \
461 __lttng_ust_variable_attribute_no_sanitize_address = \
b4f3bc52 462 &__tracepoint_##_provider##___##_name;
b728d87e 463
465a0d04
MJ
464static void
465__tracepoints__ptrs_init(void)
466 lttng_ust_notrace __attribute__((constructor));
a8909ba5 467static void
46c881a7 468__tracepoints__ptrs_init(void)
b728d87e 469{
46c881a7 470 if (__tracepoint_ptrs_registered++)
b728d87e 471 return;
9443a022
MD
472 if (!tracepoint_dlopen_ptr)
473 tracepoint_dlopen_ptr = &tracepoint_dlopen;
474 if (!tracepoint_dlopen_ptr->liblttngust_handle)
475 tracepoint_dlopen_ptr->liblttngust_handle =
3d3dc207 476 dlopen(LTTNG_UST_TRACEPOINT_LIB_SONAME, RTLD_NOW | RTLD_GLOBAL);
9443a022 477 if (!tracepoint_dlopen_ptr->liblttngust_handle)
deb6e540 478 return;
0fd0de10
FD
479 if (!tracepoint_destructors_syms_ptr)
480 tracepoint_destructors_syms_ptr = &tracepoint_destructors_syms;
9443a022 481 tracepoint_dlopen_ptr->tracepoint_register_lib =
1a206094 482 URCU_FORCE_CAST(int (*)(struct lttng_ust_tracepoint * const *, int),
9443a022 483 dlsym(tracepoint_dlopen_ptr->liblttngust_handle,
ae14f822 484 "tracepoint_register_lib"));
9443a022 485 tracepoint_dlopen_ptr->tracepoint_unregister_lib =
1a206094 486 URCU_FORCE_CAST(int (*)(struct lttng_ust_tracepoint * const *),
9443a022 487 dlsym(tracepoint_dlopen_ptr->liblttngust_handle,
ae14f822 488 "tracepoint_unregister_lib"));
0fd0de10
FD
489 tracepoint_destructors_syms_ptr->tracepoint_disable_destructors =
490 URCU_FORCE_CAST(void (*)(void),
491 dlsym(tracepoint_dlopen_ptr->liblttngust_handle,
492 "tp_disable_destructors"));
493 tracepoint_destructors_syms_ptr->tracepoint_get_destructors_state =
494 URCU_FORCE_CAST(int (*)(void),
495 dlsym(tracepoint_dlopen_ptr->liblttngust_handle,
496 "tp_get_destructors_state"));
99234da6 497 __tracepoint__init_urcu_sym();
9443a022
MD
498 if (tracepoint_dlopen_ptr->tracepoint_register_lib) {
499 tracepoint_dlopen_ptr->tracepoint_register_lib(__start___tracepoints_ptrs,
46c881a7
MD
500 __stop___tracepoints_ptrs -
501 __start___tracepoints_ptrs);
99234da6 502 }
b728d87e
MD
503}
504
c589eca2
MJ
505static void
506__tracepoints__ptrs_destroy(void)
507 lttng_ust_notrace __attribute__((destructor));
a8909ba5 508static void
46c881a7 509__tracepoints__ptrs_destroy(void)
b728d87e 510{
deb6e540 511 int ret;
51920067 512
46c881a7 513 if (--__tracepoint_ptrs_registered)
b728d87e 514 return;
9443a022
MD
515 if (!tracepoint_dlopen_ptr)
516 tracepoint_dlopen_ptr = &tracepoint_dlopen;
0fd0de10
FD
517 if (!tracepoint_destructors_syms_ptr)
518 tracepoint_destructors_syms_ptr = &tracepoint_destructors_syms;
9443a022
MD
519 if (tracepoint_dlopen_ptr->tracepoint_unregister_lib)
520 tracepoint_dlopen_ptr->tracepoint_unregister_lib(__start___tracepoints_ptrs);
0fd0de10
FD
521 if (tracepoint_dlopen_ptr->liblttngust_handle
522 && tracepoint_destructors_syms_ptr->tracepoint_get_destructors_state
523 && tracepoint_destructors_syms_ptr->tracepoint_get_destructors_state()
664ccf24 524 && !__tracepoint_ptrs_registered) {
9443a022 525 ret = dlclose(tracepoint_dlopen_ptr->liblttngust_handle);
76aca78d
MD
526 if (ret) {
527 fprintf(stderr, "Error (%d) in dlclose\n", ret);
528 abort();
529 }
9443a022 530 memset(tracepoint_dlopen_ptr, 0, sizeof(*tracepoint_dlopen_ptr));
deb6e540 531 }
b728d87e
MD
532}
533
46c881a7
MD
534#else /* TRACEPOINT_DEFINE */
535
536#define _DEFINE_TRACEPOINT(_provider, _name, _args)
537
538#endif /* #else TRACEPOINT_DEFINE */
deb6e540 539
b728d87e
MD
540#ifdef __cplusplus
541}
542#endif
543
544#endif /* _LTTNG_TRACEPOINT_H */
545
546/* The following declarations must be outside re-inclusion protection. */
547
c785c634
MD
548#ifndef TRACEPOINT_ENUM
549
550/*
551 * Tracepoint Enumerations
552 *
553 * The enumeration is a mapping between an integer, or range of integers, and
554 * a string. It can be used to have a more compact trace in cases where the
555 * possible values for a field are limited:
556 *
557 * An example:
558 *
559 * TRACEPOINT_ENUM(someproject_component, enumname,
560 * TP_ENUM_VALUES(
561 * ctf_enum_value("even", 0)
562 * ctf_enum_value("uneven", 1)
563 * ctf_enum_range("twoto4", 2, 4)
564 * ctf_enum_value("five", 5)
565 * )
566 * )
567 *
568 * Where "someproject_component" is the name of the component this enumeration
569 * belongs to and "enumname" identifies this enumeration. Inside the
570 * TP_ENUM_VALUES macro is the actual mapping. Each string value can map
571 * to either a single value with ctf_enum_value or a range of values
572 * with ctf_enum_range.
573 *
574 * Enumeration ranges may overlap, but the behavior is implementation-defined,
575 * each trace reader will handle overlapping as it wishes.
576 *
577 * That enumeration can then be used in a field inside the TP_FIELD macro using
578 * the following line:
579 *
580 * ctf_enum(someproject_component, enumname, enumtype, enumfield, enumval)
581 *
582 * Where "someproject_component" and "enumname" match those in the
583 * TRACEPOINT_ENUM, "enumtype" is a signed or unsigned integer type
584 * backing the enumeration, "enumfield" is the name of the field and
585 * "enumval" is the value.
586 */
587
588#define TRACEPOINT_ENUM(provider, name, values)
589
590#endif /* #ifndef TRACEPOINT_ENUM */
591
b728d87e
MD
592#ifndef TRACEPOINT_EVENT
593
594/*
595 * How to use the TRACEPOINT_EVENT macro:
596 *
597 * An example:
a60af3a5 598 *
b728d87e
MD
599 * TRACEPOINT_EVENT(someproject_component, event_name,
600 *
601 * * TP_ARGS takes from 0 to 10 "type, field_name" pairs *
602 *
603 * TP_ARGS(int, arg0, void *, arg1, char *, string, size_t, strlen,
604 * long *, arg4, size_t, arg4_len),
605 *
606 * * TP_FIELDS describes the event payload layout in the trace *
607 *
608 * TP_FIELDS(
a60af3a5 609 * * Integer, printed in base 10 *
b728d87e
MD
610 * ctf_integer(int, field_a, arg0)
611 *
a60af3a5 612 * * Integer, printed with 0x base 16 *
b728d87e
MD
613 * ctf_integer_hex(unsigned long, field_d, arg1)
614 *
c785c634
MD
615 * * Enumeration *
616 * ctf_enum(someproject_component, enum_name, int, field_e, arg0)
617 *
a60af3a5 618 * * Array Sequence, printed as UTF8-encoded array of bytes *
b728d87e
MD
619 * ctf_array_text(char, field_b, string, FIXED_LEN)
620 * ctf_sequence_text(char, field_c, string, size_t, strlen)
621 *
a60af3a5 622 * * String, printed as UTF8-encoded string *
b728d87e
MD
623 * ctf_string(field_e, string)
624 *
a60af3a5 625 * * Array sequence of signed integer values *
b728d87e
MD
626 * ctf_array(long, field_f, arg4, FIXED_LEN4)
627 * ctf_sequence(long, field_g, arg4, size_t, arg4_len)
628 * )
629 * )
630 *
631 * More detailed explanation:
632 *
633 * The name of the tracepoint is expressed as a tuple with the provider
634 * and name arguments.
635 *
636 * The provider and name should be a proper C99 identifier.
637 * The "provider" and "name" MUST follow these rules to ensure no
638 * namespace clash occurs:
639 *
640 * For projects (applications and libraries) for which an entity
641 * specific to the project controls the source code and thus its
642 * tracepoints (typically with a scope larger than a single company):
643 *
644 * either:
645 * project_component, event
646 * or:
647 * project, event
648 *
649 * Where "project" is the name of the project,
650 * "component" is the name of the project component (which may
651 * include several levels of sub-components, e.g.
652 * ...component_subcomponent_...) where the tracepoint is located
653 * (optional),
654 * "event" is the name of the tracepoint event.
655 *
656 * For projects issued from a single company wishing to advertise that
657 * the company controls the source code and thus the tracepoints, the
658 * "com_" prefix should be used:
659 *
660 * either:
661 * com_company_project_component, event
662 * or:
663 * com_company_project, event
664 *
665 * Where "company" is the name of the company,
666 * "project" is the name of the project,
667 * "component" is the name of the project component (which may
668 * include several levels of sub-components, e.g.
669 * ...component_subcomponent_...) where the tracepoint is located
670 * (optional),
671 * "event" is the name of the tracepoint event.
672 *
673 * the provider:event identifier is limited to 127 characters.
674 */
675
b728d87e 676#define TRACEPOINT_EVENT(provider, name, args, fields) \
deb6e540 677 _DECLARE_TRACEPOINT(provider, name, _TP_PARAMS(args)) \
b4f3bc52 678 _DEFINE_TRACEPOINT(provider, name, _TP_PARAMS(args))
b728d87e
MD
679
680#define TRACEPOINT_EVENT_CLASS(provider, name, args, fields)
681
682#define TRACEPOINT_EVENT_INSTANCE(provider, _template, name, args) \
deb6e540 683 _DECLARE_TRACEPOINT(provider, name, _TP_PARAMS(args)) \
b4f3bc52 684 _DEFINE_TRACEPOINT(provider, name, _TP_PARAMS(args))
b728d87e
MD
685
686#endif /* #ifndef TRACEPOINT_EVENT */
687
688#ifndef TRACEPOINT_LOGLEVEL
689
690/*
75c5ad79 691 * Tracepoint Loglevels
b728d87e
MD
692 *
693 * Typical use of these loglevels:
694 *
d8de1354 695 * The loglevels go from 0 to 14. Higher numbers imply the most
75c5ad79
MD
696 * verbosity (higher event throughput expected.
697 *
d8de1354
MD
698 * Loglevels 0 through 6, and loglevel 14, match syslog(3) loglevels
699 * semantic. Loglevels 7 through 13 offer more fine-grained selection of
700 * debug information.
75c5ad79 701 *
d8de1354 702 * TRACE_EMERG 0
75c5ad79
MD
703 * system is unusable
704 *
d8de1354 705 * TRACE_ALERT 1
75c5ad79
MD
706 * action must be taken immediately
707 *
d8de1354 708 * TRACE_CRIT 2
75c5ad79
MD
709 * critical conditions
710 *
d8de1354 711 * TRACE_ERR 3
75c5ad79
MD
712 * error conditions
713 *
d8de1354 714 * TRACE_WARNING 4
75c5ad79
MD
715 * warning conditions
716 *
d8de1354 717 * TRACE_NOTICE 5
75c5ad79
MD
718 * normal, but significant, condition
719 *
d8de1354 720 * TRACE_INFO 6
75c5ad79
MD
721 * informational message
722 *
d8de1354
MD
723 * TRACE_DEBUG_SYSTEM 7
724 * debug information with system-level scope (set of programs)
75c5ad79 725 *
d8de1354
MD
726 * TRACE_DEBUG_PROGRAM 8
727 * debug information with program-level scope (set of processes)
75c5ad79 728 *
d8de1354
MD
729 * TRACE_DEBUG_PROCESS 9
730 * debug information with process-level scope (set of modules)
75c5ad79 731 *
d8de1354
MD
732 * TRACE_DEBUG_MODULE 10
733 * debug information with module (executable/library) scope (set of units)
75c5ad79 734 *
d8de1354
MD
735 * TRACE_DEBUG_UNIT 11
736 * debug information with compilation unit scope (set of functions)
75c5ad79 737 *
d8de1354
MD
738 * TRACE_DEBUG_FUNCTION 12
739 * debug information with function-level scope
75c5ad79 740 *
d8de1354
MD
741 * TRACE_DEBUG_LINE 13
742 * debug information with line-level scope (TRACEPOINT_EVENT default)
902e1379 743 *
d8de1354 744 * TRACE_DEBUG 14
1e3b0059 745 * debug-level message
75c5ad79
MD
746 *
747 * Declare tracepoint loglevels for tracepoints. A TRACEPOINT_EVENT
748 * should be declared prior to the the TRACEPOINT_LOGLEVEL for a given
853cda88
MD
749 * tracepoint name. The first field is the provider name, the second
750 * field is the name of the tracepoint, the third field is the loglevel
751 * name.
b728d87e
MD
752 *
753 * TRACEPOINT_LOGLEVEL(< [com_company_]project[_component] >, < event >,
754 * < loglevel_name >)
755 *
75c5ad79
MD
756 * The TRACEPOINT_PROVIDER must be already declared before declaring a
757 * TRACEPOINT_LOGLEVEL.
b728d87e
MD
758 */
759
882a56d7 760enum {
d8de1354
MD
761 TRACE_EMERG = 0,
762 TRACE_ALERT = 1,
763 TRACE_CRIT = 2,
764 TRACE_ERR = 3,
765 TRACE_WARNING = 4,
766 TRACE_NOTICE = 5,
767 TRACE_INFO = 6,
768 TRACE_DEBUG_SYSTEM = 7,
769 TRACE_DEBUG_PROGRAM = 8,
770 TRACE_DEBUG_PROCESS = 9,
771 TRACE_DEBUG_MODULE = 10,
772 TRACE_DEBUG_UNIT = 11,
773 TRACE_DEBUG_FUNCTION = 12,
774 TRACE_DEBUG_LINE = 13,
775 TRACE_DEBUG = 14,
882a56d7
MD
776};
777
05ceaafd 778#define TRACEPOINT_LOGLEVEL(provider, name, loglevel)
b728d87e
MD
779
780#endif /* #ifndef TRACEPOINT_LOGLEVEL */
6ddc916d
MD
781
782#ifndef TRACEPOINT_MODEL_EMF_URI
783
784#define TRACEPOINT_MODEL_EMF_URI(provider, name, uri)
785
786#endif /* #ifndef TRACEPOINT_MODEL_EMF_URI */
This page took 0.070577 seconds and 4 git commands to generate.