Add ring buffer comment about shm
[lttng-ust.git] / include / ust / lttng-events.h
CommitLineData
0a42beb6
MD
1#ifndef _UST_LTTNG_EVENTS_H
2#define _UST_LTTNG_EVENTS_H
8020ceb5
MD
3
4/*
0a42beb6 5 * ust/lttng-events.h
8020ceb5
MD
6 *
7 * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
9 * Holds LTTng per-session event registry.
10 *
11 * Dual LGPL v2.1/GPL v2 license.
12 */
13
9f3fdbc6
MD
14#include <urcu/list.h>
15#include <uuid/uuid.h>
16#include <stdint.h>
17#include <ust/lttng-ust-abi.h>
20f1eee7
MD
18#include <endian.h>
19#include <float.h>
8020ceb5
MD
20
21#undef is_signed_type
22#define is_signed_type(type) (((type)(-1)) < 0)
23
24struct ltt_channel;
25struct ltt_session;
26struct lib_ring_buffer_ctx;
8020ceb5
MD
27
28/* Type description */
29
30/* Update the astract_types name table in lttng-types.c along with this enum */
31enum abstract_types {
32 atype_integer,
33 atype_enum,
34 atype_array,
35 atype_sequence,
36 atype_string,
20f1eee7 37 atype_float,
8020ceb5
MD
38 NR_ABSTRACT_TYPES,
39};
40
41/* Update the string_encodings name table in lttng-types.c along with this enum */
42enum lttng_string_encodings {
43 lttng_encode_none = 0,
44 lttng_encode_UTF8 = 1,
45 lttng_encode_ASCII = 2,
46 NR_STRING_ENCODINGS,
47};
48
49struct lttng_enum_entry {
50 unsigned long long start, end; /* start and end are inclusive */
51 const char *string;
52};
53
54#define __type_integer(_type, _byte_order, _base, _encoding) \
55 { \
56 .atype = atype_integer, \
57 .u.basic.integer = \
58 { \
59 .size = sizeof(_type) * CHAR_BIT, \
60 .alignment = ltt_alignof(_type) * CHAR_BIT, \
61 .signedness = is_signed_type(_type), \
62 .reverse_byte_order = _byte_order != __BYTE_ORDER, \
63 .base = _base, \
64 .encoding = lttng_encode_##_encoding, \
65 }, \
66 } \
67
68struct lttng_integer_type {
69 unsigned int size; /* in bits */
70 unsigned short alignment; /* in bits */
71 unsigned int signedness:1;
72 unsigned int reverse_byte_order:1;
73 unsigned int base; /* 2, 8, 10, 16, for pretty print */
74 enum lttng_string_encodings encoding;
75};
76
20f1eee7
MD
77#define _float_mant_dig(_type) \
78 (sizeof(_type) == sizeof(float) ? FLT_MANT_DIG \
79 : (sizeof(_type) == sizeof(double) ? DBL_MANT_DIG \
80 : (sizeof(_type) == sizeof(long double) ? LDBL_MANT_DIG \
81 : 0)))
82
83#define __type_float(_type) \
84 { \
85 .atype = atype_float, \
86 .u.basic._float = \
87 { \
88 .exp_dig = sizeof(_type) * CHAR_BIT \
89 - _float_mant_dig(_type), \
90 .mant_dig = _float_mant_dig(_type), \
91 .alignment = ltt_alignof(_type) * CHAR_BIT, \
92 .signedness = is_signed_type(_type), \
93 .reverse_byte_order = __BYTE_ORDER != __FLOAT_WORD_ORDER, \
94 }, \
95 } \
96
97struct lttng_float_type {
98 unsigned int exp_dig; /* exponent digits, in bits */
99 unsigned int mant_dig; /* mantissa digits, in bits */
100 unsigned short alignment; /* in bits */
101 unsigned int reverse_byte_order:1;
102};
103
8020ceb5
MD
104union _lttng_basic_type {
105 struct lttng_integer_type integer;
106 struct {
107 const char *name;
108 } enumeration;
109 struct {
110 enum lttng_string_encodings encoding;
111 } string;
20f1eee7 112 struct lttng_float_type _float;
8020ceb5
MD
113};
114
115struct lttng_basic_type {
116 enum abstract_types atype;
117 union {
118 union _lttng_basic_type basic;
119 } u;
120};
121
122struct lttng_type {
123 enum abstract_types atype;
124 union {
125 union _lttng_basic_type basic;
126 struct {
127 struct lttng_basic_type elem_type;
128 unsigned int length; /* num. elems. */
129 } array;
130 struct {
131 struct lttng_basic_type length_type;
132 struct lttng_basic_type elem_type;
133 } sequence;
134 } u;
135};
136
137struct lttng_enum {
138 const char *name;
139 struct lttng_type container_type;
140 const struct lttng_enum_entry *entries;
141 unsigned int len;
142};
143
144/* Event field description */
145
146struct lttng_event_field {
147 const char *name;
148 struct lttng_type type;
149};
150
151struct lttng_ctx_field {
152 struct lttng_event_field event_field;
153 size_t (*get_size)(size_t offset);
154 void (*record)(struct lttng_ctx_field *field,
155 struct lib_ring_buffer_ctx *ctx,
156 struct ltt_channel *chan);
157 union {
8020ceb5
MD
158 } u;
159 void (*destroy)(struct lttng_ctx_field *field);
160};
161
162struct lttng_ctx {
163 struct lttng_ctx_field *fields;
164 unsigned int nr_fields;
165 unsigned int allocated_fields;
166};
167
168struct lttng_event_desc {
169 const char *name;
170 void *probe_callback;
171 const struct lttng_event_ctx *ctx; /* context */
172 const struct lttng_event_field *fields; /* event payload */
173 unsigned int nr_fields;
8020ceb5
MD
174};
175
176struct lttng_probe_desc {
177 const struct lttng_event_desc *event_desc;
178 unsigned int nr_events;
9f3fdbc6 179 struct cds_list_head head; /* chain registered probes */
8020ceb5
MD
180};
181
182/*
183 * ltt_event structure is referred to by the tracing fast path. It must be
184 * kept small.
185 */
186struct ltt_event {
187 unsigned int id;
188 struct ltt_channel *chan;
976fe9ea 189 int enabled;
8020ceb5
MD
190 const struct lttng_event_desc *desc;
191 void *filter;
192 struct lttng_ctx *ctx;
9f3fdbc6 193 enum lttng_ust_instrumentation instrumentation;
8020ceb5 194 union {
8020ceb5 195 } u;
9f3fdbc6 196 struct cds_list_head list; /* Event list */
8020ceb5
MD
197 int metadata_dumped:1;
198};
199
200struct ltt_channel_ops {
201 struct channel *(*channel_create)(const char *name,
202 struct ltt_channel *ltt_chan,
203 void *buf_addr,
204 size_t subbuf_size, size_t num_subbuf,
205 unsigned int switch_timer_interval,
9f3fdbc6
MD
206 unsigned int read_timer_interval,
207 int *shmid);
8020ceb5
MD
208 void (*channel_destroy)(struct channel *chan);
209 struct lib_ring_buffer *(*buffer_read_open)(struct channel *chan);
210 void (*buffer_read_close)(struct lib_ring_buffer *buf);
211 int (*event_reserve)(struct lib_ring_buffer_ctx *ctx,
212 uint32_t event_id);
213 void (*event_commit)(struct lib_ring_buffer_ctx *ctx);
214 void (*event_write)(struct lib_ring_buffer_ctx *ctx, const void *src,
215 size_t len);
216 /*
217 * packet_avail_size returns the available size in the current
218 * packet. Note that the size returned is only a hint, since it
219 * may change due to concurrent writes.
220 */
221 size_t (*packet_avail_size)(struct channel *chan);
9f3fdbc6
MD
222 //wait_queue_head_t *(*get_reader_wait_queue)(struct channel *chan);
223 //wait_queue_head_t *(*get_hp_wait_queue)(struct channel *chan);
8020ceb5
MD
224 int (*is_finalized)(struct channel *chan);
225 int (*is_disabled)(struct channel *chan);
226};
227
228struct ltt_channel {
229 unsigned int id;
230 struct channel *chan; /* Channel buffers */
976fe9ea 231 int enabled;
8020ceb5
MD
232 struct lttng_ctx *ctx;
233 /* Event ID management */
234 struct ltt_session *session;
0a42beb6 235 int objd; /* Object associated to channel */
8020ceb5 236 unsigned int free_event_id; /* Next event ID to allocate */
9f3fdbc6 237 struct cds_list_head list; /* Channel list */
8020ceb5
MD
238 struct ltt_channel_ops *ops;
239 int header_type; /* 0: unset, 1: compact, 2: large */
431d5cf0 240 int shmfd; /* shared-memory file descriptor */
8020ceb5
MD
241 int metadata_dumped:1;
242};
243
244struct ltt_session {
245 int active; /* Is trace session active ? */
246 int been_active; /* Has trace session been active ? */
0a42beb6 247 int objd; /* Object associated to session */
8020ceb5 248 struct ltt_channel *metadata; /* Metadata channel */
9f3fdbc6
MD
249 struct cds_list_head chan; /* Channel list head */
250 struct cds_list_head events; /* Event list head */
251 struct cds_list_head list; /* Session list */
8020ceb5 252 unsigned int free_chan_id; /* Next chan ID to allocate */
9f3fdbc6 253 uuid_t uuid; /* Trace session unique ID */
8020ceb5
MD
254 int metadata_dumped:1;
255};
256
257struct ltt_transport {
258 char *name;
9f3fdbc6 259 struct cds_list_head node;
8020ceb5
MD
260 struct ltt_channel_ops ops;
261};
262
263struct ltt_session *ltt_session_create(void);
976fe9ea
MD
264int ltt_session_enable(struct ltt_session *session);
265int ltt_session_disable(struct ltt_session *session);
8020ceb5
MD
266void ltt_session_destroy(struct ltt_session *session);
267
268struct ltt_channel *ltt_channel_create(struct ltt_session *session,
269 const char *transport_name,
270 void *buf_addr,
271 size_t subbuf_size, size_t num_subbuf,
272 unsigned int switch_timer_interval,
0a42beb6 273 unsigned int read_timer_interval);
8020ceb5
MD
274struct ltt_channel *ltt_global_channel_create(struct ltt_session *session,
275 int overwrite, void *buf_addr,
276 size_t subbuf_size, size_t num_subbuf,
277 unsigned int switch_timer_interval,
278 unsigned int read_timer_interval);
279
280struct ltt_event *ltt_event_create(struct ltt_channel *chan,
9f3fdbc6 281 struct lttng_ust_event *event_param,
8020ceb5
MD
282 void *filter);
283
976fe9ea
MD
284int ltt_channel_enable(struct ltt_channel *channel);
285int ltt_channel_disable(struct ltt_channel *channel);
286int ltt_event_enable(struct ltt_event *event);
287int ltt_event_disable(struct ltt_event *event);
288
8020ceb5
MD
289void ltt_transport_register(struct ltt_transport *transport);
290void ltt_transport_unregister(struct ltt_transport *transport);
291
4b4de73e 292void synchronize_trace(void);
9f3fdbc6
MD
293//int ltt_debugfs_abi_init(void);
294//void ltt_debugfs_abi_exit(void);
8020ceb5
MD
295
296int ltt_probe_register(struct lttng_probe_desc *desc);
297void ltt_probe_unregister(struct lttng_probe_desc *desc);
298const struct lttng_event_desc *ltt_event_get(const char *name);
299void ltt_event_put(const struct lttng_event_desc *desc);
300int ltt_probes_init(void);
301void ltt_probes_exit(void);
302struct lttng_ctx_field *lttng_append_context(struct lttng_ctx **ctx);
303void lttng_remove_context_field(struct lttng_ctx **ctx,
304 struct lttng_ctx_field *field);
305void lttng_destroy_context(struct lttng_ctx *ctx);
9f3fdbc6
MD
306int lttng_add_vtid_to_ctx(struct lttng_ctx **ctx);
307
308//extern const struct file_operations lttng_tracepoint_list_fops;
8020ceb5 309
0a42beb6 310#endif /* _UST_LTTNG_EVENTS_H */
This page took 0.035695 seconds and 4 git commands to generate.