cf67738878daf96376b9b3ad13985a486e19c238
[babeltrace.git] / src / plugins / ctf / lttng-live / lttng-live.cpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2019 Francis Deslauriers <francis.deslauriers@efficios.com>
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * Copyright 2016 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * Babeltrace CTF LTTng-live Client Component
9 */
10
11 #include <glib.h>
12 #include <unistd.h>
13
14 #include "common/assert.h"
15 #include "cpp-common/bt2c/fmt.hpp"
16 #include "cpp-common/bt2c/glib-up.hpp"
17 #include "cpp-common/bt2c/vector.hpp"
18 #include "cpp-common/bt2s/make-unique.hpp"
19 #include "cpp-common/vendor/fmt/format.h"
20
21 #include "plugins/common/muxing/muxing.h"
22 #include "plugins/common/param-validation/param-validation.h"
23
24 #include "data-stream.hpp"
25 #include "lttng-live.hpp"
26 #include "metadata.hpp"
27
28 #define MAX_QUERY_SIZE (256 * 1024)
29 #define URL_PARAM "url"
30 #define INPUTS_PARAM "inputs"
31 #define SESS_NOT_FOUND_ACTION_PARAM "session-not-found-action"
32 #define SESS_NOT_FOUND_ACTION_CONTINUE_STR "continue"
33 #define SESS_NOT_FOUND_ACTION_FAIL_STR "fail"
34 #define SESS_NOT_FOUND_ACTION_END_STR "end"
35
36 void lttng_live_stream_iterator_set_state(struct lttng_live_stream_iterator *stream_iter,
37 enum lttng_live_stream_state new_state)
38 {
39 BT_CPPLOGD_SPEC(stream_iter->logger,
40 "Setting live stream iterator state: viewer-stream-id={}, "
41 "old-state={}, new-state={}",
42 stream_iter->viewer_stream_id, stream_iter->state, new_state);
43
44 stream_iter->state = new_state;
45 }
46
47 #define LTTNG_LIVE_LOGD_STREAM_ITER(live_stream_iter) \
48 do { \
49 BT_CPPLOGD_SPEC((live_stream_iter)->logger, \
50 "Live stream iterator state={}, " \
51 "last-inact-ts-is-set={}, last-inact-ts-value={}, " \
52 "curr-inact-ts={}", \
53 (live_stream_iter)->state, (live_stream_iter)->last_inactivity_ts.is_set, \
54 (live_stream_iter)->last_inactivity_ts.value, \
55 (live_stream_iter)->current_inactivity_ts); \
56 } while (0);
57
58 bool lttng_live_graph_is_canceled(struct lttng_live_msg_iter *msg_iter)
59 {
60 bool ret;
61
62 if (!msg_iter) {
63 ret = false;
64 goto end;
65 }
66
67 ret = bt_self_message_iterator_is_interrupted(msg_iter->self_msg_iter);
68
69 end:
70 return ret;
71 }
72
73 static struct lttng_live_trace *
74 lttng_live_session_borrow_trace_by_id(struct lttng_live_session *session, uint64_t trace_id)
75 {
76 for (lttng_live_trace::UP& trace : session->traces) {
77 if (trace->id == trace_id) {
78 return trace.get();
79 }
80 }
81
82 return nullptr;
83 }
84
85 static struct lttng_live_trace *lttng_live_create_trace(struct lttng_live_session *session,
86 uint64_t trace_id)
87 {
88 BT_CPPLOGD_SPEC(session->logger, "Creating live trace: session-id={}, trace-id={}", session->id,
89 trace_id);
90
91 auto trace = bt2s::make_unique<lttng_live_trace>(session->logger);
92
93 trace->session = session;
94 trace->id = trace_id;
95 trace->metadata_stream_state = LTTNG_LIVE_METADATA_STREAM_STATE_NEEDED;
96
97 const auto ret = trace.get();
98 session->traces.emplace_back(std::move(trace));
99 return ret;
100 }
101
102 struct lttng_live_trace *
103 lttng_live_session_borrow_or_create_trace_by_id(struct lttng_live_session *session,
104 uint64_t trace_id)
105 {
106 struct lttng_live_trace *trace;
107
108 trace = lttng_live_session_borrow_trace_by_id(session, trace_id);
109 if (trace) {
110 goto end;
111 }
112
113 /* The session is the owner of the newly created trace. */
114 trace = lttng_live_create_trace(session, trace_id);
115
116 end:
117 return trace;
118 }
119
120 int lttng_live_add_session(struct lttng_live_msg_iter *lttng_live_msg_iter, uint64_t session_id,
121 const char *hostname, const char *session_name)
122 {
123 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
124 "Adding live session: "
125 "session-id={}, hostname=\"{}\", session-name=\"{}\"",
126 session_id, hostname, session_name);
127
128 auto session = bt2s::make_unique<lttng_live_session>(lttng_live_msg_iter->logger);
129
130 session->self_comp = lttng_live_msg_iter->self_comp;
131 session->id = session_id;
132 session->lttng_live_msg_iter = lttng_live_msg_iter;
133 session->new_streams_needed = true;
134 session->hostname = hostname;
135 session->session_name = session_name;
136
137 lttng_live_msg_iter->sessions.emplace_back(std::move(session));
138
139 return 0;
140 }
141
142 lttng_live_session::~lttng_live_session()
143 {
144 BT_CPPLOGD_SPEC(this->logger, "Destroying live session: session-id={}, session-name=\"{}\"",
145 this->id, this->session_name);
146
147 if (this->id != -1ULL) {
148 if (lttng_live_session_detach(this)) {
149 if (!lttng_live_graph_is_canceled(this->lttng_live_msg_iter)) {
150 /* Old relayd cannot detach sessions. */
151 BT_CPPLOGD_SPEC(this->logger, "Unable to detach lttng live session {}", this->id);
152 }
153 }
154
155 this->id = -1ULL;
156 }
157 }
158
159 lttng_live_msg_iter::~lttng_live_msg_iter()
160 {
161 BT_ASSERT(this->lttng_live_comp);
162 BT_ASSERT(this->lttng_live_comp->has_msg_iter);
163
164 /* All stream iterators must be destroyed at this point. */
165 BT_ASSERT(this->active_stream_iter == 0);
166 this->lttng_live_comp->has_msg_iter = false;
167 }
168
169 void lttng_live_msg_iter_finalize(bt_self_message_iterator *self_msg_iter)
170 {
171 lttng_live_msg_iter::UP {
172 static_cast<lttng_live_msg_iter *>(bt_self_message_iterator_get_data(self_msg_iter))};
173 }
174
175 static enum lttng_live_iterator_status
176 lttng_live_iterator_next_check_stream_state(struct lttng_live_stream_iterator *lttng_live_stream)
177 {
178 switch (lttng_live_stream->state) {
179 case LTTNG_LIVE_STREAM_QUIESCENT:
180 case LTTNG_LIVE_STREAM_ACTIVE_DATA:
181 break;
182 case LTTNG_LIVE_STREAM_ACTIVE_NO_DATA:
183 /* Invalid state. */
184 BT_CPPLOGF_SPEC(lttng_live_stream->logger, "Unexpected stream state \"ACTIVE_NO_DATA\"");
185 bt_common_abort();
186 case LTTNG_LIVE_STREAM_QUIESCENT_NO_DATA:
187 /* Invalid state. */
188 BT_CPPLOGF_SPEC(lttng_live_stream->logger, "Unexpected stream state \"QUIESCENT_NO_DATA\"");
189 bt_common_abort();
190 case LTTNG_LIVE_STREAM_EOF:
191 break;
192 }
193 return LTTNG_LIVE_ITERATOR_STATUS_OK;
194 }
195
196 /*
197 * For active no data stream, fetch next index. As a result of that it can
198 * become either:
199 * - quiescent: won't have events for a bit,
200 * - have data: need to get that data and produce the event,
201 * - have no data on this stream at this point: need to retry (AGAIN) or return
202 * EOF.
203 */
204 static enum lttng_live_iterator_status lttng_live_iterator_next_handle_one_no_data_stream(
205 struct lttng_live_msg_iter *lttng_live_msg_iter,
206 struct lttng_live_stream_iterator *lttng_live_stream)
207 {
208 enum lttng_live_iterator_status ret = LTTNG_LIVE_ITERATOR_STATUS_OK;
209 enum lttng_live_stream_state orig_state = lttng_live_stream->state;
210 struct packet_index index;
211
212 if (lttng_live_stream->trace->metadata_stream_state ==
213 LTTNG_LIVE_METADATA_STREAM_STATE_NEEDED) {
214 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
215 "Need to get an update for the metadata stream before proceeding "
216 "further with this stream: stream-name=\"{}\"",
217 lttng_live_stream->name);
218 ret = LTTNG_LIVE_ITERATOR_STATUS_CONTINUE;
219 goto end;
220 }
221
222 if (lttng_live_stream->trace->session->new_streams_needed) {
223 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
224 "Need to get an update of all streams before proceeding further "
225 "with this stream: stream-name=\"{}\"",
226 lttng_live_stream->name);
227 ret = LTTNG_LIVE_ITERATOR_STATUS_CONTINUE;
228 goto end;
229 }
230
231 if (lttng_live_stream->state != LTTNG_LIVE_STREAM_ACTIVE_NO_DATA &&
232 lttng_live_stream->state != LTTNG_LIVE_STREAM_QUIESCENT_NO_DATA) {
233 goto end;
234 }
235 ret = lttng_live_get_next_index(lttng_live_msg_iter, lttng_live_stream, &index);
236 if (ret != LTTNG_LIVE_ITERATOR_STATUS_OK) {
237 goto end;
238 }
239
240 BT_ASSERT_DBG(lttng_live_stream->state != LTTNG_LIVE_STREAM_EOF);
241
242 if (lttng_live_stream->state == LTTNG_LIVE_STREAM_QUIESCENT) {
243 uint64_t last_inact_ts = lttng_live_stream->last_inactivity_ts.value,
244 curr_inact_ts = lttng_live_stream->current_inactivity_ts;
245
246 if (orig_state == LTTNG_LIVE_STREAM_QUIESCENT_NO_DATA && last_inact_ts == curr_inact_ts) {
247 /*
248 * Because the stream is in the QUIESCENT_NO_DATA
249 * state, we can assert that the last_inactivity_ts was
250 * set and can be safely used in the `if` above.
251 */
252 BT_ASSERT(lttng_live_stream->last_inactivity_ts.is_set);
253
254 ret = LTTNG_LIVE_ITERATOR_STATUS_AGAIN;
255 LTTNG_LIVE_LOGD_STREAM_ITER(lttng_live_stream);
256 } else {
257 ret = LTTNG_LIVE_ITERATOR_STATUS_CONTINUE;
258 }
259 goto end;
260 }
261
262 lttng_live_stream->base_offset = index.offset;
263 lttng_live_stream->offset = index.offset;
264 lttng_live_stream->len = index.packet_size / CHAR_BIT;
265
266 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
267 "Setting live stream reading info: stream-name=\"{}\", "
268 "viewer-stream-id={}, stream-base-offset={}, stream-offset={}, stream-len={}",
269 lttng_live_stream->name, lttng_live_stream->viewer_stream_id,
270 lttng_live_stream->base_offset, lttng_live_stream->offset,
271 lttng_live_stream->len);
272
273 end:
274 if (ret == LTTNG_LIVE_ITERATOR_STATUS_OK) {
275 ret = lttng_live_iterator_next_check_stream_state(lttng_live_stream);
276 }
277 return ret;
278 }
279
280 /*
281 * Creation of the message requires the ctf trace class to be created
282 * beforehand, but the live protocol gives us all streams (including metadata)
283 * at once. So we split it in three steps: getting streams, getting metadata
284 * (which creates the ctf trace class), and then creating the per-stream
285 * messages.
286 */
287 static enum lttng_live_iterator_status
288 lttng_live_get_session(struct lttng_live_msg_iter *lttng_live_msg_iter,
289 struct lttng_live_session *session)
290 {
291 enum lttng_live_iterator_status status;
292
293 if (!session->attached) {
294 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger, "Attach to session: session-id={}",
295 session->id);
296 enum lttng_live_viewer_status attach_status =
297 lttng_live_session_attach(session, lttng_live_msg_iter->self_msg_iter);
298 if (attach_status != LTTNG_LIVE_VIEWER_STATUS_OK) {
299 if (lttng_live_graph_is_canceled(lttng_live_msg_iter)) {
300 /*
301 * Clear any causes appended in
302 * `lttng_live_attach_session()` as we want to
303 * return gracefully since the graph was
304 * cancelled.
305 */
306 bt_current_thread_clear_error();
307 status = LTTNG_LIVE_ITERATOR_STATUS_AGAIN;
308 } else {
309 status = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
310 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
311 "Error attaching to LTTng live session");
312 }
313 goto end;
314 }
315 }
316
317 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
318 "Updating all data streams: session-id={}, session-name=\"{}\"", session->id,
319 session->session_name);
320
321 status = lttng_live_session_get_new_streams(session, lttng_live_msg_iter->self_msg_iter);
322 switch (status) {
323 case LTTNG_LIVE_ITERATOR_STATUS_OK:
324 break;
325 case LTTNG_LIVE_ITERATOR_STATUS_END:
326 /*
327 * We received a `_END` from the `_get_new_streams()` function,
328 * which means no more data will ever be received from the data
329 * streams of this session. But it's possible that the metadata
330 * is incomplete.
331 * The live protocol guarantees that we receive all the
332 * metadata needed before we receive data streams needing it.
333 * But it's possible to receive metadata NOT needed by
334 * data streams after the session was closed. For example, this
335 * could happen if a new event is registered and the session is
336 * stopped before any tracepoint for that event is actually
337 * fired.
338 */
339 BT_CPPLOGD_SPEC(
340 lttng_live_msg_iter->logger,
341 "Updating streams returned _END status. Override status to _OK in order fetch any remaining metadata:"
342 "session-id={}, session-name=\"{}\"",
343 session->id, session->session_name);
344 status = LTTNG_LIVE_ITERATOR_STATUS_OK;
345 break;
346 default:
347 goto end;
348 }
349
350 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
351 "Updating metadata stream for session: session-id={}, session-name=\"{}\"",
352 session->id, session->session_name);
353
354 for (lttng_live_trace::UP& trace : session->traces) {
355 status = lttng_live_metadata_update(trace.get());
356 switch (status) {
357 case LTTNG_LIVE_ITERATOR_STATUS_END:
358 case LTTNG_LIVE_ITERATOR_STATUS_OK:
359 break;
360 case LTTNG_LIVE_ITERATOR_STATUS_CONTINUE:
361 case LTTNG_LIVE_ITERATOR_STATUS_AGAIN:
362 goto end;
363 default:
364 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
365 "Error updating trace metadata: "
366 "stream-iter-status={}, trace-id={}",
367 status, trace->id);
368 goto end;
369 }
370 }
371
372 /*
373 * Now that we have the metadata we can initialize the downstream
374 * iterator.
375 */
376 status = lttng_live_lazy_msg_init(session, lttng_live_msg_iter->self_msg_iter);
377
378 end:
379 return status;
380 }
381
382 static void
383 lttng_live_force_new_streams_and_metadata(struct lttng_live_msg_iter *lttng_live_msg_iter)
384 {
385 for (const auto& session : lttng_live_msg_iter->sessions) {
386 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
387 "Force marking session as needing new streams: "
388 "session-id={}",
389 session->id);
390 session->new_streams_needed = true;
391 for (lttng_live_trace::UP& trace : session->traces) {
392 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
393 "Force marking trace metadata state as needing an update: "
394 "session-id={}, trace-id={}",
395 session->id, trace->id);
396
397 BT_ASSERT(trace->metadata_stream_state != LTTNG_LIVE_METADATA_STREAM_STATE_CLOSED);
398
399 trace->metadata_stream_state = LTTNG_LIVE_METADATA_STREAM_STATE_NEEDED;
400 }
401 }
402 }
403
404 static enum lttng_live_iterator_status
405 lttng_live_iterator_handle_new_streams_and_metadata(struct lttng_live_msg_iter *lttng_live_msg_iter)
406 {
407 enum lttng_live_iterator_status status;
408 enum lttng_live_viewer_status viewer_status;
409 uint64_t nr_sessions_opened = 0;
410 enum session_not_found_action sess_not_found_act =
411 lttng_live_msg_iter->lttng_live_comp->params.sess_not_found_act;
412
413 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
414 "Update data and metadata of all sessions: "
415 "live-msg-iter-addr={}",
416 fmt::ptr(lttng_live_msg_iter));
417 /*
418 * In a remotely distant future, we could add a "new
419 * session" flag to the protocol, which would tell us that we
420 * need to query for new sessions even though we have sessions
421 * currently ongoing.
422 */
423 if (lttng_live_msg_iter->sessions.empty()) {
424 if (sess_not_found_act != SESSION_NOT_FOUND_ACTION_CONTINUE) {
425 BT_CPPLOGD_SPEC(
426 lttng_live_msg_iter->logger,
427 "No session found. Exiting in accordance with the `session-not-found-action` parameter");
428 status = LTTNG_LIVE_ITERATOR_STATUS_END;
429 goto end;
430 } else {
431 BT_CPPLOGD_SPEC(
432 lttng_live_msg_iter->logger,
433 "No session found. Try creating a new one in accordance with the `session-not-found-action` parameter");
434 /*
435 * Retry to create a viewer session for the requested
436 * session name.
437 */
438 viewer_status = lttng_live_create_viewer_session(lttng_live_msg_iter);
439 if (viewer_status != LTTNG_LIVE_VIEWER_STATUS_OK) {
440 if (viewer_status == LTTNG_LIVE_VIEWER_STATUS_ERROR) {
441 status = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
442 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
443 "Error creating LTTng live viewer session");
444 } else if (viewer_status == LTTNG_LIVE_VIEWER_STATUS_INTERRUPTED) {
445 status = LTTNG_LIVE_ITERATOR_STATUS_AGAIN;
446 } else {
447 bt_common_abort();
448 }
449 goto end;
450 }
451 }
452 }
453
454 for (const auto& session : lttng_live_msg_iter->sessions) {
455 status = lttng_live_get_session(lttng_live_msg_iter, session.get());
456 switch (status) {
457 case LTTNG_LIVE_ITERATOR_STATUS_OK:
458 case LTTNG_LIVE_ITERATOR_STATUS_END:
459 /*
460 * A session returned `_END`. Other sessions may still
461 * be active so we override the status and continue
462 * looping if needed.
463 */
464 break;
465 default:
466 goto end;
467 }
468 if (!session->closed) {
469 nr_sessions_opened++;
470 }
471 }
472
473 if (sess_not_found_act != SESSION_NOT_FOUND_ACTION_CONTINUE && nr_sessions_opened == 0) {
474 status = LTTNG_LIVE_ITERATOR_STATUS_END;
475 } else {
476 status = LTTNG_LIVE_ITERATOR_STATUS_OK;
477 }
478
479 end:
480 return status;
481 }
482
483 static enum lttng_live_iterator_status
484 emit_inactivity_message(struct lttng_live_msg_iter *lttng_live_msg_iter,
485 struct lttng_live_stream_iterator *stream_iter,
486 bt2::ConstMessage::Shared& message, uint64_t timestamp)
487 {
488 BT_ASSERT(stream_iter->trace->clock_class);
489 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
490 "Emitting inactivity message for stream: ctf-stream-id={}, "
491 "viewer-stream-id={}, timestamp={}",
492 stream_iter->ctf_stream_class_id.value, stream_iter->viewer_stream_id,
493 timestamp);
494
495 const auto msg = bt_message_message_iterator_inactivity_create(
496 lttng_live_msg_iter->self_msg_iter, stream_iter->trace->clock_class, timestamp);
497
498 if (!msg) {
499 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
500 "Error emitting message iterator inactivity message");
501 return LTTNG_LIVE_ITERATOR_STATUS_ERROR;
502 }
503
504 message = bt2::ConstMessage::Shared::createWithoutRef(msg);
505 return LTTNG_LIVE_ITERATOR_STATUS_OK;
506 }
507
508 static enum lttng_live_iterator_status lttng_live_iterator_next_handle_one_quiescent_stream(
509 struct lttng_live_msg_iter *lttng_live_msg_iter,
510 struct lttng_live_stream_iterator *lttng_live_stream, bt2::ConstMessage::Shared& message)
511 {
512 enum lttng_live_iterator_status ret = LTTNG_LIVE_ITERATOR_STATUS_OK;
513
514 if (lttng_live_stream->state != LTTNG_LIVE_STREAM_QUIESCENT) {
515 return LTTNG_LIVE_ITERATOR_STATUS_OK;
516 }
517
518 /*
519 * Check if we already sent an inactivty message downstream for this
520 * `current_inactivity_ts` value.
521 */
522 if (lttng_live_stream->last_inactivity_ts.is_set &&
523 lttng_live_stream->current_inactivity_ts == lttng_live_stream->last_inactivity_ts.value) {
524 lttng_live_stream_iterator_set_state(lttng_live_stream,
525 LTTNG_LIVE_STREAM_QUIESCENT_NO_DATA);
526
527 ret = LTTNG_LIVE_ITERATOR_STATUS_CONTINUE;
528 goto end;
529 }
530
531 ret = emit_inactivity_message(lttng_live_msg_iter, lttng_live_stream, message,
532 lttng_live_stream->current_inactivity_ts);
533
534 lttng_live_stream->last_inactivity_ts.value = lttng_live_stream->current_inactivity_ts;
535 lttng_live_stream->last_inactivity_ts.is_set = true;
536 end:
537 return ret;
538 }
539
540 static int live_get_msg_ts_ns(struct lttng_live_msg_iter *lttng_live_msg_iter,
541 const bt_message *msg, int64_t last_msg_ts_ns, int64_t *ts_ns)
542 {
543 const bt_clock_snapshot *clock_snapshot = NULL;
544 int ret = 0;
545
546 BT_ASSERT_DBG(msg);
547 BT_ASSERT_DBG(ts_ns);
548
549 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
550 "Getting message's timestamp: iter-data-addr={}, msg-addr={}, "
551 "last-msg-ts={}",
552 fmt::ptr(lttng_live_msg_iter), fmt::ptr(msg), last_msg_ts_ns);
553
554 switch (bt_message_get_type(msg)) {
555 case BT_MESSAGE_TYPE_EVENT:
556 clock_snapshot = bt_message_event_borrow_default_clock_snapshot_const(msg);
557 break;
558 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
559 clock_snapshot = bt_message_packet_beginning_borrow_default_clock_snapshot_const(msg);
560 break;
561 case BT_MESSAGE_TYPE_PACKET_END:
562 clock_snapshot = bt_message_packet_end_borrow_default_clock_snapshot_const(msg);
563 break;
564 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
565 clock_snapshot =
566 bt_message_discarded_events_borrow_beginning_default_clock_snapshot_const(msg);
567 break;
568 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
569 clock_snapshot =
570 bt_message_discarded_packets_borrow_beginning_default_clock_snapshot_const(msg);
571 break;
572 case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY:
573 clock_snapshot = bt_message_message_iterator_inactivity_borrow_clock_snapshot_const(msg);
574 break;
575 default:
576 /* All the other messages have a higher priority */
577 BT_CPPLOGD_STR_SPEC(lttng_live_msg_iter->logger,
578 "Message has no timestamp: using the last message timestamp.");
579 *ts_ns = last_msg_ts_ns;
580 goto end;
581 }
582
583 ret = bt_clock_snapshot_get_ns_from_origin(clock_snapshot, ts_ns);
584 if (ret) {
585 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
586 "Cannot get nanoseconds from Epoch of clock snapshot: "
587 "clock-snapshot-addr={}",
588 fmt::ptr(clock_snapshot));
589 goto error;
590 }
591
592 goto end;
593
594 error:
595 ret = -1;
596
597 end:
598 if (ret == 0) {
599 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
600 "Found message's timestamp: iter-data-addr={}, msg-addr={}, "
601 "last-msg-ts={}, ts={}",
602 fmt::ptr(lttng_live_msg_iter), fmt::ptr(msg), last_msg_ts_ns, *ts_ns);
603 }
604
605 return ret;
606 }
607
608 static enum lttng_live_iterator_status lttng_live_iterator_next_handle_one_active_data_stream(
609 struct lttng_live_msg_iter *lttng_live_msg_iter,
610 struct lttng_live_stream_iterator *lttng_live_stream, bt2::ConstMessage::Shared& message)
611 {
612 enum lttng_live_iterator_status ret = LTTNG_LIVE_ITERATOR_STATUS_OK;
613 enum ctf_msg_iter_status status;
614
615 for (const auto& session : lttng_live_msg_iter->sessions) {
616 if (session->new_streams_needed) {
617 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
618 "Need an update for streams: "
619 "session-id={}",
620 session->id);
621 ret = LTTNG_LIVE_ITERATOR_STATUS_CONTINUE;
622 goto end;
623 }
624 for (lttng_live_trace::UP& trace : session->traces) {
625 if (trace->metadata_stream_state == LTTNG_LIVE_METADATA_STREAM_STATE_NEEDED) {
626 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
627 "Need an update for metadata stream: "
628 "session-id={}, trace-id={}",
629 session->id, trace->id);
630 ret = LTTNG_LIVE_ITERATOR_STATUS_CONTINUE;
631 goto end;
632 }
633 }
634 }
635
636 if (lttng_live_stream->state != LTTNG_LIVE_STREAM_ACTIVE_DATA) {
637 ret = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
638 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
639 "Invalid state of live stream iterator"
640 "stream-iter-status={}",
641 lttng_live_stream->state);
642 goto end;
643 }
644
645 const bt_message *msg;
646 status = ctf_msg_iter_get_next_message(lttng_live_stream->msg_iter.get(), &msg);
647 switch (status) {
648 case CTF_MSG_ITER_STATUS_EOF:
649 ret = LTTNG_LIVE_ITERATOR_STATUS_END;
650 break;
651 case CTF_MSG_ITER_STATUS_OK:
652 message = bt2::ConstMessage::Shared::createWithoutRef(msg);
653 ret = LTTNG_LIVE_ITERATOR_STATUS_OK;
654 break;
655 case CTF_MSG_ITER_STATUS_AGAIN:
656 /*
657 * Continue immediately (end of packet). The next
658 * get_index may return AGAIN to delay the following
659 * attempt.
660 */
661 ret = LTTNG_LIVE_ITERATOR_STATUS_CONTINUE;
662 break;
663 case CTF_MSG_ITER_STATUS_ERROR:
664 default:
665 ret = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
666 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
667 "CTF message iterator failed to get next message: "
668 "msg-iter={}, msg-iter-status={}",
669 fmt::ptr(lttng_live_stream->msg_iter), status);
670 break;
671 }
672
673 end:
674 return ret;
675 }
676
677 static enum lttng_live_iterator_status
678 lttng_live_iterator_close_stream(struct lttng_live_msg_iter *lttng_live_msg_iter,
679 struct lttng_live_stream_iterator *stream_iter,
680 bt2::ConstMessage::Shared& curr_msg)
681 {
682 enum lttng_live_iterator_status live_status = LTTNG_LIVE_ITERATOR_STATUS_OK;
683
684 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
685 "Closing live stream iterator: stream-name=\"{}\", "
686 "viewer-stream-id={}",
687 stream_iter->name, stream_iter->viewer_stream_id);
688
689 /*
690 * The viewer has hung up on us so we are closing the stream. The
691 * `ctf_msg_iter` should simply realize that it needs to close the
692 * stream properly by emitting the necessary stream end message.
693 */
694 const bt_message *msg;
695 enum ctf_msg_iter_status status =
696 ctf_msg_iter_get_next_message(stream_iter->msg_iter.get(), &msg);
697
698 if (status == CTF_MSG_ITER_STATUS_ERROR) {
699 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
700 "Error getting the next message from CTF message iterator");
701 live_status = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
702 goto end;
703 } else if (status == CTF_MSG_ITER_STATUS_EOF) {
704 BT_CPPLOGI_SPEC(lttng_live_msg_iter->logger,
705 "Reached the end of the live stream iterator.");
706 live_status = LTTNG_LIVE_ITERATOR_STATUS_END;
707 goto end;
708 }
709
710 BT_ASSERT(status == CTF_MSG_ITER_STATUS_OK);
711
712 curr_msg = bt2::ConstMessage::Shared::createWithoutRef(msg);
713
714 end:
715 return live_status;
716 }
717
718 /*
719 * helper function:
720 * handle_no_data_streams()
721 * retry:
722 * - for each ACTIVE_NO_DATA stream:
723 * - query relayd for stream data, or quiescence info.
724 * - if need metadata, get metadata, goto retry.
725 * - if new stream, get new stream as ACTIVE_NO_DATA, goto retry
726 * - if quiescent, move to QUIESCENT streams
727 * - if fetched data, move to ACTIVE_DATA streams
728 * (at this point each stream either has data, or is quiescent)
729 *
730 *
731 * iterator_next:
732 * handle_new_streams_and_metadata()
733 * - query relayd for known streams, add them as ACTIVE_NO_DATA
734 * - query relayd for metadata
735 *
736 * call handle_active_no_data_streams()
737 *
738 * handle_quiescent_streams()
739 * - if at least one stream is ACTIVE_DATA:
740 * - peek stream event with lowest timestamp -> next_ts
741 * - for each quiescent stream
742 * - if next_ts >= quiescent end
743 * - set state to ACTIVE_NO_DATA
744 * - else
745 * - for each quiescent stream
746 * - set state to ACTIVE_NO_DATA
747 *
748 * call handle_active_no_data_streams()
749 *
750 * handle_active_data_streams()
751 * - if at least one stream is ACTIVE_DATA:
752 * - get stream event with lowest timestamp from heap
753 * - make that stream event the current message.
754 * - move this stream heap position to its next event
755 * - if we need to fetch data from relayd, move
756 * stream to ACTIVE_NO_DATA.
757 * - return OK
758 * - return AGAIN
759 *
760 * end criterion: ctrl-c on client. If relayd exits or the session
761 * closes on the relay daemon side, we keep on waiting for streams.
762 * Eventually handle --end timestamp (also an end criterion).
763 *
764 * When disconnected from relayd: try to re-connect endlessly.
765 */
766 static enum lttng_live_iterator_status
767 lttng_live_iterator_next_msg_on_stream(struct lttng_live_msg_iter *lttng_live_msg_iter,
768 struct lttng_live_stream_iterator *stream_iter,
769 bt2::ConstMessage::Shared& curr_msg)
770 {
771 enum lttng_live_iterator_status live_status;
772
773 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
774 "Advancing live stream iterator until next message if possible: "
775 "stream-name=\"{}\", viewer-stream-id={}",
776 stream_iter->name, stream_iter->viewer_stream_id);
777
778 if (stream_iter->has_stream_hung_up) {
779 /*
780 * The stream has hung up and the stream was properly closed
781 * during the last call to the current function. Return _END
782 * status now so that this stream iterator is removed for the
783 * stream iterator list.
784 */
785 live_status = LTTNG_LIVE_ITERATOR_STATUS_END;
786 goto end;
787 }
788
789 retry:
790 LTTNG_LIVE_LOGD_STREAM_ITER(stream_iter);
791
792 /*
793 * Make sure we have the most recent metadata and possibly some new
794 * streams.
795 */
796 live_status = lttng_live_iterator_handle_new_streams_and_metadata(lttng_live_msg_iter);
797 if (live_status != LTTNG_LIVE_ITERATOR_STATUS_OK) {
798 goto end;
799 }
800
801 live_status =
802 lttng_live_iterator_next_handle_one_no_data_stream(lttng_live_msg_iter, stream_iter);
803 if (live_status != LTTNG_LIVE_ITERATOR_STATUS_OK) {
804 if (live_status == LTTNG_LIVE_ITERATOR_STATUS_END) {
805 /*
806 * We overwrite `live_status` since `curr_msg` is
807 * likely set to a valid message in this function.
808 */
809 live_status =
810 lttng_live_iterator_close_stream(lttng_live_msg_iter, stream_iter, curr_msg);
811 }
812 goto end;
813 }
814
815 live_status = lttng_live_iterator_next_handle_one_quiescent_stream(lttng_live_msg_iter,
816 stream_iter, curr_msg);
817 if (live_status != LTTNG_LIVE_ITERATOR_STATUS_OK) {
818 BT_ASSERT(!curr_msg);
819 goto end;
820 }
821 if (curr_msg) {
822 goto end;
823 }
824 live_status = lttng_live_iterator_next_handle_one_active_data_stream(lttng_live_msg_iter,
825 stream_iter, curr_msg);
826 if (live_status != LTTNG_LIVE_ITERATOR_STATUS_OK) {
827 BT_ASSERT(!curr_msg);
828 }
829
830 end:
831 if (live_status == LTTNG_LIVE_ITERATOR_STATUS_CONTINUE) {
832 BT_CPPLOGD_SPEC(
833 lttng_live_msg_iter->logger,
834 "Ask the relay daemon for an updated view of the data and metadata streams");
835 goto retry;
836 }
837
838 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
839 "Returning from advancing live stream iterator: status={}, "
840 "stream-name=\"{}\", viewer-stream-id={}",
841 live_status, stream_iter->name, stream_iter->viewer_stream_id);
842
843 return live_status;
844 }
845
846 static bool is_discarded_packet_or_event_message(const bt2::ConstMessage msg)
847 {
848 return msg.type() == bt2::MessageType::DiscardedEvents ||
849 msg.type() == bt2::MessageType::DiscardedPackets;
850 }
851
852 static enum lttng_live_iterator_status
853 adjust_discarded_packets_message(bt_self_message_iterator *iter, const bt_stream *stream,
854 const bt_message *msg_in, bt2::ConstMessage::Shared& msg_out,
855 uint64_t new_begin_ts)
856 {
857 enum bt_property_availability availability;
858 const bt_clock_snapshot *clock_snapshot;
859 uint64_t end_ts;
860 uint64_t count;
861
862 clock_snapshot = bt_message_discarded_packets_borrow_end_default_clock_snapshot_const(msg_in);
863 end_ts = bt_clock_snapshot_get_value(clock_snapshot);
864
865 availability = bt_message_discarded_packets_get_count(msg_in, &count);
866 BT_ASSERT_DBG(availability == BT_PROPERTY_AVAILABILITY_AVAILABLE);
867
868 const auto msg = bt_message_discarded_packets_create_with_default_clock_snapshots(
869 iter, stream, new_begin_ts, end_ts);
870
871 if (!msg) {
872 return LTTNG_LIVE_ITERATOR_STATUS_NOMEM;
873 }
874
875 bt_message_discarded_packets_set_count(msg, count);
876 msg_out = bt2::ConstMessage::Shared::createWithoutRef(msg);
877 return LTTNG_LIVE_ITERATOR_STATUS_OK;
878 }
879
880 static enum lttng_live_iterator_status
881 adjust_discarded_events_message(bt_self_message_iterator *iter, const bt_stream *stream,
882 const bt_message *msg_in, bt2::ConstMessage::Shared& msg_out,
883 uint64_t new_begin_ts)
884 {
885 enum bt_property_availability availability;
886 const bt_clock_snapshot *clock_snapshot;
887 uint64_t end_ts;
888 uint64_t count;
889
890 clock_snapshot = bt_message_discarded_events_borrow_end_default_clock_snapshot_const(msg_in);
891 end_ts = bt_clock_snapshot_get_value(clock_snapshot);
892
893 availability = bt_message_discarded_events_get_count(msg_in, &count);
894 BT_ASSERT_DBG(availability == BT_PROPERTY_AVAILABILITY_AVAILABLE);
895
896 const auto msg = bt_message_discarded_events_create_with_default_clock_snapshots(
897 iter, stream, new_begin_ts, end_ts);
898
899 if (!msg) {
900 return LTTNG_LIVE_ITERATOR_STATUS_NOMEM;
901 }
902
903 bt_message_discarded_events_set_count(msg, count);
904 msg_out = bt2::ConstMessage::Shared::createWithoutRef(msg);
905 return LTTNG_LIVE_ITERATOR_STATUS_OK;
906 }
907
908 static enum lttng_live_iterator_status
909 handle_late_message(struct lttng_live_msg_iter *lttng_live_msg_iter,
910 struct lttng_live_stream_iterator *stream_iter, int64_t late_msg_ts_ns,
911 const bt2::ConstMessage& late_msg)
912 {
913 const bt_clock_class *clock_class;
914 const bt_stream_class *stream_class;
915 enum bt_clock_class_cycles_to_ns_from_origin_status ts_ns_status;
916 int64_t last_inactivity_ts_ns;
917 enum lttng_live_iterator_status stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_OK;
918 enum lttng_live_iterator_status adjust_status;
919 bt2::ConstMessage::Shared adjusted_message;
920
921 /*
922 * The timestamp of the current message is before the last message sent
923 * by this component. We CANNOT send it as is.
924 *
925 * The only expected scenario in which that could happen is the
926 * following, everything else is a bug in this component, relay daemon,
927 * or CTF parser.
928 *
929 * Expected scenario: The CTF message iterator emitted discarded
930 * packets and discarded events with synthesized beginning and end
931 * timestamps from the bounds of the last known packet and the newly
932 * decoded packet header. The CTF message iterator is not aware of
933 * stream inactivity beacons. Hence, we have to adjust the beginning
934 * timestamp of those types of messages if a stream signalled its
935 * inactivity up until _after_ the last known packet's beginning
936 * timestamp.
937 *
938 * Otherwise, the monotonicity guarantee of message timestamps would
939 * not be preserved.
940 *
941 * In short, the only scenario in which it's okay and fixable to
942 * received a late message is when:
943 * 1. the late message is a discarded packets or discarded events
944 * message,
945 * 2. this stream produced an inactivity message downstream, and
946 * 3. the timestamp of the late message is within the inactivity
947 * timespan we sent downstream through the inactivity message.
948 */
949
950 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
951 "Handling late message on live stream iterator: "
952 "stream-name=\"{}\", viewer-stream-id={}",
953 stream_iter->name, stream_iter->viewer_stream_id);
954
955 if (!stream_iter->last_inactivity_ts.is_set) {
956 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
957 "Invalid live stream state: "
958 "have a late message when no inactivity message "
959 "was ever sent for that stream.");
960 stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
961 goto end;
962 }
963
964 if (!is_discarded_packet_or_event_message(late_msg)) {
965 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
966 "Invalid live stream state: "
967 "have a late message that is not a packet discarded or "
968 "event discarded message: late-msg-type={}",
969 late_msg.type());
970 stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
971 goto end;
972 }
973
974 stream_class = bt_stream_borrow_class_const(stream_iter->stream->libObjPtr());
975 clock_class = bt_stream_class_borrow_default_clock_class_const(stream_class);
976
977 ts_ns_status = bt_clock_class_cycles_to_ns_from_origin(
978 clock_class, stream_iter->last_inactivity_ts.value, &last_inactivity_ts_ns);
979 if (ts_ns_status != BT_CLOCK_CLASS_CYCLES_TO_NS_FROM_ORIGIN_STATUS_OK) {
980 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
981 "Error converting last "
982 "inactivity message timestamp to nanoseconds");
983 stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
984 goto end;
985 }
986
987 if (last_inactivity_ts_ns <= late_msg_ts_ns) {
988 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
989 "Invalid live stream state: "
990 "have a late message that is none included in a stream "
991 "inactivity timespan: last-inactivity-ts-ns={}, "
992 "late-msg-ts-ns={}",
993 last_inactivity_ts_ns, late_msg_ts_ns);
994 stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
995 goto end;
996 }
997
998 /*
999 * We now know that it's okay for this message to be late, we can now
1000 * adjust its timestamp to ensure monotonicity.
1001 */
1002 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
1003 "Adjusting the timestamp of late message: late-msg-type={}, "
1004 "msg-new-ts-ns={}",
1005 late_msg.type(), stream_iter->last_inactivity_ts.value);
1006 switch (late_msg.type()) {
1007 case bt2::MessageType::DiscardedEvents:
1008 adjust_status = adjust_discarded_events_message(
1009 lttng_live_msg_iter->self_msg_iter, stream_iter->stream->libObjPtr(),
1010 late_msg.libObjPtr(), adjusted_message, stream_iter->last_inactivity_ts.value);
1011 break;
1012 case bt2::MessageType::DiscardedPackets:
1013 adjust_status = adjust_discarded_packets_message(
1014 lttng_live_msg_iter->self_msg_iter, stream_iter->stream->libObjPtr(),
1015 late_msg.libObjPtr(), adjusted_message, stream_iter->last_inactivity_ts.value);
1016 break;
1017 default:
1018 bt_common_abort();
1019 }
1020
1021 if (adjust_status != LTTNG_LIVE_ITERATOR_STATUS_OK) {
1022 stream_iter_status = adjust_status;
1023 goto end;
1024 }
1025
1026 BT_ASSERT_DBG(adjusted_message);
1027 stream_iter->current_msg = adjusted_message;
1028 stream_iter->current_msg_ts_ns = last_inactivity_ts_ns;
1029
1030 end:
1031 return stream_iter_status;
1032 }
1033
1034 static enum lttng_live_iterator_status
1035 next_stream_iterator_for_trace(struct lttng_live_msg_iter *lttng_live_msg_iter,
1036 struct lttng_live_trace *live_trace,
1037 struct lttng_live_stream_iterator **youngest_trace_stream_iter)
1038 {
1039 struct lttng_live_stream_iterator *youngest_candidate_stream_iter = NULL;
1040 enum lttng_live_iterator_status stream_iter_status;
1041 int64_t youngest_candidate_msg_ts = INT64_MAX;
1042 uint64_t stream_iter_idx;
1043
1044 BT_ASSERT_DBG(live_trace);
1045
1046 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
1047 "Finding the next stream iterator for trace: "
1048 "trace-id={}",
1049 live_trace->id);
1050 /*
1051 * Update the current message of every stream iterators of this trace.
1052 * The current msg of every stream must have a timestamp equal or
1053 * larger than the last message returned by this iterator. We must
1054 * ensure monotonicity.
1055 */
1056 stream_iter_idx = 0;
1057 while (stream_iter_idx < live_trace->stream_iterators.size()) {
1058 bool stream_iter_is_ended = false;
1059 lttng_live_stream_iterator *stream_iter =
1060 live_trace->stream_iterators[stream_iter_idx].get();
1061
1062 /*
1063 * If there is no current message for this stream, go fetch
1064 * one.
1065 */
1066 while (!stream_iter->current_msg) {
1067 bt2::ConstMessage::Shared msg;
1068 int64_t curr_msg_ts_ns = INT64_MAX;
1069
1070 stream_iter_status =
1071 lttng_live_iterator_next_msg_on_stream(lttng_live_msg_iter, stream_iter, msg);
1072
1073 if (stream_iter_status == LTTNG_LIVE_ITERATOR_STATUS_END) {
1074 stream_iter_is_ended = true;
1075 break;
1076 }
1077
1078 if (stream_iter_status != LTTNG_LIVE_ITERATOR_STATUS_OK) {
1079 goto end;
1080 }
1081
1082 BT_ASSERT_DBG(msg);
1083
1084 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
1085 "Live stream iterator returned message: msg-type={}, "
1086 "stream-name=\"{}\", viewer-stream-id={}",
1087 msg->type(), stream_iter->name, stream_iter->viewer_stream_id);
1088
1089 /*
1090 * Get the timestamp in nanoseconds from origin of this
1091 * message.
1092 */
1093 live_get_msg_ts_ns(lttng_live_msg_iter, msg->libObjPtr(),
1094 lttng_live_msg_iter->last_msg_ts_ns, &curr_msg_ts_ns);
1095
1096 /*
1097 * Check if the message of the current live stream
1098 * iterator occurred at the exact same time or after the
1099 * last message returned by this component's message
1100 * iterator. If not, we need to handle it with care.
1101 */
1102 if (curr_msg_ts_ns >= lttng_live_msg_iter->last_msg_ts_ns) {
1103 stream_iter->current_msg = std::move(msg);
1104 stream_iter->current_msg_ts_ns = curr_msg_ts_ns;
1105 } else {
1106 /*
1107 * We received a message from the past. This
1108 * may be fixable but it can also be an error.
1109 */
1110 stream_iter_status =
1111 handle_late_message(lttng_live_msg_iter, stream_iter, curr_msg_ts_ns, *msg);
1112 if (stream_iter_status != LTTNG_LIVE_ITERATOR_STATUS_OK) {
1113 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
1114 "Late message could not be handled correctly: "
1115 "lttng-live-msg-iter-addr={}, "
1116 "stream-name=\"{}\", "
1117 "curr-msg-ts={}, last-msg-ts={}",
1118 fmt::ptr(lttng_live_msg_iter), stream_iter->name,
1119 curr_msg_ts_ns,
1120 lttng_live_msg_iter->last_msg_ts_ns);
1121 stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_ERROR;
1122 goto end;
1123 }
1124 }
1125 }
1126
1127 BT_ASSERT_DBG(stream_iter != youngest_candidate_stream_iter);
1128
1129 if (!stream_iter_is_ended) {
1130 if (G_UNLIKELY(youngest_candidate_stream_iter == NULL) ||
1131 stream_iter->current_msg_ts_ns < youngest_candidate_msg_ts) {
1132 /*
1133 * Update the current best candidate message
1134 * for the stream iterator of this live trace
1135 * to be forwarded downstream.
1136 */
1137 youngest_candidate_msg_ts = stream_iter->current_msg_ts_ns;
1138 youngest_candidate_stream_iter = stream_iter;
1139 } else if (stream_iter->current_msg_ts_ns == youngest_candidate_msg_ts) {
1140 /*
1141 * Order the messages in an arbitrary but
1142 * deterministic way.
1143 */
1144 BT_ASSERT_DBG(stream_iter != youngest_candidate_stream_iter);
1145 int ret = common_muxing_compare_messages(
1146 stream_iter->current_msg->libObjPtr(),
1147 youngest_candidate_stream_iter->current_msg->libObjPtr());
1148 if (ret < 0) {
1149 /*
1150 * The `youngest_candidate_stream_iter->current_msg`
1151 * should go first. Update the next
1152 * iterator and the current timestamp.
1153 */
1154 youngest_candidate_msg_ts = stream_iter->current_msg_ts_ns;
1155 youngest_candidate_stream_iter = stream_iter;
1156 } else if (ret == 0) {
1157 /*
1158 * Unable to pick which one should go
1159 * first.
1160 */
1161 BT_CPPLOGW_SPEC(
1162 lttng_live_msg_iter->logger,
1163 "Cannot deterministically pick next live stream message iterator because they have identical next messages: "
1164 "stream-iter-addr={}"
1165 "stream-iter-addr={}",
1166 fmt::ptr(stream_iter), fmt::ptr(youngest_candidate_stream_iter));
1167 }
1168 }
1169
1170 stream_iter_idx++;
1171 } else {
1172 /*
1173 * The live stream iterator has ended. That
1174 * iterator is removed from the array, but
1175 * there is no need to increment
1176 * stream_iter_idx as
1177 * g_ptr_array_remove_index_fast replaces the
1178 * removed element with the array's last
1179 * element.
1180 */
1181 bt2c::vectorFastRemove(live_trace->stream_iterators, stream_iter_idx);
1182 }
1183 }
1184
1185 if (youngest_candidate_stream_iter) {
1186 *youngest_trace_stream_iter = youngest_candidate_stream_iter;
1187 stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_OK;
1188 } else {
1189 /*
1190 * The only case where we don't have a candidate for this trace
1191 * is if we reached the end of all the iterators.
1192 */
1193 BT_ASSERT(live_trace->stream_iterators.empty());
1194 stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_END;
1195 }
1196
1197 end:
1198 return stream_iter_status;
1199 }
1200
1201 static enum lttng_live_iterator_status
1202 next_stream_iterator_for_session(struct lttng_live_msg_iter *lttng_live_msg_iter,
1203 struct lttng_live_session *session,
1204 struct lttng_live_stream_iterator **youngest_session_stream_iter)
1205 {
1206 enum lttng_live_iterator_status stream_iter_status;
1207 uint64_t trace_idx = 0;
1208 int64_t youngest_candidate_msg_ts = INT64_MAX;
1209 struct lttng_live_stream_iterator *youngest_candidate_stream_iter = NULL;
1210
1211 BT_CPPLOGD_SPEC(lttng_live_msg_iter->logger,
1212 "Finding the next stream iterator for session: "
1213 "session-id={}",
1214 session->id);
1215 /*
1216 * Make sure we are attached to the session and look for new streams
1217 * and metadata.
1218 */
1219 stream_iter_status = lttng_live_get_session(lttng_live_msg_iter, session);
1220 if (stream_iter_status != LTTNG_LIVE_ITERATOR_STATUS_OK &&
1221 stream_iter_status != LTTNG_LIVE_ITERATOR_STATUS_CONTINUE &&
1222 stream_iter_status != LTTNG_LIVE_ITERATOR_STATUS_END) {
1223 goto end;
1224 }
1225
1226 while (trace_idx < session->traces.size()) {
1227 bool trace_is_ended = false;
1228 struct lttng_live_stream_iterator *stream_iter;
1229 lttng_live_trace *trace = session->traces[trace_idx].get();
1230
1231 stream_iter_status =
1232 next_stream_iterator_for_trace(lttng_live_msg_iter, trace, &stream_iter);
1233 if (stream_iter_status == LTTNG_LIVE_ITERATOR_STATUS_END) {
1234 /*
1235 * All the live stream iterators for this trace are
1236 * ENDed. Remove the trace from this session.
1237 */
1238 trace_is_ended = true;
1239 } else if (stream_iter_status != LTTNG_LIVE_ITERATOR_STATUS_OK) {
1240 goto end;
1241 }
1242
1243 if (!trace_is_ended) {
1244 BT_ASSERT_DBG(stream_iter);
1245
1246 if (G_UNLIKELY(youngest_candidate_stream_iter == NULL) ||
1247 stream_iter->current_msg_ts_ns < youngest_candidate_msg_ts) {
1248 youngest_candidate_msg_ts = stream_iter->current_msg_ts_ns;
1249 youngest_candidate_stream_iter = stream_iter;
1250 } else if (stream_iter->current_msg_ts_ns == youngest_candidate_msg_ts) {
1251 /*
1252 * Order the messages in an arbitrary but
1253 * deterministic way.
1254 */
1255 int ret = common_muxing_compare_messages(
1256 stream_iter->current_msg->libObjPtr(),
1257 youngest_candidate_stream_iter->current_msg->libObjPtr());
1258 if (ret < 0) {
1259 /*
1260 * The `youngest_candidate_stream_iter->current_msg`
1261 * should go first. Update the next iterator
1262 * and the current timestamp.
1263 */
1264 youngest_candidate_msg_ts = stream_iter->current_msg_ts_ns;
1265 youngest_candidate_stream_iter = stream_iter;
1266 } else if (ret == 0) {
1267 /* Unable to pick which one should go first. */
1268 BT_CPPLOGW_SPEC(
1269 lttng_live_msg_iter->logger,
1270 "Cannot deterministically pick next live stream message iterator because they have identical next messages: "
1271 "stream-iter-addr={}"
1272 "youngest-candidate-stream-iter-addr={}",
1273 fmt::ptr(stream_iter), fmt::ptr(youngest_candidate_stream_iter));
1274 }
1275 }
1276 trace_idx++;
1277 } else {
1278 /*
1279 * trace_idx is not incremented since
1280 * vectorFastRemove replaces the
1281 * element at trace_idx with the array's last element.
1282 */
1283 bt2c::vectorFastRemove(session->traces, trace_idx);
1284 }
1285 }
1286 if (youngest_candidate_stream_iter) {
1287 *youngest_session_stream_iter = youngest_candidate_stream_iter;
1288 stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_OK;
1289 } else {
1290 /*
1291 * The only cases where we don't have a candidate for this
1292 * trace is:
1293 * 1. if we reached the end of all the iterators of all the
1294 * traces of this session,
1295 * 2. if we never had live stream iterator in the first place.
1296 *
1297 * In either cases, we return END.
1298 */
1299 BT_ASSERT(session->traces.empty());
1300 stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_END;
1301 }
1302 end:
1303 return stream_iter_status;
1304 }
1305
1306 static inline void put_messages(bt_message_array_const msgs, uint64_t count)
1307 {
1308 uint64_t i;
1309
1310 for (i = 0; i < count; i++) {
1311 BT_MESSAGE_PUT_REF_AND_RESET(msgs[i]);
1312 }
1313 }
1314
1315 bt_message_iterator_class_next_method_status
1316 lttng_live_msg_iter_next(bt_self_message_iterator *self_msg_it, bt_message_array_const msgs,
1317 uint64_t capacity, uint64_t *count)
1318 {
1319 try {
1320 bt_message_iterator_class_next_method_status status;
1321 enum lttng_live_viewer_status viewer_status;
1322 struct lttng_live_msg_iter *lttng_live_msg_iter =
1323 (struct lttng_live_msg_iter *) bt_self_message_iterator_get_data(self_msg_it);
1324 struct lttng_live_component *lttng_live = lttng_live_msg_iter->lttng_live_comp;
1325 enum lttng_live_iterator_status stream_iter_status;
1326
1327 *count = 0;
1328
1329 BT_ASSERT_DBG(lttng_live_msg_iter);
1330
1331 if (G_UNLIKELY(lttng_live_msg_iter->was_interrupted)) {
1332 /*
1333 * The iterator was interrupted in a previous call to the
1334 * `_next()` method. We currently do not support generating
1335 * messages after such event. The babeltrace2 CLI should never
1336 * be running the graph after being interrupted. So this check
1337 * is to prevent other graph users from using this live
1338 * iterator in an messed up internal state.
1339 */
1340 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR;
1341 BT_CPPLOGE_APPEND_CAUSE_SPEC(
1342 lttng_live_msg_iter->logger,
1343 "Message iterator was interrupted during a previous call to the `next()` and currently does not support continuing after such event.");
1344 goto end;
1345 }
1346
1347 /*
1348 * Clear all the invalid message reference that might be left over in
1349 * the output array.
1350 */
1351 memset(msgs, 0, capacity * sizeof(*msgs));
1352
1353 /*
1354 * If no session are exposed on the relay found at the url provided by
1355 * the user, session count will be 0. In this case, we return status
1356 * end to return gracefully.
1357 */
1358 if (lttng_live_msg_iter->sessions.empty()) {
1359 if (lttng_live->params.sess_not_found_act != SESSION_NOT_FOUND_ACTION_CONTINUE) {
1360 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_END;
1361 goto end;
1362 } else {
1363 /*
1364 * The are no more active session for this session
1365 * name. Retry to create a viewer session for the
1366 * requested session name.
1367 */
1368 viewer_status = lttng_live_create_viewer_session(lttng_live_msg_iter);
1369 if (viewer_status != LTTNG_LIVE_VIEWER_STATUS_OK) {
1370 if (viewer_status == LTTNG_LIVE_VIEWER_STATUS_ERROR) {
1371 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR;
1372 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
1373 "Error creating LTTng live viewer session");
1374 } else if (viewer_status == LTTNG_LIVE_VIEWER_STATUS_INTERRUPTED) {
1375 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_AGAIN;
1376 } else {
1377 bt_common_abort();
1378 }
1379 goto end;
1380 }
1381 }
1382 }
1383
1384 if (lttng_live_msg_iter->active_stream_iter == 0) {
1385 lttng_live_force_new_streams_and_metadata(lttng_live_msg_iter);
1386 }
1387
1388 /*
1389 * Here the muxing of message is done.
1390 *
1391 * We need to iterate over all the streams of all the traces of all the
1392 * viewer sessions in order to get the message with the smallest
1393 * timestamp. In this case, a session is a viewer session and there is
1394 * one viewer session per consumer daemon. (UST 32bit, UST 64bit and/or
1395 * kernel). Each viewer session can have multiple traces, for example,
1396 * 64bit UST viewer sessions could have multiple per-pid traces.
1397 *
1398 * We iterate over the streams of each traces to update and see what is
1399 * their next message's timestamp. From those timestamps, we select the
1400 * message with the smallest timestamp as the best candidate message
1401 * for that trace and do the same thing across all the sessions.
1402 *
1403 * We then compare the timestamp of best candidate message of all the
1404 * sessions to pick the message with the smallest timestamp and we
1405 * return it.
1406 */
1407 while (*count < capacity) {
1408 struct lttng_live_stream_iterator *youngest_stream_iter = NULL,
1409 *candidate_stream_iter = NULL;
1410 int64_t youngest_msg_ts_ns = INT64_MAX;
1411
1412 uint64_t session_idx = 0;
1413 while (session_idx < lttng_live_msg_iter->sessions.size()) {
1414 lttng_live_session *session = lttng_live_msg_iter->sessions[session_idx].get();
1415
1416 /* Find the best candidate message to send downstream. */
1417 stream_iter_status = next_stream_iterator_for_session(lttng_live_msg_iter, session,
1418 &candidate_stream_iter);
1419
1420 /* If we receive an END status, it means that either:
1421 * - Those traces never had active streams (UST with no
1422 * data produced yet),
1423 * - All live stream iterators have ENDed.
1424 */
1425 if (stream_iter_status == LTTNG_LIVE_ITERATOR_STATUS_END) {
1426 if (session->closed && session->traces.empty()) {
1427 /*
1428 * Remove the session from the list.
1429 * session_idx is not modified since
1430 * g_ptr_array_remove_index_fast
1431 * replaces the the removed element with
1432 * the array's last element.
1433 */
1434 bt2c::vectorFastRemove(lttng_live_msg_iter->sessions, session_idx);
1435 } else {
1436 session_idx++;
1437 }
1438 continue;
1439 }
1440
1441 if (stream_iter_status != LTTNG_LIVE_ITERATOR_STATUS_OK) {
1442 goto return_status;
1443 }
1444
1445 if (G_UNLIKELY(youngest_stream_iter == NULL) ||
1446 candidate_stream_iter->current_msg_ts_ns < youngest_msg_ts_ns) {
1447 youngest_msg_ts_ns = candidate_stream_iter->current_msg_ts_ns;
1448 youngest_stream_iter = candidate_stream_iter;
1449 } else if (candidate_stream_iter->current_msg_ts_ns == youngest_msg_ts_ns) {
1450 /*
1451 * The currently selected message to be sent
1452 * downstream next has the exact same timestamp
1453 * that of the current candidate message. We
1454 * must break the tie in a predictable manner.
1455 */
1456 BT_CPPLOGD_STR_SPEC(
1457 lttng_live_msg_iter->logger,
1458 "Two of the next message candidates have the same timestamps, pick one deterministically.");
1459 /*
1460 * Order the messages in an arbitrary but
1461 * deterministic way.
1462 */
1463 int ret = common_muxing_compare_messages(
1464 candidate_stream_iter->current_msg->libObjPtr(),
1465 youngest_stream_iter->current_msg->libObjPtr());
1466 if (ret < 0) {
1467 /*
1468 * The `candidate_stream_iter->current_msg`
1469 * should go first. Update the next
1470 * iterator and the current timestamp.
1471 */
1472 youngest_msg_ts_ns = candidate_stream_iter->current_msg_ts_ns;
1473 youngest_stream_iter = candidate_stream_iter;
1474 } else if (ret == 0) {
1475 /* Unable to pick which one should go first. */
1476 BT_CPPLOGW_SPEC(
1477 lttng_live_msg_iter->logger,
1478 "Cannot deterministically pick next live stream message iterator because they have identical next messages: "
1479 "next-stream-iter-addr={}"
1480 "candidate-stream-iter-addr={}",
1481 fmt::ptr(youngest_stream_iter), fmt::ptr(candidate_stream_iter));
1482 }
1483 }
1484
1485 session_idx++;
1486 }
1487
1488 if (!youngest_stream_iter) {
1489 stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_AGAIN;
1490 goto return_status;
1491 }
1492
1493 BT_ASSERT_DBG(youngest_stream_iter->current_msg);
1494 /* Ensure monotonicity. */
1495 BT_ASSERT_DBG(lttng_live_msg_iter->last_msg_ts_ns <=
1496 youngest_stream_iter->current_msg_ts_ns);
1497
1498 /*
1499 * Insert the next message to the message batch. This will set
1500 * stream iterator current message to NULL so that next time
1501 * we fetch the next message of that stream iterator
1502 */
1503 msgs[*count] = youngest_stream_iter->current_msg.release().libObjPtr();
1504 (*count)++;
1505
1506 /* Update the last timestamp in nanoseconds sent downstream. */
1507 lttng_live_msg_iter->last_msg_ts_ns = youngest_msg_ts_ns;
1508 youngest_stream_iter->current_msg_ts_ns = INT64_MAX;
1509
1510 stream_iter_status = LTTNG_LIVE_ITERATOR_STATUS_OK;
1511 }
1512
1513 return_status:
1514 switch (stream_iter_status) {
1515 case LTTNG_LIVE_ITERATOR_STATUS_OK:
1516 case LTTNG_LIVE_ITERATOR_STATUS_AGAIN:
1517 /*
1518 * If we gathered messages, return _OK even if the graph was
1519 * interrupted. This allows for the components downstream to at
1520 * least get the those messages. If the graph was indeed
1521 * interrupted there should not be another _next() call as the
1522 * application will tear down the graph. This component class
1523 * doesn't support restarting after an interruption.
1524 */
1525 if (*count > 0) {
1526 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK;
1527 } else {
1528 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_AGAIN;
1529 }
1530 break;
1531 case LTTNG_LIVE_ITERATOR_STATUS_END:
1532 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_END;
1533 break;
1534 case LTTNG_LIVE_ITERATOR_STATUS_NOMEM:
1535 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
1536 "Memory error preparing the next batch of messages: "
1537 "live-iter-status={}",
1538 stream_iter_status);
1539 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_MEMORY_ERROR;
1540 break;
1541 case LTTNG_LIVE_ITERATOR_STATUS_ERROR:
1542 case LTTNG_LIVE_ITERATOR_STATUS_INVAL:
1543 case LTTNG_LIVE_ITERATOR_STATUS_UNSUPPORTED:
1544 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
1545 "Error preparing the next batch of messages: "
1546 "live-iter-status={}",
1547 stream_iter_status);
1548
1549 status = BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR;
1550 /* Put all existing messages on error. */
1551 put_messages(msgs, *count);
1552 break;
1553 default:
1554 bt_common_abort();
1555 }
1556
1557 end:
1558 return status;
1559 } catch (const std::bad_alloc&) {
1560 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_MEMORY_ERROR;
1561 } catch (const bt2::Error&) {
1562 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR;
1563 }
1564 }
1565
1566 static lttng_live_msg_iter::UP
1567 lttng_live_msg_iter_create(struct lttng_live_component *lttng_live_comp,
1568 bt_self_message_iterator *self_msg_it)
1569 {
1570 auto msg_iter = bt2s::make_unique<struct lttng_live_msg_iter>(lttng_live_comp->logger);
1571
1572 msg_iter->self_comp = lttng_live_comp->self_comp;
1573 msg_iter->lttng_live_comp = lttng_live_comp;
1574 msg_iter->self_msg_iter = self_msg_it;
1575 msg_iter->active_stream_iter = 0;
1576 msg_iter->last_msg_ts_ns = INT64_MIN;
1577 msg_iter->was_interrupted = false;
1578
1579 return msg_iter;
1580 }
1581
1582 bt_message_iterator_class_initialize_method_status
1583 lttng_live_msg_iter_init(bt_self_message_iterator *self_msg_it,
1584 bt_self_message_iterator_configuration *, bt_self_component_port_output *)
1585 {
1586 try {
1587 struct lttng_live_component *lttng_live;
1588 enum lttng_live_viewer_status viewer_status;
1589 bt_self_component *self_comp = bt_self_message_iterator_borrow_component(self_msg_it);
1590
1591 lttng_live = (lttng_live_component *) bt_self_component_get_data(self_comp);
1592
1593 /* There can be only one downstream iterator at the same time. */
1594 BT_ASSERT(!lttng_live->has_msg_iter);
1595 lttng_live->has_msg_iter = true;
1596
1597 auto lttng_live_msg_iter = lttng_live_msg_iter_create(lttng_live, self_msg_it);
1598 if (!lttng_live_msg_iter) {
1599 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live->logger,
1600 "Failed to create lttng_live_msg_iter");
1601 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
1602 }
1603
1604 viewer_status = live_viewer_connection_create(
1605 lttng_live->params.url.c_str(), false, lttng_live_msg_iter.get(),
1606 lttng_live_msg_iter->logger, lttng_live_msg_iter->viewer_connection);
1607 if (viewer_status != LTTNG_LIVE_VIEWER_STATUS_OK) {
1608 if (viewer_status == LTTNG_LIVE_VIEWER_STATUS_ERROR) {
1609 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
1610 "Failed to create viewer connection");
1611 } else if (viewer_status == LTTNG_LIVE_VIEWER_STATUS_INTERRUPTED) {
1612 /*
1613 * Interruption in the _iter_init() method is not
1614 * supported. Return an error.
1615 */
1616 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
1617 "Interrupted while creating viewer connection");
1618 }
1619
1620 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
1621 }
1622
1623 viewer_status = lttng_live_create_viewer_session(lttng_live_msg_iter.get());
1624 if (viewer_status != LTTNG_LIVE_VIEWER_STATUS_OK) {
1625 if (viewer_status == LTTNG_LIVE_VIEWER_STATUS_ERROR) {
1626 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
1627 "Failed to create viewer session");
1628 } else if (viewer_status == LTTNG_LIVE_VIEWER_STATUS_INTERRUPTED) {
1629 /*
1630 * Interruption in the _iter_init() method is not
1631 * supported. Return an error.
1632 */
1633 BT_CPPLOGE_APPEND_CAUSE_SPEC(lttng_live_msg_iter->logger,
1634 "Interrupted when creating viewer session");
1635 }
1636
1637 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
1638 }
1639
1640 if (lttng_live_msg_iter->sessions.empty()) {
1641 switch (lttng_live->params.sess_not_found_act) {
1642 case SESSION_NOT_FOUND_ACTION_CONTINUE:
1643 BT_CPPLOGI_SPEC(
1644 lttng_live_msg_iter->logger,
1645 "Unable to connect to the requested live viewer session. "
1646 "Keep trying to connect because of {}=\"{}\" component parameter: url=\"{}\"",
1647 SESS_NOT_FOUND_ACTION_PARAM, SESS_NOT_FOUND_ACTION_CONTINUE_STR,
1648 lttng_live->params.url);
1649 break;
1650 case SESSION_NOT_FOUND_ACTION_FAIL:
1651 BT_CPPLOGE_APPEND_CAUSE_SPEC(
1652 lttng_live_msg_iter->logger,
1653 "Unable to connect to the requested live viewer session. "
1654 "Fail the message iterator initialization because of {}=\"{}\" "
1655 "component parameter: url =\"{}\"",
1656 SESS_NOT_FOUND_ACTION_PARAM, SESS_NOT_FOUND_ACTION_FAIL_STR,
1657 lttng_live->params.url);
1658 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
1659 case SESSION_NOT_FOUND_ACTION_END:
1660 BT_CPPLOGI_SPEC(lttng_live_msg_iter->logger,
1661 "Unable to connect to the requested live viewer session. "
1662 "End gracefully at the first _next() call because of {}=\"{}\""
1663 " component parameter: url=\"{}\"",
1664 SESS_NOT_FOUND_ACTION_PARAM, SESS_NOT_FOUND_ACTION_END_STR,
1665 lttng_live->params.url);
1666 break;
1667 default:
1668 bt_common_abort();
1669 }
1670 }
1671
1672 bt_self_message_iterator_set_data(self_msg_it, lttng_live_msg_iter.release());
1673 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_OK;
1674 } catch (const std::bad_alloc&) {
1675 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
1676 } catch (const bt2::Error&) {
1677 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
1678 }
1679 }
1680
1681 static struct bt_param_validation_map_value_entry_descr list_sessions_params[] = {
1682 {URL_PARAM, BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_MANDATORY,
1683 bt_param_validation_value_descr::makeString()},
1684 BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_END};
1685
1686 static bt2::Value::Shared lttng_live_query_list_sessions(const bt2::ConstMapValue params,
1687 const bt2c::Logger& logger)
1688 {
1689 const char *url;
1690 live_viewer_connection::UP viewer_connection;
1691 enum lttng_live_viewer_status viewer_status;
1692 enum bt_param_validation_status validation_status;
1693 gchar *validate_error = NULL;
1694
1695 validation_status =
1696 bt_param_validation_validate(params.libObjPtr(), list_sessions_params, &validate_error);
1697 if (validation_status == BT_PARAM_VALIDATION_STATUS_MEMORY_ERROR) {
1698 throw bt2c::MemoryError {};
1699 } else if (validation_status == BT_PARAM_VALIDATION_STATUS_VALIDATION_ERROR) {
1700 bt2c::GCharUP errorFreer {validate_error};
1701
1702 BT_CPPLOGE_APPEND_CAUSE_AND_THROW_SPEC(logger, bt2::Error, "{}", validate_error);
1703 }
1704
1705 url = params[URL_PARAM]->asString().value();
1706
1707 viewer_status = live_viewer_connection_create(url, true, NULL, logger, viewer_connection);
1708 if (viewer_status != LTTNG_LIVE_VIEWER_STATUS_OK) {
1709 if (viewer_status == LTTNG_LIVE_VIEWER_STATUS_ERROR) {
1710 BT_CPPLOGE_APPEND_CAUSE_AND_THROW_SPEC(logger, bt2::Error,
1711 "Failed to create viewer connection");
1712 } else if (viewer_status == LTTNG_LIVE_VIEWER_STATUS_INTERRUPTED) {
1713 throw bt2c::TryAgain {};
1714 } else {
1715 bt_common_abort();
1716 }
1717 }
1718
1719 return live_viewer_connection_list_sessions(viewer_connection.get());
1720 }
1721
1722 static bt2::Value::Shared lttng_live_query_support_info(const bt2::ConstMapValue params,
1723 const bt2c::Logger& logger)
1724 {
1725 struct bt_common_lttng_live_url_parts parts = {};
1726 bt_common_lttng_live_url_parts_deleter partsDeleter {parts};
1727
1728 /* Used by the logging macros */
1729 __attribute__((unused)) bt_self_component *self_comp = NULL;
1730
1731 const auto typeValue = params["type"];
1732 if (!typeValue) {
1733 BT_CPPLOGE_APPEND_CAUSE_AND_THROW_SPEC(logger, bt2::Error,
1734 "Missing expected `type` parameter.");
1735 }
1736
1737 if (!typeValue->isString()) {
1738 BT_CPPLOGE_APPEND_CAUSE_AND_THROW_SPEC(logger, bt2::Error,
1739 "`type` parameter is not a string value.");
1740 }
1741
1742 if (strcmp(typeValue->asString().value(), "string") != 0) {
1743 /* We don't handle file system paths */
1744 return bt2::RealValue::create();
1745 }
1746
1747 const auto inputValue = params["input"];
1748 if (!inputValue) {
1749 BT_CPPLOGE_APPEND_CAUSE_AND_THROW_SPEC(logger, bt2::Error,
1750 "Missing expected `input` parameter.");
1751 }
1752
1753 if (!inputValue->isString()) {
1754 BT_CPPLOGE_APPEND_CAUSE_AND_THROW_SPEC(logger, bt2::Error,
1755 "`input` parameter is not a string value.");
1756 }
1757
1758 parts = bt_common_parse_lttng_live_url(inputValue->asString().value(), NULL, 0);
1759 if (parts.session_name) {
1760 /*
1761 * Looks pretty much like an LTTng live URL: we got the
1762 * session name part, which forms a complete URL.
1763 */
1764 return bt2::RealValue::create(.75);
1765 }
1766
1767 return bt2::RealValue::create();
1768 }
1769
1770 bt_component_class_query_method_status lttng_live_query(bt_self_component_class_source *comp_class,
1771 bt_private_query_executor *priv_query_exec,
1772 const char *object, const bt_value *params,
1773 __attribute__((unused)) void *method_data,
1774 const bt_value **result)
1775 {
1776 try {
1777 bt2c::Logger logger {bt2::SelfComponentClass {comp_class},
1778 bt2::PrivateQueryExecutor {priv_query_exec},
1779 "PLUGIN/SRC.CTF.LTTNG-LIVE/QUERY"};
1780 const bt2::ConstMapValue paramsObj(params);
1781 bt2::Value::Shared resultObj;
1782
1783 if (strcmp(object, "sessions") == 0) {
1784 resultObj = lttng_live_query_list_sessions(paramsObj, logger);
1785 } else if (strcmp(object, "babeltrace.support-info") == 0) {
1786 resultObj = lttng_live_query_support_info(paramsObj, logger);
1787 } else {
1788 BT_CPPLOGI_SPEC(logger, "Unknown query object `{}`", object);
1789 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_UNKNOWN_OBJECT;
1790 }
1791
1792 *result = resultObj.release().libObjPtr();
1793
1794 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_OK;
1795 } catch (const bt2c::TryAgain&) {
1796 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR;
1797 } catch (const std::bad_alloc&) {
1798 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR;
1799 } catch (const bt2::Error&) {
1800 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR;
1801 }
1802 }
1803
1804 void lttng_live_component_finalize(bt_self_component_source *component)
1805 {
1806 lttng_live_component::UP {static_cast<lttng_live_component *>(
1807 bt_self_component_get_data(bt_self_component_source_as_self_component(component)))};
1808 }
1809
1810 static enum session_not_found_action
1811 parse_session_not_found_action_param(const bt_value *no_session_param)
1812 {
1813 enum session_not_found_action action;
1814 const char *no_session_act_str = bt_value_string_get(no_session_param);
1815
1816 if (strcmp(no_session_act_str, SESS_NOT_FOUND_ACTION_CONTINUE_STR) == 0) {
1817 action = SESSION_NOT_FOUND_ACTION_CONTINUE;
1818 } else if (strcmp(no_session_act_str, SESS_NOT_FOUND_ACTION_FAIL_STR) == 0) {
1819 action = SESSION_NOT_FOUND_ACTION_FAIL;
1820 } else {
1821 BT_ASSERT(strcmp(no_session_act_str, SESS_NOT_FOUND_ACTION_END_STR) == 0);
1822 action = SESSION_NOT_FOUND_ACTION_END;
1823 }
1824
1825 return action;
1826 }
1827
1828 static bt_param_validation_value_descr inputs_elem_descr =
1829 bt_param_validation_value_descr::makeString();
1830
1831 static const char *sess_not_found_action_choices[] = {
1832 SESS_NOT_FOUND_ACTION_CONTINUE_STR,
1833 SESS_NOT_FOUND_ACTION_FAIL_STR,
1834 SESS_NOT_FOUND_ACTION_END_STR,
1835 };
1836
1837 static struct bt_param_validation_map_value_entry_descr params_descr[] = {
1838 {INPUTS_PARAM, BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_MANDATORY,
1839 bt_param_validation_value_descr::makeArray(1, 1, inputs_elem_descr)},
1840 {SESS_NOT_FOUND_ACTION_PARAM, BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL,
1841 bt_param_validation_value_descr::makeString(sess_not_found_action_choices)},
1842 BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_END};
1843
1844 static bt_component_class_initialize_method_status
1845 lttng_live_component_create(const bt_value *params, bt_self_component_source *self_comp,
1846 lttng_live_component::UP& component)
1847 {
1848 const bt_value *inputs_value;
1849 const bt_value *url_value;
1850 const bt_value *value;
1851 enum bt_param_validation_status validation_status;
1852 gchar *validation_error = NULL;
1853 bt2c::Logger logger {bt2::SelfSourceComponent {self_comp}, "PLUGIN/SRC.CTF.LTTNG-LIVE/COMP"};
1854
1855 validation_status = bt_param_validation_validate(params, params_descr, &validation_error);
1856 if (validation_status == BT_PARAM_VALIDATION_STATUS_MEMORY_ERROR) {
1857 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
1858 } else if (validation_status == BT_PARAM_VALIDATION_STATUS_VALIDATION_ERROR) {
1859 bt2c::GCharUP errorFreer {validation_error};
1860 BT_CPPLOGE_APPEND_CAUSE_SPEC(logger, "{}", validation_error);
1861 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
1862 }
1863
1864 auto lttng_live = bt2s::make_unique<lttng_live_component>(std::move(logger));
1865 lttng_live->self_comp = bt_self_component_source_as_self_component(self_comp);
1866 lttng_live->max_query_size = MAX_QUERY_SIZE;
1867 lttng_live->has_msg_iter = false;
1868
1869 inputs_value = bt_value_map_borrow_entry_value_const(params, INPUTS_PARAM);
1870 url_value = bt_value_array_borrow_element_by_index_const(inputs_value, 0);
1871 lttng_live->params.url = bt_value_string_get(url_value);
1872
1873 value = bt_value_map_borrow_entry_value_const(params, SESS_NOT_FOUND_ACTION_PARAM);
1874 if (value) {
1875 lttng_live->params.sess_not_found_act = parse_session_not_found_action_param(value);
1876 } else {
1877 BT_CPPLOGI_SPEC(lttng_live->logger,
1878 "Optional `{}` parameter is missing: defaulting to `{}`.",
1879 SESS_NOT_FOUND_ACTION_PARAM, SESS_NOT_FOUND_ACTION_CONTINUE_STR);
1880 lttng_live->params.sess_not_found_act = SESSION_NOT_FOUND_ACTION_CONTINUE;
1881 }
1882
1883 component = std::move(lttng_live);
1884 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK;
1885 }
1886
1887 bt_component_class_initialize_method_status
1888 lttng_live_component_init(bt_self_component_source *self_comp_src,
1889 bt_self_component_source_configuration *, const bt_value *params, void *)
1890 {
1891 try {
1892 lttng_live_component::UP lttng_live;
1893 bt_component_class_initialize_method_status ret;
1894 bt_self_component *self_comp = bt_self_component_source_as_self_component(self_comp_src);
1895 bt_self_component_add_port_status add_port_status;
1896
1897 ret = lttng_live_component_create(params, self_comp_src, lttng_live);
1898 if (ret != BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK) {
1899 return ret;
1900 }
1901
1902 add_port_status =
1903 bt_self_component_source_add_output_port(self_comp_src, "out", NULL, NULL);
1904 if (add_port_status != BT_SELF_COMPONENT_ADD_PORT_STATUS_OK) {
1905 ret = (bt_component_class_initialize_method_status) add_port_status;
1906 return ret;
1907 }
1908
1909 bt_self_component_set_data(self_comp, lttng_live.release());
1910
1911 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK;
1912 } catch (const std::bad_alloc&) {
1913 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
1914 } catch (const bt2::Error&) {
1915 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
1916 }
1917 }
This page took 0.113222 seconds and 3 git commands to generate.