Fix: src.ctf.lttng-live: session closed before any metadata is received
authorFrancis Deslauriers <francis.deslauriers@efficios.com>
Tue, 23 Nov 2021 15:06:51 +0000 (10:06 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 25 Feb 2022 20:30:38 +0000 (15:30 -0500)
commitdfad4cb9d9923b02d9d13dac07aca6a2a13a083f
tree98fe78754914c44e2d74fecbb952ca7ae12e1850
parent9bf987e185ed7f7a6f7c3244289f9a3d685a448f
Fix: src.ctf.lttng-live: session closed before any metadata is received

Issue
=====
When stress-testing the LTTng-UST clear feature over an entire night I
witnessed 6 instances of Babeltrace infinite loop.

Using the GNU Debugger, Babeltrace was found to be endlessly issuing the
`LTTNG_VIEWER_GET_NEW_STREAMS` command to the Relay daemon to which the
Relay Daemon endlessly replied `LTTNG_VIEWER_NEW_STREAMS_HUP`.

This is caused by the fact that the session was closed before we
received any metadata and the lttng-live component class keeps trying to
ask for new streams before requesting the metadata.

Fix
===
If the session is marked as closed return a `_STATUS_END` to stop
considering this session.

Signed-off-by: Francis Deslauriers <francis.deslauriers@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
Change-Id: I9c18d03cef1b61d1c02b7d608720bf5750a348c4
Reviewed-on: https://review.lttng.org/c/babeltrace/+/7390
src/plugins/ctf/lttng-live/metadata.c
This page took 0.024002 seconds and 4 git commands to generate.