Generate bytecodes related to the trigger on reception
[lttng-tools.git] / include / lttng / trigger / trigger-internal.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8#ifndef LTTNG_TRIGGER_INTERNAL_H
9#define LTTNG_TRIGGER_INTERNAL_H
10
11#include <lttng/trigger/trigger.h>
12#include <common/credentials.h>
13#include <common/dynamic-array.h>
14#include <common/macros.h>
15#include <common/optional.h>
16#include <stdint.h>
17#include <stdbool.h>
18#include <sys/types.h>
19#include <urcu/ref.h>
20
21struct lttng_payload;
22struct lttng_payload_view;
23
24struct lttng_trigger {
25 /* Reference counting is only exposed to internal users. */
26 struct urcu_ref ref;
27
28 struct lttng_condition *condition;
29 struct lttng_action *action;
30 char *name;
31 /* For now only the uid portion of the credentials is used. */
32 struct lttng_credentials creds;
33 struct {
34 enum lttng_trigger_firing_policy type;
35 uint64_t threshold;
36 uint64_t current_count;
37 } firing_policy;
38 /*
39 * Internal use only.
40 * The unique token passed to the tracer to identify an event-rule
41 * notification.
42 */
43 LTTNG_OPTIONAL(uint64_t) tracer_token;
44};
45
46struct lttng_triggers {
47 struct lttng_dynamic_pointer_array array;
48};
49
50struct lttng_trigger_comm {
51 /*
52 * Credentials, only the uid portion is used for now.
53 * Used as an override when desired by the root user.
54 */
55 uint64_t uid;
56 /*
57 * Length of the variable length payload (name, condition, and
58 * an action).
59 */
60 uint32_t length;
61 /* Includes '\0' terminator. */
62 uint32_t name_length;
63 /* Firing policy. */
64 /* Maps to enum lttng_trigger_firing_policy. */
65 uint8_t firing_policy_type;
66 uint64_t firing_policy_threshold;
67 /* A null-terminated name, a condition, and an action follow. */
68 char payload[];
69} LTTNG_PACKED;
70
71struct lttng_triggers_comm {
72 uint32_t count;
73 uint32_t length;
74 /* Count * lttng_trigger_comm structure */
75 char payload[];
76};
77
78LTTNG_HIDDEN
79ssize_t lttng_trigger_create_from_payload(struct lttng_payload_view *view,
80 struct lttng_trigger **trigger);
81
82LTTNG_HIDDEN
83int lttng_trigger_serialize(const struct lttng_trigger *trigger,
84 struct lttng_payload *payload);
85
86LTTNG_HIDDEN
87const struct lttng_condition *lttng_trigger_get_const_condition(
88 const struct lttng_trigger *trigger);
89
90LTTNG_HIDDEN
91const struct lttng_action *lttng_trigger_get_const_action(
92 const struct lttng_trigger *trigger);
93
94LTTNG_HIDDEN
95bool lttng_trigger_validate(struct lttng_trigger *trigger);
96
97LTTNG_HIDDEN
98int lttng_trigger_assign_name(
99 struct lttng_trigger *dst, const struct lttng_trigger *src);
100
101LTTNG_HIDDEN
102void lttng_trigger_set_tracer_token(
103 struct lttng_trigger *trigger, uint64_t token);
104
105LTTNG_HIDDEN
106uint64_t lttng_trigger_get_tracer_token(const struct lttng_trigger *trigger);
107
108LTTNG_HIDDEN
109int lttng_trigger_generate_name(struct lttng_trigger *trigger,
110 uint64_t unique_id);
111
112LTTNG_HIDDEN
113bool lttng_trigger_is_equal(
114 const struct lttng_trigger *a, const struct lttng_trigger *b);
115
116LTTNG_HIDDEN
117void lttng_trigger_get(struct lttng_trigger *trigger);
118
119LTTNG_HIDDEN
120void lttng_trigger_put(struct lttng_trigger *trigger);
121
122/*
123 * Allocate a new set of triggers.
124 * The returned object must be freed via lttng_triggers_destroy.
125 */
126LTTNG_HIDDEN
127struct lttng_triggers *lttng_triggers_create(void);
128
129/*
130 * Return the a pointer to a mutable element at index "index" of an
131 * lttng_triggers set.
132 *
133 * This differs from the public `lttng_triggers_get_at_index` in that
134 * the returned pointer to a mutable trigger.
135 *
136 * The ownership of the trigger set element is NOT transfered.
137 * The returned object can NOT be freed via lttng_trigger_destroy.
138 */
139LTTNG_HIDDEN
140struct lttng_trigger *lttng_triggers_borrow_mutable_at_index(
141 const struct lttng_triggers *triggers, unsigned int index);
142
143/*
144 * Add a trigger to the triggers set.
145 *
146 * A reference to the added trigger is acquired on behalf of the trigger set
147 * on success.
148 */
149LTTNG_HIDDEN
150int lttng_triggers_add(
151 struct lttng_triggers *triggers, struct lttng_trigger *trigger);
152
153/*
154 * Serialize a trigger set to an lttng_payload object.
155 * Return LTTNG_OK on success, negative lttng error code on error.
156 */
157LTTNG_HIDDEN
158int lttng_triggers_serialize(const struct lttng_triggers *triggers,
159 struct lttng_payload *payload);
160
161LTTNG_HIDDEN
162ssize_t lttng_triggers_create_from_payload(struct lttng_payload_view *view,
163 struct lttng_triggers **triggers);
164
165LTTNG_HIDDEN
166const struct lttng_credentials *lttng_trigger_get_credentials(
167 const struct lttng_trigger *trigger);
168
169LTTNG_HIDDEN
170void lttng_trigger_set_credentials(struct lttng_trigger *trigger,
171 const struct lttng_credentials *creds);
172
173
174/*
175 * Fire the trigger.
176 * Increments the occurrence count.
177 */
178LTTNG_HIDDEN
179void lttng_trigger_fire(struct lttng_trigger *trigger);
180
181/*
182 * Check if the trigger would fire.
183 */
184LTTNG_HIDDEN
185bool lttng_trigger_should_fire(const struct lttng_trigger *trigger);
186
187/*
188 * Return the type of any underlying domain restriction. If no particular
189 * requirement is present, returns LTTNG_DOMAIN_NONE.
190 */
191LTTNG_HIDDEN
192enum lttng_domain_type lttng_trigger_get_underlying_domain_type_restriction(
193 const struct lttng_trigger *trigger);
194
195/*
196 * Generate any bytecode related to the trigger.
197 * On success LTTNG_OK. On error, returns lttng_error code.
198 */
199LTTNG_HIDDEN
200enum lttng_error_code lttng_trigger_generate_bytecode(
201 struct lttng_trigger *trigger,
202 const struct lttng_credentials *creds);
203
204#endif /* LTTNG_TRIGGER_INTERNAL_H */
This page took 0.022924 seconds and 4 git commands to generate.