SoW-2019-0007-2: Dynamic Snapshot: Triggers send partial event payload with notifications
[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
11#include <lttng/trigger/trigger.h>
12#include <common/macros.h>
13#include <common/buffer-view.h>
3647288f 14#include <common/dynamic-buffer.h>
5024c2ac
JR
15#include <common/dynamic-array.h>
16#include <common/credentials.h>
a58c490f
JG
17#include <stdint.h>
18#include <stdbool.h>
72756a3f 19#include <sys/types.h>
5024c2ac 20#include <urcu/ref.h>
a58c490f
JG
21
22struct lttng_trigger {
5024c2ac
JR
23 struct urcu_ref ref; /* internal use only */
24 bool owns_internal_objects; /* internal use only */
25
a58c490f
JG
26 struct lttng_condition *condition;
27 struct lttng_action *action;
5024c2ac
JR
28 char *name;
29 struct { /* Internal use only */
30 bool set;
31 uint64_t value;
32 } key;
33 struct { /* internal use only */
34 struct lttng_credentials credentials;
35 bool set;
36 } creds;
37 struct {
38 enum lttng_trigger_firing_policy_type type;
39 uint64_t threshold;
40 uint64_t current_count;
41 } firing_policy;
42
43 /* This ordered set is used to hold the capture bytecodoes and their
44 * expression. lttng_action_capture_bytecode_element.
45 * We could only have bytecodes here... the expression are a left over
46 * from the generation process of the set. They are used for comparison
47 * during the gathering process. They are refcounted (TODO) and are the same
48 * object that are present un the underlying action object/s
49 */
50 struct lttng_dynamic_pointer_array capture_bytecode_set;
51};
52
53struct lttng_triggers {
54 struct lttng_dynamic_pointer_array array;
a58c490f
JG
55};
56
57struct lttng_trigger_comm {
58 /* length excludes its own length. */
5024c2ac 59 uint32_t name_length /* Includes '\0' */;
a58c490f 60 uint32_t length;
5024c2ac
JR
61 uint8_t policy_type;
62 uint64_t policy_threshold;
63 /* A name, condition and action object follow. */
a58c490f
JG
64 char payload[];
65} LTTNG_PACKED;
66
5024c2ac
JR
67struct lttng_triggers_comm {
68 uint32_t count;
69 uint32_t length;
70 /* Count * lttng_trigger_comm structure */
71 char payload[];
72};
73
a58c490f
JG
74LTTNG_HIDDEN
75ssize_t lttng_trigger_create_from_buffer(const struct lttng_buffer_view *view,
76 struct lttng_trigger **trigger);
77
78LTTNG_HIDDEN
5024c2ac
JR
79int lttng_trigger_serialize(const struct lttng_trigger *trigger,
80 struct lttng_dynamic_buffer *buf,
81 int *fd_to_send);
82
83LTTNG_HIDDEN
84bool lttng_trigger_validate(const struct lttng_trigger *trigger);
85
86LTTNG_HIDDEN
87int lttng_trigger_assign(struct lttng_trigger *dst,
88 const struct lttng_trigger *src);
89
90LTTNG_HIDDEN
91void lttng_trigger_set_key(struct lttng_trigger *trigger, uint64_t key);
92
93LTTNG_HIDDEN
94uint64_t lttng_trigger_get_key(const struct lttng_trigger *trigger);
95
96LTTNG_HIDDEN
97int lttng_trigger_generate_name(struct lttng_trigger *trigger, uint64_t offset);
98
99LTTNG_HIDDEN
100bool lttng_trigger_is_equal(const struct lttng_trigger *a,
101 const struct lttng_trigger *b);
102
103LTTNG_HIDDEN
104void lttng_trigger_get(struct lttng_trigger *trigger);
105
106LTTNG_HIDDEN
107void lttng_trigger_put(struct lttng_trigger *trigger);
108
109/*
110 * Allocate a new list of lttng_trigger.
111 * The returned object must be freed via lttng_triggers_destroy.
112 */
113LTTNG_HIDDEN
114struct lttng_triggers *lttng_triggers_create(void);
115
116/*
117 * Return the non-const pointer of an element at index "index" of a
118 * lttng_triggers.
119 *
120 * The ownership of the lttng_triggers element is NOT transfered.
121 * The returned object can NOT be freed via lttng_trigger_destroy.
122 */
123LTTNG_HIDDEN
124struct lttng_trigger *lttng_triggers_get_pointer_of_index(
125 const struct lttng_triggers *triggers, unsigned int index);
126
127/*
128 * TODO:
129 */
130LTTNG_HIDDEN
131int lttng_triggers_add(
132 struct lttng_triggers *triggers, struct lttng_trigger *trigger);
133
134/*
135 * Serialize a trigger collection to a lttng_dynamic_buffer.
136 * Return LTTNG_OK on success, negative lttng error code on error.
137 */
138LTTNG_HIDDEN
139int lttng_triggers_serialize(const struct lttng_triggers *triggers,
140 struct lttng_dynamic_buffer *buffer);
141
142LTTNG_HIDDEN
143ssize_t lttng_triggers_create_from_buffer(const struct lttng_buffer_view *view,
144 struct lttng_triggers **triggers);
145
146LTTNG_HIDDEN
147const struct lttng_credentials *lttng_trigger_get_credentials(
148 const struct lttng_trigger *trigger);
a58c490f 149
9b63a4aa 150LTTNG_HIDDEN
5024c2ac
JR
151void lttng_trigger_set_credentials(
152 struct lttng_trigger *trigger, uid_t uid, gid_t git);
153
154LTTNG_HIDDEN
155bool lttng_trigger_is_ready_to_fire(
156 struct lttng_trigger *trigger);
157
158/*
159 * Return the type of any uderlying domain requirement. If no particular
160 * requirement is needed return LTTNG_DOMAIN_NONE.
161 */
162LTTNG_HIDDEN
163enum lttng_domain_type lttng_trigger_get_underlying_domain_type_restriction(
9b63a4aa
JG
164 const struct lttng_trigger *trigger);
165
166LTTNG_HIDDEN
5024c2ac 167unsigned int lttng_trigger_get_capture_bytecode_count(
9b63a4aa
JG
168 const struct lttng_trigger *trigger);
169
a58c490f 170LTTNG_HIDDEN
5024c2ac
JR
171const struct lttng_bytecode *
172lttng_trigger_get_capture_bytecode_at_index(
173 const struct lttng_trigger *trigger, unsigned int index);
a58c490f
JG
174
175#endif /* LTTNG_TRIGGER_INTERNAL_H */
This page took 0.046244 seconds and 5 git commands to generate.