]> git.ipfire.org Git - ipfire-2.x.git/blame - config/firewall/rules.pl
ipblocklist: Add "v4" as extension to the ipset set names.
[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 #
2293e1de 5# Copyright (C) 2007-2020 IPFire Team <info@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;
5653e551 23use experimental 'smartmatch';
2a81ab0d 24
97ab0569
MT
25require '/var/ipfire/general-functions.pl';
26require "${General::swroot}/lang.pl";
27require "/usr/lib/firewall/firewall-lib.pl";
5730a5bc 28require "${General::swroot}/location-functions.pl";
a7bf1d96 29require "${General::swroot}/ipblocklist-functions.pl";
2a81ab0d 30
68d1eb10
MT
31# Set to one to enable debugging mode.
32my $DEBUG = 0;
33
1f9e7b53 34my $IPTABLES = "iptables --wait";
3d886880 35my $IPSET = "ipset";
1f9e7b53 36
6178953b 37# iptables chains
8f4f4634
MT
38my $CHAIN_INPUT = "INPUTFW";
39my $CHAIN_FORWARD = "FORWARDFW";
d98aa95a 40my $CHAIN_OUTPUT = "OUTGOINGFW";
8f4f4634 41my $CHAIN = $CHAIN_FORWARD;
6178953b
MT
42my $CHAIN_NAT_SOURCE = "NAT_SOURCE";
43my $CHAIN_NAT_DESTINATION = "NAT_DESTINATION";
6e87f0aa 44my $CHAIN_MANGLE_NAT_DESTINATION_FIX = "NAT_DESTINATION";
8f4f4634 45my @VALID_CHAINS = ($CHAIN_INPUT, $CHAIN_FORWARD, $CHAIN_OUTPUT);
c2a1af75 46my @ANY_ADDRESSES = ("0.0.0.0/0.0.0.0", "0.0.0.0/0", "0/0");
8f4f4634
MT
47
48my @PROTOCOLS = ("tcp", "udp", "icmp", "igmp", "ah", "esp", "gre", "ipv6", "ipip");
49my @PROTOCOLS_WITH_PORTS = ("tcp", "udp");
50
51my @VALID_TARGETS = ("ACCEPT", "DROP", "REJECT");
6178953b 52
c69c8200
MT
53my @PRIVATE_NETWORKS = (
54 "10.0.0.0/8",
55 "172.16.0.0/12",
56 "192.168.0.0/16",
57 "100.64.0.0/10",
58);
59
ce31144c
MT
60# MARK masks
61my $NAT_MASK = 0x0f000000;
62
7b529f54
SS
63# Country code, which is used to mark hostile networks.
64my $HOSTILE_CCODE = "XD";
65
2a81ab0d 66my %fwdfwsettings=();
aa5f4b65 67my %fwoptions = ();
2a81ab0d 68my %defaultNetworks=();
8f4f4634 69my %configfwdfw=();;
2a81ab0d 70my %customgrp=();
2a81ab0d 71my %configinputfw=();
5d7faa45 72my %configoutgoingfw=();
a6edca5a 73my %confignatfw=();
5730a5bc
SS
74my %locationsettings = (
75 "LOCATIONBLOCK_ENABLED" => "off"
f5ad4246 76);
a7bf1d96
SS
77my %blocklistsettings= (
78 "ENABLE" => "off",
79);
80
2801213d
SS
81my %ipset_loaded_sets = ();
82my @ipset_used_sets = ();
f5ad4246 83
6d8eb5de
AM
84my $configfwdfw = "${General::swroot}/firewall/config";
85my $configinput = "${General::swroot}/firewall/input";
86my $configoutgoing = "${General::swroot}/firewall/outgoing";
5730a5bc 87my $locationfile = "${General::swroot}/firewall/locationblock";
2a81ab0d 88my $configgrp = "${General::swroot}/fwhosts/customgroups";
210ee67b 89my $netsettings = "${General::swroot}/ethernet/settings";
a7bf1d96 90my $blocklistfile = "${General::swroot}/ipblocklist/settings";
86a921ee 91
6d8eb5de 92&General::readhash("${General::swroot}/firewall/settings", \%fwdfwsettings);
aa5f4b65 93&General::readhash("${General::swroot}/optionsfw/settings", \%fwoptions);
210ee67b 94&General::readhash("$netsettings", \%defaultNetworks);
2a81ab0d
AM
95&General::readhasharray($configfwdfw, \%configfwdfw);
96&General::readhasharray($configinput, \%configinputfw);
5d7faa45 97&General::readhasharray($configoutgoing, \%configoutgoingfw);
2a81ab0d 98&General::readhasharray($configgrp, \%customgrp);
2a81ab0d 99
5730a5bc
SS
100# Check if the location settings file exists
101if (-e "$locationfile") {
f5ad4246 102 # Read settings file
5730a5bc 103 &General::readhash("$locationfile", \%locationsettings);
f5ad4246
SS
104}
105
a7bf1d96
SS
106# Check if the ipblocklist settings file exits.
107if (-e "$blocklistfile") {
108 # Read-in settings file.
109 &General::readhash("$blocklistfile", \%blocklistsettings);
110}
111
5730a5bc
SS
112# Get all available locations.
113my @locations = &Location::Functions::get_locations();
f5ad4246 114
a7bf1d96
SS
115# Get all supported blocklists.
116my @blocklists = &IPblocklist::get_blocklists();
117
7b529f54
SS
118# Name or the RED interface.
119my $RED_DEV = &General::get_red_interface();
120
3bb4bb3f
MT
121my @log_limit_options = &make_log_limit_options();
122
aa5f4b65
MT
123my $POLICY_INPUT_ALLOWED = 0;
124my $POLICY_FORWARD_ALLOWED = ($fwdfwsettings{"POLICY"} eq "MODE2");
125my $POLICY_OUTPUT_ALLOWED = ($fwdfwsettings{"POLICY1"} eq "MODE2");
126
127my $POLICY_INPUT_ACTION = $fwoptions{"FWPOLICY2"};
128my $POLICY_FORWARD_ACTION = $fwoptions{"FWPOLICY"};
129my $POLICY_OUTPUT_ACTION = $fwoptions{"FWPOLICY1"};
130
0564b0c7
SS
131#workaround to suppress a warning when a variable is used only once
132my @dummy = ( $Location::Functions::ipset_db_directory );
133undef (@dummy);
134
8531b94a
MT
135# MAIN
136&main();
137
138sub main {
2801213d 139 # Get currently used ipset sets.
8b97a537 140 @ipset_used_sets = &ipset_get_sets();
2801213d 141
8531b94a
MT
142 # Flush all chains.
143 &flush();
144
2d0c7a9f
AM
145 # Prepare firewall rules.
146 if (! -z "${General::swroot}/firewall/input"){
147 &buildrules(\%configinputfw);
148 }
149 if (! -z "${General::swroot}/firewall/outgoing"){
150 &buildrules(\%configoutgoingfw);
151 }
152 if (! -z "${General::swroot}/firewall/config"){
153 &buildrules(\%configfwdfw);
154 }
8531b94a 155
5730a5bc
SS
156 # Load Location block rules.
157 &locationblock();
211694e5 158
7b529f54
SS
159 # Load rules to block hostile networks.
160 &drop_hostile_networks();
161
a7bf1d96
SS
162 # Handle ipblocklist.
163 &ipblocklist();
164
8531b94a
MT
165 # Reload firewall policy.
166 run("/usr/sbin/firewall-policy");
2d0c7a9f 167
2801213d
SS
168 # Cleanup not longer needed ipset sets.
169 &ipset_cleanup();
170
2d0c7a9f
AM
171 #Reload firewall.local if present
172 if ( -f '/etc/sysconfig/firewall.local'){
173 run("/etc/sysconfig/firewall.local reload");
174 }
2a81ab0d 175}
97ab0569 176
68d1eb10
MT
177sub run {
178 # Executes or prints the given shell command.
179 my $command = shift;
180
181 if ($DEBUG) {
182 print "$command\n";
183 } else {
184 system "$command";
6e87f0aa
MT
185
186 if ($?) {
187 print_error("ERROR: $command");
188 }
68d1eb10
MT
189 }
190}
191
6178953b
MT
192sub print_error {
193 my $message = shift;
194
195 print STDERR "$message\n";
196}
197
8f4f4634
MT
198sub print_rule {
199 my $hash = shift;
200
201 print "\nRULE:";
202
203 my $i = 0;
204 foreach (@$hash) {
205 printf(" %2d: %s", $i++, $_);
206 }
207 print "\n";
208}
209
791c2b45
MT
210sub count_elements {
211 my $hash = shift;
212
213 return scalar @$hash;
214}
215
97ab0569 216sub flush {
d98aa95a
MT
217 run("$IPTABLES -F $CHAIN_INPUT");
218 run("$IPTABLES -F $CHAIN_FORWARD");
219 run("$IPTABLES -F $CHAIN_OUTPUT");
220 run("$IPTABLES -t nat -F $CHAIN_NAT_SOURCE");
221 run("$IPTABLES -t nat -F $CHAIN_NAT_DESTINATION");
6e87f0aa 222 run("$IPTABLES -t mangle -F $CHAIN_MANGLE_NAT_DESTINATION_FIX");
86a921ee 223}
97ab0569 224
97ab0569 225sub buildrules {
8f4f4634
MT
226 my $hash = shift;
227
aa5f4b65
MT
228 # Search for targets that need to be specially handled when adding
229 # forwarding rules. Additional rules will automatically get inserted
230 # into the INPUT/OUTPUT chains for these targets.
231 my @special_input_targets = ();
232 if (!$POLICY_FORWARD_ALLOWED) {
233 push(@special_input_targets, "ACCEPT");
234 }
235
236 if ($POLICY_INPUT_ACTION eq "DROP") {
ae93dd3d 237 push(@special_input_targets, ("ACCEPT", "REJECT"));
aa5f4b65 238 } elsif ($POLICY_INPUT_ACTION eq "REJECT") {
ae93dd3d 239 push(@special_input_targets, ("ACCEPT", "DROP"));
aa5f4b65
MT
240 }
241
242 my @special_output_targets = ();
243 if ($POLICY_OUTPUT_ALLOWED) {
244 push(@special_output_targets, ("DROP", "REJECT"));
245 } else {
246 push(@special_output_targets, "ACCEPT");
247
248 if ($POLICY_OUTPUT_ACTION eq "DROP") {
ae93dd3d 249 push(@special_output_targets, ("ACCEPT", "REJECT"));
aa5f4b65 250 } elsif ($POLICY_OUTPUT_ACTION eq "REJECT") {
ae93dd3d 251 push(@special_output_targets, ("ACCEPT", "DROP"));
aa5f4b65
MT
252 }
253 }
254
8f4f4634
MT
255 foreach my $key (sort {$a <=> $b} keys %$hash) {
256 # Skip disabled rules.
257 next unless ($$hash{$key}[2] eq 'ON');
258
791c2b45
MT
259 # Count number of elements in this line
260 my $elements = &count_elements($$hash{$key});
261
8f4f4634
MT
262 if ($DEBUG) {
263 print_rule($$hash{$key});
264 }
265
266 # Check if the target is valid.
267 my $target = $$hash{$key}[0];
268 if (!$target ~~ @VALID_TARGETS) {
269 print_error("Invalid target '$target' for rule $key");
270 next;
271 }
272
273 # Check if the chain is valid.
274 my $chain = $$hash{$key}[1];
275 if (!$chain ~~ @VALID_CHAINS) {
276 print_error("Invalid chain '$chain' in rule $key");
277 next;
278 }
279
280 # Collect all sources.
4e54e3c6 281 my @sources = &fwlib::get_addresses($hash, $key, "src");
8f4f4634
MT
282
283 # Collect all destinations.
4e54e3c6 284 my @destinations = &fwlib::get_addresses($hash, $key, "tgt");
6178953b 285
c0ce9206
MT
286 # True if the destination is the firewall itself.
287 my $destination_is_firewall = ($$hash{$key}[5] eq "ipfire");
288
6178953b 289 # Check if logging should be enabled.
8f4f4634 290 my $LOG = ($$hash{$key}[17] eq 'ON');
6178953b 291
8f4f4634
MT
292 # Check if NAT is enabled and initialize variables, that we use for that.
293 my $NAT = ($$hash{$key}[28] eq 'ON');
6178953b 294 my $NAT_MODE;
8f4f4634
MT
295 if ($NAT) {
296 $NAT_MODE = uc($$hash{$key}[31]);
297 }
6178953b 298
8f4f4634
MT
299 # Set up time constraints.
300 my @time_options = ();
301 if ($$hash{$key}[18] eq 'ON') {
302 push(@time_options, ("-m", "time"));
6178953b 303
8f4f4634
MT
304 # Select all days of the week this match is active.
305 my @weekdays = ();
306 if ($$hash{$key}[19] ne '') {
307 push (@weekdays, "Mon");
308 }
309 if ($$hash{$key}[20] ne '') {
310 push (@weekdays, "Tue");
311 }
312 if ($$hash{$key}[21] ne '') {
313 push (@weekdays, "Wed");
314 }
315 if ($$hash{$key}[22] ne '') {
316 push (@weekdays, "Thu");
317 }
318 if ($$hash{$key}[23] ne '') {
319 push (@weekdays, "Fri");
320 }
321 if ($$hash{$key}[24] ne '') {
322 push (@weekdays, "Sat");
323 }
324 if ($$hash{$key}[25] ne '') {
325 push (@weekdays, "Sun");
326 }
327 if (@weekdays) {
328 push(@time_options, ("--weekdays", join(",", @weekdays)));
329 }
6178953b 330
8f4f4634
MT
331 # Convert start time.
332 my $time_start = &format_time($$hash{$key}[26]);
333 if ($time_start) {
334 push(@time_options, ("--timestart", $time_start));
a6edca5a 335 }
6178953b 336
8f4f4634
MT
337 # Convert end time.
338 my $time_stop = &format_time($$hash{$key}[27]);
339 if ($time_stop) {
340 push(@time_options, ("--timestop", $time_stop));
341 }
a6edca5a 342 }
6178953b 343
d2793ea8
AM
344 # Concurrent connection limit
345 my @ratelimit_options = ();
791c2b45 346
d840d02a 347 if (($elements ge 34) && ($$hash{$key}[32] eq 'ON')) {
d2793ea8
AM
348 my $conn_limit = $$hash{$key}[33];
349
350 if ($conn_limit ge 1) {
351 push(@ratelimit_options, ("-m", "connlimit"));
352
353 # Use the the entire source IP address
354 push(@ratelimit_options, "--connlimit-saddr");
355 push(@ratelimit_options, ("--connlimit-mask", "32"));
356
357 # Apply the limit
358 push(@ratelimit_options, ("--connlimit-upto", $conn_limit));
359 }
360 }
361
362 # Ratelimit
d840d02a 363 if (($elements ge 37) && ($$hash{$key}[34] eq 'ON')) {
d2793ea8
AM
364 my $rate_limit = "$$hash{$key}[35]/$$hash{$key}[36]";
365
d840d02a
MT
366 if ($rate_limit) {
367 push(@ratelimit_options, ("-m", "limit"));
368 push(@ratelimit_options, ("--limit", $rate_limit));
369 }
d2793ea8
AM
370 }
371
8f4f4634
MT
372 # Check which protocols are used in this rule and so that we can
373 # later group rules by protocols.
374 my @protocols = &get_protocols($hash, $key);
375 if (!@protocols) {
376 print_error("Invalid protocol configuration for rule $key");
377 next;
378 }
379
380 foreach my $protocol (@protocols) {
381 # Check if the given protocol is supported.
382 if (($protocol ne "all") && (!$protocol ~~ @PROTOCOLS)) {
383 print_error("Protocol $protocol is not supported (rule $key)");
384 next;
2a81ab0d 385 }
8f4f4634
MT
386
387 # Prepare protocol options (like ICMP types, ports, etc...).
d7a14d01 388 my @protocol_options = &get_protocol_options($hash, $key, $protocol, 0);
8f4f4634
MT
389
390 # Check if this protocol knows ports.
391 my $protocol_has_ports = ($protocol ~~ @PROTOCOLS_WITH_PORTS);
392
02574191
MT
393 foreach my $src (@sources) {
394 # Skip invalid source.
4e9a2b57 395 next unless (defined $src);
02574191 396 next unless ($src);
8f4f4634 397
02574191 398 # Sanitize source.
48f07c19 399 my $source = @$src[0];
02574191
MT
400 if ($source ~~ @ANY_ADDRESSES) {
401 $source = "";
402 }
403
48f07c19
AM
404 my $source_intf = @$src[1];
405
02574191
MT
406 foreach my $dst (@destinations) {
407 # Skip invalid rules.
4e9a2b57 408 next unless (defined $dst);
02574191 409 next if (!$dst || ($dst eq "none"));
c2a1af75
MT
410
411 # Sanitize destination.
48f07c19 412 my $destination = @$dst[0];
c2a1af75
MT
413 if ($destination ~~ @ANY_ADDRESSES) {
414 $destination = "";
415 }
416
48f07c19
AM
417 my $destination_intf = @$dst[1];
418
8f4f4634
MT
419 # Array with iptables arguments.
420 my @options = ();
421
422 # Append protocol.
423 if ($protocol ne "all") {
8f4f4634 424 push(@options, @protocol_options);
2a81ab0d 425 }
8f4f4634 426
6e87f0aa
MT
427 # Prepare source options.
428 my @source_options = ();
8f4f4634 429 if ($source =~ /mac/) {
6e87f0aa 430 push(@source_options, $source);
07106467 431 } elsif ($source =~ /-m set/) {
abf148ce
SS
432 # Split given arguments into single chunks to
433 # obtain the set name.
434 my ($a, $b, $c, $loc_src, $e) = split(/ /, $source);
07106467 435
bae9b5dc
SS
436 # Call function to load the networks list for this country.
437 &ipset_restore($loc_src);
07106467 438
b9ca2fa6
AM
439 push(@source_options, $source);
440 } elsif($source) {
6e87f0aa 441 push(@source_options, ("-s", $source));
2a81ab0d 442 }
14f7cb87 443
6e87f0aa 444 # Prepare destination options.
c2a1af75 445 my @destination_options = ();
07106467 446 if ($destination =~ /-m set/) {
abf148ce
SS
447 # Split given arguments into single chunks to
448 # obtain the set name.
449 my ($a, $b, $c, $loc_dst, $e) = split(/ /, $destination);
07106467 450
bae9b5dc
SS
451 # Call function to load the networks list for this country.
452 &ipset_restore($loc_dst);
07106467 453
b9ca2fa6
AM
454 push(@destination_options, $destination);
455 } elsif ($destination) {
c2a1af75
MT
456 push(@destination_options, ("-d", $destination));
457 }
14f7cb87 458
249839b0
MT
459 # Add source and destination interface to the filter rules.
460 # These are supposed to help filtering forged packets that originate
461 # from BLUE with an IP address from GREEN for instance.
462 my @source_intf_options = ();
463 if ($source_intf) {
464 push(@source_intf_options, ("-i", $source_intf));
465 }
466
467 my @destination_intf_options = ();
468 if ($destination_intf) {
469 push(@destination_intf_options, ("-o", $destination_intf));
470 }
471
8f4f4634
MT
472 # Add time constraint options.
473 push(@options, @time_options);
14f7cb87 474
d2793ea8
AM
475 # Add ratelimiting option
476 push(@options, @ratelimit_options);
477
aa5f4b65 478 my $firewall_is_in_source_subnet = 1;
e9b5ba41 479 if ($source) {
da7a2208 480 $firewall_is_in_source_subnet = &firewall_is_in_subnet($source);
e9b5ba41
MT
481 }
482
aa5f4b65
MT
483 my $firewall_is_in_destination_subnet = 1;
484 if ($destination) {
485 $firewall_is_in_destination_subnet = &firewall_is_in_subnet($destination);
486 }
487
8f4f4634
MT
488 # Process NAT rules.
489 if ($NAT) {
4e54e3c6 490 my $nat_address = &fwlib::get_nat_address($$hash{$key}[29], $source);
b05ec50a 491
8f4f4634
MT
492 # Skip NAT rules if the NAT address is unknown
493 # (i.e. no internet connection has been established, yet).
494 next unless ($nat_address);
b05ec50a 495
8f4f4634
MT
496 # Destination NAT
497 if ($NAT_MODE eq "DNAT") {
d7a14d01
MT
498 my @nat_options = ();
499 if ($protocol ne "all") {
500 my @nat_protocol_options = &get_protocol_options($hash, $key, $protocol, 1);
501 push(@nat_options, @nat_protocol_options);
502 }
21b37391
SS
503
504 # Add time options.
ff7cb6d6
MT
505 push(@nat_options, @time_options);
506
21b37391
SS
507 # Determine if a REDIRECT rule should be created.
508 my $use_redirect = ($destination_is_firewall && !$destination && $protocol_has_ports);
509
ff7cb6d6 510 # Make port-forwardings useable from the internal networks.
21b37391
SS
511 if (!$use_redirect) {
512 my @internal_addresses = &fwlib::get_internal_firewall_ip_addresses(1);
513 unless ($nat_address ~~ @internal_addresses) {
514 &add_dnat_mangle_rules($nat_address, $source_intf, @nat_options);
515 }
ff7cb6d6
MT
516 }
517
21b37391 518 # Add source options.
6e87f0aa 519 push(@nat_options, @source_options);
21b37391
SS
520
521 # Add NAT address.
522 if (!$use_redirect) {
523 push(@nat_options, ("-d", $nat_address));
524 }
6e87f0aa 525
c0ce9206 526 my $dnat_port;
8f4f4634 527 if ($protocol_has_ports) {
c0ce9206
MT
528 $dnat_port = &get_dnat_target_port($hash, $key);
529 }
530
531 my @nat_action_options = ();
b05ec50a 532
c0ce9206 533 # Use iptables REDIRECT
c0ce9206 534 if ($use_redirect) {
21b37391
SS
535 push(@nat_action_options, ("-j", "REDIRECT"));
536
537 # Redirect to specified port if one has given.
538 if ($dnat_port) {
539 push(@nat_action_options, ("--to-ports", $dnat_port));
540 }
c0ce9206
MT
541
542 # Use iptables DNAT
543 } else {
f98bb538
MT
544 if ($destination_is_firewall && !$destination) {
545 $destination = &fwlib::get_external_address();
546 }
547 next unless ($destination);
548
c0ce9206
MT
549 my ($dnat_address, $dnat_mask) = split("/", $destination);
550 @destination_options = ("-d", $dnat_address);
551
552 if ($protocol_has_ports) {
553 my $dnat_port = &get_dnat_target_port($hash, $key);
554
555 if ($dnat_port) {
556 $dnat_address .= ":$dnat_port";
557 }
86a921ee 558 }
c0ce9206
MT
559
560 push(@nat_action_options, ("-j", "DNAT", "--to-destination", $dnat_address));
2a81ab0d 561 }
8f4f4634
MT
562
563 if ($LOG) {
3bb4bb3f 564 run("$IPTABLES -t nat -A $CHAIN_NAT_DESTINATION @nat_options @log_limit_options -j LOG --log-prefix 'DNAT '");
8f4f4634 565 }
c0ce9206 566 run("$IPTABLES -t nat -A $CHAIN_NAT_DESTINATION @nat_options @nat_action_options");
8f4f4634
MT
567
568 # Source NAT
569 } elsif ($NAT_MODE eq "SNAT") {
c4b7692a 570 my @snat_options = ( "-m", "policy", "--dir", "out", "--pol", "none" );
6e87f0aa
MT
571 my @nat_options = @options;
572
c4b7692a
SS
573 # Get addresses for the configured firewall interfaces.
574 my @local_addresses = &fwlib::get_internal_firewall_ip_addresses(1);
575
576 # Check if the nat_address is one of the local addresses.
577 foreach my $local_address (@local_addresses) {
578 if ($nat_address eq $local_address) {
579 # Clear SNAT options.
580 @snat_options = ();
581
582 # Finish loop.
583 last;
584 }
585 }
586
249839b0 587 push(@nat_options, @destination_intf_options);
6e87f0aa
MT
588 push(@nat_options, @source_options);
589 push(@nat_options, @destination_options);
590
8f4f4634 591 if ($LOG) {
c4b7692a 592 run("$IPTABLES -t nat -A $CHAIN_NAT_SOURCE @nat_options @snat_options @log_limit_options -j LOG --log-prefix 'SNAT '");
8f4f4634 593 }
c4b7692a 594 run("$IPTABLES -t nat -A $CHAIN_NAT_SOURCE @nat_options @snat_options -j SNAT --to-source $nat_address");
2a81ab0d
AM
595 }
596 }
8f4f4634 597
6e87f0aa
MT
598 push(@options, @source_options);
599 push(@options, @destination_options);
600
8f4f4634 601 # Insert firewall rule.
c22369a9 602 if ($LOG) {
249839b0 603 run("$IPTABLES -A $chain @options @source_intf_options @destination_intf_options @log_limit_options -j LOG --log-prefix '$chain '");
8f4f4634 604 }
249839b0 605 run("$IPTABLES -A $chain @options @source_intf_options @destination_intf_options -j $target");
aa5f4b65
MT
606
607 # Handle forwarding rules and add corresponding rules for firewall access.
608 if ($chain eq $CHAIN_FORWARD) {
609 # If the firewall is part of the destination subnet and access to the destination network
610 # is granted/forbidden for any network that the firewall itself is part of, we grant/forbid access
611 # for the firewall, too.
612 if ($firewall_is_in_destination_subnet && ($target ~~ @special_input_targets)) {
c22369a9 613 if ($LOG) {
249839b0 614 run("$IPTABLES -A $CHAIN_INPUT @options @source_intf_options @log_limit_options -j LOG --log-prefix '$CHAIN_INPUT '");
aa5f4b65 615 }
249839b0 616 run("$IPTABLES -A $CHAIN_INPUT @options @source_intf_options -j $target");
aa5f4b65
MT
617 }
618
619 # Likewise.
620 if ($firewall_is_in_source_subnet && ($target ~~ @special_output_targets)) {
c22369a9 621 if ($LOG) {
249839b0 622 run("$IPTABLES -A $CHAIN_OUTPUT @options @destination_intf_options @log_limit_options -j LOG --log-prefix '$CHAIN_OUTPUT '");
aa5f4b65 623 }
249839b0 624 run("$IPTABLES -A $CHAIN_OUTPUT @options @destination_intf_options -j $target");
aa5f4b65
MT
625 }
626 }
2a81ab0d
AM
627 }
628 }
629 }
2a81ab0d
AM
630 }
631}
97ab0569 632
b05ec50a
MT
633# Formats the given timestamp into the iptables format which is "hh:mm" UTC.
634sub format_time {
635 my $val = shift;
636
637 # Convert the given time into minutes.
638 my $minutes = &time_convert_to_minutes($val);
639
640 # Move the timestamp into UTC.
641 $minutes += &time_utc_offset();
642
643 # Make sure $minutes is between 00:00 and 23:59.
644 if ($minutes < 0) {
645 $minutes += 1440;
646 }
647
648 if ($minutes > 1440) {
649 $minutes -= 1440;
650 }
651
652 # Format as hh:mm.
653 return sprintf("%02d:%02d", $minutes / 60, $minutes % 60);
472136c9 654}
97ab0569 655
b05ec50a
MT
656# Calculates the offsets in minutes from the local timezone to UTC.
657sub time_utc_offset {
658 my @localtime = localtime(time);
659 my @gmtime = gmtime(time);
660
661 return ($gmtime[2] * 60 + $gmtime[1] % 60) - ($localtime[2] * 60 + $localtime[1] % 60);
472136c9 662}
97ab0569 663
b05ec50a
MT
664# Takes a timestamp like "14:00" and converts it into minutes since midnight.
665sub time_convert_to_minutes {
666 my ($hrs, $min) = split(":", shift);
667
668 return ($hrs * 60) + $min;
472136c9 669}
97ab0569 670
5730a5bc 671sub locationblock {
2801213d
SS
672 # Flush LOCATIONBLOCK chain.
673 run("$IPTABLES -F LOCATIONBLOCK");
211694e5 674
5730a5bc
SS
675 # If location blocking is not enabled, we are finished here.
676 if ($locationsettings{'LOCATIONBLOCK_ENABLED'} ne "on") {
211694e5
SS
677 # Exit submodule. Process remaining script.
678 return;
679 }
680
2293e1de
PM
681 # Only check the RED interface, which is ppp0 in case of RED_TYPE being
682 # set to "PPPOE", and red0 in case of RED_TYPE not being empty otherwise.
683 if ($defaultNetworks{'RED_TYPE'} eq "PPPOE") {
684 run("$IPTABLES -A LOCATIONBLOCK ! -i ppp0 -j RETURN");
685 } elsif ($defaultNetworks{'RED_DEV'} ne "") {
c69c8200
MT
686 run("$IPTABLES -A LOCATIONBLOCK ! -i $defaultNetworks{'RED_DEV'} -j RETURN");
687 }
688
689 # Do not check any private address space
690 foreach my $network (@PRIVATE_NETWORKS) {
691 run("$IPTABLES -A LOCATIONBLOCK -s $network -j RETURN");
692 }
693
5730a5bc
SS
694 # Loop through all supported locations and
695 # create iptables rules, if blocking for this country
211694e5
SS
696 # is enabled.
697 foreach my $location (@locations) {
5730a5bc 698 if(exists $locationsettings{$location} && $locationsettings{$location} eq "on") {
bae9b5dc
SS
699 # Call function to load the networks list for this country.
700 &ipset_restore($location);
0df1d268
SS
701
702 # Call iptables and create rule to use the loaded ipset list.
2801213d 703 run("$IPTABLES -A LOCATIONBLOCK -m set --match-set $location src -j DROP");
211694e5
SS
704 }
705 }
706}
707
7b529f54
SS
708sub drop_hostile_networks () {
709 # Flush the HOSTILE firewall chain.
710 run("$IPTABLES -F HOSTILE");
711
712 # If dropping hostile networks is not enabled, we are finished here.
713 if ($fwoptions{'DROPHOSTILE'} ne "on") {
714 # Exit function.
715 return;
716 }
717
74659290
SS
718 # Exit if there is no red interface.
719 return unless($RED_DEV);
720
7b529f54
SS
721 # Call function to load the network list of hostile networks.
722 &ipset_restore($HOSTILE_CCODE);
723
e77d960b
MT
724 # Check traffic in incoming/outgoing direction and drop if it matches
725 run("$IPTABLES -A HOSTILE -i $RED_DEV -m set --match-set $HOSTILE_CCODE src -j HOSTILE_DROP");
726 run("$IPTABLES -A HOSTILE -o $RED_DEV -m set --match-set $HOSTILE_CCODE dst -j HOSTILE_DROP");
7b529f54
SS
727}
728
a7bf1d96
SS
729sub ipblocklist () {
730 # Flush the ipblocklist chains.
731 run("$IPTABLES -F BLOCKLISTIN");
732 run("$IPTABLES -F BLOCKLISTOUT");
733
a7bf1d96
SS
734 # Loop through the array of blocklists.
735 foreach my $blocklist (@blocklists) {
aba4e1cd
SS
736 # Check if the blocklist feature and the current processed blocklist is enabled.
737 if(($blocklistsettings{'ENABLE'} eq "on") && ($blocklistsettings{$blocklist}) && ($blocklistsettings{$blocklist} eq "on")) {
738 # Call function to load the blocklist.
739 &ipset_restore($blocklist);
740
741 # Call function to check if the corresponding iptables drop chain already has been created.
742 if(&firewall_chain_exists("${blocklist}_DROP")) {
743 # Create iptables chain.
744 run("$IPTABLES -N ${blocklist}_DROP");
745
746 # Check if logging is enabled.
747 if($blocklistsettings{'LOGGING'} eq "on") {
748 # Create logging rule.
749 run("$IPTABLES -A ${blocklist}_DROP -j LOG -m limit --limit 10/second --log-prefix \"BLKLST_$blocklist\" ");
750 }
a7bf1d96 751
aba4e1cd
SS
752 # Create Drop rule.
753 run("$IPTABLES -A ${blocklist}_DROP -j DROP");
754 }
a7bf1d96 755
aba4e1cd
SS
756 # Add the rules to check against the set
757 run("$IPTABLES -A BLOCKLISTIN -p ALL -i $RED_DEV -m set --match-set $blocklist src -j ${blocklist}_DROP");
758 run("$IPTABLES -A BLOCKLISTOUT -p ALL -o $RED_DEV -m set --match-set $blocklist dst -j ${blocklist}_DROP");
a7bf1d96 759
aba4e1cd
SS
760 # IP blocklist or the blocklist is disabled.
761 } else {
762 # Check if the blocklist related iptables drop chain exits.
763 unless(&firewall_chain_exists("${blocklist}_DROP")) {
764 # Flush the chain.
765 run("$IPTABLES -F ${blocklist}_DROP");
a7bf1d96 766
aba4e1cd
SS
767 # Drop the chain.
768 run("$IPTABLES -X ${blocklist}_DROP");
769 }
770 }
a7bf1d96
SS
771 }
772}
773
8f4f4634
MT
774sub get_protocols {
775 my $hash = shift;
776 my $key = shift;
777
778 my $uses_source_ports = ($$hash{$key}[7] eq "ON");
779 my $uses_services = ($$hash{$key}[11] eq "ON");
780
781 my @protocols = ();
782
783 # Rules which don't have source ports or services (like ICMP, ESP, ...).
784 if (!$uses_source_ports && !$uses_services) {
785 push(@protocols, $$hash{$key}[8]);
786
787 # Rules which either use ports or services.
788 } elsif ($uses_source_ports || $uses_services) {
789 # Check if service group or service
790 if ($$hash{$key}[14] eq 'cust_srv') {
791 push(@protocols, &fwlib::get_srv_prot($$hash{$key}[15]));
792
793 } elsif($$hash{$key}[14] eq 'cust_srvgrp'){
794 my $protos = &fwlib::get_srvgrp_prot($$hash{$key}[15]);
795 push(@protocols, split(",", $protos));
796
797 } else {
798 # Fetch the protocol for this rule.
799 my $protocol = lc($$hash{$key}[8]);
800
801 # Fetch source and destination ports for this rule.
802 my $source_ports = $$hash{$key}[10];
803 my $destination_ports = $$hash{$key}[15];
804
805 # Check if ports are set for protocols which do not support ports.
806 if (!($protocol ~~ @PROTOCOLS_WITH_PORTS) && ($source_ports || $destination_ports)) {
807 print_error("$protocol does not support ports");
808 return ();
809 }
810
811 push(@protocols, $protocol);
2a81ab0d
AM
812 }
813 }
8f4f4634
MT
814
815 # Remove all empty elements
816 @protocols = map { $_ ? $_ : () } @protocols;
817
818 # If no protocol has been defined, we assume "all".
819 if (!@protocols) {
820 push(@protocols, "all");
98cee89f 821 }
8f4f4634
MT
822
823 # Make all protocol names lowercase.
824 @protocols = map { lc } @protocols;
825
826 return @protocols;
2a81ab0d 827}
97ab0569 828
8f4f4634
MT
829sub get_protocol_options {
830 my $hash = shift;
831 my $key = shift;
832 my $protocol = shift;
d7a14d01 833 my $nat_options_wanted = shift;
8f4f4634
MT
834 my @options = ();
835
d7a14d01
MT
836 # Nothing to do if no protocol is specified.
837 if ($protocol eq "all") {
838 return @options;
839 } else {
840 push(@options, ("-p", $protocol));
841 }
842
fcc68a42
MT
843 if ($protocol ~~ @PROTOCOLS_WITH_PORTS) {
844 # Process source ports.
845 my $use_src_ports = ($$hash{$key}[7] eq "ON");
846 my $src_ports = $$hash{$key}[10];
8f4f4634 847
fcc68a42
MT
848 if ($use_src_ports && $src_ports) {
849 push(@options, &format_ports($src_ports, "src"));
850 }
8f4f4634 851
fcc68a42
MT
852 # Process destination ports.
853 my $use_dst_ports = ($$hash{$key}[11] eq "ON");
854 my $use_dnat = (($$hash{$key}[28] eq "ON") && ($$hash{$key}[31] eq "dnat"));
8f4f4634 855
fcc68a42
MT
856 if ($use_dst_ports) {
857 my $dst_ports_mode = $$hash{$key}[14];
858 my $dst_ports = $$hash{$key}[15];
8f4f4634 859
fcc68a42
MT
860 if (($dst_ports_mode eq "TGT_PORT") && $dst_ports) {
861 if ($nat_options_wanted && $use_dnat && $$hash{$key}[30]) {
862 $dst_ports = $$hash{$key}[30];
863 }
8f4f4634 864 push(@options, &format_ports($dst_ports, "dst"));
8f4f4634 865
fcc68a42
MT
866 } elsif ($dst_ports_mode eq "cust_srv") {
867 if ($protocol eq "ICMP") {
868 push(@options, ("--icmp-type", &fwlib::get_srv_port($dst_ports, 3, "ICMP")));
869 } else {
870 $dst_ports = &fwlib::get_srv_port($dst_ports, 1, uc($protocol));
871 push(@options, &format_ports($dst_ports, "dst"));
872 }
873
874 } elsif ($dst_ports_mode eq "cust_srvgrp") {
875 push(@options, &fwlib::get_srvgrp_port($dst_ports, uc($protocol)));
876 }
2a81ab0d
AM
877 }
878 }
8f4f4634
MT
879
880 # Check if a single ICMP type is selected.
fcc68a42 881 if ($protocol eq "icmp") {
8f4f4634
MT
882 my $icmp_type = $$hash{$key}[9];
883
884 if (($icmp_type ne "All ICMP-Types") && $icmp_type) {
885 push(@options, ("--icmp-type", $icmp_type));
a4c7bf6b
AM
886 }
887 }
8f4f4634
MT
888
889 return @options;
890}
891
892sub format_ports {
893 my $ports = shift;
894 my $type = shift;
895
896 my $arg;
897 if ($type eq "src") {
898 $arg = "--sport";
899 } elsif ($type eq "dst") {
900 $arg = "--dport";
901 }
902
903 my @options = ();
904
905 if ($ports =~ /\|/) {
906 $ports =~ s/\|/,/g;
907 push(@options, ("-m", "multiport"));
908 }
909
1c3044d7
MT
910 if ($ports) {
911 push(@options, ($arg, $ports));
912 }
8f4f4634
MT
913
914 return @options;
915}
916
917sub get_dnat_target_port {
918 my $hash = shift;
919 my $key = shift;
920
921 if ($$hash{$key}[14] eq "TGT_PORT") {
1c3044d7
MT
922 my $port = $$hash{$key}[15];
923 my $external_port = $$hash{$key}[30];
924
925 if ($external_port && ($port ne $external_port)) {
926 return $$hash{$key}[15];
927 }
8f4f4634 928 }
2a81ab0d 929}
6e87f0aa
MT
930
931sub add_dnat_mangle_rules {
932 my $nat_address = shift;
48f07c19 933 my $interface = shift;
6e87f0aa
MT
934 my @options = @_;
935
ce31144c 936 my $mark = 0x01000000;
6e87f0aa 937 foreach my $zone ("GREEN", "BLUE", "ORANGE") {
6e87f0aa
MT
938 # Skip rule if not all required information exists.
939 next unless (exists $defaultNetworks{$zone . "_NETADDRESS"});
940 next unless (exists $defaultNetworks{$zone . "_NETMASK"});
941
48f07c19
AM
942 next if ($interface && $interface ne $defaultNetworks{$zone . "_DEV"});
943
6e87f0aa
MT
944 my @mangle_options = @options;
945
946 my $netaddress = $defaultNetworks{$zone . "_NETADDRESS"};
947 $netaddress .= "/" . $defaultNetworks{$zone . "_NETMASK"};
948
949 push(@mangle_options, ("-s", $netaddress, "-d", $nat_address));
ce31144c 950 push(@mangle_options, ("-j", "MARK", "--set-xmark", "$mark/$NAT_MASK"));
6e87f0aa
MT
951
952 run("$IPTABLES -t mangle -A $CHAIN_MANGLE_NAT_DESTINATION_FIX @mangle_options");
ce31144c
MT
953
954 $mark <<= 1;
6e87f0aa
MT
955 }
956}
3bb4bb3f
MT
957
958sub make_log_limit_options {
959 my @options = ("-m", "limit");
960
961 # Maybe we should get this from the configuration.
962 my $limit = 10;
963
a85a7a60 964 # We limit log messages to $limit messages per second.
965 push(@options, ("--limit", "$limit/second"));
3bb4bb3f
MT
966
967 # And we allow bursts of 2x $limit.
968 push(@options, ("--limit-burst", $limit * 2));
969
970 return @options;
971}
e9b5ba41 972
da7a2208
MT
973sub firewall_is_in_subnet {
974 my $subnet = shift;
5cf8c8c1 975
e9b5ba41
MT
976 # ORANGE is missing here, because nothing may ever access
977 # the firewall from this network.
4e54e3c6 978 my $address = &fwlib::get_internal_firewall_ip_address($subnet, 0);
e9b5ba41 979
da7a2208
MT
980 if ($address) {
981 return 1;
e9b5ba41 982 }
da7a2208
MT
983
984 return 0;
e9b5ba41 985}
6babb404 986
960608c8
SS
987sub firewall_chain_exists ($) {
988 my ($chain) = @_;
989
990 my $ret = &General::system("iptables", "--wait", "-n", "-L", "$chain");
991
992 return $ret;
993}
994
2801213d 995sub ipset_get_sets () {
8b97a537
SS
996 my @sets;
997
2801213d
SS
998 # Get all currently used ipset lists and store them in an array.
999 my @output = `$IPSET -n list`;
1000
1001 # Loop through the temporary array.
1002 foreach my $set (@output) {
1003 # Remove any newlines.
1004 chomp($set);
1005
1006 # Add the set the array of used sets.
8b97a537 1007 push(@sets, $set);
2801213d
SS
1008 }
1009
1010 # Display used sets in debug mode.
1011 if($DEBUG) {
1012 print "Used ipset sets:\n";
8b97a537 1013 print "@sets\n\n";
2801213d 1014 }
8b97a537
SS
1015
1016 # Return the array of sets.
1017 return @sets;
2801213d
SS
1018}
1019
6babb404 1020sub ipset_restore ($) {
2801213d 1021 my ($set) = @_;
6babb404 1022
58418009
SS
1023 # Empty variable to store the db file, which should be
1024 # restored by ipset.
1025 my $db_file;
bae9b5dc 1026
2801213d
SS
1027 # Check if the set already has been loaded.
1028 if($ipset_loaded_sets{$set}) {
bae9b5dc
SS
1029 # It already has been loaded - so there is nothing to do.
1030 return;
1031 }
50e43059 1032
58418009
SS
1033 # Check if the given set name is a country code.
1034 if($set ~~ @locations) {
870c223e
SS
1035 # Libloc adds the IP type (v4 or v6) as part of the set and file name.
1036 my $loc_set = "$set" . "v4";
58418009 1037
870c223e
SS
1038 # The bare filename equals the set name.
1039 my $filename = $loc_set;
1040
1041 # Libloc uses "ipset" as file extension.
1042 my $file_extension = "ipset";
1043
1044 # Generate full path and filename for the ipset db file.
1045 my $db_file = "$Location::Functions::ipset_db_directory/$filename.$file_extension";
1046
1047 # Call function to restore/load the set.
1048 &ipset_call_restore($db_file);
1049
1050 # Check if the set is already loaded (has been used before).
1051 if ($set ~~ @ipset_used_sets) {
1052 # The sets contains the IP type (v4 or v6) as part of the name.
1053 # The firewall rules matches against sets without that extension. So we safely
1054 # can swap or rename the sets to use the new ones.
1055 run("$IPSET swap $loc_set $set");
1056 } else {
1057 # If the set is not loaded, we have to rename it to proper use it.
1058 run("$IPSET rename $loc_set $set");
1059 }
a7bf1d96
SS
1060
1061 # Check if the given set name is a blocklist.
1062 } elsif ($set ~~ @blocklists) {
404b5137
SS
1063 # IPblocklist sets contains v4 as setname extension.
1064 my $set_name = "$set" . "v4";
1065
a7bf1d96
SS
1066 # Get the database file for the given blocklist.
1067 my $db_file = &IPblocklist::get_ipset_db_file($set);
1068
1069 # Call function to restore/load the set.
1070 &ipset_call_restore($db_file);
404b5137
SS
1071
1072 # Check if the set is already loaded (has been used before).
1073 if ($set ~~ @ipset_used_sets) {
1074 # Swap the sets.
1075 run("$IPSET swap $set_name $set");
1076 } else {
1077 # Rename the set to proper use it.
1078 run("$IPSET rename $set_name $set");
1079 }
58418009
SS
1080 }
1081
870c223e
SS
1082 # Store the restored set to the hash to prevent from loading it again.
1083 $ipset_loaded_sets{$set} = "1";
1084}
bae9b5dc 1085
870c223e
SS
1086sub ipset_call_restore ($) {
1087 my ($file) = @_;
1088
1089 # Check if the requested file exists.
1090 if (-f $file) {
1091 # Run ipset and restore the given set.
1092 run("$IPSET restore -f $file");
2801213d
SS
1093 }
1094}
1095
1096sub ipset_cleanup () {
8b97a537
SS
1097 # Reload the array of used sets.
1098 @ipset_used_sets = &ipset_get_sets();
1099
2801213d
SS
1100 # Loop through the array of used sets.
1101 foreach my $set (@ipset_used_sets) {
1102 # Check if this set is still in use.
1103 #
1104 # In this case an entry in the loaded sets hash exists.
1105 unless($ipset_loaded_sets{$set}) {
1106 # Entry does not exist, so this set is not longer
1107 # used and can be destroyed.
1108 run("$IPSET destroy $set");
1109 }
50e43059 1110 }
6babb404 1111}