diff --git a/rex.project/x86_64/components/stage4/cracklib.bash b/rex.project/x86_64/components/stage4/cracklib.bash new file mode 100755 index 0000000..3d00ecf --- /dev/null +++ b/rex.project/x86_64/components/stage4/cracklib.bash @@ -0,0 +1,216 @@ +#!/bin/bash +# desc: +# stages, builds, installs +# NOTE: requires autoreconf -- dont use +# make variables persist in subprocesses for logging function +set -a + +# ---------------------------------------------------------------------- +# Configuration: +# ---------------------------------------------------------------------- +# the name of this application +APPNAME="cracklib" + +# the version of this application +VERSION="2.9.8" + +# ---------------------------------------------------------------------- +# Variables and functions sourced from Environment: +# ---------------------------------------------------------------------- +# assert_zero() +# Checks if $1 is 0. If non-0 value, halts the execution of the script. +# +# LOGS_ROOT +# The parent directory where logs from this project will go. +# +# TEMP_STAGE_DIR +# The parent directory of where source archives are extracted to. + +# register mode selections +ARGUMENT_LIST=( + "stage" + "build" + "install" + "all" + "help" +) + +# modes to associate with switches +# assumes you want nothing done unless you ask for it. +MODE_STAGE=false +MODE_BUILD=false +MODE_INSTALL=false +MODE_ALL=false +MODE_HELP=false + +# the file to log to +LOGFILE="${APPNAME}.log" + +# ISO 8601 variation +TIMESTAMP="$(date +%Y-%m-%d_%H:%M:%S)" + +# the path where logs are written to +# note: LOGS_ROOT is sourced from environment +LOG_DIR="${LOGS_ROOT}/${APPNAME}-${TIMESTAMP}" + +# the path where the source will be located when complete +# note: TEMP_STAGE_DIR is sourced from environment +T_SOURCE_DIR="${TEMP_STAGE_DIR}/${APPNAME}" + +# read defined arguments +opts=$(getopt \ + --longoptions "$(printf "%s," "${ARGUMENT_LIST[@]}")" \ + --name "$APPNAME" \ + --options "" \ + -- "$@" +) + +# process supplied arguments into flags that enable execution modes +eval set --$opts +while [[ $# -gt 0 ]]; do + case "$1" in + --stage) + MODE_STAGE=true + shift 1 + ;; + --build) + MODE_BUILD=true + shift 1 + ;; + --install) + MODE_INSTALL=true + shift 1 + ;; + --all) + MODE_ALL=true + shift 1 + ;; + --help) + MODE_HELP=true + shift 1 + ;; + *) + break + ;; + esac +done + +# print to stdout, print to log +logprint() { + mkdir -p "${LOG_DIR}" + echo "[$(date +%Y-%m-%d_%H:%M:%S)] [${APPNAME}] $1" \ + | tee -a "${LOG_DIR}/${LOGFILE}" +} + +# Tell the user we're alive... +logprint "Initializing the ${APPNAME} utility..." + +# when the stage mode is enabled, this will execute +mode_stage() { + logprint "Starting stage of ${APPNAME}..." + + logprint "Removing any pre-existing staging for ${APPNAME}." + rm -Rf "${T_SOURCE_DIR}"* + + logprint "Extracting ${APPNAME}-${VERSION} source archive to ${TEMP_STAGE_DIR}" + tar xf "${SOURCES_DIR}/${APPNAME}-${VERSION}.tar."* -C "${TEMP_STAGE_DIR}" + assert_zero $? + + # conditionally rename if it needs it + stat "${T_SOURCE_DIR}-"* && mv "${T_SOURCE_DIR}-"* "${T_SOURCE_DIR}" + + logprint "Staging operation complete." +} + +# when the build_pass1 mode is enabled, this will execute +mode_build() { + + # patch, configure and build + logprint "Starting build of ${APPNAME}..." + + logprint "Entering build dir." + pushd "${T_SOURCE_DIR}" + assert_zero $? + + logprint "Pre-work" + autoreconf -fiv + + logprint "Configuring ${APPNAME}..." + CC=gcc ./configure \ + --prefix=/usr \ + -G \ + -O3 \ + -r + assert_zero $? + + logprint "Compiling..." + make + assert_zero $? + + logprint "Checking" + make test + logprint "Checks exited with '$?'. " + + logprint "Build operation complete." +} + +mode_install() { + logprint "Starting install of ${APPNAME}..." + pushd "${T_SOURCE_DIR}" + assert_zero $? + + logprint "Installing..." + make install + assert_zero $? + + logprint "Install operation complete." +} + + +mode_help() { + echo "${APPNAME} [ --stage ] [ --build_temp ] [ --install_temp ] [ --all_temp ] [ --help ]" + exit 1 +} + +if [ "$MODE_ALL" = "true" ]; then + MODE_STAGE=true + MODE_BUILD=true + MODE_INSTALL=true +fi + +# if no options were selected, then show help and exit +if \ + [ "$MODE_HELP" != "true" ] && \ + [ "$MODE_STAGE" != "true" ] && \ + [ "$MODE_BUILD" != "true" ] && \ + [ "$MODE_INSTALL" != "true" ] +then + logprint "No option selected during execution." + mode_help +fi + +# if help was supplied at all, show help and exit +if [ "$MODE_HELP" = "true" ]; then + logprint "Help option selected. Printing options and exiting." + mode_help +fi + +if [ "$MODE_STAGE" = "true" ]; then + logprint "Staging option selected." + mode_stage + assert_zero $? +fi + +if [ "$MODE_BUILD" = "true" ]; then + logprint "Build of ${APPNAME} selected." + mode_build + assert_zero $? +fi + +if [ "$MODE_INSTALL" = "true" ]; then + logprint "Install of ${APPNAME} selected." + mode_install + assert_zero $? +fi + +logprint "Execution of ${APPNAME} completed." diff --git a/rex.project/x86_64/components/stage4/shadow.bash b/rex.project/x86_64/components/stage4/shadow.bash new file mode 100755 index 0000000..7e32a13 --- /dev/null +++ b/rex.project/x86_64/components/stage4/shadow.bash @@ -0,0 +1,252 @@ +#!/bin/bash +# desc: +# stages, builds, installs + +# make variables persist in subprocesses for logging function +set -a + +# ---------------------------------------------------------------------- +# Configuration: +# ---------------------------------------------------------------------- +# the name of this application +APPNAME="shadow" + +# the version of this application +VERSION="4.13" + +# ---------------------------------------------------------------------- +# Variables and functions sourced from Environment: +# ---------------------------------------------------------------------- +# assert_zero() +# Checks if $1 is 0. If non-0 value, halts the execution of the script. +# +# LOGS_ROOT +# The parent directory where logs from this project will go. +# +# TEMP_STAGE_DIR +# The parent directory of where source archives are extracted to. + +# register mode selections +ARGUMENT_LIST=( + "stage" + "build" + "install" + "all" + "help" +) + +# modes to associate with switches +# assumes you want nothing done unless you ask for it. +MODE_STAGE=false +MODE_BUILD=false +MODE_INSTALL=false +MODE_ALL=false +MODE_HELP=false + +# the file to log to +LOGFILE="${APPNAME}.log" + +# ISO 8601 variation +TIMESTAMP="$(date +%Y-%m-%d_%H:%M:%S)" + +# the path where logs are written to +# note: LOGS_ROOT is sourced from environment +LOG_DIR="${LOGS_ROOT}/${APPNAME}-${TIMESTAMP}" + +# the path where the source will be located when complete +# note: TEMP_STAGE_DIR is sourced from environment +T_SOURCE_DIR="${TEMP_STAGE_DIR}/${APPNAME}" + +# read defined arguments +opts=$(getopt \ + --longoptions "$(printf "%s," "${ARGUMENT_LIST[@]}")" \ + --name "$APPNAME" \ + --options "" \ + -- "$@" +) + +# process supplied arguments into flags that enable execution modes +eval set --$opts +while [[ $# -gt 0 ]]; do + case "$1" in + --stage) + MODE_STAGE=true + shift 1 + ;; + --build) + MODE_BUILD=true + shift 1 + ;; + --install) + MODE_INSTALL=true + shift 1 + ;; + --all) + MODE_ALL=true + shift 1 + ;; + --help) + MODE_HELP=true + shift 1 + ;; + *) + break + ;; + esac +done + +# print to stdout, print to log +logprint() { + mkdir -p "${LOG_DIR}" + echo "[$(date +%Y-%m-%d_%H:%M:%S)] [${APPNAME}] $1" \ + | tee -a "${LOG_DIR}/${LOGFILE}" +} + +# Tell the user we're alive... +logprint "Initializing the ${APPNAME} utility..." + +# when the stage mode is enabled, this will execute +mode_stage() { + logprint "Starting stage of ${APPNAME}..." + + logprint "Removing any pre-existing staging for ${APPNAME}." + rm -Rf "${T_SOURCE_DIR}"* + + logprint "Extracting ${APPNAME}-${VERSION} source archive to ${TEMP_STAGE_DIR}" + tar xf "${SOURCES_DIR}/${APPNAME}-${VERSION}.tar."* -C "${TEMP_STAGE_DIR}" + assert_zero $? + + # conditionally rename if it needs it + stat "${T_SOURCE_DIR}-"* && mv "${T_SOURCE_DIR}-"* "${T_SOURCE_DIR}" + + logprint "Staging operation complete." +} + +# when the build_pass1 mode is enabled, this will execute +mode_build() { + + # patch, configure and build + logprint "Starting build of ${APPNAME}..." + + logprint "Entering build dir." + pushd "${T_SOURCE_DIR}" + assert_zero $? + + logprint "Pre-work" + sed -i 's/groups$(EXEEXT) //' src/Makefile.in + assert_zero $? + + find man -name Makefile.in -exec sed -i 's/groups\.1 / /' {} \; + assert_zero $? + + find man -name Makefile.in -exec sed -i 's/getspnam\.3 / /' {} \; + assert_zero $? + + find man -name Makefile.in -exec sed -i 's/passwd\.5 / /' {} \; + assert_zero $? + + # TODO: turn this into a patch + # TODO: break this into several optional patches + sed -e 's:#ENCRYPT_METHOD DES:ENCRYPT_METHOD SHA512:' \ + -e 's@#\(SHA_CRYPT_..._ROUNDS 5000\)@\100@' \ + -e 's:/var/spool/mail:/var/mail:' \ + -e '/PATH=/{s@/sbin:@@;s@/bin:@@}' \ + -i etc/login.defs + assert_zero $? + + touch /usr/bin/passwd + assert_zero $? + + logprint "Configuring ${APPNAME}..." + # this group name length option seems to be arbitrary and unnecessary + ./configure \ + --sysconfdir=/etc \ + --disable-static \ + --with-group-name-max-length=32 + assert_zero $? + + logprint "Compiling..." + make + assert_zero $? + + logprint "Build operation complete." +} + +mode_install() { + logprint "Starting install of ${APPNAME}..." + pushd "${T_SOURCE_DIR}" + assert_zero $? + + logprint "Installing..." + make exec_prefix=/usr install + assert_zero $? + + logprint "Installing manpages." + make -C man install-man + assert_zero $? + + logprint "Post-Install Configuration..." + pwconv + assert_zero $? + + grpconv + assert_zero $? + + mkdir -p /etc/default + assert_zero $? + + useradd -D --gid 999 + assert_zero $? + + + logprint "Install operation complete." +} + + +mode_help() { + echo "${APPNAME} [ --stage ] [ --build_temp ] [ --install_temp ] [ --all_temp ] [ --help ]" + exit 1 +} + +if [ "$MODE_ALL" = "true" ]; then + MODE_STAGE=true + MODE_BUILD=true + MODE_INSTALL=true +fi + +# if no options were selected, then show help and exit +if \ + [ "$MODE_HELP" != "true" ] && \ + [ "$MODE_STAGE" != "true" ] && \ + [ "$MODE_BUILD" != "true" ] && \ + [ "$MODE_INSTALL" != "true" ] +then + logprint "No option selected during execution." + mode_help +fi + +# if help was supplied at all, show help and exit +if [ "$MODE_HELP" = "true" ]; then + logprint "Help option selected. Printing options and exiting." + mode_help +fi + +if [ "$MODE_STAGE" = "true" ]; then + logprint "Staging option selected." + mode_stage + assert_zero $? +fi + +if [ "$MODE_BUILD" = "true" ]; then + logprint "Build of ${APPNAME} selected." + mode_build + assert_zero $? +fi + +if [ "$MODE_INSTALL" = "true" ]; then + logprint "Install of ${APPNAME} selected." + mode_install + assert_zero $? +fi + +logprint "Execution of ${APPNAME} completed." diff --git a/rex.project/x86_64/plans/master.plan b/rex.project/x86_64/plans/master.plan index c972718..e267ac9 100644 --- a/rex.project/x86_64/plans/master.plan +++ b/rex.project/x86_64/plans/master.plan @@ -5,36 +5,6 @@ "name": "welcome master", "dependencies": [ null ], "comment": "greet the user" - }, - { - "name": "gmp standalone", - "dependencies": [ null ], - "comment": "LFS 11.3-systemd-rc1 Ch. 8.19" - }, - { - "name": "mpfr standalone", - "dependencies": [ null ], - "comment": "LFS 11.3-systemd-rc1 Ch. 8.20" - }, - { - "name": "mpc standalone", - "dependencies": [ null ], - "comment": "LFS 11.3-systemd-rc1 Ch. 8.21" - }, - { - "name": "attr", - "dependencies": [ null ], - "comment": "LFS 11.3-systemd-rc1 Ch. 8.22" - }, - { - "name": "acl", - "dependencies": [ null ], - "comment": "LFS 11.3-systemd-rc1 Ch. 8.23" - }, - { - "name": "libcap", - "dependencies": [ null ], - "comment": "LFS 11.3-systemd-rc1 Ch. 8.24" } ] } diff --git a/rex.project/x86_64/plans/stage4.plan b/rex.project/x86_64/plans/stage4.plan index 2b140c7..85c9411 100644 --- a/rex.project/x86_64/plans/stage4.plan +++ b/rex.project/x86_64/plans/stage4.plan @@ -85,6 +85,41 @@ "name": "binutils pass 3", "dependencies": [ null ], "comment": "LFS 11.3-systemd-rc1 Ch. 8.18" + }, + { + "name": "gmp standalone", + "dependencies": [ null ], + "comment": "LFS 11.3-systemd-rc1 Ch. 8.19" + }, + { + "name": "mpfr standalone", + "dependencies": [ null ], + "comment": "LFS 11.3-systemd-rc1 Ch. 8.20" + }, + { + "name": "mpc standalone", + "dependencies": [ null ], + "comment": "LFS 11.3-systemd-rc1 Ch. 8.21" + }, + { + "name": "attr", + "dependencies": [ null ], + "comment": "LFS 11.3-systemd-rc1 Ch. 8.22" + }, + { + "name": "acl", + "dependencies": [ null ], + "comment": "LFS 11.3-systemd-rc1 Ch. 8.23" + }, + { + "name": "libcap", + "dependencies": [ null ], + "comment": "LFS 11.3-systemd-rc1 Ch. 8.24" + }, + { + "name": "shadow", + "dependencies": [ null ], + "comment": "LFS 11.3-systemd-rc1 Ch. 8.25" } ] } diff --git a/rex.project/x86_64/units/master.units b/rex.project/x86_64/units/master.units index aa84e7b..897884b 100644 --- a/rex.project/x86_64/units/master.units +++ b/rex.project/x86_64/units/master.units @@ -17,114 +17,6 @@ "group": "root", "supply_environment": true, "environment": "environments/stage4.env.bash" - }, - { - "name": "gmp standalone", - "target": "components/stage4/gmp_standalone.bash --all", - "is_shell_command": true, - "shell_definition": "bash", - "force_pty": true, - "set_working_directory": false, - "working_directory": "", - "rectify": false, - "rectifier": "", - "active": true, - "required": true, - "set_user_context": true, - "user": "root", - "group": "root", - "supply_environment": true, - "environment": "environments/stage4.env.bash" - }, - { - "name": "mpfr standalone", - "target": "components/stage4/mpfr_standalone.bash --all", - "is_shell_command": true, - "shell_definition": "bash", - "force_pty": true, - "set_working_directory": false, - "working_directory": "", - "rectify": false, - "rectifier": "", - "active": true, - "required": true, - "set_user_context": true, - "user": "root", - "group": "root", - "supply_environment": true, - "environment": "environments/stage4.env.bash" - }, - { - "name": "mpc standalone", - "target": "components/stage4/mpc_standalone.bash --all", - "is_shell_command": true, - "shell_definition": "bash", - "force_pty": true, - "set_working_directory": false, - "working_directory": "", - "rectify": false, - "rectifier": "", - "active": true, - "required": true, - "set_user_context": true, - "user": "root", - "group": "root", - "supply_environment": true, - "environment": "environments/stage4.env.bash" - }, - { - "name": "attr", - "target": "components/stage4/attr.bash --all", - "is_shell_command": true, - "shell_definition": "bash", - "force_pty": true, - "set_working_directory": false, - "working_directory": "", - "rectify": false, - "rectifier": "", - "active": true, - "required": true, - "set_user_context": true, - "user": "root", - "group": "root", - "supply_environment": true, - "environment": "environments/stage4.env.bash" - }, - { - "name": "acl", - "target": "components/stage4/acl.bash --all", - "is_shell_command": true, - "shell_definition": "bash", - "force_pty": true, - "set_working_directory": false, - "working_directory": "", - "rectify": false, - "rectifier": "", - "active": true, - "required": true, - "set_user_context": true, - "user": "root", - "group": "root", - "supply_environment": true, - "environment": "environments/stage4.env.bash" - }, - { - "name": "libcap", - "target": "components/stage4/libcap.bash --all", - "is_shell_command": true, - "shell_definition": "bash", - "force_pty": true, - "set_working_directory": false, - "working_directory": "", - "rectify": false, - "rectifier": "", - "active": true, - "required": true, - "set_user_context": true, - "user": "root", - "group": "root", - "supply_environment": true, - "environment": "environments/stage4.env.bash" } ] } diff --git a/rex.project/x86_64/units/stage4.units b/rex.project/x86_64/units/stage4.units index 60f4f59..12a6a01 100644 --- a/rex.project/x86_64/units/stage4.units +++ b/rex.project/x86_64/units/stage4.units @@ -305,6 +305,132 @@ "group": "root", "supply_environment": true, "environment": "environments/stage4.env.bash" + }, + { + "name": "gmp standalone", + "target": "components/stage4/gmp_standalone.bash --all", + "is_shell_command": true, + "shell_definition": "bash", + "force_pty": true, + "set_working_directory": false, + "working_directory": "", + "rectify": false, + "rectifier": "", + "active": true, + "required": true, + "set_user_context": true, + "user": "root", + "group": "root", + "supply_environment": true, + "environment": "environments/stage4.env.bash" + }, + { + "name": "mpfr standalone", + "target": "components/stage4/mpfr_standalone.bash --all", + "is_shell_command": true, + "shell_definition": "bash", + "force_pty": true, + "set_working_directory": false, + "working_directory": "", + "rectify": false, + "rectifier": "", + "active": true, + "required": true, + "set_user_context": true, + "user": "root", + "group": "root", + "supply_environment": true, + "environment": "environments/stage4.env.bash" + }, + { + "name": "mpc standalone", + "target": "components/stage4/mpc_standalone.bash --all", + "is_shell_command": true, + "shell_definition": "bash", + "force_pty": true, + "set_working_directory": false, + "working_directory": "", + "rectify": false, + "rectifier": "", + "active": true, + "required": true, + "set_user_context": true, + "user": "root", + "group": "root", + "supply_environment": true, + "environment": "environments/stage4.env.bash" + }, + { + "name": "attr", + "target": "components/stage4/attr.bash --all", + "is_shell_command": true, + "shell_definition": "bash", + "force_pty": true, + "set_working_directory": false, + "working_directory": "", + "rectify": false, + "rectifier": "", + "active": true, + "required": true, + "set_user_context": true, + "user": "root", + "group": "root", + "supply_environment": true, + "environment": "environments/stage4.env.bash" + }, + { + "name": "acl", + "target": "components/stage4/acl.bash --all", + "is_shell_command": true, + "shell_definition": "bash", + "force_pty": true, + "set_working_directory": false, + "working_directory": "", + "rectify": false, + "rectifier": "", + "active": true, + "required": true, + "set_user_context": true, + "user": "root", + "group": "root", + "supply_environment": true, + "environment": "environments/stage4.env.bash" + }, + { + "name": "libcap", + "target": "components/stage4/libcap.bash --all", + "is_shell_command": true, + "shell_definition": "bash", + "force_pty": true, + "set_working_directory": false, + "working_directory": "", + "rectify": false, + "rectifier": "", + "active": true, + "required": true, + "set_user_context": true, + "user": "root", + "group": "root", + "supply_environment": true, + "environment": "environments/stage4.env.bash" + }, + { + "name": "shadow", + "target": "components/stage4/shadow.bash --all", + "is_shell_command": true, + "shell_definition": "bash", + "force_pty": true, + "set_working_directory": false, + "working_directory": "", + "rectify": false, + "rectifier": "", + "active": true, + "required": true, + "set_user_context": true, + "user": "root", + "group": "root", + "supply_environment": true, + "environment": "environments/stage4.env.bash" } ] }