Do nothing when a rules file section is empty.

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2014-04-18 14:13:34 -07:00
parent 240d3d8cab
commit 4d4e8b3df4
3 changed files with 44 additions and 28 deletions

View File

@ -67,6 +67,7 @@ our $VERSION = 'MODULEVERSION';
our %sections;
our $section;
our $next_section;
use constant { NULL_SECTION => 0x00,
BLACKLIST_SECTION => 0x01,
@ -240,6 +241,7 @@ sub initialize( $ ) {
# Current rules file section.
#
$section = NULL_SECTION;
$next_section = NULL_SECTION;
#
# Macro=><macro file> mapping
#
@ -3068,19 +3070,32 @@ sub process_section ($) {
$sections{ALL} = 1;
} elsif ( $sect eq 'RELATED' ) {
@sections{'ALL','ESTABLISHED'} = ( 1, 1);
finish_section 'ESTABLISHED';
} elsif ( $sect eq 'INVALID' ) {
@sections{'ALL','ESTABLISHED','RELATED'} = ( 1, 1, 1 );
finish_section ( 'ESTABLISHED,RELATED' );
} elsif ( $sect eq 'UNTRACKED' ) {
@sections{'ALL','ESTABLISHED','RELATED', 'INVALID' } = ( 1, 1, 1, 1 );
finish_section ( 'ESTABLISHED,RELATED,INVALID' );
} elsif ( $sect eq 'NEW' ) {
@sections{'ALL','ESTABLISHED','RELATED','INVALID','UNTRACKED', 'NEW'} = ( 1, 1, 1, 1, 1, 1 );
}
$next_section = $section_map{$sect};
}
sub next_section() {
if ( $next_section == RELATED_SECTION ) {
finish_section 'ESTABLISHED';
} elsif ( $next_section == INVALID_SECTION ) {
finish_section ( 'ESTABLISHED,RELATED' );
} elsif ( $next_section == UNTRACKED_SECTION ) {
finish_section ( 'ESTABLISHED,RELATED,INVALID' );
} elsif ( $next_section == NEW_SECTION ) {
finish_section ( 'ESTABLISHED,RELATED,INVALID,UNTRACKED' );
}
$section = $section_map{$sect};
$section = $next_section;
}
#
@ -3167,7 +3182,7 @@ sub process_raw_rule ( ) {
# Section Names are optional so once we get to an actual rule, we need to be sure that
# we close off any missing sections.
#
process_section( 'NEW' ) unless $section;
next_section if $section != $next_section;
if ( $source =~ /^none(:.*)?$/i || $dest =~ /^none(:.*)?$/i ) {
progress_message "Rule \"$currentline\" ignored.";
@ -3330,7 +3345,7 @@ sub process_rules( $ ) {
#
# Process the blrules file
#
$section = BLACKLIST_SECTION;
$section = $next_section = BLACKLIST_SECTION;
my $fn = open_file( 'blrules', 1, 1 );
@ -3360,6 +3375,7 @@ sub process_rules( $ ) {
}
$section = NULL_SECTION;
$next_section = NEW_SECTION;
add_interface_options( $blrules );
@ -3383,7 +3399,7 @@ sub process_rules( $ ) {
#
# No need to finish the NEW section since no rules need to be generated
#
$section = DEFAULTACTION_SECTION;
$section = $next_section = DEFAULTACTION_SECTION;
}
1;

View File

@ -8,10 +8,10 @@
#
######################################################################################################################################################################################################
#ACTION SOURCE DEST PROTO DEST SOURCE ORIGINAL RATE USER/ MARK CONNLIMIT TIME HEADERS SWITCH HELPER
# PORT PORT(S) DEST LIMIT GROUP
#SECTION ALL
#SECTION ESTABLISHED
#SECTION RELATED
#SECTION INVALID
#SECTION UNTRACKED
SECTION NEW
# PORT(S) PORT(S) DEST LIMIT GROUP
?SECTION ALL
?SECTION ESTABLISHED
?SECTION RELATED
?SECTION INVALID
?SECTION UNTRACKED
?SECTION NEW

View File

@ -8,10 +8,10 @@
#
######################################################################################################################################################################################################
#ACTION SOURCE DEST PROTO DEST SOURCE ORIGINAL RATE USER/ MARK CONNLIMIT TIME HEADERS SWITCH HELPER
# PORT PORT(S) DEST LIMIT GROUP
#SECTION ALL
#SECTION ESTABLISHED
#SECTION RELATED
#SECTION INVALID
#SECTION UNTRACKED
SECTION NEW
# PORT(S) PORT(S) DEST LIMIT GROUP
?SECTION ALL
?SECTION ESTABLISHED
?SECTION RELATED
?SECTION INVALID
?SECTION UNTRACKED
?SECTION NEW