1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2008 Pierre-Marc Fournier
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23 #include <lttv/lttv.h>
24 #include <lttv/option.h>
25 #include <lttv/module.h>
26 #include <lttv/hook.h>
27 #include <lttv/attribute.h>
28 #include <lttv/iattribute.h>
29 #include <lttv/stats.h>
30 #include <lttv/filter.h>
31 #include <lttv/print.h>
33 #include <ltt/event.h>
34 #include <ltt/trace.h>
48 static int depanalysis_range_pid
= -1;
49 static int depanalysis_range_pid_searching
= -1;
50 static int depanalysis_use_time
=0;
51 static int depanalysis_event_limit
= -1;
52 static LttTime depanalysis_time1
, depanalysis_time2
;
53 static char *arg_t1_str
,*arg_t2_str
;
54 static int statedump_finished
= 0;
57 struct llev_state_info_irq
{
61 struct llev_state_info_softirq
{
65 struct llev_state_info_syscall
{
73 struct llev_state_info_syscall__open
{
77 struct llev_state_info_syscall__read
{
81 struct llev_state_info_syscall__poll
{
85 struct llev_state_info_preempted
{
89 struct hlev_state_info_blocked
{
91 unsigned char trap
; /* flag */
94 /* Garray of pointers to struct process_state that reflect the
95 * low-level state stack when respectively entering and exiting the blocked
98 GArray
*llev_state_entry
;
99 GArray
*llev_state_exit
;
101 int pid_exit
; /* FIXME: it's not pretty to have this here; find this info elsewhere */
107 struct hlev_state_info_blocked__open
{
111 struct hlev_state_info_blocked__read
{
115 struct hlev_state_info_blocked__poll
{
119 struct hlev_state_info_interrupted_irq
{
123 struct hlev_state_info_interrupted_softirq
{
127 struct summary_tree_node
{
129 GHashTable
*children
;
141 struct state_info llev_state_infos
[] = {
142 { "UNKNOWN", 0, { NULL
} },
143 { "RUNNING", 0, { NULL
} },
144 { "SYSCALL", sizeof(struct llev_state_info_syscall
), { NULL
} },
145 { "IRQ", sizeof(struct llev_state_info_irq
), { NULL
} },
146 { "SOFTIRQ", sizeof(struct llev_state_info_softirq
), { NULL
} },
147 { "TRAP", 0, { NULL
} },
148 { "PREEMPTED", sizeof(struct llev_state_info_preempted
), { NULL
} },
151 struct state_info hlev_state_infos
[] = {
152 { "UNKNOWN", 0, { "Total", "Unknown", NULL
} },
153 { "RUNNING", 0, { "Total", "Working", NULL
} },
154 { "BLOCKED", sizeof(struct hlev_state_info_blocked
), { "Total", "Blocked", NULL
} },
155 { "INTERRUPTED_IRQ", sizeof(struct hlev_state_info_interrupted_irq
), { "Total", "Interrupted", "IRQ", NULL
} },
156 { "INTERRUPTED_SOFTIRQ", sizeof(struct hlev_state_info_interrupted_softirq
), { "Total", "Interrupted", "SoftIRQ", NULL
} },
157 { "INTERRUPTED_CPU", 0, { "Total", "Interrupted", "Preempted", NULL
} },
158 { "INTERRUPTED_POST_BLOCK", 0, { "Total", "Interrupted", "Waiting schedule after blocking", NULL
} },
171 enum llev_syscall_substate
{
172 LLEV_SYSCALL__UNDEFINED
,
179 HLEV_EVENT_TRY_WAKEUP
=0,
186 HLEV_INTERRUPTED_IRQ
,
187 HLEV_INTERRUPTED_SOFTIRQ
,
188 HLEV_INTERRUPTED_CPU
,
189 HLEV_INTERRUPTED_POST_BLOCK
,
192 enum hlev_state_blocked
{
193 HLEV_BLOCKED__UNDEFINED
,
199 struct sstack_event
{
204 struct try_wakeup_event
{
205 int pid
; /* this sould be more precise avec pid may be reused */
207 struct process
*waker
;
210 struct process_state
{
219 struct process_with_state
{
220 struct process
*process
;
221 struct process_state state
;
224 #define PROCESS_STATE_STACK_SIZE 10
230 struct sstack
*stack
;
231 struct process_state
*llev_state_stack
[PROCESS_STATE_STACK_SIZE
];
233 struct process_state
*hlev_state
;
234 GArray
*hlev_history
;
237 static inline void *old_process_state_private_data(struct process
*p
)
239 return p
->llev_state_stack
[p
->stack_current
]->private;
242 static inline struct process_state
*process_find_state(struct process
*p
, enum llev_state st
)
246 for(i
=p
->stack
->array
->len
-1; i
>=0; i
--) {
247 struct sstack_item
*item
= g_array_index(p
->stack
->array
, struct sstack_item
*, i
);
249 struct process_with_state
*pwstate
= item
->data_val
;
250 if(pwstate
->state
.bstate
== st
) {
251 return &pwstate
->state
;
258 static int find_pos_in_stack(enum llev_state lls
, struct process
*p
)
261 for(i
=p
->stack_current
; i
>=0; i
--) {
262 if(p
->llev_state_stack
[i
]->bstate
== lls
)
269 static struct process_state
*find_in_stack(enum llev_state lls
, struct process
*p
)
273 result
= find_pos_in_stack(lls
, p
);
276 return p
->llev_state_stack
[result
];
282 /* called back from sstack on deletion of a data_val which is
283 * a struct process_with_state
286 static void delete_data_val(struct process_with_state
*pwstate
)
288 // FIXME: Free this also
289 //g_free(pwstate->state.private);
291 // FIXME: this is really ugly. Don't free the pwstate if the state is LLEV_RUNNING.
292 // LLEV_RUNNING is a special case that's being processed and deleted immediately after
293 // being inserted on the sstack, to prevent state begin accumulated because it couldn't
294 // be processed before the end of the trace. If we free the state, we get invalid memory
295 // reads when looking at it on the state_stack.
296 //if(pwstate->state.bstate != LLEV_RUNNING)
300 inline void print_time(LttTime t
)
302 //printf("%lu.%lu", t.tv_sec, t.tv_nsec);
304 f
= (double)t
.tv_sec
+ ((double)t
.tv_nsec
)/1000000000.0;
308 static struct sstack_item
*prepare_push_item(struct process
*p
, enum llev_state st
, LttTime t
)
310 struct process_with_state
*pwstate
= g_malloc(sizeof(struct process_with_state
));
311 struct sstack_item
*item
;
313 int wait_for_pop
= 0;
315 if(st
== LLEV_SYSCALL
) {
316 /* We need to push LLEV_SYSCALL as wait_for_pop because it depends on some of
317 * its children. If we don't do this, it's going to get processed immediately
318 * by the sstack and we might miss some details about it that will come later.
323 item
= sstack_item_new_push(wait_for_pop
);
325 //printf("pushing in context of %d\n", p->pid);
327 pwstate
->process
= p
;
328 pwstate
->state
.bstate
= st
;
329 pwstate
->state
.time_begin
= t
;
330 pwstate
->state
.private = g_malloc(llev_state_infos
[st
].size_priv
);
332 item
->data_val
= pwstate
;
333 item
->delete_data_val
= (void (*)(void*))delete_data_val
;
338 static void *item_private(struct sstack_item
*item
)
340 struct process_with_state
*pwstate
= item
->data_val
;
341 return pwstate
->state
.private;
344 static void commit_item(struct process
*p
, struct sstack_item
*item
)
346 sstack_add_item(p
->stack
, item
);
349 static void old_process_push_llev_state(struct process
*p
, struct process_state
*pstate
)
351 if(++p
->stack_current
>= PROCESS_STATE_STACK_SIZE
) {
352 fprintf(stderr
, "depanalysis: internal process stack overflow\n");
356 p
->llev_state_stack
[p
->stack_current
] = pstate
;
359 static void live_complete_process_push_llev_state(struct process
*p
, enum llev_state st
, LttTime t
)
361 struct process_state
*pstate
= g_malloc(sizeof(struct process_state
));
364 pstate
->time_begin
= t
;
365 pstate
->private = g_malloc(llev_state_infos
[st
].size_priv
);
367 old_process_push_llev_state(p
, pstate
);
370 static void prepare_pop_item_commit_nocheck(struct process
*p
, enum llev_state st
, LttTime t
)
372 struct process_with_state
*pwstate
;
373 struct sstack_item
*item
= sstack_item_new_pop();
377 if(p
->stack
->pushes
->len
> 0)
378 push_idx
= g_array_index(p
->stack
->pushes
, int, p
->stack
->pushes
->len
-1);
383 pwstate
= g_array_index(p
->stack
->array
, struct sstack_item
*, push_idx
)->data_val
;
384 pwstate
->process
= p
;
385 pwstate
->state
.time_end
= t
;
386 item
->data_val
= pwstate
;
387 /* don't set delete_data_val because we use the same pwstate as push, and we don't want to free it twice */
391 pwstate
= g_malloc(sizeof(struct process_with_state
));
392 pwstate
->process
= p
;
393 item
->data_val
= pwstate
;
394 pwstate
->state
.time_end
= t
;
395 pwstate
->state
.bstate
= st
;
398 sstack_add_item(p
->stack
, item
);
402 static void prepare_pop_item_commit(struct process
*p
, enum llev_state st
, LttTime t
)
404 struct process_with_state
*pwstate
;
405 struct sstack_item
*item
= sstack_item_new_pop();
409 if(p
->stack
->pushes
->len
> 0)
410 push_idx
= g_array_index(p
->stack
->pushes
, int, p
->stack
->pushes
->len
-1);
415 /* FIXME: ugly workaround for kernel bug that generates two kernel_arch_syscall_exit on fork.
416 * The bug only occurs upon creation of new processes. But these processes always have
417 * a LLEV_RUNNING at index 0. */
418 if(push_idx
>= p
->stack
->array
->len
)
421 pwstate
= g_array_index(p
->stack
->array
, struct sstack_item
*, push_idx
)->data_val
;
423 if(pwstate
->state
.bstate
!= st
) {
424 /* FIXME: ugly workaround for kernel bug that generates two kernel_arch_syscall_exit on fork */
425 if(st
!= LLEV_SYSCALL
) {
426 printf("bad pop! at ");
429 print_stack(p
->stack
);
433 /* case where we have a double syscall_exit */
439 prepare_pop_item_commit_nocheck(p
, st
, t
);
443 static int try_pop_blocked_llev_preempted(struct process
*p
, LttTime t
)
446 struct process_with_state
*pwstate
;
448 if(p
->stack
->pushes
->len
> 0)
449 push_idx
= g_array_index(p
->stack
->pushes
, int, p
->stack
->pushes
->len
-1);
454 pwstate
= g_array_index(p
->stack
->array
, struct sstack_item
*, push_idx
)->data_val
;
456 if(!(pwstate
->state
.bstate
== LLEV_PREEMPTED
&& ((struct llev_state_info_preempted
*)pwstate
->state
.private)->prev_state
> 0)) {
457 printf("double try wake up\n");
462 prepare_pop_item_commit_nocheck(p
, LLEV_PREEMPTED
, t
);
466 static void old_process_pop_llev_state(struct process
*p
, struct process_state
*pstate
)
468 /* Ensure we are really popping the current state */
469 /* FIXME: pstate->bstate is uninitialized? */
470 // Commenting because it does not work. The way things work now, this check cannot work.
471 //if(p->llev_state_stack[p->stack_current]->bstate != LLEV_UNKNOWN && p->llev_state_stack[p->stack_current]->bstate != pstate->bstate) {
472 // printf("ERROR! bad pop!\n");
476 /* Actually change the that position */
477 if(p
->stack_current
>= 0)
480 /* If stack empty, we must put something in it */
481 if(p
->stack_current
== -1) {
482 if(pstate
->bstate
== LLEV_SYSCALL
) {
483 //process_push_llev_state(p, LLEV_RUNNING, pstate->time_end);
484 live_complete_process_push_llev_state(p
, LLEV_RUNNING
, pstate
->time_end
);
487 live_complete_process_push_llev_state(p
, LLEV_UNKNOWN
, pstate
->time_end
);
492 static GHashTable
*process_hash_table
;
493 static GHashTable
*syscall_table
;
494 static GHashTable
*irq_table
;
495 static GHashTable
*softirq_table
;
497 /* Insert the hooks before and after each trace and tracefile, and for each
498 event. Print a global header. */
502 static GString
*a_string
;
504 static gboolean
write_traceset_header(void *hook_data
, void *call_data
)
506 LttvTracesetContext
*tc
= (LttvTracesetContext
*)call_data
;
508 g_info("Traceset header");
510 /* Print the trace set header */
511 fprintf(a_file
,"Trace set contains %d traces\n\n",
512 lttv_traceset_number(tc
->ts
));
517 GArray
*oldstyle_stack_to_garray(struct process_state
**oldstyle_stack
, int current
)
522 retval
= g_array_new(FALSE
, FALSE
, sizeof(struct process_state
*));
524 for(i
=0; i
<current
; i
++) {
525 g_array_append_val(retval
, oldstyle_stack
[i
]);
531 static void update_hlev_state(struct process
*p
, LttTime t
)
535 enum hlev_state new_hlev
;
537 for(i
=p
->stack_current
; i
>=0; i
--) {
539 st
= p
->llev_state_stack
[i
]->bstate
;
541 if(st
== LLEV_RUNNING
|| st
== LLEV_TRAP
|| st
== LLEV_SYSCALL
) {
542 new_hlev
= HLEV_RUNNING
;
545 else if(st
== LLEV_IRQ
) {
546 new_hlev
= HLEV_INTERRUPTED_IRQ
;
549 else if(st
== LLEV_SOFTIRQ
) {
550 new_hlev
= HLEV_INTERRUPTED_SOFTIRQ
;
553 else if(st
== LLEV_PREEMPTED
) {
554 int prev_state
= ((struct llev_state_info_preempted
*) old_process_state_private_data(p
))->prev_state
;
556 if(prev_state
== 0) {
557 new_hlev
= HLEV_INTERRUPTED_CPU
;
559 else if(prev_state
== -1) {
560 new_hlev
= HLEV_INTERRUPTED_POST_BLOCK
;
563 new_hlev
= HLEV_BLOCKED
;
567 else if(st
== LLEV_UNKNOWN
) {
568 new_hlev
= HLEV_UNKNOWN
;
576 /* If no state change, do nothing */
577 if(p
->hlev_state
!= NULL
&& new_hlev
== p
->hlev_state
->bstate
) {
581 p
->hlev_state
->time_end
= t
;
582 /* This check is here because we initially put HLEV_UNKNOWN as hlev state, but in the case
583 * of processes newly created, it is immediately replaced by HLEV_BLOCKED. In order to avoid
584 * having a UNKNOWN state of duration 0 in the summary, we don't add it. This isn't as elegant
587 if(ltt_time_compare(p
->hlev_state
->time_begin
, p
->hlev_state
->time_end
) != 0)
588 g_array_append_val(p
->hlev_history
, p
->hlev_state
);
589 p
->hlev_state
= g_malloc(sizeof(struct process_state
));
590 p
->hlev_state
->bstate
= new_hlev
;
591 p
->hlev_state
->time_begin
= t
;
592 p
->hlev_state
->private = g_malloc(hlev_state_infos
[new_hlev
].size_priv
);
594 //printf("depanalysis: now at hlev state %s\n", hlev_state_infos[new_hlev].name);
596 /* Set private data */
597 switch(p
->hlev_state
->bstate
) {
603 struct hlev_state_info_blocked
*hlev_blocked_private
= p
->hlev_state
->private;
604 //struct process_state *ps = find_in_stack(LLEV_SYSCALL, p);
605 int syscall_pos
= find_pos_in_stack(LLEV_SYSCALL
, p
);
606 int trap_pos
= find_pos_in_stack(LLEV_TRAP
, p
);
609 hlev_blocked_private
->syscall_id
= 1;
610 hlev_blocked_private
->trap
= 0;
611 hlev_blocked_private
->substate
= HLEV_BLOCKED__UNDEFINED
;
612 hlev_blocked_private
->private = NULL
;
613 hlev_blocked_private
->llev_state_entry
= oldstyle_stack_to_garray(p
->llev_state_stack
, p
->stack_current
);
614 hlev_blocked_private
->llev_state_exit
= NULL
;
616 //g_assert(syscall_pos >= 0 || trap_pos >= 0);
618 if(trap_pos
> syscall_pos
) {
619 hlev_blocked_private
->trap
= 1;
622 /* initial value, may be changed below */
623 hlev_blocked_private
->substate
= HLEV_BLOCKED__UNDEFINED
;
625 if(syscall_pos
>= 0) {
626 struct process_state
*ps
= p
->llev_state_stack
[syscall_pos
];
627 struct llev_state_info_syscall
*llev_syscall_private
= (struct llev_state_info_syscall
*) ps
->private;
628 hlev_blocked_private
->syscall_id
= llev_syscall_private
->syscall_id
;
630 if(llev_syscall_private
->substate
== LLEV_SYSCALL__OPEN
) {
631 struct llev_state_info_syscall__open
*llev_syscall_open_private
;
632 struct hlev_state_info_blocked__open
*hlev_blocked_open_private
;
633 llev_syscall_open_private
= llev_syscall_private
->private;
634 hlev_blocked_private
->substate
= HLEV_BLOCKED__OPEN
;
635 hlev_blocked_open_private
= g_malloc(sizeof(struct hlev_state_info_blocked__open
));
636 hlev_blocked_private
->private = hlev_blocked_open_private
;
637 hlev_blocked_open_private
->filename
= llev_syscall_open_private
->filename
;
639 //printf("depanalysis: blocked in an open!\n");
641 else if(llev_syscall_private
->substate
== LLEV_SYSCALL__READ
) {
642 struct llev_state_info_syscall__read
*llev_syscall_read_private
;
643 struct hlev_state_info_blocked__read
*hlev_blocked_read_private
;
644 llev_syscall_read_private
= llev_syscall_private
->private;
645 hlev_blocked_private
->substate
= HLEV_BLOCKED__READ
;
646 hlev_blocked_read_private
= g_malloc(sizeof(struct hlev_state_info_blocked__read
));
647 hlev_blocked_private
->private = hlev_blocked_read_private
;
648 hlev_blocked_read_private
->filename
= llev_syscall_read_private
->filename
;
650 //printf("depanalysis: blocked in a read!\n");
652 else if(llev_syscall_private
->substate
== LLEV_SYSCALL__POLL
) {
653 struct llev_state_info_syscall__poll
*llev_syscall_poll_private
;
654 struct hlev_state_info_blocked__poll
*hlev_blocked_poll_private
;
655 llev_syscall_poll_private
= llev_syscall_private
->private;
656 hlev_blocked_private
->substate
= HLEV_BLOCKED__POLL
;
657 hlev_blocked_poll_private
= g_malloc(sizeof(struct hlev_state_info_blocked__poll
));
658 hlev_blocked_private
->private = hlev_blocked_poll_private
;
659 hlev_blocked_poll_private
->filename
= llev_syscall_poll_private
->filename
;
661 //printf("depanalysis: blocked in a read!\n");
665 hlev_blocked_private
->syscall_id
= -1;
670 case HLEV_INTERRUPTED_IRQ
: {
671 struct hlev_state_info_interrupted_irq
*sinfo
= p
->hlev_state
->private;
672 struct process_state
*ps
= find_in_stack(LLEV_IRQ
, p
);
676 sinfo
->irq
= ((struct llev_state_info_irq
*) ps
->private)->irq
;
679 case HLEV_INTERRUPTED_SOFTIRQ
: {
680 struct hlev_state_info_interrupted_softirq
*sinfo
= p
->hlev_state
->private;
681 struct process_state
*ps
= find_in_stack(LLEV_SOFTIRQ
, p
);
685 sinfo
->softirq
= ((struct llev_state_info_softirq
*) ps
->private)->softirq
;
693 static gint
compare_summary_tree_node_times(gconstpointer a
, gconstpointer b
)
695 struct summary_tree_node
*n1
= (struct summary_tree_node
*) a
;
696 struct summary_tree_node
*n2
= (struct summary_tree_node
*) b
;
698 return ltt_time_compare(n2
->duration
, n1
->duration
);
701 /* Print an item of the simple summary tree, and recurse, printing its children.
703 * If depth == -1, this is the root: we don't print a label, we only recurse into
707 static void print_summary_item(struct summary_tree_node
*node
, int depth
)
712 printf("\t%*s (", strlen(node
->name
)+2*depth
, node
->name
);
713 print_time(node
->duration
);
714 printf(") <%d>\n", node
->id_for_episodes
);
720 vals
= g_hash_table_get_values(node
->children
);
722 /* sort the values */
723 vals
= g_list_sort(vals
, compare_summary_tree_node_times
);
726 print_summary_item((struct summary_tree_node
*)vals
->data
, depth
+1);
730 /* we must free the list returned by g_hash_table_get_values() */
734 static inline void print_irq(int irq
)
736 printf("IRQ %d [%s]", irq
, g_quark_to_string(g_hash_table_lookup(irq_table
, &irq
)));
739 static inline void print_softirq(int softirq
)
741 printf("SoftIRQ %d [%s]", softirq
, g_quark_to_string(g_hash_table_lookup(softirq_table
, &softirq
)));
744 static inline void print_pid(int pid
)
746 struct process
*event_process_info
= g_hash_table_lookup(process_hash_table
, &pid
);
750 if(event_process_info
== NULL
)
753 pname
= g_quark_to_string(event_process_info
->name
);
754 printf("%d [%s]", pid
, pname
);
757 static void modify_path_with_private(GArray
*path
, struct process_state
*pstate
)
759 //GString tmps = g_string_new("");
762 // FIXME: fix this leak
763 switch(pstate
->bstate
) {
764 case HLEV_INTERRUPTED_IRQ
:
765 asprintf(&tmps
, "IRQ %d [%s]", ((struct hlev_state_info_interrupted_irq
*)pstate
->private)->irq
, g_quark_to_string(g_hash_table_lookup(irq_table
, &((struct hlev_state_info_interrupted_irq
*)pstate
->private)->irq
)));
766 g_array_append_val(path
, tmps
);
768 case HLEV_INTERRUPTED_SOFTIRQ
:
769 asprintf(&tmps
, "SoftIRQ %d [%s]", ((struct hlev_state_info_interrupted_softirq
*)pstate
->private)->softirq
, g_quark_to_string(g_hash_table_lookup(softirq_table
, &((struct hlev_state_info_interrupted_softirq
*)pstate
->private)->softirq
)));
770 g_array_append_val(path
, tmps
);
773 struct hlev_state_info_blocked
*hlev_blocked_private
= (struct hlev_state_info_blocked
*)pstate
->private;
775 if(hlev_blocked_private
->trap
) {
777 g_array_append_val(path
, ptr
);
780 if(hlev_blocked_private
->syscall_id
== -1) {
781 char *ptr
= "Userspace";
782 g_array_append_val(path
, ptr
);
785 asprintf(&tmps
, "Syscall %d [%s]", hlev_blocked_private
->syscall_id
, g_quark_to_string(g_hash_table_lookup(syscall_table
, &hlev_blocked_private
->syscall_id
)));
786 g_array_append_val(path
, tmps
);
789 if(((struct hlev_state_info_blocked
*)pstate
->private)->substate
== HLEV_BLOCKED__OPEN
) {
790 char *str
= g_quark_to_string(((struct hlev_state_info_blocked__open
*)((struct hlev_state_info_blocked
*)pstate
->private)->private)->filename
);
791 g_array_append_val(path
, str
);
793 else if(((struct hlev_state_info_blocked
*)pstate
->private)->substate
== HLEV_BLOCKED__READ
) {
795 asprintf(&str
, "%s", g_quark_to_string(((struct hlev_state_info_blocked__read
*)((struct hlev_state_info_blocked
*)pstate
->private)->private)->filename
));
796 g_array_append_val(path
, str
);
797 /* FIXME: this must be freed at some point */
800 else if(((struct hlev_state_info_blocked
*)pstate
->private)->substate
== HLEV_BLOCKED__POLL
) {
802 asprintf(&str
, "%s", g_quark_to_string(((struct hlev_state_info_blocked__poll
*)((struct hlev_state_info_blocked
*)pstate
->private)->private)->filename
));
803 g_array_append_val(path
, str
);
804 /* FIXME: this must be freed at some point */
812 void print_stack_garray_horizontal(GArray
*stack
)
814 /* FIXME: this function doesn't work if we delete the states as we process them because we
815 * try to read those states here to print the low level stack.
819 for(i
=0; i
<stack
->len
; i
++) {
820 struct process_state
*pstate
= g_array_index(stack
, struct process_state
*, i
);
821 printf("%s", llev_state_infos
[pstate
->bstate
].name
);
823 if(pstate
->bstate
== LLEV_SYSCALL
) {
824 struct llev_state_info_syscall
*llev_syscall_private
= pstate
->private;
825 printf(" %d [%s]", llev_syscall_private
->syscall_id
, g_quark_to_string(g_hash_table_lookup(syscall_table
, &llev_syscall_private
->syscall_id
)));
833 static int dicho_search_state_ending_after(struct process
*p
, LttTime t
)
836 int over
= p
->hlev_history
->len
-1;
837 struct process_state
*pstate
;
843 /* If the last element is smaller or equal than the time we are searching for,
846 pstate
= g_array_index(p
->hlev_history
, struct process_state
*, over
);
847 if(ltt_time_compare(pstate
->time_end
, t
) <= 0) {
850 /* no need to check for the equal case */
852 pstate
= g_array_index(p
->hlev_history
, struct process_state
*, under
);
853 result
= ltt_time_compare(pstate
->time_end
, t
);
855 /* trivial match at the first element if it is greater or equal
856 * than the time we want
864 dicho
= (under
+over
)/2;
865 pstate
= g_array_index(p
->hlev_history
, struct process_state
*, dicho
);
866 result
= ltt_time_compare(pstate
->time_end
, t
);
871 else if(result
== 1) {
879 if(over
-under
== 1) {
880 /* we have converged */
887 /* FIXME: this shouldn't be based on pids in case of reuse
888 * FIXME: should add a list of processes used to avoid loops
891 static struct process_state
*find_state_ending_after(int pid
, LttTime t
)
897 p
= g_hash_table_lookup(process_hash_table
, &pid
);
901 result
= dicho_search_state_ending_after(p
, t
);
906 return g_array_index(p
->hlev_history
, struct process_state
*, result
);
909 static void print_delay_pid(int pid
, LttTime t1
, LttTime t2
, int offset
)
914 p
= g_hash_table_lookup(process_hash_table
, &pid
);
918 i
= dicho_search_state_ending_after(p
, t1
);
919 for(; i
<p
->hlev_history
->len
; i
++) {
920 struct process_state
*pstate
= g_array_index(p
->hlev_history
, struct process_state
*, i
);
921 if(ltt_time_compare(pstate
->time_end
, t2
) > 0)
924 if(pstate
->bstate
== HLEV_BLOCKED
) {
925 struct hlev_state_info_blocked
*state_private_blocked
;
926 state_private_blocked
= pstate
->private;
927 struct process_state
*state_unblocked
;
929 printf("%*s", 8*offset
, "");
930 printf("Blocked in ");
931 print_stack_garray_horizontal(state_private_blocked
->llev_state_entry
);
934 print_time(pstate
->time_begin
);
936 print_time(pstate
->time_end
);
938 printf(", dur: %f)\n", 1e-9*ltt_time_to_double(ltt_time_sub(pstate
->time_end
, pstate
->time_begin
)));
940 state_unblocked
= find_state_ending_after(state_private_blocked
->pid_exit
, state_private_blocked
->time_woken
);
941 if(state_unblocked
) {
942 if(state_unblocked
->bstate
== HLEV_INTERRUPTED_IRQ
) {
943 struct hlev_state_info_interrupted_irq
*priv
= state_unblocked
->private;
944 /* if in irq or softirq, we don't care what the waking process was doing because they are asynchroneous events */
945 printf("%*s", 8*offset
, "");
946 printf("Woken up by an IRQ: ");
947 print_irq(priv
->irq
);
950 else if(state_unblocked
->bstate
== HLEV_INTERRUPTED_SOFTIRQ
) {
951 struct hlev_state_info_interrupted_softirq
*priv
= state_unblocked
->private;
952 printf("%*s", 8*offset
, "");
953 printf("Woken up by a SoftIRQ: ");
954 print_softirq(priv
->softirq
);
961 if(ltt_time_compare(t1prime
, pstate
->time_begin
) < 0)
962 t1prime
= pstate
->time_begin
;
963 if(ltt_time_compare(t2prime
, pstate
->time_end
) > 0)
964 t2prime
= pstate
->time_end
;
966 print_delay_pid(state_private_blocked
->pid_exit
, t1prime
, t2prime
, offset
+1);
967 printf("%*s", 8*offset
, "");
968 printf("Woken up in context of ");
969 print_pid(state_private_blocked
->pid_exit
);
970 if(state_private_blocked
->llev_state_exit
) {
971 print_stack_garray_horizontal(state_private_blocked
->llev_state_exit
);
975 printf(" in high-level state %s", hlev_state_infos
[state_unblocked
->bstate
].name
);
980 printf("%*s", 8*offset
, "");
981 printf("Weird... cannot find in what state the waker (%d) was\n", state_private_blocked
->pid_exit
);
985 //print_delay_pid(state_private_blocked->pid_exit, pstate->time_start, pstate->time_end);
986 //printf("\t\t Woken up in context of %d: ", state_private_blocked->pid_exit);
987 //if(state_private_blocked->llev_state_exit) {
988 // print_stack_garray_horizontal(state_private_blocked->llev_state_exit);
989 // printf("here3 (%d)\n", state_private_blocked->llev_state_exit->len);
992 // printf("the private_blocked %p had a null exit stack\n", state_private_blocked);
998 static void print_range_critical_path(int process
, LttTime t1
, LttTime t2
)
1000 printf("Critical path for requested range:\n");
1001 printf("Final process is %d\n", process
);
1002 print_delay_pid(process
, t1
, t2
, 2);
1005 static void print_process_critical_path_summary()
1007 struct process
*pinfo
;
1011 pinfos
= g_hash_table_get_values(process_hash_table
);
1012 if(pinfos
== NULL
) {
1013 fprintf(stderr
, "error: no process found\n");
1017 printf("Process Critical Path Summary:\n");
1020 struct summary_tree_node base_node
= { children
: NULL
};
1022 struct process_state
*hlev_state_cur
;
1024 pinfo
= (struct process
*)pinfos
->data
;
1025 printf("\tProcess %d [%s]\n", pinfo
->pid
, g_quark_to_string(pinfo
->name
));
1027 if(pinfo
->hlev_history
->len
< 1)
1030 print_delay_pid(pinfo
->pid
, g_array_index(pinfo
->hlev_history
, struct process_state
*, 0)->time_begin
, g_array_index(pinfo
->hlev_history
, struct process_state
*, pinfo
->hlev_history
->len
- 1)->time_end
, 2);
1035 pinfos
= pinfos
->next
;
1041 gint
compare_states_length(gconstpointer a
, gconstpointer b
)
1043 struct process_state
**s1
= (struct process_state
**)a
;
1044 struct process_state
**s2
= (struct process_state
**)b
;
1047 val
= ltt_time_compare(ltt_time_sub((*s2
)->time_end
, (*s2
)->time_begin
), ltt_time_sub((*s1
)->time_end
, (*s1
)->time_begin
));
1051 static void print_simple_summary()
1053 struct process
*pinfo
;
1055 GList
*pinfos_first
;
1057 int id_for_episodes
= 0;
1059 /* we save all the nodes here to print the episodes table quickly */
1060 GArray
*all_nodes
= g_array_new(FALSE
, FALSE
, sizeof(struct summary_tree_node
*));
1062 pinfos_first
= g_hash_table_get_values(process_hash_table
);
1063 if(pinfos_first
== NULL
) {
1064 fprintf(stderr
, "error: no processes found\n");
1067 pinfos
= pinfos_first
;
1069 printf("Simple summary:\n");
1071 /* For each process */
1073 struct summary_tree_node base_node
= { children
: NULL
, name
: "Root" };
1075 struct process_state
*hlev_state_cur
;
1077 pinfo
= (struct process
*)pinfos
->data
;
1078 printf("\tProcess %d [%s]\n", pinfo
->pid
, g_quark_to_string(pinfo
->name
));
1080 /* For each state in the process history */
1081 for(i
=0; i
<pinfo
->hlev_history
->len
; i
++) {
1082 struct process_state
*pstate
= g_array_index(pinfo
->hlev_history
, struct process_state
*, i
);
1083 struct summary_tree_node
*node_cur
= &base_node
;
1084 GArray
*tree_path_garray
;
1086 /* Modify the path based on private data */
1087 tree_path_garray
= g_array_new(FALSE
, FALSE
, sizeof(char *));
1090 char **tree_path_cur2
= hlev_state_infos
[pstate
->bstate
].tree_path
;
1091 while(*tree_path_cur2
) {
1095 g_array_append_vals(tree_path_garray
, hlev_state_infos
[pstate
->bstate
].tree_path
, count
);
1097 modify_path_with_private(tree_path_garray
, pstate
);
1099 /* Walk the path, adding the nodes to the summary */
1100 for(j
=0; j
<tree_path_garray
->len
; j
++) {
1101 struct summary_tree_node
*newnode
;
1102 GQuark componentquark
;
1104 /* Have a path component we must follow */
1105 if(!node_cur
->children
) {
1106 /* must create the hash table for the children */
1107 node_cur
->children
= g_hash_table_new(g_int_hash
, g_int_equal
);
1110 /* try to get the node for the next component */
1111 componentquark
= g_quark_from_string(g_array_index(tree_path_garray
, char *, j
));
1112 newnode
= g_hash_table_lookup(node_cur
->children
, &componentquark
);
1113 if(newnode
== NULL
) {
1114 newnode
= g_malloc(sizeof(struct summary_tree_node
));
1115 newnode
->children
= NULL
;
1116 newnode
->name
= g_array_index(tree_path_garray
, char *, j
);
1117 newnode
->duration
= ltt_time_zero
;
1118 newnode
->id_for_episodes
= id_for_episodes
++;
1119 newnode
->episodes
= g_array_new(FALSE
, FALSE
, sizeof(struct process_state
*));
1120 g_hash_table_insert(node_cur
->children
, &componentquark
, newnode
);
1122 g_array_append_val(all_nodes
, newnode
);
1126 node_cur
->duration
= ltt_time_add(node_cur
->duration
, ltt_time_sub(pstate
->time_end
, pstate
->time_begin
));
1127 g_array_append_val(node_cur
->episodes
, pstate
);
1131 /* print the summary */
1132 print_summary_item(&base_node
, -1);
1137 pinfos
= pinfos
->next
;
1144 printf("Episode list\n");
1145 pinfos
= pinfos_first
;
1147 /* For all the nodes of the Simple summary tree */
1148 for(i
=0; i
<all_nodes
->len
; i
++) {
1149 struct summary_tree_node
*node
= (struct summary_tree_node
*)g_array_index(all_nodes
, struct summary_tree_node
*, i
);
1151 /* Sort the episodes from longest to shortest */
1152 g_array_sort(node
->episodes
, compare_states_length
);
1154 printf("\tNode id: <%d>\n", node
->id_for_episodes
);
1155 /* For each episode of the node */
1156 for(j
=0; j
<node
->episodes
->len
; j
++) {
1157 struct process_state
*st
= g_array_index(node
->episodes
, struct process_state
*, j
);
1160 print_time(st
->time_begin
);
1162 print_time(st
->time_end
);
1163 printf(" (%f)\n", 1e-9*ltt_time_to_double(ltt_time_sub(st
->time_end
,st
->time_begin
)));
1168 static void print_simple_summary_pid_range(int pid
, LttTime t1
, LttTime t2
)
1170 struct process
*pinfo
;
1172 int id_for_episodes
= 0;
1174 /* we save all the nodes here to print the episodes table quickly */
1175 GArray
*all_nodes
= g_array_new(FALSE
, FALSE
, sizeof(struct summary_tree_node
*));
1177 pinfo
= g_hash_table_lookup(process_hash_table
, &pid
);
1180 struct summary_tree_node base_node
= { children
: NULL
, name
: "Root" };
1182 struct process_state
*hlev_state_cur
;
1184 printf("\tProcess %d [%s]\n", pinfo
->pid
, g_quark_to_string(pinfo
->name
));
1186 /* For each state in the process history */
1187 for(i
=0; i
<pinfo
->hlev_history
->len
; i
++) {
1188 struct process_state
*pstate
= g_array_index(pinfo
->hlev_history
, struct process_state
*, i
);
1189 struct summary_tree_node
*node_cur
= &base_node
;
1190 GArray
*tree_path_garray
;
1192 if(ltt_time_compare(pstate
->time_end
, t1
) < 0)
1195 if(ltt_time_compare(pstate
->time_end
, t2
) > 0)
1198 /* Modify the path based on private data */
1199 tree_path_garray
= g_array_new(FALSE
, FALSE
, sizeof(char *));
1202 char **tree_path_cur2
= hlev_state_infos
[pstate
->bstate
].tree_path
;
1203 while(*tree_path_cur2
) {
1207 g_array_append_vals(tree_path_garray
, hlev_state_infos
[pstate
->bstate
].tree_path
, count
);
1209 modify_path_with_private(tree_path_garray
, pstate
);
1211 /* Walk the path, adding the nodes to the summary */
1212 for(j
=0; j
<tree_path_garray
->len
; j
++) {
1213 struct summary_tree_node
*newnode
;
1214 GQuark componentquark
;
1216 /* Have a path component we must follow */
1217 if(!node_cur
->children
) {
1218 /* must create the hash table for the children */
1219 node_cur
->children
= g_hash_table_new(g_int_hash
, g_int_equal
);
1222 /* try to get the node for the next component */
1223 componentquark
= g_quark_from_string(g_array_index(tree_path_garray
, char *, j
));
1224 newnode
= g_hash_table_lookup(node_cur
->children
, &componentquark
);
1225 if(newnode
== NULL
) {
1226 newnode
= g_malloc(sizeof(struct summary_tree_node
));
1227 newnode
->children
= NULL
;
1228 newnode
->name
= g_array_index(tree_path_garray
, char *, j
);
1229 newnode
->duration
= ltt_time_zero
;
1230 newnode
->id_for_episodes
= id_for_episodes
++;
1231 newnode
->episodes
= g_array_new(FALSE
, FALSE
, sizeof(struct process_state
*));
1232 g_hash_table_insert(node_cur
->children
, &componentquark
, newnode
);
1234 g_array_append_val(all_nodes
, newnode
);
1238 node_cur
->duration
= ltt_time_add(node_cur
->duration
, ltt_time_sub(pstate
->time_end
, pstate
->time_begin
));
1239 g_array_append_val(node_cur
->episodes
, pstate
);
1243 /* print the summary */
1244 print_summary_item(&base_node
, -1);
1251 printf("Episode list\n");
1253 /* For all the nodes of the Simple summary tree */
1254 for(i
=0; i
<all_nodes
->len
; i
++) {
1255 struct summary_tree_node
*node
= (struct summary_tree_node
*)g_array_index(all_nodes
, struct summary_tree_node
*, i
);
1257 /* Sort the episodes from longest to shortest */
1258 g_array_sort(node
->episodes
, compare_states_length
);
1260 printf("\tNode id: <%d>\n", node
->id_for_episodes
);
1261 /* For each episode of the node */
1262 for(j
=0; j
<node
->episodes
->len
; j
++) {
1263 struct process_state
*st
= g_array_index(node
->episodes
, struct process_state
*, j
);
1266 print_time(st
->time_begin
);
1268 print_time(st
->time_end
);
1269 printf(" (%f)\n", 1e-9*ltt_time_to_double(ltt_time_sub(st
->time_end
,st
->time_begin
)));
1274 static void flush_process_sstacks(void)
1278 pinfos
= g_hash_table_get_values(process_hash_table
);
1280 struct process
*pinfo
= (struct process
*)pinfos
->data
;
1282 sstack_force_flush(pinfo
->stack
);
1284 pinfos
= pinfos
->next
;
1287 g_list_free(pinfos
);
1290 struct family_item
{
1295 void print_range_reports(int pid
, LttTime t1
, LttTime t2
)
1297 GArray
*family
= g_array_new(FALSE
, FALSE
, sizeof(struct family_item
));
1300 /* reconstruct the parental sequence */
1302 struct process
*pinfo
;
1303 struct family_item fi
;
1306 pinfo
= g_hash_table_lookup(process_hash_table
, &pid
);
1311 cur_beg
= g_array_index(pinfo
->hlev_history
, struct process_state
*, 0)->time_begin
;
1312 fi
.creation
= cur_beg
;
1313 g_array_append_val(family
, fi
);
1315 if(ltt_time_compare(cur_beg
, t1
) == -1) {
1316 /* current pid starts before the interesting time */
1319 if(pinfo
->parent
== -1) {
1320 printf("unable to go back, we don't know the parent of %d\n", fi
.pid
);
1323 /* else, we go on */
1324 pid
= pinfo
->parent
;
1328 printf("Simple summary for range:\n");
1329 for(i
=family
->len
-1; i
>=0; i
--) {
1330 LttTime iter_t1
, iter_t2
;
1331 int iter_pid
= g_array_index(family
, struct family_item
, i
).pid
;
1333 if(i
== family
->len
-1)
1336 iter_t1
= g_array_index(family
, struct family_item
, i
).creation
;
1341 iter_t2
= g_array_index(family
, struct family_item
, i
-1).creation
;
1343 printf("This section of summary concerns pid %d between ");
1344 print_time(iter_t1
);
1346 print_time(iter_t2
);
1348 print_simple_summary_pid_range(iter_pid
, iter_t1
, iter_t2
);
1350 print_range_critical_path(depanalysis_range_pid
, t1
, t2
);
1353 static gboolean
write_traceset_footer(void *hook_data
, void *call_data
)
1355 LttvTracesetContext
*tc
= (LttvTracesetContext
*)call_data
;
1357 g_info("TextDump traceset footer");
1359 fprintf(a_file
,"End trace set\n\n");
1361 // if(LTTV_IS_TRACESET_STATS(tc)) {
1362 // lttv_stats_sum_traceset((LttvTracesetStats *)tc, ltt_time_infinite);
1363 // print_stats(a_file, (LttvTracesetStats *)tc);
1366 /* After processing all the events, we need to flush the sstacks
1367 * because some unfinished states may remain in them. We want them
1368 * event though there are incomplete.
1370 flush_process_sstacks();
1372 /* print the reports */
1373 print_simple_summary();
1374 print_process_critical_path_summary();
1375 printf("depanalysis_use_time = %d\n", depanalysis_use_time
);
1376 if(depanalysis_use_time
== 3) {
1377 if(depanalysis_range_pid
== -1 && depanalysis_range_pid_searching
>= 0)
1378 depanalysis_range_pid
= depanalysis_range_pid_searching
;
1380 if(depanalysis_range_pid
>= 0) {
1381 print_range_reports(depanalysis_range_pid
, depanalysis_time1
, depanalysis_time2
);
1384 printf("range critical path: could not find the end of the range\n");
1391 static gboolean
write_trace_header(void *hook_data
, void *call_data
)
1393 LttvTraceContext
*tc
= (LttvTraceContext
*)call_data
;
1395 LttSystemDescription
*system
= ltt_trace_system_description(tc
->t
);
1397 fprintf(a_file
," Trace from %s in %s\n%s\n\n",
1398 ltt_trace_system_description_node_name(system
),
1399 ltt_trace_system_description_domain_name(system
),
1400 ltt_trace_system_description_description(system
));
1407 static int write_event_content(void *hook_data
, void *call_data
)
1411 // LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
1413 LttvTracefileContext
*tfc
= (LttvTracefileContext
*)call_data
;
1415 LttvTracefileState
*tfs
= (LttvTracefileState
*)call_data
;
1419 guint cpu
= tfs
->cpu
;
1420 LttvTraceState
*ts
= (LttvTraceState
*)tfc
->t_context
;
1421 LttvProcessState
*process
= ts
->running_process
[cpu
];
1423 e
= ltt_tracefile_get_event(tfc
->tf
);
1425 lttv_event_to_string(e
, a_string
, TRUE
, 1, tfs
);
1428 g_string_append_printf(a_string
, " %s ",
1429 g_quark_to_string(process
->state
->s
));
1432 g_string_append_printf(a_string
,"\n");
1434 fputs(a_string
->str
, a_file
);
1438 static int field_get_value_int(struct LttEvent
*e
, struct marker_info
*info
, GQuark f
)
1440 struct marker_field
*marker_field
;
1443 for_each_marker_field(marker_field
, info
) {
1444 if (marker_field
->name
== f
) {
1450 return ltt_event_get_long_unsigned(e
, marker_field
);
1453 static char *field_get_value_string(struct LttEvent
*e
, struct marker_info
*info
, GQuark f
)
1455 struct marker_field
*marker_field
;
1458 for_each_marker_field(marker_field
, info
) {
1459 if (marker_field
->name
== f
) {
1465 return ltt_event_get_string(e
, marker_field
);
1468 void process_delayed_stack_action(struct process
*pinfo
, struct sstack_item
*item
)
1470 //printf("processing delayed stack action on pid %d at ", pinfo->pid);
1471 //if(((struct process_with_state *) item->data_val)->state.time_begin.tv_nsec == 987799696)
1472 // printf("HERE!!!\n");
1473 //print_time(((struct process_with_state *) item->data_val)->state.time_begin);
1475 //printf("stack before:\n");
1476 //print_stack(pinfo->stack);
1478 if(item
->data_type
== SSTACK_TYPE_PUSH
) {
1479 struct process_with_state
*pwstate
= item
->data_val
;
1480 //printf("pushing\n");
1481 old_process_push_llev_state(pinfo
, &pwstate
->state
);
1482 update_hlev_state(pinfo
, pwstate
->state
.time_begin
);
1484 else if(item
->data_type
== SSTACK_TYPE_POP
) {
1485 struct process_with_state
*pwstate
= item
->data_val
;
1486 //printf("popping\n");
1487 old_process_pop_llev_state(pinfo
, &pwstate
->state
);
1488 update_hlev_state(pinfo
, pwstate
->state
.time_end
);
1490 else if(item
->data_type
== SSTACK_TYPE_EVENT
) {
1491 struct sstack_event
*se
= item
->data_val
;
1492 if(se
->event_type
== HLEV_EVENT_TRY_WAKEUP
) {
1493 /* FIXME: should change hlev event from BLOCKED to INTERRUPTED CPU when receiving TRY_WAKEUP */
1494 struct try_wakeup_event
*twe
= se
->private;
1496 /* FIXME: maybe do some more rigorous checking here */
1497 if(pinfo
->hlev_state
->bstate
== HLEV_BLOCKED
) {
1498 struct hlev_state_info_blocked
*hlev_blocked_private
= pinfo
->hlev_state
->private;
1500 hlev_blocked_private
->pid_exit
= twe
->pid
;
1501 hlev_blocked_private
->time_woken
= twe
->time
;
1502 hlev_blocked_private
->llev_state_exit
= oldstyle_stack_to_garray(twe
->waker
->llev_state_stack
, twe
->waker
->stack_current
);
1503 //printf("set a non null exit stack on %p, and stack size is %d\n", hlev_blocked_private, hlev_blocked_private->llev_state_exit->len);
1506 if(p->stack_current >= 0 && p->llev_state_stack[p->stack_current]->bstate == LLEV_PREEMPTED) {
1507 old_process_pop_llev_state(pinfo, p->llev_state_stack[p->stack_current]);
1508 update_hlev_state(pinfo
1509 old_process_push_llev_state
1516 //printf("stack after:\n");
1517 //print_stack(pinfo->stack);
1520 static struct process
*get_or_init_process_info(struct LttEvent
*e
, GQuark name
, int pid
, int *new)
1524 val
= g_hash_table_lookup(process_hash_table
, &pid
);
1526 struct process
*pinfo
;
1529 /* Initialize new pinfo for newly discovered process */
1530 pinfo
= g_malloc(sizeof(struct process
));
1532 pinfo
->parent
= -1; /* unknown parent */
1533 pinfo
->hlev_history
= g_array_new(FALSE
, FALSE
, sizeof(struct process_state
*));
1534 pinfo
->stack
= sstack_new();
1535 pinfo
->stack_current
=-1;
1536 pinfo
->stack
->process_func
= process_delayed_stack_action
;
1537 pinfo
->stack
->process_func_arg
= pinfo
;
1538 for(i
=0; i
<PROCESS_STATE_STACK_SIZE
; i
++) {
1539 pinfo
->llev_state_stack
[i
] = g_malloc(sizeof(struct process_state
));
1542 pinfo
->hlev_state
= g_malloc(sizeof(struct process_state
));
1543 pinfo
->hlev_state
->bstate
= HLEV_UNKNOWN
;
1544 pinfo
->hlev_state
->time_begin
= e
->event_time
;
1545 pinfo
->hlev_state
->private = NULL
;
1550 g_hash_table_insert(process_hash_table
, &pinfo
->pid
, pinfo
);
1563 static int differentiate_swappers(int pid
, LttEvent
*e
)
1566 return pid
+e
->tracefile
->cpu_num
+2000000;
1571 static int process_event(void *hook_data
, void *call_data
)
1573 LttvTracefileContext
*tfc
= (LttvTracefileContext
*)call_data
;
1574 LttvTracefileState
*tfs
= (LttvTracefileState
*)call_data
;
1576 struct marker_info
*info
;
1578 /* Extract data from event structures and state */
1579 guint cpu
= tfs
->cpu
;
1580 LttvTraceState
*ts
= (LttvTraceState
*)tfc
->t_context
;
1581 LttvProcessState
*process
= ts
->running_process
[cpu
];
1582 LttTrace
*trace
= ts
->parent
.t
;
1583 struct process
*pinfo
;
1585 e
= ltt_tracefile_get_event(tfs
->parent
.tf
);
1587 info
= marker_get_info_from_id(tfc
->tf
->mdata
, e
->event_id
);
1589 //if(depanalysis_use_time && (ltt_time_compare(e->timestamp, arg_t1) == -1 || ltt_time_compare(e->timestamp, arg_t2) == 1)) {
1592 /* Set the pid for the dependency analysis at each event, until we are passed the range. */
1593 if(depanalysis_use_time
== 3) {
1594 if(ltt_time_compare(e
->event_time
, depanalysis_time2
) <= 0) {
1595 depanalysis_range_pid
= process
->pid
;
1598 /* Should stop processing and print results */
1602 /* Code to limit the event count */
1603 if(depanalysis_event_limit
> 0) {
1604 depanalysis_event_limit
--;
1606 else if(depanalysis_event_limit
== 0) {
1607 write_traceset_footer(hook_data
, call_data
);
1608 printf("exit due to event limit reached\n");
1612 /* write event like textDump for now, for debugging purposes */
1613 //write_event_content(hook_data, call_data);
1615 if(tfc
->tf
->name
== LTT_CHANNEL_SYSCALL_STATE
&& info
->name
== LTT_EVENT_SYS_CALL_TABLE
) {
1617 int *pint
= g_malloc(sizeof(int));
1619 *pint
= field_get_value_int(e
, info
, LTT_FIELD_ID
);
1620 q
= g_quark_from_string(field_get_value_string(e
, info
, LTT_FIELD_SYMBOL
));
1621 g_hash_table_insert(syscall_table
, pint
, q
);
1623 else if(tfc
->tf
->name
== LTT_CHANNEL_IRQ_STATE
&& info
->name
== LTT_EVENT_LIST_INTERRUPT
) {
1625 int *pint
= g_malloc(sizeof(int));
1627 *pint
= field_get_value_int(e
, info
, LTT_FIELD_IRQ_ID
);
1628 q
= g_quark_from_string(field_get_value_string(e
, info
, LTT_FIELD_ACTION
));
1629 g_hash_table_insert(irq_table
, pint
, q
);
1631 else if(tfc
->tf
->name
== LTT_CHANNEL_SOFTIRQ_STATE
&& info
->name
== LTT_EVENT_SOFTIRQ_VEC
) {
1633 int *pint
= g_malloc(sizeof(int));
1635 *pint
= field_get_value_int(e
, info
, LTT_FIELD_ID
);
1636 q
= g_quark_from_string(field_get_value_string(e
, info
, LTT_FIELD_SYMBOL
));
1637 g_hash_table_insert(softirq_table
, pint
, q
);
1641 /* Only look at events after the statedump is finished.
1642 * Before that, the pids in the LttvProcessState are not reliable
1644 if(statedump_finished
== 0) {
1645 if(tfc
->tf
->name
== LTT_CHANNEL_GLOBAL_STATE
&& info
->name
== LTT_EVENT_STATEDUMP_END
)
1646 statedump_finished
= 1;
1652 pinfo
= get_or_init_process_info(e
, process
->name
, differentiate_swappers(process
->pid
, e
), NULL
);
1654 /* the state machine
1655 * Process the event in the context of each process
1658 if(tfc
->tf
->name
== LTT_CHANNEL_KERNEL
&& info
->name
== LTT_EVENT_IRQ_ENTRY
) {
1659 struct process
*event_process_info
= pinfo
;
1660 struct sstack_item
*item
;
1662 item
= prepare_push_item(event_process_info
, LLEV_IRQ
, e
->event_time
);
1663 ((struct llev_state_info_irq
*) item_private(item
))->irq
= field_get_value_int(e
, info
, LTT_FIELD_IRQ_ID
);
1664 commit_item(event_process_info
, item
);
1666 else if(tfc
->tf
->name
== LTT_CHANNEL_KERNEL
&& info
->name
== LTT_EVENT_IRQ_EXIT
) {
1667 struct process
*event_process_info
= pinfo
;
1669 prepare_pop_item_commit(event_process_info
, LLEV_IRQ
, e
->event_time
);
1671 else if(tfc
->tf
->name
== LTT_CHANNEL_KERNEL
&& info
->name
== LTT_EVENT_SCHED_SCHEDULE
) {
1672 int next_pid
= field_get_value_int(e
, info
, LTT_FIELD_NEXT_PID
);
1673 int prev_pid
= field_get_value_int(e
, info
, LTT_FIELD_PREV_PID
);
1675 struct process
*event_process_info
= get_or_init_process_info(e
, process
->name
, differentiate_swappers(next_pid
, e
), NULL
);
1676 prepare_pop_item_commit(event_process_info
, LLEV_PREEMPTED
, e
->event_time
);
1679 struct sstack_item
*item
;
1680 struct process
*event_process_info
= get_or_init_process_info(e
, process
->name
, differentiate_swappers(prev_pid
, e
), NULL
);
1682 item
= prepare_push_item(event_process_info
, LLEV_PREEMPTED
, e
->event_time
);
1683 ((struct llev_state_info_preempted
*) item_private(item
))->prev_state
= field_get_value_int(e
, info
, LTT_FIELD_PREV_STATE
);
1684 commit_item(event_process_info
, item
);
1687 else if(tfc
->tf
->name
== LTT_CHANNEL_KERNEL
&& info
->name
== LTT_EVENT_TRAP_ENTRY
) {
1688 struct process
*event_process_info
= pinfo
;
1689 struct sstack_item
*item
;
1691 item
= prepare_push_item(event_process_info
, LLEV_TRAP
, e
->event_time
);
1692 commit_item(event_process_info
, item
);
1694 else if(tfc
->tf
->name
== LTT_CHANNEL_KERNEL
&& info
->name
== LTT_EVENT_TRAP_EXIT
) {
1695 struct process
*event_process_info
= pinfo
;
1697 prepare_pop_item_commit(event_process_info
, LLEV_TRAP
, e
->event_time
);
1699 else if(tfc
->tf
->name
== LTT_CHANNEL_KERNEL
&& info
->name
== LTT_EVENT_SYSCALL_ENTRY
) {
1700 struct process
*event_process_info
= pinfo
;
1701 struct sstack_item
*item
;
1703 item
= prepare_push_item(event_process_info
, LLEV_SYSCALL
, e
->event_time
);
1704 ((struct llev_state_info_syscall
*) item_private(item
))->syscall_id
= field_get_value_int(e
, info
, LTT_FIELD_SYSCALL_ID
);
1705 ((struct llev_state_info_syscall
*) item_private(item
))->substate
= LLEV_SYSCALL__UNDEFINED
;
1706 commit_item(event_process_info
, item
);
1708 else if(tfc
->tf
->name
== LTT_CHANNEL_KERNEL
&& info
->name
== LTT_EVENT_SYSCALL_EXIT
) {
1709 struct process
*event_process_info
= pinfo
;
1711 prepare_pop_item_commit(event_process_info
, LLEV_SYSCALL
, e
->event_time
);
1713 else if(tfc
->tf
->name
== LTT_CHANNEL_KERNEL
&& info
->name
== LTT_EVENT_SOFT_IRQ_ENTRY
) {
1714 struct process
*event_process_info
= pinfo
;
1715 struct sstack_item
*item
;
1717 item
= prepare_push_item(event_process_info
, LLEV_SOFTIRQ
, e
->event_time
);
1718 ((struct llev_state_info_softirq
*) item_private(item
))->softirq
= field_get_value_int(e
, info
, LTT_FIELD_SOFT_IRQ_ID
);
1719 commit_item(event_process_info
, item
);
1721 else if(tfc
->tf
->name
== LTT_CHANNEL_KERNEL
&& info
->name
== LTT_EVENT_SOFT_IRQ_EXIT
) {
1722 struct process
*event_process_info
= pinfo
;
1724 prepare_pop_item_commit(event_process_info
, LLEV_SOFTIRQ
, e
->event_time
);
1726 else if(tfc
->tf
->name
== LTT_CHANNEL_KERNEL
&& info
->name
== LTT_EVENT_PROCESS_FORK
) {
1727 int pid
= differentiate_swappers(field_get_value_int(e
, info
, LTT_FIELD_CHILD_PID
), e
);
1728 struct process
*event_process_info
= get_or_init_process_info(e
, process
->name
, differentiate_swappers(field_get_value_int(e
, info
, LTT_FIELD_CHILD_PID
), e
), NULL
);
1729 struct sstack_item
*item
;
1731 event_process_info
->parent
= process
->pid
;
1733 //print_time(e->event_time);
1734 //printf(", fork in process %d (%s), creating child %d\n", differentiate_swappers(process->pid, e), g_quark_to_string(process->name), pid);
1736 item
= prepare_push_item(event_process_info
, LLEV_RUNNING
, e
->event_time
);
1737 commit_item(event_process_info
, item
);
1738 item
= prepare_push_item(event_process_info
, LLEV_SYSCALL
, e
->event_time
);
1739 /* FIXME: this sets fork() as syscall, it's pretty inelegant */
1740 ((struct llev_state_info_syscall
*) item_private(item
))->syscall_id
= 57;
1741 ((struct llev_state_info_syscall
*) item_private(item
))->substate
= LLEV_SYSCALL__UNDEFINED
;
1742 commit_item(event_process_info
, item
);
1744 item
= prepare_push_item(event_process_info
, LLEV_PREEMPTED
, e
->event_time
);
1745 /* Consider fork as BLOCKED */
1746 ((struct llev_state_info_preempted
*) item_private(item
))->prev_state
= 1;
1747 commit_item(event_process_info
, item
);
1749 //printf("process %d now has a stack of height %d\n", differentiate_swappers(process->pid, e), get_or_init_process_info(e, process->name, differentiate_swappers(process->pid, cpu), NULL)->stack_current-1);
1752 else if(tfc
->tf
->name
== LTT_CHANNEL_FS
&& info
->name
== LTT_EVENT_EXEC
) {
1753 struct process
*event_process_info
= pinfo
;
1755 guint cpu
= tfs
->cpu
;
1756 LttvProcessState
*process_state
= ts
->running_process
[cpu
];
1757 event_process_info
->name
= process_state
->name
;
1759 else if(tfc
->tf
->name
== LTT_CHANNEL_FS
&& info
->name
== LTT_EVENT_OPEN
) {
1760 struct process_state
*pstate
= process_find_state(pinfo
, LLEV_SYSCALL
);
1761 struct llev_state_info_syscall
*llev_syscall_private
;
1762 struct llev_state_info_syscall__open
*llev_syscall_open_private
;
1764 /* TODO: this is too easy */
1768 llev_syscall_private
= (struct llev_state_info_syscall
*)pstate
->private;
1770 //printf("depanalysis: found an open with state %d in pid %d\n", pstate->bstate, process->pid);
1771 if(pstate
->bstate
== LLEV_UNKNOWN
)
1774 g_assert(pstate
->bstate
== LLEV_SYSCALL
);
1775 g_assert(llev_syscall_private
->substate
== LLEV_SYSCALL__UNDEFINED
);
1777 llev_syscall_private
->substate
= LLEV_SYSCALL__OPEN
;
1778 //printf("setting substate LLEV_SYSCALL__OPEN on syscall_private %p\n", llev_syscall_private);
1779 llev_syscall_private
->private = g_malloc(sizeof(struct llev_state_info_syscall__open
));
1780 llev_syscall_open_private
= llev_syscall_private
->private;
1782 llev_syscall_open_private
->filename
= g_quark_from_string(field_get_value_string(e
, info
, LTT_FIELD_FILENAME
));
1785 else if(tfc
->tf
->name
== LTT_CHANNEL_FS
&& info
->name
== LTT_EVENT_READ
) {
1786 struct process_state
*pstate
= process_find_state(pinfo
, LLEV_SYSCALL
);
1787 struct llev_state_info_syscall
*llev_syscall_private
;
1788 struct llev_state_info_syscall__read
*llev_syscall_read_private
;
1792 /* TODO: this is too easy */
1796 llev_syscall_private
= (struct llev_state_info_syscall
*)pstate
->private;
1798 //printf("depanalysis: found an read with state %d in pid %d\n", pstate->bstate, process->pid);
1799 if(pstate
->bstate
== LLEV_UNKNOWN
)
1802 g_assert(pstate
->bstate
== LLEV_SYSCALL
);
1803 g_assert(llev_syscall_private
->substate
== LLEV_SYSCALL__UNDEFINED
);
1805 llev_syscall_private
->substate
= LLEV_SYSCALL__READ
;
1806 //printf("setting substate LLEV_SYSCALL__READ on syscall_private %p\n", llev_syscall_private);
1807 llev_syscall_private
->private = g_malloc(sizeof(struct llev_state_info_syscall__read
));
1808 llev_syscall_read_private
= llev_syscall_private
->private;
1810 fd
= field_get_value_int(e
, info
, LTT_FIELD_FD
);
1811 pfileq
= g_hash_table_lookup(process
->fds
, fd
);
1813 llev_syscall_read_private
->filename
= pfileq
;
1817 asprintf(&tmp
, "Unknown filename, fd %d", fd
);
1818 llev_syscall_read_private
->filename
= g_quark_from_string(tmp
);
1822 else if(tfc
->tf
->name
== LTT_CHANNEL_FS
&& info
->name
== LTT_EVENT_POLL_EVENT
) {
1823 struct process_state
*pstate
= process_find_state(pinfo
, LLEV_SYSCALL
);
1824 struct llev_state_info_syscall
*llev_syscall_private
;
1825 struct llev_state_info_syscall__poll
*llev_syscall_poll_private
;
1829 /* TODO: this is too easy */
1833 llev_syscall_private
= (struct llev_state_info_syscall
*)pstate
->private;
1835 //printf("depanalysis: found an poll with state %d in pid %d\n", pstate->bstate, process->pid);
1836 if(pstate
->bstate
== LLEV_UNKNOWN
)
1839 /* poll doesn't have a single event that gives the syscall args. instead, there can be an arbitrary
1840 * number of fs_pollfd or fd_poll_event events
1841 * We use the fd_poll_event event, which occurs for each fd that had activity causing a return of the poll()
1842 * For now we only use the first.
1843 * We should do something about this. FIXME
1845 if(llev_syscall_private
->substate
== LLEV_SYSCALL__POLL
)
1848 g_assert(pstate
->bstate
== LLEV_SYSCALL
);
1849 g_assert(llev_syscall_private
->substate
== LLEV_SYSCALL__UNDEFINED
);
1851 llev_syscall_private
->substate
= LLEV_SYSCALL__POLL
;
1852 //printf("setting substate LLEV_SYSCALL__POLL on syscall_private %p\n", llev_syscall_private);
1853 llev_syscall_private
->private = g_malloc(sizeof(struct llev_state_info_syscall__poll
));
1854 llev_syscall_poll_private
= llev_syscall_private
->private;
1856 fd
= field_get_value_int(e
, info
, LTT_FIELD_FD
);
1857 pfileq
= g_hash_table_lookup(process
->fds
, fd
);
1859 llev_syscall_poll_private
->filename
= pfileq
;
1863 asprintf(&tmp
, "Unknown filename, fd %d", fd
);
1864 llev_syscall_poll_private
->filename
= g_quark_from_string(tmp
);
1868 else if(tfc
->tf
->name
== LTT_CHANNEL_KERNEL
&& info
->name
== LTT_EVENT_SCHED_TRY_WAKEUP
) {
1869 struct sstack_event
*se
= g_malloc(sizeof(struct sstack_event
));
1870 struct try_wakeup_event
*twe
= g_malloc(sizeof(struct try_wakeup_event
));
1871 struct sstack_item
*item
= sstack_item_new_event();
1872 int target
= field_get_value_int(e
, info
, LTT_FIELD_PID
);
1873 struct process
*target_pinfo
;
1876 se
->event_type
= HLEV_EVENT_TRY_WAKEUP
;
1878 //printf("pushing try wake up event in context of %d\n", pinfo->pid);
1880 twe
->pid
= differentiate_swappers(process
->pid
, e
);
1881 twe
->time
= e
->event_time
;
1884 /* FIXME: the target could not yet have an entry in the hash table, we would then lose data */
1885 target_pinfo
= g_hash_table_lookup(process_hash_table
, &target
);
1889 item
->data_val
= se
;
1890 item
->delete_data_val
= (void (*)(void *))delete_data_val
;
1892 sstack_add_item(target_pinfo
->stack
, item
);
1894 /* Now pop the blocked schedule out of the target */
1895 result
= try_pop_blocked_llev_preempted(target_pinfo
, e
->event_time
);
1898 struct sstack_item
*item
;
1899 struct process
*event_process_info
= target_pinfo
;
1901 item
= prepare_push_item(event_process_info
, LLEV_PREEMPTED
, e
->event_time
);
1902 ((struct llev_state_info_preempted
*) item_private(item
))->prev_state
= -1; /* special value meaning post-block sched out */
1903 commit_item(event_process_info
, item
);
1913 void print_sstack_private(struct sstack_item
*item
)
1915 struct process_with_state
*pwstate
= item
->data_val
;
1917 if(pwstate
&& item
->data_type
== SSTACK_TYPE_PUSH
)
1918 printf("\tstate: %s", llev_state_infos
[pwstate
->state
.bstate
].name
);
1921 print_time(pwstate
->state
.time_begin
);
1923 print_time(pwstate
->state
.time_end
);
1928 static LttTime
ltt_time_from_string(const char *str
)
1932 char *decdot
= strchr(str
, '.');
1936 retval
.tv_nsec
= atol(decdot
+1);
1942 retval
.tv_sec
= atol(str
);
1947 static void arg_t1(void *hook_data
)
1950 depanalysis_use_time
|= 1;
1951 depanalysis_time1
= ltt_time_from_string(arg_t1_str
);
1954 static void arg_t2(void *hook_data
)
1956 depanalysis_use_time
|= 2;
1957 depanalysis_time2
= ltt_time_from_string(arg_t2_str
);
1960 static void arg_pid(void *hook_data
)
1964 static void arg_limit(void *hook_data
)
1972 print_sstack_item_data
= print_sstack_private
;
1974 LttvAttributeValue value
;
1976 LttvIAttribute
*attributes
= LTTV_IATTRIBUTE(lttv_global_attributes());
1980 lttv_option_add("dep-time-start", 0, "dependency analysis time of analysis start", "time",
1981 LTTV_OPT_STRING
, &arg_t1_str
, arg_t1
, NULL
);
1982 lttv_option_add("dep-time-end", 0, "dependency analysis time of analysis end", "time",
1983 LTTV_OPT_STRING
, &arg_t2_str
, arg_t2
, NULL
);
1984 lttv_option_add("dep-pid", 0, "dependency analysis pid", "pid",
1985 LTTV_OPT_INT
, &depanalysis_range_pid_searching
, arg_pid
, NULL
);
1986 lttv_option_add("limit-events", 0, "dependency limit event count", "count",
1987 LTTV_OPT_INT
, &depanalysis_event_limit
, arg_limit
, NULL
);
1989 process_hash_table
= g_hash_table_new(g_int_hash
, g_int_equal
);
1990 syscall_table
= g_hash_table_new(g_int_hash
, g_int_equal
);
1991 irq_table
= g_hash_table_new(g_int_hash
, g_int_equal
);
1992 softirq_table
= g_hash_table_new(g_int_hash
, g_int_equal
);
1994 a_string
= g_string_new("");
1996 result
= lttv_iattribute_find_by_path(attributes
, "hooks/event",
1997 LTTV_POINTER
, &value
);
1999 event_hook
= *(value
.v_pointer
);
2000 g_assert(event_hook
);
2001 lttv_hooks_add(event_hook
, process_event
, NULL
, LTTV_PRIO_DEFAULT
);
2003 // result = lttv_iattribute_find_by_path(attributes, "hooks/trace/before",
2004 // LTTV_POINTER, &value);
2005 // g_assert(result);
2006 // before_trace = *(value.v_pointer);
2007 // g_assert(before_trace);
2008 // lttv_hooks_add(before_trace, write_trace_header, NULL, LTTV_PRIO_DEFAULT);
2010 result
= lttv_iattribute_find_by_path(attributes
, "hooks/traceset/before",
2011 LTTV_POINTER
, &value
);
2013 before_traceset
= *(value
.v_pointer
);
2014 g_assert(before_traceset
);
2015 lttv_hooks_add(before_traceset
, write_traceset_header
, NULL
,
2018 result
= lttv_iattribute_find_by_path(attributes
, "hooks/traceset/after",
2019 LTTV_POINTER
, &value
);
2021 after_traceset
= *(value
.v_pointer
);
2022 g_assert(after_traceset
);
2023 lttv_hooks_add(after_traceset
, write_traceset_footer
, NULL
,
2027 static void destroy()
2029 lttv_option_remove("dep-time-start");
2030 lttv_option_remove("dep-time-end");
2031 lttv_option_remove("dep-pid");
2032 lttv_option_remove("limit-events");
2034 g_hash_table_destroy(process_hash_table
);
2035 g_hash_table_destroy(syscall_table
);
2036 g_hash_table_destroy(irq_table
);
2037 g_hash_table_destroy(softirq_table
);
2039 g_string_free(a_string
, TRUE
);
2041 lttv_hooks_remove_data(event_hook
, write_event_content
, NULL
);
2042 // lttv_hooks_remove_data(before_trace, write_trace_header, NULL);
2043 lttv_hooks_remove_data(before_traceset
, write_traceset_header
, NULL
);
2044 lttv_hooks_remove_data(after_traceset
, write_traceset_footer
, NULL
);
2047 LTTV_MODULE("depanalysis", "Dependency analysis test", \
2048 "Produce a dependency analysis of a trace", \
2049 init
, destroy
, "stats", "batchAnalysis", "option", "print")