Building Linux Kernel from Source with SGX Enabled#
SGX driver is merged to Linux Kernel from 5.11+. After enabling SGX feature during kernel building, we don’t have to install SGX driver anymore.
In this guide, we show how to build Kernel 5.14 from source code and enable SGX feature on Ubuntu 18.04. You can change the kernel version, i.e., 5.14 if necessary.
Prerequisite#
Install prerequisites for kernel build. Please follow your distro instruction or your favorite way to build the kernel.
sudo apt-get install flex bison git build-essential kernel-package fakeroot libncurses5-dev libssl-dev ccache libelf-dev
Main steps#
Clone Linux Kernel source code.
# Obtain Linux kernel source tree
mkdir kernel && cd kernel
git clone https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
cd linux
# You can change this version
git checkout v5.14
Build Kernel from source code with SGX enabled.
cp /boot/config-`uname -r` .config
yes '' | make oldconfig
# Enable SGX and SGX KVM
/bin/sed -i 's/^# CONFIG_X86_SGX is not set/CONFIG_X86_SGX=y/g' .config
echo 'CONFIG_X86_SGX_KVM=y' >> .config
make -j `getconf _NPROCESSORS_ONLN` deb-pkg
Install kernel from deb and reboot
cd ..
sudo dpkg -i linux-headers-5.14.0_5.14.0-1_amd64.deb linux-image-5.14.0_5.14.0-1_amd64.deb
sudo reboot
Check if Kernel was installed correctly and the SGX driver is working
$ uname -r
$ ls -l /dev/ | grep sgx
Uninstall this kernel#
Uninstall kernel with dpkg (if you want to change back to the previous kernel)
sudo dpkg --purge linux-image-5.14.0 linux-headers-5.14.0
sudo reboot
Trouble Shooting#
Building on Ubuntu 5.4.X may encounter
“make[2]: *** No rule to make target ‘debian/certs/benh@debian.org.cert.pem’, needed by ‘certs/x509_certificate_list’. Stop.”. Please disable
SYSTEM_TRUSTED_KEYS. Refer to CONFIG_SYSTEM_TRUSTED_KEYS.“make[4]: *** No rule to make target ‘debian/canonical-revoked-certs.pem’, needed by ‘certs/x509_revocation_list’. Stop.”. Please disable
SYSTEM_REVOCATION_KEYS.
In some kernels, SGX option is
CONFIG_INTEL_SGX.5.13 Kernel may encounter nfs problem Can’t mount NFS-shares from Linux-5.13.0
Mellanox interface may be disabled on 5.14.0. Changes to 5.15.5 will fix this issue.