QEMU调试Linux内核环境搭建

一个最小可运行Linux操作系统需要内核镜像bzImage和rootfs,本文整理了其制作、安装过程,调试命令,以及如何添加共享磁盘。

编译内核源码

从 The Linux Kernel Archives 网站下载内核源码,本文下载的版本为4.14.191,4.14.191源码下载

使用wget获取源码。

wget https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.14.191.tar.gz

解压源码:

tar -xvf linux-4.14.191.tar.gz

解压后进入源码根目录linux-4.14.191,指定编译的架构,依次执行下面的命令,打开配置菜单。

复制

1
2
3
4
5
6
7
cd linux-4.14.191

export ARCH=x86

make x86_64_defconfig

make menuconfig

在配置菜单中,启用内核debug,关闭地址随机化,不然断点处无法停止。

复制

1
2
3
4
5
6
7
8
9
Kernel hacking  ---> 
    [*] Kernel debugging
    Compile-time checks and compiler options  --->
        [*] Compile the kernel with debug info
        [*]   Provide GDB scripts for kernel debuggin


Processor type and features ---->
    [] Randomize the address of the kernel image (KASLR)

开始编译内核,-j 指定并行编译作业数。最终生成linux-4.14.191/arch/x86_64/boot/bzImage文件。

复制

1
make -j 20

内核编译完成。

配置Busybox

启动内核还需要一个具有根文件系统的磁盘镜像文件,根文件系统中提供可供交互的shell程序以及一些常用工具命令。

我们借助busybox工具来制作根文件系统。

本文使用1.32.0版本,下载busybox

解压:

tar -jxvf busybox-1.32.0.tar.bz2

进入busybox根目录,配置编译选项。

复制

1
2
cd busybox-1.32.0
make menuconfig

把busybox配置为静态编译。

复制

1
2
Settings  --->
           [*] Build BusyBox as a static binary (no shared libs)

在这里插入图片描述

制作rootfs

接下来制作rootfs镜像文件,并把busybox安装到其中。

使用dd命令创建文件,并格式化为ext4文件系统。

复制

1
2
3
szp@r420-PowerEdge-R420:~/busybox-1.32.0$ dd if=/dev/zero of=rootfs.img bs=1M count=10

szp@r420-PowerEdge-R420:~/busybox-1.32.0$ mkfs.ext4 rootfs.img

创建用于挂载该镜像文件的目录fs,挂载后才能往里面写入busybox。
使用mount命令将rootfs.img挂载到fs目录,编译busybox并写入fs目录中。

复制

1
2
3
4
5
szp@r420-PowerEdge-R420:~$ mkdir fs

szp@r420-PowerEdge-R420:~/busybox-1.32.0$ sudo mount -t ext4 -o loop rootfs.img ./fs

szp@r420-PowerEdge-R420:~/busybox-1.32.0$ sudo make install CONFIG_PREFIX=./fs

接下来对写入的busybox进行补充配置。

复制

1
2
3
4
5
6
szp@r420-PowerEdge-R420:~/busybox-1.32.0/fs$ sudo mkdir proc dev etc home mnt

szp@r420-PowerEdge-R420:~/busybox-1.32.0/fs$ sudo cp -r ../examples/bootfloppy/etc/* etc/

szp@r420-PowerEdge-R420:~/busybox-1.32.0$ sudo chmod -R 777 fs/

制作完成的rootfs目录如下:
在这里插入图片描述

最后,卸载rootfs.img

复制

1
szp@r420-PowerEdge-R420:~/busybox-1.32.0$ sudo umount fs

至此,一个带有rootfs的磁盘镜像制作完成。

启动qemu

使用如下命令启动无GUI的qemu,参数含义如下:

-kernel # 指定编译好的内核镜像

-hda # 指定硬盘

-append “root=/dev/sda” 指示根文件系统 console=ttyS0 把QEMU的输入输出定向到当前终端上

-nographic 不使用图形输出窗口

-s 是-gdb tcp::1234缩写,监听1234端口,在GDB中可以通过target remote localhost:1234连接

复制

1
qemu-system-x86_64 -kernel ./linux-4.14.191/arch/x86_64/boot/bzImage  -hda ./busybox-1.32.0/rootfs.img  -append "root=/dev/sda console=ttyS0" -nographic

启动后如下图:

在这里插入图片描述

Ctrl+A 松开后按 X 退出qemu。

内核函数调试

启动命令中添加-s参数与-S参数启动qemu。

复制

1
szp@r420-PowerEdge-R420:~$ qemu-system-x86_64 -kernel ~/linux-4.14.191/arch/x86_64/boot/bzImage  -hda ~/busybox-1.32.0/rootfs.img  -append "root=/dev/sda console=ttyS0" -s -S  -smp 1 -nographic

启动gdb远程调试。vmlinux文件在编译后的内核源码根目录下。

复制

1
2
3
4
szp@r420-PowerEdge-R420:~$ gdb ./linux-4.14.191/vmlinux 

(gdb) target remote localhost:1234

在new_sync_read函数添加断点,continue。

在这里插入图片描述

在系统中执行ls命令,触发new_sync_read函数,

在这里插入图片描述

在这里插入图片描述

至此,完成了qemu环境下使用gdb进行内核函数的调试。

添加共享磁盘

有时候需要在宿主机和qemu虚拟机之间共享文件,添加一个共享磁盘将有助于该项工作。

创建64MB磁盘镜像文件,并格式化为ext4,作为共享磁盘备用。

复制

1
2
3
szp@r420-PowerEdge-R420:~/shadisk$ dd if=/dev/zero of=ext4.img bs=512 count=131072

szp@r420-PowerEdge-R420:~/shadisk$ mkfs.ext4 ext4.img

修改qemu启动命令,使用-hdb增加一个磁盘。

复制

1
qemu-system-x86_64 -kernel ~/linux-4.14.191/arch/x86_64/boot/bzImage  -hda ~/busybox-1.32.0/rootfs.img  -append "root=/dev/sda console=ttyS0" -s  -smp 1 -nographic -hdb ~/shadisk/ext4.img

进入qemu系统后使用mount命令挂载sdb到mnt目录。

在这里插入图片描述

在原系统中挂载ext4.img,实现qemu与原系统的文件共享。

复制

1
szp@r420-PowerEdge-R420:~/shadisk$ sudo mount -t ext4 -o loop ext4.img ./share

在这里插入图片描述

至此,可以在宿主机器share目录下,与qemu中的虚拟机器进行文件共享。

PS:前往公众号“知书码迹”,可以查看最新内容!关注即可免费领取面试&Linux技术书籍!

 

  • 3
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值