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