All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m51s
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
262 lines
9.6 KiB
Bash
262 lines
9.6 KiB
Bash
#!/bin/bash
|
|
# SPDX-Version: 3.0
|
|
# SPDX-CreationInfo: 2025-05-05; WEIDNER, Marc S.; <msw@coresecret.dev>
|
|
# SPDX-ExternalRef: GIT https://git.coresecret.dev/msw/CISS.debian.live.builder.git
|
|
# SPDX-FileContributor: WEIDNER, Marc S.; Centurion Intelligence Consulting Agency
|
|
# SPDX-FileCopyrightText: 2024-2025; WEIDNER, Marc S.; <msw@coresecret.dev>
|
|
# SPDX-FileType: SOURCE
|
|
# SPDX-License-Identifier: EUPL-1.2 OR LicenseRef-CCLA-1.0
|
|
# SPDX-LicenseComment: This file is part of the CISS.debian.installer.secure framework.
|
|
# SPDX-PackageName: CISS.debian.live.builder
|
|
# SPDX-Security-Contact: security@coresecret.eu
|
|
|
|
### Contributions so far see ./docs/CREDITS.md
|
|
|
|
### WHY BASH?
|
|
# Ease of installation. No compiling or installing gems, CPAN modules, pip packages, etc. Simple to use and read. Clear syntax
|
|
# and straightforward output interpretation. Built-in power. Pattern matching, line processing, and regular expression support
|
|
# are available natively, no external binaries required. Cross-platform consistency. '/bin/bash' is the default shell on most
|
|
# Linux distributions, ensuring scripts run unmodified across systems. macOS compatibility. Since macOS Catalina (10.15), the
|
|
# default login shell has been zsh, but bash remains available at '/bin/bash'. Windows support. You can use bash via WSL, MSYS2,
|
|
# or Cygwin on Windows systems.
|
|
|
|
### CATCH ARGUMENTS AND DECLARE BASIC VARIABLES.
|
|
# shellcheck disable=SC2155
|
|
declare -girx VAR_START_TIME="${SECONDS}" # Start time of script execution.
|
|
declare -grx VAR_PARAM_COUNT="$#" # Arguments passed to script.
|
|
declare -grx VAR_PARAM_STRNG="$*" # Arguments passed to script as string.
|
|
declare -ag ARY_PARAM_ARRAY=("$@") # Arguments passed to script as an array.
|
|
declare -grx VAR_SETUP_FILE="${0##*/}" # 'ciss_debian_live_builder.sh'
|
|
declare -grx VAR_SETUP_PATH="$(cd "$(dirname "${0}")" && pwd)" # '/opt/git/CISS.debian.live.builder'
|
|
declare -grx VAR_SETUP_FULL="$(cd "$(dirname "${0}")" && pwd)/${0##*/}" # '/opt/git/CISS.debian.live.builder/ciss_debian_live_builder.sh'
|
|
# shellcheck disable=SC2155
|
|
declare -grx SCRIPT_FULLPATH="$(readlink -f "${BASH_SOURCE[0]:-$0}")"
|
|
# shellcheck disable=SC2155
|
|
declare -grx SCRIPT_BASEPATH="$(dirname "${SCRIPT_FULLPATH}")"
|
|
# shellcheck disable=SC2155
|
|
declare -grx VAR_WORKDIR="$(dirname "${SCRIPT_FULLPATH}")"
|
|
|
|
### PRELIMINARY CHECKS.
|
|
### No ash, dash, ksh, sh.
|
|
# shellcheck disable=2292
|
|
[ -z "${BASH_VERSINFO[0]}" ] && {
|
|
. ./var/global.var.sh
|
|
printf "\e[91m❌ Please make sure you are using 'bash'! Bye... \e[0m\n" >&2
|
|
exit "${ERR_UNSPPTBASH}"
|
|
}
|
|
|
|
### No zsh.
|
|
[[ -n "${ZSH_VERSION:-}" ]] && {
|
|
. ./var/global.var.sh
|
|
printf "\e[91m❌ Please make sure you are using 'bash'! Bye... \e[0m\n" >&2
|
|
exit "${ERR_UNSPPTBASH}"
|
|
}
|
|
|
|
### Not root.
|
|
[[ ${EUID} -ne 0 ]] && {
|
|
. ./var/global.var.sh
|
|
printf "\e[91m❌ Please make sure you are 'root'! Bye... \e[0m\n" >&2
|
|
exit "${ERR_NOT_USER_0}"
|
|
}
|
|
|
|
### Check to be not called by sh.
|
|
# shellcheck disable=2312
|
|
[[ $(kill -l | grep -c SIG) -eq 0 ]] && {
|
|
. ./var/global.var.sh
|
|
printf "\e[91m❌ Please make sure you are calling the script without leading 'sh'! Bye... \e[0m\n" >&2
|
|
exit "${ERR_UNSPPTBASH}"
|
|
}
|
|
|
|
### Check to be not sourced.
|
|
[[ "${BASH_SOURCE[0]}" != "$0" ]] && {
|
|
. ./var/global.var.sh
|
|
printf "\e[91m❌ This script must be executed, not sourced. Please run '%s' directly! Bye... \e[0m\n" "$0" >&2
|
|
exit "${ERR_UNSPPTBASH}"
|
|
}
|
|
|
|
### Minimum Bash version 5.
|
|
[[ ${BASH_VERSINFO[0]} -lt 5 ]] && {
|
|
. ./var/global.var.sh
|
|
printf "\e[91m❌ Minimum requirement is bash 5.1. You are using '%s'! Bye... \e[0m\n" "${BASH_VERSION}" >&2
|
|
exit "${ERR_UNSPPTBASH}"
|
|
}
|
|
|
|
### Minimum Bash version 5.1.
|
|
[[ ${BASH_VERSINFO[0]} -le 5 ]] && [[ ${BASH_VERSINFO[1]} -le 1 ]] && {
|
|
. ./var/global.var.sh
|
|
printf "\e[91m❌ Minimum requirement is bash 5.1. You are using '%s'! Bye... \e[0m\n" "${BASH_VERSION}" >&2
|
|
exit "${ERR_UNSPPTBASH}"
|
|
}
|
|
|
|
### No arguments.
|
|
[[ ${#} -eq 0 ]] && {
|
|
. ./lib/lib_usage.sh
|
|
usage
|
|
exit 1
|
|
}
|
|
|
|
### SOURCING MUST SET EARLY VARIABLES, GUARD_SOURCING(), CHECK_GIT()
|
|
. ./var/early.var.sh
|
|
. ./lib/lib_guard_sourcing.sh
|
|
. ./lib/lib_source_guard.sh
|
|
source_guard "./lib/lib_git_var.sh"
|
|
|
|
### CHECK FOR CONTACT, HELP, VERSION STRING, AND XTRACE DEBUG
|
|
for arg in "$@"; do case "${arg,,}" in -c|--contact) . ./lib/lib_contact.sh; contact; exit 0;; esac; done
|
|
for arg in "$@"; do case "${arg,,}" in -h|--help) . ./lib/lib_usage.sh ; usage ; exit 0;; esac; done
|
|
for arg in "$@"; do case "${arg,,}" in -v|--version) . ./lib/lib_version.sh; version; exit 0;; esac; done
|
|
|
|
### ALL CHECKS DONE. READY TO START THE SCRIPT
|
|
source_guard "./var/bash.var.sh"
|
|
check_git
|
|
for arg in "$@"; do case "${arg,,}" in -d|--debug) . ./meta_sources_debug.sh; debugger "${@}";; esac; done
|
|
declare -gx VAR_SETUP="true"
|
|
|
|
### SOURCING VARIABLES
|
|
[[ "${VAR_SETUP}" == true ]] && {
|
|
source_guard "./var/color.var.sh"
|
|
source_guard "./var/global.var.sh"
|
|
}
|
|
|
|
### SOURCING LIBRARIES
|
|
[[ "${VAR_SETUP}" == true ]] && {
|
|
source_guard "./lib/lib_arg_parser.sh"
|
|
source_guard "./lib/lib_arg_priority_check.sh"
|
|
source_guard "./lib/lib_boot_screen.sh"
|
|
source_guard "./lib/lib_cdi.sh"
|
|
source_guard "./lib/lib_change_splash.sh"
|
|
source_guard "./lib/lib_check_dhcp.sh"
|
|
source_guard "./lib/lib_check_hooks.sh"
|
|
source_guard "./lib/lib_check_kernel.sh"
|
|
source_guard "./lib/lib_check_pkgs.sh"
|
|
source_guard "./lib/lib_check_provider.sh"
|
|
source_guard "./lib/lib_check_stats.sh"
|
|
source_guard "./lib/lib_check_var.sh"
|
|
source_guard "./lib/lib_ciss_upgrades.sh"
|
|
source_guard "./lib/lib_clean_screen.sh"
|
|
source_guard "./lib/lib_clean_up.sh"
|
|
source_guard "./lib/lib_copy_integrity.sh"
|
|
source_guard "./lib/lib_hardening_root_pw.sh"
|
|
source_guard "./lib/lib_hardening_ssh.sh"
|
|
source_guard "./lib/lib_hardening_ultra.sh"
|
|
source_guard "./lib/lib_helper_ip.sh"
|
|
source_guard "./lib/lib_lb_build_start.sh"
|
|
source_guard "./lib/lib_lb_config_start.sh"
|
|
source_guard "./lib/lib_lb_config_write.sh"
|
|
source_guard "./lib/lib_lb_config_write_trixie.sh"
|
|
source_guard "./lib/lib_note_target.sh"
|
|
source_guard "./lib/lib_provider_netcup.sh"
|
|
source_guard "./lib/lib_run_analysis.sh"
|
|
source_guard "./lib/lib_sanitizer.sh"
|
|
source_guard "./lib/lib_trap_on_err.sh"
|
|
source_guard "./lib/lib_trap_on_exit.sh"
|
|
source_guard "./lib/lib_update_microcode.sh"
|
|
source_guard "./lib/lib_usage.sh"
|
|
}
|
|
|
|
### ADVISORY LOCK
|
|
exec 127>/var/lock/ciss_live_builder.lock || {
|
|
printf "\e[91m❌ Cannot open lockfile for writing! Bye... \e[0m\n" >&2
|
|
exit "${ERR_FLOCK_WRTG}"
|
|
}
|
|
|
|
if ! flock -x -n 127; then
|
|
printf "\e[91m❌ Another instance is running! Bye...\e[0m\n" >&2
|
|
exit "${ERR_FLOCK_COLL}"
|
|
fi
|
|
|
|
### CHECK FOR AUTOBUILD MODE
|
|
for arg in "$@"; do case "${arg,,}" in -a=*|--autobuild=*) declare -gx VAR_HANDLER_AUTOBUILD="true"; declare -gx VAR_KERNEL="${arg#*=}";; esac; done; unset arg
|
|
for dir in /usr/local/sbin /usr/sbin; do case ":${PATH}:" in *":${dir}:"*) ;; *) PATH="${PATH}:${dir}" ;; esac; done; export PATH; unset dir
|
|
|
|
### CHECKING REQUIRED PACKAGES
|
|
check_pkgs
|
|
|
|
### DIALOG OUTPUT FOR INITIALIZATION
|
|
if ! ${VAR_HANDLER_AUTOBUILD}; then boot_screen; fi
|
|
|
|
### Updating Status of Dialog Gauge Bar
|
|
if ! ${VAR_HANDLER_AUTOBUILD}; then printf "XXX\nInitialization done ... \nXXX\n15\n" >&3; fi
|
|
|
|
### Updating Status of Dialog Gauge Bar
|
|
if ! ${VAR_HANDLER_AUTOBUILD}; then printf "XXX\nAdditional initialization ... \nXXX\n30\n" >&3; fi
|
|
|
|
### Updating Status of Dialog Gauge Bar
|
|
if ! ${VAR_HANDLER_AUTOBUILD}; then printf "XXX\nActivate traps ... \nXXX\n50\n" >&3; fi
|
|
### Following the CISS Bash naming and ordering scheme:
|
|
trap 'trap_on_exit "$?"' EXIT
|
|
trap 'trap_on_err "$?" "${BASH_SOURCE[0]}" "${LINENO}" "${FUNCNAME[0]:-main}" "${BASH_COMMAND}"' ERR
|
|
|
|
### Updating Status of Dialog Gauge Bar
|
|
if ! ${VAR_HANDLER_AUTOBUILD}; then printf "XXX\nSanitizing Arguments ... \nXXX\n75\n" >&3; fi
|
|
arg_check "$@"
|
|
declare -ar ARY_ARG_SANITIZED=("$@")
|
|
declare -gr VAR_ARG_SANITIZED="${ARY_ARG_SANITIZED[*]}"
|
|
|
|
### Updating Status of Dialog Gauge Bar
|
|
if ! ${VAR_HANDLER_AUTOBUILD}; then printf "XXX\nParsing Arguments ... \nXXX\n90\n" >&3; fi
|
|
arg_parser "$@"
|
|
|
|
### Updating Status of Dialog Gauge Bar
|
|
if ! ${VAR_HANDLER_AUTOBUILD}; then printf "XXX\nFinal checks ... \nXXX\n95\n" >&3; fi
|
|
clean_ip
|
|
|
|
### Updating Status of Dialog Gauge Bar
|
|
if ! ${VAR_HANDLER_AUTOBUILD}; then printf "XXX\nInitialization completed ... \nXXX\n100\n" >&3; sleep 1; fi
|
|
|
|
### Turn off Dialog Wrapper
|
|
if ! ${VAR_HANDLER_AUTOBUILD}; then boot_screen_cleaner; fi
|
|
|
|
### MAIN Program
|
|
arg_priority_check
|
|
check_stats
|
|
if ! ${VAR_HANDLER_AUTOBUILD}; then check_provider; fi
|
|
if ! ${VAR_HANDLER_AUTOBUILD}; then check_kernel; fi
|
|
|
|
if [[ ! "${VAR_SSHFP}" == "true" ]]; then
|
|
rm -f "${SCRIPT_BASEPATH}/config/includes.chroot/root/.ssh/id_2025_ed25519_ciss_primordial"
|
|
rm -f "${SCRIPT_BASEPATH}/config/includes.chroot/root/.ssh/id_2025_ed25519_ciss_primordial.pub"
|
|
fi
|
|
|
|
check_hooks
|
|
hardening_ssh
|
|
ciss_upgrades
|
|
lb_config_start
|
|
|
|
if [[ "${VAR_SUITE}" == "bookworm" ]]; then
|
|
|
|
lb_config_write
|
|
rm -f "${SCRIPT_BASEPATH}/config/hooks/live/9998_sources_list_trixie.chroot"
|
|
rm -f "${SCRIPT_BASEPATH}/config/includes.chroot/etc/login.defs"
|
|
|
|
else
|
|
|
|
lb_config_write_trixie
|
|
rm -f "${SCRIPT_BASEPATH}/config/hooks/live/0003_install_backports.chroot"
|
|
rm -f "${SCRIPT_BASEPATH}/config/hooks/live/9998_sources_list_bookworm.chroot"
|
|
|
|
fi
|
|
|
|
# shellcheck disable=SC2164
|
|
cd "${VAR_WORKDIR}"
|
|
|
|
hardening_ultra
|
|
hardening_root_pw
|
|
change_splash
|
|
check_dhcp
|
|
cdi
|
|
provider_netcup
|
|
note_target
|
|
update_microcode
|
|
|
|
### Start the build process
|
|
set +o errtrace
|
|
lb_build_start
|
|
|
|
set -o errtrace
|
|
run_analysis
|
|
copy_db
|
|
declare -g VAR_SCRIPT_SUCCESS=true
|
|
exit 0
|
|
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh
|