Fix: memory leaks on event destroy
[lttng-modules.git] / include / lttng / events.h
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
2df37e95 3 * lttng/events.h
4e3c1b9b 4 *
4e3c1b9b 5 * Holds LTTng per-session event registry.
17baffe2 6 *
886d51a3 7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4e3c1b9b
MD
8 */
9
9f36eaed
MJ
10#ifndef _LTTNG_EVENTS_H
11#define _LTTNG_EVENTS_H
12
5f4c791e 13#include <lttng/kernel-version.h>
4e3c1b9b 14#include <linux/list.h>
d6d808f3 15#include <linux/kprobes.h>
d83004aa 16#include <linux/kref.h>
41f229dc 17#include <linux/uuid.h>
754d534a 18#include <linux/irq_work.h>
149b9a9d 19#include <wrapper/uprobes.h>
2df37e95
MD
20#include <lttng/cpuhotplug.h>
21#include <lttng/tracer.h>
22#include <lttng/abi.h>
23#include <lttng/abi-old.h>
24#include <lttng/endian.h>
4e3c1b9b 25
06254b0f 26#define lttng_is_signed_type(type) (((type)(-1)) < 0)
9e7e4892 27
a90917c3
MD
28struct lttng_channel;
29struct lttng_session;
d83004aa 30struct lttng_metadata_cache;
1c25284c 31struct lib_ring_buffer_ctx;
ba1f5986 32struct perf_event;
833ad6a0 33struct perf_event_attr;
3b731ab1 34struct lib_ring_buffer_config;
4e3c1b9b 35
c0edae1d
MD
36/* Type description */
37
c0edae1d
MD
38enum abstract_types {
39 atype_integer,
c0edae1d 40 atype_string,
ceabb767
MD
41 atype_enum_nestable,
42 atype_array_nestable,
43 atype_sequence_nestable,
44 atype_struct_nestable,
45 atype_variant_nestable,
c0edae1d
MD
46 NR_ABSTRACT_TYPES,
47};
48
c0edae1d 49enum lttng_string_encodings {
e0a7a7c4
MD
50 lttng_encode_none = 0,
51 lttng_encode_UTF8 = 1,
52 lttng_encode_ASCII = 2,
c0edae1d
MD
53 NR_STRING_ENCODINGS,
54};
55
d83004aa
JD
56enum channel_type {
57 PER_CPU_CHANNEL,
58 METADATA_CHANNEL,
59};
60
141ddf28
MD
61struct lttng_enum_value {
62 unsigned long long value;
63 unsigned int signedness:1;
64};
65
c0edae1d 66struct lttng_enum_entry {
141ddf28 67 struct lttng_enum_value start, end; /* start and end are inclusive */
c0edae1d 68 const char *string;
08ad1061
PP
69 struct {
70 unsigned int is_auto:1;
71 } options;
c0edae1d
MD
72};
73
43803cf2
MD
74#define __type_integer(_type, _size, _alignment, _signedness, \
75 _byte_order, _base, _encoding) \
c099397a
MD
76 { \
77 .atype = atype_integer, \
ceabb767 78 .u.integer = \
c099397a 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
89struct 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
c0edae1d
MD
98struct lttng_type {
99 enum abstract_types atype;
c0edae1d 100 union {
ceabb767 101 struct lttng_integer_type integer;
c0edae1d 102 struct {
ceabb767
MD
103 enum lttng_string_encodings encoding;
104 } string;
c0edae1d 105 struct {
ceabb767
MD
106 const struct lttng_enum_desc *desc; /* Enumeration mapping */
107 const struct lttng_type *container_type;
108 } enum_nestable;
f513b2bf 109 struct {
ceabb767
MD
110 const struct lttng_type *elem_type;
111 unsigned int length; /* Num. elems. */
112 unsigned int alignment;
113 } array_nestable;
f513b2bf 114 struct {
ceabb767
MD
115 const char *length_name; /* Length field name. */
116 const struct lttng_type *elem_type;
117 unsigned int alignment; /* Alignment before elements. */
118 } sequence_nestable;
f513b2bf 119 struct {
ceabb767
MD
120 unsigned int nr_fields;
121 const struct lttng_event_field *fields; /* Array of fields. */
122 unsigned int alignment;
123 } struct_nestable;
65c85aa6
MD
124 struct {
125 const char *tag_name;
ceabb767
MD
126 const struct lttng_event_field *choices; /* Array of fields. */
127 unsigned int nr_choices;
128 unsigned int alignment;
129 } variant_nestable;
c0edae1d 130 } u;
c099397a
MD
131};
132
141ddf28 133struct lttng_enum_desc {
c099397a 134 const char *name;
c099397a 135 const struct lttng_enum_entry *entries;
141ddf28 136 unsigned int nr_entries;
c099397a 137};
c0edae1d
MD
138
139/* Event field description */
140
141struct lttng_event_field {
142 const char *name;
f17701fb 143 struct lttng_type type;
f127e61e 144 unsigned int nowrite:1, /* do not write into trace */
ceabb767
MD
145 user:1, /* fetch from user-space */
146 nofilter:1; /* do not consider for filter */
c0edae1d
MD
147};
148
07dfc1d0
MD
149union lttng_ctx_value {
150 int64_t s64;
151 const char *str;
152 double d;
153};
154
2001023e
MD
155/*
156 * We need to keep this perf counter field separately from struct
157 * lttng_ctx_field because cpu hotplug needs fixed-location addresses.
158 */
159struct lttng_perf_counter_field {
5f4c791e 160#if (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(4,10,0))
1e367326
MD
161 struct lttng_cpuhp_node cpuhp_prepare;
162 struct lttng_cpuhp_node cpuhp_online;
163#else
2001023e
MD
164 struct notifier_block nb;
165 int hp_enable;
1e367326 166#endif
2001023e
MD
167 struct perf_event_attr *attr;
168 struct perf_event **e; /* per-cpu array */
169};
170
79150a49
JD
171struct lttng_probe_ctx {
172 struct lttng_event *event;
7fad9b39 173 struct lttng_event_notifier *event_notifier; // Not sure if we will ever need it.
79150a49
JD
174 uint8_t interruptible;
175};
176
ba1f5986 177struct lttng_ctx_field {
8070f5c0 178 struct lttng_event_field event_field;
f1676205 179 size_t (*get_size)(size_t offset);
1474c8e2
FG
180 size_t (*get_size_arg)(size_t offset, struct lttng_ctx_field *field,
181 struct lib_ring_buffer_ctx *ctx,
182 struct lttng_channel *chan);
f1676205
MD
183 void (*record)(struct lttng_ctx_field *field,
184 struct lib_ring_buffer_ctx *ctx,
a90917c3 185 struct lttng_channel *chan);
07dfc1d0 186 void (*get_value)(struct lttng_ctx_field *field,
79150a49 187 struct lttng_probe_ctx *lttng_probe_ctx,
07dfc1d0 188 union lttng_ctx_value *value);
ba1f5986 189 union {
2001023e 190 struct lttng_perf_counter_field *perf_counter;
ba1f5986 191 } u;
2dccf128 192 void (*destroy)(struct lttng_ctx_field *field);
3c1a57e8
MD
193 /*
194 * Private data to keep state between get_size and record.
195 * User must perform its own synchronization to protect against
196 * concurrent and reentrant contexts.
197 */
198 void *priv;
ba1f5986
MD
199};
200
201struct lttng_ctx {
833ad6a0 202 struct lttng_ctx_field *fields;
0d1a681e 203 unsigned int nr_fields;
ba1f5986 204 unsigned int allocated_fields;
a9dd15da 205 size_t largest_align; /* in bytes */
0d1a681e
MD
206};
207
208struct lttng_event_desc {
a26a7e4f
MD
209 const char *name; /* lttng-modules name */
210 const char *kname; /* Linux kernel name (tracepoints) */
c0edae1d 211 void *probe_callback;
0d1a681e
MD
212 const struct lttng_event_ctx *ctx; /* context */
213 const struct lttng_event_field *fields; /* event payload */
c0edae1d 214 unsigned int nr_fields;
dc7f600a 215 struct module *owner;
7fad9b39 216 void *event_notifier_callback;
c0edae1d
MD
217};
218
85a9ca7f 219struct lttng_probe_desc {
3c997079 220 const char *provider;
f7bdf4db 221 const struct lttng_event_desc **event_desc;
85a9ca7f
MD
222 unsigned int nr_events;
223 struct list_head head; /* chain registered probes */
3c997079
MD
224 struct list_head lazy_init_head;
225 int lazy; /* lazy registration */
85a9ca7f
MD
226};
227
7371f44c
MD
228struct lttng_krp; /* Kretprobe handling */
229
3c997079
MD
230enum lttng_event_type {
231 LTTNG_TYPE_EVENT = 0,
232 LTTNG_TYPE_ENABLER = 1,
233};
234
89ec2b91
FD
235enum lttng_bytecode_node_type {
236 LTTNG_BYTECODE_NODE_TYPE_FILTER,
99d223ad 237 LTTNG_BYTECODE_NODE_TYPE_CAPTURE,
89ec2b91
FD
238};
239
240struct lttng_bytecode_node {
241 enum lttng_bytecode_node_type type;
07dfc1d0
MD
242 struct list_head node;
243 struct lttng_enabler *enabler;
89ec2b91
FD
244 struct {
245 uint32_t len;
246 uint32_t reloc_offset;
247 uint64_t seqnum;
248 char data[];
249 } bc;
07dfc1d0
MD
250};
251
252/*
80c2a69a 253 * Bytecode interpreter return value masks.
07dfc1d0 254 */
80c2a69a
FD
255enum lttng_bytecode_interpreter_ret {
256 LTTNG_INTERPRETER_DISCARD = 0,
257 LTTNG_INTERPRETER_RECORD_FLAG = (1ULL << 0),
07dfc1d0
MD
258 /* Other bits are kept for future use. */
259};
260
99d223ad
FD
261struct lttng_interpreter_output;
262
07dfc1d0
MD
263struct lttng_bytecode_runtime {
264 /* Associated bytecode */
89ec2b91 265 struct lttng_bytecode_node *bc;
3d650c7b
FD
266 union {
267 uint64_t (*filter)(void *filter_data,
268 struct lttng_probe_ctx *lttng_probe_ctx,
269 const char *filter_stack_data);
99d223ad
FD
270 uint64_t (*capture)(void *filter_data,
271 struct lttng_probe_ctx *lttng_probe_ctx,
272 const char *capture_stack_data,
273 struct lttng_interpreter_output *output);
3d650c7b 274 } interpreter_funcs;
07dfc1d0
MD
275 int link_failed;
276 struct list_head node; /* list of bytecode runtime in event */
2dfda770 277 struct lttng_ctx *ctx;
07dfc1d0
MD
278};
279
3c997079
MD
280/*
281 * Objects in a linked-list of enablers, owned by an event.
282 */
283struct lttng_enabler_ref {
284 struct list_head node; /* enabler ref list */
285 struct lttng_enabler *ref; /* backward ref */
286};
287
3aed4dca 288struct lttng_uprobe_handler {
83b802dc
FD
289 union {
290 struct lttng_event *event;
9de67196 291 struct lttng_event_notifier *event_notifier;
83b802dc 292 } u;
3aed4dca
FD
293 loff_t offset;
294 struct uprobe_consumer up_consumer;
295 struct list_head node;
296};
297
8bf17deb
FD
298struct lttng_kprobe {
299 struct kprobe kp;
300 char *symbol_name;
301};
302
83b802dc
FD
303struct lttng_uprobe {
304 struct inode *inode;
305 struct list_head head;
306};
307
badfe9f5
MD
308enum lttng_syscall_entryexit {
309 LTTNG_SYSCALL_ENTRY,
310 LTTNG_SYSCALL_EXIT,
311};
312
313enum lttng_syscall_abi {
314 LTTNG_SYSCALL_ABI_NATIVE,
315 LTTNG_SYSCALL_ABI_COMPAT,
316};
317
85a9ca7f 318/*
a90917c3 319 * lttng_event structure is referred to by the tracing fast path. It must be
85a9ca7f
MD
320 * kept small.
321 */
a90917c3 322struct lttng_event {
3c997079 323 enum lttng_event_type evtype; /* First field. */
85a9ca7f 324 unsigned int id;
a90917c3 325 struct lttng_channel *chan;
e64957da 326 int enabled;
d3dbe23c 327 const struct lttng_event_desc *desc;
85a9ca7f 328 void *filter;
f1676205 329 struct lttng_ctx *ctx;
38d024ae 330 enum lttng_kernel_instrumentation instrumentation;
d6d808f3 331 union {
8bf17deb 332 struct lttng_kprobe kprobe;
7371f44c
MD
333 struct {
334 struct lttng_krp *lttng_krp;
335 char *symbol_name;
336 } kretprobe;
83b802dc 337 struct lttng_uprobe uprobe;
badfe9f5 338 struct {
badfe9f5
MD
339 enum lttng_syscall_entryexit entryexit;
340 enum lttng_syscall_abi abi;
3b82c4e1 341 struct hlist_node node; /* chain registered syscall event */
badfe9f5 342 } syscall;
d6d808f3 343 } u;
3c997079 344 struct list_head list; /* Event list in session */
9cccf98a 345 unsigned int metadata_dumped:1;
3c997079
MD
346
347 /* Backward references: list of lttng_enabler_ref (ref to enablers) */
348 struct list_head enablers_ref_head;
349 struct hlist_node hlist; /* session ht of events */
350 int registered; /* has reg'd tracepoint probe */
07dfc1d0 351 /* list of struct lttng_bytecode_runtime, sorted by seqnum */
183e8b3a 352 struct list_head filter_bytecode_runtime_head;
07dfc1d0 353 int has_enablers_without_bytecode;
3c997079
MD
354};
355
dffef45d
FD
356// FIXME: Really similar to lttng_event above. Could those be merged ?
357struct lttng_event_notifier {
358 enum lttng_event_type evtype; /* First field. */
359 uint64_t user_token;
99f52fcc 360 uint64_t error_counter_index;
dffef45d
FD
361 int enabled;
362 int registered; /* has reg'd tracepoint probe */
363 const struct lttng_event_desc *desc;
364 void *filter;
365 struct list_head list; /* event_notifier list in event_notifier group */
366
367 enum lttng_kernel_instrumentation instrumentation;
368 union {
2b16f0c9 369 struct lttng_kprobe kprobe;
9de67196 370 struct lttng_uprobe uprobe;
8a8ac9a8
FD
371 struct {
372 enum lttng_syscall_entryexit entryexit;
373 enum lttng_syscall_abi abi;
374 struct hlist_node node; /* chain registered syscall event_notifier */
375 unsigned int syscall_id;
376 } syscall;
377
dffef45d
FD
378 } u;
379
380 /* Backward references: list of lttng_enabler_ref (ref to enablers) */
381 struct list_head enablers_ref_head;
382 struct hlist_node hlist; /* session ht of event_notifiers */
383 /* list of struct lttng_bytecode_runtime, sorted by seqnum */
183e8b3a 384 struct list_head filter_bytecode_runtime_head;
99d223ad
FD
385 size_t num_captures;
386 struct list_head capture_bytecode_runtime_head;
dffef45d
FD
387 int has_enablers_without_bytecode;
388
99d223ad
FD
389 void (*send_notification)(struct lttng_event_notifier *event_notifier,
390 struct lttng_probe_ctx *lttng_probe_ctx,
391 const char *interpreter_stack_data);
dffef45d
FD
392 struct lttng_event_notifier_group *group; /* Weak ref */
393};
394
3b861b22
FD
395enum lttng_enabler_format_type {
396 LTTNG_ENABLER_FORMAT_STAR_GLOB,
397 LTTNG_ENABLER_FORMAT_NAME,
3c997079
MD
398};
399
400/*
401 * Enabler field, within whatever object is enabling an event. Target of
402 * backward reference.
403 */
404struct lttng_enabler {
405 enum lttng_event_type evtype; /* First field. */
406
3b861b22 407 enum lttng_enabler_format_type format_type;
3c997079 408
608ab495 409 /* head list of struct lttng_bytecode_node */
07dfc1d0 410 struct list_head filter_bytecode_head;
3c997079
MD
411
412 struct lttng_kernel_event event_param;
b2bc0bc8 413 unsigned int enabled:1;
dffef45d
FD
414
415 uint64_t user_token; /* User-provided token. */
b2bc0bc8
FD
416};
417
418struct lttng_event_enabler {
419 struct lttng_enabler base;
420 struct list_head node; /* per-session list of enablers */
3c997079 421 struct lttng_channel *chan;
2954b37c
FD
422 /*
423 * Unused, but kept around to make it explicit that the tracer can do
424 * it.
425 */
3c997079 426 struct lttng_ctx *ctx;
85a9ca7f
MD
427};
428
dffef45d
FD
429struct lttng_event_notifier_enabler {
430 struct lttng_enabler base;
99f52fcc 431 uint64_t error_counter_index;
dffef45d
FD
432 struct list_head node; /* List of event_notifier enablers */
433 struct lttng_event_notifier_group *group;
99d223ad
FD
434
435 /* head list of struct lttng_bytecode_node */
436 struct list_head capture_bytecode_head;
437 uint64_t num_captures;
dffef45d
FD
438};
439
99d223ad 440
b2bc0bc8
FD
441static inline
442struct lttng_enabler *lttng_event_enabler_as_enabler(
443 struct lttng_event_enabler *event_enabler)
444{
445 return &event_enabler->base;
446}
447
dffef45d
FD
448static inline
449struct lttng_enabler *lttng_event_notifier_enabler_as_enabler(
450 struct lttng_event_notifier_enabler *event_notifier_enabler)
451{
452 return &event_notifier_enabler->base;
453}
b2bc0bc8 454
a90917c3 455struct lttng_channel_ops {
85a9ca7f 456 struct channel *(*channel_create)(const char *name,
5cf4b87c 457 void *priv,
85a9ca7f
MD
458 void *buf_addr,
459 size_t subbuf_size, size_t num_subbuf,
460 unsigned int switch_timer_interval,
461 unsigned int read_timer_interval);
462 void (*channel_destroy)(struct channel *chan);
463 struct lib_ring_buffer *(*buffer_read_open)(struct channel *chan);
f71ecafa 464 int (*buffer_has_read_closed_stream)(struct channel *chan);
85a9ca7f 465 void (*buffer_read_close)(struct lib_ring_buffer *buf);
4e1f08f4 466 int (*event_reserve)(struct lib_ring_buffer_ctx *ctx,
64c796d8 467 uint32_t event_id);
85a9ca7f
MD
468 void (*event_commit)(struct lib_ring_buffer_ctx *ctx);
469 void (*event_write)(struct lib_ring_buffer_ctx *ctx, const void *src,
470 size_t len);
4ea00e4f
JD
471 void (*event_write_from_user)(struct lib_ring_buffer_ctx *ctx,
472 const void *src, size_t len);
58aa5d24
MD
473 void (*event_memset)(struct lib_ring_buffer_ctx *ctx,
474 int c, size_t len);
16f78f3a
MD
475 void (*event_strcpy)(struct lib_ring_buffer_ctx *ctx, const char *src,
476 size_t len);
477 void (*event_strcpy_from_user)(struct lib_ring_buffer_ctx *ctx,
478 const char __user *src, size_t len);
1ec3f75a
MD
479 /*
480 * packet_avail_size returns the available size in the current
481 * packet. Note that the size returned is only a hint, since it
482 * may change due to concurrent writes.
483 */
484 size_t (*packet_avail_size)(struct channel *chan);
71c1d843 485 wait_queue_head_t *(*get_writer_buf_wait_queue)(struct channel *chan, int cpu);
24cedcfe
MD
486 wait_queue_head_t *(*get_hp_wait_queue)(struct channel *chan);
487 int (*is_finalized)(struct channel *chan);
254ec7bc 488 int (*is_disabled)(struct channel *chan);
3b731ab1
JD
489 int (*timestamp_begin) (const struct lib_ring_buffer_config *config,
490 struct lib_ring_buffer *bufb,
491 uint64_t *timestamp_begin);
492 int (*timestamp_end) (const struct lib_ring_buffer_config *config,
493 struct lib_ring_buffer *bufb,
494 uint64_t *timestamp_end);
495 int (*events_discarded) (const struct lib_ring_buffer_config *config,
496 struct lib_ring_buffer *bufb,
497 uint64_t *events_discarded);
498 int (*content_size) (const struct lib_ring_buffer_config *config,
499 struct lib_ring_buffer *bufb,
500 uint64_t *content_size);
501 int (*packet_size) (const struct lib_ring_buffer_config *config,
502 struct lib_ring_buffer *bufb,
503 uint64_t *packet_size);
504 int (*stream_id) (const struct lib_ring_buffer_config *config,
505 struct lib_ring_buffer *bufb,
506 uint64_t *stream_id);
2348ca17
JD
507 int (*current_timestamp) (const struct lib_ring_buffer_config *config,
508 struct lib_ring_buffer *bufb,
509 uint64_t *ts);
5b3cf4f9
JD
510 int (*sequence_number) (const struct lib_ring_buffer_config *config,
511 struct lib_ring_buffer *bufb,
512 uint64_t *seq);
5594698f
JD
513 int (*instance_id) (const struct lib_ring_buffer_config *config,
514 struct lib_ring_buffer *bufb,
515 uint64_t *id);
85a9ca7f
MD
516};
517
a101fa10
MD
518struct lttng_counter_ops {
519 struct lib_counter *(*counter_create)(size_t nr_dimensions,
520 const size_t *max_nr_elem, /* for each dimension */
521 int64_t global_sum_step);
522 void (*counter_destroy)(struct lib_counter *counter);
523 int (*counter_add)(struct lib_counter *counter, const size_t *dimension_indexes,
524 int64_t v);
525 /*
526 * counter_read reads a specific cpu's counter if @cpu >= 0, or
527 * the global aggregation counter if @cpu == -1.
528 */
529 int (*counter_read)(struct lib_counter *counter, const size_t *dimension_indexes, int cpu,
530 int64_t *value, bool *overflow, bool *underflow);
531 /*
532 * counter_aggregate returns the total sum of all per-cpu counters and
533 * the global aggregation counter.
534 */
535 int (*counter_aggregate)(struct lib_counter *counter, const size_t *dimension_indexes,
536 int64_t *value, bool *overflow, bool *underflow);
537 int (*counter_clear)(struct lib_counter *counter, const size_t *dimension_indexes);
538};
539
a90917c3 540struct lttng_transport {
a33c9927
MD
541 char *name;
542 struct module *owner;
543 struct list_head node;
a90917c3 544 struct lttng_channel_ops ops;
a33c9927
MD
545};
546
a101fa10
MD
547struct lttng_counter_transport {
548 char *name;
549 struct module *owner;
550 struct list_head node;
551 struct lttng_counter_ops ops;
552};
553
80f87dd2
MD
554struct lttng_syscall_filter;
555
3c997079
MD
556#define LTTNG_EVENT_HT_BITS 12
557#define LTTNG_EVENT_HT_SIZE (1U << LTTNG_EVENT_HT_BITS)
558
559struct lttng_event_ht {
560 struct hlist_head table[LTTNG_EVENT_HT_SIZE];
561};
562
dffef45d
FD
563#define LTTNG_EVENT_NOTIFIER_HT_BITS 12
564#define LTTNG_EVENT_NOTIFIER_HT_SIZE (1U << LTTNG_EVENT_NOTIFIER_HT_BITS)
565
566struct lttng_event_notifier_ht {
567 struct hlist_head table[LTTNG_EVENT_NOTIFIER_HT_SIZE];
568};
569
a90917c3 570struct lttng_channel {
c099397a 571 unsigned int id;
85a9ca7f 572 struct channel *chan; /* Channel buffers */
e64957da 573 int enabled;
f1676205 574 struct lttng_ctx *ctx;
85a9ca7f 575 /* Event ID management */
a90917c3 576 struct lttng_session *session;
85a9ca7f
MD
577 struct file *file; /* File associated to channel */
578 unsigned int free_event_id; /* Next event ID to allocate */
579 struct list_head list; /* Channel list */
a90917c3
MD
580 struct lttng_channel_ops *ops;
581 struct lttng_transport *transport;
3b82c4e1
MD
582 struct hlist_head *sc_table; /* for syscall tracing */
583 struct hlist_head *compat_sc_table;
584 struct hlist_head *sc_exit_table; /* for syscall exit tracing */
585 struct hlist_head *compat_sc_exit_table;
586 struct hlist_head sc_unknown; /* for unknown syscalls */
587 struct hlist_head sc_compat_unknown;
588 struct hlist_head sc_exit_unknown;
589 struct hlist_head compat_sc_exit_unknown;
80f87dd2 590 struct lttng_syscall_filter *sc_filter;
9115fbdc 591 int header_type; /* 0: unset, 1: compact, 2: large */
d83004aa 592 enum channel_type channel_type;
3b82c4e1
MD
593 int syscall_all_entry;
594 int syscall_all_exit;
80f87dd2
MD
595 unsigned int metadata_dumped:1,
596 sys_enter_registered:1,
597 sys_exit_registered:1,
3c997079 598 tstate:1; /* Transient enable state */
85a9ca7f
MD
599};
600
d83004aa
JD
601struct lttng_metadata_stream {
602 void *priv; /* Ring buffer private data */
603 struct lttng_metadata_cache *metadata_cache;
f613e3e6
MD
604 unsigned int metadata_in; /* Bytes read from the cache */
605 unsigned int metadata_out; /* Bytes consumed from stream */
d83004aa
JD
606 int finalized; /* Has channel been finalized */
607 wait_queue_head_t read_wait; /* Reader buffer-level wait queue */
608 struct list_head list; /* Stream list */
b3b8072b 609 struct lttng_transport *transport;
9616f0bf 610 uint64_t version; /* Current version of the metadata cache */
8b97fd42 611 bool coherent; /* Stream in a coherent state */
d83004aa
JD
612};
613
114667d5
MD
614#define LTTNG_DYNAMIC_LEN_STACK_SIZE 128
615
616struct lttng_dynamic_len_stack {
617 size_t stack[LTTNG_DYNAMIC_LEN_STACK_SIZE];
618 size_t offset;
619};
620
621DECLARE_PER_CPU(struct lttng_dynamic_len_stack, lttng_dynamic_len_stack);
e0130fab
MD
622
623/*
d1f652f8 624 * struct lttng_id_tracker declared in header due to deferencing of *v
e0130fab
MD
625 * in RCU_INITIALIZER(v).
626 */
d1f652f8
MD
627#define LTTNG_ID_HASH_BITS 6
628#define LTTNG_ID_TABLE_SIZE (1 << LTTNG_ID_HASH_BITS)
e0130fab 629
d1f652f8
MD
630enum tracker_type {
631 TRACKER_PID,
632 TRACKER_VPID,
633 TRACKER_UID,
634 TRACKER_VUID,
635 TRACKER_GID,
636 TRACKER_VGID,
637
638 TRACKER_UNKNOWN,
639};
640
641struct lttng_id_tracker_rcu {
642 struct hlist_head id_hash[LTTNG_ID_TABLE_SIZE];
643};
644
645struct lttng_id_tracker {
646 struct lttng_session *session;
647 enum tracker_type tracker_type;
648 struct lttng_id_tracker_rcu *p; /* RCU dereferenced. */
e0130fab
MD
649};
650
d1f652f8 651struct lttng_id_hash_node {
7e6f9ef6 652 struct hlist_node hlist;
d1f652f8 653 int id;
7e6f9ef6
MD
654};
655
a90917c3 656struct lttng_session {
85a9ca7f 657 int active; /* Is trace session active ? */
8070f5c0 658 int been_active; /* Has trace session been active ? */
85a9ca7f
MD
659 struct file *file; /* File associated to session */
660 struct list_head chan; /* Channel list head */
661 struct list_head events; /* Event list head */
662 struct list_head list; /* Session list */
c099397a 663 unsigned int free_chan_id; /* Next chan ID to allocate */
d793d5e1 664 uuid_le uuid; /* Trace session unique ID */
d83004aa 665 struct lttng_metadata_cache *metadata_cache;
d1f652f8
MD
666 struct lttng_id_tracker pid_tracker;
667 struct lttng_id_tracker vpid_tracker;
668 struct lttng_id_tracker uid_tracker;
669 struct lttng_id_tracker vuid_tracker;
670 struct lttng_id_tracker gid_tracker;
671 struct lttng_id_tracker vgid_tracker;
3c997079
MD
672 unsigned int metadata_dumped:1,
673 tstate:1; /* Transient enable state */
b2bc0bc8 674 /* List of event enablers */
3c997079
MD
675 struct list_head enablers_head;
676 /* Hash table of events */
677 struct lttng_event_ht events_ht;
7f859fbf 678 char name[LTTNG_KERNEL_SESSION_NAME_LEN];
1c88f269 679 char creation_time[LTTNG_KERNEL_SESSION_CREATION_TIME_ISO8601_LEN];
85a9ca7f
MD
680};
681
99f52fcc
FD
682struct lttng_counter {
683 struct file *file; /* File associated to counter. */
684 struct file *owner;
685 struct lttng_counter_transport *transport;
686 struct lib_counter *counter;
687 struct lttng_counter_ops *ops;
688};
689
750b05f2
FD
690struct lttng_event_notifier_group {
691 struct file *file; /* File associated to event notifier group */
21f58fb7 692 struct file *notif_file; /* File used to expose notifications to userspace. */
750b05f2 693 struct list_head node; /* event notifier group list */
dffef45d
FD
694 struct list_head enablers_head; /* List of enablers */
695 struct list_head event_notifiers_head; /* List of event notifier */
696 struct lttng_event_notifier_ht event_notifiers_ht; /* Hash table of event notifiers */
750b05f2
FD
697 struct lttng_ctx *ctx; /* Contexts for filters. */
698 struct lttng_channel_ops *ops;
699 struct lttng_transport *transport;
700 struct channel *chan; /* Ring buffer channel for event notifier group. */
701 struct lib_ring_buffer *buf; /* Ring buffer for event notifier group. */
21f58fb7
FD
702 wait_queue_head_t read_wait;
703 struct irq_work wakeup_pending; /* Pending wakeup irq work. */
8a8ac9a8
FD
704 struct lttng_event_notifier *sc_unknown; /* for unknown syscalls */
705 struct lttng_event_notifier *sc_compat_unknown;
706
707 struct lttng_syscall_filter *sc_filter;
708
709 struct hlist_head *event_notifier_syscall_dispatch;
710 struct hlist_head *event_notifier_compat_syscall_dispatch;
711 struct hlist_head *event_notifier_exit_syscall_dispatch;
712 struct hlist_head *event_notifier_exit_compat_syscall_dispatch;
713
714 struct hlist_head event_notifier_unknown_syscall_dispatch;
715 struct hlist_head event_notifier_compat_unknown_syscall_dispatch;
716 struct hlist_head event_notifier_exit_unknown_syscall_dispatch;
717 struct hlist_head event_notifier_exit_compat_unknown_syscall_dispatch;
718
719 int syscall_all_entry;
720 int syscall_all_exit;
721
722 unsigned int sys_enter_registered:1, sys_exit_registered:1;
723
724 struct lttng_counter *error_counter;
725 size_t error_counter_len;
750b05f2
FD
726};
727
d83004aa
JD
728struct lttng_metadata_cache {
729 char *data; /* Metadata cache */
730 unsigned int cache_alloc; /* Metadata allocated size (bytes) */
731 unsigned int metadata_written; /* Number of bytes written in metadata cache */
3e75e2a7 732 atomic_t producing; /* Metadata being produced (incomplete) */
d83004aa
JD
733 struct kref refcount; /* Metadata cache usage */
734 struct list_head metadata_stream; /* Metadata stream list */
a36580d5 735 uuid_le uuid; /* Trace session unique ID (copy) */
9616f0bf
JD
736 struct mutex lock; /* Produce/consume lock */
737 uint64_t version; /* Current version of the metadata */
d83004aa
JD
738};
739
3c997079
MD
740void lttng_lock_sessions(void);
741void lttng_unlock_sessions(void);
742
743struct list_head *lttng_get_probe_list_head(void);
744
b2bc0bc8
FD
745struct lttng_event_enabler *lttng_event_enabler_create(
746 enum lttng_enabler_format_type format_type,
3c997079
MD
747 struct lttng_kernel_event *event_param,
748 struct lttng_channel *chan);
749
b2bc0bc8
FD
750int lttng_event_enabler_enable(struct lttng_event_enabler *event_enabler);
751int lttng_event_enabler_disable(struct lttng_event_enabler *event_enabler);
dffef45d
FD
752struct lttng_event_notifier_enabler *lttng_event_notifier_enabler_create(
753 struct lttng_event_notifier_group *event_notifier_group,
754 enum lttng_enabler_format_type format_type,
755 struct lttng_kernel_event_notifier *event_notifier_param);
756
757int lttng_event_notifier_enabler_enable(
758 struct lttng_event_notifier_enabler *event_notifier_enabler);
759int lttng_event_notifier_enabler_disable(
760 struct lttng_event_notifier_enabler *event_notifier_enabler);
3c997079 761int lttng_fix_pending_events(void);
b01155ba 762int lttng_fix_pending_event_notifiers(void);
3c997079 763int lttng_session_active(void);
b01155ba 764bool lttng_event_notifier_active(void);
3c997079 765
a90917c3
MD
766struct lttng_session *lttng_session_create(void);
767int lttng_session_enable(struct lttng_session *session);
768int lttng_session_disable(struct lttng_session *session);
769void lttng_session_destroy(struct lttng_session *session);
9616f0bf 770int lttng_session_metadata_regenerate(struct lttng_session *session);
601252cf 771int lttng_session_statedump(struct lttng_session *session);
d83004aa 772void metadata_cache_destroy(struct kref *kref);
4e3c1b9b 773
99f52fcc
FD
774struct lttng_counter *lttng_kernel_counter_create(
775 const char *counter_transport_name, size_t number_dimensions,
776 const size_t *dimensions_sizes);
777int lttng_kernel_counter_read(struct lttng_counter *counter,
778 const size_t *dimension_indexes, int32_t cpu,
779 int64_t *val, bool *overflow, bool *underflow);
780int lttng_kernel_counter_aggregate(struct lttng_counter *counter,
781 const size_t *dimension_indexes, int64_t *val,
782 bool *overflow, bool *underflow);
783int lttng_kernel_counter_clear(struct lttng_counter *counter,
784 const size_t *dimension_indexes);
785
786
750b05f2 787struct lttng_event_notifier_group *lttng_event_notifier_group_create(void);
99f52fcc
FD
788int lttng_event_notifier_group_create_error_counter(
789 struct file *event_notifier_group_file,
790 const struct lttng_kernel_counter_conf *error_counter_conf);
750b05f2
FD
791void lttng_event_notifier_group_destroy(
792 struct lttng_event_notifier_group *event_notifier_group);
793
a90917c3 794struct lttng_channel *lttng_channel_create(struct lttng_session *session,
5dbbdb43
MD
795 const char *transport_name,
796 void *buf_addr,
797 size_t subbuf_size, size_t num_subbuf,
798 unsigned int switch_timer_interval,
d83004aa
JD
799 unsigned int read_timer_interval,
800 enum channel_type channel_type);
a90917c3 801struct lttng_channel *lttng_global_channel_create(struct lttng_session *session,
4e3c1b9b
MD
802 int overwrite, void *buf_addr,
803 size_t subbuf_size, size_t num_subbuf,
804 unsigned int switch_timer_interval,
805 unsigned int read_timer_interval);
4e3c1b9b 806
d83004aa 807void lttng_metadata_channel_destroy(struct lttng_channel *chan);
a90917c3 808struct lttng_event *lttng_event_create(struct lttng_channel *chan,
3c997079
MD
809 struct lttng_kernel_event *event_param,
810 void *filter,
811 const struct lttng_event_desc *event_desc,
812 enum lttng_kernel_instrumentation itype);
33a39a3c
MD
813struct lttng_event *_lttng_event_create(struct lttng_channel *chan,
814 struct lttng_kernel_event *event_param,
815 void *filter,
816 const struct lttng_event_desc *event_desc,
817 enum lttng_kernel_instrumentation itype);
6dccd6c1
JD
818struct lttng_event *lttng_event_compat_old_create(struct lttng_channel *chan,
819 struct lttng_kernel_old_event *old_event_param,
820 void *filter,
821 const struct lttng_event_desc *internal_desc);
c0e31d2e 822
dffef45d
FD
823struct lttng_event_notifier *lttng_event_notifier_create(
824 const struct lttng_event_desc *event_notifier_desc,
825 uint64_t id,
99f52fcc 826 uint64_t error_counter_idx,
dffef45d
FD
827 struct lttng_event_notifier_group *event_notifier_group,
828 struct lttng_kernel_event_notifier *event_notifier_param,
829 void *filter,
830 enum lttng_kernel_instrumentation itype);
831struct lttng_event_notifier *_lttng_event_notifier_create(
832 const struct lttng_event_desc *event_notifier_desc,
833 uint64_t id,
99f52fcc 834 uint64_t error_counter_idx,
dffef45d
FD
835 struct lttng_event_notifier_group *event_notifier_group,
836 struct lttng_kernel_event_notifier *event_notifier_param,
837 void *filter,
838 enum lttng_kernel_instrumentation itype);
839
a90917c3
MD
840int lttng_channel_enable(struct lttng_channel *channel);
841int lttng_channel_disable(struct lttng_channel *channel);
842int lttng_event_enable(struct lttng_event *event);
843int lttng_event_disable(struct lttng_event *event);
e64957da 844
2b16f0c9
FD
845int lttng_event_notifier_enable(struct lttng_event_notifier *event_notifier);
846int lttng_event_notifier_disable(struct lttng_event_notifier *event_notifier);
847
a90917c3
MD
848void lttng_transport_register(struct lttng_transport *transport);
849void lttng_transport_unregister(struct lttng_transport *transport);
11b5a3c2 850
a101fa10
MD
851void lttng_counter_transport_register(struct lttng_counter_transport *transport);
852void lttng_counter_transport_unregister(struct lttng_counter_transport *transport);
853
360f38ea 854void synchronize_trace(void);
80996790 855int lttng_abi_init(void);
6dccd6c1 856int lttng_abi_compat_old_init(void);
80996790 857void lttng_abi_exit(void);
6dccd6c1 858void lttng_abi_compat_old_exit(void);
1c25284c 859
a90917c3
MD
860int lttng_probe_register(struct lttng_probe_desc *desc);
861void lttng_probe_unregister(struct lttng_probe_desc *desc);
0bcedee9
FD
862const struct lttng_event_desc *lttng_event_desc_get(const char *name);
863void lttng_event_desc_put(const struct lttng_event_desc *desc);
a90917c3
MD
864int lttng_probes_init(void);
865void lttng_probes_exit(void);
1ec65de1 866
b3b8072b 867int lttng_metadata_output_channel(struct lttng_metadata_stream *stream,
8b97fd42 868 struct channel *chan, bool *coherent);
d83004aa 869
d1f652f8
MD
870int lttng_id_tracker_get_node_id(const struct lttng_id_hash_node *node);
871int lttng_id_tracker_empty_set(struct lttng_id_tracker *lf);
872void lttng_id_tracker_destroy(struct lttng_id_tracker *lf, bool rcu);
873bool lttng_id_tracker_lookup(struct lttng_id_tracker_rcu *p, int id);
874int lttng_id_tracker_add(struct lttng_id_tracker *lf, int id);
875int lttng_id_tracker_del(struct lttng_id_tracker *lf, int id);
e0130fab 876
d1f652f8
MD
877int lttng_session_track_id(struct lttng_session *session,
878 enum tracker_type tracker_type, int id);
879int lttng_session_untrack_id(struct lttng_session *session,
880 enum tracker_type tracker_type, int id);
e0130fab 881
d1f652f8
MD
882int lttng_session_list_tracker_ids(struct lttng_session *session,
883 enum tracker_type tracker_type);
7e6f9ef6 884
2754583e
MD
885void lttng_clock_ref(void);
886void lttng_clock_unref(void);
887
8a8ac9a8
FD
888int lttng_desc_match_enabler(const struct lttng_event_desc *desc,
889 struct lttng_enabler *enabler);
890
3a523f5b 891#if defined(CONFIG_HAVE_SYSCALL_TRACEPOINTS)
3b82c4e1
MD
892int lttng_syscalls_register_event(struct lttng_event_enabler *event_enabler, void *filter);
893int lttng_syscalls_unregister_channel(struct lttng_channel *chan);
2d6d88c6 894int lttng_syscalls_destroy_event(struct lttng_channel *chan);
ade8a729
FD
895int lttng_syscall_filter_enable_event(
896 struct lttng_channel *chan,
badfe9f5 897 struct lttng_event *event);
ade8a729
FD
898int lttng_syscall_filter_disable_event(
899 struct lttng_channel *chan,
badfe9f5 900 struct lttng_event *event);
ade8a729 901
12e579db
MD
902long lttng_channel_syscall_mask(struct lttng_channel *channel,
903 struct lttng_kernel_syscall_mask __user *usyscall_mask);
2d6d88c6 904
8a8ac9a8
FD
905int lttng_syscalls_register_event_notifier(
906 struct lttng_event_notifier_enabler *event_notifier_enabler,
907 void *filter);
908int lttng_syscals_create_matching_event_notifiers(
909 struct lttng_event_notifier_enabler *event_notifier_enabler, void *filter);
3b82c4e1 910int lttng_syscalls_unregister_event_notifier_group(struct lttng_event_notifier_group *group);
8a8ac9a8
FD
911int lttng_syscall_filter_enable_event_notifier(struct lttng_event_notifier *event_notifier);
912int lttng_syscall_filter_disable_event_notifier(struct lttng_event_notifier *event_notifier);
1ec65de1 913#else
2d6d88c6 914static inline int lttng_syscalls_register_event(
3b82c4e1 915 struct lttng_event_enabler *event_enabler, void *filter)
1ec65de1
MD
916{
917 return -ENOSYS;
918}
919
3b82c4e1 920static inline int lttng_syscalls_unregister_channel(struct lttng_channel *chan)
1ec65de1
MD
921{
922 return 0;
923}
80f87dd2 924
badfe9f5
MD
925static inline int lttng_syscalls_destroy(struct lttng_channel *chan)
926{
927 return 0;
928}
929
2d6d88c6 930static inline int lttng_syscall_filter_enable_event(struct lttng_channel *chan,
badfe9f5 931 struct lttng_event *event);
80f87dd2
MD
932{
933 return -ENOSYS;
934}
935
2d6d88c6 936static inline int lttng_syscall_filter_disable_event(struct lttng_channel *chan,
badfe9f5 937 struct lttng_event *event);
80f87dd2
MD
938{
939 return -ENOSYS;
940}
12e579db 941
f127e61e 942static inline long lttng_channel_syscall_mask(struct lttng_channel *channel,
12e579db
MD
943 struct lttng_kernel_syscall_mask __user *usyscall_mask)
944{
945 return -ENOSYS;
946}
dffef45d 947
8a8ac9a8
FD
948static inline int lttng_syscalls_register_event_notifier(
949 struct lttng_event_notifier_group *group, void *filter)
950{
951 return -ENOSYS;
952}
953
3b82c4e1 954static inline int lttng_syscalls_unregister_event_notifier_group(
8a8ac9a8
FD
955 struct lttng_event_notifier_group *group)
956{
957 return 0;
958}
959
960static inline int lttng_syscall_filter_enable_event_notifier(
961 struct lttng_event_notifier_group *group,
962 const char *name)
963{
964 return -ENOSYS;
965}
966
967static inline int lttng_syscall_filter_disable_event_notifier(
968 struct lttng_event_notifier_group *group,
969 const char *name)
970{
971 return -ENOSYS;
972}
973
1ec65de1
MD
974#endif
975
183e8b3a 976int lttng_event_enabler_attach_filter_bytecode(struct lttng_event_enabler *event_enabler,
07dfc1d0 977 struct lttng_kernel_filter_bytecode __user *bytecode);
183e8b3a 978int lttng_event_notifier_enabler_attach_filter_bytecode(
dffef45d
FD
979 struct lttng_event_notifier_enabler *event_notifier_enabler,
980 struct lttng_kernel_filter_bytecode __user *bytecode);
99d223ad
FD
981int lttng_event_notifier_enabler_attach_capture_bytecode(
982 struct lttng_event_notifier_enabler *event_notifier_enabler,
983 struct lttng_kernel_capture_bytecode __user *bytecode);
2dfda770
FD
984
985void lttng_enabler_link_bytecode(const struct lttng_event_desc *event_desc,
986 struct lttng_ctx *ctx,
60206944
FD
987 struct list_head *instance_bytecode_runtime_head,
988 struct list_head *enabler_bytecode_runtime_head);
966ad253 989void lttng_free_event_filter_runtime(struct lttng_event *event);
07dfc1d0 990
114667d5
MD
991int lttng_probes_init(void);
992
07dfc1d0
MD
993extern struct lttng_ctx *lttng_static_ctx;
994
995int lttng_context_init(void);
996void lttng_context_exit(void);
2dccf128 997struct lttng_ctx_field *lttng_append_context(struct lttng_ctx **ctx);
c02eb859
MD
998ssize_t lttng_append_context_index(struct lttng_ctx **ctx_p);
999struct lttng_ctx_field *lttng_get_context_field_from_index(struct lttng_ctx *ctx,
1000 size_t index);
a9dd15da 1001void lttng_context_update(struct lttng_ctx *ctx);
44252f0f 1002int lttng_find_context(struct lttng_ctx *ctx, const char *name);
07dfc1d0 1003int lttng_get_context_index(struct lttng_ctx *ctx, const char *name);
8289661d
MD
1004void lttng_remove_context_field(struct lttng_ctx **ctx,
1005 struct lttng_ctx_field *field);
c02eb859 1006void lttng_remove_context_field_index(struct lttng_ctx **ctx_p, size_t index);
2dccf128 1007void lttng_destroy_context(struct lttng_ctx *ctx);
8070f5c0 1008int lttng_add_pid_to_ctx(struct lttng_ctx **ctx);
b3699d90 1009int lttng_add_cpu_id_to_ctx(struct lttng_ctx **ctx);
a2563e83 1010int lttng_add_procname_to_ctx(struct lttng_ctx **ctx);
a8ad3613 1011int lttng_add_prio_to_ctx(struct lttng_ctx **ctx);
53f1f0ca 1012int lttng_add_nice_to_ctx(struct lttng_ctx **ctx);
b64bc438
MD
1013int lttng_add_vpid_to_ctx(struct lttng_ctx **ctx);
1014int lttng_add_tid_to_ctx(struct lttng_ctx **ctx);
1015int lttng_add_vtid_to_ctx(struct lttng_ctx **ctx);
1016int lttng_add_ppid_to_ctx(struct lttng_ctx **ctx);
1017int lttng_add_vppid_to_ctx(struct lttng_ctx **ctx);
975da2c0 1018int lttng_add_hostname_to_ctx(struct lttng_ctx **ctx);
79150a49
JD
1019int lttng_add_interruptible_to_ctx(struct lttng_ctx **ctx);
1020int lttng_add_need_reschedule_to_ctx(struct lttng_ctx **ctx);
1021#if defined(CONFIG_PREEMPT_RT_FULL) || defined(CONFIG_PREEMPT)
1022int lttng_add_preemptible_to_ctx(struct lttng_ctx **ctx);
1023#else
1024static inline
1025int lttng_add_preemptible_to_ctx(struct lttng_ctx **ctx)
1026{
1027 return -ENOSYS;
1028}
1029#endif
1030#ifdef CONFIG_PREEMPT_RT_FULL
1031int lttng_add_migratable_to_ctx(struct lttng_ctx **ctx);
1032#else
1033static inline
1034int lttng_add_migratable_to_ctx(struct lttng_ctx **ctx)
1035{
1036 return -ENOSYS;
1037}
1038#endif
2fa2d39a
FG
1039
1040int lttng_add_callstack_to_ctx(struct lttng_ctx **ctx, int type);
1041
a6cf40a4 1042#if defined(CONFIG_CGROUPS) && \
5f4c791e 1043 ((LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(4,6,0)) || \
a6cf40a4
MJ
1044 LTTNG_UBUNTU_KERNEL_RANGE(4,4,0,0, 4,5,0,0))
1045int lttng_add_cgroup_ns_to_ctx(struct lttng_ctx **ctx);
1046#else
1047static inline
1048int lttng_add_cgroup_ns_to_ctx(struct lttng_ctx **ctx)
1049{
1050 return -ENOSYS;
1051}
1052#endif
1053
1054#if defined(CONFIG_IPC_NS) && \
5f4c791e 1055 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
a6cf40a4
MJ
1056int lttng_add_ipc_ns_to_ctx(struct lttng_ctx **ctx);
1057#else
1058static inline
1059int lttng_add_ipc_ns_to_ctx(struct lttng_ctx **ctx)
1060{
1061 return -ENOSYS;
1062}
1063#endif
1064
1065#if !defined(LTTNG_MNT_NS_MISSING_HEADER) && \
5f4c791e 1066 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
a6cf40a4
MJ
1067int lttng_add_mnt_ns_to_ctx(struct lttng_ctx **ctx);
1068#else
1069static inline
1070int lttng_add_mnt_ns_to_ctx(struct lttng_ctx **ctx)
1071{
1072 return -ENOSYS;
1073}
1074#endif
1075
1076#if defined(CONFIG_NET_NS) && \
5f4c791e 1077 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
a6cf40a4
MJ
1078int lttng_add_net_ns_to_ctx(struct lttng_ctx **ctx);
1079#else
1080static inline
1081int lttng_add_net_ns_to_ctx(struct lttng_ctx **ctx)
1082{
1083 return -ENOSYS;
1084}
1085#endif
1086
1087#if defined(CONFIG_PID_NS) && \
5f4c791e 1088 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
a6cf40a4
MJ
1089int lttng_add_pid_ns_to_ctx(struct lttng_ctx **ctx);
1090#else
1091static inline
1092int lttng_add_pid_ns_to_ctx(struct lttng_ctx **ctx)
1093{
1094 return -ENOSYS;
1095}
1096#endif
1097
1098#if defined(CONFIG_USER_NS) && \
5f4c791e 1099 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
a6cf40a4
MJ
1100int lttng_add_user_ns_to_ctx(struct lttng_ctx **ctx);
1101#else
1102static inline
1103int lttng_add_user_ns_to_ctx(struct lttng_ctx **ctx)
1104{
1105 return -ENOSYS;
1106}
1107#endif
1108
1109#if defined(CONFIG_UTS_NS) && \
5f4c791e 1110 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
a6cf40a4
MJ
1111int lttng_add_uts_ns_to_ctx(struct lttng_ctx **ctx);
1112#else
1113static inline
1114int lttng_add_uts_ns_to_ctx(struct lttng_ctx **ctx)
1115{
1116 return -ENOSYS;
1117}
1118#endif
1119
876e2e92 1120#if defined(CONFIG_TIME_NS) && \
5f4c791e 1121 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(5,6,0))
876e2e92
MJ
1122int lttng_add_time_ns_to_ctx(struct lttng_ctx **ctx);
1123#else
1124static inline
1125int lttng_add_time_ns_to_ctx(struct lttng_ctx **ctx)
1126{
1127 return -ENOSYS;
1128}
1129#endif
1130
dc923e75
MJ
1131int lttng_add_uid_to_ctx(struct lttng_ctx **ctx);
1132int lttng_add_euid_to_ctx(struct lttng_ctx **ctx);
1133int lttng_add_suid_to_ctx(struct lttng_ctx **ctx);
1134int lttng_add_gid_to_ctx(struct lttng_ctx **ctx);
1135int lttng_add_egid_to_ctx(struct lttng_ctx **ctx);
1136int lttng_add_sgid_to_ctx(struct lttng_ctx **ctx);
1137int lttng_add_vuid_to_ctx(struct lttng_ctx **ctx);
1138int lttng_add_veuid_to_ctx(struct lttng_ctx **ctx);
1139int lttng_add_vsuid_to_ctx(struct lttng_ctx **ctx);
1140int lttng_add_vgid_to_ctx(struct lttng_ctx **ctx);
1141int lttng_add_vegid_to_ctx(struct lttng_ctx **ctx);
1142int lttng_add_vsgid_to_ctx(struct lttng_ctx **ctx);
1143
8a3af9ee 1144#if defined(CONFIG_PERF_EVENTS)
c24a0d71
MD
1145int lttng_add_perf_counter_to_ctx(uint32_t type,
1146 uint64_t config,
1147 const char *name,
1148 struct lttng_ctx **ctx);
1e367326
MD
1149int lttng_cpuhp_perf_counter_online(unsigned int cpu,
1150 struct lttng_cpuhp_node *node);
1151int lttng_cpuhp_perf_counter_dead(unsigned int cpu,
1152 struct lttng_cpuhp_node *node);
1d443b34
MD
1153#else
1154static inline
1155int lttng_add_perf_counter_to_ctx(uint32_t type,
1156 uint64_t config,
1157 const char *name,
1158 struct lttng_ctx **ctx)
1159{
1160 return -ENOSYS;
1161}
1e367326
MD
1162static inline
1163int lttng_cpuhp_perf_counter_online(unsigned int cpu,
1164 struct lttng_cpuhp_node *node)
1165{
1166 return 0;
1167}
1168static inline
1169int lttng_cpuhp_perf_counter_dead(unsigned int cpu,
1170 struct lttng_cpuhp_node *node)
1171{
1172 return 0;
1173}
1d443b34 1174#endif
02119ee5 1175
0c956676
MD
1176int lttng_logger_init(void);
1177void lttng_logger_exit(void);
1178
c337ddc2
MD
1179extern int lttng_statedump_start(struct lttng_session *session);
1180
acd614cc 1181#ifdef CONFIG_KPROBES
8bf17deb 1182int lttng_kprobes_register_event(const char *name,
f17701fb
MD
1183 const char *symbol_name,
1184 uint64_t offset,
1185 uint64_t addr,
a90917c3 1186 struct lttng_event *event);
8bf17deb
FD
1187void lttng_kprobes_unregister_event(struct lttng_event *event);
1188void lttng_kprobes_destroy_event_private(struct lttng_event *event);
2b16f0c9
FD
1189int lttng_kprobes_register_event_notifier(const char *symbol_name,
1190 uint64_t offset,
1191 uint64_t addr,
1192 struct lttng_event_notifier *event_notifier);
1193void lttng_kprobes_unregister_event_notifier(struct lttng_event_notifier *event_notifier);
1194void lttng_kprobes_destroy_event_notifier_private(struct lttng_event_notifier *event_notifier);
acd614cc
MD
1195#else
1196static inline
8bf17deb 1197int lttng_kprobes_register_event(const char *name,
acd614cc
MD
1198 const char *symbol_name,
1199 uint64_t offset,
1200 uint64_t addr,
a90917c3 1201 struct lttng_event *event)
acd614cc
MD
1202{
1203 return -ENOSYS;
1204}
1205
25f53c39 1206static inline
8bf17deb
FD
1207void lttng_kprobes_unregister_event(struct lttng_event *event)
1208{
1209}
1210
1211static inline
1212void lttng_kprobes_destroy_event_private(struct lttng_event *event)
acd614cc
MD
1213{
1214}
edeb3137
MD
1215
1216static inline
2b16f0c9
FD
1217int lttng_kprobes_register_event_notifier(const char *symbol_name,
1218 uint64_t offset,
1219 uint64_t addr,
1220 struct lttng_event_notifier *event_notifier)
1221{
1222 return -ENOSYS;
1223}
1224
1225static inline
1226void lttng_kprobes_unregister_event_notifier(struct lttng_event_notifier *event_notifier)
1227{
1228}
1229
1230static inline
1231void lttng_kprobes_destroy_event_notifier_private(struct lttng_event_notifier *event_notifier)
edeb3137
MD
1232{
1233}
acd614cc 1234#endif
d6d808f3 1235
3aed4dca
FD
1236int lttng_event_add_callsite(struct lttng_event *event,
1237 struct lttng_kernel_event_callsite *callsite);
e33fc900 1238
9de67196
FD
1239int lttng_event_notifier_add_callsite(struct lttng_event_notifier *event_notifier,
1240 struct lttng_kernel_event_callsite *callsite);
1241
149b9a9d 1242#ifdef CONFIG_UPROBES
83b802dc 1243int lttng_uprobes_register_event(const char *name,
3aed4dca 1244 int fd, struct lttng_event *event);
83b802dc 1245int lttng_uprobes_event_add_callsite(struct lttng_event *event,
3aed4dca 1246 struct lttng_kernel_event_callsite *callsite);
83b802dc
FD
1247void lttng_uprobes_unregister_event(struct lttng_event *event);
1248void lttng_uprobes_destroy_event_private(struct lttng_event *event);
9de67196
FD
1249int lttng_uprobes_register_event_notifier(const char *name,
1250 int fd, struct lttng_event_notifier *event_notifier);
1251int lttng_uprobes_event_notifier_add_callsite(struct lttng_event_notifier *event_notifier,
1252 struct lttng_kernel_event_callsite *callsite);
1253void lttng_uprobes_unregister_event_notifier(struct lttng_event_notifier *event_notifier);
1254void lttng_uprobes_destroy_event_notifier_private(struct lttng_event_notifier *event_notifier);
149b9a9d
YB
1255#else
1256static inline
83b802dc 1257int lttng_uprobes_register_event(const char *name,
3aed4dca
FD
1258 int fd, struct lttng_event *event)
1259{
1260 return -ENOSYS;
1261}
1262
1263static inline
83b802dc 1264int lttng_uprobes_event_add_callsite(struct lttng_event *event,
e33fc900 1265 struct lttng_kernel_event_callsite *callsite)
149b9a9d
YB
1266{
1267 return -ENOSYS;
1268}
1269
1270static inline
83b802dc 1271void lttng_uprobes_unregister_event(struct lttng_event *event)
149b9a9d
YB
1272{
1273}
1274
1275static inline
83b802dc 1276void lttng_uprobes_destroy_event_private(struct lttng_event *event)
149b9a9d
YB
1277{
1278}
9de67196
FD
1279
1280static inline
1281int lttng_uprobes_register_event_notifier(const char *name,
1282 int fd, struct lttng_event_notifier *event_notifier)
1283{
1284 return -ENOSYS;
1285}
1286
1287static inline
1288int lttng_uprobes_event_notifier_add_callsite(struct lttng_event_notifier *event_notifier,
1289 struct lttng_kernel_event_callsite *callsite)
1290{
1291 return -ENOSYS;
1292}
1293
1294static inline
1295void lttng_uprobes_unregister_event_notifier(struct lttng_event_notifier *event_notifier)
1296{
1297}
1298
1299static inline
1300void lttng_uprobes_destroy_event_notifier_private(struct lttng_event_notifier *event_notifier)
1301{
1302}
149b9a9d
YB
1303#endif
1304
7371f44c
MD
1305#ifdef CONFIG_KRETPROBES
1306int lttng_kretprobes_register(const char *name,
1307 const char *symbol_name,
1308 uint64_t offset,
1309 uint64_t addr,
a90917c3
MD
1310 struct lttng_event *event_entry,
1311 struct lttng_event *event_exit);
1312void lttng_kretprobes_unregister(struct lttng_event *event);
1313void lttng_kretprobes_destroy_private(struct lttng_event *event);
a0493bef
MD
1314int lttng_kretprobes_event_enable_state(struct lttng_event *event,
1315 int enable);
7371f44c
MD
1316#else
1317static inline
1318int lttng_kretprobes_register(const char *name,
1319 const char *symbol_name,
1320 uint64_t offset,
1321 uint64_t addr,
a90917c3
MD
1322 struct lttng_event *event_entry,
1323 struct lttng_event *event_exit)
7371f44c
MD
1324{
1325 return -ENOSYS;
1326}
1327
1328static inline
a90917c3 1329void lttng_kretprobes_unregister(struct lttng_event *event)
7371f44c
MD
1330{
1331}
1332
1333static inline
a90917c3 1334void lttng_kretprobes_destroy_private(struct lttng_event *event)
7371f44c
MD
1335{
1336}
a0493bef
MD
1337
1338static inline
1339int lttng_kretprobes_event_enable_state(struct lttng_event *event,
1340 int enable)
1341{
1342 return -ENOSYS;
1343}
7371f44c
MD
1344#endif
1345
3db41b2c 1346int lttng_calibrate(struct lttng_kernel_calibrate *calibrate);
57105fc2 1347
271b6681 1348extern const struct file_operations lttng_tracepoint_list_fops;
2d2464bd 1349extern const struct file_operations lttng_syscall_list_fops;
271b6681 1350
ef200626 1351#define TRACEPOINT_HAS_DATA_ARG
ef200626 1352
ceabb767
MD
1353static inline bool lttng_is_bytewise_integer(const struct lttng_type *type)
1354{
1355 if (type->atype != atype_integer)
1356 return false;
1357 switch (type->u.integer.size) {
1358 case 8: /* Fall-through. */
1359 case 16: /* Fall-through. */
1360 case 32: /* Fall-through. */
1361 case 64:
1362 break;
1363 default:
1364 return false;
1365 }
1366 return true;
1367}
1368
a90917c3 1369#endif /* _LTTNG_EVENTS_H */
This page took 0.124372 seconds and 4 git commands to generate.