1 /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
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/swap.h>
32 #include <linux/wait.h>
33 #include <linux/mutex.h>
34 #include <linux/device.h>
36 #include <lttng/events.h>
37 #include <lttng/tracer.h>
38 #include <wrapper/irqdesc.h>
39 #include <wrapper/fdtable.h>
40 #include <wrapper/namespace.h>
41 #include <wrapper/irq.h>
42 #include <wrapper/tracepoint.h>
43 #include <wrapper/genhd.h>
44 #include <wrapper/file.h>
45 #include <wrapper/fdtable.h>
47 #ifdef CONFIG_LTTNG_HAS_LIST_IRQ
48 #include <linux/irq.h>
51 /* Define the tracepoints, but do not build the probes */
52 #define CREATE_TRACE_POINTS
53 #define TRACE_INCLUDE_PATH instrumentation/events
54 #define TRACE_INCLUDE_FILE lttng-statedump
55 #define LTTNG_INSTRUMENTATION
56 #include <instrumentation/events/lttng-statedump.h>
58 LTTNG_DEFINE_TRACE(lttng_statedump_block_device
,
59 TP_PROTO(struct lttng_session
*session
,
60 dev_t dev
, const char *diskname
),
61 TP_ARGS(session
, dev
, diskname
));
63 LTTNG_DEFINE_TRACE(lttng_statedump_end
,
64 TP_PROTO(struct lttng_session
*session
),
67 LTTNG_DEFINE_TRACE(lttng_statedump_interrupt
,
68 TP_PROTO(struct lttng_session
*session
,
69 unsigned int irq
, const char *chip_name
,
70 struct irqaction
*action
),
71 TP_ARGS(session
, irq
, chip_name
, action
));
73 LTTNG_DEFINE_TRACE(lttng_statedump_file_descriptor
,
74 TP_PROTO(struct lttng_session
*session
,
75 struct files_struct
*files
,
76 int fd
, const char *filename
,
77 unsigned int flags
, fmode_t fmode
),
78 TP_ARGS(session
, files
, fd
, filename
, flags
, fmode
));
80 LTTNG_DEFINE_TRACE(lttng_statedump_start
,
81 TP_PROTO(struct lttng_session
*session
),
84 LTTNG_DEFINE_TRACE(lttng_statedump_process_state
,
85 TP_PROTO(struct lttng_session
*session
,
86 struct task_struct
*p
,
87 int type
, int mode
, int submode
, int status
,
88 struct files_struct
*files
),
89 TP_ARGS(session
, p
, type
, mode
, submode
, status
, files
));
91 LTTNG_DEFINE_TRACE(lttng_statedump_process_pid_ns
,
92 TP_PROTO(struct lttng_session
*session
,
93 struct task_struct
*p
,
94 struct pid_namespace
*pid_ns
),
95 TP_ARGS(session
, p
, pid_ns
));
97 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,6,0))
98 LTTNG_DEFINE_TRACE(lttng_statedump_process_cgroup_ns
,
99 TP_PROTO(struct lttng_session
*session
,
100 struct task_struct
*p
,
101 struct cgroup_namespace
*cgroup_ns
),
102 TP_ARGS(session
, p
, cgroup_ns
));
105 LTTNG_DEFINE_TRACE(lttng_statedump_process_ipc_ns
,
106 TP_PROTO(struct lttng_session
*session
,
107 struct task_struct
*p
,
108 struct ipc_namespace
*ipc_ns
),
109 TP_ARGS(session
, p
, ipc_ns
));
111 #ifndef LTTNG_MNT_NS_MISSING_HEADER
112 LTTNG_DEFINE_TRACE(lttng_statedump_process_mnt_ns
,
113 TP_PROTO(struct lttng_session
*session
,
114 struct task_struct
*p
,
115 struct mnt_namespace
*mnt_ns
),
116 TP_ARGS(session
, p
, mnt_ns
));
119 LTTNG_DEFINE_TRACE(lttng_statedump_process_net_ns
,
120 TP_PROTO(struct lttng_session
*session
,
121 struct task_struct
*p
,
123 TP_ARGS(session
, p
, net_ns
));
125 LTTNG_DEFINE_TRACE(lttng_statedump_process_user_ns
,
126 TP_PROTO(struct lttng_session
*session
,
127 struct task_struct
*p
,
128 struct user_namespace
*user_ns
),
129 TP_ARGS(session
, p
, user_ns
));
131 LTTNG_DEFINE_TRACE(lttng_statedump_process_uts_ns
,
132 TP_PROTO(struct lttng_session
*session
,
133 struct task_struct
*p
,
134 struct uts_namespace
*uts_ns
),
135 TP_ARGS(session
, p
, uts_ns
));
137 LTTNG_DEFINE_TRACE(lttng_statedump_process_time_ns
,
138 TP_PROTO(struct lttng_session
*session
,
139 struct task_struct
*p
,
140 struct time_namespace
*time_ns
),
141 TP_ARGS(session
, p
, time_ns
));
143 LTTNG_DEFINE_TRACE(lttng_statedump_network_interface
,
144 TP_PROTO(struct lttng_session
*session
,
145 struct net_device
*dev
, struct in_ifaddr
*ifa
),
146 TP_ARGS(session
, dev
, ifa
));
148 #ifdef LTTNG_HAVE_STATEDUMP_CPU_TOPOLOGY
149 LTTNG_DEFINE_TRACE(lttng_statedump_cpu_topology
,
150 TP_PROTO(struct lttng_session
*session
, struct cpuinfo_x86
*c
),
151 TP_ARGS(session
, c
));
154 struct lttng_fd_ctx
{
156 struct lttng_session
*session
;
157 struct files_struct
*files
;
161 * Protected by the trace lock.
163 static struct delayed_work cpu_work
[NR_CPUS
];
164 static DECLARE_WAIT_QUEUE_HEAD(statedump_wq
);
165 static atomic_t kernel_threads_to_run
;
167 enum lttng_thread_type
{
168 LTTNG_USER_THREAD
= 0,
169 LTTNG_KERNEL_THREAD
= 1,
172 enum lttng_execution_mode
{
178 LTTNG_MODE_UNKNOWN
= 5,
181 enum lttng_execution_submode
{
186 enum lttng_process_status
{
198 int lttng_enumerate_block_devices(struct lttng_session
*session
)
200 struct class *ptr_block_class
;
201 struct device_type
*ptr_disk_type
;
202 struct class_dev_iter iter
;
205 ptr_block_class
= wrapper_get_block_class();
206 if (!ptr_block_class
)
208 ptr_disk_type
= wrapper_get_disk_type();
209 if (!ptr_disk_type
) {
212 class_dev_iter_init(&iter
, ptr_block_class
, NULL
, ptr_disk_type
);
213 while ((dev
= class_dev_iter_next(&iter
))) {
214 struct disk_part_iter piter
;
215 struct gendisk
*disk
= dev_to_disk(dev
);
216 struct hd_struct
*part
;
219 * Don't show empty devices or things that have been
222 if (get_capacity(disk
) == 0 ||
223 (disk
->flags
& GENHD_FL_SUPPRESS_PARTITION_INFO
))
226 disk_part_iter_init(&piter
, disk
, DISK_PITER_INCL_PART0
);
227 while ((part
= disk_part_iter_next(&piter
))) {
228 struct block_device bdev
;
229 char name_buf
[BDEVNAME_SIZE
];
233 * Create a partial 'struct blockdevice' to use
234 * 'bdevname()' which is a simple wrapper over
235 * 'disk_name()' but has the honor to be EXPORT_SYMBOL.
240 p
= bdevname(&bdev
, name_buf
);
242 disk_part_iter_exit(&piter
);
243 class_dev_iter_exit(&iter
);
246 trace_lttng_statedump_block_device(session
,
247 part_devt(part
), name_buf
);
249 disk_part_iter_exit(&piter
);
251 class_dev_iter_exit(&iter
);
258 void lttng_enumerate_device(struct lttng_session
*session
,
259 struct net_device
*dev
)
261 struct in_device
*in_dev
;
262 struct in_ifaddr
*ifa
;
264 if (dev
->flags
& IFF_UP
) {
265 in_dev
= in_dev_get(dev
);
267 for (ifa
= in_dev
->ifa_list
; ifa
!= NULL
;
268 ifa
= ifa
->ifa_next
) {
269 trace_lttng_statedump_network_interface(
275 trace_lttng_statedump_network_interface(
281 int lttng_enumerate_network_ip_interface(struct lttng_session
*session
)
283 struct net_device
*dev
;
285 read_lock(&dev_base_lock
);
286 for_each_netdev(&init_net
, dev
)
287 lttng_enumerate_device(session
, dev
);
288 read_unlock(&dev_base_lock
);
292 #else /* CONFIG_INET */
294 int lttng_enumerate_network_ip_interface(struct lttng_session
*session
)
298 #endif /* CONFIG_INET */
301 int lttng_dump_one_fd(const void *p
, struct file
*file
, unsigned int fd
)
303 const struct lttng_fd_ctx
*ctx
= p
;
304 const char *s
= d_path(&file
->f_path
, ctx
->page
, PAGE_SIZE
);
305 unsigned int flags
= file
->f_flags
;
309 * We don't expose kernel internal flags, only userspace-visible
312 flags
&= ~FMODE_NONOTIFY
;
313 fdt
= files_fdtable(ctx
->files
);
315 * We need to check here again whether fd is within the fdt
316 * max_fds range, because we might be seeing a different
317 * files_fdtable() than iterate_fd(), assuming only RCU is
318 * protecting the read. In reality, iterate_fd() holds
319 * file_lock, which should ensure the fdt does not change while
320 * the lock is taken, but we are not aware whether this is
321 * guaranteed or not, so play safe.
323 if (fd
< fdt
->max_fds
&& lttng_close_on_exec(fd
, fdt
))
326 struct dentry
*dentry
= file
->f_path
.dentry
;
328 /* Make sure we give at least some info */
329 spin_lock(&dentry
->d_lock
);
330 trace_lttng_statedump_file_descriptor(ctx
->session
,
331 ctx
->files
, fd
, dentry
->d_name
.name
, flags
,
333 spin_unlock(&dentry
->d_lock
);
336 trace_lttng_statedump_file_descriptor(ctx
->session
,
337 ctx
->files
, fd
, s
, flags
, file
->f_mode
);
342 /* Called with task lock held. */
344 void lttng_enumerate_files(struct lttng_session
*session
,
345 struct files_struct
*files
,
348 struct lttng_fd_ctx ctx
= { .page
= tmp
, .session
= session
, .files
= files
, };
350 lttng_iterate_fd(files
, 0, lttng_dump_one_fd
, &ctx
);
353 #ifdef LTTNG_HAVE_STATEDUMP_CPU_TOPOLOGY
355 int lttng_enumerate_cpu_topology(struct lttng_session
*session
)
358 const cpumask_t
*cpumask
= cpu_possible_mask
;
360 for (cpu
= cpumask_first(cpumask
); cpu
< nr_cpu_ids
;
361 cpu
= cpumask_next(cpu
, cpumask
)) {
362 trace_lttng_statedump_cpu_topology(session
, &cpu_data(cpu
));
369 int lttng_enumerate_cpu_topology(struct lttng_session
*session
)
377 * FIXME: we cannot take a mmap_sem while in a RCU read-side critical section
378 * (scheduling in atomic). Normally, the tasklist lock protects this kind of
379 * iteration, but it is not exported to modules.
382 void lttng_enumerate_task_vm_maps(struct lttng_session
*session
,
383 struct task_struct
*p
)
385 struct mm_struct
*mm
;
386 struct vm_area_struct
*map
;
389 /* get_task_mm does a task_lock... */
396 down_read(&mm
->mmap_sem
);
399 ino
= map
->vm_file
->lttng_f_dentry
->d_inode
->i_ino
;
402 trace_lttng_statedump_vm_map(session
, p
, map
, ino
);
405 up_read(&mm
->mmap_sem
);
411 int lttng_enumerate_vm_maps(struct lttng_session
*session
)
413 struct task_struct
*p
;
417 lttng_enumerate_task_vm_maps(session
, p
);
423 #ifdef CONFIG_LTTNG_HAS_LIST_IRQ
426 int lttng_list_interrupts(struct lttng_session
*session
)
429 unsigned long flags
= 0;
430 struct irq_desc
*desc
;
432 #define irq_to_desc wrapper_irq_to_desc
434 for_each_irq_desc(irq
, desc
) {
435 struct irqaction
*action
;
436 const char *irq_chip_name
=
437 irq_desc_get_chip(desc
)->name
? : "unnamed_irq_chip";
439 local_irq_save(flags
);
440 raw_spin_lock(&desc
->lock
);
441 for (action
= desc
->action
; action
; action
= action
->next
) {
442 trace_lttng_statedump_interrupt(session
,
443 irq
, irq_chip_name
, action
);
445 raw_spin_unlock(&desc
->lock
);
446 local_irq_restore(flags
);
453 int lttng_list_interrupts(struct lttng_session
*session
)
460 * Statedump the task's namespaces using the proc filesystem inode number as
461 * the unique identifier. The user and pid ns are nested and will be dumped
464 * Called with task lock held.
467 void lttng_statedump_process_ns(struct lttng_session
*session
,
468 struct task_struct
*p
,
469 enum lttng_thread_type type
,
470 enum lttng_execution_mode mode
,
471 enum lttng_execution_submode submode
,
472 enum lttng_process_status status
)
474 struct nsproxy
*proxy
;
475 struct pid_namespace
*pid_ns
;
476 struct user_namespace
*user_ns
;
479 * The pid and user namespaces are special, they are nested and
480 * accessed with specific functions instead of the nsproxy struct
481 * like the other namespaces.
483 pid_ns
= task_active_pid_ns(p
);
485 trace_lttng_statedump_process_pid_ns(session
, p
, pid_ns
);
486 pid_ns
= pid_ns
? pid_ns
->parent
: NULL
;
490 user_ns
= task_cred_xxx(p
, user_ns
);
492 trace_lttng_statedump_process_user_ns(session
, p
, user_ns
);
494 * trace_lttng_statedump_process_user_ns() internally
495 * checks whether user_ns is NULL. While this does not
496 * appear to be a possible return value for
497 * task_cred_xxx(), err on the safe side and check
498 * for NULL here as well to be consistent with the
499 * paranoid behavior of
500 * trace_lttng_statedump_process_user_ns().
502 user_ns
= user_ns
? user_ns
->lttng_user_ns_parent
: NULL
;
506 * Back and forth on locking strategy within Linux upstream for nsproxy.
507 * See Linux upstream commit 728dba3a39c66b3d8ac889ddbe38b5b1c264aec3
508 * "namespaces: Use task_lock and not rcu to protect nsproxy"
511 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0) || \
512 LTTNG_UBUNTU_KERNEL_RANGE(3,13,11,36, 3,14,0,0) || \
513 LTTNG_UBUNTU_KERNEL_RANGE(3,16,1,11, 3,17,0,0) || \
514 LTTNG_RHEL_KERNEL_RANGE(3,10,0,229,13,0, 3,11,0,0,0,0))
518 proxy
= task_nsproxy(p
);
521 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,6,0))
522 trace_lttng_statedump_process_cgroup_ns(session
, p
, proxy
->cgroup_ns
);
524 trace_lttng_statedump_process_ipc_ns(session
, p
, proxy
->ipc_ns
);
525 #ifndef LTTNG_MNT_NS_MISSING_HEADER
526 trace_lttng_statedump_process_mnt_ns(session
, p
, proxy
->mnt_ns
);
528 trace_lttng_statedump_process_net_ns(session
, p
, proxy
->net_ns
);
529 trace_lttng_statedump_process_uts_ns(session
, p
, proxy
->uts_ns
);
530 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
531 trace_lttng_statedump_process_time_ns(session
, p
, proxy
->time_ns
);
534 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0) || \
535 LTTNG_UBUNTU_KERNEL_RANGE(3,13,11,36, 3,14,0,0) || \
536 LTTNG_UBUNTU_KERNEL_RANGE(3,16,1,11, 3,17,0,0) || \
537 LTTNG_RHEL_KERNEL_RANGE(3,10,0,229,13,0, 3,11,0,0,0,0))
545 int lttng_enumerate_process_states(struct lttng_session
*session
)
547 struct task_struct
*g
, *p
;
550 tmp
= (char *) __get_free_page(GFP_KERNEL
);
555 for_each_process(g
) {
556 struct files_struct
*prev_files
= NULL
;
560 enum lttng_execution_mode mode
=
562 enum lttng_execution_submode submode
=
564 enum lttng_process_status status
;
565 enum lttng_thread_type type
;
566 struct files_struct
*files
;
569 if (p
->exit_state
== EXIT_ZOMBIE
)
570 status
= LTTNG_ZOMBIE
;
571 else if (p
->exit_state
== EXIT_DEAD
)
573 else if (p
->state
== TASK_RUNNING
) {
574 /* Is this a forked child that has not run yet? */
575 if (list_empty(&p
->rt
.run_list
))
576 status
= LTTNG_WAIT_FORK
;
579 * All tasks are considered as wait_cpu;
580 * the viewer will sort out if the task
581 * was really running at this time.
583 status
= LTTNG_WAIT_CPU
;
584 } else if (p
->state
&
585 (TASK_INTERRUPTIBLE
| TASK_UNINTERRUPTIBLE
)) {
586 /* Task is waiting for something to complete */
589 status
= LTTNG_UNNAMED
;
590 submode
= LTTNG_NONE
;
593 * Verification of t->mm is to filter out kernel
594 * threads; Viewer will further filter out if a
595 * user-space thread was in syscall mode or not.
598 type
= LTTNG_USER_THREAD
;
600 type
= LTTNG_KERNEL_THREAD
;
603 trace_lttng_statedump_process_state(session
,
604 p
, type
, mode
, submode
, status
, files
);
605 lttng_statedump_process_ns(session
,
606 p
, type
, mode
, submode
, status
);
608 * As an optimisation for the common case, do not
609 * repeat information for the same files_struct in
610 * two consecutive threads. This is the common case
611 * for threads sharing the same fd table. RCU guarantees
612 * that the same files_struct pointer is not re-used
613 * throughout processes/threads iteration.
615 if (files
&& files
!= prev_files
) {
616 lttng_enumerate_files(session
, files
, tmp
);
620 } while_each_thread(g
, p
);
624 free_page((unsigned long) tmp
);
630 void lttng_statedump_work_func(struct work_struct
*work
)
632 if (atomic_dec_and_test(&kernel_threads_to_run
))
633 /* If we are the last thread, wake up do_lttng_statedump */
634 wake_up(&statedump_wq
);
638 int do_lttng_statedump(struct lttng_session
*session
)
642 trace_lttng_statedump_start(session
);
643 ret
= lttng_enumerate_process_states(session
);
648 * ret = lttng_enumerate_vm_maps(session);
652 ret
= lttng_list_interrupts(session
);
655 ret
= lttng_enumerate_network_ip_interface(session
);
658 ret
= lttng_enumerate_block_devices(session
);
663 printk(KERN_WARNING
"LTTng: block device enumeration is not supported by kernel\n");
668 ret
= lttng_enumerate_cpu_topology(session
);
672 /* TODO lttng_dump_idt_table(session); */
673 /* TODO lttng_dump_softirq_vec(session); */
674 /* TODO lttng_list_modules(session); */
675 /* TODO lttng_dump_swap_files(session); */
678 * Fire off a work queue on each CPU. Their sole purpose in life
679 * is to guarantee that each CPU has been in a state where is was in
680 * syscall mode (i.e. not in a trap, an IRQ or a soft IRQ).
683 atomic_set(&kernel_threads_to_run
, num_online_cpus());
684 for_each_online_cpu(cpu
) {
685 INIT_DELAYED_WORK(&cpu_work
[cpu
], lttng_statedump_work_func
);
686 schedule_delayed_work_on(cpu
, &cpu_work
[cpu
], 0);
688 /* Wait for all threads to run */
689 __wait_event(statedump_wq
, (atomic_read(&kernel_threads_to_run
) == 0));
691 /* Our work is done */
692 trace_lttng_statedump_end(session
);
697 * Called with session mutex held.
699 int lttng_statedump_start(struct lttng_session
*session
)
701 return do_lttng_statedump(session
);
703 EXPORT_SYMBOL_GPL(lttng_statedump_start
);
706 int __init
lttng_statedump_init(void)
709 * Allow module to load even if the fixup cannot be done. This
710 * will allow seemless transition when the underlying issue fix
711 * is merged into the Linux kernel, and when tracepoint.c
712 * "tracepoint_module_notify" is turned into a static function.
714 (void) wrapper_lttng_fixup_sig(THIS_MODULE
);
718 module_init(lttng_statedump_init
);
721 void __exit
lttng_statedump_exit(void)
725 module_exit(lttng_statedump_exit
);
727 MODULE_LICENSE("GPL and additional rights");
728 MODULE_AUTHOR("Jean-Hugues Deschenes");
729 MODULE_DESCRIPTION("LTTng statedump provider");
730 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION
) "."
731 __stringify(LTTNG_MODULES_MINOR_VERSION
) "."
732 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION
)
733 LTTNG_MODULES_EXTRAVERSION
);