tinyramfs/init

166 lines
4.3 KiB
Plaintext
Raw Normal View History

2020-01-27 19:09:58 +05:30
#!/sbin/busybox sh
2020-01-30 20:10:13 +05:30
#
# tiny init script
2020-01-05 23:31:39 +05:30
2020-01-30 20:10:13 +05:30
panic() {
2020-02-13 07:48:53 +05:30
printf "panic >> %s\n" "$1"
2020-02-21 14:27:07 +05:30
# TODO fix job control
2020-02-13 07:48:53 +05:30
sh -l
2020-01-30 20:10:13 +05:30
}
2020-01-28 20:43:42 +05:30
2020-02-21 14:27:07 +05:30
parse_cmdline() {
# store cmdline in variable
read -r cmdline < /proc/cmdline || panic "failed to parse cmdline"
# turn variable into list
set -- $cmdline
# parse line by line
for line in "$@"; do
# parse options
case "${line%%=*}" in
init) init="${line##*=}" ;;
root) root="${line##*=}" ;;
root.type) root_type="${line##*=}" ;;
root.opts) root_opts="${line##*=}" ;;
lvm) lvm="${line##*=}" ;;
lvm.name) lvm_name="${line##*=}" ;;
lvm.group) lvm_group="${line##*=}" ;;
lvm.args) lvm_args="${line##*=}" ;;
luks) luks="${line##*=}" ;;
luks.root) luks_root="${line##*=}" ;;
luks.name) luks_name="${line##*=}" ;;
luks.discard) luks_discard="${line##*=}" ;;
luks.args) luks_args="${line##*=}" ;;
shell.debug) shell_debug="${line##*=}" ;;
shell.break) shell_break="${line##*=}" ;;
# TODO implement
#lvm.discard) ;;
#lvm.conf) ;;
#luks_header) ;;
#luks_keyfile) ;;
esac
done
}
2020-01-05 23:31:39 +05:30
2020-01-30 20:10:13 +05:30
mnt_pseudofs() {
mount -t proc none /proc
mount -t sysfs none /sys
mount -t devtmpfs none /dev
mount -t tmpfs none /tmp
2020-01-30 20:10:13 +05:30
}
2020-01-05 23:31:39 +05:30
2020-02-14 22:42:45 +05:30
setup_mdev() {
2020-02-02 18:07:14 +05:30
# setup hotplugger
2020-01-28 20:43:42 +05:30
if [ -e /proc/sys/kernel/hotplug ]; then
2020-02-11 23:32:23 +05:30
printf /sbin/mdev > /proc/sys/kernel/hotplug
2020-01-28 20:43:42 +05:30
else
2020-02-11 23:32:23 +05:30
uevent mdev &
2020-01-28 20:43:42 +05:30
fi
2020-01-19 02:31:21 +05:30
2020-01-28 20:43:42 +05:30
# trigger mdev
mdev -s
# trigger uevent for usb devices
2020-02-13 07:48:53 +05:30
for device in /sys/bus/usb/devices/*; do
2020-02-21 14:27:07 +05:30
case "${device##*/}" in
[0-9]*-[0-9]*) printf add > "${device}/uevent" ;;
2020-01-28 20:43:42 +05:30
esac
done
# load drivers
2020-02-18 13:23:03 +05:30
find /sys -name modalias -type f -exec sort -u "{}" "+" | xargs modprobe -qba
2020-01-30 20:10:13 +05:30
}
2020-02-14 22:42:45 +05:30
setup_mdevd() {
2020-02-02 18:07:14 +05:30
# setup daemon
2020-01-30 20:10:13 +05:30
mdevd &
# trigger uevents
mdevd-coldplug
}
2020-02-14 22:42:45 +05:30
setup_udev() {
2020-01-28 20:43:42 +05:30
udevd --daemon
udevadm trigger --action=add --type=subsystems
udevadm trigger --action=add --type=devices
udevadm settle
2020-01-30 20:10:13 +05:30
}
2020-01-05 23:31:39 +05:30
findfs_sh() {
case "${1%%=*}" in
2020-02-19 13:23:43 +05:30
LABEL) device="/dev/disk/by-label/${1##*=}" ;;
UUID) device="/dev/disk/by-uuid/${1##*=}" ;;
PARTUUID) device="/dev/disk/by-partuuid/${1##*=}" ;;
/dev/*) device="$1" ;;
*) panic "findfs option broken" ;;
esac
2020-02-16 01:03:13 +05:30
# avoid race condition
2020-02-19 15:18:46 +05:30
while [ ! -e "$device" ]; do
sleep 0.5
[ "$increment" ] || increment=0
increment=$(( increment + 1 ))
2020-02-21 14:27:07 +05:30
[ "$increment" = 10 ] && panic "failed to lookup partition"
2020-02-19 15:18:46 +05:30
done
2020-02-16 01:03:13 +05:30
printf "%s\n" "$device"
}
2020-01-30 20:10:13 +05:30
unlock_luks() {
2020-02-21 14:27:07 +05:30
[ "$luks_discard" = 1 ] && luks_args="--allow-discards $luks_args"
2020-02-19 12:42:37 +05:30
cryptsetup $luks_args luksOpen $(findfs_sh "$luks_root") ${luks_name:-luks_root} || panic "failed to unlock luks container"
2020-01-25 16:57:02 +05:30
}
2020-01-30 20:10:13 +05:30
trigger_lvm() {
2020-02-21 14:27:07 +05:30
if [ "$lvm_group" ] && [ "$lvm_name" ]; then
lvm lvchange $lvm_args --quiet --sysinit -a y "${lvm_group}/${lvm_name}" > /dev/null
elif [ "$lvm_group" ]; then
lvm vgchange $lvm_args --quiet --sysinit -a y "$lvm_group" > /dev/null
else
lvm vgchange $lvm_args --quiet --sysinit -a y > /dev/null
fi
2020-01-28 20:43:42 +05:30
}
2020-01-05 23:31:39 +05:30
2020-01-30 20:10:13 +05:30
mnt_rootfs() {
2020-02-21 14:27:07 +05:30
mount ${root_type:+-t $root_type} ${root_opts:+-o $root_opts} $(findfs_sh "$root") /mnt/root || panic "failed to mount rootfs"
2020-01-30 20:10:13 +05:30
}
2020-01-05 23:31:39 +05:30
2020-01-30 20:10:13 +05:30
cleanup() {
case "$devmgr" in
2020-02-19 13:23:43 +05:30
mdev) { printf "" > /proc/sys/kernel/hotplug || killall uevent; } > /dev/null 2>&1 ;;
2020-02-13 07:48:53 +05:30
mdevd) killall mdevd ;;
2020-02-19 13:23:43 +05:30
udev) udevadm control --exit ;;
esac
# unmount pseudofs's
umount /dev /sys /proc /tmp
2020-01-30 20:10:13 +05:30
}
2020-01-05 23:31:39 +05:30
2020-01-30 20:10:13 +05:30
boot_system() {
2020-02-21 14:27:07 +05:30
exec switch_root /mnt/root ${init:-/sbin/init} || panic "failed to boot system"
2020-01-30 20:10:13 +05:30
}
/sbin/busybox --install -s
2020-02-13 07:48:53 +05:30
. /config || panic "failed to source config"
2020-01-30 20:10:13 +05:30
mnt_pseudofs
2020-02-21 14:27:07 +05:30
parse_cmdline
# debug mode
[ "$shell_debug" = 1 ] && set -x
2020-01-30 20:58:03 +05:30
2020-01-30 20:10:13 +05:30
case "$devmgr" in
2020-02-19 13:23:43 +05:30
mdev) setup_mdev ;;
2020-02-14 22:42:45 +05:30
mdevd) setup_mdevd ;;
2020-02-19 13:23:43 +05:30
udev) setup_udev ;;
*) panic "devmgr option broken" ;;
2020-01-30 20:10:13 +05:30
esac
2020-01-30 20:58:03 +05:30
2020-01-30 20:10:13 +05:30
# TODO handle situations when LUKS on LVM
2020-02-21 14:27:07 +05:30
[ "$luks" = 1 ] && [ -x "$(command -v cryptsetup)" ] && unlock_luks
[ "$lvm" = 1 ] && [ -x "$(command -v lvm)" ] && trigger_lvm
2020-01-30 20:10:13 +05:30
mnt_rootfs
2020-02-21 14:27:07 +05:30
[ "$shell_break" = 1 ] && panic "dropping to shell"
2020-01-30 20:10:13 +05:30
cleanup
boot_system