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 program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License Version 2 as
8 * published by the Free Software Foundation;
10 * This program 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
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
30 #include <sys/types.h>
45 #include "ltt-private.h"
46 #include <ltt/trace.h>
47 #include <ltt/facility.h>
48 #include <ltt/event.h>
50 #include <ltt/ltt-types.h>
53 /* Facility names used in this file */
55 GQuark LTT_FACILITY_NAME_HEARTBEAT
,
56 LTT_EVENT_NAME_HEARTBEAT
;
57 GQuark LTT_TRACEFILE_NAME_FACILITIES
;
64 #define __UNUSED__ __attribute__((__unused__))
66 #define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
69 #define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format)
74 /* Those macros must be called from within a function where page_size is a known
76 #define PAGE_MASK (~(page_size-1))
77 #define PAGE_ALIGN(addr) (((addr)+page_size-1)&PAGE_MASK)
79 /* set the offset of the fields belonging to the event,
80 need the information of the archecture */
81 //void set_fields_offsets(LttTracefile *tf, LttEventType *event_type);
82 //size_t get_fields_offsets(LttTracefile *tf, LttEventType *event_type, void *data);
84 /* get the size of the field type according to
85 * The facility size information. */
87 static inline void preset_field_type_size(LttTracefile
*tf
,
88 LttEventType
*event_type
,
89 off_t offset_root
, off_t offset_parent
,
90 enum field_status
*fixed_root
, enum field_status
*fixed_parent
,
94 /* map a fixed size or a block information from the file (fd) */
95 static gint
map_block(LttTracefile
* tf
, guint block_num
);
97 /* calculate nsec per cycles for current block */
99 static guint32
calc_nsecs_per_cycle(LttTracefile
* t
);
100 static guint64
cycles_2_ns(LttTracefile
*tf
, guint64 cycles
);
103 /* go to the next event */
104 static int ltt_seek_next_event(LttTracefile
*tf
);
106 void ltt_update_event_size(LttTracefile
*tf
);
109 void precompute_offsets(LttFacility
*fac
, LttEventType
*event
);
112 /* Functions to parse system.xml file (using glib xml parser) */
113 static void parser_start_element (GMarkupParseContext __UNUSED__
*context
,
114 const gchar
*element_name
,
115 const gchar
**attribute_names
,
116 const gchar
**attribute_values
,
121 LttSystemDescription
* des
= (LttSystemDescription
* )user_data
;
122 if(strcmp("system", element_name
)){
123 *error
= g_error_new(G_MARKUP_ERROR
,
125 "This is not system.xml file");
129 while(attribute_names
[i
]){
130 if(strcmp("node_name", attribute_names
[i
])==0){
131 des
->node_name
= g_strdup(attribute_values
[i
]);
132 }else if(strcmp("domainname", attribute_names
[i
])==0){
133 des
->domain_name
= g_strdup(attribute_values
[i
]);
134 }else if(strcmp("cpu", attribute_names
[i
])==0){
135 des
->nb_cpu
= atoi(attribute_values
[i
]);
136 }else if(strcmp("arch_size", attribute_names
[i
])==0){
137 if(strcmp(attribute_values
[i
],"LP32") == 0) des
->size
= LTT_LP32
;
138 else if(strcmp(attribute_values
[i
],"ILP32") == 0) des
->size
= LTT_ILP32
;
139 else if(strcmp(attribute_values
[i
],"LP64") == 0) des
->size
= LTT_LP64
;
140 else if(strcmp(attribute_values
[i
],"ILP64") == 0) des
->size
= LTT_ILP64
;
141 else if(strcmp(attribute_values
[i
],"UNKNOWN") == 0) des
->size
= LTT_UNKNOWN
;
142 }else if(strcmp("endian", attribute_names
[i
])==0){
143 if(strcmp(attribute_values
[i
],"LITTLE_ENDIAN") == 0)
144 des
->endian
= LTT_LITTLE_ENDIAN
;
145 else if(strcmp(attribute_values
[i
],"BIG_ENDIAN") == 0)
146 des
->endian
= LTT_BIG_ENDIAN
;
147 }else if(strcmp("kernel_name", attribute_names
[i
])==0){
148 des
->kernel_name
= g_strdup(attribute_values
[i
]);
149 }else if(strcmp("kernel_release", attribute_names
[i
])==0){
150 des
->kernel_release
= g_strdup(attribute_values
[i
]);
151 }else if(strcmp("kernel_version", attribute_names
[i
])==0){
152 des
->kernel_version
= g_strdup(attribute_values
[i
]);
153 }else if(strcmp("machine", attribute_names
[i
])==0){
154 des
->machine
= g_strdup(attribute_values
[i
]);
155 }else if(strcmp("processor", attribute_names
[i
])==0){
156 des
->processor
= g_strdup(attribute_values
[i
]);
157 }else if(strcmp("hardware_platform", attribute_names
[i
])==0){
158 des
->hardware_platform
= g_strdup(attribute_values
[i
]);
159 }else if(strcmp("operating_system", attribute_names
[i
])==0){
160 des
->operating_system
= g_strdup(attribute_values
[i
]);
161 }else if(strcmp("ltt_major_version", attribute_names
[i
])==0){
162 des
->ltt_major_version
= atoi(attribute_values
[i
]);
163 }else if(strcmp("ltt_minor_version", attribute_names
[i
])==0){
164 des
->ltt_minor_version
= atoi(attribute_values
[i
]);
165 }else if(strcmp("ltt_block_size", attribute_names
[i
])==0){
166 des
->ltt_block_size
= atoi(attribute_values
[i
]);
168 *error
= g_error_new(G_MARKUP_ERROR
,
170 "Not a valid attribute");
177 static void parser_characters (GMarkupParseContext __UNUSED__
*context
,
179 gsize __UNUSED__ text_len
,
181 GError __UNUSED__
**error
)
183 LttSystemDescription
* des
= (LttSystemDescription
* )user_data
;
184 des
->description
= g_strdup(text
);
189 LttFacility
*ltt_trace_get_facility_by_num(LttTrace
*t
,
192 g_assert(num
< t
->facilities_by_num
->len
);
194 return &g_array_index(t
->facilities_by_num
, LttFacility
, num
);
198 guint
ltt_trace_get_num_cpu(LttTrace
*t
)
206 * Return value : 0 success, 1 bad tracefile
208 int parse_trace_header(void *header
, LttTracefile
*tf
, LttTrace
*t
)
210 guint32
*magic_number
= (guint32
*)header
;
211 struct ltt_trace_header_any
*any
= (struct ltt_trace_header_any
*)header
;
213 if(*magic_number
== LTT_MAGIC_NUMBER
)
215 else if(*magic_number
== LTT_REV_MAGIC_NUMBER
)
217 else /* invalid magic number, bad tracefile ! */
220 /* Get float byte order : might be different from int byte order
221 * (or is set to 0 if the trace has no float (kernel trace)) */
222 tf
->float_word_order
= any
->float_word_order
;
223 tf
->has_alignment
= any
->has_alignment
;
226 t
->arch_type
= ltt_get_uint32(LTT_GET_BO(tf
),
228 t
->arch_variant
= ltt_get_uint32(LTT_GET_BO(tf
),
230 t
->arch_size
= any
->arch_size
;
231 t
->ltt_major_version
= any
->major_version
;
232 t
->ltt_minor_version
= any
->minor_version
;
233 t
->flight_recorder
= any
->flight_recorder
;
234 t
->has_heartbeat
= any
->has_heartbeat
;
235 t
->has_tsc
= any
->has_tsc
;
239 switch(any
->major_version
) {
242 switch(any
->minor_version
) {
245 tf
->buffer_header_size
=
246 sizeof(struct ltt_block_start_header
)
247 + sizeof(struct ltt_trace_header_0_3
);
248 g_warning("Unsupported trace version : %hhu.%hhu",
249 any
->major_version
, any
->minor_version
);
255 struct ltt_trace_header_0_6
*vheader
=
256 (struct ltt_trace_header_0_6
*)header
;
257 tf
->buffer_header_size
=
258 sizeof(struct ltt_block_start_header
)
259 + sizeof(struct ltt_trace_header_0_6
);
261 t
->start_freq
= ltt_get_uint64(LTT_GET_BO(tf
),
262 &vheader
->start_freq
);
263 t
->start_tsc
= ltt_get_uint64(LTT_GET_BO(tf
),
264 &vheader
->start_tsc
);
265 t
->start_monotonic
= ltt_get_uint64(LTT_GET_BO(tf
),
266 &vheader
->start_monotonic
);
267 t
->start_time
.tv_sec
= ltt_get_uint64(LTT_GET_BO(tf
),
268 &vheader
->start_time_sec
);
269 t
->start_time
.tv_nsec
= ltt_get_uint64(LTT_GET_BO(tf
),
270 &vheader
->start_time_usec
);
271 t
->start_time
.tv_nsec
*= 1000; /* microsec to nanosec */
273 t
->start_time_from_tsc
= ltt_time_from_uint64(
274 (double)t
->start_tsc
* 1000000.0 / (double)t
->start_freq
);
279 g_warning("Unsupported trace version : %hhu.%hhu",
280 any
->major_version
, any
->minor_version
);
286 g_warning("Unsupported trace version : %hhu.%hhu",
287 any
->major_version
, any
->minor_version
);
297 /*****************************************************************************
299 * ltt_tracefile_open : open a trace file, construct a LttTracefile
301 * t : the trace containing the tracefile
302 * fileName : path name of the trace file
303 * tf : the tracefile structure
305 * : 0 for success, -1 otherwise.
306 ****************************************************************************/
308 gint
ltt_tracefile_open(LttTrace
*t
, gchar
* fileName
, LttTracefile
*tf
)
310 struct stat lTDFStat
; /* Trace data file status */
311 struct ltt_block_start_header
*header
;
312 int page_size
= getpagesize();
315 tf
->long_name
= g_quark_from_string(fileName
);
317 tf
->fd
= open(fileName
, O_RDONLY
);
319 g_warning("Unable to open input data file %s\n", fileName
);
323 // Get the file's status
324 if(fstat(tf
->fd
, &lTDFStat
) < 0){
325 g_warning("Unable to get the status of the input data file %s\n", fileName
);
329 // Is the file large enough to contain a trace
330 if(lTDFStat
.st_size
<
331 (off_t
)(sizeof(struct ltt_block_start_header
)
332 + sizeof(struct ltt_trace_header_any
))){
333 g_print("The input data file %s does not contain a trace\n", fileName
);
337 /* Temporarily map the buffer start header to get trace information */
338 /* Multiple of pages aligned head */
339 tf
->buffer
.head
= mmap(0,
340 PAGE_ALIGN(sizeof(struct ltt_block_start_header
)
341 + sizeof(struct ltt_trace_header_any
)), PROT_READ
,
342 MAP_PRIVATE
, tf
->fd
, 0);
343 if(tf
->buffer
.head
== MAP_FAILED
) {
344 perror("Error in allocating memory for buffer of tracefile");
347 g_assert( ( (guint
)tf
->buffer
.head
&(8-1) ) == 0); // make sure it's aligned.
349 header
= (struct ltt_block_start_header
*)tf
->buffer
.head
;
351 if(parse_trace_header(header
->trace
, tf
, NULL
)) {
352 g_warning("parse_trace_header error");
356 //store the size of the file
357 tf
->file_size
= lTDFStat
.st_size
;
358 tf
->buf_size
= ltt_get_uint32(LTT_GET_BO(tf
), &header
->buf_size
);
359 tf
->num_blocks
= tf
->file_size
/ tf
->buf_size
;
361 if(munmap(tf
->buffer
.head
,
362 PAGE_ALIGN(sizeof(struct ltt_block_start_header
)
363 + sizeof(struct ltt_trace_header_any
)))) {
364 g_warning("unmap size : %u\n",
365 PAGE_ALIGN(sizeof(struct ltt_block_start_header
)
366 + sizeof(struct ltt_trace_header_any
)));
367 perror("munmap error");
370 tf
->buffer
.head
= NULL
;
372 //read the first block
373 if(map_block(tf
,0)) {
374 perror("Cannot map block for tracefile");
382 if(munmap(tf
->buffer
.head
,
383 PAGE_ALIGN(sizeof(struct ltt_block_start_header
)
384 + sizeof(struct ltt_trace_header_any
)))) {
385 g_warning("unmap size : %u\n",
386 PAGE_ALIGN(sizeof(struct ltt_block_start_header
)
387 + sizeof(struct ltt_trace_header_any
)));
388 perror("munmap error");
397 LttTrace
*ltt_tracefile_get_trace(LttTracefile
*tf
)
403 /*****************************************************************************
404 *Open control and per cpu tracefiles
405 ****************************************************************************/
407 void ltt_tracefile_open_cpu(LttTrace
*t
, gchar
* tracefile_name
)
410 tf
= ltt_tracefile_open(t
,tracefile_name
);
412 t
->per_cpu_tracefile_number
++;
413 g_ptr_array_add(t
->per_cpu_tracefiles
, tf
);
416 gint
ltt_tracefile_open_control(LttTrace
*t
, gchar
* control_name
)
425 tf
= ltt_tracefile_open(t
,control_name
);
427 g_warning("ltt_tracefile_open_control : bad file descriptor");
430 t
->control_tracefile_number
++;
431 g_ptr_array_add(t
->control_tracefiles
,tf
);
433 //parse facilities tracefile to get base_id
434 if(strcmp(&control_name
[strlen(control_name
)-10],"facilities") ==0){
436 if(!ltt_tracefile_read(tf
,&ev
)) return 0; // end of file
438 if(ev
.event_id
== TRACE_FACILITY_LOAD
){
440 fLoad
.name
= (gchar
*)pos
;
441 fLoad
.checksum
= *(LttChecksum
*)(pos
+ strlen(fLoad
.name
));
442 fLoad
.base_code
= *(guint32
*)(pos
+ strlen(fLoad
.name
) + sizeof(LttChecksum
));
444 for(i
=0;i
<t
->facility_number
;i
++){
445 f
= (LttFacility
*)g_ptr_array_index(t
->facilities
,i
);
446 if(strcmp(f
->name
,fLoad
.name
)==0 && fLoad
.checksum
==f
->checksum
){
447 f
->base_id
= fLoad
.base_code
;
451 if(i
==t
->facility_number
) {
452 g_warning("Facility: %s, checksum: %u is not found",
453 fLoad
.name
,(unsigned int)fLoad
.checksum
);
456 }else if(ev
.event_id
== TRACE_BLOCK_START
){
458 }else if(ev
.event_id
== TRACE_BLOCK_END
){
461 g_warning("Not valid facilities trace file");
470 /*****************************************************************************
472 * ltt_tracefile_close: close a trace file,
474 * t : tracefile which will be closed
475 ****************************************************************************/
477 void ltt_tracefile_close(LttTracefile
*t
)
479 int page_size
= getpagesize();
481 if(t
->buffer
.head
!= NULL
)
482 if(munmap(t
->buffer
.head
, PAGE_ALIGN(t
->buf_size
))) {
483 g_warning("unmap size : %u\n",
484 PAGE_ALIGN(t
->buf_size
));
485 perror("munmap error");
493 /*****************************************************************************
494 *Get system information
495 ****************************************************************************/
497 gint
getSystemInfo(LttSystemDescription
* des
, gchar
* pathname
)
504 GMarkupParseContext
* context
;
505 GError
* error
= NULL
;
506 GMarkupParser markup_parser
=
508 parser_start_element
,
511 NULL
, /* passthrough */
515 fd
= g_open(pathname
, O_RDONLY
, 0);
517 g_warning("Can not open file : %s\n", pathname
);
521 iochan
= g_io_channel_unix_new(fd
);
523 context
= g_markup_parse_context_new(&markup_parser
, 0, des
,NULL
);
525 //while(fgets(buf,DIR_NAME_SIZE, fp) != NULL){
526 while(g_io_channel_read_line(iochan
, &buf
, &length
, NULL
, &error
)
527 != G_IO_STATUS_EOF
) {
530 g_warning("Can not read xml file: \n%s\n", error
->message
);
533 if(!g_markup_parse_context_parse(context
, buf
, length
, &error
)){
535 g_warning("Can not parse xml file: \n%s\n", error
->message
);
538 g_markup_parse_context_free(context
);
540 g_io_channel_shutdown(iochan
, FALSE
, &error
); /* No flush */
542 g_warning("Can not close file: \n%s\n", error
->message
);
550 g_markup_parse_context_free(context
);
552 g_io_channel_shutdown(iochan
, FALSE
, &error
); /* No flush */
554 g_warning("Can not close file: \n%s\n", error
->message
);
565 /*****************************************************************************
566 *The following functions get facility/tracefile information
567 ****************************************************************************/
569 gint
getFacilityInfo(LttTrace
*t
, gchar
* eventdefs
)
576 gchar fullname
[DIR_NAME_SIZE
];
577 GError
* error
= NULL
;
579 dir
= g_dir_open(eventdefs
, 0, &error
);
582 g_warning("Can not open directory: %s, %s\n", eventdefs
, error
->message
);
587 while((name
= g_dir_read_name(dir
)) != NULL
){
588 if(!g_pattern_match_simple("*.xml", name
)) continue;
589 strcpy(fullname
,eventdefs
);
590 strcat(fullname
,name
);
591 ltt_facility_open(t
,fullname
);
595 for(j
=0;j
<t
->facility_number
;j
++){
596 f
= (LttFacility
*)g_ptr_array_index(t
->facilities
, j
);
597 for(i
=0; i
<f
->event_number
; i
++){
599 setFieldsOffset(NULL
, et
, NULL
, t
);
606 /*****************************************************************************
607 *A trace is specified as a pathname to the directory containing all the
608 *associated data (control tracefiles, per cpu tracefiles, event
611 *When a trace is closed, all the associated facilities, types and fields
612 *are released as well.
616 /****************************************************************************
617 * get_absolute_pathname
619 * return the unique pathname in the system
621 * MD : Fixed this function so it uses realpath, dealing well with
622 * forgotten cases (.. were not used correctly before).
624 ****************************************************************************/
625 void get_absolute_pathname(const gchar
*pathname
, gchar
* abs_pathname
)
627 abs_pathname
[0] = '\0';
629 if ( realpath (pathname
, abs_pathname
) != NULL
)
633 /* error, return the original path unmodified */
634 strcpy(abs_pathname
, pathname
);
640 /* Search for something like : .*_.*
642 * The left side is the name, the right side is the number.
645 int get_tracefile_name_number(const gchar
*raw_name
,
649 guint raw_name_len
= strlen(raw_name
);
650 gchar char_name
[PATH_MAX
];
656 for(i
=raw_name_len
-1;i
>=0;i
--) {
657 if(raw_name
[i
] == '_') break;
659 if(i
==0) /* Either not found or name length is 0 */
663 cpu_num
= strtol(raw_name
+underscore_pos
+1, &endptr
, 10);
665 if(endptr
== raw_name
+underscore_pos
+1)
666 return -1; /* No digit */
667 if(cpu_num
== LONG_MIN
|| cpu_num
== LONG_MAX
)
668 return -1; /* underflow / overflow */
670 strncpy(char_name
, raw_name
, underscore_pos
);
672 char_name
[underscore_pos
] = '\0';
674 *name
= g_quark_from_string(char_name
);
681 GData
**ltt_trace_get_tracefiles_groups(LttTrace
*trace
)
683 return &trace
->tracefiles
;
687 void compute_tracefile_group(GQuark key_id
,
689 struct compute_tracefile_group_args
*args
)
694 for(i
=0; i
<group
->len
; i
++) {
695 tf
= &g_array_index (group
, LttTracefile
, i
);
697 args
->func(tf
, args
->func_args
);
702 void ltt_tracefile_group_destroy(gpointer data
)
704 GArray
*group
= (GArray
*)data
;
708 for(i
=0; i
<group
->len
; i
++) {
709 tf
= &g_array_index (group
, LttTracefile
, i
);
711 ltt_tracefile_close(tf
);
713 g_array_free(group
, TRUE
);
716 gboolean
ltt_tracefile_group_has_cpu_online(gpointer data
)
718 GArray
*group
= (GArray
*)data
;
722 for(i
=0; i
<group
->len
; i
++) {
723 tf
= &g_array_index (group
, LttTracefile
, i
);
724 if(tf
->cpu_online
) return 1;
730 /* Open each tracefile under a specific directory. Put them in a
731 * GData : permits to access them using their tracefile group pathname.
732 * i.e. access control/modules tracefile group by index :
735 * relative path is the path relative to the trace root
736 * root path is the full path
738 * A tracefile group is simply an array where all the per cpu tracefiles sits.
741 static int open_tracefiles(LttTrace
*trace
, gchar
*root_path
,
742 gchar
*relative_path
)
744 DIR *dir
= opendir(root_path
);
745 struct dirent
*entry
;
746 struct stat stat_buf
;
749 gchar path
[PATH_MAX
];
754 gchar rel_path
[PATH_MAX
];
763 strncpy(path
, root_path
, PATH_MAX
-1);
764 path_len
= strlen(path
);
765 path
[path_len
] = '/';
767 path_ptr
= path
+ path_len
;
769 strncpy(rel_path
, relative_path
, PATH_MAX
-1);
770 rel_path_len
= strlen(rel_path
);
771 rel_path
[rel_path_len
] = '/';
773 rel_path_ptr
= rel_path
+ rel_path_len
;
775 while((entry
= readdir(dir
)) != NULL
) {
777 if(entry
->d_name
[0] == '.') continue;
779 strncpy(path_ptr
, entry
->d_name
, PATH_MAX
- path_len
);
780 strncpy(rel_path_ptr
, entry
->d_name
, PATH_MAX
- rel_path_len
);
782 ret
= stat(path
, &stat_buf
);
788 g_debug("Tracefile file or directory : %s\n", path
);
790 if(strcmp(rel_path
, "/eventdefs") == 0) continue;
792 if(S_ISDIR(stat_buf
.st_mode
)) {
794 g_debug("Entering subdirectory...\n");
795 ret
= open_tracefiles(trace
, path
, rel_path
);
796 if(ret
< 0) continue;
797 } else if(S_ISREG(stat_buf
.st_mode
)) {
802 if(get_tracefile_name_number(rel_path
, &name
, &num
))
803 continue; /* invalid name */
805 g_debug("Opening file.\n");
806 if(ltt_tracefile_open(trace
, path
, &tmp_tf
)) {
807 g_info("Error opening tracefile %s", path
);
809 continue; /* error opening the tracefile : bad magic number ? */
812 g_debug("Tracefile name is %s and number is %u",
813 g_quark_to_string(name
), num
);
815 tmp_tf
.cpu_online
= 1;
816 tmp_tf
.cpu_num
= num
;
819 group
= g_datalist_id_get_data(&trace
->tracefiles
, name
);
821 /* Elements are automatically cleared when the array is allocated.
822 * It makes the cpu_online variable set to 0 : cpu offline, by default.
824 group
= g_array_sized_new (FALSE
, TRUE
, sizeof(LttTracefile
), 10);
825 g_datalist_id_set_data_full(&trace
->tracefiles
, name
,
826 group
, ltt_tracefile_group_destroy
);
829 /* Add the per cpu tracefile to the named group */
830 unsigned int old_len
= group
->len
;
832 group
= g_array_set_size(group
, num
+1);
833 g_array_index (group
, LttTracefile
, num
) = tmp_tf
;
843 /* ltt_get_facility_description
845 * Opens the file corresponding to the requested facility (identified by fac_id
848 * The name searched is : %trace root%/eventdefs/facname_checksum.xml
850 * Returns 0 on success, or 1 on failure.
853 static int ltt_get_facility_description(LttFacility
*f
,
855 LttTracefile
*fac_tf
)
857 char desc_file_name
[PATH_MAX
];
862 text
= g_quark_to_string(t
->pathname
);
863 textlen
= strlen(text
);
865 if(textlen
>= PATH_MAX
) goto name_error
;
866 strcpy(desc_file_name
, text
);
868 text
= "/eventdefs/";
869 textlen
+=strlen(text
);
870 if(textlen
>= PATH_MAX
) goto name_error
;
871 strcat(desc_file_name
, text
);
873 text
= g_quark_to_string(f
->name
);
874 textlen
+=strlen(text
);
875 if(textlen
>= PATH_MAX
) goto name_error
;
876 strcat(desc_file_name
, text
);
879 textlen
+=strlen(text
);
880 if(textlen
>= PATH_MAX
) goto name_error
;
881 strcat(desc_file_name
, text
);
883 err
= snprintf(desc_file_name
+textlen
, PATH_MAX
-textlen
-1,
885 if(err
< 0) goto name_error
;
887 textlen
=strlen(desc_file_name
);
891 textlen
+=strlen(text
);
892 if(textlen
>= PATH_MAX
) goto name_error
;
893 strcat(desc_file_name
, text
);
895 err
= ltt_facility_open(f
, t
, desc_file_name
);
896 if(err
) goto facility_error
;
905 static void ltt_fac_ids_destroy(gpointer data
)
907 GArray
*fac_ids
= (GArray
*)data
;
909 g_array_free(fac_ids
, TRUE
);
913 /* Presumes the tracefile is already seeked at the beginning. It makes sense,
914 * because it must be done just after the opening */
915 static int ltt_process_facility_tracefile(LttTracefile
*tf
)
924 err
= ltt_tracefile_read_seek(tf
);
925 if(err
== EPERM
) goto seek_error
;
926 else if(err
== ERANGE
) break; /* End of tracefile */
928 err
= ltt_tracefile_read_update_event(tf
);
929 if(err
) goto update_error
;
931 /* We are on a facility load/or facility unload/ or heartbeat event */
933 * * facility 0 is hardcoded : this is the core facility. It will be shown
934 * in the facility array though, and is shown as "loaded builtin" in the
936 * It contains event :
938 * 1 : facility unload
939 * 2 : state dump facility load
942 if(tf
->event
.facility_id
!= LTT_FACILITY_CORE
) {
943 /* Should only contain core facility */
944 g_warning("Error in processing facility file %s, "
945 "should not contain facility id %u.", g_quark_to_string(tf
->name
),
946 tf
->event
.facility_id
);
951 struct LttFacilityLoad
*fac_load_data
;
952 struct LttStateDumpFacilityLoad
*fac_state_dump_load_data
;
957 switch((enum ltt_core_events
)tf
->event
.event_id
) {
958 case LTT_EVENT_FACILITY_LOAD
:
959 fac_name
= (char*)(tf
->event
.data
);
960 g_debug("Doing LTT_EVENT_FACILITY_LOAD of facility %s",
962 pos
= (tf
->event
.data
+ strlen(fac_name
) + 1);
963 pos
+= ltt_align((size_t)pos
, sizeof(guint32
), tf
->has_alignment
);
964 fac_load_data
= (struct LttFacilityLoad
*)pos
;
966 fac
= &g_array_index (tf
->trace
->facilities_by_num
, LttFacility
,
967 ltt_get_uint32(LTT_GET_BO(tf
), &fac_load_data
->id
));
968 /* facility may already exist if trace is paused/unpaused */
969 if(fac
->exists
) continue;
970 fac
->name
= g_quark_from_string(fac_name
);
971 fac
->checksum
= ltt_get_uint32(LTT_GET_BO(tf
),
972 &fac_load_data
->checksum
);
973 fac
->id
= ltt_get_uint32(LTT_GET_BO(tf
), &fac_load_data
->id
);
974 fac
->pointer_size
= ltt_get_uint32(LTT_GET_BO(tf
),
975 &fac_load_data
->pointer_size
);
976 fac
->int_size
= ltt_get_uint32(LTT_GET_BO(tf
),
977 &fac_load_data
->int_size
);
978 fac
->long_size
= ltt_get_uint32(LTT_GET_BO(tf
),
979 &fac_load_data
->long_size
);
980 fac
->size_t_size
= ltt_get_uint32(LTT_GET_BO(tf
),
981 &fac_load_data
->size_t_size
);
982 fac
->alignment
= ltt_get_uint32(LTT_GET_BO(tf
),
983 &fac_load_data
->has_alignment
);
985 if(ltt_get_facility_description(fac
, tf
->trace
, tf
))
986 continue; /* error opening description */
988 fac
->trace
= tf
->trace
;
990 /* Preset the field offsets */
991 for(i
=0; i
<fac
->events
->len
; i
++){
992 et
= &g_array_index(fac
->events
, LttEventType
, i
);
993 precompute_offsets(fac
, et
);
998 fac_ids
= g_datalist_id_get_data(&tf
->trace
->facilities_by_name
,
1000 if(fac_ids
== NULL
) {
1001 fac_ids
= g_array_sized_new (FALSE
, TRUE
, sizeof(guint
), 1);
1002 g_datalist_id_set_data_full(&tf
->trace
->facilities_by_name
,
1004 fac_ids
, ltt_fac_ids_destroy
);
1006 g_array_append_val(fac_ids
, fac
->id
);
1009 case LTT_EVENT_FACILITY_UNLOAD
:
1010 g_debug("Doing LTT_EVENT_FACILITY_UNLOAD");
1011 /* We don't care about unload : facilities ID are valid for the whole
1012 * trace. They simply won't be used after the unload. */
1014 case LTT_EVENT_STATE_DUMP_FACILITY_LOAD
:
1015 fac_name
= (char*)(tf
->event
.data
);
1016 g_debug("Doing LTT_EVENT_STATE_DUMP_FACILITY_LOAD of facility %s",
1018 pos
= (tf
->event
.data
+ strlen(fac_name
) + 1);
1019 pos
+= ltt_align((size_t)pos
, sizeof(guint32
), tf
->has_alignment
);
1020 fac_state_dump_load_data
= (struct LttStateDumpFacilityLoad
*)pos
;
1022 fac
= &g_array_index (tf
->trace
->facilities_by_num
, LttFacility
,
1023 ltt_get_uint32(LTT_GET_BO(tf
), &fac_state_dump_load_data
->id
));
1024 /* facility may already exist if trace is paused/unpaused */
1025 if(fac
->exists
) continue;
1026 fac
->name
= g_quark_from_string(fac_name
);
1027 fac
->checksum
= ltt_get_uint32(LTT_GET_BO(tf
),
1028 &fac_state_dump_load_data
->checksum
);
1029 fac
->id
= ltt_get_uint32(LTT_GET_BO(tf
),
1030 &fac_state_dump_load_data
->id
);
1031 fac
->pointer_size
= ltt_get_uint32(LTT_GET_BO(tf
),
1032 &fac_state_dump_load_data
->pointer_size
);
1033 fac
->int_size
= ltt_get_uint32(LTT_GET_BO(tf
),
1034 &fac_state_dump_load_data
->int_size
);
1035 fac
->long_size
= ltt_get_uint32(LTT_GET_BO(tf
),
1036 &fac_state_dump_load_data
->long_size
);
1037 fac
->size_t_size
= ltt_get_uint32(LTT_GET_BO(tf
),
1038 &fac_state_dump_load_data
->size_t_size
);
1039 fac
->alignment
= ltt_get_uint32(LTT_GET_BO(tf
),
1040 &fac_state_dump_load_data
->has_alignment
);
1041 if(ltt_get_facility_description(fac
, tf
->trace
, tf
))
1042 continue; /* error opening description */
1044 fac
->trace
= tf
->trace
;
1046 /* Preset the field offsets */
1047 for(i
=0; i
<fac
->events
->len
; i
++){
1048 et
= &g_array_index(fac
->events
, LttEventType
, i
);
1049 precompute_offsets(fac
, et
);
1054 fac_ids
= g_datalist_id_get_data(&tf
->trace
->facilities_by_name
,
1056 if(fac_ids
== NULL
) {
1057 fac_ids
= g_array_sized_new (FALSE
, TRUE
, sizeof(guint
), 1);
1058 g_datalist_id_set_data_full(&tf
->trace
->facilities_by_name
,
1060 fac_ids
, ltt_fac_ids_destroy
);
1062 g_array_append_val(fac_ids
, fac
->id
);
1065 case LTT_EVENT_HEARTBEAT
:
1068 g_warning("Error in processing facility file %s, "
1069 "unknown event id %hhu in core facility.",
1070 g_quark_to_string(tf
->name
),
1071 tf
->event
.event_id
);
1073 goto event_id_error
;
1079 /* Error handling */
1084 g_warning("An error occured in facility tracefile parsing");
1089 LttTrace
*ltt_trace_open(const gchar
*pathname
)
1091 gchar abs_path
[PATH_MAX
];
1096 struct ltt_block_start_header
*header
;
1098 struct dirent
*entry
;
1099 guint control_found
= 0;
1100 guint eventdefs_found
= 0;
1101 struct stat stat_buf
;
1102 gchar path
[PATH_MAX
];
1104 t
= g_new(LttTrace
, 1);
1105 if(!t
) goto alloc_error
;
1107 get_absolute_pathname(pathname
, abs_path
);
1108 t
->pathname
= g_quark_from_string(abs_path
);
1110 g_datalist_init(&t
->tracefiles
);
1112 /* Test to see if it looks like a trace */
1113 dir
= opendir(abs_path
);
1118 while((entry
= readdir(dir
)) != NULL
) {
1119 strcpy(path
, abs_path
);
1121 strcat(path
, entry
->d_name
);
1122 ret
= stat(path
, &stat_buf
);
1127 if(S_ISDIR(stat_buf
.st_mode
)) {
1128 if(strcmp(entry
->d_name
, "control") == 0) {
1131 if(strcmp(entry
->d_name
, "eventdefs") == 0) {
1132 eventdefs_found
= 1;
1138 if(!control_found
|| !eventdefs_found
) goto find_error
;
1140 /* Open all the tracefiles */
1141 if(open_tracefiles(t
, abs_path
, "")) {
1142 g_warning("Error opening tracefile %s", abs_path
);
1146 /* Prepare the facilities containers : array and mapping */
1147 /* Array is zeroed : the "exists" field is set to false by default */
1148 t
->facilities_by_num
= g_array_sized_new (FALSE
,
1149 TRUE
, sizeof(LttFacility
),
1151 t
->facilities_by_num
= g_array_set_size(t
->facilities_by_num
, NUM_FACILITIES
);
1153 g_datalist_init(&t
->facilities_by_name
);
1155 /* Parse each trace control/facilitiesN files : get runtime fac. info */
1156 group
= g_datalist_id_get_data(&t
->tracefiles
, LTT_TRACEFILE_NAME_FACILITIES
);
1158 g_error("Trace %s has no facility tracefile", abs_path
);
1160 goto facilities_error
;
1163 /* Get the trace information for the control/facility 0 tracefile */
1164 g_assert(group
->len
> 0);
1165 tf
= &g_array_index (group
, LttTracefile
, 0);
1166 header
= (struct ltt_block_start_header
*)tf
->buffer
.head
;
1167 g_assert(parse_trace_header(header
->trace
,
1170 t
->num_cpu
= group
->len
;
1172 for(i
=0; i
<group
->len
; i
++) {
1173 tf
= &g_array_index (group
, LttTracefile
, i
);
1174 if(ltt_process_facility_tracefile(tf
))
1175 goto facilities_error
;
1180 /* Error handling */
1182 g_datalist_clear(&t
->facilities_by_name
);
1183 g_array_free(t
->facilities_by_num
, TRUE
);
1185 g_datalist_clear(&t
->tracefiles
);
1193 GQuark
ltt_trace_name(const LttTrace
*t
)
1199 /******************************************************************************
1200 * When we copy a trace, we want all the opening actions to happen again :
1201 * the trace will be reopened and totally independant from the original.
1202 * That's why we call ltt_trace_open.
1203 *****************************************************************************/
1204 LttTrace
*ltt_trace_copy(LttTrace
*self
)
1206 return ltt_trace_open(g_quark_to_string(self
->pathname
));
1209 void ltt_trace_close(LttTrace
*t
)
1214 for(i
=0; i
<t
->facilities_by_num
->len
; i
++) {
1215 fac
= &g_array_index (t
->facilities_by_num
, LttFacility
, i
);
1217 ltt_facility_close(fac
);
1220 g_datalist_clear(&t
->facilities_by_name
);
1221 g_array_free(t
->facilities_by_num
, TRUE
);
1222 g_datalist_clear(&t
->tracefiles
);
1227 /*****************************************************************************
1228 *Get the system description of the trace
1229 ****************************************************************************/
1231 LttFacility
*ltt_trace_facility_by_id(LttTrace
*t
, guint8 id
)
1233 g_assert(id
< t
->facilities_by_num
->len
);
1234 return &g_array_index(t
->facilities_by_num
, LttFacility
, id
);
1237 /* ltt_trace_facility_get_by_name
1239 * Returns the GArray of facility indexes. All the fac_ids that matches the
1240 * requested facility name.
1242 * If name is not found, returns NULL.
1244 GArray
*ltt_trace_facility_get_by_name(LttTrace
*t
, GQuark name
)
1246 return g_datalist_id_get_data(&t
->facilities_by_name
, name
);
1249 /*****************************************************************************
1250 * Functions to discover all the event types in the trace
1251 ****************************************************************************/
1254 unsigned ltt_trace_eventtype_number(LttTrace
*t
)
1258 unsigned int num
= t
->facility_number
;
1262 f
= (LttFacility
*)g_ptr_array_index(t
->facilities
, i
);
1263 count
+= f
->event_number
;
1270 //use an iteration on all the trace facilities, and inside iteration on all the
1271 //event types in each facilities instead.
1272 LttEventType
*ltt_trace_eventtype_get(LttTrace
*t
, unsigned evId
)
1274 LttEventType
*event_type
;
1277 f
= ltt_trace_facility_by_id(t
,evId
);
1279 if(unlikely(!f
)) event_type
= NULL
;
1280 else event_type
= f
->events
[evId
- f
->base_id
];
1287 /*****************************************************************************
1288 * ltt_trace_find_tracefile
1290 * Find a tracefile by name and index in the group.
1292 * Returns a pointer to the tracefiles, else NULL.
1293 ****************************************************************************/
1295 LttTracefile
*ltt_trace_find_tracefile(LttTrace
*t
, const gchar
*name
)
1300 /*****************************************************************************
1301 * Get the start time and end time of the trace
1302 ****************************************************************************/
1304 static void ltt_tracefile_time_span_get(LttTracefile
*tf
,
1305 LttTime
*start
, LttTime
*end
)
1309 err
= map_block(tf
, 0);
1311 g_error("Can not map block");
1312 *start
= ltt_time_infinite
;
1314 *start
= tf
->buffer
.begin
.timestamp
;
1316 err
= map_block(tf
, tf
->num_blocks
- 1); /* Last block */
1318 g_error("Can not map block");
1319 *end
= ltt_time_zero
;
1321 *end
= tf
->buffer
.end
.timestamp
;
1324 struct tracefile_time_span_get_args
{
1330 static void group_time_span_get(GQuark name
, gpointer data
, gpointer user_data
)
1332 struct tracefile_time_span_get_args
*args
=
1333 (struct tracefile_time_span_get_args
*)user_data
;
1335 GArray
*group
= (GArray
*)data
;
1341 for(i
=0; i
<group
->len
; i
++) {
1342 tf
= &g_array_index (group
, LttTracefile
, i
);
1343 if(tf
->cpu_online
) {
1344 ltt_tracefile_time_span_get(tf
, &tmp_start
, &tmp_end
);
1345 if(ltt_time_compare(*args
->start
, tmp_start
)>0) *args
->start
= tmp_start
;
1346 if(ltt_time_compare(*args
->end
, tmp_end
)<0) *args
->end
= tmp_end
;
1351 void ltt_trace_time_span_get(LttTrace
*t
, LttTime
*start
, LttTime
*end
)
1353 LttTime min_start
= ltt_time_infinite
;
1354 LttTime max_end
= ltt_time_zero
;
1355 struct tracefile_time_span_get_args args
= { t
, &min_start
, &max_end
};
1357 g_datalist_foreach(&t
->tracefiles
, &group_time_span_get
, &args
);
1359 if(start
!= NULL
) *start
= min_start
;
1360 if(end
!= NULL
) *end
= max_end
;
1365 /*****************************************************************************
1366 *Get the name of a tracefile
1367 ****************************************************************************/
1369 GQuark
ltt_tracefile_name(const LttTracefile
*tf
)
1374 GQuark
ltt_tracefile_long_name(const LttTracefile
*tf
)
1376 return tf
->long_name
;
1381 guint
ltt_tracefile_num(LttTracefile
*tf
)
1386 /*****************************************************************************
1387 * Get the number of blocks in the tracefile
1388 ****************************************************************************/
1390 guint
ltt_tracefile_block_number(LttTracefile
*tf
)
1392 return tf
->num_blocks
;
1396 /* Seek to the first event in a tracefile that has a time equal or greater than
1397 * the time passed in parameter.
1399 * If the time parameter is outside the tracefile time span, seek to the first
1400 * event or if after, return ERANGE.
1402 * If the time parameter is before the first event, we have to seek specially to
1405 * If the time is after the end of the trace, return ERANGE.
1407 * Do a binary search to find the right block, then a sequential search in the
1408 * block to find the event.
1410 * In the special case where the time requested fits inside a block that has no
1411 * event corresponding to the requested time, the first event of the next block
1414 * IMPORTANT NOTE : // FIXME everywhere...
1416 * You MUST NOT do a ltt_tracefile_read right after a ltt_tracefile_seek_time :
1417 * you will jump over an event if you do.
1419 * Return value : 0 : no error, the tf->event can be used
1420 * ERANGE : time if after the last event of the trace
1421 * otherwise : this is an error.
1425 int ltt_tracefile_seek_time(LttTracefile
*tf
, LttTime time
)
1429 unsigned int block_num
, high
, low
;
1431 /* seek at the beginning of trace */
1432 err
= map_block(tf
, 0); /* First block */
1434 g_error("Can not map block");
1438 /* If the time is lower or equal the beginning of the trace,
1439 * go to the first event. */
1440 if(ltt_time_compare(time
, tf
->buffer
.begin
.timestamp
) <= 0) {
1441 ret
= ltt_tracefile_read(tf
);
1442 if(ret
== ERANGE
) goto range
;
1443 else if (ret
) goto fail
;
1444 goto found
; /* There is either no event in the trace or the event points
1445 to the first event in the trace */
1448 err
= map_block(tf
, tf
->num_blocks
- 1); /* Last block */
1450 g_error("Can not map block");
1454 /* If the time is after the end of the trace, return ERANGE. */
1455 if(ltt_time_compare(time
, tf
->buffer
.end
.timestamp
) > 0) {
1459 /* Binary search the block */
1460 high
= tf
->num_blocks
- 1;
1464 block_num
= ((high
-low
) / 2) + low
;
1466 err
= map_block(tf
, block_num
);
1468 g_error("Can not map block");
1472 /* We cannot divide anymore : this is what would happen if the time
1473 * requested was exactly between two consecutive buffers'end and start
1474 * timestamps. This is also what would happend if we didn't deal with out
1475 * of span cases prior in this function. */
1476 /* The event is right in the buffer!
1477 * (or in the next buffer first event) */
1479 ret
= ltt_tracefile_read(tf
);
1480 if(ret
== ERANGE
) goto range
; /* ERANGE or EPERM */
1481 else if(ret
) goto fail
;
1483 if(ltt_time_compare(time
, tf
->event
.event_time
) <= 0)
1487 } else if(ltt_time_compare(time
, tf
->buffer
.begin
.timestamp
) < 0) {
1488 /* go to lower part */
1489 high
= block_num
- 1;
1490 } else if(ltt_time_compare(time
, tf
->buffer
.end
.timestamp
) > 0) {
1491 /* go to higher part */
1492 low
= block_num
+ 1;
1493 } else {/* The event is right in the buffer!
1494 (or in the next buffer first event) */
1496 ret
= ltt_tracefile_read(tf
);
1497 if(ret
== ERANGE
) goto range
; /* ERANGE or EPERM */
1498 else if(ret
) goto fail
;
1500 if(ltt_time_compare(time
, tf
->event
.event_time
) <= 0)
1512 /* Error handling */
1514 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1515 g_quark_to_string(tf
->name
));
1520 int ltt_tracefile_seek_position(LttTracefile
*tf
, const LttEventPosition
*ep
) {
1524 if(ep
->tracefile
!= tf
) {
1528 err
= map_block(tf
, ep
->block
);
1530 g_error("Can not map block");
1534 tf
->event
.offset
= ep
->offset
;
1536 err
= ltt_tracefile_read_update_event(tf
);
1538 err
= ltt_tracefile_read_op(tf
);
1544 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1545 g_quark_to_string(tf
->name
));
1549 /* Calculate the real event time based on the buffer boundaries */
1550 LttTime
ltt_interpolate_time(LttTracefile
*tf
, LttEvent
*event
)
1554 g_assert(tf
->trace
->has_tsc
);
1556 // time = ltt_time_from_uint64(
1557 // cycles_2_ns(tf, (guint64)(tf->buffer.tsc - tf->buffer.begin.cycle_count)));
1558 time
= ltt_time_from_uint64(
1559 (double)(tf
->buffer
.tsc
- tf
->trace
->start_tsc
) * 1000000.0
1560 / (double)tf
->trace
->start_freq
);
1561 //time = ltt_time_add(tf->buffer.begin.timestamp, time);
1562 time
= ltt_time_add(tf
->trace
->start_time_from_tsc
, time
);
1568 /* Get the current event of the tracefile : valid until the next read */
1569 LttEvent
*ltt_tracefile_get_event(LttTracefile
*tf
)
1576 /*****************************************************************************
1578 * ltt_tracefile_read : Read the next event in the tracefile
1583 * Returns 0 if an event can be used in tf->event.
1584 * Returns ERANGE on end of trace. The event in tf->event still can be used
1585 * (if the last block was not empty).
1586 * Returns EPERM on error.
1588 * This function does make the tracefile event structure point to the event
1589 * currently pointed to by the tf->event.
1591 * Note : you must call a ltt_tracefile_seek to the beginning of the trace to
1592 * reinitialize it after an error if you want results to be coherent.
1593 * It would be the case if a end of trace last buffer has no event : the end
1594 * of trace wouldn't be returned, but an error.
1595 * We make the assumption there is at least one event per buffer.
1596 ****************************************************************************/
1598 int ltt_tracefile_read(LttTracefile
*tf
)
1602 err
= ltt_tracefile_read_seek(tf
);
1604 err
= ltt_tracefile_read_update_event(tf
);
1606 err
= ltt_tracefile_read_op(tf
);
1612 int ltt_tracefile_read_seek(LttTracefile
*tf
)
1616 /* Get next buffer until we finally have an event, or end of trace */
1618 err
= ltt_seek_next_event(tf
);
1619 if(unlikely(err
== ENOPROTOOPT
)) {
1623 /* Are we at the end of the buffer ? */
1625 if(unlikely(tf
->buffer
.index
== tf
->num_blocks
-1)){ /* end of trace ? */
1628 /* get next block */
1629 err
= map_block(tf
, tf
->buffer
.index
+ 1);
1631 g_error("Can not map block");
1635 } else break; /* We found an event ! */
1642 /* do specific operation on events */
1643 int ltt_tracefile_read_op(LttTracefile
*tf
)
1649 /* do event specific operation */
1651 /* do something if its an heartbeat event : increment the heartbeat count */
1652 //if(event->facility_id == LTT_FACILITY_CORE)
1653 // if(event->event_id == LTT_EVENT_HEARTBEAT)
1654 // tf->cur_heart_beat_number++;
1660 /* same as ltt_tracefile_read, but does not seek to the next event nor call
1661 * event specific operation. */
1662 int ltt_tracefile_read_update_event(LttTracefile
*tf
)
1668 pos
= tf
->buffer
.head
+ event
->offset
;
1670 /* Read event header */
1672 /* Align the head */
1673 pos
+= ltt_align((size_t)pos
, tf
->trace
->arch_size
, tf
->has_alignment
);
1675 if(tf
->trace
->has_tsc
) {
1676 if(tf
->trace
->has_heartbeat
) {
1677 event
->time
.timestamp
= ltt_get_uint32(LTT_GET_BO(tf
),
1679 /* 32 bits -> 64 bits tsc */
1680 /* note : still works for seek and non seek cases. */
1681 if(event
->time
.timestamp
< (0xFFFFFFFFULL
&tf
->buffer
.tsc
)) {
1682 tf
->buffer
.tsc
= ((tf
->buffer
.tsc
&0xFFFFFFFF00000000ULL
)
1684 | (guint64
)event
->time
.timestamp
;
1685 event
->tsc
= tf
->buffer
.tsc
;
1688 tf
->buffer
.tsc
= (tf
->buffer
.tsc
&0xFFFFFFFF00000000ULL
)
1689 | (guint64
)event
->time
.timestamp
;
1690 event
->tsc
= tf
->buffer
.tsc
;
1692 pos
+= sizeof(guint32
);
1694 event
->tsc
= ltt_get_uint64(LTT_GET_BO(tf
), pos
);
1695 tf
->buffer
.tsc
= event
->tsc
;
1696 pos
+= sizeof(guint64
);
1699 event
->event_time
= ltt_interpolate_time(tf
, event
);
1701 event
->time
.delta
.tv_sec
= 0;
1702 event
->time
.delta
.tv_nsec
= ltt_get_uint32(LTT_GET_BO(tf
),
1703 pos
) * NSEC_PER_USEC
;
1705 event
->tsc
= tf
->buffer
.tsc
;
1707 event
->event_time
= ltt_time_add(tf
->buffer
.begin
.timestamp
,
1709 pos
+= sizeof(guint32
);
1712 event
->facility_id
= *(guint8
*)pos
;
1713 pos
+= sizeof(guint8
);
1715 event
->event_id
= *(guint8
*)pos
;
1716 pos
+= sizeof(guint8
);
1718 event
->event_size
= ltt_get_uint16(LTT_GET_BO(tf
), pos
);
1719 pos
+= sizeof(guint16
);
1721 /* Align the head */
1722 pos
+= ltt_align((size_t)pos
, tf
->trace
->arch_size
, tf
->has_alignment
);
1726 /* get the data size and update the event fields with the current
1728 ltt_update_event_size(tf
);
1734 /****************************************************************************
1736 * map_block : map a block from the file
1738 * lttdes : ltt trace file
1739 * whichBlock : the block which will be read
1742 * EINVAL : lseek fail
1743 * EIO : can not read from the file
1744 ****************************************************************************/
1746 static gint
map_block(LttTracefile
* tf
, guint block_num
)
1748 int page_size
= getpagesize();
1749 struct ltt_block_start_header
*header
;
1751 g_assert(block_num
< tf
->num_blocks
);
1753 if(tf
->buffer
.head
!= NULL
) {
1754 if(munmap(tf
->buffer
.head
, PAGE_ALIGN(tf
->buf_size
))) {
1755 g_warning("unmap size : %u\n",
1756 PAGE_ALIGN(tf
->buf_size
));
1757 perror("munmap error");
1763 /* Multiple of pages aligned head */
1764 tf
->buffer
.head
= mmap(0,
1765 PAGE_ALIGN(tf
->buf_size
),
1766 PROT_READ
, MAP_PRIVATE
, tf
->fd
,
1767 PAGE_ALIGN((off_t
)tf
->buf_size
* (off_t
)block_num
));
1769 if(tf
->buffer
.head
== MAP_FAILED
) {
1770 perror("Error in allocating memory for buffer of tracefile");
1774 g_assert( ( (guint
)tf
->buffer
.head
&(8-1) ) == 0); // make sure it's aligned.
1777 tf
->buffer
.index
= block_num
;
1779 header
= (struct ltt_block_start_header
*)tf
->buffer
.head
;
1782 tf
->buffer
.begin
.timestamp
= ltt_time_add(
1783 ltt_time_from_uint64(
1784 ltt_get_uint64(LTT_GET_BO(tf
),
1785 &header
->begin
.timestamp
)
1786 - tf
->trace
->start_monotonic
),
1787 tf
->trace
->start_time
);
1789 //g_debug("block %u begin : %lu.%lu", block_num,
1790 // tf->buffer.begin.timestamp.tv_sec, tf->buffer.begin.timestamp.tv_nsec);
1791 tf
->buffer
.begin
.cycle_count
= ltt_get_uint64(LTT_GET_BO(tf
),
1792 &header
->begin
.cycle_count
);
1793 tf
->buffer
.begin
.freq
= ltt_get_uint64(LTT_GET_BO(tf
),
1794 &header
->begin
.freq
);
1795 tf
->buffer
.begin
.timestamp
= ltt_time_add(
1796 ltt_time_from_uint64(
1797 (double)(tf
->buffer
.begin
.cycle_count
1798 - tf
->trace
->start_tsc
) * 1000000.0
1799 / (double)tf
->trace
->start_freq
),
1800 tf
->trace
->start_time_from_tsc
);
1803 tf
->buffer
.end
.timestamp
= ltt_time_add(
1804 ltt_time_from_uint64(
1805 ltt_get_uint64(LTT_GET_BO(tf
),
1806 &header
->end
.timestamp
)
1807 - tf
->trace
->start_monotonic
),
1808 tf
->trace
->start_time
);
1810 //g_debug("block %u end : %lu.%lu", block_num,
1811 // tf->buffer.end.timestamp.tv_sec, tf->buffer.end.timestamp.tv_nsec);
1812 tf
->buffer
.end
.cycle_count
= ltt_get_uint64(LTT_GET_BO(tf
),
1813 &header
->end
.cycle_count
);
1814 tf
->buffer
.end
.freq
= ltt_get_uint64(LTT_GET_BO(tf
),
1816 tf
->buffer
.lost_size
= ltt_get_uint32(LTT_GET_BO(tf
),
1817 &header
->lost_size
);
1818 tf
->buffer
.end
.timestamp
= ltt_time_add(
1819 ltt_time_from_uint64(
1820 (double)(tf
->buffer
.end
.cycle_count
1821 - tf
->trace
->start_tsc
) * 1000000.0
1822 / (double)tf
->trace
->start_freq
),
1823 tf
->trace
->start_time_from_tsc
);
1825 tf
->buffer
.tsc
= tf
->buffer
.begin
.cycle_count
;
1826 tf
->event
.tsc
= tf
->buffer
.tsc
;
1827 tf
->buffer
.freq
= tf
->buffer
.begin
.freq
;
1830 * eventually support variable buffer size : will need a partial pre-read of
1831 * the headers to create an index when we open the trace... eventually. */
1832 g_assert(tf
->buf_size
== ltt_get_uint32(LTT_GET_BO(tf
),
1833 &header
->buf_size
));
1835 /* Now that the buffer is mapped, calculate the time interpolation for the
1838 // tf->buffer.nsecs_per_cycle = calc_nsecs_per_cycle(tf);
1839 //tf->buffer.cyc2ns_scale = calc_nsecs_per_cycle(tf);
1841 /* Make the current event point to the beginning of the buffer :
1842 * it means that the event read must get the first event. */
1843 tf
->event
.tracefile
= tf
;
1844 tf
->event
.block
= block_num
;
1845 tf
->event
.offset
= 0;
1854 /* It will update the fields offsets too */
1855 void ltt_update_event_size(LttTracefile
*tf
)
1859 /* Specific handling of core events : necessary to read the facility control
1861 LttFacility
*f
= ltt_trace_get_facility_by_num(tf
->trace
,
1862 tf
->event
.facility_id
);
1864 if(likely(tf
->event
.facility_id
== LTT_FACILITY_CORE
)) {
1865 switch((enum ltt_core_events
)tf
->event
.event_id
) {
1866 case LTT_EVENT_FACILITY_LOAD
:
1867 size
= strlen((char*)tf
->event
.data
) + 1;
1868 //g_debug("Update Event facility load of facility %s", (char*)tf->event.data);
1869 size
+= ltt_align(size
, sizeof(guint32
), tf
->has_alignment
);
1870 size
+= sizeof(struct LttFacilityLoad
);
1872 case LTT_EVENT_FACILITY_UNLOAD
:
1873 //g_debug("Update Event facility unload");
1874 size
= sizeof(struct LttFacilityUnload
);
1876 case LTT_EVENT_STATE_DUMP_FACILITY_LOAD
:
1877 size
= strlen((char*)tf
->event
.data
) + 1;
1878 size
+= ltt_align(size
, sizeof(guint32
), tf
->has_alignment
);
1879 //g_debug("Update Event facility load state dump of facility %s",
1880 // (char*)tf->event.data);
1881 size
+= sizeof(struct LttStateDumpFacilityLoad
);
1883 case LTT_EVENT_HEARTBEAT
:
1884 //g_debug("Update Event heartbeat");
1885 size
= sizeof(TimeHeartbeat
);
1888 g_warning("Error in getting event size : tracefile %s, "
1889 "unknown event id %hhu in core facility.",
1890 g_quark_to_string(tf
->name
),
1891 tf
->event
.event_id
);
1892 goto event_id_error
;
1897 g_error("Unknown facility %hhu (0x%hhx) in tracefile %s",
1898 tf
->event
.facility_id
,
1899 tf
->event
.facility_id
,
1900 g_quark_to_string(tf
->name
));
1901 goto facility_error
;
1904 LttEventType
*event_type
=
1905 ltt_facility_eventtype_get(f
, tf
->event
.event_id
);
1908 g_error("Unknown event id %hhu in facility %s in tracefile %s",
1910 g_quark_to_string(f
->name
),
1911 g_quark_to_string(tf
->name
));
1912 goto event_type_error
;
1915 /* Compute the dynamic offsets */
1916 compute_offsets(tf
, f
, event_type
, &size
, tf
->event
.data
);
1918 //g_debug("Event root field : f.e %hhu.%hhu size %zd",
1919 // tf->event.facility_id,
1920 // tf->event.event_id, size);
1923 tf
->event
.data_size
= size
;
1925 /* Check consistency between kernel and LTTV structure sizes */
1926 g_assert(tf
->event
.data_size
== tf
->event
.event_size
);
1933 tf
->event
.data_size
= 0;
1937 /* Take the tf current event offset and use the event facility id and event id
1938 * to figure out where is the next event offset.
1940 * This is an internal function not aiming at being used elsewhere : it will
1941 * not jump over the current block limits. Please consider using
1942 * ltt_tracefile_read to do this.
1944 * Returns 0 on success
1945 * ERANGE if we are at the end of the buffer.
1946 * ENOPROTOOPT if an error occured when getting the current event size.
1948 static int ltt_seek_next_event(LttTracefile
*tf
)
1953 /* seek over the buffer header if we are at the buffer start */
1954 if(tf
->event
.offset
== 0) {
1955 tf
->event
.offset
+= tf
->buffer_header_size
;
1957 if(tf
->event
.offset
== tf
->buf_size
- tf
->buffer
.lost_size
) {
1964 pos
= tf
->event
.data
;
1966 if(tf
->event
.data_size
< 0) goto error
;
1968 pos
+= (size_t)tf
->event
.data_size
;
1970 tf
->event
.offset
= pos
- tf
->buffer
.head
;
1972 if(tf
->event
.offset
== tf
->buf_size
- tf
->buffer
.lost_size
) {
1976 g_assert(tf
->event
.offset
< tf
->buf_size
- tf
->buffer
.lost_size
);
1982 g_error("Error in ltt_seek_next_event for tracefile %s",
1983 g_quark_to_string(tf
->name
));
1988 /*****************************************************************************
1990 * calc_nsecs_per_cycle : calculate nsecs per cycle for current block
1992 * 1.0 / (freq(khz) *1000) * 1000000000
1995 ****************************************************************************/
1996 /* from timer_tsc.c */
1997 #define CYC2NS_SCALE_FACTOR 10
1998 static guint32
calc_nsecs_per_cycle(LttTracefile
* tf
)
2000 //return 1e6 / (double)tf->buffer.freq;
2001 guint32 cpu_mhz
= tf
->buffer
.freq
/ 1000;
2002 guint32 cyc2ns_scale
= (1000 << CYC2NS_SCALE_FACTOR
)/cpu_mhz
;
2004 return cyc2ns_scale
;
2005 // return 1e6 / (double)tf->buffer.freq;
2008 static guint64
cycles_2_ns(LttTracefile
*tf
, guint64 cycles
)
2010 return (cycles
* tf
->buffer
.cyc2ns_scale
) >> CYC2NS_SCALE_FACTOR
;
2015 void setFieldsOffset(LttTracefile
*tf
, LttEventType
*evT
,void *evD
)
2017 LttField
* rootFld
= evT
->root_field
;
2018 // rootFld->base_address = evD;
2021 rootFld
->field_size
= getFieldtypeSize(tf
, evT
->facility
,
2022 evT
, 0,0,rootFld
, evD
);
2026 /*****************************************************************************
2028 * set_fields_offsets : set the precomputable offset of the fields
2030 * tracefile : opened trace file
2031 * event_type : the event type
2032 ****************************************************************************/
2034 void set_fields_offsets(LttTracefile
*tf
, LttEventType
*event_type
)
2036 LttField
*field
= event_type
->root_field
;
2037 enum field_status fixed_root
= FIELD_FIXED
, fixed_parent
= FIELD_FIXED
;
2040 preset_field_type_size(tf
, event_type
, 0, 0,
2041 &fixed_root
, &fixed_parent
,
2048 /*****************************************************************************
2050 * get_alignment : Get the alignment needed for a field.
2054 * returns : The size on which it must be aligned.
2056 ****************************************************************************/
2057 off_t
get_alignment(LttField
*field
)
2059 LttType
*type
= &field
->field_type
;
2061 switch(type
->type_class
) {
2063 case LTT_UINT_FIXED
:
2078 /* Align offset on type size */
2079 return field
->field_size
;
2085 g_assert(type
->fields
->len
== 1);
2087 LttField
*child
= &g_array_index(type
->fields
, LttField
, 0);
2088 return get_alignment(child
);
2092 g_assert(type
->fields
->len
== 2);
2095 LttField
*child
= &g_array_index(type
->fields
, LttField
, 0);
2097 localign
= max(localign
, get_alignment(child
));
2099 child
= &g_array_index(type
->fields
, LttField
, 1);
2100 localign
= max(localign
, get_alignment(child
));
2111 for(i
=0; i
<type
->fields
->len
; i
++) {
2112 LttField
*child
= &g_array_index(type
->fields
, LttField
, i
);
2113 localign
= max(localign
, get_alignment(child
));
2120 g_error("get_alignment : unknown type");
2125 /*****************************************************************************
2127 * field_compute_static_size : Determine the size of fields known by their
2128 * sole definition. Unions, arrays and struct sizes might be known, but
2129 * the parser does not give that information.
2134 ****************************************************************************/
2136 void field_compute_static_size(LttFacility
*fac
, LttField
*field
)
2138 LttType
*type
= &field
->field_type
;
2140 switch(type
->type_class
) {
2142 case LTT_UINT_FIXED
:
2161 /* note this : array type size is the number of elements in the array,
2162 * while array field size of the length of the array in bytes */
2163 g_assert(type
->fields
->len
== 1);
2165 LttField
*child
= &g_array_index(type
->fields
, LttField
, 0);
2166 field_compute_static_size(fac
, child
);
2168 if(child
->field_size
!= 0) {
2169 field
->field_size
= type
->size
* child
->field_size
;
2170 field
->dynamic_offsets
= g_array_sized_new(FALSE
, TRUE
,
2171 sizeof(off_t
), type
->size
);
2173 field
->field_size
= 0;
2178 g_assert(type
->fields
->len
== 2);
2180 off_t local_offset
= 0;
2181 LttField
*child
= &g_array_index(type
->fields
, LttField
, 1);
2182 field_compute_static_size(fac
, child
);
2183 field
->field_size
= 0;
2185 if(child
->field_size
!= 0) {
2186 field
->dynamic_offsets
= g_array_sized_new(FALSE
, TRUE
,
2187 sizeof(off_t
), SEQUENCE_AVG_ELEMENTS
);
2195 for(i
=0;i
<type
->fields
->len
;i
++) {
2196 LttField
*child
= &g_array_index(type
->fields
, LttField
, i
);
2197 field_compute_static_size(fac
, child
);
2198 if(child
->field_size
!= 0) {
2199 type
->size
+= ltt_align(type
->size
, get_alignment(child
),
2201 type
->size
+= child
->field_size
;
2203 /* As soon as we find a child with variable size, we have
2204 * a variable size */
2209 field
->field_size
= type
->size
;
2213 g_error("field_static_size : unknown type");
2220 /*****************************************************************************
2222 * precompute_fields_offsets : set the precomputable offset of the fields
2226 * offset : pointer to the current offset, must be incremented
2228 * return : 1 : found a variable length field, stop the processing.
2230 ****************************************************************************/
2233 gint
precompute_fields_offsets(LttFacility
*fac
, LttField
*field
, off_t
*offset
)
2235 LttType
*type
= &field
->field_type
;
2237 switch(type
->type_class
) {
2239 case LTT_UINT_FIXED
:
2254 g_assert(field
->field_size
!= 0);
2255 /* Align offset on type size */
2256 *offset
+= ltt_align(*offset
, get_alignment(field
),
2258 /* remember offset */
2259 field
->offset_root
= *offset
;
2260 field
->fixed_root
= FIELD_FIXED
;
2261 /* Increment offset */
2262 *offset
+= field
->field_size
;
2266 field
->offset_root
= *offset
;
2267 field
->fixed_root
= FIELD_FIXED
;
2271 g_assert(type
->fields
->len
== 1);
2273 LttField
*child
= &g_array_index(type
->fields
, LttField
, 0);
2275 *offset
+= ltt_align(*offset
, get_alignment(field
),
2278 /* remember offset */
2279 field
->offset_root
= *offset
;
2280 field
->array_offset
= *offset
;
2281 field
->fixed_root
= FIELD_FIXED
;
2283 /* Let the child be variable */
2284 //precompute_fields_offsets(tf, child, offset);
2286 if(field
->field_size
!= 0) {
2287 /* Increment offset */
2288 /* field_size is the array size in bytes */
2289 *offset
+= field
->field_size
;
2297 g_assert(type
->fields
->len
== 2);
2302 *offset
+= ltt_align(*offset
, get_alignment(field
),
2305 /* remember offset */
2306 field
->offset_root
= *offset
;
2307 field
->fixed_root
= FIELD_FIXED
;
2309 child
= &g_array_index(type
->fields
, LttField
, 0);
2310 ret
= precompute_fields_offsets(fac
, child
, offset
);
2311 g_assert(ret
== 0); /* Seq len cannot have variable len */
2313 child
= &g_array_index(type
->fields
, LttField
, 1);
2314 *offset
+= ltt_align(*offset
, get_alignment(child
),
2316 field
->array_offset
= *offset
;
2317 /* Let the child be variable. */
2318 //ret = precompute_fields_offsets(fac, child, offset);
2320 /* Cannot precompute fields offsets of sequence members, and has
2321 * variable length. */
2331 *offset
+= ltt_align(*offset
, get_alignment(field
),
2333 /* remember offset */
2334 field
->offset_root
= *offset
;
2335 field
->fixed_root
= FIELD_FIXED
;
2337 for(i
=0; i
< type
->fields
->len
; i
++) {
2338 child
= &g_array_index(type
->fields
, LttField
, i
);
2339 ret
= precompute_fields_offsets(fac
, child
, offset
);
2352 *offset
+= ltt_align(*offset
, get_alignment(field
),
2354 /* remember offset */
2355 field
->offset_root
= *offset
;
2356 field
->fixed_root
= FIELD_FIXED
;
2358 for(i
=0; i
< type
->fields
->len
; i
++) {
2359 *offset
= field
->offset_root
;
2360 child
= &g_array_index(type
->fields
, LttField
, i
);
2361 ret
= precompute_fields_offsets(fac
, child
, offset
);
2365 *offset
= field
->offset_root
+ field
->field_size
;
2372 g_error("precompute_fields_offsets : unknown type");
2379 /*****************************************************************************
2381 * precompute_offsets : set the precomputable offset of an event type
2384 * event : event type
2386 ****************************************************************************/
2387 void precompute_offsets(LttFacility
*fac
, LttEventType
*event
)
2393 /* First, compute the size of fixed size fields. Will determine size for
2394 * arrays, struct and unions, which is not done by the parser */
2395 for(i
=0; i
<event
->fields
->len
; i
++) {
2396 LttField
*field
= &g_array_index(event
->fields
, LttField
, i
);
2397 field_compute_static_size(fac
, field
);
2400 /* Precompute all known offsets */
2401 for(i
=0; i
<event
->fields
->len
; i
++) {
2402 LttField
*field
= &g_array_index(event
->fields
, LttField
, i
);
2403 ret
= precompute_fields_offsets(fac
, field
, &offset
);
2411 /*****************************************************************************
2413 * preset_field_type_size : set the fixed sizes of the field type
2416 * event_type : event type
2417 * offset_root : offset from the root
2418 * offset_parent : offset from the parent
2419 * fixed_root : Do we know a fixed offset to the root ?
2420 * fixed_parent : Do we know a fixed offset to the parent ?
2422 ****************************************************************************/
2426 // preset the fixed size offsets. Calculate them just like genevent-new : an
2427 // increment of a *to value that represents the offset from the start of the
2429 // The preset information is : offsets up to (and including) the first element
2430 // of variable size. All subsequent fields must be flagged "VARIABLE OFFSET".
2432 void preset_field_type_size(LttTracefile
*tf
, LttEventType
*event_type
,
2433 off_t offset_root
, off_t offset_parent
,
2434 enum field_status
*fixed_root
, enum field_status
*fixed_parent
,
2437 enum field_status local_fixed_root
, local_fixed_parent
;
2441 g_assert(field
->fixed_root
== FIELD_UNKNOWN
);
2442 g_assert(field
->fixed_parent
== FIELD_UNKNOWN
);
2443 g_assert(field
->fixed_size
== FIELD_UNKNOWN
);
2445 type
= field
->field_type
;
2447 field
->fixed_root
= *fixed_root
;
2448 if(field
->fixed_root
== FIELD_FIXED
)
2449 field
->offset_root
= offset_root
;
2451 field
->offset_root
= 0;
2453 field
->fixed_parent
= *fixed_parent
;
2454 if(field
->fixed_parent
== FIELD_FIXED
)
2455 field
->offset_parent
= offset_parent
;
2457 field
->offset_parent
= 0;
2459 size_t current_root_offset
;
2460 size_t current_offset
;
2461 enum field_status current_child_status
, final_child_status
;
2464 switch(type
->type_class
) {
2469 field
->field_size
= ltt_type_size(tf
->trace
, type
);
2470 field
->fixed_size
= FIELD_FIXED
;
2473 field
->field_size
= (off_t
)event_type
->facility
->pointer_size
;
2474 field
->fixed_size
= FIELD_FIXED
;
2478 field
->field_size
= (off_t
)event_type
->facility
->long_size
;
2479 field
->fixed_size
= FIELD_FIXED
;
2484 field
->field_size
= (off_t
)event_type
->facility
->size_t_size
;
2485 field
->fixed_size
= FIELD_FIXED
;
2488 local_fixed_root
= FIELD_VARIABLE
;
2489 local_fixed_parent
= FIELD_VARIABLE
;
2490 preset_field_type_size(tf
, event_type
,
2492 &local_fixed_root
, &local_fixed_parent
,
2494 field
->fixed_size
= FIELD_VARIABLE
;
2495 field
->field_size
= 0;
2496 *fixed_root
= FIELD_VARIABLE
;
2497 *fixed_parent
= FIELD_VARIABLE
;
2500 field
->fixed_size
= FIELD_VARIABLE
;
2501 field
->field_size
= 0;
2502 *fixed_root
= FIELD_VARIABLE
;
2503 *fixed_parent
= FIELD_VARIABLE
;
2506 local_fixed_root
= FIELD_VARIABLE
;
2507 local_fixed_parent
= FIELD_VARIABLE
;
2508 preset_field_type_size(tf
, event_type
,
2510 &local_fixed_root
, &local_fixed_parent
,
2512 field
->fixed_size
= field
->child
[0]->fixed_size
;
2513 if(field
->fixed_size
== FIELD_FIXED
) {
2514 field
->field_size
= type
->element_number
* field
->child
[0]->field_size
;
2516 field
->field_size
= 0;
2517 *fixed_root
= FIELD_VARIABLE
;
2518 *fixed_parent
= FIELD_VARIABLE
;
2522 current_root_offset
= field
->offset_root
;
2524 current_child_status
= FIELD_FIXED
;
2525 for(i
=0;i
<type
->element_number
;i
++) {
2526 preset_field_type_size(tf
, event_type
,
2527 current_root_offset
, current_offset
,
2528 fixed_root
, ¤t_child_status
,
2530 if(current_child_status
== FIELD_FIXED
) {
2531 current_root_offset
+= field
->child
[i
]->field_size
;
2532 current_offset
+= field
->child
[i
]->field_size
;
2534 current_root_offset
= 0;
2538 if(current_child_status
!= FIELD_FIXED
) {
2539 *fixed_parent
= current_child_status
;
2540 field
->field_size
= 0;
2541 field
->fixed_size
= current_child_status
;
2543 field
->field_size
= current_offset
;
2544 field
->fixed_size
= FIELD_FIXED
;
2548 current_root_offset
= field
->offset_root
;
2551 final_child_status
= FIELD_FIXED
;
2552 for(i
=0;i
<type
->element_number
;i
++) {
2553 enum field_status current_root_child_status
= FIELD_FIXED
;
2554 enum field_status current_child_status
= FIELD_FIXED
;
2555 preset_field_type_size(tf
, event_type
,
2556 current_root_offset
, current_offset
,
2557 ¤t_root_child_status
, ¤t_child_status
,
2559 if(current_child_status
!= FIELD_FIXED
)
2560 final_child_status
= current_child_status
;
2562 max_size
= max(max_size
, field
->child
[i
]->field_size
);
2564 if(final_child_status
!= FIELD_FIXED
) {
2565 g_error("LTTV does not support variable size fields in unions.");
2566 /* This will stop the application. */
2567 *fixed_root
= final_child_status
;
2568 *fixed_parent
= final_child_status
;
2569 field
->field_size
= 0;
2570 field
->fixed_size
= current_child_status
;
2572 field
->field_size
= max_size
;
2573 field
->fixed_size
= FIELD_FIXED
;
2581 /*****************************************************************************
2583 * check_fields_compatibility : Check for compatibility between two fields :
2584 * do they use the same inner structure ?
2586 * event_type1 : event type
2587 * event_type2 : event type
2590 *Returns : 0 if identical
2592 ****************************************************************************/
2593 // this function checks for equality of field types. Therefore, it does not use
2594 // per se offsets. For instance, an aligned version of a structure is
2595 // compatible with an unaligned version of the same structure.
2596 gint
check_fields_compatibility(LttEventType
*event_type1
,
2597 LttEventType
*event_type2
,
2598 LttField
*field1
, LttField
*field2
)
2600 guint different
= 0;
2604 if(field1
== NULL
) {
2605 if(field2
== NULL
) goto end
;
2610 } else if(field2
== NULL
) {
2615 type1
= &field1
->field_type
;
2616 type2
= &field2
->field_type
;
2618 if(type1
->type_class
!= type2
->type_class
) {
2623 switch(type1
->type_class
) {
2625 case LTT_UINT_FIXED
:
2640 if(field1
->field_size
!= field2
->field_size
)
2647 LttField
*child1
= &g_array_index(type1
->fields
, LttField
, 0);
2648 LttField
*child2
= &g_array_index(type2
->fields
, LttField
, 0);
2650 if(type1
->size
!= type2
->size
)
2652 if(check_fields_compatibility(event_type1
, event_type2
, child1
, child2
))
2658 LttField
*child1
= &g_array_index(type1
->fields
, LttField
, 1);
2659 LttField
*child2
= &g_array_index(type2
->fields
, LttField
, 1);
2661 if(check_fields_compatibility(event_type1
, event_type2
, child1
, child2
))
2671 if(type1
->fields
->len
!= type2
->fields
->len
) {
2676 for(i
=0; i
< type1
->fields
->len
; i
++) {
2679 child1
= &g_array_index(type1
->fields
, LttField
, i
);
2680 child2
= &g_array_index(type2
->fields
, LttField
, i
);
2681 different
= check_fields_compatibility(event_type1
,
2682 event_type2
, child1
, child2
);
2684 if(different
) break;
2690 g_error("precompute_fields_offsets : unknown type");
2699 gint
check_fields_compatibility(LttEventType
*event_type1
,
2700 LttEventType
*event_type2
,
2701 LttField
*field1
, LttField
*field2
)
2703 guint different
= 0;
2708 if(field1
== NULL
) {
2709 if(field2
== NULL
) goto end
;
2714 } else if(field2
== NULL
) {
2719 g_assert(field1
->fixed_root
!= FIELD_UNKNOWN
);
2720 g_assert(field2
->fixed_root
!= FIELD_UNKNOWN
);
2721 g_assert(field1
->fixed_parent
!= FIELD_UNKNOWN
);
2722 g_assert(field2
->fixed_parent
!= FIELD_UNKNOWN
);
2723 g_assert(field1
->fixed_size
!= FIELD_UNKNOWN
);
2724 g_assert(field2
->fixed_size
!= FIELD_UNKNOWN
);
2726 type1
= field1
->field_type
;
2727 type2
= field2
->field_type
;
2729 if(type1
->type_class
!= type2
->type_class
) {
2733 if(type1
->element_name
!= type2
->element_name
) {
2738 switch(type1
->type_class
) {
2748 if(field1
->field_size
!= field2
->field_size
) {
2754 if(type1
->element_number
!= type2
->element_number
) {
2758 for(i
=0;i
<type1
->element_number
;i
++) {
2759 if(type1
->enum_strings
[i
] != type2
->enum_strings
[i
]) {
2766 /* Two elements : size and child */
2767 g_assert(type1
->element_number
!= type2
->element_number
);
2768 for(i
=0;i
<type1
->element_number
;i
++) {
2769 if(check_fields_compatibility(event_type1
, event_type2
,
2770 field1
->child
[0], field2
->child
[0])) {
2779 if(field1
->field_size
!= field2
->field_size
) {
2783 /* Two elements : size and child */
2784 g_assert(type1
->element_number
!= type2
->element_number
);
2785 for(i
=0;i
<type1
->element_number
;i
++) {
2786 if(check_fields_compatibility(event_type1
, event_type2
,
2787 field1
->child
[0], field2
->child
[0])) {
2795 if(type1
->element_number
!= type2
->element_number
) {
2799 for(i
=0;i
<type1
->element_number
;i
++) {
2800 if(check_fields_compatibility(event_type1
, event_type2
,
2801 field1
->child
[0], field2
->child
[0])) {
2814 /*****************************************************************************
2816 * ltt_get_int : get an integer number
2818 * reverse_byte_order: must we reverse the byte order ?
2819 * size : the size of the integer
2820 * ptr : the data pointer
2822 * gint64 : a 64 bits integer
2823 ****************************************************************************/
2825 gint64
ltt_get_int(gboolean reverse_byte_order
, gint size
, void *data
)
2830 case 1: val
= *((gint8
*)data
); break;
2831 case 2: val
= ltt_get_int16(reverse_byte_order
, data
); break;
2832 case 4: val
= ltt_get_int32(reverse_byte_order
, data
); break;
2833 case 8: val
= ltt_get_int64(reverse_byte_order
, data
); break;
2834 default: val
= ltt_get_int64(reverse_byte_order
, data
);
2835 g_critical("get_int : integer size %d unknown", size
);
2842 /*****************************************************************************
2844 * ltt_get_uint : get an unsigned integer number
2846 * reverse_byte_order: must we reverse the byte order ?
2847 * size : the size of the integer
2848 * ptr : the data pointer
2850 * guint64 : a 64 bits unsigned integer
2851 ****************************************************************************/
2853 guint64
ltt_get_uint(gboolean reverse_byte_order
, gint size
, void *data
)
2858 case 1: val
= *((gint8
*)data
); break;
2859 case 2: val
= ltt_get_uint16(reverse_byte_order
, data
); break;
2860 case 4: val
= ltt_get_uint32(reverse_byte_order
, data
); break;
2861 case 8: val
= ltt_get_uint64(reverse_byte_order
, data
); break;
2862 default: val
= ltt_get_uint64(reverse_byte_order
, data
);
2863 g_critical("get_uint : unsigned integer size %d unknown",
2872 /* get the node name of the system */
2874 char * ltt_trace_system_description_node_name (LttSystemDescription
* s
)
2876 return s
->node_name
;
2880 /* get the domain name of the system */
2882 char * ltt_trace_system_description_domain_name (LttSystemDescription
* s
)
2884 return s
->domain_name
;
2888 /* get the description of the system */
2890 char * ltt_trace_system_description_description (LttSystemDescription
* s
)
2892 return s
->description
;
2896 /* get the NTP corrected start time of the trace */
2897 LttTime
ltt_trace_start_time(LttTrace
*t
)
2899 return t
->start_time
;
2902 /* get the monotonic start time of the trace */
2903 LttTime
ltt_trace_start_time_monotonic(LttTrace
*t
)
2905 return t
->start_time_from_tsc
;
2908 LttTracefile
*ltt_tracefile_new()
2910 return g_new(LttTracefile
, 1);
2913 void ltt_tracefile_destroy(LttTracefile
*tf
)
2918 void ltt_tracefile_copy(LttTracefile
*dest
, const LttTracefile
*src
)
2923 /* Before library loading... */
2925 static void __attribute__((constructor
)) init(void)
2927 LTT_FACILITY_NAME_HEARTBEAT
= g_quark_from_string("heartbeat");
2928 LTT_EVENT_NAME_HEARTBEAT
= g_quark_from_string("heartbeat");
2930 LTT_TRACEFILE_NAME_FACILITIES
= g_quark_from_string("/control/facilities");