mirror of
https://github.com/jiazhang0/meta-secure-core.git
synced 2026-01-12 01:00:15 +00:00
initramfs-secure-core: define the /init script for the initramfs image
Signed-off-by: Lans Zhang <jia.zhang@windriver.com>
This commit is contained in:
135
meta/recipes-core/initrdscripts/files/init
Normal file
135
meta/recipes-core/initrdscripts/files/init
Normal file
@@ -0,0 +1,135 @@
|
||||
#!/bin/sh
|
||||
|
||||
PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
||||
|
||||
ROOT_MOUNT="/rootfs"
|
||||
MOUNT="/bin/mount"
|
||||
UMOUNT="/bin/umount"
|
||||
ROOT_DELAY="0"
|
||||
|
||||
# Copied from initramfs-framework. The core of this script probably should be
|
||||
# turned into initramfs-framework modules to reduce duplication.
|
||||
udev_daemon() {
|
||||
OPTIONS="/sbin/udev/udevd /sbin/udevd /lib/udev/udevd /lib/systemd/systemd-udevd"
|
||||
|
||||
for o in $OPTIONS; do
|
||||
if [ -x "$o" ]; then
|
||||
echo $o
|
||||
return 0
|
||||
fi
|
||||
done
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
_UDEV_DAEMON=`udev_daemon`
|
||||
|
||||
early_setup() {
|
||||
mkdir -p /proc
|
||||
mkdir -p /sys
|
||||
mount -t proc proc /proc
|
||||
mount -t sysfs sysfs /sys
|
||||
mount -t devtmpfs none /dev
|
||||
|
||||
# support modular kernel
|
||||
# modprobe isofs
|
||||
# modprobe raid0
|
||||
|
||||
mkdir -p /run
|
||||
mkdir -p /var/run
|
||||
|
||||
$_UDEV_DAEMON --daemon
|
||||
udevadm trigger --action=add
|
||||
|
||||
if [ -x /sbin/mdadm ]; then
|
||||
/sbin/mdadm -v --assemble --scan --auto=md
|
||||
fi
|
||||
}
|
||||
|
||||
read_args() {
|
||||
[ -z "$CMDLINE" ] && CMDLINE=`cat /proc/cmdline`
|
||||
for arg in $CMDLINE; do
|
||||
optarg=`expr "x$arg" : 'x[^=]*=\(.*\)'`
|
||||
case $arg in
|
||||
root=*)
|
||||
ROOT_DEVICE=$optarg ;;
|
||||
rootdelay=*)
|
||||
ROOT_DELAY=$optarg ;;
|
||||
init=*)
|
||||
INIT=$optarg ;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
fatal() {
|
||||
echo $1 >$CONSOLE
|
||||
echo >$CONSOLE
|
||||
exec sh
|
||||
}
|
||||
|
||||
|
||||
|
||||
#######################################
|
||||
|
||||
early_setup
|
||||
|
||||
read_args
|
||||
|
||||
[ -z "$CONSOLE" ] && CONSOLE="/dev/console"
|
||||
[ -z "$INIT" ] && INIT="/sbin/init"
|
||||
|
||||
|
||||
udevadm settle --timeout=3
|
||||
killall "${_UDEV_DAEMON##*/}" 2>/dev/null
|
||||
|
||||
mkdir -p $ROOT_MOUNT/
|
||||
|
||||
sleep ${ROOT_DELAY}
|
||||
|
||||
try_to_mount_rootfs() {
|
||||
local mount_flags="rw,noatime,iversion"
|
||||
|
||||
mount -o $mount_flags "${ROOT_DEVICE}" "${ROOT_MOUNT}" 2>/dev/null && return 0
|
||||
|
||||
[ -x /init.cryptfs ] &&
|
||||
/init.cryptfs "${ROOT_MOUNT}" "${ROOT_DEVICE}" $mount_flags "OVERCROOTFS" && return 0
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
echo "Waiting for root device to be ready..."
|
||||
while [ 1 ] ; do
|
||||
try_to_mount_rootfs && break
|
||||
sleep 0.1
|
||||
done
|
||||
|
||||
# Move the mount points of some filesystems over to
|
||||
# the corresponding directories under the real root filesystem.
|
||||
for dir in `cat /proc/mounts | grep -v rootfs | awk '{print $2}'` ; do
|
||||
mkdir -p ${ROOT_MOUNT}/${dir##*/}
|
||||
mount -nv --move $dir ${ROOT_MOUNT}/${dir##*/}
|
||||
done
|
||||
|
||||
cd $ROOT_MOUNT
|
||||
|
||||
# If we pass args to bash, it will assume they are text files
|
||||
# to source and run.
|
||||
if [ "$INIT" == "/bin/bash" ] || [ "$INIT" == "/bin/sh" ]; then
|
||||
CMDLINE=""
|
||||
fi
|
||||
|
||||
# !!! The Big Fat Warnings !!!
|
||||
#
|
||||
# The IMA policy may enforce appraising the executable and verifying the
|
||||
# signature stored in xattr. However, ramfs doesn't support xattr, and all
|
||||
# other initializations must *NOT* be placed after IMA initialization!
|
||||
[ -x /init.ima ] && /init.ima $ROOT_MOUNT && {
|
||||
# switch_root is an exception. We call it in the real rootfs and it
|
||||
# should be already signed properly.
|
||||
switch_root="usr/sbin/switch_root.static"
|
||||
} || {
|
||||
switch_root="switch_root"
|
||||
}
|
||||
|
||||
exec $switch_root $ROOT_MOUNT $INIT $CMDLINE ||
|
||||
fatal "Couldn't switch_root, dropping to shell"
|
||||
27
meta/recipes-core/initrdscripts/initramfs-secure-core.bb
Normal file
27
meta/recipes-core/initrdscripts/initramfs-secure-core.bb
Normal file
@@ -0,0 +1,27 @@
|
||||
SUMMARY = "Basic init for initramfs to mount and pivot root"
|
||||
LICENSE = "MIT"
|
||||
|
||||
SRC_URI = "file://init"
|
||||
|
||||
do_install() {
|
||||
install -m 0755 "${WORKDIR}/init" "${D}/init"
|
||||
|
||||
# Create device nodes expected by kernel in initramfs
|
||||
# before executing /init.
|
||||
install -d "${D}/dev"
|
||||
mknod -m 0600 "${D}/dev/console" c 5 1
|
||||
}
|
||||
|
||||
FILES_${PN} = "/init /dev"
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
bash \
|
||||
kmod \
|
||||
sed \
|
||||
grep \
|
||||
coreutils \
|
||||
util-linux \
|
||||
gawk \
|
||||
mdadm \
|
||||
udev \
|
||||
"
|
||||
Reference in New Issue
Block a user