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