]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - config/forwardfw/firewall-lib.pl
Firewall: Make it possible to use NAT rules with servicegroups.
[people/teissler/ipfire-2.x.git] / config / forwardfw / firewall-lib.pl
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2013 Alexander Marx <amarx@ipfire.org> #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 use strict;
23 no warnings 'uninitialized';
24
25 package fwlib;
26
27 my %customnetwork=();
28 my %customhost=();
29 my %customgrp=();
30 my %customservice=();
31 my %customservicegrp=();
32 my %ccdnet=();
33 my %ccdhost=();
34 my %ipsecconf=();
35 my %ipsecsettings=();
36 my %netsettings=();
37 my %ovpnsettings=();
38
39 require '/var/ipfire/general-functions.pl';
40
41 my $confignet = "${General::swroot}/fwhosts/customnetworks";
42 my $confighost = "${General::swroot}/fwhosts/customhosts";
43 my $configgrp = "${General::swroot}/fwhosts/customgroups";
44 my $configsrv = "${General::swroot}/fwhosts/customservices";
45 my $configsrvgrp = "${General::swroot}/fwhosts/customservicegrp";
46 my $configccdnet = "${General::swroot}/ovpn/ccd.conf";
47 my $configccdhost = "${General::swroot}/ovpn/ovpnconfig";
48 my $configipsec = "${General::swroot}/vpn/config";
49 my $configovpn = "${General::swroot}/ovpn/settings";
50 my $val;
51 my $field;
52
53 &General::readhash("/var/ipfire/ethernet/settings", \%netsettings);
54 &General::readhash("${General::swroot}/ovpn/settings", \%ovpnsettings);
55 &General::readhash("${General::swroot}/vpn/settings", \%ipsecsettings);
56
57
58 &General::readhasharray("$confignet", \%customnetwork);
59 &General::readhasharray("$confighost", \%customhost);
60 &General::readhasharray("$configgrp", \%customgrp);
61 &General::readhasharray("$configccdnet", \%ccdnet);
62 &General::readhasharray("$configccdhost", \%ccdhost);
63 &General::readhasharray("$configipsec", \%ipsecconf);
64 &General::readhasharray("$configsrv", \%customservice);
65 &General::readhasharray("$configsrvgrp", \%customservicegrp);
66
67 sub get_srv_prot
68 {
69 my $val=shift;
70 foreach my $key (sort {$a <=> $b} keys %customservice){
71 if($customservice{$key}[0] eq $val){
72 if ($customservice{$key}[0] eq $val){
73 return $customservice{$key}[2];
74 }
75 }
76 }
77 }
78 sub get_srvgrp_prot
79 {
80 my $val=shift;
81 my @ips=();
82 my $tcp;
83 my $udp;
84 my $icmp;
85 foreach my $key (sort {$a <=> $b} keys %customservicegrp){
86 if($customservicegrp{$key}[0] eq $val){
87 if (&get_srv_prot($customservicegrp{$key}[2]) eq 'TCP'){
88 $tcp=1;
89 }elsif(&get_srv_prot($customservicegrp{$key}[2]) eq 'UDP'){
90 $udp=1;
91 }elsif(&get_srv_prot($customservicegrp{$key}[2]) eq 'ICMP'){
92 $icmp=1;
93 }
94 }
95 }
96 if ($tcp eq '1'){push (@ips,'TCP');}
97 if ($udp eq '1'){push (@ips,'UDP');}
98 if ($icmp eq '1'){push (@ips,'ICMP');}
99 my $back=join(",",@ips);
100 return $back;
101
102 }
103
104
105 sub get_srv_port
106 {
107 my $val=shift;
108 my $field=shift;
109 my $prot=shift;
110 foreach my $key (sort {$a <=> $b} keys %customservice){
111 if($customservice{$key}[0] eq $val){
112 if($customservice{$key}[2] eq $prot){
113 return $customservice{$key}[$field];
114 }
115 }
116 }
117 }
118 sub get_srvgrp_port
119 {
120 my $val=shift;
121 my $prot=shift;
122 my $back;
123 my $value;
124 my @ips=();
125 foreach my $key (sort {$a <=> $b} keys %customservicegrp){
126 if($customservicegrp{$key}[0] eq $val){
127 if ($prot ne 'ICMP'){
128 $value=&get_srv_port($customservicegrp{$key}[2],1,$prot);
129 }elsif ($prot eq 'ICMP'){
130 $value=&get_srv_port($customservicegrp{$key}[2],3,$prot);
131 }
132 push (@ips,$value) if ($value ne '') ;
133 }
134 }
135 if($prot ne 'ICMP'){
136 if ($#ips gt 0){$back="-m multiport --dports ";}else{$back="--dport ";}
137 }elsif ($prot eq 'ICMP'){
138 $back="--icmp-type ";
139 }
140
141 $back.=join(",",@ips);
142 return $back;
143 }
144 sub get_ipsec_net_ip
145 {
146 my $val=shift;
147 my $field=shift;
148 foreach my $key (sort {$a <=> $b} keys %ipsecconf){
149 if($ipsecconf{$key}[1] eq $val){
150 return $ipsecconf{$key}[$field];
151 }
152 }
153 }
154 sub get_ipsec_host_ip
155 {
156 my $val=shift;
157 my $field=shift;
158 foreach my $key (sort {$a <=> $b} keys %ipsecconf){
159 if($ipsecconf{$key}[1] eq $val){
160 return $ipsecconf{$key}[$field];
161 }
162 }
163 }
164 sub get_ovpn_n2n_ip
165 {
166 my $val=shift;
167 my $field=shift;
168 foreach my $key (sort {$a <=> $b} keys %ccdhost){
169 if($ccdhost{$key}[1] eq $val){
170 return $ccdhost{$key}[$field];
171 }
172 }
173 }
174 sub get_ovpn_host_ip
175 {
176 my $val=shift;
177 my $field=shift;
178 foreach my $key (sort {$a <=> $b} keys %ccdhost){
179 if($ccdhost{$key}[1] eq $val){
180 return $ccdhost{$key}[$field];
181 }
182 }
183 }
184 sub get_ovpn_net_ip
185 {
186
187 my $val=shift;
188 my $field=shift;
189 foreach my $key (sort {$a <=> $b} keys %ccdnet){
190 if($ccdnet{$key}[0] eq $val){
191 return $ccdnet{$key}[$field];
192 }
193 }
194 }
195 sub get_grp_ip
196 {
197 my $val=shift;
198 my $src=shift;
199 foreach my $key (sort {$a <=> $b} keys %customgrp){
200 if ($customgrp{$key}[0] eq $val){
201 &get_address($customgrp{$key}[3],$src);
202 }
203 }
204
205 }
206 sub get_std_net_ip
207 {
208 my $val=shift;
209 my $con=shift;
210 if ($val eq 'ALL'){
211 return "0.0.0.0/0.0.0.0";
212 }elsif($val eq 'GREEN'){
213 return "$netsettings{'GREEN_NETADDRESS'}/$netsettings{'GREEN_NETMASK'}";
214 }elsif($val eq 'ORANGE'){
215 return "$netsettings{'ORANGE_NETADDRESS'}/$netsettings{'ORANGE_NETMASK'}";
216 }elsif($val eq 'BLUE'){
217 return "$netsettings{'BLUE_NETADDRESS'}/$netsettings{'BLUE_NETMASK'}";
218 }elsif($val eq 'RED'){
219 return "0.0.0.0/0 -o $con";
220 }elsif($val =~ /OpenVPN/i){
221 return "$ovpnsettings{'DOVPN_SUBNET'}";
222 }elsif($val =~ /IPsec/i){
223 return "$ipsecsettings{'RW_NET'}";
224 }elsif($val eq 'IPFire'){
225 return ;
226 }
227 }
228 sub get_net_ip
229 {
230 my $val=shift;
231 foreach my $key (sort {$a <=> $b} keys %customnetwork){
232 if($customnetwork{$key}[0] eq $val){
233 return "$customnetwork{$key}[1]/$customnetwork{$key}[2]";
234 }
235 }
236 }
237 sub get_host_ip
238 {
239 my $val=shift;
240 my $src=shift;
241 foreach my $key (sort {$a <=> $b} keys %customhost){
242 if($customhost{$key}[0] eq $val){
243 if ($customhost{$key}[1] eq 'mac' && $src eq 'src'){
244 return "-m mac --mac-source $customhost{$key}[2]";
245 }elsif($customhost{$key}[1] eq 'ip' && $src eq 'src'){
246 return "$customhost{$key}[2]";
247 }elsif($customhost{$key}[1] eq 'ip' && $src eq 'tgt'){
248 return "$customhost{$key}[2]";
249 }elsif($customhost{$key}[1] eq 'mac' && $src eq 'tgt'){
250 return "none";
251 }
252 }
253 }
254 }
255
256 return 1;