Fix: sessiond: list-triggers: don't return internal triggers
[lttng-tools.git] / include / lttng / trigger / trigger-internal.h
CommitLineData
a58c490f 1/*
ab5be9fa 2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
a58c490f 3 *
ab5be9fa 4 * SPDX-License-Identifier: LGPL-2.1-only
a58c490f 5 *
a58c490f
JG
6 */
7
8#ifndef LTTNG_TRIGGER_INTERNAL_H
9#define LTTNG_TRIGGER_INTERNAL_H
10
3da864a9 11#include <common/credentials.h>
a02903c0 12#include <common/dynamic-array.h>
a58c490f 13#include <common/macros.h>
3da864a9 14#include <common/optional.h>
588c4b0d 15#include <lttng/lttng.h>
9c374932 16#include <pthread.h>
a58c490f 17#include <stdbool.h>
9c374932 18#include <stdint.h>
72756a3f 19#include <sys/types.h>
f01d28b4 20#include <urcu/ref.h>
a58c490f 21
c0a66c84
JG
22struct lttng_payload;
23struct lttng_payload_view;
0f7c2963
JR
24struct mi_writer;
25struct mi_lttng_error_query_callbacks;
c0a66c84 26
a58c490f 27struct lttng_trigger {
f01d28b4
JR
28 /* Reference counting is only exposed to internal users. */
29 struct urcu_ref ref;
30
a58c490f
JG
31 struct lttng_condition *condition;
32 struct lttng_action *action;
242388e4 33 char *name;
64eafdf6
JR
34 /* For now only the uid portion of the credentials is used. */
35 struct lttng_credentials creds;
e6887944
JR
36 /*
37 * Internal use only.
38 * The unique token passed to the tracer to identify an event-rule
39 * notification.
40 */
41 LTTNG_OPTIONAL(uint64_t) tracer_token;
9c374932
JR
42
43 /*
44 * Is the trigger registered?
45 *
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.
48 *
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.
51 *
52 * Not considered for `is_equal`.
53 */
54 bool registered;
55
5682b2e6
JG
56 /*
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
60 * clients.
61 *
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.
65 *
66 * The hidden property is preserved by copies.
67 *
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.
70 */
71 bool is_hidden;
72
9c374932
JR
73 /*
74 * The lock is used to protect against concurrent trigger execution and
75 * trigger removal.
76 */
77 pthread_mutex_t lock;
a58c490f
JG
78};
79
a02903c0
JR
80struct lttng_triggers {
81 struct lttng_dynamic_pointer_array array;
82};
83
a58c490f 84struct lttng_trigger_comm {
64eafdf6
JR
85 /*
86 * Credentials, only the uid portion is used for now.
87 * Used as an override when desired by the root user.
88 */
89 uint64_t uid;
242388e4
JR
90 /*
91 * Length of the variable length payload (name, condition, and
92 * an action).
93 */
94 uint32_t length;
95 /* Includes '\0' terminator. */
96 uint32_t name_length;
97 /* A null-terminated name, a condition, and an action follow. */
a58c490f
JG
98 char payload[];
99} LTTNG_PACKED;
100
a02903c0
JR
101struct lttng_triggers_comm {
102 uint32_t count;
103 uint32_t length;
104 /* Count * lttng_trigger_comm structure */
105 char payload[];
106};
107
a58c490f 108LTTNG_HIDDEN
c0a66c84 109ssize_t lttng_trigger_create_from_payload(struct lttng_payload_view *view,
a58c490f
JG
110 struct lttng_trigger **trigger);
111
112LTTNG_HIDDEN
a02903c0 113int lttng_trigger_serialize(const struct lttng_trigger *trigger,
c0a66c84 114 struct lttng_payload *payload);
a58c490f
JG
115
116LTTNG_HIDDEN
b61776fb 117bool lttng_trigger_validate(const struct lttng_trigger *trigger);
a58c490f 118
242388e4
JR
119LTTNG_HIDDEN
120int lttng_trigger_assign_name(
121 struct lttng_trigger *dst, const struct lttng_trigger *src);
122
e6887944
JR
123LTTNG_HIDDEN
124void lttng_trigger_set_tracer_token(
125 struct lttng_trigger *trigger, uint64_t token);
126
127LTTNG_HIDDEN
128uint64_t lttng_trigger_get_tracer_token(const struct lttng_trigger *trigger);
129
242388e4
JR
130LTTNG_HIDDEN
131int lttng_trigger_generate_name(struct lttng_trigger *trigger,
132 uint64_t unique_id);
133
85c06c44
JR
134LTTNG_HIDDEN
135bool lttng_trigger_is_equal(
136 const struct lttng_trigger *a, const struct lttng_trigger *b);
137
5682b2e6
JG
138LTTNG_HIDDEN
139bool lttng_trigger_is_hidden(const struct lttng_trigger *trigger);
140
141LTTNG_HIDDEN
142void lttng_trigger_set_hidden(struct lttng_trigger *trigger);
143
f01d28b4
JR
144LTTNG_HIDDEN
145void lttng_trigger_get(struct lttng_trigger *trigger);
146
147LTTNG_HIDDEN
148void lttng_trigger_put(struct lttng_trigger *trigger);
149
0f7c2963
JR
150/*
151 * Serialize a trigger to a mi_writer.
152 * Return LTTNG_OK in success, other enum lttng_error_code on error.
153 */
154LTTNG_HIDDEN
155enum lttng_error_code lttng_trigger_mi_serialize(const struct lttng_trigger *trigger,
156 struct mi_writer *writer,
157 const struct mi_lttng_error_query_callbacks
158 *error_query_callbacks);
159
a02903c0
JR
160/*
161 * Allocate a new set of triggers.
162 * The returned object must be freed via lttng_triggers_destroy.
163 */
164LTTNG_HIDDEN
165struct lttng_triggers *lttng_triggers_create(void);
166
167/*
168 * Return the a pointer to a mutable element at index "index" of an
169 * lttng_triggers set.
170 *
171 * This differs from the public `lttng_triggers_get_at_index` in that
172 * the returned pointer to a mutable trigger.
173 *
174 * The ownership of the trigger set element is NOT transfered.
175 * The returned object can NOT be freed via lttng_trigger_destroy.
176 */
177LTTNG_HIDDEN
178struct lttng_trigger *lttng_triggers_borrow_mutable_at_index(
179 const struct lttng_triggers *triggers, unsigned int index);
180
181/*
182 * Add a trigger to the triggers set.
183 *
184 * A reference to the added trigger is acquired on behalf of the trigger set
185 * on success.
186 */
187LTTNG_HIDDEN
188int lttng_triggers_add(
189 struct lttng_triggers *triggers, struct lttng_trigger *trigger);
190
5682b2e6
JG
191/*
192 * Remove all triggers marked as hidden from the provided trigger set.
193 */
194LTTNG_HIDDEN
195int lttng_triggers_remove_hidden_triggers(struct lttng_triggers *triggers);
196
a02903c0
JR
197/*
198 * Serialize a trigger set to an lttng_payload object.
199 * Return LTTNG_OK on success, negative lttng error code on error.
200 */
201LTTNG_HIDDEN
202int lttng_triggers_serialize(const struct lttng_triggers *triggers,
203 struct lttng_payload *payload);
204
205LTTNG_HIDDEN
206ssize_t lttng_triggers_create_from_payload(struct lttng_payload_view *view,
207 struct lttng_triggers **triggers);
208
0f7c2963
JR
209/*
210 * Serialize a trigger set to a mi_writer.
211 * Return LTTNG_OK in success, other enum lttng_error_code on error.
212 */
213LTTNG_HIDDEN
214enum lttng_error_code lttng_triggers_mi_serialize(const struct lttng_triggers *triggers,
215 struct mi_writer *writer,
216 const struct mi_lttng_error_query_callbacks
217 *error_query_callbacks);
218
3da864a9
JR
219LTTNG_HIDDEN
220const struct lttng_credentials *lttng_trigger_get_credentials(
221 const struct lttng_trigger *trigger);
222
223LTTNG_HIDDEN
64eafdf6 224void lttng_trigger_set_credentials(struct lttng_trigger *trigger,
3da864a9
JR
225 const struct lttng_credentials *creds);
226
91c96f62
JR
227/*
228 * Return the type of any underlying domain restriction. If no particular
229 * requirement is present, returns LTTNG_DOMAIN_NONE.
230 */
231LTTNG_HIDDEN
232enum lttng_domain_type lttng_trigger_get_underlying_domain_type_restriction(
233 const struct lttng_trigger *trigger);
234
58daac01
JR
235/*
236 * Generate any bytecode related to the trigger.
237 * On success LTTNG_OK. On error, returns lttng_error code.
238 */
239LTTNG_HIDDEN
240enum lttng_error_code lttng_trigger_generate_bytecode(
241 struct lttng_trigger *trigger,
242 const struct lttng_credentials *creds);
243
94dbd8e4
JG
244/*
245 * Note that the trigger object is not locked by "copy" as it is const and
246 * used with a number of 'const' triggers. If the trigger could be shared at
247 * the moment of the copy, it is the caller's responsability to lock it for
248 * the duration of the copy.
249 */
b61776fb
SM
250LTTNG_HIDDEN
251struct lttng_trigger *lttng_trigger_copy(const struct lttng_trigger *trigger);
252
c738df17
FD
253/*
254 * A given trigger needs a tracer notifier if
255 * it has an event-rule condition,
256 * AND
257 * it has one or more sessiond-execution action.
258 */
259LTTNG_HIDDEN
260bool lttng_trigger_needs_tracer_notifier(const struct lttng_trigger *trigger);
261
9c374932
JR
262LTTNG_HIDDEN
263void lttng_trigger_set_as_registered(struct lttng_trigger *trigger);
264
265LTTNG_HIDDEN
266void lttng_trigger_set_as_unregistered(struct lttng_trigger *trigger);
267
268/*
269 * The trigger must be locked before calling lttng_trigger_is_registered.
270 *
271 * The lock is necessary since a trigger can be unregistered at any time.
272 *
273 * Manipulations requiring that the trigger be registered must always acquire
274 * the trigger lock for the duration of the manipulation using
275 * `lttng_trigger_lock` and `lttng_trigger_unlock`.
276 */
277LTTNG_HIDDEN
278bool lttng_trigger_is_registered(struct lttng_trigger *trigger);
279
280LTTNG_HIDDEN
281void lttng_trigger_lock(struct lttng_trigger *trigger);
282
283LTTNG_HIDDEN
284void lttng_trigger_unlock(struct lttng_trigger *trigger);
285
588c4b0d
JG
286LTTNG_HIDDEN
287enum lttng_trigger_status lttng_trigger_add_error_results(
288 const struct lttng_trigger *trigger,
289 struct lttng_error_query_results *results);
290
8ce7c93a
JG
291LTTNG_HIDDEN
292enum lttng_trigger_status lttng_trigger_condition_add_error_results(
293 const struct lttng_trigger *trigger,
294 struct lttng_error_query_results *results);
295
588c4b0d
JG
296LTTNG_HIDDEN
297enum lttng_trigger_status lttng_trigger_add_action_error_query_results(
298 struct lttng_trigger *trigger,
299 struct lttng_error_query_results *results);
300
a5c2d2a7
JG
301/*
302 * Set the trigger name.
303 *
304 * A name is optional.
305 * A name will be assigned on trigger registration if no name is set.
306 *
307 * The name is copied.
308 *
309 * Return LTTNG_TRIGGER_STATUS_OK on success, LTTNG_TRIGGER_STATUS_INVALID
310 * if invalid parameters are passed.
311 */
312LTTNG_HIDDEN
313enum lttng_trigger_status lttng_trigger_set_name(
314 struct lttng_trigger *trigger, const char *name);
315
a58c490f 316#endif /* LTTNG_TRIGGER_INTERNAL_H */
This page took 0.05905 seconds and 5 git commands to generate.