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