]> git.ipfire.org Git - ipfire-2.x.git/blame - config/firewall/rules.pl
BUG10620: reload firewall.local in rules.pl, no longer in initscript
[ipfire-2.x.git] / config / firewall / rules.pl
CommitLineData
6178953b 1#!/usr/bin/perl -w
2a81ab0d
AM
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5bee9a9d 5# Copyright (C) 2013 Alexander Marx <amarx@ipfire.org> #
2a81ab0d
AM
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###############################################################################
2a81ab0d 21
2a81ab0d 22use strict;
2a81ab0d 23
97ab0569
MT
24require '/var/ipfire/general-functions.pl';
25require "${General::swroot}/lang.pl";
26require "/usr/lib/firewall/firewall-lib.pl";
2a81ab0d 27
68d1eb10
MT
28# Set to one to enable debugging mode.
29my $DEBUG = 0;
30
1f9e7b53
MT
31my $IPTABLES = "iptables --wait";
32
6178953b 33# iptables chains
8f4f4634
MT
34my $CHAIN_INPUT = "INPUTFW";
35my $CHAIN_FORWARD = "FORWARDFW";
d98aa95a 36my $CHAIN_OUTPUT = "OUTGOINGFW";
8f4f4634 37my $CHAIN = $CHAIN_FORWARD;
6178953b
MT
38my $CHAIN_NAT_SOURCE = "NAT_SOURCE";
39my $CHAIN_NAT_DESTINATION = "NAT_DESTINATION";
6e87f0aa 40my $CHAIN_MANGLE_NAT_DESTINATION_FIX = "NAT_DESTINATION";
8f4f4634 41my @VALID_CHAINS = ($CHAIN_INPUT, $CHAIN_FORWARD, $CHAIN_OUTPUT);
c2a1af75 42my @ANY_ADDRESSES = ("0.0.0.0/0.0.0.0", "0.0.0.0/0", "0/0");
8f4f4634
MT
43
44my @PROTOCOLS = ("tcp", "udp", "icmp", "igmp", "ah", "esp", "gre", "ipv6", "ipip");
45my @PROTOCOLS_WITH_PORTS = ("tcp", "udp");
46
47my @VALID_TARGETS = ("ACCEPT", "DROP", "REJECT");
6178953b 48
2a81ab0d 49my %fwdfwsettings=();
aa5f4b65 50my %fwoptions = ();
2a81ab0d 51my %defaultNetworks=();
8f4f4634 52my %configfwdfw=();;
2a81ab0d 53my %customgrp=();
2a81ab0d 54my %configinputfw=();
5d7faa45 55my %configoutgoingfw=();
a6edca5a 56my %confignatfw=();
36196d0d 57my @p2ps=();
2a81ab0d 58
6d8eb5de
AM
59my $configfwdfw = "${General::swroot}/firewall/config";
60my $configinput = "${General::swroot}/firewall/input";
61my $configoutgoing = "${General::swroot}/firewall/outgoing";
62my $p2pfile = "${General::swroot}/firewall/p2protocols";
2a81ab0d 63my $configgrp = "${General::swroot}/fwhosts/customgroups";
210ee67b 64my $netsettings = "${General::swroot}/ethernet/settings";
86a921ee 65
6d8eb5de 66&General::readhash("${General::swroot}/firewall/settings", \%fwdfwsettings);
aa5f4b65 67&General::readhash("${General::swroot}/optionsfw/settings", \%fwoptions);
210ee67b 68&General::readhash("$netsettings", \%defaultNetworks);
2a81ab0d
AM
69&General::readhasharray($configfwdfw, \%configfwdfw);
70&General::readhasharray($configinput, \%configinputfw);
5d7faa45 71&General::readhasharray($configoutgoing, \%configoutgoingfw);
2a81ab0d 72&General::readhasharray($configgrp, \%customgrp);
2a81ab0d 73
3bb4bb3f
MT
74my @log_limit_options = &make_log_limit_options();
75
aa5f4b65
MT
76my $POLICY_INPUT_ALLOWED = 0;
77my $POLICY_FORWARD_ALLOWED = ($fwdfwsettings{"POLICY"} eq "MODE2");
78my $POLICY_OUTPUT_ALLOWED = ($fwdfwsettings{"POLICY1"} eq "MODE2");
79
80my $POLICY_INPUT_ACTION = $fwoptions{"FWPOLICY2"};
81my $POLICY_FORWARD_ACTION = $fwoptions{"FWPOLICY"};
82my $POLICY_OUTPUT_ACTION = $fwoptions{"FWPOLICY1"};
83
8531b94a
MT
84# MAIN
85&main();
86
87sub main {
88 # Flush all chains.
89 &flush();
90
91 # Reload firewall rules.
92 &preparerules();
93
94 # Load P2P block rules.
95 &p2pblock();
96
97 # Reload firewall policy.
98 run("/usr/sbin/firewall-policy");
2a81ab0d 99}
97ab0569 100
68d1eb10
MT
101sub run {
102 # Executes or prints the given shell command.
103 my $command = shift;
104
105 if ($DEBUG) {
106 print "$command\n";
107 } else {
108 system "$command";
6e87f0aa
MT
109
110 if ($?) {
111 print_error("ERROR: $command");
112 }
68d1eb10
MT
113 }
114}
115
6178953b
MT
116sub print_error {
117 my $message = shift;
118
119 print STDERR "$message\n";
120}
121
8f4f4634
MT
122sub print_rule {
123 my $hash = shift;
124
125 print "\nRULE:";
126
127 my $i = 0;
128 foreach (@$hash) {
129 printf(" %2d: %s", $i++, $_);
130 }
131 print "\n";
132}
133
97ab0569 134sub flush {
d98aa95a
MT
135 run("$IPTABLES -F $CHAIN_INPUT");
136 run("$IPTABLES -F $CHAIN_FORWARD");
137 run("$IPTABLES -F $CHAIN_OUTPUT");
138 run("$IPTABLES -t nat -F $CHAIN_NAT_SOURCE");
139 run("$IPTABLES -t nat -F $CHAIN_NAT_DESTINATION");
6e87f0aa 140 run("$IPTABLES -t mangle -F $CHAIN_MANGLE_NAT_DESTINATION_FIX");
86a921ee 141}
97ab0569
MT
142
143sub preparerules {
6d8eb5de 144 if (! -z "${General::swroot}/firewall/input"){
2a81ab0d
AM
145 &buildrules(\%configinputfw);
146 }
6d8eb5de 147 if (! -z "${General::swroot}/firewall/outgoing"){
5d7faa45
AM
148 &buildrules(\%configoutgoingfw);
149 }
aa5f4b65
MT
150 if (! -z "${General::swroot}/firewall/config"){
151 &buildrules(\%configfwdfw);
152 }
2a81ab0d 153}
97ab0569
MT
154
155sub buildrules {
8f4f4634
MT
156 my $hash = shift;
157
aa5f4b65
MT
158 # Search for targets that need to be specially handled when adding
159 # forwarding rules. Additional rules will automatically get inserted
160 # into the INPUT/OUTPUT chains for these targets.
161 my @special_input_targets = ();
162 if (!$POLICY_FORWARD_ALLOWED) {
163 push(@special_input_targets, "ACCEPT");
164 }
165
166 if ($POLICY_INPUT_ACTION eq "DROP") {
167 push(@special_input_targets, "REJECT");
168 } elsif ($POLICY_INPUT_ACTION eq "REJECT") {
169 push(@special_input_targets, "DROP");
170 }
171
172 my @special_output_targets = ();
173 if ($POLICY_OUTPUT_ALLOWED) {
174 push(@special_output_targets, ("DROP", "REJECT"));
175 } else {
176 push(@special_output_targets, "ACCEPT");
177
178 if ($POLICY_OUTPUT_ACTION eq "DROP") {
179 push(@special_output_targets, "REJECT");
180 } elsif ($POLICY_OUTPUT_ACTION eq "REJECT") {
181 push(@special_output_targets, "DROP");
182 }
183 }
184
8f4f4634
MT
185 foreach my $key (sort {$a <=> $b} keys %$hash) {
186 # Skip disabled rules.
187 next unless ($$hash{$key}[2] eq 'ON');
188
189 if ($DEBUG) {
190 print_rule($$hash{$key});
191 }
192
193 # Check if the target is valid.
194 my $target = $$hash{$key}[0];
195 if (!$target ~~ @VALID_TARGETS) {
196 print_error("Invalid target '$target' for rule $key");
197 next;
198 }
199
200 # Check if the chain is valid.
201 my $chain = $$hash{$key}[1];
202 if (!$chain ~~ @VALID_CHAINS) {
203 print_error("Invalid chain '$chain' in rule $key");
204 next;
205 }
206
207 # Collect all sources.
4e54e3c6 208 my @sources = &fwlib::get_addresses($hash, $key, "src");
8f4f4634
MT
209
210 # Collect all destinations.
4e54e3c6 211 my @destinations = &fwlib::get_addresses($hash, $key, "tgt");
6178953b 212
c0ce9206
MT
213 # True if the destination is the firewall itself.
214 my $destination_is_firewall = ($$hash{$key}[5] eq "ipfire");
215
6178953b 216 # Check if logging should be enabled.
8f4f4634 217 my $LOG = ($$hash{$key}[17] eq 'ON');
6178953b 218
8f4f4634
MT
219 # Check if NAT is enabled and initialize variables, that we use for that.
220 my $NAT = ($$hash{$key}[28] eq 'ON');
6178953b 221 my $NAT_MODE;
8f4f4634
MT
222 if ($NAT) {
223 $NAT_MODE = uc($$hash{$key}[31]);
224 }
6178953b 225
8f4f4634
MT
226 # Set up time constraints.
227 my @time_options = ();
228 if ($$hash{$key}[18] eq 'ON') {
229 push(@time_options, ("-m", "time"));
6178953b 230
8f4f4634
MT
231 # Select all days of the week this match is active.
232 my @weekdays = ();
233 if ($$hash{$key}[19] ne '') {
234 push (@weekdays, "Mon");
235 }
236 if ($$hash{$key}[20] ne '') {
237 push (@weekdays, "Tue");
238 }
239 if ($$hash{$key}[21] ne '') {
240 push (@weekdays, "Wed");
241 }
242 if ($$hash{$key}[22] ne '') {
243 push (@weekdays, "Thu");
244 }
245 if ($$hash{$key}[23] ne '') {
246 push (@weekdays, "Fri");
247 }
248 if ($$hash{$key}[24] ne '') {
249 push (@weekdays, "Sat");
250 }
251 if ($$hash{$key}[25] ne '') {
252 push (@weekdays, "Sun");
253 }
254 if (@weekdays) {
255 push(@time_options, ("--weekdays", join(",", @weekdays)));
256 }
6178953b 257
8f4f4634
MT
258 # Convert start time.
259 my $time_start = &format_time($$hash{$key}[26]);
260 if ($time_start) {
261 push(@time_options, ("--timestart", $time_start));
a6edca5a 262 }
6178953b 263
8f4f4634
MT
264 # Convert end time.
265 my $time_stop = &format_time($$hash{$key}[27]);
266 if ($time_stop) {
267 push(@time_options, ("--timestop", $time_stop));
268 }
a6edca5a 269 }
6178953b 270
8f4f4634
MT
271 # Check which protocols are used in this rule and so that we can
272 # later group rules by protocols.
273 my @protocols = &get_protocols($hash, $key);
274 if (!@protocols) {
275 print_error("Invalid protocol configuration for rule $key");
276 next;
277 }
278
279 foreach my $protocol (@protocols) {
280 # Check if the given protocol is supported.
281 if (($protocol ne "all") && (!$protocol ~~ @PROTOCOLS)) {
282 print_error("Protocol $protocol is not supported (rule $key)");
283 next;
2a81ab0d 284 }
8f4f4634
MT
285
286 # Prepare protocol options (like ICMP types, ports, etc...).
d7a14d01 287 my @protocol_options = &get_protocol_options($hash, $key, $protocol, 0);
8f4f4634
MT
288
289 # Check if this protocol knows ports.
290 my $protocol_has_ports = ($protocol ~~ @PROTOCOLS_WITH_PORTS);
291
02574191
MT
292 foreach my $src (@sources) {
293 # Skip invalid source.
4e9a2b57 294 next unless (defined $src);
02574191 295 next unless ($src);
8f4f4634 296
02574191
MT
297 # Sanitize source.
298 my $source = $src;
299 if ($source ~~ @ANY_ADDRESSES) {
300 $source = "";
301 }
302
303 foreach my $dst (@destinations) {
304 # Skip invalid rules.
4e9a2b57 305 next unless (defined $dst);
02574191 306 next if (!$dst || ($dst eq "none"));
c2a1af75
MT
307
308 # Sanitize destination.
02574191 309 my $destination = $dst;
c2a1af75
MT
310 if ($destination ~~ @ANY_ADDRESSES) {
311 $destination = "";
312 }
313
8f4f4634
MT
314 # Array with iptables arguments.
315 my @options = ();
316
317 # Append protocol.
318 if ($protocol ne "all") {
8f4f4634 319 push(@options, @protocol_options);
2a81ab0d 320 }
8f4f4634 321
6e87f0aa
MT
322 # Prepare source options.
323 my @source_options = ();
8f4f4634 324 if ($source =~ /mac/) {
6e87f0aa 325 push(@source_options, $source);
c2a1af75 326 } elsif ($source) {
6e87f0aa 327 push(@source_options, ("-s", $source));
2a81ab0d 328 }
14f7cb87 329
6e87f0aa 330 # Prepare destination options.
c2a1af75
MT
331 my @destination_options = ();
332 if ($destination) {
333 push(@destination_options, ("-d", $destination));
334 }
14f7cb87 335
8f4f4634
MT
336 # Add time constraint options.
337 push(@options, @time_options);
14f7cb87 338
aa5f4b65 339 my $firewall_is_in_source_subnet = 1;
e9b5ba41 340 if ($source) {
da7a2208 341 $firewall_is_in_source_subnet = &firewall_is_in_subnet($source);
e9b5ba41
MT
342 }
343
aa5f4b65
MT
344 my $firewall_is_in_destination_subnet = 1;
345 if ($destination) {
346 $firewall_is_in_destination_subnet = &firewall_is_in_subnet($destination);
347 }
348
8f4f4634
MT
349 # Process NAT rules.
350 if ($NAT) {
4e54e3c6 351 my $nat_address = &fwlib::get_nat_address($$hash{$key}[29], $source);
b05ec50a 352
8f4f4634
MT
353 # Skip NAT rules if the NAT address is unknown
354 # (i.e. no internet connection has been established, yet).
355 next unless ($nat_address);
b05ec50a 356
8f4f4634
MT
357 # Destination NAT
358 if ($NAT_MODE eq "DNAT") {
d7a14d01
MT
359 my @nat_options = ();
360 if ($protocol ne "all") {
361 my @nat_protocol_options = &get_protocol_options($hash, $key, $protocol, 1);
362 push(@nat_options, @nat_protocol_options);
363 }
ff7cb6d6
MT
364 push(@nat_options, @time_options);
365
366 # Make port-forwardings useable from the internal networks.
367 my @internal_addresses = &fwlib::get_internal_firewall_ip_addresses(1);
368 unless ($nat_address ~~ @internal_addresses) {
369 &add_dnat_mangle_rules($nat_address, @nat_options);
370 }
371
6e87f0aa 372 push(@nat_options, @source_options);
8f4f4634 373 push(@nat_options, ("-d", $nat_address));
6e87f0aa 374
c0ce9206 375 my $dnat_port;
8f4f4634 376 if ($protocol_has_ports) {
c0ce9206
MT
377 $dnat_port = &get_dnat_target_port($hash, $key);
378 }
379
380 my @nat_action_options = ();
b05ec50a 381
c0ce9206
MT
382 # Use iptables REDIRECT
383 my $use_redirect = ($destination_is_firewall && !$destination && $protocol_has_ports && $dnat_port);
384 if ($use_redirect) {
385 push(@nat_action_options, ("-j", "REDIRECT", "--to-ports", $dnat_port));
386
387 # Use iptables DNAT
388 } else {
f98bb538
MT
389 if ($destination_is_firewall && !$destination) {
390 $destination = &fwlib::get_external_address();
391 }
392 next unless ($destination);
393
c0ce9206
MT
394 my ($dnat_address, $dnat_mask) = split("/", $destination);
395 @destination_options = ("-d", $dnat_address);
396
397 if ($protocol_has_ports) {
398 my $dnat_port = &get_dnat_target_port($hash, $key);
399
400 if ($dnat_port) {
401 $dnat_address .= ":$dnat_port";
402 }
86a921ee 403 }
c0ce9206
MT
404
405 push(@nat_action_options, ("-j", "DNAT", "--to-destination", $dnat_address));
2a81ab0d 406 }
8f4f4634
MT
407
408 if ($LOG) {
3bb4bb3f 409 run("$IPTABLES -t nat -A $CHAIN_NAT_DESTINATION @nat_options @log_limit_options -j LOG --log-prefix 'DNAT '");
8f4f4634 410 }
c0ce9206 411 run("$IPTABLES -t nat -A $CHAIN_NAT_DESTINATION @nat_options @nat_action_options");
8f4f4634
MT
412
413 # Source NAT
414 } elsif ($NAT_MODE eq "SNAT") {
6e87f0aa
MT
415 my @nat_options = @options;
416
417 push(@nat_options, @source_options);
418 push(@nat_options, @destination_options);
419
8f4f4634 420 if ($LOG) {
3bb4bb3f 421 run("$IPTABLES -t nat -A $CHAIN_NAT_SOURCE @nat_options @log_limit_options -j LOG --log-prefix 'SNAT '");
8f4f4634 422 }
6e87f0aa 423 run("$IPTABLES -t nat -A $CHAIN_NAT_SOURCE @nat_options -j SNAT --to-source $nat_address");
2a81ab0d
AM
424 }
425 }
8f4f4634 426
6e87f0aa
MT
427 push(@options, @source_options);
428 push(@options, @destination_options);
429
8f4f4634
MT
430 # Insert firewall rule.
431 if ($LOG && !$NAT) {
0bda23f5 432 run("$IPTABLES -A $chain @options @log_limit_options -j LOG --log-prefix '$chain '");
8f4f4634
MT
433 }
434 run("$IPTABLES -A $chain @options -j $target");
aa5f4b65
MT
435
436 # Handle forwarding rules and add corresponding rules for firewall access.
437 if ($chain eq $CHAIN_FORWARD) {
438 # If the firewall is part of the destination subnet and access to the destination network
439 # is granted/forbidden for any network that the firewall itself is part of, we grant/forbid access
440 # for the firewall, too.
441 if ($firewall_is_in_destination_subnet && ($target ~~ @special_input_targets)) {
442 if ($LOG && !$NAT) {
443 run("$IPTABLES -A $CHAIN_INPUT @options @log_limit_options -j LOG --log-prefix '$CHAIN_INPUT '");
444 }
445 run("$IPTABLES -A $CHAIN_INPUT @options -j $target");
446 }
447
448 # Likewise.
449 if ($firewall_is_in_source_subnet && ($target ~~ @special_output_targets)) {
450 if ($LOG && !$NAT) {
451 run("$IPTABLES -A $CHAIN_OUTPUT @options @log_limit_options -j LOG --log-prefix '$CHAIN_OUTPUT '");
452 }
453 run("$IPTABLES -A $CHAIN_OUTPUT @options -j $target");
454 }
455 }
2a81ab0d
AM
456 }
457 }
458 }
2a81ab0d 459 }
ca4259a7
AM
460 #Reload firewall.local if present
461 if ( -f '/etc/sysconfig/firewall.local'){
462 run("/etc/sysconfig/firewall.local reload");
463 }
2a81ab0d 464}
97ab0569 465
b05ec50a
MT
466# Formats the given timestamp into the iptables format which is "hh:mm" UTC.
467sub format_time {
468 my $val = shift;
469
470 # Convert the given time into minutes.
471 my $minutes = &time_convert_to_minutes($val);
472
473 # Move the timestamp into UTC.
474 $minutes += &time_utc_offset();
475
476 # Make sure $minutes is between 00:00 and 23:59.
477 if ($minutes < 0) {
478 $minutes += 1440;
479 }
480
481 if ($minutes > 1440) {
482 $minutes -= 1440;
483 }
484
485 # Format as hh:mm.
486 return sprintf("%02d:%02d", $minutes / 60, $minutes % 60);
472136c9 487}
97ab0569 488
b05ec50a
MT
489# Calculates the offsets in minutes from the local timezone to UTC.
490sub time_utc_offset {
491 my @localtime = localtime(time);
492 my @gmtime = gmtime(time);
493
494 return ($gmtime[2] * 60 + $gmtime[1] % 60) - ($localtime[2] * 60 + $localtime[1] % 60);
472136c9 495}
97ab0569 496
b05ec50a
MT
497# Takes a timestamp like "14:00" and converts it into minutes since midnight.
498sub time_convert_to_minutes {
499 my ($hrs, $min) = split(":", shift);
500
501 return ($hrs * 60) + $min;
472136c9 502}
97ab0569
MT
503
504sub p2pblock {
766c2f60
MT
505 my $search_action;
506 my $target;
507
508 if ($fwdfwsettings{"POLICY"} eq "MODE1") {
509 $search_action = "on";
510 $target = "ACCEPT";
511 } else {
512 $search_action = "off";
513 $target = "DROP";
514 }
515
516 open(FILE, "<$p2pfile") or die "Unable to read $p2pfile";
517 my @protocols = ();
518 foreach my $p2pentry (<FILE>) {
519 my @p2pline = split(/\;/, $p2pentry);
520 next unless ($p2pline[2] eq $search_action);
521
522 push(@protocols, "--$p2pline[1]");
36196d0d 523 }
766c2f60 524 close(FILE);
68d1eb10 525
766c2f60
MT
526 if (@protocols) {
527 run("$IPTABLES -A FORWARDFW -m ipp2p @protocols -j $target");
36196d0d
AM
528 }
529}
97ab0569 530
8f4f4634
MT
531sub get_protocols {
532 my $hash = shift;
533 my $key = shift;
534
535 my $uses_source_ports = ($$hash{$key}[7] eq "ON");
536 my $uses_services = ($$hash{$key}[11] eq "ON");
537
538 my @protocols = ();
539
540 # Rules which don't have source ports or services (like ICMP, ESP, ...).
541 if (!$uses_source_ports && !$uses_services) {
542 push(@protocols, $$hash{$key}[8]);
543
544 # Rules which either use ports or services.
545 } elsif ($uses_source_ports || $uses_services) {
546 # Check if service group or service
547 if ($$hash{$key}[14] eq 'cust_srv') {
548 push(@protocols, &fwlib::get_srv_prot($$hash{$key}[15]));
549
550 } elsif($$hash{$key}[14] eq 'cust_srvgrp'){
551 my $protos = &fwlib::get_srvgrp_prot($$hash{$key}[15]);
552 push(@protocols, split(",", $protos));
553
554 } else {
555 # Fetch the protocol for this rule.
556 my $protocol = lc($$hash{$key}[8]);
557
558 # Fetch source and destination ports for this rule.
559 my $source_ports = $$hash{$key}[10];
560 my $destination_ports = $$hash{$key}[15];
561
562 # Check if ports are set for protocols which do not support ports.
563 if (!($protocol ~~ @PROTOCOLS_WITH_PORTS) && ($source_ports || $destination_ports)) {
564 print_error("$protocol does not support ports");
565 return ();
566 }
567
568 push(@protocols, $protocol);
2a81ab0d
AM
569 }
570 }
8f4f4634
MT
571
572 # Remove all empty elements
573 @protocols = map { $_ ? $_ : () } @protocols;
574
575 # If no protocol has been defined, we assume "all".
576 if (!@protocols) {
577 push(@protocols, "all");
98cee89f 578 }
8f4f4634
MT
579
580 # Make all protocol names lowercase.
581 @protocols = map { lc } @protocols;
582
583 return @protocols;
2a81ab0d 584}
97ab0569 585
8f4f4634
MT
586sub get_protocol_options {
587 my $hash = shift;
588 my $key = shift;
589 my $protocol = shift;
d7a14d01 590 my $nat_options_wanted = shift;
8f4f4634
MT
591 my @options = ();
592
d7a14d01
MT
593 # Nothing to do if no protocol is specified.
594 if ($protocol eq "all") {
595 return @options;
596 } else {
597 push(@options, ("-p", $protocol));
598 }
599
fcc68a42
MT
600 if ($protocol ~~ @PROTOCOLS_WITH_PORTS) {
601 # Process source ports.
602 my $use_src_ports = ($$hash{$key}[7] eq "ON");
603 my $src_ports = $$hash{$key}[10];
8f4f4634 604
fcc68a42
MT
605 if ($use_src_ports && $src_ports) {
606 push(@options, &format_ports($src_ports, "src"));
607 }
8f4f4634 608
fcc68a42
MT
609 # Process destination ports.
610 my $use_dst_ports = ($$hash{$key}[11] eq "ON");
611 my $use_dnat = (($$hash{$key}[28] eq "ON") && ($$hash{$key}[31] eq "dnat"));
8f4f4634 612
fcc68a42
MT
613 if ($use_dst_ports) {
614 my $dst_ports_mode = $$hash{$key}[14];
615 my $dst_ports = $$hash{$key}[15];
8f4f4634 616
fcc68a42
MT
617 if (($dst_ports_mode eq "TGT_PORT") && $dst_ports) {
618 if ($nat_options_wanted && $use_dnat && $$hash{$key}[30]) {
619 $dst_ports = $$hash{$key}[30];
620 }
8f4f4634 621 push(@options, &format_ports($dst_ports, "dst"));
8f4f4634 622
fcc68a42
MT
623 } elsif ($dst_ports_mode eq "cust_srv") {
624 if ($protocol eq "ICMP") {
625 push(@options, ("--icmp-type", &fwlib::get_srv_port($dst_ports, 3, "ICMP")));
626 } else {
627 $dst_ports = &fwlib::get_srv_port($dst_ports, 1, uc($protocol));
628 push(@options, &format_ports($dst_ports, "dst"));
629 }
630
631 } elsif ($dst_ports_mode eq "cust_srvgrp") {
632 push(@options, &fwlib::get_srvgrp_port($dst_ports, uc($protocol)));
633 }
2a81ab0d
AM
634 }
635 }
8f4f4634
MT
636
637 # Check if a single ICMP type is selected.
fcc68a42 638 if ($protocol eq "icmp") {
8f4f4634
MT
639 my $icmp_type = $$hash{$key}[9];
640
641 if (($icmp_type ne "All ICMP-Types") && $icmp_type) {
642 push(@options, ("--icmp-type", $icmp_type));
a4c7bf6b
AM
643 }
644 }
8f4f4634
MT
645
646 return @options;
647}
648
649sub format_ports {
650 my $ports = shift;
651 my $type = shift;
652
653 my $arg;
654 if ($type eq "src") {
655 $arg = "--sport";
656 } elsif ($type eq "dst") {
657 $arg = "--dport";
658 }
659
660 my @options = ();
661
662 if ($ports =~ /\|/) {
663 $ports =~ s/\|/,/g;
664 push(@options, ("-m", "multiport"));
665 }
666
1c3044d7
MT
667 if ($ports) {
668 push(@options, ($arg, $ports));
669 }
8f4f4634
MT
670
671 return @options;
672}
673
674sub get_dnat_target_port {
675 my $hash = shift;
676 my $key = shift;
677
678 if ($$hash{$key}[14] eq "TGT_PORT") {
1c3044d7
MT
679 my $port = $$hash{$key}[15];
680 my $external_port = $$hash{$key}[30];
681
682 if ($external_port && ($port ne $external_port)) {
683 return $$hash{$key}[15];
684 }
8f4f4634 685 }
2a81ab0d 686}
6e87f0aa
MT
687
688sub add_dnat_mangle_rules {
689 my $nat_address = shift;
690 my @options = @_;
691
692 my $mark = 0;
693 foreach my $zone ("GREEN", "BLUE", "ORANGE") {
694 $mark++;
695
696 # Skip rule if not all required information exists.
697 next unless (exists $defaultNetworks{$zone . "_NETADDRESS"});
698 next unless (exists $defaultNetworks{$zone . "_NETMASK"});
699
700 my @mangle_options = @options;
701
702 my $netaddress = $defaultNetworks{$zone . "_NETADDRESS"};
703 $netaddress .= "/" . $defaultNetworks{$zone . "_NETMASK"};
704
705 push(@mangle_options, ("-s", $netaddress, "-d", $nat_address));
706 push(@mangle_options, ("-j", "MARK", "--set-mark", $mark));
707
708 run("$IPTABLES -t mangle -A $CHAIN_MANGLE_NAT_DESTINATION_FIX @mangle_options");
709 }
710}
3bb4bb3f
MT
711
712sub make_log_limit_options {
713 my @options = ("-m", "limit");
714
715 # Maybe we should get this from the configuration.
716 my $limit = 10;
717
718 # We limit log messages to $limit messages per minute.
719 push(@options, ("--limit", "$limit/min"));
720
721 # And we allow bursts of 2x $limit.
722 push(@options, ("--limit-burst", $limit * 2));
723
724 return @options;
725}
e9b5ba41 726
da7a2208
MT
727sub firewall_is_in_subnet {
728 my $subnet = shift;
5cf8c8c1 729
e9b5ba41
MT
730 # ORANGE is missing here, because nothing may ever access
731 # the firewall from this network.
4e54e3c6 732 my $address = &fwlib::get_internal_firewall_ip_address($subnet, 0);
e9b5ba41 733
da7a2208
MT
734 if ($address) {
735 return 1;
e9b5ba41 736 }
da7a2208
MT
737
738 return 0;
e9b5ba41 739}