lynis/extras/build-lynis.sh

406 lines
12 KiB
Bash
Raw Normal View History

2014-08-26 17:33:55 +02:00
#!/bin/sh
#########################################################################
#
# Builds Lynis distribution
#
# Usage: this script creates Lynis builds
#
# *** NOTE ***
# This script is not fully functional yet, several options like digital
# signing, RPM/DEB package creation are missing.
#
#########################################################################
#
# Options:
2014-09-14 16:40:18 +02:00
2014-09-14 20:35:01 +02:00
echo "[*] Activity [V] Succesful [X] Error [=] Result"
echo ""
2014-09-14 16:40:18 +02:00
2014-08-26 17:33:55 +02:00
# Umask used when creating files/directories
OPTION_UMASK="027"
# Directory name used to create package related directories (like /usr/local/include/lynis)
OPTION_PACKAGE_DIRNAME="lynis"
# Binary to test
2014-09-14 16:40:18 +02:00
OPTION_BINARY_FILE="../lynis"
2014-09-14 20:35:01 +02:00
# Check number of parameters
2014-09-14 16:40:18 +02:00
if [ $# -eq 0 ]; then
echo "[X] This build tool needs at least a version number (--version). Use --help for all parameters."
exit 1
fi
2014-09-14 20:35:01 +02:00
2014-09-14 16:40:18 +02:00
# Check parameters
case $1 in
--help)
echo "Define version:"
echo "--version 1.2.3"
exit 1
;;
--version)
shift
LYNIS_VERSION=$1
;;
*)
echo "[X] Incorrect parameter"
exit 1
;;
esac
2014-08-26 17:33:55 +02:00
#
#########################################################################
#
# Functions:
# Clean temporary files up
CleanUp()
{
2014-09-14 20:35:01 +02:00
if [ ! "${TMPDIR}" = "" -a -d "${TMPDIR}" ]; then
2014-08-26 17:33:55 +02:00
rm -rf ${TMPDIR}
fi
}
2014-09-14 16:40:18 +02:00
Exit()
{
CleanUp
exit 0
}
ExitFatal()
{
CleanUp
exit 1
}
2014-08-26 17:33:55 +02:00
#
#########################################################################
#
# Clean files up if we get interrupted
trap CleanUp INT
#
#########################################################################
#
2014-09-14 20:35:01 +02:00
MYUSER=`whoami`
if [ "${MYUSER}" = "" ]; then
echo "[X] Could not determine user"
fi
if [ "${MYUSER}" = "root" ]; then
echo "[X] This script should not be executed as root"
fi
MYWORKDIR=`pwd | awk -F / '{ for (i=1;i<=NF-2;i++){ printf $i"/" }; printf "\n"}' | sed 's./$..'`
if [ ! -d ${MYWORKDIR} ]; then
echo "[X] Could not determine workdir (result: ${MYWORKDIR} seems invalid)"
ExitFatal
else
echo "[=] workdir: ${MYWORKDIR}"
fi
MYBUILDDIR="/home/${MYUSER}/lynis-build"
if [ ! -d ${MYBUILDDIR} ]; then
echo "[X] ${MYBUILDDIR} not found"
echo " Hint: create it with mkdir ${MYBUILDDIR}"
ExitFatal
else
echo "[=] builddir: ${MYBUILDDIR}"
fi
2014-08-26 17:33:55 +02:00
2014-09-14 20:35:01 +02:00
NEEDED_DIRS="debbuild rpmbuild rpmbuild/BUILD rpmbuild/BUILDROOT rpmbuild/RPMS rpmbuild/SOURCES rpmbuild/SRPMS"
for I in ${NEEDED_DIRS}; do
if [ ! -d "${MYBUILDDIR}/${I}" ]; then
echo "[X] Missing directory: ${MYBUILDDIR}/${I}"
echo " Hint: create subdirs with cd ${MYBUILDDIR} && mkdir -p ${NEEDED_DIRS}"
ExitFatal
fi
done
DEBWORKDIR="${MYBUILDDIR}/debbuild"
RPMWORKDIR="${MYBUILDDIR}/rpmbuild"
echo "[=] RPM workdir: ${RPMWORKDIR}"
#echo "Use: cd ${MYBUILDDIR} && mkdir rpm"
# Check binaries
2014-09-14 20:54:17 +02:00
GITBUILDPACKAGEBINARY=`which git-buildpackage`
if [ ! "${GITBUILDPACKAGEBINARY}" = "" ]; then
echo "[=] git-buildpackage = ${GITBUILDPACKAGEBINARY}"
2014-09-14 20:35:01 +02:00
else
2014-09-14 20:54:17 +02:00
echo "[X] Can not find git-buildpackage binary"
echo " Hint: install git-buildpackage"
2014-09-14 20:35:01 +02:00
ExitFatal
fi
RPMBUILDBINARY=`which rpmbuild`
if [ ! "${RPMBUILDBINARY}" = "" ]; then
echo "[=] rpmbuild = ${RPMBUILDBINARY}"
else
echo "[X] Can not find rpmbuild binary"
echo " Hint: install rpmbuild"
ExitFatal
fi
# Set umask
2014-08-26 17:33:55 +02:00
umask ${OPTION_UMASK}
if [ $? -eq 0 ]; then
2014-09-14 20:35:01 +02:00
echo "[V] Setting umask to ${OPTION_UMASK}"
2014-08-26 17:33:55 +02:00
else
2014-09-14 20:35:01 +02:00
echo "[X] Could not set umask"
ExitFatal
fi
# Check if we are in dev directory
if [ -f ../lynis -a -f ./build-lynis.sh ]; then
echo "[V] Active in proper directory"
else
echo "[X] This script should be executed from dev directory itself"
ExitFatal
2014-08-26 17:33:55 +02:00
fi
2014-09-14 20:35:01 +02:00
2014-08-26 17:33:55 +02:00
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2014-09-14 20:35:01 +02:00
# Create temporary build directory
2014-09-14 16:40:18 +02:00
TMPDIR=`mktemp -d /tmp/lynis-BUILDROOT.XXXXXX`
2014-08-26 17:33:55 +02:00
if [ $? -eq 0 ]; then
2014-09-14 20:35:01 +02:00
echo "[V] Creating temporary build directory"
#echo " BUILDROOT: ${TMPDIR}"
2014-08-26 17:33:55 +02:00
else
2014-09-14 20:35:01 +02:00
echo "[X] Could not create temporary build directory"
ExitFatal
2014-08-26 17:33:55 +02:00
fi
2014-09-14 16:40:18 +02:00
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2014-09-14 20:35:01 +02:00
echo "[*] Starting with building tarball"
TARBALL="${MYBUILDDIR}/lynis_${LYNIS_VERSION}.orig.tar.gz"
#if [ -f ${TARBALL} ]; then
# echo "[X] Tarball already exists "
# echo " Hint: remove ${TARBALL}"
# ExitFatal
#fi
# Create tarball
if [ -f ${TARBALL} ]; then
2014-10-26 23:34:34 +01:00
echo "Tarball already exists for this version, not overwriting it"
2014-09-14 20:35:01 +02:00
else
2014-10-26 23:34:34 +01:00
tar -C ${MYWORKDIR} --exclude=debian --exclude=README.md --exclude=.bzr* --exclude=.git* -c -z -f ${TARBALL} lynis 2> /dev/null
if [ -f ${TARBALL} ]; then
echo "[V] Tarball created"
else
echo "[X] Tarball ${TARBALL} could not be created"
ExitFatal
fi
2014-09-14 20:35:01 +02:00
fi
TARBALL_MD5=`md5sum ${TARBALL}`
TARBALL_SHA1=`sha1sum ${TARBALL}`
2014-09-14 20:35:01 +02:00
echo "[*] Starting with RPM building process"
2014-09-14 16:40:18 +02:00
# RPM creation
2014-09-14 20:35:01 +02:00
SOURCEFILE_RPM="${RPMWORKDIR}/SOURCES/lynis-${LYNIS_VERSION}.tar.gz"
2014-09-14 16:40:18 +02:00
if [ -f ${SOURCEFILE_RPM} ]; then
if [ -f lynis.spec ]; then
# adjust version in spec file
VERSION_IN_SPECFILE=`cat lynis.spec | grep "^Version:" | sed 's/ //g' | awk -F: '{ print $2 }'`
echo "[=] Found version ${VERSION_IN_SPECFILE}"
if [ ${VERSION_IN_SPECFILE} = "" -o ! "${VERSION_IN_SPECFILE}" = "${LYNIS_VERSION}" ]; then
echo "[X] Version in specfile is outdated"
ExitFatal
fi
echo "[*] Start RPM building"
2014-09-14 20:35:01 +02:00
#${RPMBUILDBINARY} --quiet -ba -bl lynis.spec 2> /dev/null
2014-09-14 16:40:18 +02:00
else
echo "[X] lynis.spec not found"
ExitFatal
fi
2014-09-14 20:35:01 +02:00
RPMFILE="${RPMWORKDIR}/RPMS/noarch/lynis-${LYNIS_VERSION}-1.noarch.rpm"
2014-09-14 16:40:18 +02:00
if [ -f ${RPMFILE} ]; then
echo "[V] Building RPM succesful!"
else
echo "[X] Could not find RPM file, most likely failed"
echo " Expected: ${RPMFILE}"
ExitFatal
fi
else
2014-09-14 20:35:01 +02:00
echo "[X] Could not find source file (${SOURCEFILE_RPM})"
echo " Hint: cp <lynis.tar.gz> ${SOURCEFILE_RPM}"
2014-10-24 11:19:35 +02:00
#ExitFatal
2014-09-14 16:40:18 +02:00
fi
2014-09-14 20:35:01 +02:00
echo "[*] Starting with DEB building process"
2014-09-14 20:54:17 +02:00
DEBCHANGELOGFULLVERSION=`head -1 ../debian/changelog | awk '{ print $2 }' | sed 's/(//' | sed 's/)//'`
2014-09-14 20:35:01 +02:00
DEBCHANGELOGVERSION=`echo ${DEBCHANGELOGFULLVERSION} | awk -F- '{ print $1 }'`
DEBCHANGELOGVERSIONREV=`echo ${DEBCHANGELOGFULLVERSION} | awk -F- '{ print $2 }'`
if [ "${LYNIS_VERSION}" = "${DEBCHANGELOGVERSION}" ]; then
echo "[V] Debian/changelog up-to-date"
else
echo "[X] Debian/changelog outdated"
ExitFatal
fi
2014-09-14 20:54:17 +02:00
# BZRSTATUS=`${BZRBINARY} status . 2>&1 > /dev/null; echo $?`
# if [ "${BZRSTATUS}" = "0" ]; then
# echo "[V] bzr has proper directory tree"
# DEBCHANGELOGFULLVERSION=`head -1 debian/changelog | awk '{ print $2 }' | sed 's/(//' | sed 's/)//'`
# DEBCHANGELOGVERSION=`echo ${DEBCHANGELOGFULLVERSION} | awk -F- '{ print $1 }'`
# DEBCHANGELOGVERSIONREV=`echo ${DEBCHANGELOGFULLVERSION} | awk -F- '{ print $2 }'`
# echo "[=] Version in Debian changelog: ${DEBCHANGELOGVERSION} (revision: ${DEBCHANGELOGVERSIONREV})"
# if [ "${LYNIS_VERSION}" = "${DEBCHANGELOGVERSION}" ]; then
# echo "[V] Debian/changelog up-to-date"
# else
# echo "[X] Debian/changelog outdated"
## ExitFatal
# fi
# # execute command
# # bzr builddeb . --build-dir ${DEBWORKDIR}/build-area/ --result-dir ${DEBWORKDIR}
# elif [ "${BZRSTATUS}" = "3" ]; then
# echo "[X] Tree is not initialized for BZR"
# echo " Hint: run bzr init while being in lynis directory (or bzr init ..)"
# ExitFatal
# else
# echo "[X] Unknown error"
# echo "Output: ${BZRSTATUS}"
# fi
2014-10-24 12:45:44 +02:00
if [ ! -d ${MYBUILDDIR}/git ]; then
mkdir ${MYBUILDDIR}/git
fi
2014-10-24 11:19:35 +02:00
if [ -d ${MYBUILDDIR}/git/Lynis ]; then
echo "git clone already exists"
rm -rf ${MYBUILDDIR}/git/Lynis
#git checkout tags/${LYNIS_VERSION}
fi
2014-10-24 12:02:45 +02:00
git clone https://github.com/CISOfy/Lynis.git ${MYBUILDDIR}/git/Lynis
2014-10-24 13:24:51 +02:00
if [ -d ${MYBUILDDIR}/git/Lynis/debian/ ]; then
echo "Copying build files into new tree"
cp -R ../debian/* ${MYBUILDDIR}/git/Lynis/debian/
cd ${MYBUILDDIR}/git/Lynis/debian/
git add .
git commit -m "Building process for Lynis release version ${LYNIS_VERSION}"
else
echo "[X] Could not copy debian directory and commit changes"
fi
2014-10-24 11:19:35 +02:00
#git tag -l ${MYBUILDDIR}/git/Lynis
2014-09-14 20:54:17 +02:00
cd ..
2014-10-24 12:49:59 +02:00
echo "Executing: ${GITBUILDPACKAGEBINARY} --git-tarball-dir=${MYBUILDDIR} --git-export-dir=${DEBWORKDIR} --git-ignore-new"
2014-10-24 12:54:08 +02:00
${GITBUILDPACKAGEBINARY} -S --git-tarball-dir=${MYBUILDDIR} --git-export-dir=${DEBWORKDIR} --git-ignore-new
2014-09-14 20:54:17 +02:00
cd ${MYWORKDIR}
2014-09-14 20:35:01 +02:00
echo "[V] Done"
echo ""
echo "---------------------------------------------"
echo "RPM file: ${RPMFILE}"
2014-10-24 12:45:44 +02:00
echo "DEB file: ${DEBWORKDIR}/lynis_${LYNIS_VERSION}_amd64.deb"
echo "Tarball: ${TARBALL}"
echo "Tarball (SHA1): ${TARBALL_SHA1}"
2014-09-14 20:35:01 +02:00
echo ""
2014-10-24 12:45:44 +02:00
echo "Actions:"
echo " - Upload Debian package with dput (-f) my-ppa <source.changes>"
2014-09-14 20:35:01 +02:00
2014-09-14 16:40:18 +02:00
#=====================================================================
# Stop the script at this stage, rest is under development
Exit
#=====================================================================
2014-08-26 17:33:55 +02:00
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
# Test script for errors
echo -n "- Test Lynis script "
2014-09-14 16:40:18 +02:00
2014-08-26 17:33:55 +02:00
# Is file there?
if [ ! -f ${OPTION_BINARY_FILE} ]; then echo "BAD (can't find ${OPTION_BINARY_FILE})"; exit 1; fi
# Check script
FIND=`sh -n ${OPTION_BINARY_FILE} ; echo $?`
if [ $FIND -eq 0 ]; then
echo "OK"
else
echo "BAD"
fi
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
# Create SHA1 hashes
echo -n "- Create SHA1 hashes "
SHA1HASH_LYNIS=`grep -v '^#' ${OPTION_BINARY_FILE} | sha1`
echo "DONE"
echo " Lynis (SHA1): ${SHA1HASH_LYNIS}"
# Add hashes to script
echo -n "- Injecting SHA1 hash into Lynis script "
echo "-NOT DONE-"
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
echo -n "- Cleaning up OpenBSD package build... "
if [ -f openbsd/+CONTENTS ]; then rm openbsd/+CONTENTS; fi
echo "DONE"
OPENBSD_CONTENTS="openbsd/+CONTENTS"
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
echo -n "- Creating MD5 hashes..."
PACKAGE_LIST_FILES=`cat files.dat | grep "^file:" | cut -d ':' -f3`
for I in ${PACKAGE_LIST_FILES}; do
2014-09-14 16:40:18 +02:00
2014-08-26 17:33:55 +02:00
echo -n "${I} "
#FULLNAME=`cat files.dat | grep ":file:include:
#echo "${FULLNAME}" >> ${OPENBSD_CONTENTS}
echo "${I}" >> ${OPENBSD_CONTENTS}
FILE="../${I}"
MD5HASH=`md5 -q ${FILE}`
echo "@md5 ${MD5HASH}" >> ${OPENBSD_CONTENTS}
echo "@size 0000" >> ${OPENBSD_CONTENTS}
done
echo ""
2014-09-14 16:40:18 +02:00
2014-08-26 17:33:55 +02:00
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
echo -n "- Cleaning up... "
2014-09-14 16:40:18 +02:00
# Exit cleanly
Exit
echo "DONE"
2014-08-26 17:33:55 +02:00
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2014-09-14 16:40:18 +02:00
2014-08-26 17:33:55 +02:00
# The End!