2014-10-14 16:02:12 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# vim: set ts=4 sw=4 sts=4 et :
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
2014-10-16 16:03:05 +00:00
|
|
|
# Source external scripts
|
2014-10-14 16:02:12 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
. $SCRIPTSDIR/vars.sh
|
2014-10-14 21:04:42 +00:00
|
|
|
. ./umount_kill.sh >/dev/null
|
2014-10-14 16:02:12 +00:00
|
|
|
|
2014-10-16 16:03:05 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Configurations
|
|
|
|
# ------------------------------------------------------------------------------
|
2014-10-14 16:02:12 +00:00
|
|
|
if [ "$VERBOSE" -ge 2 -o "$DEBUG" == "1" ]; then
|
|
|
|
set -x
|
2014-10-16 16:03:05 +00:00
|
|
|
else
|
|
|
|
set -e
|
2014-10-14 16:02:12 +00:00
|
|
|
fi
|
|
|
|
|
2014-10-16 20:05:28 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# XXX: Create a snapshot - Only for DEBUGGING!
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Only execute if SNAPSHOT is set
|
|
|
|
if [ "$SNAPSHOT" == "1" ]; then
|
|
|
|
splitPath "$IMG" path_parts
|
|
|
|
PREPARED_IMG="${path_parts[dir]}${path_parts[base]}-updated${path_parts[dotext]}"
|
|
|
|
|
2014-10-19 08:23:19 +00:00
|
|
|
if ! [ -f "$PREPARED_IMG" ] && ! [ -f "$INSTALLDIR/tmp/.prepared_whonix" ]; then
|
2014-10-16 20:05:28 +00:00
|
|
|
umount_kill "$INSTALLDIR" || :
|
|
|
|
warn "Copying $IMG to $PREPARED_IMG"
|
|
|
|
cp -f "$IMG" "$PREPARED_IMG"
|
|
|
|
mount -o loop "$IMG" "$INSTALLDIR" || exit 1
|
|
|
|
for fs in /dev /dev/pts /proc /sys /run; do mount -B $fs "$INSTALLDIR/$fs"; done
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2014-10-14 16:02:12 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# chroot Whonix build script (Make sure set -e is not set)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
read -r -d '' WHONIX_BUILD_SCRIPT <<'EOF'
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Pre Fixups
|
|
|
|
sudo mkdir -p /boot/grub2
|
|
|
|
sudo touch /boot/grub2/grub.cfg
|
|
|
|
sudo mkdir -p /boot/grub
|
|
|
|
sudo touch /boot/grub/grub.cfg
|
|
|
|
sudo mkdir --parents --mode=g+rw "/tmp/uwt"
|
|
|
|
|
|
|
|
# Whonix seems to re-install sysvinit even though there is a hold
|
|
|
|
# on the package. Things seem to work anyway. BUT hopfully the
|
|
|
|
# hold on grub* don't get removed
|
|
|
|
sudo apt-mark hold sysvinit
|
2014-10-16 16:03:05 +00:00
|
|
|
sudo apt-mark hold grub-pc grub-pc-bin grub-common grub2-common
|
2014-10-14 16:02:12 +00:00
|
|
|
|
|
|
|
# Whonix expects haveged to be started
|
|
|
|
sudo /etc/init.d/haveged start
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Whonix installation
|
|
|
|
export WHONIX_BUILD_UNATTENDED_PKG_INSTALL="1"
|
|
|
|
|
|
|
|
pushd ~/Whonix
|
|
|
|
sudo ~/Whonix/whonix_build \
|
|
|
|
--build $1 \
|
|
|
|
--64bit-linux \
|
|
|
|
--current-sources \
|
|
|
|
--enable-whonix-apt-repository \
|
|
|
|
--whonix-apt-repository-distribution $2 \
|
|
|
|
--install-to-root \
|
|
|
|
--skip-verifiable \
|
|
|
|
--minimal-report \
|
|
|
|
--skip-sanity-tests || { exit 1; }
|
|
|
|
popd
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Post Fixups
|
|
|
|
|
|
|
|
pushd /etc/network
|
|
|
|
sudo rm -f interfaces
|
|
|
|
sudo ln -s interfaces.backup interfaces
|
|
|
|
popd
|
|
|
|
|
|
|
|
pushd /etc
|
|
|
|
sudo rm -f resolv.conf
|
|
|
|
sudo ln -s resolv.conf.backup resolv.conf
|
|
|
|
popd
|
|
|
|
|
2014-10-15 06:57:19 +00:00
|
|
|
# Enable Tor
|
|
|
|
sudo sed -i 's/#DisableNetwork 0/DisableNetwork 0/g' /etc/tor/torrc
|
|
|
|
|
|
|
|
# Fake that whonixsetup was already run
|
|
|
|
sudo mkdir -p /var/lib/whonix/do_once
|
|
|
|
sudo touch /var/lib/whonix/do_once/whonixsetup.done
|
2014-10-14 16:02:12 +00:00
|
|
|
|
|
|
|
# Fake that initializer was already run
|
|
|
|
sudo mkdir -p /root/.whonix
|
|
|
|
sudo touch /root/.whonix/first_run_initializer.done
|
|
|
|
|
|
|
|
# Prevent whonixcheck error
|
|
|
|
sudo su -c 'echo WHONIXCHECK_NO_EXIT_ON_UNSUPPORTED_VIRTUALIZER=\"1\" >> /etc/whonix.d/30_whonixcheck_default'
|
|
|
|
|
|
|
|
# Ensure umask set in /etc/login.defs is used (022)
|
|
|
|
sudo su -c 'echo "session optional pam_umask.so" >> /etc/pam.d/common-session'
|
|
|
|
|
2014-10-15 06:57:19 +00:00
|
|
|
sudo update-rc.d network-manager disable
|
|
|
|
sudo update-rc.d spice-vdagent disable
|
|
|
|
sudo update-rc.d swap-file-creator disable
|
|
|
|
sudo update-rc.d whonix-initializer disable
|
|
|
|
|
2014-10-14 16:02:12 +00:00
|
|
|
sudo touch "/tmp/.prepared_whonix"
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# chroot Whonix fix script (Make sure set -e is not set)
|
|
|
|
# Run ../whonix_fix when whonix gives grub-pc error
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# TODO: Do something in whonix build to automatically run fixups and
|
|
|
|
# ignore certain errors
|
|
|
|
read -r -d '' WHONIX_FIX_SCRIPT <<'EOF'
|
|
|
|
DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true \
|
2014-10-16 16:03:05 +00:00
|
|
|
sudo apt-get -y --force-yes remove grub-pc grub-common grub-pc-bin grub2-common
|
2014-10-14 16:02:12 +00:00
|
|
|
sudo apt-mark hold grub-common grub-pc-bin grub2-common
|
|
|
|
EOF
|
|
|
|
|
2014-10-16 16:03:05 +00:00
|
|
|
read -r -d '' WHONIX_APT_PIN <<'EOF'
|
|
|
|
Package: grub-pc
|
|
|
|
Pin: version *
|
|
|
|
Pin-Priority: -100
|
|
|
|
|
|
|
|
Package: grub-pc-bin
|
|
|
|
Pin: version *
|
|
|
|
Pin-Priority: -100
|
|
|
|
|
|
|
|
Package: grub-common
|
|
|
|
Pin: version *
|
|
|
|
Pin-Priority: -100
|
|
|
|
|
|
|
|
Package: grub2-common
|
|
|
|
Pin: version *
|
|
|
|
Pin-Priority: -100
|
|
|
|
EOF
|
2014-10-14 16:02:12 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Set defualts for apt not to install recommended or extra packages
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
read -r -d '' WHONIX_APT_PREFERENCES <<'EOF'
|
|
|
|
Acquire::Languages "none";
|
|
|
|
APT::Install-Recommends "false";
|
|
|
|
APT::Install-Suggests "false";
|
|
|
|
Dpkg::Options "--force-confold";
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Cleanup function
|
|
|
|
# ------------------------------------------------------------------------------
|
2014-10-16 16:03:05 +00:00
|
|
|
function cleanup() {
|
|
|
|
error "Whonix error; umounting $INSTALLDIR to prevent further writes"
|
2014-10-14 21:04:42 +00:00
|
|
|
umount_kill "$INSTALLDIR" || :
|
2014-10-14 16:02:12 +00:00
|
|
|
exit 1
|
|
|
|
}
|
2014-10-16 16:03:05 +00:00
|
|
|
trap cleanup ERR
|
|
|
|
trap cleanup EXIT
|
2014-10-14 16:02:12 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Mount devices, etc required for Whonix installation
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
if ! [ -f "$INSTALLDIR/tmp/.prepared_whonix" ]; then
|
2014-10-16 16:03:05 +00:00
|
|
|
info "Installing Whonix system"
|
2014-10-14 16:02:12 +00:00
|
|
|
|
2014-10-14 22:26:01 +00:00
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Initialize Whonix submodules
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
pushd "$WHONIX_DIR"
|
|
|
|
{
|
2014-10-20 23:45:23 +00:00
|
|
|
su $(logname) -c "git submodule update --init --recursive"
|
2014-10-14 22:26:01 +00:00
|
|
|
}
|
|
|
|
popd
|
|
|
|
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Patch Whonix submodules
|
|
|
|
# --------------------------------------------------------------------------
|
2014-10-18 03:34:01 +00:00
|
|
|
|
|
|
|
# Chekout a branch; create a branch first if it does not exist
|
|
|
|
checkout_branch() {
|
|
|
|
branch=$(git symbolic-ref --short -q HEAD)
|
|
|
|
if ! [ "$branch" == "$1" ]; then
|
2014-10-20 23:45:23 +00:00
|
|
|
su $(logname) -c git checkout "$1" >/dev/null 2>&1 || \
|
2014-10-18 03:34:01 +00:00
|
|
|
{
|
2014-10-20 23:45:23 +00:00
|
|
|
su $(logname) -c git branch "$1"
|
|
|
|
su $(logname) -c git checkout "$1"
|
2014-10-18 03:34:01 +00:00
|
|
|
}
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# sed search and replace. return 0 if replace happened, otherwise 1
|
|
|
|
search_replace() {
|
|
|
|
local search="$1"
|
|
|
|
local replace="$2"
|
|
|
|
local file="$3"
|
|
|
|
sed -i.bak '/'"$search"'/,${s//'"$replace"'/;b};$q1' "$file"
|
|
|
|
}
|
|
|
|
|
2014-10-14 22:26:01 +00:00
|
|
|
# Patch anon-meta-packages to not depend on grub-pc
|
2014-10-16 20:05:28 +00:00
|
|
|
pushd "$WHONIX_DIR"
|
2014-10-14 22:26:01 +00:00
|
|
|
{
|
2014-10-18 03:34:01 +00:00
|
|
|
search_replace "grub-pc" "" "grml_packages" || :
|
2014-10-16 16:03:05 +00:00
|
|
|
}
|
|
|
|
popd
|
|
|
|
|
2014-10-16 20:05:28 +00:00
|
|
|
pushd "$WHONIX_DIR/packages/anon-meta-packages/debian"
|
2014-10-16 16:03:05 +00:00
|
|
|
{
|
2014-10-18 03:34:01 +00:00
|
|
|
search1=" grub-pc,"
|
|
|
|
replace=""
|
|
|
|
|
|
|
|
#checkout_branch qubes
|
|
|
|
search_replace "$search1" "$replace" control && \
|
|
|
|
{
|
|
|
|
cd "$WHONIX_DIR/packages/anon-meta-packages"
|
|
|
|
:
|
2014-10-20 23:45:23 +00:00
|
|
|
#sudo -E -u $(logname) make deb-pkg || :
|
|
|
|
#su $(logname) -c "dpkg-source --commit" || :
|
2014-10-18 03:34:01 +00:00
|
|
|
#git add .
|
2014-10-20 23:45:23 +00:00
|
|
|
#su $(logname) -c "git commit -am 'removed grub-pc depend'"
|
2014-10-18 03:34:01 +00:00
|
|
|
} || :
|
2014-10-14 22:26:01 +00:00
|
|
|
}
|
|
|
|
popd
|
|
|
|
|
2014-10-16 16:03:05 +00:00
|
|
|
pushd "$WHONIX_DIR/packages/anon-shared-build-fix-grub/usr/lib/anon-dist/chroot-scripts-post.d"
|
2014-10-14 22:26:01 +00:00
|
|
|
{
|
2014-10-18 03:34:01 +00:00
|
|
|
search1="update-grub"
|
|
|
|
replace=":"
|
|
|
|
|
|
|
|
#checkout_branch qubes
|
|
|
|
search_replace "$search1" "$replace" 85_update_grub && \
|
|
|
|
{
|
|
|
|
cd "$WHONIX_DIR/packages/anon-shared-build-fix-grub"
|
2014-10-20 23:45:23 +00:00
|
|
|
sudo -E -u $(logname) make deb-pkg || :
|
|
|
|
su $(logname) -c "EDITOR=/bin/true dpkg-source -q --commit . no_grub"
|
2014-10-18 03:34:01 +00:00
|
|
|
#git add .
|
2014-10-20 23:45:23 +00:00
|
|
|
#su $(logname) -c "git commit -am 'removed grub-pc depend'"
|
2014-10-18 03:34:01 +00:00
|
|
|
} || :
|
2014-10-14 22:26:01 +00:00
|
|
|
}
|
|
|
|
popd
|
|
|
|
|
2014-10-17 04:24:00 +00:00
|
|
|
pushd "$WHONIX_DIR/build-steps.d"
|
|
|
|
{
|
2014-10-18 03:34:01 +00:00
|
|
|
search1=" check_for_uncommited_changes"
|
|
|
|
replace=" #check_for_uncommited_changes"
|
|
|
|
|
|
|
|
search_replace "$search1" "$replace" 1200_create-debian-packages || :
|
2014-10-17 04:24:00 +00:00
|
|
|
}
|
|
|
|
popd
|
2014-10-16 16:03:05 +00:00
|
|
|
|
2014-10-14 16:02:12 +00:00
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Whonix system config dependancies
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
#/usr/sbin/grub-probe: error: cannot find a device for / (is /dev mounted?)
|
|
|
|
#cannot stat `/boot/grub/grub.cfg': No such file or directory
|
|
|
|
|
|
|
|
# Qubes needs a user named 'user'
|
2014-10-18 03:34:01 +00:00
|
|
|
debug "Whonix Add user"
|
|
|
|
chroot "$INSTALLDIR" id -u 'user' >/dev/null 2>&1 || \
|
|
|
|
{
|
2014-10-14 16:02:12 +00:00
|
|
|
chroot "$INSTALLDIR" groupadd -f user
|
|
|
|
chroot "$INSTALLDIR" useradd -g user -G dialout,cdrom,floppy,sudo,audio,dip,video,plugdev -m -s /bin/bash user
|
2014-10-18 03:34:01 +00:00
|
|
|
}
|
2014-10-14 16:02:12 +00:00
|
|
|
|
|
|
|
# Change hostname to 'host'
|
2014-10-18 03:34:01 +00:00
|
|
|
debug "Whonix change host"
|
2014-10-14 16:02:12 +00:00
|
|
|
echo "host" > "$INSTALLDIR/etc/hostname"
|
|
|
|
chroot "$INSTALLDIR" sed -i "s/localhost/host/g" /etc/hosts
|
|
|
|
|
|
|
|
if ! [ -f "$INSTALLDIR/etc/sudoers.d/qubes" ]; then
|
|
|
|
cp -p /etc/sudoers.d/qubes "$INSTALLDIR/etc/sudoers.d/qubes"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Install Whonix system
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
if ! [ -d "$INSTALLDIR/home/user/Whonix" ]; then
|
2014-10-16 16:03:05 +00:00
|
|
|
debug "Installing Whonix build environment..."
|
2014-10-14 16:02:12 +00:00
|
|
|
chroot "$INSTALLDIR" su user -c 'mkdir /home/user/Whonix'
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d "$INSTALLDIR/home/user/Whonix" ]; then
|
2014-10-16 16:03:05 +00:00
|
|
|
debug "Building Whonix..."
|
2014-10-14 16:02:12 +00:00
|
|
|
mount --bind "../Whonix" "$INSTALLDIR/home/user/Whonix"
|
|
|
|
|
2014-10-18 03:34:01 +00:00
|
|
|
# XXX: Does this break Whonix build?
|
|
|
|
# Install apt-get preferences
|
|
|
|
#echo "$WHONIX_APT_PREFERENCES" > "$INSTALLDIR/etc/apt/apt.conf.d/99whonix"
|
|
|
|
#chmod 0644 "$INSTALLDIR/etc/apt/apt.conf.d/99whonix"
|
|
|
|
|
|
|
|
# Pin grub packages so they will not install
|
|
|
|
echo "$WHONIX_APT_PIN" > "$INSTALLDIR/etc/apt/preferences.d/whonix_qubes"
|
|
|
|
chmod 0644 "$INSTALLDIR/etc/apt/preferences.d/whonix_qubes"
|
|
|
|
|
|
|
|
# Install Whonix fix script
|
|
|
|
echo "$WHONIX_FIX_SCRIPT" > "$INSTALLDIR/home/user/whonix_fix"
|
|
|
|
chmod 0755 "$INSTALLDIR/home/user/whonix_fix"
|
|
|
|
|
|
|
|
# Install Whonix build scripts
|
|
|
|
echo "$WHONIX_BUILD_SCRIPT" > "$INSTALLDIR/home/user/whonix_build"
|
|
|
|
chmod 0755 "$INSTALLDIR/home/user/whonix_build"
|
|
|
|
|
|
|
|
if [ "${TEMPLATE_FLAVOR}" == "whonix-gateway" ]; then
|
|
|
|
BUILD_TYPE="--torgateway"
|
|
|
|
elif [ "${TEMPLATE_FLAVOR}" == "whonix-workstation" ]; then
|
|
|
|
BUILD_TYPE="--torworkstation"
|
|
|
|
else
|
|
|
|
error "Incorrent Whonix type \"${TEMPLATE_FLAVOR}\" selected. Not building Whonix modules"
|
|
|
|
error "You need to set TEMPLATE_FLAVOR environment variable to either"
|
|
|
|
error "whonix-gateway OR whonix-workstation"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
chroot "$INSTALLDIR" su user -c "cd ~; ./whonix_build $BUILD_TYPE $DIST" || { exit 1; }
|
|
|
|
else
|
|
|
|
error "chroot /home/user/Whonix directory does not exist... exiting!"
|
|
|
|
exit
|
2014-10-14 16:02:12 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Execute any custom configuration scripts
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
customStep "99_custom_configuration.sh"
|
|
|
|
|
|
|
|
# XXX: Why do I need to move them out of the way? Lets try keeping them
|
|
|
|
# in place (modify post script too)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Move Whonix sources out of way
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
#if [ -L "$INSTALLDIR/etc/apt/sources.list.d" ]; then
|
|
|
|
# mv "$INSTALLDIR/etc/apt/sources.list.d" "$INSTALLDIR/etc/apt/sources.list.d.qubes"
|
|
|
|
# mkdir -p "$INSTALLDIR/etc/apt/sources.list.d"
|
|
|
|
# cp -p "$INSTALLDIR/etc/apt/sources.list.d.qubes/debian.list" "$INSTALLDIR/etc/apt/sources.list.d"
|
|
|
|
#fi
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Bring back original apt-get for installation of Qubues
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
if [ -L "$INSTALLDIR/usr/bin/apt-get" ]; then
|
|
|
|
rm "$INSTALLDIR/usr/bin/apt-get"
|
|
|
|
chroot "$INSTALLDIR" su -c "cd /usr/bin/; ln -s apt-get.anondist-orig apt-get"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Leave cleanup to calling function
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
trap - ERR EXIT
|
|
|
|
trap
|