Connect sched_set_prio probe
[deliverable/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);
d83004aa 536void metadata_cache_destroy(struct kref *kref);
4e3c1b9b 537
a90917c3 538struct lttng_channel *lttng_channel_create(struct lttng_session *session,
5dbbdb43
MD
539 const char *transport_name,
540 void *buf_addr,
541 size_t subbuf_size, size_t num_subbuf,
542 unsigned int switch_timer_interval,
d83004aa
JD
543 unsigned int read_timer_interval,
544 enum channel_type channel_type);
a90917c3 545struct lttng_channel *lttng_global_channel_create(struct lttng_session *session,
4e3c1b9b
MD
546 int overwrite, void *buf_addr,
547 size_t subbuf_size, size_t num_subbuf,
548 unsigned int switch_timer_interval,
549 unsigned int read_timer_interval);
4e3c1b9b 550
d83004aa 551void lttng_metadata_channel_destroy(struct lttng_channel *chan);
a90917c3 552struct lttng_event *lttng_event_create(struct lttng_channel *chan,
3c997079
MD
553 struct lttng_kernel_event *event_param,
554 void *filter,
555 const struct lttng_event_desc *event_desc,
556 enum lttng_kernel_instrumentation itype);
33a39a3c
MD
557struct lttng_event *_lttng_event_create(struct lttng_channel *chan,
558 struct lttng_kernel_event *event_param,
559 void *filter,
560 const struct lttng_event_desc *event_desc,
561 enum lttng_kernel_instrumentation itype);
6dccd6c1
JD
562struct lttng_event *lttng_event_compat_old_create(struct lttng_channel *chan,
563 struct lttng_kernel_old_event *old_event_param,
564 void *filter,
565 const struct lttng_event_desc *internal_desc);
c0e31d2e 566
a90917c3
MD
567int lttng_channel_enable(struct lttng_channel *channel);
568int lttng_channel_disable(struct lttng_channel *channel);
569int lttng_event_enable(struct lttng_event *event);
570int lttng_event_disable(struct lttng_event *event);
e64957da 571
a90917c3
MD
572void lttng_transport_register(struct lttng_transport *transport);
573void lttng_transport_unregister(struct lttng_transport *transport);
11b5a3c2 574
360f38ea 575void synchronize_trace(void);
80996790 576int lttng_abi_init(void);
6dccd6c1 577int lttng_abi_compat_old_init(void);
80996790 578void lttng_abi_exit(void);
6dccd6c1 579void lttng_abi_compat_old_exit(void);
1c25284c 580
a90917c3
MD
581int lttng_probe_register(struct lttng_probe_desc *desc);
582void lttng_probe_unregister(struct lttng_probe_desc *desc);
583const struct lttng_event_desc *lttng_event_get(const char *name);
584void lttng_event_put(const struct lttng_event_desc *desc);
585int lttng_probes_init(void);
586void lttng_probes_exit(void);
1ec65de1 587
b3b8072b
MD
588int lttng_metadata_output_channel(struct lttng_metadata_stream *stream,
589 struct channel *chan);
d83004aa 590
7e6f9ef6 591int lttng_pid_tracker_get_node_pid(const struct lttng_pid_hash_node *node);
e0130fab
MD
592struct lttng_pid_tracker *lttng_pid_tracker_create(void);
593void lttng_pid_tracker_destroy(struct lttng_pid_tracker *lpf);
594bool lttng_pid_tracker_lookup(struct lttng_pid_tracker *lpf, int pid);
595int lttng_pid_tracker_add(struct lttng_pid_tracker *lpf, int pid);
596int lttng_pid_tracker_del(struct lttng_pid_tracker *lpf, int pid);
597
598int lttng_session_track_pid(struct lttng_session *session, int pid);
599int lttng_session_untrack_pid(struct lttng_session *session, int pid);
600
7e6f9ef6
MD
601int lttng_session_list_tracker_pids(struct lttng_session *session);
602
2754583e
MD
603void lttng_clock_ref(void);
604void lttng_clock_unref(void);
605
3a523f5b 606#if defined(CONFIG_HAVE_SYSCALL_TRACEPOINTS)
a90917c3
MD
607int lttng_syscalls_register(struct lttng_channel *chan, void *filter);
608int lttng_syscalls_unregister(struct lttng_channel *chan);
80f87dd2
MD
609int lttng_syscall_filter_enable(struct lttng_channel *chan,
610 const char *name);
611int lttng_syscall_filter_disable(struct lttng_channel *chan,
612 const char *name);
12e579db
MD
613long lttng_channel_syscall_mask(struct lttng_channel *channel,
614 struct lttng_kernel_syscall_mask __user *usyscall_mask);
1ec65de1 615#else
a90917c3 616static inline int lttng_syscalls_register(struct lttng_channel *chan, void *filter)
1ec65de1
MD
617{
618 return -ENOSYS;
619}
620
a90917c3 621static inline int lttng_syscalls_unregister(struct lttng_channel *chan)
1ec65de1
MD
622{
623 return 0;
624}
80f87dd2 625
f127e61e 626static inline int lttng_syscall_filter_enable(struct lttng_channel *chan,
80f87dd2
MD
627 const char *name)
628{
629 return -ENOSYS;
630}
631
f127e61e 632static inline int lttng_syscall_filter_disable(struct lttng_channel *chan,
80f87dd2
MD
633 const char *name)
634{
635 return -ENOSYS;
636}
12e579db 637
f127e61e 638static inline long lttng_channel_syscall_mask(struct lttng_channel *channel,
12e579db
MD
639 struct lttng_kernel_syscall_mask __user *usyscall_mask)
640{
641 return -ENOSYS;
642}
1ec65de1
MD
643#endif
644
07dfc1d0
MD
645void lttng_filter_sync_state(struct lttng_bytecode_runtime *runtime);
646int lttng_enabler_attach_bytecode(struct lttng_enabler *enabler,
647 struct lttng_kernel_filter_bytecode __user *bytecode);
f127e61e
MD
648void lttng_enabler_event_link_bytecode(struct lttng_event *event,
649 struct lttng_enabler *enabler);
07dfc1d0 650
114667d5
MD
651int lttng_probes_init(void);
652
07dfc1d0
MD
653extern struct lttng_ctx *lttng_static_ctx;
654
655int lttng_context_init(void);
656void lttng_context_exit(void);
2dccf128 657struct lttng_ctx_field *lttng_append_context(struct lttng_ctx **ctx);
a9dd15da 658void lttng_context_update(struct lttng_ctx *ctx);
44252f0f 659int lttng_find_context(struct lttng_ctx *ctx, const char *name);
07dfc1d0 660int lttng_get_context_index(struct lttng_ctx *ctx, const char *name);
8289661d
MD
661void lttng_remove_context_field(struct lttng_ctx **ctx,
662 struct lttng_ctx_field *field);
2dccf128 663void lttng_destroy_context(struct lttng_ctx *ctx);
8070f5c0 664int lttng_add_pid_to_ctx(struct lttng_ctx **ctx);
b3699d90 665int lttng_add_cpu_id_to_ctx(struct lttng_ctx **ctx);
a2563e83 666int lttng_add_procname_to_ctx(struct lttng_ctx **ctx);
a8ad3613 667int lttng_add_prio_to_ctx(struct lttng_ctx **ctx);
53f1f0ca 668int lttng_add_nice_to_ctx(struct lttng_ctx **ctx);
b64bc438
MD
669int lttng_add_vpid_to_ctx(struct lttng_ctx **ctx);
670int lttng_add_tid_to_ctx(struct lttng_ctx **ctx);
671int lttng_add_vtid_to_ctx(struct lttng_ctx **ctx);
672int lttng_add_ppid_to_ctx(struct lttng_ctx **ctx);
673int lttng_add_vppid_to_ctx(struct lttng_ctx **ctx);
975da2c0 674int lttng_add_hostname_to_ctx(struct lttng_ctx **ctx);
79150a49
JD
675int lttng_add_interruptible_to_ctx(struct lttng_ctx **ctx);
676int lttng_add_need_reschedule_to_ctx(struct lttng_ctx **ctx);
677#if defined(CONFIG_PREEMPT_RT_FULL) || defined(CONFIG_PREEMPT)
678int lttng_add_preemptible_to_ctx(struct lttng_ctx **ctx);
679#else
680static inline
681int lttng_add_preemptible_to_ctx(struct lttng_ctx **ctx)
682{
683 return -ENOSYS;
684}
685#endif
686#ifdef CONFIG_PREEMPT_RT_FULL
687int lttng_add_migratable_to_ctx(struct lttng_ctx **ctx);
688#else
689static inline
690int lttng_add_migratable_to_ctx(struct lttng_ctx **ctx)
691{
692 return -ENOSYS;
693}
694#endif
41c3c24e 695#if defined(CONFIG_PERF_EVENTS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33))
c24a0d71
MD
696int lttng_add_perf_counter_to_ctx(uint32_t type,
697 uint64_t config,
698 const char *name,
699 struct lttng_ctx **ctx);
1d443b34
MD
700#else
701static inline
702int lttng_add_perf_counter_to_ctx(uint32_t type,
703 uint64_t config,
704 const char *name,
705 struct lttng_ctx **ctx)
706{
707 return -ENOSYS;
708}
709#endif
02119ee5 710
0c956676
MD
711int lttng_logger_init(void);
712void lttng_logger_exit(void);
713
c337ddc2
MD
714extern int lttng_statedump_start(struct lttng_session *session);
715
acd614cc 716#ifdef CONFIG_KPROBES
f17701fb
MD
717int lttng_kprobes_register(const char *name,
718 const char *symbol_name,
719 uint64_t offset,
720 uint64_t addr,
a90917c3
MD
721 struct lttng_event *event);
722void lttng_kprobes_unregister(struct lttng_event *event);
723void lttng_kprobes_destroy_private(struct lttng_event *event);
acd614cc
MD
724#else
725static inline
726int lttng_kprobes_register(const char *name,
727 const char *symbol_name,
728 uint64_t offset,
729 uint64_t addr,
a90917c3 730 struct lttng_event *event)
acd614cc
MD
731{
732 return -ENOSYS;
733}
734
25f53c39 735static inline
a90917c3 736void lttng_kprobes_unregister(struct lttng_event *event)
acd614cc
MD
737{
738}
edeb3137
MD
739
740static inline
a90917c3 741void lttng_kprobes_destroy_private(struct lttng_event *event)
edeb3137
MD
742{
743}
acd614cc 744#endif
d6d808f3 745
7371f44c
MD
746#ifdef CONFIG_KRETPROBES
747int lttng_kretprobes_register(const char *name,
748 const char *symbol_name,
749 uint64_t offset,
750 uint64_t addr,
a90917c3
MD
751 struct lttng_event *event_entry,
752 struct lttng_event *event_exit);
753void lttng_kretprobes_unregister(struct lttng_event *event);
754void lttng_kretprobes_destroy_private(struct lttng_event *event);
a0493bef
MD
755int lttng_kretprobes_event_enable_state(struct lttng_event *event,
756 int enable);
7371f44c
MD
757#else
758static inline
759int lttng_kretprobes_register(const char *name,
760 const char *symbol_name,
761 uint64_t offset,
762 uint64_t addr,
a90917c3
MD
763 struct lttng_event *event_entry,
764 struct lttng_event *event_exit)
7371f44c
MD
765{
766 return -ENOSYS;
767}
768
769static inline
a90917c3 770void lttng_kretprobes_unregister(struct lttng_event *event)
7371f44c
MD
771{
772}
773
774static inline
a90917c3 775void lttng_kretprobes_destroy_private(struct lttng_event *event)
7371f44c
MD
776{
777}
a0493bef
MD
778
779static inline
780int lttng_kretprobes_event_enable_state(struct lttng_event *event,
781 int enable)
782{
783 return -ENOSYS;
784}
7371f44c
MD
785#endif
786
e0a7a7c4
MD
787#ifdef CONFIG_DYNAMIC_FTRACE
788int lttng_ftrace_register(const char *name,
789 const char *symbol_name,
a90917c3
MD
790 struct lttng_event *event);
791void lttng_ftrace_unregister(struct lttng_event *event);
792void lttng_ftrace_destroy_private(struct lttng_event *event);
e0a7a7c4
MD
793#else
794static inline
795int lttng_ftrace_register(const char *name,
796 const char *symbol_name,
a90917c3 797 struct lttng_event *event)
e0a7a7c4 798{
acd614cc 799 return -ENOSYS;
e0a7a7c4
MD
800}
801
802static inline
a90917c3 803void lttng_ftrace_unregister(struct lttng_event *event)
e0a7a7c4
MD
804{
805}
edeb3137
MD
806
807static inline
a90917c3 808void lttng_ftrace_destroy_private(struct lttng_event *event)
edeb3137
MD
809{
810}
e0a7a7c4 811#endif
271b6681 812
3db41b2c 813int lttng_calibrate(struct lttng_kernel_calibrate *calibrate);
57105fc2 814
271b6681 815extern const struct file_operations lttng_tracepoint_list_fops;
2d2464bd 816extern const struct file_operations lttng_syscall_list_fops;
271b6681 817
ef200626
MD
818#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35))
819#define TRACEPOINT_HAS_DATA_ARG
820#endif
821
a90917c3 822#endif /* _LTTNG_EVENTS_H */
This page took 0.074781 seconds and 5 git commands to generate.