Linux 4.16 arm64 kernel debug build


2 분 소요

What is this repository?

for debuging with KGDB

will add KDB later..

kgdb를 이용해 arm64 커널을 바로 디버깅 할 수 있도록 빌드 해놓은 저장소입니다.
영어를 못해서 한글로 적은 것은 아닙니다. ㅎㅎㅎㅎㅎㅎ ^^;;;;;

Debugging Environment

  • Host OS : Ubuntu(18.04 LTS) on Windows (Download from Windows Store)
  • Target Kernel Version : v4.16.0
  • GDB Version : GNU gdb-multiarch 8.1.0
  • Compiler Version : aarch64-linux-gnu-gcc 7.3.0
  • Qemu Version : qemu-system-aarch64 2.11.1

How to do it

손 발을 Do it! 단 둘이 둘이! 이 밤을 Take it!

Install

GDB

Ubuntu
sudo apt-get install gdb-multiarch

QEMU

Ubuntu
sudo apt-get install qemu-system-aarch64

Use

이 Repository 디렉터리에서 동작시킨다.

QEMU

qemu_exec

Ubuntu
qemu-system-aarch64 -machine virt -cpu cortex-a57 -smp 2 -nographic \
                -m 4096M -s -S -kernel Image -append "kgdboc=ttyS0,115200"
  • $ qemu-system-aarch64 : Start qemu emulator.
  • -machine (-M) virt : Use virt machine and virt machine’s default dtb.
  • -cpu cortex-a57 : Use cortex-a57 cpu.
  • -smp 2 : Use 2 cores.
  • -nographic : Do not use GUI qemu.
  • -m 4096M : Use 4096MB memory. Default 128M.
  • -s : Use gdbserver (localhost:1234, tcp)
  • -S : Freeze the cpu.
  • -kernel Image : Use the kernel image.
  • -append "kgdboc=ttyS0,115200" : Use serial port of ttyS0 and Baud rate is 115200bps.

http://studyfoss.egloos.com/5491211

https://www.slideshare.net/aksmj/kgdbkdb

https://withinrafael.com/2018/02/11/boot-arm64-builds-of-windows-10-in-qemu/

http://jake.dothome.co.kr/qemu/

GDB

Ubuntu

Prompt= $

gdb-multiarch vmlinux

Prompt= (gdb)

set architecture aarch64
set serial baud 115200
target remote :1234
  • (gdb) set architecture aarch64 : 디버깅 할 아키텍쳐를 aarch64로 변경. 기본 gdb에는 없는 아키텍쳐.
  • (gdb) set serial baud 115200 : baud rate를 115200bps로 변경.
  • (gdb) target remote :1234 : qemu로 구동한 os에 접속. qemu에서 -s 옵션에 기본 포트는 :1234

이후는 gdb 명령어를 이용해 이용 하면 된다. -S 옵션으로 인해 Head.S에서 cpu가 Freeze 상태. b(ranch) [func] 로 특정 함수에 breakpoint를 걸고 c(ontinue)를 실행하면 해당 함수까지 구동한다.

https://sjp38.github.io/post/qemu_kernel_debugging/

https://code.i-harness.com/ko-kr/q/14fc388

You can do

cf 06 cf 09

How to get ready for compiling

Install Dependent Packages

Ubuntu
sudo apt-get install build-essentials libncurses5-dev libssl-dev bc bison flex \
                libelf-dev
Fedora
sudo dnf install ncurses-devel bison-devel bison flex-devel flex \
                elfutils-libelf-devel openssl-devel

https://sjp38.github.io/post/linux-kernel-build/

Install Compiler Package

Ubuntu
sudo apt-get install binutils-aarch64-linux-gnu gcc-aarch64-linux-gnu \
                g++-aarch64-linux-gnu

https://blog.thinkbee.kr/linux/crosscompile-arm/

How to configure a Makefile

Modify a Makefile.

vi Makefile
  1. Set Architecture and Cross compiler.

makefile1

  1. Set Checkstack architecture.

makefile2

How to make Image

make mrproper
make defconfig
make menuconfig
make Image
  • $ make mrproper : config 파일 clean.
  • $ make defconfig : 해당 arch의 defconfig 파일로 .config 설정. (./arch/ARCH/configs/defconfig 달랑 하나있음)
  • $ make menuconfig : 추가 변경할 config 설정(kgdb 설정).
  • $ make Image : Image (커널이미지) 빌드.
    * Caution : -j 옵션을 주지 않는 것을 권장. (파일 의존성 문제로 컴파일 중단이 자주 벌어짐)

http://xenostudy.tistory.com/485

How to update configuration file for debugging

  • defconfig make_config

    make menuconfig

  • CONFIG_DEBUG_INFO=y debug_info

  • CONFIG_KGDB=y kgdb

  • CONFIG_KGDB_SERIAL_CONSOLE=y kgdb_serial_console
  • CONFIG_FRAME_POINTER=y frame_pointer

http://studyfoss.egloos.com/5490783

댓글남기기