2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
8 #ifndef LTTNG_TRIGGER_INTERNAL_H
9 #define LTTNG_TRIGGER_INTERNAL_H
11 #include <common/credentials.h>
12 #include <common/dynamic-array.h>
13 #include <common/macros.h>
14 #include <common/optional.h>
15 #include <lttng/lttng.h>
19 #include <sys/types.h>
23 struct lttng_payload_view
;
25 struct mi_lttng_error_query_callbacks
;
27 struct lttng_trigger
{
28 /* Reference counting is only exposed to internal users. */
31 struct lttng_condition
*condition
;
32 struct lttng_action
*action
;
34 /* For now only the uid portion of the credentials is used. */
35 struct lttng_credentials creds
;
38 * The unique token passed to the tracer to identify an event-rule
41 LTTNG_OPTIONAL(uint64_t) tracer_token
;
44 * Is the trigger registered?
46 * This is necessary since a reference holder might be interested in the
47 * overall state of the trigger from the point of view of its owner.
49 * The main user is the action executor since we want to prevent the
50 * execution of actions related to a trigger that is unregistered.
52 * Not considered for `is_equal`.
57 * A "hidden" trigger is a trigger that is not externally listed.
58 * It is used to hide triggers that are used internally by the session
59 * daemon so that they can't be listed nor unregistered by external
62 * This is a property that can only be set internally by the session
63 * daemon. As such, it is not serialized nor set by a
64 * "create_from_buffer" constructor.
66 * The hidden property is preserved by copies.
68 * Note that notifications originating from an "hidden" trigger will not
69 * be sent to clients that are not within the session daemon's process.
74 * The lock is used to protect against concurrent trigger execution and
80 struct lttng_triggers
{
81 struct lttng_dynamic_pointer_array array
;
84 struct lttng_trigger_comm
{
86 * Credentials, only the uid portion is used for now.
87 * Used as an override when desired by the root user.
91 * Length of the variable length payload (name, condition, and
95 /* Includes '\0' terminator. */
97 /* A null-terminated name, a condition, and an action follow. */
101 struct lttng_triggers_comm
{
104 /* Count * lttng_trigger_comm structure */
108 ssize_t
lttng_trigger_create_from_payload(struct lttng_payload_view
*view
,
109 struct lttng_trigger
**trigger
);
111 int lttng_trigger_serialize(const struct lttng_trigger
*trigger
,
112 struct lttng_payload
*payload
);
114 bool lttng_trigger_validate(const struct lttng_trigger
*trigger
);
116 int lttng_trigger_assign_name(
117 struct lttng_trigger
*dst
, const struct lttng_trigger
*src
);
119 void lttng_trigger_set_tracer_token(
120 struct lttng_trigger
*trigger
, uint64_t token
);
122 uint64_t lttng_trigger_get_tracer_token(const struct lttng_trigger
*trigger
);
124 int lttng_trigger_generate_name(struct lttng_trigger
*trigger
,
127 bool lttng_trigger_is_equal(
128 const struct lttng_trigger
*a
, const struct lttng_trigger
*b
);
130 bool lttng_trigger_is_hidden(const struct lttng_trigger
*trigger
);
132 void lttng_trigger_set_hidden(struct lttng_trigger
*trigger
);
134 void lttng_trigger_get(struct lttng_trigger
*trigger
);
136 void lttng_trigger_put(struct lttng_trigger
*trigger
);
139 * Serialize a trigger to a mi_writer.
140 * Return LTTNG_OK in success, other enum lttng_error_code on error.
142 enum lttng_error_code
lttng_trigger_mi_serialize(const struct lttng_trigger
*trigger
,
143 struct mi_writer
*writer
,
144 const struct mi_lttng_error_query_callbacks
145 *error_query_callbacks
);
148 * Allocate a new set of triggers.
149 * The returned object must be freed via lttng_triggers_destroy.
151 struct lttng_triggers
*lttng_triggers_create(void);
154 * Return the a pointer to a mutable element at index "index" of an
155 * lttng_triggers set.
157 * This differs from the public `lttng_triggers_get_at_index` in that
158 * the returned pointer to a mutable trigger.
160 * The ownership of the trigger set element is NOT transfered.
161 * The returned object can NOT be freed via lttng_trigger_destroy.
163 struct lttng_trigger
*lttng_triggers_borrow_mutable_at_index(
164 const struct lttng_triggers
*triggers
, unsigned int index
);
167 * Add a trigger to the triggers set.
169 * A reference to the added trigger is acquired on behalf of the trigger set
172 int lttng_triggers_add(
173 struct lttng_triggers
*triggers
, struct lttng_trigger
*trigger
);
176 * Remove all triggers marked as hidden from the provided trigger set.
178 int lttng_triggers_remove_hidden_triggers(struct lttng_triggers
*triggers
);
181 * Serialize a trigger set to an lttng_payload object.
182 * Return LTTNG_OK on success, negative lttng error code on error.
184 int lttng_triggers_serialize(const struct lttng_triggers
*triggers
,
185 struct lttng_payload
*payload
);
187 ssize_t
lttng_triggers_create_from_payload(struct lttng_payload_view
*view
,
188 struct lttng_triggers
**triggers
);
191 * Serialize a trigger set to a mi_writer.
192 * Return LTTNG_OK in success, other enum lttng_error_code on error.
194 enum lttng_error_code
lttng_triggers_mi_serialize(const struct lttng_triggers
*triggers
,
195 struct mi_writer
*writer
,
196 const struct mi_lttng_error_query_callbacks
197 *error_query_callbacks
);
199 const struct lttng_credentials
*lttng_trigger_get_credentials(
200 const struct lttng_trigger
*trigger
);
202 void lttng_trigger_set_credentials(struct lttng_trigger
*trigger
,
203 const struct lttng_credentials
*creds
);
206 * Return the type of any underlying domain restriction. If no particular
207 * requirement is present, returns LTTNG_DOMAIN_NONE.
209 enum lttng_domain_type
lttng_trigger_get_underlying_domain_type_restriction(
210 const struct lttng_trigger
*trigger
);
213 * Generate any bytecode related to the trigger.
214 * On success LTTNG_OK. On error, returns lttng_error code.
216 enum lttng_error_code
lttng_trigger_generate_bytecode(
217 struct lttng_trigger
*trigger
,
218 const struct lttng_credentials
*creds
);
221 * Note that the trigger object is not locked by "copy" as it is const and
222 * used with a number of 'const' triggers. If the trigger could be shared at
223 * the moment of the copy, it is the caller's responsability to lock it for
224 * the duration of the copy.
226 struct lttng_trigger
*lttng_trigger_copy(const struct lttng_trigger
*trigger
);
229 * A given trigger needs a tracer notifier if
230 * it has an event-rule condition,
232 * it has one or more sessiond-execution action.
234 bool lttng_trigger_needs_tracer_notifier(const struct lttng_trigger
*trigger
);
236 void lttng_trigger_set_as_registered(struct lttng_trigger
*trigger
);
238 void lttng_trigger_set_as_unregistered(struct lttng_trigger
*trigger
);
241 * The trigger must be locked before calling lttng_trigger_is_registered.
243 * The lock is necessary since a trigger can be unregistered at any time.
245 * Manipulations requiring that the trigger be registered must always acquire
246 * the trigger lock for the duration of the manipulation using
247 * `lttng_trigger_lock` and `lttng_trigger_unlock`.
249 bool lttng_trigger_is_registered(struct lttng_trigger
*trigger
);
251 void lttng_trigger_lock(struct lttng_trigger
*trigger
);
253 void lttng_trigger_unlock(struct lttng_trigger
*trigger
);
255 enum lttng_trigger_status
lttng_trigger_add_error_results(
256 const struct lttng_trigger
*trigger
,
257 struct lttng_error_query_results
*results
);
259 enum lttng_trigger_status
lttng_trigger_condition_add_error_results(
260 const struct lttng_trigger
*trigger
,
261 struct lttng_error_query_results
*results
);
263 enum lttng_trigger_status
lttng_trigger_add_action_error_query_results(
264 struct lttng_trigger
*trigger
,
265 struct lttng_error_query_results
*results
);
268 * Set the trigger name.
270 * A name is optional.
271 * A name will be assigned on trigger registration if no name is set.
273 * The name is copied.
275 * Return LTTNG_TRIGGER_STATUS_OK on success, LTTNG_TRIGGER_STATUS_INVALID
276 * if invalid parameters are passed.
278 enum lttng_trigger_status
lttng_trigger_set_name(
279 struct lttng_trigger
*trigger
, const char *name
);
281 #endif /* LTTNG_TRIGGER_INTERNAL_H */