Commit | Line | Data |
---|---|---|
97ee3a89 DG |
1 | /* |
2 | * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca> | |
bdf64013 | 3 | * Copyright (C) 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com> |
97ee3a89 | 4 | * |
d14d33bf AM |
5 | * This program is free software; you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License, version 2 only, | |
7 | * as published by the Free Software Foundation. | |
97ee3a89 DG |
8 | * |
9 | * This program is distributed in the hope that it will be useful, | |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | * GNU General Public License for more details. | |
13 | * | |
d14d33bf AM |
14 | * You should have received a copy of the GNU General Public License along |
15 | * with this program; if not, write to the Free Software Foundation, Inc., | |
16 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
97ee3a89 DG |
17 | */ |
18 | ||
19 | #ifndef _LTT_TRACE_UST_H | |
20 | #define _LTT_TRACE_UST_H | |
21 | ||
22 | #include <limits.h> | |
23 | #include <urcu/list.h> | |
bec39940 | 24 | |
97ee3a89 | 25 | #include <lttng/lttng.h> |
10a8a223 | 26 | #include <common/hashtable/hashtable.h> |
ce2a9e76 | 27 | #include <common/defaults.h> |
3bd1e081 | 28 | |
00e2e675 | 29 | #include "consumer.h" |
48842b30 | 30 | #include "ust-ctl.h" |
97ee3a89 | 31 | |
7c1d2758 JG |
32 | struct agent; |
33 | ||
18eace3b DG |
34 | struct ltt_ust_ht_key { |
35 | const char *name; | |
36 | const struct lttng_filter_bytecode *filter; | |
2106efa0 | 37 | enum lttng_ust_loglevel_type loglevel_type; |
b953b8cd | 38 | int loglevel_value; |
7724731b | 39 | const struct lttng_event_exclusion *exclusion; |
18eace3b DG |
40 | }; |
41 | ||
f6a9efaa DG |
42 | /* Context hash table nodes */ |
43 | struct ltt_ust_context { | |
bdf64013 | 44 | struct lttng_ust_context_attr ctx; |
bec39940 | 45 | struct lttng_ht_node_ulong node; |
31746f93 | 46 | struct cds_list_head list; |
97ee3a89 DG |
47 | }; |
48 | ||
49 | /* UST event */ | |
50 | struct ltt_ust_event { | |
37357452 | 51 | unsigned int enabled; |
f6a9efaa | 52 | struct lttng_ust_event attr; |
bec39940 | 53 | struct lttng_ht_node_str node; |
6b453b5e | 54 | char *filter_expression; |
51755dc8 | 55 | struct lttng_filter_bytecode *filter; |
40024f8a | 56 | struct lttng_event_exclusion *exclusion; |
5b37cc51 JG |
57 | /* |
58 | * An internal event is an event which was created by the session daemon | |
59 | * through which, for example, events emitted in Agent domains are | |
60 | * "funelled". This is used to hide internal events from external | |
61 | * clients as they should never be modified by the external world. | |
62 | */ | |
88f06f15 | 63 | bool internal; |
2bdd86d4 MD |
64 | }; |
65 | ||
97ee3a89 DG |
66 | /* UST channel */ |
67 | struct ltt_ust_channel { | |
7972aab2 | 68 | uint64_t id; /* unique id per session. */ |
37357452 | 69 | unsigned int enabled; |
51755dc8 JG |
70 | /* |
71 | * A UST channel can be part of a userspace sub-domain such as JUL, | |
72 | * Log4j, Python. | |
73 | */ | |
74 | enum lttng_domain_type domain; | |
44d3bd01 | 75 | char name[LTTNG_UST_SYM_NAME_LEN]; |
ffe60014 | 76 | struct lttng_ust_channel_attr attr; |
bec39940 | 77 | struct lttng_ht *ctx; |
31746f93 | 78 | struct cds_list_head ctx_list; |
bec39940 DG |
79 | struct lttng_ht *events; |
80 | struct lttng_ht_node_str node; | |
1624d5b7 JD |
81 | uint64_t tracefile_size; |
82 | uint64_t tracefile_count; | |
fb83fe64 JD |
83 | uint64_t per_pid_closed_app_discarded; |
84 | uint64_t per_pid_closed_app_lost; | |
e9404c27 | 85 | uint64_t monitor_timer_interval; |
97ee3a89 DG |
86 | }; |
87 | ||
f6a9efaa DG |
88 | /* UST domain global (LTTNG_DOMAIN_UST) */ |
89 | struct ltt_ust_domain_global { | |
bec39940 | 90 | struct lttng_ht *channels; |
7972aab2 | 91 | struct cds_list_head registry_buffer_uid_list; |
f6a9efaa DG |
92 | }; |
93 | ||
a9ad0c8f MD |
94 | struct ust_pid_tracker_node { |
95 | struct lttng_ht_node_ulong node; | |
96 | }; | |
97 | ||
98 | struct ust_pid_tracker { | |
99 | struct lttng_ht *ht; | |
100 | }; | |
101 | ||
97ee3a89 DG |
102 | /* UST session */ |
103 | struct ltt_ust_session { | |
d9bf3ca4 | 104 | uint64_t id; /* Unique identifier of session */ |
f6a9efaa | 105 | struct ltt_ust_domain_global domain_global; |
fefd409b DG |
106 | /* Hash table of agent indexed by agent domain. */ |
107 | struct lttng_ht *agents; | |
6df2e2c9 MD |
108 | /* UID/GID of the user owning the session */ |
109 | uid_t uid; | |
110 | gid_t gid; | |
14fb1ebe DG |
111 | /* Is the session active meaning has is been started or stopped. */ |
112 | unsigned int active:1; | |
00e2e675 | 113 | struct consumer_output *consumer; |
f3f0db50 DG |
114 | /* Sequence number for filters so the tracer knows the ordering. */ |
115 | uint64_t filter_seq_num; | |
7972aab2 DG |
116 | /* This indicates which type of buffer this session is set for. */ |
117 | enum lttng_buffer_type buffer_type; | |
118 | /* If set to 1, the buffer_type can not be changed anymore. */ | |
119 | int buffer_type_changed; | |
120 | /* For per UID buffer, every buffer reg object is kept of this session */ | |
121 | struct cds_list_head buffer_reg_uid_list; | |
122 | /* Next channel ID available for a newly registered channel. */ | |
123 | uint64_t next_channel_id; | |
124 | /* Once this value reaches UINT32_MAX, no more id can be allocated. */ | |
125 | uint64_t used_channel_id; | |
2bba9e53 DG |
126 | /* Tell or not if the session has to output the traces. */ |
127 | unsigned int output_traces; | |
27babd3a | 128 | unsigned int snapshot_mode; |
85076754 | 129 | unsigned int has_non_default_channel; |
ecc48a90 | 130 | unsigned int live_timer_interval; /* usec */ |
84ad93e8 DG |
131 | |
132 | /* Metadata channel attributes. */ | |
133 | struct lttng_ust_channel_attr metadata_attr; | |
d7ba1388 MD |
134 | |
135 | /* | |
136 | * Path where to keep the shared memory files. | |
137 | */ | |
3d071855 | 138 | char root_shm_path[PATH_MAX]; |
d7ba1388 | 139 | char shm_path[PATH_MAX]; |
a9ad0c8f MD |
140 | |
141 | struct ust_pid_tracker pid_tracker; | |
97ee3a89 DG |
142 | }; |
143 | ||
7972aab2 DG |
144 | /* |
145 | * Validate that the id has reached the maximum allowed or not. | |
146 | * | |
147 | * Return 0 if NOT else 1. | |
148 | */ | |
149 | static inline int trace_ust_is_max_id(uint64_t id) | |
150 | { | |
151 | return (id == UINT64_MAX) ? 1 : 0; | |
152 | } | |
153 | ||
154 | /* | |
155 | * Return next available channel id and increment the used counter. The | |
156 | * trace_ust_is_max_id function MUST be called before in order to validate if | |
157 | * the maximum number of IDs have been reached. If not, it is safe to call this | |
158 | * function. | |
159 | * | |
160 | * Return a unique channel ID. If max is reached, the used_channel_id counter | |
161 | * is returned. | |
162 | */ | |
163 | static inline uint64_t trace_ust_get_next_chan_id(struct ltt_ust_session *s) | |
164 | { | |
165 | if (trace_ust_is_max_id(s->used_channel_id)) { | |
166 | return s->used_channel_id; | |
167 | } | |
168 | ||
169 | s->used_channel_id++; | |
170 | return s->next_channel_id++; | |
171 | } | |
172 | ||
74d0b642 | 173 | #ifdef HAVE_LIBLTTNG_UST_CTL |
3bd1e081 | 174 | |
18eace3b DG |
175 | int trace_ust_ht_match_event(struct cds_lfht_node *node, const void *_key); |
176 | int trace_ust_ht_match_event_by_name(struct cds_lfht_node *node, | |
177 | const void *_key); | |
178 | ||
97ee3a89 DG |
179 | /* |
180 | * Lookup functions. NULL is returned if not found. | |
181 | */ | |
18eace3b | 182 | struct ltt_ust_event *trace_ust_find_event(struct lttng_ht *ht, |
2106efa0 | 183 | char *name, struct lttng_filter_bytecode *filter, |
b953b8cd PP |
184 | enum lttng_ust_loglevel_type loglevel_type, int loglevel_value, |
185 | struct lttng_event_exclusion *exclusion); | |
bec39940 | 186 | struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht, |
f6a9efaa | 187 | char *name); |
fefd409b DG |
188 | struct agent *trace_ust_find_agent(struct ltt_ust_session *session, |
189 | enum lttng_domain_type domain_type); | |
97ee3a89 DG |
190 | |
191 | /* | |
192 | * Create functions malloc() the data structure. | |
193 | */ | |
d9bf3ca4 | 194 | struct ltt_ust_session *trace_ust_create_session(uint64_t session_id); |
51755dc8 JG |
195 | struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr, |
196 | enum lttng_domain_type domain); | |
025faf73 | 197 | struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev, |
6b453b5e | 198 | char *filter_expression, |
561c6897 | 199 | struct lttng_filter_bytecode *filter, |
88f06f15 JG |
200 | struct lttng_event_exclusion *exclusion, |
201 | bool internal_event); | |
55cc08a6 DG |
202 | struct ltt_ust_context *trace_ust_create_context( |
203 | struct lttng_event_context *ctx); | |
aa3514e9 MD |
204 | int trace_ust_match_context(struct ltt_ust_context *uctx, |
205 | struct lttng_event_context *ctx); | |
d5979e4a DG |
206 | void trace_ust_delete_channel(struct lttng_ht *ht, |
207 | struct ltt_ust_channel *channel); | |
97ee3a89 DG |
208 | |
209 | /* | |
210 | * Destroy functions free() the data structure and remove from linked list if | |
211 | * it's applies. | |
212 | */ | |
213 | void trace_ust_destroy_session(struct ltt_ust_session *session); | |
97ee3a89 DG |
214 | void trace_ust_destroy_channel(struct ltt_ust_channel *channel); |
215 | void trace_ust_destroy_event(struct ltt_ust_event *event); | |
bdf64013 | 216 | void trace_ust_destroy_context(struct ltt_ust_context *ctx); |
97ee3a89 | 217 | |
a9ad0c8f MD |
218 | int trace_ust_track_pid(struct ltt_ust_session *session, int pid); |
219 | int trace_ust_untrack_pid(struct ltt_ust_session *session, int pid); | |
220 | ||
b4650bd0 MD |
221 | int trace_ust_pid_tracker_lookup(struct ltt_ust_session *session, int pid); |
222 | ||
a5dfbb9d MD |
223 | ssize_t trace_ust_list_tracker_pids(struct ltt_ust_session *session, |
224 | int32_t **_pids); | |
225 | ||
74d0b642 | 226 | #else /* HAVE_LIBLTTNG_UST_CTL */ |
3bd1e081 | 227 | |
37a86c61 DG |
228 | static inline int trace_ust_ht_match_event(struct cds_lfht_node *node, |
229 | const void *_key) | |
230 | { | |
231 | return 0; | |
232 | } | |
233 | static inline int trace_ust_ht_match_event_by_name(struct cds_lfht_node *node, | |
234 | const void *_key) | |
235 | { | |
236 | return 0; | |
237 | } | |
3bd1e081 | 238 | static inline |
bec39940 | 239 | struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht, |
f6a9efaa | 240 | char *name) |
3bd1e081 MD |
241 | { |
242 | return NULL; | |
243 | } | |
f6a9efaa | 244 | |
3bd1e081 | 245 | static inline |
dec56f6c | 246 | struct ltt_ust_session *trace_ust_create_session(unsigned int session_id) |
3bd1e081 MD |
247 | { |
248 | return NULL; | |
249 | } | |
250 | static inline | |
51755dc8 JG |
251 | struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr, |
252 | enum lttng_domain_type domain) | |
3bd1e081 MD |
253 | { |
254 | return NULL; | |
255 | } | |
256 | static inline | |
025faf73 | 257 | struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev, |
6b453b5e | 258 | const char *filter_expression, |
561c6897 | 259 | struct lttng_filter_bytecode *filter, |
88f06f15 JG |
260 | struct lttng_event_exclusion *exclusion, |
261 | bool internal_event) | |
3bd1e081 MD |
262 | { |
263 | return NULL; | |
264 | } | |
3bd1e081 MD |
265 | static inline |
266 | void trace_ust_destroy_session(struct ltt_ust_session *session) | |
267 | { | |
268 | } | |
48842b30 | 269 | |
3bd1e081 MD |
270 | static inline |
271 | void trace_ust_destroy_channel(struct ltt_ust_channel *channel) | |
272 | { | |
273 | } | |
48842b30 | 274 | |
3bd1e081 MD |
275 | static inline |
276 | void trace_ust_destroy_event(struct ltt_ust_event *event) | |
277 | { | |
278 | } | |
34378f76 DG |
279 | static inline |
280 | struct ltt_ust_context *trace_ust_create_context( | |
281 | struct lttng_event_context *ctx) | |
282 | { | |
283 | return NULL; | |
284 | } | |
aa3514e9 MD |
285 | static inline |
286 | int trace_ust_match_context(struct ltt_ust_context *uctx, | |
287 | struct lttng_event_context *ctx) | |
288 | { | |
289 | return 0; | |
290 | } | |
b953b8cd PP |
291 | static inline |
292 | struct ltt_ust_event *trace_ust_find_event(struct lttng_ht *ht, | |
2106efa0 | 293 | char *name, struct lttng_filter_bytecode *filter, |
b953b8cd PP |
294 | enum lttng_ust_loglevel_type loglevel_type, int loglevel_value, |
295 | struct lttng_event_exclusion *exclusion) | |
37a86c61 DG |
296 | { |
297 | return NULL; | |
298 | } | |
d5979e4a DG |
299 | static inline |
300 | void trace_ust_delete_channel(struct lttng_ht *ht, | |
301 | struct ltt_ust_channel *channel) | |
302 | { | |
303 | return; | |
304 | } | |
fefd409b DG |
305 | static inline |
306 | struct agent *trace_ust_find_agent(struct ltt_ust_session *session, | |
307 | enum lttng_domain_type domain_type) | |
308 | { | |
309 | return NULL; | |
310 | } | |
a9ad0c8f MD |
311 | static inline |
312 | int trace_ust_track_pid(struct ltt_ust_session *session, int pid) | |
313 | { | |
314 | return 0; | |
315 | } | |
316 | static inline | |
317 | int trace_ust_untrack_pid(struct ltt_ust_session *session, int pid) | |
318 | { | |
319 | return 0; | |
320 | } | |
b4650bd0 MD |
321 | static inline |
322 | int trace_ust_pid_tracker_lookup(struct ltt_ust_session *session, int pid) | |
323 | { | |
324 | return 0; | |
325 | } | |
3646a051 | 326 | static inline |
a5dfbb9d MD |
327 | ssize_t trace_ust_list_tracker_pids(struct ltt_ust_session *session, |
328 | int32_t **_pids) | |
329 | { | |
330 | return -1; | |
331 | } | |
74d0b642 | 332 | #endif /* HAVE_LIBLTTNG_UST_CTL */ |
3bd1e081 | 333 | |
97ee3a89 | 334 | #endif /* _LTT_TRACE_UST_H */ |