kgdb调试kernel或者driver module

 Who may read this document?
===========================

1. People who familiar with gdb but not never use kgdb

2. People who like to debug kernel or driver module using the gdb way.


Why to Using KGDB
=================

1. Want to debug kernel

2. Want to debug driver module


What’s hardware you needed to use KGDB
=======================================

1. Target system with have serial port

2. Host system with have serial port

3. Serial line


How to Debug Kernel using KGDB
==============================

1. Download kgdb patch for your kernel at http://kgdb.linsyssoft.com/downloads

2. Host: cd /path/to/kernel/source/

3. Host: patch –p1 –i /path/to/patch/file

4. Host: make menuconfig, to confirm you choose kgdb support in KERNEL_HACKING

5. Host: make dep;make bzImage

6. Copy built bzImage to your target system.

7. Target: boot your target using the built bzImage with gdb gdbttyS=x gdbbaud=38400
you may add these parameters to your grub menu. Here ‘x’ is the index of your serial port used to connect your host such as 0,1 or 2.

8. Host: cd /path/to/kernel/source

9. Host: gdb vmlinux

10. Host gdb: set remotebaud 38400

11. Host gdb: target remote /dev/ttySx. Here ‘x’ is the index of your serial port used to connect your target.


How to Debug Driver Module using KGDB
=====================================

1. Host: build your driver module with –g option.

2. Copy your driver.o to your target system.

3. Reboot target with kernel build in kgdb.

4. Host gdb: Set breakpoint before kernel call module’s initialization function so we can debug module’s initialization function.
Kernel call module’s initialization in kernel/module.c: sys_init_module():mod->init().

5. Target: load your driver module using insmod and will stop at breakpoint set by 4.

6. Host gdb: p/x module_list

7. Host gdb: add-symbol-file /path/to/your/driver/module/sourcecode address
where address is the value of module_list+sizeof(module_list).
This command loads symbol file of your module so you can debug it.

8. As 7 have add the symbol file of your module, so you can set breakpoints to your source code such as module’s init function and enjoy the debugging.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值