2011-07-04 02:14:36 +02:00
|
|
|
#
|
|
|
|
# Shorewall 4 - Invalid Action
|
|
|
|
#
|
|
|
|
# /usr/share/shorewall/action.Invalid
|
|
|
|
#
|
|
|
|
# This program is under GPL [http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt]
|
|
|
|
#
|
2013-01-26 18:45:16 +01:00
|
|
|
# (c) 2011,2012 - Tom Eastep (teastep@shorewall.net)
|
2011-07-04 02:14:36 +02:00
|
|
|
#
|
|
|
|
# Complete documentation is available at http://shorewall.net
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of Version 2 of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# 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, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
2012-04-24 23:52:57 +02:00
|
|
|
# Invalid[([<action>|-[,{audit|-}])]
|
2011-07-04 02:14:36 +02:00
|
|
|
#
|
|
|
|
# Default action is DROP
|
|
|
|
#
|
|
|
|
##########################################################################################
|
2012-12-22 00:51:14 +01:00
|
|
|
?FORMAT 2
|
2011-07-04 02:14:36 +02:00
|
|
|
|
|
|
|
DEFAULTS DROP,-
|
|
|
|
|
2012-06-05 16:32:43 +02:00
|
|
|
?BEGIN PERL;
|
2011-07-04 02:14:36 +02:00
|
|
|
|
|
|
|
use Shorewall::IPAddrs;
|
|
|
|
use Shorewall::Config;
|
|
|
|
use Shorewall::Chains;
|
|
|
|
|
|
|
|
my ( $action, $audit ) = get_action_params( 2 );
|
2011-07-24 20:46:57 +02:00
|
|
|
|
|
|
|
fatal_error "Invalid parameter ($audit) to action Invalid" if supplied $audit && $audit ne 'audit';
|
2011-07-25 18:16:22 +02:00
|
|
|
fatal_error "Invalid parameter ($action) to action Invalid" unless $action =~ /^(?:ACCEPT|DROP|REJECT)$/;
|
2011-07-24 20:46:57 +02:00
|
|
|
|
|
|
|
my $chainref = get_action_chain;
|
2012-11-29 00:03:08 +01:00
|
|
|
|
2011-07-04 02:14:36 +02:00
|
|
|
my ( $level, $tag ) = get_action_logging;
|
|
|
|
my $target = require_audit ( $action , $audit );
|
|
|
|
|
|
|
|
log_rule_limit $level, $chainref, 'Invalid' , $action, '', $tag, 'add', "$globals{STATEMATCH} INVALID " if $level ne '';
|
|
|
|
add_jump $chainref , $target, 0, "$globals{STATEMATCH} INVALID ";
|
|
|
|
|
2012-02-19 23:20:09 +01:00
|
|
|
allow_optimize( $chainref );
|
2011-07-04 16:50:25 +02:00
|
|
|
|
2011-07-04 02:14:36 +02:00
|
|
|
1;
|
|
|
|
|
2012-06-05 16:32:43 +02:00
|
|
|
?END PERL;
|