alpine-initramfs-dropbear: fix struck nlplug-findfs, dropbear process alive after boot stage
This commit is contained in:
parent
8b37e1131e
commit
5710be8871
@ -13,7 +13,7 @@ significant changes:
|
|||||||
|
|
||||||
* Add dropbear
|
* Add dropbear
|
||||||
|
|
||||||
* Add dropbear session timer, if timeout/cancel normal decryption prompt would appear.
|
* After unlocked, kill all remainings dropbear and nlplug-findfs process, so no struck process reached the system.
|
||||||
|
|
||||||
Please install `dropbear` before continuing
|
Please install `dropbear` before continuing
|
||||||
|
|
||||||
|
@ -24,6 +24,6 @@ while [ ! -b /dev/mapper/${KOPT_cryptdm} ]; do
|
|||||||
sleep 2
|
sleep 2
|
||||||
done
|
done
|
||||||
|
|
||||||
# make a new file to kill the timer
|
# Kill all struck nlplug-findfs jobs and dropbear
|
||||||
echo "" > /tmp/timer_kill
|
killall -9 nlplug-findfs
|
||||||
killall -9 dropbear
|
killall -9 dropbear
|
@ -336,33 +336,6 @@ setup_dropbear() {
|
|||||||
cp /etc/dropbear/authorized_keys /root/.ssh/authorized_keys
|
cp /etc/dropbear/authorized_keys /root/.ssh/authorized_keys
|
||||||
|
|
||||||
dropbear -R -E -s -j -k -p $port
|
dropbear -R -E -s -j -k -p $port
|
||||||
|
|
||||||
# [ -b /dev/mapper/${KOPT_cryptdm} ]
|
|
||||||
#|| return 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# A simple timer that do nothing but prevent any process to run
|
|
||||||
setup_dropbear_timer() {
|
|
||||||
timer=200
|
|
||||||
while [ $timer -gt 0 ]; do
|
|
||||||
printf "\r%d Press 'c' to cancel or 'p' to add 30 seconds " "$timer"
|
|
||||||
|
|
||||||
if read -t 1 -r timer_control; then
|
|
||||||
case $timer_control in
|
|
||||||
"c") return 0 ;;
|
|
||||||
"p") timer=$((timer + 30)) ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check for /tmp/timer_kill to terminate this counter
|
|
||||||
if [ -f /tmp/timer_kill ]; then
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
sleep 1
|
|
||||||
timer=$((timer - 1))
|
|
||||||
done
|
|
||||||
printf "\n"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
setup_wireguard() {
|
setup_wireguard() {
|
||||||
@ -624,8 +597,6 @@ if [ -n "$KOPT_dropbear" ]; then
|
|||||||
if [ -n "$KOPT_cryptroot" ]; then
|
if [ -n "$KOPT_cryptroot" ]; then
|
||||||
configure_ip
|
configure_ip
|
||||||
setup_dropbear
|
setup_dropbear
|
||||||
setup_dropbear_timer
|
|
||||||
#|| echo "Failed to setup dropbear"
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -695,6 +666,10 @@ if [ -n "$KOPT_root" ]; then
|
|||||||
${KOPT_uevent_buf_size:+-U $KOPT_uevent_buf_size} \
|
${KOPT_uevent_buf_size:+-U $KOPT_uevent_buf_size} \
|
||||||
$KOPT_root
|
$KOPT_root
|
||||||
|
|
||||||
|
# Kill all struck nlplug-findfs jobs and dropbear
|
||||||
|
killall -9 nlplug-findfs
|
||||||
|
killall -9 dropbear
|
||||||
|
|
||||||
if [ "$SINGLEMODE" = "yes" ]; then
|
if [ "$SINGLEMODE" = "yes" ]; then
|
||||||
echo "Entering single mode. Type 'exit' to continue booting."
|
echo "Entering single mode. Type 'exit' to continue booting."
|
||||||
sh
|
sh
|
||||||
@ -765,6 +740,7 @@ if [ -n "$KOPT_root" ]; then
|
|||||||
$MOCK mount -o move $DIR $sysroot/$DIR
|
$MOCK mount -o move $DIR $sysroot/$DIR
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
$MOCK sync
|
$MOCK sync
|
||||||
exec switch_root $switch_root_opts $sysroot $chart_init "$KOPT_init" $KOPT_init_args
|
exec switch_root $switch_root_opts $sysroot $chart_init "$KOPT_init" $KOPT_init_args
|
||||||
echo "initramfs emergency recovery shell launched"
|
echo "initramfs emergency recovery shell launched"
|
||||||
@ -783,6 +759,10 @@ $MOCK nlplug-findfs $cryptopts -p /sbin/mdev ${KOPT_debug_init:+-d} \
|
|||||||
${KOPT_usbdelay:+-t $(( $KOPT_usbdelay * 1000 ))} \
|
${KOPT_usbdelay:+-t $(( $KOPT_usbdelay * 1000 ))} \
|
||||||
${KOPT_uevent_buf_size:+-U $KOPT_uevent_buf_size} \
|
${KOPT_uevent_buf_size:+-U $KOPT_uevent_buf_size} \
|
||||||
$repoopts -a "$ROOT"/tmp/apkovls
|
$repoopts -a "$ROOT"/tmp/apkovls
|
||||||
|
|
||||||
|
# Kill all struck nlplug-findfs jobs and dropbear
|
||||||
|
killall -9 nlplug-findfs
|
||||||
|
killall -9 dropbear
|
||||||
eend $?
|
eend $?
|
||||||
|
|
||||||
# Setup network interfaces
|
# Setup network interfaces
|
||||||
|
Loading…
Reference in New Issue
Block a user