Fix: src.ctf.lttng-live: session closed before any metadata is received
[babeltrace.git] / src / plugins / ctf / lttng-live / metadata.c
1 /*
2 * Copyright 2019 - Francis Deslauriers <francis.deslauriers@efficios.com>
3 * Copyright 2016 - Philippe Proulx <pproulx@efficios.com>
4 * Copyright 2010-2011 - EfficiOS Inc. and Linux Foundation
5 *
6 * Some functions are based on older functions written by Mathieu Desnoyers.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 */
26
27 #define BT_COMP_LOG_SELF_COMP self_comp
28 #define BT_LOG_OUTPUT_LEVEL log_level
29 #define BT_LOG_TAG "PLUGIN/SRC.CTF.LTTNG-LIVE/META"
30 #include "logging/comp-logging.h"
31
32 #include <stdio.h>
33 #include <stdint.h>
34 #include <stdlib.h>
35 #include <stdbool.h>
36 #include <glib.h>
37 #include "compat/memstream.h"
38 #include <babeltrace2/babeltrace.h>
39
40 #include "metadata.h"
41 #include "../common/metadata/decoder.h"
42 #include "../common/metadata/ctf-meta-configure-ir-trace.h"
43
44 #define TSDL_MAGIC 0x75d11d57
45
46 struct packet_header {
47 uint32_t magic;
48 uint8_t uuid[16];
49 uint32_t checksum;
50 uint32_t content_size;
51 uint32_t packet_size;
52 uint8_t compression_scheme;
53 uint8_t encryption_scheme;
54 uint8_t checksum_scheme;
55 uint8_t major;
56 uint8_t minor;
57 } __attribute__((__packed__));
58
59
60 static
61 bool stream_classes_all_have_default_clock_class(bt_trace_class *tc,
62 bt_logging_level log_level,
63 bt_self_component *self_comp)
64 {
65 uint64_t i, sc_count;
66 const bt_clock_class *cc = NULL;
67 const bt_stream_class *sc;
68 bool ret = true;
69
70 sc_count = bt_trace_class_get_stream_class_count(tc);
71 for (i = 0; i < sc_count; i++) {
72 sc = bt_trace_class_borrow_stream_class_by_index_const(tc, i);
73
74 BT_ASSERT(sc);
75
76 cc = bt_stream_class_borrow_default_clock_class_const(sc);
77 if (!cc) {
78 ret = false;
79 BT_COMP_LOGE_APPEND_CAUSE(self_comp,
80 "Stream class doesn't have a default clock class: "
81 "sc-id=%" PRIu64 ", sc-name=\"%s\"",
82 bt_stream_class_get_id(sc),
83 bt_stream_class_get_name(sc));
84 goto end;
85 }
86 }
87
88 end:
89 return ret;
90 }
91 /*
92 * Iterate over the stream classes and returns the first clock class
93 * encountered. This is useful to create message iterator inactivity message as
94 * we don't need a particular clock class.
95 */
96 static
97 const bt_clock_class *borrow_any_clock_class(bt_trace_class *tc)
98 {
99 uint64_t i, sc_count;
100 const bt_clock_class *cc = NULL;
101 const bt_stream_class *sc;
102
103 sc_count = bt_trace_class_get_stream_class_count(tc);
104 for (i = 0; i < sc_count; i++) {
105 sc = bt_trace_class_borrow_stream_class_by_index_const(tc, i);
106 BT_ASSERT_DBG(sc);
107
108 cc = bt_stream_class_borrow_default_clock_class_const(sc);
109 if (cc) {
110 goto end;
111 }
112 }
113 end:
114 BT_ASSERT_DBG(cc);
115 return cc;
116 }
117
118 BT_HIDDEN
119 enum lttng_live_iterator_status lttng_live_metadata_update(
120 struct lttng_live_trace *trace)
121 {
122 struct lttng_live_session *session = trace->session;
123 struct lttng_live_metadata *metadata = trace->metadata;
124 size_t size, len_read = 0;
125 char *metadata_buf = NULL;
126 bool keep_receiving;
127 FILE *fp = NULL;
128 enum ctf_metadata_decoder_status decoder_status;
129 enum lttng_live_iterator_status status =
130 LTTNG_LIVE_ITERATOR_STATUS_OK;
131 bt_logging_level log_level = trace->log_level;
132 bt_self_component *self_comp = trace->self_comp;
133 enum lttng_live_get_one_metadata_status metadata_status;
134
135 BT_COMP_LOGD("Updating metadata for trace: trace-id=%"PRIu64, trace->id);
136
137 /* No metadata stream yet. */
138 if (!metadata) {
139 if (session->closed) {
140 /*
141 * The session is closed AND we never received any
142 * metadata this indicates that we will never receive
143 * any metadata.
144 */
145 status = LTTNG_LIVE_ITERATOR_STATUS_END;
146 } else if (session->new_streams_needed) {
147 status = LTTNG_LIVE_ITERATOR_STATUS_AGAIN;
148 } else {
149 session->new_streams_needed = true;
150 status = LTTNG_LIVE_ITERATOR_STATUS_CONTINUE;
151 }
152 goto end;
153 }
154
155 if (trace->metadata_stream_state != LTTNG_LIVE_METADATA_STREAM_STATE_NEEDED) {
156 goto end;
157 }
158
159 /*
160 * Open a new write only file handle to populate the `metadata_buf`
161 * memory buffer so we can write in loop in it easily.
162 */
163 fp = bt_open_memstream(&metadata_buf, &size);
164 if (!fp) {
165 if (errno == EINTR &&
166 lttng_live_graph_is_canceled(session->lttng_live_msg_iter)) {
167 session->lttng_live_msg_iter->was_interrupted = true;
168 status = LTTNG_LIVE_ITERATOR_STATUS_AGAIN;
169 } else {
170 BT_COMP_LOGE_APPEND_CAUSE_ERRNO(self_comp,
171 "Metadata open_memstream", ".");
172 status = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
173 }
174 goto end;
175 }
176
177 keep_receiving = true;
178 /* Grab all available metadata. */
179 while (keep_receiving) {
180 size_t reply_len = 0;
181 /*
182 * lttng_live_get_one_metadata_packet() asks the Relay Daemon
183 * for new metadata. If new metadata is received, the function
184 * writes it to the provided file handle and updates the
185 * reply_len output parameter. We call this function in loop
186 * until it returns _END meaning that no new metadata is
187 * available.
188 * We may receive a _CLOSED status if the metadata stream we
189 * are requesting is no longer available on the relay.
190 * If we receive an _ERROR status, it means there was a
191 * networking, allocating, or some other unrecoverable error.
192 */
193 metadata_status = lttng_live_get_one_metadata_packet(trace, fp,
194 &reply_len);
195
196 switch (metadata_status) {
197 case LTTNG_LIVE_GET_ONE_METADATA_STATUS_OK:
198 len_read += reply_len;
199 break;
200 case LTTNG_LIVE_GET_ONE_METADATA_STATUS_END:
201 keep_receiving = false;
202 break;
203 case LTTNG_LIVE_GET_ONE_METADATA_STATUS_CLOSED:
204 BT_COMP_LOGD("Metadata stream was closed by the Relay, the trace is no longer active: "
205 "trace-id=%"PRIu64", metadata-stream-id=%"PRIu64,
206 trace->id, metadata->stream_id);
207 /*
208 * The stream was closed and we received everything
209 * there was to receive for this metadata stream.
210 * We go on with the decoding of what we received. So
211 * that data stream can be decoded.
212 */
213 keep_receiving = false;
214 trace->metadata_stream_state = LTTNG_LIVE_METADATA_STREAM_STATE_CLOSED;
215 break;
216 case LTTNG_LIVE_GET_ONE_METADATA_STATUS_ERROR:
217 BT_COMP_LOGE_APPEND_CAUSE(self_comp,
218 "Error getting one trace metadata packet: "
219 "trace-id=%"PRIu64, trace->id);
220 goto error;
221 default:
222 bt_common_abort();
223 }
224 }
225
226 /* The memory buffer `metadata_buf` contains all the metadata. */
227 if (bt_close_memstream(&metadata_buf, &size, fp)) {
228 BT_COMP_LOGW_ERRNO("Metadata bt_close_memstream", ".");
229 }
230
231 fp = NULL;
232
233 if (len_read == 0) {
234 if (!trace->trace) {
235 status = LTTNG_LIVE_ITERATOR_STATUS_AGAIN;
236 goto end;
237 }
238
239 /* The relay sent zero bytes of metdata. */
240 trace->metadata_stream_state = LTTNG_LIVE_METADATA_STREAM_STATE_NOT_NEEDED;
241 goto end;
242 }
243
244 /*
245 * Open a new reading file handle on the `metadata_buf` and pass it to
246 * the metadata decoder.
247 */
248 fp = bt_fmemopen(metadata_buf, len_read, "rb");
249 if (!fp) {
250 if (errno == EINTR &&
251 lttng_live_graph_is_canceled(session->lttng_live_msg_iter)) {
252 session->lttng_live_msg_iter->was_interrupted = true;
253 status = LTTNG_LIVE_ITERATOR_STATUS_AGAIN;
254 } else {
255 BT_COMP_LOGE_APPEND_CAUSE_ERRNO(self_comp,
256 "Cannot memory-open metadata buffer", ".");
257 status = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
258 }
259 goto end;
260 }
261
262 /*
263 * The call to ctf_metadata_decoder_append_content() will append
264 * new metadata to our current trace class.
265 */
266 BT_COMP_LOGD("Appending new metadata to the ctf_trace class");
267 decoder_status = ctf_metadata_decoder_append_content(
268 metadata->decoder, fp);
269 switch (decoder_status) {
270 case CTF_METADATA_DECODER_STATUS_OK:
271 if (!trace->trace_class) {
272 struct ctf_trace_class *tc =
273 ctf_metadata_decoder_borrow_ctf_trace_class(
274 metadata->decoder);
275
276 trace->trace_class =
277 ctf_metadata_decoder_get_ir_trace_class(
278 metadata->decoder);
279 trace->trace = bt_trace_create(trace->trace_class);
280 if (!trace->trace) {
281 BT_COMP_LOGE_APPEND_CAUSE(self_comp,
282 "Failed to create bt_trace");
283 goto error;
284 }
285 if (ctf_trace_class_configure_ir_trace(tc,
286 trace->trace)) {
287 BT_COMP_LOGE_APPEND_CAUSE(self_comp,
288 "Failed to configure ctf trace class");
289 goto error;
290 }
291 if (!stream_classes_all_have_default_clock_class(
292 trace->trace_class, log_level,
293 self_comp)) {
294 /* Error logged in function. */
295 goto error;
296 }
297 trace->clock_class =
298 borrow_any_clock_class(trace->trace_class);
299 }
300
301 /* The metadata was updated succesfully. */
302 trace->metadata_stream_state = LTTNG_LIVE_METADATA_STREAM_STATE_NOT_NEEDED;
303
304 break;
305 default:
306 goto error;
307 }
308
309 goto end;
310
311 error:
312 status = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
313 end:
314 if (fp) {
315 int closeret;
316
317 closeret = fclose(fp);
318 if (closeret) {
319 BT_COMP_LOGW_ERRNO("Error on fclose", ".");
320 }
321 }
322 free(metadata_buf);
323 return status;
324 }
325
326 BT_HIDDEN
327 int lttng_live_metadata_create_stream(struct lttng_live_session *session,
328 uint64_t ctf_trace_id, uint64_t stream_id,
329 const char *trace_name)
330 {
331 bt_self_component *self_comp = session->self_comp;
332 bt_logging_level log_level = session->log_level;
333 struct lttng_live_metadata *metadata = NULL;
334 struct lttng_live_trace *trace;
335 struct ctf_metadata_decoder_config cfg = {
336 .log_level = session->log_level,
337 .self_comp = session->self_comp,
338 .clock_class_offset_s = 0,
339 .clock_class_offset_ns = 0,
340 .create_trace_class = true,
341 };
342
343 metadata = g_new0(struct lttng_live_metadata, 1);
344 if (!metadata) {
345 return -1;
346 }
347 metadata->log_level = session->log_level;
348 metadata->self_comp = session->self_comp;
349 metadata->stream_id = stream_id;
350
351 metadata->decoder = ctf_metadata_decoder_create(&cfg);
352 if (!metadata->decoder) {
353 BT_COMP_LOGE_APPEND_CAUSE(self_comp,
354 "Failed to create CTF metadata decoder");
355 goto error;
356 }
357 trace = lttng_live_session_borrow_or_create_trace_by_id(session,
358 ctf_trace_id);
359 if (!trace) {
360 BT_COMP_LOGE_APPEND_CAUSE(self_comp,
361 "Failed to borrow trace");
362 goto error;
363 }
364 trace->metadata = metadata;
365 return 0;
366
367 error:
368 ctf_metadata_decoder_destroy(metadata->decoder);
369 g_free(metadata);
370 return -1;
371 }
372
373 BT_HIDDEN
374 void lttng_live_metadata_fini(struct lttng_live_trace *trace)
375 {
376 struct lttng_live_metadata *metadata = trace->metadata;
377
378 if (!metadata) {
379 return;
380 }
381 ctf_metadata_decoder_destroy(metadata->decoder);
382 trace->metadata = NULL;
383 g_free(metadata);
384 }
This page took 0.038041 seconds and 4 git commands to generate.