1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2005 Mathieu Desnoyers
4 * Complete rewrite from the original version made by XangXiu Yang.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License Version 2.1 as published by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
30 #include <sys/types.h>
35 #include <glib/gprintf.h>
48 #include "ltt-private.h"
49 #include <ltt/trace.h>
50 #include <ltt/event.h>
51 #include <ltt/ltt-types.h>
52 #include <ltt/marker.h>
55 extern long marker_update_fields_offsets(struct marker_info
*info
, const char *data
);
57 /* Tracefile names used in this file */
59 GQuark LTT_TRACEFILE_NAME_METADATA
;
66 #define __UNUSED__ __attribute__((__unused__))
68 #define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
71 #define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format)
76 /* Those macros must be called from within a function where page_size is a known
78 #define PAGE_MASK (~(page_size-1))
79 #define PAGE_ALIGN(addr) (((addr)+page_size-1)&PAGE_MASK)
81 LttTrace
*father_trace
= NULL
;
83 /* set the offset of the fields belonging to the event,
84 need the information of the archecture */
85 //void set_fields_offsets(LttTracefile *tf, LttEventType *event_type);
86 //size_t get_fields_offsets(LttTracefile *tf, LttEventType *event_type, void *data);
88 /* map a fixed size or a block information from the file (fd) */
89 static gint
map_block(LttTracefile
* tf
, guint block_num
);
91 /* calculate nsec per cycles for current block */
93 static guint32
calc_nsecs_per_cycle(LttTracefile
* t
);
94 static guint64
cycles_2_ns(LttTracefile
*tf
, guint64 cycles
);
97 /* go to the next event */
98 static int ltt_seek_next_event(LttTracefile
*tf
);
100 static int open_tracefiles(LttTrace
*trace
, gchar
*root_path
,
101 gchar
*relative_path
);
102 static int ltt_process_metadata_tracefile(LttTracefile
*tf
);
103 static void ltt_tracefile_time_span_get(LttTracefile
*tf
,
104 LttTime
*start
, LttTime
*end
);
105 static void group_time_span_get(GQuark name
, gpointer data
, gpointer user_data
);
106 static gint
map_block(LttTracefile
* tf
, guint block_num
);
107 static void ltt_update_event_size(LttTracefile
*tf
);
109 /* Enable event debugging */
110 static int a_event_debug
= 0;
112 void ltt_event_debug(int state
)
114 a_event_debug
= state
;
119 * Return value : 0 success, 1 bad tracefile
121 static int parse_trace_header(ltt_subbuffer_header_t
*header
,
122 LttTracefile
*tf
, LttTrace
*t
)
124 if (header
->magic_number
== LTT_MAGIC_NUMBER
)
126 else if(header
->magic_number
== LTT_REV_MAGIC_NUMBER
)
128 else /* invalid magic number, bad tracefile ! */
132 t
->ltt_major_version
= header
->major_version
;
133 t
->ltt_minor_version
= header
->minor_version
;
134 t
->arch_size
= header
->arch_size
;
136 tf
->alignment
= header
->alignment
;
138 /* Get float byte order : might be different from int byte order
139 * (or is set to 0 if the trace has no float (kernel trace)) */
140 tf
->float_word_order
= 0;
142 switch(header
->major_version
) {
145 g_warning("Unsupported trace version : %hhu.%hhu",
146 header
->major_version
, header
->minor_version
);
150 switch(header
->minor_version
) {
153 struct ltt_subbuffer_header_2_3
*vheader
= header
;
154 tf
->buffer_header_size
= ltt_subbuffer_header_size();
157 tf
->tsc_mask
= ((1ULL << tf
->tscbits
) - 1);
158 tf
->tsc_mask_next_bit
= (1ULL << tf
->tscbits
);
161 t
->start_freq
= ltt_get_uint64(LTT_GET_BO(tf
),
162 &vheader
->start_freq
);
163 t
->freq_scale
= ltt_get_uint32(LTT_GET_BO(tf
),
164 &vheader
->freq_scale
);
166 t
->start_freq
= father_trace
->start_freq
;
167 t
->freq_scale
= father_trace
->freq_scale
;
171 t
->start_tsc
= ltt_get_uint64(LTT_GET_BO(tf
),
172 &vheader
->cycle_count_begin
);
173 t
->start_monotonic
= 0;
174 t
->start_time
.tv_sec
= ltt_get_uint64(LTT_GET_BO(tf
),
175 &vheader
->start_time_sec
);
176 t
->start_time
.tv_nsec
= ltt_get_uint64(LTT_GET_BO(tf
),
177 &vheader
->start_time_usec
);
178 t
->start_time
.tv_nsec
*= 1000; /* microsec to nanosec */
180 t
->start_time_from_tsc
= ltt_time_from_uint64(
182 * 1000000000.0 * tf
->trace
->freq_scale
183 / (double)t
->start_freq
);
188 g_warning("Unsupported trace version : %hhu.%hhu",
189 header
->major_version
, header
->minor_version
);
194 g_warning("Unsupported trace version : %hhu.%hhu",
195 header
->major_version
, header
->minor_version
);
203 /*****************************************************************************
205 * ltt_tracefile_open : open a trace file, construct a LttTracefile
207 * t : the trace containing the tracefile
208 * fileName : path name of the trace file
209 * tf : the tracefile structure
211 * : 0 for success, -1 otherwise.
212 ****************************************************************************/
214 static gint
ltt_tracefile_open(LttTrace
*t
, gchar
* fileName
, LttTracefile
*tf
)
216 struct stat lTDFStat
; /* Trace data file status */
217 ltt_subbuffer_header_t
*header
;
218 int page_size
= getpagesize();
221 tf
->long_name
= g_quark_from_string(fileName
);
223 tf
->fd
= open(fileName
, O_RDONLY
);
225 g_warning("Unable to open input data file %s\n", fileName
);
229 // Get the file's status
230 if(fstat(tf
->fd
, &lTDFStat
) < 0){
231 g_warning("Unable to get the status of the input data file %s\n", fileName
);
235 // Is the file large enough to contain a trace
236 if(lTDFStat
.st_size
<
237 (off_t
)(ltt_subbuffer_header_size())){
238 g_print("The input data file %s does not contain a trace\n", fileName
);
242 /* Temporarily map the buffer start header to get trace information */
243 /* Multiple of pages aligned head */
244 tf
->buffer
.head
= mmap(0,
245 PAGE_ALIGN(ltt_subbuffer_header_size()), PROT_READ
,
246 MAP_PRIVATE
, tf
->fd
, 0);
247 if(tf
->buffer
.head
== MAP_FAILED
) {
248 perror("Error in allocating memory for buffer of tracefile");
251 g_assert( ( (gulong
)tf
->buffer
.head
&(8-1) ) == 0); // make sure it's aligned.
253 header
= (ltt_subbuffer_header_t
*)tf
->buffer
.head
;
255 if(parse_trace_header(header
, tf
, NULL
)) {
256 g_warning("parse_trace_header error");
260 //store the size of the file
261 tf
->file_size
= lTDFStat
.st_size
;
262 tf
->buf_size
= ltt_get_uint32(LTT_GET_BO(tf
), &header
->buf_size
);
263 tf
->num_blocks
= tf
->file_size
/ tf
->buf_size
;
265 tf
->subbuf_corrupt
= 0;
267 if(munmap(tf
->buffer
.head
,
268 PAGE_ALIGN(ltt_subbuffer_header_size()))) {
269 g_warning("unmap size : %zu\n",
270 PAGE_ALIGN(ltt_subbuffer_header_size()));
271 perror("munmap error");
274 tf
->buffer
.head
= NULL
;
276 //read the first block
277 if(map_block(tf
,0)) {
278 perror("Cannot map block for tracefile");
286 if(munmap(tf
->buffer
.head
,
287 PAGE_ALIGN(ltt_subbuffer_header_size()))) {
288 g_warning("unmap size : %zu\n",
289 PAGE_ALIGN(ltt_subbuffer_header_size()));
290 perror("munmap error");
300 /*****************************************************************************
302 * ltt_tracefile_close: close a trace file,
304 * t : tracefile which will be closed
305 ****************************************************************************/
307 static void ltt_tracefile_close(LttTracefile
*t
)
309 int page_size
= getpagesize();
311 if(t
->buffer
.head
!= NULL
)
312 if(munmap(t
->buffer
.head
, PAGE_ALIGN(t
->buf_size
))) {
313 g_warning("unmap size : %u\n",
314 PAGE_ALIGN(t
->buf_size
));
315 perror("munmap error");
322 /****************************************************************************
323 * get_absolute_pathname
325 * return the unique pathname in the system
327 * MD : Fixed this function so it uses realpath, dealing well with
328 * forgotten cases (.. were not used correctly before).
330 ****************************************************************************/
331 void get_absolute_pathname(const gchar
*pathname
, gchar
* abs_pathname
)
333 abs_pathname
[0] = '\0';
335 if (realpath(pathname
, abs_pathname
) != NULL
)
339 /* error, return the original path unmodified */
340 strcpy(abs_pathname
, pathname
);
346 /* Search for something like : .*_.*
348 * The left side is the name, the right side is the number.
350 * Exclude flight- prefix.
353 static int get_tracefile_name_number(gchar
*raw_name
,
360 guint raw_name_len
= strlen(raw_name
);
361 gchar char_name
[PATH_MAX
];
369 for(i
= 0; i
< raw_name_len
-1;i
++) {
370 if(raw_name
[i
] != '/')
373 raw_name
= &raw_name
[i
];
374 raw_name_len
= strlen(raw_name
);
376 for(i
=raw_name_len
-1;i
>=0;i
--) {
377 if(raw_name
[i
] == '_') break;
379 if(i
==-1) { /* Either not found or name length is 0 */
380 /* This is a userspace tracefile */
381 strncpy(char_name
, raw_name
, raw_name_len
);
382 char_name
[raw_name_len
] = '\0';
383 *name
= g_quark_from_string(char_name
);
384 *num
= 0; /* unknown cpu */
385 for(i
=0;i
<raw_name_len
;i
++) {
386 if(raw_name
[i
] == '/') {
391 for(;i
<raw_name_len
;i
++) {
392 if(raw_name
[i
] == '/') {
397 for(;i
<raw_name_len
;i
++) {
398 if(raw_name
[i
] == '-') {
402 if(i
== raw_name_len
) return -1;
404 tmpptr
= &raw_name
[i
];
405 for(;i
<raw_name_len
;i
++) {
406 if(raw_name
[i
] == '.') {
411 *tid
= strtoul(tmpptr
, &endptr
, 10);
413 return -1; /* No digit */
414 if(*tid
== ULONG_MAX
)
415 return -1; /* underflow / overflow */
417 tmpptr
= &raw_name
[i
];
418 for(;i
<raw_name_len
;i
++) {
419 if(raw_name
[i
] == '.') {
424 *pgid
= strtoul(tmpptr
, &endptr
, 10);
426 return -1; /* No digit */
427 if(*pgid
== ULONG_MAX
)
428 return -1; /* underflow / overflow */
430 tmpptr
= &raw_name
[i
];
431 *creation
= strtoull(tmpptr
, &endptr
, 10);
433 return -1; /* No digit */
434 if(*creation
== G_MAXUINT64
)
435 return -1; /* underflow / overflow */
439 cpu_num
= strtol(raw_name
+underscore_pos
+1, &endptr
, 10);
441 if(endptr
== raw_name
+underscore_pos
+1)
442 return -1; /* No digit */
443 if(cpu_num
== LONG_MIN
|| cpu_num
== LONG_MAX
)
444 return -1; /* underflow / overflow */
446 if (!strncmp(raw_name
, "flight-", sizeof("flight-") - 1)) {
447 raw_name
+= sizeof("flight-") - 1;
448 underscore_pos
-= sizeof("flight-") - 1;
450 strncpy(char_name
, raw_name
, underscore_pos
);
451 char_name
[underscore_pos
] = '\0';
452 *name
= g_quark_from_string(char_name
);
461 GData
**ltt_trace_get_tracefiles_groups(LttTrace
*trace
)
463 return &trace
->tracefiles
;
467 void compute_tracefile_group(GQuark key_id
,
469 struct compute_tracefile_group_args
*args
)
474 for(i
=0; i
<group
->len
; i
++) {
475 tf
= &g_array_index (group
, LttTracefile
, i
);
477 args
->func(tf
, args
->func_args
);
482 static void ltt_tracefile_group_destroy(gpointer data
)
484 GArray
*group
= (GArray
*)data
;
489 destroy_marker_data(g_array_index (group
, LttTracefile
, 0).mdata
);
490 for(i
=0; i
<group
->len
; i
++) {
491 tf
= &g_array_index (group
, LttTracefile
, i
);
493 ltt_tracefile_close(tf
);
495 g_array_free(group
, TRUE
);
498 static __attribute__ ((__unused__
)) gboolean
ltt_tracefile_group_has_cpu_online(gpointer data
)
500 GArray
*group
= (GArray
*)data
;
504 for(i
=0; i
<group
->len
; i
++) {
505 tf
= &g_array_index (group
, LttTracefile
, i
);
513 /* Open each tracefile under a specific directory. Put them in a
514 * GData : permits to access them using their tracefile group pathname.
515 * i.e. access control/modules tracefile group by index :
518 * relative path is the path relative to the trace root
519 * root path is the full path
521 * A tracefile group is simply an array where all the per cpu tracefiles sit.
524 static int open_tracefiles(LttTrace
*trace
, gchar
*root_path
, gchar
*relative_path
)
526 DIR *dir
= opendir(root_path
);
527 struct dirent
*entry
;
528 struct stat stat_buf
;
530 struct marker_data
*mdata
;
532 gchar path
[PATH_MAX
];
537 gchar rel_path
[PATH_MAX
];
546 strncpy(path
, root_path
, PATH_MAX
-1);
547 path_len
= strlen(path
);
548 path
[path_len
] = '/';
550 path_ptr
= path
+ path_len
;
552 strncpy(rel_path
, relative_path
, PATH_MAX
-1);
553 rel_path_len
= strlen(rel_path
);
554 rel_path
[rel_path_len
] = '/';
556 rel_path_ptr
= rel_path
+ rel_path_len
;
558 while((entry
= readdir(dir
)) != NULL
) {
560 if(entry
->d_name
[0] == '.') continue;
562 strncpy(path_ptr
, entry
->d_name
, PATH_MAX
- path_len
);
563 strncpy(rel_path_ptr
, entry
->d_name
, PATH_MAX
- rel_path_len
);
565 ret
= stat(path
, &stat_buf
);
571 g_debug("Tracefile file or directory : %s\n", path
);
573 // if(strcmp(rel_path, "/eventdefs") == 0) continue;
575 if(S_ISDIR(stat_buf
.st_mode
)) {
577 g_debug("Entering subdirectory...\n");
578 ret
= open_tracefiles(trace
, path
, rel_path
);
579 if(ret
< 0) continue;
580 } else if(S_ISREG(stat_buf
.st_mode
)) {
589 if(get_tracefile_name_number(rel_path
, &name
, &num
, &tid
, &pgid
, &creation
))
590 continue; /* invalid name */
592 g_debug("Opening file.\n");
593 if(ltt_tracefile_open(trace
, path
, &tmp_tf
)) {
594 g_info("Error opening tracefile %s", path
);
596 continue; /* error opening the tracefile : bad magic number ? */
599 g_debug("Tracefile name is %s and number is %u",
600 g_quark_to_string(name
), num
);
603 tmp_tf
.cpu_online
= 1;
604 tmp_tf
.cpu_num
= num
;
608 tmp_tf
.creation
= creation
;
609 group
= g_datalist_id_get_data(&trace
->tracefiles
, name
);
611 /* Elements are automatically cleared when the array is allocated.
612 * It makes the cpu_online variable set to 0 : cpu offline, by default.
614 group
= g_array_sized_new (FALSE
, TRUE
, sizeof(LttTracefile
), 10);
615 g_datalist_id_set_data_full(&trace
->tracefiles
, name
,
616 group
, ltt_tracefile_group_destroy
);
617 mdata
= allocate_marker_data();
619 g_error("Error in allocating marker data");
622 /* Add the per cpu tracefile to the named group */
623 unsigned int old_len
= group
->len
;
625 group
= g_array_set_size(group
, num
+1);
627 g_assert(group
->len
> 0);
629 mdata
= g_array_index (group
, LttTracefile
, 0).mdata
;
631 g_array_index (group
, LttTracefile
, num
) = tmp_tf
;
632 g_array_index (group
, LttTracefile
, num
).event
.tracefile
=
633 &g_array_index (group
, LttTracefile
, num
);
634 for (i
= 0; i
< group
->len
; i
++)
635 g_array_index (group
, LttTracefile
, i
).mdata
= mdata
;
645 /* Presumes the tracefile is already seeked at the beginning. It makes sense,
646 * because it must be done just after the opening */
647 static int ltt_process_metadata_tracefile(LttTracefile
*tf
)
652 err
= ltt_tracefile_read_seek(tf
);
653 if(err
== EPERM
) goto seek_error
;
654 else if(err
== ERANGE
) break; /* End of tracefile */
656 err
= ltt_tracefile_read_update_event(tf
);
657 if(err
) goto update_error
;
660 * It contains only core events :
662 * 1 : set_marker_format
664 if(tf
->event
.event_id
>= MARKER_CORE_IDS
) {
665 /* Should only contain core events */
666 g_warning("Error in processing metadata file %s, "
667 "should not contain event id %u.", g_quark_to_string(tf
->name
),
673 const char *channel_name
, *marker_name
, *format
;
675 guint8 int_size
, long_size
, pointer_size
, size_t_size
, alignment
;
677 switch((enum marker_id
)tf
->event
.event_id
) {
678 case MARKER_ID_SET_MARKER_ID
:
679 channel_name
= pos
= tf
->event
.data
;
680 pos
+= strlen(channel_name
) + 1;
682 g_debug("Doing MARKER_ID_SET_MARKER_ID of marker %s.%s",
683 channel_name
, marker_name
);
684 pos
+= strlen(marker_name
) + 1;
685 pos
+= ltt_align((size_t)pos
, sizeof(guint16
), tf
->alignment
);
686 id
= ltt_get_uint16(LTT_GET_BO(tf
), pos
);
687 g_debug("In MARKER_ID_SET_MARKER_ID of marker %s.%s id %hu",
688 channel_name
, marker_name
, id
);
689 pos
+= sizeof(guint16
);
690 int_size
= *(guint8
*)pos
;
691 pos
+= sizeof(guint8
);
692 long_size
= *(guint8
*)pos
;
693 pos
+= sizeof(guint8
);
694 pointer_size
= *(guint8
*)pos
;
695 pos
+= sizeof(guint8
);
696 size_t_size
= *(guint8
*)pos
;
697 pos
+= sizeof(guint8
);
698 alignment
= *(guint8
*)pos
;
699 pos
+= sizeof(guint8
);
700 marker_id_event(tf
->trace
,
701 g_quark_from_string(channel_name
),
702 g_quark_from_string(marker_name
),
703 id
, int_size
, long_size
,
704 pointer_size
, size_t_size
, alignment
);
706 case MARKER_ID_SET_MARKER_FORMAT
:
707 channel_name
= pos
= tf
->event
.data
;
708 pos
+= strlen(channel_name
) + 1;
710 g_debug("Doing MARKER_ID_SET_MARKER_FORMAT of marker %s.%s",
711 channel_name
, marker_name
);
712 pos
+= strlen(marker_name
) + 1;
714 pos
+= strlen(format
) + 1;
715 marker_format_event(tf
->trace
,
716 g_quark_from_string(channel_name
),
717 g_quark_from_string(marker_name
),
719 /* get information from dictionary TODO */
722 g_warning("Error in processing metadata file %s, "
723 "unknown event id %hhu.",
724 g_quark_to_string(tf
->name
),
737 g_warning("An error occured in metadata tracefile parsing");
742 * Open a trace and return its LttTrace handle.
744 * pathname must be the directory of the trace
747 LttTrace
*ltt_trace_open(const gchar
*pathname
)
749 gchar abs_path
[PATH_MAX
];
755 ltt_subbuffer_header_t
*header
;
757 struct dirent
*entry
;
758 struct stat stat_buf
;
759 gchar path
[PATH_MAX
];
761 t
= g_new(LttTrace
, 1);
762 if(!t
) goto alloc_error
;
764 get_absolute_pathname(pathname
, abs_path
);
765 t
->pathname
= g_quark_from_string(abs_path
);
767 g_datalist_init(&t
->tracefiles
);
769 /* Test to see if it looks like a trace */
770 dir
= opendir(abs_path
);
775 while((entry
= readdir(dir
)) != NULL
) {
776 strcpy(path
, abs_path
);
778 strcat(path
, entry
->d_name
);
779 ret
= stat(path
, &stat_buf
);
787 /* Open all the tracefiles */
789 if(open_tracefiles(t
, abs_path
, "")) {
790 g_warning("Error opening tracefile %s", abs_path
);
794 /* Parse each trace metadata_N files : get runtime fac. info */
795 group
= g_datalist_id_get_data(&t
->tracefiles
, LTT_TRACEFILE_NAME_METADATA
);
797 g_warning("Trace %s has no metadata tracefile", abs_path
);
802 * Get the trace information for the metadata_0 tracefile.
803 * Getting a correct trace start_time and start_tsc is insured by the fact
804 * that no subbuffers are supposed to be lost in the metadata channel.
805 * Therefore, the first subbuffer contains the start_tsc timestamp in its
808 g_assert(group
->len
> 0);
809 tf
= &g_array_index (group
, LttTracefile
, 0);
810 header
= (ltt_subbuffer_header_t
*)tf
->buffer
.head
;
811 ret
= parse_trace_header(header
, tf
, t
);
814 t
->num_cpu
= group
->len
;
816 //ret = allocate_marker_data(t);
818 // g_error("Error in allocating marker data");
820 for(i
=0; i
<group
->len
; i
++) {
821 tf
= &g_array_index (group
, LttTracefile
, i
);
823 if(ltt_process_metadata_tracefile(tf
))
825 // goto metadata_error;
832 // destroy_marker_data(t);
834 g_datalist_clear(&t
->tracefiles
);
842 /* Open another, completely independant, instance of a trace.
844 * A read on this new instance will read the first event of the trace.
846 * When we copy a trace, we want all the opening actions to happen again :
847 * the trace will be reopened and totally independant from the original.
848 * That's why we call ltt_trace_open.
850 LttTrace
*ltt_trace_copy(LttTrace
*self
)
852 return ltt_trace_open(g_quark_to_string(self
->pathname
));
859 void ltt_trace_close(LttTrace
*t
)
861 g_datalist_clear(&t
->tracefiles
);
866 /*****************************************************************************
867 * Get the start time and end time of the trace
868 ****************************************************************************/
870 void ltt_tracefile_time_span_get(LttTracefile
*tf
,
871 LttTime
*start
, LttTime
*end
)
875 err
= map_block(tf
, 0);
877 g_error("Can not map block");
878 *start
= ltt_time_infinite
;
880 *start
= tf
->buffer
.begin
.timestamp
;
882 err
= map_block(tf
, tf
->num_blocks
- 1); /* Last block */
884 g_error("Can not map block");
885 *end
= ltt_time_zero
;
887 *end
= tf
->buffer
.end
.timestamp
;
889 g_assert(end
->tv_sec
<= G_MAXUINT
);
892 struct tracefile_time_span_get_args
{
898 static void group_time_span_get(GQuark name
, gpointer data
, gpointer user_data
)
900 struct tracefile_time_span_get_args
*args
=
901 (struct tracefile_time_span_get_args
*)user_data
;
903 GArray
*group
= (GArray
*)data
;
909 for(i
=0; i
<group
->len
; i
++) {
910 tf
= &g_array_index (group
, LttTracefile
, i
);
912 ltt_tracefile_time_span_get(tf
, &tmp_start
, &tmp_end
);
913 if(ltt_time_compare(*args
->start
, tmp_start
)>0) *args
->start
= tmp_start
;
914 if(ltt_time_compare(*args
->end
, tmp_end
)<0) *args
->end
= tmp_end
;
919 /* return the start and end time of a trace */
921 void ltt_trace_time_span_get(LttTrace
*t
, LttTime
*start
, LttTime
*end
)
923 LttTime min_start
= ltt_time_infinite
;
924 LttTime max_end
= ltt_time_zero
;
925 struct tracefile_time_span_get_args args
= { t
, &min_start
, &max_end
};
927 g_datalist_foreach(&t
->tracefiles
, &group_time_span_get
, &args
);
929 if(start
!= NULL
) *start
= min_start
;
930 if(end
!= NULL
) *end
= max_end
;
935 /* Seek to the first event in a tracefile that has a time equal or greater than
936 * the time passed in parameter.
938 * If the time parameter is outside the tracefile time span, seek to the first
939 * event or if after, return ERANGE.
941 * If the time parameter is before the first event, we have to seek specially to
944 * If the time is after the end of the trace, return ERANGE.
946 * Do a binary search to find the right block, then a sequential search in the
947 * block to find the event.
949 * In the special case where the time requested fits inside a block that has no
950 * event corresponding to the requested time, the first event of the next block
953 * IMPORTANT NOTE : // FIXME everywhere...
955 * You MUST NOT do a ltt_tracefile_read right after a ltt_tracefile_seek_time :
956 * you will jump over an event if you do.
958 * Return value : 0 : no error, the tf->event can be used
959 * ERANGE : time if after the last event of the trace
960 * otherwise : this is an error.
964 int ltt_tracefile_seek_time(LttTracefile
*tf
, LttTime time
)
968 unsigned int block_num
, high
, low
;
970 /* seek at the beginning of trace */
971 err
= map_block(tf
, 0); /* First block */
973 g_error("Can not map block");
977 /* If the time is lower or equal the beginning of the trace,
978 * go to the first event. */
979 if(ltt_time_compare(time
, tf
->buffer
.begin
.timestamp
) <= 0) {
980 ret
= ltt_tracefile_read(tf
);
981 if(ret
== ERANGE
) goto range
;
982 else if (ret
) goto fail
;
983 goto found
; /* There is either no event in the trace or the event points
984 to the first event in the trace */
987 err
= map_block(tf
, tf
->num_blocks
- 1); /* Last block */
989 g_error("Can not map block");
993 /* If the time is after the end of the trace, return ERANGE. */
994 if(ltt_time_compare(time
, tf
->buffer
.end
.timestamp
) > 0) {
998 /* Binary search the block */
999 high
= tf
->num_blocks
- 1;
1003 block_num
= ((high
-low
) / 2) + low
;
1005 err
= map_block(tf
, block_num
);
1007 g_error("Can not map block");
1011 /* We cannot divide anymore : this is what would happen if the time
1012 * requested was exactly between two consecutive buffers'end and start
1013 * timestamps. This is also what would happend if we didn't deal with out
1014 * of span cases prior in this function. */
1015 /* The event is right in the buffer!
1016 * (or in the next buffer first event) */
1018 ret
= ltt_tracefile_read(tf
);
1019 if(ret
== ERANGE
) goto range
; /* ERANGE or EPERM */
1020 else if(ret
) goto fail
;
1022 if(ltt_time_compare(time
, tf
->event
.event_time
) <= 0)
1026 } else if(ltt_time_compare(time
, tf
->buffer
.begin
.timestamp
) < 0) {
1027 /* go to lower part */
1028 high
= block_num
- 1;
1029 } else if(ltt_time_compare(time
, tf
->buffer
.end
.timestamp
) > 0) {
1030 /* go to higher part */
1031 low
= block_num
+ 1;
1032 } else {/* The event is right in the buffer!
1033 (or in the next buffer first event) */
1035 ret
= ltt_tracefile_read(tf
);
1036 if(ret
== ERANGE
) goto range
; /* ERANGE or EPERM */
1037 else if(ret
) goto fail
;
1039 if(ltt_time_compare(time
, tf
->event
.event_time
) <= 0)
1051 /* Error handling */
1053 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1054 g_quark_to_string(tf
->name
));
1058 /* Seek to a position indicated by an LttEventPosition
1061 int ltt_tracefile_seek_position(LttTracefile
*tf
, const LttEventPosition
*ep
)
1065 if(ep
->tracefile
!= tf
) {
1069 err
= map_block(tf
, ep
->block
);
1071 g_error("Can not map block");
1075 tf
->event
.offset
= ep
->offset
;
1077 /* Put back the event real tsc */
1078 tf
->event
.tsc
= ep
->tsc
;
1079 tf
->buffer
.tsc
= ep
->tsc
;
1081 err
= ltt_tracefile_read_update_event(tf
);
1084 /* deactivate this, as it does nothing for now
1085 err = ltt_tracefile_read_op(tf);
1092 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1093 g_quark_to_string(tf
->name
));
1097 /* Given a TSC value, return the LttTime (seconds,nanoseconds) it
1101 LttTime
ltt_interpolate_time_from_tsc(LttTracefile
*tf
, guint64 tsc
)
1105 if(tsc
> tf
->trace
->start_tsc
) {
1106 time
= ltt_time_from_uint64(
1107 (double)(tsc
- tf
->trace
->start_tsc
)
1108 * 1000000000.0 * tf
->trace
->freq_scale
1109 / (double)tf
->trace
->start_freq
);
1110 time
= ltt_time_add(tf
->trace
->start_time_from_tsc
, time
);
1112 time
= ltt_time_from_uint64(
1113 (double)(tf
->trace
->start_tsc
- tsc
)
1114 * 1000000000.0 * tf
->trace
->freq_scale
1115 / (double)tf
->trace
->start_freq
);
1116 time
= ltt_time_sub(tf
->trace
->start_time_from_tsc
, time
);
1121 /* Calculate the real event time based on the buffer boundaries */
1122 LttTime
ltt_interpolate_time(LttTracefile
*tf
, LttEvent
*event
)
1124 return ltt_interpolate_time_from_tsc(tf
, tf
->buffer
.tsc
);
1128 /* Get the current event of the tracefile : valid until the next read */
1129 LttEvent
*ltt_tracefile_get_event(LttTracefile
*tf
)
1136 /*****************************************************************************
1138 * ltt_tracefile_read : Read the next event in the tracefile
1143 * Returns 0 if an event can be used in tf->event.
1144 * Returns ERANGE on end of trace. The event in tf->event still can be used
1145 * (if the last block was not empty).
1146 * Returns EPERM on error.
1148 * This function does make the tracefile event structure point to the event
1149 * currently pointed to by the tf->event.
1151 * Note : you must call a ltt_tracefile_seek to the beginning of the trace to
1152 * reinitialize it after an error if you want results to be coherent.
1153 * It would be the case if a end of trace last buffer has no event : the end
1154 * of trace wouldn't be returned, but an error.
1155 * We make the assumption there is at least one event per buffer.
1156 ****************************************************************************/
1158 int ltt_tracefile_read(LttTracefile
*tf
)
1162 err
= ltt_tracefile_read_seek(tf
);
1164 err
= ltt_tracefile_read_update_event(tf
);
1167 /* deactivate this, as it does nothing for now
1168 err = ltt_tracefile_read_op(tf);
1175 int ltt_tracefile_read_seek(LttTracefile
*tf
)
1179 /* Get next buffer until we finally have an event, or end of trace */
1181 err
= ltt_seek_next_event(tf
);
1182 if(unlikely(err
== ENOPROTOOPT
)) {
1186 /* Are we at the end of the buffer ? */
1188 if(unlikely(tf
->buffer
.index
== tf
->num_blocks
-1)){ /* end of trace ? */
1191 /* get next block */
1192 err
= map_block(tf
, tf
->buffer
.index
+ 1);
1194 g_error("Can not map block");
1198 } else break; /* We found an event ! */
1204 /* do an operation when reading a new event */
1206 /* This function does nothing for now */
1208 int ltt_tracefile_read_op(LttTracefile
*tf
)
1214 /* do event specific operation */
1222 static void print_debug_event_header(LttEvent
*ev
, void *start_pos
, void *end_pos
)
1224 unsigned int offset
= 0;
1227 g_printf("Event header (tracefile %s offset %" PRIx64
"):\n",
1228 g_quark_to_string(ev
->tracefile
->long_name
),
1229 ((uint64_t)ev
->tracefile
->buffer
.index
* ev
->tracefile
->buf_size
)
1230 + (long)start_pos
- (long)ev
->tracefile
->buffer
.head
);
1232 while (offset
< (long)end_pos
- (long)start_pos
) {
1233 g_printf("%8lx", (long)start_pos
- (long)ev
->tracefile
->buffer
.head
+ offset
);
1236 for (i
= 0; i
< 4 ; i
++) {
1237 for (j
= 0; j
< 4; j
++) {
1238 if (offset
+ ((i
* 4) + j
) <
1239 (long)end_pos
- (long)start_pos
)
1241 ((char*)start_pos
)[offset
+ ((i
* 4) + j
)]);
1255 /* same as ltt_tracefile_read, but does not seek to the next event nor call
1256 * event specific operation. */
1257 int ltt_tracefile_read_update_event(LttTracefile
*tf
)
1262 guint16 packed_evid
; /* event id reader from the 5 bits in header */
1265 pos
= tf
->buffer
.head
+ event
->offset
;
1267 /* Read event header */
1269 /* Align the head */
1270 pos
+= ltt_align((size_t)pos
, sizeof(guint32
), tf
->alignment
);
1273 event
->timestamp
= ltt_get_uint32(LTT_GET_BO(tf
), pos
);
1274 event
->event_id
= packed_evid
= event
->timestamp
>> tf
->tscbits
;
1275 event
->timestamp
= event
->timestamp
& tf
->tsc_mask
;
1276 pos
+= sizeof(guint32
);
1278 switch (packed_evid
) {
1279 case 29: /* LTT_RFLAG_ID_SIZE_TSC */
1280 event
->event_id
= ltt_get_uint16(LTT_GET_BO(tf
), pos
);
1281 pos
+= sizeof(guint16
);
1282 event
->event_size
= ltt_get_uint16(LTT_GET_BO(tf
), pos
);
1283 pos
+= sizeof(guint16
);
1284 if (event
->event_size
== 0xFFFF) {
1285 event
->event_size
= ltt_get_uint32(LTT_GET_BO(tf
), pos
);
1286 pos
+= sizeof(guint32
);
1288 pos
+= ltt_align((size_t)pos
, sizeof(guint64
), tf
->alignment
);
1289 tf
->buffer
.tsc
= ltt_get_uint64(LTT_GET_BO(tf
), pos
);
1290 pos
+= sizeof(guint64
);
1292 case 30: /* LTT_RFLAG_ID_SIZE */
1293 event
->event_id
= ltt_get_uint16(LTT_GET_BO(tf
), pos
);
1294 pos
+= sizeof(guint16
);
1295 event
->event_size
= ltt_get_uint16(LTT_GET_BO(tf
), pos
);
1296 pos
+= sizeof(guint16
);
1297 if (event
->event_size
== 0xFFFF) {
1298 event
->event_size
= ltt_get_uint32(LTT_GET_BO(tf
), pos
);
1299 pos
+= sizeof(guint32
);
1302 case 31: /* LTT_RFLAG_ID */
1303 event
->event_id
= ltt_get_uint16(LTT_GET_BO(tf
), pos
);
1304 pos
+= sizeof(guint16
);
1305 event
->event_size
= G_MAXUINT
;
1308 event
->event_size
= G_MAXUINT
;
1312 if (likely(packed_evid
!= 29)) {
1313 /* No extended timestamp */
1314 if (event
->timestamp
< (tf
->buffer
.tsc
& tf
->tsc_mask
))
1315 tf
->buffer
.tsc
= ((tf
->buffer
.tsc
& ~tf
->tsc_mask
) /* overflow */
1316 + tf
->tsc_mask_next_bit
)
1317 | (guint64
)event
->timestamp
;
1319 tf
->buffer
.tsc
= (tf
->buffer
.tsc
& ~tf
->tsc_mask
) /* no overflow */
1320 | (guint64
)event
->timestamp
;
1322 event
->tsc
= tf
->buffer
.tsc
;
1324 event
->event_time
= ltt_interpolate_time(tf
, event
);
1327 print_debug_event_header(event
, pos_aligned
, pos
);
1332 * Let ltt_update_event_size update event->data according to the largest
1333 * alignment within the payload.
1334 * Get the data size and update the event fields with the current
1336 ltt_update_event_size(tf
);
1342 /****************************************************************************
1344 * map_block : map a block from the file
1346 * lttdes : ltt trace file
1347 * whichBlock : the block which will be read
1350 * EINVAL : lseek fail
1351 * EIO : can not read from the file
1352 ****************************************************************************/
1354 static gint
map_block(LttTracefile
* tf
, guint block_num
)
1356 int page_size
= getpagesize();
1357 ltt_subbuffer_header_t
*header
;
1359 g_assert(block_num
< tf
->num_blocks
);
1361 if(tf
->buffer
.head
!= NULL
) {
1362 if(munmap(tf
->buffer
.head
, PAGE_ALIGN(tf
->buf_size
))) {
1363 g_warning("unmap size : %u\n",
1364 PAGE_ALIGN(tf
->buf_size
));
1365 perror("munmap error");
1370 /* Multiple of pages aligned head */
1371 tf
->buffer
.head
= mmap(0,
1372 PAGE_ALIGN(tf
->buf_size
),
1373 PROT_READ
, MAP_PRIVATE
, tf
->fd
,
1374 PAGE_ALIGN((off_t
)tf
->buf_size
* (off_t
)block_num
));
1376 if(tf
->buffer
.head
== MAP_FAILED
) {
1377 perror("Error in allocating memory for buffer of tracefile");
1381 g_assert( ( (gulong
)tf
->buffer
.head
&(8-1) ) == 0); // make sure it's aligned.
1384 tf
->buffer
.index
= block_num
;
1386 header
= (ltt_subbuffer_header_t
*)tf
->buffer
.head
;
1388 tf
->buffer
.begin
.cycle_count
= ltt_get_uint64(LTT_GET_BO(tf
),
1389 &header
->cycle_count_begin
);
1390 tf
->buffer
.end
.cycle_count
= ltt_get_uint64(LTT_GET_BO(tf
),
1391 &header
->cycle_count_end
);
1392 tf
->buffer
.lost_size
= ltt_get_uint32(LTT_GET_BO(tf
),
1393 &header
->lost_size
);
1394 tf
->buffer
.tsc
= tf
->buffer
.begin
.cycle_count
;
1395 tf
->event
.tsc
= tf
->buffer
.tsc
;
1396 tf
->buffer
.freq
= tf
->buffer
.begin
.freq
;
1398 if (tf
->trace
->start_freq
)
1400 tf
->buffer
.begin
.freq
= tf
->trace
->start_freq
;
1401 tf
->buffer
.begin
.timestamp
= ltt_interpolate_time_from_tsc(tf
,
1402 tf
->buffer
.begin
.cycle_count
);
1403 tf
->buffer
.end
.freq
= tf
->trace
->start_freq
;
1404 tf
->buffer
.end
.timestamp
= ltt_interpolate_time_from_tsc(tf
,
1405 tf
->buffer
.end
.cycle_count
);
1409 * eventually support variable buffer size : will need a partial pre-read of
1410 * the headers to create an index when we open the trace... eventually. */
1411 g_assert(tf
->buf_size
== ltt_get_uint32(LTT_GET_BO(tf
),
1412 &header
->buf_size
));
1414 /* Make the current event point to the beginning of the buffer :
1415 * it means that the event read must get the first event. */
1416 tf
->event
.tracefile
= tf
;
1417 tf
->event
.block
= block_num
;
1418 tf
->event
.offset
= 0;
1420 if (header
->events_lost
) {
1421 g_warning("%d events lost so far in tracefile %s at block %u",
1422 (guint
)header
->events_lost
,
1423 g_quark_to_string(tf
->long_name
),
1425 tf
->events_lost
= header
->events_lost
;
1427 if (header
->subbuf_corrupt
) {
1428 g_warning("%d subbuffer(s) corrupted so far in tracefile %s at block %u",
1429 (guint
)header
->subbuf_corrupt
,
1430 g_quark_to_string(tf
->long_name
),
1432 tf
->subbuf_corrupt
= header
->subbuf_corrupt
;
1441 static void print_debug_event_data(LttEvent
*ev
)
1443 unsigned int offset
= 0;
1446 if (!max(ev
->event_size
, ev
->data_size
))
1449 g_printf("Event data (tracefile %s offset %" PRIx64
"):\n",
1450 g_quark_to_string(ev
->tracefile
->long_name
),
1451 ((uint64_t)ev
->tracefile
->buffer
.index
* ev
->tracefile
->buf_size
)
1452 + (long)ev
->data
- (long)ev
->tracefile
->buffer
.head
);
1454 while (offset
< max(ev
->event_size
, ev
->data_size
)) {
1455 g_printf("%8lx", (long)ev
->data
+ offset
1456 - (long)ev
->tracefile
->buffer
.head
);
1459 for (i
= 0; i
< 4 ; i
++) {
1460 for (j
= 0; j
< 4; j
++) {
1461 if (offset
+ ((i
* 4) + j
) < max(ev
->event_size
, ev
->data_size
))
1462 g_printf("%02hhX", ((char*)ev
->data
)[offset
+ ((i
* 4) + j
)]);
1473 for (i
= 0; i
< 4; i
++) {
1474 for (j
= 0; j
< 4; j
++) {
1475 if (offset
+ ((i
* 4) + j
) < max(ev
->event_size
, ev
->data_size
)) {
1476 if (isprint(((char*)ev
->data
)[offset
+ ((i
* 4) + j
)]))
1477 g_printf("%c", ((char*)ev
->data
)[offset
+ ((i
* 4) + j
)]);
1489 /* It will update the fields offsets too */
1490 void ltt_update_event_size(LttTracefile
*tf
)
1493 struct marker_info
*info
;
1495 if (tf
->name
== LTT_TRACEFILE_NAME_METADATA
) {
1496 switch((enum marker_id
)tf
->event
.event_id
) {
1497 case MARKER_ID_SET_MARKER_ID
:
1498 size
= strlen((char*)tf
->event
.data
) + 1;
1499 g_debug("marker %s id set", (char*)tf
->event
.data
+ size
);
1500 size
+= strlen((char*)tf
->event
.data
+ size
) + 1;
1501 size
+= ltt_align(size
, sizeof(guint16
), tf
->alignment
);
1502 size
+= sizeof(guint16
);
1503 size
+= sizeof(guint8
);
1504 size
+= sizeof(guint8
);
1505 size
+= sizeof(guint8
);
1506 size
+= sizeof(guint8
);
1507 size
+= sizeof(guint8
);
1509 case MARKER_ID_SET_MARKER_FORMAT
:
1510 size
= strlen((char*)tf
->event
.data
) + 1;
1511 g_debug("marker %s format set", (char*)tf
->event
.data
);
1512 size
+= strlen((char*)tf
->event
.data
+ size
) + 1;
1513 size
+= strlen((char*)tf
->event
.data
+ size
) + 1;
1518 info
= marker_get_info_from_id(tf
->mdata
, tf
->event
.event_id
);
1520 if (tf
->event
.event_id
>= MARKER_CORE_IDS
)
1521 g_assert(info
!= NULL
);
1523 /* Do not update field offsets of core markers when initially reading the
1524 * metadata tracefile when the infos about these markers do not exist yet.
1526 if (likely(info
&& info
->fields
)) {
1528 tf
->event
.data
+= ltt_align((off_t
)(unsigned long)tf
->event
.data
,
1529 info
->largest_align
,
1531 /* size, dynamically computed */
1532 if (info
->size
!= -1)
1535 size
= marker_update_fields_offsets(marker_get_info_from_id(tf
->mdata
,
1536 tf
->event
.event_id
), tf
->event
.data
);
1539 tf
->event
.data_size
= size
;
1541 /* Check consistency between kernel and LTTV structure sizes */
1542 if(tf
->event
.event_size
== G_MAXUINT
) {
1543 /* Event size too big to fit in the event size field */
1544 tf
->event
.event_size
= tf
->event
.data_size
;
1548 print_debug_event_data(&tf
->event
);
1550 if (tf
->event
.data_size
!= tf
->event
.event_size
) {
1551 struct marker_info
*info
= marker_get_info_from_id(tf
->mdata
,
1552 tf
->event
.event_id
);
1554 g_error("Undescribed event %hhu in channel %s", tf
->event
.event_id
,
1555 g_quark_to_string(tf
->name
));
1556 g_error("Kernel/LTTV event size differs for event %s: kernel %u, LTTV %u",
1557 g_quark_to_string(info
->name
),
1558 tf
->event
.event_size
, tf
->event
.data_size
);
1564 /* Take the tf current event offset and use the event id to figure out where is
1565 * the next event offset.
1567 * This is an internal function not aiming at being used elsewhere : it will
1568 * not jump over the current block limits. Please consider using
1569 * ltt_tracefile_read to do this.
1571 * Returns 0 on success
1572 * ERANGE if we are at the end of the buffer.
1573 * ENOPROTOOPT if an error occured when getting the current event size.
1575 static int ltt_seek_next_event(LttTracefile
*tf
)
1580 /* seek over the buffer header if we are at the buffer start */
1581 if(tf
->event
.offset
== 0) {
1582 tf
->event
.offset
+= tf
->buffer_header_size
;
1584 if(tf
->event
.offset
== tf
->buf_size
- tf
->buffer
.lost_size
) {
1590 pos
= tf
->event
.data
;
1592 if(tf
->event
.data_size
< 0) goto error
;
1594 pos
+= (size_t)tf
->event
.data_size
;
1596 tf
->event
.offset
= pos
- tf
->buffer
.head
;
1598 if(tf
->event
.offset
== tf
->buf_size
- tf
->buffer
.lost_size
) {
1602 g_assert(tf
->event
.offset
< tf
->buf_size
- tf
->buffer
.lost_size
);
1608 g_error("Error in ltt_seek_next_event for tracefile %s",
1609 g_quark_to_string(tf
->name
));
1614 /*****************************************************************************
1616 * ltt_get_int : get an integer number
1618 * reverse_byte_order: must we reverse the byte order ?
1619 * size : the size of the integer
1620 * ptr : the data pointer
1622 * gint64 : a 64 bits integer
1623 ****************************************************************************/
1625 gint64
ltt_get_int(gboolean reverse_byte_order
, gint size
, void *data
)
1630 case 1: val
= *((gint8
*)data
); break;
1631 case 2: val
= ltt_get_int16(reverse_byte_order
, data
); break;
1632 case 4: val
= ltt_get_int32(reverse_byte_order
, data
); break;
1633 case 8: val
= ltt_get_int64(reverse_byte_order
, data
); break;
1634 default: val
= ltt_get_int64(reverse_byte_order
, data
);
1635 g_critical("get_int : integer size %d unknown", size
);
1642 /*****************************************************************************
1644 * ltt_get_uint : get an unsigned integer number
1646 * reverse_byte_order: must we reverse the byte order ?
1647 * size : the size of the integer
1648 * ptr : the data pointer
1650 * guint64 : a 64 bits unsigned integer
1651 ****************************************************************************/
1653 guint64
ltt_get_uint(gboolean reverse_byte_order
, gint size
, void *data
)
1658 case 1: val
= *((gint8
*)data
); break;
1659 case 2: val
= ltt_get_uint16(reverse_byte_order
, data
); break;
1660 case 4: val
= ltt_get_uint32(reverse_byte_order
, data
); break;
1661 case 8: val
= ltt_get_uint64(reverse_byte_order
, data
); break;
1662 default: val
= ltt_get_uint64(reverse_byte_order
, data
);
1663 g_critical("get_uint : unsigned integer size %d unknown",
1672 /* get the node name of the system */
1674 char * ltt_trace_system_description_node_name (LttSystemDescription
* s
)
1676 return s
->node_name
;
1680 /* get the domain name of the system */
1682 char * ltt_trace_system_description_domain_name (LttSystemDescription
* s
)
1684 return s
->domain_name
;
1688 /* get the description of the system */
1690 char * ltt_trace_system_description_description (LttSystemDescription
* s
)
1692 return s
->description
;
1696 /* get the NTP corrected start time of the trace */
1697 LttTime
ltt_trace_start_time(LttTrace
*t
)
1699 return t
->start_time
;
1702 /* get the monotonic start time of the trace */
1703 LttTime
ltt_trace_start_time_monotonic(LttTrace
*t
)
1705 return t
->start_time_from_tsc
;
1708 static __attribute__ ((__unused__
)) LttTracefile
*ltt_tracefile_new()
1711 tf
= g_new(LttTracefile
, 1);
1712 tf
->event
.tracefile
= tf
;
1716 static __attribute__ ((__unused__
)) void ltt_tracefile_destroy(LttTracefile
*tf
)
1721 static __attribute__ ((__unused__
)) void ltt_tracefile_copy(LttTracefile
*dest
, const LttTracefile
*src
)
1726 /* Before library loading... */
1728 static __attribute__((constructor
)) void init(void)
1730 LTT_TRACEFILE_NAME_METADATA
= g_quark_from_string("metadata");