Drop support for kernels < 3.0 from jbd2 instrumentation
[lttng-modules.git] / lttng-statedump-impl.c
CommitLineData
9f36eaed
MJ
1/* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
2 *
886d51a3
MD
3 * lttng-statedump.c
4 *
c337ddc2
MD
5 * Linux Trace Toolkit Next Generation Kernel State Dump
6 *
7 * Copyright 2005 Jean-Hugues Deschenes <jean-hugues.deschenes@polymtl.ca>
8 * Copyright 2006-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 *
10 * Changes:
11 * Eric Clement: Add listing of network IP interface
12 * 2006, 2007 Mathieu Desnoyers Fix kernel threads
13 * Various updates
c337ddc2
MD
14 */
15
16#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/netlink.h>
19#include <linux/inet.h>
20#include <linux/ip.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>
30#include <linux/mm.h>
31#include <linux/fdtable.h>
32#include <linux/swap.h>
33#include <linux/wait.h>
34#include <linux/mutex.h>
f0dbdefb 35#include <linux/device.h>
c337ddc2 36
241ae9a8
MD
37#include <lttng-events.h>
38#include <lttng-tracer.h>
39#include <wrapper/irqdesc.h>
241ae9a8 40#include <wrapper/fdtable.h>
241ae9a8
MD
41#include <wrapper/irq.h>
42#include <wrapper/tracepoint.h>
43#include <wrapper/genhd.h>
44#include <wrapper/file.h>
45#include <wrapper/time.h>
c337ddc2 46
29784493 47#ifdef CONFIG_LTTNG_HAS_LIST_IRQ
c337ddc2
MD
48#include <linux/irq.h>
49#endif
50
51/* Define the tracepoints, but do not build the probes */
52#define CREATE_TRACE_POINTS
241ae9a8 53#define TRACE_INCLUDE_PATH instrumentation/events/lttng-module
c337ddc2 54#define TRACE_INCLUDE_FILE lttng-statedump
3bc29f0a 55#define LTTNG_INSTRUMENTATION
241ae9a8 56#include <instrumentation/events/lttng-module/lttng-statedump.h>
c337ddc2 57
f0dbdefb 58DEFINE_TRACE(lttng_statedump_block_device);
20591cf7
MD
59DEFINE_TRACE(lttng_statedump_end);
60DEFINE_TRACE(lttng_statedump_interrupt);
61DEFINE_TRACE(lttng_statedump_file_descriptor);
62DEFINE_TRACE(lttng_statedump_start);
63DEFINE_TRACE(lttng_statedump_process_state);
64DEFINE_TRACE(lttng_statedump_network_interface);
d0b55e4c 65#ifdef LTTNG_HAVE_STATEDUMP_CPU_TOPOLOGY
502e4132
JD
66DEFINE_TRACE(lttng_statedump_cpu_topology);
67#endif
20591cf7 68
361c023a
MD
69struct lttng_fd_ctx {
70 char *page;
71 struct lttng_session *session;
72 struct task_struct *p;
d561ecfb 73 struct files_struct *files;
361c023a
MD
74};
75
c337ddc2
MD
76/*
77 * Protected by the trace lock.
78 */
79static struct delayed_work cpu_work[NR_CPUS];
80static DECLARE_WAIT_QUEUE_HEAD(statedump_wq);
81static atomic_t kernel_threads_to_run;
82
83enum lttng_thread_type {
84 LTTNG_USER_THREAD = 0,
85 LTTNG_KERNEL_THREAD = 1,
86};
87
88enum lttng_execution_mode {
89 LTTNG_USER_MODE = 0,
90 LTTNG_SYSCALL = 1,
91 LTTNG_TRAP = 2,
92 LTTNG_IRQ = 3,
93 LTTNG_SOFTIRQ = 4,
94 LTTNG_MODE_UNKNOWN = 5,
95};
96
97enum lttng_execution_submode {
98 LTTNG_NONE = 0,
99 LTTNG_UNKNOWN = 1,
100};
101
102enum lttng_process_status {
103 LTTNG_UNNAMED = 0,
104 LTTNG_WAIT_FORK = 1,
105 LTTNG_WAIT_CPU = 2,
106 LTTNG_EXIT = 3,
107 LTTNG_ZOMBIE = 4,
108 LTTNG_WAIT = 5,
109 LTTNG_RUN = 6,
110 LTTNG_DEAD = 7,
111};
112
f0dbdefb
HD
113static
114int lttng_enumerate_block_devices(struct lttng_session *session)
115{
116 struct class *ptr_block_class;
117 struct device_type *ptr_disk_type;
118 struct class_dev_iter iter;
119 struct device *dev;
120
121 ptr_block_class = wrapper_get_block_class();
122 if (!ptr_block_class)
123 return -ENOSYS;
124 ptr_disk_type = wrapper_get_disk_type();
125 if (!ptr_disk_type) {
126 return -ENOSYS;
127 }
128 class_dev_iter_init(&iter, ptr_block_class, NULL, ptr_disk_type);
129 while ((dev = class_dev_iter_next(&iter))) {
130 struct disk_part_iter piter;
131 struct gendisk *disk = dev_to_disk(dev);
132 struct hd_struct *part;
133
5a91f3df
MD
134 /*
135 * Don't show empty devices or things that have been
136 * suppressed
137 */
138 if (get_capacity(disk) == 0 ||
139 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
140 continue;
141
f0dbdefb
HD
142 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
143 while ((part = disk_part_iter_next(&piter))) {
144 char name_buf[BDEVNAME_SIZE];
145 char *p;
146
147 p = wrapper_disk_name(disk, part->partno, name_buf);
148 if (!p) {
149 disk_part_iter_exit(&piter);
150 class_dev_iter_exit(&iter);
151 return -ENOSYS;
152 }
153 trace_lttng_statedump_block_device(session,
154 part_devt(part), name_buf);
155 }
156 disk_part_iter_exit(&piter);
157 }
158 class_dev_iter_exit(&iter);
159 return 0;
160}
161
c337ddc2 162#ifdef CONFIG_INET
f0dbdefb 163
c337ddc2
MD
164static
165void lttng_enumerate_device(struct lttng_session *session,
166 struct net_device *dev)
167{
168 struct in_device *in_dev;
169 struct in_ifaddr *ifa;
170
171 if (dev->flags & IFF_UP) {
172 in_dev = in_dev_get(dev);
173 if (in_dev) {
174 for (ifa = in_dev->ifa_list; ifa != NULL;
175 ifa = ifa->ifa_next) {
176 trace_lttng_statedump_network_interface(
177 session, dev, ifa);
178 }
179 in_dev_put(in_dev);
180 }
181 } else {
182 trace_lttng_statedump_network_interface(
183 session, dev, NULL);
184 }
185}
186
187static
188int lttng_enumerate_network_ip_interface(struct lttng_session *session)
189{
190 struct net_device *dev;
191
192 read_lock(&dev_base_lock);
193 for_each_netdev(&init_net, dev)
194 lttng_enumerate_device(session, dev);
195 read_unlock(&dev_base_lock);
196
197 return 0;
198}
199#else /* CONFIG_INET */
200static inline
201int lttng_enumerate_network_ip_interface(struct lttng_session *session)
202{
203 return 0;
204}
205#endif /* CONFIG_INET */
206
361c023a
MD
207static
208int lttng_dump_one_fd(const void *p, struct file *file, unsigned int fd)
209{
210 const struct lttng_fd_ctx *ctx = p;
211 const char *s = d_path(&file->f_path, ctx->page, PAGE_SIZE);
29021503 212 unsigned int flags = file->f_flags;
d561ecfb 213 struct fdtable *fdt;
361c023a 214
29021503
MD
215 /*
216 * We don't expose kernel internal flags, only userspace-visible
217 * flags.
218 */
219 flags &= ~FMODE_NONOTIFY;
d561ecfb
MD
220 fdt = files_fdtable(ctx->files);
221 /*
222 * We need to check here again whether fd is within the fdt
223 * max_fds range, because we might be seeing a different
224 * files_fdtable() than iterate_fd(), assuming only RCU is
225 * protecting the read. In reality, iterate_fd() holds
226 * file_lock, which should ensure the fdt does not change while
227 * the lock is taken, but we are not aware whether this is
228 * guaranteed or not, so play safe.
229 */
aa29f2d3 230 if (fd < fdt->max_fds && lttng_close_on_exec(fd, fdt))
29021503 231 flags |= O_CLOEXEC;
361c023a
MD
232 if (IS_ERR(s)) {
233 struct dentry *dentry = file->f_path.dentry;
234
235 /* Make sure we give at least some info */
236 spin_lock(&dentry->d_lock);
237 trace_lttng_statedump_file_descriptor(ctx->session, ctx->p, fd,
29021503 238 dentry->d_name.name, flags, file->f_mode);
361c023a
MD
239 spin_unlock(&dentry->d_lock);
240 goto end;
241 }
29021503
MD
242 trace_lttng_statedump_file_descriptor(ctx->session, ctx->p, fd, s,
243 flags, file->f_mode);
361c023a
MD
244end:
245 return 0;
246}
c337ddc2
MD
247
248static
249void lttng_enumerate_task_fd(struct lttng_session *session,
250 struct task_struct *p, char *tmp)
251{
361c023a 252 struct lttng_fd_ctx ctx = { .page = tmp, .session = session, .p = p };
d561ecfb 253 struct files_struct *files;
c337ddc2
MD
254
255 task_lock(p);
d561ecfb
MD
256 files = p->files;
257 if (!files)
258 goto end;
259 ctx.files = files;
260 lttng_iterate_fd(files, 0, lttng_dump_one_fd, &ctx);
261end:
c337ddc2
MD
262 task_unlock(p);
263}
264
265static
266int lttng_enumerate_file_descriptors(struct lttng_session *session)
267{
268 struct task_struct *p;
cfcee1c7
MD
269 char *tmp;
270
271 tmp = (char *) __get_free_page(GFP_KERNEL);
272 if (!tmp)
273 return -ENOMEM;
c337ddc2
MD
274
275 /* Enumerate active file descriptors */
276 rcu_read_lock();
277 for_each_process(p)
278 lttng_enumerate_task_fd(session, p, tmp);
279 rcu_read_unlock();
280 free_page((unsigned long) tmp);
281 return 0;
282}
283
d0b55e4c 284#ifdef LTTNG_HAVE_STATEDUMP_CPU_TOPOLOGY
502e4132
JD
285static
286int lttng_enumerate_cpu_topology(struct lttng_session *session)
287{
288 int cpu;
289 const cpumask_t *cpumask = cpu_possible_mask;
290
291 for (cpu = cpumask_first(cpumask); cpu < nr_cpu_ids;
292 cpu = cpumask_next(cpu, cpumask)) {
293 trace_lttng_statedump_cpu_topology(session, &cpu_data(cpu));
294 }
295
296 return 0;
297}
298#else
299static
300int lttng_enumerate_cpu_topology(struct lttng_session *session)
301{
302 return 0;
303}
304#endif
305
0658bdda
MD
306#if 0
307/*
308 * FIXME: we cannot take a mmap_sem while in a RCU read-side critical section
309 * (scheduling in atomic). Normally, the tasklist lock protects this kind of
310 * iteration, but it is not exported to modules.
311 */
c337ddc2
MD
312static
313void lttng_enumerate_task_vm_maps(struct lttng_session *session,
314 struct task_struct *p)
315{
316 struct mm_struct *mm;
317 struct vm_area_struct *map;
318 unsigned long ino;
319
320 /* get_task_mm does a task_lock... */
321 mm = get_task_mm(p);
322 if (!mm)
323 return;
324
325 map = mm->mmap;
326 if (map) {
327 down_read(&mm->mmap_sem);
328 while (map) {
329 if (map->vm_file)
b06ed645 330 ino = map->vm_file->lttng_f_dentry->d_inode->i_ino;
c337ddc2
MD
331 else
332 ino = 0;
333 trace_lttng_statedump_vm_map(session, p, map, ino);
334 map = map->vm_next;
335 }
336 up_read(&mm->mmap_sem);
337 }
338 mmput(mm);
339}
340
341static
342int lttng_enumerate_vm_maps(struct lttng_session *session)
343{
344 struct task_struct *p;
345
346 rcu_read_lock();
347 for_each_process(p)
348 lttng_enumerate_task_vm_maps(session, p);
349 rcu_read_unlock();
350 return 0;
351}
0658bdda 352#endif
c337ddc2 353
29784493 354#ifdef CONFIG_LTTNG_HAS_LIST_IRQ
47faec4b 355
c337ddc2 356static
cfcee1c7 357int lttng_list_interrupts(struct lttng_session *session)
c337ddc2
MD
358{
359 unsigned int irq;
360 unsigned long flags = 0;
361 struct irq_desc *desc;
362
363#define irq_to_desc wrapper_irq_to_desc
364 /* needs irq_desc */
365 for_each_irq_desc(irq, desc) {
366 struct irqaction *action;
367 const char *irq_chip_name =
368 irq_desc_get_chip(desc)->name ? : "unnamed_irq_chip";
369
370 local_irq_save(flags);
fc94c945 371 raw_spin_lock(&desc->lock);
c337ddc2
MD
372 for (action = desc->action; action; action = action->next) {
373 trace_lttng_statedump_interrupt(session,
374 irq, irq_chip_name, action);
375 }
fc94c945 376 raw_spin_unlock(&desc->lock);
c337ddc2
MD
377 local_irq_restore(flags);
378 }
cfcee1c7 379 return 0;
c337ddc2
MD
380#undef irq_to_desc
381}
382#else
383static inline
cfcee1c7 384int lttng_list_interrupts(struct lttng_session *session)
c337ddc2 385{
cfcee1c7 386 return 0;
c337ddc2
MD
387}
388#endif
389
4ba1f53c
MD
390/*
391 * Called with task lock held.
392 */
73e8ba37
JD
393static
394void lttng_statedump_process_ns(struct lttng_session *session,
395 struct task_struct *p,
396 enum lttng_thread_type type,
397 enum lttng_execution_mode mode,
398 enum lttng_execution_submode submode,
399 enum lttng_process_status status)
400{
73e8ba37
JD
401 struct pid_namespace *pid_ns;
402
887bcdac
MJ
403 pid_ns = task_active_pid_ns(p);
404 do {
73e8ba37 405 trace_lttng_statedump_process_state(session,
887bcdac
MJ
406 p, type, mode, submode, status, pid_ns);
407 pid_ns = pid_ns->parent;
408 } while (pid_ns);
73e8ba37
JD
409}
410
c337ddc2
MD
411static
412int lttng_enumerate_process_states(struct lttng_session *session)
413{
414 struct task_struct *g, *p;
415
416 rcu_read_lock();
417 for_each_process(g) {
418 p = g;
419 do {
420 enum lttng_execution_mode mode =
421 LTTNG_MODE_UNKNOWN;
422 enum lttng_execution_submode submode =
423 LTTNG_UNKNOWN;
424 enum lttng_process_status status;
425 enum lttng_thread_type type;
426
427 task_lock(p);
428 if (p->exit_state == EXIT_ZOMBIE)
429 status = LTTNG_ZOMBIE;
430 else if (p->exit_state == EXIT_DEAD)
431 status = LTTNG_DEAD;
432 else if (p->state == TASK_RUNNING) {
433 /* Is this a forked child that has not run yet? */
434 if (list_empty(&p->rt.run_list))
435 status = LTTNG_WAIT_FORK;
436 else
437 /*
438 * All tasks are considered as wait_cpu;
439 * the viewer will sort out if the task
440 * was really running at this time.
441 */
442 status = LTTNG_WAIT_CPU;
443 } else if (p->state &
444 (TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE)) {
445 /* Task is waiting for something to complete */
446 status = LTTNG_WAIT;
447 } else
448 status = LTTNG_UNNAMED;
449 submode = LTTNG_NONE;
450
451 /*
452 * Verification of t->mm is to filter out kernel
453 * threads; Viewer will further filter out if a
454 * user-space thread was in syscall mode or not.
455 */
456 if (p->mm)
457 type = LTTNG_USER_THREAD;
458 else
459 type = LTTNG_KERNEL_THREAD;
73e8ba37 460 lttng_statedump_process_ns(session,
c337ddc2
MD
461 p, type, mode, submode, status);
462 task_unlock(p);
463 } while_each_thread(g, p);
464 }
465 rcu_read_unlock();
466
467 return 0;
468}
469
470static
471void lttng_statedump_work_func(struct work_struct *work)
472{
473 if (atomic_dec_and_test(&kernel_threads_to_run))
474 /* If we are the last thread, wake up do_lttng_statedump */
475 wake_up(&statedump_wq);
476}
477
478static
479int do_lttng_statedump(struct lttng_session *session)
480{
cfcee1c7 481 int cpu, ret;
c337ddc2 482
c337ddc2 483 trace_lttng_statedump_start(session);
cfcee1c7
MD
484 ret = lttng_enumerate_process_states(session);
485 if (ret)
486 return ret;
487 ret = lttng_enumerate_file_descriptors(session);
488 if (ret)
489 return ret;
490 /*
491 * FIXME
492 * ret = lttng_enumerate_vm_maps(session);
493 * if (ret)
494 * return ret;
495 */
496 ret = lttng_list_interrupts(session);
497 if (ret)
498 return ret;
499 ret = lttng_enumerate_network_ip_interface(session);
500 if (ret)
501 return ret;
502 ret = lttng_enumerate_block_devices(session);
503 switch (ret) {
84c7055e
MD
504 case 0:
505 break;
cfcee1c7
MD
506 case -ENOSYS:
507 printk(KERN_WARNING "LTTng: block device enumeration is not supported by kernel\n");
508 break;
509 default:
510 return ret;
511 }
502e4132
JD
512 ret = lttng_enumerate_cpu_topology(session);
513 if (ret)
514 return ret;
c337ddc2
MD
515
516 /* TODO lttng_dump_idt_table(session); */
517 /* TODO lttng_dump_softirq_vec(session); */
518 /* TODO lttng_list_modules(session); */
519 /* TODO lttng_dump_swap_files(session); */
520
521 /*
522 * Fire off a work queue on each CPU. Their sole purpose in life
523 * is to guarantee that each CPU has been in a state where is was in
524 * syscall mode (i.e. not in a trap, an IRQ or a soft IRQ).
525 */
526 get_online_cpus();
527 atomic_set(&kernel_threads_to_run, num_online_cpus());
528 for_each_online_cpu(cpu) {
529 INIT_DELAYED_WORK(&cpu_work[cpu], lttng_statedump_work_func);
530 schedule_delayed_work_on(cpu, &cpu_work[cpu], 0);
531 }
532 /* Wait for all threads to run */
7a7128e0 533 __wait_event(statedump_wq, (atomic_read(&kernel_threads_to_run) == 0));
c337ddc2
MD
534 put_online_cpus();
535 /* Our work is done */
c337ddc2
MD
536 trace_lttng_statedump_end(session);
537 return 0;
538}
539
540/*
541 * Called with session mutex held.
542 */
543int lttng_statedump_start(struct lttng_session *session)
544{
c337ddc2
MD
545 return do_lttng_statedump(session);
546}
547EXPORT_SYMBOL_GPL(lttng_statedump_start);
548
dd8d5afb
MD
549static
550int __init lttng_statedump_init(void)
551{
d16aa9c9
MD
552 /*
553 * Allow module to load even if the fixup cannot be done. This
554 * will allow seemless transition when the underlying issue fix
555 * is merged into the Linux kernel, and when tracepoint.c
556 * "tracepoint_module_notify" is turned into a static function.
557 */
558 (void) wrapper_lttng_fixup_sig(THIS_MODULE);
559 return 0;
dd8d5afb
MD
560}
561
562module_init(lttng_statedump_init);
563
461277e7
MD
564static
565void __exit lttng_statedump_exit(void)
566{
567}
568
569module_exit(lttng_statedump_exit);
570
c337ddc2
MD
571MODULE_LICENSE("GPL and additional rights");
572MODULE_AUTHOR("Jean-Hugues Deschenes");
1c124020 573MODULE_DESCRIPTION("LTTng statedump provider");
13ab8b0a
MD
574MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
575 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
576 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
577 LTTNG_MODULES_EXTRAVERSION);
This page took 0.059897 seconds and 4 git commands to generate.