2007-03-15 22:55:22 +01:00
|
|
|
#
|
2007-03-28 18:19:35 +02:00
|
|
|
# Shorewall-perl 3.9 -- /usr/share/shorewall-perl/Shorewall/Accounting.pm
|
2007-03-15 22:55:22 +01:00
|
|
|
#
|
|
|
|
# This program is under GPL [http://www.gnu.org/copyleft/gpl.htm]
|
|
|
|
#
|
|
|
|
# (c) 2007 - Tom Eastep (teastep@shorewall.net)
|
|
|
|
#
|
|
|
|
# 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., 675 Mass Ave, Cambridge, MA 02139, USA
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2007-03-15 16:04:29 +01:00
|
|
|
package Shorewall::Accounting;
|
|
|
|
require Exporter;
|
|
|
|
use Shorewall::Common;
|
|
|
|
use Shorewall::Config;
|
|
|
|
use Shorewall::Zones;
|
|
|
|
use Shorewall::Chains;
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
our @ISA = qw(Exporter);
|
|
|
|
our @EXPORT = qw( setup_accounting );
|
|
|
|
our @EXPORT_OK = qw( );
|
|
|
|
our @VERSION = 1.00;
|
|
|
|
|
|
|
|
#
|
|
|
|
# Accounting
|
|
|
|
#
|
|
|
|
my $jumpchainref;
|
|
|
|
|
|
|
|
sub process_accounting_rule( $$$$$$$$ ) {
|
|
|
|
my ($action, $chain, $source, $dest, $proto, $ports, $sports, $user ) = @_;
|
|
|
|
|
|
|
|
sub accounting_error() {
|
|
|
|
warning_message "Invalid Accounting rule \"$line\"";
|
|
|
|
}
|
|
|
|
|
|
|
|
sub jump_to_chain( $ ) {
|
|
|
|
my $jumpchain = $_[0];
|
|
|
|
$jumpchainref = ensure_chain( 'filter', $jumpchain );
|
|
|
|
"-j $jumpchain";
|
|
|
|
}
|
|
|
|
|
|
|
|
$chain = 'accounting' unless $chain and $chain ne '-';
|
2007-03-27 01:17:46 +02:00
|
|
|
|
2007-03-15 16:04:29 +01:00
|
|
|
my $chainref = ensure_filter_chain $chain , 0;
|
|
|
|
|
|
|
|
my $target = '';
|
|
|
|
|
|
|
|
my $rule = do_proto( $proto, $ports, $sports ) . do_user ( $user );
|
|
|
|
my $rule2 = 0;
|
|
|
|
|
|
|
|
unless ( $action eq 'COUNT' ) {
|
|
|
|
if ( $action eq 'DONE' ) {
|
|
|
|
$target = '-j RETURN';
|
|
|
|
} else {
|
|
|
|
( $action, my $cmd ) = split /:/, $action;
|
|
|
|
if ( $cmd ) {
|
|
|
|
if ( $cmd eq 'COUNT' ) {
|
|
|
|
$rule2=1;
|
|
|
|
$target = jump_to_chain $action;
|
|
|
|
} elsif ( $cmd ne 'JUMP' ) {
|
|
|
|
accounting_error;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$target = jump_to_chain $action;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
expand_rule
|
|
|
|
$chainref ,
|
2007-03-18 19:50:34 +01:00
|
|
|
NO_RESTRICT ,
|
2007-03-15 16:04:29 +01:00
|
|
|
$rule ,
|
|
|
|
$source ,
|
|
|
|
$dest ,
|
|
|
|
'' ,
|
|
|
|
$target ,
|
|
|
|
'' ,
|
|
|
|
'' ,
|
|
|
|
'' ;
|
|
|
|
|
|
|
|
if ( $rule2 ) {
|
|
|
|
expand_rule
|
|
|
|
$jumpchainref ,
|
2007-03-18 19:50:34 +01:00
|
|
|
NO_RESTRICT ,
|
2007-03-15 16:04:29 +01:00
|
|
|
$rule ,
|
|
|
|
$source ,
|
|
|
|
$dest ,
|
|
|
|
'' ,
|
|
|
|
'' ,
|
|
|
|
'' ,
|
|
|
|
'' ,
|
|
|
|
'' ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub setup_accounting() {
|
|
|
|
|
|
|
|
open ACC, "$ENV{TMP_DIR}/accounting" or fatal_error "Unable to open stripped accounting file: $!";
|
|
|
|
|
|
|
|
while ( $line = <ACC> ) {
|
|
|
|
|
2007-03-25 18:38:00 +02:00
|
|
|
my ( $action, $chain, $source, $dest, $proto, $ports, $sports, $user ) = split_line 8, 'Accounting File';
|
2007-03-15 16:04:29 +01:00
|
|
|
|
|
|
|
process_accounting_rule $action, $chain, $source, $dest, $proto, $ports, $sports, $user;
|
|
|
|
}
|
2007-03-27 01:17:46 +02:00
|
|
|
|
2007-03-15 16:04:29 +01:00
|
|
|
close ACC;
|
|
|
|
|
|
|
|
if ( $filter_table->{accounting} ) {
|
|
|
|
for my $chain qw/INPUT FORWARD OUTPUT/ {
|
|
|
|
insert_rule $filter_table->{$chain}, 1, '-j accounting';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|