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