Annotation of wikisrc/security/cgdroot.mdwn, revision 1.3
1.1 khorben 1: Root filesystem encryption
2: ==========================
3:
1.3 ! leot 4: It is possible to run NetBSD with [complete root filesystem encryption][1], thanks to the `cgdroot.kmod` kernel module. It really is a memory disk (also knows as RAM disk) that is expected to be loaded in the kernel while booting.
1.1 khorben 5:
6: It still requires one unencrypted partition to boot from (typically `wd0a`).
7:
8: The boot process
9: ----------------
10:
11: Instead of booting normally the GENERIC kernel and using the root filesystem, a
12: kernel module is loaded at boot-time containing a memory disk. It contains a
13: minimal filesystem image, which is then considered the actual root filesystem:
14:
15: The boot partition on disk only needs to contain:
1.3 ! leot 16: * [[!template id=man name="boot" section="8"]], the second-stage bootloader
! 17: * [[!template id=man name="boot.cfg" section="5"]], the configuration file for the bootloader (optional)
1.1 khorben 18: * a GENERIC kernel
19: * the `cgdroot.kmod` kernel module
20: * configuration and encryption key for the encrypted volume to start from (`cgd.conf`)
21:
1.3 ! leot 22: Once loaded the memory disk mounts the `wd0a` partition onto `/etc/cgd`, and asks for the encryption passphrase as usual (with [[!template id=man name="cgdconfig" section="8"]]). If successful, the `cgd0a` volume configured is mounted on `/altroot`, and [[!template id=man name="init" section="8"]] is told via [[!template id=man name="sysctl" section="7"]] to chroot into this volume before actually booting. The system then starts normally.
1.1 khorben 23:
24: In practice the memory disk remains the real root, and the regular system is
25: really ran from a chroot in `/altroot`.
26:
27: Obtaining the kernel module
28: ---------------------------
29:
30: The `cgdroot.kmod` kernel module is part of the regular NetBSD releases since NetBSD 7.0. It can be found in the `<arch>/installation/miniroot` folder from the release. For instance, for the amd64 architecture on the German mirror for the 7.0.1 release, download it at (ftp://ftp.de.netbsd.org/pub/NetBSD/NetBSD-7.0.1/amd64/installation/miniroot/cgdroot.kmod).
31:
32: Configuring the kernel module
33: -----------------------------
34:
35: The kernel module needs to be available in the boot partition, alongside the desired kernel. The bootloader configuration in `/boot.cfg` should be modified to load the module, as in this example:
1.3 ! leot 36:
! 37: [[!template id=filecontent name="/boot.cfg" text="""
1.1 khorben 38: menu=Boot normally:rndseed /etc/entropy-file;load /cgdroot.kmod;boot /netbsd.gz -z
1.3 ! leot 39: """]]
1.1 khorben 40:
41: Building the kernel module
42: --------------------------
43:
44: The kernel module can be compiled in two steps from within the source tree for the NetBSD base system, once the distribution has been built. Change to the `distrib/<arch>/ramdisks/ramdisk-cgdroot` and use `nbmake-<arch>` to build:
45:
1.3 ! leot 46: [[!template id=programlisting text="""
1.2 khorben 47: src/distrib/amd64/ramdisks/ramdisk-cgdroot$ /path/to/tooldir/bin/nbmake-amd64
1.1 khorben 48: [...]
49: create ramdisk-cgdroot/ramdisk-cgdroot.fs
50: Calculated size of `ramdisk-cgdroot.fs.tmp': 5120000 bytes, 85 inodes
51: Extent size set to 4096
52: ramdisk-cgdroot.fs.tmp: 4.9MB (10000 sectors) block size 4096, fragment size 512
53: using 1 cylinder groups of 4.88MB, 1250 blks, 96 inodes.
54: super-block backups (for fsck -b #) at:
55: 32,
56: Populating `ramdisk-cgdroot.fs.tmp'
57: Image `ramdisk-cgdroot.fs.tmp' complete
1.3 ! leot 58: """]]
1.1 khorben 59:
60: Then the kernel module can be built:
61:
1.3 ! leot 62: [[!template id=programlisting text="""
1.2 khorben 63: src/distrib/amd64/kmod-cgdroot$ /path/to/tooldir/bin/nbmake-amd64
1.3 ! leot 64: """]]
1.1 khorben 65:
66: Caveats
67: -------
68:
69: The biggest (known) issue with this setup occurs when firmware needs to be loaded early in the boot process (such as graphics drivers for the console). At the moment they need to be built as part of the memory disk. Some network interfaces, of which some wireless devices in particular, also require loading firmware to work properly.
70:
71: This setup is not entirely safe against physical attacks. An attacker can modify the boot process to store the passphrase for later retrieval, or insert a backdoor while booting.
72:
73: References
74: ----------
75:
1.3 ! leot 76: [1]: https://mail-index.netbsd.org/current-users/2013/03/21/msg022311.html "Full Disk Encryption with cgd (well, almost)"
CVSweb for NetBSD wikisrc <wikimaster@NetBSD.org> software: FreeBSD-CVSweb