1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
#
# pptp.pm: Fwctl service module to handle the IPSec service over ESP.
#
# This file is part of Fwctl.
#
# Author: Francis J. Lacoste <francis@iNsu.COM>
#
# Copyright (c) 1999,2000 iNsu Innovations Inc.
#
# 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.
#
package Fwctl::Services::ipsec;
use strict;
use Fwctl::RuleSet qw(:udp_rulesets :ip_rulesets :masq );
use IPChains;
use Carp;
sub new {
my $proto = shift;
my $class = ref $proto || $proto;
bless {}, $class;
}
sub prototypes {
my ($self,$target,$options) = @_;
# Build prototype rule
(
IPChains->new(
Rule => $target,
Prot => 'udp',
SourcePort => 500,
DestPort => 500, # ISAKMP
%{$options->{ipchains}},
),
IPChains->new(
Rule => $target,
Prot => 50, # ESP
%{$options->{ipchains}},
),
);
}
sub block_rules {
my $self = shift;
my ( $target, $src, $src_if, $dst, $dst_if, $options ) = @_;
my ($control,$esp) = $self->prototypes( $target, $options );
block_udp_ruleset( $control, $src, $src_if, $dst, $dst_if );
block_ip_ruleset( $esp, $src, $src_if, $dst, $dst_if );
block_ip_ruleset( $esp, $dst, $dst_if, $src, $src_if );
}
sub accept_rules {
my $self = shift;
my ( $target, $src, $src_if, $dst, $dst_if, $options ) = @_;
my ($control, $esp ) = $self->prototypes( $target, $options );
my $masq = defined $options->{portfw} ? PORTFW :
$options->{masq} ? MASQ : NOMASQ;
accept_udp_ruleset( $control, $src, $src_if, $dst, $dst_if,
$masq, $options->{portfw} );
accept_ip_ruleset( $esp, $src, $src_if, $dst, $dst_if,
$masq, $options->{portfw} );
if ( $masq & MASQ ) {
$masq &= $masq ^ MASQ;
$masq |= UNMASQ;
} elsif ( $masq & PORTFW ) {
$masq &= $masq ^ PORTFW;
$masq |= UNPORTFW;
}
accept_ip_ruleset( $esp, $dst, $dst_if, $src, $src_if,
$masq, $options->{portfw} );
if ($options->{masq} || $options->{portfw} ) {
system ( "/sbin/modprobe", "ip_masq_ipsec" ) == 0
or carp __PACKAGE__, ": couldn't load ip_masq_ipsec: $?\n";
}
}
sub account_rules {
my $self = shift;
my ( $target, $src, $src_if, $dst, $dst_if, $options ) = @_;
my ( $control, $esp ) = $self->prototypes( $target, $options );
my $masq = defined $options->{portfw} ? PORTFW :
$options->{masq} ? MASQ : NOMASQ;
acct_udp_ruleset( $control, $src, $src_if, $dst, $dst_if,
$masq, $options->{portfw} );
acct_ip_ruleset( $esp, $src, $src_if, $dst, $dst_if,
$masq, $options->{portfw} );
if ( $masq & MASQ ) {
$masq &= $masq ^ MASQ;
$masq |= UNMASQ;
} elsif ( $masq & PORTFW ) {
$masq &= $masq ^ PORTFW;
$masq |= UNPORTFW;
}
acct_ip_ruleset( $esp, $dst, $dst_if, $src, $src_if,
$masq, $options->{portfw} );
}
sub valid_options {
my $self = shift;
( );
}
1;
=pod
=head1 NAME
Fwctl::Services::ipsec - Fwctl module to handle the IPSec protocol.
=head1 SYNOPSIS
accept ipsec -src INT_NET -dst REMOTE_IPSEC
=head1 DESCRIPTION
This module will implements the rules to accept/block/account the IPSec
tunnelling protocol. In order to be able to masquerade that protocol, you
will need a kernel with the IPSec masquerade patch applied.
See ftp://ftp.rubyriver.com/pub/jhardin/masquerade/ for informations.
=head1 AUTHOR
Francis J. Lacoste <francis.lacoste@iNsu.COM>
=head1 COPYRIGHT
Copyright (c) 1999,2000 iNsu Innovations Inc.
All rights reserved.
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.
=head1 SEE ALSO
fwctl(8) Fwctl(3) Fwctl::RuleSet(3)
=cut
|