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/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/spinlock.h>
40 #include <wrapper/fdtable.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/lttng-module
54 #define TRACE_INCLUDE_FILE lttng-statedump
55 #define LTTNG_INSTRUMENTATION
56 #include <instrumentation/events/lttng-module/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 task_struct
*p
, int fd
, const char *filename
,
76 unsigned int flags
, fmode_t fmode
),
77 TP_ARGS(session
, p
, fd
, filename
, flags
, fmode
));
79 LTTNG_DEFINE_TRACE(lttng_statedump_start
,
80 TP_PROTO(struct lttng_session
*session
),
83 LTTNG_DEFINE_TRACE(lttng_statedump_process_state
,
84 TP_PROTO(struct lttng_session
*session
,
85 struct task_struct
*p
,
86 int type
, int mode
, int submode
, int status
,
87 struct pid_namespace
*pid_ns
),
88 TP_ARGS(session
, p
, type
, mode
, submode
, status
, pid_ns
));
90 LTTNG_DEFINE_TRACE(lttng_statedump_network_interface
,
91 TP_PROTO(struct lttng_session
*session
,
92 struct net_device
*dev
, struct in_ifaddr
*ifa
),
93 TP_ARGS(session
, dev
, ifa
));
97 struct lttng_session
*session
;
98 struct task_struct
*p
;
99 struct files_struct
*files
;
103 * Protected by the trace lock.
105 static struct delayed_work cpu_work
[NR_CPUS
];
106 static DECLARE_WAIT_QUEUE_HEAD(statedump_wq
);
107 static atomic_t kernel_threads_to_run
;
109 enum lttng_thread_type
{
110 LTTNG_USER_THREAD
= 0,
111 LTTNG_KERNEL_THREAD
= 1,
114 enum lttng_execution_mode
{
120 LTTNG_MODE_UNKNOWN
= 5,
123 enum lttng_execution_submode
{
128 enum lttng_process_status
{
140 #if (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(5,11,0))
142 #define LTTNG_PART_STRUCT_TYPE struct block_device
145 int lttng_get_part_name(struct gendisk
*disk
, struct block_device
*part
, char *name_buf
)
149 p
= bdevname(part
, name_buf
);
157 dev_t
lttng_get_part_devt(struct block_device
*part
)
164 #define LTTNG_PART_STRUCT_TYPE struct hd_struct
167 int lttng_get_part_name(struct gendisk
*disk
, struct hd_struct
*part
, char *name_buf
)
170 struct block_device bdev
;
173 * Create a partial 'struct blockdevice' to use
174 * 'bdevname()' which is a simple wrapper over
175 * 'disk_name()' but has the honor to be EXPORT_SYMBOL.
180 p
= bdevname(&bdev
, name_buf
);
188 dev_t
lttng_get_part_devt(struct hd_struct
*part
)
190 return part_devt(part
);
195 int lttng_enumerate_block_devices(struct lttng_session
*session
)
197 struct class *ptr_block_class
;
198 struct device_type
*ptr_disk_type
;
199 struct class_dev_iter iter
;
202 ptr_block_class
= wrapper_get_block_class();
203 if (!ptr_block_class
)
205 ptr_disk_type
= wrapper_get_disk_type();
206 if (!ptr_disk_type
) {
209 class_dev_iter_init(&iter
, ptr_block_class
, NULL
, ptr_disk_type
);
210 while ((dev
= class_dev_iter_next(&iter
))) {
211 struct disk_part_iter piter
;
212 struct gendisk
*disk
= dev_to_disk(dev
);
213 LTTNG_PART_STRUCT_TYPE
*part
;
216 * Don't show empty devices or things that have been
219 if (get_capacity(disk
) == 0 ||
220 (disk
->flags
& GENHD_FL_SUPPRESS_PARTITION_INFO
))
223 disk_part_iter_init(&piter
, disk
, DISK_PITER_INCL_PART0
);
224 while ((part
= disk_part_iter_next(&piter
))) {
225 char name_buf
[BDEVNAME_SIZE
];
227 if (lttng_get_part_name(disk
, part
, name_buf
) == -ENOSYS
) {
228 disk_part_iter_exit(&piter
);
229 class_dev_iter_exit(&iter
);
232 trace_lttng_statedump_block_device(session
,
233 lttng_get_part_devt(part
), name_buf
);
235 disk_part_iter_exit(&piter
);
237 class_dev_iter_exit(&iter
);
244 void lttng_enumerate_device(struct lttng_session
*session
,
245 struct net_device
*dev
)
247 struct in_device
*in_dev
;
248 struct in_ifaddr
*ifa
;
250 if (dev
->flags
& IFF_UP
) {
251 in_dev
= in_dev_get(dev
);
253 for (ifa
= in_dev
->ifa_list
; ifa
!= NULL
;
254 ifa
= ifa
->ifa_next
) {
255 trace_lttng_statedump_network_interface(
261 trace_lttng_statedump_network_interface(
267 int lttng_enumerate_network_ip_interface(struct lttng_session
*session
)
269 struct net_device
*dev
;
271 read_lock(&dev_base_lock
);
272 for_each_netdev(&init_net
, dev
)
273 lttng_enumerate_device(session
, dev
);
274 read_unlock(&dev_base_lock
);
278 #else /* CONFIG_INET */
280 int lttng_enumerate_network_ip_interface(struct lttng_session
*session
)
284 #endif /* CONFIG_INET */
287 int lttng_dump_one_fd(const void *p
, struct file
*file
, unsigned int fd
)
289 const struct lttng_fd_ctx
*ctx
= p
;
290 const char *s
= d_path(&file
->f_path
, ctx
->page
, PAGE_SIZE
);
291 unsigned int flags
= file
->f_flags
;
295 * We don't expose kernel internal flags, only userspace-visible
298 flags
&= ~FMODE_NONOTIFY
;
299 fdt
= files_fdtable(ctx
->files
);
301 * We need to check here again whether fd is within the fdt
302 * max_fds range, because we might be seeing a different
303 * files_fdtable() than iterate_fd(), assuming only RCU is
304 * protecting the read. In reality, iterate_fd() holds
305 * file_lock, which should ensure the fdt does not change while
306 * the lock is taken, but we are not aware whether this is
307 * guaranteed or not, so play safe.
309 if (fd
< fdt
->max_fds
&& lttng_close_on_exec(fd
, fdt
))
312 struct dentry
*dentry
= file
->f_path
.dentry
;
314 /* Make sure we give at least some info */
315 spin_lock(&dentry
->d_lock
);
316 trace_lttng_statedump_file_descriptor(ctx
->session
, ctx
->p
, fd
,
317 dentry
->d_name
.name
, flags
, file
->f_mode
);
318 spin_unlock(&dentry
->d_lock
);
321 trace_lttng_statedump_file_descriptor(ctx
->session
, ctx
->p
, fd
, s
,
322 flags
, file
->f_mode
);
328 void lttng_enumerate_task_fd(struct lttng_session
*session
,
329 struct task_struct
*p
, char *tmp
)
331 struct lttng_fd_ctx ctx
= { .page
= tmp
, .session
= session
, .p
= p
};
332 struct files_struct
*files
;
339 lttng_iterate_fd(files
, 0, lttng_dump_one_fd
, &ctx
);
345 int lttng_enumerate_file_descriptors(struct lttng_session
*session
)
347 struct task_struct
*p
;
350 tmp
= (char *) __get_free_page(GFP_KERNEL
);
354 /* Enumerate active file descriptors */
357 lttng_enumerate_task_fd(session
, p
, tmp
);
359 free_page((unsigned long) tmp
);
365 * FIXME: we cannot take a mmap_sem while in a RCU read-side critical section
366 * (scheduling in atomic). Normally, the tasklist lock protects this kind of
367 * iteration, but it is not exported to modules.
370 void lttng_enumerate_task_vm_maps(struct lttng_session
*session
,
371 struct task_struct
*p
)
373 struct mm_struct
*mm
;
374 struct vm_area_struct
*map
;
377 /* get_task_mm does a task_lock... */
384 down_read(&mm
->mmap_sem
);
387 ino
= map
->vm_file
->lttng_f_dentry
->d_inode
->i_ino
;
390 trace_lttng_statedump_vm_map(session
, p
, map
, ino
);
393 up_read(&mm
->mmap_sem
);
399 int lttng_enumerate_vm_maps(struct lttng_session
*session
)
401 struct task_struct
*p
;
405 lttng_enumerate_task_vm_maps(session
, p
);
411 #ifdef CONFIG_LTTNG_HAS_LIST_IRQ
413 #if (LTTNG_LINUX_VERSION_CODE < LTTNG_KERNEL_VERSION(2,6,39))
414 #define irq_desc_get_chip(desc) get_irq_desc_chip(desc)
418 int lttng_list_interrupts(struct lttng_session
*session
)
421 unsigned long flags
= 0;
422 struct irq_desc
*desc
;
424 #define irq_to_desc wrapper_irq_to_desc
426 for_each_irq_desc(irq
, desc
) {
427 struct irqaction
*action
;
428 const char *irq_chip_name
=
429 irq_desc_get_chip(desc
)->name
? : "unnamed_irq_chip";
431 local_irq_save(flags
);
432 wrapper_desc_spin_lock(&desc
->lock
);
433 for (action
= desc
->action
; action
; action
= action
->next
) {
434 trace_lttng_statedump_interrupt(session
,
435 irq
, irq_chip_name
, action
);
437 wrapper_desc_spin_unlock(&desc
->lock
);
438 local_irq_restore(flags
);
445 int lttng_list_interrupts(struct lttng_session
*session
)
452 * Called with task lock held.
455 void lttng_statedump_process_ns(struct lttng_session
*session
,
456 struct task_struct
*p
,
457 enum lttng_thread_type type
,
458 enum lttng_execution_mode mode
,
459 enum lttng_execution_submode submode
,
460 enum lttng_process_status status
)
462 struct pid_namespace
*pid_ns
;
464 pid_ns
= task_active_pid_ns(p
);
466 trace_lttng_statedump_process_state(session
,
467 p
, type
, mode
, submode
, status
, pid_ns
);
468 pid_ns
= pid_ns
? pid_ns
->parent
: NULL
;
473 int lttng_enumerate_process_states(struct lttng_session
*session
)
475 struct task_struct
*g
, *p
;
478 for_each_process(g
) {
481 enum lttng_execution_mode mode
=
483 enum lttng_execution_submode submode
=
485 enum lttng_process_status status
;
486 enum lttng_thread_type type
;
489 if (p
->exit_state
== EXIT_ZOMBIE
)
490 status
= LTTNG_ZOMBIE
;
491 else if (p
->exit_state
== EXIT_DEAD
)
493 else if (p
->state
== TASK_RUNNING
) {
494 /* Is this a forked child that has not run yet? */
495 if (list_empty(&p
->rt
.run_list
))
496 status
= LTTNG_WAIT_FORK
;
499 * All tasks are considered as wait_cpu;
500 * the viewer will sort out if the task
501 * was really running at this time.
503 status
= LTTNG_WAIT_CPU
;
504 } else if (p
->state
&
505 (TASK_INTERRUPTIBLE
| TASK_UNINTERRUPTIBLE
)) {
506 /* Task is waiting for something to complete */
509 status
= LTTNG_UNNAMED
;
510 submode
= LTTNG_NONE
;
513 * Verification of t->mm is to filter out kernel
514 * threads; Viewer will further filter out if a
515 * user-space thread was in syscall mode or not.
518 type
= LTTNG_USER_THREAD
;
520 type
= LTTNG_KERNEL_THREAD
;
521 lttng_statedump_process_ns(session
,
522 p
, type
, mode
, submode
, status
);
524 } while_each_thread(g
, p
);
532 void lttng_statedump_work_func(struct work_struct
*work
)
534 if (atomic_dec_and_test(&kernel_threads_to_run
))
535 /* If we are the last thread, wake up do_lttng_statedump */
536 wake_up(&statedump_wq
);
540 int do_lttng_statedump(struct lttng_session
*session
)
544 trace_lttng_statedump_start(session
);
545 ret
= lttng_enumerate_process_states(session
);
548 ret
= lttng_enumerate_file_descriptors(session
);
553 * ret = lttng_enumerate_vm_maps(session);
557 ret
= lttng_list_interrupts(session
);
560 ret
= lttng_enumerate_network_ip_interface(session
);
563 ret
= lttng_enumerate_block_devices(session
);
568 printk(KERN_WARNING
"LTTng: block device enumeration is not supported by kernel\n");
574 /* TODO lttng_dump_idt_table(session); */
575 /* TODO lttng_dump_softirq_vec(session); */
576 /* TODO lttng_list_modules(session); */
577 /* TODO lttng_dump_swap_files(session); */
580 * Fire off a work queue on each CPU. Their sole purpose in life
581 * is to guarantee that each CPU has been in a state where is was in
582 * syscall mode (i.e. not in a trap, an IRQ or a soft IRQ).
585 atomic_set(&kernel_threads_to_run
, num_online_cpus());
586 for_each_online_cpu(cpu
) {
587 INIT_DELAYED_WORK(&cpu_work
[cpu
], lttng_statedump_work_func
);
588 schedule_delayed_work_on(cpu
, &cpu_work
[cpu
], 0);
590 /* Wait for all threads to run */
591 __wait_event(statedump_wq
, (atomic_read(&kernel_threads_to_run
) == 0));
593 /* Our work is done */
594 trace_lttng_statedump_end(session
);
599 * Called with session mutex held.
601 int lttng_statedump_start(struct lttng_session
*session
)
603 return do_lttng_statedump(session
);
605 EXPORT_SYMBOL_GPL(lttng_statedump_start
);
608 int __init
lttng_statedump_init(void)
611 * Allow module to load even if the fixup cannot be done. This
612 * will allow seemless transition when the underlying issue fix
613 * is merged into the Linux kernel, and when tracepoint.c
614 * "tracepoint_module_notify" is turned into a static function.
616 (void) wrapper_lttng_fixup_sig(THIS_MODULE
);
620 module_init(lttng_statedump_init
);
623 void __exit
lttng_statedump_exit(void)
627 module_exit(lttng_statedump_exit
);
629 MODULE_LICENSE("GPL and additional rights");
630 MODULE_AUTHOR("Jean-Hugues Deschenes");
631 MODULE_DESCRIPTION("LTTng statedump provider");
632 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION
) "."
633 __stringify(LTTNG_MODULES_MINOR_VERSION
) "."
634 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION
)
635 LTTNG_MODULES_EXTRAVERSION
);