diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2009-05-15 10:52:49 -0700 |
---|---|---|
committer | Mohit Mehta <mohit.mehta@vyatta.com> | 2009-05-15 10:52:49 -0700 |
commit | fdf8178c6cf7995ef00abac31d931404d1c01533 (patch) | |
tree | 8658ad4b9668ce4def9b3bc56b54fd2dc806e0c1 /scripts/zone-mgmt | |
parent | 9f0aa8839a11460dac149d99fee57c3a871e6a84 (diff) | |
download | vyatta-cfg-quagga-fdf8178c6cf7995ef00abac31d931404d1c01533.tar.gz vyatta-cfg-quagga-fdf8178c6cf7995ef00abac31d931404d1c01533.zip |
Fix Bug 4395 After local-zone is set, traffic from localhost is dropped
* do not block traffic sourced from and destined to localhost
Diffstat (limited to 'scripts/zone-mgmt')
-rwxr-xr-x | scripts/zone-mgmt/vyatta-zone.pl | 40 |
1 files changed, 37 insertions, 3 deletions
diff --git a/scripts/zone-mgmt/vyatta-zone.pl b/scripts/zone-mgmt/vyatta-zone.pl index 37bab3cd..c71fc2a1 100755 --- a/scripts/zone-mgmt/vyatta-zone.pl +++ b/scripts/zone-mgmt/vyatta-zone.pl @@ -455,11 +455,45 @@ sub add_zone { # perform firewall related actions for this zone my $error = create_zone_chain ($zone_name); return ($error, ) if $error; + if (defined(Vyatta::Zone::is_local_zone("exists", $zone_name))) { # make local out chain as well $error = create_zone_chain ($zone_name, "localout"); return ($error, ) if $error; + + # allow traffic sourced from and destined to localhost + my $cmd; + my @localchains=(); + $localchains[0] = Vyatta::Zone::get_zone_chain("exists", $zone_name); + $localchains[1] = Vyatta::Zone::get_zone_chain("exists", $zone_name, + 'localout'); + + foreach my $tree (keys %cmd_hash) { + my $loopback_addr = '127.0.0.1'; + my $source_addr = '$8'; + my $dest_addr = '$9'; + # set IPv6 params if using ip6tables + if ($cmd_hash{$tree} =~ '6') { + $loopback_addr = '::1/128'; + $source_addr = '$7'; + $dest_addr = '$8'; + } + foreach my $chain (@localchains) { + $cmd = "sudo $cmd_hash{$tree} -t $table_hash{$tree} -L $chain -vn " . + "| awk {'print \$3 \" \" $source_addr \" \" $dest_addr'} " . + "| grep 'RETURN $loopback_addr $loopback_addr' | wc -l"; + my $result=`$cmd`; + if ($result < 1) { + $cmd = "sudo $cmd_hash{$tree} -t $table_hash{$tree} -I $chain " . + "-s $loopback_addr -d $loopback_addr -j RETURN"; + $error = Vyatta::Zone::run_cmd($cmd); + return "Error: adding rule to allow localhost traffic failed [$error]" if $error; + } + } + } + } + # set default policy my $default_policy = Vyatta::Zone::get_zone_default_policy("returnValue", $zone_name); @@ -599,12 +633,12 @@ sub delete_fromzone_fw { my $zone_chain=Vyatta::Zone::get_zone_chain("existsOrig", $from_zone, 'localout'); - # if only drop rule in $zone_chain in both [ip and ip6]tables - # then delete jump from OUTPUT chain in both + # if only drop rule & localhost allow rule in $zone_chain in both + # [ip and ip6]tables then delete jump from OUTPUT chain in both foreach my $tree (keys %cmd_hash) { my $rule_cnt = Vyatta::Zone::count_iptables_rules($cmd_hash{$tree}, $table_hash{$tree}, $zone_chain); - if ($rule_cnt > 1) { + if ($rule_cnt > 2) { # atleast one of [ip or ip6]tables has local-zone as a from zone return; } |