Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Provide a default dump_stack() function for architectures |
| 3 | * which don't implement their own. |
| 4 | */ |
| 5 | |
| 6 | #include <linux/kernel.h> |
Paul Gortmaker | 8bc3bcc | 2011-11-16 21:29:17 -0500 | [diff] [blame] | 7 | #include <linux/export.h> |
Tejun Heo | 196779b | 2013-04-30 15:27:12 -0700 | [diff] [blame] | 8 | #include <linux/sched.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 9 | #include <linux/sched/debug.h> |
Alex Thorlton | b58d977 | 2013-07-03 15:04:59 -0700 | [diff] [blame] | 10 | #include <linux/smp.h> |
| 11 | #include <linux/atomic.h> |
| 12 | |
| 13 | static void __dump_stack(void) |
| 14 | { |
| 15 | dump_stack_print_info(KERN_DEFAULT); |
| 16 | show_stack(NULL, NULL); |
| 17 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Tejun Heo | 196779b | 2013-04-30 15:27:12 -0700 | [diff] [blame] | 19 | /** |
| 20 | * dump_stack - dump the current task information and its stack trace |
| 21 | * |
| 22 | * Architectures can override this implementation by implementing its own. |
| 23 | */ |
Alex Thorlton | b58d977 | 2013-07-03 15:04:59 -0700 | [diff] [blame] | 24 | #ifdef CONFIG_SMP |
| 25 | static atomic_t dump_lock = ATOMIC_INIT(-1); |
| 26 | |
Andi Kleen | 722a9f9 | 2014-05-02 00:44:38 +0200 | [diff] [blame] | 27 | asmlinkage __visible void dump_stack(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | { |
Eric Dumazet | d7ce369 | 2016-02-05 15:36:16 -0800 | [diff] [blame] | 29 | unsigned long flags; |
Alex Thorlton | b58d977 | 2013-07-03 15:04:59 -0700 | [diff] [blame] | 30 | int was_locked; |
| 31 | int old; |
| 32 | int cpu; |
| 33 | |
| 34 | /* |
| 35 | * Permit this cpu to perform nested stack dumps while serialising |
| 36 | * against other CPUs |
| 37 | */ |
Alex Thorlton | b58d977 | 2013-07-03 15:04:59 -0700 | [diff] [blame] | 38 | retry: |
Eric Dumazet | d7ce369 | 2016-02-05 15:36:16 -0800 | [diff] [blame] | 39 | local_irq_save(flags); |
Alex Thorlton | b58d977 | 2013-07-03 15:04:59 -0700 | [diff] [blame] | 40 | cpu = smp_processor_id(); |
| 41 | old = atomic_cmpxchg(&dump_lock, -1, cpu); |
| 42 | if (old == -1) { |
| 43 | was_locked = 0; |
| 44 | } else if (old == cpu) { |
| 45 | was_locked = 1; |
| 46 | } else { |
Eric Dumazet | d7ce369 | 2016-02-05 15:36:16 -0800 | [diff] [blame] | 47 | local_irq_restore(flags); |
Alex Thorlton | b58d977 | 2013-07-03 15:04:59 -0700 | [diff] [blame] | 48 | cpu_relax(); |
| 49 | goto retry; |
| 50 | } |
| 51 | |
| 52 | __dump_stack(); |
| 53 | |
| 54 | if (!was_locked) |
| 55 | atomic_set(&dump_lock, -1); |
| 56 | |
Eric Dumazet | d7ce369 | 2016-02-05 15:36:16 -0800 | [diff] [blame] | 57 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | } |
Alex Thorlton | b58d977 | 2013-07-03 15:04:59 -0700 | [diff] [blame] | 59 | #else |
Andi Kleen | 722a9f9 | 2014-05-02 00:44:38 +0200 | [diff] [blame] | 60 | asmlinkage __visible void dump_stack(void) |
Alex Thorlton | b58d977 | 2013-07-03 15:04:59 -0700 | [diff] [blame] | 61 | { |
| 62 | __dump_stack(); |
| 63 | } |
| 64 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | EXPORT_SYMBOL(dump_stack); |