lttng-dev.lists.lttng.org archive mirror
 help / color / mirror / Atom feed
From: Simon Marchi via lttng-dev <lttng-dev@lists.lttng.org>
To: Dimitri Scheftelowitsch <dimitri.scheftelowitsch@esrlabs.com>,
	lttng-dev@lists.lttng.org
Subject: Re: [lttng-dev] Babeltrace trimmer segfaults on custom trace
Date: Tue, 4 May 2021 21:57:14 -0400	[thread overview]
Message-ID: <69a2d37a-d60d-deba-02d2-c3084f62b84f@polymtl.ca> (raw)
In-Reply-To: <CANQXvtRR1HvzQkwmzH_HMGGJjx2PP_XAiOgLZxjMWbuyhzjH6g@mail.gmail.com>

On 2021-05-04 10:21 a.m., Dimitri Scheftelowitsch via lttng-dev wrote:
> 
> Hi,
> 
> as mentioned on the IRC channel, babeltrace2 (both HEAD and current release in the lttng Ubuntu 20 repo) aborts with a violated precondition in `bt_clock_snapshot_get_ns_from_origin` on some custom traces we created. One of these traces is attached. It seems that the offending message is of type `BT_MESSAGE_TYPE_PACKET_BEGINNING`. What is confusing is that the pretty-printer does not seem to be influenced by this, and furthermore, I am not sure that this type of message actually requires a timestamp (at least if I understood the CTF spec correctly). Is this an issue with the trace itself or rather with babeltrace2?
> 
> To reproduce: `babeltrace2 nvctf --timerange="17:09:13.034123470,17:29:18.034216302"`.
> 
> Any help would be appreciated.

Hi Dimitri,

Thanks for providing a trace, the issue was very easy to reproduce.

There are indeed some missing checks in the trimmer code and the lib
code to avoid hitting some asserts when dealing with packets that have
no timestamps (clock snapshots).  I have a beginning of a patch here:

  https://review.lttng.org/c/babeltrace/+/5677

However, once that is fixed, I hit:

  https://github.com/efficios/babeltrace/blob/534d93a8b2ba86f56dfdf6aa7a10911da5f6432c/src/plugins/utils/trimmer/trimmer.c#L1284-L1290

If the trace has packets, the trimmer component currently requires
packets to have timestamps.   It would be possible for the trimmer to
support packet messages without timestamps, but support for it is not
implemented right now.  I tried to see if it would be possible for you
to just not use packets, but unfortunately I stumbled on what looks like
a bug in the CTF metadata parser, it hardcodes whether streams classes
have packets to true:

  https://github.com/efficios/babeltrace/blob/534d93a8b2ba86f56dfdf6aa7a10911da5f6432c/src/plugins/ctf/common/metadata/ctf-meta-translate.c#L576

So when I tried removing the packet from your trace, trimmer was still
unhappy about it.

The easiest immediate fix for you would probably be to add some
timestamps to your packets.  Looking at an LTTng trace, we can see:

struct packet_context {
        uint64_clock_monotonic_t timestamp_begin;
        uint64_clock_monotonic_t timestamp_end;
        uint64_t content_size;
        uint64_t packet_size;
        uint64_t packet_seq_num;
        unsigned long events_discarded;
        uint32_t cpu_id;
};

and

stream {
        id = 0;
        event.header := struct event_header_large;
        packet.context := struct packet_context;
};

So you can try adding a packet context with the two "timestamp" fields.
Just make sure that timestamp_begin is <= your first event's timestamp
and timestamp_end is >= your last event's timestamp.

And of course, the other option is to fix Babeltrace, if you have some
cycles to spare.

Simon
_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

  reply	other threads:[~2021-05-05  2:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-04 14:21 [lttng-dev] Babeltrace trimmer segfaults on custom trace Dimitri Scheftelowitsch via lttng-dev
2021-05-05  1:57 ` Simon Marchi via lttng-dev [this message]
2021-05-05 13:45   ` Simon Marchi via lttng-dev
2021-05-20  8:34     ` [lttng-dev] [External] " Dimitri Scheftelowitsch via lttng-dev

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=69a2d37a-d60d-deba-02d2-c3084f62b84f@polymtl.ca \
    --to=lttng-dev@lists.lttng.org \
    --cc=dimitri.scheftelowitsch@esrlabs.com \
    --cc=simon.marchi@polymtl.ca \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).