X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=formats%2Fctf%2Fctf.c;h=5f263cd36e9a50bae29981ba1d9daba24920c62d;hb=8793d9f8b7d71898bd3097af5e584517268370d4;hp=278956b85e32a253af7491c8528b85712e643119;hpb=a74d9cb2e7b76755f5c52652eb0879eacc2a564c;p=babeltrace.git diff --git a/formats/ctf/ctf.c b/formats/ctf/ctf.c index 278956b8..5f263cd3 100644 --- a/formats/ctf/ctf.c +++ b/formats/ctf/ctf.c @@ -471,6 +471,11 @@ int ctf_read_event(struct bt_stream_pos *ppos, struct ctf_stream_definition *str */ if (unlikely(pos->offset == EOF)) return EOF; + + if (pos->content_size == 0) { + /* Stream is inactive for now (live reading). */ + return EAGAIN; + } assert(pos->offset < pos->content_size); /* Read event header */ @@ -1572,6 +1577,11 @@ begin: return -EINVAL; } + if (packet_index.content_size < pos->offset) { + fprintf(stderr, "[error] Invalid CTF stream: content size is smaller than packet headers.\n"); + return -EINVAL; + } + if ((packet_index.packet_size >> LOG2_CHAR_BIT) == 0) { fprintf(stderr, "[error] Invalid CTF stream: packet size needs to be at least one byte\n"); return -EINVAL;