theread.me/_posts/2021-11-06-linux-contribution.md

104 lines
4.2 KiB
Markdown
Raw Normal View History

2021-11-06 13:09:29 +00:00
---
layout: post
title: "My first contribution to Linux Kernel: Step by step"
date: 2021-11-06 00:00:00
permalink: first-linux-contribution/
categories: programming
author: Mahdi
2021-11-20 12:17:08 +00:00
published: true
2021-11-06 13:09:29 +00:00
---
2021-11-20 12:17:08 +00:00
_*This post is under construction. I am in the process of trying to contribute to the Linux Kernel. This post is not finished and will get updated as I go*_
2021-11-20 12:16:01 +00:00
I use a MacBook Pro (mid-2014) with macOS, so I need to have a virtual machine for running a linux system with my kernel. I will also be doing the coding on this linux virtual machine as building the kernel is easier in a linux system than macOS.
# Setting up the Virtual Machine (Archlinux)
I create a virtual machine with Archlinux on my macOS using QEMU:
1. [Download the Archlinux iso image](https://archlinux.org/download/)
2021-11-20 12:18:46 +00:00
2. Create a qemu disk
2021-11-06 13:09:29 +00:00
{% highlight bash %}
2021-11-06 21:25:20 +00:00
qemu-img create disk.img 15G
2021-11-06 13:09:29 +00:00
{% endhighlight %}
2021-11-20 12:16:01 +00:00
3. Start the machine and [install Archlinux](https://wiki.archlinux.org/title/Installation_guide)
2021-11-06 13:09:29 +00:00
{% highlight bash %}
qemu-system-x86_64 -cdrom archlinux-2021.11.01-x86_64.iso -boot order=d -drive format=raw,file=disk.img -m 8G
2021-11-06 13:09:29 +00:00
{% endhighlight %}
2021-11-20 12:16:01 +00:00
4. Start the machine after installing (note I forward 2222 to 22 so I can SSH/SCP to the virtual machine. I also set 4 CPUs so I can use threads for faster builds in the VM)
2021-11-06 20:40:19 +00:00
{% highlight bash %}
qemu-system-x86_64 -boot -drive format=raw,file=disk.img -m 8G -smp cpus=4 -net user,hostfwd=tcp::2222-:22 -net nic
2021-11-06 20:40:19 +00:00
{% endhighlight %}
2021-11-20 12:18:46 +00:00
5. Install dependencies for building the kernel
2021-11-06 20:40:19 +00:00
{% highlight bash %}
pacman -S gcc git make
{% endhighlight %}
2021-11-20 12:18:46 +00:00
6. Clone linux
2021-11-06 20:40:19 +00:00
{% highlight bash %}
git clone git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
{% endhighlight %}
2021-11-20 12:18:46 +00:00
7. Install the necessary dependencies for building the kernel
2021-11-08 20:24:48 +00:00
{% highlight bash %}
pacman -S flex base-devel xmlto kmod inetutils bc libelf git cpio perl tar xz
{% endhighlight %}
2021-11-20 12:16:01 +00:00
8. Copy configuration of archlinux (optional: also [use modprobed-db to remove unnecessary modules](https://wiki.archlinux.org/title/Kernel/Traditional_compilation#Default_Arch_configuration))
2021-11-08 20:24:48 +00:00
{% highlight bash %}
2021-11-10 18:29:31 +00:00
zcat /proc/config.gz > .config
2021-11-08 20:24:48 +00:00
{% endhighlight %}
2021-11-20 12:16:01 +00:00
9. Make! The `-j8` parameter specifies the number of threads to be used by the build. My CPU has 8 threads and so I use it all.
2021-11-08 20:24:48 +00:00
{% highlight bash %}
2021-11-19 20:51:24 +00:00
make -j8
2021-11-08 20:24:48 +00:00
{% endhighlight %}
2021-11-20 12:16:01 +00:00
10. Install the newly built Kernel. I create this as a script file and run it after every build from the root of repository.
2021-11-10 18:29:31 +00:00
{% highlight bash %}
2021-11-20 02:12:32 +00:00
make -j8 modules_install
RELEASE=$(cat include/config/kernel.release)
cp -v arch/x86_64/boot/bzImage /boot/vmlinuz-linux${RELEASE}
mkinitcpio -k $RELEASE -g /boot/initramfs-linux${RELEASE}.img
mkinitcpio -k $RELEASE -s autodetect -g /boot/initramfs-linux-fallback${RELEASE}.img
2021-11-10 18:29:31 +00:00
grub-mkconfig -o /boot/grub/grub.cfg
{% endhighlight %}
- Reboot and choose the new kernel (might be under "Advanced" in the bootloader)
2021-11-20 12:16:01 +00:00
# Development Environment
Setup your environment for development. Mine consists of setting up tmux so I can have multiple terminals and neovim.
In the guest machine:
{% highlight bash %}
pacman -S neovim openssh tmux
echo '[[ -z "$TMUX" ]] && exec tmux' >> /etc/profile
# also follow https://github.com/junegunn/vim-plug for Neovim
{% endhighlight %}
And in the host:
{% highlight bash %}
scp -P 2222 ~/.tmux.conf root@localhost:/root
scp -r -P 2222 ~/.config/nvim root@localhost:/root/.config/
{% endhighlight %}
2021-11-20 12:16:01 +00:00
# Debugging
There is a `pr_debug` function used over the code, in order to enable those logs in `dmesg` for a specific module, you can do this:
{% highlight bash %}
2021-11-20 12:09:38 +00:00
echo 8 > /proc/sys/kernel/printk
echo 'module ip_set +p' > /sys/kernel/debug/dynamic_debug/control
{% endhighlight %}
Note that, this works if you have dynamic debug enabled in your `.config`:
{% highlight bash %}
CONFIG_DYNAMIC_DEBUG=y
CONFIG_DYNAMIC_DEBUG_CORE=y
{% endhighlight %}
You can then look at `dmesg` while running the code to see those logs:
{% highlight bash %}
dmesg
{% endhighlight %}
2021-11-21 09:23:29 +00:00
# What did I work on?
The first issue I was interested in turned out to be an invalid bug: I found that out by simply investigating the script the user was testing and measuring how much time each part of the script took to find out the main culprit: [bug-214851](https://bugzilla.kernel.org/show_bug.cgi?id=214851).