blob: 0f8c85d60bbd7021349a063f2c3c9fb23b7e50f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
#!/bin/busybox ash
# vim:ft=sh
# Init must have pid 1 otherwise switch_root won't work.
if [ $$ -ne 1 ]; then
echo "init must have pid 1!"
exit 1
fi
# Predefice colors
C_NO="\e[0m"
C_GRAY="\e[1;30m"
C_RED="\e[1;31m"
C_GREEN="\e[1;32m"
C_YELLOW="\e[1;33m"
export PATH="$PATH:/usr/sbin:/usr/bin:/sbin:/bin"
# disable kernel message from terminal and clear screen
echo 0 > /proc/sys/kernel/printk
clear
# TODO print some welcome ascii art :-)
# Function called if we fail. Argument is error message.
fail() {
echo -e "${C_RED}$@${C_NO}"
echo -e "${C_YELLOW}Dropping to interactive shell${C_NO}"
busybox --install -s
while true; do
echo -e "${C_GRAY}Mount root to /mnt/root and exit shell to switch root.${C_NO}"
# Note: this is hack to enable job control
setsid sh -c 'exec sh </dev/tty1 >/dev/tty1 2>&1'
if [ -f /mnt/root/sbin/init ]; then
exec switch_root /mnt/root /sbin/init
fi
echo -e "${C_RED}Are you sure that you mounted root filesystem?${C_NO}"
done
}
# Preliminary mounts
busybox mount -t proc none /proc || fail "/proc mount failed!"
busybox mount -t sysfs none /sys || fail "/sys mount failed!"
busybox mount -t devtmpfs none /dev || fail "/dev mount failed!"
# Now open and mount root
uuid=""
rootflags=""
recovery=false
for opt in $(cat /proc/cmdline); do
case "$opt" in
rootuuid=*)
uuid="${opt:9}"
;;
rootflags=*)
rootflags=${opt:10}
;;
recovery)
recovery=true
;;
BOOT_IMAGE=*|initrd=*|fbcon=*)
# Ignore those
;;
*)
echo -e "${C_YELLOW}Unknown kernel argument: $opt${C_NO}"
;;
esac
done
$recovery && fail "Requested recovery."
[ -z "$uuid" ] && fail "Missing rootuuid argument!"
echo -ne "${C_GRAY}Waiting for root ($uuid)..."
CNT=10
while [ $CNT -gt 0 ] && ! blkid | grep -q "UUID=\"$uuid\""; do
CNT=$((CNT - 1))
sleep 1
echo -n " $CNT"
done
echo -e "${C_NO}"
root="$(blkid | awk -v uuid="UUID=\"$uuid\"" '$2 == uuid { gsub(/:$/,"",$1); print $1 }')"
[ -e "$root" ] || fail "Root not located!"
echo -e "${C_GREEN}Unlocking root...${C_NO}"
if command -v initramfs_password >/dev/null; then
busybox ash "$(command -v initramfs_password)" | \
cryptsetup open "$root" encroot
else
cryptsetup open "$root" encroot
fi || fail "Unlocking root failed! /proc/cmdline=$(cat /proc/cmdline)"
echo -e "${C_GREEN}Mounting root...${C_NO}"
mount -t btrfs -o "$rootflags" /dev/mapper/encroot /mnt/root \
|| fail "Mounting root failed! /proc/cmdline=$(cat /proc/cmdline)"
echo -e "${C_GREEN}Switching to real root${C_NO}"
# First clean up. The init process will remount proc, sys and dev later on
busybox umount /dev /sys /proc || fail "Unmouns failed!"
# Now do switch
exec switch_root /mnt/root /sbin/init || fail "Root switch failed!"
|