1 #ifndef _LTTNG_UST_EVENTS_INTERNAL_H
2 #define _LTTNG_UST_EVENTS_INTERNAL_H
5 * ust-events-internal.h
7 * Copyright 2019 (c) - Francis Deslauriers <francis.deslauriers@efficios.com>
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 #include <urcu/list.h>
31 #include <urcu/hlist.h>
34 #include <lttng/ust-events.h>
36 struct lttng_event_enabler
{
37 struct lttng_enabler base
;
38 struct cds_list_head node
; /* per-session list of enablers */
39 struct lttng_channel
*chan
;
41 * Unused, but kept around to make it explicit that the tracer can do
44 struct lttng_ctx
*ctx
;
47 struct lttng_event_notifier_enabler
{
48 struct lttng_enabler base
;
49 uint64_t error_counter_index
;
50 struct cds_list_head node
; /* per-app list of event_notifier enablers */
51 struct cds_list_head capture_bytecode_head
;
52 struct lttng_event_notifier_group
*group
; /* weak ref */
53 uint64_t user_token
; /* User-provided token */
54 uint64_t num_captures
;
57 enum lttng_ust_bytecode_node_type
{
58 LTTNG_UST_BYTECODE_NODE_TYPE_FILTER
,
59 LTTNG_UST_BYTECODE_NODE_TYPE_CAPTURE
,
62 struct lttng_ust_bytecode_node
{
63 enum lttng_ust_bytecode_node_type type
;
64 struct cds_list_head node
;
65 struct lttng_enabler
*enabler
;
68 uint32_t reloc_offset
;
74 struct lttng_ust_excluder_node
{
75 struct cds_list_head node
;
76 struct lttng_enabler
*enabler
;
78 * struct lttng_ust_event_exclusion had variable sized array,
81 struct lttng_ust_event_exclusion excluder
;
85 struct lttng_enabler
*lttng_event_enabler_as_enabler(
86 struct lttng_event_enabler
*event_enabler
)
88 return &event_enabler
->base
;
92 struct lttng_enabler
*lttng_event_notifier_enabler_as_enabler(
93 struct lttng_event_notifier_enabler
*event_notifier_enabler
)
95 return &event_notifier_enabler
->base
;
99 * Allocate and initialize a `struct lttng_event_enabler` object.
101 * On success, returns a `struct lttng_event_enabler`,
102 * On memory error, returns NULL.
105 struct lttng_event_enabler
*lttng_event_enabler_create(
106 enum lttng_enabler_format_type format_type
,
107 struct lttng_ust_event
*event_param
,
108 struct lttng_channel
*chan
);
111 * Destroy a `struct lttng_event_enabler` object.
114 void lttng_event_enabler_destroy(struct lttng_event_enabler
*enabler
);
117 * Enable a `struct lttng_event_enabler` object and all events related to this
121 int lttng_event_enabler_enable(struct lttng_event_enabler
*enabler
);
124 * Disable a `struct lttng_event_enabler` object and all events related to this
128 int lttng_event_enabler_disable(struct lttng_event_enabler
*enabler
);
131 * Attach filter bytecode program to `struct lttng_event_enabler` and all
132 * events related to this enabler.
135 int lttng_event_enabler_attach_filter_bytecode(
136 struct lttng_event_enabler
*enabler
,
137 struct lttng_ust_bytecode_node
*bytecode
);
140 * Attach an application context to an event enabler.
145 int lttng_event_enabler_attach_context(struct lttng_event_enabler
*enabler
,
146 struct lttng_ust_context
*ctx
);
149 * Attach exclusion list to `struct lttng_event_enabler` and all
150 * events related to this enabler.
153 int lttng_event_enabler_attach_exclusion(struct lttng_event_enabler
*enabler
,
154 struct lttng_ust_excluder_node
*excluder
);
157 * Synchronize bytecodes for the enabler and the instance (event or
160 * This function goes over all bytecode programs of the enabler (event or
161 * event_notifier enabler) to ensure each is linked to the provided instance.
164 void lttng_enabler_link_bytecode(const struct lttng_event_desc
*event_desc
,
165 struct lttng_ctx
**ctx
,
166 struct cds_list_head
*instance_bytecode_runtime_head
,
167 struct cds_list_head
*enabler_bytecode_runtime_head
);
170 * Allocate and initialize a `struct lttng_event_notifier_group` object.
172 * On success, returns a `struct lttng_triggre_group`,
173 * on memory error, returns NULL.
176 struct lttng_event_notifier_group
*lttng_event_notifier_group_create(void);
179 * Destroy a `struct lttng_event_notifier_group` object.
182 void lttng_event_notifier_group_destroy(
183 struct lttng_event_notifier_group
*event_notifier_group
);
186 * Allocate and initialize a `struct lttng_event_notifier_enabler` object.
188 * On success, returns a `struct lttng_event_notifier_enabler`,
189 * On memory error, returns NULL.
192 struct lttng_event_notifier_enabler
*lttng_event_notifier_enabler_create(
193 struct lttng_event_notifier_group
*event_notifier_group
,
194 enum lttng_enabler_format_type format_type
,
195 struct lttng_ust_event_notifier
*event_notifier_param
);
198 * Destroy a `struct lttng_event_notifier_enabler` object.
201 void lttng_event_notifier_enabler_destroy(
202 struct lttng_event_notifier_enabler
*event_notifier_enabler
);
205 * Enable a `struct lttng_event_notifier_enabler` object and all event
206 * notifiers related to this enabler.
209 int lttng_event_notifier_enabler_enable(
210 struct lttng_event_notifier_enabler
*event_notifier_enabler
);
213 * Disable a `struct lttng_event_notifier_enabler` object and all event
214 * notifiers related to this enabler.
217 int lttng_event_notifier_enabler_disable(
218 struct lttng_event_notifier_enabler
*event_notifier_enabler
);
221 * Attach filter bytecode program to `struct lttng_event_notifier_enabler` and
222 * all event notifiers related to this enabler.
225 int lttng_event_notifier_enabler_attach_filter_bytecode(
226 struct lttng_event_notifier_enabler
*event_notifier_enabler
,
227 struct lttng_ust_bytecode_node
*bytecode
);
230 * Attach capture bytecode program to `struct lttng_event_notifier_enabler` and
231 * all event_notifiers related to this enabler.
234 int lttng_event_notifier_enabler_attach_capture_bytecode(
235 struct lttng_event_notifier_enabler
*event_notifier_enabler
,
236 struct lttng_ust_bytecode_node
*bytecode
);
239 * Attach exclusion list to `struct lttng_event_notifier_enabler` and all
240 * event notifiers related to this enabler.
243 int lttng_event_notifier_enabler_attach_exclusion(
244 struct lttng_event_notifier_enabler
*event_notifier_enabler
,
245 struct lttng_ust_excluder_node
*excluder
);
248 void lttng_free_event_notifier_filter_runtime(
249 struct lttng_event_notifier
*event_notifier
);
252 * Connect the probe on all enablers matching this event description.
253 * Called on library load.
256 int lttng_fix_pending_event_notifiers(void);
258 #endif /* _LTTNG_UST_EVENTS_INTERNAL_H */