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