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