4 * Linux Trace Toolkit Next Generation Kernel State Dump
6 * Copyright 2005 Jean-Hugues Deschenes <jean-hugues.deschenes@polymtl.ca>
7 * Copyright 2006-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; only
12 * version 2.1 of the License.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 * Eric Clement: Add listing of network IP interface
25 * 2006, 2007 Mathieu Desnoyers Fix kernel threads
29 #include <linux/init.h>
30 #include <linux/module.h>
31 #include <linux/netlink.h>
32 #include <linux/inet.h>
34 #include <linux/kthread.h>
35 #include <linux/proc_fs.h>
36 #include <linux/file.h>
37 #include <linux/interrupt.h>
38 #include <linux/irqnr.h>
39 #include <linux/cpu.h>
40 #include <linux/netdevice.h>
41 #include <linux/inetdevice.h>
42 #include <linux/sched.h>
44 #include <linux/fdtable.h>
45 #include <linux/swap.h>
46 #include <linux/wait.h>
47 #include <linux/mutex.h>
49 #include "lttng-events.h"
50 #include "wrapper/irqdesc.h"
51 #include "wrapper/spinlock.h"
52 #include "wrapper/fdtable.h"
53 #include "wrapper/nsproxy.h"
54 #include "wrapper/irq.h"
55 #include "wrapper/tracepoint.h"
57 #ifdef CONFIG_LTTNG_HAS_LIST_IRQ
58 #include <linux/irq.h>
61 /* Define the tracepoints, but do not build the probes */
62 #define CREATE_TRACE_POINTS
63 #define TRACE_INCLUDE_PATH ../instrumentation/events/lttng-module
64 #define TRACE_INCLUDE_FILE lttng-statedump
65 #include "instrumentation/events/lttng-module/lttng-statedump.h"
69 struct lttng_session
*session
;
70 struct task_struct
*p
;
74 * Protected by the trace lock.
76 static struct delayed_work cpu_work
[NR_CPUS
];
77 static DECLARE_WAIT_QUEUE_HEAD(statedump_wq
);
78 static atomic_t kernel_threads_to_run
;
80 enum lttng_thread_type
{
81 LTTNG_USER_THREAD
= 0,
82 LTTNG_KERNEL_THREAD
= 1,
85 enum lttng_execution_mode
{
91 LTTNG_MODE_UNKNOWN
= 5,
94 enum lttng_execution_submode
{
99 enum lttng_process_status
{
112 void lttng_enumerate_device(struct lttng_session
*session
,
113 struct net_device
*dev
)
115 struct in_device
*in_dev
;
116 struct in_ifaddr
*ifa
;
118 if (dev
->flags
& IFF_UP
) {
119 in_dev
= in_dev_get(dev
);
121 for (ifa
= in_dev
->ifa_list
; ifa
!= NULL
;
122 ifa
= ifa
->ifa_next
) {
123 trace_lttng_statedump_network_interface(
129 trace_lttng_statedump_network_interface(
135 int lttng_enumerate_network_ip_interface(struct lttng_session
*session
)
137 struct net_device
*dev
;
139 read_lock(&dev_base_lock
);
140 for_each_netdev(&init_net
, dev
)
141 lttng_enumerate_device(session
, dev
);
142 read_unlock(&dev_base_lock
);
146 #else /* CONFIG_INET */
148 int lttng_enumerate_network_ip_interface(struct lttng_session
*session
)
152 #endif /* CONFIG_INET */
155 int lttng_dump_one_fd(const void *p
, struct file
*file
, unsigned int fd
)
157 const struct lttng_fd_ctx
*ctx
= p
;
158 const char *s
= d_path(&file
->f_path
, ctx
->page
, PAGE_SIZE
);
161 struct dentry
*dentry
= file
->f_path
.dentry
;
163 /* Make sure we give at least some info */
164 spin_lock(&dentry
->d_lock
);
165 trace_lttng_statedump_file_descriptor(ctx
->session
, ctx
->p
, fd
,
166 dentry
->d_name
.name
);
167 spin_unlock(&dentry
->d_lock
);
170 trace_lttng_statedump_file_descriptor(ctx
->session
, ctx
->p
, fd
, s
);
176 void lttng_enumerate_task_fd(struct lttng_session
*session
,
177 struct task_struct
*p
, char *tmp
)
179 struct lttng_fd_ctx ctx
= { .page
= tmp
, .session
= session
, .p
= p
};
182 lttng_iterate_fd(p
->files
, 0, lttng_dump_one_fd
, &ctx
);
187 int lttng_enumerate_file_descriptors(struct lttng_session
*session
)
189 struct task_struct
*p
;
190 char *tmp
= (char *) __get_free_page(GFP_KERNEL
);
192 /* Enumerate active file descriptors */
195 lttng_enumerate_task_fd(session
, p
, tmp
);
197 free_page((unsigned long) tmp
);
203 * FIXME: we cannot take a mmap_sem while in a RCU read-side critical section
204 * (scheduling in atomic). Normally, the tasklist lock protects this kind of
205 * iteration, but it is not exported to modules.
208 void lttng_enumerate_task_vm_maps(struct lttng_session
*session
,
209 struct task_struct
*p
)
211 struct mm_struct
*mm
;
212 struct vm_area_struct
*map
;
215 /* get_task_mm does a task_lock... */
222 down_read(&mm
->mmap_sem
);
225 ino
= map
->vm_file
->f_dentry
->d_inode
->i_ino
;
228 trace_lttng_statedump_vm_map(session
, p
, map
, ino
);
231 up_read(&mm
->mmap_sem
);
237 int lttng_enumerate_vm_maps(struct lttng_session
*session
)
239 struct task_struct
*p
;
243 lttng_enumerate_task_vm_maps(session
, p
);
249 #ifdef CONFIG_LTTNG_HAS_LIST_IRQ
251 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39))
252 #define irq_desc_get_chip(desc) get_irq_desc_chip(desc)
256 void lttng_list_interrupts(struct lttng_session
*session
)
259 unsigned long flags
= 0;
260 struct irq_desc
*desc
;
262 #define irq_to_desc wrapper_irq_to_desc
264 for_each_irq_desc(irq
, desc
) {
265 struct irqaction
*action
;
266 const char *irq_chip_name
=
267 irq_desc_get_chip(desc
)->name
? : "unnamed_irq_chip";
269 local_irq_save(flags
);
270 wrapper_desc_spin_lock(&desc
->lock
);
271 for (action
= desc
->action
; action
; action
= action
->next
) {
272 trace_lttng_statedump_interrupt(session
,
273 irq
, irq_chip_name
, action
);
275 wrapper_desc_spin_unlock(&desc
->lock
);
276 local_irq_restore(flags
);
282 void lttng_list_interrupts(struct lttng_session
*session
)
288 void lttng_statedump_process_ns(struct lttng_session
*session
,
289 struct task_struct
*p
,
290 enum lttng_thread_type type
,
291 enum lttng_execution_mode mode
,
292 enum lttng_execution_submode submode
,
293 enum lttng_process_status status
)
295 struct nsproxy
*proxy
;
296 struct pid_namespace
*pid_ns
;
299 proxy
= task_nsproxy(p
);
301 pid_ns
= lttng_get_proxy_pid_ns(proxy
);
303 trace_lttng_statedump_process_state(session
,
304 p
, type
, mode
, submode
, status
, pid_ns
);
305 pid_ns
= pid_ns
->parent
;
308 trace_lttng_statedump_process_state(session
,
309 p
, type
, mode
, submode
, status
, NULL
);
315 int lttng_enumerate_process_states(struct lttng_session
*session
)
317 struct task_struct
*g
, *p
;
320 for_each_process(g
) {
323 enum lttng_execution_mode mode
=
325 enum lttng_execution_submode submode
=
327 enum lttng_process_status status
;
328 enum lttng_thread_type type
;
331 if (p
->exit_state
== EXIT_ZOMBIE
)
332 status
= LTTNG_ZOMBIE
;
333 else if (p
->exit_state
== EXIT_DEAD
)
335 else if (p
->state
== TASK_RUNNING
) {
336 /* Is this a forked child that has not run yet? */
337 if (list_empty(&p
->rt
.run_list
))
338 status
= LTTNG_WAIT_FORK
;
341 * All tasks are considered as wait_cpu;
342 * the viewer will sort out if the task
343 * was really running at this time.
345 status
= LTTNG_WAIT_CPU
;
346 } else if (p
->state
&
347 (TASK_INTERRUPTIBLE
| TASK_UNINTERRUPTIBLE
)) {
348 /* Task is waiting for something to complete */
351 status
= LTTNG_UNNAMED
;
352 submode
= LTTNG_NONE
;
355 * Verification of t->mm is to filter out kernel
356 * threads; Viewer will further filter out if a
357 * user-space thread was in syscall mode or not.
360 type
= LTTNG_USER_THREAD
;
362 type
= LTTNG_KERNEL_THREAD
;
363 lttng_statedump_process_ns(session
,
364 p
, type
, mode
, submode
, status
);
366 } while_each_thread(g
, p
);
374 void lttng_statedump_work_func(struct work_struct
*work
)
376 if (atomic_dec_and_test(&kernel_threads_to_run
))
377 /* If we are the last thread, wake up do_lttng_statedump */
378 wake_up(&statedump_wq
);
382 int do_lttng_statedump(struct lttng_session
*session
)
386 trace_lttng_statedump_start(session
);
387 lttng_enumerate_process_states(session
);
388 lttng_enumerate_file_descriptors(session
);
389 /* FIXME lttng_enumerate_vm_maps(session); */
390 lttng_list_interrupts(session
);
391 lttng_enumerate_network_ip_interface(session
);
393 /* TODO lttng_dump_idt_table(session); */
394 /* TODO lttng_dump_softirq_vec(session); */
395 /* TODO lttng_list_modules(session); */
396 /* TODO lttng_dump_swap_files(session); */
399 * Fire off a work queue on each CPU. Their sole purpose in life
400 * is to guarantee that each CPU has been in a state where is was in
401 * syscall mode (i.e. not in a trap, an IRQ or a soft IRQ).
404 atomic_set(&kernel_threads_to_run
, num_online_cpus());
405 for_each_online_cpu(cpu
) {
406 INIT_DELAYED_WORK(&cpu_work
[cpu
], lttng_statedump_work_func
);
407 schedule_delayed_work_on(cpu
, &cpu_work
[cpu
], 0);
409 /* Wait for all threads to run */
410 __wait_event(statedump_wq
, (atomic_read(&kernel_threads_to_run
) == 0));
412 /* Our work is done */
413 trace_lttng_statedump_end(session
);
418 * Called with session mutex held.
420 int lttng_statedump_start(struct lttng_session
*session
)
422 return do_lttng_statedump(session
);
424 EXPORT_SYMBOL_GPL(lttng_statedump_start
);
427 int __init
lttng_statedump_init(void)
430 * Allow module to load even if the fixup cannot be done. This
431 * will allow seemless transition when the underlying issue fix
432 * is merged into the Linux kernel, and when tracepoint.c
433 * "tracepoint_module_notify" is turned into a static function.
435 (void) wrapper_lttng_fixup_sig(THIS_MODULE
);
439 module_init(lttng_statedump_init
);
442 void __exit
lttng_statedump_exit(void)
446 module_exit(lttng_statedump_exit
);
448 MODULE_LICENSE("GPL and additional rights");
449 MODULE_AUTHOR("Jean-Hugues Deschenes");
450 MODULE_DESCRIPTION("Linux Trace Toolkit Next Generation Statedump");