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