]> git.proxmox.com Git - pve-firewall.git/blobdiff - PVE/Firewall.pm
remove shorewall rule compiler
[pve-firewall.git] / PVE / Firewall.pm
index 876700867bbf61112887fde8fd9dd2ef45583828..65e0050ed603831885c690578e7e1678df9f33d9 100644 (file)
@@ -8,19 +8,28 @@ use PVE::QemuServer;
 use File::Path;
 use IO::File;
 use Net::IP;
+use PVE::Tools qw(run_command lock_file);
 
 use Data::Dumper;
 
+my $pve_fw_lock_filename = "/var/lock/pvefw.lck";
+
 my $macros;
-sub get_shorewall_macros {
+my @ruleset = ();
+
+# todo: implement some kind of MACROS, like shorewall /usr/share/shorewall/macro.*
+sub get_firewall_macros {
 
     return $macros if $macros;
 
-    foreach my $path (</usr/share/shorewall/macro.*>) {
-       if ($path =~ m|/macro\.(\S+)$|) {
-           $macros->{$1} = 1;
-       }
-    }
+    #foreach my $path (</usr/share/shorewall/macro.*>) {
+    #  if ($path =~ m|/macro\.(\S+)$|) {
+    #    $macros->{$1} = 1;
+    #  }
+    #}
+
+    $macros = {}; # fixme: implemet me
+
     return $macros;
 }
 
@@ -56,6 +65,7 @@ sub get_etc_services {
 
     $etc_services = $services;    
     
+
     return $etc_services;
 }
 
@@ -95,362 +105,468 @@ sub get_etc_protocols {
 sub parse_address_list {
     my ($str) = @_;
 
+    my $nbaor = 0;
     foreach my $aor (split(/,/, $str)) {
        if (!Net::IP->new($aor)) {
            my $err = Net::IP::Error();
            die "invalid IP address: $err\n";
+       }else{
+           $nbaor++;
        }
     }
+    return $nbaor;
 }
 
 sub parse_port_name_number_or_range {
     my ($str) = @_;
 
     my $services = PVE::Firewall::get_etc_services();
-
+    my $nbports = 0;
     foreach my $item (split(/,/, $str)) {
+       my $portlist = "";
        foreach my $pon (split(':', $item, 2)) {
-           next if $pon =~ m/^\d+$/ && $pon > 0 && $pon < 65536;
-           next if defined($services->{byname}->{$pon});
-           die "invalid port '$pon'\n";
+           if ($pon =~ m/^\d+$/){
+               die "invalid port '$pon'\n" if $pon < 0 && $pon > 65536;
+           }else{
+               die "invalid port $services->{byname}->{$pon}\n" if !$services->{byname}->{$pon};
+           }
+           $nbports++;
        }
     }
 
+    return ($nbports);
 }
 
 my $rule_format = "%-15s %-30s %-30s %-15s %-15s %-15s\n";
 
-my $generate_input_rule = sub {
-    my ($zoneinfo, $rule, $net, $netid) = @_;
+sub iptables {
+    my ($cmd) = @_;
+
+    run_command("/sbin/iptables $cmd", outfunc => sub {}, errfunc => sub {});
+}
+
+sub iptables_restore {
+
+    unshift (@ruleset, '*filter');
+    push (@ruleset, 'COMMIT');
+
+    my $cmdlist = join("\n", @ruleset);
+
+    run_command("/sbin/iptables-restore -n", input => $cmdlist, outfunc => sub {});
+}
+
+sub iptables_addrule {
+   my ($rule) = @_;
+
+   push (@ruleset, $rule);
+}
+
+sub iptables_chain_exist {
+    my ($chain) = @_;
+
+    eval{
+       iptables("-n --list $chain");
+    };
+    return undef if $@;
+
+    return 1;
+}
+
+sub iptables_rule_exist {
+    my ($rule) = @_;
+
+    eval{
+       iptables("-C $rule");
+    };
+    return undef if $@;
+
+    return 1;
+}
+
+sub iptables_generate_rule {
+    my ($chain, $rule) = @_;
 
-    my $zone = $net->{zone} || die "internal error";
-    my $zid = $zoneinfo->{$zone}->{zoneref} || die "internal error";
-    my $tap = $net->{tap} || die "internal error";
+    my $cmd = "-A $chain";
 
-    my $dest = "$zid:$tap";
+    $cmd .= " -m iprange --src-range" if $rule->{nbsource} && $rule->{nbsource} > 1;
+    $cmd .= " -s $rule->{source}" if $rule->{source};
+    $cmd .= " -m iprange --dst-range" if $rule->{nbdest} && $rule->{nbdest} > 1;
+    $cmd .= " -d $rule->{dest}" if $rule->{destination};
+    $cmd .= " -p $rule->{proto}" if $rule->{proto};
+    $cmd .= "  --match multiport" if $rule->{nbdport} && $rule->{nbdport} > 1;
+    $cmd .= " --dport $rule->{dport}" if $rule->{dport};
+    $cmd .= "  --match multiport" if $rule->{nbsport} && $rule->{nbsport} > 1;
+    $cmd .= " --sport $rule->{sport}" if $rule->{sport};
+    $cmd .= " -j $rule->{action}" if $rule->{action};
 
-    if ($rule->{dest}) {
-       $dest .= ":$rule->{dest}";
+    iptables_addrule($cmd);
+
+}
+
+sub generate_bridge_rules {
+    my ($bridge) = @_;
+
+    if(!iptables_chain_exist("BRIDGEFW-OUT")){
+       iptables_addrule(":BRIDGEFW-OUT - [0:0]");
     }
 
-    my $action = $rule->{service} ? 
-       "$rule->{service}($rule->{action})" : $rule->{action};
+    if(!iptables_chain_exist("BRIDGEFW-IN")){
+       iptables_addrule(":BRIDGEFW-IN - [0:0]");
+    }
+
+    if(!iptables_chain_exist("proxmoxfw-FORWARD")){
+       iptables_addrule(":proxmoxfw-FORWARD - [0:0]");
+       iptables_addrule("-I FORWARD -j proxmoxfw-FORWARD");
+       iptables_addrule("-A proxmoxfw-FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT");
+       iptables_addrule("-A proxmoxfw-FORWARD -m physdev --physdev-is-in --physdev-is-bridged -j BRIDGEFW-OUT");
+       iptables_addrule("-A proxmoxfw-FORWARD -m physdev --physdev-is-out --physdev-is-bridged -j BRIDGEFW-IN");
 
-    my $sources = [];
+    }
 
-    if (!$rule->{source}) {
-       push @$sources, 'all'; 
-    } elsif ($zoneinfo->{$zone}->{type} eq 'bport') {
-       my $bridge_zone = $zoneinfo->{$zone}->{bridge_zone} || die "internal error";
-       my $zoneref = $zoneinfo->{$bridge_zone}->{zoneref} || die "internal error";
+    generate_proxmoxfwinput();
+
+    if(!iptables_chain_exist("$bridge-IN")){
+       iptables_addrule(":$bridge-IN - [0:0]");
+       iptables_addrule("-A proxmoxfw-FORWARD -i $bridge -j DROP");  #disable interbridge routing
+       iptables_addrule("-A BRIDGEFW-IN -j $bridge-IN");
+       iptables_addrule("-A $bridge-IN -j ACCEPT");
 
-       # using 'all' does not work, so we create one rule for
-       # each related zone on the same bridge
-       push @$sources, "${zoneref}:$rule->{source}";
-       foreach my $z (keys %$zoneinfo) {
-           next if $z eq $zone;
-           next if !$zoneinfo->{$z}->{bridge_zone};
-           next if $zoneinfo->{$z}->{bridge_zone} ne $bridge_zone;
-           $zoneref = $zoneinfo->{$z}->{zoneref} || die "internal error";
-           push @$sources, "${zoneref}:$rule->{source}";
-       }
-    } else {
-       push @$sources, "all:$rule->{source}";
     }
 
-    my $out = '';
+    if(!iptables_chain_exist("$bridge-OUT")){
+       iptables_addrule(":$bridge-OUT - [0:0]");
+       iptables_addrule("-A proxmoxfw-FORWARD -o $bridge -j DROP"); # disable interbridge routing
+       iptables_addrule("-A BRIDGEFW-OUT -j $bridge-OUT");
 
-    foreach my $source (@$sources) {
-       $out .= sprintf($rule_format, $action, $source, $dest, $rule->{proto} || '-', 
-                       $rule->{dport} || '-', $rule->{sport} || '-');
     }
 
-    return $out;
-};
+}
 
-my $generate_output_rule = sub {
-    my ($zoneinfo, $rule, $net, $netid) = @_;
 
-    my $zone = $net->{zone} || die "internal error";
-    my $zid = $zoneinfo->{$zone}->{zoneref} || die "internal error";
-    my $tap = $net->{tap} || die "internal error";
+sub generate_tap_rules_direction {
+    my ($iface, $netid, $rules, $bridge, $direction) = @_;
 
-    my $action = $rule->{service} ? 
-       "$rule->{service}($rule->{action})" : $rule->{action};
-    
-    my $dest;
+    my $tapchain = "$iface-$direction";
 
-    if (!$rule->{dest}) {
-       $dest = 'all';
-    } else {
-       $dest = "all:$rule->{dest}";
+    iptables_addrule(":$tapchain - [0:0]");
+
+    iptables_addrule("-A $tapchain -m state --state INVALID -j DROP");
+    iptables_addrule("-A $tapchain -m state --state RELATED,ESTABLISHED -j ACCEPT");
+
+    if (scalar(@$rules)) {
+        foreach my $rule (@$rules) {
+           next if $rule->{iface} && $rule->{iface} ne $netid;
+           if($rule->{action}  =~ m/^(GROUP-(\S+))$/){
+                   $rule->{action} .= "-$direction";
+                   #generate empty group rule if don't exist
+                   if(!iptables_chain_exist($rule->{action})){
+                       generate_group_rules($2);
+                   }
+           }
+           #we go to vmbr-IN if accept in out rules
+           $rule->{action} = "$bridge-IN" if $rule->{action} eq 'ACCEPT' && $direction eq 'OUT';
+           iptables_generate_rule($tapchain, $rule);
+        }
     }
 
-    return sprintf($rule_format, $action, "$zid:$tap", $dest, 
-                  $rule->{proto} || '-', $rule->{dport} || '-', $rule->{sport} || '-');
-};
+    iptables_addrule("-A $tapchain -j LOG --log-prefix \"$tapchain-dropped: \" --log-level 4");
+    iptables_addrule("-A $tapchain -j DROP");
+
+    #plug the tap chain to bridge chain
+    my $physdevdirection = $direction eq 'IN' ? "out":"in";
+    my $rule = "$bridge-$direction -m physdev --physdev-$physdevdirection $iface --physdev-is-bridged -j $tapchain";
 
-# we need complete VM configuration of all VMs (openvz/qemu)
-# in vmdata
+    if(!iptables_rule_exist($rule)){
+       iptables_addrule("-I $rule");
+    }
 
-my $compile_shorewall = sub {
-    my ($targetdir, $vmdata, $rules) = @_;
+    if($direction eq 'OUT'){
+       #add tap->host rules
+       my $rule = "proxmoxfw-INPUT -m physdev --physdev-$physdevdirection $iface -j $tapchain";
 
-    # remove existing data ?
-    foreach my $file (qw(params zones rules interfaces  maclist  policy)) {
-       unlink "$targetdir/$file";
+       if(!iptables_rule_exist($rule)){
+           iptables_addrule("-A $rule");
+       }
     }
+}
 
-    my $netinfo;
+sub generate_tap_rules {
+    my ($net, $netid, $vmid) = @_;
 
-    my $zoneinfo = {
-       fw => { type => 'firewall' },
-    };
+    my $filename = "/etc/pve/firewall/$vmid.fw";
+    my $fh = IO::File->new($filename, O_RDONLY);
+    return if !$fh;
 
-    my $maclist = {};
+    #generate bridge rules
+    my $bridge = $net->{bridge};
+    my $tag = $net->{tag};
+    $bridge .= "v$tag" if $tag;
+   
+    #generate tap chain
+    my $rules = parse_fw_rules($filename, $fh);
 
-    my $register_bridge;
+    my $inrules = $rules->{in};
+    my $outrules = $rules->{out};
 
-    $register_bridge = sub {
-       my ($bridge, $vlan) = @_;
+    my $iface = "tap".$vmid."i".$1 if $netid =~ m/net(\d+)/;
 
-       my $zone =  'z' . $bridge;
+    generate_bridge_rules($bridge);
+    generate_tap_rules_direction($iface, $netid, $inrules, $bridge, 'IN');
+    generate_tap_rules_direction($iface, $netid, $outrules, $bridge, 'OUT');
+    iptables_restore();
+}
 
-       return $zone if $zoneinfo->{$zone};
+sub flush_tap_rules {
+    my ($net, $netid, $vmid) = @_;
 
-       my $ext_zone = "z${bridge}ext";
+    my $bridge = $net->{bridge};
+    my $iface = "tap".$vmid."i".$1 if $netid =~ m/net(\d+)/;
 
-       $zoneinfo->{$zone} = {
-           type => 'bridge',
-           bridge => $bridge,
-           bridge_ext_zone => $ext_zone,
-       };
+    flush_tap_rules_direction($iface, $bridge, 'IN');
+    flush_tap_rules_direction($iface, $bridge, 'OUT');
+    iptables_restore();
+}
 
-       # physical input devices
-       my $dir = "/sys/class/net/$bridge/brif";
-       my $physical = {};
-       PVE::Tools::dir_glob_foreach($dir, '((eth|bond).+)', sub {
-           my ($slave) = @_;
-           $physical->{$slave} = 1;
-       });
-
-       $zoneinfo->{$ext_zone} = {
-           type => 'bport',
-           bridge_zone => $zone,
-           ifaces => $physical,
-       };
+sub flush_tap_rules_direction {
+    my ($iface, $bridge, $direction) = @_;
 
-       return &$register_bridge("${bridge}v${vlan}") if defined($vlan);
-       
-       return $zone;
-    };
+    my $tapchain = "$iface-$direction";
 
-    my $register_bridge_port = sub {
-       my ($bridge, $vlan, $vmzone, $tap) = @_;
+    if(iptables_chain_exist($tapchain)){
+       iptables_addrule("-F $tapchain");
 
-       my $bridge_zone = &$register_bridge($bridge, $vlan);
-       my $zone = $bridge_zone . $vmzone;
+       my $physdevdirection = $direction eq 'IN' ? "out":"in";
+       my $rule = "$bridge-$direction -m physdev --physdev-$physdevdirection $iface --physdev-is-bridged -j $tapchain";
+       if(iptables_rule_exist($rule)){
+           iptables_addrule("-D $rule");
+       }
 
-       if (!$zoneinfo->{$zone}) {
-           $zoneinfo->{$zone} = {
-               type => 'bport',
-               bridge_zone => $bridge_zone,
-               ifaces => {},
-           };
+       if($direction eq 'OUT'){
+           my $rule = "proxmoxfw-INPUT -m physdev --physdev-$physdevdirection $iface -j $tapchain";
+           if(iptables_rule_exist($rule)){
+               iptables_addrule("-D $rule");
+           }
        }
 
-       $zoneinfo->{$zone}->{ifaces}->{$tap} = 1;
-       
-       return $zone;
-    };
+       iptables_addrule("-X $tapchain");
+    }
+}
 
-    foreach my $vmid (keys %{$vmdata->{qemu}}) {
-       $netinfo->{$vmid} = {};
-       my $conf = $vmdata->{qemu}->{$vmid};
-       foreach my $opt (keys %$conf) {
-           next if $opt !~ m/^net(\d+)$/;
-           my $netnum = $1;
-           my $net = PVE::QemuServer::parse_net($conf->{$opt});
-           next if !$net;
-           die "implement me" if !$net->{bridge};
-
-           my $vmzone = $conf->{zone} || "vm$vmid";
-           $net->{tap} = "tap${vmid}i${netnum}";
-           $maclist->{$net->{tap}} = $net->{macaddr} || die "internal error";
-           $net->{zone} = &$register_bridge_port($net->{bridge}, $net->{tag}, $vmzone, $net->{tap});
-           $netinfo->{$vmid}->{$opt} = $net;
-       }
+sub enablehostfw {
+
+    generate_proxmoxfwinput();
+    generate_proxmoxfwoutput();
+
+    my $filename = "/etc/pve/local/host.fw";
+    my $fh = IO::File->new($filename, O_RDONLY);
+    return if !$fh;
+
+    my $rules = parse_fw_rules($filename, $fh);
+    my $inrules = $rules->{in};
+    my $outrules = $rules->{out};
+
+    #host inbound firewall
+    iptables_addrule(":host-IN - [0:0]");
+    iptables_addrule("-A host-IN -m state --state INVALID -j DROP");
+    iptables_addrule("-A host-IN -m state --state RELATED,ESTABLISHED -j ACCEPT");
+    iptables_addrule("-A host-IN -i lo -j ACCEPT");
+    iptables_addrule("-A host-IN -m addrtype --dst-type MULTICAST -j ACCEPT");
+    iptables_addrule("-A host-IN -p udp -m state --state NEW -m multiport --dports 5404,5405 -j ACCEPT");
+    iptables_addrule("-A host-IN -p udp -m udp --dport 9000 -j ACCEPT"); #corosync
+
+    if (scalar(@$inrules)) {
+        foreach my $rule (@$inrules) {
+            #we use RETURN because we need to check also tap rules
+            $rule->{action} = 'RETURN' if $rule->{action} eq 'ACCEPT';
+            iptables_generate_rule('host-IN', $rule);
+        }
     }
 
-    #print Dumper($netinfo);
+    iptables_addrule("-A host-IN -j LOG --log-prefix \"kvmhost-IN dropped: \" --log-level 4");
+    iptables_addrule("-A host-IN -j DROP");
+
+    #host outbound firewall
+    iptables_addrule(":host-OUT - [0:0]");
+    iptables_addrule("-A host-OUT -m state --state INVALID -j DROP");
+    iptables_addrule("-A host-OUT -m state --state RELATED,ESTABLISHED -j ACCEPT");
+    iptables_addrule("-A host-OUT -o lo -j ACCEPT");
+    iptables_addrule("-A host-OUT -m addrtype --dst-type MULTICAST -j ACCEPT");
+    iptables_addrule("-A host-OUT -p udp -m state --state NEW -m multiport --dports 5404,5405 -j ACCEPT");
+    iptables_addrule("-A host-OUT -p udp -m udp --dport 9000 -j ACCEPT"); #corosync
+
+    if (scalar(@$outrules)) {
+        foreach my $rule (@$outrules) {
+            #we use RETURN because we need to check also tap rules
+            $rule->{action} = 'RETURN' if $rule->{action} eq 'ACCEPT';
+            iptables_generate_rule('host-OUT', $rule);
+        }
+    }
 
-    # NOTE: zone names have length limit, so we need to
-    # translate them into shorter names 
+    iptables_addrule("-A host-OUT -j LOG --log-prefix \"kvmhost-OUT dropped: \" --log-level 4");
+    iptables_addrule("-A host-OUT -j DROP");
 
-    my $zoneid = 0;
-    my $zonemap = { fw => 'fw' };
+    
+    my $rule = "proxmoxfw-INPUT -j host-IN";
+    if(!iptables_rule_exist($rule)){
+       iptables_addrule("-I $rule");
+    }
+
+    $rule = "proxmoxfw-OUTPUT -j host-OUT";
+    if(!iptables_rule_exist($rule)){
+       iptables_addrule("-I $rule");
+    }
 
-    my $lookup_zonename = sub {
-       my ($zone) = @_;
+    iptables_restore();
 
-       return $zonemap->{$zone} if defined($zonemap->{$zone});
-       $zonemap->{$zone} = 'z' . $zoneid++;
 
-       return $zonemap->{$zone};
-    };
+}
+
+sub disablehostfw {
+
+    my $chain = "host-IN";
 
-    foreach my $z (sort keys %$zoneinfo) {
-       $zoneinfo->{$z}->{id} = &$lookup_zonename($z);
-       $zoneinfo->{$z}->{zonevar} = uc($z);
-       $zoneinfo->{$z}->{zoneref} = '$' . $zoneinfo->{$z}->{zonevar};
+    my $rule = "proxmoxfw-INPUT -j $chain";
+    if(iptables_rule_exist($rule)){
+       iptables_addrule("-D $rule");
     }
 
-    my $out;
+    if(iptables_chain_exist($chain)){
+       iptables_addrule("-F $chain");
+       iptables_addrule("-X $chain");
+    }
+
+    $chain = "host-OUT";
 
-    # dump params file
-    $out = "# PVE zones\n";
-    foreach my $z (sort keys %$zoneinfo) {
-       $out .= "$zoneinfo->{$z}->{zonevar}=$zoneinfo->{$z}->{id}\n";
+    $rule = "proxmoxfw-OUTPUT -j $chain";
+    if(iptables_rule_exist($rule)){
+       iptables_addrule("-D $rule");
     }
-    PVE::Tools::file_set_contents("$targetdir/params", $out);
 
-    # dump zone file
+    if(iptables_chain_exist($chain)){
+       iptables_addrule("-F $chain");
+       iptables_addrule("-X $chain");
+    }
 
-    my $format = "%-30s %-10s %-15s\n";
-    $out = sprintf($format, '#ZONE', 'TYPE', 'OPTIONS');
-    
-    foreach my $z (sort keys %$zoneinfo) {
-       my $zid = $zoneinfo->{$z}->{zoneref};
-       if ($zoneinfo->{$z}->{type} eq 'firewall') {
-           $out .= sprintf($format, $zid, $zoneinfo->{$z}->{type}, '');
-       } elsif ($zoneinfo->{$z}->{type} eq 'bridge') {
-           $out .= sprintf($format, $zid, 'ipv4', '');
-       } elsif ($zoneinfo->{$z}->{type} eq 'bport') {
-           my $bridge_zone = $zoneinfo->{$z}->{bridge_zone} || die "internal error";
-           my $bzid = $zoneinfo->{$bridge_zone}->{zoneref} || die "internal error";
-           $out .= sprintf($format, "$zid:$bzid", 'bport', '');
-       } else {
-           die "internal error";
-       }
+    iptables_restore();   
+}
+
+sub generate_proxmoxfwinput {
+
+    if(!iptables_chain_exist("proxmoxfw-INPUT")){
+        iptables_addrule(":proxmoxfw-INPUT - [0:0]");
+        iptables_addrule("-I INPUT -j proxmoxfw-INPUT");
+        iptables_addrule("-A INPUT -j ACCEPT");
     }
+}
 
-    $out .= sprintf("#LAST LINE - ADD YOUR ENTRIES ABOVE THIS ONE - DO NOT REMOVE\n");
+sub generate_proxmoxfwoutput {
 
-    PVE::Tools::file_set_contents("$targetdir/zones", $out);
+    if(!iptables_chain_exist("proxmoxfw-OUTPUT")){
+        iptables_addrule(":proxmoxfw-OUTPUT - [0:0]");
+        iptables_addrule("-I OUTPUT -j proxmoxfw-OUTPUT");
+        iptables_addrule("-A OUTPUT -j ACCEPT");
+    }
 
-    # dump interfaces
+}
+
+sub enable_group_rules {
+    my ($group) = @_;
+    
+    generate_group_rules($group);
+    iptables_restore();
+}
 
-    $format = "%-25s %-20s %-10s %-15s\n";
-    $out = sprintf($format, '#ZONE', 'INTERFACE', 'BROADCAST', 'OPTIONS');
+sub generate_group_rules {
+    my ($group) = @_;
 
-    my $maclist_format = "%-15s %-15s %-15s\n";
-    my $macs = sprintf($maclist_format, '#DISPOSITION', 'INTERFACE', 'MACZONE');
+    my $filename = "/etc/pve/firewall/groups.fw";
+    my $fh = IO::File->new($filename, O_RDONLY);
+    return if !$fh;
 
-    foreach my $z (sort keys %$zoneinfo) {
-       my $zid = $zoneinfo->{$z}->{zoneref};
-       if ($zoneinfo->{$z}->{type} eq 'firewall') {
-           # do nothing;
-       } elsif ($zoneinfo->{$z}->{type} eq 'bridge') {
-           my $bridge = $zoneinfo->{$z}->{bridge} || die "internal error";
-           $out .= sprintf($format, $zid, $bridge, 'detect', 'bridge,optional');
-       } elsif ($zoneinfo->{$z}->{type} eq 'bport') {
-           my $ifaces = $zoneinfo->{$z}->{ifaces};
-           foreach my $iface (sort keys %$ifaces) {
-               my $bridge_zone = $zoneinfo->{$z}->{bridge_zone} || die "internal error";
-               my $bridge = $zoneinfo->{$bridge_zone}->{bridge} || die "internal error";
-               my $iftxt = "$bridge:$iface";
+    my $rules = parse_fw_rules($filename, $fh, $group);
+    my $inrules = $rules->{in};
+    my $outrules = $rules->{out};
 
-               if ($maclist->{$iface}) {
-                   $out .= sprintf($format, $zid, $iftxt, '-', 'maclist');
-                   $macs .= sprintf($maclist_format, 'ACCEPT', $iface, $maclist->{$iface});
-               } else {
-                   $out .= sprintf($format, $zid, $iftxt, '-', '');
-               }
-           }
-       } else {
-           die "internal error";
-       }
-    }
+    my $chain = "GROUP-".$group."-IN";
 
-    $out .= sprintf("#LAST LINE - ADD YOUR ENTRIES ABOVE THIS ONE - DO NOT REMOVE\n");
+    iptables_addrule(":$chain - [0:0]");
 
-    PVE::Tools::file_set_contents("$targetdir/interfaces", $out);
+    if (scalar(@$inrules)) {
+        foreach my $rule (@$inrules) {
+            iptables_generate_rule($chain, $rule);
+        }
+    }
 
-    # dump maclist
-    PVE::Tools::file_set_contents("$targetdir/maclist", $macs);
+    $chain = "GROUP-".$group."-OUT";
 
-    # dump policy
+    iptables_addrule(":$chain - [0:0]");
 
-    $format = "%-15s %-15s %-15s %s\n";
-    $out = sprintf($format, '#SOURCE', 'DEST', 'POLICY', 'LOG');
-    $out .= sprintf($format, 'fw', 'all', 'ACCEPT', '');
+    if(!iptables_chain_exist("BRIDGEFW-OUT")){
+       iptables_addrule(":BRIDGEFW-OUT - [0:0]");
+    }
 
-    # we need to disable intra-zone traffic on bridges. Else traffic
-    # from untracked interfaces simply pass the firewall
-    foreach my $z (sort keys %$zoneinfo) {
-       my $zid = $zoneinfo->{$z}->{zoneref};
-       if ($zoneinfo->{$z}->{type} eq 'bridge') {
-           $out .= sprintf($format, $zid, $zid, 'REJECT', 'info');
-       }
+    if(!iptables_chain_exist("BRIDGEFW-IN")){
+       iptables_addrule(":BRIDGEFW-IN - [0:0]");
     }
-    $out .= sprintf($format, 'all', 'all', 'REJECT', 'info');
 
-    PVE::Tools::file_set_contents("$targetdir/policy", $out);
+    if (scalar(@$outrules)) {
+        foreach my $rule (@$outrules) {
+            #we go the BRIDGEFW-IN because we need to check also other tap rules 
+            #(and group rules can be set on any bridge, so we can't go to VMBRXX-IN)
+            $rule->{action} = 'BRIDGEFW-IN' if $rule->{action} eq 'ACCEPT';
+            iptables_generate_rule($chain, $rule);
+        }
+    }
 
-    # dump rules
-    $out = '';
+}
 
-    $out = sprintf($rule_format, '#ACTION', 'SOURCE', 'DEST', 'PROTO', 'DPORT', 'SPORT');
-    foreach my $vmid (sort keys %$rules) {
-       my $inrules = $rules->{$vmid}->{in};
-       my $outrules = $rules->{$vmid}->{out};
+sub disable_group_rules {
+    my ($group) = @_;
 
-       if (scalar(@$inrules)) {
-           $out .= "# IN to VM $vmid\n";
-           foreach my $rule (@$inrules) {
-               foreach my $netid (keys %{$netinfo->{$vmid}}) {
-                   my $net = $netinfo->{$vmid}->{$netid};
-                   next if $rule->{iface} && $rule->{iface} ne $netid;
-                   $out .= &$generate_input_rule($zoneinfo, $rule, $net, $netid);
-               }
-           }
-       }
+    my $chain = "GROUP-".$group."-IN";
 
-       if (scalar(@$outrules)) {
-           $out .= "# OUT from VM $vmid\n";
-           foreach my $rule (@$outrules) {
-               foreach my $netid (keys %{$netinfo->{$vmid}}) {
-                   my $net = $netinfo->{$vmid}->{$netid};
-                   next if $rule->{iface} && $rule->{iface} ne $netid;
-                   $out .= &$generate_output_rule($zoneinfo, $rule, $net, $netid);
-               }
-           }
-       }
+    if(iptables_chain_exist($chain)){
+       iptables_addrule("-F $chain");
+       iptables_addrule("-X $chain");
     }
 
-    PVE::Tools::file_set_contents("$targetdir/rules", $out);
-};
+    $chain = "GROUP-".$group."-OUT";
 
+    if(iptables_chain_exist($chain)){
+       iptables_addrule("-F $chain");
+       iptables_addrule("-X $chain");
+    }
+
+    #iptables_restore will die if security group is linked in a tap chain
+    #maybe can we improve that, parsing each vm config, or parsing iptables -S
+    #to see if the security group is linked or not
+    iptables_restore();
+}
 
 sub parse_fw_rules {
-    my ($filename, $fh) = @_;
+    my ($filename, $fh, $group) = @_;
 
     my $section;
+    my $securitygroup;
+    my $securitygroupexist;
 
     my $res = { in => [], out => [] };
 
-    my $macros = get_shorewall_macros();
+    my $macros = get_firewall_macros();
     my $protocols = get_etc_protocols();
     
     while (defined(my $line = <$fh>)) {
        next if $line =~ m/^#/;
        next if $line =~ m/^\s*$/;
 
-       if ($line =~ m/^\[(in|out)\]\s*$/i) {
+       if ($line =~ m/^\[(in|out)(:(\S+))?\]\s*$/i) {
            $section = lc($1);
+           $securitygroup = lc($3) if $3;
+           $securitygroupexist = 1 if $securitygroup &&  $securitygroup eq $group;
            next;
        }
        next if !$section;
+       next if $group && $securitygroup ne $group;
 
        my ($action, $iface, $source, $dest, $proto, $dport, $sport) =
            split(/\s+/, $line);
@@ -461,7 +577,7 @@ sub parse_fw_rules {
        }
 
        my $service;
-       if ($action =~ m/^(ACCEPT|DROP|REJECT)$/) {
+       if ($action =~ m/^(ACCEPT|DROP|REJECT|GROUP-(\S+))$/) {
            # OK
        } elsif ($action =~ m/^(\S+)\((ACCEPT|DROP|REJECT)\)$/) {
            ($service, $action) = ($1, $2);
@@ -492,12 +608,16 @@ sub parse_fw_rules {
 
        $dport = undef if $dport && $dport eq '-';
        $sport = undef if $sport && $sport eq '-';
+       my $nbdport = undef;
+       my $nbsport = undef;
+       my $nbsource = undef;
+       my $nbdest = undef;
 
        eval {
-           parse_address_list($source) if $source;
-           parse_address_list($dest) if $dest;
-           parse_port_name_number_or_range($dport) if $dport;
-           parse_port_name_number_or_range($sport) if $sport;
+           $nbsource = parse_address_list($source) if $source;
+           $nbdest = parse_address_list($dest) if $dest;
+           $nbdport = parse_port_name_number_or_range($dport) if $dport;
+           $nbsport = parse_port_name_number_or_range($sport) if $sport;
        };
        if (my $err = $@) {
            warn $err;
@@ -512,14 +632,32 @@ sub parse_fw_rules {
            iface => $iface,
            source => $source,
            dest => $dest,
+           nbsource => $nbsource,
+           nbdest => $nbdest,
            proto => $proto,
            dport => $dport,
            sport => $sport,
+           nbdport => $nbdport,
+           nbsport => $nbsport,
+
        };
 
        push @{$res->{$section}}, $rule;
     }
 
+    die "security group $group don't exist" if $group && !$securitygroupexist;
+    return $res;
+}
+
+sub run_locked {
+    my ($code, @param) = @_;
+
+    my $timeout = 10;
+
+    my $res = lock_file($pve_fw_lock_filename, $timeout, $code, @param);
+
+    die $@ if $@;
+
     return $res;
 }
 
@@ -559,18 +697,12 @@ sub read_vm_firewall_rules {
 }
 
 sub compile {
-
     my $vmdata = read_local_vm_config();
     my $rules = read_vm_firewall_rules($vmdata);
 
     # print Dumper($vmdata);
 
-    my $swdir = '/etc/shorewall';
-    mkdir $swdir;
-
-    &$compile_shorewall($swdir, $vmdata, $rules);
-
-    PVE::Tools::run_command(['shorewall', 'compile']);
+    die "implement me";
 }
 
 sub compile_and_start {
@@ -578,8 +710,7 @@ sub compile_and_start {
 
     compile();
 
-    PVE::Tools::run_command(['shorewall', $restart ? 'restart' : 'start']);
+     die "implement me";  
 }
 
-
 1;