syscalls: extract `lttng_syscall_filter_enable()` for reuse
[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 <linux/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 (LINUX_VERSION_CODE >= 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;
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
235struct lttng_filter_bytecode_node {
236 struct list_head node;
237 struct lttng_enabler *enabler;
238 /*
239 * struct lttng_kernel_filter_bytecode has var. sized array, must be
240 * last field.
241 */
242 struct lttng_kernel_filter_bytecode bc;
243};
244
245/*
246 * Filter return value masks.
247 */
248enum lttng_filter_ret {
249 LTTNG_FILTER_DISCARD = 0,
250 LTTNG_FILTER_RECORD_FLAG = (1ULL << 0),
251 /* Other bits are kept for future use. */
252};
253
254struct lttng_bytecode_runtime {
255 /* Associated bytecode */
256 struct lttng_filter_bytecode_node *bc;
257 uint64_t (*filter)(void *filter_data, struct lttng_probe_ctx *lttng_probe_ctx,
258 const char *filter_stack_data);
259 int link_failed;
260 struct list_head node; /* list of bytecode runtime in event */
261 struct lttng_ctx *ctx;
262};
263
264/*
265 * Objects in a linked-list of enablers, owned by an event.
266 */
267struct lttng_enabler_ref {
268 struct list_head node; /* enabler ref list */
269 struct lttng_enabler *ref; /* backward ref */
270};
271
272struct lttng_uprobe_handler {
273 union {
274 struct lttng_event *event;
275 struct lttng_event_notifier *event_notifier;
276 } u;
277 loff_t offset;
278 struct uprobe_consumer up_consumer;
279 struct list_head node;
280};
281
282struct lttng_kprobe {
283 struct kprobe kp;
284 char *symbol_name;
285};
286
287struct lttng_uprobe {
288 struct inode *inode;
289 struct list_head head;
290};
291
292enum lttng_syscall_entryexit {
293 LTTNG_SYSCALL_ENTRY,
294 LTTNG_SYSCALL_EXIT,
295};
296
297enum lttng_syscall_abi {
298 LTTNG_SYSCALL_ABI_NATIVE,
299 LTTNG_SYSCALL_ABI_COMPAT,
300};
301
302/*
303 * lttng_event structure is referred to by the tracing fast path. It must be
304 * kept small.
305 */
306struct lttng_event {
307 enum lttng_event_type evtype; /* First field. */
308 unsigned int id;
309 struct lttng_channel *chan;
310 int enabled;
311 const struct lttng_event_desc *desc;
312 void *filter;
313 struct lttng_ctx *ctx;
314 enum lttng_kernel_instrumentation instrumentation;
315 union {
316 struct lttng_kprobe kprobe;
317 struct {
318 struct lttng_krp *lttng_krp;
319 char *symbol_name;
320 } kretprobe;
321 struct lttng_uprobe uprobe;
322 struct {
323 enum lttng_syscall_entryexit entryexit;
324 enum lttng_syscall_abi abi;
325 } syscall;
326 } u;
327 struct list_head list; /* Event list in session */
328 unsigned int metadata_dumped:1;
329
330 /* Backward references: list of lttng_enabler_ref (ref to enablers) */
331 struct list_head enablers_ref_head;
332 struct hlist_node hlist; /* session ht of events */
333 int registered; /* has reg'd tracepoint probe */
334 /* list of struct lttng_bytecode_runtime, sorted by seqnum */
335 struct list_head bytecode_runtime_head;
336 int has_enablers_without_bytecode;
337};
338
339// FIXME: Really similar to lttng_event above. Could those be merged ?
340struct lttng_event_notifier {
341 enum lttng_event_type evtype; /* First field. */
342 uint64_t user_token;
343 int enabled;
344 int registered; /* has reg'd tracepoint probe */
345 const struct lttng_event_desc *desc;
346 void *filter;
347 struct list_head list; /* event_notifier list in event_notifier group */
348
349 enum lttng_kernel_instrumentation instrumentation;
350 union {
351 struct lttng_kprobe kprobe;
352 struct lttng_uprobe uprobe;
353 } u;
354
355 /* Backward references: list of lttng_enabler_ref (ref to enablers) */
356 struct list_head enablers_ref_head;
357 struct hlist_node hlist; /* session ht of event_notifiers */
358 /* list of struct lttng_bytecode_runtime, sorted by seqnum */
359 struct list_head bytecode_runtime_head;
360 int has_enablers_without_bytecode;
361
362 void (*send_notification)(struct lttng_event_notifier *event_notifier);
363 struct lttng_event_notifier_group *group; /* Weak ref */
364};
365
366enum lttng_enabler_format_type {
367 LTTNG_ENABLER_FORMAT_STAR_GLOB,
368 LTTNG_ENABLER_FORMAT_NAME,
369};
370
371/*
372 * Enabler field, within whatever object is enabling an event. Target of
373 * backward reference.
374 */
375struct lttng_enabler {
376 enum lttng_event_type evtype; /* First field. */
377
378 enum lttng_enabler_format_type format_type;
379
380 /* head list of struct lttng_ust_filter_bytecode_node */
381 struct list_head filter_bytecode_head;
382
383 struct lttng_kernel_event event_param;
384 unsigned int enabled:1;
385
386 uint64_t user_token; /* User-provided token. */
387};
388
389struct lttng_event_enabler {
390 struct lttng_enabler base;
391 struct list_head node; /* per-session list of enablers */
392 struct lttng_channel *chan;
393 /*
394 * Unused, but kept around to make it explicit that the tracer can do
395 * it.
396 */
397 struct lttng_ctx *ctx;
398};
399
400struct lttng_event_notifier_enabler {
401 struct lttng_enabler base;
402 struct list_head node; /* List of event_notifier enablers */
403 struct lttng_event_notifier_group *group;
404};
405
406static inline
407struct lttng_enabler *lttng_event_enabler_as_enabler(
408 struct lttng_event_enabler *event_enabler)
409{
410 return &event_enabler->base;
411}
412
413static inline
414struct lttng_enabler *lttng_event_notifier_enabler_as_enabler(
415 struct lttng_event_notifier_enabler *event_notifier_enabler)
416{
417 return &event_notifier_enabler->base;
418}
419
420struct lttng_channel_ops {
421 struct channel *(*channel_create)(const char *name,
422 void *priv,
423 void *buf_addr,
424 size_t subbuf_size, size_t num_subbuf,
425 unsigned int switch_timer_interval,
426 unsigned int read_timer_interval);
427 void (*channel_destroy)(struct channel *chan);
428 struct lib_ring_buffer *(*buffer_read_open)(struct channel *chan);
429 int (*buffer_has_read_closed_stream)(struct channel *chan);
430 void (*buffer_read_close)(struct lib_ring_buffer *buf);
431 int (*event_reserve)(struct lib_ring_buffer_ctx *ctx,
432 uint32_t event_id);
433 void (*event_commit)(struct lib_ring_buffer_ctx *ctx);
434 void (*event_write)(struct lib_ring_buffer_ctx *ctx, const void *src,
435 size_t len);
436 void (*event_write_from_user)(struct lib_ring_buffer_ctx *ctx,
437 const void *src, size_t len);
438 void (*event_memset)(struct lib_ring_buffer_ctx *ctx,
439 int c, size_t len);
440 void (*event_strcpy)(struct lib_ring_buffer_ctx *ctx, const char *src,
441 size_t len);
442 void (*event_strcpy_from_user)(struct lib_ring_buffer_ctx *ctx,
443 const char __user *src, size_t len);
444 /*
445 * packet_avail_size returns the available size in the current
446 * packet. Note that the size returned is only a hint, since it
447 * may change due to concurrent writes.
448 */
449 size_t (*packet_avail_size)(struct channel *chan);
450 wait_queue_head_t *(*get_writer_buf_wait_queue)(struct channel *chan, int cpu);
451 wait_queue_head_t *(*get_hp_wait_queue)(struct channel *chan);
452 int (*is_finalized)(struct channel *chan);
453 int (*is_disabled)(struct channel *chan);
454 int (*timestamp_begin) (const struct lib_ring_buffer_config *config,
455 struct lib_ring_buffer *bufb,
456 uint64_t *timestamp_begin);
457 int (*timestamp_end) (const struct lib_ring_buffer_config *config,
458 struct lib_ring_buffer *bufb,
459 uint64_t *timestamp_end);
460 int (*events_discarded) (const struct lib_ring_buffer_config *config,
461 struct lib_ring_buffer *bufb,
462 uint64_t *events_discarded);
463 int (*content_size) (const struct lib_ring_buffer_config *config,
464 struct lib_ring_buffer *bufb,
465 uint64_t *content_size);
466 int (*packet_size) (const struct lib_ring_buffer_config *config,
467 struct lib_ring_buffer *bufb,
468 uint64_t *packet_size);
469 int (*stream_id) (const struct lib_ring_buffer_config *config,
470 struct lib_ring_buffer *bufb,
471 uint64_t *stream_id);
472 int (*current_timestamp) (const struct lib_ring_buffer_config *config,
473 struct lib_ring_buffer *bufb,
474 uint64_t *ts);
475 int (*sequence_number) (const struct lib_ring_buffer_config *config,
476 struct lib_ring_buffer *bufb,
477 uint64_t *seq);
478 int (*instance_id) (const struct lib_ring_buffer_config *config,
479 struct lib_ring_buffer *bufb,
480 uint64_t *id);
481};
482
483struct lttng_transport {
484 char *name;
485 struct module *owner;
486 struct list_head node;
487 struct lttng_channel_ops ops;
488};
489
490struct lttng_syscall_filter;
491
492#define LTTNG_EVENT_HT_BITS 12
493#define LTTNG_EVENT_HT_SIZE (1U << LTTNG_EVENT_HT_BITS)
494
495struct lttng_event_ht {
496 struct hlist_head table[LTTNG_EVENT_HT_SIZE];
497};
498
499#define LTTNG_EVENT_NOTIFIER_HT_BITS 12
500#define LTTNG_EVENT_NOTIFIER_HT_SIZE (1U << LTTNG_EVENT_NOTIFIER_HT_BITS)
501
502struct lttng_event_notifier_ht {
503 struct hlist_head table[LTTNG_EVENT_NOTIFIER_HT_SIZE];
504};
505
506struct lttng_channel {
507 unsigned int id;
508 struct channel *chan; /* Channel buffers */
509 int enabled;
510 struct lttng_ctx *ctx;
511 /* Event ID management */
512 struct lttng_session *session;
513 struct file *file; /* File associated to channel */
514 unsigned int free_event_id; /* Next event ID to allocate */
515 struct list_head list; /* Channel list */
516 struct lttng_channel_ops *ops;
517 struct lttng_transport *transport;
518 struct lttng_event **sc_table; /* for syscall tracing */
519 struct lttng_event **compat_sc_table;
520 struct lttng_event **sc_exit_table; /* for syscall exit tracing */
521 struct lttng_event **compat_sc_exit_table;
522 struct lttng_event *sc_unknown; /* for unknown syscalls */
523 struct lttng_event *sc_compat_unknown;
524 struct lttng_event *sc_exit_unknown;
525 struct lttng_event *compat_sc_exit_unknown;
526 struct lttng_syscall_filter *sc_filter;
527 int header_type; /* 0: unset, 1: compact, 2: large */
528 enum channel_type channel_type;
529 int syscall_all;
530 unsigned int metadata_dumped:1,
531 sys_enter_registered:1,
532 sys_exit_registered:1,
533 tstate:1; /* Transient enable state */
534};
535
536struct lttng_metadata_stream {
537 void *priv; /* Ring buffer private data */
538 struct lttng_metadata_cache *metadata_cache;
539 unsigned int metadata_in; /* Bytes read from the cache */
540 unsigned int metadata_out; /* Bytes consumed from stream */
541 int finalized; /* Has channel been finalized */
542 wait_queue_head_t read_wait; /* Reader buffer-level wait queue */
543 struct list_head list; /* Stream list */
544 struct lttng_transport *transport;
545 uint64_t version; /* Current version of the metadata cache */
546 bool coherent; /* Stream in a coherent state */
547};
548
549#define LTTNG_DYNAMIC_LEN_STACK_SIZE 128
550
551struct lttng_dynamic_len_stack {
552 size_t stack[LTTNG_DYNAMIC_LEN_STACK_SIZE];
553 size_t offset;
554};
555
556DECLARE_PER_CPU(struct lttng_dynamic_len_stack, lttng_dynamic_len_stack);
557
558/*
559 * struct lttng_id_tracker declared in header due to deferencing of *v
560 * in RCU_INITIALIZER(v).
561 */
562#define LTTNG_ID_HASH_BITS 6
563#define LTTNG_ID_TABLE_SIZE (1 << LTTNG_ID_HASH_BITS)
564
565enum tracker_type {
566 TRACKER_PID,
567 TRACKER_VPID,
568 TRACKER_UID,
569 TRACKER_VUID,
570 TRACKER_GID,
571 TRACKER_VGID,
572
573 TRACKER_UNKNOWN,
574};
575
576struct lttng_id_tracker_rcu {
577 struct hlist_head id_hash[LTTNG_ID_TABLE_SIZE];
578};
579
580struct lttng_id_tracker {
581 struct lttng_session *session;
582 enum tracker_type tracker_type;
583 struct lttng_id_tracker_rcu *p; /* RCU dereferenced. */
584};
585
586struct lttng_id_hash_node {
587 struct hlist_node hlist;
588 int id;
589};
590
591struct lttng_session {
592 int active; /* Is trace session active ? */
593 int been_active; /* Has trace session been active ? */
594 struct file *file; /* File associated to session */
595 struct list_head chan; /* Channel list head */
596 struct list_head events; /* Event list head */
597 struct list_head list; /* Session list */
598 unsigned int free_chan_id; /* Next chan ID to allocate */
599 uuid_le uuid; /* Trace session unique ID */
600 struct lttng_metadata_cache *metadata_cache;
601 struct lttng_id_tracker pid_tracker;
602 struct lttng_id_tracker vpid_tracker;
603 struct lttng_id_tracker uid_tracker;
604 struct lttng_id_tracker vuid_tracker;
605 struct lttng_id_tracker gid_tracker;
606 struct lttng_id_tracker vgid_tracker;
607 unsigned int metadata_dumped:1,
608 tstate:1; /* Transient enable state */
609 /* List of event enablers */
610 struct list_head enablers_head;
611 /* Hash table of events */
612 struct lttng_event_ht events_ht;
613 char name[LTTNG_KERNEL_SESSION_NAME_LEN];
614 char creation_time[LTTNG_KERNEL_SESSION_CREATION_TIME_ISO8601_LEN];
615};
616
617struct lttng_event_notifier_group {
618 struct file *file; /* File associated to event notifier group */
619 struct file *notif_file; /* File used to expose notifications to userspace. */
620 struct list_head node; /* event notifier group list */
621 struct list_head enablers_head; /* List of enablers */
622 struct list_head event_notifiers_head; /* List of event notifier */
623 struct lttng_event_notifier_ht event_notifiers_ht; /* Hash table of event notifiers */
624 struct lttng_ctx *ctx; /* Contexts for filters. */
625 struct lttng_channel_ops *ops;
626 struct lttng_transport *transport;
627 struct channel *chan; /* Ring buffer channel for event notifier group. */
628 struct lib_ring_buffer *buf; /* Ring buffer for event notifier group. */
629 wait_queue_head_t read_wait;
630 struct irq_work wakeup_pending; /* Pending wakeup irq work. */
631};
632
633struct lttng_metadata_cache {
634 char *data; /* Metadata cache */
635 unsigned int cache_alloc; /* Metadata allocated size (bytes) */
636 unsigned int metadata_written; /* Number of bytes written in metadata cache */
637 atomic_t producing; /* Metadata being produced (incomplete) */
638 struct kref refcount; /* Metadata cache usage */
639 struct list_head metadata_stream; /* Metadata stream list */
640 uuid_le uuid; /* Trace session unique ID (copy) */
641 struct mutex lock; /* Produce/consume lock */
642 uint64_t version; /* Current version of the metadata */
643};
644
645void lttng_lock_sessions(void);
646void lttng_unlock_sessions(void);
647
648struct list_head *lttng_get_probe_list_head(void);
649
650struct lttng_event_enabler *lttng_event_enabler_create(
651 enum lttng_enabler_format_type format_type,
652 struct lttng_kernel_event *event_param,
653 struct lttng_channel *chan);
654
655int lttng_event_enabler_enable(struct lttng_event_enabler *event_enabler);
656int lttng_event_enabler_disable(struct lttng_event_enabler *event_enabler);
657struct lttng_event_notifier_enabler *lttng_event_notifier_enabler_create(
658 struct lttng_event_notifier_group *event_notifier_group,
659 enum lttng_enabler_format_type format_type,
660 struct lttng_kernel_event_notifier *event_notifier_param);
661
662int lttng_event_notifier_enabler_enable(
663 struct lttng_event_notifier_enabler *event_notifier_enabler);
664int lttng_event_notifier_enabler_disable(
665 struct lttng_event_notifier_enabler *event_notifier_enabler);
666int lttng_fix_pending_events(void);
667int lttng_fix_pending_event_notifiers(void);
668int lttng_session_active(void);
669bool lttng_event_notifier_active(void);
670
671struct lttng_session *lttng_session_create(void);
672int lttng_session_enable(struct lttng_session *session);
673int lttng_session_disable(struct lttng_session *session);
674void lttng_session_destroy(struct lttng_session *session);
675int lttng_session_metadata_regenerate(struct lttng_session *session);
676int lttng_session_statedump(struct lttng_session *session);
677void metadata_cache_destroy(struct kref *kref);
678
679struct lttng_event_notifier_group *lttng_event_notifier_group_create(void);
680void lttng_event_notifier_group_destroy(
681 struct lttng_event_notifier_group *event_notifier_group);
682
683struct lttng_channel *lttng_channel_create(struct lttng_session *session,
684 const char *transport_name,
685 void *buf_addr,
686 size_t subbuf_size, size_t num_subbuf,
687 unsigned int switch_timer_interval,
688 unsigned int read_timer_interval,
689 enum channel_type channel_type);
690struct lttng_channel *lttng_global_channel_create(struct lttng_session *session,
691 int overwrite, void *buf_addr,
692 size_t subbuf_size, size_t num_subbuf,
693 unsigned int switch_timer_interval,
694 unsigned int read_timer_interval);
695
696void lttng_metadata_channel_destroy(struct lttng_channel *chan);
697struct lttng_event *lttng_event_create(struct lttng_channel *chan,
698 struct lttng_kernel_event *event_param,
699 void *filter,
700 const struct lttng_event_desc *event_desc,
701 enum lttng_kernel_instrumentation itype);
702struct lttng_event *_lttng_event_create(struct lttng_channel *chan,
703 struct lttng_kernel_event *event_param,
704 void *filter,
705 const struct lttng_event_desc *event_desc,
706 enum lttng_kernel_instrumentation itype);
707struct lttng_event *lttng_event_compat_old_create(struct lttng_channel *chan,
708 struct lttng_kernel_old_event *old_event_param,
709 void *filter,
710 const struct lttng_event_desc *internal_desc);
711
712struct lttng_event_notifier *lttng_event_notifier_create(
713 const struct lttng_event_desc *event_notifier_desc,
714 uint64_t id,
715 struct lttng_event_notifier_group *event_notifier_group,
716 struct lttng_kernel_event_notifier *event_notifier_param,
717 void *filter,
718 enum lttng_kernel_instrumentation itype);
719struct lttng_event_notifier *_lttng_event_notifier_create(
720 const struct lttng_event_desc *event_notifier_desc,
721 uint64_t id,
722 struct lttng_event_notifier_group *event_notifier_group,
723 struct lttng_kernel_event_notifier *event_notifier_param,
724 void *filter,
725 enum lttng_kernel_instrumentation itype);
726
727int lttng_channel_enable(struct lttng_channel *channel);
728int lttng_channel_disable(struct lttng_channel *channel);
729int lttng_event_enable(struct lttng_event *event);
730int lttng_event_disable(struct lttng_event *event);
731
732int lttng_event_notifier_enable(struct lttng_event_notifier *event_notifier);
733int lttng_event_notifier_disable(struct lttng_event_notifier *event_notifier);
734
735void lttng_transport_register(struct lttng_transport *transport);
736void lttng_transport_unregister(struct lttng_transport *transport);
737
738void synchronize_trace(void);
739int lttng_abi_init(void);
740int lttng_abi_compat_old_init(void);
741void lttng_abi_exit(void);
742void lttng_abi_compat_old_exit(void);
743
744int lttng_probe_register(struct lttng_probe_desc *desc);
745void lttng_probe_unregister(struct lttng_probe_desc *desc);
746const struct lttng_event_desc *lttng_event_desc_get(const char *name);
747void lttng_event_desc_put(const struct lttng_event_desc *desc);
748int lttng_probes_init(void);
749void lttng_probes_exit(void);
750
751int lttng_metadata_output_channel(struct lttng_metadata_stream *stream,
752 struct channel *chan, bool *coherent);
753
754int lttng_id_tracker_get_node_id(const struct lttng_id_hash_node *node);
755int lttng_id_tracker_empty_set(struct lttng_id_tracker *lf);
756void lttng_id_tracker_destroy(struct lttng_id_tracker *lf, bool rcu);
757bool lttng_id_tracker_lookup(struct lttng_id_tracker_rcu *p, int id);
758int lttng_id_tracker_add(struct lttng_id_tracker *lf, int id);
759int lttng_id_tracker_del(struct lttng_id_tracker *lf, int id);
760
761int lttng_session_track_id(struct lttng_session *session,
762 enum tracker_type tracker_type, int id);
763int lttng_session_untrack_id(struct lttng_session *session,
764 enum tracker_type tracker_type, int id);
765
766int lttng_session_list_tracker_ids(struct lttng_session *session,
767 enum tracker_type tracker_type);
768
769void lttng_clock_ref(void);
770void lttng_clock_unref(void);
771
772#if defined(CONFIG_HAVE_SYSCALL_TRACEPOINTS)
773int lttng_syscalls_register_event(struct lttng_channel *chan, void *filter);
774int lttng_syscalls_unregister_event(struct lttng_channel *chan);
775int lttng_syscalls_destroy_event(struct lttng_channel *chan);
776int lttng_syscall_filter_enable_event(
777 struct lttng_channel *chan,
778 struct lttng_event *event);
779int lttng_syscall_filter_disable_event(
780 struct lttng_channel *chan,
781 struct lttng_event *event);
782
783long lttng_channel_syscall_mask(struct lttng_channel *channel,
784 struct lttng_kernel_syscall_mask __user *usyscall_mask);
785
786#else
787static inline int lttng_syscalls_register_event(
788 struct lttng_channel *chan, void *filter)
789{
790 return -ENOSYS;
791}
792
793static inline int lttng_syscalls_unregister_event(struct lttng_channel *chan)
794{
795 return 0;
796}
797
798static inline int lttng_syscalls_destroy(struct lttng_channel *chan)
799{
800 return 0;
801}
802
803static inline int lttng_syscall_filter_enable_event(struct lttng_channel *chan,
804 struct lttng_event *event);
805{
806 return -ENOSYS;
807}
808
809static inline int lttng_syscall_filter_disable_event(struct lttng_channel *chan,
810 struct lttng_event *event);
811{
812 return -ENOSYS;
813}
814
815static inline long lttng_channel_syscall_mask(struct lttng_channel *channel,
816 struct lttng_kernel_syscall_mask __user *usyscall_mask)
817{
818 return -ENOSYS;
819}
820
821#endif
822
823void lttng_filter_sync_state(struct lttng_bytecode_runtime *runtime);
824int lttng_event_enabler_attach_bytecode(struct lttng_event_enabler *event_enabler,
825 struct lttng_kernel_filter_bytecode __user *bytecode);
826int lttng_event_notifier_enabler_attach_bytecode(
827 struct lttng_event_notifier_enabler *event_notifier_enabler,
828 struct lttng_kernel_filter_bytecode __user *bytecode);
829
830void lttng_enabler_link_bytecode(const struct lttng_event_desc *event_desc,
831 struct lttng_ctx *ctx,
832 struct list_head *bytecode_runtime_head,
833 struct lttng_enabler *enabler);
834
835int lttng_probes_init(void);
836
837extern struct lttng_ctx *lttng_static_ctx;
838
839int lttng_context_init(void);
840void lttng_context_exit(void);
841struct lttng_ctx_field *lttng_append_context(struct lttng_ctx **ctx);
842ssize_t lttng_append_context_index(struct lttng_ctx **ctx_p);
843struct lttng_ctx_field *lttng_get_context_field_from_index(struct lttng_ctx *ctx,
844 size_t index);
845void lttng_context_update(struct lttng_ctx *ctx);
846int lttng_find_context(struct lttng_ctx *ctx, const char *name);
847int lttng_get_context_index(struct lttng_ctx *ctx, const char *name);
848void lttng_remove_context_field(struct lttng_ctx **ctx,
849 struct lttng_ctx_field *field);
850void lttng_remove_context_field_index(struct lttng_ctx **ctx_p, size_t index);
851void lttng_destroy_context(struct lttng_ctx *ctx);
852int lttng_add_pid_to_ctx(struct lttng_ctx **ctx);
853int lttng_add_cpu_id_to_ctx(struct lttng_ctx **ctx);
854int lttng_add_procname_to_ctx(struct lttng_ctx **ctx);
855int lttng_add_prio_to_ctx(struct lttng_ctx **ctx);
856int lttng_add_nice_to_ctx(struct lttng_ctx **ctx);
857int lttng_add_vpid_to_ctx(struct lttng_ctx **ctx);
858int lttng_add_tid_to_ctx(struct lttng_ctx **ctx);
859int lttng_add_vtid_to_ctx(struct lttng_ctx **ctx);
860int lttng_add_ppid_to_ctx(struct lttng_ctx **ctx);
861int lttng_add_vppid_to_ctx(struct lttng_ctx **ctx);
862int lttng_add_hostname_to_ctx(struct lttng_ctx **ctx);
863int lttng_add_interruptible_to_ctx(struct lttng_ctx **ctx);
864int lttng_add_need_reschedule_to_ctx(struct lttng_ctx **ctx);
865#if defined(CONFIG_PREEMPT_RT_FULL) || defined(CONFIG_PREEMPT)
866int lttng_add_preemptible_to_ctx(struct lttng_ctx **ctx);
867#else
868static inline
869int lttng_add_preemptible_to_ctx(struct lttng_ctx **ctx)
870{
871 return -ENOSYS;
872}
873#endif
874#ifdef CONFIG_PREEMPT_RT_FULL
875int lttng_add_migratable_to_ctx(struct lttng_ctx **ctx);
876#else
877static inline
878int lttng_add_migratable_to_ctx(struct lttng_ctx **ctx)
879{
880 return -ENOSYS;
881}
882#endif
883
884int lttng_add_callstack_to_ctx(struct lttng_ctx **ctx, int type);
885
886#if defined(CONFIG_CGROUPS) && \
887 ((LINUX_VERSION_CODE >= KERNEL_VERSION(4,6,0)) || \
888 LTTNG_UBUNTU_KERNEL_RANGE(4,4,0,0, 4,5,0,0))
889int lttng_add_cgroup_ns_to_ctx(struct lttng_ctx **ctx);
890#else
891static inline
892int lttng_add_cgroup_ns_to_ctx(struct lttng_ctx **ctx)
893{
894 return -ENOSYS;
895}
896#endif
897
898#if defined(CONFIG_IPC_NS) && \
899 (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
900int lttng_add_ipc_ns_to_ctx(struct lttng_ctx **ctx);
901#else
902static inline
903int lttng_add_ipc_ns_to_ctx(struct lttng_ctx **ctx)
904{
905 return -ENOSYS;
906}
907#endif
908
909#if !defined(LTTNG_MNT_NS_MISSING_HEADER) && \
910 (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
911int lttng_add_mnt_ns_to_ctx(struct lttng_ctx **ctx);
912#else
913static inline
914int lttng_add_mnt_ns_to_ctx(struct lttng_ctx **ctx)
915{
916 return -ENOSYS;
917}
918#endif
919
920#if defined(CONFIG_NET_NS) && \
921 (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
922int lttng_add_net_ns_to_ctx(struct lttng_ctx **ctx);
923#else
924static inline
925int lttng_add_net_ns_to_ctx(struct lttng_ctx **ctx)
926{
927 return -ENOSYS;
928}
929#endif
930
931#if defined(CONFIG_PID_NS) && \
932 (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
933int lttng_add_pid_ns_to_ctx(struct lttng_ctx **ctx);
934#else
935static inline
936int lttng_add_pid_ns_to_ctx(struct lttng_ctx **ctx)
937{
938 return -ENOSYS;
939}
940#endif
941
942#if defined(CONFIG_USER_NS) && \
943 (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
944int lttng_add_user_ns_to_ctx(struct lttng_ctx **ctx);
945#else
946static inline
947int lttng_add_user_ns_to_ctx(struct lttng_ctx **ctx)
948{
949 return -ENOSYS;
950}
951#endif
952
953#if defined(CONFIG_UTS_NS) && \
954 (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
955int lttng_add_uts_ns_to_ctx(struct lttng_ctx **ctx);
956#else
957static inline
958int lttng_add_uts_ns_to_ctx(struct lttng_ctx **ctx)
959{
960 return -ENOSYS;
961}
962#endif
963
964#if defined(CONFIG_TIME_NS) && \
965 (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
966int lttng_add_time_ns_to_ctx(struct lttng_ctx **ctx);
967#else
968static inline
969int lttng_add_time_ns_to_ctx(struct lttng_ctx **ctx)
970{
971 return -ENOSYS;
972}
973#endif
974
975int lttng_add_uid_to_ctx(struct lttng_ctx **ctx);
976int lttng_add_euid_to_ctx(struct lttng_ctx **ctx);
977int lttng_add_suid_to_ctx(struct lttng_ctx **ctx);
978int lttng_add_gid_to_ctx(struct lttng_ctx **ctx);
979int lttng_add_egid_to_ctx(struct lttng_ctx **ctx);
980int lttng_add_sgid_to_ctx(struct lttng_ctx **ctx);
981int lttng_add_vuid_to_ctx(struct lttng_ctx **ctx);
982int lttng_add_veuid_to_ctx(struct lttng_ctx **ctx);
983int lttng_add_vsuid_to_ctx(struct lttng_ctx **ctx);
984int lttng_add_vgid_to_ctx(struct lttng_ctx **ctx);
985int lttng_add_vegid_to_ctx(struct lttng_ctx **ctx);
986int lttng_add_vsgid_to_ctx(struct lttng_ctx **ctx);
987
988#if defined(CONFIG_PERF_EVENTS)
989int lttng_add_perf_counter_to_ctx(uint32_t type,
990 uint64_t config,
991 const char *name,
992 struct lttng_ctx **ctx);
993int lttng_cpuhp_perf_counter_online(unsigned int cpu,
994 struct lttng_cpuhp_node *node);
995int lttng_cpuhp_perf_counter_dead(unsigned int cpu,
996 struct lttng_cpuhp_node *node);
997#else
998static inline
999int lttng_add_perf_counter_to_ctx(uint32_t type,
1000 uint64_t config,
1001 const char *name,
1002 struct lttng_ctx **ctx)
1003{
1004 return -ENOSYS;
1005}
1006static inline
1007int lttng_cpuhp_perf_counter_online(unsigned int cpu,
1008 struct lttng_cpuhp_node *node)
1009{
1010 return 0;
1011}
1012static inline
1013int lttng_cpuhp_perf_counter_dead(unsigned int cpu,
1014 struct lttng_cpuhp_node *node)
1015{
1016 return 0;
1017}
1018#endif
1019
1020int lttng_logger_init(void);
1021void lttng_logger_exit(void);
1022
1023extern int lttng_statedump_start(struct lttng_session *session);
1024
1025#ifdef CONFIG_KPROBES
1026int lttng_kprobes_register_event(const char *name,
1027 const char *symbol_name,
1028 uint64_t offset,
1029 uint64_t addr,
1030 struct lttng_event *event);
1031void lttng_kprobes_unregister_event(struct lttng_event *event);
1032void lttng_kprobes_destroy_event_private(struct lttng_event *event);
1033int lttng_kprobes_register_event_notifier(const char *symbol_name,
1034 uint64_t offset,
1035 uint64_t addr,
1036 struct lttng_event_notifier *event_notifier);
1037void lttng_kprobes_unregister_event_notifier(struct lttng_event_notifier *event_notifier);
1038void lttng_kprobes_destroy_event_notifier_private(struct lttng_event_notifier *event_notifier);
1039#else
1040static inline
1041int lttng_kprobes_register_event(const char *name,
1042 const char *symbol_name,
1043 uint64_t offset,
1044 uint64_t addr,
1045 struct lttng_event *event)
1046{
1047 return -ENOSYS;
1048}
1049
1050static inline
1051void lttng_kprobes_unregister_event(struct lttng_event *event)
1052{
1053}
1054
1055static inline
1056void lttng_kprobes_destroy_event_private(struct lttng_event *event)
1057{
1058}
1059
1060static inline
1061int lttng_kprobes_register_event_notifier(const char *symbol_name,
1062 uint64_t offset,
1063 uint64_t addr,
1064 struct lttng_event_notifier *event_notifier)
1065{
1066 return -ENOSYS;
1067}
1068
1069static inline
1070void lttng_kprobes_unregister_event_notifier(struct lttng_event_notifier *event_notifier)
1071{
1072}
1073
1074static inline
1075void lttng_kprobes_destroy_event_notifier_private(struct lttng_event_notifier *event_notifier)
1076{
1077}
1078#endif
1079
1080int lttng_event_add_callsite(struct lttng_event *event,
1081 struct lttng_kernel_event_callsite *callsite);
1082
1083int lttng_event_notifier_add_callsite(struct lttng_event_notifier *event_notifier,
1084 struct lttng_kernel_event_callsite *callsite);
1085
1086#ifdef CONFIG_UPROBES
1087int lttng_uprobes_register_event(const char *name,
1088 int fd, struct lttng_event *event);
1089int lttng_uprobes_event_add_callsite(struct lttng_event *event,
1090 struct lttng_kernel_event_callsite *callsite);
1091void lttng_uprobes_unregister_event(struct lttng_event *event);
1092void lttng_uprobes_destroy_event_private(struct lttng_event *event);
1093int lttng_uprobes_register_event_notifier(const char *name,
1094 int fd, struct lttng_event_notifier *event_notifier);
1095int lttng_uprobes_event_notifier_add_callsite(struct lttng_event_notifier *event_notifier,
1096 struct lttng_kernel_event_callsite *callsite);
1097void lttng_uprobes_unregister_event_notifier(struct lttng_event_notifier *event_notifier);
1098void lttng_uprobes_destroy_event_notifier_private(struct lttng_event_notifier *event_notifier);
1099#else
1100static inline
1101int lttng_uprobes_register_event(const char *name,
1102 int fd, struct lttng_event *event)
1103{
1104 return -ENOSYS;
1105}
1106
1107static inline
1108int lttng_uprobes_event_add_callsite(struct lttng_event *event,
1109 struct lttng_kernel_event_callsite *callsite)
1110{
1111 return -ENOSYS;
1112}
1113
1114static inline
1115void lttng_uprobes_unregister_event(struct lttng_event *event)
1116{
1117}
1118
1119static inline
1120void lttng_uprobes_destroy_event_private(struct lttng_event *event)
1121{
1122}
1123
1124static inline
1125int lttng_uprobes_register_event_notifier(const char *name,
1126 int fd, struct lttng_event_notifier *event_notifier)
1127{
1128 return -ENOSYS;
1129}
1130
1131static inline
1132int lttng_uprobes_event_notifier_add_callsite(struct lttng_event_notifier *event_notifier,
1133 struct lttng_kernel_event_callsite *callsite)
1134{
1135 return -ENOSYS;
1136}
1137
1138static inline
1139void lttng_uprobes_unregister_event_notifier(struct lttng_event_notifier *event_notifier)
1140{
1141}
1142
1143static inline
1144void lttng_uprobes_destroy_event_notifier_private(struct lttng_event_notifier *event_notifier)
1145{
1146}
1147#endif
1148
1149#ifdef CONFIG_KRETPROBES
1150int lttng_kretprobes_register(const char *name,
1151 const char *symbol_name,
1152 uint64_t offset,
1153 uint64_t addr,
1154 struct lttng_event *event_entry,
1155 struct lttng_event *event_exit);
1156void lttng_kretprobes_unregister(struct lttng_event *event);
1157void lttng_kretprobes_destroy_private(struct lttng_event *event);
1158int lttng_kretprobes_event_enable_state(struct lttng_event *event,
1159 int enable);
1160#else
1161static inline
1162int lttng_kretprobes_register(const char *name,
1163 const char *symbol_name,
1164 uint64_t offset,
1165 uint64_t addr,
1166 struct lttng_event *event_entry,
1167 struct lttng_event *event_exit)
1168{
1169 return -ENOSYS;
1170}
1171
1172static inline
1173void lttng_kretprobes_unregister(struct lttng_event *event)
1174{
1175}
1176
1177static inline
1178void lttng_kretprobes_destroy_private(struct lttng_event *event)
1179{
1180}
1181
1182static inline
1183int lttng_kretprobes_event_enable_state(struct lttng_event *event,
1184 int enable)
1185{
1186 return -ENOSYS;
1187}
1188#endif
1189
1190int lttng_calibrate(struct lttng_kernel_calibrate *calibrate);
1191
1192extern const struct file_operations lttng_tracepoint_list_fops;
1193extern const struct file_operations lttng_syscall_list_fops;
1194
1195#define TRACEPOINT_HAS_DATA_ARG
1196
1197static inline bool lttng_is_bytewise_integer(const struct lttng_type *type)
1198{
1199 if (type->atype != atype_integer)
1200 return false;
1201 switch (type->u.integer.size) {
1202 case 8: /* Fall-through. */
1203 case 16: /* Fall-through. */
1204 case 32: /* Fall-through. */
1205 case 64:
1206 break;
1207 default:
1208 return false;
1209 }
1210 return true;
1211}
1212
1213#endif /* _LTTNG_EVENTS_H */
This page took 0.026237 seconds and 4 git commands to generate.