| IPTables-libiptc documentation | Contained in the IPTables-libiptc distribution. |
IPTables::libiptc - Perl extension for iptables libiptc
use IPTables::libiptc;
$table = IPTables::libiptc::init('filter');
$table->create_chain("mychain");
# Its important to commit/push-back the changes to the kernel
$table->commit();
This package provides a perl interface to the netfilter/iptables
C-code and library libiptc.
Advantages of this module: Many rule changes can be done very fast. Several rule changes is committed atomically.
This module is heavily inspired by the CPAN module IPTables-IPv4. The CPAN module IPTables-IPv4 could not be used because it has not been kept up-to-date, with the newest iptables extensions. This is a result of the module design, as it contains every extension and thus needs to port them individually.
This package has another approach, it links with the systems libiptc.a library and depend on dynamic loading of iptables extensions available on the system.
The module only exports the libiptc chain manipulation functions. All
rule manipulations are done through the iptables.c do_command
function. As iptables.c is not made as a library, the package
unfortunately needs to maintain/contain this C file.
The reasoning behind making this module comes from how iptables/libiptc communicate with the kernel. Iptables/libiptc transfers the entire ruleset from kernel to userspace, and back again after making some changes to the ruleset.
This is a fairly large operation if only changing a single rule. That is actually the behavior of the iptables command.
Thus, with this knowledge it make sense to make several changes before commit'ing the changes (entire ruleset) back to the kernel. This is the behavior/purpose of this perl module.
This is also what makes it so very fast to many rule changes. And gives the property of several rule changes being committed atomically.
Most methods will return 1 for success, or 0 for failure (and on failure, set $! to a string describing the reason for the failure). Unless otherwise noted, you can assume that all methods will use this convention.
my ($policy) = $table->get_policy('chainname');
my ($policy, $pkt_cnt, $byte_cnt) = $table->get_policy('chainname');
This returns an array containing the default policy, and the number of
packets and bytes which have reached the default policy, in the chain
chainname. If chainname does not exist, or if it is not a
built-in chain, an empty array will be returned, and $! will be set to
a string containing the reason.
$success = $table->set_policy('chainname', 'target');
$success = $table->set_policy('chainname', 'target', 'pkt_cnt', 'byte_cnt');
($success, $old_policy, $old_pkt_cnt, $old_pkt_cnt) = $table->set_policy('chainname', 'target');
Sets the default policy. set_policy can be called several ways.
Upon success full setting of the policy the old policy and counters
are returned. The counter setting values are optional.
$success = $table->create_chain('chainname');
$success = $table->is_chain('chainname');
Checks if the chain exist.
$success = $table->builtin('chainname');
Tests if the chainname is a buildin chain.
$success = $table->delete_chain('chainname');
Tries to delete the chain, returns false if it could not.
$refs = $table->get_references('chainname');
Get a count of how many rules reference/jump to this chain.
@array = $table->list_chains();
$number_of_chains = $table->list_chains();
Lists all chains. Returns the number of chains in SCALAR context.
@array = $table->list_rules_IPs('type', 'chainname');
$number_of_rules = $table->list_rules_IPs('type', 'chainname');
This function lists the (rules) source or destination IPs from a given
chain. The type is either src or dst for source and
destination IPs. The netmask is also listed together with the IPs,
but separated by a / character. If chainname does not exist
undef is returned.
No rules manipulation functions is mapped/export from libiptc, instead
the iptables do_command function is exported to this purpose.
$table->iptables_do_command(\@array_ref)
Example of an array which contains a command:
my @array = ("-I", "test", "-s", "4.3.2.1", "-j", "ACCEPT");
$table->iptables_do_command(\@array);
None by default.
IPT_MIN_ALIGN
Module source also available here: http://people.netfilter.org/hawk/perl_modules/
The Netfilter/iptables homepage: http://www.netfilter.org
iptables(8)
Jesper Dangaard Brouer, <hawk@diku.dk> or <hawk@people.netfilter.org>.
$LastChangedDate$ $Revision$ $LastChangedBy$
Copyright (C) 2006-2009 by Jesper Dangaard Brouer
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 2 of the License, or (at your option) any later version.
| IPTables-libiptc documentation | Contained in the IPTables-libiptc distribution. |
package IPTables::libiptc; use 5.008004; use strict; use warnings; use Carp; require Exporter; require DynaLoader; # Our libiptc.so is loaded dynamically, and other dynamic libraries # need some of the external symbols defined in the library. Thus, # when loading the library the RTLD_GLOBAL flag needs to be set, as it # will make symbol resolution available of subsequently loaded # libraries. # # This solves the error: # Couldn't load target `standard': # libipt_standard.so: undefined symbol: register_target # # This flag 0x01 equals RTLD_GLOBAL. sub dl_load_flags {0x01} use AutoLoader; our @ISA = qw(Exporter DynaLoader); # Items to export into callers namespace by default. Note: do not export # names by default without a very good reason. Use EXPORT_OK instead. # Do not simply export all your public functions/methods/constants. # This allows declaration use IPTables::libiptc ':all'; # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK # will save memory. our %EXPORT_TAGS = ( 'all' => [ qw( IPT_MIN_ALIGN ) ] ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = qw( IPT_MIN_ALIGN ); our $VERSION = '0.51'; sub AUTOLOAD { # This AUTOLOAD is used to 'autoload' constants from the constant() # XS function. my $constname; our $AUTOLOAD; ($constname = $AUTOLOAD) =~ s/.*:://; croak "&IPTables::libiptc::constant not defined" if $constname eq 'constant'; my ($error, $val) = constant($constname); if ($error) { croak $error; } { no strict 'refs'; # Fixed between 5.005_53 and 5.005_61 #XXX if ($] >= 5.00561) { #XXX *$AUTOLOAD = sub () { $val }; #XXX } #XXX else { *$AUTOLOAD = sub { $val }; #XXX } } goto &$AUTOLOAD; } #require XSLoader; #XSLoader::load('IPTables::libiptc', $VERSION); bootstrap IPTables::libiptc $VERSION; # Preloaded methods go here. # Autoload methods go after =cut, and are processed by the autosplit program. 1; __END__ # Below is stub documentation for your module. You'd better edit it!