mirror of
https://gitlab.com/shorewall/code.git
synced 2024-12-23 14:48:51 +01:00
Allow multiple USER/GROUPs in a rule.
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
3993abad4e
commit
6614239b32
@ -2281,7 +2281,7 @@ sub build_zone_list( $$$\$\$ ) {
|
|||||||
# Process a Record in the rules file
|
# Process a Record in the rules file
|
||||||
#
|
#
|
||||||
sub process_rule ( ) {
|
sub process_rule ( ) {
|
||||||
my ( $target, $source, $dest, $protos, $ports, $sports, $origdest, $ratelimit, $user, $mark, $connlimit, $time, $headers, $condition, $helper )
|
my ( $target, $source, $dest, $protos, $ports, $sports, $origdest, $ratelimit, $users, $mark, $connlimit, $time, $headers, $condition, $helper )
|
||||||
= split_line1 'rules file', \%rulecolumns, $rule_commands;
|
= split_line1 'rules file', \%rulecolumns, $rule_commands;
|
||||||
|
|
||||||
fatal_error 'ACTION must be specified' if $target eq '-';
|
fatal_error 'ACTION must be specified' if $target eq '-';
|
||||||
@ -2307,6 +2307,7 @@ sub process_rule ( ) {
|
|||||||
my @source = build_zone_list ( $fw, $source, 'SOURCE', $intrazone, $wild );
|
my @source = build_zone_list ( $fw, $source, 'SOURCE', $intrazone, $wild );
|
||||||
my @dest = build_zone_list ( $fw, $dest, 'DEST' , $intrazone, $wild );
|
my @dest = build_zone_list ( $fw, $dest, 'DEST' , $intrazone, $wild );
|
||||||
my @protos = split_list1 $protos, 'Protocol';
|
my @protos = split_list1 $protos, 'Protocol';
|
||||||
|
my @users = split_list1 $users, 'USER/GROUP';
|
||||||
my $generated = 0;
|
my $generated = 0;
|
||||||
|
|
||||||
fatal_error "Invalid or missing ACTION ($target)" unless defined $action;
|
fatal_error "Invalid or missing ACTION ($target)" unless defined $action;
|
||||||
@ -2322,6 +2323,7 @@ sub process_rule ( ) {
|
|||||||
$destzone = $action =~ /^REDIRECT/ ? $fw : '' unless defined_zone $destzone;
|
$destzone = $action =~ /^REDIRECT/ ? $fw : '' unless defined_zone $destzone;
|
||||||
if ( ! $wild || $intrazone || ( $sourcezone ne $destzone ) ) {
|
if ( ! $wild || $intrazone || ( $sourcezone ne $destzone ) ) {
|
||||||
for my $proto ( @protos ) {
|
for my $proto ( @protos ) {
|
||||||
|
for my $user ( @users ) {
|
||||||
$generated |= process_rule1( undef,
|
$generated |= process_rule1( undef,
|
||||||
$target,
|
$target,
|
||||||
'',
|
'',
|
||||||
@ -2344,6 +2346,7 @@ sub process_rule ( ) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
warning_message qq(Entry generated no $toolname rules) unless $generated;
|
warning_message qq(Entry generated no $toolname rules) unless $generated;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user