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