tracepoint: Remove TRACEPOINT_LIB declaration
[lttng-ust.git] / include / ust / tracepoint.h
CommitLineData
27b052e3
PMF
1#ifndef _UST_TRACEPOINT_H
2#define _UST_TRACEPOINT_H
f99be407
PMF
3
4/*
e9090899 5 * Copyright (C) 2008-2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
1f8b0dff 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
b7ea1a1c 28#include <urcu-bp.h>
b0c4126f 29#include <urcu/list.h>
f99be407 30
b979b346 31struct tracepoint_probe {
9dec086e
NC
32 void *func;
33 void *data;
34};
35
f99be407
PMF
36struct tracepoint {
37 const char *name; /* Tracepoint name */
f36c12ab 38 char state; /* State. */
b979b346 39 struct tracepoint_probe *probes;
f218ff28 40};
f99be407 41
cc7b66ba
MD
42/*
43 * Tracepoints should be added to the instrumented code using the
44 * "tracepoint()" macro.
45 */
46#define tracepoint(name, args...) __trace_##name(args)
47
81614639 48/*
1fcf7ad7
MD
49 * These weak symbols, the constructor, and destructor take care of
50 * registering only _one_ instance of the tracepoints per shared-ojbect
51 * (or for the whole main program).
52 * The dummy tracepoint entry ensures that the start/stop pointers get
53 * initialized by the linker when no tracepoints are present in a
54 * shared-object (or main program).
81614639 55 */
1fcf7ad7
MD
56extern struct tracepoint * const __start___tracepoints_ptrs[]
57 __attribute__((weak, visibility("hidden")));
58extern struct tracepoint * const __stop___tracepoints_ptrs[]
59 __attribute__((weak, visibility("hidden")));
60int __tracepoint_registered
61 __attribute__((weak, visibility("hidden")));
62
63static void __attribute__((constructor)) __tracepoints__init(void)
64{
65 if (__tracepoint_registered++)
66 return;
67 tracepoint_register_lib(__start___tracepoints_ptrs,
68 __stop___tracepoints_ptrs -
69 __start___tracepoints_ptrs);
70}
71
72static void __attribute__((destructor)) __tracepoints__destroy(void)
73{
74 if (--__tracepoint_registered)
75 return;
76 tracepoint_unregister_lib(__start___tracepoints_ptrs);
77}
f99be407
PMF
78
79/*
80 * it_func[0] is never NULL because there is at least one element in the array
81 * when the array itself is non NULL.
82 */
83#define __DO_TRACE(tp, proto, args) \
84 do { \
b979b346
MD
85 struct tracepoint_probe *__tp_it_probe_ptr; \
86 void *__tp_it_func; \
87 void *__tp_cb_data; \
f99be407 88 \
9dec086e 89 rcu_read_lock(); \
b979b346
MD
90 __tp_it_probe_ptr = rcu_dereference((tp)->probes); \
91 if (__tp_it_probe_ptr) { \
f99be407 92 do { \
b979b346
MD
93 __tp_it_func = __tp_it_probe_ptr->func; \
94 __tp_cb_data = __tp_it_probe_ptr->data; \
95 ((void(*)(proto))__tp_it_func)(args); \
96 } while ((++__tp_it_probe_ptr)->func); \
f99be407 97 } \
9dec086e 98 rcu_read_unlock(); \
f99be407
PMF
99 } while (0)
100
81614639
MD
101#define TP_PARAMS(args...) args
102#define TP_PROTO(args...) args
103#define TP_ARGS(args...) args
104
f36c12ab 105#define __CHECK_TRACE(name, proto, args) \
f99be407 106 do { \
f36c12ab
MD
107 if (unlikely(__tracepoint_##name.state)) \
108 __DO_TRACE(&__tracepoint_##name, \
109 TP_PROTO(proto), TP_ARGS(args)); \
f99be407
PMF
110 } while (0)
111
112/*
113 * Make sure the alignment of the structure in the __tracepoints section will
114 * not add unwanted padding between the beginning of the section and the
115 * structure. Force alignment to the same alignment as the section start.
f99be407 116 */
8d71973c 117#define __DECLARE_TRACEPOINT(name, proto, args, data_proto, data_args) \
f99be407 118 extern struct tracepoint __tracepoint_##name; \
cc7b66ba 119 static inline void __trace_##name(proto) \
f99be407 120 { \
f36c12ab 121 __CHECK_TRACE(name, TP_PROTO(data_proto), \
9dec086e 122 TP_ARGS(data_args)); \
f99be407 123 } \
9dec086e 124 static inline int \
cc7b66ba 125 __register_trace_##name(void (*probe)(data_proto), void *data) \
f99be407 126 { \
81614639 127 return __tracepoint_probe_register(#name, (void *)probe,\
9dec086e
NC
128 data); \
129 \
f99be407 130 } \
9dec086e 131 static inline int \
cc7b66ba 132 __unregister_trace_##name(void (*probe)(data_proto), void *data)\
f99be407 133 { \
81614639 134 return __tracepoint_probe_unregister(#name, (void *)probe, \
9dec086e 135 data); \
f99be407
PMF
136 }
137
332b3a18 138/*
81614639 139 * The need for the _DECLARE_TRACEPOINT_NOARGS() is to handle the prototype
377d33ed 140 * (void). "void" is a special value in a function prototype and can
8d71973c 141 * not be combined with other arguments. Since the DECLARE_TRACEPOINT()
377d33ed
MD
142 * macro adds a data element at the beginning of the prototype,
143 * we need a way to differentiate "(void *data, proto)" from
144 * "(void *data, void)". The second prototype is invalid.
145 *
8d71973c 146 * DECLARE_TRACEPOINT_NOARGS() passes "void" as the tracepoint prototype
b979b346 147 * and "void *__tp_cb_data" as the callback prototype.
377d33ed 148 *
8d71973c 149 * DECLARE_TRACEPOINT() passes "proto" as the tracepoint protoype and
b979b346 150 * "void *__tp_cb_data, proto" as the callback prototype.
377d33ed 151 */
81614639
MD
152#define _DECLARE_TRACEPOINT_NOARGS(name) \
153 __DECLARE_TRACEPOINT(name, void, , void *__tp_cb_data, __tp_cb_data)
377d33ed 154
81614639
MD
155#define _DECLARE_TRACEPOINT(name, proto, args) \
156 __DECLARE_TRACEPOINT(name, TP_PARAMS(proto), TP_PARAMS(args), \
157 TP_PARAMS(void *__tp_cb_data, proto), \
158 TP_PARAMS(__tp_cb_data, args))
9dec086e 159
f99be407 160/*
81614639
MD
161 * __tracepoints_ptrs section is not const (read-only) to let the linker update
162 * the pointer, allowing PIC code.
f99be407 163 */
81614639
MD
164#define _DEFINE_TRACEPOINT(name) \
165 static const char __tpstrtab_##name[] \
166 __attribute__((section("__tracepoints_strings"))) = #name; \
167 struct tracepoint __tracepoint_##name \
168 __attribute__((section("__tracepoints"))) = \
169 { __tpstrtab_##name, 0, NULL }; \
170 static struct tracepoint * __tracepoint_ptr_##name \
171 __attribute__((used, section("__tracepoints_ptrs"))) = \
172 &__tracepoint_##name;
f99be407 173
f99be407 174
81614639
MD
175#define __register_tracepoint(name, probe, data) \
176 __register_trace_##name(probe, data)
177#define __unregister_tracepoint(name, probe, data) \
178 __unregister_trace_##name(probe, data)
f99be407 179
81614639
MD
180/*
181 * Connect a probe to a tracepoint.
182 * Internal API.
183 */
184extern
185int __tracepoint_probe_register(const char *name, void *probe, void *data);
f99be407
PMF
186
187/*
81614639
MD
188 * Disconnect a probe from a tracepoint.
189 * Internal API.
f99be407 190 */
81614639
MD
191extern
192int __tracepoint_probe_unregister(const char *name, void *probe, void *data);
f99be407 193
81614639
MD
194extern
195int tracepoint_register_lib(struct tracepoint * const *tracepoints_start,
196 int tracepoints_count);
197extern
198int tracepoint_unregister_lib(struct tracepoint * const *tracepoints_start);
872037bb 199
22d72948 200
8d71973c 201#ifndef TRACEPOINT_EVENT
22d72948 202/*
d75775a6
MD
203 * Usage of the TRACEPOINT_EVENT macro:
204 *
205 * In short, an example:
206 *
d5001b43 207 * TRACEPOINT_EVENT(< [com_company_]project_[component_]event >,
d75775a6
MD
208 * TP_PROTO(int arg0, void *arg1, char *string, size_t strlen,
209 * long *arg4, size_t arg4_len),
210 * TP_ARGS(arg0, arg1, string, strlen, arg4, arg4_len),
211 * TP_FIELDS(
212 *
213 * * Integer, printed in base 10 *
214 * ctf_integer(int, field_a, arg0)
215 *
216 * * Integer, printed with 0x base 16 *
217 * ctf_integer_hex(unsigned long, field_d, arg1)
218 *
219 * * Array Sequence, printed as UTF8-encoded array of bytes *
220 * ctf_array_text(char, field_b, string, FIXED_LEN)
221 * ctf_sequence_text(char, field_c, string, size_t, strlen)
222 *
223 * * String, printed as UTF8-encoded string *
224 * ctf_string(field_e, string)
225 *
226 * * Array sequence of signed integer values *
227 * ctf_array(long, field_f, arg4, FIXED_LEN4)
228 * ctf_sequence(long, field_g, arg4, size_t, arg4_len)
229 * )
230 * )
231 *
232 * In more detail:
22d72948 233 *
0a42beb6
MD
234 * We define a tracepoint, its arguments, and its 'fast binary record'
235 * layout.
22d72948 236 *
0a42beb6 237 * Firstly, name your tracepoint via TRACEPOINT_EVENT(name,
22d72948 238 *
0a42beb6
MD
239 * The "name" MUST follow these rules to ensure no namespace clash
240 * occurs:
22d72948 241 *
0a42beb6
MD
242 * For projects (applications and libraries) for which an entity
243 * specific to the project controls the source code and thus its
244 * tracepoints (typically with a scope larger than a single company):
22d72948 245 *
0a42beb6
MD
246 * either:
247 * project_component_event
248 * or:
249 * project_event
250 *
251 * Where "project" is the name of the project,
d5001b43
MD
252 * "component" is the name of the project component (which may
253 * include several levels of sub-components, e.g.
254 * ...component_subcomponent_...) where the tracepoint is located
255 * (optional),
0a42beb6
MD
256 * "event" is the name of the tracepoint event.
257 *
258 * For projects issued from a single company wishing to advertise that
259 * the company controls the source code and thus the tracepoints, the
260 * "com_" prefix should be used:
261 *
262 * either:
263 * com_company_project_component_event
264 * or:
265 * com_company_project_event
266 *
267 * Where "company" is the name of the company,
268 * "project" is the name of the project,
d5001b43
MD
269 * "component" is the name of the project component (which may
270 * include several levels of sub-components, e.g.
271 * ...component_subcomponent_...) where the tracepoint is located
272 * (optional),
0a42beb6
MD
273 * "event" is the name of the tracepoint event.
274 *
275 *
276 * As an example, let's consider a user-space application "someproject"
277 * that would have an internal thread scheduler:
278 *
279 * TRACEPOINT_EVENT(someproject_sched_switch,
22d72948
NC
280 *
281 * *
282 * * A function has a regular function arguments
283 * * prototype, declare it via TP_PROTO():
284 * *
285 *
286 * TP_PROTO(struct rq *rq, struct task_struct *prev,
287 * struct task_struct *next),
288 *
289 * *
290 * * Define the call signature of the 'function'.
291 * * (Design sidenote: we use this instead of a
292 * * TP_PROTO1/TP_PROTO2/TP_PROTO3 ugliness.)
293 * *
294 *
295 * TP_ARGS(rq, prev, next),
296 *
297 * *
298 * * Fast binary tracing: define the trace record via
81614639 299 * * TP_FIELDS(). You can think about it like a
22d72948
NC
300 * * regular C structure local variable definition.
301 * *
302 * * This is how the trace record is structured and will
303 * * be saved into the ring buffer. These are the fields
304 * * that will be exposed to readers.
305 * *
0a42beb6 306 * * ctf_integer(pid_t, prev_pid, prev->pid) is equivalent
81614639 307 * * to a standard declaraton:
22d72948 308 * *
81614639 309 * * pid_t prev_pid;
22d72948 310 * *
81614639 311 * * followed by an assignment:
22d72948 312 * *
81614639 313 * * prev_pid = prev->pid;
22d72948 314 * *
0a42beb6 315 * * ctf_array(char, prev_comm, prev->comm, TASK_COMM_LEN) is
81614639 316 * * equivalent to:
22d72948 317 * *
81614639 318 * * char prev_comm[TASK_COMM_LEN];
22d72948 319 * *
81614639 320 * * followed by an assignment:
22d72948 321 * *
81614639 322 * * memcpy(prev_comm, prev->comm, TASK_COMM_LEN);
22d72948
NC
323 * *
324 *
81614639 325 * TP_FIELDS(
0a42beb6
MD
326 * ctf_array(char, prev_comm, prev->comm, TASK_COMM_LEN)
327 * ctf_integer(pid_t, prev_pid, prev->pid)
328 * ctf_integer(int, prev_prio, prev->prio)
329 * ctf_array(char, next_comm, next->comm, TASK_COMM_LEN)
330 * ctf_integer(pid_t, next_pid, next->pid)
331 * ctf_integer(int, next_prio, next->prio)
22d72948 332 * )
0a42beb6 333 * )
22d72948
NC
334 */
335
81614639
MD
336#define TRACEPOINT_EVENT(name, proto, args, fields) \
337 _DECLARE_TRACEPOINT(name, TP_PARAMS(proto), TP_PARAMS(args))
0c0686ee 338
81614639
MD
339#define TRACEPOINT_EVENT_CLASS(name, proto, args, fields)
340#define TRACEPOINT_EVENT_INSTANCE(template, name, proto, args) \
341 _DECLARE_TRACEPOINT(name, TP_PARAMS(proto), TP_PARAMS(args))
0c0686ee 342
81614639
MD
343/*
344 * Declaration of tracepoints that take 0 argument.
345 */
346#define TRACEPOINT_EVENT_NOARGS(name, fields) \
347 _DECLARE_TRACEPOINT_NOARGS(name)
0c0686ee 348
81614639
MD
349#define TRACEPOINT_EVENT_CLASS_NOARGS(name, fields)
350#define TRACEPOINT_EVENT_INSTANCE_NOARGS(template, name) \
351 _DECLARE_TRACEPOINT_NOARGS(name)
0c0686ee 352
81614639 353#endif /* #ifndef TRACEPOINT_EVENT */
22d72948 354
27b052e3 355#endif /* _UST_TRACEPOINT_H */
This page took 0.046025 seconds and 4 git commands to generate.