1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Michel Dagenais
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,
24 #include <babeltrace/context.h>
25 #include <lttv/attribute.h>
26 /* The operating system state, kept during the trace analysis,
27 contains a subset of the real operating system state,
28 sufficient for the analysis, and possibly organized quite differently.
30 The state information is added to LttvTracesetContext, LttvTraceContext
31 and LttvTracefileContext objects, used by process_traceset, through
32 subtyping. The context objects already reflect the multiple tracefiles
33 (one per cpu) per trace and multiple traces per trace set. The state
34 objects defined here simply add fields to the relevant context objects.
36 There is no traceset specific state yet. It may eventually contains such
37 things as clock differences over time.
39 The trace state currently consists in a process table.
41 The tracefile level state relates to the associated cpu. It contains the
42 position of the current event in the tracefile (since the state depends on
43 which events have been processed) and a pointer to the current process,
44 in the process table, being run on that cpu.
46 For each process in the process table, various information such as exec
47 file name, pid, ppid and creation time are stored. Each process state also
48 contains an execution mode stack (e.g. irq within system call, called
51 typedef struct _LttvTraceset LttvTraceset
;
53 typedef struct _LttvTrace LttvTrace
;
55 typedef struct _LttvTracesetPosition LttvTracesetPosition
;
59 /* Priority of state hooks */
60 #define LTTV_PRIO_STATE 25
62 #define LTTV_STATE_SAVE_INTERVAL 50000
65 #define PREALLOC_NB_SYSCALLS 256
67 * As of 2.6.38, IRQ 239 has been seen (and we have seen higher than
70 #define PREALLOC_NB_IRQS 512
71 /* As of 2.6.38, 255 softirqs are used. */
72 #define PREALLOC_NB_SOFT_IRQS 512
73 #define PREALLOC_NB_TRAPS 256
79 LTT_CHANNEL_GLOBAL_STATE
,
80 LTT_CHANNEL_IRQ_STATE
,
81 LTT_CHANNEL_MODULE_STATE
,
82 LTT_CHANNEL_NETIF_STATE
,
83 LTT_CHANNEL_SOFTIRQ_STATE
,
84 LTT_CHANNEL_SWAP_STATE
,
85 LTT_CHANNEL_SYSCALL_STATE
,
86 LTT_CHANNEL_TASK_STATE
,
88 LTT_CHANNEL_KPROBE_STATE
,
92 LTT_CHANNEL_USERSPACE
,
98 LTT_EVENT_SYSCALL_ENTRY
,
99 LTT_EVENT_SYSCALL_EXIT
,
100 LTT_EVENT_TRAP_ENTRY
,
102 LTT_EVENT_PAGE_FAULT_ENTRY
,
103 LTT_EVENT_PAGE_FAULT_EXIT
,
104 LTT_EVENT_PAGE_FAULT_NOSEM_ENTRY
,
105 LTT_EVENT_PAGE_FAULT_NOSEM_EXIT
,
108 LTT_EVENT_SOFT_IRQ_RAISE
,
109 LTT_EVENT_SOFT_IRQ_ENTRY
,
110 LTT_EVENT_SOFT_IRQ_EXIT
,
111 LTT_EVENT_SCHED_SCHEDULE
,
112 LTT_EVENT_SCHED_TRY_WAKEUP
,
113 LTT_EVENT_PROCESS_FORK
,
114 LTT_EVENT_KTHREAD_CREATE
,
115 LTT_EVENT_PROCESS_EXIT
,
116 LTT_EVENT_PROCESS_FREE
,
118 LTT_EVENT_PROCESS_STATE
,
119 LTT_EVENT_STATEDUMP_END
,
120 //LTT_EVENT_FUNCTION_ENTRY,
121 //LTT_EVENT_FUNCTION_EXIT,
122 LTT_EVENT_REQUEST_ISSUE
,
123 LTT_EVENT_REQUEST_COMPLETE
,
124 LTT_EVENT_LIST_INTERRUPT
,
125 LTT_EVENT_SYS_CALL_TABLE
,
126 LTT_EVENT_SOFTIRQ_VEC
,
127 LTT_EVENT_KPROBE_TABLE
,
131 LTT_EVENT_POLL_EVENT
;
136 LTT_FIELD_SYSCALL_ID
,
139 LTT_FIELD_SOFT_IRQ_ID
,
142 LTT_FIELD_PREV_STATE
,
143 LTT_FIELD_PARENT_PID
,
167 typedef struct _LttvTraceState LttvTraceState
;
168 typedef struct _LttvTraceStateClass LttvTraceStateClass
;
170 typedef struct _LttvTracefileState LttvTracefileState
;
171 typedef struct _LttvTracefileStateClass LttvTracefileStateClass
;
173 void lttv_state_add_event_hooks(LttvTraceset
*traceset
);
174 gint
lttv_state_hook_add_event_hooks(void *hook_data
, void *call_data
);
176 void lttv_state_remove_event_hooks(LttvTraceset
*traceset
);
177 gint
lttv_state_hook_remove_event_hooks(void *hook_data
, void *call_data
);
179 gint
lttv_state_save_hook_add_event_hooks(void *hook_data
, void *call_data
);
180 gint
lttv_state_save_hook_remove_event_hooks(void *hook_data
, void *call_data
);
183 //TODO ybrosseau 2012-07-30: Change name of seek_time_closest to:
184 //void lttv_traceset_seek_time_closest_prior_state(LttvTraceset *traceset, LttTime t);
186 void lttv_state_traceset_seek_time_closest(LttvTraceset
*traceset
, LttTime t
);
187 void lttv_state_traceset_seek_time(LttvTraceset
*traceset
, LttTime t
);
188 void lttv_state_traceset_seek_position(LttvTraceset
*traceset
, LttvTracesetPosition
*position
);
190 /* The LttvProcessState structure defines the current state for each process.
191 A process can make system calls (in some rare cases nested) and receive
192 interrupts/faults. For instance, a process may issue a system call,
193 generate a page fault while reading an argument from user space, and
194 get caught by an interrupt. To represent these nested states, an
195 execution mode stack is maintained. The stack bottom is normal user mode
196 and the top of stack is the current execution mode.
198 The execution mode stack tells about the process status, execution mode and
199 submode (interrupt, system call or IRQ number). All these could be
200 defined as enumerations but may need extensions (e.g. new process state).
201 GQuark are thus used. They are as easy to manipulate as integers but have
202 a string associated, just like enumerations.
204 The execution mode is one of "user mode", "kernel thread", "system call",
205 "interrupt request", "fault". */
207 typedef GQuark LttvExecutionMode
;
209 extern LttvExecutionMode
210 LTTV_STATE_USER_MODE
,
211 LTTV_STATE_MAYBE_USER_MODE
,
213 LTTV_STATE_MAYBE_SYSCALL
,
215 LTTV_STATE_MAYBE_TRAP
, /* TODO */
218 LTTV_STATE_MODE_UNKNOWN
;
221 /* The submode number depends on the execution mode. For user mode or kernel
222 thread, which are the normal mode (execution mode stack bottom),
223 it is set to "none". For interrupt requests, faults and system calls,
224 it is set respectively to the interrupt name (e.g. "timer"), fault name
225 (e.g. "page fault"), and system call name (e.g. "select"). */
227 typedef GQuark LttvExecutionSubmode
;
229 extern LttvExecutionSubmode
230 LTTV_STATE_SUBMODE_NONE
,
231 LTTV_STATE_SUBMODE_UNKNOWN
;
233 /* The process status is one of "running", "wait-cpu" (runnable), or "wait-*"
234 where "*" describes the resource waited for (e.g. timer, process,
237 typedef GQuark LttvProcessStatus
;
239 extern LttvProcessStatus
241 LTTV_STATE_WAIT_FORK
,
249 typedef GQuark LttvProcessType
;
251 extern LttvProcessType
252 LTTV_STATE_USER_THREAD
,
253 LTTV_STATE_KERNEL_THREAD
;
255 typedef GQuark LttvCPUMode
;
264 typedef GQuark LttvIRQMode
;
270 typedef GQuark LttvBdevMode
;
274 LTTV_BDEV_BUSY_READING
,
275 LTTV_BDEV_BUSY_WRITING
;
277 typedef struct _LttvExecutionState
{
279 LttvExecutionSubmode n
;
282 LttTime cum_cpu_time
;
284 } LttvExecutionState
;
286 typedef struct _LttvProcessState
{
290 LttTime creation_time
;
291 LttTime insertion_time
;
294 GArray
*execution_stack
; /* Array of LttvExecutionState */
295 LttvExecutionState
*state
; /* Top of interrupt stack */
296 /* WARNING : each time the execution_stack size is modified, the state
297 * must be reget : g_array_set_size can have to move the array.
299 guint cpu
; /* CPU where process is scheduled (being either in
300 the active or inactive runqueue)*/
301 // guint last_tracefile_index; /* index in the trace for cpu tracefile */
302 /* opened file descriptors, address map?... */
303 LttvProcessType type
; /* kernel thread or user space ? */
304 guint free_events
; /* 0 : none, 1 : free or exit dead, 2 : should delete */
305 GHashTable
*fds
; /* hash table of int (file descriptor) -> GQuark (file name) */
308 #define ANY_CPU 0 /* For clarity sake : a call to lttv_state_find_process for
309 a PID != 0 will search on any cpu automatically. */
311 LttvProcessState
*lttv_state_find_process(LttvTraceState
*ts
, guint cpu
,
314 LttvProcessState
*lttv_state_find_process_or_create(LttvTraceState
*ts
,
315 guint cpu
, guint pid
, const LttTime
*timestamp
);
317 LttvProcessState
*lttv_state_create_process(LttvTraceState
*tcs
,
318 LttvProcessState
*parent
, guint cpu
, guint pid
,
319 guint tgid
, GQuark name
, const LttTime
*timestamp
);
321 //void lttv_state_write(LttvTraceState *trace_state, LttTime t, FILE *fp);
322 //void lttv_state_write_raw(LttvTraceState *trace_state, LttTime t, FILE *fp);
324 typedef struct _LttvCPUState
{
327 GArray
*softirq_stack
;
331 typedef struct _LttvIRQState
{
335 typedef struct _LttvSoftIRQState
{
336 guint pending
; /* number of times it is pending */
337 guint running
; /* number of times it is currently running (on different processors) */
340 typedef struct _LttvTrapState
{
341 guint running
; /* number of times it is currently running (on different processors) */
344 typedef struct _LttvBdevState
{
348 typedef struct _LttvNameTables
{
349 GQuark
*syscall_names
;
355 GQuark
*soft_irq_names
;
357 GHashTable
*kprobe_hash
;
360 struct _LttvTraceState
{
361 LttvTrace
*trace
; /* LttvTrace this state belongs to */
362 GHashTable
*processes
; /* LttvProcessState objects indexed by pid and
364 guint nb_event
, save_interval
;
365 /* Block/char devices, locks, memory pages... */
366 GQuark
*eventtype_names
;
367 LttvNameTables
*name_tables
;
368 LttTime
*max_time_state_recomputed_in_seek
;
369 GHashTable
*kprobe_hash
;
371 /* Array of per cpu running process */
372 LttvProcessState
**running_process
;
374 LttvCPUState
*cpu_states
; /* state of each cpu */
375 /* FIXME should be a g_array to deal with resize and copy. */
376 LttvIRQState
*irq_states
; /* state of each irq handler */
377 /* FIXME should be a g_array to deal with resize and copy. */
378 LttvSoftIRQState
*soft_irq_states
; /* state of each softirq */
379 /* FIXME should be a g_array to deal with resize and copy. */
380 LttvTrapState
*trap_states
; /* state of each trap */
381 GHashTable
*bdev_states
; /* state of the block devices */
384 void lttv_trace_state_init(LttvTraceState
*self
, LttvTrace
*trace
);
385 void lttv_trace_state_fini(LttvTraceState
*self
);
387 void lttv_state_save(LttvTraceState
*self
, LttvAttribute
*container
);
388 void lttv_state_restore(LttvTraceState
*self
, LttvAttribute
*container
);
389 LttvTracesetPosition
*lttv_trace_state_get_position(LttvAttribute
*container
);
390 void lttv_state_saved_free(LttvTraceState
*self
, LttvAttribute
*container
);
392 //TODO ybrosseau Need to export that cleanly
393 //int lttv_state_pop_state_cleanup(LttvProcessState *process,
394 // LttvEvent *event);
396 #define HDR_PROCESS 0
398 #define HDR_USER_STACK 2
399 //#define HDR_USERTRACE 3
400 #define HDR_PROCESS_STATE 4
402 #define HDR_TRACEFILE 6
403 #define HDR_TRACESET 7
408 /* Device number manipulation macros from kernel source */
410 #define MINORMASK ((1U << MINORBITS) - 1)
411 #define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS))
412 #define MINOR(dev) ((unsigned int) ((dev) & MINORMASK))
413 #define MKDEV(ma, mi) ((((unsigned int) (ma)) << MINORBITS) | (unsigned int) (mi))