1 /* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
5 * Linux Trace Toolkit Next Generation Kernel State Dump
7 * Copyright 2005 Jean-Hugues Deschenes <jean-hugues.deschenes@polymtl.ca>
8 * Copyright 2006-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11 * Eric Clement: Add listing of network IP interface
12 * 2006, 2007 Mathieu Desnoyers Fix kernel threads
16 #include <linux/init.h>
17 #include <linux/module.h>
18 #include <linux/netlink.h>
19 #include <linux/inet.h>
21 #include <linux/kthread.h>
22 #include <linux/proc_fs.h>
23 #include <linux/file.h>
24 #include <linux/interrupt.h>
25 #include <linux/irqnr.h>
26 #include <linux/cpu.h>
27 #include <linux/netdevice.h>
28 #include <linux/inetdevice.h>
29 #include <linux/sched.h>
31 #include <linux/fdtable.h>
32 #include <linux/swap.h>
33 #include <linux/wait.h>
34 #include <linux/mutex.h>
35 #include <linux/device.h>
37 #include <lttng-events.h>
38 #include <lttng-tracer.h>
39 #include <wrapper/irqdesc.h>
40 #include <wrapper/fdtable.h>
41 #include <wrapper/namespace.h>
42 #include <wrapper/irq.h>
43 #include <wrapper/tracepoint.h>
44 #include <wrapper/genhd.h>
45 #include <wrapper/file.h>
46 #include <wrapper/time.h>
48 #ifdef CONFIG_LTTNG_HAS_LIST_IRQ
49 #include <linux/irq.h>
52 /* Define the tracepoints, but do not build the probes */
53 #define CREATE_TRACE_POINTS
54 #define TRACE_INCLUDE_PATH instrumentation/events/lttng-module
55 #define TRACE_INCLUDE_FILE lttng-statedump
56 #define LTTNG_INSTRUMENTATION
57 #include <instrumentation/events/lttng-module/lttng-statedump.h>
59 DEFINE_TRACE(lttng_statedump_block_device
);
60 DEFINE_TRACE(lttng_statedump_end
);
61 DEFINE_TRACE(lttng_statedump_interrupt
);
62 DEFINE_TRACE(lttng_statedump_file_descriptor
);
63 DEFINE_TRACE(lttng_statedump_start
);
64 DEFINE_TRACE(lttng_statedump_process_state
);
65 DEFINE_TRACE(lttng_statedump_process_pid_ns
);
66 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,6,0))
67 DEFINE_TRACE(lttng_statedump_process_cgroup_ns
);
69 DEFINE_TRACE(lttng_statedump_process_ipc_ns
);
70 #ifndef LTTNG_MNT_NS_MISSING_HEADER
71 DEFINE_TRACE(lttng_statedump_process_mnt_ns
);
73 DEFINE_TRACE(lttng_statedump_process_net_ns
);
74 DEFINE_TRACE(lttng_statedump_process_user_ns
);
75 DEFINE_TRACE(lttng_statedump_process_uts_ns
);
76 DEFINE_TRACE(lttng_statedump_network_interface
);
77 #ifdef LTTNG_HAVE_STATEDUMP_CPU_TOPOLOGY
78 DEFINE_TRACE(lttng_statedump_cpu_topology
);
83 struct lttng_session
*session
;
84 struct task_struct
*p
;
85 struct files_struct
*files
;
89 * Protected by the trace lock.
91 static struct delayed_work cpu_work
[NR_CPUS
];
92 static DECLARE_WAIT_QUEUE_HEAD(statedump_wq
);
93 static atomic_t kernel_threads_to_run
;
95 enum lttng_thread_type
{
96 LTTNG_USER_THREAD
= 0,
97 LTTNG_KERNEL_THREAD
= 1,
100 enum lttng_execution_mode
{
106 LTTNG_MODE_UNKNOWN
= 5,
109 enum lttng_execution_submode
{
114 enum lttng_process_status
{
126 int lttng_enumerate_block_devices(struct lttng_session
*session
)
128 struct class *ptr_block_class
;
129 struct device_type
*ptr_disk_type
;
130 struct class_dev_iter iter
;
133 ptr_block_class
= wrapper_get_block_class();
134 if (!ptr_block_class
)
136 ptr_disk_type
= wrapper_get_disk_type();
137 if (!ptr_disk_type
) {
140 class_dev_iter_init(&iter
, ptr_block_class
, NULL
, ptr_disk_type
);
141 while ((dev
= class_dev_iter_next(&iter
))) {
142 struct disk_part_iter piter
;
143 struct gendisk
*disk
= dev_to_disk(dev
);
144 struct hd_struct
*part
;
147 * Don't show empty devices or things that have been
150 if (get_capacity(disk
) == 0 ||
151 (disk
->flags
& GENHD_FL_SUPPRESS_PARTITION_INFO
))
154 disk_part_iter_init(&piter
, disk
, DISK_PITER_INCL_PART0
);
155 while ((part
= disk_part_iter_next(&piter
))) {
156 char name_buf
[BDEVNAME_SIZE
];
159 p
= wrapper_disk_name(disk
, part
->partno
, name_buf
);
161 disk_part_iter_exit(&piter
);
162 class_dev_iter_exit(&iter
);
165 trace_lttng_statedump_block_device(session
,
166 part_devt(part
), name_buf
);
168 disk_part_iter_exit(&piter
);
170 class_dev_iter_exit(&iter
);
177 void lttng_enumerate_device(struct lttng_session
*session
,
178 struct net_device
*dev
)
180 struct in_device
*in_dev
;
181 struct in_ifaddr
*ifa
;
183 if (dev
->flags
& IFF_UP
) {
184 in_dev
= in_dev_get(dev
);
186 for (ifa
= in_dev
->ifa_list
; ifa
!= NULL
;
187 ifa
= ifa
->ifa_next
) {
188 trace_lttng_statedump_network_interface(
194 trace_lttng_statedump_network_interface(
200 int lttng_enumerate_network_ip_interface(struct lttng_session
*session
)
202 struct net_device
*dev
;
204 read_lock(&dev_base_lock
);
205 for_each_netdev(&init_net
, dev
)
206 lttng_enumerate_device(session
, dev
);
207 read_unlock(&dev_base_lock
);
211 #else /* CONFIG_INET */
213 int lttng_enumerate_network_ip_interface(struct lttng_session
*session
)
217 #endif /* CONFIG_INET */
220 int lttng_dump_one_fd(const void *p
, struct file
*file
, unsigned int fd
)
222 const struct lttng_fd_ctx
*ctx
= p
;
223 const char *s
= d_path(&file
->f_path
, ctx
->page
, PAGE_SIZE
);
224 unsigned int flags
= file
->f_flags
;
228 * We don't expose kernel internal flags, only userspace-visible
231 flags
&= ~FMODE_NONOTIFY
;
232 fdt
= files_fdtable(ctx
->files
);
234 * We need to check here again whether fd is within the fdt
235 * max_fds range, because we might be seeing a different
236 * files_fdtable() than iterate_fd(), assuming only RCU is
237 * protecting the read. In reality, iterate_fd() holds
238 * file_lock, which should ensure the fdt does not change while
239 * the lock is taken, but we are not aware whether this is
240 * guaranteed or not, so play safe.
242 if (fd
< fdt
->max_fds
&& lttng_close_on_exec(fd
, fdt
))
245 struct dentry
*dentry
= file
->f_path
.dentry
;
247 /* Make sure we give at least some info */
248 spin_lock(&dentry
->d_lock
);
249 trace_lttng_statedump_file_descriptor(ctx
->session
, ctx
->p
, fd
,
250 dentry
->d_name
.name
, flags
, file
->f_mode
);
251 spin_unlock(&dentry
->d_lock
);
254 trace_lttng_statedump_file_descriptor(ctx
->session
, ctx
->p
, fd
, s
,
255 flags
, file
->f_mode
);
261 void lttng_enumerate_task_fd(struct lttng_session
*session
,
262 struct task_struct
*p
, char *tmp
)
264 struct lttng_fd_ctx ctx
= { .page
= tmp
, .session
= session
, .p
= p
};
265 struct files_struct
*files
;
272 lttng_iterate_fd(files
, 0, lttng_dump_one_fd
, &ctx
);
278 int lttng_enumerate_file_descriptors(struct lttng_session
*session
)
280 struct task_struct
*p
;
283 tmp
= (char *) __get_free_page(GFP_KERNEL
);
287 /* Enumerate active file descriptors */
290 lttng_enumerate_task_fd(session
, p
, tmp
);
292 free_page((unsigned long) tmp
);
296 #ifdef LTTNG_HAVE_STATEDUMP_CPU_TOPOLOGY
298 int lttng_enumerate_cpu_topology(struct lttng_session
*session
)
301 const cpumask_t
*cpumask
= cpu_possible_mask
;
303 for (cpu
= cpumask_first(cpumask
); cpu
< nr_cpu_ids
;
304 cpu
= cpumask_next(cpu
, cpumask
)) {
305 trace_lttng_statedump_cpu_topology(session
, &cpu_data(cpu
));
312 int lttng_enumerate_cpu_topology(struct lttng_session
*session
)
320 * FIXME: we cannot take a mmap_sem while in a RCU read-side critical section
321 * (scheduling in atomic). Normally, the tasklist lock protects this kind of
322 * iteration, but it is not exported to modules.
325 void lttng_enumerate_task_vm_maps(struct lttng_session
*session
,
326 struct task_struct
*p
)
328 struct mm_struct
*mm
;
329 struct vm_area_struct
*map
;
332 /* get_task_mm does a task_lock... */
339 down_read(&mm
->mmap_sem
);
342 ino
= map
->vm_file
->lttng_f_dentry
->d_inode
->i_ino
;
345 trace_lttng_statedump_vm_map(session
, p
, map
, ino
);
348 up_read(&mm
->mmap_sem
);
354 int lttng_enumerate_vm_maps(struct lttng_session
*session
)
356 struct task_struct
*p
;
360 lttng_enumerate_task_vm_maps(session
, p
);
366 #ifdef CONFIG_LTTNG_HAS_LIST_IRQ
369 int lttng_list_interrupts(struct lttng_session
*session
)
372 unsigned long flags
= 0;
373 struct irq_desc
*desc
;
375 #define irq_to_desc wrapper_irq_to_desc
377 for_each_irq_desc(irq
, desc
) {
378 struct irqaction
*action
;
379 const char *irq_chip_name
=
380 irq_desc_get_chip(desc
)->name
? : "unnamed_irq_chip";
382 local_irq_save(flags
);
383 raw_spin_lock(&desc
->lock
);
384 for (action
= desc
->action
; action
; action
= action
->next
) {
385 trace_lttng_statedump_interrupt(session
,
386 irq
, irq_chip_name
, action
);
388 raw_spin_unlock(&desc
->lock
);
389 local_irq_restore(flags
);
396 int lttng_list_interrupts(struct lttng_session
*session
)
403 * Statedump the task's namespaces using the proc filesystem inode number as
404 * the unique identifier. The user and pid ns are nested and will be dumped
407 * Called with task lock held.
410 void lttng_statedump_process_ns(struct lttng_session
*session
,
411 struct task_struct
*p
,
412 enum lttng_thread_type type
,
413 enum lttng_execution_mode mode
,
414 enum lttng_execution_submode submode
,
415 enum lttng_process_status status
)
417 struct nsproxy
*proxy
;
418 struct pid_namespace
*pid_ns
;
419 struct user_namespace
*user_ns
;
422 * The pid and user namespaces are special, they are nested and
423 * accessed with specific functions instead of the nsproxy struct
424 * like the other namespaces.
426 pid_ns
= task_active_pid_ns(p
);
428 trace_lttng_statedump_process_state(session
,
429 p
, type
, mode
, submode
, status
, pid_ns
);
430 trace_lttng_statedump_process_pid_ns(session
, p
, pid_ns
);
431 pid_ns
= pid_ns
->parent
;
435 user_ns
= task_cred_xxx(p
, user_ns
);
437 trace_lttng_statedump_process_user_ns(session
, p
, user_ns
);
438 user_ns
= user_ns
->lttng_user_ns_parent
;
442 * Back and forth on locking strategy within Linux upstream for nsproxy.
443 * See Linux upstream commit 728dba3a39c66b3d8ac889ddbe38b5b1c264aec3
444 * "namespaces: Use task_lock and not rcu to protect nsproxy"
447 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0) || \
448 LTTNG_UBUNTU_KERNEL_RANGE(3,13,11,36, 3,14,0,0) || \
449 LTTNG_UBUNTU_KERNEL_RANGE(3,16,1,11, 3,17,0,0) || \
450 LTTNG_RHEL_KERNEL_RANGE(3,10,0,229,13,0, 3,11,0,0,0,0))
454 proxy
= task_nsproxy(p
);
457 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,6,0))
458 trace_lttng_statedump_process_cgroup_ns(session
, p
, proxy
->cgroup_ns
);
460 trace_lttng_statedump_process_ipc_ns(session
, p
, proxy
->ipc_ns
);
461 #ifndef LTTNG_MNT_NS_MISSING_HEADER
462 trace_lttng_statedump_process_mnt_ns(session
, p
, proxy
->mnt_ns
);
464 trace_lttng_statedump_process_net_ns(session
, p
, proxy
->net_ns
);
465 trace_lttng_statedump_process_uts_ns(session
, p
, proxy
->uts_ns
);
467 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0) || \
468 LTTNG_UBUNTU_KERNEL_RANGE(3,13,11,36, 3,14,0,0) || \
469 LTTNG_UBUNTU_KERNEL_RANGE(3,16,1,11, 3,17,0,0) || \
470 LTTNG_RHEL_KERNEL_RANGE(3,10,0,229,13,0, 3,11,0,0,0,0))
478 int lttng_enumerate_process_states(struct lttng_session
*session
)
480 struct task_struct
*g
, *p
;
483 for_each_process(g
) {
486 enum lttng_execution_mode mode
=
488 enum lttng_execution_submode submode
=
490 enum lttng_process_status status
;
491 enum lttng_thread_type type
;
494 if (p
->exit_state
== EXIT_ZOMBIE
)
495 status
= LTTNG_ZOMBIE
;
496 else if (p
->exit_state
== EXIT_DEAD
)
498 else if (p
->state
== TASK_RUNNING
) {
499 /* Is this a forked child that has not run yet? */
500 if (list_empty(&p
->rt
.run_list
))
501 status
= LTTNG_WAIT_FORK
;
504 * All tasks are considered as wait_cpu;
505 * the viewer will sort out if the task
506 * was really running at this time.
508 status
= LTTNG_WAIT_CPU
;
509 } else if (p
->state
&
510 (TASK_INTERRUPTIBLE
| TASK_UNINTERRUPTIBLE
)) {
511 /* Task is waiting for something to complete */
514 status
= LTTNG_UNNAMED
;
515 submode
= LTTNG_NONE
;
518 * Verification of t->mm is to filter out kernel
519 * threads; Viewer will further filter out if a
520 * user-space thread was in syscall mode or not.
523 type
= LTTNG_USER_THREAD
;
525 type
= LTTNG_KERNEL_THREAD
;
526 lttng_statedump_process_ns(session
,
527 p
, type
, mode
, submode
, status
);
529 } while_each_thread(g
, p
);
537 void lttng_statedump_work_func(struct work_struct
*work
)
539 if (atomic_dec_and_test(&kernel_threads_to_run
))
540 /* If we are the last thread, wake up do_lttng_statedump */
541 wake_up(&statedump_wq
);
545 int do_lttng_statedump(struct lttng_session
*session
)
549 trace_lttng_statedump_start(session
);
550 ret
= lttng_enumerate_process_states(session
);
553 ret
= lttng_enumerate_file_descriptors(session
);
558 * ret = lttng_enumerate_vm_maps(session);
562 ret
= lttng_list_interrupts(session
);
565 ret
= lttng_enumerate_network_ip_interface(session
);
568 ret
= lttng_enumerate_block_devices(session
);
573 printk(KERN_WARNING
"LTTng: block device enumeration is not supported by kernel\n");
578 ret
= lttng_enumerate_cpu_topology(session
);
582 /* TODO lttng_dump_idt_table(session); */
583 /* TODO lttng_dump_softirq_vec(session); */
584 /* TODO lttng_list_modules(session); */
585 /* TODO lttng_dump_swap_files(session); */
588 * Fire off a work queue on each CPU. Their sole purpose in life
589 * is to guarantee that each CPU has been in a state where is was in
590 * syscall mode (i.e. not in a trap, an IRQ or a soft IRQ).
593 atomic_set(&kernel_threads_to_run
, num_online_cpus());
594 for_each_online_cpu(cpu
) {
595 INIT_DELAYED_WORK(&cpu_work
[cpu
], lttng_statedump_work_func
);
596 schedule_delayed_work_on(cpu
, &cpu_work
[cpu
], 0);
598 /* Wait for all threads to run */
599 __wait_event(statedump_wq
, (atomic_read(&kernel_threads_to_run
) == 0));
601 /* Our work is done */
602 trace_lttng_statedump_end(session
);
607 * Called with session mutex held.
609 int lttng_statedump_start(struct lttng_session
*session
)
611 return do_lttng_statedump(session
);
613 EXPORT_SYMBOL_GPL(lttng_statedump_start
);
616 int __init
lttng_statedump_init(void)
619 * Allow module to load even if the fixup cannot be done. This
620 * will allow seemless transition when the underlying issue fix
621 * is merged into the Linux kernel, and when tracepoint.c
622 * "tracepoint_module_notify" is turned into a static function.
624 (void) wrapper_lttng_fixup_sig(THIS_MODULE
);
628 module_init(lttng_statedump_init
);
631 void __exit
lttng_statedump_exit(void)
635 module_exit(lttng_statedump_exit
);
637 MODULE_LICENSE("GPL and additional rights");
638 MODULE_AUTHOR("Jean-Hugues Deschenes");
639 MODULE_DESCRIPTION("LTTng statedump provider");
640 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION
) "."
641 __stringify(LTTNG_MODULES_MINOR_VERSION
) "."
642 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION
)
643 LTTNG_MODULES_EXTRAVERSION
);