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