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