Commit | Line | Data |
---|---|---|
fc93b2bd MD |
1 | /* |
2 | * BabelTrace - Common Trace Format (CTF) | |
3 | * | |
4 | * Format registration. | |
5 | * | |
64fa3fec MD |
6 | * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation |
7 | * | |
8 | * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
fc93b2bd | 9 | * |
ccd7e1c8 MD |
10 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
11 | * of this software and associated documentation files (the "Software"), to deal | |
12 | * in the Software without restriction, including without limitation the rights | |
13 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
14 | * copies of the Software, and to permit persons to whom the Software is | |
15 | * furnished to do so, subject to the following conditions: | |
fc93b2bd | 16 | * |
ccd7e1c8 MD |
17 | * The above copyright notice and this permission notice shall be included in |
18 | * all copies or substantial portions of the Software. | |
c462e188 MD |
19 | * |
20 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
21 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
22 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
23 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
24 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
25 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
26 | * SOFTWARE. | |
fc93b2bd MD |
27 | */ |
28 | ||
29 | #include <babeltrace/format.h> | |
30 | #include <babeltrace/ctf/types.h> | |
bbefb8dd | 31 | #include <babeltrace/ctf/metadata.h> |
70bd0a12 | 32 | #include <babeltrace/babeltrace-internal.h> |
e4195791 | 33 | #include <babeltrace/ctf/events-internal.h> |
98a04903 JD |
34 | #include <babeltrace/trace-handle-internal.h> |
35 | #include <babeltrace/context-internal.h> | |
43e34335 MD |
36 | #include <babeltrace/uuid.h> |
37 | #include <babeltrace/endian.h> | |
0f980a35 | 38 | #include <inttypes.h> |
b4c19c1e | 39 | #include <stdio.h> |
0f980a35 | 40 | #include <sys/mman.h> |
bbefb8dd | 41 | #include <errno.h> |
bbefb8dd | 42 | #include <sys/types.h> |
65102a8c | 43 | #include <sys/stat.h> |
bbefb8dd | 44 | #include <fcntl.h> |
65102a8c | 45 | #include <dirent.h> |
bbefb8dd | 46 | #include <glib.h> |
65102a8c MD |
47 | #include <unistd.h> |
48 | #include <stdlib.h> | |
49 | ||
65102a8c MD |
50 | #include "metadata/ctf-scanner.h" |
51 | #include "metadata/ctf-parser.h" | |
52 | #include "metadata/ctf-ast.h" | |
c34ea0fa | 53 | #include "events-private.h" |
f8370579 | 54 | #include "memstream.h" |
65102a8c | 55 | |
0f980a35 MD |
56 | /* |
57 | * We currently simply map a page to read the packet header and packet | |
8c572eba | 58 | * context to get the packet length and content length. (in bits) |
0f980a35 | 59 | */ |
8c572eba MD |
60 | #define MAX_PACKET_HEADER_LEN (getpagesize() * CHAR_BIT) |
61 | #define WRITE_PACKET_LEN (getpagesize() * 8 * CHAR_BIT) | |
0f980a35 | 62 | |
a0fe7d97 MD |
63 | #ifndef min |
64 | #define min(a, b) (((a) < (b)) ? (a) : (b)) | |
65 | #endif | |
66 | ||
7d97fad9 MD |
67 | #define NSEC_PER_SEC 1000000000ULL |
68 | ||
03798a93 | 69 | int opt_clock_cycles, |
7d97fad9 MD |
70 | opt_clock_seconds, |
71 | opt_clock_date, | |
72 | opt_clock_gmt; | |
73 | ||
74 | uint64_t opt_clock_offset; | |
75 | ||
65102a8c | 76 | extern int yydebug; |
bbefb8dd | 77 | |
e9378815 | 78 | static |
5b80ddfb | 79 | struct trace_descriptor *ctf_open_trace(const char *path, int flags, |
1cf393f6 | 80 | void (*packet_seek)(struct bt_stream_pos *pos, size_t index, |
20d0dcf9 MD |
81 | int whence), |
82 | FILE *metadata_fp); | |
e9378815 | 83 | static |
f571dfb1 JD |
84 | struct trace_descriptor *ctf_open_mmap_trace( |
85 | struct mmap_stream_list *mmap_list, | |
1cf393f6 | 86 | void (*packet_seek)(struct bt_stream_pos *pos, size_t index, |
20d0dcf9 | 87 | int whence), |
f571dfb1 | 88 | FILE *metadata_fp); |
98a04903 JD |
89 | static |
90 | void ctf_set_context(struct trace_descriptor *descriptor, | |
91 | struct bt_context *ctx); | |
92 | static | |
93 | void ctf_set_handle(struct trace_descriptor *descriptor, | |
94 | struct bt_trace_handle *handle); | |
f571dfb1 JD |
95 | |
96 | static | |
f824ae04 | 97 | int ctf_close_trace(struct trace_descriptor *descriptor); |
30c276af JD |
98 | static |
99 | uint64_t ctf_timestamp_begin(struct trace_descriptor *descriptor, | |
03798a93 | 100 | struct bt_trace_handle *handle, enum bt_clock_type type); |
30c276af JD |
101 | static |
102 | uint64_t ctf_timestamp_end(struct trace_descriptor *descriptor, | |
03798a93 JD |
103 | struct bt_trace_handle *handle, enum bt_clock_type type); |
104 | static | |
105 | int ctf_convert_index_timestamp(struct trace_descriptor *tdp); | |
fc93b2bd | 106 | |
1ae19169 MD |
107 | static |
108 | rw_dispatch read_dispatch_table[] = { | |
d11e9c49 MD |
109 | [ CTF_TYPE_INTEGER ] = ctf_integer_read, |
110 | [ CTF_TYPE_FLOAT ] = ctf_float_read, | |
111 | [ CTF_TYPE_ENUM ] = ctf_enum_read, | |
112 | [ CTF_TYPE_STRING ] = ctf_string_read, | |
113 | [ CTF_TYPE_STRUCT ] = ctf_struct_rw, | |
114 | [ CTF_TYPE_VARIANT ] = ctf_variant_rw, | |
81dee1bb MD |
115 | [ CTF_TYPE_ARRAY ] = ctf_array_read, |
116 | [ CTF_TYPE_SEQUENCE ] = ctf_sequence_read, | |
d11e9c49 MD |
117 | }; |
118 | ||
1ae19169 MD |
119 | static |
120 | rw_dispatch write_dispatch_table[] = { | |
d11e9c49 MD |
121 | [ CTF_TYPE_INTEGER ] = ctf_integer_write, |
122 | [ CTF_TYPE_FLOAT ] = ctf_float_write, | |
123 | [ CTF_TYPE_ENUM ] = ctf_enum_write, | |
124 | [ CTF_TYPE_STRING ] = ctf_string_write, | |
125 | [ CTF_TYPE_STRUCT ] = ctf_struct_rw, | |
126 | [ CTF_TYPE_VARIANT ] = ctf_variant_rw, | |
81dee1bb MD |
127 | [ CTF_TYPE_ARRAY ] = ctf_array_write, |
128 | [ CTF_TYPE_SEQUENCE ] = ctf_sequence_write, | |
d11e9c49 MD |
129 | }; |
130 | ||
1ae19169 | 131 | static |
d11e9c49 | 132 | struct format ctf_format = { |
bbefb8dd | 133 | .open_trace = ctf_open_trace, |
f571dfb1 | 134 | .open_mmap_trace = ctf_open_mmap_trace, |
bbefb8dd | 135 | .close_trace = ctf_close_trace, |
98a04903 JD |
136 | .set_context = ctf_set_context, |
137 | .set_handle = ctf_set_handle, | |
30c276af JD |
138 | .timestamp_begin = ctf_timestamp_begin, |
139 | .timestamp_end = ctf_timestamp_end, | |
03798a93 | 140 | .convert_index_timestamp = ctf_convert_index_timestamp, |
fc93b2bd MD |
141 | }; |
142 | ||
30c276af JD |
143 | static |
144 | uint64_t ctf_timestamp_begin(struct trace_descriptor *descriptor, | |
03798a93 | 145 | struct bt_trace_handle *handle, enum bt_clock_type type) |
30c276af JD |
146 | { |
147 | struct ctf_trace *tin; | |
148 | uint64_t begin = ULLONG_MAX; | |
149 | int i, j; | |
150 | ||
151 | tin = container_of(descriptor, struct ctf_trace, parent); | |
152 | ||
153 | if (!tin) | |
154 | goto error; | |
155 | ||
156 | /* for each stream_class */ | |
157 | for (i = 0; i < tin->streams->len; i++) { | |
158 | struct ctf_stream_declaration *stream_class; | |
159 | ||
160 | stream_class = g_ptr_array_index(tin->streams, i); | |
1b01ffc2 MD |
161 | if (!stream_class) |
162 | continue; | |
30c276af JD |
163 | /* for each file_stream */ |
164 | for (j = 0; j < stream_class->streams->len; j++) { | |
165 | struct ctf_stream_definition *stream; | |
166 | struct ctf_file_stream *cfs; | |
167 | struct ctf_stream_pos *stream_pos; | |
168 | struct packet_index *index; | |
169 | ||
170 | stream = g_ptr_array_index(stream_class->streams, j); | |
171 | cfs = container_of(stream, struct ctf_file_stream, | |
172 | parent); | |
173 | stream_pos = &cfs->pos; | |
174 | ||
03798a93 JD |
175 | if (!stream_pos->packet_real_index) |
176 | goto error; | |
177 | ||
afe9cd4a JD |
178 | if (stream_pos->packet_real_index->len <= 0) |
179 | continue; | |
180 | ||
03798a93 JD |
181 | if (type == BT_CLOCK_REAL) { |
182 | index = &g_array_index(stream_pos->packet_real_index, | |
183 | struct packet_index, | |
184 | stream_pos->packet_real_index->len - 1); | |
185 | } else if (type == BT_CLOCK_CYCLES) { | |
186 | index = &g_array_index(stream_pos->packet_cycles_index, | |
187 | struct packet_index, | |
188 | stream_pos->packet_real_index->len - 1); | |
189 | ||
190 | } else { | |
191 | goto error; | |
192 | } | |
30c276af JD |
193 | if (index->timestamp_begin < begin) |
194 | begin = index->timestamp_begin; | |
195 | } | |
196 | } | |
197 | ||
198 | return begin; | |
199 | ||
200 | error: | |
201 | return -1ULL; | |
202 | } | |
203 | ||
204 | static | |
205 | uint64_t ctf_timestamp_end(struct trace_descriptor *descriptor, | |
03798a93 | 206 | struct bt_trace_handle *handle, enum bt_clock_type type) |
30c276af JD |
207 | { |
208 | struct ctf_trace *tin; | |
209 | uint64_t end = 0; | |
210 | int i, j; | |
211 | ||
212 | tin = container_of(descriptor, struct ctf_trace, parent); | |
213 | ||
214 | if (!tin) | |
215 | goto error; | |
216 | ||
217 | /* for each stream_class */ | |
218 | for (i = 0; i < tin->streams->len; i++) { | |
219 | struct ctf_stream_declaration *stream_class; | |
220 | ||
221 | stream_class = g_ptr_array_index(tin->streams, i); | |
1b01ffc2 MD |
222 | if (!stream_class) |
223 | continue; | |
30c276af JD |
224 | /* for each file_stream */ |
225 | for (j = 0; j < stream_class->streams->len; j++) { | |
226 | struct ctf_stream_definition *stream; | |
227 | struct ctf_file_stream *cfs; | |
228 | struct ctf_stream_pos *stream_pos; | |
229 | struct packet_index *index; | |
230 | ||
231 | stream = g_ptr_array_index(stream_class->streams, j); | |
232 | cfs = container_of(stream, struct ctf_file_stream, | |
233 | parent); | |
234 | stream_pos = &cfs->pos; | |
235 | ||
03798a93 JD |
236 | if (!stream_pos->packet_real_index) |
237 | goto error; | |
238 | ||
afe9cd4a JD |
239 | if (stream_pos->packet_real_index->len <= 0) |
240 | continue; | |
241 | ||
03798a93 JD |
242 | if (type == BT_CLOCK_REAL) { |
243 | index = &g_array_index(stream_pos->packet_real_index, | |
244 | struct packet_index, | |
245 | stream_pos->packet_real_index->len - 1); | |
246 | } else if (type == BT_CLOCK_CYCLES) { | |
247 | index = &g_array_index(stream_pos->packet_cycles_index, | |
248 | struct packet_index, | |
249 | stream_pos->packet_real_index->len - 1); | |
250 | ||
251 | } else { | |
252 | goto error; | |
253 | } | |
30c276af JD |
254 | if (index->timestamp_end > end) |
255 | end = index->timestamp_end; | |
256 | } | |
257 | } | |
258 | ||
259 | return end; | |
260 | ||
261 | error: | |
262 | return -1ULL; | |
263 | } | |
264 | ||
25ccc85b | 265 | /* |
03798a93 | 266 | * Update stream current timestamp |
25ccc85b | 267 | */ |
2b9a764d | 268 | static |
9e88d150 | 269 | void ctf_update_timestamp(struct ctf_stream_definition *stream, |
2b9a764d MD |
270 | struct definition_integer *integer_definition) |
271 | { | |
272 | struct declaration_integer *integer_declaration = | |
273 | integer_definition->declaration; | |
274 | uint64_t oldval, newval, updateval; | |
275 | ||
7f3f572b | 276 | if (unlikely(integer_declaration->len == 64)) { |
03798a93 JD |
277 | stream->prev_cycles_timestamp = stream->cycles_timestamp; |
278 | stream->cycles_timestamp = integer_definition->value._unsigned; | |
279 | stream->prev_real_timestamp = ctf_get_real_timestamp(stream, | |
280 | stream->prev_cycles_timestamp); | |
281 | stream->real_timestamp = ctf_get_real_timestamp(stream, | |
282 | stream->cycles_timestamp); | |
2b9a764d MD |
283 | return; |
284 | } | |
285 | /* keep low bits */ | |
03798a93 | 286 | oldval = stream->cycles_timestamp; |
2b9a764d MD |
287 | oldval &= (1ULL << integer_declaration->len) - 1; |
288 | newval = integer_definition->value._unsigned; | |
289 | /* Test for overflow by comparing low bits */ | |
290 | if (newval < oldval) | |
291 | newval += 1ULL << integer_declaration->len; | |
292 | /* updateval contains old high bits, and new low bits (sum) */ | |
03798a93 | 293 | updateval = stream->cycles_timestamp; |
2b9a764d MD |
294 | updateval &= ~((1ULL << integer_declaration->len) - 1); |
295 | updateval += newval; | |
03798a93 JD |
296 | stream->prev_cycles_timestamp = stream->cycles_timestamp; |
297 | stream->cycles_timestamp = updateval; | |
298 | ||
299 | /* convert to real timestamp */ | |
300 | stream->prev_real_timestamp = ctf_get_real_timestamp(stream, | |
301 | stream->prev_cycles_timestamp); | |
302 | stream->real_timestamp = ctf_get_real_timestamp(stream, | |
303 | stream->cycles_timestamp); | |
2b9a764d MD |
304 | } |
305 | ||
25ccc85b MD |
306 | /* |
307 | * Print timestamp, rescaling clock frequency to nanoseconds and | |
308 | * applying offsets as needed (unix time). | |
309 | */ | |
2e937fb4 | 310 | static |
03798a93 | 311 | void ctf_print_timestamp_real(FILE *fp, |
9e88d150 | 312 | struct ctf_stream_definition *stream, |
7d97fad9 MD |
313 | uint64_t timestamp) |
314 | { | |
315 | uint64_t ts_sec = 0, ts_nsec; | |
7d97fad9 | 316 | |
03798a93 | 317 | ts_nsec = timestamp; |
7d97fad9 | 318 | |
c34ea0fa | 319 | /* Add command-line offset */ |
7d97fad9 MD |
320 | ts_sec += opt_clock_offset; |
321 | ||
322 | ts_sec += ts_nsec / NSEC_PER_SEC; | |
323 | ts_nsec = ts_nsec % NSEC_PER_SEC; | |
324 | ||
325 | if (!opt_clock_seconds) { | |
326 | struct tm tm; | |
327 | time_t time_s = (time_t) ts_sec; | |
328 | ||
329 | if (!opt_clock_gmt) { | |
330 | struct tm *res; | |
331 | ||
332 | res = localtime_r(&time_s, &tm); | |
333 | if (!res) { | |
334 | fprintf(stderr, "[warning] Unable to get localtime.\n"); | |
335 | goto seconds; | |
336 | } | |
337 | } else { | |
338 | struct tm *res; | |
339 | ||
340 | res = gmtime_r(&time_s, &tm); | |
341 | if (!res) { | |
342 | fprintf(stderr, "[warning] Unable to get gmtime.\n"); | |
343 | goto seconds; | |
344 | } | |
345 | } | |
346 | if (opt_clock_date) { | |
347 | char timestr[26]; | |
348 | size_t res; | |
349 | ||
350 | /* Print date and time */ | |
351 | res = strftime(timestr, sizeof(timestr), | |
352 | "%F ", &tm); | |
353 | if (!res) { | |
354 | fprintf(stderr, "[warning] Unable to print ascii time.\n"); | |
355 | goto seconds; | |
356 | } | |
357 | fprintf(fp, "%s", timestr); | |
358 | } | |
359 | /* Print time in HH:MM:SS.ns */ | |
360 | fprintf(fp, "%02d:%02d:%02d.%09" PRIu64, | |
361 | tm.tm_hour, tm.tm_min, tm.tm_sec, ts_nsec); | |
362 | goto end; | |
363 | } | |
364 | seconds: | |
365 | fprintf(fp, "%3" PRIu64 ".%09" PRIu64, | |
366 | ts_sec, ts_nsec); | |
367 | ||
368 | end: | |
369 | return; | |
370 | } | |
371 | ||
03798a93 JD |
372 | /* |
373 | * Print timestamp, in cycles | |
374 | */ | |
2e937fb4 | 375 | static |
03798a93 JD |
376 | void ctf_print_timestamp_cycles(FILE *fp, |
377 | struct ctf_stream_definition *stream, | |
378 | uint64_t timestamp) | |
379 | { | |
380 | fprintf(fp, "%020" PRIu64, timestamp); | |
381 | } | |
382 | ||
383 | void ctf_print_timestamp(FILE *fp, | |
384 | struct ctf_stream_definition *stream, | |
385 | uint64_t timestamp) | |
386 | { | |
387 | if (opt_clock_cycles) { | |
388 | ctf_print_timestamp_cycles(fp, stream, timestamp); | |
389 | } else { | |
390 | ctf_print_timestamp_real(fp, stream, timestamp); | |
391 | } | |
392 | } | |
393 | ||
31262354 | 394 | static |
1cf393f6 | 395 | int ctf_read_event(struct bt_stream_pos *ppos, struct ctf_stream_definition *stream) |
31262354 MD |
396 | { |
397 | struct ctf_stream_pos *pos = | |
398 | container_of(ppos, struct ctf_stream_pos, parent); | |
f380e105 | 399 | struct ctf_stream_declaration *stream_class = stream->stream_class; |
c716f83b | 400 | struct ctf_event_definition *event; |
31262354 | 401 | uint64_t id = 0; |
31262354 MD |
402 | int ret; |
403 | ||
3abe83c7 MD |
404 | /* We need to check for EOF here for empty files. */ |
405 | if (unlikely(pos->offset == EOF)) | |
406 | return EOF; | |
407 | ||
5f643ed7 MD |
408 | ctf_pos_get_event(pos); |
409 | ||
90fcbacc JD |
410 | /* save the current position as a restore point */ |
411 | pos->last_offset = pos->offset; | |
90fcbacc | 412 | |
3abe83c7 MD |
413 | /* |
414 | * This is the EOF check after we've advanced the position in | |
415 | * ctf_pos_get_event. | |
416 | */ | |
7f3f572b | 417 | if (unlikely(pos->offset == EOF)) |
31262354 | 418 | return EOF; |
5f643ed7 | 419 | assert(pos->offset < pos->content_size); |
31262354 MD |
420 | |
421 | /* Read event header */ | |
7f3f572b | 422 | if (likely(stream->stream_event_header)) { |
a35173fe | 423 | struct definition_integer *integer_definition; |
ccdb988e | 424 | struct definition *variant; |
a35173fe | 425 | |
e28d4618 | 426 | ret = generic_rw(ppos, &stream->stream_event_header->p); |
7f3f572b | 427 | if (unlikely(ret)) |
31262354 MD |
428 | goto error; |
429 | /* lookup event id */ | |
bf78e2cf | 430 | integer_definition = bt_lookup_integer(&stream->stream_event_header->p, "id", FALSE); |
a35173fe MD |
431 | if (integer_definition) { |
432 | id = integer_definition->value._unsigned; | |
433 | } else { | |
434 | struct definition_enum *enum_definition; | |
435 | ||
9e3274b0 | 436 | enum_definition = bt_lookup_enum(&stream->stream_event_header->p, "id", FALSE); |
a35173fe MD |
437 | if (enum_definition) { |
438 | id = enum_definition->integer->value._unsigned; | |
439 | } | |
31262354 | 440 | } |
764af3f4 | 441 | |
ebae302b | 442 | variant = bt_lookup_variant(&stream->stream_event_header->p, "v"); |
ccdb988e | 443 | if (variant) { |
bf78e2cf | 444 | integer_definition = bt_lookup_integer(variant, "id", FALSE); |
ccdb988e MD |
445 | if (integer_definition) { |
446 | id = integer_definition->value._unsigned; | |
447 | } | |
448 | } | |
c87a8eb2 | 449 | stream->event_id = id; |
ccdb988e | 450 | |
764af3f4 | 451 | /* lookup timestamp */ |
5e2eb0ae | 452 | stream->has_timestamp = 0; |
bf78e2cf | 453 | integer_definition = bt_lookup_integer(&stream->stream_event_header->p, "timestamp", FALSE); |
a35173fe | 454 | if (integer_definition) { |
2b9a764d | 455 | ctf_update_timestamp(stream, integer_definition); |
5e2eb0ae | 456 | stream->has_timestamp = 1; |
a35173fe | 457 | } else { |
ccdb988e | 458 | if (variant) { |
bf78e2cf | 459 | integer_definition = bt_lookup_integer(variant, "timestamp", FALSE); |
a35173fe | 460 | if (integer_definition) { |
2b9a764d | 461 | ctf_update_timestamp(stream, integer_definition); |
5e2eb0ae | 462 | stream->has_timestamp = 1; |
a35173fe MD |
463 | } |
464 | } | |
764af3f4 | 465 | } |
31262354 MD |
466 | } |
467 | ||
468 | /* Read stream-declared event context */ | |
e28d4618 MD |
469 | if (stream->stream_event_context) { |
470 | ret = generic_rw(ppos, &stream->stream_event_context->p); | |
31262354 MD |
471 | if (ret) |
472 | goto error; | |
473 | } | |
474 | ||
7f3f572b | 475 | if (unlikely(id >= stream_class->events_by_id->len)) { |
3394d22e | 476 | fprintf(stderr, "[error] Event id %" PRIu64 " is outside range.\n", id); |
31262354 MD |
477 | return -EINVAL; |
478 | } | |
e28d4618 | 479 | event = g_ptr_array_index(stream->events_by_id, id); |
7f3f572b | 480 | if (unlikely(!event)) { |
3394d22e | 481 | fprintf(stderr, "[error] Event id %" PRIu64 " is unknown.\n", id); |
31262354 MD |
482 | return -EINVAL; |
483 | } | |
484 | ||
485 | /* Read event-declared event context */ | |
e28d4618 MD |
486 | if (event->event_context) { |
487 | ret = generic_rw(ppos, &event->event_context->p); | |
31262354 MD |
488 | if (ret) |
489 | goto error; | |
490 | } | |
491 | ||
492 | /* Read event payload */ | |
7f3f572b | 493 | if (likely(event->event_fields)) { |
e28d4618 | 494 | ret = generic_rw(ppos, &event->event_fields->p); |
31262354 MD |
495 | if (ret) |
496 | goto error; | |
497 | } | |
498 | ||
499 | return 0; | |
500 | ||
501 | error: | |
3394d22e | 502 | fprintf(stderr, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n"); |
31262354 MD |
503 | return ret; |
504 | } | |
505 | ||
506 | static | |
1cf393f6 | 507 | int ctf_write_event(struct bt_stream_pos *pos, struct ctf_stream_definition *stream) |
31262354 | 508 | { |
f380e105 | 509 | struct ctf_stream_declaration *stream_class = stream->stream_class; |
c716f83b | 510 | struct ctf_event_definition *event; |
c87a8eb2 | 511 | uint64_t id; |
31262354 MD |
512 | int ret; |
513 | ||
c87a8eb2 MD |
514 | id = stream->event_id; |
515 | ||
31262354 | 516 | /* print event header */ |
7f3f572b | 517 | if (likely(stream->stream_event_header)) { |
e28d4618 | 518 | ret = generic_rw(pos, &stream->stream_event_header->p); |
31262354 MD |
519 | if (ret) |
520 | goto error; | |
521 | } | |
522 | ||
523 | /* print stream-declared event context */ | |
e28d4618 MD |
524 | if (stream->stream_event_context) { |
525 | ret = generic_rw(pos, &stream->stream_event_context->p); | |
31262354 MD |
526 | if (ret) |
527 | goto error; | |
528 | } | |
529 | ||
7f3f572b | 530 | if (unlikely(id >= stream_class->events_by_id->len)) { |
3394d22e | 531 | fprintf(stderr, "[error] Event id %" PRIu64 " is outside range.\n", id); |
31262354 MD |
532 | return -EINVAL; |
533 | } | |
e28d4618 | 534 | event = g_ptr_array_index(stream->events_by_id, id); |
7f3f572b | 535 | if (unlikely(!event)) { |
3394d22e | 536 | fprintf(stderr, "[error] Event id %" PRIu64 " is unknown.\n", id); |
31262354 MD |
537 | return -EINVAL; |
538 | } | |
539 | ||
540 | /* print event-declared event context */ | |
e28d4618 MD |
541 | if (event->event_context) { |
542 | ret = generic_rw(pos, &event->event_context->p); | |
31262354 MD |
543 | if (ret) |
544 | goto error; | |
545 | } | |
546 | ||
547 | /* Read and print event payload */ | |
7f3f572b | 548 | if (likely(event->event_fields)) { |
e28d4618 | 549 | ret = generic_rw(pos, &event->event_fields->p); |
31262354 MD |
550 | if (ret) |
551 | goto error; | |
552 | } | |
553 | ||
554 | return 0; | |
555 | ||
556 | error: | |
3394d22e | 557 | fprintf(stderr, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n"); |
31262354 MD |
558 | return ret; |
559 | } | |
560 | ||
f824ae04 | 561 | int ctf_init_pos(struct ctf_stream_pos *pos, int fd, int open_flags) |
8c572eba MD |
562 | { |
563 | pos->fd = fd; | |
37fcdd19 | 564 | if (fd >= 0) { |
03798a93 | 565 | pos->packet_cycles_index = g_array_new(FALSE, TRUE, |
8563e754 | 566 | sizeof(struct packet_index)); |
37fcdd19 JD |
567 | pos->packet_real_index = g_array_new(FALSE, TRUE, |
568 | sizeof(struct packet_index)); | |
569 | } else { | |
03798a93 | 570 | pos->packet_cycles_index = NULL; |
37fcdd19 JD |
571 | pos->packet_real_index = NULL; |
572 | } | |
8563e754 MD |
573 | switch (open_flags & O_ACCMODE) { |
574 | case O_RDONLY: | |
575 | pos->prot = PROT_READ; | |
576 | pos->flags = MAP_PRIVATE; | |
577 | pos->parent.rw_table = read_dispatch_table; | |
31262354 | 578 | pos->parent.event_cb = ctf_read_event; |
8563e754 | 579 | break; |
8563e754 MD |
580 | case O_RDWR: |
581 | pos->prot = PROT_WRITE; /* Write has priority */ | |
582 | pos->flags = MAP_SHARED; | |
583 | pos->parent.rw_table = write_dispatch_table; | |
31262354 | 584 | pos->parent.event_cb = ctf_write_event; |
8563e754 | 585 | if (fd >= 0) |
06789ffd | 586 | ctf_packet_seek(&pos->parent, 0, SEEK_SET); /* position for write */ |
8563e754 MD |
587 | break; |
588 | default: | |
589 | assert(0); | |
8c572eba | 590 | } |
f824ae04 | 591 | return 0; |
8c572eba MD |
592 | } |
593 | ||
f824ae04 | 594 | int ctf_fini_pos(struct ctf_stream_pos *pos) |
8c572eba | 595 | { |
8c572eba MD |
596 | if (pos->prot == PROT_WRITE && pos->content_size_loc) |
597 | *pos->content_size_loc = pos->offset; | |
aee35fcc | 598 | if (pos->base_mma) { |
08c82b90 MD |
599 | int ret; |
600 | ||
8c572eba | 601 | /* unmap old base */ |
aee35fcc | 602 | ret = munmap_align(pos->base_mma); |
8c572eba | 603 | if (ret) { |
3394d22e | 604 | fprintf(stderr, "[error] Unable to unmap old base: %s.\n", |
8c572eba | 605 | strerror(errno)); |
f824ae04 | 606 | return -1; |
8c572eba MD |
607 | } |
608 | } | |
37fcdd19 JD |
609 | if (pos->packet_cycles_index) |
610 | (void) g_array_free(pos->packet_cycles_index, TRUE); | |
611 | if (pos->packet_real_index) | |
612 | (void) g_array_free(pos->packet_real_index, TRUE); | |
f824ae04 | 613 | return 0; |
8c572eba MD |
614 | } |
615 | ||
20d0dcf9 MD |
616 | /* |
617 | * for SEEK_CUR: go to next packet. | |
618 | * for SEEK_POS: go to packet numer (index). | |
619 | */ | |
1cf393f6 | 620 | void ctf_packet_seek(struct bt_stream_pos *stream_pos, size_t index, int whence) |
0f980a35 | 621 | { |
d6425aaf MD |
622 | struct ctf_stream_pos *pos = |
623 | container_of(stream_pos, struct ctf_stream_pos, parent); | |
75cc2c35 MD |
624 | struct ctf_file_stream *file_stream = |
625 | container_of(pos, struct ctf_file_stream, pos); | |
0f980a35 | 626 | int ret; |
8c572eba | 627 | off_t off; |
20d0dcf9 | 628 | struct packet_index *packet_index; |
0f980a35 | 629 | |
8c572eba MD |
630 | if (pos->prot == PROT_WRITE && pos->content_size_loc) |
631 | *pos->content_size_loc = pos->offset; | |
0f980a35 | 632 | |
aee35fcc | 633 | if (pos->base_mma) { |
0f980a35 | 634 | /* unmap old base */ |
aee35fcc | 635 | ret = munmap_align(pos->base_mma); |
0f980a35 | 636 | if (ret) { |
3394d22e | 637 | fprintf(stderr, "[error] Unable to unmap old base: %s.\n", |
0f980a35 MD |
638 | strerror(errno)); |
639 | assert(0); | |
640 | } | |
aee35fcc | 641 | pos->base_mma = NULL; |
0f980a35 MD |
642 | } |
643 | ||
8c572eba | 644 | /* |
46322b33 | 645 | * The caller should never ask for ctf_move_pos across packets, |
8c572eba MD |
646 | * except to get exactly at the beginning of the next packet. |
647 | */ | |
648 | if (pos->prot == PROT_WRITE) { | |
989c73bc MD |
649 | switch (whence) { |
650 | case SEEK_CUR: | |
651 | /* The writer will add padding */ | |
8c572eba | 652 | pos->mmap_offset += WRITE_PACKET_LEN / CHAR_BIT; |
989c73bc MD |
653 | break; |
654 | case SEEK_SET: | |
20d0dcf9 | 655 | assert(index == 0); /* only seek supported for now */ |
989c73bc MD |
656 | pos->cur_index = 0; |
657 | break; | |
658 | default: | |
659 | assert(0); | |
660 | } | |
8c572eba MD |
661 | pos->content_size = -1U; /* Unknown at this point */ |
662 | pos->packet_size = WRITE_PACKET_LEN; | |
989c73bc MD |
663 | off = posix_fallocate(pos->fd, pos->mmap_offset, |
664 | pos->packet_size / CHAR_BIT); | |
8c572eba | 665 | assert(off >= 0); |
847bf71a | 666 | pos->offset = 0; |
8c572eba | 667 | } else { |
5f643ed7 | 668 | read_next_packet: |
847bf71a MD |
669 | switch (whence) { |
670 | case SEEK_CUR: | |
41e82e00 | 671 | { |
4c4ba021 | 672 | uint64_t events_discarded_diff; |
41e82e00 | 673 | |
7d97fad9 MD |
674 | if (pos->offset == EOF) { |
675 | return; | |
676 | } | |
3217ac37 | 677 | /* For printing discarded event count */ |
03798a93 | 678 | packet_index = &g_array_index(pos->packet_cycles_index, |
41e82e00 | 679 | struct packet_index, pos->cur_index); |
03798a93 JD |
680 | file_stream->parent.prev_cycles_timestamp_end = |
681 | packet_index->timestamp_end; | |
682 | file_stream->parent.prev_cycles_timestamp = | |
683 | packet_index->timestamp_begin; | |
684 | ||
685 | packet_index = &g_array_index(pos->packet_real_index, | |
686 | struct packet_index, pos->cur_index); | |
687 | file_stream->parent.prev_real_timestamp_end = | |
20d0dcf9 | 688 | packet_index->timestamp_end; |
03798a93 JD |
689 | file_stream->parent.prev_real_timestamp = |
690 | packet_index->timestamp_begin; | |
691 | ||
692 | events_discarded_diff = packet_index->events_discarded; | |
41e82e00 | 693 | if (pos->cur_index > 0) { |
03798a93 | 694 | packet_index = &g_array_index(pos->packet_real_index, |
41e82e00 MD |
695 | struct packet_index, |
696 | pos->cur_index - 1); | |
20d0dcf9 | 697 | events_discarded_diff -= packet_index->events_discarded; |
4c4ba021 MD |
698 | /* |
699 | * Deal with 32-bit wrap-around if the | |
700 | * tracer provided a 32-bit field. | |
701 | */ | |
702 | if (packet_index->events_discarded_len == 32) { | |
703 | events_discarded_diff = (uint32_t) events_discarded_diff; | |
704 | } | |
41e82e00 | 705 | } |
fca04958 | 706 | file_stream->parent.events_discarded = events_discarded_diff; |
03798a93 JD |
707 | file_stream->parent.prev_real_timestamp = file_stream->parent.real_timestamp; |
708 | file_stream->parent.prev_cycles_timestamp = file_stream->parent.cycles_timestamp; | |
847bf71a | 709 | /* The reader will expect us to skip padding */ |
8c572eba | 710 | ++pos->cur_index; |
847bf71a | 711 | break; |
41e82e00 | 712 | } |
847bf71a | 713 | case SEEK_SET: |
f60efc0e JD |
714 | packet_index = &g_array_index(pos->packet_cycles_index, |
715 | struct packet_index, index); | |
716 | pos->last_events_discarded = packet_index->events_discarded; | |
20d0dcf9 | 717 | pos->cur_index = index; |
03798a93 JD |
718 | file_stream->parent.prev_real_timestamp = 0; |
719 | file_stream->parent.prev_real_timestamp_end = 0; | |
720 | file_stream->parent.prev_cycles_timestamp = 0; | |
721 | file_stream->parent.prev_cycles_timestamp_end = 0; | |
847bf71a MD |
722 | break; |
723 | default: | |
724 | assert(0); | |
725 | } | |
03798a93 | 726 | if (pos->cur_index >= pos->packet_real_index->len) { |
7d97fad9 MD |
727 | /* |
728 | * When a stream reaches the end of the | |
729 | * file, we need to show the number of | |
730 | * events discarded ourselves, because | |
731 | * there is no next event scheduled to | |
732 | * be printed in the output. | |
733 | */ | |
734 | if (file_stream->parent.events_discarded) { | |
badea1a2 JD |
735 | /* |
736 | * We need to check if we are in trace | |
737 | * read or called from packet indexing. | |
738 | * In this last case, the collection is | |
739 | * not there, so we cannot print the | |
740 | * timestamps. | |
741 | */ | |
742 | if ((&file_stream->parent)->stream_class->trace->collection) { | |
743 | fflush(stdout); | |
4c4ba021 | 744 | fprintf(stderr, "[warning] Tracer discarded %" PRIu64 " events at end of stream between [", |
badea1a2 | 745 | file_stream->parent.events_discarded); |
03798a93 JD |
746 | if (opt_clock_cycles) { |
747 | ctf_print_timestamp(stderr, | |
748 | &file_stream->parent, | |
749 | file_stream->parent.prev_cycles_timestamp); | |
750 | fprintf(stderr, "] and ["); | |
751 | ctf_print_timestamp(stderr, &file_stream->parent, | |
752 | file_stream->parent.prev_cycles_timestamp_end); | |
753 | } else { | |
754 | ctf_print_timestamp(stderr, | |
755 | &file_stream->parent, | |
756 | file_stream->parent.prev_real_timestamp); | |
757 | fprintf(stderr, "] and ["); | |
758 | ctf_print_timestamp(stderr, &file_stream->parent, | |
759 | file_stream->parent.prev_real_timestamp_end); | |
760 | } | |
a0b34fbb | 761 | fprintf(stderr, "]. You should consider recording a new trace with larger buffers or with fewer events enabled.\n"); |
badea1a2 JD |
762 | fflush(stderr); |
763 | } | |
7d97fad9 MD |
764 | file_stream->parent.events_discarded = 0; |
765 | } | |
670977d3 | 766 | pos->offset = EOF; |
847bf71a MD |
767 | return; |
768 | } | |
03798a93 JD |
769 | packet_index = &g_array_index(pos->packet_cycles_index, |
770 | struct packet_index, | |
771 | pos->cur_index); | |
772 | file_stream->parent.cycles_timestamp = packet_index->timestamp_begin; | |
773 | ||
774 | packet_index = &g_array_index(pos->packet_real_index, | |
775 | struct packet_index, | |
776 | pos->cur_index); | |
777 | file_stream->parent.real_timestamp = packet_index->timestamp_begin; | |
20d0dcf9 | 778 | pos->mmap_offset = packet_index->offset; |
8c572eba MD |
779 | |
780 | /* Lookup context/packet size in index */ | |
20d0dcf9 MD |
781 | pos->content_size = packet_index->content_size; |
782 | pos->packet_size = packet_index->packet_size; | |
783 | if (packet_index->data_offset < packet_index->content_size) { | |
75cc2c35 | 784 | pos->offset = 0; /* will read headers */ |
20d0dcf9 | 785 | } else if (packet_index->data_offset == packet_index->content_size) { |
5f643ed7 | 786 | /* empty packet */ |
20d0dcf9 | 787 | pos->offset = packet_index->data_offset; |
3abe83c7 | 788 | whence = SEEK_CUR; |
5f643ed7 | 789 | goto read_next_packet; |
7eda6fc7 | 790 | } else { |
2b9a764d MD |
791 | pos->offset = EOF; |
792 | return; | |
793 | } | |
8c572eba | 794 | } |
0f980a35 | 795 | /* map new base. Need mapping length from header. */ |
aee35fcc MD |
796 | pos->base_mma = mmap_align(pos->packet_size / CHAR_BIT, pos->prot, |
797 | pos->flags, pos->fd, pos->mmap_offset); | |
798 | if (pos->base_mma == MAP_FAILED) { | |
3394d22e | 799 | fprintf(stderr, "[error] mmap error %s.\n", |
847bf71a MD |
800 | strerror(errno)); |
801 | assert(0); | |
802 | } | |
75cc2c35 MD |
803 | |
804 | /* update trace_packet_header and stream_packet_context */ | |
2d0bea29 | 805 | if (pos->prot != PROT_WRITE && file_stream->parent.trace_packet_header) { |
75cc2c35 | 806 | /* Read packet header */ |
2d0bea29 | 807 | ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p); |
75cc2c35 MD |
808 | assert(!ret); |
809 | } | |
2d0bea29 | 810 | if (pos->prot != PROT_WRITE && file_stream->parent.stream_packet_context) { |
75cc2c35 | 811 | /* Read packet context */ |
2d0bea29 | 812 | ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p); |
75cc2c35 MD |
813 | assert(!ret); |
814 | } | |
0f980a35 MD |
815 | } |
816 | ||
b4c19c1e MD |
817 | static |
818 | int packet_metadata(struct ctf_trace *td, FILE *fp) | |
819 | { | |
820 | uint32_t magic; | |
821 | size_t len; | |
822 | int ret = 0; | |
823 | ||
824 | len = fread(&magic, sizeof(magic), 1, fp); | |
a0fe7d97 | 825 | if (len != 1) { |
b4c19c1e MD |
826 | goto end; |
827 | } | |
828 | if (magic == TSDL_MAGIC) { | |
829 | ret = 1; | |
830 | td->byte_order = BYTE_ORDER; | |
0d336fdf | 831 | CTF_TRACE_SET_FIELD(td, byte_order); |
b4c19c1e MD |
832 | } else if (magic == GUINT32_SWAP_LE_BE(TSDL_MAGIC)) { |
833 | ret = 1; | |
834 | td->byte_order = (BYTE_ORDER == BIG_ENDIAN) ? | |
835 | LITTLE_ENDIAN : BIG_ENDIAN; | |
0d336fdf | 836 | CTF_TRACE_SET_FIELD(td, byte_order); |
b4c19c1e MD |
837 | } |
838 | end: | |
839 | rewind(fp); | |
840 | return ret; | |
841 | } | |
842 | ||
5c262147 MD |
843 | /* |
844 | * Returns 0 on success, -1 on error. | |
845 | */ | |
846 | static | |
847 | int check_version(unsigned int major, unsigned int minor) | |
848 | { | |
849 | switch (major) { | |
850 | case 1: | |
851 | switch (minor) { | |
852 | case 8: | |
853 | return 0; | |
854 | default: | |
855 | goto warning; | |
856 | } | |
857 | default: | |
858 | goto warning; | |
859 | ||
860 | } | |
861 | ||
862 | /* eventually return an error instead of warning */ | |
863 | warning: | |
3394d22e | 864 | fprintf(stderr, "[warning] Unsupported CTF specification version %u.%u. Trying anyway.\n", |
5c262147 MD |
865 | major, minor); |
866 | return 0; | |
867 | } | |
868 | ||
b4c19c1e MD |
869 | static |
870 | int ctf_open_trace_metadata_packet_read(struct ctf_trace *td, FILE *in, | |
871 | FILE *out) | |
872 | { | |
873 | struct metadata_packet_header header; | |
a0fe7d97 | 874 | size_t readlen, writelen, toread; |
f8254867 | 875 | char buf[4096 + 1]; /* + 1 for debug-mode \0 */ |
b4c19c1e MD |
876 | int ret = 0; |
877 | ||
a91a962e | 878 | readlen = fread(&header, header_sizeof(header), 1, in); |
a0fe7d97 | 879 | if (readlen < 1) |
b4c19c1e MD |
880 | return -EINVAL; |
881 | ||
882 | if (td->byte_order != BYTE_ORDER) { | |
883 | header.magic = GUINT32_SWAP_LE_BE(header.magic); | |
884 | header.checksum = GUINT32_SWAP_LE_BE(header.checksum); | |
885 | header.content_size = GUINT32_SWAP_LE_BE(header.content_size); | |
886 | header.packet_size = GUINT32_SWAP_LE_BE(header.packet_size); | |
887 | } | |
888 | if (header.checksum) | |
3394d22e | 889 | fprintf(stderr, "[warning] checksum verification not supported yet.\n"); |
b4c19c1e | 890 | if (header.compression_scheme) { |
3394d22e | 891 | fprintf(stderr, "[error] compression (%u) not supported yet.\n", |
b4c19c1e MD |
892 | header.compression_scheme); |
893 | return -EINVAL; | |
894 | } | |
895 | if (header.encryption_scheme) { | |
3394d22e | 896 | fprintf(stderr, "[error] encryption (%u) not supported yet.\n", |
b4c19c1e MD |
897 | header.encryption_scheme); |
898 | return -EINVAL; | |
899 | } | |
900 | if (header.checksum_scheme) { | |
3394d22e | 901 | fprintf(stderr, "[error] checksum (%u) not supported yet.\n", |
b4c19c1e MD |
902 | header.checksum_scheme); |
903 | return -EINVAL; | |
904 | } | |
5c262147 MD |
905 | if (check_version(header.major, header.minor) < 0) |
906 | return -EINVAL; | |
b4c19c1e MD |
907 | if (!CTF_TRACE_FIELD_IS_SET(td, uuid)) { |
908 | memcpy(td->uuid, header.uuid, sizeof(header.uuid)); | |
909 | CTF_TRACE_SET_FIELD(td, uuid); | |
910 | } else { | |
43e34335 | 911 | if (babeltrace_uuid_compare(header.uuid, td->uuid)) |
b4c19c1e MD |
912 | return -EINVAL; |
913 | } | |
914 | ||
b1ccd079 MD |
915 | if ((header.content_size / CHAR_BIT) < header_sizeof(header)) |
916 | return -EINVAL; | |
917 | ||
255b2138 | 918 | toread = (header.content_size / CHAR_BIT) - header_sizeof(header); |
a0fe7d97 MD |
919 | |
920 | for (;;) { | |
f8254867 | 921 | readlen = fread(buf, sizeof(char), min(sizeof(buf) - 1, toread), in); |
b4c19c1e MD |
922 | if (ferror(in)) { |
923 | ret = -EINVAL; | |
924 | break; | |
925 | } | |
4152822b | 926 | if (babeltrace_debug) { |
f8254867 | 927 | buf[readlen] = '\0'; |
3394d22e | 928 | fprintf(stderr, "[debug] metadata packet read: %s\n", |
4152822b MD |
929 | buf); |
930 | } | |
931 | ||
b4c19c1e MD |
932 | writelen = fwrite(buf, sizeof(char), readlen, out); |
933 | if (writelen < readlen) { | |
934 | ret = -EIO; | |
935 | break; | |
936 | } | |
937 | if (ferror(out)) { | |
938 | ret = -EINVAL; | |
939 | break; | |
940 | } | |
a0fe7d97 MD |
941 | toread -= readlen; |
942 | if (!toread) { | |
7f4b5c4d | 943 | ret = 0; /* continue reading next packet */ |
ddbc52af | 944 | goto read_padding; |
a0fe7d97 | 945 | } |
b4c19c1e MD |
946 | } |
947 | return ret; | |
ddbc52af MD |
948 | |
949 | read_padding: | |
950 | toread = (header.packet_size - header.content_size) / CHAR_BIT; | |
951 | ret = fseek(in, toread, SEEK_CUR); | |
952 | if (ret < 0) { | |
3394d22e | 953 | fprintf(stderr, "[warning] Missing padding at end of file\n"); |
ddbc52af MD |
954 | ret = 0; |
955 | } | |
956 | return ret; | |
b4c19c1e MD |
957 | } |
958 | ||
959 | static | |
960 | int ctf_open_trace_metadata_stream_read(struct ctf_trace *td, FILE **fp, | |
961 | char **buf) | |
962 | { | |
963 | FILE *in, *out; | |
abc40d24 | 964 | size_t size, buflen; |
b4c19c1e MD |
965 | int ret; |
966 | ||
967 | in = *fp; | |
c4f5487e MD |
968 | /* |
969 | * Using strlen on *buf instead of size of open_memstream | |
970 | * because its size includes garbage at the end (after final | |
971 | * \0). This is the allocated size, not the actual string size. | |
972 | */ | |
f8370579 | 973 | out = babeltrace_open_memstream(buf, &size); |
a569a564 MD |
974 | if (out == NULL) { |
975 | perror("Metadata open_memstream"); | |
b4c19c1e | 976 | return -errno; |
a569a564 | 977 | } |
b4c19c1e MD |
978 | for (;;) { |
979 | ret = ctf_open_trace_metadata_packet_read(td, in, out); | |
7f4b5c4d | 980 | if (ret) { |
b4c19c1e | 981 | break; |
7f4b5c4d MD |
982 | } |
983 | if (feof(in)) { | |
984 | ret = 0; | |
b4c19c1e MD |
985 | break; |
986 | } | |
987 | } | |
f8370579 MD |
988 | /* close to flush the buffer */ |
989 | ret = babeltrace_close_memstream(buf, &size, out); | |
990 | if (ret < 0) { | |
f824ae04 MD |
991 | int closeret; |
992 | ||
f8370579 | 993 | perror("babeltrace_flush_memstream"); |
f824ae04 MD |
994 | ret = -errno; |
995 | closeret = fclose(in); | |
996 | if (closeret) { | |
997 | perror("Error in fclose"); | |
998 | } | |
999 | return ret; | |
1000 | } | |
1001 | ret = fclose(in); | |
1002 | if (ret) { | |
1003 | perror("Error in fclose"); | |
f8370579 | 1004 | } |
b4c19c1e | 1005 | /* open for reading */ |
abc40d24 MD |
1006 | buflen = strlen(*buf); |
1007 | if (!buflen) { | |
1008 | *fp = NULL; | |
1009 | return -ENODATA; | |
1010 | } | |
1011 | *fp = babeltrace_fmemopen(*buf, buflen, "rb"); | |
a569a564 MD |
1012 | if (!*fp) { |
1013 | perror("Metadata fmemopen"); | |
1014 | return -errno; | |
1015 | } | |
b4c19c1e MD |
1016 | return 0; |
1017 | } | |
1018 | ||
65102a8c | 1019 | static |
b086c01a | 1020 | int ctf_open_trace_metadata_read(struct ctf_trace *td, |
1cf393f6 | 1021 | void (*packet_seek)(struct bt_stream_pos *pos, size_t index, |
ae23d232 | 1022 | int whence), FILE *metadata_fp) |
65102a8c MD |
1023 | { |
1024 | struct ctf_scanner *scanner; | |
2d0bea29 | 1025 | struct ctf_file_stream *metadata_stream; |
65102a8c | 1026 | FILE *fp; |
b4c19c1e | 1027 | char *buf = NULL; |
f824ae04 | 1028 | int ret = 0, closeret; |
65102a8c | 1029 | |
2d0bea29 | 1030 | metadata_stream = g_new0(struct ctf_file_stream, 1); |
3a25e036 | 1031 | metadata_stream->pos.last_offset = LAST_OFFSET_POISON; |
b086c01a | 1032 | |
06789ffd MD |
1033 | if (packet_seek) { |
1034 | metadata_stream->pos.packet_seek = packet_seek; | |
b086c01a | 1035 | } else { |
06789ffd | 1036 | fprintf(stderr, "[error] packet_seek function undefined.\n"); |
b086c01a | 1037 | ret = -1; |
f824ae04 | 1038 | goto end_free; |
b086c01a JD |
1039 | } |
1040 | ||
ae23d232 JD |
1041 | if (metadata_fp) { |
1042 | fp = metadata_fp; | |
bcbfb8bf | 1043 | metadata_stream->pos.fd = -1; |
ae23d232 JD |
1044 | } else { |
1045 | td->metadata = &metadata_stream->parent; | |
1046 | metadata_stream->pos.fd = openat(td->dirfd, "metadata", O_RDONLY); | |
1047 | if (metadata_stream->pos.fd < 0) { | |
3394d22e | 1048 | fprintf(stderr, "Unable to open metadata.\n"); |
f824ae04 MD |
1049 | ret = -1; |
1050 | goto end_free; | |
ae23d232 | 1051 | } |
65102a8c | 1052 | |
ae23d232 JD |
1053 | fp = fdopen(metadata_stream->pos.fd, "r"); |
1054 | if (!fp) { | |
3394d22e | 1055 | fprintf(stderr, "[error] Unable to open metadata stream.\n"); |
a569a564 | 1056 | perror("Metadata stream open"); |
ae23d232 JD |
1057 | ret = -errno; |
1058 | goto end_stream; | |
1059 | } | |
f824ae04 MD |
1060 | /* fd now belongs to fp */ |
1061 | metadata_stream->pos.fd = -1; | |
ae23d232 | 1062 | } |
65102a8c MD |
1063 | if (babeltrace_debug) |
1064 | yydebug = 1; | |
1065 | ||
b4c19c1e MD |
1066 | if (packet_metadata(td, fp)) { |
1067 | ret = ctf_open_trace_metadata_stream_read(td, &fp, &buf); | |
abc40d24 MD |
1068 | if (ret) { |
1069 | /* Warn about empty metadata */ | |
1070 | fprintf(stderr, "[warning] Empty metadata.\n"); | |
b4c19c1e | 1071 | goto end_packet_read; |
abc40d24 | 1072 | } |
da75b0f7 | 1073 | } else { |
5c262147 MD |
1074 | unsigned int major, minor; |
1075 | ssize_t nr_items; | |
8c2df3f5 | 1076 | |
da75b0f7 | 1077 | td->byte_order = BYTE_ORDER; |
8c2df3f5 | 1078 | |
5c262147 MD |
1079 | /* Check text-only metadata header and version */ |
1080 | nr_items = fscanf(fp, "/* CTF %u.%u", &major, &minor); | |
1081 | if (nr_items < 2) | |
3394d22e | 1082 | fprintf(stderr, "[warning] Ill-shapen or missing \"/* CTF x.y\" header for text-only metadata.\n"); |
5c262147 MD |
1083 | if (check_version(major, minor) < 0) { |
1084 | ret = -EINVAL; | |
1085 | goto end_packet_read; | |
1086 | } | |
8c2df3f5 | 1087 | rewind(fp); |
b4c19c1e MD |
1088 | } |
1089 | ||
65102a8c MD |
1090 | scanner = ctf_scanner_alloc(fp); |
1091 | if (!scanner) { | |
3394d22e | 1092 | fprintf(stderr, "[error] Error allocating scanner\n"); |
65102a8c MD |
1093 | ret = -ENOMEM; |
1094 | goto end_scanner_alloc; | |
1095 | } | |
1096 | ret = ctf_scanner_append_ast(scanner); | |
1097 | if (ret) { | |
3394d22e | 1098 | fprintf(stderr, "[error] Error creating AST\n"); |
65102a8c MD |
1099 | goto end; |
1100 | } | |
1101 | ||
1102 | if (babeltrace_debug) { | |
3394d22e | 1103 | ret = ctf_visitor_print_xml(stderr, 0, &scanner->ast->root); |
65102a8c | 1104 | if (ret) { |
3394d22e | 1105 | fprintf(stderr, "[error] Error visiting AST for XML output\n"); |
65102a8c MD |
1106 | goto end; |
1107 | } | |
1108 | } | |
1109 | ||
3394d22e | 1110 | ret = ctf_visitor_semantic_check(stderr, 0, &scanner->ast->root); |
65102a8c | 1111 | if (ret) { |
3394d22e | 1112 | fprintf(stderr, "[error] Error in CTF semantic validation %d\n", ret); |
65102a8c MD |
1113 | goto end; |
1114 | } | |
3394d22e | 1115 | ret = ctf_visitor_construct_metadata(stderr, 0, &scanner->ast->root, |
ac5c6ca0 | 1116 | td, td->byte_order); |
65102a8c | 1117 | if (ret) { |
3394d22e | 1118 | fprintf(stderr, "[error] Error in CTF metadata constructor %d\n", ret); |
65102a8c MD |
1119 | goto end; |
1120 | } | |
1121 | end: | |
1122 | ctf_scanner_free(scanner); | |
1123 | end_scanner_alloc: | |
b4c19c1e | 1124 | end_packet_read: |
f824ae04 MD |
1125 | if (fp) { |
1126 | closeret = fclose(fp); | |
1127 | if (closeret) { | |
1128 | perror("Error on fclose"); | |
1129 | } | |
1130 | } | |
b4c19c1e | 1131 | free(buf); |
65102a8c | 1132 | end_stream: |
f824ae04 MD |
1133 | if (metadata_stream->pos.fd >= 0) { |
1134 | closeret = close(metadata_stream->pos.fd); | |
1135 | if (closeret) { | |
1136 | perror("Error on metadata stream fd close"); | |
1137 | } | |
1138 | } | |
1139 | end_free: | |
2d0bea29 MD |
1140 | if (ret) |
1141 | g_free(metadata_stream); | |
0f980a35 MD |
1142 | return ret; |
1143 | } | |
1144 | ||
e28d4618 | 1145 | static |
c716f83b | 1146 | struct ctf_event_definition *create_event_definitions(struct ctf_trace *td, |
9e88d150 | 1147 | struct ctf_stream_definition *stream, |
4716614a | 1148 | struct ctf_event_declaration *event) |
e28d4618 | 1149 | { |
c716f83b | 1150 | struct ctf_event_definition *stream_event = g_new0(struct ctf_event_definition, 1); |
e28d4618 MD |
1151 | |
1152 | if (event->context_decl) { | |
1153 | struct definition *definition = | |
1154 | event->context_decl->p.definition_new(&event->context_decl->p, | |
1155 | stream->parent_def_scope, 0, 0, "event.context"); | |
1156 | if (!definition) { | |
1157 | goto error; | |
1158 | } | |
42dc00b7 | 1159 | stream_event->event_context = container_of(definition, |
e28d4618 | 1160 | struct definition_struct, p); |
42dc00b7 | 1161 | stream->parent_def_scope = stream_event->event_context->p.scope; |
e28d4618 MD |
1162 | } |
1163 | if (event->fields_decl) { | |
1164 | struct definition *definition = | |
1165 | event->fields_decl->p.definition_new(&event->fields_decl->p, | |
1166 | stream->parent_def_scope, 0, 0, "event.fields"); | |
1167 | if (!definition) { | |
1168 | goto error; | |
1169 | } | |
42dc00b7 | 1170 | stream_event->event_fields = container_of(definition, |
e28d4618 | 1171 | struct definition_struct, p); |
42dc00b7 | 1172 | stream->parent_def_scope = stream_event->event_fields->p.scope; |
e28d4618 | 1173 | } |
d3ded99d | 1174 | stream_event->stream = stream; |
42dc00b7 | 1175 | return stream_event; |
e28d4618 MD |
1176 | |
1177 | error: | |
42dc00b7 | 1178 | if (stream_event->event_fields) |
13fad8b6 | 1179 | bt_definition_unref(&stream_event->event_fields->p); |
42dc00b7 | 1180 | if (stream_event->event_context) |
13fad8b6 | 1181 | bt_definition_unref(&stream_event->event_context->p); |
e28d4618 MD |
1182 | return NULL; |
1183 | } | |
1184 | ||
1185 | static | |
9e88d150 | 1186 | int create_stream_definitions(struct ctf_trace *td, struct ctf_stream_definition *stream) |
e28d4618 | 1187 | { |
f380e105 | 1188 | struct ctf_stream_declaration *stream_class; |
e28d4618 MD |
1189 | int ret; |
1190 | int i; | |
1191 | ||
1192 | if (stream->stream_definitions_created) | |
1193 | return 0; | |
1194 | ||
1195 | stream_class = stream->stream_class; | |
1196 | ||
1197 | if (stream_class->packet_context_decl) { | |
1198 | struct definition *definition = | |
1199 | stream_class->packet_context_decl->p.definition_new(&stream_class->packet_context_decl->p, | |
1200 | stream->parent_def_scope, 0, 0, "stream.packet.context"); | |
1201 | if (!definition) { | |
1202 | ret = -EINVAL; | |
1203 | goto error; | |
1204 | } | |
1205 | stream->stream_packet_context = container_of(definition, | |
1206 | struct definition_struct, p); | |
1207 | stream->parent_def_scope = stream->stream_packet_context->p.scope; | |
1208 | } | |
1209 | if (stream_class->event_header_decl) { | |
1210 | struct definition *definition = | |
1211 | stream_class->event_header_decl->p.definition_new(&stream_class->event_header_decl->p, | |
1212 | stream->parent_def_scope, 0, 0, "stream.event.header"); | |
1213 | if (!definition) { | |
1214 | ret = -EINVAL; | |
1215 | goto error; | |
1216 | } | |
1217 | stream->stream_event_header = | |
1218 | container_of(definition, struct definition_struct, p); | |
1219 | stream->parent_def_scope = stream->stream_event_header->p.scope; | |
1220 | } | |
1221 | if (stream_class->event_context_decl) { | |
1222 | struct definition *definition = | |
1223 | stream_class->event_context_decl->p.definition_new(&stream_class->event_context_decl->p, | |
1224 | stream->parent_def_scope, 0, 0, "stream.event.context"); | |
1225 | if (!definition) { | |
1226 | ret = -EINVAL; | |
1227 | goto error; | |
1228 | } | |
1229 | stream->stream_event_context = | |
1230 | container_of(definition, struct definition_struct, p); | |
1231 | stream->parent_def_scope = stream->stream_event_context->p.scope; | |
1232 | } | |
1233 | stream->events_by_id = g_ptr_array_new(); | |
1234 | g_ptr_array_set_size(stream->events_by_id, stream_class->events_by_id->len); | |
1235 | for (i = 0; i < stream->events_by_id->len; i++) { | |
4716614a | 1236 | struct ctf_event_declaration *event = g_ptr_array_index(stream_class->events_by_id, i); |
c716f83b | 1237 | struct ctf_event_definition *stream_event; |
e28d4618 MD |
1238 | |
1239 | if (!event) | |
1240 | continue; | |
42dc00b7 MD |
1241 | stream_event = create_event_definitions(td, stream, event); |
1242 | if (!stream_event) | |
e28d4618 | 1243 | goto error_event; |
42dc00b7 | 1244 | g_ptr_array_index(stream->events_by_id, i) = stream_event; |
e28d4618 MD |
1245 | } |
1246 | return 0; | |
1247 | ||
1248 | error_event: | |
1249 | for (i = 0; i < stream->events_by_id->len; i++) { | |
c716f83b | 1250 | struct ctf_event_definition *stream_event = g_ptr_array_index(stream->events_by_id, i); |
42dc00b7 MD |
1251 | if (stream_event) |
1252 | g_free(stream_event); | |
e28d4618 MD |
1253 | } |
1254 | g_ptr_array_free(stream->events_by_id, TRUE); | |
1255 | error: | |
1256 | if (stream->stream_event_context) | |
13fad8b6 | 1257 | bt_definition_unref(&stream->stream_event_context->p); |
e28d4618 | 1258 | if (stream->stream_event_header) |
13fad8b6 | 1259 | bt_definition_unref(&stream->stream_event_header->p); |
e28d4618 | 1260 | if (stream->stream_packet_context) |
13fad8b6 | 1261 | bt_definition_unref(&stream->stream_packet_context->p); |
e28d4618 MD |
1262 | return ret; |
1263 | } | |
1264 | ||
0f980a35 MD |
1265 | |
1266 | static | |
46322b33 | 1267 | int create_stream_packet_index(struct ctf_trace *td, |
0f980a35 MD |
1268 | struct ctf_file_stream *file_stream) |
1269 | { | |
f380e105 | 1270 | struct ctf_stream_declaration *stream; |
0f980a35 | 1271 | int len_index; |
46322b33 | 1272 | struct ctf_stream_pos *pos; |
0f980a35 MD |
1273 | struct stat filestats; |
1274 | struct packet_index packet_index; | |
1275 | int first_packet = 1; | |
1276 | int ret; | |
1277 | ||
1278 | pos = &file_stream->pos; | |
1279 | ||
1280 | ret = fstat(pos->fd, &filestats); | |
1281 | if (ret < 0) | |
1282 | return ret; | |
1283 | ||
8895362d MD |
1284 | if (filestats.st_size < MAX_PACKET_HEADER_LEN / CHAR_BIT) |
1285 | return -EINVAL; | |
1286 | ||
0f980a35 MD |
1287 | for (pos->mmap_offset = 0; pos->mmap_offset < filestats.st_size; ) { |
1288 | uint64_t stream_id = 0; | |
1289 | ||
aee35fcc | 1290 | if (pos->base_mma) { |
0f980a35 | 1291 | /* unmap old base */ |
aee35fcc | 1292 | ret = munmap_align(pos->base_mma); |
0f980a35 | 1293 | if (ret) { |
3394d22e | 1294 | fprintf(stderr, "[error] Unable to unmap old base: %s.\n", |
0f980a35 MD |
1295 | strerror(errno)); |
1296 | return ret; | |
1297 | } | |
aee35fcc | 1298 | pos->base_mma = NULL; |
0f980a35 MD |
1299 | } |
1300 | /* map new base. Need mapping length from header. */ | |
aee35fcc | 1301 | pos->base_mma = mmap_align(MAX_PACKET_HEADER_LEN / CHAR_BIT, PROT_READ, |
0f980a35 | 1302 | MAP_PRIVATE, pos->fd, pos->mmap_offset); |
aee35fcc | 1303 | assert(pos->base_mma != MAP_FAILED); |
dc48ecad MD |
1304 | pos->content_size = MAX_PACKET_HEADER_LEN; /* Unknown at this point */ |
1305 | pos->packet_size = MAX_PACKET_HEADER_LEN; /* Unknown at this point */ | |
0f980a35 MD |
1306 | pos->offset = 0; /* Position of the packet header */ |
1307 | ||
8c572eba MD |
1308 | packet_index.offset = pos->mmap_offset; |
1309 | packet_index.content_size = 0; | |
1310 | packet_index.packet_size = 0; | |
75cc2c35 MD |
1311 | packet_index.timestamp_begin = 0; |
1312 | packet_index.timestamp_end = 0; | |
41e82e00 | 1313 | packet_index.events_discarded = 0; |
15d4fe3c | 1314 | packet_index.events_discarded_len = 0; |
8c572eba | 1315 | |
0f980a35 | 1316 | /* read and check header, set stream id (and check) */ |
2d0bea29 | 1317 | if (file_stream->parent.trace_packet_header) { |
0f980a35 | 1318 | /* Read packet header */ |
2d0bea29 | 1319 | ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p); |
c5e74408 MD |
1320 | if (ret) |
1321 | return ret; | |
c8c98132 | 1322 | len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("magic")); |
0f980a35 | 1323 | if (len_index >= 0) { |
b1a2f580 | 1324 | struct definition *field; |
f4c56ac2 | 1325 | uint64_t magic; |
0f980a35 | 1326 | |
c8c98132 | 1327 | field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index); |
fe2b0e24 | 1328 | magic = bt_get_unsigned_int(field); |
f4c56ac2 | 1329 | if (magic != CTF_MAGIC) { |
3394d22e | 1330 | fprintf(stderr, "[error] Invalid magic number 0x%" PRIX64 " at packet %u (file offset %zd).\n", |
f4c56ac2 | 1331 | magic, |
03798a93 | 1332 | file_stream->pos.packet_cycles_index->len, |
8c572eba | 1333 | (ssize_t) pos->mmap_offset); |
0f980a35 MD |
1334 | return -EINVAL; |
1335 | } | |
1336 | } | |
1337 | ||
1338 | /* check uuid */ | |
c8c98132 | 1339 | len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("uuid")); |
0f980a35 MD |
1340 | if (len_index >= 0) { |
1341 | struct definition_array *defarray; | |
b1a2f580 | 1342 | struct definition *field; |
0f980a35 | 1343 | uint64_t i; |
43e34335 | 1344 | uint8_t uuidval[BABELTRACE_UUID_LEN]; |
0f980a35 | 1345 | |
c8c98132 | 1346 | field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index); |
b1a2f580 MD |
1347 | assert(field->declaration->id == CTF_TYPE_ARRAY); |
1348 | defarray = container_of(field, struct definition_array, p); | |
dcaa2e7d | 1349 | assert(bt_array_len(defarray) == BABELTRACE_UUID_LEN); |
0f980a35 | 1350 | |
43e34335 | 1351 | for (i = 0; i < BABELTRACE_UUID_LEN; i++) { |
0f980a35 | 1352 | struct definition *elem; |
0f980a35 | 1353 | |
dcaa2e7d | 1354 | elem = bt_array_index(defarray, i); |
fe2b0e24 | 1355 | uuidval[i] = bt_get_unsigned_int(elem); |
0f980a35 | 1356 | } |
43e34335 | 1357 | ret = babeltrace_uuid_compare(td->uuid, uuidval); |
0f980a35 | 1358 | if (ret) { |
3394d22e | 1359 | fprintf(stderr, "[error] Unique Universal Identifiers do not match.\n"); |
0f980a35 MD |
1360 | return -EINVAL; |
1361 | } | |
1362 | } | |
1363 | ||
1364 | ||
c8c98132 | 1365 | len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("stream_id")); |
0f980a35 | 1366 | if (len_index >= 0) { |
b1a2f580 | 1367 | struct definition *field; |
0f980a35 | 1368 | |
c8c98132 | 1369 | field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index); |
fe2b0e24 | 1370 | stream_id = bt_get_unsigned_int(field); |
0f980a35 MD |
1371 | } |
1372 | } | |
1373 | ||
2d0bea29 | 1374 | if (!first_packet && file_stream->parent.stream_id != stream_id) { |
3394d22e | 1375 | fprintf(stderr, "[error] Stream ID is changing within a stream.\n"); |
0f980a35 MD |
1376 | return -EINVAL; |
1377 | } | |
1378 | if (first_packet) { | |
2d0bea29 | 1379 | file_stream->parent.stream_id = stream_id; |
46322b33 | 1380 | if (stream_id >= td->streams->len) { |
3394d22e | 1381 | fprintf(stderr, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id); |
0f980a35 MD |
1382 | return -EINVAL; |
1383 | } | |
46322b33 | 1384 | stream = g_ptr_array_index(td->streams, stream_id); |
0f980a35 | 1385 | if (!stream) { |
3394d22e | 1386 | fprintf(stderr, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id); |
0f980a35 MD |
1387 | return -EINVAL; |
1388 | } | |
2d0bea29 | 1389 | file_stream->parent.stream_class = stream; |
01c76b24 | 1390 | ret = create_stream_definitions(td, &file_stream->parent); |
862434ec MD |
1391 | if (ret) |
1392 | return ret; | |
0f980a35 MD |
1393 | } |
1394 | first_packet = 0; | |
1395 | ||
2d0bea29 | 1396 | if (file_stream->parent.stream_packet_context) { |
dc48ecad | 1397 | /* Read packet context */ |
2d0bea29 | 1398 | ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p); |
c5e74408 MD |
1399 | if (ret) |
1400 | return ret; | |
dc48ecad | 1401 | /* read content size from header */ |
c8c98132 | 1402 | len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("content_size")); |
dc48ecad | 1403 | if (len_index >= 0) { |
b1a2f580 | 1404 | struct definition *field; |
dc48ecad | 1405 | |
c8c98132 | 1406 | field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index); |
fe2b0e24 | 1407 | packet_index.content_size = bt_get_unsigned_int(field); |
dc48ecad MD |
1408 | } else { |
1409 | /* Use file size for packet size */ | |
8c572eba | 1410 | packet_index.content_size = filestats.st_size * CHAR_BIT; |
dc48ecad MD |
1411 | } |
1412 | ||
1413 | /* read packet size from header */ | |
c8c98132 | 1414 | len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("packet_size")); |
dc48ecad | 1415 | if (len_index >= 0) { |
b1a2f580 | 1416 | struct definition *field; |
dc48ecad | 1417 | |
c8c98132 | 1418 | field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index); |
fe2b0e24 | 1419 | packet_index.packet_size = bt_get_unsigned_int(field); |
dc48ecad MD |
1420 | } else { |
1421 | /* Use content size if non-zero, else file size */ | |
8c572eba | 1422 | packet_index.packet_size = packet_index.content_size ? : filestats.st_size * CHAR_BIT; |
dc48ecad | 1423 | } |
75cc2c35 MD |
1424 | |
1425 | /* read timestamp begin from header */ | |
c8c98132 | 1426 | len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("timestamp_begin")); |
75cc2c35 | 1427 | if (len_index >= 0) { |
75cc2c35 MD |
1428 | struct definition *field; |
1429 | ||
c8c98132 | 1430 | field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index); |
fe2b0e24 | 1431 | packet_index.timestamp_begin = bt_get_unsigned_int(field); |
03798a93 JD |
1432 | if (file_stream->parent.stream_class->trace->collection) { |
1433 | packet_index.timestamp_begin = | |
1434 | ctf_get_real_timestamp( | |
1435 | &file_stream->parent, | |
1436 | packet_index.timestamp_begin); | |
1437 | } | |
75cc2c35 MD |
1438 | } |
1439 | ||
1440 | /* read timestamp end from header */ | |
c8c98132 | 1441 | len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("timestamp_end")); |
75cc2c35 | 1442 | if (len_index >= 0) { |
75cc2c35 MD |
1443 | struct definition *field; |
1444 | ||
c8c98132 | 1445 | field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index); |
fe2b0e24 | 1446 | packet_index.timestamp_end = bt_get_unsigned_int(field); |
03798a93 JD |
1447 | if (file_stream->parent.stream_class->trace->collection) { |
1448 | packet_index.timestamp_end = | |
1449 | ctf_get_real_timestamp( | |
1450 | &file_stream->parent, | |
1451 | packet_index.timestamp_end); | |
1452 | } | |
75cc2c35 | 1453 | } |
41e82e00 MD |
1454 | |
1455 | /* read events discarded from header */ | |
c8c98132 | 1456 | len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("events_discarded")); |
41e82e00 MD |
1457 | if (len_index >= 0) { |
1458 | struct definition *field; | |
1459 | ||
c8c98132 | 1460 | field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index); |
fe2b0e24 JD |
1461 | packet_index.events_discarded = bt_get_unsigned_int(field); |
1462 | packet_index.events_discarded_len = bt_get_int_len(field); | |
41e82e00 | 1463 | } |
0f980a35 MD |
1464 | } else { |
1465 | /* Use file size for packet size */ | |
8c572eba | 1466 | packet_index.content_size = filestats.st_size * CHAR_BIT; |
0f980a35 | 1467 | /* Use content size if non-zero, else file size */ |
8c572eba | 1468 | packet_index.packet_size = packet_index.content_size ? : filestats.st_size * CHAR_BIT; |
0f980a35 | 1469 | } |
546293fa MD |
1470 | |
1471 | /* Validate content size and packet size values */ | |
1472 | if (packet_index.content_size > packet_index.packet_size) { | |
7e18eedf | 1473 | fprintf(stderr, "[error] Content size (%" PRIu64 " bits) is larger than packet size (%" PRIu64 " bits).\n", |
546293fa MD |
1474 | packet_index.content_size, packet_index.packet_size); |
1475 | return -EINVAL; | |
1476 | } | |
1477 | ||
7e18eedf JN |
1478 | if (packet_index.packet_size > ((uint64_t)filestats.st_size - packet_index.offset) * CHAR_BIT) { |
1479 | fprintf(stderr, "[error] Packet size (%" PRIu64 " bits) is larger than remaining file size (%" PRIu64 " bits).\n", | |
0fe3c2c9 | 1480 | packet_index.packet_size, ((uint64_t)filestats.st_size - packet_index.offset) * CHAR_BIT); |
546293fa MD |
1481 | return -EINVAL; |
1482 | } | |
1483 | ||
847bf71a MD |
1484 | /* Save position after header and context */ |
1485 | packet_index.data_offset = pos->offset; | |
0f980a35 | 1486 | |
0f980a35 | 1487 | /* add index to packet array */ |
03798a93 | 1488 | g_array_append_val(file_stream->pos.packet_cycles_index, packet_index); |
0f980a35 | 1489 | |
8c572eba | 1490 | pos->mmap_offset += packet_index.packet_size / CHAR_BIT; |
0f980a35 MD |
1491 | } |
1492 | ||
1493 | return 0; | |
1494 | } | |
1495 | ||
e28d4618 | 1496 | static |
9e88d150 | 1497 | int create_trace_definitions(struct ctf_trace *td, struct ctf_stream_definition *stream) |
e28d4618 MD |
1498 | { |
1499 | int ret; | |
1500 | ||
1501 | if (td->packet_header_decl) { | |
1502 | struct definition *definition = | |
1503 | td->packet_header_decl->p.definition_new(&td->packet_header_decl->p, | |
1504 | stream->parent_def_scope, 0, 0, "trace.packet.header"); | |
1505 | if (!definition) { | |
1506 | ret = -EINVAL; | |
1507 | goto error; | |
1508 | } | |
1509 | stream->trace_packet_header = | |
1510 | container_of(definition, struct definition_struct, p); | |
1511 | stream->parent_def_scope = stream->trace_packet_header->p.scope; | |
1512 | } | |
1513 | ||
1514 | return 0; | |
1515 | ||
1516 | error: | |
1517 | return ret; | |
1518 | } | |
1519 | ||
0f980a35 MD |
1520 | /* |
1521 | * Note: many file streams can inherit from the same stream class | |
1522 | * description (metadata). | |
1523 | */ | |
1524 | static | |
b086c01a | 1525 | int ctf_open_file_stream_read(struct ctf_trace *td, const char *path, int flags, |
1cf393f6 | 1526 | void (*packet_seek)(struct bt_stream_pos *pos, size_t index, |
b086c01a | 1527 | int whence)) |
0f980a35 | 1528 | { |
f824ae04 | 1529 | int ret, fd, closeret; |
0f980a35 | 1530 | struct ctf_file_stream *file_stream; |
ff075710 | 1531 | struct stat statbuf; |
0f980a35 | 1532 | |
ff075710 MD |
1533 | fd = openat(td->dirfd, path, flags); |
1534 | if (fd < 0) { | |
a569a564 | 1535 | perror("File stream openat()"); |
ff075710 | 1536 | ret = fd; |
0f980a35 | 1537 | goto error; |
a569a564 | 1538 | } |
ff075710 MD |
1539 | |
1540 | /* Don't try to mmap subdirectories. Skip them, return success. */ | |
1541 | ret = fstat(fd, &statbuf); | |
1542 | if (ret) { | |
1543 | perror("File stream fstat()"); | |
1544 | goto fstat_error; | |
1545 | } | |
1546 | if (S_ISDIR(statbuf.st_mode)) { | |
1547 | fprintf(stderr, "[warning] Skipping directory '%s' found in trace\n", path); | |
1548 | ret = 0; | |
1549 | goto fd_is_dir_ok; | |
1550 | } | |
1551 | ||
0f980a35 | 1552 | file_stream = g_new0(struct ctf_file_stream, 1); |
3a25e036 | 1553 | file_stream->pos.last_offset = LAST_OFFSET_POISON; |
b086c01a | 1554 | |
06789ffd MD |
1555 | if (packet_seek) { |
1556 | file_stream->pos.packet_seek = packet_seek; | |
b086c01a | 1557 | } else { |
06789ffd | 1558 | fprintf(stderr, "[error] packet_seek function undefined.\n"); |
b086c01a JD |
1559 | ret = -1; |
1560 | goto error_def; | |
1561 | } | |
1562 | ||
f824ae04 MD |
1563 | ret = ctf_init_pos(&file_stream->pos, fd, flags); |
1564 | if (ret) | |
1565 | goto error_def; | |
2d0bea29 | 1566 | ret = create_trace_definitions(td, &file_stream->parent); |
e28d4618 MD |
1567 | if (ret) |
1568 | goto error_def; | |
25ccc85b | 1569 | /* |
50052405 | 1570 | * For now, only a single clock per trace is supported. |
25ccc85b MD |
1571 | */ |
1572 | file_stream->parent.current_clock = td->single_clock; | |
0f980a35 MD |
1573 | ret = create_stream_packet_index(td, file_stream); |
1574 | if (ret) | |
1575 | goto error_index; | |
1576 | /* Add stream file to stream class */ | |
2d0bea29 MD |
1577 | g_ptr_array_add(file_stream->parent.stream_class->streams, |
1578 | &file_stream->parent); | |
0f980a35 MD |
1579 | return 0; |
1580 | ||
1581 | error_index: | |
2d0bea29 | 1582 | if (file_stream->parent.trace_packet_header) |
13fad8b6 | 1583 | bt_definition_unref(&file_stream->parent.trace_packet_header->p); |
e28d4618 | 1584 | error_def: |
f824ae04 MD |
1585 | closeret = ctf_fini_pos(&file_stream->pos); |
1586 | if (closeret) { | |
1587 | fprintf(stderr, "Error on ctf_fini_pos\n"); | |
1588 | } | |
0f980a35 | 1589 | g_free(file_stream); |
ff075710 MD |
1590 | fd_is_dir_ok: |
1591 | fstat_error: | |
f824ae04 MD |
1592 | closeret = close(fd); |
1593 | if (closeret) { | |
1594 | perror("Error on fd close"); | |
1595 | } | |
0f980a35 | 1596 | error: |
65102a8c MD |
1597 | return ret; |
1598 | } | |
1599 | ||
bbefb8dd | 1600 | static |
5b80ddfb | 1601 | int ctf_open_trace_read(struct ctf_trace *td, |
8c250d87 | 1602 | const char *path, int flags, |
1cf393f6 | 1603 | void (*packet_seek)(struct bt_stream_pos *pos, size_t index, |
ae23d232 | 1604 | int whence), FILE *metadata_fp) |
bbefb8dd | 1605 | { |
f824ae04 | 1606 | int ret, closeret; |
65102a8c MD |
1607 | struct dirent *dirent; |
1608 | struct dirent *diriter; | |
1609 | size_t dirent_len; | |
bbefb8dd | 1610 | |
46322b33 | 1611 | td->flags = flags; |
bbefb8dd MD |
1612 | |
1613 | /* Open trace directory */ | |
46322b33 MD |
1614 | td->dir = opendir(path); |
1615 | if (!td->dir) { | |
6a6b384c | 1616 | fprintf(stderr, "[error] Unable to open trace directory \"%s\".\n", path); |
bbefb8dd MD |
1617 | ret = -ENOENT; |
1618 | goto error; | |
1619 | } | |
1620 | ||
46322b33 MD |
1621 | td->dirfd = open(path, 0); |
1622 | if (td->dirfd < 0) { | |
6a6b384c | 1623 | fprintf(stderr, "[error] Unable to open trace directory file descriptor for path \"%s\".\n", path); |
a569a564 MD |
1624 | perror("Trace directory open"); |
1625 | ret = -errno; | |
65102a8c MD |
1626 | goto error_dirfd; |
1627 | } | |
5b80ddfb MD |
1628 | strncpy(td->path, path, sizeof(td->path)); |
1629 | td->path[sizeof(td->path) - 1] = '\0'; | |
0f980a35 | 1630 | |
65102a8c MD |
1631 | /* |
1632 | * Keep the metadata file separate. | |
1633 | */ | |
bbefb8dd | 1634 | |
06789ffd | 1635 | ret = ctf_open_trace_metadata_read(td, packet_seek, metadata_fp); |
65102a8c | 1636 | if (ret) { |
6a6b384c | 1637 | fprintf(stderr, "[warning] Unable to open trace metadata for path \"%s\".\n", path); |
65102a8c MD |
1638 | goto error_metadata; |
1639 | } | |
bbefb8dd MD |
1640 | |
1641 | /* | |
1642 | * Open each stream: for each file, try to open, check magic | |
1643 | * number, and get the stream ID to add to the right location in | |
1644 | * the stream array. | |
bbefb8dd MD |
1645 | */ |
1646 | ||
65102a8c | 1647 | dirent_len = offsetof(struct dirent, d_name) + |
46322b33 | 1648 | fpathconf(td->dirfd, _PC_NAME_MAX) + 1; |
bbefb8dd | 1649 | |
65102a8c | 1650 | dirent = malloc(dirent_len); |
bbefb8dd | 1651 | |
65102a8c | 1652 | for (;;) { |
46322b33 | 1653 | ret = readdir_r(td->dir, dirent, &diriter); |
65102a8c | 1654 | if (ret) { |
3394d22e | 1655 | fprintf(stderr, "[error] Readdir error.\n"); |
65102a8c | 1656 | goto readdir_error; |
65102a8c MD |
1657 | } |
1658 | if (!diriter) | |
1659 | break; | |
d8ea2d29 MD |
1660 | /* Ignore hidden files, ., .. and metadata. */ |
1661 | if (!strncmp(diriter->d_name, ".", 1) | |
65102a8c MD |
1662 | || !strcmp(diriter->d_name, "..") |
1663 | || !strcmp(diriter->d_name, "metadata")) | |
1664 | continue; | |
06789ffd MD |
1665 | ret = ctf_open_file_stream_read(td, diriter->d_name, |
1666 | flags, packet_seek); | |
dc48ecad | 1667 | if (ret) { |
3394d22e | 1668 | fprintf(stderr, "[error] Open file stream error.\n"); |
dc48ecad MD |
1669 | goto readdir_error; |
1670 | } | |
65102a8c | 1671 | } |
bbefb8dd | 1672 | |
65102a8c | 1673 | free(dirent); |
bbefb8dd | 1674 | return 0; |
65102a8c MD |
1675 | |
1676 | readdir_error: | |
1677 | free(dirent); | |
1678 | error_metadata: | |
f824ae04 MD |
1679 | closeret = close(td->dirfd); |
1680 | if (closeret) { | |
1681 | perror("Error on fd close"); | |
1682 | } | |
65102a8c | 1683 | error_dirfd: |
f824ae04 MD |
1684 | closeret = closedir(td->dir); |
1685 | if (closeret) { | |
1686 | perror("Error on closedir"); | |
1687 | } | |
bbefb8dd MD |
1688 | error: |
1689 | return ret; | |
1690 | } | |
1691 | ||
03798a93 JD |
1692 | /* |
1693 | * ctf_open_trace: Open a CTF trace and index it. | |
1694 | * Note that the user must seek the trace after the open (using the iterator) | |
1695 | * since the index creation read it entirely. | |
1696 | */ | |
e9378815 | 1697 | static |
5b80ddfb | 1698 | struct trace_descriptor *ctf_open_trace(const char *path, int flags, |
1cf393f6 | 1699 | void (*packet_seek)(struct bt_stream_pos *pos, size_t index, |
ae23d232 | 1700 | int whence), FILE *metadata_fp) |
bbefb8dd | 1701 | { |
46322b33 | 1702 | struct ctf_trace *td; |
bbefb8dd MD |
1703 | int ret; |
1704 | ||
2715de36 MD |
1705 | /* |
1706 | * If packet_seek is NULL, we provide our default version. | |
1707 | */ | |
1708 | if (!packet_seek) | |
1709 | packet_seek = ctf_packet_seek; | |
1710 | ||
46322b33 | 1711 | td = g_new0(struct ctf_trace, 1); |
bbefb8dd | 1712 | |
8c572eba | 1713 | switch (flags & O_ACCMODE) { |
bbefb8dd | 1714 | case O_RDONLY: |
b61922b5 | 1715 | if (!path) { |
3394d22e | 1716 | fprintf(stderr, "[error] Path missing for input CTF trace.\n"); |
b61922b5 MD |
1717 | goto error; |
1718 | } | |
06789ffd | 1719 | ret = ctf_open_trace_read(td, path, flags, packet_seek, metadata_fp); |
bbefb8dd MD |
1720 | if (ret) |
1721 | goto error; | |
1722 | break; | |
989c73bc | 1723 | case O_RDWR: |
3394d22e | 1724 | fprintf(stderr, "[error] Opening CTF traces for output is not supported yet.\n"); |
46322b33 | 1725 | goto error; |
bbefb8dd | 1726 | default: |
3394d22e | 1727 | fprintf(stderr, "[error] Incorrect open flags.\n"); |
bbefb8dd MD |
1728 | goto error; |
1729 | } | |
1730 | ||
46322b33 | 1731 | return &td->parent; |
bbefb8dd MD |
1732 | error: |
1733 | g_free(td); | |
1734 | return NULL; | |
1735 | } | |
1736 | ||
2e937fb4 | 1737 | static |
f571dfb1 JD |
1738 | void ctf_init_mmap_pos(struct ctf_stream_pos *pos, |
1739 | struct mmap_stream *mmap_info) | |
1740 | { | |
1741 | pos->mmap_offset = 0; | |
1742 | pos->packet_size = 0; | |
1743 | pos->content_size = 0; | |
1744 | pos->content_size_loc = NULL; | |
1745 | pos->fd = mmap_info->fd; | |
aee35fcc | 1746 | pos->base_mma = NULL; |
f571dfb1 JD |
1747 | pos->offset = 0; |
1748 | pos->dummy = false; | |
1749 | pos->cur_index = 0; | |
03798a93 JD |
1750 | pos->packet_cycles_index = NULL; |
1751 | pos->packet_real_index = NULL; | |
f571dfb1 JD |
1752 | pos->prot = PROT_READ; |
1753 | pos->flags = MAP_PRIVATE; | |
1754 | pos->parent.rw_table = read_dispatch_table; | |
1755 | pos->parent.event_cb = ctf_read_event; | |
1756 | } | |
1757 | ||
1758 | static | |
1759 | int prepare_mmap_stream_definition(struct ctf_trace *td, | |
1760 | struct ctf_file_stream *file_stream) | |
1761 | { | |
f380e105 | 1762 | struct ctf_stream_declaration *stream; |
f571dfb1 JD |
1763 | uint64_t stream_id = 0; |
1764 | int ret; | |
1765 | ||
1766 | file_stream->parent.stream_id = stream_id; | |
1767 | if (stream_id >= td->streams->len) { | |
3394d22e | 1768 | fprintf(stderr, "[error] Stream %" PRIu64 " is not declared " |
f571dfb1 JD |
1769 | "in metadata.\n", stream_id); |
1770 | ret = -EINVAL; | |
1771 | goto end; | |
1772 | } | |
1773 | stream = g_ptr_array_index(td->streams, stream_id); | |
1774 | if (!stream) { | |
3394d22e | 1775 | fprintf(stderr, "[error] Stream %" PRIu64 " is not declared " |
f571dfb1 JD |
1776 | "in metadata.\n", stream_id); |
1777 | ret = -EINVAL; | |
1778 | goto end; | |
1779 | } | |
1780 | file_stream->parent.stream_class = stream; | |
1781 | ret = create_stream_definitions(td, &file_stream->parent); | |
1782 | end: | |
1783 | return ret; | |
1784 | } | |
1785 | ||
1786 | static | |
1787 | int ctf_open_mmap_stream_read(struct ctf_trace *td, | |
1788 | struct mmap_stream *mmap_info, | |
1cf393f6 | 1789 | void (*packet_seek)(struct bt_stream_pos *pos, size_t index, |
f571dfb1 JD |
1790 | int whence)) |
1791 | { | |
1792 | int ret; | |
1793 | struct ctf_file_stream *file_stream; | |
1794 | ||
1795 | file_stream = g_new0(struct ctf_file_stream, 1); | |
3a25e036 | 1796 | file_stream->pos.last_offset = LAST_OFFSET_POISON; |
f571dfb1 JD |
1797 | ctf_init_mmap_pos(&file_stream->pos, mmap_info); |
1798 | ||
06789ffd | 1799 | file_stream->pos.packet_seek = packet_seek; |
f571dfb1 JD |
1800 | |
1801 | ret = create_trace_definitions(td, &file_stream->parent); | |
1802 | if (ret) { | |
1803 | goto error_def; | |
1804 | } | |
1805 | ||
1806 | ret = prepare_mmap_stream_definition(td, file_stream); | |
1807 | if (ret) | |
1808 | goto error_index; | |
1809 | ||
f7bbd502 | 1810 | /* |
50052405 | 1811 | * For now, only a single clock per trace is supported. |
f7bbd502 JD |
1812 | */ |
1813 | file_stream->parent.current_clock = td->single_clock; | |
1814 | ||
f571dfb1 JD |
1815 | /* Add stream file to stream class */ |
1816 | g_ptr_array_add(file_stream->parent.stream_class->streams, | |
1817 | &file_stream->parent); | |
1818 | return 0; | |
1819 | ||
1820 | error_index: | |
1821 | if (file_stream->parent.trace_packet_header) | |
13fad8b6 | 1822 | bt_definition_unref(&file_stream->parent.trace_packet_header->p); |
f571dfb1 JD |
1823 | error_def: |
1824 | g_free(file_stream); | |
1825 | return ret; | |
1826 | } | |
1827 | ||
2e937fb4 | 1828 | static |
f571dfb1 JD |
1829 | int ctf_open_mmap_trace_read(struct ctf_trace *td, |
1830 | struct mmap_stream_list *mmap_list, | |
1cf393f6 | 1831 | void (*packet_seek)(struct bt_stream_pos *pos, size_t index, |
f571dfb1 JD |
1832 | int whence), |
1833 | FILE *metadata_fp) | |
1834 | { | |
1835 | int ret; | |
1836 | struct mmap_stream *mmap_info; | |
1837 | ||
06789ffd | 1838 | ret = ctf_open_trace_metadata_read(td, ctf_packet_seek, metadata_fp); |
f571dfb1 JD |
1839 | if (ret) { |
1840 | goto error; | |
1841 | } | |
1842 | ||
1843 | /* | |
1844 | * for each stream, try to open, check magic number, and get the | |
1845 | * stream ID to add to the right location in the stream array. | |
1846 | */ | |
3122e6f0 | 1847 | bt_list_for_each_entry(mmap_info, &mmap_list->head, list) { |
06789ffd | 1848 | ret = ctf_open_mmap_stream_read(td, mmap_info, packet_seek); |
f571dfb1 | 1849 | if (ret) { |
3394d22e | 1850 | fprintf(stderr, "[error] Open file mmap stream error.\n"); |
f571dfb1 JD |
1851 | goto error; |
1852 | } | |
1853 | } | |
1854 | ||
1855 | return 0; | |
1856 | ||
1857 | error: | |
1858 | return ret; | |
1859 | } | |
1860 | ||
1861 | static | |
1862 | struct trace_descriptor *ctf_open_mmap_trace( | |
1863 | struct mmap_stream_list *mmap_list, | |
1cf393f6 | 1864 | void (*packet_seek)(struct bt_stream_pos *pos, size_t index, |
20d0dcf9 | 1865 | int whence), |
f571dfb1 JD |
1866 | FILE *metadata_fp) |
1867 | { | |
1868 | struct ctf_trace *td; | |
1869 | int ret; | |
1870 | ||
1871 | if (!metadata_fp) { | |
1872 | fprintf(stderr, "[error] No metadata file pointer associated, " | |
1873 | "required for mmap parsing\n"); | |
1874 | goto error; | |
1875 | } | |
06789ffd MD |
1876 | if (!packet_seek) { |
1877 | fprintf(stderr, "[error] packet_seek function undefined.\n"); | |
f571dfb1 JD |
1878 | goto error; |
1879 | } | |
1880 | td = g_new0(struct ctf_trace, 1); | |
06789ffd | 1881 | ret = ctf_open_mmap_trace_read(td, mmap_list, packet_seek, metadata_fp); |
f571dfb1 JD |
1882 | if (ret) |
1883 | goto error_free; | |
1884 | ||
1885 | return &td->parent; | |
1886 | ||
1887 | error_free: | |
1888 | g_free(td); | |
1889 | error: | |
1890 | return NULL; | |
1891 | } | |
1892 | ||
03798a93 JD |
1893 | static |
1894 | int ctf_convert_index_timestamp(struct trace_descriptor *tdp) | |
1895 | { | |
1896 | int i, j, k; | |
1897 | struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent); | |
1898 | ||
1899 | /* for each stream_class */ | |
1900 | for (i = 0; i < td->streams->len; i++) { | |
1901 | struct ctf_stream_declaration *stream_class; | |
1902 | ||
1903 | stream_class = g_ptr_array_index(td->streams, i); | |
1904 | if (!stream_class) | |
1905 | continue; | |
1906 | /* for each file_stream */ | |
1907 | for (j = 0; j < stream_class->streams->len; j++) { | |
1908 | struct ctf_stream_definition *stream; | |
1909 | struct ctf_stream_pos *stream_pos; | |
1910 | struct ctf_file_stream *cfs; | |
1911 | ||
1912 | stream = g_ptr_array_index(stream_class->streams, j); | |
1913 | if (!stream) | |
1914 | continue; | |
1915 | cfs = container_of(stream, struct ctf_file_stream, | |
1916 | parent); | |
1917 | stream_pos = &cfs->pos; | |
afe9cd4a JD |
1918 | if (!stream_pos->packet_cycles_index) |
1919 | continue; | |
1920 | ||
03798a93 JD |
1921 | for (k = 0; k < stream_pos->packet_cycles_index->len; k++) { |
1922 | struct packet_index *index; | |
1923 | struct packet_index new_index; | |
1924 | ||
1925 | index = &g_array_index(stream_pos->packet_cycles_index, | |
1926 | struct packet_index, k); | |
1927 | memcpy(&new_index, index, | |
1928 | sizeof(struct packet_index)); | |
1929 | new_index.timestamp_begin = | |
1930 | ctf_get_real_timestamp(stream, | |
1931 | index->timestamp_begin); | |
1932 | new_index.timestamp_end = | |
1933 | ctf_get_real_timestamp(stream, | |
1934 | index->timestamp_end); | |
1935 | g_array_append_val(stream_pos->packet_real_index, | |
1936 | new_index); | |
1937 | } | |
1938 | } | |
1939 | } | |
1940 | return 0; | |
1941 | } | |
1942 | ||
0f980a35 | 1943 | static |
f824ae04 | 1944 | int ctf_close_file_stream(struct ctf_file_stream *file_stream) |
0f980a35 | 1945 | { |
f824ae04 MD |
1946 | int ret; |
1947 | ||
1948 | ret = ctf_fini_pos(&file_stream->pos); | |
1949 | if (ret) { | |
1950 | fprintf(stderr, "Error on ctf_fini_pos\n"); | |
1951 | return -1; | |
1952 | } | |
1953 | ret = close(file_stream->pos.fd); | |
1954 | if (ret) { | |
1955 | perror("Error closing file fd"); | |
1956 | return -1; | |
1957 | } | |
1958 | return 0; | |
0f980a35 MD |
1959 | } |
1960 | ||
e9378815 | 1961 | static |
f824ae04 | 1962 | int ctf_close_trace(struct trace_descriptor *tdp) |
bbefb8dd | 1963 | { |
46322b33 | 1964 | struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent); |
08c82b90 | 1965 | int ret; |
0f980a35 | 1966 | |
46322b33 | 1967 | if (td->streams) { |
08c82b90 MD |
1968 | int i; |
1969 | ||
46322b33 | 1970 | for (i = 0; i < td->streams->len; i++) { |
f380e105 | 1971 | struct ctf_stream_declaration *stream; |
0f980a35 | 1972 | int j; |
e9378815 | 1973 | |
46322b33 | 1974 | stream = g_ptr_array_index(td->streams, i); |
e9378815 MD |
1975 | if (!stream) |
1976 | continue; | |
2d0bea29 | 1977 | for (j = 0; j < stream->streams->len; j++) { |
0f980a35 | 1978 | struct ctf_file_stream *file_stream; |
15d4fe3c JD |
1979 | file_stream = container_of(g_ptr_array_index(stream->streams, j), |
1980 | struct ctf_file_stream, parent); | |
f824ae04 MD |
1981 | ret = ctf_close_file_stream(file_stream); |
1982 | if (ret) | |
1983 | return ret; | |
0f980a35 | 1984 | } |
e003ab50 | 1985 | } |
e003ab50 | 1986 | } |
15d4fe3c | 1987 | ctf_destroy_metadata(td); |
f824ae04 MD |
1988 | ret = close(td->dirfd); |
1989 | if (ret) { | |
1990 | perror("Error closing dirfd"); | |
1991 | return ret; | |
1992 | } | |
1993 | ret = closedir(td->dir); | |
1994 | if (ret) { | |
1995 | perror("Error closedir"); | |
1996 | return ret; | |
1997 | } | |
bbefb8dd | 1998 | g_free(td); |
f824ae04 | 1999 | return 0; |
bbefb8dd MD |
2000 | } |
2001 | ||
98a04903 JD |
2002 | static |
2003 | void ctf_set_context(struct trace_descriptor *descriptor, | |
2004 | struct bt_context *ctx) | |
2005 | { | |
2006 | struct ctf_trace *td = container_of(descriptor, struct ctf_trace, | |
2007 | parent); | |
2008 | ||
2009 | td->ctx = ctx; | |
2010 | } | |
2011 | ||
2012 | static | |
2013 | void ctf_set_handle(struct trace_descriptor *descriptor, | |
2014 | struct bt_trace_handle *handle) | |
2015 | { | |
2016 | struct ctf_trace *td = container_of(descriptor, struct ctf_trace, | |
2017 | parent); | |
2018 | ||
2019 | td->handle = handle; | |
2020 | } | |
2021 | ||
95febab3 | 2022 | static |
7fb21036 | 2023 | void __attribute__((constructor)) ctf_init(void) |
fc93b2bd MD |
2024 | { |
2025 | int ret; | |
2026 | ||
4c8bfb7e | 2027 | ctf_format.name = g_quark_from_static_string("ctf"); |
fc93b2bd MD |
2028 | ret = bt_register_format(&ctf_format); |
2029 | assert(!ret); | |
2030 | } | |
698f0fe4 | 2031 | |
95febab3 MD |
2032 | static |
2033 | void __attribute__((destructor)) ctf_exit(void) | |
2034 | { | |
2035 | bt_unregister_format(&ctf_format); | |
2036 | } |