]> git.proxmox.com Git - pve-firewall.git/blobdiff - src/PVE/API2/Firewall/Groups.pm
fix #4204: automatically update usages of group when it is renamed
[pve-firewall.git] / src / PVE / API2 / Firewall / Groups.pm
index 558ba8ee893c5fd29e8595bea5a857478616a02e..22da9a8519232b50db37aea24e2d900136ab4347 100644 (file)
@@ -30,6 +30,15 @@ my $get_security_group_list = sub {
     return wantarray ? ($list, $digest) : $list;
 };
 
+my $rename_fw_rules = sub {
+    my ($old, $new, $rules) = @_;
+
+    for my $rule (@{$rules}) {
+       next if ($rule->{type} ne "group" || $rule->{action} ne $old);
+       $rule->{action} = $new;
+    }
+};
+
 __PACKAGE__->register_method({
     name => 'list_security_groups',
     path => '',
@@ -91,35 +100,90 @@ __PACKAGE__->register_method({
     code => sub {
        my ($param) = @_;
 
+       my $group = $param->{group};
+       my $rename = $param->{rename};
+       my $comment = $param->{comment};
+
        PVE::Firewall::lock_clusterfw_conf(10, sub {
            my $cluster_conf = PVE::Firewall::load_clusterfw_conf();
 
-           if ($param->{rename}) {
+           if ($rename) {
                my (undef, $digest) = &$get_security_group_list($cluster_conf);
                PVE::Tools::assert_if_modified($digest, $param->{digest});
 
-               raise_param_exc({ group => "Security group '$param->{rename}' does not exist" })
-                   if !$cluster_conf->{groups}->{$param->{rename}};
+               raise_param_exc({ group => "Security group '$rename' does not exist" })
+                   if !$cluster_conf->{groups}->{$rename};
 
                # prevent overwriting an existing group
-               raise_param_exc({ group => "Security group '$param->{group}' does already exist" })
-                   if $cluster_conf->{groups}->{$param->{group}} &&
-                   $param->{group} ne $param->{rename};
-
-               my $data = delete $cluster_conf->{groups}->{$param->{rename}};
-               $cluster_conf->{groups}->{$param->{group}} = $data;
-               if (my $comment = delete $cluster_conf->{group_comments}->{$param->{rename}}) {
-                   $cluster_conf->{group_comments}->{$param->{group}} = $comment;
+               raise_param_exc({ group => "Security group '$group' does already exist" })
+                   if $cluster_conf->{groups}->{$group} &&
+                   $group ne $rename;
+
+               if ($rename eq $group) {
+                  $cluster_conf->{group_comments}->{$rename} = $comment if defined($comment);
+                   PVE::Firewall::save_clusterfw_conf($cluster_conf);
+                   return;
                }
-               $cluster_conf->{group_comments}->{$param->{group}} = $param->{comment} if defined($param->{comment});
+
+               # Create an exact copy of the old security group
+               $cluster_conf->{groups}->{$group} = $cluster_conf->{groups}->{$rename};
+               $cluster_conf->{group_comments}->{$group} = $cluster_conf->{group_comments}->{$rename};
+
+               # Update comment if provided
+               $cluster_conf->{group_comments}->{$group} = $comment if defined($comment);
+
+               # Write the copy to the cluster config, so that if something fails inbetween, the new firewall
+               # rules won't be broken when the new name is referenced
+               PVE::Firewall::save_clusterfw_conf($cluster_conf);
+
+               # Update all the host configs to the new copy
+               my $hosts = PVE::Cluster::get_nodelist();
+               foreach my $host (@$hosts) {
+                   PVE::Firewall::lock_hostfw_conf($host, 10, sub {
+                       my $host_conf_path = "/etc/pve/nodes/$host/host.fw";
+                       my $host_conf = PVE::Firewall::load_hostfw_conf($cluster_conf, $host_conf_path);
+
+                       if(defined($host_conf)) {
+                           &$rename_fw_rules($rename,
+                               $group,
+                               $host_conf->{rules});
+                           PVE::Firewall::save_hostfw_conf($host_conf, $host_conf_path);
+                       }
+                   });
+               }
+
+               # Update all the VM configs
+               my $vms = PVE::Cluster::get_vmlist();
+               foreach my $vm (keys %{$vms->{ids}}) {
+                   PVE::Firewall::lock_vmfw_conf($vm, 10, sub {
+                       my $vm_type = $vms->{ids}->{$vm}->{type} eq "lxc" ? "ct" : "vm";
+                       my $vm_conf = PVE::Firewall::load_vmfw_conf($cluster_conf, $vm_type, $vm, "/etc/pve/firewall");
+
+                       if (defined($vm_conf)) {
+                           &$rename_fw_rules($rename,
+                               $group,
+                               $vm_conf->{rules});
+                           PVE::Firewall::save_vmfw_conf($vm, $vm_conf);
+                       }
+                   });
+               }
+
+               # And also update the cluster itself
+               &$rename_fw_rules($rename,
+                   $group,
+                   $cluster_conf->{rules});
+
+               # Now that everything has been updated, the old rule can be deleted
+               delete $cluster_conf->{groups}->{$rename};
+               delete $cluster_conf->{group_comments}->{$rename};
            } else {
                foreach my $name (keys %{$cluster_conf->{groups}}) {
                    raise_param_exc({ group => "Security group '$name' already exists" })
-                       if $name eq $param->{group};
+                       if $name eq $group;
                }
 
-               $cluster_conf->{groups}->{$param->{group}} = [];
-               $cluster_conf->{group_comments}->{$param->{group}} = $param->{comment} if defined($param->{comment});
+               $cluster_conf->{groups}->{$group} = [];
+               $cluster_conf->{group_comments}->{$group} = $comment if defined($comment);
            }
 
            PVE::Firewall::save_clusterfw_conf($cluster_conf);