Installed headers relicensing and cleanup
[lttng-ust.git] / include / lttng / tracepoint.h
CommitLineData
b728d87e
MD
1#ifndef _LTTNG_TRACEPOINT_H
2#define _LTTNG_TRACEPOINT_H
3
4/*
5 * Copyright (c) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 *
7 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
8 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
9 *
10 * Permission is hereby granted to use or copy this program
11 * for any purpose, provided the above notices are retained on all copies.
12 * Permission to modify the code and to distribute modified code is granted,
13 * provided the above notices are retained, and a notice that the code was
14 * modified is included with the above copyright notice.
15 */
16
17#include <urcu-bp.h>
18#include <tracepoint-types.h>
19#include <urcu/compiler.h>
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25#define tracepoint(provider, name, ...) \
26 do { \
27 if (caa_unlikely(__tracepoint_##provider##_##name.state)) \
28 __tracepoint_##provider##_##name(__VA_ARGS__); \
29 } while (0)
30
31#define TP_ARGS(...) __VA_ARGS__
32
33/*
34 * TP_ARGS takes tuples of type, argument separated by a comma.
35 * It can take up to 10 tuples (which means that less than 10 tuples is
36 * fine too).
37 * Each tuple is also separated by a comma.
38 */
39#define _TP_COMBINE_TOKENS1(_tokena, _tokenb) _tokena##_tokenb
40#define _TP_COMBINE_TOKENS(_tokena, _tokenb) _TP_COMBINE_TOKENS1(_tokena, _tokenb)
41
42/* _TP_EXVAR* extract the vars names. */
43#define _TP_EXVAR0()
44#define _TP_EXVAR2(a,b) b
45#define _TP_EXVAR4(a,b,c,d) b,d
46#define _TP_EXVAR6(a,b,c,d,e,f) b,d,f
47#define _TP_EXVAR8(a,b,c,d,e,f,g,h) b,d,f,h
48#define _TP_EXVAR10(a,b,c,d,e,f,g,h,i,j) b,d,f,h,j
49#define _TP_EXVAR12(a,b,c,d,e,f,g,h,i,j,k,l) b,d,f,h,j,l
50#define _TP_EXVAR14(a,b,c,d,e,f,g,h,i,j,k,l,m,n) b,d,f,h,j,l,n
51#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
52#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
53#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
54
55#define _TP_EXDATA_VAR0() __tp_data
56#define _TP_EXDATA_VAR2(a,b) __tp_data,b
57#define _TP_EXDATA_VAR4(a,b,c,d) __tp_data,b,d
58#define _TP_EXDATA_VAR6(a,b,c,d,e,f) __tp_data,b,d,f
59#define _TP_EXDATA_VAR8(a,b,c,d,e,f,g,h) __tp_data,b,d,f,h
60#define _TP_EXDATA_VAR10(a,b,c,d,e,f,g,h,i,j) __tp_data,b,d,f,h,j
61#define _TP_EXDATA_VAR12(a,b,c,d,e,f,g,h,i,j,k,l) __tp_data,b,d,f,h,j,l
62#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
63#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
64#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
65#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
66
67/* _TP_EXPROTO* extract tuples of type, var */
68#define _TP_EXPROTO0()
69#define _TP_EXPROTO2(a,b) a b
70#define _TP_EXPROTO4(a,b,c,d) a b,c d
71#define _TP_EXPROTO6(a,b,c,d,e,f) a b,c d,e f
72#define _TP_EXPROTO8(a,b,c,d,e,f,g,h) a b,c d,e f,g h
73#define _TP_EXPROTO10(a,b,c,d,e,f,g,h,i,j) a b,c d,e f,g h,i j
74#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
75#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
76#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
77#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
78#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
79
80#define _TP_EXDATA_PROTO0() void *__tp_data
81#define _TP_EXDATA_PROTO2(a,b) void *__tp_data,a b
82#define _TP_EXDATA_PROTO4(a,b,c,d) void *__tp_data,a b,c d
83#define _TP_EXDATA_PROTO6(a,b,c,d,e,f) void *__tp_data,a b,c d,e f
84#define _TP_EXDATA_PROTO8(a,b,c,d,e,f,g,h) void *__tp_data,a b,c d,e f,g h
85#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
86#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
87#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
88#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
89#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
90#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
91
92/* Preprocessor trick to count arguments. Inspired from sdt.h. */
93#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)
94#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
95#define _TP_PROTO_N(N, ...) _TP_PARAMS(TP_COMBINE_TOKENS(_TP_SPLIT, N)(__VA_ARGS__))
96#define _TP_VARS_N(N, ...) _TP_PARAMS(TP_COMBINE_TOKENS(_TP_EVEN, N)(__VA_ARGS__))
97#define _TP_DATA_PROTO_N(N, ...) _TP_PARAMS(TP_COMBINE_TOKENS(_TP_SPLIT_DATA, N)(__VA_ARGS__))
98#define _TP_DATA_VARS_N(N, ...) _TP_PARAMS(TP_COMBINE_TOKENS(_TP_EVEN_DATA, N)(__VA_ARGS__))
99#define _TP_ARGS_PROTO(...) _TP_PROTO_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
100#define _TP_ARGS_VARS(...) _TP_VARS_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
101#define _TP_ARGS_DATA_PROTO(...) _TP_DATA_PROTO_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
102#define _TP_ARGS_DATA_VARS(...) _TP_DATA_VARS_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
103#define _TP_PARAMS(...) __VA_ARGS__
104
105#define _DECLARE_TRACEPOINT(provider, name, ...) \
106static inline void __tracepoint_##provider##_##name(_TP_ARGS_DATA_PROTO(__VA_ARGS__)) \
107{ \
108 struct tracepoint_probe *__tp_probe; \
109 \
110 rcu_read_lock_bp(); \
111 p = rcu_dereference(__tracepoint_##provider##_##name.probes); \
112 if (caa_unlikely(!p)) \
113 goto end; \
114 do { \
115 void *__tp_data = p->priv; \
116 \
117 (*p->callback)(_TP_ARGS_DATA_VARS(__VA_ARGS__)); \
118 __tp_probe++; \
119 } while (*__tp_probe); \
120end: \
121 rcu_read_unlock_bp(); \
122} \
123static inline void __tracepoint_register_##provider##_##name(char *name, \
124 void *callback, void *priv) \
125{ \
126 __tracepoint_probe_register(name, callback, data); \
127} \
128static inline void __tracepoint_unregister_##provider##_##name(char *name, \
129 void *callback, void *priv) \
130{ \
131 __tracepoint_probe_unregister(name, callback, data); \
132}
133
134/*
135 * Note: to allow PIC code, we need to allow the linker to update the pointers
136 * in the __tracepoints_ptrs section.
137 * Therefore, this section is _not_ const (read-only).
138 */
139#define _DEFINE_TRACEPOINT(provider, name) \
140 static const char __tp_strtab_##provider##___##name[] \
141 __attribute__((section("__tracepoints_strings"))) = \
142 #provider ":" #name; \
143 struct tracepoint __tracepoint_##provider##___##name \
144 __attribute__((section("__tracepoints"))) = \
145 { __tp_strtab_##provider##___##name, 0, NULL }; \
146 static struct tracepoint * __tracepoint_ptr_##provider##___##name \
147 __attribute__((used, section("__tracepoints_ptrs"))) = \
148 &__tracepoint_##provider##___##name;
149
150extern int __tracepoint_probe_register(const char *name, void *callback, void *priv);
151extern int __tracepoint_probe_unregister(const char *name, void *callback, void *priv);
152extern int tracepoint_register_lib(struct tracepoint * const *tracepoints_start,
153 int tracepoints_count);
154extern int tracepoint_unregister_lib(struct tracepoint * const *tracepoints_start);
155
156/*
157 * These weak symbols, the constructor, and destructor take care of
158 * registering only _one_ instance of the tracepoints per shared-ojbect
159 * (or for the whole main program).
160 */
161extern struct tracepoint * const __start___tracepoints_ptrs[]
162 __attribute__((weak, visibility("hidden")));
163extern struct tracepoint * const __stop___tracepoints_ptrs[]
164 __attribute__((weak, visibility("hidden")));
165int __tracepoint_registered
166 __attribute__((weak, visibility("hidden")));
167
168static void __attribute__((constructor)) __tracepoints__init(void)
169{
170 if (__tracepoint_registered++)
171 return;
172 tracepoint_register_lib(__start___tracepoints_ptrs,
173 __stop___tracepoints_ptrs -
174 __start___tracepoints_ptrs);
175}
176
177static void __attribute__((destructor)) __tracepoints__destroy(void)
178{
179 if (--__tracepoint_registered)
180 return;
181 tracepoint_unregister_lib(__start___tracepoints_ptrs);
182}
183
184#ifdef __cplusplus
185}
186#endif
187
188#endif /* _LTTNG_TRACEPOINT_H */
189
190/* The following declarations must be outside re-inclusion protection. */
191
192#ifndef TRACEPOINT_EVENT
193
194/*
195 * How to use the TRACEPOINT_EVENT macro:
196 *
197 * An example:
198 *
199 * TRACEPOINT_EVENT(someproject_component, event_name,
200 *
201 * * TP_ARGS takes from 0 to 10 "type, field_name" pairs *
202 *
203 * TP_ARGS(int, arg0, void *, arg1, char *, string, size_t, strlen,
204 * long *, arg4, size_t, arg4_len),
205 *
206 * * TP_FIELDS describes the event payload layout in the trace *
207 *
208 * TP_FIELDS(
209 * * Integer, printed in base 10 *
210 * ctf_integer(int, field_a, arg0)
211 *
212 * * Integer, printed with 0x base 16 *
213 * ctf_integer_hex(unsigned long, field_d, arg1)
214 *
215 * * Array Sequence, printed as UTF8-encoded array of bytes *
216 * ctf_array_text(char, field_b, string, FIXED_LEN)
217 * ctf_sequence_text(char, field_c, string, size_t, strlen)
218 *
219 * * String, printed as UTF8-encoded string *
220 * ctf_string(field_e, string)
221 *
222 * * Array sequence of signed integer values *
223 * ctf_array(long, field_f, arg4, FIXED_LEN4)
224 * ctf_sequence(long, field_g, arg4, size_t, arg4_len)
225 * )
226 * )
227 *
228 * More detailed explanation:
229 *
230 * The name of the tracepoint is expressed as a tuple with the provider
231 * and name arguments.
232 *
233 * The provider and name should be a proper C99 identifier.
234 * The "provider" and "name" MUST follow these rules to ensure no
235 * namespace clash occurs:
236 *
237 * For projects (applications and libraries) for which an entity
238 * specific to the project controls the source code and thus its
239 * tracepoints (typically with a scope larger than a single company):
240 *
241 * either:
242 * project_component, event
243 * or:
244 * project, event
245 *
246 * Where "project" is the name of the project,
247 * "component" is the name of the project component (which may
248 * include several levels of sub-components, e.g.
249 * ...component_subcomponent_...) where the tracepoint is located
250 * (optional),
251 * "event" is the name of the tracepoint event.
252 *
253 * For projects issued from a single company wishing to advertise that
254 * the company controls the source code and thus the tracepoints, the
255 * "com_" prefix should be used:
256 *
257 * either:
258 * com_company_project_component, event
259 * or:
260 * com_company_project, event
261 *
262 * Where "company" is the name of the company,
263 * "project" is the name of the project,
264 * "component" is the name of the project component (which may
265 * include several levels of sub-components, e.g.
266 * ...component_subcomponent_...) where the tracepoint is located
267 * (optional),
268 * "event" is the name of the tracepoint event.
269 *
270 * the provider:event identifier is limited to 127 characters.
271 */
272
273
274#define TRACEPOINT_EVENT(provider, name, args, fields) \
275 _DECLARE_TRACEPOINT(provider, name, _TP_PARAMS(args))
276
277#define TRACEPOINT_EVENT_CLASS(provider, name, args, fields)
278
279#define TRACEPOINT_EVENT_INSTANCE(provider, _template, name, args) \
280 _DECLARE_TRACEPOINT(provider, name, _TP_PARAMS(args))
281
282#endif /* #ifndef TRACEPOINT_EVENT */
283
284#ifndef TRACEPOINT_LOGLEVEL
285
286/*
287 * Tracepoint Loglevel Declaration Facility
288 *
289 * This is a place-holder the tracepoint loglevel declaration,
290 * overridden by the tracer implementation.
291 *
292 * Typical use of these loglevels:
293 *
294 * 1) Declare the mapping between loglevel names and an integer values
295 * within TRACEPOINT_LOGLEVEL_ENUM, using TP_LOGLEVEL for each tuple.
296 * Do _NOT_ add comma (,) nor semicolon (;) between the
297 * TRACEPOINT_LOGLEVEL_ENUM entries. Do _NOT_ add comma (,) nor
298 * semicolon (;) after the TRACEPOINT_LOGLEVEL_ENUM declaration. The
299 * name should be a proper C99 identifier.
300 *
301 * TRACEPOINT_LOGLEVEL_ENUM(
302 * TP_LOGLEVEL( < loglevel_name >, < value > )
303 * TP_LOGLEVEL( < loglevel_name >, < value > )
304 * ...
305 * )
306 *
307 * e.g.:
308 *
309 * TRACEPOINT_LOGLEVEL_ENUM(
310 * TP_LOGLEVEL(LOG_EMERG, 0)
311 * TP_LOGLEVEL(LOG_ALERT, 1)
312 * TP_LOGLEVEL(LOG_CRIT, 2)
313 * TP_LOGLEVEL(LOG_ERR, 3)
314 * TP_LOGLEVEL(LOG_WARNING, 4)
315 * TP_LOGLEVEL(LOG_NOTICE, 5)
316 * TP_LOGLEVEL(LOG_INFO, 6)
317 * TP_LOGLEVEL(LOG_DEBUG, 7)
318 * )
319 *
320 * 2) Then, declare tracepoint loglevels for tracepoints. A
321 * TRACEPOINT_EVENT should be declared prior to the the
322 * TRACEPOINT_LOGLEVEL for a given tracepoint name. The first field
323 * is the name of the tracepoint, the second field is the loglevel
324 * name.
325 *
326 * TRACEPOINT_LOGLEVEL(< [com_company_]project[_component] >, < event >,
327 * < loglevel_name >)
328 *
329 * The TRACEPOINT_PROVIDER must be defined when declaring a
330 * TRACEPOINT_LOGLEVEL_ENUM and TRACEPOINT_LOGLEVEL. The tracepoint
331 * loglevel enumeration apply to the entire TRACEPOINT_PROVIDER. Only one
332 * tracepoint loglevel enumeration should be declared per tracepoint
333 * provider.
334 */
335
336#define TRACEPOINT_LOGLEVEL_ENUM()
337#define TRACEPOINT_LOGLEVEL(name, loglevel)
338
339#endif /* #ifndef TRACEPOINT_LOGLEVEL */
This page took 0.034796 seconds and 4 git commands to generate.