• 使用kdb和kgdb调试Linux内核(1)


    This article was firstly published from http://oliveryang.net. The content reuse need include the original link.

    1. Background

    1.1 What is the kgdb?

    The kgdb is a kernel debugger. Similar with gdb for user application debug, kgdb is used for kernel debug. The debugger allows set break points in kernel code path, check kernel data structure, and control the kernel code running flow.

    The kgdb implementation got merged in Linux mainline since Linux 2.6.26.
    For major kgdb commit history in Linux community, please refer to https://kgdb.wiki.kernel.org/index.php/Main_Page.

    1.2 What is the kdb? What are the differences between kdb and kgdb?

    The kdb, as known as “Built-in Kernel Debugger”, is another Linux kernel debugger developed by SGI. However, it never got merged into Linux mainline before kgdb available in Linux kernel.

    In April 2009 KDB v4.4 had significant chunks of the code base removed and hooked it up to the same debug core and polled I/O drivers used by kgdb. In the other words, the kdb in Linux mainline is a front-end of kgdb now, but has less functionalities than its original kdb v4.4 implementation.

    The differences between kdb and kgdb from user point of view are,

    • kgdb requires two machines that are connected via a serial(or network) connection.
      Whereas kdb can debug on the target machine directly.

    • kgdb debug client is gdb, which supports C source code level debugging, and also recognizes the kernel data structure. Although kdb does not need a client, but it just supports assembly language level debugging, and cannot understand kernel data structure. That means, kdb just can dump data structure as raw memory level.

    There is a FAQ to explain the differences between original kdb v4.4 and current kdb in Linux mainline.

    1.3 What are the differences between crash and kdb/kgdb?

    The crash is a kernel post-mortem debug tool, but kdb/kgdb is in situ kernel debugger. Unlike gdb in user space, kdb/kgdb cannot be used to do kernel core dump analysis.

    My another crash tool blog has more information about this topic.

    2. HOWTO

    2.1 How could we enable/disable kdb/kgdb?

    As kdb/kgdb are using same back-end, the enable/disable method are same. There are two methods,

    Before boot/reboot, in grub.cfg, boot kernel with arguments:

    console=ttyS0,115200 kgdboc=ttyS0,115200

    Or, configure kgdb over console under bash prompt, assuming you are using the keyboard and serial port console at same time:

    # echo kbd,ttyS0 > /sys/module/kgdboc/parameters/kgdboc

    2.2 How could we enter the kdb debug shell?

    If kdb/kgdb is enabled, there are 3 ways to drop into kdb debug shell,

    • While Linux kernel got panicked, kernel panic routine will calls into kgdb callback.
    • Under the bash prompt, using root to write to sysrq proc file,
    # echo g > /proc/sysrq-trigger
    • Using hot key Magic Sysrq to enter the kdb debug shell immediately.

    2.3 How to trigger Magic Sysrq on different environments?

    2.3.1 Video console by keyboard

    Press key combo ALT-SysRq-g. This is also works for VMware guest OS console.

    Linux defined many other sysrq usage in kernel, please refer to Documentation/sysrq.txt

    2.3.2 Serial console

    On serial console, there is no SysRq. It requires to trigger a “send break” to console.
    Different terminal server supports different ways to “send break”, for examples,

    • For minicom 2.2

      Press: Control-a

      Press: f

      Press: g

    • When you have telneted to a terminal server that supports sending a remote break

      Press: Control-]

      Type in:send break

      Press: Enter

      Press: g

    • If you are using console command to connect the console server

      Press: Ctrl-E-C-l-0-g

      Please refer to console man page to understand how above key sequence work.

    • For Virtualbox Guest OS, you can use VBoxManage controlvm command

      With Virtualbox, the magic sysrq key sequence cannot be sent to guest since it is always interpreted by the host. But the sysrq sequence can be sent using the management interface, e.g.

      VBoxManage controlvm [vbox-name] keyboardputscancode 1d 38 54 [request type press/release] d4 b8 9d

      The request-type press/release hex code is the scancode of the sysrq code letter plus the scancode|0x80 for key release, e.g.

      g (kernel debugger): 22 a2

      22 is the letter g scancode, and a2 is scancode|0x80, so the kdb enter command is,

      C:Program FilesOracleVirtualBox>VBoxManage controlvm Ubuntu keyboardputscancode 1d 38 54 22 a2 d4 b8 9d

      See http://www.win.tue.nl/~aeb/linux/kbd/scancodes-1.html section 1.4 for complete list of scancodes.
      Caveat: The scancode depends on your keyboard layout, the codes here correspond to a standard layout.

  • 相关阅读:
    .net com
    Json树递归Js查询Json父子节点
    Angular中使用$watch监听object属性值的变化
    教程
    JS格式化Thu May 12 2016 08:00:00 GMT+0800 (中国标准时间)
    js中获取时间new Date()详细介绍
    select默认空白问题。。
    angular先加载页面再执行事件,特别在动态生成id,然后做echarts等图表
    详解angularJs中自定义directive的数据交互
    Angularjs ng-table的使用(可以加button)以及angularjs学习资料
  • 原文地址:https://www.cnblogs.com/ainima/p/6330785.html
Copyright © 2020-2023  润新知