Handle refcount of modules having dynamically alloc event description
[lttng-modules.git] / ltt-events.h
CommitLineData
11b5a3c2
MD
1#ifndef _LTT_EVENTS_H
2#define _LTT_EVENTS_H
3
4e3c1b9b
MD
4/*
5 * ltt-events.h
6 *
7 * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
9 * Holds LTTng per-session event registry.
10 */
11
12#include <linux/list.h>
d793d5e1 13#include <linux/uuid.h>
d6d808f3 14#include <linux/kprobes.h>
11b5a3c2 15#include "ltt-debugfs-abi.h"
4e3c1b9b
MD
16
17struct ltt_channel;
18struct ltt_session;
1c25284c 19struct lib_ring_buffer_ctx;
ba1f5986 20struct perf_event;
833ad6a0 21struct perf_event_attr;
4e3c1b9b 22
c0edae1d
MD
23/* Type description */
24
25/* Update the astract_types name table in lttng-types.c along with this enum */
26enum abstract_types {
27 atype_integer,
28 atype_enum,
29 atype_array,
30 atype_sequence,
31 atype_string,
32 NR_ABSTRACT_TYPES,
33};
34
35/* Update the string_encodings name table in lttng-types.c along with this enum */
36enum lttng_string_encodings {
e0a7a7c4
MD
37 lttng_encode_none = 0,
38 lttng_encode_UTF8 = 1,
39 lttng_encode_ASCII = 2,
c0edae1d
MD
40 NR_STRING_ENCODINGS,
41};
42
43struct lttng_enum_entry {
44 unsigned long long start, end; /* start and end are inclusive */
45 const char *string;
46};
47
64c796d8 48#define __type_integer(_type, _byte_order, _base, _encoding) \
c099397a
MD
49 { \
50 .atype = atype_integer, \
51 .u.basic.integer = \
52 { \
30bdb6e4 53 .size = sizeof(_type) * CHAR_BIT, \
d793d5e1 54 .alignment = ltt_alignof(_type) * CHAR_BIT, \
c099397a
MD
55 .signedness = is_signed_type(_type), \
56 .reverse_byte_order = _byte_order != __BYTE_ORDER, \
e0a7a7c4 57 .base = _base, \
64c796d8 58 .encoding = lttng_encode_##_encoding, \
c099397a
MD
59 }, \
60 } \
61
62struct lttng_integer_type {
63 unsigned int size; /* in bits */
64 unsigned short alignment; /* in bits */
65 unsigned int signedness:1;
66 unsigned int reverse_byte_order:1;
e0a7a7c4
MD
67 unsigned int base; /* 2, 8, 10, 16, for pretty print */
68 enum lttng_string_encodings encoding;
c099397a
MD
69};
70
71union _lttng_basic_type {
72 struct lttng_integer_type integer;
73 struct {
74 const char *name;
75 } enumeration;
76 struct {
77 enum lttng_string_encodings encoding;
78 } string;
79};
80
81struct lttng_basic_type {
82 enum abstract_types atype;
83 union {
84 union _lttng_basic_type basic;
85 } u;
c0edae1d
MD
86};
87
88struct lttng_type {
89 enum abstract_types atype;
c0edae1d 90 union {
c099397a 91 union _lttng_basic_type basic;
c0edae1d 92 struct {
c099397a 93 struct lttng_basic_type elem_type;
c0edae1d
MD
94 unsigned int length; /* num. elems. */
95 } array;
96 struct {
c099397a
MD
97 struct lttng_basic_type length_type;
98 struct lttng_basic_type elem_type;
c0edae1d 99 } sequence;
c0edae1d 100 } u;
c099397a
MD
101};
102
103struct lttng_enum {
104 const char *name;
105 struct lttng_type container_type;
106 const struct lttng_enum_entry *entries;
107 unsigned int len;
108};
c0edae1d
MD
109
110/* Event field description */
111
112struct lttng_event_field {
113 const char *name;
f17701fb 114 struct lttng_type type;
c0edae1d
MD
115};
116
ba1f5986
MD
117struct lttng_ctx_field {
118 const char *name;
119 struct lttng_type type;
833ad6a0 120 void *callback;
ba1f5986
MD
121 union {
122 struct {
123 struct perf_event **e; /* per-cpu array */
833ad6a0
MD
124 struct list_head head;
125 struct perf_event_attr *attr;
ba1f5986
MD
126 } perf_counter;
127 } u;
128};
129
130struct lttng_ctx {
833ad6a0 131 struct lttng_ctx_field *fields;
0d1a681e 132 unsigned int nr_fields;
ba1f5986 133 unsigned int allocated_fields;
0d1a681e
MD
134};
135
136struct lttng_event_desc {
c0edae1d
MD
137 const char *name;
138 void *probe_callback;
0d1a681e
MD
139 const struct lttng_event_ctx *ctx; /* context */
140 const struct lttng_event_field *fields; /* event payload */
c0edae1d 141 unsigned int nr_fields;
dc7f600a 142 struct module *owner;
c0edae1d
MD
143};
144
85a9ca7f
MD
145struct lttng_probe_desc {
146 const struct lttng_event_desc *event_desc;
147 unsigned int nr_events;
148 struct list_head head; /* chain registered probes */
149};
150
151/*
152 * ltt_event structure is referred to by the tracing fast path. It must be
153 * kept small.
154 */
155struct ltt_event {
156 unsigned int id;
157 struct ltt_channel *chan;
d3dbe23c 158 const struct lttng_event_desc *desc;
85a9ca7f 159 void *filter;
38d024ae 160 enum lttng_kernel_instrumentation instrumentation;
d6d808f3
MD
161 union {
162 struct {
163 struct kprobe kp;
164 char *symbol_name;
165 } kprobe;
e0a7a7c4
MD
166 struct {
167 char *symbol_name;
168 } ftrace;
d6d808f3 169 } u;
85a9ca7f 170 struct list_head list; /* Event list */
c099397a 171 int metadata_dumped:1;
85a9ca7f
MD
172};
173
174struct ltt_channel_ops {
175 struct channel *(*channel_create)(const char *name,
9115fbdc 176 struct ltt_channel *ltt_chan,
85a9ca7f
MD
177 void *buf_addr,
178 size_t subbuf_size, size_t num_subbuf,
179 unsigned int switch_timer_interval,
180 unsigned int read_timer_interval);
181 void (*channel_destroy)(struct channel *chan);
182 struct lib_ring_buffer *(*buffer_read_open)(struct channel *chan);
183 void (*buffer_read_close)(struct lib_ring_buffer *buf);
4e1f08f4 184 int (*event_reserve)(struct lib_ring_buffer_ctx *ctx,
64c796d8 185 uint32_t event_id);
85a9ca7f
MD
186 void (*event_commit)(struct lib_ring_buffer_ctx *ctx);
187 void (*event_write)(struct lib_ring_buffer_ctx *ctx, const void *src,
188 size_t len);
1ec3f75a
MD
189 /*
190 * packet_avail_size returns the available size in the current
191 * packet. Note that the size returned is only a hint, since it
192 * may change due to concurrent writes.
193 */
194 size_t (*packet_avail_size)(struct channel *chan);
c099397a 195 wait_queue_head_t *(*get_reader_wait_queue)(struct ltt_channel *chan);
85a9ca7f
MD
196};
197
198struct ltt_channel {
c099397a 199 unsigned int id;
85a9ca7f
MD
200 struct channel *chan; /* Channel buffers */
201 /* Event ID management */
202 struct ltt_session *session;
203 struct file *file; /* File associated to channel */
204 unsigned int free_event_id; /* Next event ID to allocate */
205 struct list_head list; /* Channel list */
206 wait_queue_head_t notify_wait; /* Channel addition notif. waitqueue */
207 struct ltt_channel_ops *ops;
9115fbdc 208 int header_type; /* 0: unset, 1: compact, 2: large */
c099397a 209 int metadata_dumped:1;
85a9ca7f
MD
210};
211
212struct ltt_session {
213 int active; /* Is trace session active ? */
214 struct file *file; /* File associated to session */
c099397a 215 struct ltt_channel *metadata; /* Metadata channel */
85a9ca7f
MD
216 struct list_head chan; /* Channel list head */
217 struct list_head events; /* Event list head */
218 struct list_head list; /* Session list */
c099397a 219 unsigned int free_chan_id; /* Next chan ID to allocate */
d793d5e1 220 uuid_le uuid; /* Trace session unique ID */
c099397a 221 int metadata_dumped:1;
85a9ca7f
MD
222};
223
224struct ltt_transport {
225 char *name;
226 struct module *owner;
227 struct list_head node;
228 struct ltt_channel_ops ops;
229};
230
baf20995 231struct ltt_session *ltt_session_create(void);
c0e31d2e
MD
232int ltt_session_start(struct ltt_session *session);
233int ltt_session_stop(struct ltt_session *session);
11b5a3c2 234void ltt_session_destroy(struct ltt_session *session);
4e3c1b9b 235
baf20995 236struct ltt_channel *ltt_channel_create(struct ltt_session *session,
5dbbdb43
MD
237 const char *transport_name,
238 void *buf_addr,
239 size_t subbuf_size, size_t num_subbuf,
240 unsigned int switch_timer_interval,
241 unsigned int read_timer_interval);
242struct ltt_channel *ltt_global_channel_create(struct ltt_session *session,
4e3c1b9b
MD
243 int overwrite, void *buf_addr,
244 size_t subbuf_size, size_t num_subbuf,
245 unsigned int switch_timer_interval,
246 unsigned int read_timer_interval);
4e3c1b9b 247
653fe716 248struct ltt_event *ltt_event_create(struct ltt_channel *chan,
d6d808f3 249 struct lttng_kernel_event *event_param,
85a9ca7f 250 void *filter);
c0e31d2e
MD
251
252void ltt_transport_register(struct ltt_transport *transport);
253void ltt_transport_unregister(struct ltt_transport *transport);
11b5a3c2 254
1c25284c
MD
255int ltt_debugfs_abi_init(void);
256void ltt_debugfs_abi_exit(void);
257
85a9ca7f
MD
258int ltt_probe_register(struct lttng_probe_desc *desc);
259void ltt_probe_unregister(struct lttng_probe_desc *desc);
260const struct lttng_event_desc *ltt_event_get(const char *name);
261void ltt_event_put(const struct lttng_event_desc *desc);
cd4bd11f
MD
262int ltt_probes_init(void);
263void ltt_probes_exit(void);
02119ee5 264
acd614cc 265#ifdef CONFIG_KPROBES
f17701fb
MD
266int lttng_kprobes_register(const char *name,
267 const char *symbol_name,
268 uint64_t offset,
269 uint64_t addr,
270 struct ltt_event *event);
271void lttng_kprobes_unregister(struct ltt_event *event);
acd614cc
MD
272#else
273static inline
274int lttng_kprobes_register(const char *name,
275 const char *symbol_name,
276 uint64_t offset,
277 uint64_t addr,
278 struct ltt_event *event)
279{
280 return -ENOSYS;
281}
282
25f53c39 283static inline
acd614cc
MD
284void lttng_kprobes_unregister(struct ltt_event *event)
285{
286}
287#endif
d6d808f3 288
e0a7a7c4
MD
289#ifdef CONFIG_DYNAMIC_FTRACE
290int lttng_ftrace_register(const char *name,
291 const char *symbol_name,
292 struct ltt_event *event);
293void lttng_ftrace_unregister(struct ltt_event *event);
294#else
295static inline
296int lttng_ftrace_register(const char *name,
297 const char *symbol_name,
298 struct ltt_event *event)
299{
acd614cc 300 return -ENOSYS;
e0a7a7c4
MD
301}
302
303static inline
304void lttng_ftrace_unregister(struct ltt_event *event)
305{
306}
307#endif
11b5a3c2 308#endif /* _LTT_EVENTS_H */
This page took 0.036681 seconds and 4 git commands to generate.