Commit | Line | Data |
---|---|---|
a90917c3 MD |
1 | #ifndef _LTTNG_EVENTS_H |
2 | #define _LTTNG_EVENTS_H | |
11b5a3c2 | 3 | |
4e3c1b9b | 4 | /* |
a90917c3 | 5 | * lttng-events.h |
4e3c1b9b | 6 | * |
4e3c1b9b | 7 | * Holds LTTng per-session event registry. |
17baffe2 | 8 | * |
886d51a3 MD |
9 | * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
10 | * | |
11 | * This library is free software; you can redistribute it and/or | |
12 | * modify it under the terms of the GNU Lesser General Public | |
13 | * License as published by the Free Software Foundation; only | |
14 | * version 2.1 of the License. | |
15 | * | |
16 | * This library is distributed in the hope that it will be useful, | |
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
19 | * Lesser General Public License for more details. | |
20 | * | |
21 | * You should have received a copy of the GNU Lesser General Public | |
22 | * License along with this library; if not, write to the Free Software | |
23 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
4e3c1b9b MD |
24 | */ |
25 | ||
3a523f5b | 26 | #include <linux/version.h> |
4e3c1b9b | 27 | #include <linux/list.h> |
d6d808f3 | 28 | #include <linux/kprobes.h> |
d83004aa | 29 | #include <linux/kref.h> |
a864fb02 | 30 | #include "wrapper/uuid.h" |
e8951e63 | 31 | #include "lttng-abi.h" |
6dccd6c1 | 32 | #include "lttng-abi-old.h" |
4e3c1b9b | 33 | |
06254b0f | 34 | #define lttng_is_signed_type(type) (((type)(-1)) < 0) |
9e7e4892 | 35 | |
a90917c3 MD |
36 | struct lttng_channel; |
37 | struct lttng_session; | |
d83004aa | 38 | struct lttng_metadata_cache; |
1c25284c | 39 | struct lib_ring_buffer_ctx; |
ba1f5986 | 40 | struct perf_event; |
833ad6a0 | 41 | struct perf_event_attr; |
3b731ab1 | 42 | struct lib_ring_buffer_config; |
4e3c1b9b | 43 | |
c0edae1d MD |
44 | /* Type description */ |
45 | ||
46 | /* Update the astract_types name table in lttng-types.c along with this enum */ | |
47 | enum abstract_types { | |
48 | atype_integer, | |
49 | atype_enum, | |
50 | atype_array, | |
51 | atype_sequence, | |
52 | atype_string, | |
53 | NR_ABSTRACT_TYPES, | |
54 | }; | |
55 | ||
56 | /* Update the string_encodings name table in lttng-types.c along with this enum */ | |
57 | enum lttng_string_encodings { | |
e0a7a7c4 MD |
58 | lttng_encode_none = 0, |
59 | lttng_encode_UTF8 = 1, | |
60 | lttng_encode_ASCII = 2, | |
c0edae1d MD |
61 | NR_STRING_ENCODINGS, |
62 | }; | |
63 | ||
d83004aa JD |
64 | enum channel_type { |
65 | PER_CPU_CHANNEL, | |
66 | METADATA_CHANNEL, | |
67 | }; | |
68 | ||
c0edae1d MD |
69 | struct lttng_enum_entry { |
70 | unsigned long long start, end; /* start and end are inclusive */ | |
71 | const char *string; | |
72 | }; | |
73 | ||
43803cf2 MD |
74 | #define __type_integer(_type, _size, _alignment, _signedness, \ |
75 | _byte_order, _base, _encoding) \ | |
c099397a MD |
76 | { \ |
77 | .atype = atype_integer, \ | |
78 | .u.basic.integer = \ | |
79 | { \ | |
43803cf2 MD |
80 | .size = (_size) ? : sizeof(_type) * CHAR_BIT, \ |
81 | .alignment = (_alignment) ? : lttng_alignof(_type) * CHAR_BIT, \ | |
82 | .signedness = (_signedness) >= 0 ? (_signedness) : lttng_is_signed_type(_type), \ | |
83 | .reverse_byte_order = _byte_order != __BYTE_ORDER, \ | |
e0a7a7c4 | 84 | .base = _base, \ |
64c796d8 | 85 | .encoding = lttng_encode_##_encoding, \ |
c099397a MD |
86 | }, \ |
87 | } \ | |
88 | ||
89 | struct lttng_integer_type { | |
90 | unsigned int size; /* in bits */ | |
91 | unsigned short alignment; /* in bits */ | |
9cccf98a MD |
92 | unsigned int signedness:1, |
93 | reverse_byte_order:1; | |
e0a7a7c4 MD |
94 | unsigned int base; /* 2, 8, 10, 16, for pretty print */ |
95 | enum lttng_string_encodings encoding; | |
c099397a MD |
96 | }; |
97 | ||
98 | union _lttng_basic_type { | |
99 | struct lttng_integer_type integer; | |
100 | struct { | |
101 | const char *name; | |
102 | } enumeration; | |
103 | struct { | |
104 | enum lttng_string_encodings encoding; | |
105 | } string; | |
106 | }; | |
107 | ||
108 | struct lttng_basic_type { | |
109 | enum abstract_types atype; | |
110 | union { | |
111 | union _lttng_basic_type basic; | |
112 | } u; | |
c0edae1d MD |
113 | }; |
114 | ||
115 | struct lttng_type { | |
116 | enum abstract_types atype; | |
c0edae1d | 117 | union { |
c099397a | 118 | union _lttng_basic_type basic; |
c0edae1d | 119 | struct { |
c099397a | 120 | struct lttng_basic_type elem_type; |
c0edae1d | 121 | unsigned int length; /* num. elems. */ |
43803cf2 | 122 | unsigned int elem_alignment; /* alignment override */ |
c0edae1d MD |
123 | } array; |
124 | struct { | |
c099397a MD |
125 | struct lttng_basic_type length_type; |
126 | struct lttng_basic_type elem_type; | |
43803cf2 | 127 | unsigned int elem_alignment; /* alignment override */ |
c0edae1d | 128 | } sequence; |
c0edae1d | 129 | } u; |
c099397a MD |
130 | }; |
131 | ||
132 | struct lttng_enum { | |
133 | const char *name; | |
134 | struct lttng_type container_type; | |
135 | const struct lttng_enum_entry *entries; | |
136 | unsigned int len; | |
137 | }; | |
c0edae1d MD |
138 | |
139 | /* Event field description */ | |
140 | ||
141 | struct lttng_event_field { | |
142 | const char *name; | |
f17701fb | 143 | struct lttng_type type; |
f127e61e MD |
144 | unsigned int nowrite:1, /* do not write into trace */ |
145 | user:1; /* fetch from user-space */ | |
c0edae1d MD |
146 | }; |
147 | ||
07dfc1d0 MD |
148 | union lttng_ctx_value { |
149 | int64_t s64; | |
150 | const char *str; | |
151 | double d; | |
152 | }; | |
153 | ||
2001023e MD |
154 | /* |
155 | * We need to keep this perf counter field separately from struct | |
156 | * lttng_ctx_field because cpu hotplug needs fixed-location addresses. | |
157 | */ | |
158 | struct lttng_perf_counter_field { | |
159 | struct notifier_block nb; | |
160 | int hp_enable; | |
161 | struct perf_event_attr *attr; | |
162 | struct perf_event **e; /* per-cpu array */ | |
163 | }; | |
164 | ||
79150a49 JD |
165 | struct lttng_probe_ctx { |
166 | struct lttng_event *event; | |
167 | uint8_t interruptible; | |
168 | }; | |
169 | ||
ba1f5986 | 170 | struct lttng_ctx_field { |
8070f5c0 | 171 | struct lttng_event_field event_field; |
f1676205 MD |
172 | size_t (*get_size)(size_t offset); |
173 | void (*record)(struct lttng_ctx_field *field, | |
174 | struct lib_ring_buffer_ctx *ctx, | |
a90917c3 | 175 | struct lttng_channel *chan); |
07dfc1d0 | 176 | void (*get_value)(struct lttng_ctx_field *field, |
79150a49 | 177 | struct lttng_probe_ctx *lttng_probe_ctx, |
07dfc1d0 | 178 | union lttng_ctx_value *value); |
ba1f5986 | 179 | union { |
2001023e | 180 | struct lttng_perf_counter_field *perf_counter; |
ba1f5986 | 181 | } u; |
2dccf128 | 182 | void (*destroy)(struct lttng_ctx_field *field); |
ba1f5986 MD |
183 | }; |
184 | ||
185 | struct lttng_ctx { | |
833ad6a0 | 186 | struct lttng_ctx_field *fields; |
0d1a681e | 187 | unsigned int nr_fields; |
ba1f5986 | 188 | unsigned int allocated_fields; |
a9dd15da | 189 | size_t largest_align; /* in bytes */ |
0d1a681e MD |
190 | }; |
191 | ||
192 | struct lttng_event_desc { | |
a26a7e4f MD |
193 | const char *name; /* lttng-modules name */ |
194 | const char *kname; /* Linux kernel name (tracepoints) */ | |
c0edae1d | 195 | void *probe_callback; |
0d1a681e MD |
196 | const struct lttng_event_ctx *ctx; /* context */ |
197 | const struct lttng_event_field *fields; /* event payload */ | |
c0edae1d | 198 | unsigned int nr_fields; |
dc7f600a | 199 | struct module *owner; |
c0edae1d MD |
200 | }; |
201 | ||
85a9ca7f | 202 | struct lttng_probe_desc { |
3c997079 | 203 | const char *provider; |
f7bdf4db | 204 | const struct lttng_event_desc **event_desc; |
85a9ca7f MD |
205 | unsigned int nr_events; |
206 | struct list_head head; /* chain registered probes */ | |
3c997079 MD |
207 | struct list_head lazy_init_head; |
208 | int lazy; /* lazy registration */ | |
85a9ca7f MD |
209 | }; |
210 | ||
7371f44c MD |
211 | struct lttng_krp; /* Kretprobe handling */ |
212 | ||
3c997079 MD |
213 | enum lttng_event_type { |
214 | LTTNG_TYPE_EVENT = 0, | |
215 | LTTNG_TYPE_ENABLER = 1, | |
216 | }; | |
217 | ||
07dfc1d0 MD |
218 | struct lttng_filter_bytecode_node { |
219 | struct list_head node; | |
220 | struct lttng_enabler *enabler; | |
221 | /* | |
222 | * struct lttng_kernel_filter_bytecode has var. sized array, must be | |
223 | * last field. | |
224 | */ | |
225 | struct lttng_kernel_filter_bytecode bc; | |
226 | }; | |
227 | ||
228 | /* | |
229 | * Filter return value masks. | |
230 | */ | |
231 | enum lttng_filter_ret { | |
232 | LTTNG_FILTER_DISCARD = 0, | |
233 | LTTNG_FILTER_RECORD_FLAG = (1ULL << 0), | |
234 | /* Other bits are kept for future use. */ | |
235 | }; | |
236 | ||
237 | struct lttng_bytecode_runtime { | |
238 | /* Associated bytecode */ | |
239 | struct lttng_filter_bytecode_node *bc; | |
79150a49 JD |
240 | uint64_t (*filter)(void *filter_data, struct lttng_probe_ctx *lttng_probe_ctx, |
241 | const char *filter_stack_data); | |
07dfc1d0 MD |
242 | int link_failed; |
243 | struct list_head node; /* list of bytecode runtime in event */ | |
244 | }; | |
245 | ||
3c997079 MD |
246 | /* |
247 | * Objects in a linked-list of enablers, owned by an event. | |
248 | */ | |
249 | struct lttng_enabler_ref { | |
250 | struct list_head node; /* enabler ref list */ | |
251 | struct lttng_enabler *ref; /* backward ref */ | |
252 | }; | |
253 | ||
85a9ca7f | 254 | /* |
a90917c3 | 255 | * lttng_event structure is referred to by the tracing fast path. It must be |
85a9ca7f MD |
256 | * kept small. |
257 | */ | |
a90917c3 | 258 | struct lttng_event { |
3c997079 | 259 | enum lttng_event_type evtype; /* First field. */ |
85a9ca7f | 260 | unsigned int id; |
a90917c3 | 261 | struct lttng_channel *chan; |
e64957da | 262 | int enabled; |
d3dbe23c | 263 | const struct lttng_event_desc *desc; |
85a9ca7f | 264 | void *filter; |
f1676205 | 265 | struct lttng_ctx *ctx; |
38d024ae | 266 | enum lttng_kernel_instrumentation instrumentation; |
d6d808f3 MD |
267 | union { |
268 | struct { | |
269 | struct kprobe kp; | |
270 | char *symbol_name; | |
271 | } kprobe; | |
7371f44c MD |
272 | struct { |
273 | struct lttng_krp *lttng_krp; | |
274 | char *symbol_name; | |
275 | } kretprobe; | |
e0a7a7c4 MD |
276 | struct { |
277 | char *symbol_name; | |
278 | } ftrace; | |
d6d808f3 | 279 | } u; |
3c997079 | 280 | struct list_head list; /* Event list in session */ |
9cccf98a | 281 | unsigned int metadata_dumped:1; |
3c997079 MD |
282 | |
283 | /* Backward references: list of lttng_enabler_ref (ref to enablers) */ | |
284 | struct list_head enablers_ref_head; | |
285 | struct hlist_node hlist; /* session ht of events */ | |
286 | int registered; /* has reg'd tracepoint probe */ | |
07dfc1d0 MD |
287 | /* list of struct lttng_bytecode_runtime, sorted by seqnum */ |
288 | struct list_head bytecode_runtime_head; | |
289 | int has_enablers_without_bytecode; | |
3c997079 MD |
290 | }; |
291 | ||
292 | enum lttng_enabler_type { | |
293 | LTTNG_ENABLER_WILDCARD, | |
294 | LTTNG_ENABLER_NAME, | |
295 | }; | |
296 | ||
297 | /* | |
298 | * Enabler field, within whatever object is enabling an event. Target of | |
299 | * backward reference. | |
300 | */ | |
301 | struct lttng_enabler { | |
302 | enum lttng_event_type evtype; /* First field. */ | |
303 | ||
304 | enum lttng_enabler_type type; | |
305 | ||
306 | struct list_head node; /* per-session list of enablers */ | |
07dfc1d0 MD |
307 | /* head list of struct lttng_ust_filter_bytecode_node */ |
308 | struct list_head filter_bytecode_head; | |
3c997079 MD |
309 | |
310 | struct lttng_kernel_event event_param; | |
311 | struct lttng_channel *chan; | |
312 | struct lttng_ctx *ctx; | |
313 | unsigned int enabled:1; | |
85a9ca7f MD |
314 | }; |
315 | ||
a90917c3 | 316 | struct lttng_channel_ops { |
85a9ca7f | 317 | struct channel *(*channel_create)(const char *name, |
a90917c3 | 318 | struct lttng_channel *lttng_chan, |
85a9ca7f MD |
319 | void *buf_addr, |
320 | size_t subbuf_size, size_t num_subbuf, | |
321 | unsigned int switch_timer_interval, | |
322 | unsigned int read_timer_interval); | |
323 | void (*channel_destroy)(struct channel *chan); | |
324 | struct lib_ring_buffer *(*buffer_read_open)(struct channel *chan); | |
f71ecafa | 325 | int (*buffer_has_read_closed_stream)(struct channel *chan); |
85a9ca7f | 326 | void (*buffer_read_close)(struct lib_ring_buffer *buf); |
4e1f08f4 | 327 | int (*event_reserve)(struct lib_ring_buffer_ctx *ctx, |
64c796d8 | 328 | uint32_t event_id); |
85a9ca7f MD |
329 | void (*event_commit)(struct lib_ring_buffer_ctx *ctx); |
330 | void (*event_write)(struct lib_ring_buffer_ctx *ctx, const void *src, | |
331 | size_t len); | |
4ea00e4f JD |
332 | void (*event_write_from_user)(struct lib_ring_buffer_ctx *ctx, |
333 | const void *src, size_t len); | |
58aa5d24 MD |
334 | void (*event_memset)(struct lib_ring_buffer_ctx *ctx, |
335 | int c, size_t len); | |
16f78f3a MD |
336 | void (*event_strcpy)(struct lib_ring_buffer_ctx *ctx, const char *src, |
337 | size_t len); | |
338 | void (*event_strcpy_from_user)(struct lib_ring_buffer_ctx *ctx, | |
339 | const char __user *src, size_t len); | |
1ec3f75a MD |
340 | /* |
341 | * packet_avail_size returns the available size in the current | |
342 | * packet. Note that the size returned is only a hint, since it | |
343 | * may change due to concurrent writes. | |
344 | */ | |
345 | size_t (*packet_avail_size)(struct channel *chan); | |
71c1d843 | 346 | wait_queue_head_t *(*get_writer_buf_wait_queue)(struct channel *chan, int cpu); |
24cedcfe MD |
347 | wait_queue_head_t *(*get_hp_wait_queue)(struct channel *chan); |
348 | int (*is_finalized)(struct channel *chan); | |
254ec7bc | 349 | int (*is_disabled)(struct channel *chan); |
3b731ab1 JD |
350 | int (*timestamp_begin) (const struct lib_ring_buffer_config *config, |
351 | struct lib_ring_buffer *bufb, | |
352 | uint64_t *timestamp_begin); | |
353 | int (*timestamp_end) (const struct lib_ring_buffer_config *config, | |
354 | struct lib_ring_buffer *bufb, | |
355 | uint64_t *timestamp_end); | |
356 | int (*events_discarded) (const struct lib_ring_buffer_config *config, | |
357 | struct lib_ring_buffer *bufb, | |
358 | uint64_t *events_discarded); | |
359 | int (*content_size) (const struct lib_ring_buffer_config *config, | |
360 | struct lib_ring_buffer *bufb, | |
361 | uint64_t *content_size); | |
362 | int (*packet_size) (const struct lib_ring_buffer_config *config, | |
363 | struct lib_ring_buffer *bufb, | |
364 | uint64_t *packet_size); | |
365 | int (*stream_id) (const struct lib_ring_buffer_config *config, | |
366 | struct lib_ring_buffer *bufb, | |
367 | uint64_t *stream_id); | |
2348ca17 JD |
368 | int (*current_timestamp) (const struct lib_ring_buffer_config *config, |
369 | struct lib_ring_buffer *bufb, | |
370 | uint64_t *ts); | |
5b3cf4f9 JD |
371 | int (*sequence_number) (const struct lib_ring_buffer_config *config, |
372 | struct lib_ring_buffer *bufb, | |
373 | uint64_t *seq); | |
5594698f JD |
374 | int (*instance_id) (const struct lib_ring_buffer_config *config, |
375 | struct lib_ring_buffer *bufb, | |
376 | uint64_t *id); | |
85a9ca7f MD |
377 | }; |
378 | ||
a90917c3 | 379 | struct lttng_transport { |
a33c9927 MD |
380 | char *name; |
381 | struct module *owner; | |
382 | struct list_head node; | |
a90917c3 | 383 | struct lttng_channel_ops ops; |
a33c9927 MD |
384 | }; |
385 | ||
80f87dd2 MD |
386 | struct lttng_syscall_filter; |
387 | ||
3c997079 MD |
388 | #define LTTNG_EVENT_HT_BITS 12 |
389 | #define LTTNG_EVENT_HT_SIZE (1U << LTTNG_EVENT_HT_BITS) | |
390 | ||
391 | struct lttng_event_ht { | |
392 | struct hlist_head table[LTTNG_EVENT_HT_SIZE]; | |
393 | }; | |
394 | ||
a90917c3 | 395 | struct lttng_channel { |
c099397a | 396 | unsigned int id; |
85a9ca7f | 397 | struct channel *chan; /* Channel buffers */ |
e64957da | 398 | int enabled; |
f1676205 | 399 | struct lttng_ctx *ctx; |
85a9ca7f | 400 | /* Event ID management */ |
a90917c3 | 401 | struct lttng_session *session; |
85a9ca7f MD |
402 | struct file *file; /* File associated to channel */ |
403 | unsigned int free_event_id; /* Next event ID to allocate */ | |
404 | struct list_head list; /* Channel list */ | |
a90917c3 MD |
405 | struct lttng_channel_ops *ops; |
406 | struct lttng_transport *transport; | |
407 | struct lttng_event **sc_table; /* for syscall tracing */ | |
408 | struct lttng_event **compat_sc_table; | |
5b7ac358 MD |
409 | struct lttng_event **sc_exit_table; /* for syscall exit tracing */ |
410 | struct lttng_event **compat_sc_exit_table; | |
a90917c3 MD |
411 | struct lttng_event *sc_unknown; /* for unknown syscalls */ |
412 | struct lttng_event *sc_compat_unknown; | |
5b7ac358 MD |
413 | struct lttng_event *sc_exit_unknown; |
414 | struct lttng_event *compat_sc_exit_unknown; | |
80f87dd2 | 415 | struct lttng_syscall_filter *sc_filter; |
9115fbdc | 416 | int header_type; /* 0: unset, 1: compact, 2: large */ |
d83004aa | 417 | enum channel_type channel_type; |
80f87dd2 MD |
418 | unsigned int metadata_dumped:1, |
419 | sys_enter_registered:1, | |
420 | sys_exit_registered:1, | |
3c997079 MD |
421 | syscall_all:1, |
422 | tstate:1; /* Transient enable state */ | |
85a9ca7f MD |
423 | }; |
424 | ||
d83004aa JD |
425 | struct lttng_metadata_stream { |
426 | void *priv; /* Ring buffer private data */ | |
427 | struct lttng_metadata_cache *metadata_cache; | |
f613e3e6 MD |
428 | unsigned int metadata_in; /* Bytes read from the cache */ |
429 | unsigned int metadata_out; /* Bytes consumed from stream */ | |
d83004aa JD |
430 | int finalized; /* Has channel been finalized */ |
431 | wait_queue_head_t read_wait; /* Reader buffer-level wait queue */ | |
432 | struct list_head list; /* Stream list */ | |
b3b8072b | 433 | struct lttng_transport *transport; |
9616f0bf | 434 | uint64_t version; /* Current version of the metadata cache */ |
d83004aa JD |
435 | }; |
436 | ||
e0130fab MD |
437 | |
438 | /* | |
439 | * struct lttng_pid_tracker declared in header due to deferencing of *v | |
440 | * in RCU_INITIALIZER(v). | |
441 | */ | |
442 | #define LTTNG_PID_HASH_BITS 6 | |
443 | #define LTTNG_PID_TABLE_SIZE (1 << LTTNG_PID_HASH_BITS) | |
444 | ||
445 | struct lttng_pid_tracker { | |
446 | struct hlist_head pid_hash[LTTNG_PID_TABLE_SIZE]; | |
447 | }; | |
448 | ||
7e6f9ef6 MD |
449 | struct lttng_pid_hash_node { |
450 | struct hlist_node hlist; | |
451 | int pid; | |
452 | }; | |
453 | ||
a90917c3 | 454 | struct lttng_session { |
85a9ca7f | 455 | int active; /* Is trace session active ? */ |
8070f5c0 | 456 | int been_active; /* Has trace session been active ? */ |
85a9ca7f MD |
457 | struct file *file; /* File associated to session */ |
458 | struct list_head chan; /* Channel list head */ | |
459 | struct list_head events; /* Event list head */ | |
460 | struct list_head list; /* Session list */ | |
c099397a | 461 | unsigned int free_chan_id; /* Next chan ID to allocate */ |
d793d5e1 | 462 | uuid_le uuid; /* Trace session unique ID */ |
d83004aa | 463 | struct lttng_metadata_cache *metadata_cache; |
e0130fab | 464 | struct lttng_pid_tracker *pid_tracker; |
3c997079 MD |
465 | unsigned int metadata_dumped:1, |
466 | tstate:1; /* Transient enable state */ | |
467 | /* List of enablers */ | |
468 | struct list_head enablers_head; | |
469 | /* Hash table of events */ | |
470 | struct lttng_event_ht events_ht; | |
85a9ca7f MD |
471 | }; |
472 | ||
d83004aa JD |
473 | struct lttng_metadata_cache { |
474 | char *data; /* Metadata cache */ | |
475 | unsigned int cache_alloc; /* Metadata allocated size (bytes) */ | |
476 | unsigned int metadata_written; /* Number of bytes written in metadata cache */ | |
477 | struct kref refcount; /* Metadata cache usage */ | |
478 | struct list_head metadata_stream; /* Metadata stream list */ | |
a36580d5 | 479 | uuid_le uuid; /* Trace session unique ID (copy) */ |
9616f0bf JD |
480 | struct mutex lock; /* Produce/consume lock */ |
481 | uint64_t version; /* Current version of the metadata */ | |
d83004aa JD |
482 | }; |
483 | ||
3c997079 MD |
484 | void lttng_lock_sessions(void); |
485 | void lttng_unlock_sessions(void); | |
486 | ||
487 | struct list_head *lttng_get_probe_list_head(void); | |
488 | ||
489 | struct lttng_enabler *lttng_enabler_create(enum lttng_enabler_type type, | |
490 | struct lttng_kernel_event *event_param, | |
491 | struct lttng_channel *chan); | |
492 | ||
493 | int lttng_enabler_enable(struct lttng_enabler *enabler); | |
494 | int lttng_enabler_disable(struct lttng_enabler *enabler); | |
495 | int lttng_fix_pending_events(void); | |
496 | int lttng_session_active(void); | |
497 | ||
a90917c3 MD |
498 | struct lttng_session *lttng_session_create(void); |
499 | int lttng_session_enable(struct lttng_session *session); | |
500 | int lttng_session_disable(struct lttng_session *session); | |
501 | void lttng_session_destroy(struct lttng_session *session); | |
9616f0bf | 502 | int lttng_session_metadata_regenerate(struct lttng_session *session); |
d83004aa | 503 | void metadata_cache_destroy(struct kref *kref); |
4e3c1b9b | 504 | |
a90917c3 | 505 | struct lttng_channel *lttng_channel_create(struct lttng_session *session, |
5dbbdb43 MD |
506 | const char *transport_name, |
507 | void *buf_addr, | |
508 | size_t subbuf_size, size_t num_subbuf, | |
509 | unsigned int switch_timer_interval, | |
d83004aa JD |
510 | unsigned int read_timer_interval, |
511 | enum channel_type channel_type); | |
a90917c3 | 512 | struct lttng_channel *lttng_global_channel_create(struct lttng_session *session, |
4e3c1b9b MD |
513 | int overwrite, void *buf_addr, |
514 | size_t subbuf_size, size_t num_subbuf, | |
515 | unsigned int switch_timer_interval, | |
516 | unsigned int read_timer_interval); | |
4e3c1b9b | 517 | |
d83004aa | 518 | void lttng_metadata_channel_destroy(struct lttng_channel *chan); |
a90917c3 | 519 | struct lttng_event *lttng_event_create(struct lttng_channel *chan, |
3c997079 MD |
520 | struct lttng_kernel_event *event_param, |
521 | void *filter, | |
522 | const struct lttng_event_desc *event_desc, | |
523 | enum lttng_kernel_instrumentation itype); | |
33a39a3c MD |
524 | struct lttng_event *_lttng_event_create(struct lttng_channel *chan, |
525 | struct lttng_kernel_event *event_param, | |
526 | void *filter, | |
527 | const struct lttng_event_desc *event_desc, | |
528 | enum lttng_kernel_instrumentation itype); | |
6dccd6c1 JD |
529 | struct lttng_event *lttng_event_compat_old_create(struct lttng_channel *chan, |
530 | struct lttng_kernel_old_event *old_event_param, | |
531 | void *filter, | |
532 | const struct lttng_event_desc *internal_desc); | |
c0e31d2e | 533 | |
a90917c3 MD |
534 | int lttng_channel_enable(struct lttng_channel *channel); |
535 | int lttng_channel_disable(struct lttng_channel *channel); | |
536 | int lttng_event_enable(struct lttng_event *event); | |
537 | int lttng_event_disable(struct lttng_event *event); | |
e64957da | 538 | |
a90917c3 MD |
539 | void lttng_transport_register(struct lttng_transport *transport); |
540 | void lttng_transport_unregister(struct lttng_transport *transport); | |
11b5a3c2 | 541 | |
360f38ea | 542 | void synchronize_trace(void); |
80996790 | 543 | int lttng_abi_init(void); |
6dccd6c1 | 544 | int lttng_abi_compat_old_init(void); |
80996790 | 545 | void lttng_abi_exit(void); |
6dccd6c1 | 546 | void lttng_abi_compat_old_exit(void); |
1c25284c | 547 | |
a90917c3 MD |
548 | int lttng_probe_register(struct lttng_probe_desc *desc); |
549 | void lttng_probe_unregister(struct lttng_probe_desc *desc); | |
550 | const struct lttng_event_desc *lttng_event_get(const char *name); | |
551 | void lttng_event_put(const struct lttng_event_desc *desc); | |
552 | int lttng_probes_init(void); | |
553 | void lttng_probes_exit(void); | |
1ec65de1 | 554 | |
b3b8072b MD |
555 | int lttng_metadata_output_channel(struct lttng_metadata_stream *stream, |
556 | struct channel *chan); | |
d83004aa | 557 | |
7e6f9ef6 | 558 | int lttng_pid_tracker_get_node_pid(const struct lttng_pid_hash_node *node); |
e0130fab MD |
559 | struct lttng_pid_tracker *lttng_pid_tracker_create(void); |
560 | void lttng_pid_tracker_destroy(struct lttng_pid_tracker *lpf); | |
561 | bool lttng_pid_tracker_lookup(struct lttng_pid_tracker *lpf, int pid); | |
562 | int lttng_pid_tracker_add(struct lttng_pid_tracker *lpf, int pid); | |
563 | int lttng_pid_tracker_del(struct lttng_pid_tracker *lpf, int pid); | |
564 | ||
565 | int lttng_session_track_pid(struct lttng_session *session, int pid); | |
566 | int lttng_session_untrack_pid(struct lttng_session *session, int pid); | |
567 | ||
7e6f9ef6 MD |
568 | int lttng_session_list_tracker_pids(struct lttng_session *session); |
569 | ||
2754583e MD |
570 | void lttng_clock_ref(void); |
571 | void lttng_clock_unref(void); | |
572 | ||
3a523f5b | 573 | #if defined(CONFIG_HAVE_SYSCALL_TRACEPOINTS) |
a90917c3 MD |
574 | int lttng_syscalls_register(struct lttng_channel *chan, void *filter); |
575 | int lttng_syscalls_unregister(struct lttng_channel *chan); | |
80f87dd2 MD |
576 | int lttng_syscall_filter_enable(struct lttng_channel *chan, |
577 | const char *name); | |
578 | int lttng_syscall_filter_disable(struct lttng_channel *chan, | |
579 | const char *name); | |
12e579db MD |
580 | long lttng_channel_syscall_mask(struct lttng_channel *channel, |
581 | struct lttng_kernel_syscall_mask __user *usyscall_mask); | |
1ec65de1 | 582 | #else |
a90917c3 | 583 | static inline int lttng_syscalls_register(struct lttng_channel *chan, void *filter) |
1ec65de1 MD |
584 | { |
585 | return -ENOSYS; | |
586 | } | |
587 | ||
a90917c3 | 588 | static inline int lttng_syscalls_unregister(struct lttng_channel *chan) |
1ec65de1 MD |
589 | { |
590 | return 0; | |
591 | } | |
80f87dd2 | 592 | |
f127e61e | 593 | static inline int lttng_syscall_filter_enable(struct lttng_channel *chan, |
80f87dd2 MD |
594 | const char *name) |
595 | { | |
596 | return -ENOSYS; | |
597 | } | |
598 | ||
f127e61e | 599 | static inline int lttng_syscall_filter_disable(struct lttng_channel *chan, |
80f87dd2 MD |
600 | const char *name) |
601 | { | |
602 | return -ENOSYS; | |
603 | } | |
12e579db | 604 | |
f127e61e | 605 | static inline long lttng_channel_syscall_mask(struct lttng_channel *channel, |
12e579db MD |
606 | struct lttng_kernel_syscall_mask __user *usyscall_mask) |
607 | { | |
608 | return -ENOSYS; | |
609 | } | |
1ec65de1 MD |
610 | #endif |
611 | ||
07dfc1d0 MD |
612 | void lttng_filter_sync_state(struct lttng_bytecode_runtime *runtime); |
613 | int lttng_enabler_attach_bytecode(struct lttng_enabler *enabler, | |
614 | struct lttng_kernel_filter_bytecode __user *bytecode); | |
f127e61e MD |
615 | void lttng_enabler_event_link_bytecode(struct lttng_event *event, |
616 | struct lttng_enabler *enabler); | |
07dfc1d0 MD |
617 | |
618 | extern struct lttng_ctx *lttng_static_ctx; | |
619 | ||
620 | int lttng_context_init(void); | |
621 | void lttng_context_exit(void); | |
2dccf128 | 622 | struct lttng_ctx_field *lttng_append_context(struct lttng_ctx **ctx); |
a9dd15da | 623 | void lttng_context_update(struct lttng_ctx *ctx); |
44252f0f | 624 | int lttng_find_context(struct lttng_ctx *ctx, const char *name); |
07dfc1d0 | 625 | int lttng_get_context_index(struct lttng_ctx *ctx, const char *name); |
8289661d MD |
626 | void lttng_remove_context_field(struct lttng_ctx **ctx, |
627 | struct lttng_ctx_field *field); | |
2dccf128 | 628 | void lttng_destroy_context(struct lttng_ctx *ctx); |
8070f5c0 | 629 | int lttng_add_pid_to_ctx(struct lttng_ctx **ctx); |
b3699d90 | 630 | int lttng_add_cpu_id_to_ctx(struct lttng_ctx **ctx); |
a2563e83 | 631 | int lttng_add_procname_to_ctx(struct lttng_ctx **ctx); |
a8ad3613 | 632 | int lttng_add_prio_to_ctx(struct lttng_ctx **ctx); |
53f1f0ca | 633 | int lttng_add_nice_to_ctx(struct lttng_ctx **ctx); |
b64bc438 MD |
634 | int lttng_add_vpid_to_ctx(struct lttng_ctx **ctx); |
635 | int lttng_add_tid_to_ctx(struct lttng_ctx **ctx); | |
636 | int lttng_add_vtid_to_ctx(struct lttng_ctx **ctx); | |
637 | int lttng_add_ppid_to_ctx(struct lttng_ctx **ctx); | |
638 | int lttng_add_vppid_to_ctx(struct lttng_ctx **ctx); | |
975da2c0 | 639 | int lttng_add_hostname_to_ctx(struct lttng_ctx **ctx); |
79150a49 JD |
640 | int lttng_add_interruptible_to_ctx(struct lttng_ctx **ctx); |
641 | int lttng_add_need_reschedule_to_ctx(struct lttng_ctx **ctx); | |
642 | #if defined(CONFIG_PREEMPT_RT_FULL) || defined(CONFIG_PREEMPT) | |
643 | int lttng_add_preemptible_to_ctx(struct lttng_ctx **ctx); | |
644 | #else | |
645 | static inline | |
646 | int lttng_add_preemptible_to_ctx(struct lttng_ctx **ctx) | |
647 | { | |
648 | return -ENOSYS; | |
649 | } | |
650 | #endif | |
651 | #ifdef CONFIG_PREEMPT_RT_FULL | |
652 | int lttng_add_migratable_to_ctx(struct lttng_ctx **ctx); | |
653 | #else | |
654 | static inline | |
655 | int lttng_add_migratable_to_ctx(struct lttng_ctx **ctx) | |
656 | { | |
657 | return -ENOSYS; | |
658 | } | |
659 | #endif | |
41c3c24e | 660 | #if defined(CONFIG_PERF_EVENTS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)) |
c24a0d71 MD |
661 | int lttng_add_perf_counter_to_ctx(uint32_t type, |
662 | uint64_t config, | |
663 | const char *name, | |
664 | struct lttng_ctx **ctx); | |
1d443b34 MD |
665 | #else |
666 | static inline | |
667 | int lttng_add_perf_counter_to_ctx(uint32_t type, | |
668 | uint64_t config, | |
669 | const char *name, | |
670 | struct lttng_ctx **ctx) | |
671 | { | |
672 | return -ENOSYS; | |
673 | } | |
674 | #endif | |
02119ee5 | 675 | |
0c956676 MD |
676 | int lttng_logger_init(void); |
677 | void lttng_logger_exit(void); | |
678 | ||
c337ddc2 MD |
679 | extern int lttng_statedump_start(struct lttng_session *session); |
680 | ||
acd614cc | 681 | #ifdef CONFIG_KPROBES |
f17701fb MD |
682 | int lttng_kprobes_register(const char *name, |
683 | const char *symbol_name, | |
684 | uint64_t offset, | |
685 | uint64_t addr, | |
a90917c3 MD |
686 | struct lttng_event *event); |
687 | void lttng_kprobes_unregister(struct lttng_event *event); | |
688 | void lttng_kprobes_destroy_private(struct lttng_event *event); | |
acd614cc MD |
689 | #else |
690 | static inline | |
691 | int lttng_kprobes_register(const char *name, | |
692 | const char *symbol_name, | |
693 | uint64_t offset, | |
694 | uint64_t addr, | |
a90917c3 | 695 | struct lttng_event *event) |
acd614cc MD |
696 | { |
697 | return -ENOSYS; | |
698 | } | |
699 | ||
25f53c39 | 700 | static inline |
a90917c3 | 701 | void lttng_kprobes_unregister(struct lttng_event *event) |
acd614cc MD |
702 | { |
703 | } | |
edeb3137 MD |
704 | |
705 | static inline | |
a90917c3 | 706 | void lttng_kprobes_destroy_private(struct lttng_event *event) |
edeb3137 MD |
707 | { |
708 | } | |
acd614cc | 709 | #endif |
d6d808f3 | 710 | |
7371f44c MD |
711 | #ifdef CONFIG_KRETPROBES |
712 | int lttng_kretprobes_register(const char *name, | |
713 | const char *symbol_name, | |
714 | uint64_t offset, | |
715 | uint64_t addr, | |
a90917c3 MD |
716 | struct lttng_event *event_entry, |
717 | struct lttng_event *event_exit); | |
718 | void lttng_kretprobes_unregister(struct lttng_event *event); | |
719 | void lttng_kretprobes_destroy_private(struct lttng_event *event); | |
a0493bef MD |
720 | int lttng_kretprobes_event_enable_state(struct lttng_event *event, |
721 | int enable); | |
7371f44c MD |
722 | #else |
723 | static inline | |
724 | int lttng_kretprobes_register(const char *name, | |
725 | const char *symbol_name, | |
726 | uint64_t offset, | |
727 | uint64_t addr, | |
a90917c3 MD |
728 | struct lttng_event *event_entry, |
729 | struct lttng_event *event_exit) | |
7371f44c MD |
730 | { |
731 | return -ENOSYS; | |
732 | } | |
733 | ||
734 | static inline | |
a90917c3 | 735 | void lttng_kretprobes_unregister(struct lttng_event *event) |
7371f44c MD |
736 | { |
737 | } | |
738 | ||
739 | static inline | |
a90917c3 | 740 | void lttng_kretprobes_destroy_private(struct lttng_event *event) |
7371f44c MD |
741 | { |
742 | } | |
a0493bef MD |
743 | |
744 | static inline | |
745 | int lttng_kretprobes_event_enable_state(struct lttng_event *event, | |
746 | int enable) | |
747 | { | |
748 | return -ENOSYS; | |
749 | } | |
7371f44c MD |
750 | #endif |
751 | ||
e0a7a7c4 MD |
752 | #ifdef CONFIG_DYNAMIC_FTRACE |
753 | int lttng_ftrace_register(const char *name, | |
754 | const char *symbol_name, | |
a90917c3 MD |
755 | struct lttng_event *event); |
756 | void lttng_ftrace_unregister(struct lttng_event *event); | |
757 | void lttng_ftrace_destroy_private(struct lttng_event *event); | |
e0a7a7c4 MD |
758 | #else |
759 | static inline | |
760 | int lttng_ftrace_register(const char *name, | |
761 | const char *symbol_name, | |
a90917c3 | 762 | struct lttng_event *event) |
e0a7a7c4 | 763 | { |
acd614cc | 764 | return -ENOSYS; |
e0a7a7c4 MD |
765 | } |
766 | ||
767 | static inline | |
a90917c3 | 768 | void lttng_ftrace_unregister(struct lttng_event *event) |
e0a7a7c4 MD |
769 | { |
770 | } | |
edeb3137 MD |
771 | |
772 | static inline | |
a90917c3 | 773 | void lttng_ftrace_destroy_private(struct lttng_event *event) |
edeb3137 MD |
774 | { |
775 | } | |
e0a7a7c4 | 776 | #endif |
271b6681 | 777 | |
3db41b2c | 778 | int lttng_calibrate(struct lttng_kernel_calibrate *calibrate); |
57105fc2 | 779 | |
271b6681 | 780 | extern const struct file_operations lttng_tracepoint_list_fops; |
2d2464bd | 781 | extern const struct file_operations lttng_syscall_list_fops; |
271b6681 | 782 | |
ef200626 MD |
783 | #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35)) |
784 | #define TRACEPOINT_HAS_DATA_ARG | |
785 | #endif | |
786 | ||
a90917c3 | 787 | #endif /* _LTTNG_EVENTS_H */ |