enum fix
[lttv.git] / ltt / branches / poly / ltt / tracefile.c
CommitLineData
449cb9d7 1/* This file is part of the Linux Trace Toolkit viewer
3aee1200 2 * Copyright (C) 2005 Mathieu Desnoyers
449cb9d7 3 *
3aee1200 4 * Complete rewrite from the original version made by XangXiu Yang.
5 *
449cb9d7 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;
9 *
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.
14 *
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,
18 * MA 02111-1307, USA.
19 */
20
4e4d11b3 21#ifdef HAVE_CONFIG_H
22#include <config.h>
23#endif
24
6cd62ccf 25#include <stdio.h>
26#include <fcntl.h>
8d1e6362 27#include <string.h>
28#include <dirent.h>
6cd62ccf 29#include <sys/stat.h>
30#include <sys/types.h>
8d1e6362 31#include <errno.h>
32#include <unistd.h>
42db9bf1 33#include <math.h>
cdf90f40 34#include <glib.h>
3aee1200 35#include <malloc.h>
36#include <sys/mman.h>
6cd62ccf 37
ef35d837 38// For realpath
39#include <limits.h>
40#include <stdlib.h>
41
42
6cd62ccf 43#include "parser.h"
a5dcde2f 44#include <ltt/ltt.h>
45#include "ltt-private.h"
963b5f2d 46#include <ltt/trace.h>
a5dcde2f 47#include <ltt/facility.h>
c02ea99f 48#include <ltt/event.h>
8d1e6362 49#include <ltt/type.h>
1a2ceb63 50#include <ltt/ltt-types.h>
6cd62ccf 51
3aee1200 52
53/* Facility names used in this file */
54
55GQuark LTT_FACILITY_NAME_HEARTBEAT,
56 LTT_EVENT_NAME_HEARTBEAT;
57GQuark LTT_TRACEFILE_NAME_FACILITIES;
58
86005ded 59#ifndef g_open
60#define g_open open
61#endif
62
63
51b5991e 64#define __UNUSED__ __attribute__((__unused__))
6cd62ccf 65
a1062ddd 66#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
3aee1200 67
68#ifndef g_debug
a1062ddd 69#define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format)
3aee1200 70#endif
a1062ddd 71
45e14832 72#define g_close close
8959a0c8 73
b77d1b57 74/* Those macros must be called from within a function where page_size is a known
75 * variable */
76#define PAGE_MASK (~(page_size-1))
77#define PAGE_ALIGN(addr) (((addr)+page_size-1)&PAGE_MASK)
78
8959a0c8 79/* obtain the time of an event */
80
81static inline LttTime getEventTime(LttTracefile * tf);
82
83
6cd62ccf 84/* set the offset of the fields belonging to the event,
85 need the information of the archecture */
3aee1200 86void set_fields_offsets(LttTracefile *tf, LttEventType *event_type);
eed2ef37 87//size_t get_fields_offsets(LttTracefile *tf, LttEventType *event_type, void *data);
6cd62ccf 88
3aee1200 89/* get the size of the field type according to
90 * The facility size information. */
91static inline void preset_field_type_size(LttTracefile *tf,
92 LttEventType *event_type,
93 off_t offset_root, off_t offset_parent,
94 enum field_status *fixed_root, enum field_status *fixed_parent,
95 LttField *field);
6cd62ccf 96
3aee1200 97/* map a fixed size or a block information from the file (fd) */
98static gint map_block(LttTracefile * tf, guint block_num);
99
100/* calculate nsec per cycles for current block */
101static double calc_nsecs_per_cycle(LttTracefile * t);
6cd62ccf 102
3aee1200 103/* go to the next event */
104static int ltt_seek_next_event(LttTracefile *tf);
6cd62ccf 105
eed2ef37 106void ltt_update_event_size(LttTracefile *tf);
107
3aee1200 108#if 0
43da6a59 109/* Functions to parse system.xml file (using glib xml parser) */
51b5991e 110static void parser_start_element (GMarkupParseContext __UNUSED__ *context,
43da6a59 111 const gchar *element_name,
112 const gchar **attribute_names,
113 const gchar **attribute_values,
114 gpointer user_data,
115 GError **error)
116{
117 int i=0;
118 LttSystemDescription* des = (LttSystemDescription* )user_data;
119 if(strcmp("system", element_name)){
2a74fbf4 120 *error = g_error_new(G_MARKUP_ERROR,
121 G_LOG_LEVEL_WARNING,
122 "This is not system.xml file");
123 return;
43da6a59 124 }
125
126 while(attribute_names[i]){
127 if(strcmp("node_name", attribute_names[i])==0){
128 des->node_name = g_strdup(attribute_values[i]);
129 }else if(strcmp("domainname", attribute_names[i])==0){
130 des->domain_name = g_strdup(attribute_values[i]);
131 }else if(strcmp("cpu", attribute_names[i])==0){
132 des->nb_cpu = atoi(attribute_values[i]);
133 }else if(strcmp("arch_size", attribute_names[i])==0){
134 if(strcmp(attribute_values[i],"LP32") == 0) des->size = LTT_LP32;
135 else if(strcmp(attribute_values[i],"ILP32") == 0) des->size = LTT_ILP32;
136 else if(strcmp(attribute_values[i],"LP64") == 0) des->size = LTT_LP64;
137 else if(strcmp(attribute_values[i],"ILP64") == 0) des->size = LTT_ILP64;
138 else if(strcmp(attribute_values[i],"UNKNOWN") == 0) des->size = LTT_UNKNOWN;
139 }else if(strcmp("endian", attribute_names[i])==0){
140 if(strcmp(attribute_values[i],"LITTLE_ENDIAN") == 0)
141 des->endian = LTT_LITTLE_ENDIAN;
142 else if(strcmp(attribute_values[i],"BIG_ENDIAN") == 0)
143 des->endian = LTT_BIG_ENDIAN;
144 }else if(strcmp("kernel_name", attribute_names[i])==0){
145 des->kernel_name = g_strdup(attribute_values[i]);
146 }else if(strcmp("kernel_release", attribute_names[i])==0){
147 des->kernel_release = g_strdup(attribute_values[i]);
148 }else if(strcmp("kernel_version", attribute_names[i])==0){
149 des->kernel_version = g_strdup(attribute_values[i]);
150 }else if(strcmp("machine", attribute_names[i])==0){
151 des->machine = g_strdup(attribute_values[i]);
152 }else if(strcmp("processor", attribute_names[i])==0){
153 des->processor = g_strdup(attribute_values[i]);
154 }else if(strcmp("hardware_platform", attribute_names[i])==0){
155 des->hardware_platform = g_strdup(attribute_values[i]);
156 }else if(strcmp("operating_system", attribute_names[i])==0){
157 des->operating_system = g_strdup(attribute_values[i]);
158 }else if(strcmp("ltt_major_version", attribute_names[i])==0){
159 des->ltt_major_version = atoi(attribute_values[i]);
160 }else if(strcmp("ltt_minor_version", attribute_names[i])==0){
161 des->ltt_minor_version = atoi(attribute_values[i]);
162 }else if(strcmp("ltt_block_size", attribute_names[i])==0){
163 des->ltt_block_size = atoi(attribute_values[i]);
164 }else{
2a74fbf4 165 *error = g_error_new(G_MARKUP_ERROR,
166 G_LOG_LEVEL_WARNING,
167 "Not a valid attribute");
168 return;
43da6a59 169 }
170 i++;
171 }
172}
173
51b5991e 174static void parser_characters (GMarkupParseContext __UNUSED__ *context,
43da6a59 175 const gchar *text,
51b5991e 176 gsize __UNUSED__ text_len,
43da6a59 177 gpointer user_data,
51b5991e 178 GError __UNUSED__ **error)
43da6a59 179{
180 LttSystemDescription* des = (LttSystemDescription* )user_data;
181 des->description = g_strdup(text);
182}
3aee1200 183#endif //0
77175651 184LttFacility *ltt_trace_get_facility_by_num(LttTrace *t,
3aee1200 185 guint num)
186{
187 g_assert(num < t->facilities_by_num->len);
188
189 return &g_array_index(t->facilities_by_num, LttFacility, num);
190
191}
43da6a59 192
193
6cd62ccf 194/*****************************************************************************
195 *Function name
963b5f2d 196 * ltt_tracefile_open : open a trace file, construct a LttTracefile
6cd62ccf 197 *Input params
963b5f2d 198 * t : the trace containing the tracefile
199 * fileName : path name of the trace file
3aee1200 200 * tf : the tracefile structure
6cd62ccf 201 *Return value
3aee1200 202 * : 0 for success, -1 otherwise.
6cd62ccf 203 ****************************************************************************/
204
3aee1200 205gint ltt_tracefile_open(LttTrace *t, gchar * fileName, LttTracefile *tf)
6cd62ccf 206{
963b5f2d 207 struct stat lTDFStat; /* Trace data file status */
3aee1200 208 struct ltt_block_start_header *header;
b77d1b57 209 int page_size = getpagesize();
6cd62ccf 210
211 //open the file
d3d34f49 212 tf->long_name = g_quark_from_string(fileName);
963b5f2d 213 tf->trace = t;
3865ea09 214 tf->fd = open(fileName, O_RDONLY);
6cd62ccf 215 if(tf->fd < 0){
2a74fbf4 216 g_warning("Unable to open input data file %s\n", fileName);
3aee1200 217 goto end;
6cd62ccf 218 }
219
220 // Get the file's status
221 if(fstat(tf->fd, &lTDFStat) < 0){
2a74fbf4 222 g_warning("Unable to get the status of the input data file %s\n", fileName);
3aee1200 223 goto close_file;
6cd62ccf 224 }
225
226 // Is the file large enough to contain a trace
3aee1200 227 if(lTDFStat.st_size < (off_t)(sizeof(struct ltt_block_start_header))){
8710c6c7 228 g_print("The input data file %s does not contain a trace\n", fileName);
3aee1200 229 goto close_file;
230 }
231
232 /* Temporarily map the buffer start header to get trace information */
233 /* Multiple of pages aligned head */
b77d1b57 234 tf->buffer.head = mmap(0,
235 PAGE_ALIGN(sizeof(struct ltt_block_start_header)), PROT_READ,
3aee1200 236 MAP_PRIVATE, tf->fd, 0);
3865ea09 237 if(tf->buffer.head == MAP_FAILED) {
3aee1200 238 perror("Error in allocating memory for buffer of tracefile");
239 goto close_file;
6cd62ccf 240 }
3865ea09 241 g_assert( ( (guint)tf->buffer.head&(8-1) ) == 0); // make sure it's aligned.
3aee1200 242
243 header = (struct ltt_block_start_header*)tf->buffer.head;
6cd62ccf 244
3aee1200 245 if(header->trace.magic_number == LTT_MAGIC_NUMBER)
246 tf->reverse_bo = 0;
247 else if(header->trace.magic_number == LTT_REV_MAGIC_NUMBER)
248 tf->reverse_bo = 1;
249 else /* invalid magic number, bad tracefile ! */
250 goto unmap_file;
251
6cd62ccf 252 //store the size of the file
253 tf->file_size = lTDFStat.st_size;
f628823c 254 tf->buf_size = ltt_get_uint32(LTT_GET_BO(tf), &header->buf_size);
255 tf->num_blocks = tf->file_size / tf->buf_size;
256
257 if(munmap(tf->buffer.head,
258 PAGE_ALIGN(sizeof(struct ltt_block_start_header)))) {
259 g_warning("unmap size : %u\n",
260 PAGE_ALIGN(sizeof(struct ltt_block_start_header)));
261 perror("munmap error");
262 g_assert(0);
263 }
3aee1200 264 tf->buffer.head = NULL;
6cd62ccf 265
963b5f2d 266 //read the first block
3aee1200 267 if(map_block(tf,0)) {
268 perror("Cannot map block for tracefile");
269 goto close_file;
270 }
271
272 return 0;
6cd62ccf 273
3aee1200 274 /* Error */
275unmap_file:
f628823c 276 if(munmap(tf->buffer.head,
277 PAGE_ALIGN(sizeof(struct ltt_block_start_header)))) {
278 g_warning("unmap size : %u\n",
279 PAGE_ALIGN(sizeof(struct ltt_block_start_header)));
280 perror("munmap error");
281 g_assert(0);
282 }
3aee1200 283close_file:
3865ea09 284 close(tf->fd);
3aee1200 285end:
286 return -1;
6cd62ccf 287}
288
d3d34f49 289LttTrace *ltt_tracefile_get_trace(LttTracefile *tf)
290{
291 return tf->trace;
292}
293
3aee1200 294#if 0
6cd62ccf 295/*****************************************************************************
963b5f2d 296 *Open control and per cpu tracefiles
6cd62ccf 297 ****************************************************************************/
298
45e14832 299void ltt_tracefile_open_cpu(LttTrace *t, gchar * tracefile_name)
6cd62ccf 300{
963b5f2d 301 LttTracefile * tf;
302 tf = ltt_tracefile_open(t,tracefile_name);
4a6c8e36 303 if(!tf) return;
963b5f2d 304 t->per_cpu_tracefile_number++;
305 g_ptr_array_add(t->per_cpu_tracefiles, tf);
6cd62ccf 306}
307
45e14832 308gint ltt_tracefile_open_control(LttTrace *t, gchar * control_name)
6cd62ccf 309{
963b5f2d 310 LttTracefile * tf;
c02ea99f 311 LttEvent ev;
963b5f2d 312 LttFacility * f;
963b5f2d 313 void * pos;
314 FacilityLoad fLoad;
8d1e6362 315 unsigned int i;
963b5f2d 316
317 tf = ltt_tracefile_open(t,control_name);
2a74fbf4 318 if(!tf) {
319 g_warning("ltt_tracefile_open_control : bad file descriptor");
320 return -1;
321 }
963b5f2d 322 t->control_tracefile_number++;
323 g_ptr_array_add(t->control_tracefiles,tf);
324
325 //parse facilities tracefile to get base_id
542ceddd 326 if(strcmp(&control_name[strlen(control_name)-10],"facilities") ==0){
963b5f2d 327 while(1){
c02ea99f 328 if(!ltt_tracefile_read(tf,&ev)) return 0; // end of file
40331ba8 329
c02ea99f 330 if(ev.event_id == TRACE_FACILITY_LOAD){
331 pos = ev.data;
45e14832 332 fLoad.name = (gchar*)pos;
47a166fc 333 fLoad.checksum = *(LttChecksum*)(pos + strlen(fLoad.name));
cbd41522 334 fLoad.base_code = *(guint32 *)(pos + strlen(fLoad.name) + sizeof(LttChecksum));
963b5f2d 335
336 for(i=0;i<t->facility_number;i++){
337 f = (LttFacility*)g_ptr_array_index(t->facilities,i);
338 if(strcmp(f->name,fLoad.name)==0 && fLoad.checksum==f->checksum){
339 f->base_id = fLoad.base_code;
340 break;
341 }
342 }
2a74fbf4 343 if(i==t->facility_number) {
8d1e6362 344 g_warning("Facility: %s, checksum: %u is not found",
345 fLoad.name,(unsigned int)fLoad.checksum);
2a74fbf4 346 return -1;
347 }
c02ea99f 348 }else if(ev.event_id == TRACE_BLOCK_START){
40331ba8 349 continue;
c02ea99f 350 }else if(ev.event_id == TRACE_BLOCK_END){
40331ba8 351 break;
2a74fbf4 352 }else {
8d1e6362 353 g_warning("Not valid facilities trace file");
2a74fbf4 354 return -1;
355 }
963b5f2d 356 }
357 }
2a74fbf4 358 return 0;
6cd62ccf 359}
3aee1200 360#endif //0
6cd62ccf 361
362/*****************************************************************************
363 *Function name
963b5f2d 364 * ltt_tracefile_close: close a trace file,
6cd62ccf 365 *Input params
963b5f2d 366 * t : tracefile which will be closed
6cd62ccf 367 ****************************************************************************/
368
963b5f2d 369void ltt_tracefile_close(LttTracefile *t)
6cd62ccf 370{
f628823c 371 int page_size = getpagesize();
372
3aee1200 373 if(t->buffer.head != NULL)
f628823c 374 if(munmap(t->buffer.head, PAGE_ALIGN(t->buf_size))) {
375 g_warning("unmap size : %u\n",
376 PAGE_ALIGN(t->buf_size));
377 perror("munmap error");
378 g_assert(0);
379 }
380
3865ea09 381 close(t->fd);
963b5f2d 382}
6cd62ccf 383
6cd62ccf 384
963b5f2d 385/*****************************************************************************
386 *Get system information
387 ****************************************************************************/
3aee1200 388#if 0
45e14832 389gint getSystemInfo(LttSystemDescription* des, gchar * pathname)
963b5f2d 390{
45e14832 391 int fd;
392 GIOChannel *iochan;
393 gchar *buf = NULL;
394 gsize length;
43da6a59 395
396 GMarkupParseContext * context;
2a74fbf4 397 GError * error = NULL;
43da6a59 398 GMarkupParser markup_parser =
399 {
400 parser_start_element,
8d1e6362 401 NULL,
43da6a59 402 parser_characters,
403 NULL, /* passthrough */
404 NULL /* error */
405 };
963b5f2d 406
45e14832 407 fd = g_open(pathname, O_RDONLY, 0);
408 if(fd == -1){
2a74fbf4 409 g_warning("Can not open file : %s\n", pathname);
410 return -1;
6cd62ccf 411 }
963b5f2d 412
45e14832 413 iochan = g_io_channel_unix_new(fd);
414
43da6a59 415 context = g_markup_parse_context_new(&markup_parser, 0, des,NULL);
6cd62ccf 416
45e14832 417 //while(fgets(buf,DIR_NAME_SIZE, fp) != NULL){
418 while(g_io_channel_read_line(iochan, &buf, &length, NULL, &error)
419 != G_IO_STATUS_EOF) {
420
421 if(error != NULL) {
422 g_warning("Can not read xml file: \n%s\n", error->message);
423 g_error_free(error);
424 }
425 if(!g_markup_parse_context_parse(context, buf, length, &error)){
2a74fbf4 426 if(error != NULL) {
427 g_warning("Can not parse xml file: \n%s\n", error->message);
428 g_error_free(error);
429 }
430 g_markup_parse_context_free(context);
45e14832 431
432 g_io_channel_shutdown(iochan, FALSE, &error); /* No flush */
433 if(error != NULL) {
434 g_warning("Can not close file: \n%s\n", error->message);
435 g_error_free(error);
436 }
437
438 close(fd);
2a74fbf4 439 return -1;
43da6a59 440 }
963b5f2d 441 }
2a74fbf4 442 g_markup_parse_context_free(context);
45e14832 443
444 g_io_channel_shutdown(iochan, FALSE, &error); /* No flush */
445 if(error != NULL) {
446 g_warning("Can not close file: \n%s\n", error->message);
447 g_error_free(error);
448 }
449
450 g_close(fd);
451
452 g_free(buf);
2a74fbf4 453 return 0;
6cd62ccf 454}
3aee1200 455#endif //0
6cd62ccf 456
457/*****************************************************************************
963b5f2d 458 *The following functions get facility/tracefile information
6cd62ccf 459 ****************************************************************************/
3aee1200 460#if 0
45e14832 461gint getFacilityInfo(LttTrace *t, gchar* eventdefs)
6cd62ccf 462{
45e14832 463 GDir * dir;
464 const gchar * name;
8d1e6362 465 unsigned int i,j;
963b5f2d 466 LttFacility * f;
467 LttEventType * et;
45e14832 468 gchar fullname[DIR_NAME_SIZE];
469 GError * error = NULL;
470
471 dir = g_dir_open(eventdefs, 0, &error);
963b5f2d 472
45e14832 473 if(error != NULL) {
474 g_warning("Can not open directory: %s, %s\n", eventdefs, error->message);
475 g_error_free(error);
2a74fbf4 476 return -1;
477 }
963b5f2d 478
45e14832 479 while((name = g_dir_read_name(dir)) != NULL){
480 if(!g_pattern_match_simple("*.xml", name)) continue;
481 strcpy(fullname,eventdefs);
482 strcat(fullname,name);
483 ltt_facility_open(t,fullname);
484 }
485 g_dir_close(dir);
963b5f2d 486
963b5f2d 487 for(j=0;j<t->facility_number;j++){
8710c6c7 488 f = (LttFacility*)g_ptr_array_index(t->facilities, j);
963b5f2d 489 for(i=0; i<f->event_number; i++){
490 et = f->events[i];
40331ba8 491 setFieldsOffset(NULL, et, NULL, t);
963b5f2d 492 }
493 }
2a74fbf4 494 return 0;
963b5f2d 495}
3aee1200 496#endif //0
6cd62ccf 497
963b5f2d 498/*****************************************************************************
499 *A trace is specified as a pathname to the directory containing all the
500 *associated data (control tracefiles, per cpu tracefiles, event
501 *descriptions...).
502 *
503 *When a trace is closed, all the associated facilities, types and fields
504 *are released as well.
8d1e6362 505 */
506
507
508/****************************************************************************
509 * get_absolute_pathname
803229fa 510 *
8d1e6362 511 * return the unique pathname in the system
512 *
ef35d837 513 * MD : Fixed this function so it uses realpath, dealing well with
514 * forgotten cases (.. were not used correctly before).
803229fa 515 *
963b5f2d 516 ****************************************************************************/
45e14832 517void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname)
9f797243 518{
9f797243 519 abs_pathname[0] = '\0';
803229fa 520
ef35d837 521 if ( realpath (pathname, abs_pathname) != NULL)
522 return;
523 else
524 {
8d1e6362 525 /* error, return the original path unmodified */
ef35d837 526 strcpy(abs_pathname, pathname);
9f797243 527 return;
528 }
ef35d837 529 return;
9f797243 530}
531
3aee1200 532/* Search for something like : .*_.*
533 *
534 * The left side is the name, the right side is the number.
535 */
536
537int get_tracefile_name_number(const gchar *raw_name,
538 GQuark *name,
539 guint *num)
6cd62ccf 540{
3aee1200 541 guint raw_name_len = strlen(raw_name);
542 gchar char_name[PATH_MAX];
543 gchar *digit_begin;
544 int i;
545 int underscore_pos;
546 long int cpu_num;
547 gchar *endptr;
548
549 for(i=raw_name_len-1;i>=0;i--) {
550 if(raw_name[i] == '_') break;
551 }
552 if(i==0) /* Either not found or name length is 0 */
553 return -1;
554 underscore_pos = i;
963b5f2d 555
3aee1200 556 cpu_num = strtol(raw_name+underscore_pos+1, &endptr, 10);
557
558 if(endptr == raw_name+underscore_pos+1)
559 return -1; /* No digit */
560 if(cpu_num == LONG_MIN || cpu_num == LONG_MAX)
561 return -1; /* underflow / overflow */
1a2ceb63 562
3aee1200 563 strncpy(char_name, raw_name, underscore_pos);
1a2ceb63 564
69bd59ed 565 char_name[underscore_pos] = '\0';
566
3aee1200 567 *name = g_quark_from_string(char_name);
568 *num = cpu_num;
b333a76b 569
3aee1200 570 return 0;
571}
963b5f2d 572
3aee1200 573
3865ea09 574GData **ltt_trace_get_tracefiles_groups(LttTrace *trace)
77175651 575{
3865ea09 576 return &trace->tracefiles;
77175651 577}
578
579
3865ea09 580void compute_tracefile_group(GQuark key_id,
581 GArray *group,
582 struct compute_tracefile_group_args *args)
77175651 583{
584 int i;
585 LttTracefile *tf;
586
587 for(i=0; i<group->len; i++) {
588 tf = &g_array_index (group, LttTracefile, i);
589 if(tf->cpu_online)
3865ea09 590 args->func(tf, args->func_args);
77175651 591 }
592}
593
594
3aee1200 595void ltt_tracefile_group_destroy(gpointer data)
596{
597 GArray *group = (GArray *)data;
598 int i;
599 LttTracefile *tf;
600
601 for(i=0; i<group->len; i++) {
602 tf = &g_array_index (group, LttTracefile, i);
603 if(tf->cpu_online)
604 ltt_tracefile_close(tf);
605 }
606 g_array_free(group, TRUE);
6cd62ccf 607}
608
3aee1200 609gboolean ltt_tracefile_group_has_cpu_online(gpointer data)
49bf71b5 610{
3aee1200 611 GArray *group = (GArray *)data;
612 int i;
613 LttTracefile *tf;
614
615 for(i=0; i<group->len; i++) {
616 tf = &g_array_index (group, LttTracefile, i);
617 if(tf->cpu_online) return 1;
618 }
619 return 0;
49bf71b5 620}
621
622
3aee1200 623/* Open each tracefile under a specific directory. Put them in a
624 * GData : permits to access them using their tracefile group pathname.
625 * i.e. access control/modules tracefile group by index :
626 * "control/module".
3865ea09 627 *
628 * relative path is the path relative to the trace root
629 * root path is the full path
3aee1200 630 *
631 * A tracefile group is simply an array where all the per cpu tracefiles sits.
632 */
633
69bd59ed 634static int open_tracefiles(LttTrace *trace, gchar *root_path,
635 gchar *relative_path)
f7afe191 636{
3aee1200 637 DIR *dir = opendir(root_path);
638 struct dirent *entry;
639 struct stat stat_buf;
640 int ret;
3865ea09 641
69bd59ed 642 gchar path[PATH_MAX];
3aee1200 643 int path_len;
69bd59ed 644 gchar *path_ptr;
3aee1200 645
3865ea09 646 int rel_path_len;
69bd59ed 647 gchar rel_path[PATH_MAX];
648 gchar *rel_path_ptr;
cb03932a 649 LttTracefile tmp_tf;
3865ea09 650
3aee1200 651 if(dir == NULL) {
652 perror(root_path);
653 return ENOENT;
654 }
655
656 strncpy(path, root_path, PATH_MAX-1);
657 path_len = strlen(path);
658 path[path_len] = '/';
659 path_len++;
660 path_ptr = path + path_len;
661
3865ea09 662 strncpy(rel_path, relative_path, PATH_MAX-1);
663 rel_path_len = strlen(rel_path);
664 rel_path[rel_path_len] = '/';
665 rel_path_len++;
666 rel_path_ptr = rel_path + rel_path_len;
667
3aee1200 668 while((entry = readdir(dir)) != NULL) {
669
670 if(entry->d_name[0] == '.') continue;
671
672 strncpy(path_ptr, entry->d_name, PATH_MAX - path_len);
3865ea09 673 strncpy(rel_path_ptr, entry->d_name, PATH_MAX - rel_path_len);
3aee1200 674
675 ret = stat(path, &stat_buf);
676 if(ret == -1) {
677 perror(path);
678 continue;
679 }
680
681 g_debug("Tracefile file or directory : %s\n", path);
682
683 if(S_ISDIR(stat_buf.st_mode)) {
684
685 g_debug("Entering subdirectory...\n");
3865ea09 686 ret = open_tracefiles(trace, path, rel_path);
3aee1200 687 if(ret < 0) continue;
688 } else if(S_ISREG(stat_buf.st_mode)) {
3aee1200 689 GQuark name;
690 guint num;
691 GArray *group;
692 LttTracefile *tf;
693 guint len;
694
3865ea09 695 if(get_tracefile_name_number(rel_path, &name, &num))
3aee1200 696 continue; /* invalid name */
3865ea09 697
cb03932a 698 g_debug("Opening file.\n");
699 if(ltt_tracefile_open(trace, path, &tmp_tf)) {
700 g_info("Error opening tracefile %s", path);
701
702 continue; /* error opening the tracefile : bad magic number ? */
703 }
704
3865ea09 705 g_debug("Tracefile name is %s and number is %u",
706 g_quark_to_string(name), num);
707
cb03932a 708 tmp_tf.cpu_online = 1;
709 tmp_tf.cpu_num = num;
d3d34f49 710 tmp_tf.name = name;
cb03932a 711
3865ea09 712 group = g_datalist_id_get_data(&trace->tracefiles, name);
3aee1200 713 if(group == NULL) {
714 /* Elements are automatically cleared when the array is allocated.
715 * It makes the cpu_online variable set to 0 : cpu offline, by default.
716 */
717 group = g_array_sized_new (FALSE, TRUE, sizeof(LttTracefile), 10);
3865ea09 718 g_datalist_id_set_data_full(&trace->tracefiles, name,
3aee1200 719 group, ltt_tracefile_group_destroy);
720 }
cb03932a 721
3aee1200 722 /* Add the per cpu tracefile to the named group */
723 unsigned int old_len = group->len;
724 if(num+1 > old_len)
725 group = g_array_set_size(group, num+1);
cb03932a 726 g_array_index (group, LttTracefile, num) = tmp_tf;
3aee1200 727
3aee1200 728 }
729 }
730
731 closedir(dir);
732
733 return 0;
f7afe191 734}
735
3aee1200 736/* ltt_get_facility_description
737 *
738 * Opens the trace corresponding to the requested facility (identified by fac_id
739 * and checksum).
740 *
741 * The name searched is : %trace root%/eventdefs/facname_checksum.xml
742 *
743 * Returns 0 on success, or 1 on failure.
744 */
745
746static int ltt_get_facility_description(LttFacility *f,
747 LttTrace *t,
748 LttTracefile *fac_tf)
6cd62ccf 749{
3aee1200 750 char desc_file_name[PATH_MAX];
751 const gchar *text;
752 guint textlen;
753 gint err;
3aee1200 754
755 text = g_quark_to_string(t->pathname);
756 textlen = strlen(text);
757
758 if(textlen >= PATH_MAX) goto name_error;
759 strcpy(desc_file_name, text);
760
761 text = "/eventdefs/";
762 textlen+=strlen(text);
763 if(textlen >= PATH_MAX) goto name_error;
764 strcat(desc_file_name, text);
765
766 text = g_quark_to_string(f->name);
767 textlen+=strlen(text);
768 if(textlen >= PATH_MAX) goto name_error;
769 strcat(desc_file_name, text);
770
771 text = "_";
772 textlen+=strlen(text);
773 if(textlen >= PATH_MAX) goto name_error;
774 strcat(desc_file_name, text);
963b5f2d 775
3aee1200 776 err = snprintf(desc_file_name+textlen, PATH_MAX-textlen-1,
777 "%u", f->checksum);
d2083cab 778 if(err < 0) goto name_error;
3aee1200 779
780 textlen=strlen(desc_file_name);
781
782 text = ".xml";
783 textlen+=strlen(text);
784 if(textlen >= PATH_MAX) goto name_error;
785 strcat(desc_file_name, text);
963b5f2d 786
3aee1200 787 err = ltt_facility_open(f, t, desc_file_name);
788 if(err) goto facility_error;
3aee1200 789
790 return 0;
791
792facility_error:
793name_error:
794 return 1;
795}
796
797static void ltt_fac_ids_destroy(gpointer data)
798{
799 GArray *fac_ids = (GArray *)data;
963b5f2d 800
3aee1200 801 g_array_free(fac_ids, TRUE);
802}
803
804
805/* Presumes the tracefile is already seeked at the beginning. It makes sense,
806 * because it must be done just after the opening */
807static int ltt_process_facility_tracefile(LttTracefile *tf)
808{
809 int err;
810 LttFacility *fac;
811 GArray *fac_ids;
cb03932a 812 guint i;
813 LttEventType *et;
3aee1200 814
815 while(1) {
816 err = ltt_tracefile_read_seek(tf);
817 if(err == EPERM) goto seek_error;
818 else if(err == ERANGE) break; /* End of tracefile */
819
820 err = ltt_tracefile_read_update_event(tf);
821 if(err) goto update_error;
822
823 /* We are on a facility load/or facility unload/ or heartbeat event */
824 /* The rules are :
825 * * facility 0 is hardcoded : this is the core facility. It will be shown
826 * in the facility array though, and is shown as "loaded builtin" in the
827 * trace.
828 * It contains event :
829 * 0 : facility load
830 * 1 : facility unload
831 * 2 : state dump facility load
d2083cab 832 * 3 : heartbeat
3aee1200 833 */
d2083cab 834 if(tf->event.facility_id != LTT_FACILITY_CORE) {
835 /* Should only contain core facility */
3aee1200 836 g_warning("Error in processing facility file %s, "
837 "should not contain facility id %u.", g_quark_to_string(tf->name),
838 tf->event.facility_id);
839 err = EPERM;
840 goto fac_id_error;
d2083cab 841 } else {
3aee1200 842
843 struct LttFacilityLoad *fac_load_data;
b77d1b57 844 struct LttStateDumpFacilityLoad *fac_state_dump_load_data;
3aee1200 845 char *fac_name;
846
847 // FIXME align
848 switch((enum ltt_core_events)tf->event.event_id) {
849 case LTT_EVENT_FACILITY_LOAD:
b77d1b57 850 fac_name = (char*)(tf->event.data);
d2083cab 851 g_debug("Doing LTT_EVENT_FACILITY_LOAD of facility %s",
852 fac_name);
3aee1200 853 fac_load_data =
b77d1b57 854 (struct LttFacilityLoad *)
855 (tf->event.data + strlen(fac_name) + 1);
3aee1200 856 fac = &g_array_index (tf->trace->facilities_by_num, LttFacility,
857 ltt_get_uint32(LTT_GET_BO(tf), &fac_load_data->id));
858 g_assert(fac->exists == 0);
859 fac->name = g_quark_from_string(fac_name);
860 fac->checksum = ltt_get_uint32(LTT_GET_BO(tf),
861 &fac_load_data->checksum);
862 fac->id = ltt_get_uint32(LTT_GET_BO(tf), &fac_load_data->id);
863 fac->pointer_size = ltt_get_uint32(LTT_GET_BO(tf),
864 &fac_load_data->pointer_size);
cb03932a 865 fac->long_size = ltt_get_uint32(LTT_GET_BO(tf),
866 &fac_load_data->long_size);
eed2ef37 867 fac->size_t_size = ltt_get_uint32(LTT_GET_BO(tf),
3aee1200 868 &fac_load_data->size_t_size);
869 fac->alignment = ltt_get_uint32(LTT_GET_BO(tf),
870 &fac_load_data->alignment);
871
872 if(ltt_get_facility_description(fac, tf->trace, tf))
cb03932a 873 continue; /* error opening description */
3aee1200 874
875 fac->trace = tf->trace;
cb03932a 876
877 /* Preset the field offsets */
878 for(i=0; i<fac->events->len; i++){
879 et = &g_array_index(fac->events, LttEventType, i);
880 set_fields_offsets(tf, et);
881 }
882
3aee1200 883 fac->exists = 1;
884
77175651 885 fac_ids = g_datalist_id_get_data(&tf->trace->facilities_by_name,
886 fac->name);
3aee1200 887 if(fac_ids == NULL) {
888 fac_ids = g_array_sized_new (FALSE, TRUE, sizeof(guint), 1);
889 g_datalist_id_set_data_full(&tf->trace->facilities_by_name,
890 fac->name,
891 fac_ids, ltt_fac_ids_destroy);
892 }
893 g_array_append_val(fac_ids, fac->id);
894
895 break;
896 case LTT_EVENT_FACILITY_UNLOAD:
d2083cab 897 g_debug("Doing LTT_EVENT_FACILITY_UNLOAD");
3aee1200 898 /* We don't care about unload : facilities ID are valid for the whole
899 * trace. They simply won't be used after the unload. */
900 break;
901 case LTT_EVENT_STATE_DUMP_FACILITY_LOAD:
b77d1b57 902 fac_name = (char*)(tf->event.data);
d2083cab 903 g_debug("Doing LTT_EVENT_STATE_DUMP_FACILITY_LOAD of facility %s",
904 fac_name);
b77d1b57 905 fac_state_dump_load_data =
d2083cab 906 (struct LttStateDumpFacilityLoad *)
b77d1b57 907 (tf->event.data + strlen(fac_name) + 1);
3aee1200 908 fac = &g_array_index (tf->trace->facilities_by_num, LttFacility,
b77d1b57 909 ltt_get_uint32(LTT_GET_BO(tf), &fac_state_dump_load_data->id));
3aee1200 910 g_assert(fac->exists == 0);
911 fac->name = g_quark_from_string(fac_name);
912 fac->checksum = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 913 &fac_state_dump_load_data->checksum);
914 fac->id = fac_state_dump_load_data->id;
3aee1200 915 fac->pointer_size = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 916 &fac_state_dump_load_data->pointer_size);
cb03932a 917 fac->long_size = ltt_get_uint32(LTT_GET_BO(tf),
918 &fac_state_dump_load_data->long_size);
eed2ef37 919 fac->size_t_size = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 920 &fac_state_dump_load_data->size_t_size);
3aee1200 921 fac->alignment = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 922 &fac_state_dump_load_data->alignment);
3aee1200 923 if(ltt_get_facility_description(fac, tf->trace, tf))
cb03932a 924 continue; /* error opening description */
3aee1200 925
926 fac->trace = tf->trace;
927
cb03932a 928 /* Preset the field offsets */
929 for(i=0; i<fac->events->len; i++){
930 et = &g_array_index(fac->events, LttEventType, i);
931 set_fields_offsets(tf, et);
932 }
933
3aee1200 934 fac->exists = 1;
935
936 fac_ids = g_datalist_id_get_data(&tf->trace->facilities_by_name,
937 fac->name);
938 if(fac_ids == NULL) {
939 fac_ids = g_array_sized_new (FALSE, TRUE, sizeof(guint), 1);
940 g_datalist_id_set_data_full(&tf->trace->facilities_by_name,
941 fac->name,
942 fac_ids, ltt_fac_ids_destroy);
943 }
944 g_array_append_val(fac_ids, fac->id);
945
946 break;
947 case LTT_EVENT_HEARTBEAT:
948 break;
949 default:
950 g_warning("Error in processing facility file %s, "
951 "unknown event id %hhu in core facility.",
952 g_quark_to_string(tf->name),
953 tf->event.event_id);
954 err = EPERM;
955 goto event_id_error;
956 }
957 }
963b5f2d 958 }
3aee1200 959 return 0;
963b5f2d 960
3aee1200 961 /* Error handling */
962facility_error:
963event_id_error:
964fac_id_error:
965update_error:
966seek_error:
d2083cab 967 g_warning("An error occured in facility tracefile parsing");
3aee1200 968 return err;
6cd62ccf 969}
970
963b5f2d 971
3aee1200 972LttTrace *ltt_trace_open(const gchar *pathname)
973{
974 gchar abs_path[PATH_MAX];
975 LttTrace * t;
976 LttTracefile *tf;
977 GArray *group;
978 int i;
16fcbb80 979 struct ltt_block_start_header *header;
3aee1200 980
981 t = g_new(LttTrace, 1);
982 if(!t) goto alloc_error;
983
984 get_absolute_pathname(pathname, abs_path);
985 t->pathname = g_quark_from_string(abs_path);
986
987 /* Open all the tracefiles */
988 g_datalist_init(&t->tracefiles);
e45551ac 989 if(open_tracefiles(t, abs_path, "")) {
990 g_warning("Error opening tracefile %s", abs_path);
3aee1200 991 goto open_error;
e45551ac 992 }
3aee1200 993
994 /* Prepare the facilities containers : array and mapping */
995 /* Array is zeroed : the "exists" field is set to false by default */
996 t->facilities_by_num = g_array_sized_new (FALSE,
997 TRUE, sizeof(LttFacility),
998 NUM_FACILITIES);
999 t->facilities_by_num = g_array_set_size(t->facilities_by_num, NUM_FACILITIES);
1000
1001 g_datalist_init(&t->facilities_by_name);
1002
1003 /* Parse each trace control/facilitiesN files : get runtime fac. info */
1004 group = g_datalist_id_get_data(&t->tracefiles, LTT_TRACEFILE_NAME_FACILITIES);
1005 if(group == NULL) {
1006 g_error("Trace %s has no facility tracefile", abs_path);
3865ea09 1007 g_assert(0);
3aee1200 1008 goto facilities_error;
1009 }
1010
16fcbb80 1011 /* Get the trace information for the control/facility 0 tracefile */
1012 g_assert(group->len > 0);
1013 tf = &g_array_index (group, LttTracefile, 0);
1014 header = (struct ltt_block_start_header*)tf->buffer.head;
1015 t->arch_type = ltt_get_uint32(LTT_GET_BO(tf), &header->trace.arch_type);
1016 t->arch_variant = ltt_get_uint32(LTT_GET_BO(tf), &header->trace.arch_variant);
1017 t->arch_size = header->trace.arch_size;
1018 t->ltt_major_version = header->trace.major_version;
1019 t->ltt_minor_version = header->trace.minor_version;
1020 t->flight_recorder = header->trace.flight_recorder;
1021 t->has_heartbeat = header->trace.has_heartbeat;
1022 t->has_alignment = header->trace.has_alignment;
1023 t->has_tsc = header->trace.has_tsc;
1024
1025
3aee1200 1026 for(i=0; i<group->len; i++) {
1027 tf = &g_array_index (group, LttTracefile, i);
1028 if(ltt_process_facility_tracefile(tf))
1029 goto facilities_error;
1030 }
3aee1200 1031
1032 return t;
1033
1034 /* Error handling */
1035facilities_error:
1036 g_datalist_clear(&t->facilities_by_name);
1037 g_array_free(t->facilities_by_num, TRUE);
1038open_error:
1039 g_datalist_clear(&t->tracefiles);
1040 g_free(t);
1041alloc_error:
1042 return NULL;
1043
1044}
6cd62ccf 1045
3aee1200 1046GQuark ltt_trace_name(LttTrace *t)
6cd62ccf 1047{
3aee1200 1048 return t->pathname;
6cd62ccf 1049}
1050
6cd62ccf 1051
3aee1200 1052/******************************************************************************
1053 * When we copy a trace, we want all the opening actions to happen again :
1054 * the trace will be reopened and totally independant from the original.
1055 * That's why we call ltt_trace_open.
1056 *****************************************************************************/
1057LttTrace *ltt_trace_copy(LttTrace *self)
963b5f2d 1058{
3aee1200 1059 return ltt_trace_open(g_quark_to_string(self->pathname));
963b5f2d 1060}
1061
3aee1200 1062void ltt_trace_close(LttTrace *t)
6cd62ccf 1063{
cb03932a 1064 guint i;
1065 LttFacility *fac;
1066
1067 for(i=0; i<t->facilities_by_num->len; i++) {
1068 fac = &g_array_index (t->facilities_by_num, LttFacility, i);
1069 if(fac->exists)
1070 ltt_facility_close(fac);
1071 }
1072
3aee1200 1073 g_datalist_clear(&t->facilities_by_name);
1074 g_array_free(t->facilities_by_num, TRUE);
1075 g_datalist_clear(&t->tracefiles);
1076 g_free(t);
6cd62ccf 1077}
1078
3aee1200 1079
6cd62ccf 1080/*****************************************************************************
3aee1200 1081 *Get the system description of the trace
6cd62ccf 1082 ****************************************************************************/
1083
3aee1200 1084LttFacility *ltt_trace_facility_by_id(LttTrace *t, guint8 id)
6cd62ccf 1085{
3aee1200 1086 g_assert(id < t->facilities_by_num->len);
1087 return &g_array_index(t->facilities_by_num, LttFacility, id);
1088}
1089
1090/* ltt_trace_facility_get_by_name
1091 *
1092 * Returns the GArray of facility indexes. All the fac_ids that matches the
1093 * requested facility name.
1094 *
1095 * If name is not found, returns NULL.
1096 */
1097GArray *ltt_trace_facility_get_by_name(LttTrace *t, GQuark name)
1098{
1099 return g_datalist_id_get_data(&t->facilities_by_name, name);
6cd62ccf 1100}
1101
1102/*****************************************************************************
963b5f2d 1103 * Functions to discover all the event types in the trace
6cd62ccf 1104 ****************************************************************************/
1105
3aee1200 1106#if 0
963b5f2d 1107unsigned ltt_trace_eventtype_number(LttTrace *t)
6cd62ccf 1108{
8d1e6362 1109 unsigned int i;
963b5f2d 1110 unsigned count = 0;
dc1cad90 1111 unsigned int num = t->facility_number;
963b5f2d 1112 LttFacility * f;
dc1cad90 1113
1114 for(i=0;i<num;i++){
963b5f2d 1115 f = (LttFacility*)g_ptr_array_index(t->facilities, i);
1116 count += f->event_number;
1117 }
1118 return count;
6cd62ccf 1119}
3aee1200 1120#endif //0
6cd62ccf 1121
3aee1200 1122#if 0
1123//use an iteration on all the trace facilities, and inside iteration on all the
1124//event types in each facilities instead.
963b5f2d 1125LttEventType *ltt_trace_eventtype_get(LttTrace *t, unsigned evId)
6cd62ccf 1126{
6e8c19d4 1127 LttEventType *event_type;
1128
963b5f2d 1129 LttFacility * f;
1130 f = ltt_trace_facility_by_id(t,evId);
6e8c19d4 1131
1132 if(unlikely(!f)) event_type = NULL;
1133 else event_type = f->events[evId - f->base_id];
1134
1135 return event_type;
6cd62ccf 1136}
3aee1200 1137#endif //0
6cd62ccf 1138
3aee1200 1139#if 0
6cd62ccf 1140/*****************************************************************************
3aee1200 1141 * ltt_trace_find_tracefile
1142 *
1143 * Find a tracefile by name and index in the group.
1144 *
1145 * Returns a pointer to the tracefiles, else NULL.
6cd62ccf 1146 ****************************************************************************/
6cd62ccf 1147
3aee1200 1148LttTracefile *ltt_trace_find_tracefile(LttTrace *t, const gchar *name)
6cd62ccf 1149{
6cd62ccf 1150}
3aee1200 1151#endif //0
6cd62ccf 1152
1153/*****************************************************************************
3aee1200 1154 * Get the start time and end time of the trace
6cd62ccf 1155 ****************************************************************************/
1156
3aee1200 1157static void ltt_tracefile_time_span_get(LttTracefile *tf,
1158 LttTime *start, LttTime *end)
6cd62ccf 1159{
3aee1200 1160 struct ltt_block_start_header * header;
1161 int err;
6cd62ccf 1162
3aee1200 1163 err = map_block(tf, 0);
1164 if(unlikely(err)) {
1165 g_error("Can not map block");
1166 *start = ltt_time_infinite;
1167 } else
1168 *start = tf->buffer.begin.timestamp;
1169
1170 err = map_block(tf, tf->num_blocks - 1); /* Last block */
1171 if(unlikely(err)) {
1172 g_error("Can not map block");
1173 *end = ltt_time_zero;
1174 } else
1175 *end = tf->buffer.end.timestamp;
6cd62ccf 1176}
1177
3aee1200 1178struct tracefile_time_span_get_args {
1179 LttTrace *t;
1180 LttTime *start;
1181 LttTime *end;
1182};
963b5f2d 1183
3aee1200 1184static void group_time_span_get(GQuark name, gpointer data, gpointer user_data)
963b5f2d 1185{
3aee1200 1186 struct tracefile_time_span_get_args *args =
1187 (struct tracefile_time_span_get_args*)user_data;
1188
1189 GArray *group = (GArray *)data;
1190 int i;
1191 LttTracefile *tf;
1192 LttTime tmp_start;
1193 LttTime tmp_end;
1194
1195 for(i=0; i<group->len; i++) {
1196 tf = &g_array_index (group, LttTracefile, i);
1197 if(tf->cpu_online) {
1198 ltt_tracefile_time_span_get(tf, &tmp_start, &tmp_end);
1199 if(ltt_time_compare(*args->start, tmp_start)>0) *args->start = tmp_start;
1200 if(ltt_time_compare(*args->end, tmp_end)<0) *args->end = tmp_end;
1201 }
1202 }
6cd62ccf 1203}
1204
487ad181 1205void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end)
1206{
3aee1200 1207 LttTime min_start = ltt_time_infinite;
1208 LttTime max_end = ltt_time_zero;
1209 struct tracefile_time_span_get_args args = { t, &min_start, &max_end };
487ad181 1210
3aee1200 1211 g_datalist_foreach(&t->tracefiles, &group_time_span_get, &args);
1212
1213 if(start != NULL) *start = min_start;
1214 if(end != NULL) *end = max_end;
1215
487ad181 1216}
1217
1218
6cd62ccf 1219/*****************************************************************************
963b5f2d 1220 *Get the name of a tracefile
6cd62ccf 1221 ****************************************************************************/
1222
3aee1200 1223GQuark ltt_tracefile_name(LttTracefile *tf)
6cd62ccf 1224{
963b5f2d 1225 return tf->name;
6cd62ccf 1226}
1227
d3d34f49 1228
1229guint ltt_tracefile_num(LttTracefile *tf)
1230{
1231 return tf->cpu_num;
1232}
1233
80da81ad 1234/*****************************************************************************
1235 * Get the number of blocks in the tracefile
1236 ****************************************************************************/
1237
3aee1200 1238guint ltt_tracefile_block_number(LttTracefile *tf)
80da81ad 1239{
3aee1200 1240 return tf->num_blocks;
80da81ad 1241}
1242
caf7a67a 1243
3aee1200 1244/* Seek to the first event in a tracefile that has a time equal or greater than
1245 * the time passed in parameter.
1246 *
1247 * If the time parameter is outside the tracefile time span, seek to the first
27304273 1248 * event or if after, return ERANGE.
3aee1200 1249 *
1250 * If the time parameter is before the first event, we have to seek specially to
1251 * there.
1252 *
27304273 1253 * If the time is after the end of the trace, return ERANGE.
3aee1200 1254 *
1255 * Do a binary search to find the right block, then a sequential search in the
1256 * block to find the event.
1257 *
1258 * In the special case where the time requested fits inside a block that has no
1259 * event corresponding to the requested time, the first event of the next block
1260 * will be seeked.
1261 *
1262 * IMPORTANT NOTE : // FIXME everywhere...
1263 *
1264 * You MUST NOT do a ltt_tracefile_read right after a ltt_tracefile_seek_time :
1265 * you will jump over an event if you do.
1266 *
1267 * Return value : 0 : no error, the tf->event can be used
27304273 1268 * ERANGE : time if after the last event of the trace
3aee1200 1269 * otherwise : this is an error.
1270 *
1271 * */
1272
1273int ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
1274{
1275 int ret = 0;
1276 int err;
1277 unsigned int block_num, high, low;
1278
1279 /* seek at the beginning of trace */
1280 err = map_block(tf, 0); /* First block */
1281 if(unlikely(err)) {
1282 g_error("Can not map block");
1283 goto fail;
caf7a67a 1284 }
1285
3aee1200 1286 /* If the time is lower or equal the beginning of the trace,
1287 * go to the first event. */
1288 if(ltt_time_compare(time, tf->buffer.begin.timestamp) <= 0) {
1289 ret = ltt_tracefile_read(tf);
27304273 1290 if(ret == ERANGE) goto range;
1291 else if (ret) goto fail;
3aee1200 1292 goto found; /* There is either no event in the trace or the event points
1293 to the first event in the trace */
1294 }
caf7a67a 1295
3aee1200 1296 err = map_block(tf, tf->num_blocks - 1); /* Last block */
1297 if(unlikely(err)) {
1298 g_error("Can not map block");
1299 goto fail;
caf7a67a 1300 }
6cd62ccf 1301
27304273 1302 /* If the time is after the end of the trace, return ERANGE. */
1303 if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1304 goto range;
3aee1200 1305 }
62e55dd6 1306
3aee1200 1307 /* Binary search the block */
1308 high = tf->num_blocks - 1;
1309 low = 0;
1310
1311 while(1) {
1312 block_num = ((high-low) / 2) + low;
1313
1314 err = map_block(tf, block_num);
1315 if(unlikely(err)) {
1316 g_error("Can not map block");
1317 goto fail;
db55eaae 1318 }
3aee1200 1319 if(high == low) {
1320 /* We cannot divide anymore : this is what would happen if the time
1321 * requested was exactly between two consecutive buffers'end and start
1322 * timestamps. This is also what would happend if we didn't deal with out
1323 * of span cases prior in this function. */
1324 /* The event is right in the buffer!
1325 * (or in the next buffer first event) */
1326 while(1) {
1327 ret = ltt_tracefile_read(tf);
27304273 1328 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
3aee1200 1329 else if(ret) goto fail;
1330
1331 if(ltt_time_compare(time, tf->event.event_time) >= 0)
e45551ac 1332 goto found;
3aee1200 1333 }
1334
27304273 1335 } else if(ltt_time_compare(time, tf->buffer.begin.timestamp) < 0) {
3aee1200 1336 /* go to lower part */
1337 high = block_num;
1338 } else if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1339 /* go to higher part */
1340 low = block_num;
1341 } else {/* The event is right in the buffer!
1342 (or in the next buffer first event) */
1343 while(1) {
27304273 1344 ret = ltt_tracefile_read(tf);
1345 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
3aee1200 1346 else if(ret) goto fail;
1347
1348 if(ltt_time_compare(time, tf->event.event_time) >= 0)
1349 break;
6cd62ccf 1350 }
3aee1200 1351 goto found;
6cd62ccf 1352 }
6cd62ccf 1353 }
3aee1200 1354
1355found:
1356 return 0;
27304273 1357range:
1358 return ERANGE;
3aee1200 1359
1360 /* Error handling */
1361fail:
1362 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1363 g_quark_to_string(tf->name));
1364 return EPERM;
6cd62ccf 1365}
1366
80da81ad 1367
3aee1200 1368int ltt_tracefile_seek_position(LttTracefile *tf, const LttEventPosition *ep) {
80da81ad 1369
3aee1200 1370 int err;
1371
1372 if(ep->tracefile != tf) {
1373 goto fail;
80da81ad 1374 }
1375
3aee1200 1376 err = map_block(tf, ep->block);
1377 if(unlikely(err)) {
1378 g_error("Can not map block");
1379 goto fail;
1380 }
1381
1382 tf->event.offset = ep->offset;
18206708 1383
3aee1200 1384 err = ltt_tracefile_read_update_event(tf);
1385 if(err) goto fail;
1386 err = ltt_tracefile_read_op(tf);
1387 if(err) goto fail;
80da81ad 1388
1389 return;
3aee1200 1390
1391fail:
1392 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1393 g_quark_to_string(tf->name));
1394}
1395
1396/* Calculate the real event time based on the buffer boundaries */
1397LttTime ltt_interpolate_time(LttTracefile *tf, LttEvent *event)
1398{
1399 LttTime time;
1400
1401 g_assert(tf->trace->has_tsc);
1402
1403 time = ltt_time_from_uint64(
50a17d39 1404 (guint64)(tf->buffer.tsc - tf->buffer.begin.cycle_count) *
1405 tf->buffer.nsecs_per_cycle);
3aee1200 1406 time = ltt_time_add(tf->buffer.begin.timestamp, time);
1407
1408 return time;
80da81ad 1409}
1410
eed2ef37 1411
1412/* Get the current event of the tracefile : valid until the next read */
1413LttEvent *ltt_tracefile_get_event(LttTracefile *tf)
1414{
1415 return &tf->event;
1416}
1417
1418
1419
6cd62ccf 1420/*****************************************************************************
1421 *Function name
3aee1200 1422 * ltt_tracefile_read : Read the next event in the tracefile
6cd62ccf 1423 *Input params
1424 * t : tracefile
1425 *Return value
3aee1200 1426 *
1427 * Returns 0 if an event can be used in tf->event.
d822520b 1428 * Returns ERANGE on end of trace. The event in tf->event still can be used
1429 * (if the last block was not empty).
3aee1200 1430 * Returns EPERM on error.
1431 *
1432 * This function does make the tracefile event structure point to the event
1433 * currently pointed to by the tf->event.
1434 *
1435 * Note : you must call a ltt_tracefile_seek to the beginning of the trace to
1436 * reinitialize it after an error if you want results to be coherent.
1437 * It would be the case if a end of trace last buffer has no event : the end
1438 * of trace wouldn't be returned, but an error.
1439 * We make the assumption there is at least one event per buffer.
6cd62ccf 1440 ****************************************************************************/
1441
3aee1200 1442int ltt_tracefile_read(LttTracefile *tf)
6cd62ccf 1443{
963b5f2d 1444 int err;
6cd62ccf 1445
3aee1200 1446 err = ltt_tracefile_read_seek(tf);
1447 if(err) return err;
1448 err = ltt_tracefile_read_update_event(tf);
1449 if(err) return err;
1450 err = ltt_tracefile_read_op(tf);
1451 if(err) return err;
1452
1453 return 0;
1454}
1455
1456int ltt_tracefile_read_seek(LttTracefile *tf)
1457{
1458 int err;
1459
1460 /* Get next buffer until we finally have an event, or end of trace */
1461 while(1) {
1462 err = ltt_seek_next_event(tf);
1463 if(unlikely(err == ENOPROTOOPT)) {
1464 return EPERM;
bdc36259 1465 }
bdc36259 1466
3aee1200 1467 /* Are we at the end of the buffer ? */
1468 if(err == ERANGE) {
1469 if(unlikely(tf->buffer.index == tf->num_blocks-1)){ /* end of trace ? */
1470 return ERANGE;
1471 } else {
1472 /* get next block */
1473 err = map_block(tf, tf->buffer.index + 1);
1474 if(unlikely(err)) {
1475 g_error("Can not map block");
1476 return EPERM;
1477 }
1478 }
1479 } else break; /* We found an event ! */
1480 }
2dee981d 1481
3aee1200 1482 return 0;
1483}
18206708 1484
1485
3aee1200 1486/* do specific operation on events */
1487int ltt_tracefile_read_op(LttTracefile *tf)
1488{
1489 int err;
1490 LttFacility *f;
1491 void * pos;
1492 LttEvent *event;
1493
1494 event = &tf->event;
18206708 1495
3aee1200 1496 /* do event specific operation */
40331ba8 1497
3aee1200 1498 /* do something if its an heartbeat event : increment the heartbeat count */
1499 //if(event->facility_id == LTT_FACILITY_CORE)
1500 // if(event->event_id == LTT_EVENT_HEARTBEAT)
1501 // tf->cur_heart_beat_number++;
1502
1503 return 0;
6cd62ccf 1504}
1505
6cd62ccf 1506
3aee1200 1507/* same as ltt_tracefile_read, but does not seek to the next event nor call
1508 * event specific operation. */
1509int ltt_tracefile_read_update_event(LttTracefile *tf)
6cd62ccf 1510{
3aee1200 1511 int err;
1512 LttFacility *f;
1513 void * pos;
1514 LttEvent *event;
1515
1516 event = &tf->event;
eed2ef37 1517 pos = tf->buffer.head + event->offset;
3aee1200 1518
1519 /* Read event header */
1520
1521 //TODO align
1522
1523 if(tf->trace->has_tsc) {
16fcbb80 1524 if(tf->trace->has_heartbeat) {
1525 event->time.timestamp = ltt_get_uint32(LTT_GET_BO(tf),
1526 pos);
1527 /* 32 bits -> 64 bits tsc */
1528 /* note : still works for seek and non seek cases. */
1529 if(event->time.timestamp < (0xFFFFFFFFULL&tf->buffer.tsc)) {
1530 tf->buffer.tsc = ((tf->buffer.tsc&0xFFFFFFFF00000000ULL)
1531 + 0x100000000ULL)
1532 | (guint64)event->time.timestamp;
1533 event->tsc = tf->buffer.tsc;
1534 } else {
1535 /* no overflow */
1536 tf->buffer.tsc = (tf->buffer.tsc&0xFFFFFFFF00000000ULL)
1537 | (guint64)event->time.timestamp;
1538 event->tsc = tf->buffer.tsc;
1539 }
1540 pos += sizeof(guint32);
3aee1200 1541 } else {
16fcbb80 1542 event->tsc = ltt_get_uint64(LTT_GET_BO(tf), pos);
1543 tf->buffer.tsc = event->tsc;
1544 pos += sizeof(guint64);
3aee1200 1545 }
16fcbb80 1546
3aee1200 1547 event->event_time = ltt_interpolate_time(tf, event);
3aee1200 1548 } else {
1549 event->time.delta.tv_sec = 0;
1550 event->time.delta.tv_nsec = ltt_get_uint32(LTT_GET_BO(tf),
1551 pos) * NSEC_PER_USEC;
1552 tf->buffer.tsc = 0;
1553 event->tsc = tf->buffer.tsc;
1554
1555 event->event_time = ltt_time_add(tf->buffer.begin.timestamp,
1556 event->time.delta);
1557 pos += sizeof(guint32);
1558 }
1559
eed2ef37 1560 event->facility_id = *(guint8*)pos;
3aee1200 1561 pos += sizeof(guint8);
1562
eed2ef37 1563 event->event_id = *(guint8*)pos;
3aee1200 1564 pos += sizeof(guint8);
1565
b77d1b57 1566 event->event_size = ltt_get_uint16(LTT_GET_BO(tf), pos);
1567 pos += sizeof(guint16);
1568
3aee1200 1569 event->data = pos;
1570
77175651 1571 /* get the data size and update the event fields with the current
1572 * information */
eed2ef37 1573 ltt_update_event_size(tf);
77175651 1574
3aee1200 1575 return 0;
6cd62ccf 1576}
1577
507915ee 1578
6cd62ccf 1579/****************************************************************************
1580 *Function name
3aee1200 1581 * map_block : map a block from the file
6cd62ccf 1582 *Input Params
1583 * lttdes : ltt trace file
1584 * whichBlock : the block which will be read
1585 *return value
1586 * 0 : success
1587 * EINVAL : lseek fail
1588 * EIO : can not read from the file
1589 ****************************************************************************/
1590
3aee1200 1591static gint map_block(LttTracefile * tf, guint block_num)
6cd62ccf 1592{
b77d1b57 1593 int page_size = getpagesize();
3aee1200 1594 struct ltt_block_start_header *header;
1595
1596 g_assert(block_num < tf->num_blocks);
6cd62ccf 1597
f628823c 1598 if(tf->buffer.head != NULL) {
1599 if(munmap(tf->buffer.head, PAGE_ALIGN(tf->buf_size))) {
1600 g_warning("unmap size : %u\n",
1601 PAGE_ALIGN(tf->buf_size));
1602 perror("munmap error");
1603 g_assert(0);
1604 }
1605 }
1606
ac849774 1607
3aee1200 1608 /* Multiple of pages aligned head */
b77d1b57 1609 tf->buffer.head = mmap(0,
f628823c 1610 PAGE_ALIGN(tf->buf_size),
b77d1b57 1611 PROT_READ, MAP_PRIVATE, tf->fd,
f628823c 1612 PAGE_ALIGN((off_t)tf->buf_size * (off_t)block_num));
3aee1200 1613
3865ea09 1614 if(tf->buffer.head == MAP_FAILED) {
3aee1200 1615 perror("Error in allocating memory for buffer of tracefile");
3865ea09 1616 g_assert(0);
3aee1200 1617 goto map_error;
6cd62ccf 1618 }
3865ea09 1619 g_assert( ( (guint)tf->buffer.head&(8-1) ) == 0); // make sure it's aligned.
3aee1200 1620
6cd62ccf 1621
3aee1200 1622 tf->buffer.index = block_num;
1623
1624 header = (struct ltt_block_start_header*)tf->buffer.head;
1625
1626 tf->buffer.begin.timestamp = ltt_get_time(LTT_GET_BO(tf),
1627 &header->begin.timestamp);
1628 tf->buffer.begin.timestamp.tv_nsec *= NSEC_PER_USEC;
e45551ac 1629 g_debug("block %u begin : %lu.%lu", block_num,
50a17d39 1630 tf->buffer.begin.timestamp.tv_sec, tf->buffer.begin.timestamp.tv_nsec);
3aee1200 1631 tf->buffer.begin.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1632 &header->begin.cycle_count);
1633 tf->buffer.end.timestamp = ltt_get_time(LTT_GET_BO(tf),
1634 &header->end.timestamp);
1635 tf->buffer.end.timestamp.tv_nsec *= NSEC_PER_USEC;
e45551ac 1636 g_debug("block %u end : %lu.%lu", block_num,
50a17d39 1637 tf->buffer.end.timestamp.tv_sec, tf->buffer.end.timestamp.tv_nsec);
3aee1200 1638 tf->buffer.end.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1639 &header->end.cycle_count);
1640 tf->buffer.lost_size = ltt_get_uint32(LTT_GET_BO(tf),
1641 &header->lost_size);
6cd62ccf 1642
3aee1200 1643 tf->buffer.tsc = tf->buffer.begin.cycle_count;
1644 tf->event.tsc = tf->buffer.tsc;
1645
1646 /* FIXME
1647 * eventually support variable buffer size : will need a partial pre-read of
1648 * the headers to create an index when we open the trace... eventually. */
f628823c 1649 g_assert(tf->buf_size == ltt_get_uint32(LTT_GET_BO(tf),
3aee1200 1650 &header->buf_size));
507915ee 1651
3aee1200 1652 /* Now that the buffer is mapped, calculate the time interpolation for the
1653 * block. */
1654
1655 tf->buffer.nsecs_per_cycle = calc_nsecs_per_cycle(tf);
1656
1657 /* Make the current event point to the beginning of the buffer :
1658 * it means that the event read must get the first event. */
1659 tf->event.tracefile = tf;
1660 tf->event.block = block_num;
eed2ef37 1661 tf->event.offset = 0;
3aee1200 1662
1663 return 0;
6cd62ccf 1664
3aee1200 1665map_error:
1666 return -errno;
40331ba8 1667
6cd62ccf 1668}
1669
77175651 1670/* It will update the fields offsets too */
1671void ltt_update_event_size(LttTracefile *tf)
6cd62ccf 1672{
3aee1200 1673 ssize_t size = 0;
1674
1675 /* Specific handling of core events : necessary to read the facility control
1676 * tracefile. */
77175651 1677 LttFacility *f = ltt_trace_get_facility_by_num(tf->trace,
1678 tf->event.facility_id);
6cd62ccf 1679
3865ea09 1680 if(likely(tf->event.facility_id == LTT_FACILITY_CORE)) {
1681 switch((enum ltt_core_events)tf->event.event_id) {
1682 case LTT_EVENT_FACILITY_LOAD:
b77d1b57 1683 size = strlen((char*)tf->event.data) + 1;
d2083cab 1684 g_debug("Update Event facility load of facility %s", (char*)tf->event.data);
c4afd5d8 1685 size += sizeof(struct LttFacilityLoad);
3865ea09 1686 break;
1687 case LTT_EVENT_FACILITY_UNLOAD:
d2083cab 1688 g_debug("Update Event facility unload");
3865ea09 1689 size = sizeof(struct LttFacilityUnload);
1690 break;
1691 case LTT_EVENT_STATE_DUMP_FACILITY_LOAD:
b77d1b57 1692 size = strlen((char*)tf->event.data) + 1;
d2083cab 1693 g_debug("Update Event facility load state dump of facility %s",
b77d1b57 1694 (char*)tf->event.data);
c4afd5d8 1695 size += sizeof(struct LttStateDumpFacilityLoad);
3865ea09 1696 break;
1697 case LTT_EVENT_HEARTBEAT:
d2083cab 1698 g_debug("Update Event heartbeat");
3865ea09 1699 size = sizeof(TimeHeartbeat);
1700 break;
1701 default:
1702 g_warning("Error in getting event size : tracefile %s, "
1703 "unknown event id %hhu in core facility.",
1704 g_quark_to_string(tf->name),
1705 tf->event.event_id);
1706 goto event_id_error;
2dee981d 1707
77175651 1708 }
3aee1200 1709 } else {
c4afd5d8 1710 if(!f->exists) {
1711 g_error("Unknown facility %hhu (0x%hhx) in tracefile %s",
1712 tf->event.facility_id,
1713 tf->event.facility_id,
1714 g_quark_to_string(tf->name));
1715 goto facility_error;
1716 }
1717
3aee1200 1718 LttEventType *event_type =
1719 ltt_facility_eventtype_get(f, tf->event.event_id);
c4afd5d8 1720
1721 if(!event_type) {
1722 g_error("Unknown event id %hhu in facility %s in tracefile %s",
1723 tf->event.event_id,
1724 g_quark_to_string(f->name),
1725 g_quark_to_string(tf->name));
1726 goto event_type_error;
1727 }
9eb6aa7a 1728
27304273 1729 if(event_type->root_field)
1730 size = get_field_type_size(tf, event_type,
1731 0, 0, event_type->root_field, tf->event.data);
1732 else
1733 size = 0;
c4afd5d8 1734
f628823c 1735 g_debug("Event root field : f.e %hhu.%hhu size %zd",
1736 tf->event.facility_id,
c4afd5d8 1737 tf->event.event_id, size);
3aee1200 1738 }
3aee1200 1739
77175651 1740 tf->event.data_size = size;
eed2ef37 1741
b77d1b57 1742 /* Check consistency between kernel and LTTV structure sizes */
1743 g_assert(tf->event.data_size == tf->event.event_size);
9eb6aa7a 1744
eed2ef37 1745 return;
1746
c4afd5d8 1747facility_error:
1748event_type_error:
3aee1200 1749event_id_error:
eed2ef37 1750 tf->event.data_size = 0;
6cd62ccf 1751}
1752
6cd62ccf 1753
3aee1200 1754/* Take the tf current event offset and use the event facility id and event id
1755 * to figure out where is the next event offset.
1756 *
1757 * This is an internal function not aiming at being used elsewhere : it will
1758 * not jump over the current block limits. Please consider using
1759 * ltt_tracefile_read to do this.
1760 *
1761 * Returns 0 on success
1762 * ERANGE if we are at the end of the buffer.
1763 * ENOPROTOOPT if an error occured when getting the current event size.
1764 */
1765static int ltt_seek_next_event(LttTracefile *tf)
6cd62ccf 1766{
3aee1200 1767 int ret = 0;
1768 void *pos;
1769 ssize_t event_size;
1770
1771 /* seek over the buffer header if we are at the buffer start */
eed2ef37 1772 if(tf->event.offset == 0) {
3aee1200 1773 tf->event.offset += sizeof(struct ltt_block_start_header);
b77d1b57 1774
f628823c 1775 if(tf->event.offset == tf->buf_size - tf->buffer.lost_size) {
b77d1b57 1776 ret = ERANGE;
1777 }
3aee1200 1778 goto found;
1779 }
6cd62ccf 1780
6cd62ccf 1781
3aee1200 1782 pos = tf->event.data;
1783
77175651 1784 if(tf->event.data_size < 0) goto error;
3aee1200 1785
77175651 1786 pos += (size_t)tf->event.data_size;
3aee1200 1787
eed2ef37 1788 tf->event.offset = pos - tf->buffer.head;
cb03932a 1789
f628823c 1790 if(tf->event.offset == tf->buf_size - tf->buffer.lost_size) {
cb03932a 1791 ret = ERANGE;
1792 goto found;
1793 }
3aee1200 1794
1795found:
1796 return ret;
1797
1798error:
1799 g_error("Error in ltt_seek_next_event for tracefile %s",
1800 g_quark_to_string(tf->name));
1801 return ENOPROTOOPT;
6cd62ccf 1802}
1803
18206708 1804
6cd62ccf 1805/*****************************************************************************
1806 *Function name
3aee1200 1807 * calc_nsecs_per_cycle : calculate nsecs per cycle for current block
6cd62ccf 1808 *Input Params
1809 * t : tracefile
1810 ****************************************************************************/
1811
3aee1200 1812static double calc_nsecs_per_cycle(LttTracefile * tf)
6cd62ccf 1813{
963b5f2d 1814 LttTime lBufTotalTime; /* Total time for this buffer */
887208b7 1815 double lBufTotalNSec; /* Total time for this buffer in nsecs */
8ee1c3d5 1816 LttCycleCount lBufTotalCycle;/* Total cycles for this buffer */
6cd62ccf 1817
1818 /* Calculate the total time for this buffer */
d822520b 1819 lBufTotalTime = ltt_time_sub(tf->buffer.end.timestamp,
1820 tf->buffer.begin.timestamp);
6cd62ccf 1821
1822 /* Calculate the total cycles for this bufffer */
d822520b 1823 lBufTotalCycle = tf->buffer.end.cycle_count;
1824 lBufTotalCycle -= tf->buffer.begin.cycle_count;
6cd62ccf 1825
8ee1c3d5 1826 /* Convert the total time to double */
887208b7 1827 lBufTotalNSec = ltt_time_to_double(lBufTotalTime);
6cd62ccf 1828
3aee1200 1829 return lBufTotalNSec / (double)lBufTotalCycle;
8ee1c3d5 1830
3aee1200 1831}
1832#if 0
1833void setFieldsOffset(LttTracefile *tf, LttEventType *evT,void *evD)
1834{
1835 LttField * rootFld = evT->root_field;
1836 // rootFld->base_address = evD;
2dee981d 1837
3aee1200 1838 if(likely(rootFld))
1839 rootFld->field_size = getFieldtypeSize(tf, evT->facility,
1840 evT, 0,0,rootFld, evD);
6cd62ccf 1841}
3aee1200 1842#endif //0
6cd62ccf 1843
3aee1200 1844/*****************************************************************************
6cd62ccf 1845 *Function name
3aee1200 1846 * set_fields_offsets : set the precomputable offset of the fields
6cd62ccf 1847 *Input params
3aee1200 1848 * tracefile : opened trace file
1849 * event_type : the event type
6cd62ccf 1850 ****************************************************************************/
1851
3aee1200 1852void set_fields_offsets(LttTracefile *tf, LttEventType *event_type)
6cd62ccf 1853{
3aee1200 1854 LttField *field = event_type->root_field;
1855 enum field_status fixed_root = FIELD_FIXED, fixed_parent = FIELD_FIXED;
1856
1857 if(likely(field))
1858 preset_field_type_size(tf, event_type, 0, 0,
1859 &fixed_root, &fixed_parent,
1860 field);
1861
1862}
e4eced0f 1863
bbf28e50 1864
3aee1200 1865/*****************************************************************************
1866 *Function name
1867 * preset_field_type_size : set the fixed sizes of the field type
1868 *Input params
1869 * tf : tracefile
1870 * event_type : event type
1871 * offset_root : offset from the root
1872 * offset_parent : offset from the parent
1873 * fixed_root : Do we know a fixed offset to the root ?
1874 * fixed_parent : Do we know a fixed offset to the parent ?
1875 * field : field
1876 ****************************************************************************/
1877void preset_field_type_size(LttTracefile *tf, LttEventType *event_type,
1878 off_t offset_root, off_t offset_parent,
1879 enum field_status *fixed_root, enum field_status *fixed_parent,
1880 LttField *field)
1881{
1882 enum field_status local_fixed_root, local_fixed_parent;
1883 guint i;
1884 LttType *type;
dfb73233 1885
3aee1200 1886 g_assert(field->fixed_root == FIELD_UNKNOWN);
1887 g_assert(field->fixed_parent == FIELD_UNKNOWN);
1888 g_assert(field->fixed_size == FIELD_UNKNOWN);
dfb73233 1889
3aee1200 1890 type = field->field_type;
1891
1892 field->fixed_root = *fixed_root;
1893 if(field->fixed_root == FIELD_FIXED)
1894 field->offset_root = offset_root;
1895 else
1896 field->offset_root = 0;
1897
1898 field->fixed_parent = *fixed_parent;
1899 if(field->fixed_parent == FIELD_FIXED)
1900 field->offset_parent = offset_parent;
1901 else
1902 field->offset_parent = 0;
1903
1904 size_t current_root_offset;
1905 size_t current_offset;
1906 enum field_status current_child_status, final_child_status;
1907 size_t max_size;
1908
1909 switch(type->type_class) {
1910 case LTT_INT:
1911 case LTT_UINT:
1912 case LTT_FLOAT:
1913 case LTT_ENUM:
1914 field->field_size = ltt_type_size(tf->trace, type);
1915 field->fixed_size = FIELD_FIXED;
1916 break;
1917 case LTT_POINTER:
1918 field->field_size = (off_t)event_type->facility->pointer_size;
1919 field->fixed_size = FIELD_FIXED;
1920 break;
1921 case LTT_LONG:
1922 case LTT_ULONG:
cb03932a 1923 field->field_size = (off_t)event_type->facility->long_size;
3aee1200 1924 field->fixed_size = FIELD_FIXED;
1925 break;
1926 case LTT_SIZE_T:
1927 case LTT_SSIZE_T:
1928 case LTT_OFF_T:
1929 field->field_size = (off_t)event_type->facility->size_t_size;
1930 field->fixed_size = FIELD_FIXED;
1931 break;
1932 case LTT_SEQUENCE:
1933 local_fixed_root = FIELD_VARIABLE;
1934 local_fixed_parent = FIELD_VARIABLE;
1935 preset_field_type_size(tf, event_type,
1936 0, 0,
1937 &local_fixed_root, &local_fixed_parent,
1938 field->child[0]);
1939 field->fixed_size = FIELD_VARIABLE;
1940 field->field_size = 0;
27304273 1941 *fixed_root = FIELD_VARIABLE;
1942 *fixed_parent = FIELD_VARIABLE;
3aee1200 1943 break;
1944 case LTT_STRING:
1945 field->fixed_size = FIELD_VARIABLE;
1946 field->field_size = 0;
27304273 1947 *fixed_root = FIELD_VARIABLE;
1948 *fixed_parent = FIELD_VARIABLE;
3aee1200 1949 break;
1950 case LTT_ARRAY:
1951 local_fixed_root = FIELD_VARIABLE;
1952 local_fixed_parent = FIELD_VARIABLE;
1953 preset_field_type_size(tf, event_type,
1954 0, 0,
1955 &local_fixed_root, &local_fixed_parent,
1956 field->child[0]);
1957 field->fixed_size = field->child[0]->fixed_size;
27304273 1958 if(field->fixed_size == FIELD_FIXED) {
3aee1200 1959 field->field_size = type->element_number * field->child[0]->field_size;
27304273 1960 } else {
3aee1200 1961 field->field_size = 0;
27304273 1962 *fixed_root = FIELD_VARIABLE;
1963 *fixed_parent = FIELD_VARIABLE;
1964 }
3aee1200 1965 break;
1966 case LTT_STRUCT:
1967 current_root_offset = field->offset_root;
1968 current_offset = 0;
1969 current_child_status = FIELD_FIXED;
1970 for(i=0;i<type->element_number;i++) {
1971 preset_field_type_size(tf, event_type,
1972 current_root_offset, current_offset,
1973 fixed_root, &current_child_status,
1974 field->child[i]);
1975 if(current_child_status == FIELD_FIXED) {
1976 current_root_offset += field->child[i]->field_size;
1977 current_offset += field->child[i]->field_size;
1978 } else {
1979 current_root_offset = 0;
1980 current_offset = 0;
1981 }
1982 }
1983 if(current_child_status != FIELD_FIXED) {
1984 *fixed_parent = current_child_status;
1985 field->field_size = 0;
1986 field->fixed_size = current_child_status;
1987 } else {
1988 field->field_size = current_offset;
1989 field->fixed_size = FIELD_FIXED;
1990 }
1991 break;
1992 case LTT_UNION:
1993 current_root_offset = field->offset_root;
1994 current_offset = 0;
1995 max_size = 0;
1996 final_child_status = FIELD_FIXED;
1997 for(i=0;i<type->element_number;i++) {
1998 enum field_status current_root_child_status = FIELD_FIXED;
1999 enum field_status current_child_status = FIELD_FIXED;
2000 preset_field_type_size(tf, event_type,
2001 current_root_offset, current_offset,
2002 &current_root_child_status, &current_child_status,
2003 field->child[i]);
2004 if(current_child_status != FIELD_FIXED)
2005 final_child_status = current_child_status;
2006 else
2007 max_size = max(max_size, field->child[i]->field_size);
2008 }
2009 if(final_child_status != FIELD_FIXED) {
2010 *fixed_root = final_child_status;
2011 *fixed_parent = final_child_status;
2012 field->field_size = 0;
2013 field->fixed_size = current_child_status;
2014 } else {
2015 field->field_size = max_size;
2016 field->fixed_size = FIELD_FIXED;
2017 }
2018 break;
dfb73233 2019 }
2020
6cd62ccf 2021}
2022
3aee1200 2023
77175651 2024/*****************************************************************************
2025 *Function name
2026 * check_fields_compatibility : Check for compatibility between two fields :
2027 * do they use the same inner structure ?
2028 *Input params
2029 * event_type1 : event type
2030 * event_type2 : event type
2031 * field1 : field
2032 * field2 : field
2033 *Returns : 0 if identical
2034 * 1 if not.
2035 ****************************************************************************/
2036gint check_fields_compatibility(LttEventType *event_type1,
2037 LttEventType *event_type2,
2038 LttField *field1, LttField *field2)
2039{
2040 guint different = 0;
2041 enum field_status local_fixed_root, local_fixed_parent;
2042 guint i;
2043 LttType *type1;
2044 LttType *type2;
2045
2046 if(field1 == NULL) {
2047 if(field2 == NULL) goto end;
2048 else {
2049 different = 1;
2050 goto end;
2051 }
2052 } else if(field2 == NULL) {
2053 different = 1;
2054 goto end;
2055 }
2056
2057 g_assert(field1->fixed_root != FIELD_UNKNOWN);
2058 g_assert(field2->fixed_root != FIELD_UNKNOWN);
2059 g_assert(field1->fixed_parent != FIELD_UNKNOWN);
2060 g_assert(field2->fixed_parent != FIELD_UNKNOWN);
2061 g_assert(field1->fixed_size != FIELD_UNKNOWN);
2062 g_assert(field2->fixed_size != FIELD_UNKNOWN);
2063
2064 type1 = field1->field_type;
2065 type2 = field2->field_type;
2066
2067 size_t current_root_offset;
2068 size_t current_offset;
2069 enum field_status current_child_status, final_child_status;
2070 size_t max_size;
2071
2072 if(type1->type_class != type2->type_class) {
2073 different = 1;
2074 goto end;
2075 }
2076 if(type1->element_name != type2->element_name) {
2077 different = 1;
2078 goto end;
2079 }
2080
2081 switch(type1->type_class) {
2082 case LTT_INT:
2083 case LTT_UINT:
2084 case LTT_FLOAT:
2085 case LTT_POINTER:
2086 case LTT_LONG:
2087 case LTT_ULONG:
2088 case LTT_SIZE_T:
2089 case LTT_SSIZE_T:
2090 case LTT_OFF_T:
2091 if(field1->field_size != field2->field_size) {
2092 different = 1;
2093 goto end;
2094 }
2095 break;
2096 case LTT_ENUM:
2097 if(type1->element_number != type2->element_number) {
2098 different = 1;
2099 goto end;
2100 }
2101 for(i=0;i<type1->element_number;i++) {
2102 if(type1->enum_strings[i] != type2->enum_strings[i]) {
2103 different = 1;
2104 goto end;
2105 }
2106 }
2107 break;
2108 case LTT_SEQUENCE:
2109 /* Two elements : size and child */
2110 g_assert(type1->element_number != type2->element_number);
2111 for(i=0;i<type1->element_number;i++) {
2112 if(check_fields_compatibility(event_type1, event_type2,
2113 field1->child[0], field2->child[0])) {
2114 different = 1;
2115 goto end;
2116 }
2117 }
2118 break;
2119 case LTT_STRING:
2120 break;
2121 case LTT_ARRAY:
2122 if(field1->field_size != field2->field_size) {
2123 different = 1;
2124 goto end;
2125 }
2126 /* Two elements : size and child */
2127 g_assert(type1->element_number != type2->element_number);
2128 for(i=0;i<type1->element_number;i++) {
2129 if(check_fields_compatibility(event_type1, event_type2,
2130 field1->child[0], field2->child[0])) {
2131 different = 1;
2132 goto end;
2133 }
2134 }
2135 break;
2136 case LTT_STRUCT:
2137 case LTT_UNION:
2138 if(type1->element_number != type2->element_number) {
2139 different = 1;
2140 break;
2141 }
2142 for(i=0;i<type1->element_number;i++) {
2143 if(check_fields_compatibility(event_type1, event_type2,
2144 field1->child[0], field2->child[0])) {
2145 different = 1;
2146 goto end;
2147 }
2148 }
2149 break;
2150 }
2151end:
2152 return different;
2153}
2154
2155
2156
3aee1200 2157
2158#if 0
6cd62ccf 2159/*****************************************************************************
2160 *Function name
2161 * getFieldtypeSize: get the size of the field type (primitive type)
2162 *Input params
6cd62ccf 2163 * evT : event type
2164 * offsetRoot : offset from the root
2165 * offsetParent : offset from the parrent
2166 * fld : field
2167 * evD : event data, it may be NULL
2168 *Return value
2169 * int : size of the field
2170 ****************************************************************************/
2171
3aee1200 2172static inline gint getFieldtypeSize(LttTracefile *tf,
21182d4a 2173 LttEventType * evT, gint offsetRoot,
3aee1200 2174 gint offsetParent, LttField * fld, void *evD)
6cd62ccf 2175{
21182d4a 2176 gint size, size1, element_number, i, offset1, offset2;
963b5f2d 2177 LttType * type = fld->field_type;
6cd62ccf 2178
3aee1200 2179 /* This likely has been tested with gcov : half of them.. */
2180 if(unlikely(fld->field_fixed == 1)){
2181 /* tested : none */
2182 if(unlikely(fld == evT->root_field)) {
2183 size = fld->field_size;
2184 goto end_getFieldtypeSize;
21182d4a 2185 }
3aee1200 2186 }
6cd62ccf 2187
3aee1200 2188 /* From gcov profiling : half string, half struct, can we gain something
2189 * from that ? (Mathieu) */
2190 switch(type->type_class) {
2191 case LTT_ARRAY:
2192 element_number = (int) type->element_number;
2193 if(fld->field_fixed == -1){
2194 size = getFieldtypeSize(tf, evT, offsetRoot,
2195 0,fld->child[0], NULL);
2196 if(size == 0){ //has string or sequence
cf74a6f1 2197 fld->field_fixed = 0;
3aee1200 2198 }else{
2199 fld->field_fixed = 1;
2200 size *= element_number;
a0d63196 2201 }
3aee1200 2202 }else if(fld->field_fixed == 0){// has string or sequence
cf74a6f1 2203 size = 0;
3aee1200 2204 for(i=0;i<element_number;i++){
2205 size += getFieldtypeSize(tf, evT, offsetRoot+size,size,
2206 fld->child[0], evD+size);
cf74a6f1 2207 }
3aee1200 2208 }else size = fld->field_size;
2209 if(unlikely(!evD)){
a0d63196 2210 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2211 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
3aee1200 2212 }
cf74a6f1 2213
3aee1200 2214 break;
2215
2216 case LTT_SEQUENCE:
2217 size1 = (int) ltt_type_size(fac, type);
2218 if(fld->field_fixed == -1){
2219 fld->sequ_number_size = size1;
2220 fld->field_fixed = 0;
2221 size = getFieldtypeSize(evT, offsetRoot,
2222 0,fld->child[0], NULL);
2223 fld->element_size = size;
2224 }else{//0: sequence
2225 element_number = getIntNumber(tf,size1,evD);
2226 type->element_number = element_number;
2227 if(fld->element_size > 0){
2228 size = element_number * fld->element_size;
2229 }else{//sequence has string or sequence
2230 size = 0;
cf74a6f1 2231 for(i=0;i<element_number;i++){
3aee1200 2232 size += getFieldtypeSize(tf, evT,
2233 offsetRoot+size+size1,size+size1,
2234 fld->child[0], evD+size+size1);
cf74a6f1 2235 }
3aee1200 2236 }
2237 size += size1;
2238 }
2239 if(unlikely(!evD)){
d37b2aaa 2240 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2241 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
3aee1200 2242 }
cf74a6f1 2243
3aee1200 2244 break;
2245
2246 case LTT_STRING:
2247 size = 0;
2248 if(fld->field_fixed == -1){
2249 fld->field_fixed = 0;
2250 }else{//0: string
2251 /* Hope my implementation is faster than strlen (Mathieu) */
2252 char *ptr=(char*)evD;
2253 size = 1;
2254 /* from gcov : many many strings are empty, make it the common case.*/
2255 while(unlikely(*ptr != '\0')) { size++; ptr++; }
2256 //size = ptr - (char*)evD + 1; //include end : '\0'
2257 }
2258 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2259 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2260
2261 break;
2262
2263 case LTT_STRUCT:
2264 element_number = (int) type->element_number;
2265 size = 0;
2266 /* tested with gcov */
2267 if(unlikely(fld->field_fixed == -1)){
2268 offset1 = offsetRoot;
2269 offset2 = 0;
2270 for(i=0;i<element_number;i++){
2271 size1=getFieldtypeSize(tf, evT,offset1,offset2,
2272 fld->child[i], NULL);
2273 if(likely(size1 > 0 && size >= 0)){
2274 size += size1;
2275 if(likely(offset1 >= 0)) offset1 += size1;
2276 offset2 += size1;
2277 }else{
2278 size = -1;
2279 offset1 = -1;
2280 offset2 = -1;
2281 }
a0d63196 2282 }
3aee1200 2283 if(unlikely(size == -1)){
2284 fld->field_fixed = 0;
2285 size = 0;
2286 }else fld->field_fixed = 1;
2287 }else if(likely(fld->field_fixed == 0)){
2288 offset1 = offsetRoot;
2289 offset2 = 0;
2290 for(i=0;unlikely(i<element_number);i++){
2291 size=getFieldtypeSize(tf, evT, offset1, offset2,
2292 fld->child[i], evD+offset2);
2293 offset1 += size;
2294 offset2 += size;
2295 }
2296 size = offset2;
2297 }else size = fld->field_size;
2298 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2299 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2300 break;
2301
2302 default:
2303 if(unlikely(fld->field_fixed == -1)){
2304 size = (int) ltt_type_size(LTT_GET_BO(tf), type);
2305 fld->field_fixed = 1;
2306 }else size = fld->field_size;
2307 if(unlikely(!evD)){
2308 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2309 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2310 }
2311 break;
cf74a6f1 2312 }
2313
6cd62ccf 2314 fld->offset_root = offsetRoot;
2315 fld->offset_parent = offsetParent;
6cd62ccf 2316 fld->field_size = size;
2317
21182d4a 2318end_getFieldtypeSize:
2319
6cd62ccf 2320 return size;
2321}
3aee1200 2322#endif //0
6cd62ccf 2323
2324/*****************************************************************************
2325 *Function name
eed2ef37 2326 * ltt_get_int : get an integer number
6cd62ccf 2327 *Input params
3aee1200 2328 * reverse_byte_order: must we reverse the byte order ?
6cd62ccf 2329 * size : the size of the integer
3aee1200 2330 * ptr : the data pointer
6cd62ccf 2331 *Return value
cf74a6f1 2332 * gint64 : a 64 bits integer
6cd62ccf 2333 ****************************************************************************/
2334
eed2ef37 2335gint64 ltt_get_int(gboolean reverse_byte_order, gint size, void *data)
6cd62ccf 2336{
3aee1200 2337 gint64 val;
cf74a6f1 2338
2339 switch(size) {
3aee1200 2340 case 1: val = *((gint8*)data); break;
2341 case 2: val = ltt_get_int16(reverse_byte_order, data); break;
2342 case 4: val = ltt_get_int32(reverse_byte_order, data); break;
2343 case 8: val = ltt_get_int64(reverse_byte_order, data); break;
2344 default: val = ltt_get_int64(reverse_byte_order, data);
2345 g_critical("get_int : integer size %d unknown", size);
cf74a6f1 2346 break;
2347 }
2348
3aee1200 2349 return val;
6cd62ccf 2350}
3aee1200 2351
6cd62ccf 2352/*****************************************************************************
2353 *Function name
eed2ef37 2354 * ltt_get_uint : get an unsigned integer number
6cd62ccf 2355 *Input params
3aee1200 2356 * reverse_byte_order: must we reverse the byte order ?
2357 * size : the size of the integer
2358 * ptr : the data pointer
2359 *Return value
2360 * guint64 : a 64 bits unsigned integer
6cd62ccf 2361 ****************************************************************************/
2362
eed2ef37 2363guint64 ltt_get_uint(gboolean reverse_byte_order, gint size, void *data)
6cd62ccf 2364{
3aee1200 2365 guint64 val;
2366
2367 switch(size) {
2368 case 1: val = *((gint8*)data); break;
2369 case 2: val = ltt_get_uint16(reverse_byte_order, data); break;
2370 case 4: val = ltt_get_uint32(reverse_byte_order, data); break;
2371 case 8: val = ltt_get_uint64(reverse_byte_order, data); break;
2372 default: val = ltt_get_uint64(reverse_byte_order, data);
2373 g_critical("get_uint : unsigned integer size %d unknown",
2374 size);
2375 break;
2376 }
2377
2378 return val;
6cd62ccf 2379}
3aee1200 2380
2381
a5dcde2f 2382/* get the node name of the system */
2383
2384char * ltt_trace_system_description_node_name (LttSystemDescription * s)
2385{
2386 return s->node_name;
2387}
2388
2389
2390/* get the domain name of the system */
2391
2392char * ltt_trace_system_description_domain_name (LttSystemDescription * s)
2393{
2394 return s->domain_name;
2395}
2396
2397
2398/* get the description of the system */
2399
2400char * ltt_trace_system_description_description (LttSystemDescription * s)
2401{
2402 return s->description;
2403}
2404
2405
2406/* get the start time of the trace */
2407
2408LttTime ltt_trace_system_description_trace_start_time(LttSystemDescription *s)
2409{
2410 return s->trace_start;
2411}
2412
18206708 2413
2414LttTracefile *ltt_tracefile_new()
2415{
2416 return g_new(LttTracefile, 1);
2417}
2418
2419void ltt_tracefile_destroy(LttTracefile *tf)
2420{
2421 g_free(tf);
2422}
2423
2424void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src)
2425{
2426 *dest = *src;
2427}
2428
3aee1200 2429/* Before library loading... */
2430
2431static void __attribute__((constructor)) init(void)
2432{
2433 LTT_FACILITY_NAME_HEARTBEAT = g_quark_from_string("heartbeat");
2434 LTT_EVENT_NAME_HEARTBEAT = g_quark_from_string("heartbeat");
2435
3865ea09 2436 LTT_TRACEFILE_NAME_FACILITIES = g_quark_from_string("/control/facilities");
3aee1200 2437}
2438
This page took 0.156969 seconds and 4 git commands to generate.