]> git.proxmox.com Git - pve-firewall.git/blame - src/PVE/API2/Firewall/Groups.pm
add global ipset blacklist
[pve-firewall.git] / src / PVE / API2 / Firewall / Groups.pm
CommitLineData
8f119284
DM
1package PVE::API2::Firewall::Groups;
2
3use strict;
4use warnings;
5use PVE::JSONSchema qw(get_standard_option);
0d22acb3 6use PVE::Exception qw(raise raise_param_exc);
8f119284
DM
7
8use PVE::Firewall;
86791289 9use PVE::API2::Firewall::Rules;
8f119284
DM
10
11use Data::Dumper; # fixme: remove
12
13use base qw(PVE::RESTHandler);
14
5d38d64f
DM
15my $get_security_group_list = sub {
16 my ($cluster_conf) = @_;
17
18 my $res = [];
19 foreach my $group (keys %{$cluster_conf->{groups}}) {
20 my $data = {
21 name => $group,
22 };
23 if (my $comment = $cluster_conf->{group_comments}->{$group}) {
24 $data->{comment} = $comment;
25 }
26 push @$res, $data;
27 }
28
29 my ($list, $digest) = PVE::Firewall::copy_list_with_digest($res);
30
31 return wantarray ? ($list, $digest) : $list;
32};
33
8f119284 34__PACKAGE__->register_method({
9567aa91 35 name => 'list_security_groups',
8f119284
DM
36 path => '',
37 method => 'GET',
38 description => "List security groups.",
8f119284
DM
39 parameters => {
40 additionalProperties => 0,
8f119284
DM
41 },
42 returns => {
43 type => 'array',
44 items => {
45 type => "object",
d1c53b3e 46 properties => {
387d0ffc 47 name => get_standard_option('pve-security-group-name'),
2ba5e893 48 digest => get_standard_option('pve-config-digest', { optional => 0} ),
0d22acb3
DM
49 comment => {
50 type => 'string',
51 optional => 1,
52 }
d1c53b3e 53 },
8f119284
DM
54 },
55 links => [ { rel => 'child', href => "{name}" } ],
56 },
57 code => sub {
58 my ($param) = @_;
59
fca39c2c 60 my $cluster_conf = PVE::Firewall::load_clusterfw_conf();
8f119284 61
5d38d64f 62 return &$get_security_group_list($cluster_conf);
d1c53b3e
DM
63 }});
64
9567aa91
DM
65__PACKAGE__->register_method({
66 name => 'create_security_group',
67 path => '',
68 method => 'POST',
69 description => "Create new security group.",
70 protected => 1,
71 parameters => {
72 additionalProperties => 0,
73 properties => {
74 name => get_standard_option('pve-security-group-name'),
0d22acb3
DM
75 comment => {
76 type => 'string',
77 optional => 1,
78 },
9567aa91 79 rename => get_standard_option('pve-security-group-name', {
0d22acb3 80 description => "Rename/update an existing security group. You can set 'rename' to the same value as 'name' to update the 'comment' of an existing group.",
9567aa91
DM
81 optional => 1,
82 }),
2ba5e893 83 digest => get_standard_option('pve-config-digest'),
9567aa91
DM
84 },
85 },
86 returns => { type => 'null' },
87 code => sub {
88 my ($param) = @_;
89
90 my $cluster_conf = PVE::Firewall::load_clusterfw_conf();
91
9567aa91 92 if ($param->{rename}) {
5d38d64f
DM
93 my (undef, $digest) = &$get_security_group_list($cluster_conf);
94 PVE::Tools::assert_if_modified($digest, $param->{digest});
95
9567aa91
DM
96 raise_param_exc({ name => "Security group '$param->{rename}' does not exists" })
97 if !$cluster_conf->{groups}->{$param->{rename}};
5d38d64f 98
9567aa91
DM
99 my $data = delete $cluster_conf->{groups}->{$param->{rename}};
100 $cluster_conf->{groups}->{$param->{name}} = $data;
0d22acb3
DM
101 if (my $comment = delete $cluster_conf->{group_comments}->{$param->{rename}}) {
102 $cluster_conf->{group_comments}->{$param->{name}} = $comment;
103 }
104 $cluster_conf->{group_comments}->{$param->{name}} = $param->{comment} if defined($param->{comment});
9567aa91 105 } else {
5d38d64f
DM
106 foreach my $name (keys %{$cluster_conf->{groups}}) {
107 raise_param_exc({ name => "Security group '$name' already exists" })
108 if $name eq $param->{name};
109 }
110
9567aa91 111 $cluster_conf->{groups}->{$param->{name}} = [];
0d22acb3 112 $cluster_conf->{group_comments}->{$param->{name}} = $param->{comment} if defined($param->{comment});
9567aa91
DM
113 }
114
115 PVE::Firewall::save_clusterfw_conf($cluster_conf);
116
117 return undef;
118 }});
119
9567aa91
DM
120__PACKAGE__->register_method({
121 name => 'delete_security_group',
122 path => '{name}',
123 method => 'DELETE',
124 description => "Delete security group.",
125 protected => 1,
126 parameters => {
127 additionalProperties => 0,
128 properties => {
129 name => get_standard_option('pve-security-group-name'),
2ba5e893 130 digest => get_standard_option('pve-config-digest'),
d72c631c 131 },
9567aa91
DM
132 },
133 returns => { type => 'null' },
134 code => sub {
135 my ($param) = @_;
136
137 my $cluster_conf = PVE::Firewall::load_clusterfw_conf();
138
139 return undef if !$cluster_conf->{groups}->{$param->{name}};
140
5d38d64f
DM
141 my (undef, $digest) = &$get_security_group_list($cluster_conf);
142 PVE::Tools::assert_if_modified($digest, $param->{digest});
143
9567aa91
DM
144 die "Security group '$param->{name}' is not empty\n"
145 if scalar(@{$cluster_conf->{groups}->{$param->{name}}});
146
147 delete $cluster_conf->{groups}->{$param->{name}};
148
149 PVE::Firewall::save_clusterfw_conf($cluster_conf);
150
151 return undef;
152 }});
387d0ffc 153
86791289
DM
154__PACKAGE__->register_method ({
155 subclass => "PVE::API2::Firewall::GroupRules",
d1c53b3e 156 path => '{group}',
86791289 157});
9c7e0858 158
8f119284 1591;