menhera.sh/menhera.sh

164 lines
4.5 KiB
Bash
Raw Normal View History

2019-04-09 15:51:15 +08:00
#!/bin/bash
2019-04-09 15:54:26 +08:00
set -Eeuo pipefail
2019-04-09 15:51:15 +08:00
# config
WORKDIR="/tmp/menhera"
2019-04-09 16:59:41 +08:00
ROOTFS=""
2019-04-09 15:51:15 +08:00
# internal global variables
OLDROOT="/"
NEWROOT=""
# https://stackoverflow.com/a/3232082/2646069
confirm() {
# call with a prompt string or use a default
read -r -p "${1:-Are you sure? [y/N]} " response
case "$response" in
[yY][eE][sS]|[yY])
true
;;
*)
false
;;
esac
}
2019-04-09 16:59:41 +08:00
get_rootfs() {
2019-04-09 17:05:54 +08:00
if [ -n ${ROOTFS} ]; then
2019-04-09 16:59:41 +08:00
echo "Getting rootfs URL..."
ROOTFS_TIME=$(curl "https://uk.images.linuxcontainers.org/images/debian/stretch/amd64/default/?C=M;O=D" | grep "folder.gif" | head -n 1 | cut -d'>' -f7 | cut -d'/' -f1)
ROOTFS="https://images.linuxcontainers.org/images/debian/stretch/amd64/default/${ROOTFS_TIME}/rootfs.squashfs"
else
echo "\$ROOTFS is set to '$ROOTFS'"
fi
}
2019-04-09 15:51:15 +08:00
sync_filesystem() {
echo "Syncing..."
sync
sync
}
prepare_environment() {
echo "Loading kernel modules..."
modprobe overlay
modprobe squashfs
2019-04-09 17:58:16 +08:00
sysctl kernel.panic=10
2019-04-09 15:51:15 +08:00
echo "Creating workspace in '${WORKDIR}'..."
# workspace
mkdir -p "${WORKDIR}"
mount -t tmpfs tmpfs "${WORKDIR}"
# new rootfs
mkdir -p "${WORKDIR}/newroot"
# readonly part of new rootfs
mkdir -p "${WORKDIR}/newrootro"
# writeable part of new rootfs
mkdir -p "${WORKDIR}/newrootrw"
# overlayfs workdir
mkdir -p "${WORKDIR}/overlayfs_workdir"
echo "Downloading temporary rootfs..."
2019-04-09 17:07:01 +08:00
curl -L -C - -o "${WORKDIR}/rootfs.squashfs" "${ROOTFS}"
2019-04-09 15:51:15 +08:00
}
mount_new_rootfs() {
echo "Mounting temporary rootfs..."
mount -t squashfs "${WORKDIR}/rootfs.squashfs" "${WORKDIR}/newrootro"
mount -t overlay overlay -o rw,lowerdir="${WORKDIR}/newrootro",upperdir="${WORKDIR}/newrootrw",workdir="${WORKDIR}/overlayfs_workdir" "${WORKDIR}/newroot"
NEWROOT="${WORKDIR}/newroot"
}
install_software() {
echo "Installing OpenSSH Server into new rootfs..."
DEBIAN_FRONTEND=noninteractive chroot "${NEWROOT}" apt-get update -y
DEBIAN_FRONTEND=noninteractive chroot "${NEWROOT}" apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install -y ssh
}
copy_config() {
echo "Copying important config into new rootfs..."
2019-04-09 15:59:03 +08:00
! cp -ax "${OLDROOT}/etc/resolv.conf" "${NEWROOT}/etc"
! cp -axr "${OLDROOT}/etc/ssh" "${NEWROOT}/etc"
! cp -ax "${OLDROOT}/etc/"{passwd,shadow} "${NEWROOT}/etc"
! cp -axr "${OLDROOT}/root/.ssh" "${NEWROOT}/root"
2019-04-09 15:51:15 +08:00
chroot "${NEWROOT}" chsh -s /bin/bash root
2019-04-09 16:25:26 +08:00
cat > "${NEWROOT}/etc/motd" <<EOF
2019-04-09 17:08:29 +08:00
!!!NOTICE!!!
2019-04-09 16:25:26 +08:00
This is a minimal RAM system created by menhera.sh. Feel free to format your disk, but don't blame anyone
except yourself if you lost important files or your system is broken.
2019-04-09 16:30:26 +08:00
Download menhera.sh at https://github.com/Jamesits/menhera.sh
2019-04-09 16:25:26 +08:00
Have a lot of fun...
EOF
2019-04-09 15:51:15 +08:00
}
swap_root() {
echo "Swapping rootfs..."
# prepare future mount point for our old rootfs
mkdir -p "${WORKDIR}/newroot/mnt/oldroot"
mount --make-rprivate /
# swap root
pivot_root "${WORKDIR}/newroot" "${WORKDIR}/newroot/mnt/oldroot"
OLDROOT="/mnt/oldroot"
NEWROOT="/"
# move mounts
for i in dev proc sys run; do mount --move "${OLDROOT}/$i" "${NEWROOT}/$i"; done
mount -t tmpfs tmpfs "${NEWROOT}/tmp"
2019-04-09 16:34:06 +08:00
mkdir -p "${WORKDIR}"
mount --move "${OLDROOT}/${WORKDIR}" "${WORKDIR}"
2019-04-09 15:51:15 +08:00
echo "Restarting SSH daemon..."
systemctl restart ssh
}
2019-04-09 15:51:15 +08:00
clear_processes() {
2019-04-09 16:25:26 +08:00
echo "Disabling swap..."
swapoff -a
2019-04-09 15:51:15 +08:00
echo "Restarting systemd..."
systemctl daemon-reexec --no-block
sleep 15
echo "Killing all programs still using the old root..."
fuser -kvm "${OLDROOT}" -15
2019-04-09 16:25:26 +08:00
# in most cases the parent process of this script will be killed, so goodbye
2019-04-09 16:12:17 +08:00
}
2019-04-09 15:51:15 +08:00
if [[ $EUID -ne 0 ]]; then
2019-04-09 16:12:17 +08:00
echo "This script must be run as root"
exit 1
2019-04-09 15:51:15 +08:00
fi
echo -e "We will start a temporary RAM system as your recovery environment."
echo -e "Note that this script will kill programs and umount filesystems without prompting."
echo -e "Please confirm:"
echo -e "\tYou have closed all programs you can, and backed up all important data"
echo -e "\tYou can SSH into your system as root user"
confirm || exit -1
2019-04-09 16:59:41 +08:00
get_rootfs
2019-04-09 15:51:15 +08:00
sync_filesystem
prepare_environment
mount_new_rootfs
copy_config
install_software
2019-04-09 15:51:15 +08:00
swap_root
echo -e "If you are connecting from SSH, please create a second session to this host and confirm you can get a shell."
echo -e "After your confirmation, we are going to kill the old SSH server."
confirm || exit -1
2019-04-09 16:25:26 +08:00
clear_processes