1.安装相关依赖包
sudo snap install --classic code
sudo apt install build-essential
sudo apt install qemu
2.安装VSCode
sudo snap install --classic code
3.安装内核
sudo apt install axel
axel -n 20 https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/linux-5.4.34.tar.xz
xz -d linux-5.4.34.tar.xz
tar -xvf linux-5.4.34.tar
cd linux-5.4.34
4.进行内核调试
$ make defconfig # Default configuration is based on 'x86_64_defconfig'
$ make menuconfig
# 打开debug相关选项
Kernel hacking --->
Compile-time checks and compiler options --->
[*] Compile the kernel with debug info
[*] Provide GDB scripts for kernel debugging
[*] Kernel debugging
# 关闭KASLR,否则会导致打断点失败
Processor type and features ---->
[] Randomize the address of the kernel image (KASLR)
(退出去)
make -j8
5.制作根文件系统
#下载busybox
axel -n 20 https://busybox.net/downloads/busybox-1.31.1.tar.bz2 # download
tar -jxvf busybox-1.31.1.tar.bz2
cd busybox-1.31.1
make menuconfig
Settings --->
[*] Build static binary (no shared libs)
make -j8 && make install
6.制作内存根文件系统镜像
mkdir rootfs
cd rootfs
cp ../busybox-1.31.1/_install/* ./ -rf
mkdir dev proc sys home
sudo cp -a /dev/{null,console,tty,tty1,tty2,tty3,tty4} dev/
vim init #添加以下内容
#!/bin/sh
mount -t proc none /proc
mount -t sysfs none /sys
echo "Welcome JunjunOS!"
echo "--------------------"
cd home
/bin/sh
chmod +x init #加上执行权限
#打包成内存根文件系统镜像
find . -print0 | cpio --null -ov --format=newc | gzip -9 > ../rootfs.cpio.gz
7.启动内核
qemu-system-x86_64 -kernel ./arch/x86/boot/bzImage -initrd ./busybox-1.32.0/rootfs.cpio.gz
打印出了Weclome JunJunOS 内核设置完成
8.VScode环境调试内核
在Linux系统中,start_kernel函数是整个内核启动过程的入口点,它是在boot loader加载内核映像文件之后被调用的。
进行断点调试
在VSCODE中运行
添加端点
进行调试
进入kernel_thread函数查看:
在kernel进入c语言阶段后,会开始执行start_kernel函数,它负责进行kernel正式运行前各个功能的初始化:打印了一些信息、内核工作需要的模块的初始化被依次调用(譬如内存管理、调度系统、异常处理···),最后末尾调用了一个rest_init函数启动了三个进程(idle、kernel_init、kthreadd),来开启操作系统的正式运行。如下图所示:
系统调用了_do_fork()函数,
在 Linux 内核中,_do_fork()函数是用来创建一个新的进程的函数。当一个进程需要创建一个新的进程时,它可以通过调用 _do_fork()函数来完成这个任务。
_do_fork() 函数会复制父进程的地址空间,创建一个新的进程,并且将它的状态设置为就绪状态,以便它可以在进程调度器的帮助下运行。
在linux中进程大多数是通过_do_fork()进行创建的,包括一号二号进程。