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