mirror of
https://git.yoctoproject.org/meta-security
synced 2026-06-01 01:00:34 +00:00
meta-security : initial commit
Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
This commit is contained in:
@@ -0,0 +1,160 @@
|
||||
DESCRIPTION = "Bastille Linux is a Hardening and Reporting/Auditing Program which enhances the security of a Linux box, by configuring daemons, system settings and firewalling."
|
||||
LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://${S}/COPYING;md5=c93c0550bd3173f4504b2cbd8991e50b"
|
||||
# Bash is needed for set +o privileged (check busybox), might also need ncurses
|
||||
RDEPENDS_${PN} = "perl bash tcl perl-module-getopt-long perl-module-text-wrap lib-perl perl-module-file-path perl-module-mime-base64 perl-module-file-find perl-module-errno perl-module-file-glob perl-module-tie-hash-namedcapture perl-module-file-copy perl-module-english perl-module-exporter perl-module-cwd curses-perl coreutils"
|
||||
PR = "r0"
|
||||
|
||||
inherit allarch
|
||||
|
||||
SRC_URI = "http://sourceforge.net/projects/bastille-linux/files/bastille-linux/3.2.1/Bastille-3.2.1.tar.bz2 \
|
||||
file://AccountPermission.pm \
|
||||
file://FileContent.pm \
|
||||
file://HPSpecific.pm \
|
||||
file://Miscellaneous.pm \
|
||||
file://ServiceAdmin.pm \
|
||||
file://config \
|
||||
file://fix_version_parse.patch \
|
||||
file://yocto-standard-patch.patch \
|
||||
file://Curses-and-IOLoader-changes.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "df803f7e38085aa5da79f85d0539f91b"
|
||||
SRC_URI[sha256sum] = "0ea25191b1dc1c8f91e1b6f8cb5436a3aa1e57418809ef902293448efed5021a"
|
||||
|
||||
S = "${WORKDIR}/Bastille"
|
||||
|
||||
#CONFFILES_${PN} += "${sysconfdir}/init.d/skeleton"
|
||||
#
|
||||
#do_compile () {
|
||||
# ${CC} ${WORKDIR}/skeleton_test.c -o ${WORKDIR}/skeleton-test
|
||||
#}
|
||||
#
|
||||
do_install () {
|
||||
# install -d ${D}${sysconfdir}/init.d
|
||||
# cat ${WORKDIR}/skeleton | \
|
||||
# sed -e 's,/etc,${sysconfdir},g' \
|
||||
# -e 's,/usr/sbin,${sbindir},g' \
|
||||
# -e 's,/var,${localstatedir},g' \
|
||||
# -e 's,/usr/bin,${bindir},g' \
|
||||
# -e 's,/usr,${prefix},g' > ${D}${sysconfdir}/init.d/skeleton
|
||||
# chmod a+x ${D}${sysconfdir}/init.d/skeleton
|
||||
|
||||
install -d ${D}${sbindir}
|
||||
install -d ${D}${libdir}/perl/site_perl/Curses
|
||||
ln -sf perl ${D}/${libdir}/perl5
|
||||
|
||||
install -d ${D}${libdir}/Bastille
|
||||
install -d ${D}${libdir}/Bastille/API
|
||||
install -d ${D}${datadir}/Bastille
|
||||
install -d ${D}${datadir}/Bastille/OSMap
|
||||
install -d ${D}${datadir}/Bastille/OSMap/Modules
|
||||
install -d ${D}${datadir}/Bastille/Questions
|
||||
install -d ${D}${datadir}/Bastille/FKL/configs/
|
||||
install -d ${D}${localstatedir}/lock/subsys/bastille
|
||||
install -d ${D}${localstatedir}/log/Bastille
|
||||
install -d ${D}${sysconfdir}/Bastille
|
||||
|
||||
install -m 0755 AutomatedBastille ${D}${sbindir}
|
||||
install -m 0755 BastilleBackEnd ${D}${sbindir}
|
||||
install -m 0755 InteractiveBastille ${D}${sbindir}
|
||||
# Questions.txt has been replaced by Modules.txt and Questions/
|
||||
#install -m 0644 Questions.txt ${D}${datadir}/Bastille
|
||||
install -m 0644 Modules.txt ${D}${datadir}/Bastille
|
||||
# New Weights file(s).
|
||||
install -m 0644 Weights.txt ${D}${datadir}/Bastille
|
||||
# Castle graphic
|
||||
install -m 0644 bastille.jpg ${D}${datadir}/Bastille/
|
||||
# Javascript file
|
||||
install -m 0644 wz_tooltip.js ${D}${datadir}/Bastille/
|
||||
install -m 0644 Credits ${D}${datadir}/Bastille
|
||||
install -m 0644 FKL/configs/fkl_config_redhat.cfg ${D}${datadir}/Bastille/FKL/configs/
|
||||
|
||||
install -m 0755 RevertBastille ${D}${sbindir}
|
||||
install -m 0755 bin/bastille ${D}${sbindir}
|
||||
install -m 0644 bastille-firewall ${D}${datadir}/Bastille
|
||||
install -m 0644 bastille-firewall-reset ${D}${datadir}/Bastille
|
||||
install -m 0644 bastille-firewall-schedule ${D}${datadir}/Bastille
|
||||
install -m 0644 bastille-tmpdir-defense.sh ${D}${datadir}/Bastille
|
||||
install -m 0644 bastille-tmpdir.csh ${D}${datadir}/Bastille
|
||||
install -m 0644 bastille-tmpdir.sh ${D}${datadir}/Bastille
|
||||
install -m 0644 bastille-firewall.cfg ${D}${datadir}/Bastille
|
||||
install -m 0644 bastille-ipchains ${D}${datadir}/Bastille
|
||||
install -m 0644 bastille-netfilter ${D}${datadir}/Bastille
|
||||
install -m 0644 bastille-firewall-early.sh ${D}${datadir}/Bastille
|
||||
install -m 0644 bastille-firewall-pre-audit.sh ${D}${datadir}/Bastille
|
||||
install -m 0644 complete.xbm ${D}${datadir}/Bastille
|
||||
install -m 0644 incomplete.xbm ${D}${datadir}/Bastille
|
||||
install -m 0644 disabled.xpm ${D}${datadir}/Bastille
|
||||
install -m 0644 ifup-local ${D}${datadir}/Bastille
|
||||
install -m 0644 hosts.allow ${D}${datadir}/Bastille
|
||||
|
||||
install -m 0644 Bastille/AccountSecurity.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/Apache.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/API.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 ${WORKDIR}/AccountPermission.pm ${D}${libdir}/Bastille/API
|
||||
install -m 0644 ${WORKDIR}/FileContent.pm ${D}${libdir}/Bastille/API
|
||||
install -m 0644 ${WORKDIR}/HPSpecific.pm ${D}${libdir}/Bastille/API
|
||||
install -m 0644 ${WORKDIR}/ServiceAdmin.pm ${D}${libdir}/Bastille/API
|
||||
install -m 0644 ${WORKDIR}/Miscellaneous.pm ${D}${libdir}/Bastille/API
|
||||
install -m 0644 Bastille/BootSecurity.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/ConfigureMiscPAM.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/DisableUserTools.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/DNS.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/FilePermissions.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/FTP.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/Firewall.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/OSX_API.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/LogAPI.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/HP_UX.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/IOLoader.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/Patches.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/Logging.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/MiscellaneousDaemons.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/PatchDownload.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/Printing.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/PSAD.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/RemoteAccess.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/SecureInetd.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/Sendmail.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/TestDriver.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/TMPDIR.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_AccountSecurity.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_Apache.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_DNS.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_FTP.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_HP_UX.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_MiscellaneousDaemons.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_Patches.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_SecureInetd.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_Sendmail.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_BootSecurity.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_DisableUserTools.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_FilePermissions.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_Logging.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/test_Printing.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille/IPFilter.pm ${D}${libdir}/Bastille
|
||||
install -m 0644 Bastille_Curses.pm ${D}${libdir}/perl5/site_perl
|
||||
install -m 0644 Bastille_Tk.pm ${D}${libdir}/perl5/site_perl
|
||||
install -m 0644 Curses/Widgets.pm ${D}${libdir}/perl5/site_perl/Curses
|
||||
|
||||
|
||||
|
||||
install -m 0644 OSMap/LINUX.bastille ${D}${datadir}/Bastille/OSMap
|
||||
install -m 0644 OSMap/LINUX.system ${D}${datadir}/Bastille/OSMap
|
||||
install -m 0644 OSMap/LINUX.service ${D}${datadir}/Bastille/OSMap
|
||||
install -m 0644 OSMap/HP-UX.bastille ${D}${datadir}/Bastille/OSMap
|
||||
install -m 0644 OSMap/HP-UX.system ${D}${datadir}/Bastille/OSMap
|
||||
install -m 0644 OSMap/HP-UX.service ${D}${datadir}/Bastille/OSMap
|
||||
install -m 0644 OSMap/OSX.bastille ${D}${datadir}/Bastille/OSMap
|
||||
install -m 0644 OSMap/OSX.system ${D}${datadir}/Bastille/OSMap
|
||||
install -m 0644 ${WORKDIR}/config ${D}${sysconfdir}/Bastille/config
|
||||
|
||||
for file in `cat Modules.txt` ; do
|
||||
install -m 0644 Questions/$file.txt ${D}${datadir}/Bastille/Questions
|
||||
done
|
||||
|
||||
ln -s ${D}${sbindir}/RevertBastille ${D}${sbindir}/UndoBastille
|
||||
}
|
||||
|
||||
FILES_${PN} += "${datadir}/Bastille ${libdir}/Bastille ${libdir}/perl* ${sysconfdir}/*"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,51 @@
|
||||
From 456daee3ce57d3a46bf9ccf0a85ec4880ca5b262 Mon Sep 17 00:00:00 2001
|
||||
From: Andrei Dinu <andrei.adrianx.dinu@intel.com>
|
||||
Date: Tue, 4 Jun 2013 14:56:21 +0300
|
||||
Subject: [PATCH] Curses and IOLoader changes
|
||||
|
||||
The linux distribution couldn't be identified when
|
||||
running Bastille, and the question pruning method
|
||||
couldn't get a match on the questions relevant to
|
||||
the repo, so it eliminated all quetions.
|
||||
|
||||
After answering the questions the checkAndSaveConfig routine
|
||||
was called which was missing. Replaced it with Run_Bastille_
|
||||
with_Config which exists.
|
||||
|
||||
Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
|
||||
---
|
||||
Bastille/IOLoader.pm | 2 +-
|
||||
Bastille_Curses.pm | 4 +++-
|
||||
2 files changed, 4 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/Bastille/IOLoader.pm b/Bastille/IOLoader.pm
|
||||
index abb94d7..995d2c2 100644
|
||||
--- a/Bastille/IOLoader.pm
|
||||
+++ b/Bastille/IOLoader.pm
|
||||
@@ -68,7 +68,7 @@ sub Load_Questions($) {
|
||||
my $UseRequiresRules = $_[0];
|
||||
|
||||
my ($current_module_number,$first_question) = &parse_questions();
|
||||
- $first_question = &prune_questions($UseRequiresRules,$first_question);
|
||||
+ #$first_question = &prune_questions($UseRequiresRules,$first_question);
|
||||
$firstQuestion = $first_question;
|
||||
&B_log("DEBUG","Load Questions, first question: $first_question");
|
||||
&validate_questions();
|
||||
diff --git a/Bastille_Curses.pm b/Bastille_Curses.pm
|
||||
index 2e1eef4..edbbe45 100644
|
||||
--- a/Bastille_Curses.pm
|
||||
+++ b/Bastille_Curses.pm
|
||||
@@ -84,7 +84,9 @@ sub do_Bastille {
|
||||
}
|
||||
|
||||
# Output answers to the script and display
|
||||
- &checkAndSaveConfig(&getGlobal('BFILE', "config"));
|
||||
+ #&checkAndSaveConfig(&getGlobal('BFILE', "config"));
|
||||
+
|
||||
+ &Run_Bastille_with_Config;
|
||||
|
||||
# Run Bastille
|
||||
|
||||
--
|
||||
1.7.9.5
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,166 @@
|
||||
package Bastille::API::Miscellaneous;
|
||||
use strict;
|
||||
|
||||
use File::Path;
|
||||
use Bastille::API;
|
||||
use Bastille::API::HPSpecific;
|
||||
use Bastille::API::FileContent;
|
||||
|
||||
require Exporter;
|
||||
our @ISA = qw(Exporter);
|
||||
our @EXPORT_OK = qw(
|
||||
PrepareToRun
|
||||
B_is_package_installed
|
||||
);
|
||||
our @EXPORT = @EXPORT_OK;
|
||||
|
||||
|
||||
###########################################################################
|
||||
#
|
||||
# PrepareToRun sets up Bastille to run. It checks the ARGV array for
|
||||
# special options and runs ConfigureForDistro to set necessary file
|
||||
# locations and other global variables.
|
||||
#
|
||||
###########################################################################
|
||||
|
||||
sub PrepareToRun {
|
||||
|
||||
# Make sure we're root!
|
||||
if ( $> != 0 ) {
|
||||
&B_log("ERROR","Bastille must run as root!\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
||||
# Make any directories that don't exist...
|
||||
foreach my $dir (keys %GLOBAL_BDIR) {
|
||||
my $BdirPath = $GLOBAL_BDIR{$dir};
|
||||
if ( $BdirPath =~ /^\s*\// ) { #Don't make relative directories
|
||||
mkpath ($BdirPath,0,0700);
|
||||
}
|
||||
}
|
||||
|
||||
if(&GetDistro =~ "^HP-UX") {
|
||||
&B_check_system;
|
||||
}
|
||||
|
||||
&B_log("ACTION","\n########################################################\n" .
|
||||
"# Begin Bastille Run #\n" .
|
||||
"########################################################\n\n");
|
||||
|
||||
#read sum file if it exists.
|
||||
&B_read_sums;
|
||||
|
||||
|
||||
# No longer necessary as flags are no longer in sum file, and sums are
|
||||
# are now checked "real time"
|
||||
|
||||
# check the integrity of the files listed
|
||||
# for my $file (sort keys %GLOBAL_SUM) {
|
||||
# &B_check_sum($file);
|
||||
# }
|
||||
# write out the newly flagged sums
|
||||
# &B_write_sums;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
###########################################################################
|
||||
# &B_is_package_installed($package);
|
||||
#
|
||||
# This function checks for the existence of the package named.
|
||||
#
|
||||
# TODO: Allow $package to be an expression.
|
||||
# TODO: Allow optional $version, $release, $epoch arguments so we can
|
||||
# make sure that the given package is at least as recent as some
|
||||
# given version number.
|
||||
#
|
||||
# scalar return values:
|
||||
# 0: $package is not installed
|
||||
# 1: $package is installed
|
||||
###########################################################################
|
||||
|
||||
sub B_is_package_installed($) {
|
||||
no strict;
|
||||
my $package = $_[0];
|
||||
# Create a "global" variable with values scoped to this function
|
||||
# We do this to avoid having to repeatedly swlist/rpm
|
||||
# when we run B_is_package_installed
|
||||
local %INSTALLED_PACKAGE_LIST;
|
||||
|
||||
my $distro = &GetDistro;
|
||||
if ($distro =~ /^HP-UX/) {
|
||||
if (&checkProcsForService('swagent','ignore_warning') == SECURE_CANT_CHANGE()) {
|
||||
&B_log("WARNING","Software Distributor Agent(swagent) is not running. Can not tell ".
|
||||
"if package: $package is installed or not. Bastille will assume not. ".
|
||||
"If the package is actually installed, Bastille may report or configure incorrectly.".
|
||||
"To use Bastille-results as-is, please check to ensure $package is not installed, ".
|
||||
"or re-run with the swagent running to get correct results.");
|
||||
return 0; #FALSE
|
||||
}
|
||||
my $swlist=&getGlobal('BIN','swlist');
|
||||
if (%INSTALLED_PACKAGE_LIST == () ) { # re-use prior results
|
||||
if (open(SWLIST, "$swlist -a state -l fileset |")) {
|
||||
while (my $line = <SWLIST>){
|
||||
if ($line =~ /^ {2}\S+\.(\S+)\s*(\w+)/) {
|
||||
$INSTALLED_PACKAGE_LIST{$1} = $2;
|
||||
}
|
||||
}
|
||||
close SWLIST;
|
||||
} else {
|
||||
&B_log("ERROR","B_is_package_installed was unable to run the swlist command: $swlist,\n");
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
# Now find the entry
|
||||
if ($INSTALLED_PACKAGE_LIST{$package} == 'configured') {
|
||||
return TRUE;
|
||||
} else {
|
||||
return FALSE;
|
||||
}
|
||||
} #End HP-UX Section
|
||||
# This routine only works on RPM-based distros: Red Hat, Fedora, Mandrake and SuSE
|
||||
elsif ( ($distro !~ /^RH/) and ($distro !~ /^MN/) and($distro !~ /^SE/) ) {
|
||||
return 0;
|
||||
} else { #This is a RPM-based distro
|
||||
# Run an rpm command -- librpm is extremely messy, dynamic and not
|
||||
# so much a perl thing. It's actually barely a C/C++ thing...
|
||||
if (open RPM,"rpm -q $package") {
|
||||
# We should get only one line back, but let's parse a few
|
||||
# just in case.
|
||||
my @lines = <RPM>;
|
||||
close RPM;
|
||||
#
|
||||
# This is what we're trying to parse:
|
||||
# $ rpm -q jay
|
||||
# package jay is not installed
|
||||
# $ rpm -q bash
|
||||
# bash-2.05b-305.1
|
||||
#
|
||||
|
||||
foreach $line (@lines) {
|
||||
if ($line =~ /^package\s$package\sis\snot\sinstalled/) {
|
||||
return 0;
|
||||
}
|
||||
elsif ($line =~ /^$package\-/) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
# If we've read every line without finding one of these, then
|
||||
# our parsing is broken
|
||||
&B_log("ERROR","B_is_package_installed was unable to find a definitive RPM present or not present line.\n");
|
||||
return 0;
|
||||
} else {
|
||||
&B_log("ERROR","B_is_package_installed was unable to run the RPM command,\n");
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
1;
|
||||
|
||||
@@ -0,0 +1,690 @@
|
||||
package Bastille::API::ServiceAdmin;
|
||||
use strict;
|
||||
|
||||
use Bastille::API;
|
||||
|
||||
use Bastille::API::HPSpecific;
|
||||
use Bastille::API::FileContent;
|
||||
|
||||
require Exporter;
|
||||
our @ISA = qw(Exporter);
|
||||
our @EXPORT_OK = qw(
|
||||
B_chkconfig_on
|
||||
B_chkconfig_off
|
||||
B_service_start
|
||||
B_service_stop
|
||||
B_service_restart
|
||||
B_is_service_off
|
||||
checkServiceOnLinux
|
||||
remoteServiceCheck
|
||||
remoteNISPlusServiceCheck
|
||||
B_create_nsswitch_file
|
||||
);
|
||||
our @EXPORT = @EXPORT_OK;
|
||||
|
||||
|
||||
#######
|
||||
# &B_chkconfig_on and &B_chkconfig_off() are great for systems that didn't use
|
||||
# a more modern init system. This is a bit of a problem on Fedora, though,
|
||||
# which used upstart from Fedora 9 to Fedora 14, then switched to a new
|
||||
# Red Hat-created system called systemd for Fedora 15 and 16 (so far).
|
||||
# OpenSUSE also moved to systemd, starting with 12.1. Version 11.4 did not
|
||||
# use systemd.
|
||||
# It is also a problem on Ubuntu, starting at version 6.10, where they also
|
||||
# used upstart.
|
||||
#####
|
||||
|
||||
|
||||
|
||||
|
||||
###########################################################################
|
||||
# &B_chkconfig_on ($daemon_name) creates the symbolic links that are
|
||||
# named in the "# chkconfig: ___ _ _ " portion of the init.d files. We
|
||||
# need this utility, in place of the distro's chkconfig, because of both
|
||||
# our need to add revert functionality and our need to harden distros that
|
||||
# are not mounted on /.
|
||||
#
|
||||
# It uses the following global variables to find the links and the init
|
||||
# scripts, respectively:
|
||||
#
|
||||
# &getGlobal('DIR', "rcd") -- directory where the rc_.d subdirs can be found
|
||||
# &getGlobal('DIR', "initd") -- directory the rc_.d directories link to
|
||||
#
|
||||
# Here an example of where you might use this:
|
||||
#
|
||||
# You'd like to tell the system to run the firewall at boot:
|
||||
# B_chkconfig_on("bastille-firewall")
|
||||
#
|
||||
###########################################################################
|
||||
|
||||
# PW: Blech. Copied B_chkconfig_off() and changed a few things,
|
||||
# then changed a few more things....
|
||||
|
||||
sub B_chkconfig_on {
|
||||
|
||||
my $startup_script=$_[0];
|
||||
my $retval=1;
|
||||
|
||||
my $chkconfig_line;
|
||||
my ($runlevelinfo,@runlevels);
|
||||
my ($start_order,$stop_order,$filetolink);
|
||||
|
||||
&B_log("ACTION","# chkconfig_on enabling $startup_script\n");
|
||||
|
||||
# In Debian system there is no chkconfig script, run levels are checked
|
||||
# one by one (jfs)
|
||||
if (&GetDistro =~/^DB.*/) {
|
||||
$filetolink = &getGlobal('DIR', "initd") . "/$startup_script";
|
||||
if (-x $filetolink)
|
||||
{
|
||||
foreach my $level ("0","1","2","3","4","5","6" ) {
|
||||
my $link = '';
|
||||
$link = &getGlobal('DIR', "rcd") . "/rc" . "$level" . ".d/K50" . "$startup_script";
|
||||
$retval=symlink($filetolink,$link);
|
||||
}
|
||||
}
|
||||
return $retval;
|
||||
}
|
||||
#
|
||||
# On SUSE, chkconfig-based rc scripts have been replaced with a whole different
|
||||
# system. chkconfig on SUSE is actually a shell script that does some stuff and then
|
||||
# calls insserv, their replacement.
|
||||
#
|
||||
|
||||
if (&GetDistro =~ /^SE/) {
|
||||
# only try to chkconfig on if init script is found
|
||||
if ( -e (&getGlobal('DIR', "initd") . "/$startup_script") ) {
|
||||
$chkconfig_line=&getGlobal('BIN','chkconfig');
|
||||
&B_System("$chkconfig_line $startup_script on", "$chkconfig_line $startup_script off");
|
||||
# chkconfig doesn't take affect until reboot, need to restart service also
|
||||
B_service_restart("$startup_script");
|
||||
return 1; #success
|
||||
}
|
||||
return 0; #failure
|
||||
}
|
||||
|
||||
#
|
||||
# Run through the init script looking for the chkconfig line...
|
||||
#
|
||||
$retval = open CHKCONFIG,&getGlobal('DIR', "initd") . "/$startup_script";
|
||||
unless ($retval) {
|
||||
&B_log("ACTION","# Didn't chkconfig_on $startup_script because we couldn't open " . &getGlobal('DIR', "initd") . "/$startup_script\n");
|
||||
}
|
||||
else {
|
||||
|
||||
READ_LOOP:
|
||||
while (my $line=<CHKCONFIG>) {
|
||||
|
||||
# We're looking for lines like this one:
|
||||
# # chkconfig: 2345 10 90
|
||||
# OR this
|
||||
# # chkconfig: - 10 90
|
||||
|
||||
if ($line =~ /^#\s*chkconfig:\s*([-\d]+)\s*(\d+)\s*(\d+)/ ) {
|
||||
$runlevelinfo = $1;
|
||||
$start_order = $2;
|
||||
$stop_order = $3;
|
||||
# handle a run levels arg of '-'
|
||||
if ( $runlevelinfo eq '-' ) {
|
||||
&B_log("ACTION","chkconfig_on saw '-' for run levels for \"$startup_script\", is defaulting to levels 3,4,5\n");
|
||||
$runlevelinfo = '345';
|
||||
}
|
||||
@runlevels = split(//,$runlevelinfo);
|
||||
# make sure the orders have 2 digits
|
||||
$start_order =~ s/^(\d)$/0$1/;
|
||||
$stop_order =~ s/^(\d)$/0$1/;
|
||||
last READ_LOOP;
|
||||
}
|
||||
}
|
||||
close CHKCONFIG;
|
||||
|
||||
# Do we have what we need?
|
||||
if ( (scalar(@runlevels) < 1) || (! $start_order =~ /^\d{2}$/) || (! $stop_order =~ /^\d{2}$/) ) {
|
||||
# problem
|
||||
&B_log("ERROR","# B_chkconfig_on $startup_script failed -- no valid run level/start/stop info found\n");
|
||||
return(-1);
|
||||
}
|
||||
|
||||
# Now, run through creating symlinks...
|
||||
&B_log("ACTION","# chkconfig_on will use run levels ".join(",",@runlevels)." for \"$startup_script\" with S order $start_order and K order $stop_order\n");
|
||||
|
||||
$retval=0;
|
||||
# BUG: we really ought to readdir() on &getGlobal('DIR', "rcd") to get all levels
|
||||
foreach my $level ( "0","1","2","3","4","5","6" ) {
|
||||
my $link = '';
|
||||
# we make K links in run levels not specified in the chkconfig line
|
||||
$link = &getGlobal('DIR', "rcd") . "/rc" . $level . ".d/K$stop_order" . $startup_script;
|
||||
my $klink = $link;
|
||||
# now we see if this is a specified run level; if so, make an S link
|
||||
foreach my $markedlevel ( @runlevels ) {
|
||||
if ( $level == $markedlevel) {
|
||||
$link = &getGlobal('DIR', "rcd") . "/rc" . $level . ".d/S$start_order" . $startup_script;
|
||||
}
|
||||
}
|
||||
my $target = &getGlobal('DIR', "initd") ."/" . $startup_script;
|
||||
my $local_return;
|
||||
|
||||
if ( (-e "$klink") && ($klink ne $link) ) {
|
||||
# there's a K link, but this level needs an S link
|
||||
unless ($GLOBAL_LOGONLY) {
|
||||
$local_return = unlink("$klink");
|
||||
if ( ! $local_return ) {
|
||||
# unlinking old, bad $klink failed
|
||||
&B_log("ERROR","Unlinking $klink failed\n");
|
||||
} else {
|
||||
&B_log("ACTION","Removed link $klink\n");
|
||||
# If we removed the link, add a link command to the revert file
|
||||
&B_revert_log (&getGlobal('BIN','ln') . " -s $target $klink\n");
|
||||
} # close what to do if unlink works
|
||||
} # if not GLOBAL_LOGONLY
|
||||
} # if $klink exists and ne $link
|
||||
|
||||
# OK, we've disposed of any old K links, make what we need
|
||||
if ( (! ( -e "$link" )) && ($link ne '') ) {
|
||||
# link doesn't exist and the start/stop number is OK; make it
|
||||
unless ($GLOBAL_LOGONLY) {
|
||||
# create the link
|
||||
$local_return = &B_symlink($target,$link);
|
||||
if ($local_return) {
|
||||
$retval++;
|
||||
&B_log("ACTION","Created link $link\n");
|
||||
} else {
|
||||
&B_log("ERROR","Couldn't create $link when trying to chkconfig on $startup_script\n");
|
||||
}
|
||||
}
|
||||
|
||||
} # link doesn't exist
|
||||
} # foreach level
|
||||
|
||||
}
|
||||
|
||||
if ($retval < @runlevels) {
|
||||
$retval=0;
|
||||
}
|
||||
|
||||
$retval;
|
||||
|
||||
}
|
||||
|
||||
|
||||
###########################################################################
|
||||
# &B_chkconfig_off ($daemon_name) deletes the symbolic links that are
|
||||
# named in the "# chkconfig: ___ _ _ " portion of the init.d files. We
|
||||
# need this utility, in place of the distro's chkconfig, because of both
|
||||
# our need to add revert functionality and our need to harden distros that
|
||||
# are not mounted on /.
|
||||
#
|
||||
# chkconfig allows for a REVERT of its work by writing to an executable
|
||||
# file &getGlobal('BFILE', "removed-symlinks").
|
||||
#
|
||||
# It uses the following global variables to find the links and the init
|
||||
# scripts, respectively:
|
||||
#
|
||||
# &getGlobal('DIR', "rcd") -- directory where the rc_.d subdirs can be found
|
||||
# &getGlobal('DIR', "initd") -- directory the rc_.d directories link to
|
||||
#
|
||||
# Here an example of where you might use this:
|
||||
#
|
||||
# You'd like to tell stop running sendmail in daemon mode on boot:
|
||||
# B_chkconfig_off("sendmail")
|
||||
#
|
||||
###########################################################################
|
||||
|
||||
|
||||
|
||||
sub B_chkconfig_off {
|
||||
|
||||
my $startup_script=$_[0];
|
||||
my $retval=1;
|
||||
|
||||
my $chkconfig_line;
|
||||
my @runlevels;
|
||||
my ($start_order,$stop_order,$filetolink);
|
||||
|
||||
if (&GetDistro =~/^DB.*/) {
|
||||
$filetolink = &getGlobal('DIR', "initd") . "/$startup_script";
|
||||
if (-x $filetolink)
|
||||
{
|
||||
# Three ways to do this in Debian:
|
||||
# 1.- have the initd script set to 600 mode
|
||||
# 2.- Remove the links in rcd (re-installing the package
|
||||
# will break it)
|
||||
# 3.- Use update-rc.d --remove (same as 2.)
|
||||
# (jfs)
|
||||
&B_chmod(0600,$filetolink);
|
||||
$retval=6;
|
||||
|
||||
# The second option
|
||||
#foreach my $level ("0","1","2","3","4","5","6" ) {
|
||||
#my $link = '';
|
||||
#$link = &getGlobal('DIR', "rcd") . "/rc" . "$level" . ".d/K50" . "$startup_script";
|
||||
#unlink($link);
|
||||
#}
|
||||
}
|
||||
}
|
||||
|
||||
#
|
||||
# On SUSE, chkconfig-based rc scripts have been replaced with a whole different
|
||||
# system. chkconfig on SUSE is actually a shell script that does some stuff and then
|
||||
# calls insserv, their replacement.
|
||||
#
|
||||
elsif (&GetDistro =~ /^SE/) {
|
||||
# only try to chkconfig off if init script is found
|
||||
if ( -e (&getGlobal('DIR', "initd") . "/$startup_script") ) {
|
||||
$chkconfig_line=&getGlobal('BIN','chkconfig');
|
||||
&B_System("$chkconfig_line $startup_script on", "$chkconfig_line $startup_script off");
|
||||
# chkconfig doesn't take affect until reboot, need to stop service
|
||||
# since expectation is that the daemons are disabled even without a reboot
|
||||
B_service_stop("$startup_script");
|
||||
return 1; #success
|
||||
}
|
||||
return 0; #failure
|
||||
}
|
||||
else {
|
||||
|
||||
# Run through the init script looking for the chkconfig line...
|
||||
|
||||
|
||||
$retval = open CHKCONFIG,&getGlobal('DIR', "initd") . "/$startup_script";
|
||||
unless ($retval) {
|
||||
&B_log("ACTION","Didn't chkconfig_off $startup_script because we couldn't open " . &getGlobal('DIR', "initd") . "/$startup_script\n");
|
||||
}
|
||||
else {
|
||||
|
||||
READ_LOOP:
|
||||
while (my $line=<CHKCONFIG>) {
|
||||
|
||||
# We're looking for lines like this one:
|
||||
# # chkconfig: 2345 10 90
|
||||
|
||||
if ($line =~ /^#\s*chkconfig:\s*([-\d]+)\s*(\d+)\s*(\d+)/ ) {
|
||||
@runlevels=split //,$1;
|
||||
$start_order=$2;
|
||||
$stop_order=$3;
|
||||
|
||||
|
||||
# Change single digit run levels to double digit -- otherwise,
|
||||
# the alphabetic ordering chkconfig depends on fails.
|
||||
if ($start_order =~ /^\d$/ ) {
|
||||
$start_order = "0" . $start_order;
|
||||
&B_log("ACTION","chkconfig_off converted start order to $start_order\n");
|
||||
}
|
||||
if ($stop_order =~ /^\d$/ ) {
|
||||
$stop_order = "0" . $stop_order;
|
||||
&B_log("ACTION","chkconfig_off converted stop order to $stop_order\n");
|
||||
}
|
||||
|
||||
last READ_LOOP;
|
||||
}
|
||||
}
|
||||
close CHKCONFIG;
|
||||
|
||||
# If we never found a chkconfig line, can we just run through all 5
|
||||
# rcX.d dirs from 1 to 5...?
|
||||
|
||||
# unless ( $start_order and $stop_order ) {
|
||||
# @runlevels=("1","2","3","4","5");
|
||||
# $start_order = "*"; $stop_order="*";
|
||||
# }
|
||||
|
||||
# Now, run through removing symlinks...
|
||||
|
||||
|
||||
|
||||
$retval=0;
|
||||
|
||||
# Handle the special case that the run level specified is solely "-"
|
||||
if ($runlevels[0] =~ /-/) {
|
||||
@runlevels = ( "0","1","2","3","4","5","6" );
|
||||
}
|
||||
|
||||
foreach my $level ( @runlevels ) {
|
||||
my $link = &getGlobal('DIR', "rcd") . "/rc" . $level . ".d/S$start_order" . $startup_script;
|
||||
my $new_link = &getGlobal('DIR', "rcd") . "/rc" . $level . ".d/K$stop_order" . $startup_script;
|
||||
my $target = &getGlobal('DIR', "initd") ."/" . $startup_script;
|
||||
my $local_return;
|
||||
|
||||
|
||||
# Replace the S__ link in this level with a K__ link.
|
||||
if ( -e $link ) {
|
||||
unless ($GLOBAL_LOGONLY) {
|
||||
$local_return=unlink $link;
|
||||
if ($local_return) {
|
||||
$local_return=symlink $target,$new_link;
|
||||
unless ($local_return) {
|
||||
&B_log("ERROR","Linking $target to $new_link failed.\n");
|
||||
}
|
||||
}
|
||||
else { # unlinking failed
|
||||
&B_log("ERROR","Unlinking $link failed\n");
|
||||
}
|
||||
|
||||
}
|
||||
if ($local_return) {
|
||||
$retval++;
|
||||
&B_log("ACTION","Removed link $link\n");
|
||||
|
||||
#
|
||||
# If we removed the link, add a link command to the revert file
|
||||
# Write out the revert information for recreating the S__
|
||||
# symlink and deleting the K__ symlink.
|
||||
&B_revert_log(&getGlobal('BIN',"ln") . " -s $target $link\n");
|
||||
&B_revert_log(&getGlobal('BIN',"rm") . " -f $new_link\n");
|
||||
}
|
||||
else {
|
||||
&B_log("ERROR","B_chkconfig_off $startup_script failed\n");
|
||||
}
|
||||
|
||||
}
|
||||
} # foreach
|
||||
|
||||
} # else-unless
|
||||
|
||||
} # else-DB
|
||||
if ($retval < @runlevels) {
|
||||
$retval=0;
|
||||
}
|
||||
|
||||
$retval;
|
||||
|
||||
}
|
||||
|
||||
|
||||
###########################################################################
|
||||
# &B_service_start ($daemon_name)
|
||||
# Starts service on RedHat/SUSE-based Linux distributions which have the
|
||||
# service command:
|
||||
#
|
||||
# service $daemon_name start
|
||||
#
|
||||
# Other Linux distros that also support this method of starting
|
||||
# services can be added to use this function.
|
||||
#
|
||||
# Here an example of where you might use this:
|
||||
#
|
||||
# You'd like to tell the system to start the vsftpd daemon:
|
||||
# &B_service_start("vsftpd")
|
||||
#
|
||||
# Uses &B_System in HP_API.pm
|
||||
# To match how the &B_System command works this method:
|
||||
# returns 1 on success
|
||||
# returns 0 on failure
|
||||
###########################################################################
|
||||
|
||||
sub B_service_start {
|
||||
|
||||
my $daemon=$_[0];
|
||||
|
||||
if ( (&GetDistro !~ /^SE/) and (&GetDistro !~ /^RH/) and
|
||||
(&GetDistro !~ /^RHFC/) and (&GetDistro !~ /^MN/) ) {
|
||||
&B_log("ERROR","Tried to call service_start on a system lacking a service command! Internal Bastille error.");
|
||||
return undef;
|
||||
}
|
||||
|
||||
# only start service if init script is found
|
||||
if ( -e (&getGlobal('DIR', 'initd') . "/$daemon") ) {
|
||||
&B_log("ACTION","# service_start enabling $daemon\n");
|
||||
|
||||
my $service_cmd=&getGlobal('BIN', 'service');
|
||||
if ($service_cmd) {
|
||||
# Start the service,
|
||||
# Also provide &B_System revert command
|
||||
|
||||
return (&B_System("$service_cmd $daemon start",
|
||||
"$service_cmd $daemon stop"));
|
||||
}
|
||||
}
|
||||
|
||||
# init script not found, do not try to start, return failure
|
||||
return 0;
|
||||
}
|
||||
|
||||
###########################################################################
|
||||
# &B_service_stop ($daemon_name)
|
||||
# Stops service on RedHat/SUSE-based Linux distributions which have the
|
||||
# service command:
|
||||
#
|
||||
# service $daemon_name stop
|
||||
#
|
||||
# Other Linux distros that also support this method of starting
|
||||
# services can be added to use this function.
|
||||
# Stops service.
|
||||
#
|
||||
#
|
||||
# Here an example of where you might use this:
|
||||
#
|
||||
# You'd like to tell the system to stop the vsftpd daemon:
|
||||
# &B_service_stop("vsftpd")
|
||||
#
|
||||
# Uses &B_System in HP_API.pm
|
||||
# To match how the &B_System command works this method:
|
||||
# returns 1 on success
|
||||
# returns 0 on failure
|
||||
###########################################################################
|
||||
|
||||
sub B_service_stop {
|
||||
|
||||
my $daemon=$_[0];
|
||||
|
||||
if ( (&GetDistro !~ /^SE/) and (&GetDistro !~ /^RH/) and
|
||||
(&GetDistro !~ /^RHFC/) and (&GetDistro !~ /^MN/) ) {
|
||||
&B_log("ERROR","Tried to call service_stop on a system lacking a service command! Internal Bastille error.");
|
||||
return undef;
|
||||
}
|
||||
|
||||
# only stop service if init script is found
|
||||
if ( -e (&getGlobal('DIR', 'initd') . "/$daemon") ) {
|
||||
&B_log("ACTION","# service_stop disabling $daemon\n");
|
||||
|
||||
my $service_cmd=&getGlobal('BIN', 'service');
|
||||
if ($service_cmd) {
|
||||
|
||||
# Stop the service,
|
||||
# Also provide &B_System revert command
|
||||
|
||||
return (&B_System("$service_cmd $daemon stop",
|
||||
"$service_cmd $daemon start"));
|
||||
}
|
||||
}
|
||||
|
||||
# init script not found, do not try to stop, return failure
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
###########################################################################
|
||||
# &B_service_restart ($daemon_name)
|
||||
# Restarts service on RedHat/SUSE-based Linux distributions which have the
|
||||
# service command:
|
||||
#
|
||||
# service $daemon_name restart
|
||||
#
|
||||
# Other Linux distros that also support this method of starting
|
||||
# services can be added to use this function.
|
||||
#
|
||||
# Here an example of where you might use this:
|
||||
#
|
||||
# You'd like to tell the system to restart the vsftpd daemon:
|
||||
# &B_service_restart("vsftpd")
|
||||
#
|
||||
# Uses &B_System in HP_API.pm
|
||||
# To match how the &B_System command works this method:
|
||||
# returns 1 on success
|
||||
# returns 0 on failure
|
||||
###########################################################################
|
||||
|
||||
sub B_service_restart {
|
||||
|
||||
my $daemon=$_[0];
|
||||
|
||||
if ( (&GetDistro !~ /^SE/) and (&GetDistro !~ /^RH/) and
|
||||
(&GetDistro !~ /^RHFC/) and (&GetDistro !~ /^MN/) ) {
|
||||
&B_log("ERROR","Tried to call service_restart on a system lacking a service command! Internal Bastille error.");
|
||||
return undef;
|
||||
}
|
||||
|
||||
# only restart service if init script is found
|
||||
if ( -e (&getGlobal('DIR', 'initd') . "/$daemon") ) {
|
||||
&B_log("ACTION","# service_restart re-enabling $daemon\n");
|
||||
|
||||
my $service_cmd=&getGlobal('BIN', 'service');
|
||||
if ($service_cmd) {
|
||||
|
||||
# Restart the service
|
||||
return (&B_System("$service_cmd $daemon restart",
|
||||
"$service_cmd $daemon restart"));
|
||||
}
|
||||
}
|
||||
|
||||
# init script not found, do not try to restart, return failure
|
||||
return 0;
|
||||
}
|
||||
|
||||
###########################################################################
|
||||
# &B_is_service_off($;$)
|
||||
#
|
||||
# Runs the specified test to determine whether or not the question should
|
||||
# be answered.
|
||||
#
|
||||
# return values:
|
||||
# NOTSECURE_CAN_CHANGE()/0: service is on
|
||||
# SECURE_CANT_CHANGE()/1: service is off
|
||||
# undef: test is not defined
|
||||
###########################################################################
|
||||
|
||||
sub B_is_service_off ($){
|
||||
my $service=$_[0];
|
||||
|
||||
if(&GetDistro =~ "^HP-UX"){
|
||||
#die "Why do I think I'm on HPUX?!\n";
|
||||
return &checkServiceOnHPUX($service);
|
||||
}
|
||||
elsif ( (&GetDistro =~ "^RH") || (&GetDistro =~ "^SE") ) {
|
||||
return &checkServiceOnLinux($service);
|
||||
}
|
||||
else {
|
||||
&B_log("DEBUG","B_is_service off called for unsupported OS");
|
||||
# not yet implemented for other distributions of Linux
|
||||
# when GLOBAL_SERVICE, GLOBAL_SERVTYPE and GLOBAL_PROCESS are filled
|
||||
# in for Linux, then
|
||||
# at least inetd and inittab services should be similar to the above,
|
||||
# whereas chkconfig would be used on some Linux distros to determine
|
||||
# if non-inetd/inittab services are running at boot time. Looking at
|
||||
# processes should be similar.
|
||||
return undef;
|
||||
}
|
||||
}
|
||||
|
||||
###########################################################################
|
||||
# &checkServiceOnLinux($service);
|
||||
#
|
||||
# Checks if the given service is running on a Linux system. This is
|
||||
# called by B_is_Service_Off(), which is the function that Bastille
|
||||
# modules should call.
|
||||
#
|
||||
# Return values:
|
||||
# NOTSECURE_CAN_CHANGE() if the service is on
|
||||
# SECURE_CANT_CHANGE() if the service is off
|
||||
# undef if the state of the service cannot be determined
|
||||
#
|
||||
###########################################################################
|
||||
sub checkServiceOnLinux($) {
|
||||
my $service=$_[0];
|
||||
|
||||
# get the list of parameters which could be used to initiate the service
|
||||
# (could be in /etc/rc.d/rc?.d, /etc/inetd.conf, or /etc/inittab, so we
|
||||
# check all of them)
|
||||
|
||||
my @params = @{ &getGlobal('SERVICE', $service) };
|
||||
my $chkconfig = &getGlobal('BIN', 'chkconfig');
|
||||
my $grep = &getGlobal('BIN', 'grep');
|
||||
my $inittab = &getGlobal('FILE', 'inittab');
|
||||
my $serviceType = &getGlobal('SERVTYPE', $service);;
|
||||
|
||||
# A kludge to get things running because &getGlobal('SERVICE' doesn't
|
||||
# return the expected values.
|
||||
@params = ();
|
||||
push (@params, $service);
|
||||
|
||||
foreach my $param (@params) {
|
||||
&B_log("DEBUG","Checking to see if service $service is off.\n");
|
||||
|
||||
if ($serviceType =~ /rc/) {
|
||||
my $on = &B_Backtick("$chkconfig --list $param 2>&1");
|
||||
if ($on =~ /^$param:\s+unknown/) {
|
||||
# This service isn't installed on the system
|
||||
return NOT_INSTALLED();
|
||||
}
|
||||
if ($on =~ /^error reading information on service $param: No such file or directory/) {
|
||||
# This service isn't installed on the system
|
||||
return NOT_INSTALLED();
|
||||
}
|
||||
if ($on =~ /^error/) {
|
||||
# This probably
|
||||
&B_log("DEBUG","chkconfig returned: $param=$on\n");
|
||||
return undef;
|
||||
}
|
||||
$on =~ s/^$param\s+//; # remove the service name and spaces
|
||||
$on =~ s/[0-6]:off\s*//g; # remove any runlevel:off entries
|
||||
$on =~ s/:on\s*//g; # remove the :on from the runlevels
|
||||
# what remains is a list of runlevels in which the service is on,
|
||||
# or a null string if it is never turned on
|
||||
chomp $on; # newline should be gone already (\s)
|
||||
&B_log("DEBUG","chkconfig returned: $param=$on\n");
|
||||
|
||||
if ($on =~ /^\d+$/) {
|
||||
# service is not off
|
||||
########################### BREAK out, don't skip question
|
||||
return NOTSECURE_CAN_CHANGE();
|
||||
}
|
||||
}
|
||||
elsif ($serviceType =~ /inet/) {
|
||||
my $on = &B_Backtick("$chkconfig --list $param 2>&1");
|
||||
if ($on =~ /^$param:\s+unknown/) {
|
||||
# This service isn't installed on the system
|
||||
return NOT_INSTALLED();
|
||||
}
|
||||
if ($on =~ /^error reading information on service $param: No such file or directory/) {
|
||||
# This service isn't installed on the system
|
||||
return NOT_INSTALLED();
|
||||
}
|
||||
if ($on =~ /^error/ ) {
|
||||
# Something else is wrong?
|
||||
# return undef
|
||||
return undef;
|
||||
}
|
||||
if ($on =~ tr/\n// > 1) {
|
||||
$on =~ s/^xinetd.+\n//;
|
||||
}
|
||||
$on =~ s/^\s*$param:?\s+//; # remove the service name and spaces
|
||||
chomp $on; # newline should be gone already (\s)
|
||||
&B_log("DEBUG","chkconfig returned: $param=$on\n");
|
||||
|
||||
if ($on =~ /^on$/) {
|
||||
# service is not off
|
||||
########################### BREAK out, don't skip question
|
||||
return NOTSECURE_CAN_CHANGE();
|
||||
}
|
||||
}
|
||||
else {
|
||||
# perhaps the service is started by inittab
|
||||
my $inittabline = &B_Backtick("$grep -E '^[^#].{0,3}:.*:.+:.*$param' $inittab");
|
||||
if ($inittabline =~ /.+/) { # . matches anything except newlines
|
||||
# service is not off
|
||||
&B_log("DEBUG","Checking inittab; found $inittabline\n");
|
||||
########################### BREAK out, don't skip question
|
||||
return NOTSECURE_CAN_CHANGE();
|
||||
}
|
||||
}
|
||||
} # foreach my $param
|
||||
|
||||
|
||||
# boot-time parameters are not set; check processes
|
||||
# Note the checkProcsforService returns INCONSISTENT() if a process is found
|
||||
# assuming the checks above
|
||||
return &checkProcsForService($service);
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
|
||||
Executable
+106
@@ -0,0 +1,106 @@
|
||||
# Q: Would you like to enforce password aging? [Y]
|
||||
AccountSecurity.passwdage="Y"
|
||||
# Q: Should Bastille disable clear-text r-protocols that use IP-based authentication? [Y]
|
||||
AccountSecurity.protectrhost="Y"
|
||||
# Q: Should we disallow root login on tty's 1-6? [N]
|
||||
AccountSecurity.rootttylogins="Y"
|
||||
# Q: What umask would you like to set for users on the system? [077]
|
||||
AccountSecurity.umask="077"
|
||||
# Q: Do you want to set the default umask? [Y]
|
||||
AccountSecurity.umaskyn="Y"
|
||||
# Q: Would you like to deactivate the Apache web server? [Y]
|
||||
Apache.apacheoff="Y"
|
||||
# Q: Would you like to password protect single-user mode? [Y]
|
||||
BootSecurity.passsum="Y"
|
||||
# Q: Should we restrict console access to a small group of user accounts? [N]
|
||||
ConfigureMiscPAM.consolelogin="Y"
|
||||
# Q: Which accounts should be able to login at console? [root]
|
||||
ConfigureMiscPAM.consolelogin_accounts="root"
|
||||
# Q: Would you like to put limits on system resource usage? [N]
|
||||
ConfigureMiscPAM.limitsconf="Y"
|
||||
# Q: Would you like to set more restrictive permissions on the administration utilities? [N]
|
||||
FilePermissions.generalperms_1_1="Y"
|
||||
# Q: Would you like to disable SUID status for mount/umount?
|
||||
FilePermissions.suidmount="Y"
|
||||
# Q: Would you like to disable SUID status for ping? [Y]
|
||||
FilePermissions.suidping="Y"
|
||||
# Q: Would you like to disable SUID status for traceroute? [Y]
|
||||
FilePermissions.suidtrace="Y"
|
||||
# Q: Do you need the advanced networking options?
|
||||
Firewall.ip_advnetwork="Y"
|
||||
# Q: Should Bastille run the firewall and enable it at boot time? [N]
|
||||
Firewall.ip_enable_firewall="Y"
|
||||
# Q: Would you like to run the packet filtering script? [N]
|
||||
Firewall.ip_intro="Y"
|
||||
# Q: Interfaces for DHCP queries: [ ]
|
||||
Firewall.ip_s_dhcpiface=" "
|
||||
# Q: DNS servers: [0.0.0.0/0]
|
||||
Firewall.ip_s_dns="10.184.9.1"
|
||||
# Q: ICMP allowed types: [destination-unreachable echo-reply time-exceeded]
|
||||
Firewall.ip_s_icmpallowed="destination-unreachable echo-reply time-exceeded"
|
||||
# Q: ICMP services to audit: [ ]
|
||||
Firewall.ip_s_icmpaudit=" "
|
||||
# Q: ICMP types to disallow outbound: [destination-unreachable time-exceeded]
|
||||
Firewall.ip_s_icmpout="destination-unreachable time-exceeded"
|
||||
# Q: Internal interfaces: [ ]
|
||||
Firewall.ip_s_internaliface=" "
|
||||
# Q: TCP service names or port numbers to allow on private interfaces: [ ]
|
||||
Firewall.ip_s_internaltcp=" "
|
||||
# Q: UDP service names or port numbers to allow on private interfaces: [ ]
|
||||
Firewall.ip_s_internaludp=" "
|
||||
# Q: Masqueraded networks: [ ]
|
||||
Firewall.ip_s_ipmasq=" "
|
||||
# Q: Kernel modules to masquerade: [ftp raudio vdolive]
|
||||
Firewall.ip_s_kernelmasq="ftp raudio vdolive"
|
||||
# Q: NTP servers to query: [ ]
|
||||
Firewall.ip_s_ntpsrv=" "
|
||||
# Q: Force passive mode? [N]
|
||||
Firewall.ip_s_passiveftp="N"
|
||||
# Q: Public interfaces: [eth+ ppp+ slip+]
|
||||
Firewall.ip_s_publiciface="eth+ ppp+ slip+"
|
||||
# Q: TCP service names or port numbers to allow on public interfaces:[ ]
|
||||
Firewall.ip_s_publictcp=" "
|
||||
# Q: UDP service names or port numbers to allow on public interfaces:[ ]
|
||||
Firewall.ip_s_publicudp=" "
|
||||
# Q: Reject method: [DENY]
|
||||
Firewall.ip_s_rejectmethod="DENY"
|
||||
# Q: Enable source address verification? [Y]
|
||||
Firewall.ip_s_srcaddr="Y"
|
||||
# Q: TCP services to audit: [telnet ftp imap pop3 finger sunrpc exec login linuxconf ssh]
|
||||
Firewall.ip_s_tcpaudit="telnet ftp imap pop3 finger sunrpc exec login linuxconf ssh"
|
||||
# Q: TCP services to block: [2049 2065:2090 6000:6020 7100]
|
||||
Firewall.ip_s_tcpblock="2049 2065:2090 6000:6020 7100"
|
||||
# Q: Trusted interface names: [lo]
|
||||
Firewall.ip_s_trustiface="lo"
|
||||
# Q: UDP services to audit: [31337]
|
||||
Firewall.ip_s_udpaudit="31337"
|
||||
# Q: UDP services to block: [2049 6770]
|
||||
Firewall.ip_s_udpblock="2049 6770"
|
||||
# Q: Would you like to add additional logging? [Y]
|
||||
Logging.morelogging="Y"
|
||||
# Q: Would you like to set up process accounting? [N]
|
||||
Logging.pacct="N"
|
||||
# Q: Do you have a remote logging host? [N]
|
||||
Logging.remotelog="N"
|
||||
# Q: Would you like to disable acpid and/or apmd? [Y]
|
||||
MiscellaneousDaemons.apmd="Y"
|
||||
# Q: Would you like to deactivate NFS and Samba? [Y]
|
||||
MiscellaneousDaemons.remotefs="Y"
|
||||
# Q: Would you like to disable printing? [N]
|
||||
Printing.printing="Y"
|
||||
# Q: Would you like to disable printing? [N]
|
||||
Printing.printing_cups="Y"
|
||||
# Q: Would you like to display "Authorized Use" messages at log-in time? [Y]
|
||||
SecureInetd.banners="Y"
|
||||
# Q: Should Bastille ensure inetd's FTP service does not run on this system? [y]
|
||||
SecureInetd.deactivate_ftp="Y"
|
||||
# Q: Should Bastille ensure the telnet service does not run on this system? [y]
|
||||
SecureInetd.deactivate_telnet="Y"
|
||||
# Q: Who is responsible for granting authorization to use this machine?
|
||||
SecureInetd.owner="its owner"
|
||||
# Q: Would you like to set a default-deny on TCP Wrappers and xinetd? [N]
|
||||
SecureInetd.tcpd_default_deny="Y"
|
||||
# Q: Do you want to stop sendmail from running in daemon mode? [Y]
|
||||
Sendmail.sendmaildaemon="Y"
|
||||
# Q: Would you like to install TMPDIR/TMP scripts? [N]
|
||||
TMPDIR.tmpdir="N"
|
||||
@@ -0,0 +1,21 @@
|
||||
Index: Bastille/bin/bastille
|
||||
===================================================================
|
||||
--- Bastille.orig/bin/bastille
|
||||
+++ Bastille/bin/bastille
|
||||
@@ -162,11 +162,12 @@ fi
|
||||
# We check that the version is at least the minimum
|
||||
|
||||
PERL_VERSION=`${CURRENT_PERL_PATH}/perl -version |
|
||||
- head -2 | # the second line contains the version
|
||||
+ head -n 2 | # the second line contains the version
|
||||
tr " " "\n" | # split words into separate lines
|
||||
- sed -e "s/^v//" | # to get rid of the v in v5.6.0
|
||||
- grep "^[1-9]\." | # find a "word" that starts with number dot
|
||||
- sed -e "s/_/./"` # substitute _patchlevel with .patchlevel
|
||||
+ grep "^(v" | # find a "word" that starts with '(v'
|
||||
+ sed -e "s/^(v//" -e "s/)//" -e "s/_/./"`
|
||||
+ # to get rid of the (v in v5.6.0
|
||||
+ # substitute _patchlevel with .patchlevel
|
||||
# (used in 5.005_03 and prior)
|
||||
|
||||
# everything before the first .
|
||||
@@ -0,0 +1,72 @@
|
||||
From c59b84ca3bda8e4244d47901b6966f28dd675434 Mon Sep 17 00:00:00 2001
|
||||
From: Andrei Dinu <andrei.adrianx.dinu@intel.com>
|
||||
Date: Thu, 23 May 2013 15:12:23 +0300
|
||||
Subject: [PATCH] added yocto-standard to bastille
|
||||
|
||||
In order to make Bastille functional and avoid errors
|
||||
regarding distros, if not any given distro is identified,
|
||||
yocto-standard distro is added to the distro variable
|
||||
in Bastille.
|
||||
|
||||
Fixed also some warnings regarding defined statements
|
||||
in API.pm.
|
||||
|
||||
Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
|
||||
---
|
||||
Bastille/API.pm | 12 ++++++------
|
||||
1 file changed, 6 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/Bastille/API.pm b/Bastille/API.pm
|
||||
index 40f8c72..ebbe9f7 100644
|
||||
--- a/Bastille/API.pm
|
||||
+++ b/Bastille/API.pm
|
||||
@@ -445,8 +445,8 @@ sub GetDistro() {
|
||||
$release=`/usr/bin/uname -sr`;
|
||||
}
|
||||
else {
|
||||
- print STDERR "$err Could not determine operating system version!\n";
|
||||
- $distro="unknown";
|
||||
+ #print STDERR "$err Could not determine operating system version!\n";
|
||||
+ $distro="3.8.11-yocto-standard";
|
||||
}
|
||||
|
||||
# Figure out what kind of system we're on.
|
||||
@@ -537,7 +537,7 @@ sub getSupportedOSHash () {
|
||||
"DB2.2", "DB3.0",
|
||||
"RH6.0","RH6.1","RH6.2","RH7.0",
|
||||
"RH7.1","RH7.2","RH7.3","RH8.0",
|
||||
- "RH9",
|
||||
+ "RH9","3.8.11-yocto-standard",
|
||||
"RHEL5",
|
||||
"RHEL4AS","RHEL4ES","RHEL4WS",
|
||||
"RHEL3AS","RHEL3ES","RHEL3WS",
|
||||
@@ -1284,7 +1284,7 @@ sub B_write_sums {
|
||||
|
||||
my $sumFile = &getGlobal('BFILE',"sum.csv");
|
||||
|
||||
- if ( defined %GLOBAL_SUM ) {
|
||||
+ if ( %GLOBAL_SUM ) {
|
||||
|
||||
open( SUM, "> $sumFile") or &B_log("ERROR","Unable to open $sumFile for write.\n$!\n");
|
||||
|
||||
@@ -1318,7 +1318,7 @@ sub B_check_sum($) {
|
||||
my $file = $_[0];
|
||||
my $cksum = &getGlobal('BIN',"cksum");
|
||||
|
||||
- if (not(defined(%GLOBAL_SUM))) {
|
||||
+ if (not(%GLOBAL_SUM)) {
|
||||
&B_read_sums;
|
||||
}
|
||||
|
||||
@@ -1375,7 +1375,7 @@ sub listModifiedFiles {
|
||||
sub B_isFileinSumDB($) {
|
||||
my $file = $_[0];
|
||||
|
||||
- if (not(defined(%GLOBAL_SUM))) {
|
||||
+ if (not(%GLOBAL_SUM)) {
|
||||
&B_log("DEBUG","Reading in DB from B_isFileinSumDB");
|
||||
&B_read_sums;
|
||||
}
|
||||
--
|
||||
1.7.9.5
|
||||
|
||||
Reference in New Issue
Block a user