kgdb.tmpl 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" []>
  4. <book id="kgdbOnLinux">
  5. <bookinfo>
  6. <title>Using kgdb, kdb and the kernel debugger internals</title>
  7. <authorgroup>
  8. <author>
  9. <firstname>Jason</firstname>
  10. <surname>Wessel</surname>
  11. <affiliation>
  12. <address>
  13. <email>jason.wessel@windriver.com</email>
  14. </address>
  15. </affiliation>
  16. </author>
  17. </authorgroup>
  18. <copyright>
  19. <year>2008,2010</year>
  20. <holder>Wind River Systems, Inc.</holder>
  21. </copyright>
  22. <copyright>
  23. <year>2004-2005</year>
  24. <holder>MontaVista Software, Inc.</holder>
  25. </copyright>
  26. <copyright>
  27. <year>2004</year>
  28. <holder>Amit S. Kale</holder>
  29. </copyright>
  30. <legalnotice>
  31. <para>
  32. This file is licensed under the terms of the GNU General Public License
  33. version 2. This program is licensed "as is" without any warranty of any
  34. kind, whether express or implied.
  35. </para>
  36. </legalnotice>
  37. </bookinfo>
  38. <toc></toc>
  39. <chapter id="Introduction">
  40. <title>Introduction</title>
  41. <para>
  42. The kernel has two different debugger front ends (kdb and kgdb)
  43. which interface to the debug core. It is possible to use either
  44. of the debugger front ends and dynamically transition between them
  45. if you configure the kernel properly at compile and runtime.
  46. </para>
  47. <para>
  48. Kdb is simplistic shell-style interface which you can use on a
  49. system console with a keyboard or serial console. You can use it
  50. to inspect memory, registers, process lists, dmesg, and even set
  51. breakpoints to stop in a certain location. Kdb is not a source
  52. level debugger, although you can set breakpoints and execute some
  53. basic kernel run control. Kdb is mainly aimed at doing some
  54. analysis to aid in development or diagnosing kernel problems. You
  55. can access some symbols by name in kernel built-ins or in kernel
  56. modules if the code was built
  57. with <symbol>CONFIG_KALLSYMS</symbol>.
  58. </para>
  59. <para>
  60. Kgdb is intended to be used as a source level debugger for the
  61. Linux kernel. It is used along with gdb to debug a Linux kernel.
  62. The expectation is that gdb can be used to "break in" to the
  63. kernel to inspect memory, variables and look through call stack
  64. information similar to the way an application developer would use
  65. gdb to debug an application. It is possible to place breakpoints
  66. in kernel code and perform some limited execution stepping.
  67. </para>
  68. <para>
  69. Two machines are required for using kgdb. One of these machines is
  70. a development machine and the other is the target machine. The
  71. kernel to be debugged runs on the target machine. The development
  72. machine runs an instance of gdb against the vmlinux file which
  73. contains the symbols (not boot image such as bzImage, zImage,
  74. uImage...). In gdb the developer specifies the connection
  75. parameters and connects to kgdb. The type of connection a
  76. developer makes with gdb depends on the availability of kgdb I/O
  77. modules compiled as built-ins or loadable kernel modules in the test
  78. machine's kernel.
  79. </para>
  80. </chapter>
  81. <chapter id="CompilingAKernel">
  82. <title>Compiling a kernel</title>
  83. <para>
  84. <itemizedlist>
  85. <listitem><para>In order to enable compilation of kdb, you must first enable kgdb.</para></listitem>
  86. <listitem><para>The kgdb test compile options are described in the kgdb test suite chapter.</para></listitem>
  87. </itemizedlist>
  88. </para>
  89. <sect1 id="CompileKGDB">
  90. <title>Kernel config options for kgdb</title>
  91. <para>
  92. To enable <symbol>CONFIG_KGDB</symbol> you should first turn on
  93. "Prompt for development and/or incomplete code/drivers"
  94. (CONFIG_EXPERIMENTAL) in "General setup", then under the
  95. "Kernel debugging" select "KGDB: kernel debugger".
  96. </para>
  97. <para>
  98. While it is not a hard requirement that you have symbols in your
  99. vmlinux file, gdb tends not to be very useful without the symbolic
  100. data, so you will want to turn
  101. on <symbol>CONFIG_DEBUG_INFO</symbol> which is called "Compile the
  102. kernel with debug info" in the config menu.
  103. </para>
  104. <para>
  105. It is advised, but not required that you turn on the
  106. <symbol>CONFIG_FRAME_POINTER</symbol> kernel option which is called "Compile the
  107. kernel with frame pointers" in the config menu. This option
  108. inserts code to into the compiled executable which saves the frame
  109. information in registers or on the stack at different points which
  110. allows a debugger such as gdb to more accurately construct
  111. stack back traces while debugging the kernel.
  112. </para>
  113. <para>
  114. If the architecture that you are using supports the kernel option
  115. CONFIG_DEBUG_RODATA, you should consider turning it off. This
  116. option will prevent the use of software breakpoints because it
  117. marks certain regions of the kernel's memory space as read-only.
  118. If kgdb supports it for the architecture you are using, you can
  119. use hardware breakpoints if you desire to run with the
  120. CONFIG_DEBUG_RODATA option turned on, else you need to turn off
  121. this option.
  122. </para>
  123. <para>
  124. Next you should choose one of more I/O drivers to interconnect
  125. debugging host and debugged target. Early boot debugging requires
  126. a KGDB I/O driver that supports early debugging and the driver
  127. must be built into the kernel directly. Kgdb I/O driver
  128. configuration takes place via kernel or module parameters which
  129. you can learn more about in the in the section that describes the
  130. parameter "kgdboc".
  131. </para>
  132. <para>Here is an example set of .config symbols to enable or
  133. disable for kgdb:
  134. <itemizedlist>
  135. <listitem><para># CONFIG_DEBUG_RODATA is not set</para></listitem>
  136. <listitem><para>CONFIG_FRAME_POINTER=y</para></listitem>
  137. <listitem><para>CONFIG_KGDB=y</para></listitem>
  138. <listitem><para>CONFIG_KGDB_SERIAL_CONSOLE=y</para></listitem>
  139. </itemizedlist>
  140. </para>
  141. </sect1>
  142. <sect1 id="CompileKDB">
  143. <title>Kernel config options for kdb</title>
  144. <para>Kdb is quite a bit more complex than the simple gdbstub
  145. sitting on top of the kernel's debug core. Kdb must implement a
  146. shell, and also adds some helper functions in other parts of the
  147. kernel, responsible for printing out interesting data such as what
  148. you would see if you ran "lsmod", or "ps". In order to build kdb
  149. into the kernel you follow the same steps as you would for kgdb.
  150. </para>
  151. <para>The main config option for kdb
  152. is <symbol>CONFIG_KGDB_KDB</symbol> which is called "KGDB_KDB:
  153. include kdb frontend for kgdb" in the config menu. In theory you
  154. would have already also selected an I/O driver such as the
  155. CONFIG_KGDB_SERIAL_CONSOLE interface if you plan on using kdb on a
  156. serial port, when you were configuring kgdb.
  157. </para>
  158. <para>If you want to use a PS/2-style keyboard with kdb, you would
  159. select CONFIG_KDB_KEYBOARD which is called "KGDB_KDB: keyboard as
  160. input device" in the config menu. The CONFIG_KDB_KEYBOARD option
  161. is not used for anything in the gdb interface to kgdb. The
  162. CONFIG_KDB_KEYBOARD option only works with kdb.
  163. </para>
  164. <para>Here is an example set of .config symbols to enable/disable kdb:
  165. <itemizedlist>
  166. <listitem><para># CONFIG_DEBUG_RODATA is not set</para></listitem>
  167. <listitem><para>CONFIG_FRAME_POINTER=y</para></listitem>
  168. <listitem><para>CONFIG_KGDB=y</para></listitem>
  169. <listitem><para>CONFIG_KGDB_SERIAL_CONSOLE=y</para></listitem>
  170. <listitem><para>CONFIG_KGDB_KDB=y</para></listitem>
  171. <listitem><para>CONFIG_KDB_KEYBOARD=y</para></listitem>
  172. </itemizedlist>
  173. </para>
  174. </sect1>
  175. </chapter>
  176. <chapter id="kgdbKernelArgs">
  177. <title>Kernel Debugger Boot Arguments</title>
  178. <para>This section describes the various runtime kernel
  179. parameters that affect the configuration of the kernel debugger.
  180. The following chapter covers using kdb and kgdb as well as
  181. provides some examples of the configuration parameters.</para>
  182. <sect1 id="kgdboc">
  183. <title>Kernel parameter: kgdboc</title>
  184. <para>The kgdboc driver was originally an abbreviation meant to
  185. stand for "kgdb over console". Today it is the primary mechanism
  186. to configure how to communicate from gdb to kgdb as well as the
  187. devices you want to use to interact with the kdb shell.
  188. </para>
  189. <para>For kgdb/gdb, kgdboc is designed to work with a single serial
  190. port. It is intended to cover the circumstance where you want to
  191. use a serial console as your primary console as well as using it to
  192. perform kernel debugging. It is also possible to use kgdb on a
  193. serial port which is not designated as a system console. Kgdboc
  194. may be configured as a kernel built-in or a kernel loadable module.
  195. You can only make use of <constant>kgdbwait</constant> and early
  196. debugging if you build kgdboc into the kernel as a built-in.
  197. <para>Optionally you can elect to activate kms (Kernel Mode
  198. Setting) integration. When you use kms with kgdboc and you have a
  199. video driver that has atomic mode setting hooks, it is possible to
  200. enter the debugger on the graphics console. When the kernel
  201. execution is resumed, the previous graphics mode will be restored.
  202. This integration can serve as a useful tool to aid in diagnosing
  203. crashes or doing analysis of memory with kdb while allowing the
  204. full graphics console applications to run.
  205. </para>
  206. </para>
  207. <sect2 id="kgdbocArgs">
  208. <title>kgdboc arguments</title>
  209. <para>Usage: <constant>kgdboc=[kms][[,]kbd][[,]serial_device][,baud]</constant></para>
  210. <para>The order listed above must be observed if you use any of the
  211. optional configurations together.
  212. </para>
  213. <para>Abbreviations:
  214. <itemizedlist>
  215. <listitem><para>kms = Kernel Mode Setting</para></listitem>
  216. <listitem><para>kbd = Keyboard</para></listitem>
  217. </itemizedlist>
  218. </para>
  219. <para>You can configure kgdboc to use the keyboard, and or a serial
  220. device depending on if you are using kdb and or kgdb, in one of the
  221. following scenarios. The order listed above must be observed if
  222. you use any of the optional configurations together. Using kms +
  223. only gdb is generally not a useful combination.</para>
  224. <sect3 id="kgdbocArgs1">
  225. <title>Using loadable module or built-in</title>
  226. <para>
  227. <orderedlist>
  228. <listitem><para>As a kernel built-in:</para>
  229. <para>Use the kernel boot argument: <constant>kgdboc=&lt;tty-device&gt;,[baud]</constant></para></listitem>
  230. <listitem>
  231. <para>As a kernel loadable module:</para>
  232. <para>Use the command: <constant>modprobe kgdboc kgdboc=&lt;tty-device&gt;,[baud]</constant></para>
  233. <para>Here are two examples of how you might format the kgdboc
  234. string. The first is for an x86 target using the first serial port.
  235. The second example is for the ARM Versatile AB using the second
  236. serial port.
  237. <orderedlist>
  238. <listitem><para><constant>kgdboc=ttyS0,115200</constant></para></listitem>
  239. <listitem><para><constant>kgdboc=ttyAMA1,115200</constant></para></listitem>
  240. </orderedlist>
  241. </para>
  242. </listitem>
  243. </orderedlist></para>
  244. </sect3>
  245. <sect3 id="kgdbocArgs2">
  246. <title>Configure kgdboc at runtime with sysfs</title>
  247. <para>At run time you can enable or disable kgdboc by echoing a
  248. parameters into the sysfs. Here are two examples:</para>
  249. <orderedlist>
  250. <listitem><para>Enable kgdboc on ttyS0</para>
  251. <para><constant>echo ttyS0 &gt; /sys/module/kgdboc/parameters/kgdboc</constant></para></listitem>
  252. <listitem><para>Disable kgdboc</para>
  253. <para><constant>echo "" &gt; /sys/module/kgdboc/parameters/kgdboc</constant></para></listitem>
  254. </orderedlist>
  255. <para>NOTE: You do not need to specify the baud if you are
  256. configuring the console on tty which is already configured or
  257. open.</para>
  258. </sect3>
  259. <sect3 id="kgdbocArgs3">
  260. <title>More examples</title>
  261. <para>You can configure kgdboc to use the keyboard, and or a serial
  262. device depending on if you are using kdb and or kgdb, in one of the
  263. following scenarios.</para>
  264. <para>You can configure kgdboc to use the keyboard, and or a serial device
  265. depending on if you are using kdb and or kgdb, in one of the
  266. following scenarios.
  267. <orderedlist>
  268. <listitem><para>kdb and kgdb over only a serial port</para>
  269. <para><constant>kgdboc=&lt;serial_device&gt;[,baud]</constant></para>
  270. <para>Example: <constant>kgdboc=ttyS0,115200</constant></para>
  271. </listitem>
  272. <listitem><para>kdb and kgdb with keyboard and a serial port</para>
  273. <para><constant>kgdboc=kbd,&lt;serial_device&gt;[,baud]</constant></para>
  274. <para>Example: <constant>kgdboc=kbd,ttyS0,115200</constant></para>
  275. </listitem>
  276. <listitem><para>kdb with a keyboard</para>
  277. <para><constant>kgdboc=kbd</constant></para>
  278. </listitem>
  279. <listitem><para>kdb with kernel mode setting</para>
  280. <para><constant>kgdboc=kms,kbd</constant></para>
  281. </listitem>
  282. <listitem><para>kdb with kernel mode setting and kgdb over a serial port</para>
  283. <para><constant>kgdboc=kms,kbd,ttyS0,115200</constant></para>
  284. </listitem>
  285. </orderedlist>
  286. </para>
  287. </sect3>
  288. <para>NOTE: Kgdboc does not support interrupting the target via the
  289. gdb remote protocol. You must manually send a sysrq-g unless you
  290. have a proxy that splits console output to a terminal program.
  291. A console proxy has a separate TCP port for the debugger and a separate
  292. TCP port for the "human" console. The proxy can take care of sending
  293. the sysrq-g for you.
  294. </para>
  295. <para>When using kgdboc with no debugger proxy, you can end up
  296. connecting the debugger at one of two entry points. If an
  297. exception occurs after you have loaded kgdboc, a message should
  298. print on the console stating it is waiting for the debugger. In
  299. this case you disconnect your terminal program and then connect the
  300. debugger in its place. If you want to interrupt the target system
  301. and forcibly enter a debug session you have to issue a Sysrq
  302. sequence and then type the letter <constant>g</constant>. Then
  303. you disconnect the terminal session and connect gdb. Your options
  304. if you don't like this are to hack gdb to send the sysrq-g for you
  305. as well as on the initial connect, or to use a debugger proxy that
  306. allows an unmodified gdb to do the debugging.
  307. </para>
  308. </sect2>
  309. </sect1>
  310. <sect1 id="kgdbwait">
  311. <title>Kernel parameter: kgdbwait</title>
  312. <para>
  313. The Kernel command line option <constant>kgdbwait</constant> makes
  314. kgdb wait for a debugger connection during booting of a kernel. You
  315. can only use this option you compiled a kgdb I/O driver into the
  316. kernel and you specified the I/O driver configuration as a kernel
  317. command line option. The kgdbwait parameter should always follow the
  318. configuration parameter for the kgdb I/O driver in the kernel
  319. command line else the I/O driver will not be configured prior to
  320. asking the kernel to use it to wait.
  321. </para>
  322. <para>
  323. The kernel will stop and wait as early as the I/O driver and
  324. architecture allows when you use this option. If you build the
  325. kgdb I/O driver as a loadable kernel module kgdbwait will not do
  326. anything.
  327. </para>
  328. </sect1>
  329. <sect1 id="kgdbcon">
  330. <title>Kernel parameter: kgdbcon</title>
  331. <para> The kgdbcon feature allows you to see printk() messages
  332. inside gdb while gdb is connected to the kernel. Kdb does not make
  333. use of the kgdbcon feature.
  334. </para>
  335. <para>Kgdb supports using the gdb serial protocol to send console
  336. messages to the debugger when the debugger is connected and running.
  337. There are two ways to activate this feature.
  338. <orderedlist>
  339. <listitem><para>Activate with the kernel command line option:</para>
  340. <para><constant>kgdbcon</constant></para>
  341. </listitem>
  342. <listitem><para>Use sysfs before configuring an I/O driver</para>
  343. <para>
  344. <constant>echo 1 &gt; /sys/module/kgdb/parameters/kgdb_use_con</constant>
  345. </para>
  346. <para>
  347. NOTE: If you do this after you configure the kgdb I/O driver, the
  348. setting will not take effect until the next point the I/O is
  349. reconfigured.
  350. </para>
  351. </listitem>
  352. </orderedlist>
  353. <para>IMPORTANT NOTE: You cannot use kgdboc + kgdbcon on a tty that is an
  354. active system console. An example incorrect usage is <constant>console=ttyS0,115200 kgdboc=ttyS0 kgdbcon</constant>
  355. </para>
  356. <para>It is possible to use this option with kgdboc on a tty that is not a system console.
  357. </para>
  358. </para>
  359. </sect1>
  360. </chapter>
  361. <chapter id="usingKDB">
  362. <title>Using kdb</title>
  363. <para>
  364. </para>
  365. <sect1 id="quickKDBserial">
  366. <title>Quick start for kdb on a serial port</title>
  367. <para>This is a quick example of how to use kdb.</para>
  368. <para><orderedlist>
  369. <listitem><para>Boot kernel with arguments:
  370. <itemizedlist>
  371. <listitem><para><constant>console=ttyS0,115200 kgdboc=ttyS0,115200</constant></para></listitem>
  372. </itemizedlist></para>
  373. <para>OR</para>
  374. <para>Configure kgdboc after the kernel booted; assuming you are using a serial port console:
  375. <itemizedlist>
  376. <listitem><para><constant>echo ttyS0 &gt; /sys/module/kgdboc/parameters/kgdboc</constant></para></listitem>
  377. </itemizedlist>
  378. </para>
  379. </listitem>
  380. <listitem><para>Enter the kernel debugger manually or by waiting for an oops or fault. There are several ways you can enter the kernel debugger manually; all involve using the sysrq-g, which means you must have enabled CONFIG_MAGIC_SYSRQ=y in your kernel config.</para>
  381. <itemizedlist>
  382. <listitem><para>When logged in as root or with a super user session you can run:</para>
  383. <para><constant>echo g &gt; /proc/sysrq-trigger</constant></para></listitem>
  384. <listitem><para>Example using minicom 2.2</para>
  385. <para>Press: <constant>Control-a</constant></para>
  386. <para>Press: <constant>f</constant></para>
  387. <para>Press: <constant>g</constant></para>
  388. </listitem>
  389. <listitem><para>When you have telneted to a terminal server that supports sending a remote break</para>
  390. <para>Press: <constant>Control-]</constant></para>
  391. <para>Type in:<constant>send break</constant></para>
  392. <para>Press: <constant>Enter</constant></para>
  393. <para>Press: <constant>g</constant></para>
  394. </listitem>
  395. </itemizedlist>
  396. </listitem>
  397. <listitem><para>From the kdb prompt you can run the "help" command to see a complete list of the commands that are available.</para>
  398. <para>Some useful commands in kdb include:
  399. <itemizedlist>
  400. <listitem><para>lsmod -- Shows where kernel modules are loaded</para></listitem>
  401. <listitem><para>ps -- Displays only the active processes</para></listitem>
  402. <listitem><para>ps A -- Shows all the processes</para></listitem>
  403. <listitem><para>summary -- Shows kernel version info and memory usage</para></listitem>
  404. <listitem><para>bt -- Get a backtrace of the current process using dump_stack()</para></listitem>
  405. <listitem><para>dmesg -- View the kernel syslog buffer</para></listitem>
  406. <listitem><para>go -- Continue the system</para></listitem>
  407. </itemizedlist>
  408. </para>
  409. </listitem>
  410. <listitem>
  411. <para>When you are done using kdb you need to consider rebooting the
  412. system or using the "go" command to resuming normal kernel
  413. execution. If you have paused the kernel for a lengthy period of
  414. time, applications that rely on timely networking or anything to do
  415. with real wall clock time could be adversely affected, so you
  416. should take this into consideration when using the kernel
  417. debugger.</para>
  418. </listitem>
  419. </orderedlist></para>
  420. </sect1>
  421. <sect1 id="quickKDBkeyboard">
  422. <title>Quick start for kdb using a keyboard connected console</title>
  423. <para>This is a quick example of how to use kdb with a keyboard.</para>
  424. <para><orderedlist>
  425. <listitem><para>Boot kernel with arguments:
  426. <itemizedlist>
  427. <listitem><para><constant>kgdboc=kbd</constant></para></listitem>
  428. </itemizedlist></para>
  429. <para>OR</para>
  430. <para>Configure kgdboc after the kernel booted:
  431. <itemizedlist>
  432. <listitem><para><constant>echo kbd &gt; /sys/module/kgdboc/parameters/kgdboc</constant></para></listitem>
  433. </itemizedlist>
  434. </para>
  435. </listitem>
  436. <listitem><para>Enter the kernel debugger manually or by waiting for an oops or fault. There are several ways you can enter the kernel debugger manually; all involve using the sysrq-g, which means you must have enabled CONFIG_MAGIC_SYSRQ=y in your kernel config.</para>
  437. <itemizedlist>
  438. <listitem><para>When logged in as root or with a super user session you can run:</para>
  439. <para><constant>echo g &gt; /proc/sysrq-trigger</constant></para></listitem>
  440. <listitem><para>Example using a laptop keyboard</para>
  441. <para>Press and hold down: <constant>Alt</constant></para>
  442. <para>Press and hold down: <constant>Fn</constant></para>
  443. <para>Press and release the key with the label: <constant>SysRq</constant></para>
  444. <para>Release: <constant>Fn</constant></para>
  445. <para>Press and release: <constant>g</constant></para>
  446. <para>Release: <constant>Alt</constant></para>
  447. </listitem>
  448. <listitem><para>Example using a PS/2 101-key keyboard</para>
  449. <para>Press and hold down: <constant>Alt</constant></para>
  450. <para>Press and release the key with the label: <constant>SysRq</constant></para>
  451. <para>Press and release: <constant>g</constant></para>
  452. <para>Release: <constant>Alt</constant></para>
  453. </listitem>
  454. </itemizedlist>
  455. </listitem>
  456. <listitem>
  457. <para>Now type in a kdb command such as "help", "dmesg", "bt" or "go" to continue kernel execution.</para>
  458. </listitem>
  459. </orderedlist></para>
  460. </sect1>
  461. </chapter>
  462. <chapter id="EnableKGDB">
  463. <title>Using kgdb / gdb</title>
  464. <para>In order to use kgdb you must activate it by passing
  465. configuration information to one of the kgdb I/O drivers. If you
  466. do not pass any configuration information kgdb will not do anything
  467. at all. Kgdb will only actively hook up to the kernel trap hooks
  468. if a kgdb I/O driver is loaded and configured. If you unconfigure
  469. a kgdb I/O driver, kgdb will unregister all the kernel hook points.
  470. </para>
  471. <para> All kgdb I/O drivers can be reconfigured at run time, if
  472. <symbol>CONFIG_SYSFS</symbol> and <symbol>CONFIG_MODULES</symbol>
  473. are enabled, by echo'ing a new config string to
  474. <constant>/sys/module/&lt;driver&gt;/parameter/&lt;option&gt;</constant>.
  475. The driver can be unconfigured by passing an empty string. You cannot
  476. change the configuration while the debugger is attached. Make sure
  477. to detach the debugger with the <constant>detach</constant> command
  478. prior to trying to unconfigure a kgdb I/O driver.
  479. </para>
  480. <sect1 id="ConnectingGDB">
  481. <title>Connecting with gdb to a serial port</title>
  482. <orderedlist>
  483. <listitem><para>Configure kgdboc</para>
  484. <para>Boot kernel with arguments:
  485. <itemizedlist>
  486. <listitem><para><constant>kgdboc=ttyS0,115200</constant></para></listitem>
  487. </itemizedlist></para>
  488. <para>OR</para>
  489. <para>Configure kgdboc after the kernel booted:
  490. <itemizedlist>
  491. <listitem><para><constant>echo ttyS0 &gt; /sys/module/kgdboc/parameters/kgdboc</constant></para></listitem>
  492. </itemizedlist></para>
  493. </listitem>
  494. <listitem>
  495. <para>Stop kernel execution (break into the debugger)</para>
  496. <para>In order to connect to gdb via kgdboc, the kernel must
  497. first be stopped. There are several ways to stop the kernel which
  498. include using kgdbwait as a boot argument, via a sysrq-g, or running
  499. the kernel until it takes an exception where it waits for the
  500. debugger to attach.
  501. <itemizedlist>
  502. <listitem><para>When logged in as root or with a super user session you can run:</para>
  503. <para><constant>echo g &gt; /proc/sysrq-trigger</constant></para></listitem>
  504. <listitem><para>Example using minicom 2.2</para>
  505. <para>Press: <constant>Control-a</constant></para>
  506. <para>Press: <constant>f</constant></para>
  507. <para>Press: <constant>g</constant></para>
  508. </listitem>
  509. <listitem><para>When you have telneted to a terminal server that supports sending a remote break</para>
  510. <para>Press: <constant>Control-]</constant></para>
  511. <para>Type in:<constant>send break</constant></para>
  512. <para>Press: <constant>Enter</constant></para>
  513. <para>Press: <constant>g</constant></para>
  514. </listitem>
  515. </itemizedlist>
  516. </para>
  517. </listitem>
  518. <listitem>
  519. <para>Connect from from gdb</para>
  520. <para>
  521. Example (using a directly connected port):
  522. </para>
  523. <programlisting>
  524. % gdb ./vmlinux
  525. (gdb) set remotebaud 115200
  526. (gdb) target remote /dev/ttyS0
  527. </programlisting>
  528. <para>
  529. Example (kgdb to a terminal server on TCP port 2012):
  530. </para>
  531. <programlisting>
  532. % gdb ./vmlinux
  533. (gdb) target remote 192.168.2.2:2012
  534. </programlisting>
  535. <para>
  536. Once connected, you can debug a kernel the way you would debug an
  537. application program.
  538. </para>
  539. <para>
  540. If you are having problems connecting or something is going
  541. seriously wrong while debugging, it will most often be the case
  542. that you want to enable gdb to be verbose about its target
  543. communications. You do this prior to issuing the <constant>target
  544. remote</constant> command by typing in: <constant>set debug remote 1</constant>
  545. </para>
  546. </listitem>
  547. </orderedlist>
  548. <para>Remember if you continue in gdb, and need to "break in" again,
  549. you need to issue an other sysrq-g. It is easy to create a simple
  550. entry point by putting a breakpoint at <constant>sys_sync</constant>
  551. and then you can run "sync" from a shell or script to break into the
  552. debugger.</para>
  553. </sect1>
  554. </chapter>
  555. <chapter id="switchKdbKgdb">
  556. <title>kgdb and kdb interoperability</title>
  557. <para>It is possible to transition between kdb and kgdb dynamically.
  558. The debug core will remember which you used the last time and
  559. automatically start in the same mode.</para>
  560. <sect1>
  561. <title>Switching between kdb and kgdb</title>
  562. <sect2>
  563. <title>Switching from kgdb to kdb</title>
  564. <para>
  565. There are two ways to switch from kgdb to kdb: you can use gdb to
  566. issue a maintenance packet, or you can blindly type the command $3#33.
  567. Whenever kernel debugger stops in kgdb mode it will print the
  568. message <constant>KGDB or $3#33 for KDB</constant>. It is important
  569. to note that you have to type the sequence correctly in one pass.
  570. You cannot type a backspace or delete because kgdb will interpret
  571. that as part of the debug stream.
  572. <orderedlist>
  573. <listitem><para>Change from kgdb to kdb by blindly typing:</para>
  574. <para><constant>$3#33</constant></para></listitem>
  575. <listitem><para>Change from kgdb to kdb with gdb</para>
  576. <para><constant>maintenance packet 3</constant></para>
  577. <para>NOTE: Now you must kill gdb. Typically you press control-z and
  578. issue the command: kill -9 %</para></listitem>
  579. </orderedlist>
  580. </para>
  581. </sect2>
  582. <sect2>
  583. <title>Change from kdb to kgdb</title>
  584. <para>There are two ways you can change from kdb to kgdb. You can
  585. manually enter kgdb mode by issuing the kgdb command from the kdb
  586. shell prompt, or you can connect gdb while the kdb shell prompt is
  587. active. The kdb shell looks for the typical first commands that gdb
  588. would issue with the gdb remote protocol and if it sees one of those
  589. commands it automatically changes into kgdb mode.</para>
  590. <orderedlist>
  591. <listitem><para>From kdb issue the command:</para>
  592. <para><constant>kgdb</constant></para>
  593. <para>Now disconnect your terminal program and connect gdb in its place</para></listitem>
  594. <listitem><para>At the kdb prompt, disconnect the terminal program and connect gdb in its place.</para></listitem>
  595. </orderedlist>
  596. </sect2>
  597. </sect1>
  598. <sect1>
  599. <title>Running kdb commands from gdb</title>
  600. <para>It is possible to run a limited set of kdb commands from gdb,
  601. using the gdb monitor command. You don't want to execute any of the
  602. run control or breakpoint operations, because it can disrupt the
  603. state of the kernel debugger. You should be using gdb for
  604. breakpoints and run control operations if you have gdb connected.
  605. The more useful commands to run are things like lsmod, dmesg, ps or
  606. possibly some of the memory information commands. To see all the kdb
  607. commands you can run <constant>monitor help</constant>.</para>
  608. <para>Example:
  609. <informalexample><programlisting>
  610. (gdb) monitor ps
  611. 1 idle process (state I) and
  612. 27 sleeping system daemon (state M) processes suppressed,
  613. use 'ps A' to see all.
  614. Task Addr Pid Parent [*] cpu State Thread Command
  615. 0xc78291d0 1 0 0 0 S 0xc7829404 init
  616. 0xc7954150 942 1 0 0 S 0xc7954384 dropbear
  617. 0xc78789c0 944 1 0 0 S 0xc7878bf4 sh
  618. (gdb)
  619. </programlisting></informalexample>
  620. </para>
  621. </sect1>
  622. </chapter>
  623. <chapter id="KGDBTestSuite">
  624. <title>kgdb Test Suite</title>
  625. <para>
  626. When kgdb is enabled in the kernel config you can also elect to
  627. enable the config parameter KGDB_TESTS. Turning this on will
  628. enable a special kgdb I/O module which is designed to test the
  629. kgdb internal functions.
  630. </para>
  631. <para>
  632. The kgdb tests are mainly intended for developers to test the kgdb
  633. internals as well as a tool for developing a new kgdb architecture
  634. specific implementation. These tests are not really for end users
  635. of the Linux kernel. The primary source of documentation would be
  636. to look in the drivers/misc/kgdbts.c file.
  637. </para>
  638. <para>
  639. The kgdb test suite can also be configured at compile time to run
  640. the core set of tests by setting the kernel config parameter
  641. KGDB_TESTS_ON_BOOT. This particular option is aimed at automated
  642. regression testing and does not require modifying the kernel boot
  643. config arguments. If this is turned on, the kgdb test suite can
  644. be disabled by specifying "kgdbts=" as a kernel boot argument.
  645. </para>
  646. </chapter>
  647. <chapter id="CommonBackEndReq">
  648. <title>Kernel Debugger Internals</title>
  649. <sect1 id="kgdbArchitecture">
  650. <title>Architecture Specifics</title>
  651. <para>
  652. The kernel debugger is organized into a number of components:
  653. <orderedlist>
  654. <listitem><para>The debug core</para>
  655. <para>
  656. The debug core is found in kernel/debugger/debug_core.c. It contains:
  657. <itemizedlist>
  658. <listitem><para>A generic OS exception handler which includes
  659. sync'ing the processors into a stopped state on an multi-CPU
  660. system.</para></listitem>
  661. <listitem><para>The API to talk to the kgdb I/O drivers</para></listitem>
  662. <listitem><para>The API to make calls to the arch-specific kgdb implementation</para></listitem>
  663. <listitem><para>The logic to perform safe memory reads and writes to memory while using the debugger</para></listitem>
  664. <listitem><para>A full implementation for software breakpoints unless overridden by the arch</para></listitem>
  665. <listitem><para>The API to invoke either the kdb or kgdb frontend to the debug core.</para></listitem>
  666. <listitem><para>The structures and callback API for atomic kernel mode setting.</para>
  667. <para>NOTE: kgdboc is where the kms callbacks are invoked.</para></listitem>
  668. </itemizedlist>
  669. </para>
  670. </listitem>
  671. <listitem><para>kgdb arch-specific implementation</para>
  672. <para>
  673. This implementation is generally found in arch/*/kernel/kgdb.c.
  674. As an example, arch/x86/kernel/kgdb.c contains the specifics to
  675. implement HW breakpoint as well as the initialization to
  676. dynamically register and unregister for the trap handlers on
  677. this architecture. The arch-specific portion implements:
  678. <itemizedlist>
  679. <listitem><para>contains an arch-specific trap catcher which
  680. invokes kgdb_handle_exception() to start kgdb about doing its
  681. work</para></listitem>
  682. <listitem><para>translation to and from gdb specific packet format to pt_regs</para></listitem>
  683. <listitem><para>Registration and unregistration of architecture specific trap hooks</para></listitem>
  684. <listitem><para>Any special exception handling and cleanup</para></listitem>
  685. <listitem><para>NMI exception handling and cleanup</para></listitem>
  686. <listitem><para>(optional)HW breakpoints</para></listitem>
  687. </itemizedlist>
  688. </para>
  689. </listitem>
  690. <listitem><para>gdbstub frontend (aka kgdb)</para>
  691. <para>The gdbstub is located in kernel/debug/gdbstub.c. It contains:</para>
  692. <itemizedlist>
  693. <listitem><para>All the logic to implement the gdb serial protocol</para></listitem>
  694. </itemizedlist>
  695. </listitem>
  696. <listitem><para>kdb frontend</para>
  697. <para>The kdb debugger shell is broken down into a number of
  698. components. The kdb core is located in kernel/debug/kdb. There
  699. are a number of helper functions in some of the other kernel
  700. components to make it possible for kdb to examine and report
  701. information about the kernel without taking locks that could
  702. cause a kernel deadlock. The kdb core contains implements the following functionality.</para>
  703. <itemizedlist>
  704. <listitem><para>A simple shell</para></listitem>
  705. <listitem><para>The kdb core command set</para></listitem>
  706. <listitem><para>A registration API to register additional kdb shell commands.</para>
  707. <itemizedlist>
  708. <listitem><para>A good example of a self-contained kdb module
  709. is the "ftdump" command for dumping the ftrace buffer. See:
  710. kernel/trace/trace_kdb.c</para></listitem>
  711. <listitem><para>For an example of how to dynamically register
  712. a new kdb command you can build the kdb_hello.ko kernel module
  713. from samples/kdb/kdb_hello.c. To build this example you can
  714. set CONFIG_SAMPLES=y and CONFIG_SAMPLE_KDB=m in your kernel
  715. config. Later run "modprobe kdb_hello" and the next time you
  716. enter the kdb shell, you can run the "hello"
  717. command.</para></listitem>
  718. </itemizedlist></listitem>
  719. <listitem><para>The implementation for kdb_printf() which
  720. emits messages directly to I/O drivers, bypassing the kernel
  721. log.</para></listitem>
  722. <listitem><para>SW / HW breakpoint management for the kdb shell</para></listitem>
  723. </itemizedlist>
  724. </listitem>
  725. <listitem><para>kgdb I/O driver</para>
  726. <para>
  727. Each kgdb I/O driver has to provide an implementation for the following:
  728. <itemizedlist>
  729. <listitem><para>configuration via built-in or module</para></listitem>
  730. <listitem><para>dynamic configuration and kgdb hook registration calls</para></listitem>
  731. <listitem><para>read and write character interface</para></listitem>
  732. <listitem><para>A cleanup handler for unconfiguring from the kgdb core</para></listitem>
  733. <listitem><para>(optional) Early debug methodology</para></listitem>
  734. </itemizedlist>
  735. Any given kgdb I/O driver has to operate very closely with the
  736. hardware and must do it in such a way that does not enable
  737. interrupts or change other parts of the system context without
  738. completely restoring them. The kgdb core will repeatedly "poll"
  739. a kgdb I/O driver for characters when it needs input. The I/O
  740. driver is expected to return immediately if there is no data
  741. available. Doing so allows for the future possibility to touch
  742. watch dog hardware in such a way as to have a target system not
  743. reset when these are enabled.
  744. </para>
  745. </listitem>
  746. </orderedlist>
  747. </para>
  748. <para>
  749. If you are intent on adding kgdb architecture specific support
  750. for a new architecture, the architecture should define
  751. <constant>HAVE_ARCH_KGDB</constant> in the architecture specific
  752. Kconfig file. This will enable kgdb for the architecture, and
  753. at that point you must create an architecture specific kgdb
  754. implementation.
  755. </para>
  756. <para>
  757. There are a few flags which must be set on every architecture in
  758. their &lt;asm/kgdb.h&gt; file. These are:
  759. <itemizedlist>
  760. <listitem>
  761. <para>
  762. NUMREGBYTES: The size in bytes of all of the registers, so
  763. that we can ensure they will all fit into a packet.
  764. </para>
  765. <para>
  766. BUFMAX: The size in bytes of the buffer GDB will read into.
  767. This must be larger than NUMREGBYTES.
  768. </para>
  769. <para>
  770. CACHE_FLUSH_IS_SAFE: Set to 1 if it is always safe to call
  771. flush_cache_range or flush_icache_range. On some architectures,
  772. these functions may not be safe to call on SMP since we keep other
  773. CPUs in a holding pattern.
  774. </para>
  775. </listitem>
  776. </itemizedlist>
  777. </para>
  778. <para>
  779. There are also the following functions for the common backend,
  780. found in kernel/kgdb.c, that must be supplied by the
  781. architecture-specific backend unless marked as (optional), in
  782. which case a default function maybe used if the architecture
  783. does not need to provide a specific implementation.
  784. </para>
  785. !Iinclude/linux/kgdb.h
  786. </sect1>
  787. <sect1 id="kgdbocDesign">
  788. <title>kgdboc internals</title>
  789. <sect2>
  790. <title>kgdboc and uarts</title>
  791. <para>
  792. The kgdboc driver is actually a very thin driver that relies on the
  793. underlying low level to the hardware driver having "polling hooks"
  794. which the to which the tty driver is attached. In the initial
  795. implementation of kgdboc it the serial_core was changed to expose a
  796. low level UART hook for doing polled mode reading and writing of a
  797. single character while in an atomic context. When kgdb makes an I/O
  798. request to the debugger, kgdboc invokes a callback in the serial
  799. core which in turn uses the callback in the UART driver.</para>
  800. <para>
  801. When using kgdboc with a UART, the UART driver must implement two callbacks in the <constant>struct uart_ops</constant>. Example from drivers/8250.c:<programlisting>
  802. #ifdef CONFIG_CONSOLE_POLL
  803. .poll_get_char = serial8250_get_poll_char,
  804. .poll_put_char = serial8250_put_poll_char,
  805. #endif
  806. </programlisting>
  807. Any implementation specifics around creating a polling driver use the
  808. <constant>#ifdef CONFIG_CONSOLE_POLL</constant>, as shown above.
  809. Keep in mind that polling hooks have to be implemented in such a way
  810. that they can be called from an atomic context and have to restore
  811. the state of the UART chip on return such that the system can return
  812. to normal when the debugger detaches. You need to be very careful
  813. with any kind of lock you consider, because failing here is most likely
  814. going to mean pressing the reset button.
  815. </para>
  816. </sect2>
  817. <sect2 id="kgdbocKbd">
  818. <title>kgdboc and keyboards</title>
  819. <para>The kgdboc driver contains logic to configure communications
  820. with an attached keyboard. The keyboard infrastructure is only
  821. compiled into the kernel when CONFIG_KDB_KEYBOARD=y is set in the
  822. kernel configuration.</para>
  823. <para>The core polled keyboard driver driver for PS/2 type keyboards
  824. is in drivers/char/kdb_keyboard.c. This driver is hooked into the
  825. debug core when kgdboc populates the callback in the array
  826. called <constant>kdb_poll_funcs[]</constant>. The
  827. kdb_get_kbd_char() is the top-level function which polls hardware
  828. for single character input.
  829. </para>
  830. </sect2>
  831. <sect2 id="kgdbocKms">
  832. <title>kgdboc and kms</title>
  833. <para>The kgdboc driver contains logic to request the graphics
  834. display to switch to a text context when you are using
  835. "kgdboc=kms,kbd", provided that you have a video driver which has a
  836. frame buffer console and atomic kernel mode setting support.</para>
  837. <para>
  838. Every time the kernel
  839. debugger is entered it calls kgdboc_pre_exp_handler() which in turn
  840. calls con_debug_enter() in the virtual console layer. On resuming kernel
  841. execution, the kernel debugger calls kgdboc_post_exp_handler() which
  842. in turn calls con_debug_leave().</para>
  843. <para>Any video driver that wants to be compatible with the kernel
  844. debugger and the atomic kms callbacks must implement the
  845. mode_set_base_atomic, fb_debug_enter and fb_debug_leave operations.
  846. For the fb_debug_enter and fb_debug_leave the option exists to use
  847. the generic drm fb helper functions or implement something custom for
  848. the hardware. The following example shows the initialization of the
  849. .mode_set_base_atomic operation in
  850. drivers/gpu/drm/i915/intel_display.c:
  851. <informalexample>
  852. <programlisting>
  853. static const struct drm_crtc_helper_funcs intel_helper_funcs = {
  854. [...]
  855. .mode_set_base_atomic = intel_pipe_set_base_atomic,
  856. [...]
  857. };
  858. </programlisting>
  859. </informalexample>
  860. </para>
  861. <para>Here is an example of how the i915 driver initializes the fb_debug_enter and fb_debug_leave functions to use the generic drm helpers in
  862. drivers/gpu/drm/i915/intel_fb.c:
  863. <informalexample>
  864. <programlisting>
  865. static struct fb_ops intelfb_ops = {
  866. [...]
  867. .fb_debug_enter = drm_fb_helper_debug_enter,
  868. .fb_debug_leave = drm_fb_helper_debug_leave,
  869. [...]
  870. };
  871. </programlisting>
  872. </informalexample>
  873. </para>
  874. </sect2>
  875. </sect1>
  876. </chapter>
  877. <chapter id="credits">
  878. <title>Credits</title>
  879. <para>
  880. The following people have contributed to this document:
  881. <orderedlist>
  882. <listitem><para>Amit Kale<email>amitkale@linsyssoft.com</email></para></listitem>
  883. <listitem><para>Tom Rini<email>trini@kernel.crashing.org</email></para></listitem>
  884. </orderedlist>
  885. In March 2008 this document was completely rewritten by:
  886. <itemizedlist>
  887. <listitem><para>Jason Wessel<email>jason.wessel@windriver.com</email></para></listitem>
  888. </itemizedlist>
  889. In Jan 2010 this document was updated to include kdb.
  890. <itemizedlist>
  891. <listitem><para>Jason Wessel<email>jason.wessel@windriver.com</email></para></listitem>
  892. </itemizedlist>
  893. </para>
  894. </chapter>
  895. </book>