Refactoring: context callbacks
[lttng-modules.git] / include / lttng / events.h
... / ...
CommitLineData
1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
2 *
3 * lttng/events.h
4 *
5 * Holds LTTng per-session event registry.
6 *
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 */
9
10#ifndef _LTTNG_EVENTS_H
11#define _LTTNG_EVENTS_H
12
13#include <lttng/kernel-version.h>
14#include <linux/list.h>
15#include <linux/kprobes.h>
16#include <linux/kref.h>
17#include <linux/uuid.h>
18#include <linux/irq_work.h>
19#include <wrapper/uprobes.h>
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>
25
26#define lttng_is_signed_type(type) (((type) -1) < (type) 1)
27
28struct lttng_channel;
29struct lttng_session;
30struct lttng_metadata_cache;
31struct lib_ring_buffer_ctx;
32struct perf_event;
33struct perf_event_attr;
34struct lib_ring_buffer_config;
35
36/* Type description */
37
38enum lttng_kernel_type {
39 lttng_kernel_type_integer,
40 lttng_kernel_type_string,
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,
46 NR_LTTNG_KERNEL_TYPES,
47};
48
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,
54};
55
56enum channel_type {
57 PER_CPU_CHANNEL,
58 METADATA_CHANNEL,
59};
60
61struct lttng_kernel_enum_value {
62 unsigned long long value;
63 unsigned int signedness:1;
64};
65
66struct lttng_kernel_enum_entry {
67 struct lttng_kernel_enum_value start, end; /* start and end are inclusive */
68 const char *string;
69 struct {
70 unsigned int is_auto:1;
71 } options;
72};
73
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;
84 unsigned int size; /* in bits */
85 unsigned short alignment; /* in bits */
86 unsigned int signedness:1,
87 reverse_byte_order:1;
88 unsigned int base; /* 2, 8, 10, 16, for pretty print */
89};
90
91struct lttng_kernel_type_string {
92 struct lttng_kernel_type_common parent;
93 enum lttng_kernel_string_encoding encoding;
94};
95
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;
112 const char *length_name; /* Length field name. If NULL, use previous field. */
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;
127 const char *tag_name; /* Tag field name. If NULL, use previous field. */
128 const struct lttng_kernel_event_field **choices; /* Array of pointers to fields. */
129 unsigned int nr_choices;
130 unsigned int alignment;
131};
132
133struct lttng_kernel_enum_desc {
134 const char *name;
135 const struct lttng_kernel_enum_entry **entries;
136 unsigned int nr_entries;
137};
138
139/* Event field description */
140
141struct lttng_kernel_event_field {
142 const char *name;
143 const struct lttng_kernel_type_common *type;
144 unsigned int nowrite:1, /* do not write into trace */
145 user:1, /* fetch from user-space */
146 nofilter:1; /* do not consider for filter */
147};
148
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
249#define lttng_kernel_static_ctx_field(_event_field, _get_size, _record, _get_value, _destroy, _priv) \
250 __LTTNG_COMPOUND_LITERAL(const struct lttng_kernel_ctx_field, { \
251 .event_field = (_event_field), \
252 .get_size = (_get_size), \
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
305struct lttng_ctx_value {
306 union {
307 int64_t s64;
308 const char *str;
309 double d;
310 } u;
311};
312
313/*
314 * We need to keep this perf counter field separately from struct
315 * lttng_kernel_ctx_field because cpu hotplug needs fixed-location addresses.
316 */
317struct lttng_perf_counter_field {
318#if (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(4,10,0))
319 struct lttng_cpuhp_node cpuhp_prepare;
320 struct lttng_cpuhp_node cpuhp_online;
321#else
322 struct notifier_block nb;
323 int hp_enable;
324#endif
325 struct perf_event_attr *attr;
326 struct perf_event **e; /* per-cpu array */
327 char *name;
328 struct lttng_kernel_event_field *event_field;
329};
330
331struct lttng_probe_ctx {
332 struct lttng_kernel_event_common *event;
333 uint8_t interruptible;
334};
335
336struct lttng_kernel_ctx_field {
337 const struct lttng_kernel_event_field *event_field;
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);
346 void *priv;
347};
348
349struct lttng_kernel_ctx {
350 struct lttng_kernel_ctx_field *fields;
351 unsigned int nr_fields;
352 unsigned int allocated_fields;
353 size_t largest_align; /* in bytes */
354};
355
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 */
362 unsigned int nr_fields;
363 struct module *owner;
364};
365
366struct lttng_kernel_probe_desc {
367 const char *provider_name;
368 const struct lttng_kernel_event_desc **event_desc;
369 unsigned int nr_events;
370 struct list_head head; /* chain registered probes */
371 struct list_head lazy_init_head;
372 int lazy; /* lazy registration */
373};
374
375struct lttng_krp; /* Kretprobe handling */
376
377enum lttng_kernel_bytecode_type {
378 LTTNG_KERNEL_BYTECODE_TYPE_FILTER,
379 LTTNG_KERNEL_BYTECODE_TYPE_CAPTURE,
380};
381
382struct lttng_bytecode_node {
383 enum lttng_kernel_bytecode_type type;
384 struct list_head node;
385 struct lttng_enabler *enabler;
386 struct {
387 uint32_t len;
388 uint32_t reloc_offset;
389 uint64_t seqnum;
390 char data[];
391 } bc;
392};
393
394struct lttng_interpreter_output;
395
396struct lttng_bytecode_runtime {
397 /* Associated bytecode */
398 enum lttng_kernel_bytecode_type type;
399 struct lttng_bytecode_node *bc;
400 int (*interpreter_func)(struct lttng_bytecode_runtime *kernel_bytecode,
401 const char *interpreter_stack_data,
402 struct lttng_probe_ctx *lttng_probe_ctx,
403 void *caller_ctx);
404 int link_failed;
405 struct list_head node; /* list of bytecode runtime in event */
406 struct lttng_kernel_ctx *ctx;
407};
408
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
417struct lttng_uprobe_handler {
418 struct lttng_kernel_event_common *event;
419 loff_t offset;
420 struct uprobe_consumer up_consumer;
421 struct list_head node;
422};
423
424struct lttng_kprobe {
425 struct kprobe kp;
426 char *symbol_name;
427};
428
429struct lttng_uprobe {
430 struct inode *inode;
431 struct list_head head;
432};
433
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
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
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
465 int enabled;
466 int eval_filter; /* Need to evaluate filters */
467 int (*run_filter)(const struct lttng_kernel_event_common *event,
468 const char *stack_data,
469 struct lttng_probe_ctx *probe_ctx,
470 void *filter_ctx);
471};
472
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;
480};
481
482struct lttng_kernel_notification_ctx {
483 int eval_capture; /* Capture evaluation available. */
484};
485
486struct lttng_kernel_event_notifier_private;
487
488struct lttng_kernel_event_notifier {
489 struct lttng_kernel_event_common parent;
490 struct lttng_kernel_event_notifier_private *priv; /* Private event notifier interface */
491
492 int eval_capture; /* Need to evaluate capture */
493 void (*notification_send)(struct lttng_kernel_event_notifier *event_notifier,
494 const char *stack_data,
495 struct lttng_probe_ctx *probe_ctx,
496 struct lttng_kernel_notification_ctx *notif_ctx);
497};
498
499enum lttng_enabler_format_type {
500 LTTNG_ENABLER_FORMAT_STAR_GLOB,
501 LTTNG_ENABLER_FORMAT_NAME,
502};
503
504/*
505 * Enabler field, within whatever object is enabling an event. Target of
506 * backward reference.
507 */
508struct lttng_enabler {
509 enum lttng_enabler_format_type format_type;
510
511 /* head list of struct lttng_bytecode_node */
512 struct list_head filter_bytecode_head;
513
514 struct lttng_kernel_abi_event event_param;
515 unsigned int enabled:1;
516
517 uint64_t user_token; /* User-provided token. */
518};
519
520struct lttng_event_enabler {
521 struct lttng_enabler base;
522 struct list_head node; /* per-session list of enablers */
523 struct lttng_channel *chan;
524};
525
526struct lttng_event_notifier_enabler {
527 struct lttng_enabler base;
528 uint64_t error_counter_index;
529 struct list_head node; /* List of event_notifier enablers */
530 struct lttng_event_notifier_group *group;
531
532 /* head list of struct lttng_bytecode_node */
533 struct list_head capture_bytecode_head;
534 uint64_t num_captures;
535};
536
537
538static inline
539struct lttng_enabler *lttng_event_enabler_as_enabler(
540 struct lttng_event_enabler *event_enabler)
541{
542 return &event_enabler->base;
543}
544
545static inline
546struct lttng_enabler *lttng_event_notifier_enabler_as_enabler(
547 struct lttng_event_notifier_enabler *event_notifier_enabler)
548{
549 return &event_notifier_enabler->base;
550}
551
552struct lttng_channel_ops {
553 struct channel *(*channel_create)(const char *name,
554 void *priv,
555 void *buf_addr,
556 size_t subbuf_size, size_t num_subbuf,
557 unsigned int switch_timer_interval,
558 unsigned int read_timer_interval);
559 void (*channel_destroy)(struct channel *chan);
560 struct lib_ring_buffer *(*buffer_read_open)(struct channel *chan);
561 int (*buffer_has_read_closed_stream)(struct channel *chan);
562 void (*buffer_read_close)(struct lib_ring_buffer *buf);
563 int (*event_reserve)(struct lib_ring_buffer_ctx *ctx);
564 void (*event_commit)(struct lib_ring_buffer_ctx *ctx);
565 void (*event_write)(struct lib_ring_buffer_ctx *ctx, const void *src,
566 size_t len);
567 void (*event_write_from_user)(struct lib_ring_buffer_ctx *ctx,
568 const void *src, size_t len);
569 void (*event_memset)(struct lib_ring_buffer_ctx *ctx,
570 int c, size_t len);
571 void (*event_strcpy)(struct lib_ring_buffer_ctx *ctx, const char *src,
572 size_t len);
573 void (*event_strcpy_from_user)(struct lib_ring_buffer_ctx *ctx,
574 const char __user *src, size_t len);
575 /*
576 * packet_avail_size returns the available size in the current
577 * packet. Note that the size returned is only a hint, since it
578 * may change due to concurrent writes.
579 */
580 size_t (*packet_avail_size)(struct channel *chan);
581 wait_queue_head_t *(*get_writer_buf_wait_queue)(struct channel *chan, int cpu);
582 wait_queue_head_t *(*get_hp_wait_queue)(struct channel *chan);
583 int (*is_finalized)(struct channel *chan);
584 int (*is_disabled)(struct channel *chan);
585 int (*timestamp_begin) (const struct lib_ring_buffer_config *config,
586 struct lib_ring_buffer *bufb,
587 uint64_t *timestamp_begin);
588 int (*timestamp_end) (const struct lib_ring_buffer_config *config,
589 struct lib_ring_buffer *bufb,
590 uint64_t *timestamp_end);
591 int (*events_discarded) (const struct lib_ring_buffer_config *config,
592 struct lib_ring_buffer *bufb,
593 uint64_t *events_discarded);
594 int (*content_size) (const struct lib_ring_buffer_config *config,
595 struct lib_ring_buffer *bufb,
596 uint64_t *content_size);
597 int (*packet_size) (const struct lib_ring_buffer_config *config,
598 struct lib_ring_buffer *bufb,
599 uint64_t *packet_size);
600 int (*stream_id) (const struct lib_ring_buffer_config *config,
601 struct lib_ring_buffer *bufb,
602 uint64_t *stream_id);
603 int (*current_timestamp) (const struct lib_ring_buffer_config *config,
604 struct lib_ring_buffer *bufb,
605 uint64_t *ts);
606 int (*sequence_number) (const struct lib_ring_buffer_config *config,
607 struct lib_ring_buffer *bufb,
608 uint64_t *seq);
609 int (*instance_id) (const struct lib_ring_buffer_config *config,
610 struct lib_ring_buffer *bufb,
611 uint64_t *id);
612};
613
614struct lttng_counter_ops {
615 struct lib_counter *(*counter_create)(size_t nr_dimensions,
616 const size_t *max_nr_elem, /* for each dimension */
617 int64_t global_sum_step);
618 void (*counter_destroy)(struct lib_counter *counter);
619 int (*counter_add)(struct lib_counter *counter, const size_t *dimension_indexes,
620 int64_t v);
621 /*
622 * counter_read reads a specific cpu's counter if @cpu >= 0, or
623 * the global aggregation counter if @cpu == -1.
624 */
625 int (*counter_read)(struct lib_counter *counter, const size_t *dimension_indexes, int cpu,
626 int64_t *value, bool *overflow, bool *underflow);
627 /*
628 * counter_aggregate returns the total sum of all per-cpu counters and
629 * the global aggregation counter.
630 */
631 int (*counter_aggregate)(struct lib_counter *counter, const size_t *dimension_indexes,
632 int64_t *value, bool *overflow, bool *underflow);
633 int (*counter_clear)(struct lib_counter *counter, const size_t *dimension_indexes);
634};
635
636struct lttng_transport {
637 char *name;
638 struct module *owner;
639 struct list_head node;
640 struct lttng_channel_ops ops;
641};
642
643struct lttng_counter_transport {
644 char *name;
645 struct module *owner;
646 struct list_head node;
647 struct lttng_counter_ops ops;
648};
649
650struct lttng_syscall_filter;
651
652#define LTTNG_EVENT_HT_BITS 12
653#define LTTNG_EVENT_HT_SIZE (1U << LTTNG_EVENT_HT_BITS)
654
655struct lttng_event_ht {
656 struct hlist_head table[LTTNG_EVENT_HT_SIZE];
657};
658
659#define LTTNG_EVENT_NOTIFIER_HT_BITS 12
660#define LTTNG_EVENT_NOTIFIER_HT_SIZE (1U << LTTNG_EVENT_NOTIFIER_HT_BITS)
661
662struct lttng_event_notifier_ht {
663 struct hlist_head table[LTTNG_EVENT_NOTIFIER_HT_SIZE];
664};
665
666struct lttng_channel {
667 unsigned int id;
668 struct channel *chan; /* Channel buffers */
669 int enabled;
670 struct lttng_kernel_ctx *ctx;
671 /* Event ID management */
672 struct lttng_session *session;
673 struct file *file; /* File associated to channel */
674 unsigned int free_event_id; /* Next event ID to allocate */
675 struct list_head list; /* Channel list */
676 struct lttng_channel_ops *ops;
677 struct lttng_transport *transport;
678 struct hlist_head *sc_table; /* for syscall tracing */
679 struct hlist_head *compat_sc_table;
680 struct hlist_head *sc_exit_table; /* for syscall exit tracing */
681 struct hlist_head *compat_sc_exit_table;
682 struct hlist_head sc_unknown; /* for unknown syscalls */
683 struct hlist_head sc_compat_unknown;
684 struct hlist_head sc_exit_unknown;
685 struct hlist_head compat_sc_exit_unknown;
686 struct lttng_syscall_filter *sc_filter;
687 int header_type; /* 0: unset, 1: compact, 2: large */
688 enum channel_type channel_type;
689 int syscall_all_entry;
690 int syscall_all_exit;
691 unsigned int metadata_dumped:1,
692 sys_enter_registered:1,
693 sys_exit_registered:1,
694 tstate:1; /* Transient enable state */
695};
696
697struct lttng_metadata_stream {
698 void *priv; /* Ring buffer private data */
699 struct lttng_metadata_cache *metadata_cache;
700 unsigned int metadata_in; /* Bytes read from the cache */
701 unsigned int metadata_out; /* Bytes consumed from stream */
702 int finalized; /* Has channel been finalized */
703 wait_queue_head_t read_wait; /* Reader buffer-level wait queue */
704 struct list_head list; /* Stream list */
705 struct lttng_transport *transport;
706 uint64_t version; /* Current version of the metadata cache */
707 bool coherent; /* Stream in a coherent state */
708};
709
710#define LTTNG_DYNAMIC_LEN_STACK_SIZE 128
711
712struct lttng_dynamic_len_stack {
713 size_t stack[LTTNG_DYNAMIC_LEN_STACK_SIZE];
714 size_t offset;
715};
716
717DECLARE_PER_CPU(struct lttng_dynamic_len_stack, lttng_dynamic_len_stack);
718
719/*
720 * struct lttng_id_tracker declared in header due to deferencing of *v
721 * in RCU_INITIALIZER(v).
722 */
723#define LTTNG_ID_HASH_BITS 6
724#define LTTNG_ID_TABLE_SIZE (1 << LTTNG_ID_HASH_BITS)
725
726enum tracker_type {
727 TRACKER_PID,
728 TRACKER_VPID,
729 TRACKER_UID,
730 TRACKER_VUID,
731 TRACKER_GID,
732 TRACKER_VGID,
733
734 TRACKER_UNKNOWN,
735};
736
737struct lttng_id_tracker_rcu {
738 struct hlist_head id_hash[LTTNG_ID_TABLE_SIZE];
739};
740
741struct lttng_id_tracker {
742 struct lttng_session *session;
743 enum tracker_type tracker_type;
744 struct lttng_id_tracker_rcu *p; /* RCU dereferenced. */
745};
746
747struct lttng_id_hash_node {
748 struct hlist_node hlist;
749 int id;
750};
751
752struct lttng_session {
753 int active; /* Is trace session active ? */
754 int been_active; /* Has trace session been active ? */
755 struct file *file; /* File associated to session */
756 struct list_head chan; /* Channel list head */
757 struct list_head events; /* Event list head */
758 struct list_head list; /* Session list */
759 unsigned int free_chan_id; /* Next chan ID to allocate */
760 uuid_le uuid; /* Trace session unique ID */
761 struct lttng_metadata_cache *metadata_cache;
762 struct lttng_id_tracker pid_tracker;
763 struct lttng_id_tracker vpid_tracker;
764 struct lttng_id_tracker uid_tracker;
765 struct lttng_id_tracker vuid_tracker;
766 struct lttng_id_tracker gid_tracker;
767 struct lttng_id_tracker vgid_tracker;
768 unsigned int metadata_dumped:1,
769 tstate:1; /* Transient enable state */
770 /* List of event enablers */
771 struct list_head enablers_head;
772 /* Hash table of events */
773 struct lttng_event_ht events_ht;
774 char name[LTTNG_KERNEL_ABI_SESSION_NAME_LEN];
775 char creation_time[LTTNG_KERNEL_ABI_SESSION_CREATION_TIME_ISO8601_LEN];
776};
777
778struct lttng_counter {
779 struct file *file; /* File associated to counter. */
780 struct file *owner;
781 struct lttng_counter_transport *transport;
782 struct lib_counter *counter;
783 struct lttng_counter_ops *ops;
784};
785
786struct lttng_event_notifier_group {
787 struct file *file; /* File associated to event notifier group */
788 struct file *notif_file; /* File used to expose notifications to userspace. */
789 struct list_head node; /* event notifier group list */
790 struct list_head enablers_head; /* List of enablers */
791 struct list_head event_notifiers_head; /* List of event notifier */
792 struct lttng_event_notifier_ht event_notifiers_ht; /* Hash table of event notifiers */
793 struct lttng_channel_ops *ops;
794 struct lttng_transport *transport;
795 struct channel *chan; /* Ring buffer channel for event notifier group. */
796 struct lib_ring_buffer *buf; /* Ring buffer for event notifier group. */
797 wait_queue_head_t read_wait;
798 struct irq_work wakeup_pending; /* Pending wakeup irq work. */
799 struct lttng_kernel_event_notifier *sc_unknown; /* for unknown syscalls */
800 struct lttng_kernel_event_notifier *sc_compat_unknown;
801
802 struct lttng_syscall_filter *sc_filter;
803
804 struct hlist_head *event_notifier_syscall_dispatch;
805 struct hlist_head *event_notifier_compat_syscall_dispatch;
806 struct hlist_head *event_notifier_exit_syscall_dispatch;
807 struct hlist_head *event_notifier_exit_compat_syscall_dispatch;
808
809 struct hlist_head event_notifier_unknown_syscall_dispatch;
810 struct hlist_head event_notifier_compat_unknown_syscall_dispatch;
811 struct hlist_head event_notifier_exit_unknown_syscall_dispatch;
812 struct hlist_head event_notifier_exit_compat_unknown_syscall_dispatch;
813
814 int syscall_all_entry;
815 int syscall_all_exit;
816
817 unsigned int sys_enter_registered:1, sys_exit_registered:1;
818
819 struct lttng_counter *error_counter;
820 size_t error_counter_len;
821};
822
823struct lttng_metadata_cache {
824 char *data; /* Metadata cache */
825 unsigned int cache_alloc; /* Metadata allocated size (bytes) */
826 unsigned int metadata_written; /* Number of bytes written in metadata cache */
827 atomic_t producing; /* Metadata being produced (incomplete) */
828 struct kref refcount; /* Metadata cache usage */
829 struct list_head metadata_stream; /* Metadata stream list */
830 uuid_le uuid; /* Trace session unique ID (copy) */
831 struct mutex lock; /* Produce/consume lock */
832 uint64_t version; /* Current version of the metadata */
833};
834
835void lttng_lock_sessions(void);
836void lttng_unlock_sessions(void);
837
838struct list_head *lttng_get_probe_list_head(void);
839
840struct lttng_event_enabler *lttng_event_enabler_create(
841 enum lttng_enabler_format_type format_type,
842 struct lttng_kernel_abi_event *event_param,
843 struct lttng_channel *chan);
844
845int lttng_event_enabler_enable(struct lttng_event_enabler *event_enabler);
846int lttng_event_enabler_disable(struct lttng_event_enabler *event_enabler);
847struct lttng_event_notifier_enabler *lttng_event_notifier_enabler_create(
848 struct lttng_event_notifier_group *event_notifier_group,
849 enum lttng_enabler_format_type format_type,
850 struct lttng_kernel_abi_event_notifier *event_notifier_param);
851
852int lttng_event_notifier_enabler_enable(
853 struct lttng_event_notifier_enabler *event_notifier_enabler);
854int lttng_event_notifier_enabler_disable(
855 struct lttng_event_notifier_enabler *event_notifier_enabler);
856int lttng_fix_pending_events(void);
857int lttng_fix_pending_event_notifiers(void);
858int lttng_session_active(void);
859bool lttng_event_notifier_active(void);
860
861struct lttng_session *lttng_session_create(void);
862int lttng_session_enable(struct lttng_session *session);
863int lttng_session_disable(struct lttng_session *session);
864void lttng_session_destroy(struct lttng_session *session);
865int lttng_session_metadata_regenerate(struct lttng_session *session);
866int lttng_session_statedump(struct lttng_session *session);
867void metadata_cache_destroy(struct kref *kref);
868
869struct lttng_counter *lttng_kernel_counter_create(
870 const char *counter_transport_name, size_t number_dimensions,
871 const size_t *dimensions_sizes);
872int lttng_kernel_counter_read(struct lttng_counter *counter,
873 const size_t *dimension_indexes, int32_t cpu,
874 int64_t *val, bool *overflow, bool *underflow);
875int lttng_kernel_counter_aggregate(struct lttng_counter *counter,
876 const size_t *dimension_indexes, int64_t *val,
877 bool *overflow, bool *underflow);
878int lttng_kernel_counter_clear(struct lttng_counter *counter,
879 const size_t *dimension_indexes);
880
881
882struct lttng_event_notifier_group *lttng_event_notifier_group_create(void);
883int lttng_event_notifier_group_create_error_counter(
884 struct file *event_notifier_group_file,
885 const struct lttng_kernel_abi_counter_conf *error_counter_conf);
886void lttng_event_notifier_group_destroy(
887 struct lttng_event_notifier_group *event_notifier_group);
888
889struct lttng_channel *lttng_channel_create(struct lttng_session *session,
890 const char *transport_name,
891 void *buf_addr,
892 size_t subbuf_size, size_t num_subbuf,
893 unsigned int switch_timer_interval,
894 unsigned int read_timer_interval,
895 enum channel_type channel_type);
896struct lttng_channel *lttng_global_channel_create(struct lttng_session *session,
897 int overwrite, void *buf_addr,
898 size_t subbuf_size, size_t num_subbuf,
899 unsigned int switch_timer_interval,
900 unsigned int read_timer_interval);
901
902void lttng_metadata_channel_destroy(struct lttng_channel *chan);
903struct lttng_kernel_event_recorder *lttng_kernel_event_recorder_create(struct lttng_channel *chan,
904 struct lttng_kernel_abi_event *event_param,
905 const struct lttng_kernel_event_desc *event_desc,
906 enum lttng_kernel_abi_instrumentation itype);
907struct lttng_kernel_event_recorder *_lttng_kernel_event_recorder_create(struct lttng_channel *chan,
908 struct lttng_kernel_abi_event *event_param,
909 const struct lttng_kernel_event_desc *event_desc,
910 enum lttng_kernel_abi_instrumentation itype);
911struct lttng_kernel_event_recorder *lttng_event_compat_old_create(struct lttng_channel *chan,
912 struct lttng_kernel_abi_old_event *old_event_param,
913 const struct lttng_kernel_event_desc *internal_desc);
914
915struct lttng_kernel_event_notifier *lttng_event_notifier_create(
916 const struct lttng_kernel_event_desc *event_notifier_desc,
917 uint64_t id,
918 uint64_t error_counter_idx,
919 struct lttng_event_notifier_group *event_notifier_group,
920 struct lttng_kernel_abi_event_notifier *event_notifier_param,
921 enum lttng_kernel_abi_instrumentation itype);
922struct lttng_kernel_event_notifier *_lttng_event_notifier_create(
923 const struct lttng_kernel_event_desc *event_notifier_desc,
924 uint64_t id,
925 uint64_t error_counter_idx,
926 struct lttng_event_notifier_group *event_notifier_group,
927 struct lttng_kernel_abi_event_notifier *event_notifier_param,
928 enum lttng_kernel_abi_instrumentation itype);
929
930int lttng_channel_enable(struct lttng_channel *channel);
931int lttng_channel_disable(struct lttng_channel *channel);
932int lttng_event_enable(struct lttng_kernel_event_common *event);
933int lttng_event_disable(struct lttng_kernel_event_common *event);
934
935void lttng_transport_register(struct lttng_transport *transport);
936void lttng_transport_unregister(struct lttng_transport *transport);
937
938void lttng_counter_transport_register(struct lttng_counter_transport *transport);
939void lttng_counter_transport_unregister(struct lttng_counter_transport *transport);
940
941void synchronize_trace(void);
942int lttng_abi_init(void);
943int lttng_abi_compat_old_init(void);
944void lttng_abi_exit(void);
945void lttng_abi_compat_old_exit(void);
946
947int lttng_probe_register(struct lttng_kernel_probe_desc *desc);
948void lttng_probe_unregister(struct lttng_kernel_probe_desc *desc);
949const struct lttng_kernel_event_desc *lttng_event_desc_get(const char *name);
950void lttng_event_desc_put(const struct lttng_kernel_event_desc *desc);
951int lttng_probes_init(void);
952void lttng_probes_exit(void);
953
954int lttng_metadata_output_channel(struct lttng_metadata_stream *stream,
955 struct channel *chan, bool *coherent);
956
957int lttng_id_tracker_get_node_id(const struct lttng_id_hash_node *node);
958int lttng_id_tracker_empty_set(struct lttng_id_tracker *lf);
959void lttng_id_tracker_destroy(struct lttng_id_tracker *lf, bool rcu);
960bool lttng_id_tracker_lookup(struct lttng_id_tracker_rcu *p, int id);
961int lttng_id_tracker_add(struct lttng_id_tracker *lf, int id);
962int lttng_id_tracker_del(struct lttng_id_tracker *lf, int id);
963
964int lttng_session_track_id(struct lttng_session *session,
965 enum tracker_type tracker_type, int id);
966int lttng_session_untrack_id(struct lttng_session *session,
967 enum tracker_type tracker_type, int id);
968
969int lttng_session_list_tracker_ids(struct lttng_session *session,
970 enum tracker_type tracker_type);
971
972void lttng_clock_ref(void);
973void lttng_clock_unref(void);
974
975int lttng_desc_match_enabler(const struct lttng_kernel_event_desc *desc,
976 struct lttng_enabler *enabler);
977
978#if defined(CONFIG_HAVE_SYSCALL_TRACEPOINTS)
979int lttng_syscalls_register_event(struct lttng_event_enabler *event_enabler);
980int lttng_syscalls_unregister_channel(struct lttng_channel *chan);
981int lttng_syscalls_destroy_event(struct lttng_channel *chan);
982int lttng_syscall_filter_enable_event(
983 struct lttng_channel *chan,
984 struct lttng_kernel_event_recorder *event);
985int lttng_syscall_filter_disable_event(
986 struct lttng_channel *chan,
987 struct lttng_kernel_event_recorder *event);
988
989long lttng_channel_syscall_mask(struct lttng_channel *channel,
990 struct lttng_kernel_abi_syscall_mask __user *usyscall_mask);
991
992int lttng_syscalls_register_event_notifier(
993 struct lttng_event_notifier_enabler *event_notifier_enabler);
994int lttng_syscalls_create_matching_event_notifiers(
995 struct lttng_event_notifier_enabler *event_notifier_enabler);
996int lttng_syscalls_unregister_event_notifier_group(struct lttng_event_notifier_group *group);
997int lttng_syscall_filter_enable_event_notifier(struct lttng_kernel_event_notifier *event_notifier);
998int lttng_syscall_filter_disable_event_notifier(struct lttng_kernel_event_notifier *event_notifier);
999#else
1000static inline int lttng_syscalls_register_event(
1001 struct lttng_event_enabler *event_enabler)
1002{
1003 return -ENOSYS;
1004}
1005
1006static inline int lttng_syscalls_unregister_channel(struct lttng_channel *chan)
1007{
1008 return 0;
1009}
1010
1011static inline int lttng_syscalls_destroy(struct lttng_channel *chan)
1012{
1013 return 0;
1014}
1015
1016static inline int lttng_syscall_filter_enable_event(struct lttng_channel *chan,
1017 struct lttng_kernel_event_recorder *event);
1018{
1019 return -ENOSYS;
1020}
1021
1022static inline int lttng_syscall_filter_disable_event(struct lttng_channel *chan,
1023 struct lttng_kernel_event_recorder *event);
1024{
1025 return -ENOSYS;
1026}
1027
1028static inline long lttng_channel_syscall_mask(struct lttng_channel *channel,
1029 struct lttng_kernel_syscall_mask __user *usyscall_mask)
1030{
1031 return -ENOSYS;
1032}
1033
1034static inline int lttng_syscalls_register_event_notifier(
1035 struct lttng_event_notifier_group *group)
1036{
1037 return -ENOSYS;
1038}
1039
1040static inline int lttng_syscalls_unregister_event_notifier_group(
1041 struct lttng_event_notifier_group *group)
1042{
1043 return 0;
1044}
1045
1046static inline int lttng_syscall_filter_enable_event_notifier(
1047 struct lttng_event_notifier_group *group,
1048 const char *name)
1049{
1050 return -ENOSYS;
1051}
1052
1053static inline int lttng_syscall_filter_disable_event_notifier(
1054 struct lttng_event_notifier_group *group,
1055 const char *name)
1056{
1057 return -ENOSYS;
1058}
1059
1060#endif
1061
1062int lttng_event_enabler_attach_filter_bytecode(struct lttng_event_enabler *event_enabler,
1063 struct lttng_kernel_abi_filter_bytecode __user *bytecode);
1064int lttng_event_notifier_enabler_attach_filter_bytecode(
1065 struct lttng_event_notifier_enabler *event_notifier_enabler,
1066 struct lttng_kernel_abi_filter_bytecode __user *bytecode);
1067int lttng_event_notifier_enabler_attach_capture_bytecode(
1068 struct lttng_event_notifier_enabler *event_notifier_enabler,
1069 struct lttng_kernel_abi_capture_bytecode __user *bytecode);
1070
1071void lttng_enabler_link_bytecode(const struct lttng_kernel_event_desc *event_desc,
1072 struct lttng_kernel_ctx *ctx,
1073 struct list_head *instance_bytecode_runtime_head,
1074 struct list_head *enabler_bytecode_runtime_head);
1075void lttng_free_event_filter_runtime(struct lttng_kernel_event_common *event);
1076
1077int lttng_probes_init(void);
1078
1079extern struct lttng_kernel_ctx *lttng_static_ctx;
1080
1081int lttng_context_init(void);
1082void lttng_context_exit(void);
1083int lttng_kernel_context_append(struct lttng_kernel_ctx **ctx_p,
1084 const struct lttng_kernel_ctx_field *f);
1085void lttng_kernel_context_remove_last(struct lttng_kernel_ctx **ctx_p);
1086struct lttng_kernel_ctx_field *lttng_kernel_get_context_field_from_index(struct lttng_kernel_ctx *ctx,
1087 size_t index);
1088int lttng_kernel_find_context(struct lttng_kernel_ctx *ctx, const char *name);
1089int lttng_kernel_get_context_index(struct lttng_kernel_ctx *ctx, const char *name);
1090void lttng_kernel_destroy_context(struct lttng_kernel_ctx *ctx);
1091int lttng_add_pid_to_ctx(struct lttng_kernel_ctx **ctx);
1092int lttng_add_cpu_id_to_ctx(struct lttng_kernel_ctx **ctx);
1093int lttng_add_procname_to_ctx(struct lttng_kernel_ctx **ctx);
1094int lttng_add_prio_to_ctx(struct lttng_kernel_ctx **ctx);
1095int lttng_add_nice_to_ctx(struct lttng_kernel_ctx **ctx);
1096int lttng_add_vpid_to_ctx(struct lttng_kernel_ctx **ctx);
1097int lttng_add_tid_to_ctx(struct lttng_kernel_ctx **ctx);
1098int lttng_add_vtid_to_ctx(struct lttng_kernel_ctx **ctx);
1099int lttng_add_ppid_to_ctx(struct lttng_kernel_ctx **ctx);
1100int lttng_add_vppid_to_ctx(struct lttng_kernel_ctx **ctx);
1101int lttng_add_hostname_to_ctx(struct lttng_kernel_ctx **ctx);
1102int lttng_add_interruptible_to_ctx(struct lttng_kernel_ctx **ctx);
1103int lttng_add_need_reschedule_to_ctx(struct lttng_kernel_ctx **ctx);
1104#if defined(CONFIG_PREEMPT_RT_FULL) || defined(CONFIG_PREEMPT)
1105int lttng_add_preemptible_to_ctx(struct lttng_kernel_ctx **ctx);
1106#else
1107static inline
1108int lttng_add_preemptible_to_ctx(struct lttng_kernel_ctx **ctx)
1109{
1110 return -ENOSYS;
1111}
1112#endif
1113#ifdef CONFIG_PREEMPT_RT_FULL
1114int lttng_add_migratable_to_ctx(struct lttng_kernel_ctx **ctx);
1115#else
1116static inline
1117int lttng_add_migratable_to_ctx(struct lttng_kernel_ctx **ctx)
1118{
1119 return -ENOSYS;
1120}
1121#endif
1122
1123int lttng_add_callstack_to_ctx(struct lttng_kernel_ctx **ctx, int type);
1124
1125#if defined(CONFIG_CGROUPS) && \
1126 ((LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(4,6,0)) || \
1127 LTTNG_UBUNTU_KERNEL_RANGE(4,4,0,0, 4,5,0,0))
1128int lttng_add_cgroup_ns_to_ctx(struct lttng_kernel_ctx **ctx);
1129#else
1130static inline
1131int lttng_add_cgroup_ns_to_ctx(struct lttng_kernel_ctx **ctx)
1132{
1133 return -ENOSYS;
1134}
1135#endif
1136
1137#if defined(CONFIG_IPC_NS) && \
1138 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
1139int lttng_add_ipc_ns_to_ctx(struct lttng_kernel_ctx **ctx);
1140#else
1141static inline
1142int lttng_add_ipc_ns_to_ctx(struct lttng_kernel_ctx **ctx)
1143{
1144 return -ENOSYS;
1145}
1146#endif
1147
1148#if !defined(LTTNG_MNT_NS_MISSING_HEADER) && \
1149 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
1150int lttng_add_mnt_ns_to_ctx(struct lttng_kernel_ctx **ctx);
1151#else
1152static inline
1153int lttng_add_mnt_ns_to_ctx(struct lttng_kernel_ctx **ctx)
1154{
1155 return -ENOSYS;
1156}
1157#endif
1158
1159#if defined(CONFIG_NET_NS) && \
1160 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
1161int lttng_add_net_ns_to_ctx(struct lttng_kernel_ctx **ctx);
1162#else
1163static inline
1164int lttng_add_net_ns_to_ctx(struct lttng_kernel_ctx **ctx)
1165{
1166 return -ENOSYS;
1167}
1168#endif
1169
1170#if defined(CONFIG_PID_NS) && \
1171 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
1172int lttng_add_pid_ns_to_ctx(struct lttng_kernel_ctx **ctx);
1173#else
1174static inline
1175int lttng_add_pid_ns_to_ctx(struct lttng_kernel_ctx **ctx)
1176{
1177 return -ENOSYS;
1178}
1179#endif
1180
1181#if defined(CONFIG_USER_NS) && \
1182 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
1183int lttng_add_user_ns_to_ctx(struct lttng_kernel_ctx **ctx);
1184#else
1185static inline
1186int lttng_add_user_ns_to_ctx(struct lttng_kernel_ctx **ctx)
1187{
1188 return -ENOSYS;
1189}
1190#endif
1191
1192#if defined(CONFIG_UTS_NS) && \
1193 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
1194int lttng_add_uts_ns_to_ctx(struct lttng_kernel_ctx **ctx);
1195#else
1196static inline
1197int lttng_add_uts_ns_to_ctx(struct lttng_kernel_ctx **ctx)
1198{
1199 return -ENOSYS;
1200}
1201#endif
1202
1203#if defined(CONFIG_TIME_NS) && \
1204 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(5,6,0))
1205int lttng_add_time_ns_to_ctx(struct lttng_kernel_ctx **ctx);
1206#else
1207static inline
1208int lttng_add_time_ns_to_ctx(struct lttng_kernel_ctx **ctx)
1209{
1210 return -ENOSYS;
1211}
1212#endif
1213
1214int lttng_add_uid_to_ctx(struct lttng_kernel_ctx **ctx);
1215int lttng_add_euid_to_ctx(struct lttng_kernel_ctx **ctx);
1216int lttng_add_suid_to_ctx(struct lttng_kernel_ctx **ctx);
1217int lttng_add_gid_to_ctx(struct lttng_kernel_ctx **ctx);
1218int lttng_add_egid_to_ctx(struct lttng_kernel_ctx **ctx);
1219int lttng_add_sgid_to_ctx(struct lttng_kernel_ctx **ctx);
1220int lttng_add_vuid_to_ctx(struct lttng_kernel_ctx **ctx);
1221int lttng_add_veuid_to_ctx(struct lttng_kernel_ctx **ctx);
1222int lttng_add_vsuid_to_ctx(struct lttng_kernel_ctx **ctx);
1223int lttng_add_vgid_to_ctx(struct lttng_kernel_ctx **ctx);
1224int lttng_add_vegid_to_ctx(struct lttng_kernel_ctx **ctx);
1225int lttng_add_vsgid_to_ctx(struct lttng_kernel_ctx **ctx);
1226
1227#if defined(CONFIG_PERF_EVENTS)
1228int lttng_add_perf_counter_to_ctx(uint32_t type,
1229 uint64_t config,
1230 const char *name,
1231 struct lttng_kernel_ctx **ctx);
1232int lttng_cpuhp_perf_counter_online(unsigned int cpu,
1233 struct lttng_cpuhp_node *node);
1234int lttng_cpuhp_perf_counter_dead(unsigned int cpu,
1235 struct lttng_cpuhp_node *node);
1236#else
1237static inline
1238int lttng_add_perf_counter_to_ctx(uint32_t type,
1239 uint64_t config,
1240 const char *name,
1241 struct lttng_kernel_ctx **ctx)
1242{
1243 return -ENOSYS;
1244}
1245static inline
1246int lttng_cpuhp_perf_counter_online(unsigned int cpu,
1247 struct lttng_cpuhp_node *node)
1248{
1249 return 0;
1250}
1251static inline
1252int lttng_cpuhp_perf_counter_dead(unsigned int cpu,
1253 struct lttng_cpuhp_node *node)
1254{
1255 return 0;
1256}
1257#endif
1258
1259int lttng_logger_init(void);
1260void lttng_logger_exit(void);
1261
1262extern int lttng_statedump_start(struct lttng_session *session);
1263
1264#ifdef CONFIG_KPROBES
1265int lttng_kprobes_register_event(const char *name,
1266 const char *symbol_name,
1267 uint64_t offset,
1268 uint64_t addr,
1269 struct lttng_kernel_event_recorder *event);
1270void lttng_kprobes_unregister_event(struct lttng_kernel_event_recorder *event);
1271void lttng_kprobes_destroy_event_private(struct lttng_kernel_event_recorder *event);
1272int lttng_kprobes_register_event_notifier(const char *symbol_name,
1273 uint64_t offset,
1274 uint64_t addr,
1275 struct lttng_kernel_event_notifier *event_notifier);
1276void lttng_kprobes_unregister_event_notifier(struct lttng_kernel_event_notifier *event_notifier);
1277void lttng_kprobes_destroy_event_notifier_private(struct lttng_kernel_event_notifier *event_notifier);
1278#else
1279static inline
1280int lttng_kprobes_register_event(const char *name,
1281 const char *symbol_name,
1282 uint64_t offset,
1283 uint64_t addr,
1284 struct lttng_kernel_event_recorder *event)
1285{
1286 return -ENOSYS;
1287}
1288
1289static inline
1290void lttng_kprobes_unregister_event(struct lttng_kernel_event_recorder *event)
1291{
1292}
1293
1294static inline
1295void lttng_kprobes_destroy_event_private(struct lttng_kernel_event_recorder *event)
1296{
1297}
1298
1299static inline
1300int lttng_kprobes_register_event_notifier(const char *symbol_name,
1301 uint64_t offset,
1302 uint64_t addr,
1303 struct lttng_kernel_event_notifier *event_notifier)
1304{
1305 return -ENOSYS;
1306}
1307
1308static inline
1309void lttng_kprobes_unregister_event_notifier(struct lttng_kernel_event_notifier *event_notifier)
1310{
1311}
1312
1313static inline
1314void lttng_kprobes_destroy_event_notifier_private(struct lttng_kernel_event_notifier *event_notifier)
1315{
1316}
1317#endif
1318
1319int lttng_event_add_callsite(struct lttng_kernel_event_common *event,
1320 struct lttng_kernel_abi_event_callsite __user *callsite);
1321
1322#ifdef CONFIG_UPROBES
1323int lttng_uprobes_register_event(const char *name,
1324 int fd, struct lttng_kernel_event_recorder *event);
1325int lttng_uprobes_event_add_callsite(struct lttng_kernel_event_common *event,
1326 struct lttng_kernel_abi_event_callsite __user *callsite);
1327void lttng_uprobes_unregister_event(struct lttng_kernel_event_recorder *event);
1328void lttng_uprobes_destroy_event_private(struct lttng_kernel_event_recorder *event);
1329int lttng_uprobes_register_event_notifier(const char *name,
1330 int fd, struct lttng_kernel_event_notifier *event_notifier);
1331void lttng_uprobes_unregister_event_notifier(struct lttng_kernel_event_notifier *event_notifier);
1332void lttng_uprobes_destroy_event_notifier_private(struct lttng_kernel_event_notifier *event_notifier);
1333#else
1334static inline
1335int lttng_uprobes_register_event(const char *name,
1336 int fd, struct lttng_kernel_event_recorder *event)
1337{
1338 return -ENOSYS;
1339}
1340
1341static inline
1342int lttng_uprobes_event_add_callsite(struct lttng_kernel_event_common *event,
1343 struct lttng_kernel_abi_event_callsite __user *callsite)
1344{
1345 return -ENOSYS;
1346}
1347
1348static inline
1349void lttng_uprobes_unregister_event(struct lttng_kernel_event_recorder *event)
1350{
1351}
1352
1353static inline
1354void lttng_uprobes_destroy_event_private(struct lttng_kernel_event_recorder *event)
1355{
1356}
1357
1358static inline
1359int lttng_uprobes_register_event_notifier(const char *name,
1360 int fd, struct lttng_kernel_event_notifier *event_notifier)
1361{
1362 return -ENOSYS;
1363}
1364
1365static inline
1366void lttng_uprobes_unregister_event_notifier(struct lttng_kernel_event_notifier *event_notifier)
1367{
1368}
1369
1370static inline
1371void lttng_uprobes_destroy_event_notifier_private(struct lttng_kernel_event_notifier *event_notifier)
1372{
1373}
1374#endif
1375
1376#ifdef CONFIG_KRETPROBES
1377int lttng_kretprobes_register(const char *name,
1378 const char *symbol_name,
1379 uint64_t offset,
1380 uint64_t addr,
1381 struct lttng_kernel_event_recorder *event_entry,
1382 struct lttng_kernel_event_recorder *event_exit);
1383void lttng_kretprobes_unregister(struct lttng_kernel_event_recorder *event);
1384void lttng_kretprobes_destroy_private(struct lttng_kernel_event_recorder *event);
1385int lttng_kretprobes_event_enable_state(struct lttng_kernel_event_common *event,
1386 int enable);
1387#else
1388static inline
1389int lttng_kretprobes_register(const char *name,
1390 const char *symbol_name,
1391 uint64_t offset,
1392 uint64_t addr,
1393 struct lttng_kernel_event_recorder *event_entry,
1394 struct lttng_kernel_event_recorder *event_exit)
1395{
1396 return -ENOSYS;
1397}
1398
1399static inline
1400void lttng_kretprobes_unregister(struct lttng_kernel_event_recorder *event)
1401{
1402}
1403
1404static inline
1405void lttng_kretprobes_destroy_private(struct lttng_kernel_event_recorder *event)
1406{
1407}
1408
1409static inline
1410int lttng_kretprobes_event_enable_state(struct lttng_kernel_event_common *event,
1411 int enable)
1412{
1413 return -ENOSYS;
1414}
1415#endif
1416
1417int lttng_calibrate(struct lttng_kernel_abi_calibrate *calibrate);
1418
1419extern const struct file_operations lttng_tracepoint_list_fops;
1420extern const struct file_operations lttng_syscall_list_fops;
1421
1422#define TRACEPOINT_HAS_DATA_ARG
1423
1424#endif /* _LTTNG_EVENTS_H */
This page took 0.030154 seconds and 4 git commands to generate.