From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim FitzGeorge To: development@lists.ipfire.org Subject: [PATCH v2 2/8] ipblacklist: WUI Settings page Date: Mon, 27 Apr 2020 15:31:17 +0100 Message-ID: <20200427143123.6378-3-ipfr@tfitzgeorge.me.uk> In-Reply-To: <20200427143123.6378-1-ipfr@tfitzgeorge.me.uk> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2152675245257214428==" List-Id: --===============2152675245257214428== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Tim FitzGeorge --- html/cgi-bin/ipblacklist.cgi | 463 +++++++++++++++++++++++++++++++++++++++++= ++ 1 file changed, 463 insertions(+) create mode 100644 html/cgi-bin/ipblacklist.cgi diff --git a/html/cgi-bin/ipblacklist.cgi b/html/cgi-bin/ipblacklist.cgi new file mode 100644 index 000000000..28b42edf2 --- /dev/null +++ b/html/cgi-bin/ipblacklist.cgi @@ -0,0 +1,463 @@ +#!/usr/bin/perl + +############################################################################= ### +# = # +# IPFire.org - A linux based firewall = # +# = # +# This program is free software: you can redistribute it and/or modify = # +# it under the terms of the GNU General Public License as published by = # +# the Free Software Foundation, either version 3 of the License, or = # +# (at your option) any later version. = # +# = # +# This program is distributed in the hope that it will be useful, = # +# but WITHOUT ANY WARRANTY; without even the implied warranty of = # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the = # +# GNU General Public License for more details. = # +# = # +# You should have received a copy of the GNU General Public License = # +# along with this program. If not, see . = # +# = # +# Copyright (C) 2018 - 2020 The IPFire Team = # +# = # +############################################################################= ### + +use strict; +use CGI qw/:standard/; +# enable the following only for debugging purposes +#use warnings; +#use CGI::Carp 'fatalsToBrowser'; +use Sort::Naturally; +use Socket; + +require '/var/ipfire/general-functions.pl'; +require "${General::swroot}/lang.pl"; +require "${General::swroot}/header.pl"; + +############################################################################= ### +# Configuration variables +############################################################################= ### + +my $settings =3D "${General::swroot}/ipblacklist/settings"; +my $sources =3D "${General::swroot}/ipblacklist/sources"; +my $getipstat =3D '/usr/local/bin/getipstat'; +my $getipsetstat =3D '/usr/local/bin/getipsetstat'; +my $control =3D '/usr/local/bin/ipblacklistctrl'; +my $lockfile =3D '/var/run/ipblacklist.pid'; +my %cgiparams =3D ('ACTION' =3D> ''); + +############################################################################= ### +# Variables +############################################################################= ### + +my $errormessage =3D ''; +my $updating =3D 0; +my %mainsettings; +my %color; +my %sources; +my %stats; + +# Default settings - normally overwritten by settings file + +my %settings =3D ( 'DEBUG' =3D> 0, + 'LOGGING' =3D> 'on', + 'ENABLE' =3D> 'off' ); + +# Read all parameters + +Header::getcgihash( \%cgiparams); +General::readhash( "${General::swroot}/main/settings", \%mainsettings ); +General::readhash( "/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/i= nclude/colors.txt", \%color ); +General::readhash( $settings, \%settings ) if (-r $settings); +eval qx|/bin/cat $sources| if (-r $sources); + +# Show Headers + +Header::showhttpheaders(); + +# Process actions + +if ($cgiparams{'ACTION'} eq "$Lang::tr{'save'}") +{ + # Save Button + + my %new_settings =3D ( 'ENABLE' =3D> 'off', + 'LOGGING' =3D> 'off', + 'DEBUG' =3D> 0 ); + + foreach my $item ('LOGGING', 'ENABLE', keys %sources) + { + $new_settings{$item} =3D (exists $cgiparams{$item}) ? 'on' : 'off'; + + $updating =3D 1 if (not exists $settings{$item} or $new_settings{$item} = ne $settings{$item}); + } + + # Check for redundant blacklists being enabled + + foreach my $list (keys %sources) + { + if (exists $new_settings{$list} and + $new_settings{$list} eq 'on' and + exists $sources{$list}{'disable'}) + { + my @disable; + + if ('ARRAY' eq ref $sources{$list}{'disable'}) + { + @disable =3D @{ $sources{$list}{'disable'} }; + } + else + { + @disable =3D ( $sources{$list}{'disable'} ); + } + + foreach my $disable (@disable) + { + if ($new_settings{$disable} eq 'on') + { + $new_settings{$disable} =3D 'off'; + + $updating =3D 1; + $errormessage .=3D "$Lang::tr{'ipblacklist disable pre'} $disable = " . + "$Lang::tr{'ipblacklist disable mid'} $list $Lan= g::tr{'ipblacklist disable post'}
\n"; + } + } + } + } + + if ($settings{'LOGGING'} ne $new_settings{'LOGGING'}) + { + if ($new_settings{'LOGGING'} eq 'on') + { + system( "$control log-on" ); + } + else + { + system( "$control log-off" ); + } + } + + if ($settings{'ENABLE'} ne $new_settings{'ENABLE'}) + { + if ($new_settings{'ENABLE'} eq 'on') + { + system( "$control enable" ); + } + else + { + system( "$control disable" ); + } + + $updating =3D 1; + } + + %settings =3D %new_settings; + + if ($errormessage) + { + $updating =3D 0; + } + else + { + General::writehash($settings, \%new_settings); + + if ($updating) + { + system( "$control update &" ); + show_running(); + exit 0; + } + } +} + +if (is_running()) +{ + show_running(); + exit 0; +} + +# Show site + +Header::openpage($Lang::tr{'ipblacklist'}, 1, ''); +Header::openbigbox('100%', 'left'); + +error() if ($errormessage); + +configsite(); + +# End of page + +Header::closebigbox(); +Header::closepage(); + +exit 0; + + +#---------------------------------------------------------------------------= --- +# sub configsite() +# +# Displays configuration +#---------------------------------------------------------------------------= --- + +sub configsite +{ + # Find preselections + + my $enable =3D 'checked'; + Header::openbox('100%', 'left', $Lang::tr{'settings'}); + + #### JAVA SCRIPT #### + + print< + \$(document).ready(function() + { + // Show/Hide elements when ENABLE checkbox is checked. + if (\$("#ENABLE").attr("checked")) + { + \$(".sources").show(); + } + else + { + \$(".sources").hide(); + } + + // Toggle Source list elements when "ENABLE" checkbox is clicked + \$("#ENABLE").change(function() + { + \$(".sources").toggle(); + }); + }); + +END + + ##### JAVA SCRIPT END #### + + # Enable checkbox + + $enable =3D ($settings{'ENABLE'} eq 'on') ? ' checked' : ''; + + print< + + + + + +
$Lang::tr{'ipblacklist use ipblacklists'}

