mirror of
				https://github.com/vyos/vyos-build.git
				synced 2025-10-01 20:28:40 +02:00 
			
		
		
		
	The shim review board (which is the secure boot base loader) recommends using ephemeral keys when signing the Linux Kernel. This commit enables the Kernel build system to generate a one-time ephemeral key that is used to: * sign all build-in Kernel modules * sign all other out-of-tree Kernel modules The key lives in /tmp and is destroyed after the build container exits and is named: "VyOS build time autogenerated kernel key". In addition the Kernel now uses CONFIG_MODULE_SIG_FORCE. This now makes it unable to load any Kernel Module to the image that is NOT signed by the ephemeral key.
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
CWD=$(pwd)
 | 
						|
KERNEL_VAR_FILE=${CWD}/kernel-vars
 | 
						|
 | 
						|
SRC=${CWD}/nat-rtsp
 | 
						|
if [ ! -d ${SRC} ]; then
 | 
						|
    echo "nat-rtsp source not found"
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
if [ ! -f ${KERNEL_VAR_FILE} ]; then
 | 
						|
    echo "Kernel variable file '${KERNEL_VAR_FILE}' does not exist, run ./build_kernel.sh first"
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
. ${KERNEL_VAR_FILE}
 | 
						|
 | 
						|
cd ${SRC}
 | 
						|
git reset --hard HEAD
 | 
						|
git clean --force -d -x
 | 
						|
make KERNELDIR=$KERNEL_DIR
 | 
						|
 | 
						|
# Copy binary to package directory
 | 
						|
DEBIAN_DIR=tmp/lib/modules/${KERNEL_VERSION}${KERNEL_SUFFIX}/extra
 | 
						|
mkdir -p ${DEBIAN_DIR}
 | 
						|
cp nf_conntrack_rtsp.ko nf_nat_rtsp.ko ${DEBIAN_DIR}
 | 
						|
 | 
						|
DEBIAN_POSTINST="${CWD}/vyos-nat-rtsp.postinst"
 | 
						|
echo "#!/bin/sh" > ${DEBIAN_POSTINST}
 | 
						|
echo "/sbin/depmod -a ${KERNEL_VERSION}${KERNEL_SUFFIX}" >> ${DEBIAN_POSTINST}
 | 
						|
 | 
						|
# Sign generated Kernel modules
 | 
						|
${CWD}/sign-modules.sh ${DEBIAN_DIR}
 | 
						|
 | 
						|
# Build Debian Package
 | 
						|
fpm --input-type dir --output-type deb --name nat-rtsp \
 | 
						|
    --version $(git describe --tags --always) --deb-compression gz \
 | 
						|
    --maintainer "VyOS Package Maintainers <maintainers@vyos.net>" \
 | 
						|
    --description "Connection tracking and NAT support for RTSP" \
 | 
						|
    --depends linux-image-${KERNEL_VERSION}${KERNEL_SUFFIX} \
 | 
						|
    --after-install ${DEBIAN_POSTINST} \
 | 
						|
    --license "GPL2" --chdir tmp
 | 
						|
 | 
						|
mv *.deb ..
 | 
						|
 | 
						|
if [ -f ${DEBIAN_POSTINST} ]; then
 | 
						|
    rm -f ${DEBIAN_POSTINST}
 | 
						|
fi
 |