Skip to content

Commit

Permalink
Make dracut fail if essential files cannot be installed
Browse files Browse the repository at this point in the history
Dracut will now fail in initramfs generation if essential files cannot
be installed.

Reviewed-by: Ahelenia Ziemiańska <[email protected]>
Reviewed-by: Andrew J. Hesford <[email protected]>
Signed-off-by: Savyasachee Jha <[email protected]>
Closes #13010
  • Loading branch information
savyajha authored and behlendorf committed May 25, 2022
1 parent 0671f72 commit ebbfc6c
Showing 1 changed file with 30 additions and 10 deletions.
40 changes: 30 additions & 10 deletions contrib/dracut/90zfs/module-setup.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,18 @@ depends() {
}

installkernel() {
instmods zfs
instmods -c zfs
}

install() {
inst_rules \
@udevruledir@/90-zfs.rules \
@udevruledir@/69-vdev.rules \
@udevruledir@/60-zvol.rules
for i in "90-zfs.rules" "69-vdev.rules" "60-zvol.rules"; do
if ! dracut_install "@udevdir@/$i"; then
dfatal "Failed to install udev rule: $i"
exit 1
fi
done

dracut_install \
inst_multiple \
@sbindir@/zgenhostid \
@sbindir@/zfs \
@sbindir@/zpool \
Expand All @@ -40,10 +42,25 @@ install() {
awk \
tr \
cut \
head

inst_libdir_file "libgcc_s.so*"
head ||
{ dfatal "Failed to install essential binaries"; exit 1; }

# Lines 71-90 adapted from
# https://github.com/zbm-dev/zfsbootmenu/blob/9a03eab2b75647170bdc383903735a694ecd0ed6/dracut/module-setup.sh#L71

if ! ldd "$( command -v zpool )" | grep -qF 'libgcc_s.so'; then
# On systems with gcc-config (Gentoo, Funtoo, etc.), use it to find libgcc_s
if command -v gcc-config >/dev/null 2>&1; then
dracut_install "/usr/lib/gcc/$(s=$(gcc-config -c); echo "${s%-*}/${s##*-}")/libgcc_s.so.1" ||
{ dfatal "Unable to install libgcc_s.so"; exit 1; }
# Otherwise, use dracut's library installation function to find the right one
elif ! inst_libdir_file "libgcc_s.so*"; then
# If all else fails, just try looking for some gcc arch directory
dracut_install /usr/lib/gcc/*/*/libgcc_s.so* ||
{ dfatal "Unable to install libgcc_s.so"; exit 1; }
fi
fi

inst_hook cmdline 95 "${moddir}/parse-zfs.sh"
if [ -n "$systemdutildir" ] ; then
inst_script "${moddir}/zfs-generator.sh" "$systemdutildir"/system-generators/dracut-zfs-generator
Expand Down Expand Up @@ -75,7 +92,10 @@ install() {

if dracut_module_included "systemd"; then

dracut_install systemd-ask-password systemd-tty-ask-password-agent
dracut_install \
systemd-ask-password \
systemd-tty-ask-password-agent ||
{ dfatal "Failed to install essential systemd binaries"; exit 1; }

mkdir -p "${initdir}/$systemdsystemunitdir/zfs-import.target.wants"
for _service in "zfs-import-scan.service" "zfs-import-cache.service" ; do
Expand Down

0 comments on commit ebbfc6c

Please sign in to comment.