+ +END + + # The following are only displayed if the blacklists are enabled + + $enable =3D ($settings{'LOGGING'} eq 'on') ? ' checked' : ''; + + print < + + + + + +
$Lang::tr{'ipblacklist log'}
+

+

$Lang::tr{'ipblacklist blacklist settings'}

+ + + + + + + +END + + # Iterate through the list of sources + + my $lines =3D 0; + + foreach my $list (sort keys %sources) + { + my $name =3D escapeHTML( $sources{$list}{'name'} ); + my $category =3D $Lang::tr{"ipblacklist category $sources{$list}{'catego= ry'}"}; + $enable =3D ''; + my $col =3D ($lines++ % 2) ? "bgcolor=3D'$color{'color20'}'" : "bgc= olor=3D'$color{'color22'}'"; + + $enable =3D ' checked' if (exists $settings{$list} and $settings{$list} = eq 'on'); + + print < + + + + \n +END + } + + # The save button at the bottom of the table + + print < + +
$Lang::tr{'ipblacklist id'}$Lang::tr{'ipblacklist name'}$Lang::tr{'ipblacklist category'}$Lang::tr{'ipblacklist enable'}
+END + + if ($sources{$list}{info}) + { + print "$list\n= "; + } + else + { + print "$list\n"; + } + + print < + $name$category
+ + + +
+END + + Header::closebox(); +} + + +#---------------------------------------------------------------------------= --- +# sub get_ipset_stats() +# +# Gets the number of entries in each IPSet. +#---------------------------------------------------------------------------= --- + +sub get_ipset_stats +{ + my $name; + + system( $getipsetstat ); + + if (-r '/var/tmp/ipsets.txt') + { + open STATS, '<', '/var/tmp/ipsets.txt' or die "Can't open IP Sets stats = file: $!"; + + foreach my $line () + { + if ($line =3D~ m/Name: (\w+)/) + { + $name =3D $1; + next; + } + + if ($line =3D~ m/Number of entries: (\d+)/) + { + $stats{$name}{'size'} =3D $1; + } + } + + close STATS; + + unlink( '/var/tmp/ipsets.txt' ); + } +} + + +#---------------------------------------------------------------------------= --- +# sub is_running() +# +# Checks to see if the main script is running +#---------------------------------------------------------------------------= --- + +sub is_running +{ + return 0 unless (-r $lockfile); + + open LOCKFILE, '<', $lockfile or die "Can't open lockfile"; + my $pid =3D ; + close LOCKFILE; + + chomp $pid; + + return (-e "/proc/$pid"); +} + + +#---------------------------------------------------------------------------= --- +# sub show_running +# +# Displayed when update is running. +# Shows a 'working' message plus some information about the IPSets. +#---------------------------------------------------------------------------= --- + +sub show_running +{ + # Open site + + Header::openpage( $Lang::tr{'ipblacklist'}, 1, '' ); + Header::openbigbox( '100%', 'center' ); + error(); + Header::openbox( 'Working', 'center', "$Lang::tr{'ipblacklist working'}" ); + + print < + + + 3D'$Lang::tr{'aktiv'}'  + + + +
+ + +END + + get_ipset_stats(); + + foreach my $name (sort keys %stats) + { + print "<= /tr>\n" if (exists $stats{$name}{'size'}); + } + + print < +END + + Header::closebox(); + + Header::closebigbox(); + Header::closepage(); +} + + +#---------------------------------------------------------------------------= --- +# sub error() +# +# Shows error messages +#---------------------------------------------------------------------------= --- + +sub error +{ + Header::openbox('100%', 'left', $Lang::tr{'error messages'}); + print "$errormessage\n"; + print " \n"; + Header::closebox(); +} + + +#---------------------------------------------------------------------------= --- +# sub format_time( seconds ) +# +# Converts time in seconds to HH:MM:SS +#---------------------------------------------------------------------------= --- + +sub format_time($) { + my $time =3D shift; + + my $seconds =3D $time % 60; + my $minutes =3D $time / 60; + + my $hours =3D 0; + if ($minutes >=3D 60) { + $hours =3D $minutes / 60; + $minutes %=3D 60; + } + + return sprintf("%3d:%02d:%02d", $hours, $minutes, $seconds); +} --=20 2.16.4 --===============2152675245257214428==--
$Lang::tr{'ipblacklist id'}$Lang::tr{'ipblacklist entri= es'}
$name$stats{$name}{'size'}