mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 11:13:24 +02:00
ids.cgi: Move variable declaration to ids-functions.pl
Also move some functions from the cgi file to the library file. Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
This commit is contained in:
@@ -28,6 +28,30 @@ require '/var/ipfire/general-functions.pl';
|
||||
# Location where all config and settings files are stored.
|
||||
our $settingsdir = "${General::swroot}/suricata";
|
||||
|
||||
# File where the used rulefiles are stored.
|
||||
our $used_rulefiles_file = "$settingsdir/suricata-used-rulefiles.yaml";
|
||||
|
||||
# File where the addresses of the homenet are stored.
|
||||
our $homenet_file = "$settingsdir/suricata-homenet.yaml";
|
||||
|
||||
# File which contains the enabled sids.
|
||||
our $enabled_sids_file = "$settingsdir/oinkmaster-enabled-sids.conf";
|
||||
|
||||
# File which contains the disabled sids.
|
||||
our $disabled_sids_file = "$settingsdir/oinkmaster-disabled-sids.conf";
|
||||
|
||||
# File which contains wheater the rules should be changed.
|
||||
our $modify_sids_file = "$settingsdir/oinkmaster-modify-sids.conf";
|
||||
|
||||
# File which stores the configured IPS settings.
|
||||
our $ids_settings_file = "$settingsdir/settings";
|
||||
|
||||
# File which stores the configured rules-settings.
|
||||
our $rules_settings_file = "$settingsdir/rules-settings";
|
||||
|
||||
# File which stores the configured settings for whitelisted addresses.
|
||||
our $ignored_file = "$settingsdir/ignored";
|
||||
|
||||
# Location and name of the tarball which contains the ruleset.
|
||||
our $rulestarball = "/var/tmp/idsrules.tar.gz";
|
||||
|
||||
@@ -37,6 +61,9 @@ our $storederrorfile = "/tmp/ids_storederror";
|
||||
# Location where the rulefiles are stored.
|
||||
our $rulespath = "/var/lib/suricata";
|
||||
|
||||
# File which contains the rules to whitelist addresses on suricata.
|
||||
our $whitelist_file = "$rulespath/whitelist.rules";
|
||||
|
||||
# File which contains a list of all supported ruleset sources.
|
||||
# (Sourcefire, Emergingthreads, etc..)
|
||||
our $rulesetsourcesfile = "$settingsdir/ruleset-sources";
|
||||
@@ -53,6 +80,21 @@ my @suricatactrl_cmds = ( 'start', 'stop', 'restart', 'reload', 'fix-rules-dir',
|
||||
# Array with supported cron intervals.
|
||||
my @cron_intervals = ('off', 'daily', 'weekly' );
|
||||
|
||||
#
|
||||
## Function to check and create all IDS related files, if the does not exist.
|
||||
#
|
||||
sub check_and_create_filelayout() {
|
||||
# Check if the files exist and if not, create them.
|
||||
unless (-f "$enabled_sids_file") { &create_empty_file($enabled_sids_file); }
|
||||
unless (-f "$disabled_sids_file") { &create_empty_file($disabled_sids_file); }
|
||||
unless (-f "$modify_sids_file") { &create_empty_file($modify_sids_file); }
|
||||
unless (-f "$used_rulefiles_file") { &create_empty_file($used_rulefiles_file); }
|
||||
unless (-f "$ids_settings_file") { &create_empty_file($ids_settings_file); }
|
||||
unless (-f "$rules_settings_file") { &create_empty_file($rules_settings_file); }
|
||||
unless (-f "$ignored_file") { &create_empty_file($ignored_file); }
|
||||
unless (-f "$whitelist_file" ) { &create_empty_file($whitelist_file); }
|
||||
}
|
||||
|
||||
#
|
||||
## Function for checking if at least 300MB of free disk space are available
|
||||
## on the "/var" partition.
|
||||
@@ -534,4 +576,115 @@ sub _cleanup_rulesdir() {
|
||||
return;
|
||||
}
|
||||
|
||||
#
|
||||
## Function to generate the file which contains the home net information.
|
||||
#
|
||||
sub generate_home_net_file() {
|
||||
my %netsettings;
|
||||
|
||||
# Read-in network settings.
|
||||
&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
|
||||
|
||||
# Get available network zones.
|
||||
my @network_zones = &get_available_network_zones();
|
||||
|
||||
# Temporary array to store network address and prefix of the configured
|
||||
# networks.
|
||||
my @networks;
|
||||
|
||||
# Loop through the array of available network zones.
|
||||
foreach my $zone (@network_zones) {
|
||||
# Skip the red network - It never can be part to the home_net!
|
||||
next if($zone eq "red");
|
||||
|
||||
# Convert current zone name into upper case.
|
||||
$zone = uc($zone);
|
||||
|
||||
# Generate key to access the required data from the netsettings hash.
|
||||
my $zone_netaddress = $zone . "_NETADDRESS";
|
||||
my $zone_netmask = $zone . "_NETMASK";
|
||||
|
||||
# Obtain the settings from the netsettings hash.
|
||||
my $netaddress = $netsettings{$zone_netaddress};
|
||||
my $netmask = $netsettings{$zone_netmask};
|
||||
|
||||
# Convert the subnetmask into prefix notation.
|
||||
my $prefix = &Network::convert_netmask2prefix($netmask);
|
||||
|
||||
# Generate full network string.
|
||||
my $network = join("/", $netaddress,$prefix);
|
||||
|
||||
# Check if the network is valid.
|
||||
if(&Network::check_subnet($network)) {
|
||||
# Add the generated network to the array of networks.
|
||||
push(@networks, $network);
|
||||
}
|
||||
}
|
||||
|
||||
# Format home net declaration.
|
||||
my $line = "\"\[";
|
||||
|
||||
# Loop through the array of networks.
|
||||
foreach my $network (@networks) {
|
||||
# Add the network to the line.
|
||||
$line = "$line" . "$network";
|
||||
|
||||
# Check if the current network was the last in the array.
|
||||
if ($network eq $networks[-1]) {
|
||||
# Close the line.
|
||||
$line = "$line" . "\]\"";
|
||||
} else {
|
||||
# Add "," for the next network.
|
||||
$line = "$line" . "\,";
|
||||
}
|
||||
}
|
||||
|
||||
# Open file to store the addresses of the home net.
|
||||
open(FILE, ">$homenet_file") or die "Could not open $homenet_file. $!\n";
|
||||
|
||||
# Print yaml header.
|
||||
print FILE "%YAML 1.1\n";
|
||||
print FILE "---\n\n";
|
||||
|
||||
# Print notice about autogenerated file.
|
||||
print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
|
||||
|
||||
# Print the generated and required HOME_NET declaration to the file.
|
||||
print FILE "HOME_NET:\t$line\n";
|
||||
|
||||
# Close file handle.
|
||||
close(FILE);
|
||||
}
|
||||
|
||||
#
|
||||
## Function to generate and write the file for used rulefiles.
|
||||
#
|
||||
sub write_used_rulefiles_file(@) {
|
||||
my @files = @_;
|
||||
|
||||
# Open file for used rulefiles.
|
||||
open (FILE, ">$used_rulefiles_file") or die "Could not write to $used_rulefiles_file. $!\n";
|
||||
|
||||
# Write yaml header to the file.
|
||||
print FILE "%YAML 1.1\n";
|
||||
print FILE "---\n\n";
|
||||
|
||||
# Write header to file.
|
||||
print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
|
||||
|
||||
# Allways use the whitelist.
|
||||
print FILE " - whitelist.rules\n";
|
||||
|
||||
# Loop through the array of given files.
|
||||
foreach my $file (@files) {
|
||||
# Check if the given filename exists and write it to the file of used rulefiles.
|
||||
if(-f "$rulespath/$file") {
|
||||
print FILE " - $file\n";
|
||||
}
|
||||
}
|
||||
|
||||
# Close file after writing.
|
||||
close(FILE);
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
Reference in New Issue
Block a user