Hardware and software characteristics of the system used.
• Host: NUC10i7FNK
• OS: Ubuntu 22.04.4 LTS x86 64
• Kernel: 5.19.1
• SGX Driver: Out-of-tree Driver (/dev/isgx)
• SGX Version: SGX1
• Secure boot: Enabled
• Full Disk encryption: LVM on LUKS
To add an extra layer of protection, since TEEs only provide encryption during application execution, we can enable Full disk encryption
during OS installation.
Additionally, to ensure security guarantees regarding the kernel, we can enable Secure Boot
.
- [Optional] Enable Secure Boot
- Enable SGX
- Follow this guide, to install Ubuntu Desktop (Ubuntu Server can also be used similarly).
- During the installation, enable "Secure Boot" and select LVM installation on LUKS.
- Download and enable SSH to allow headless connection to the system.
sudo apt install openssh-server
sudo systemctl start ssh
sudo systemctl enable ssh
sudo ufw enable
sudo ufw allow ssh
Follow this, to build Kernel: 5.19.1
and install it in the system.
After experimentation, the in-kernel driver does not appear to work properly in this setup.
IMPORTANT! DISABLE INTEL SGX module!
Read this and this for more information.
-
Install openssl and mokutil
-
Create a MOK
mkdir -p ~/Desktop/MOK-Kernel/
cd ~/Desktop/MOK-Kernel
openssl req -new -x509 -newkey rsa:2048 -keyout MOK.key -out MOK.crt -nodes -days 3650 -subj "/CN=Your Name/"
openssl x509 -in MOK.crt -out MOK.cer -outform DER
- Verify whether the system booted using Secure Boot.
sudo mokutil --sb-state
- List the kernel images installed in /boot.
sudo ls -l /boot/vmlinuz*
- Verify that the image isn’t already signed.
sudo sbverify --list /boot/vmlinuz-5.19.1
- Download scripts for simplifing things https://github.com/berglh/ubuntu-sb-kernel-signing
cd ~/Desktop/MOK-Kernel
git clone https://github.com/berglh/ubuntu-sb-kernel-signing.git
cd ubuntu-sb-kernel-signing/sbin
sudo cp *.sh /usr/local/bin
cd ~/Desktop/MOK-Kernel
sudo bash mok-setup.sh # This will guide for everything
- Now that MOK-Kernel exists under /var/lib/shim-signed/mok/, proceed with kernel signing.
sudo sbsign --key "/var/lib/shim-signed/mok/MOK-Kernel.priv" --cert "/var/lib/shim-signed/mok/MOK-Kernel.pem" --output "/boot/vmlinuz-5.19.1" "/boot/vmlinuz-5.19.1"
- Verify the image is signed correctly
sudo sbverify --list /boot/vmlinuz-5.19.1
- Make sure that Kernel
5.19.1
is selected by default on GRUB and then reboot.
Follow this guide to install the out of tree kernel driver (instructions)
dpkg-query -s linux-headers-$(uname -r)
sudo apt-get install linux-headers-$(uname -r)
git clone https://github.com/intel/linux-sgx-driver
cd linux-sgx-driver/
make
sudo mkdir -p "/lib/modules/"`uname -r`"/kernel/drivers/intel/sgx"
sudo cp isgx.ko "/lib/modules/"`uname -r`"/kernel/drivers/intel/sgx"
sudo sh -c "cat /etc/modules | grep -Fxq isgx || echo isgx >> /etc/modules"
sudo /sbin/depmod
sudo /sbin/modprobe isgx # Need to sign first the driver (see below)
sudo kmodsign sha512 \
/var/lib/shim-signed/mok/MOK-Kernel.priv \
/var/lib/shim-signed/mok/MOK-Kernel.der \
/usr/lib/modules/5.19.1/kernel/drivers/intel/sgx/isgx.ko
Now the system should be ready to be used.