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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
#!/bin/bash
# called by dracut
depends() {
local deps
deps="udev-rules"
if [[ $hostonly_cmdline == "yes" ]]; then
if [[ -n ${host_devs[*]} ]] || [[ -n ${user_devs[*]} ]]; then
deps+=" initqueue"
fi
fi
echo "$deps"
return 0
}
# we prefer the non-busybox implementation of switch_root
# due to the dependency, this dracut module needs to be ordered before the busybox dracut module
# as this dracut module would install the non-busybox implementation of switch_root, if available
# this dracut module needs to be ordered after the systemd-sysusers dracut module, so make sure
# that the root password set in for the emergency console in host-only mode
# called by dracut
install() {
inst_multiple \
cp \
dmesg \
flock \
ln \
ls \
mkdir \
mkfifo \
mknod \
modprobe \
mount \
mv \
readlink \
rm \
rmmod \
sed \
setsid \
sleep \
tr \
umount
inst_multiple -o \
chown \
findmnt \
kmod \
less \
halt \
poweroff \
reboot \
sysctl
inst_binary "${dracutbasedir}/dracut-util" "/usr/bin/dracut-util"
ln -s dracut-util "${initdir}/usr/bin/dracut-getarg"
ln -s dracut-util "${initdir}/usr/bin/dracut-getargs"
# fallback when shell-interpreter is not included
[ ! -e "${initdir}/bin/sh" ] && inst_simple "${initdir}/bin/sh" "/bin/sh"
# add common users in /etc/passwd, it will be used by nfs/ssh currently
# use password for hostonly images to facilitate secure sulogin in emergency console
[[ $hostonly ]] && pwshadow='x'
grep -qs '^root:' "$initdir/etc/passwd" || echo "root:$pwshadow:0:0::/root:/bin/sh" >> "$initdir/etc/passwd"
if [[ $hostonly ]]; then
# check if other dracut modules already created an entry for root in /etc/shadow
if grep -qs '^root:' "$initdir/etc/shadow"; then
grep -v '^root:' "$initdir/etc/shadow" > "$initdir/etc/shadow-"
mv "$initdir/etc/shadow-" "$initdir/etc/shadow"
fi
# replace root password in the existing entry in etc/shadow
# root password from host takes precedence over root password set by systemd-sysuser in hostonly mode
# create a new entry for root in /etc/shadow
grep '^root:' "${dracutsysrootdir-}"/etc/shadow >> "$initdir/etc/shadow"
fi
# install our scripts and hooks
inst_script "$moddir/loginit.sh" "/sbin/loginit"
inst_script "$moddir/rdsosreport.sh" "/sbin/rdsosreport"
[ -e "${initdir}/lib" ] || mkdir -m 0755 -p "${initdir}"/lib
mkdir -m 0755 -p "${initdir}"/lib/dracut
mkdir -m 0755 -p "${initdir}"/var/lib/dracut/hooks
# symlink to old hooks location for compatibility
ln_r /var/lib/dracut/hooks /lib/dracut/hooks
mkdir -p "${initdir}"/tmp
inst_simple "$moddir/dracut-lib.sh" "/lib/dracut-lib.sh"
inst_simple "$moddir/dracut-dev-lib.sh" "/lib/dracut-dev-lib.sh"
mkdir -p "${initdir}"/var
[[ -d /lib/modprobe.d ]] && inst_multiple -o "/lib/modprobe.d/*.conf"
[[ -d /usr/lib/modprobe.d ]] && inst_multiple -o "/usr/lib/modprobe.d/*.conf"
[[ $hostonly ]] && inst_multiple -H -o /etc/modprobe.d/*.conf /etc/modprobe.conf
inst_simple "$moddir/insmodpost.sh" /sbin/insmodpost.sh
if ! dracut_module_included "systemd"; then
inst_multiple switch_root || dfatal "Failed to install switch_root"
inst_script "$moddir/init.sh" "/init"
inst_hook cmdline 01 "$moddir/parse-kernel.sh"
inst_hook cmdline 10 "$moddir/parse-root-opts.sh"
{
echo "NAME=dracut"
echo "ID=dracut"
echo "VERSION_ID=\"$DRACUT_VERSION\""
echo 'ANSI_COLOR="0;34"'
} > "${initdir}"/usr/lib/initrd-release
fi
ln -fs /proc/self/mounts "$initdir/etc/mtab"
if [[ $ro_mnt == yes ]]; then
echo ro >> "${initdir}/etc/cmdline.d/20-base.conf"
fi
echo "dracut-$DRACUT_VERSION" > "$initdir/lib/dracut/dracut-$DRACUT_VERSION"
## save host_devs which we need bring up
if [[ $hostonly_cmdline == "yes" ]]; then
if [[ -n ${host_devs[*]} ]] || [[ -n ${user_devs[*]} ]]; then
dracut_need_initqueue
fi
if [[ -f $initdir/lib/dracut/need-initqueue ]] || ! dracut_module_included "systemd"; then
(
if dracut_module_included "systemd"; then
export DRACUT_SYSTEMD=1
fi
export PREFIX="$initdir"
export hookdir=/lib/dracut/hooks
# shellcheck source=dracut-dev-lib.sh
. "$moddir/dracut-dev-lib.sh"
for _dev in "${host_devs[@]}"; do
for _dev2 in "${root_devs[@]}"; do
[[ $_dev == "$_dev2" ]] && continue 2
done
# We only actually wait for real devs - swap is only needed
# for resume and udev rules generated when parsing resume=
# argument take care of the waiting for us
for _dev2 in "${swap_devs[@]}"; do
[[ $_dev == "$_dev2" ]] && continue 2
done
_pdev=$(get_persistent_dev "$_dev")
case "$_pdev" in
/dev/?*) wait_for_dev "$_pdev" 0 ;;
*) ;;
esac
done
for _dev in "${user_devs[@]}"; do
case "$_dev" in
/dev/?*) wait_for_dev "$_dev" 0 ;;
*) ;;
esac
_pdev=$(get_persistent_dev "$_dev")
[[ $_dev == "$_pdev" ]] && continue
case "$_pdev" in
/dev/?*) wait_for_dev "$_pdev" 0 ;;
*) ;;
esac
done
)
fi
fi
}
|