]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - config/firewall/rules.pl
firewall: Fix DNAT rules between internal zones.
[people/teissler/ipfire-2.x.git] / config / firewall / rules.pl
1 #!/usr/bin/perl -w
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
24 require '/var/ipfire/general-functions.pl';
25 require "${General::swroot}/lang.pl";
26 require "/usr/lib/firewall/firewall-lib.pl";
27
28 # Set to one to enable debugging mode.
29 my $DEBUG = 0;
30
31 my $IPTABLES = "iptables --wait";
32
33 # iptables chains
34 my $CHAIN_INPUT = "INPUTFW";
35 my $CHAIN_FORWARD = "FORWARDFW";
36 my $CHAIN_OUTPUT = "OUTGOINGFW";
37 my $CHAIN = $CHAIN_FORWARD;
38 my $CHAIN_NAT_SOURCE = "NAT_SOURCE";
39 my $CHAIN_NAT_DESTINATION = "NAT_DESTINATION";
40 my $CHAIN_MANGLE_NAT_DESTINATION_FIX = "NAT_DESTINATION";
41 my @VALID_CHAINS = ($CHAIN_INPUT, $CHAIN_FORWARD, $CHAIN_OUTPUT);
42 my @ANY_ADDRESSES = ("0.0.0.0/0.0.0.0", "0.0.0.0/0", "0/0");
43
44 my @PROTOCOLS = ("tcp", "udp", "icmp", "igmp", "ah", "esp", "gre", "ipv6", "ipip");
45 my @PROTOCOLS_WITH_PORTS = ("tcp", "udp");
46
47 my @VALID_TARGETS = ("ACCEPT", "DROP", "REJECT");
48
49 my %fwdfwsettings=();
50 my %defaultNetworks=();
51 my %configfwdfw=();;
52 my %customgrp=();
53 my %configinputfw=();
54 my %configoutgoingfw=();
55 my %confignatfw=();
56 my %aliases=();
57 my @p2ps=();
58
59 my $configfwdfw = "${General::swroot}/firewall/config";
60 my $configinput = "${General::swroot}/firewall/input";
61 my $configoutgoing = "${General::swroot}/firewall/outgoing";
62 my $p2pfile = "${General::swroot}/firewall/p2protocols";
63 my $configgrp = "${General::swroot}/fwhosts/customgroups";
64 my $netsettings = "${General::swroot}/ethernet/settings";
65
66 &General::readhash("${General::swroot}/firewall/settings", \%fwdfwsettings);
67 &General::readhash("$netsettings", \%defaultNetworks);
68 &General::readhasharray($configfwdfw, \%configfwdfw);
69 &General::readhasharray($configinput, \%configinputfw);
70 &General::readhasharray($configoutgoing, \%configoutgoingfw);
71 &General::readhasharray($configgrp, \%customgrp);
72 &General::get_aliases(\%aliases);
73
74 my @log_limit_options = &make_log_limit_options();
75
76 # MAIN
77 &main();
78
79 sub main {
80 # Flush all chains.
81 &flush();
82
83 # Reload firewall rules.
84 &preparerules();
85
86 # Load P2P block rules.
87 &p2pblock();
88
89 # Reload firewall policy.
90 run("/usr/sbin/firewall-policy");
91 }
92
93 sub run {
94 # Executes or prints the given shell command.
95 my $command = shift;
96
97 if ($DEBUG) {
98 print "$command\n";
99 } else {
100 system "$command";
101
102 if ($?) {
103 print_error("ERROR: $command");
104 }
105 }
106 }
107
108 sub print_error {
109 my $message = shift;
110
111 print STDERR "$message\n";
112 }
113
114 sub print_rule {
115 my $hash = shift;
116
117 print "\nRULE:";
118
119 my $i = 0;
120 foreach (@$hash) {
121 printf(" %2d: %s", $i++, $_);
122 }
123 print "\n";
124 }
125
126 sub flush {
127 run("$IPTABLES -F $CHAIN_INPUT");
128 run("$IPTABLES -F $CHAIN_FORWARD");
129 run("$IPTABLES -F $CHAIN_OUTPUT");
130 run("$IPTABLES -t nat -F $CHAIN_NAT_SOURCE");
131 run("$IPTABLES -t nat -F $CHAIN_NAT_DESTINATION");
132 run("$IPTABLES -t mangle -F $CHAIN_MANGLE_NAT_DESTINATION_FIX");
133 }
134
135 sub preparerules {
136 if (! -z "${General::swroot}/firewall/config"){
137 &buildrules(\%configfwdfw);
138 }
139 if (! -z "${General::swroot}/firewall/input"){
140 &buildrules(\%configinputfw);
141 }
142 if (! -z "${General::swroot}/firewall/outgoing"){
143 &buildrules(\%configoutgoingfw);
144 }
145 }
146
147 sub buildrules {
148 my $hash = shift;
149
150 foreach my $key (sort {$a <=> $b} keys %$hash) {
151 # Skip disabled rules.
152 next unless ($$hash{$key}[2] eq 'ON');
153
154 if ($DEBUG) {
155 print_rule($$hash{$key});
156 }
157
158 # Check if the target is valid.
159 my $target = $$hash{$key}[0];
160 if (!$target ~~ @VALID_TARGETS) {
161 print_error("Invalid target '$target' for rule $key");
162 next;
163 }
164
165 # Check if the chain is valid.
166 my $chain = $$hash{$key}[1];
167 if (!$chain ~~ @VALID_CHAINS) {
168 print_error("Invalid chain '$chain' in rule $key");
169 next;
170 }
171
172 # Collect all sources.
173 my @sources = &get_addresses($hash, $key, "src");
174
175 # Collect all destinations.
176 my @destinations = &get_addresses($hash, $key, "tgt");
177
178 # Check if logging should be enabled.
179 my $LOG = ($$hash{$key}[17] eq 'ON');
180
181 # Check if NAT is enabled and initialize variables, that we use for that.
182 my $NAT = ($$hash{$key}[28] eq 'ON');
183 my $NAT_MODE;
184 if ($NAT) {
185 $NAT_MODE = uc($$hash{$key}[31]);
186 }
187
188 # Set up time constraints.
189 my @time_options = ();
190 if ($$hash{$key}[18] eq 'ON') {
191 push(@time_options, ("-m", "time"));
192
193 # Select all days of the week this match is active.
194 my @weekdays = ();
195 if ($$hash{$key}[19] ne '') {
196 push (@weekdays, "Mon");
197 }
198 if ($$hash{$key}[20] ne '') {
199 push (@weekdays, "Tue");
200 }
201 if ($$hash{$key}[21] ne '') {
202 push (@weekdays, "Wed");
203 }
204 if ($$hash{$key}[22] ne '') {
205 push (@weekdays, "Thu");
206 }
207 if ($$hash{$key}[23] ne '') {
208 push (@weekdays, "Fri");
209 }
210 if ($$hash{$key}[24] ne '') {
211 push (@weekdays, "Sat");
212 }
213 if ($$hash{$key}[25] ne '') {
214 push (@weekdays, "Sun");
215 }
216 if (@weekdays) {
217 push(@time_options, ("--weekdays", join(",", @weekdays)));
218 }
219
220 # Convert start time.
221 my $time_start = &format_time($$hash{$key}[26]);
222 if ($time_start) {
223 push(@time_options, ("--timestart", $time_start));
224 }
225
226 # Convert end time.
227 my $time_stop = &format_time($$hash{$key}[27]);
228 if ($time_stop) {
229 push(@time_options, ("--timestop", $time_stop));
230 }
231 }
232
233 # Check which protocols are used in this rule and so that we can
234 # later group rules by protocols.
235 my @protocols = &get_protocols($hash, $key);
236 if (!@protocols) {
237 print_error("Invalid protocol configuration for rule $key");
238 next;
239 }
240
241 foreach my $protocol (@protocols) {
242 # Check if the given protocol is supported.
243 if (($protocol ne "all") && (!$protocol ~~ @PROTOCOLS)) {
244 print_error("Protocol $protocol is not supported (rule $key)");
245 next;
246 }
247
248 # Prepare protocol options (like ICMP types, ports, etc...).
249 my @protocol_options = &get_protocol_options($hash, $key, $protocol);
250
251 # Check if this protocol knows ports.
252 my $protocol_has_ports = ($protocol ~~ @PROTOCOLS_WITH_PORTS);
253
254 foreach my $source (@sources) {
255 foreach my $destination (@destinations) {
256 # Skip invalid rules.
257 next if (!$source || !$destination || ($destination eq "none"));
258
259 # Sanitize source.
260 if ($source ~~ @ANY_ADDRESSES) {
261 $source = "";
262 }
263
264 # Sanitize destination.
265 if ($destination ~~ @ANY_ADDRESSES) {
266 $destination = "";
267 }
268
269 # Array with iptables arguments.
270 my @options = ();
271
272 # Append protocol.
273 if ($protocol ne "all") {
274 push(@options, ("-p", $protocol));
275 push(@options, @protocol_options);
276 }
277
278 # Prepare source options.
279 my @source_options = ();
280 if ($source =~ /mac/) {
281 push(@source_options, $source);
282 } elsif ($source) {
283 push(@source_options, ("-s", $source));
284 }
285
286 # Prepare destination options.
287 my @destination_options = ();
288 if ($destination) {
289 push(@destination_options, ("-d", $destination));
290 }
291
292 # Add time constraint options.
293 push(@options, @time_options);
294
295 my $firewall_is_in_source_subnet = 0;
296 if ($source) {
297 $firewall_is_in_source_subnet = &firewall_is_in_subnet($source, 0);
298 }
299
300 # Process NAT rules.
301 if ($NAT) {
302 my $nat_address = &get_nat_address($$hash{$key}[29], $source);
303
304 # Skip NAT rules if the NAT address is unknown
305 # (i.e. no internet connection has been established, yet).
306 next unless ($nat_address);
307
308 # Destination NAT
309 if ($NAT_MODE eq "DNAT") {
310 # Make port-forwardings useable from the internal networks.
311 my @internal_addresses = &get_internal_firewall_ip_addresses();
312 unless ($nat_address ~~ @internal_addresses) {
313 &add_dnat_mangle_rules($nat_address, @options);
314 }
315
316 my @nat_options = @options;
317 push(@nat_options, @source_options);
318 push(@nat_options, ("-d", $nat_address));
319
320 my ($dnat_address, $dnat_mask) = split("/", $destination);
321 @destination_options = ("-d", $dnat_address);
322
323 if ($protocol_has_ports) {
324 my $dnat_port = &get_dnat_target_port($hash, $key);
325
326 if ($dnat_port) {
327 $dnat_address .= ":$dnat_port";
328 }
329 }
330
331 if ($LOG) {
332 run("$IPTABLES -t nat -A $CHAIN_NAT_DESTINATION @nat_options @log_limit_options -j LOG --log-prefix 'DNAT '");
333 }
334 run("$IPTABLES -t nat -A $CHAIN_NAT_DESTINATION @nat_options -j DNAT --to-destination $dnat_address");
335
336 # Source NAT
337 } elsif ($NAT_MODE eq "SNAT") {
338 my @nat_options = @options;
339
340 push(@nat_options, @source_options);
341 push(@nat_options, @destination_options);
342
343 if ($LOG) {
344 run("$IPTABLES -t nat -A $CHAIN_NAT_SOURCE @nat_options @log_limit_options -j LOG --log-prefix 'SNAT '");
345 }
346 run("$IPTABLES -t nat -A $CHAIN_NAT_SOURCE @nat_options -j SNAT --to-source $nat_address");
347 }
348 }
349
350 push(@options, @source_options);
351
352 if ($firewall_is_in_source_subnet && ($fwdfwsettings{"POLICY"} eq "MODE1") && ($chain eq $CHAIN_FORWARD)) {
353 if ($LOG && !$NAT) {
354 run("$IPTABLES -A $CHAIN_INPUT @options @log_limit_options -j LOG --log-prefix '$CHAIN_INPUT '");
355 }
356 run("$IPTABLES -A $CHAIN_INPUT @options -j $target");
357 }
358
359 push(@options, @destination_options);
360
361 # Insert firewall rule.
362 if ($LOG && !$NAT) {
363 run("$IPTABLES -A $chain @options @log_limit_options -j LOG --log-prefix '$chain '");
364 }
365 run("$IPTABLES -A $chain @options -j $target");
366 }
367 }
368 }
369 }
370 }
371
372 sub get_external_interface() {
373 open(IFACE, "/var/ipfire/red/iface") or return "";
374 my $iface = <IFACE>;
375 close(IFACE);
376
377 return $iface;
378 }
379
380 sub get_external_address() {
381 open(ADDR, "/var/ipfire/red/local-ipaddress") or return "";
382 my $address = <ADDR>;
383 close(ADDR);
384
385 return $address;
386 }
387
388 sub get_alias {
389 my $id = shift;
390
391 foreach my $alias (sort keys %aliases) {
392 if ($id eq $alias) {
393 return $aliases{$alias};
394 }
395 }
396 }
397
398 sub get_nat_address {
399 my $zone = shift;
400 my $source = shift;
401
402 # Any static address of any zone.
403 if ($zone eq "RED" || $zone eq "GREEN" || $zone eq "ORANGE" || $zone eq "BLUE") {
404 return $defaultNetworks{$zone . "_ADDRESS"};
405
406 } elsif ($zone eq "Default IP") {
407 if ($source) {
408 my $firewall_ip = &firewall_is_in_subnet($source, 1);
409
410 if ($firewall_ip) {
411 return $firewall_ip;
412 }
413 }
414
415 return &get_external_address();
416
417 } else {
418 return &get_alias($zone);
419 }
420
421 print_error("Could not find NAT address");
422 }
423
424 # Formats the given timestamp into the iptables format which is "hh:mm" UTC.
425 sub format_time {
426 my $val = shift;
427
428 # Convert the given time into minutes.
429 my $minutes = &time_convert_to_minutes($val);
430
431 # Move the timestamp into UTC.
432 $minutes += &time_utc_offset();
433
434 # Make sure $minutes is between 00:00 and 23:59.
435 if ($minutes < 0) {
436 $minutes += 1440;
437 }
438
439 if ($minutes > 1440) {
440 $minutes -= 1440;
441 }
442
443 # Format as hh:mm.
444 return sprintf("%02d:%02d", $minutes / 60, $minutes % 60);
445 }
446
447 # Calculates the offsets in minutes from the local timezone to UTC.
448 sub time_utc_offset {
449 my @localtime = localtime(time);
450 my @gmtime = gmtime(time);
451
452 return ($gmtime[2] * 60 + $gmtime[1] % 60) - ($localtime[2] * 60 + $localtime[1] % 60);
453 }
454
455 # Takes a timestamp like "14:00" and converts it into minutes since midnight.
456 sub time_convert_to_minutes {
457 my ($hrs, $min) = split(":", shift);
458
459 return ($hrs * 60) + $min;
460 }
461
462 sub p2pblock {
463 my $P2PSTRING = "";
464 my $DO;
465 open( FILE, "< $p2pfile" ) or die "Unable to read $p2pfile";
466 @p2ps = <FILE>;
467 close FILE;
468 my $CMD = "-m ipp2p";
469 foreach my $p2pentry (sort @p2ps) {
470 my @p2pline = split( /\;/, $p2pentry );
471 if ( $fwdfwsettings{'POLICY'} eq 'MODE1' ) {
472 $DO = "ACCEPT";
473 if ("$p2pline[2]" eq "on") {
474 $P2PSTRING = "$P2PSTRING --$p2pline[1]";
475 }
476 }else {
477 $DO = "RETURN";
478 if ("$p2pline[2]" eq "off") {
479 $P2PSTRING = "$P2PSTRING --$p2pline[1]";
480 }
481 }
482 }
483
484 if($P2PSTRING) {
485 run("$IPTABLES -A FORWARDFW $CMD $P2PSTRING -j $DO");
486 }
487 }
488
489 sub get_addresses {
490 my $hash = shift;
491 my $key = shift;
492 my $type = shift;
493
494 my @addresses = ();
495 my $addr_type;
496 my $value;
497 my $group_name;
498
499 if ($type eq "src") {
500 $addr_type = $$hash{$key}[3];
501 $value = $$hash{$key}[4];
502
503 } elsif ($type eq "tgt") {
504 $addr_type = $$hash{$key}[5];
505 $value = $$hash{$key}[6];
506 }
507
508 if ($addr_type ~~ ["cust_grp_src", "cust_grp_tgt"]) {
509 foreach my $grp (sort {$a <=> $b} keys %customgrp) {
510 if ($customgrp{$grp}[0] eq $value) {
511 my @address = &get_address($customgrp{$grp}[3], $customgrp{$grp}[2], $type);
512
513 if (@address) {
514 push(@addresses, @address);
515 }
516 }
517 }
518 } else {
519 my @address = &get_address($addr_type, $value, $type);
520
521 if (@address) {
522 push(@addresses, @address);
523 }
524 }
525
526 return @addresses;
527 }
528
529 sub get_address {
530 my $key = shift;
531 my $value = shift;
532 my $type = shift;
533
534 my @ret = ();
535
536 # If the user manually typed an address, we just check if it is a MAC
537 # address. Otherwise, we assume that it is an IP address.
538 if ($key ~~ ["src_addr", "tgt_addr"]) {
539 if (&General::validmac($value)) {
540 push(@ret, "-m mac --mac-source $value");
541 } else {
542 push(@ret, $value);
543 }
544
545 # If a default network interface (GREEN, BLUE, etc.) is selected, we
546 # try to get the corresponding address of the network.
547 } elsif ($key ~~ ["std_net_src", "std_net_tgt", "Standard Network"]) {
548 my $external_interface = &get_external_interface();
549
550 my $network_address = &fwlib::get_std_net_ip($value, $external_interface);
551 if ($network_address) {
552 push(@ret, $network_address);
553 }
554
555 # Custom networks.
556 } elsif ($key ~~ ["cust_net_src", "cust_net_tgt", "Custom Network"]) {
557 my $network_address = &fwlib::get_net_ip($value);
558 if ($network_address) {
559 push(@ret, $network_address);
560 }
561
562 # Custom hosts.
563 } elsif ($key ~~ ["cust_host_src", "cust_host_tgt", "Custom Host"]) {
564 my $host_address = &fwlib::get_host_ip($value, $type);
565 if ($host_address) {
566 push(@ret, $host_address);
567 }
568
569 # OpenVPN networks.
570 } elsif ($key ~~ ["ovpn_net_src", "ovpn_net_tgt", "OpenVPN static network"]) {
571 my $network_address = &fwlib::get_ovpn_net_ip($value, 1);
572 if ($network_address) {
573 push(@ret, $network_address);
574 }
575
576 # OpenVPN hosts.
577 } elsif ($key ~~ ["ovpn_host_src", "ovpn_host_tgt", "OpenVPN static host"]) {
578 my $host_address = &fwlib::get_ovpn_host_ip($value, 33);
579 if ($host_address) {
580 push(@ret, $host_address);
581 }
582
583 # OpenVPN N2N.
584 } elsif ($key ~~ ["ovpn_n2n_src", "ovpn_n2n_tgt", "OpenVPN N-2-N"]) {
585 my $network_address = &fwlib::get_ovpn_n2n_ip($value, 11);
586 if ($network_address) {
587 push(@ret, $network_address);
588 }
589
590 # IPsec networks.
591 } elsif ($key ~~ ["ipsec_net_src", "ipsec_net_tgt", "IpSec Network"]) {
592 my $network_address = &fwlib::get_ipsec_net_ip($value, 11);
593 if ($network_address) {
594 push(@ret, $network_address);
595 }
596
597 # The firewall's own IP addresses.
598 } elsif ($key ~~ ["ipfire", "ipfire_src"]) {
599 # ALL
600 if ($value eq "ALL") {
601 push(@ret, "0/0");
602
603 # GREEN
604 } elsif ($value eq "GREEN") {
605 push(@ret, $defaultNetworks{"GREEN_ADDRESS"});
606
607 # BLUE
608 } elsif ($value eq "BLUE") {
609 push(@ret, $defaultNetworks{"BLUE_ADDRESS"});
610
611 # ORANGE
612 } elsif ($value eq "ORANGE") {
613 push(@ret, $defaultNetworks{"ORANGE_ADDRESS"});
614
615 # RED
616 } elsif ($value ~~ ["RED", "RED1"]) {
617 my $address = &get_external_address();
618 if ($address) {
619 push(@ret, $address);
620 }
621
622 # Aliases
623 } else {
624 my %alias = &get_alias($value);
625 if (%alias) {
626 push(@ret, $alias{"IPT"});
627 }
628 }
629
630 # If nothing was selected, we assume "any".
631 } else {
632 push(@ret, "0/0");
633 }
634
635 return @ret;
636 }
637
638 sub get_protocols {
639 my $hash = shift;
640 my $key = shift;
641
642 my $uses_source_ports = ($$hash{$key}[7] eq "ON");
643 my $uses_services = ($$hash{$key}[11] eq "ON");
644
645 my @protocols = ();
646
647 # Rules which don't have source ports or services (like ICMP, ESP, ...).
648 if (!$uses_source_ports && !$uses_services) {
649 push(@protocols, $$hash{$key}[8]);
650
651 # Rules which either use ports or services.
652 } elsif ($uses_source_ports || $uses_services) {
653 # Check if service group or service
654 if ($$hash{$key}[14] eq 'cust_srv') {
655 push(@protocols, &fwlib::get_srv_prot($$hash{$key}[15]));
656
657 } elsif($$hash{$key}[14] eq 'cust_srvgrp'){
658 my $protos = &fwlib::get_srvgrp_prot($$hash{$key}[15]);
659 push(@protocols, split(",", $protos));
660
661 } else {
662 # Fetch the protocol for this rule.
663 my $protocol = lc($$hash{$key}[8]);
664
665 # Fetch source and destination ports for this rule.
666 my $source_ports = $$hash{$key}[10];
667 my $destination_ports = $$hash{$key}[15];
668
669 # Check if ports are set for protocols which do not support ports.
670 if (!($protocol ~~ @PROTOCOLS_WITH_PORTS) && ($source_ports || $destination_ports)) {
671 print_error("$protocol does not support ports");
672 return ();
673 }
674
675 push(@protocols, $protocol);
676 }
677 }
678
679 # Remove all empty elements
680 @protocols = map { $_ ? $_ : () } @protocols;
681
682 # If no protocol has been defined, we assume "all".
683 if (!@protocols) {
684 push(@protocols, "all");
685 }
686
687 # Make all protocol names lowercase.
688 @protocols = map { lc } @protocols;
689
690 return @protocols;
691 }
692
693 sub get_protocol_options {
694 my $hash = shift;
695 my $key = shift;
696 my $protocol = shift;
697 my @options = ();
698
699 # Process source ports.
700 my $use_src_ports = ($$hash{$key}[7] eq "ON");
701 my $src_ports = $$hash{$key}[10];
702
703 if ($use_src_ports && $src_ports) {
704 push(@options, &format_ports($src_ports, "src"));
705 }
706
707 # Process destination ports.
708 my $use_dst_ports = ($$hash{$key}[11] eq "ON");
709 my $use_dnat = (($$hash{$key}[28] eq "ON") && ($$hash{$key}[31] eq "dnat"));
710
711 if ($use_dst_ports) {
712 my $dst_ports_mode = $$hash{$key}[14];
713 my $dst_ports = $$hash{$key}[15];
714
715 if (($dst_ports_mode eq "TGT_PORT") && $dst_ports) {
716 if ($use_dnat && $$hash{$key}[30]) {
717 $dst_ports = $$hash{$key}[30];
718 }
719 push(@options, &format_ports($dst_ports, "dst"));
720
721 } elsif ($dst_ports_mode eq "cust_srv") {
722 if ($protocol eq "ICMP") {
723 push(@options, ("--icmp-type", &fwlib::get_srv_port($dst_ports, 3, "ICMP")));
724 } else {
725 $dst_ports = &fwlib::get_srv_port($dst_ports, 1, uc($protocol));
726 push(@options, &format_ports($dst_ports, "dst"));
727 }
728
729 } elsif ($dst_ports_mode eq "cust_srvgrp") {
730 push(@options, &fwlib::get_srvgrp_port($dst_ports, uc($protocol)));
731 }
732 }
733
734 # Check if a single ICMP type is selected.
735 if (!$use_src_ports && !$use_dst_ports && $protocol eq "icmp") {
736 my $icmp_type = $$hash{$key}[9];
737
738 if (($icmp_type ne "All ICMP-Types") && $icmp_type) {
739 push(@options, ("--icmp-type", $icmp_type));
740 }
741 }
742
743 return @options;
744 }
745
746 sub format_ports {
747 my $ports = shift;
748 my $type = shift;
749
750 my $arg;
751 if ($type eq "src") {
752 $arg = "--sport";
753 } elsif ($type eq "dst") {
754 $arg = "--dport";
755 }
756
757 my @options = ();
758
759 if ($ports =~ /\|/) {
760 $ports =~ s/\|/,/g;
761 push(@options, ("-m", "multiport"));
762 }
763
764 if ($ports) {
765 push(@options, ($arg, $ports));
766 }
767
768 return @options;
769 }
770
771 sub get_dnat_target_port {
772 my $hash = shift;
773 my $key = shift;
774
775 if ($$hash{$key}[14] eq "TGT_PORT") {
776 my $port = $$hash{$key}[15];
777 my $external_port = $$hash{$key}[30];
778
779 if ($external_port && ($port ne $external_port)) {
780 return $$hash{$key}[15];
781 }
782 }
783 }
784
785 sub add_dnat_mangle_rules {
786 my $nat_address = shift;
787 my @options = @_;
788
789 my $mark = 0;
790 foreach my $zone ("GREEN", "BLUE", "ORANGE") {
791 $mark++;
792
793 # Skip rule if not all required information exists.
794 next unless (exists $defaultNetworks{$zone . "_NETADDRESS"});
795 next unless (exists $defaultNetworks{$zone . "_NETMASK"});
796
797 my @mangle_options = @options;
798
799 my $netaddress = $defaultNetworks{$zone . "_NETADDRESS"};
800 $netaddress .= "/" . $defaultNetworks{$zone . "_NETMASK"};
801
802 push(@mangle_options, ("-s", $netaddress, "-d", $nat_address));
803 push(@mangle_options, ("-j", "MARK", "--set-mark", $mark));
804
805 run("$IPTABLES -t mangle -A $CHAIN_MANGLE_NAT_DESTINATION_FIX @mangle_options");
806 }
807 }
808
809 sub make_log_limit_options {
810 my @options = ("-m", "limit");
811
812 # Maybe we should get this from the configuration.
813 my $limit = 10;
814
815 # We limit log messages to $limit messages per minute.
816 push(@options, ("--limit", "$limit/min"));
817
818 # And we allow bursts of 2x $limit.
819 push(@options, ("--limit-burst", $limit * 2));
820
821 return @options;
822 }
823
824 sub get_internal_firewall_ip_addresses {
825 my @addresses = ();
826
827 for my $zone ("GREEN", "BLUE", "ORANGE") {
828 next unless (exists $defaultNetworks{$zone . "_ADDRESS"});
829
830 my $zone_address = $defaultNetworks{$zone . "_ADDRESS"};
831 push(@addresses, $zone_address);
832 }
833
834 return @addresses;
835 }
836
837 sub firewall_is_in_subnet {
838 my $subnet = shift;
839 my $use_orange = shift;
840
841 my ($net_address, $net_mask) = split("/", $subnet);
842 if (!$net_mask) {
843 return 0;
844 }
845
846 my @zones = ("GREEN", "BLUE");
847 if ($use_orange) {
848 push(@zones, "ORANGE");
849 }
850
851 # ORANGE is missing here, because nothing may ever access
852 # the firewall from this network.
853 foreach my $zone (@zones) {
854 next unless (exists $defaultNetworks{$zone . "_ADDRESS"});
855
856 my $zone_address = $defaultNetworks{$zone . "_ADDRESS"};
857
858 if (&General::IpInSubnet($zone_address, $net_address, $net_mask)) {
859 return $zone_address;
860 }
861 }
862 }