Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 2 | |
Jan Engelhardt | e024cbd | 2008-04-25 18:35:29 +0200 | [diff] [blame] | 3 | config HAVE_ARCH_KGDB |
| 4 | bool |
| 5 | |
Vincent Chen | 8c080d3 | 2020-06-23 13:36:42 +0800 | [diff] [blame] | 6 | # set if architecture has the its kgdb_arch_handle_qxfer_pkt |
| 7 | # function to enable gdb stub to address XML packet sent from GDB. |
| 8 | config HAVE_ARCH_KGDB_QXFER_PKT |
| 9 | bool |
| 10 | |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 11 | menuconfig KGDB |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 12 | bool "KGDB: kernel debugger" |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 13 | depends on HAVE_ARCH_KGDB |
Kees Cook | 525c1f9 | 2013-01-16 18:54:16 -0800 | [diff] [blame] | 14 | depends on DEBUG_KERNEL |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 15 | help |
| 16 | If you say Y here, it will be possible to remotely debug the |
Jason Wessel | 5f5ddfb | 2008-08-01 08:39:34 -0500 | [diff] [blame] | 17 | kernel using gdb. It is recommended but not required, that |
| 18 | you also turn on the kernel config option |
| 19 | CONFIG_FRAME_POINTER to aid in producing more reliable stack |
| 20 | backtraces in the external debugger. Documentation of |
| 21 | kernel debugger is available at http://kgdb.sourceforge.net |
Mauro Carvalho Chehab | 08c76a2 | 2017-05-14 12:06:29 -0300 | [diff] [blame] | 22 | as well as in Documentation/dev-tools/kgdb.rst. If |
Jason Wessel | 5f5ddfb | 2008-08-01 08:39:34 -0500 | [diff] [blame] | 23 | unsure, say N. |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 24 | |
Jan Engelhardt | e024cbd | 2008-04-25 18:35:29 +0200 | [diff] [blame] | 25 | if KGDB |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 26 | |
| 27 | config KGDB_SERIAL_CONSOLE |
| 28 | tristate "KGDB: use kgdb over the serial console" |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 29 | select CONSOLE_POLL |
| 30 | select MAGIC_SYSRQ |
Jiri Slaby | c5d2cac | 2016-05-23 16:26:20 -0700 | [diff] [blame] | 31 | depends on TTY && HW_CONSOLE |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 32 | default y |
| 33 | help |
| 34 | Share a serial console with kgdb. Sysrq-g must be used |
| 35 | to break in initially. |
Jason Wessel | e8d31c2 | 2008-03-07 16:34:17 -0600 | [diff] [blame] | 36 | |
| 37 | config KGDB_TESTS |
| 38 | bool "KGDB: internal test suite" |
Jason Wessel | e8d31c2 | 2008-03-07 16:34:17 -0600 | [diff] [blame] | 39 | default n |
| 40 | help |
| 41 | This is a kgdb I/O module specifically designed to test |
| 42 | kgdb's internal functions. This kgdb I/O module is |
| 43 | intended to for the development of new kgdb stubs |
| 44 | as well as regression testing the kgdb internals. |
| 45 | See the drivers/misc/kgdbts.c for the details about |
| 46 | the tests. The most basic of this I/O module is to boot |
| 47 | a kernel boot arguments "kgdbwait kgdbts=V1F100" |
Jason Wessel | 974460c | 2008-03-20 13:43:44 -0500 | [diff] [blame] | 48 | |
| 49 | config KGDB_TESTS_ON_BOOT |
| 50 | bool "KGDB: Run tests on boot" |
| 51 | depends on KGDB_TESTS |
| 52 | default n |
| 53 | help |
| 54 | Run the kgdb tests on boot up automatically without the need |
| 55 | to pass in a kernel parameter |
| 56 | |
| 57 | config KGDB_TESTS_BOOT_STRING |
| 58 | string "KGDB: which internal kgdb tests to run" |
| 59 | depends on KGDB_TESTS_ON_BOOT |
| 60 | default "V1F100" |
| 61 | help |
| 62 | This is the command string to send the kgdb test suite on |
| 63 | boot. See the drivers/misc/kgdbts.c for detailed |
| 64 | information about other strings you could use beyond the |
| 65 | default of V1F100. |
Jan Engelhardt | e024cbd | 2008-04-25 18:35:29 +0200 | [diff] [blame] | 66 | |
Jason Wessel | f503b5a | 2010-05-20 21:04:25 -0500 | [diff] [blame] | 67 | config KGDB_LOW_LEVEL_TRAP |
| 68 | bool "KGDB: Allow debugging with traps in notifiers" |
Jason Wessel | 5dd11d5 | 2010-05-20 21:04:26 -0500 | [diff] [blame] | 69 | depends on X86 || MIPS |
Jason Wessel | f503b5a | 2010-05-20 21:04:25 -0500 | [diff] [blame] | 70 | default n |
| 71 | help |
Krzysztof Kozlowski | 68d4b3d | 2019-12-06 17:04:08 -0800 | [diff] [blame] | 72 | This will add an extra call back to kgdb for the breakpoint |
| 73 | exception handler which will allow kgdb to step through a |
| 74 | notify handler. |
Jason Wessel | f503b5a | 2010-05-20 21:04:25 -0500 | [diff] [blame] | 75 | |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 76 | config KGDB_KDB |
| 77 | bool "KGDB_KDB: include kdb frontend for kgdb" |
| 78 | default n |
| 79 | help |
| 80 | KDB frontend for kernel |
| 81 | |
Daniel Thompson | b801717 | 2014-11-06 14:36:47 +0000 | [diff] [blame] | 82 | config KDB_DEFAULT_ENABLE |
| 83 | hex "KDB: Select kdb command functions to be enabled by default" |
| 84 | depends on KGDB_KDB |
| 85 | default 0x1 |
| 86 | help |
| 87 | Specifiers which kdb commands are enabled by default. This may |
| 88 | be set to 1 or 0 to enable all commands or disable almost all |
| 89 | commands. |
| 90 | |
| 91 | Alternatively the following bitmask applies: |
| 92 | |
| 93 | 0x0002 - allow arbitrary reads from memory and symbol lookup |
| 94 | 0x0004 - allow arbitrary writes to memory |
| 95 | 0x0008 - allow current register state to be inspected |
| 96 | 0x0010 - allow current register state to be modified |
| 97 | 0x0020 - allow passive inspection (backtrace, process list, lsmod) |
| 98 | 0x0040 - allow flow control management (breakpoint, single step) |
| 99 | 0x0080 - enable signalling of processes |
| 100 | 0x0100 - allow machine to be rebooted |
| 101 | |
| 102 | The config option merely sets the default at boot time. Both |
| 103 | issuing 'echo X > /sys/module/kdb/parameters/cmd_enable' or |
Krzysztof Kozlowski | 68d4b3d | 2019-12-06 17:04:08 -0800 | [diff] [blame] | 104 | setting with kdb.cmd_enable=X kernel command line option will |
Daniel Thompson | b801717 | 2014-11-06 14:36:47 +0000 | [diff] [blame] | 105 | override the default settings. |
| 106 | |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 107 | config KDB_KEYBOARD |
| 108 | bool "KGDB_KDB: keyboard as input device" |
| 109 | depends on VT && KGDB_KDB |
| 110 | default n |
| 111 | help |
| 112 | KDB can use a PS/2 type keyboard for an input device |
| 113 | |
Robert Obermeier | 3b0eb71 | 2012-12-16 05:59:36 +0100 | [diff] [blame] | 114 | config KDB_CONTINUE_CATASTROPHIC |
| 115 | int "KDB: continue after catastrophic errors" |
| 116 | depends on KGDB_KDB |
| 117 | default "0" |
| 118 | help |
| 119 | This integer controls the behaviour of kdb when the kernel gets a |
| 120 | catastrophic error, i.e. for a panic or oops. |
| 121 | When KDB is active and a catastrophic error occurs, nothing extra |
| 122 | will happen until you type 'go'. |
| 123 | CONFIG_KDB_CONTINUE_CATASTROPHIC == 0 (default). The first time |
| 124 | you type 'go', you will be warned by kdb. The secend time you type |
| 125 | 'go', KDB tries to continue. No guarantees that the |
| 126 | kernel is still usable in this situation. |
| 127 | CONFIG_KDB_CONTINUE_CATASTROPHIC == 1. KDB tries to continue. |
| 128 | No guarantees that the kernel is still usable in this situation. |
| 129 | CONFIG_KDB_CONTINUE_CATASTROPHIC == 2. KDB forces a reboot. |
| 130 | If you are not sure, say 0. |
| 131 | |
Douglas Anderson | b1a57bb | 2020-05-07 13:08:42 -0700 | [diff] [blame] | 132 | config ARCH_HAS_EARLY_DEBUG |
| 133 | bool |
| 134 | default n |
| 135 | help |
| 136 | If an architecture can definitely handle entering the debugger |
| 137 | when early_param's are parsed then it select this config. |
| 138 | Otherwise, if "kgdbwait" is passed on the kernel command line it |
| 139 | won't actually be processed until dbg_late_init() just after the |
| 140 | call to kgdb_arch_late() is made. |
| 141 | |
| 142 | NOTE: Even if this isn't selected by an architecture we will |
| 143 | still try to register kgdb to handle breakpoints and crashes |
| 144 | when early_param's are parsed, we just won't act on the |
| 145 | "kgdbwait" parameter until dbg_late_init(). If you get a |
| 146 | crash and try to drop into kgdb somewhere between these two |
| 147 | places you might or might not end up being able to use kgdb |
| 148 | depending on exactly how far along the architecture has initted. |
| 149 | |
Jan Engelhardt | e024cbd | 2008-04-25 18:35:29 +0200 | [diff] [blame] | 150 | endif # KGDB |